diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..91ba41d --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.idea/ +data.txt +result.json +data_large.txt \ No newline at end of file diff --git a/README.md b/README.md index 63eb31f..b34a4b8 100644 --- a/README.md +++ b/README.md @@ -1,85 +1,102 @@ -### Note -*Для работы скрипта требуется Ruby 2.4+* - -# Задание №1 -В файле `task-1.rb` находится ruby-программа, которая выполняет обработку данных из файла. - -В файл встроен тест, который показывает, как программа должна работать. - -С помощью этой программы нужно обработать файл данных `data_large.txt`. - -**Проблема в том, что это происходит слишком долго, дождаться пока никому не удавалось.** - - -## Задача -- Оптимизировать эту программу, выстроив процесс согласно "общему фреймворку оптимизации" из первой лекции; -- Профилировать программу с помощью инструментов, с которыми мы познакомились в первой лекции; -- Добиться того, чтобы программа корректно обработала файл `data_large.txt`; -- Написать кейс-стади о вашей оптимизации по шаблону `case-study-template.md`. - -## Сдача задания -Для сдачи задания нужно сделать `PR` в этот репозиторий. - -В `PR` -- должны быть внесены оптимизации в `task-1.rb`; -- должен быть файл `case-study.md` с описанием проделанной оптимизации; - - -# Комментарии - -## Какую пользу нужно получить от этого задания -Задание моделирует такую ситуацию: вы получили неффективную систему, в которой код и производительность оставляет желать лучшего. При этом актуальной проблемой является именно производительность. -Вам нужно оптимизировать эту систему. - -С какими искушениями вы сталкиваететь: -- вы “с ходу” видите проблемы в коде и у вас возникает импульс потратить время на их рефакторинг; -- вы “с ходу” замечаете какие-то непроизводительные идиомы, и у вас возникает соблазн их сразу исправить; - -Эти искушения типичны и часто возникают в моделируемой ситуации. - -Их риски: -- перед рефакторингом “очевидных” косяков не написать тестов и незаметно внести регрессию; -- потратить время на рефакторинг, хотя время было только на оптимизацию; -- исправить все очевидные на глаз проблемы производительности, не получить заметного результата, решить что наверное просто Ruby слишком медленный для этой задачи - -## Советы -- Найдите объём данных, на которых программа отрабатывает достаточно быстро - это позволит вам выстроить фидбек-луп; если улучшите метрику для части данных, то улучшите и для полного объёма данных; -- Попробуйте прикинуть ассимтотику роста времени работы в зависимости от объёма входных данных (попробуйте объём x, 2x, 4x, 8x) -- Оцените, как долго программа будет обрабатывать полный обём данных -- Оцените, сколько времени занимает работа GC - -Возможно, что оптимизаций только памяти вам не хватит, чтобы довести производительность системы до приемлемой. - -Если вы придёте к такому выводу, то возможны такие варианты: -- попробуйте использовать какой-нибудь из рассмотренных нами профилировщиков в режиме профилирования CPU (wall), найти точки роста и оптимизировать их; -- подойдёт и вариант, если вы с помощью профилирования найдёте несколько главных точек роста, оптимизируете их, покажете, что дальнейшие оптимизации только памяти не приведут к желаемому результату, и опишете это в case-study. - -## Что можно делать -- рефакторить код -- рефакторить/дописывать тесты -- разбивать скрипт на несколько файлов - -## Что нужно делать -- исследовать предложенную вам на рассмотрение систему -- построить фидбек-луп, который позволит вам быстро тестировать гипотезы и измерять их эффект -- применить инструменты профилирования памяти, интроспекции GC, чтобы найти самые горячие проблемы по памяти, оценить кол-во времени которое уходит на сборку мусора -- выписывать в case-study несколько пунктов: каким профилировщиком вы нашли точку роста, как её оптимизировали, какой получили прирост метрики; - -## Что не нужно делать -- переписывать с нуля -- забивать на выстраивание фидбек-лупа -- вносить оптимизации по наитию, без профилировщика и без оценки эффективности - -## Основная польза задания -Главная польза этого задания - попрактиковаться в применении грамотного подхода к оптимизации, почуствовать этот процесс: -- как взяли незнакомую систему и исследовали её -- как выстроили фидбек луп -- как с помощью профилировщиков нашли что именно даст вам наибольший эффект -- как быстро протестировали гипотезу, получили измеримый результат и зафиксировали его -- как в итоге написали небольшой отчёт об успешных шагах этого процесса - -## PS -Обсудим с Виталием, возможно уделю время на 2й лекции разбору подобной ситуации, а заданием 2й недели будет дооптимизировать эту программу, уже используя инструментарий оптимизации CPU. - -## PPS -Делайте задание, изучайте предложенную систему, смотрите на неё под разными углами с помощью разных инстурментов. Оптимизируйте. Попрактикуйтесь в этой работе +# Users statistics calculator + +## Problem +In our project we have a problem of calculating statistics for users. Report works with a large files without any signs +of work could be done in reasonable time. That is why we think that we should check this report for bottlenecks and fix +them if they are exist. + +## Warranty of correctness of work +We have tests that verify correct logic of the algorithm and assure that we won't go wrong. + +## Feedback loop +We implemented logic that measures our algorithm by iterations per time on a sample of data of 65kb size. So after +evaluation of this metric we will seek for bottlenecks with help of various cpu and memory profilers. When we'll find any +of these bottlenecks and fix them we'll reevaluate this metric and repeat these steps until we'll have algorithm that don't +bother us. + +## Step 1 +I tried to turn off GC in our sample test and check whether memory issues could cause such problems with the speed. +Metrics didn't change a lot hence i understood that main problem for now is in algorithm by itself and we should seek +where CPU works mostly. Maybe we could apply certain optimization there. Additionally we disabled GC to be focused only +in algorithm issue. + +After all measures we figured out the problem in sequential looping over an array without any using of ids for fast search. + +## Step 2 +After refactoring in step1 where i replaced sequential looping through array with using of ids i reduced algorithm +complexity at least x3. I applied stackprof and rubyprof once more for checking what we've got for now and next problem we +saw using of all? method for checking of existing sessions in presaved array. + +## Step 3 +We applied set data structure for making unique assembling for us. After next measures we saw problem with date parsing +in the final part of the report. + +## Step 4 +Exactly in our case this part of algorithm do nothing so we excluded it without any breaking of law. Finally we are at +the point where we can't gain much of performance with simple refactorings. It's a good moment for capturing our memory +situation in terms of waisting it. So after measures i see that we have a lot of redundant array allocations. + +## Step 5 +After removing all obvious places of redundant array allocations i used frozen_string_literal for avoiding allocations of +redundant strings + +## Step 6 - Final result +All my next steps were connected with looking why memory using grows lineally to 400mb score and stops on that mark. The +problem was that profilers didn't tell much about that just were showing that number of allocating object were extremely +high. Finally i have figured out with massif-visualizer that all allocating memory related with collecting browsers and +i fixed it with using set. After that i used refactoring for decomposing all logic by domains area. + +Before refactoring i had result with using 37mb total for large file +![Before refactoring](/optimizations/step10/before.png) +After refactoring memory usage grew but i think that in this case we don't need to dig deeper. This result is ok for us. +![After refactoring](/optimizations/step10/after.png) + +Assuming in the result we have parser that handles the task in `9` sec with `46 mb` used. + +Final asymptotic + + Warming up -------------------------------------- + 65kb 15.000 i/100ms + 125kb 8.000 i/100ms + 250kb 4.000 i/100ms + 0.5m 2.000 i/100ms + 1m 1.000 i/100ms + Calculating ------------------------------------- + 65kb 159.165 (± 4.3%) i/s - 330.000 in 2.078575s + 125kb 81.522 (± 8.3%) i/s - 168.000 in 2.095915s + 250kb 45.831 (± 3.6%) i/s - 92.000 in 2.013734s + 0.5m 24.744 (± 2.9%) i/s - 50.000 in 2.023426s + 1m 12.841 (± 3.3%) i/s - 26.000 in 2.028261s + with 100.0% confidence + + Comparison: + 65kb: 159.2 i/s + 125kb: 81.5 i/s - 1.95x (± 0.19) slower + 250kb: 45.8 i/s - 3.47x (± 0.20) slower + 0.5m: 24.7 i/s - 6.43x (± 0.34) slower + 1m: 12.8 i/s - 12.39x (± 0.65) slower + with 100.0% confidence + +Comparing with what we had in the beginning + + Warming up -------------------------------------- + 65kb 1.000 i/100ms + 125kb 1.000 i/100ms + 250kb 1.000 i/100ms + 0.5m 1.000 i/100ms + 1m 1.000 i/100ms + Calculating ------------------------------------- + 65kb 16.952 (± 4.2%) i/s - 34.000 in 2.015597s + 125kb 5.178 (± 2.1%) i/s - 11.000 in 2.125509s + 250kb 1.333 (± 2.0%) i/s - 3.000 in 2.251281s + 0.5m 0.370 (± 0.0%) i/s - 1.000 in 2.703453s + 1m 0.077 (± 0.0%) i/s - 1.000 in 13.051390s + with 100.0% confidence + + Comparison: + 65kb: 17.0 i/s + 125kb: 5.2 i/s - 3.27x (± 0.15) slower + 250kb: 1.3 i/s - 12.72x (± 0.68) slower + 0.5m: 0.4 i/s - 45.84x (± 1.94) slower + 1m: 0.1 i/s - 221.22x (± 9.44) slower + with 100.0% confidence \ No newline at end of file diff --git a/lib/_parser.rb b/lib/_parser.rb new file mode 100644 index 0000000..695bf96 --- /dev/null +++ b/lib/_parser.rb @@ -0,0 +1,32 @@ +require 'forwardable' +require_relative 'user' +require_relative 'report' + +class Parser + @parsed_user = User.new + + class << self + extend Forwardable + + attr_reader :parsed_user + + def parse_user(first_name, last_name) + @parsed_user.name = "#{first_name} #{last_name}" + end + + def parse_session(browser, time, date) + @parsed_user.sessions_count += 1 + + @parsed_user.total_time += time + @parsed_user.longest_session = time if @parsed_user.longest_session < time + @parsed_user.browsers << browser + Report.unique_browsers << browser + + @parsed_user.dates << date + end + + private + def_delegator :@parsed_user, :name, :parsed_exists? + def_delegator :@parsed_user, :reset, :clear_cache + end +end diff --git a/lib/parser.rb b/lib/parser.rb new file mode 100644 index 0000000..43d8090 --- /dev/null +++ b/lib/parser.rb @@ -0,0 +1,33 @@ +# frozen_string_literal: true + +require_relative '_parser' +require 'pry-byebug' + +$support_dir = File.expand_path('../../spec/support', __FILE__ ) +$optimizations_dir = File.expand_path('../../optimizations', __FILE__ ) + +def work(filename) + File.open("#{$support_dir}/result.json", 'w') do |f| + Report.prepare(f) + + IO.foreach("#{$support_dir}/#{filename}") do |cols| + row = cols.split(',') + + if cols.start_with?('user') + if Parser.parsed_exists? + Report.add_parsed(Parser.parsed_user) + + Parser.clear_cache + end + + Parser.parse_user(row[2], row[3]) + else + Parser.parse_session(row[3], row[4].to_i, row[5].strip) + end + end + + Report.add_parsed(Parser.parsed_user) + + Report.add_analyse + end +end diff --git a/lib/report.rb b/lib/report.rb new file mode 100644 index 0000000..8fcd134 --- /dev/null +++ b/lib/report.rb @@ -0,0 +1,49 @@ +# frozen_string_literal: true + +require 'oj' +require 'set' +require 'json' + +class Report + class << self + attr_reader :unique_browsers, :total_sessions, :total_users + + def prepare(file) + @file = file + @unique_browsers = Set.new + @total_sessions = @total_users = 0 + + @file.write("{\"usersStats\":{") + end + + def add_parsed(user) + browsers = user.prepare + + @total_sessions += user.sessions_count + @total_users += 1 + + formatted = { + "sessionsCount": user.sessions_count, + "totalTime": "#{user.total_time} min.", + "longestSession": "#{user.longest_session} min.", + "browsers": browsers, + "usedIE": user.used_ie, + "alwaysUsedChrome": user.used_only_chrome, + "dates": user.dates + } + + @file.write("\"#{user.name}\":#{Oj.dump(formatted, mode: :compat)},") + end + + def add_analyse + analyze = { + "totalUsers": @total_users, + "uniqueBrowsersCount": @unique_browsers.size, + "totalSessions": @total_sessions, + "allBrowsers": @unique_browsers.sort.join(',').upcase! + }.to_json.tr!('{', '') << "}\n" + + @file.write(analyze) + end + end +end diff --git a/lib/user.rb b/lib/user.rb new file mode 100644 index 0000000..c462b05 --- /dev/null +++ b/lib/user.rb @@ -0,0 +1,37 @@ +# frozen_string_literal: true + +class User + attr_accessor :name, :sessions_count, :total_time, :longest_session, + :browsers, :dates, :used_ie, :used_only_chrome + + def initialize + nullify + + @dates = [] + @browsers = [] + end + + def prepare + @dates.sort!.reverse! + + browsers = @browsers.sort!.join(', ').upcase! + + @used_only_chrome = true if browsers.end_with?('CHROME') + @used_ie = true if !@used_only_chrome && browsers.include?('INTERNET') + + browsers + end + + def reset + nullify + + @dates.clear + @browsers.clear + end + + private + def nullify + @longest_session = @total_time = @sessions_count = 0 + @used_only_chrome = @used_ie = false + end +end diff --git a/optimizations/rubyprof.rb b/optimizations/rubyprof.rb new file mode 100644 index 0000000..1a67500 --- /dev/null +++ b/optimizations/rubyprof.rb @@ -0,0 +1,29 @@ +require_relative '../lib/parser' +require_relative '../spec/stdout_to_file' +require 'ruby-prof' + +GC.disable + +save_stdout_to_file('rubyprof_wall.txt') do + RubyProf.measure_mode = RubyProf::WALL_TIME + + result = RubyProf.profile do + work('data_65kb.txt') + end + + printer = RubyProf::FlatPrinter.new(result) + printer.print($stdout) +end + +GC.enable + +save_stdout_to_file('rubyprof_alloc.txt') do + RubyProf.measure_mode = RubyProf::ALLOCATIONS + + result = RubyProf.profile do + work('data_65kb.txt') + end + + printer = RubyProf::FlatPrinter.new(result) + printer.print($stdout) +end \ No newline at end of file diff --git a/optimizations/rubyprof_patched.rb b/optimizations/rubyprof_patched.rb new file mode 100644 index 0000000..da1785a --- /dev/null +++ b/optimizations/rubyprof_patched.rb @@ -0,0 +1,11 @@ +require_relative '../lib/parser' +require 'ruby-prof' + +RubyProf.measure_mode = RubyProf::MEMORY + +result = RubyProf.profile do + work('data_65kb.txt') +end + +printer = RubyProf::CallTreePrinter.new(result) +printer.print(path: "#{$optimizations_dir}", profile: 'profile') \ No newline at end of file diff --git a/optimizations/stackprof.rb b/optimizations/stackprof.rb new file mode 100644 index 0000000..f6dfae7 --- /dev/null +++ b/optimizations/stackprof.rb @@ -0,0 +1,25 @@ +require_relative '../lib/parser' +require_relative '../spec/stdout_to_file' +require 'stackprof' + +GC.disable + +save_stdout_to_file('stackprof_wall.txt') do + profile_Data = StackProf.run(mode: :wall) do + work('data_65kb.txt') + end + + StackProf::Report.new(profile_Data).print_text(nil, nil, nil, nil, nil, nil, $stdout) + StackProf::Report.new(profile_Data).print_method('Object#work', $stdout) +end + +GC.enable + +save_stdout_to_file('stackprof_object.txt') do + profile_Data = StackProf.run(mode: :object) do + work('data_65kb.txt') + end + + StackProf::Report.new(profile_Data).print_text(nil, nil, nil, nil, nil, nil, $stdout) + StackProf::Report.new(profile_Data).print_method('Object#work', $stdout) +end \ No newline at end of file diff --git a/optimizations/step1/asymptotic.txt b/optimizations/step1/asymptotic.txt new file mode 100644 index 0000000..f76e2ae --- /dev/null +++ b/optimizations/step1/asymptotic.txt @@ -0,0 +1,22 @@ +Warming up -------------------------------------- + 65kb 1.000 i/100ms + 125kb 1.000 i/100ms + 250kb 1.000 i/100ms + 0.5m 1.000 i/100ms + 1m 1.000 i/100ms +Calculating ------------------------------------- + 65kb 16.952 (± 4.2%) i/s - 34.000 in 2.015597s + 125kb 5.178 (± 2.1%) i/s - 11.000 in 2.125509s + 250kb 1.333 (± 2.0%) i/s - 3.000 in 2.251281s + 0.5m 0.370 (± 0.0%) i/s - 1.000 in 2.703453s + 1m 0.077 (± 0.0%) i/s - 1.000 in 13.051390s + with 100.0% confidence + +Comparison: + 65kb: 17.0 i/s + 125kb: 5.2 i/s - 3.27x (± 0.15) slower + 250kb: 1.3 i/s - 12.72x (± 0.68) slower + 0.5m: 0.4 i/s - 45.84x (± 1.94) slower + 1m: 0.1 i/s - 221.22x (± 9.44) slower + with 100.0% confidence + diff --git a/optimizations/step1/rubyprof_wall.txt b/optimizations/step1/rubyprof_wall.txt new file mode 100644 index 0000000..a945f19 --- /dev/null +++ b/optimizations/step1/rubyprof_wall.txt @@ -0,0 +1,52 @@ +Measure Mode: wall_time +Thread ID: 70098564087760 +Fiber ID: 70098577035560 +Total: 0.119539 +Sort by: self_time + + %self total self wait child calls name + 56.16 0.067 0.067 0.000 0.000 264 Array#select + 14.74 0.018 0.018 0.000 0.000 1646 Array#all? + 8.94 0.115 0.011 0.000 0.105 10 Array#each + 3.63 0.013 0.004 0.000 0.009 2906 Array#map + 2.85 0.007 0.003 0.000 0.004 1382 #parse + 2.60 0.003 0.003 0.000 0.000 3293 String#split + 1.51 0.002 0.002 0.000 0.000 2764 Regexp#match + 0.98 0.002 0.001 0.000 0.001 1382 Object#parse_session + 0.96 0.002 0.001 0.000 0.001 1 JSON::Ext::Generator::GeneratorMethods::Hash#to_json + 0.82 0.001 0.001 0.000 0.000 4292 String#encode + 0.71 0.001 0.001 0.000 0.000 529 Array#sort + 0.70 0.001 0.001 0.000 0.000 1382 String#gsub! + 0.67 0.001 0.001 0.000 0.000 1848 Hash#merge + 0.59 0.001 0.001 0.000 0.000 3841 String#upcase + 0.49 0.001 0.001 0.000 0.000 1382 Date#iso8601 + 0.41 0.000 0.000 0.000 0.000 2764 String#to_i + 0.34 0.001 0.000 0.000 0.000 264 Array#any? + 0.33 0.000 0.000 0.000 0.000 2744 Date#<=> + 0.29 0.000 0.000 0.000 0.000 1382 String#[]= + 0.29 0.000 0.000 0.000 0.000 1382 MatchData#begin + 0.24 0.000 0.000 0.000 0.000 2116 String#to_s + 0.22 0.000 0.000 0.000 0.000 1 #write + 0.22 0.000 0.000 0.000 0.000 264 Class#new + 0.19 0.000 0.000 0.000 0.000 264 Object#parse_user + 0.18 0.000 0.000 0.000 0.000 1382 MatchData#end + 0.18 0.000 0.000 0.000 0.000 1382 Integer#div + 0.18 0.000 0.000 0.000 0.000 265 Array#join + 0.10 0.000 0.000 0.000 0.000 264 User#initialize + 0.08 0.000 0.000 0.000 0.000 528 Integer#to_s + 0.06 0.000 0.000 0.000 0.000 1 Array#uniq + 0.05 0.000 0.000 0.000 0.000 266 Hash#keys + 0.05 0.000 0.000 0.000 0.000 264 Array#max + 0.05 0.000 0.000 0.000 0.000 264 Array#reverse + 0.04 0.000 0.000 0.000 0.000 1 #read + 0.04 0.000 0.000 0.000 0.000 264 Array#sum + 0.04 0.000 0.000 0.000 0.000 267 Array#count + 0.03 0.120 0.000 0.000 0.119 1 Object#work + 0.02 0.120 0.000 0.000 0.120 1 [global]#[no method] + 0.01 0.019 0.000 0.000 0.019 7 Object#collect_stats_from_users + 0.00 0.000 0.000 0.000 0.000 1 Kernel#dup + 0.00 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::State#initialize_copy + 0.00 0.000 0.000 0.000 0.000 1 Kernel#initialize_dup + 0.00 0.000 0.000 0.000 0.000 1 Symbol#to_s + +* indicates recursively called methods diff --git a/optimizations/step1/stackprof_wall.txt b/optimizations/step1/stackprof_wall.txt new file mode 100644 index 0000000..3bf78b5 --- /dev/null +++ b/optimizations/step1/stackprof_wall.txt @@ -0,0 +1,124 @@ +================================== + Mode: wall(1000) + Samples: 66 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 66 (100.0%) 62 (93.9%) Object#work + 10 (15.2%) 3 (4.5%) Object#collect_stats_from_users + 1 (1.5%) 1 (1.5%) Object#parse_user + 66 (100.0%) 0 (0.0%) block in
+ 66 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 66 (100.0%) 0 (0.0%)
+ 66 (100.0%) 0 (0.0%)
+ 66 (100.0%) 0 (0.0%) block (2 levels) in
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:48) + samples: 62 self (93.9%) / 66 total (100.0%) + callers: + 106 ( 160.6%) Object#work + 66 ( 100.0%) block (2 levels) in
+ 7 ( 10.6%) Object#collect_stats_from_users + callees (4 total): + 106 ( 2650.0%) Object#work + 10 ( 250.0%) Object#collect_stats_from_users + 1 ( 25.0%) Object#parse_user + code: + | 48 | def work(filename) + | 49 | file_lines = File.read("#{$support_dir}/#{filename}").split("\n") + | 50 | + | 51 | users = [] + | 52 | sessions = [] + | 53 | + 8 (12.1%) | 54 | file_lines.each do |line| + | 55 | cols = line.split(',') + 4 (6.1%) / 3 (4.5%) | 56 | users = users + [parse_user(line)] if cols[0] == 'user' + 1 (1.5%) / 1 (1.5%) | 57 | sessions = sessions + [parse_session(line)] if cols[0] == 'session' + 3 (4.5%) / 3 (4.5%) | 58 | end + | 59 | + | 60 | # Отчёт в json + | 61 | # - Сколько всего юзеров + + | 62 | # - Сколько всего уникальных браузеров + + | 63 | # - Сколько всего сессий + + | 64 | # - Перечислить уникальные браузеры в алфавитном порядке через запятую и капсом + + | 65 | # + | 66 | # - По каждому пользователю + | 67 | # - сколько всего сессий + + | 68 | # - сколько всего времени + + | 69 | # - самая длинная сессия + + | 70 | # - браузеры через запятую + + | 71 | # - Хоть раз использовал IE? + + | 72 | # - Всегда использовал только Хром? + + | 73 | # - даты сессий в порядке убывания через запятую + + | 74 | + | 75 | report = {} + | 76 | + | 77 | report[:totalUsers] = users.count + | 78 | + | 79 | # Подсчёт количества уникальных браузеров + | 80 | uniqueBrowsers = [] + 7 (10.6%) | 81 | sessions.each do |session| + | 82 | browser = session['browser'] + 14 (21.2%) / 7 (10.6%) | 83 | uniqueBrowsers += [browser] if uniqueBrowsers.all? { |b| b != browser } + | 84 | end + | 85 | + | 86 | report['uniqueBrowsersCount'] = uniqueBrowsers.count + | 87 | + | 88 | report['totalSessions'] = sessions.count + | 89 | + | 90 | report['allBrowsers'] = + | 91 | sessions + | 92 | .map { |s| s['browser'] } + | 93 | .map { |b| b.upcase } + | 94 | .sort + | 95 | .uniq + | 96 | .join(',') + | 97 | + | 98 | # Статистика по пользователям + | 99 | users_objects = [] + | 100 | + 39 (59.1%) | 101 | users.each do |user| + | 102 | attributes = user + 78 (118.2%) / 39 (59.1%) | 103 | user_sessions = sessions.select { |session| session['user_id'] == user['id'] } + | 104 | user_object = User.new(attributes: attributes, sessions: user_sessions) + | 105 | users_objects = users_objects + [user_object] + | 106 | end + | 107 | + | 108 | report['usersStats'] = {} + | 109 | + | 110 | # Собираем количество сессий по пользователям + | 111 | collect_stats_from_users(report, users_objects) do |user| + | 112 | { 'sessionsCount' => user.sessions.count } + | 113 | end + | 114 | + | 115 | # Собираем количество времени по пользователям + 1 (1.5%) | 116 | collect_stats_from_users(report, users_objects) do |user| + | 117 | { 'totalTime' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.sum.to_s + ' min.' } + | 118 | end + | 119 | + | 120 | # Выбираем самую длинную сессию пользователя + | 121 | collect_stats_from_users(report, users_objects) do |user| + | 122 | { 'longestSession' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.max.to_s + ' min.' } + | 123 | end + | 124 | + | 125 | # Браузеры пользователя через запятую + 1 (1.5%) | 126 | collect_stats_from_users(report, users_objects) do |user| + | 127 | { 'browsers' => user.sessions.map {|s| s['browser']}.map {|b| b.upcase}.sort.join(', ') } + 1 (1.5%) / 1 (1.5%) | 128 | end + | 129 | + | 130 | # Хоть раз использовал IE? + 1 (1.5%) | 131 | collect_stats_from_users(report, users_objects) do |user| + | 132 | { 'usedIE' => user.sessions.map{|s| s['browser']}.any? { |b| b.upcase =~ /INTERNET EXPLORER/ } } + | 133 | end + | 134 | + | 135 | # Всегда использовал только Chrome? + 1 (1.5%) | 136 | collect_stats_from_users(report, users_objects) do |user| + | 137 | { 'alwaysUsedChrome' => user.sessions.map{|s| s['browser']}.all? { |b| b.upcase =~ /CHROME/ } } + | 138 | end + | 139 | + | 140 | # Даты сессий через запятую в обратном порядке в формате iso8601 + 6 (9.1%) | 141 | collect_stats_from_users(report, users_objects) do |user| + 12 (18.2%) / 6 (9.1%) | 142 | { 'dates' => user.sessions.map{|s| s['date']}.map {|d| Date.parse(d)}.sort.reverse.map { |d| d.iso8601 } } + | 143 | end + | 144 | + 2 (3.0%) / 2 (3.0%) | 145 | File.write("#{$support_dir}/result.json", "#{report.to_json}\n") + | 146 | end diff --git a/optimizations/step10/after.png b/optimizations/step10/after.png new file mode 100644 index 0000000..bac17cd Binary files /dev/null and b/optimizations/step10/after.png differ diff --git a/optimizations/step10/asymptotic.txt b/optimizations/step10/asymptotic.txt new file mode 100644 index 0000000..c5aad2e --- /dev/null +++ b/optimizations/step10/asymptotic.txt @@ -0,0 +1,22 @@ +Warming up -------------------------------------- + 65kb 15.000 i/100ms + 125kb 8.000 i/100ms + 250kb 4.000 i/100ms + 0.5m 2.000 i/100ms + 1m 1.000 i/100ms +Calculating ------------------------------------- + 65kb 159.165 (± 4.3%) i/s - 330.000 in 2.078575s + 125kb 81.522 (± 8.3%) i/s - 168.000 in 2.095915s + 250kb 45.831 (± 3.6%) i/s - 92.000 in 2.013734s + 0.5m 24.744 (± 2.9%) i/s - 50.000 in 2.023426s + 1m 12.841 (± 3.3%) i/s - 26.000 in 2.028261s + with 100.0% confidence + +Comparison: + 65kb: 159.2 i/s + 125kb: 81.5 i/s - 1.95x (± 0.19) slower + 250kb: 45.8 i/s - 3.47x (± 0.20) slower + 0.5m: 24.7 i/s - 6.43x (± 0.34) slower + 1m: 12.8 i/s - 12.39x (± 0.65) slower + with 100.0% confidence + diff --git a/optimizations/step10/before.png b/optimizations/step10/before.png new file mode 100644 index 0000000..c508e7e Binary files /dev/null and b/optimizations/step10/before.png differ diff --git a/optimizations/step10/massif.out.15667 b/optimizations/step10/massif.out.15667 new file mode 100644 index 0000000..aba290d --- /dev/null +++ b/optimizations/step10/massif.out.15667 @@ -0,0 +1,1827 @@ +desc: (none) +cmd: /home/donasktello/.rvm/rubies/ruby-2.6.1/bin/ruby valgrind_massif.rb +time_unit: i +#----------- +snapshot=0 +#----------- +time=0 +mem_heap_B=0 +mem_heap_extra_B=0 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=1 +#----------- +time=954364946 +mem_heap_B=49092613 +mem_heap_extra_B=6007955 +mem_stacks_B=0 +heap_tree=peak +n6: 49092613 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 7220754 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2097888 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1735104 0x501B8F5: rebuild_table (st.c:780) + n1: 890304 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 890304 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 103872 in 4 places, all below massif's threshold (1.00%) + n0: 844800 in 3 places, all below massif's threshold (1.00%) + n0: 362784 in 51 places, all below massif's threshold (1.00%) + n0: 2082682 in 121 places, all below massif's threshold (1.00%) + n2: 1991608 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1989120 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1989120 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1957280 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1208240 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1133536 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1125408 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1125408 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1125408 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 900104 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 120528 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 74704 in 8 places, all below massif's threshold (1.00%) + n0: 749040 in 10 places, all below massif's threshold (1.00%) + n0: 31840 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4344366 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1727160 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1683056 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 927960 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 875864 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 868168 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 868168 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 868168 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 698264 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 94424 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52096 in 8 places, all below massif's threshold (1.00%) + n0: 755096 in 10 places, all below massif's threshold (1.00%) + n0: 44104 in 7 places, all below massif's threshold (1.00%) + n0: 1635092 in 25 places, all below massif's threshold (1.00%) + n2: 982114 0x4EB208C: iseq_setup (compile.c:2126) + n1: 982021 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 982021 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 968251 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 643141 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 610578 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607137 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607137 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607137 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607137 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32563 in 8 places, all below massif's threshold (1.00%) + n0: 325110 in 10 places, all below massif's threshold (1.00%) + n0: 13770 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n1: 602290 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n0: 602290 in 14 places, all below massif's threshold (1.00%) + n0: 575947 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=2 +#----------- +time=1587953898 +mem_heap_B=48288892 +mem_heap_extra_B=5807460 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=3 +#----------- +time=2425205019 +mem_heap_B=48355899 +mem_heap_extra_B=5817749 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=4 +#----------- +time=3191602637 +mem_heap_B=48356129 +mem_heap_extra_B=5819007 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=5 +#----------- +time=4130465899 +mem_heap_B=48355177 +mem_heap_extra_B=5818407 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=6 +#----------- +time=5267940773 +mem_heap_B=48354832 +mem_heap_extra_B=5819176 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=7 +#----------- +time=6499324549 +mem_heap_B=48353353 +mem_heap_extra_B=5819943 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=8 +#----------- +time=7630095292 +mem_heap_B=48249562 +mem_heap_extra_B=5802902 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=9 +#----------- +time=8314824316 +mem_heap_B=48181912 +mem_heap_extra_B=5792448 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=10 +#----------- +time=8901714022 +mem_heap_B=48316295 +mem_heap_extra_B=5813857 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=11 +#----------- +time=9684266971 +mem_heap_B=48253516 +mem_heap_extra_B=5804412 +mem_stacks_B=0 +heap_tree=detailed +n5: 48253516 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6781069 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2004288 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1741056 0x501B8F5: rebuild_table (st.c:780) + n1: 895872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 895872 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 109440 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 263232 in 51 places, all below massif's threshold (1.00%) + n2: 1869656 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1867168 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1867168 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1854472 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1210632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1134616 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1126488 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1126488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1126488 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 901184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 76016 in 8 places, all below massif's threshold (1.00%) + n0: 643840 in 10 places, all below massif's threshold (1.00%) + n0: 12696 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n0: 1858549 in 122 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4073965 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1609352 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1600768 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 930624 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 877936 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 870240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 870240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 870240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 700336 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52688 in 8 places, all below massif's threshold (1.00%) + n0: 670144 in 10 places, all below massif's threshold (1.00%) + n0: 8584 in 7 places, all below massif's threshold (1.00%) + n0: 1521693 in 25 places, all below massif's threshold (1.00%) + n2: 942920 0x4EB208C: iseq_setup (compile.c:2126) + n1: 942827 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 942827 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 936138 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 644101 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 611138 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607697 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607697 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607697 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607697 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32963 in 8 places, all below massif's threshold (1.00%) + n0: 292037 in 10 places, all below massif's threshold (1.00%) + n0: 6689 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n0: 1049226 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=12 +#----------- +time=10662401254 +mem_heap_B=48304611 +mem_heap_extra_B=5812765 +mem_stacks_B=0 +heap_tree=detailed +n5: 48304611 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6832182 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2004288 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1741056 0x501B8F5: rebuild_table (st.c:780) + n1: 895872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 895872 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 109440 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 263232 in 51 places, all below massif's threshold (1.00%) + n0: 1909662 in 122 places, all below massif's threshold (1.00%) + n2: 1869656 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1867168 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1867168 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1854472 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1210632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1134616 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1126488 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1126488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1126488 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 901184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 76016 in 8 places, all below massif's threshold (1.00%) + n0: 643840 in 10 places, all below massif's threshold (1.00%) + n0: 12696 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4073965 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1609352 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1600768 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 930624 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 877936 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 870240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 870240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 870240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 700336 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52688 in 8 places, all below massif's threshold (1.00%) + n0: 670144 in 10 places, all below massif's threshold (1.00%) + n0: 8584 in 7 places, all below massif's threshold (1.00%) + n0: 1521693 in 25 places, all below massif's threshold (1.00%) + n2: 942920 0x4EB208C: iseq_setup (compile.c:2126) + n1: 942827 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 942827 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 936138 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 644101 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 611138 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607697 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607697 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607697 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607697 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32963 in 8 places, all below massif's threshold (1.00%) + n0: 292037 in 10 places, all below massif's threshold (1.00%) + n0: 6689 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n0: 1049208 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=13 +#----------- +time=11347064366 +mem_heap_B=48306043 +mem_heap_extra_B=5812845 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=14 +#----------- +time=12031750832 +mem_heap_B=48153683 +mem_heap_extra_B=5788125 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=15 +#----------- +time=13205737878 +mem_heap_B=48334794 +mem_heap_extra_B=5819246 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=16 +#----------- +time=13988436275 +mem_heap_B=48189801 +mem_heap_extra_B=5795687 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=17 +#----------- +time=15064653272 +mem_heap_B=48186821 +mem_heap_extra_B=5795659 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=18 +#----------- +time=15945131284 +mem_heap_B=48329794 +mem_heap_extra_B=5818678 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=19 +#----------- +time=16532174477 +mem_heap_B=48147064 +mem_heap_extra_B=5789144 +mem_stacks_B=0 +heap_tree=detailed +n5: 48147064 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6674741 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2004288 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1741056 0x501B8F5: rebuild_table (st.c:780) + n1: 895872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 895872 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 109440 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 263232 in 51 places, all below massif's threshold (1.00%) + n2: 1869656 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1867168 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1867168 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1854472 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1210632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1134616 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1126488 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1126488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1126488 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 901184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 76016 in 8 places, all below massif's threshold (1.00%) + n0: 643840 in 10 places, all below massif's threshold (1.00%) + n0: 12696 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n0: 1752221 in 122 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4073965 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1609352 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1600768 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 930624 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 877936 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 870240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 870240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 870240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 700336 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52688 in 8 places, all below massif's threshold (1.00%) + n0: 670144 in 10 places, all below massif's threshold (1.00%) + n0: 8584 in 7 places, all below massif's threshold (1.00%) + n0: 1521693 in 25 places, all below massif's threshold (1.00%) + n2: 942920 0x4EB208C: iseq_setup (compile.c:2126) + n1: 942827 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 942827 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 936138 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 644101 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 611138 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607697 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607697 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607697 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607697 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32963 in 8 places, all below massif's threshold (1.00%) + n0: 292037 in 10 places, all below massif's threshold (1.00%) + n0: 6689 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n0: 1049102 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=20 +#----------- +time=17314858695 +mem_heap_B=48185323 +mem_heap_extra_B=5796413 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=21 +#----------- +time=18293135305 +mem_heap_B=48326769 +mem_heap_extra_B=5818519 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=22 +#----------- +time=19271400414 +mem_heap_B=48325795 +mem_heap_extra_B=5819757 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=23 +#----------- +time=20249679282 +mem_heap_B=48212820 +mem_heap_extra_B=5801868 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=24 +#----------- +time=20836660806 +mem_heap_B=48292979 +mem_heap_extra_B=5814037 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=25 +#----------- +time=21619297521 +mem_heap_B=48320667 +mem_heap_extra_B=5819805 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=26 +#----------- +time=22402185425 +mem_heap_B=48270357 +mem_heap_extra_B=5810883 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=27 +#----------- +time=23380496724 +mem_heap_B=48315550 +mem_heap_extra_B=5818866 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=28 +#----------- +time=24163146042 +mem_heap_B=48220660 +mem_heap_extra_B=5804876 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=29 +#----------- +time=24945773956 +mem_heap_B=48310741 +mem_heap_extra_B=5819403 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=30 +#----------- +time=25532959099 +mem_heap_B=48326213 +mem_heap_extra_B=5806147 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=31 +#----------- +time=26511244664 +mem_heap_B=48321717 +mem_heap_extra_B=5807787 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=32 +#----------- +time=27502563845 +mem_heap_B=48319427 +mem_heap_extra_B=5806541 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=33 +#----------- +time=28702632003 +mem_heap_B=48088020 +mem_heap_extra_B=5770740 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=34 +#----------- +time=29602672436 +mem_heap_B=48208572 +mem_heap_extra_B=5790084 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=35 +#----------- +time=30202683273 +mem_heap_B=48317520 +mem_heap_extra_B=5808176 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=36 +#----------- +time=31102711544 +mem_heap_B=48192327 +mem_heap_extra_B=5787593 +mem_stacks_B=0 +heap_tree=detailed +n5: 48192327 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6743507 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2003520 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1741056 0x501B8F5: rebuild_table (st.c:780) + n1: 895872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 895872 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 109440 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 262464 in 51 places, all below massif's threshold (1.00%) + n2: 1858096 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1855608 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1855608 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1847272 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1210632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1134616 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1126488 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1126488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1126488 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 901184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 76016 in 8 places, all below massif's threshold (1.00%) + n0: 636640 in 10 places, all below massif's threshold (1.00%) + n0: 8336 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n0: 1833315 in 122 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4059260 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1602840 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1596624 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 930624 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 877936 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 870240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 870240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 870240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 700336 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52688 in 8 places, all below massif's threshold (1.00%) + n0: 666000 in 10 places, all below massif's threshold (1.00%) + n0: 6216 in 7 places, all below massif's threshold (1.00%) + n0: 1519104 in 25 places, all below massif's threshold (1.00%) + n2: 937316 0x4EB208C: iseq_setup (compile.c:2126) + n1: 937223 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 937223 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 933134 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 644101 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 611138 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607697 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607697 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607697 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607697 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32963 in 8 places, all below massif's threshold (1.00%) + n0: 289033 in 10 places, all below massif's threshold (1.00%) + n0: 4089 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n0: 1040304 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=37 +#----------- +time=32002736074 +mem_heap_B=48306868 +mem_heap_extra_B=5805996 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=38 +#----------- +time=32602743915 +mem_heap_B=48195992 +mem_heap_extra_B=5788824 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=39 +#----------- +time=33502752849 +mem_heap_B=48234594 +mem_heap_extra_B=5795718 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=40 +#----------- +time=34102757411 +mem_heap_B=48311082 +mem_heap_extra_B=5807686 +mem_stacks_B=0 +heap_tree=detailed +n5: 48311082 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6862125 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2003520 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1741056 0x501B8F5: rebuild_table (st.c:780) + n1: 895872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 895872 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 109440 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 262464 in 51 places, all below massif's threshold (1.00%) + n0: 1951933 in 122 places, all below massif's threshold (1.00%) + n2: 1858096 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1855608 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1855608 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1847272 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1210632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1134616 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1126488 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1126488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1126488 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 901184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 76016 in 8 places, all below massif's threshold (1.00%) + n0: 636640 in 10 places, all below massif's threshold (1.00%) + n0: 8336 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4059260 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1602840 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1596624 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 930624 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 877936 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 870240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 870240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 870240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 700336 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52688 in 8 places, all below massif's threshold (1.00%) + n0: 666000 in 10 places, all below massif's threshold (1.00%) + n0: 6216 in 7 places, all below massif's threshold (1.00%) + n0: 1519104 in 25 places, all below massif's threshold (1.00%) + n2: 937316 0x4EB208C: iseq_setup (compile.c:2126) + n1: 937223 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 937223 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 933134 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 644101 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 611138 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607697 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607697 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607697 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607697 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32963 in 8 places, all below massif's threshold (1.00%) + n0: 289033 in 10 places, all below massif's threshold (1.00%) + n0: 4089 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n0: 1040441 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=41 +#----------- +time=35002772133 +mem_heap_B=48213472 +mem_heap_extra_B=5792392 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=42 +#----------- +time=36202814535 +mem_heap_B=48300868 +mem_heap_extra_B=5807076 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=43 +#----------- +time=37402832928 +mem_heap_B=48304159 +mem_heap_extra_B=5807281 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=44 +#----------- +time=38302838782 +mem_heap_B=48298570 +mem_heap_extra_B=5807206 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=45 +#----------- +time=38902848718 +mem_heap_B=48124882 +mem_heap_extra_B=5780134 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=46 +#----------- +time=39802876595 +mem_heap_B=48126903 +mem_heap_extra_B=5781009 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=47 +#----------- +time=40402904264 +mem_heap_B=48282545 +mem_heap_extra_B=5805871 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=48 +#----------- +time=41302913060 +mem_heap_B=48295365 +mem_heap_extra_B=5809515 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=49 +#----------- +time=41902931360 +mem_heap_B=48222450 +mem_heap_extra_B=5796326 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=50 +#----------- +time=42489821279 +mem_heap_B=48139760 +mem_heap_extra_B=5784592 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=51 +#----------- +time=43076714091 +mem_heap_B=48289063 +mem_heap_extra_B=5808953 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=52 +#----------- +time=43663605671 +mem_heap_B=48283842 +mem_heap_extra_B=5807278 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=53 +#----------- +time=44250510516 +mem_heap_B=48181253 +mem_heap_extra_B=5791907 +mem_stacks_B=0 +heap_tree=detailed +n5: 48181253 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6732285 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2003520 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1741056 0x501B8F5: rebuild_table (st.c:780) + n1: 895872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 895872 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 109440 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 262464 in 51 places, all below massif's threshold (1.00%) + n2: 1858096 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1855608 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1855608 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1847272 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1210632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1134616 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1126488 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1126488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1126488 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 901184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 76016 in 8 places, all below massif's threshold (1.00%) + n0: 636640 in 10 places, all below massif's threshold (1.00%) + n0: 8336 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n0: 1822093 in 122 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4059260 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1602840 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1596624 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 930624 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 877936 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 870240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 870240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 870240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 700336 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52688 in 8 places, all below massif's threshold (1.00%) + n0: 666000 in 10 places, all below massif's threshold (1.00%) + n0: 6216 in 7 places, all below massif's threshold (1.00%) + n0: 1519104 in 25 places, all below massif's threshold (1.00%) + n2: 937316 0x4EB208C: iseq_setup (compile.c:2126) + n1: 937223 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 937223 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 933134 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 644101 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 611138 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607697 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607697 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607697 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607697 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32963 in 8 places, all below massif's threshold (1.00%) + n0: 289033 in 10 places, all below massif's threshold (1.00%) + n0: 4089 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n0: 1040452 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=54 +#----------- +time=44837401013 +mem_heap_B=48286806 +mem_heap_extra_B=5808450 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=55 +#----------- +time=45424291181 +mem_heap_B=48193523 +mem_heap_extra_B=5794085 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=56 +#----------- +time=46011181355 +mem_heap_B=48139871 +mem_heap_extra_B=5786001 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=57 +#----------- +time=46598072080 +mem_heap_B=48122100 +mem_heap_extra_B=5782556 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=58 +#----------- +time=47184968326 +mem_heap_B=48277421 +mem_heap_extra_B=5808987 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=59 +#----------- +time=47771870087 +mem_heap_B=48195554 +mem_heap_extra_B=5795278 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=60 +#----------- +time=48358767103 +mem_heap_B=48276788 +mem_heap_extra_B=5808284 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=61 +#----------- +time=48945661972 +mem_heap_B=48272274 +mem_heap_extra_B=5808854 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=62 +#----------- +time=49532561197 +mem_heap_B=48202827 +mem_heap_extra_B=5797349 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=63 +#----------- +time=50119455561 +mem_heap_B=48270268 +mem_heap_extra_B=5809140 +mem_stacks_B=0 +heap_tree=detailed +n5: 48270268 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6821311 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2003520 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1741056 0x501B8F5: rebuild_table (st.c:780) + n1: 895872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 895872 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 109440 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 262464 in 51 places, all below massif's threshold (1.00%) + n0: 1911119 in 122 places, all below massif's threshold (1.00%) + n2: 1858096 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1855608 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1855608 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1847272 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1210632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1134616 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1126488 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1126488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1126488 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 901184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 76016 in 8 places, all below massif's threshold (1.00%) + n0: 636640 in 10 places, all below massif's threshold (1.00%) + n0: 8336 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4059260 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1602840 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1596624 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 930624 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 877936 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 870240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 870240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 870240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 700336 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52688 in 8 places, all below massif's threshold (1.00%) + n0: 666000 in 10 places, all below massif's threshold (1.00%) + n0: 6216 in 7 places, all below massif's threshold (1.00%) + n0: 1519104 in 25 places, all below massif's threshold (1.00%) + n2: 937316 0x4EB208C: iseq_setup (compile.c:2126) + n1: 937223 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 937223 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 933134 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 644101 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 611138 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607697 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607697 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607697 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607697 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32963 in 8 places, all below massif's threshold (1.00%) + n0: 289033 in 10 places, all below massif's threshold (1.00%) + n0: 4089 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n0: 1040441 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=64 +#----------- +time=50706346351 +mem_heap_B=48090109 +mem_heap_extra_B=5769451 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=65 +#----------- +time=51293237791 +mem_heap_B=48325629 +mem_heap_extra_B=5806899 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=66 +#----------- +time=51880128859 +mem_heap_B=48311570 +mem_heap_extra_B=5804198 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=67 +#----------- +time=52467022155 +mem_heap_B=48217797 +mem_heap_extra_B=5790363 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=68 +#----------- +time=53053918113 +mem_heap_B=48163811 +mem_heap_extra_B=5782213 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=69 +#----------- +time=53640810007 +mem_heap_B=48142726 +mem_heap_extra_B=5779146 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=70 +#----------- +time=54227704337 +mem_heap_B=48163281 +mem_heap_extra_B=5782311 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=71 +#----------- +time=54814632272 +mem_heap_B=48323712 +mem_heap_extra_B=5807488 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=72 +#----------- +time=55401522318 +mem_heap_B=48257342 +mem_heap_extra_B=5797394 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=73 +#----------- +time=55988439253 +mem_heap_B=48224985 +mem_heap_extra_B=5792143 +mem_stacks_B=0 +heap_tree=detailed +n5: 48224985 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6772115 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2003520 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1741056 0x501B8F5: rebuild_table (st.c:780) + n1: 895872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 895872 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 109440 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 262464 in 51 places, all below massif's threshold (1.00%) + n0: 1861923 in 122 places, all below massif's threshold (1.00%) + n2: 1858096 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1855608 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1855608 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1847272 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1210632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1134616 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1126488 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1126488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1126488 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 901184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 76016 in 8 places, all below massif's threshold (1.00%) + n0: 636640 in 10 places, all below massif's threshold (1.00%) + n0: 8336 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4059260 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1602840 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1596624 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 930624 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 877936 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 870240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 870240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 870240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 700336 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52688 in 8 places, all below massif's threshold (1.00%) + n0: 666000 in 10 places, all below massif's threshold (1.00%) + n0: 6216 in 7 places, all below massif's threshold (1.00%) + n0: 1519104 in 25 places, all below massif's threshold (1.00%) + n2: 937316 0x4EB208C: iseq_setup (compile.c:2126) + n1: 937223 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 937223 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 933134 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 644101 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 611138 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607697 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607697 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607697 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607697 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32963 in 8 places, all below massif's threshold (1.00%) + n0: 289033 in 10 places, all below massif's threshold (1.00%) + n0: 4089 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n0: 1044354 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=74 +#----------- +time=56575329162 +mem_heap_B=48166761 +mem_heap_extra_B=5783207 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=75 +#----------- +time=57162224238 +mem_heap_B=48161851 +mem_heap_extra_B=5783389 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=76 +#----------- +time=57749119164 +mem_heap_B=48311343 +mem_heap_extra_B=5807065 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=77 +#----------- +time=58336015882 +mem_heap_B=48308356 +mem_heap_extra_B=5805852 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=78 +#----------- +time=58922905894 +mem_heap_B=48311113 +mem_heap_extra_B=5807223 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=79 +#----------- +time=59509805356 +mem_heap_B=48309729 +mem_heap_extra_B=5807095 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=80 +#----------- +time=60096696371 +mem_heap_B=48184122 +mem_heap_extra_B=5787294 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=81 +#----------- +time=60683596072 +mem_heap_B=48247878 +mem_heap_extra_B=5797690 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=82 +#----------- +time=61270486494 +mem_heap_B=48127969 +mem_heap_extra_B=5778583 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=83 +#----------- +time=61857377010 +mem_heap_B=48285956 +mem_heap_extra_B=5803500 +mem_stacks_B=0 +heap_tree=detailed +n5: 48285956 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6832990 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2003520 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1741056 0x501B8F5: rebuild_table (st.c:780) + n1: 895872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 895872 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x50464C9: register_static_symid_str (symbol.c:454) + n2: 786432 0x504839D: rb_intern3 (symbol.c:637) + n1: 786432 0x4FA2698: ruby_yyparse (parse.y:7368) + n1: 786432 0x4FB02D6: yycompile0 (parse.y:4900) + n2: 786432 0x50AD317: rb_suppress_tracing (vm_trace.c:436) + n1: 786432 0x4F97575: rb_parser_compile_file_path (parse.y:4950) + n1: 786432 0x500F2C1: load_file_internal (ruby.c:2011) + n1: 786432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 786432 0x500F0DC: rb_parser_load_file (ruby.c:2130) + n1: 786432 0x4F49483: rb_load_internal0 (load.c:606) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n0: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 109440 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 262464 in 51 places, all below massif's threshold (1.00%) + n0: 1922798 in 122 places, all below massif's threshold (1.00%) + n2: 1858096 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1855608 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1855608 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1847272 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1210632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1134616 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1126488 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1126488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1126488 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 901184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 779576 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 594000 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 594000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 594000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 594000 in 2 places, all below massif's threshold (1.00%) + n0: 185576 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 225304 in 2 places, all below massif's threshold (1.00%) + n0: 8128 in 4 places, all below massif's threshold (1.00%) + n0: 76016 in 8 places, all below massif's threshold (1.00%) + n0: 636640 in 10 places, all below massif's threshold (1.00%) + n0: 8336 in 7 places, all below massif's threshold (1.00%) + n0: 2488 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4059260 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1602840 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1596624 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 930624 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 877936 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 870240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 870240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 870240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 700336 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 603840 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 603840 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 169904 in 2 places, all below massif's threshold (1.00%) + n0: 7696 in 4 places, all below massif's threshold (1.00%) + n0: 52688 in 8 places, all below massif's threshold (1.00%) + n0: 666000 in 10 places, all below massif's threshold (1.00%) + n0: 6216 in 7 places, all below massif's threshold (1.00%) + n0: 1519104 in 25 places, all below massif's threshold (1.00%) + n2: 937316 0x4EB208C: iseq_setup (compile.c:2126) + n1: 937223 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 937223 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 933134 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 644101 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 611138 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 607697 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 607697 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 607697 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 607697 in 3 places, all below massif's threshold (1.00%) + n0: 3441 in 4 places, all below massif's threshold (1.00%) + n0: 32963 in 8 places, all below massif's threshold (1.00%) + n0: 289033 in 10 places, all below massif's threshold (1.00%) + n0: 4089 in 7 places, all below massif's threshold (1.00%) + n0: 93 in 1 place, below massif's threshold (1.00%) + n2: 2794824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2173752 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1323864 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 621072 in 5 places, all below massif's threshold (1.00%) + n0: 1044450 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=84 +#----------- +time=62444272423 +mem_heap_B=48270352 +mem_heap_extra_B=5802088 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=85 +#----------- +time=63031169365 +mem_heap_B=48302142 +mem_heap_extra_B=5807138 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=86 +#----------- +time=63618086320 +mem_heap_B=48185726 +mem_heap_extra_B=5789146 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=87 +#----------- +time=64204978832 +mem_heap_B=48122897 +mem_heap_extra_B=5778855 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=88 +#----------- +time=64791876274 +mem_heap_B=48301004 +mem_heap_extra_B=5808452 +mem_stacks_B=0 +heap_tree=empty diff --git a/optimizations/step10/profile.callgrind.out.21964 b/optimizations/step10/profile.callgrind.out.21964 new file mode 100644 index 0000000..dbe36ab --- /dev/null +++ b/optimizations/step10/profile.callgrind.out.21964 @@ -0,0 +1,458 @@ +events: memory + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=IO::close +0 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=IO::closed? +0 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=String::tr! +0 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=String::encode +0 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Symbol::to_s +0 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Hash::keys +0 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=JSON/Ext/Generator/State::initialize_copy +0 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Kernel::initialize_dup +0 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=JSON/Ext/Generator/State::initialize_copy +calls=1 114 +114 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Kernel::dup +0 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Kernel::initialize_dup +calls=1 114 +114 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=JSON/Ext/Generator/GeneratorMethods/Hash::to_json +0 8 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Kernel::dup +calls=1 114 +114 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Hash::keys +calls=1 114 +114 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Symbol::to_s +calls=4 114 +114 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::encode +calls=5 114 +114 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Hash::each_key +0 3 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::each +337 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Hash::each_key +calls=1 338 +338 3 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Enumerable::sort +0 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::each +calls=1 113 +113 3 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::size +162 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Report::^add_analyse +110 3 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::size +calls=1 110 +110 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Enumerable::sort +calls=1 110 +110 4 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Array::join +calls=1 110 +110 3 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::upcase! +calls=1 110 +110 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=JSON/Ext/Generator/GeneratorMethods/Hash::to_json +calls=1 110 +110 10 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::tr! +calls=1 110 +110 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=IO::write +calls=1 116 +116 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Array::clear +0 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=User::nullify +43 2 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=User::reset +35 0 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=User::nullify +calls=263 35 +35 2 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Array::clear +calls=526 38 +38 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/forwardable.rb +fn=Parser::^clear_cache +224 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=User::reset +calls=263 230 +230 3 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Hash::has_key? +0 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Oj::^dump +0 73 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Hash::has_key? +calls=7101 105 +105 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Hash::has_key? +calls=27 105 +105 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Integer::to_s +0 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=String::include? +0 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=String::end_with? +0 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=String::upcase! +0 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Array::join +0 37 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Array::reverse! +0 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Array::sort! +0 1 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=User::prepare +24 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Array::sort! +calls=526 26 +26 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Array::reverse! +calls=263 24 +24 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Array::join +calls=263 26 +26 34 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::upcase! +calls=263 26 +26 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::end_with? +calls=263 28 +28 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::include? +calls=263 29 +29 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Array::sort! +calls=2 26 +26 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Array::reverse! +calls=1 24 +24 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Array::join +calls=1 26 +26 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::upcase! +calls=1 26 +26 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::end_with? +calls=1 28 +28 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::include? +calls=1 29 +29 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Report::^add_parsed +90 83 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=User::prepare +calls=263 90 +90 37 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Integer::to_s +calls=526 96 +96 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Oj::^dump +calls=263 105 +105 73 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=IO::write +calls=263 105 +105 0 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=User::prepare +calls=1 90 +90 2 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Integer::to_s +calls=2 96 +96 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Oj::^dump +calls=1 105 +105 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=IO::write +calls=1 105 +105 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::add +349 13 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Parser::^parse_session +61 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::add +calls=1382 66 +66 13 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=String::strip +0 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=String::to_i +0 1 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Parser::^parse_user +57 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/forwardable.rb +fn=Parser::^parsed_exists? +224 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=String::start_with? +0 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=String::split +0 0 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=IO::^foreach +0 84 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::split +calls=1646 126 +126 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::start_with? +calls=1646 128 +128 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/forwardable.rb +cfn=Parser::^parsed_exists? +calls=264 129 +129 0 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Parser::^parse_user +calls=264 135 +135 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::to_i +calls=1382 137 +137 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=String::strip +calls=1382 137 +137 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Parser::^parse_session +calls=1382 137 +137 14 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Report::^add_parsed +calls=263 130 +130 193 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/forwardable.rb +cfn=Parser::^clear_cache +calls=263 132 +132 4 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=IO::write +0 9 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=NilClass::nil? +0 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Hash::initialize +0 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::initialize +94 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Class::new +calls=1 94 +94 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=NilClass::nil? +calls=1 96 +96 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=Class::new +0 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::initialize +calls=1 83 +83 2 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Hash::initialize +calls=1 94 +94 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Report::^prepare +82 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=Class::new +calls=1 83 +83 2 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=IO::write +calls=1 86 +86 8 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=File::initialize +0 1 + +fl=/Users/donasktello/Projects/task-1/ruby_runtime +fn=IO::^open +0 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=File::initialize +calls=1 122 +122 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Report::^prepare +calls=1 123 +123 12 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=IO::^foreach +calls=1 125 +125 298 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Report::^add_parsed +calls=1 141 +141 4 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Report::^add_analyse +calls=1 143 +143 22 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=IO::closed? +calls=1 143 +143 0 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=IO::close +calls=1 143 +143 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::work +122 1 +cfl=/Users/donasktello/Projects/task-1/ruby_runtime +cfn=IO::^open +calls=1 122 +122 337 + +fl=/Users/donasktello/Projects/task-1/optimizations/rubyprof_patched.rb +fn=[global]::[no method] +7 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::work +calls=1 7 +7 338 + diff --git a/optimizations/step10/rubyprof_alloc.txt b/optimizations/step10/rubyprof_alloc.txt new file mode 100644 index 0000000..71d384d --- /dev/null +++ b/optimizations/step10/rubyprof_alloc.txt @@ -0,0 +1,58 @@ +Measure Mode: allocations +Thread ID: 70196291354580 +Fiber ID: 70196300229260 +Total: 26290.000000 +Sort by: self_time + + %self total self wait child calls name + 42.82 11258.000 11258.000 0.000 0.000 1646 String#split + 20.80 26226.000 5469.000 0.000 20757.000 1 #foreach + 15.35 4036.000 4036.000 0.000 0.000 265 #dump + 5.26 1382.000 1382.000 0.000 0.000 1382 String#strip + 5.04 7680.000 1325.000 0.000 6355.000 265 #add_parsed + 3.02 1524.000 795.000 0.000 729.000 265 User#prepare + 2.02 530.000 530.000 0.000 0.000 530 Integer#to_s + 1.76 464.000 464.000 0.000 0.000 530 Array#sort! + 1.02 268.000 268.000 0.000 0.000 267 IO#write + 1.01 266.000 266.000 0.000 0.000 266 Array#join + 1.00 264.000 264.000 0.000 0.000 264 #parse_user + 0.76 201.000 201.000 0.000 0.000 1382 Set#add + 0.02 6.000 6.000 0.000 0.000 5 String#encode + 0.02 25.000 5.000 0.000 20.000 1 #add_analyse + 0.02 4.000 4.000 0.000 0.000 4 Symbol#to_s + 0.01 5.000 3.000 0.000 2.000 1 Enumerable#sort + 0.01 26287.000 2.000 0.000 26285.000 1 #open + 0.01 26289.000 2.000 0.000 26287.000 1 Object#work + 0.01 2.000 2.000 0.000 0.000 1 Set#each + 0.00 26290.000 1.000 0.000 26289.000 1 [global]#[no method] + 0.00 1.000 1.000 0.000 0.000 1 Kernel#dup + 0.00 13.000 1.000 0.000 12.000 1 JSON::Ext::Generator::GeneratorMethods::Hash#to_json + 0.00 2.000 1.000 0.000 1.000 2 *Class#new + 0.00 5.000 1.000 0.000 4.000 1 #prepare + 0.00 1.000 1.000 0.000 0.000 1 File#initialize + 0.00 1.000 1.000 0.000 0.000 1 Hash#keys + 0.00 0.000 0.000 0.000 0.000 1 IO#closed? + 0.00 0.000 0.000 0.000 0.000 1 String#tr! + 0.00 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::State#initialize_copy + 0.00 0.000 0.000 0.000 0.000 1 Kernel#initialize_dup + 0.00 0.000 0.000 0.000 0.000 1 Hash#each_key + 0.00 0.000 0.000 0.000 0.000 1 Set#size + 0.00 201.000 0.000 0.000 201.000 1382 #parse_session + 0.00 0.000 0.000 0.000 0.000 1382 String#to_i + 0.00 0.000 0.000 0.000 0.000 528 Array#clear + 0.00 0.000 0.000 0.000 0.000 264 User#nullify + 0.00 0.000 0.000 0.000 0.000 264 User#reset + 0.00 0.000 0.000 0.000 0.000 264 #clear_cache + 0.00 0.000 0.000 0.000 0.000 7155 Hash#has_key? + 0.00 0.000 0.000 0.000 0.000 265 String#include? + 0.00 0.000 0.000 0.000 0.000 265 String#end_with? + 0.00 0.000 0.000 0.000 0.000 266 String#upcase! + 0.00 0.000 0.000 0.000 0.000 265 Array#reverse! + 0.00 0.000 0.000 0.000 0.000 264 #parsed_exists? + 0.00 0.000 0.000 0.000 0.000 1646 String#start_with? + 0.00 0.000 0.000 0.000 0.000 1 NilClass#nil? + 0.00 0.000 0.000 0.000 0.000 1 Hash#initialize + 0.00 1.000 0.000 0.000 1.000 1 Set#initialize + 0.00 0.000 0.000 0.000 0.000 1 IO#close + +* indicates recursively called methods diff --git a/optimizations/step10/rubyprof_wall.txt b/optimizations/step10/rubyprof_wall.txt new file mode 100644 index 0000000..1ea8338 --- /dev/null +++ b/optimizations/step10/rubyprof_wall.txt @@ -0,0 +1,58 @@ +Measure Mode: wall_time +Thread ID: 70196291354580 +Fiber ID: 70196300229260 +Total: 0.014517 +Sort by: self_time + + %self total self wait child calls name + 18.50 0.014 0.003 0.000 0.011 1 #foreach + 12.04 0.002 0.002 0.000 0.001 1382 #parse_session + 11.30 0.003 0.002 0.000 0.001 264 #dump + 10.44 0.002 0.002 0.000 0.000 1646 String#split + 6.69 0.001 0.001 0.000 0.000 7128 Hash#has_key? + 5.45 0.005 0.001 0.000 0.005 264 #add_parsed + 5.16 0.001 0.001 0.000 0.000 1382 Set#add + 3.33 0.001 0.000 0.000 0.001 264 User#prepare + 3.08 0.000 0.000 0.000 0.000 528 Array#sort! + 2.68 0.000 0.000 0.000 0.000 1646 String#start_with? + 2.48 0.000 0.000 0.000 0.000 266 IO#write + 2.24 0.000 0.000 0.000 0.000 1382 String#to_i + 2.09 0.000 0.000 0.000 0.000 1382 String#strip + 1.70 0.000 0.000 0.000 0.000 265 Array#join + 1.66 0.001 0.000 0.000 0.000 263 #clear_cache + 1.59 0.000 0.000 0.000 0.000 263 User#reset + 1.27 0.000 0.000 0.000 0.000 264 #parsed_exists? + 1.12 0.000 0.000 0.000 0.000 528 Integer#to_s + 0.93 0.000 0.000 0.000 0.000 264 #parse_user + 0.89 0.000 0.000 0.000 0.000 263 User#nullify + 0.75 0.000 0.000 0.000 0.000 1 File#initialize + 0.71 0.000 0.000 0.000 0.000 265 String#upcase! + 0.59 0.000 0.000 0.000 0.000 1 IO#close + 0.57 0.000 0.000 0.000 0.000 526 Array#clear + 0.56 0.000 0.000 0.000 0.000 264 String#include? + 0.47 0.000 0.000 0.000 0.000 264 String#end_with? + 0.42 0.000 0.000 0.000 0.000 264 Array#reverse! + 0.30 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::GeneratorMethods::Hash#to_json + 0.29 0.000 0.000 0.000 0.000 1 Enumerable#sort + 0.16 0.015 0.000 0.000 0.014 1 [global]#[no method] + 0.08 0.014 0.000 0.000 0.014 1 #open + 0.07 0.000 0.000 0.000 0.000 1 #add_analyse + 0.07 0.000 0.000 0.000 0.000 1 String#tr! + 0.06 0.000 0.000 0.000 0.000 1 Hash#each_key + 0.04 0.000 0.000 0.000 0.000 1 #prepare + 0.03 0.014 0.000 0.000 0.014 1 Object#work + 0.03 0.000 0.000 0.000 0.000 1 Set#initialize + 0.03 0.000 0.000 0.000 0.000 1 Set#each + 0.02 0.000 0.000 0.000 0.000 4 Symbol#to_s + 0.02 0.000 0.000 0.000 0.000 2 *Class#new + 0.01 0.000 0.000 0.000 0.000 1 Kernel#dup + 0.01 0.000 0.000 0.000 0.000 5 String#encode + 0.01 0.000 0.000 0.000 0.000 1 Set#size + 0.01 0.000 0.000 0.000 0.000 1 NilClass#nil? + 0.01 0.000 0.000 0.000 0.000 1 Hash#keys + 0.01 0.000 0.000 0.000 0.000 1 IO#closed? + 0.01 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::State#initialize_copy + 0.01 0.000 0.000 0.000 0.000 1 Kernel#initialize_dup + 0.01 0.000 0.000 0.000 0.000 1 Hash#initialize + +* indicates recursively called methods diff --git a/optimizations/step10/stackprof_object.txt b/optimizations/step10/stackprof_object.txt new file mode 100644 index 0000000..26e1ab0 --- /dev/null +++ b/optimizations/step10/stackprof_object.txt @@ -0,0 +1,58 @@ +================================== + Mode: object(1) + Samples: 26290 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 26289 (100.0%) 18114 (68.9%) Object#work + 7680 (29.2%) 6156 (23.4%) Report.add_parsed + 1524 (5.8%) 1524 (5.8%) User#prepare + 264 (1.0%) 264 (1.0%) Parser.parse_user + 201 (0.8%) 201 (0.8%) Set#add + 25 (0.1%) 23 (0.1%) Report.add_analyse + 5 (0.0%) 4 (0.0%) Report.prepare + 2 (0.0%) 2 (0.0%) Set#each + 1 (0.0%) 1 (0.0%) Set#initialize + 26290 (100.0%) 1 (0.0%) block (2 levels) in
+ 26290 (100.0%) 0 (0.0%)
+ 26290 (100.0%) 0 (0.0%)
+ 201 (0.8%) 0 (0.0%) Parser.parse_session + 26290 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 26290 (100.0%) 0 (0.0%) block in
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:121) + samples: 18114 self (68.9%) / 26289 total (100.0%) + callers: + 50862 ( 193.5%) Object#work + 26289 ( 100.0%) block (2 levels) in
+ callees (8175 total): + 50862 ( 622.2%) Object#work + 7680 ( 93.9%) Report.add_parsed + 264 ( 3.2%) Parser.parse_user + 201 ( 2.5%) Parser.parse_session + 25 ( 0.3%) Report.add_analyse + 5 ( 0.1%) Report.prepare + code: + | 121 | def work(filename) + 26289 (100.0%) / 4 (0.0%) | 122 | File.open("#{$support_dir}/result.json", 'w') do |f| + 5 (0.0%) | 123 | Report.prepare(f) + | 124 | + 26227 (99.8%) / 1650 (6.3%) | 125 | IO.foreach("#{$support_dir}/#{filename}") do |cols| + 12904 (49.1%) / 12904 (49.1%) | 126 | row = cols.split(',') + | 127 | + 1646 (6.3%) / 1646 (6.3%) | 128 | if cols.start_with?('user') + 264 (1.0%) / 264 (1.0%) | 129 | if Parser.parsed_exists? + 7652 (29.1%) | 130 | Report.add_parsed(Parser.parsed_user) + | 131 | + 264 (1.0%) / 264 (1.0%) | 132 | Parser.clear_cache + | 133 | end + | 134 | + 264 (1.0%) | 135 | Parser.parse_user(row[2], row[3]) + | 136 | else + 1583 (6.0%) / 1382 (5.3%) | 137 | Parser.parse_session(row[3], row[4].to_i, row[5].strip) + | 138 | end + | 139 | end + | 140 | + 28 (0.1%) | 141 | Report.add_parsed(Parser.parsed_user) + | 142 | + 25 (0.1%) | 143 | Report.add_analyse + | 144 | end diff --git a/optimizations/step10/stackprof_wall.txt b/optimizations/step10/stackprof_wall.txt new file mode 100644 index 0000000..9f50760 --- /dev/null +++ b/optimizations/step10/stackprof_wall.txt @@ -0,0 +1,40 @@ +================================== + Mode: wall(1000) + Samples: 5 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 3 (60.0%) 2 (40.0%) Report.add_parsed + 1 (20.0%) 1 (20.0%) User#nullify + 5 (100.0%) 1 (20.0%) Object#work + 1 (20.0%) 1 (20.0%) User#prepare + 5 (100.0%) 0 (0.0%)
+ 5 (100.0%) 0 (0.0%)
+ 1 (20.0%) 0 (0.0%) User#reset + 1 (20.0%) 0 (0.0%) Parser.clear_cache + 5 (100.0%) 0 (0.0%) block (2 levels) in
+ 5 (100.0%) 0 (0.0%) block in
+ 5 (100.0%) 0 (0.0%) Object#save_stdout_to_file +Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:121) + samples: 1 self (20.0%) / 5 total (100.0%) + callers: + 10 ( 200.0%) Object#work + 5 ( 100.0%) block (2 levels) in
+ callees (4 total): + 10 ( 250.0%) Object#work + 3 ( 75.0%) Report.add_parsed + 1 ( 25.0%) Parser.clear_cache + code: + | 121 | def work(filename) + 5 (100.0%) | 122 | File.open("#{$support_dir}/result.json", 'w') do |f| + | 123 | Report.prepare(f) + | 124 | + 5 (100.0%) | 125 | IO.foreach("#{$support_dir}/#{filename}") do |cols| + | 126 | row = cols.split(',') + | 127 | + 1 (20.0%) / 1 (20.0%) | 128 | if cols.start_with?('user') + | 129 | if Parser.parsed_exists? + 3 (60.0%) | 130 | Report.add_parsed(Parser.parsed_user) + | 131 | + 1 (20.0%) | 132 | Parser.clear_cache + | 133 | end diff --git a/optimizations/step2/asymptotic.txt b/optimizations/step2/asymptotic.txt new file mode 100644 index 0000000..e1a9821 --- /dev/null +++ b/optimizations/step2/asymptotic.txt @@ -0,0 +1,22 @@ +Warming up -------------------------------------- + 65kb 3.000 i/100ms + 125kb 1.000 i/100ms + 250kb 1.000 i/100ms + 0.5m 1.000 i/100ms + 1m 1.000 i/100ms +Calculating ------------------------------------- + 65kb 45.897 (± 5.3%) i/s - 93.000 in 2.041616s + 125kb 22.121 (± 3.3%) i/s - 45.000 in 2.042215s + 250kb 8.367 (± 3.2%) i/s - 17.000 in 2.034589s + 0.5m 4.218 (± 4.4%) i/s - 9.000 in 2.137471s + 1m 1.859 (± 1.4%) i/s - 4.000 in 2.151525s + with 100.0% confidence + +Comparison: + 65kb: 45.9 i/s + 125kb: 22.1 i/s - 2.08x (± 0.14) slower + 250kb: 8.4 i/s - 5.48x (± 0.38) slower + 0.5m: 4.2 i/s - 10.88x (± 0.82) slower + 1m: 1.9 i/s - 24.68x (± 1.63) slower + with 100.0% confidence + diff --git a/optimizations/step2/rubyprof_wall.txt b/optimizations/step2/rubyprof_wall.txt new file mode 100644 index 0000000..658ee52 --- /dev/null +++ b/optimizations/step2/rubyprof_wall.txt @@ -0,0 +1,53 @@ +Measure Mode: wall_time +Thread ID: 70211185352720 +Fiber ID: 70211206492520 +Total: 0.052928 +Sort by: self_time + + %self total self wait child calls name + 40.00 0.021 0.021 0.000 0.000 1646 Array#all? + 11.95 0.048 0.006 0.000 0.041 9 Array#each + 7.71 0.013 0.004 0.000 0.009 2906 Array#map + 6.89 0.004 0.004 0.000 0.000 3293 String#split + 6.65 0.008 0.004 0.000 0.004 1382 #parse + 3.61 0.002 0.002 0.000 0.000 2764 Regexp#match + 2.34 0.003 0.001 0.000 0.001 1382 Object#parse_session + 2.25 0.002 0.001 0.000 0.001 1 JSON::Ext::Generator::GeneratorMethods::Hash#to_json + 1.80 0.001 0.001 0.000 0.000 1382 String#gsub! + 1.75 0.001 0.001 0.000 0.000 4292 String#encode + 1.60 0.001 0.001 0.000 0.000 529 Array#sort + 1.59 0.001 0.001 0.000 0.000 1848 Hash#merge + 1.30 0.001 0.001 0.000 0.000 3841 String#upcase + 1.07 0.001 0.001 0.000 0.000 1382 Date#iso8601 + 0.87 0.000 0.000 0.000 0.000 2764 String#to_i + 0.86 0.001 0.000 0.000 0.000 264 Array#any? + 0.81 0.000 0.000 0.000 0.000 1382 MatchData#begin + 0.75 0.000 0.000 0.000 0.000 2744 Date#<=> + 0.74 0.000 0.000 0.000 0.000 1 #write + 0.65 0.001 0.000 0.000 0.000 1 Array#each_index + 0.65 0.000 0.000 0.000 0.000 1382 String#[]= + 0.56 0.001 0.000 0.000 0.000 264 Object#parse_user + 0.50 0.000 0.000 0.000 0.000 2116 String#to_s + 0.46 0.000 0.000 0.000 0.000 265 Array#join + 0.42 0.000 0.000 0.000 0.000 1382 Integer#div + 0.37 0.000 0.000 0.000 0.000 1382 MatchData#end + 0.34 0.000 0.000 0.000 0.000 264 Class#new + 0.28 0.000 0.000 0.000 0.000 1 Array#flatten + 0.21 0.000 0.000 0.000 0.000 528 Integer#to_s + 0.16 0.000 0.000 0.000 0.000 264 User#initialize + 0.13 0.000 0.000 0.000 0.000 1 #read + 0.12 0.000 0.000 0.000 0.000 1 Array#uniq + 0.12 0.000 0.000 0.000 0.000 266 Hash#keys + 0.10 0.000 0.000 0.000 0.000 264 Array#max + 0.10 0.000 0.000 0.000 0.000 264 Array#reverse + 0.09 0.000 0.000 0.000 0.000 264 Array#sum + 0.06 0.000 0.000 0.000 0.000 267 Array#count + 0.06 0.053 0.000 0.000 0.053 1 Object#work + 0.05 0.053 0.000 0.000 0.053 1 [global]#[no method] + 0.01 0.019 0.000 0.000 0.019 7 Object#collect_stats_from_users + 0.00 0.000 0.000 0.000 0.000 1 Kernel#dup + 0.00 0.000 0.000 0.000 0.000 1 Kernel#initialize_dup + 0.00 0.000 0.000 0.000 0.000 1 Symbol#to_s + 0.00 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::State#initialize_copy + +* indicates recursively called methods diff --git a/optimizations/step2/stackprof_wall.txt b/optimizations/step2/stackprof_wall.txt new file mode 100644 index 0000000..63de475 --- /dev/null +++ b/optimizations/step2/stackprof_wall.txt @@ -0,0 +1,134 @@ +================================== + Mode: wall(1000) + Samples: 23 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 23 (100.0%) 19 (82.6%) Object#work + 2 (8.7%) 2 (8.7%) Object#parse_session + 1 (4.3%) 1 (4.3%) User#initialize + 1 (4.3%) 1 (4.3%) Object#parse_user + 23 (100.0%) 0 (0.0%)
+ 23 (100.0%) 0 (0.0%)
+ 10 (43.5%) 0 (0.0%) Object#collect_stats_from_users + 23 (100.0%) 0 (0.0%) block (2 levels) in
+ 23 (100.0%) 0 (0.0%) block in
+ 23 (100.0%) 0 (0.0%) Object#save_stdout_to_file +Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:48) + samples: 19 self (82.6%) / 23 total (100.0%) + callers: + 28 ( 121.7%) Object#work + 23 ( 100.0%) block (2 levels) in
+ 10 ( 43.5%) Object#collect_stats_from_users + callees (4 total): + 28 ( 700.0%) Object#work + 10 ( 250.0%) Object#collect_stats_from_users + 2 ( 50.0%) Object#parse_session + 1 ( 25.0%) Object#parse_user + 1 ( 25.0%) User#initialize + code: + | 48 | def work(filename) + | 49 | file_lines = File.read("#{$support_dir}/#{filename}").split("\n") + | 50 | + | 51 | users = [] + | 52 | sessions = [] + | 53 | + 3 (13.0%) | 54 | file_lines.each do |line| + | 55 | cols = line.split(',') + | 56 | + | 57 | if cols[0] == 'user' + 1 (4.3%) | 58 | users = users + [parse_user(line)] + | 59 | + | 60 | sessions << [] + | 61 | else + 2 (8.7%) | 62 | sessions[-1] = sessions[-1] + [parse_session(line)] + | 63 | end + | 64 | end + | 65 | + | 66 | # Отчёт в json + | 67 | # - Сколько всего юзеров + + | 68 | # - Сколько всего уникальных браузеров + + | 69 | # - Сколько всего сессий + + | 70 | # - Перечислить уникальные браузеры в алфавитном порядке через запятую и капсом + + | 71 | # + | 72 | # - По каждому пользователю + | 73 | # - сколько всего сессий + + | 74 | # - сколько всего времени + + | 75 | # - самая длинная сессия + + | 76 | # - браузеры через запятую + + | 77 | # - Хоть раз использовал IE? + + | 78 | # - Всегда использовал только Хром? + + | 79 | # - даты сессий в порядке убывания через запятую + + | 80 | flatten = sessions.flatten + | 81 | report = {} + | 82 | + | 83 | report[:totalUsers] = users.count + | 84 | + | 85 | # Подсчёт количества уникальных браузеров + | 86 | uniqueBrowsers = [] + 7 (30.4%) | 87 | flatten.each do |session| + | 88 | browser = session['browser'] + 14 (60.9%) / 7 (30.4%) | 89 | uniqueBrowsers += [browser] if uniqueBrowsers.all? { |b| b != browser } + | 90 | end + | 91 | + | 92 | report['uniqueBrowsersCount'] = uniqueBrowsers.count + | 93 | + | 94 | report['totalSessions'] = flatten.count + | 95 | + | 96 | report['allBrowsers'] = + | 97 | flatten + | 98 | .map { |s| s['browser'] } + | 99 | .map { |b| b.upcase } + | 100 | .sort + | 101 | .uniq + | 102 | .join(',') + | 103 | + | 104 | # Статистика по пользователям + | 105 | users_objects = [] + | 106 | + 1 (4.3%) | 107 | users.each_index do |i| + | 108 | attributes = users[i] + | 109 | user_sessions = sessions[i] + 1 (4.3%) | 110 | user_object = User.new(attributes: attributes, sessions: user_sessions) + | 111 | users_objects = users_objects + [user_object] + | 112 | end + | 113 | + | 114 | report['usersStats'] = {} + | 115 | + | 116 | # Собираем количество сессий по пользователям + | 117 | collect_stats_from_users(report, users_objects) do |user| + | 118 | { 'sessionsCount' => user.sessions.count } + | 119 | end + | 120 | + | 121 | # Собираем количество времени по пользователям + 1 (4.3%) | 122 | collect_stats_from_users(report, users_objects) do |user| + 2 (8.7%) / 1 (4.3%) | 123 | { 'totalTime' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.sum.to_s + ' min.' } + | 124 | end + | 125 | + | 126 | # Выбираем самую длинную сессию пользователя + | 127 | collect_stats_from_users(report, users_objects) do |user| + | 128 | { 'longestSession' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.max.to_s + ' min.' } + | 129 | end + | 130 | + | 131 | # Браузеры пользователя через запятую + 1 (4.3%) | 132 | collect_stats_from_users(report, users_objects) do |user| + 2 (8.7%) / 1 (4.3%) | 133 | { 'browsers' => user.sessions.map {|s| s['browser']}.map {|b| b.upcase}.sort.join(', ') } + | 134 | end + | 135 | + | 136 | # Хоть раз использовал IE? + 1 (4.3%) | 137 | collect_stats_from_users(report, users_objects) do |user| + 2 (8.7%) / 1 (4.3%) | 138 | { 'usedIE' => user.sessions.map{|s| s['browser']}.any? { |b| b.upcase =~ /INTERNET EXPLORER/ } } + | 139 | end + | 140 | + | 141 | # Всегда использовал только Chrome? + 1 (4.3%) | 142 | collect_stats_from_users(report, users_objects) do |user| + 2 (8.7%) / 1 (4.3%) | 143 | { 'alwaysUsedChrome' => user.sessions.map{|s| s['browser']}.all? { |b| b.upcase =~ /CHROME/ } } + | 144 | end + | 145 | + | 146 | # Даты сессий через запятую в обратном порядке в формате iso8601 + 6 (26.1%) | 147 | collect_stats_from_users(report, users_objects) do |user| + 12 (52.2%) / 6 (26.1%) | 148 | { 'dates' => user.sessions.map{|s| s['date']}.map {|d| Date.parse(d)}.sort.reverse.map { |d| d.iso8601 } } + | 149 | end + | 150 | + 2 (8.7%) / 2 (8.7%) | 151 | File.write("#{$support_dir}/result.json", "#{report.to_json}\n") + | 152 | end diff --git a/optimizations/step3/asymptotic.txt b/optimizations/step3/asymptotic.txt new file mode 100644 index 0000000..cbe7f32 --- /dev/null +++ b/optimizations/step3/asymptotic.txt @@ -0,0 +1,22 @@ +Warming up -------------------------------------- + 65kb 5.000 i/100ms + 125kb 2.000 i/100ms + 250kb 1.000 i/100ms + 0.5m 1.000 i/100ms + 1m 1.000 i/100ms +Calculating ------------------------------------- + 65kb 64.554 (± 3.8%) i/s - 130.000 in 2.019916s + 125kb 30.716 (± 2.9%) i/s - 62.000 in 2.022312s + 250kb 10.993 (± 3.7%) i/s - 22.000 in 2.006361s + 0.5m 5.494 (± 3.2%) i/s - 11.000 in 2.004064s + 1m 2.294 (± 4.5%) i/s - 5.000 in 2.179686s + with 100.0% confidence + +Comparison: + 65kb: 64.6 i/s + 125kb: 30.7 i/s - 2.10x (± 0.11) slower + 250kb: 11.0 i/s - 5.87x (± 0.32) slower + 0.5m: 5.5 i/s - 11.75x (± 0.60) slower + 1m: 2.3 i/s - 28.12x (± 1.75) slower + with 100.0% confidence + diff --git a/optimizations/step3/rubyprof_wall.txt b/optimizations/step3/rubyprof_wall.txt new file mode 100644 index 0000000..559d189 --- /dev/null +++ b/optimizations/step3/rubyprof_wall.txt @@ -0,0 +1,60 @@ +Measure Mode: wall_time +Thread ID: 70129408991240 +Fiber ID: 70129414541640 +Total: 0.032080 +Sort by: self_time + + %self total self wait child calls name + 18.98 0.026 0.006 0.000 0.020 9 Array#each + 13.60 0.013 0.004 0.000 0.009 2906 Array#map + 10.42 0.003 0.003 0.000 0.000 3293 String#split + 10.13 0.007 0.003 0.000 0.004 1382 #parse + 5.44 0.002 0.002 0.000 0.000 2764 Regexp#match + 3.88 0.002 0.001 0.000 0.001 1 JSON::Ext::Generator::GeneratorMethods::Hash#to_json + 3.77 0.003 0.001 0.000 0.001 1382 Object#parse_session + 3.23 0.001 0.001 0.000 0.000 1382 String#gsub! + 2.84 0.001 0.001 0.000 0.000 1848 Hash#merge + 2.71 0.001 0.001 0.000 0.000 529 Array#sort + 2.65 0.001 0.001 0.000 0.000 4292 String#encode + 2.13 0.001 0.001 0.000 0.000 3841 String#upcase + 1.96 0.001 0.001 0.000 0.000 1382 Date#iso8601 + 1.91 0.001 0.001 0.000 0.000 1382 Set#add + 1.46 0.000 0.000 0.000 0.000 1 #write + 1.42 0.001 0.000 0.000 0.000 1 Array#each_index + 1.30 0.000 0.000 0.000 0.000 2764 String#to_i + 1.23 0.000 0.000 0.000 0.000 2744 Date#<=> + 1.15 0.000 0.000 0.000 0.000 264 Array#any? + 1.08 0.000 0.000 0.000 0.000 1382 MatchData#begin + 0.99 0.000 0.000 0.000 0.000 1382 String#[]= + 0.89 0.000 0.000 0.000 0.000 2116 String#to_s + 0.80 0.000 0.000 0.000 0.000 264 Object#parse_user + 0.73 0.000 0.000 0.000 0.000 265 Array#join + 0.71 0.000 0.000 0.000 0.000 266 *Class#new + 0.67 0.000 0.000 0.000 0.000 264 Array#all? + 0.63 0.000 0.000 0.000 0.000 1382 MatchData#end + 0.63 0.000 0.000 0.000 0.000 1382 Integer#div + 0.44 0.000 0.000 0.000 0.000 1 Array#flatten + 0.34 0.000 0.000 0.000 0.000 528 Integer#to_s + 0.34 0.000 0.000 0.000 0.000 264 User#initialize + 0.26 0.000 0.000 0.000 0.000 1 Array#uniq + 0.20 0.000 0.000 0.000 0.000 1 #read + 0.18 0.000 0.000 0.000 0.000 264 Array#reverse + 0.17 0.000 0.000 0.000 0.000 264 Array#max + 0.16 0.000 0.000 0.000 0.000 266 Hash#keys + 0.16 0.000 0.000 0.000 0.000 264 Array#sum + 0.12 0.000 0.000 0.000 0.000 266 Array#count + 0.12 0.032 0.000 0.000 0.032 1 Object#work + 0.07 0.032 0.000 0.000 0.032 1 [global]#[no method] + 0.02 0.000 0.000 0.000 0.000 1 Hash#each_key + 0.01 0.000 0.000 0.000 0.000 1 Set#initialize + 0.01 0.019 0.000 0.000 0.019 7 Object#collect_stats_from_users + 0.01 0.000 0.000 0.000 0.000 1 Set#each + 0.01 0.000 0.000 0.000 0.000 1 Enumerable#count + 0.01 0.000 0.000 0.000 0.000 1 Kernel#dup + 0.00 0.000 0.000 0.000 0.000 1 NilClass#nil? + 0.00 0.000 0.000 0.000 0.000 1 Symbol#to_s + 0.00 0.000 0.000 0.000 0.000 1 Kernel#initialize_dup + 0.00 0.000 0.000 0.000 0.000 1 Hash#initialize + 0.00 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::State#initialize_copy + +* indicates recursively called methods diff --git a/optimizations/step3/stackprof_wall.txt b/optimizations/step3/stackprof_wall.txt new file mode 100644 index 0000000..e286ba0 --- /dev/null +++ b/optimizations/step3/stackprof_wall.txt @@ -0,0 +1,134 @@ +================================== + Mode: wall(1000) + Samples: 18 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 18 (100.0%) 12 (66.7%) Object#work + 12 (66.7%) 3 (16.7%) Object#collect_stats_from_users + 1 (5.6%) 1 (5.6%) Object#parse_user + 1 (5.6%) 1 (5.6%) Object#parse_session + 1 (5.6%) 1 (5.6%) Set#add + 18 (100.0%) 0 (0.0%)
+ 18 (100.0%) 0 (0.0%)
+ 18 (100.0%) 0 (0.0%) block (2 levels) in
+ 18 (100.0%) 0 (0.0%) block in
+ 18 (100.0%) 0 (0.0%) Object#save_stdout_to_file +Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:49) + samples: 12 self (66.7%) / 18 total (100.0%) + callers: + 18 ( 100.0%) block (2 levels) in
+ 13 ( 72.2%) Object#work + 9 ( 50.0%) Object#collect_stats_from_users + callees (6 total): + 13 ( 216.7%) Object#work + 12 ( 200.0%) Object#collect_stats_from_users + 1 ( 16.7%) Object#parse_user + 1 ( 16.7%) Object#parse_session + 1 ( 16.7%) Set#add + code: + | 49 | def work(filename) + | 50 | file_lines = File.read("#{$support_dir}/#{filename}").split("\n") + | 51 | + | 52 | users = [] + | 53 | sessions = [] + | 54 | + 3 (16.7%) | 55 | file_lines.each do |line| + | 56 | cols = line.split(',') + | 57 | + | 58 | if cols[0] == 'user' + 1 (5.6%) | 59 | users = users + [parse_user(line)] + | 60 | + | 61 | sessions << [] + | 62 | else + 1 (5.6%) | 63 | sessions[-1] = sessions[-1] + [parse_session(line)] + | 64 | end + 1 (5.6%) / 1 (5.6%) | 65 | end + | 66 | + | 67 | # Отчёт в json + | 68 | # - Сколько всего юзеров + + | 69 | # - Сколько всего уникальных браузеров + + | 70 | # - Сколько всего сессий + + | 71 | # - Перечислить уникальные браузеры в алфавитном порядке через запятую и капсом + + | 72 | # + | 73 | # - По каждому пользователю + | 74 | # - сколько всего сессий + + | 75 | # - сколько всего времени + + | 76 | # - самая длинная сессия + + | 77 | # - браузеры через запятую + + | 78 | # - Хоть раз использовал IE? + + | 79 | # - Всегда использовал только Хром? + + | 80 | # - даты сессий в порядке убывания через запятую + + | 81 | flatten = sessions.flatten + | 82 | report = {} + | 83 | + | 84 | report[:totalUsers] = users.count + | 85 | + | 86 | # Подсчёт количества уникальных браузеров + | 87 | uniqueBrowsers = Set.new + 1 (5.6%) | 88 | flatten.each do |session| + | 89 | browser = session['browser'] + 1 (5.6%) | 90 | uniqueBrowsers << browser + | 91 | end + | 92 | + | 93 | report['uniqueBrowsersCount'] = uniqueBrowsers.count + | 94 | + | 95 | report['totalSessions'] = flatten.count + | 96 | + | 97 | report['allBrowsers'] = + | 98 | flatten + | 99 | .map { |s| s['browser'] } + | 100 | .map { |b| b.upcase } + | 101 | .sort + | 102 | .uniq + | 103 | .join(',') + | 104 | + | 105 | # Статистика по пользователям + | 106 | users_objects = [] + | 107 | + 1 (5.6%) | 108 | users.each_index do |i| + | 109 | attributes = users[i] + | 110 | user_sessions = sessions[i] + | 111 | user_object = User.new(attributes: attributes, sessions: user_sessions) + | 112 | users_objects = users_objects + [user_object] + 1 (5.6%) / 1 (5.6%) | 113 | end + | 114 | + | 115 | report['usersStats'] = {} + | 116 | + | 117 | # Собираем количество сессий по пользователям + | 118 | collect_stats_from_users(report, users_objects) do |user| + | 119 | { 'sessionsCount' => user.sessions.count } + | 120 | end + | 121 | + | 122 | # Собираем количество времени по пользователям + 1 (5.6%) | 123 | collect_stats_from_users(report, users_objects) do |user| + | 124 | { 'totalTime' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.sum.to_s + ' min.' } + | 125 | end + | 126 | + | 127 | # Выбираем самую длинную сессию пользователя + 1 (5.6%) | 128 | collect_stats_from_users(report, users_objects) do |user| + | 129 | { 'longestSession' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.max.to_s + ' min.' } + 1 (5.6%) / 1 (5.6%) | 130 | end + | 131 | + | 132 | # Браузеры пользователя через запятую + 1 (5.6%) | 133 | collect_stats_from_users(report, users_objects) do |user| + | 134 | { 'browsers' => user.sessions.map {|s| s['browser']}.map {|b| b.upcase}.sort.join(', ') } + | 135 | end + | 136 | + | 137 | # Хоть раз использовал IE? + 1 (5.6%) | 138 | collect_stats_from_users(report, users_objects) do |user| + | 139 | { 'usedIE' => user.sessions.map{|s| s['browser']}.any? { |b| b.upcase =~ /INTERNET EXPLORER/ } } + | 140 | end + | 141 | + | 142 | # Всегда использовал только Chrome? + | 143 | collect_stats_from_users(report, users_objects) do |user| + | 144 | { 'alwaysUsedChrome' => user.sessions.map{|s| s['browser']}.all? { |b| b.upcase =~ /CHROME/ } } + | 145 | end + | 146 | + | 147 | # Даты сессий через запятую в обратном порядке в формате iso8601 + 8 (44.4%) | 148 | collect_stats_from_users(report, users_objects) do |user| + 16 (88.9%) / 8 (44.4%) | 149 | { 'dates' => user.sessions.map{|s| s['date']}.map {|d| Date.parse(d)}.sort.reverse.map { |d| d.iso8601 } } + | 150 | end + | 151 | + 1 (5.6%) / 1 (5.6%) | 152 | File.write("#{$support_dir}/result.json", "#{report.to_json}\n") + | 153 | end diff --git a/optimizations/step4/asymptotic.txt b/optimizations/step4/asymptotic.txt new file mode 100644 index 0000000..1cf8a0a --- /dev/null +++ b/optimizations/step4/asymptotic.txt @@ -0,0 +1,22 @@ +Warming up -------------------------------------- + 65kb 9.000 i/100ms + 125kb 3.000 i/100ms + 250kb 1.000 i/100ms + 0.5m 1.000 i/100ms + 1m 1.000 i/100ms +Calculating ------------------------------------- + 65kb 95.248 (± 2.8%) i/s - 198.000 in 2.081507s + 125kb 46.091 (± 7.6%) i/s - 90.000 in 2.003228s + 250kb 16.532 (± 3.3%) i/s - 33.000 in 2.003245s + 0.5m 6.908 (± 7.2%) i/s - 14.000 in 2.033768s + 1m 3.040 (± 4.8%) i/s - 7.000 in 2.306037s + with 100.0% confidence + +Comparison: + 65kb: 95.2 i/s + 125kb: 46.1 i/s - 2.07x (± 0.18) slower + 250kb: 16.5 i/s - 5.76x (± 0.26) slower + 0.5m: 6.9 i/s - 13.78x (± 0.92) slower + 1m: 3.0 i/s - 31.33x (± 1.75) slower + with 100.0% confidence + diff --git a/optimizations/step4/massif.out.21629 b/optimizations/step4/massif.out.21629 new file mode 100644 index 0000000..be399b8 --- /dev/null +++ b/optimizations/step4/massif.out.21629 @@ -0,0 +1,1947 @@ +desc: (none) +cmd: /home/donasktello/.rvm/rubies/ruby-2.6.1/bin/ruby valgrind_massif.rb +time_unit: i +#----------- +snapshot=0 +#----------- +time=0 +mem_heap_B=0 +mem_heap_extra_B=0 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=1 +#----------- +time=13878335 +mem_heap_B=35897586 +mem_heap_extra_B=417142 +mem_stacks_B=0 +heap_tree=detailed +n4: 35897586 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 1550065 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 501489 in 61 places, all below massif's threshold (1.00%) + n0: 400833 in 31 places, all below massif's threshold (1.00%) + n1: 392256 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 392256 0x4F1005D: Init_heap (gc.c:1650) + n1: 392256 0x4EF722A: ruby_setup (eval.c:68) + n1: 392256 0x4EFA3A7: ruby_init (eval.c:91) + n0: 392256 0x108954: main (main.c:41) +#----------- +snapshot=2 +#----------- +time=32862578 +mem_heap_B=36445552 +mem_heap_extra_B=486272 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=3 +#----------- +time=51380788 +mem_heap_B=36640349 +mem_heap_extra_B=574163 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=4 +#----------- +time=65721921 +mem_heap_B=36989880 +mem_heap_extra_B=588208 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=5 +#----------- +time=86480138 +mem_heap_B=37040989 +mem_heap_extra_B=737187 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=6 +#----------- +time=98896730 +mem_heap_B=37153907 +mem_heap_extra_B=796637 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=7 +#----------- +time=112315457 +mem_heap_B=37447343 +mem_heap_extra_B=853713 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=8 +#----------- +time=126121479 +mem_heap_B=37404731 +mem_heap_extra_B=831629 +mem_stacks_B=0 +heap_tree=detailed +n5: 37404731 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n3: 2201729 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 714433 in 97 places, all below massif's threshold (1.00%) + n1: 438720 0x501B5D1: st_init_table_with_size (st.c:605) + n0: 438720 in 31 places, all below massif's threshold (1.00%) + n1: 764900 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 764900 in 23 places, all below massif's threshold (1.00%) + n2: 588384 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 392256 0x4F1005D: Init_heap (gc.c:1650) + n1: 392256 0x4EF722A: ruby_setup (eval.c:68) + n1: 392256 0x4EFA3A7: ruby_init (eval.c:91) + n0: 392256 0x108954: main (main.c:41) + n0: 196128 in 3 places, all below massif's threshold (1.00%) + n0: 295286 in 79 places, all below massif's threshold (1.00%) +#----------- +snapshot=9 +#----------- +time=144442658 +mem_heap_B=37700963 +mem_heap_extra_B=848421 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=10 +#----------- +time=156439163 +mem_heap_B=37737178 +mem_heap_extra_B=962926 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=11 +#----------- +time=175757910 +mem_heap_B=38233744 +mem_heap_extra_B=1329872 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=12 +#----------- +time=191141977 +mem_heap_B=38357491 +mem_heap_extra_B=1381717 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=13 +#----------- +time=212265323 +mem_heap_B=38132352 +mem_heap_extra_B=1395016 +mem_stacks_B=0 +heap_tree=detailed +n5: 38132352 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2502170 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 530794 in 103 places, all below massif's threshold (1.00%) + n2: 501312 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 412992 0x501B8F5: rebuild_table (st.c:780) + n0: 412992 in 4 places, all below massif's threshold (1.00%) + n0: 88320 in 31 places, all below massif's threshold (1.00%) + n2: 421488 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 421032 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 421032 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 416472 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 416472 in 9 places, all below massif's threshold (1.00%) + n0: 4560 in 5 places, all below massif's threshold (1.00%) + n0: 456 in 1 place, below massif's threshold (1.00%) + n1: 964209 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 964209 in 23 places, all below massif's threshold (1.00%) + n1: 751824 0x4F0FC9B: heap_assign_page (gc.c:7913) + n0: 751824 in 5 places, all below massif's threshold (1.00%) + n0: 359717 in 92 places, all below massif's threshold (1.00%) +#----------- +snapshot=14 +#----------- +time=229509089 +mem_heap_B=38273729 +mem_heap_extra_B=1470279 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=15 +#----------- +time=246635353 +mem_heap_B=38557113 +mem_heap_extra_B=1647167 +mem_stacks_B=0 +heap_tree=detailed +n5: 38557113 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2714203 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 660219 in 108 places, all below massif's threshold (1.00%) + n2: 571008 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 465024 0x501B8F5: rebuild_table (st.c:780) + n0: 465024 in 4 places, all below massif's threshold (1.00%) + n0: 105984 in 32 places, all below massif's threshold (1.00%) + n2: 434400 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 433944 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 433944 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 428592 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 428592 in 9 places, all below massif's threshold (1.00%) + n0: 5352 in 6 places, all below massif's threshold (1.00%) + n0: 456 in 1 place, below massif's threshold (1.00%) + n1: 1037666 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1037666 in 26 places, all below massif's threshold (1.00%) + n1: 849888 0x4F0FC9B: heap_assign_page (gc.c:7913) + n0: 849888 in 5 places, all below massif's threshold (1.00%) + n0: 400924 in 97 places, all below massif's threshold (1.00%) +#----------- +snapshot=16 +#----------- +time=259575995 +mem_heap_B=38935037 +mem_heap_extra_B=1832507 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=17 +#----------- +time=269734967 +mem_heap_B=38747311 +mem_heap_extra_B=2030001 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=18 +#----------- +time=284223159 +mem_heap_B=39254072 +mem_heap_extra_B=2173944 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=19 +#----------- +time=301370376 +mem_heap_B=39312285 +mem_heap_extra_B=2185387 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=20 +#----------- +time=311566099 +mem_heap_B=39559005 +mem_heap_extra_B=2248579 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=21 +#----------- +time=329965843 +mem_heap_B=39754420 +mem_heap_extra_B=2281076 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=22 +#----------- +time=342188289 +mem_heap_B=39928067 +mem_heap_extra_B=2354397 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=23 +#----------- +time=357973192 +mem_heap_B=40132139 +mem_heap_extra_B=2398861 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=24 +#----------- +time=367019949 +mem_heap_B=40277650 +mem_heap_extra_B=2433414 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=25 +#----------- +time=382362862 +mem_heap_B=40327969 +mem_heap_extra_B=2460943 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=26 +#----------- +time=395379086 +mem_heap_B=40733233 +mem_heap_extra_B=2605791 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=27 +#----------- +time=411190403 +mem_heap_B=41244528 +mem_heap_extra_B=2818712 +mem_stacks_B=0 +heap_tree=detailed +n5: 41244528 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 3856376 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 991304 in 116 places, all below massif's threshold (1.00%) + n2: 941952 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 814848 0x501B8F5: rebuild_table (st.c:780) + n1: 486144 0x501C45F: st_add_direct_with_hash (st.c:1142) + n1: 486144 0x501D81E: st_update (st.c:1515) + n0: 486144 in 4 places, all below massif's threshold (1.00%) + n0: 328704 in 3 places, all below massif's threshold (1.00%) + n0: 127104 in 36 places, all below massif's threshold (1.00%) + n2: 874544 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 873224 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 873224 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 863336 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 490600 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 457224 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 449992 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 449992 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 449992 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 449992 in 3 places, all below massif's threshold (1.00%) + n0: 7232 in 4 places, all below massif's threshold (1.00%) + n0: 33376 in 7 places, all below massif's threshold (1.00%) + n0: 372736 in 10 places, all below massif's threshold (1.00%) + n0: 9888 in 7 places, all below massif's threshold (1.00%) + n0: 1320 in 1 place, below massif's threshold (1.00%) + n2: 1963738 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1244754 in 26 places, all below massif's threshold (1.00%) + n2: 718984 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n1: 705072 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 705072 in 11 places, all below massif's threshold (1.00%) + n0: 13912 in 7 places, all below massif's threshold (1.00%) + n2: 1323864 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 768168 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 768168 in 16 places, all below massif's threshold (1.00%) + n0: 555696 in 4 places, all below massif's threshold (1.00%) + n0: 546118 in 102 places, all below massif's threshold (1.00%) +#----------- +snapshot=28 +#----------- +time=431123471 +mem_heap_B=41274412 +mem_heap_extra_B=2879988 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=29 +#----------- +time=448108666 +mem_heap_B=41691493 +mem_heap_extra_B=3012315 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=30 +#----------- +time=461272942 +mem_heap_B=41995938 +mem_heap_extra_B=3113062 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=31 +#----------- +time=472459653 +mem_heap_B=41624900 +mem_heap_extra_B=3091228 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=32 +#----------- +time=491583441 +mem_heap_B=42150367 +mem_heap_extra_B=3251297 +mem_stacks_B=0 +heap_tree=detailed +n5: 42150367 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 4159086 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 1122662 in 117 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n2: 1012488 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1011136 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1011136 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1002728 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 632144 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 598504 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 591272 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 591272 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 591272 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 478744 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n0: 478744 in 3 places, all below massif's threshold (1.00%) + n0: 112528 in 2 places, all below massif's threshold (1.00%) + n0: 7232 in 4 places, all below massif's threshold (1.00%) + n0: 33640 in 7 places, all below massif's threshold (1.00%) + n0: 370584 in 10 places, all below massif's threshold (1.00%) + n0: 8408 in 7 places, all below massif's threshold (1.00%) + n0: 1352 in 1 place, below massif's threshold (1.00%) + n2: 975360 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 827712 0x501B8F5: rebuild_table (st.c:780) + n1: 487872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n1: 487872 0x501D81E: st_update (st.c:1515) + n0: 487872 in 4 places, all below massif's threshold (1.00%) + n0: 339840 in 3 places, all below massif's threshold (1.00%) + n0: 147648 in 37 places, all below massif's threshold (1.00%) + n3: 2265809 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 882255 in 25 places, all below massif's threshold (1.00%) + n2: 861064 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 851000 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 492248 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 459984 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 456728 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 456728 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 456728 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 456728 in 3 places, all below massif's threshold (1.00%) + n0: 3256 in 4 places, all below massif's threshold (1.00%) + n0: 32264 in 7 places, all below massif's threshold (1.00%) + n0: 358752 in 10 places, all below massif's threshold (1.00%) + n0: 10064 in 7 places, all below massif's threshold (1.00%) + n2: 522490 0x4EB208C: iseq_setup (compile.c:2126) + n1: 522455 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 522455 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 518793 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 518793 in 11 places, all below massif's threshold (1.00%) + n0: 3662 in 7 places, all below massif's threshold (1.00%) + n0: 35 in 1 place, below massif's threshold (1.00%) + n2: 1470960 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 898920 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 898920 in 17 places, all below massif's threshold (1.00%) + n0: 572040 in 4 places, all below massif's threshold (1.00%) + n0: 700080 in 107 places, all below massif's threshold (1.00%) +#----------- +snapshot=33 +#----------- +time=505515340 +mem_heap_B=42742317 +mem_heap_extra_B=3310979 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=34 +#----------- +time=516699408 +mem_heap_B=42348980 +mem_heap_extra_B=3299316 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=35 +#----------- +time=527893150 +mem_heap_B=42521348 +mem_heap_extra_B=3396508 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=36 +#----------- +time=549122162 +mem_heap_B=42854937 +mem_heap_extra_B=3468551 +mem_stacks_B=0 +heap_tree=detailed +n5: 42854937 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 4578153 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 1273017 in 117 places, all below massif's threshold (1.00%) + n2: 1169360 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1167896 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1167896 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1155600 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 725760 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 690208 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 682432 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 682432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 682432 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 552264 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n0: 552264 in 3 places, all below massif's threshold (1.00%) + n0: 130168 in 2 places, all below massif's threshold (1.00%) + n0: 7776 in 4 places, all below massif's threshold (1.00%) + n0: 35552 in 8 places, all below massif's threshold (1.00%) + n0: 429840 in 10 places, all below massif's threshold (1.00%) + n0: 12296 in 7 places, all below massif's threshold (1.00%) + n0: 1464 in 1 place, below massif's threshold (1.00%) + n2: 1087200 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 934080 0x501B8F5: rebuild_table (st.c:780) + n1: 487872 0x501C45F: st_add_direct_with_hash (st.c:1142) + n1: 487872 0x501D81E: st_update (st.c:1515) + n0: 487872 in 4 places, all below massif's threshold (1.00%) + n0: 446208 in 3 places, all below massif's threshold (1.00%) + n0: 153120 in 50 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 2589499 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1013006 in 25 places, all below massif's threshold (1.00%) + n2: 984496 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 977688 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 559440 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 525400 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 521256 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 521256 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 521256 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 521256 in 3 places, all below massif's threshold (1.00%) + n0: 4144 in 4 places, all below massif's threshold (1.00%) + n0: 34040 in 8 places, all below massif's threshold (1.00%) + n0: 418248 in 10 places, all below massif's threshold (1.00%) + n0: 6808 in 7 places, all below massif's threshold (1.00%) + n2: 591997 0x4EB208C: iseq_setup (compile.c:2126) + n1: 591955 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 591955 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 587864 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 587864 in 11 places, all below massif's threshold (1.00%) + n0: 4091 in 7 places, all below massif's threshold (1.00%) + n0: 42 in 1 place, below massif's threshold (1.00%) + n2: 1470960 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 898920 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 898920 in 17 places, all below massif's threshold (1.00%) + n0: 572040 in 4 places, all below massif's threshold (1.00%) + n0: 661893 in 108 places, all below massif's threshold (1.00%) +#----------- +snapshot=37 +#----------- +time=565575816 +mem_heap_B=42896209 +mem_heap_extra_B=3557319 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=38 +#----------- +time=578616776 +mem_heap_B=42997075 +mem_heap_extra_B=3599933 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=39 +#----------- +time=592112610 +mem_heap_B=43164666 +mem_heap_extra_B=3624126 +mem_stacks_B=0 +heap_tree=detailed +n5: 43164666 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 4687341 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 1290029 in 117 places, all below massif's threshold (1.00%) + n2: 1237632 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1236152 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1236152 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1215264 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 753792 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 718240 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 709912 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 709912 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 709912 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 572136 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 480344 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 480344 in 2 places, all below massif's threshold (1.00%) + n0: 91792 in 2 places, all below massif's threshold (1.00%) + n0: 137776 in 2 places, all below massif's threshold (1.00%) + n0: 8328 in 4 places, all below massif's threshold (1.00%) + n0: 35552 in 8 places, all below massif's threshold (1.00%) + n0: 461472 in 10 places, all below massif's threshold (1.00%) + n0: 20888 in 7 places, all below massif's threshold (1.00%) + n0: 1480 in 1 place, below massif's threshold (1.00%) + n2: 1111104 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 937344 0x501B8F5: rebuild_table (st.c:780) + n1: 489408 0x501C45F: st_add_direct_with_hash (st.c:1142) + n1: 489408 0x501D81E: st_update (st.c:1515) + n0: 489408 in 5 places, all below massif's threshold (1.00%) + n0: 447936 in 3 places, all below massif's threshold (1.00%) + n0: 173760 in 50 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 2753953 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1081494 in 25 places, all below massif's threshold (1.00%) + n2: 1051096 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1043992 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 588744 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 554704 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 549672 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 549672 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 549672 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 549672 in 3 places, all below massif's threshold (1.00%) + n0: 5032 in 4 places, all below massif's threshold (1.00%) + n0: 34040 in 8 places, all below massif's threshold (1.00%) + n0: 455248 in 10 places, all below massif's threshold (1.00%) + n0: 7104 in 7 places, all below massif's threshold (1.00%) + n2: 621363 0x4EB208C: iseq_setup (compile.c:2126) + n1: 621320 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 621320 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 617228 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 617228 in 11 places, all below massif's threshold (1.00%) + n0: 4092 in 7 places, all below massif's threshold (1.00%) + n0: 43 in 1 place, below massif's threshold (1.00%) + n2: 1487304 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 898920 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 898920 in 17 places, all below massif's threshold (1.00%) + n0: 588384 in 4 places, all below massif's threshold (1.00%) + n0: 681636 in 108 places, all below massif's threshold (1.00%) +#----------- +snapshot=40 +#----------- +time=608414271 +mem_heap_B=43518196 +mem_heap_extra_B=4061572 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=41 +#----------- +time=618384597 +mem_heap_B=43827634 +mem_heap_extra_B=4318894 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=42 +#----------- +time=631987863 +mem_heap_B=44250764 +mem_heap_extra_B=4571700 +mem_stacks_B=0 +heap_tree=detailed +n5: 44250764 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 4942676 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 1403756 in 117 places, all below massif's threshold (1.00%) + n2: 1373192 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1371664 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1371664 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1346352 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 755760 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 718240 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 709912 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 709912 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 709912 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 572136 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n0: 572136 in 3 places, all below massif's threshold (1.00%) + n0: 137776 in 2 places, all below massif's threshold (1.00%) + n0: 8328 in 4 places, all below massif's threshold (1.00%) + n0: 37520 in 8 places, all below massif's threshold (1.00%) + n0: 590592 in 10 places, all below massif's threshold (1.00%) + n0: 25312 in 7 places, all below massif's threshold (1.00%) + n0: 1528 in 1 place, below massif's threshold (1.00%) + n2: 1117152 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 939264 0x501B8F5: rebuild_table (st.c:780) + n1: 490944 0x501C45F: st_add_direct_with_hash (st.c:1142) + n1: 490944 0x501D81E: st_update (st.c:1515) + n0: 490944 in 5 places, all below massif's threshold (1.00%) + n0: 448320 in 3 places, all below massif's threshold (1.00%) + n0: 177888 in 50 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 2936070 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1132360 in 25 places, all below massif's threshold (1.00%) + n2: 1075664 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1056720 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 589632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 554704 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 549672 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 549672 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 549672 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 549672 in 3 places, all below massif's threshold (1.00%) + n0: 5032 in 4 places, all below massif's threshold (1.00%) + n0: 34928 in 8 places, all below massif's threshold (1.00%) + n0: 467088 in 10 places, all below massif's threshold (1.00%) + n0: 18944 in 7 places, all below massif's threshold (1.00%) + n2: 728046 0x4EB208C: iseq_setup (compile.c:2126) + n1: 728000 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 728000 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 722308 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 722308 in 11 places, all below massif's threshold (1.00%) + n0: 5692 in 7 places, all below massif's threshold (1.00%) + n0: 46 in 1 place, below massif's threshold (1.00%) + n2: 1928592 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 1340208 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 800856 in 20 places, all below massif's threshold (1.00%) + n1: 539352 0x50240D3: str_new0 (string.c:723) + n0: 539352 in 4 places, all below massif's threshold (1.00%) + n0: 588384 in 4 places, all below massif's threshold (1.00%) + n0: 888994 in 108 places, all below massif's threshold (1.00%) +#----------- +snapshot=43 +#----------- +time=641295970 +mem_heap_B=44590729 +mem_heap_extra_B=4721319 +mem_stacks_B=0 +heap_tree=detailed +n5: 44590729 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 5090264 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 1533152 in 118 places, all below massif's threshold (1.00%) + n2: 1389656 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1388128 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1388128 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1362096 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 755760 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 718240 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 709912 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 709912 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 709912 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 572136 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n0: 572136 in 3 places, all below massif's threshold (1.00%) + n0: 137776 in 2 places, all below massif's threshold (1.00%) + n0: 8328 in 4 places, all below massif's threshold (1.00%) + n0: 37520 in 8 places, all below massif's threshold (1.00%) + n0: 606336 in 10 places, all below massif's threshold (1.00%) + n0: 26032 in 7 places, all below massif's threshold (1.00%) + n0: 1528 in 1 place, below massif's threshold (1.00%) + n2: 1118880 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 939264 0x501B8F5: rebuild_table (st.c:780) + n0: 939264 in 4 places, all below massif's threshold (1.00%) + n0: 179616 in 50 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 2965938 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1147188 in 25 places, all below massif's threshold (1.00%) + n2: 1078624 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1058200 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 589632 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 554704 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 549672 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 549672 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 549672 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 549672 in 3 places, all below massif's threshold (1.00%) + n0: 5032 in 4 places, all below massif's threshold (1.00%) + n0: 34928 in 8 places, all below massif's threshold (1.00%) + n0: 468568 in 10 places, all below massif's threshold (1.00%) + n0: 20424 in 7 places, all below massif's threshold (1.00%) + n2: 740126 0x4EB208C: iseq_setup (compile.c:2126) + n1: 740080 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 740080 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 734148 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 734148 in 11 places, all below massif's threshold (1.00%) + n0: 5932 in 7 places, all below massif's threshold (1.00%) + n0: 46 in 1 place, below massif's threshold (1.00%) + n2: 2059344 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 1438272 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 849888 in 21 places, all below massif's threshold (1.00%) + n1: 588384 0x50240D3: str_new0 (string.c:723) + n0: 588384 in 4 places, all below massif's threshold (1.00%) + n0: 621072 in 4 places, all below massif's threshold (1.00%) + n0: 920751 in 108 places, all below massif's threshold (1.00%) +#----------- +snapshot=44 +#----------- +time=654474569 +mem_heap_B=43827874 +mem_heap_extra_B=4293710 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=45 +#----------- +time=665659877 +mem_heap_B=44098328 +mem_heap_extra_B=4387248 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=46 +#----------- +time=682448600 +mem_heap_B=44515432 +mem_heap_extra_B=4532216 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=47 +#----------- +time=693638344 +mem_heap_B=44756601 +mem_heap_extra_B=4660127 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=48 +#----------- +time=704800975 +mem_heap_B=45056737 +mem_heap_extra_B=4754127 +mem_stacks_B=0 +heap_tree=detailed +n5: 45056737 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 5272981 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 1620125 in 118 places, all below massif's threshold (1.00%) + n2: 1423864 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1422016 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1422016 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1399728 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 860552 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 809568 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 801240 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 801240 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 801240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 643488 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 527392 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 527392 in 2 places, all below massif's threshold (1.00%) + n0: 116096 in 2 places, all below massif's threshold (1.00%) + n0: 157752 in 2 places, all below massif's threshold (1.00%) + n0: 8328 in 4 places, all below massif's threshold (1.00%) + n0: 50984 in 8 places, all below massif's threshold (1.00%) + n0: 539176 in 10 places, all below massif's threshold (1.00%) + n0: 22288 in 7 places, all below massif's threshold (1.00%) + n0: 1848 in 1 place, below massif's threshold (1.00%) + n2: 1180416 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 941184 0x501B8F5: rebuild_table (st.c:780) + n0: 941184 in 4 places, all below massif's threshold (1.00%) + n0: 239232 in 50 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 3267793 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1271616 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1236096 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 690272 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 649424 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 644392 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 644392 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 644392 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 517408 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n0: 517408 in 3 places, all below massif's threshold (1.00%) + n0: 126984 in 2 places, all below massif's threshold (1.00%) + n0: 5032 in 4 places, all below massif's threshold (1.00%) + n0: 40848 in 8 places, all below massif's threshold (1.00%) + n0: 545824 in 10 places, all below massif's threshold (1.00%) + n0: 35520 in 7 places, all below massif's threshold (1.00%) + n0: 1264300 in 25 places, all below massif's threshold (1.00%) + n2: 731877 0x4EB208C: iseq_setup (compile.c:2126) + n1: 731811 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 731811 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 720386 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 720386 in 11 places, all below massif's threshold (1.00%) + n0: 11425 in 7 places, all below massif's threshold (1.00%) + n0: 66 in 1 place, below massif's threshold (1.00%) + n2: 2108376 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 1487304 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 882576 in 21 places, all below massif's threshold (1.00%) + n1: 604728 0x50240D3: str_new0 (string.c:723) + n0: 604728 in 4 places, all below massif's threshold (1.00%) + n0: 621072 in 4 places, all below massif's threshold (1.00%) + n0: 853155 in 111 places, all below massif's threshold (1.00%) +#----------- +snapshot=49 +#----------- +time=716046732 +mem_heap_B=44598258 +mem_heap_extra_B=4670446 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=50 +#----------- +time=725093753 +mem_heap_B=44702947 +mem_heap_extra_B=4739869 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=51 +#----------- +time=734144528 +mem_heap_B=44859409 +mem_heap_extra_B=4815343 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=52 +#----------- +time=743194073 +mem_heap_B=45185530 +mem_heap_extra_B=4836518 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=53 +#----------- +time=752245836 +mem_heap_B=45220761 +mem_heap_extra_B=4894959 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=54 +#----------- +time=756644458 +mem_heap_B=45451818 +mem_heap_extra_B=4924486 +mem_stacks_B=0 +heap_tree=detailed +n5: 45451818 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 5474007 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 1680103 in 118 places, all below massif's threshold (1.00%) + n2: 1593520 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1591528 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1591528 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1571696 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 973456 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 907064 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 897040 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 897040 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 897040 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 729992 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 613896 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 613896 in 3 places, all below massif's threshold (1.00%) + n0: 116096 in 2 places, all below massif's threshold (1.00%) + n0: 167048 in 2 places, all below massif's threshold (1.00%) + n0: 10024 in 4 places, all below massif's threshold (1.00%) + n0: 66392 in 8 places, all below massif's threshold (1.00%) + n0: 598240 in 10 places, all below massif's threshold (1.00%) + n0: 19832 in 7 places, all below massif's threshold (1.00%) + n0: 1992 in 1 place, below massif's threshold (1.00%) + n2: 1151808 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 943296 0x501B8F5: rebuild_table (st.c:780) + n0: 943296 in 4 places, all below massif's threshold (1.00%) + n0: 208512 in 50 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 3420684 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1333480 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1315720 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 740000 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 695008 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 687904 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 687904 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 687904 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 556184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n0: 556184 in 3 places, all below massif's threshold (1.00%) + n0: 131720 in 2 places, all below massif's threshold (1.00%) + n0: 7104 in 4 places, all below massif's threshold (1.00%) + n0: 44992 in 8 places, all below massif's threshold (1.00%) + n0: 575720 in 10 places, all below massif's threshold (1.00%) + n0: 17760 in 7 places, all below massif's threshold (1.00%) + n0: 1288527 in 25 places, all below massif's threshold (1.00%) + n2: 798677 0x4EB208C: iseq_setup (compile.c:2126) + n1: 798607 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 798607 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 788273 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 518557 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n0: 518557 in 9 places, all below massif's threshold (1.00%) + n0: 269716 in 10 places, all below massif's threshold (1.00%) + n0: 10334 in 7 places, all below massif's threshold (1.00%) + n0: 70 in 1 place, below massif's threshold (1.00%) + n2: 2108376 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 1487304 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 882576 in 21 places, all below massif's threshold (1.00%) + n1: 604728 0x50240D3: str_new0 (string.c:723) + n0: 604728 in 4 places, all below massif's threshold (1.00%) + n0: 621072 in 4 places, all below massif's threshold (1.00%) + n0: 894319 in 111 places, all below massif's threshold (1.00%) +#----------- +snapshot=55 +#----------- +time=762369094 +mem_heap_B=46362369 +mem_heap_extra_B=4969071 +mem_stacks_B=0 +heap_tree=detailed +n5: 46362369 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6284314 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 1965120 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1734336 0x501B8F5: rebuild_table (st.c:780) + n1: 1284672 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 1284672 0x501D81E: st_update (st.c:1515) + n2: 1179648 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 393216 in 3 places, all below massif's threshold (1.00%) + n0: 105024 in 4 places, all below massif's threshold (1.00%) + n0: 449664 in 3 places, all below massif's threshold (1.00%) + n0: 230784 in 50 places, all below massif's threshold (1.00%) + n0: 1646842 in 118 places, all below massif's threshold (1.00%) + n2: 1623776 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1621784 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1621784 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1588256 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 973456 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 907064 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 897040 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 897040 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 897040 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 729992 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 613896 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 613896 in 3 places, all below massif's threshold (1.00%) + n0: 116096 in 2 places, all below massif's threshold (1.00%) + n0: 167048 in 2 places, all below massif's threshold (1.00%) + n0: 10024 in 4 places, all below massif's threshold (1.00%) + n0: 66392 in 8 places, all below massif's threshold (1.00%) + n0: 614800 in 10 places, all below massif's threshold (1.00%) + n0: 33528 in 7 places, all below massif's threshold (1.00%) + n0: 1992 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 3517036 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1376104 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1337032 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 740000 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 695008 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 687904 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 687904 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 687904 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 556184 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n0: 556184 in 3 places, all below massif's threshold (1.00%) + n0: 131720 in 2 places, all below massif's threshold (1.00%) + n0: 7104 in 4 places, all below massif's threshold (1.00%) + n0: 44992 in 8 places, all below massif's threshold (1.00%) + n0: 597032 in 10 places, all below massif's threshold (1.00%) + n0: 39072 in 7 places, all below massif's threshold (1.00%) + n0: 1341952 in 25 places, all below massif's threshold (1.00%) + n2: 798980 0x4EB208C: iseq_setup (compile.c:2126) + n1: 798910 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 798910 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 788504 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 518557 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n0: 518557 in 9 places, all below massif's threshold (1.00%) + n0: 269947 in 10 places, all below massif's threshold (1.00%) + n0: 10406 in 7 places, all below massif's threshold (1.00%) + n0: 70 in 1 place, below massif's threshold (1.00%) + n2: 2108376 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 1487304 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 882576 in 21 places, all below massif's threshold (1.00%) + n1: 604728 0x50240D3: str_new0 (string.c:723) + n0: 604728 in 4 places, all below massif's threshold (1.00%) + n0: 621072 in 4 places, all below massif's threshold (1.00%) + n0: 898211 in 111 places, all below massif's threshold (1.00%) +#----------- +snapshot=56 +#----------- +time=771422240 +mem_heap_B=45609101 +mem_heap_extra_B=4859307 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=57 +#----------- +time=780475808 +mem_heap_B=45810344 +mem_heap_extra_B=4936904 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=58 +#----------- +time=789522780 +mem_heap_B=46018729 +mem_heap_extra_B=5036119 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=59 +#----------- +time=798628133 +mem_heap_B=46211881 +mem_heap_extra_B=5150743 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=60 +#----------- +time=801617441 +mem_heap_B=46729664 +mem_heap_extra_B=5189480 +mem_stacks_B=0 +heap_tree=detailed +n5: 46729664 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6420326 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2005920 0x501B5D1: st_init_table_with_size (st.c:605) + n3: 1734336 0x501B8F5: rebuild_table (st.c:780) + n1: 891264 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 891264 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 104832 in 4 places, all below massif's threshold (1.00%) + n2: 611904 0x501C5EB: st_add_direct (st.c:1142) + n1: 589824 0x50464E2: register_static_symid_str (symbol.c:427) + n1: 589824 0x504839D: rb_intern3 (symbol.c:637) + n0: 589824 in 3 places, all below massif's threshold (1.00%) + n0: 22080 in 10 places, all below massif's threshold (1.00%) + n0: 231168 in 2 places, all below massif's threshold (1.00%) + n0: 271584 in 50 places, all below massif's threshold (1.00%) + n2: 1685528 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1683488 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1683488 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1656104 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1020368 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 951984 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 941768 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 941768 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 941768 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 766120 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 646712 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 646712 in 3 places, all below massif's threshold (1.00%) + n0: 119408 in 2 places, all below massif's threshold (1.00%) + n0: 175648 in 2 places, all below massif's threshold (1.00%) + n0: 10216 in 4 places, all below massif's threshold (1.00%) + n0: 68384 in 8 places, all below massif's threshold (1.00%) + n0: 635736 in 10 places, all below massif's threshold (1.00%) + n0: 27384 in 7 places, all below massif's threshold (1.00%) + n0: 2040 in 1 place, below massif's threshold (1.00%) + n0: 1680302 in 118 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 3678123 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1446848 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1416360 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 774040 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 728160 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 720760 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 720760 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 720760 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 579864 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n0: 579864 in 3 places, all below massif's threshold (1.00%) + n0: 140896 in 2 places, all below massif's threshold (1.00%) + n0: 7400 in 4 places, all below massif's threshold (1.00%) + n0: 45880 in 8 places, all below massif's threshold (1.00%) + n0: 642320 in 10 places, all below massif's threshold (1.00%) + n0: 30488 in 7 places, all below massif's threshold (1.00%) + n0: 1394421 in 25 places, all below massif's threshold (1.00%) + n2: 836854 0x4EB208C: iseq_setup (compile.c:2126) + n1: 836781 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 836781 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 825462 0x4E9BD6B: new_child_iseq (compile.c:1224) + n1: 545762 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n0: 545762 in 9 places, all below massif's threshold (1.00%) + n0: 279700 in 10 places, all below massif's threshold (1.00%) + n0: 11319 in 7 places, all below massif's threshold (1.00%) + n0: 73 in 1 place, below massif's threshold (1.00%) + n2: 2108376 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 1487304 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 882576 in 21 places, all below massif's threshold (1.00%) + n1: 604728 0x50240D3: str_new0 (string.c:723) + n0: 604728 in 4 places, all below massif's threshold (1.00%) + n0: 621072 in 4 places, all below massif's threshold (1.00%) + n0: 968407 in 112 places, all below massif's threshold (1.00%) +#----------- +snapshot=61 +#----------- +time=813678427 +mem_heap_B=46634233 +mem_heap_extra_B=5277119 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=62 +#----------- +time=822725228 +mem_heap_B=46277957 +mem_heap_extra_B=5207403 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=63 +#----------- +time=831778556 +mem_heap_B=46420968 +mem_heap_extra_B=5278216 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=64 +#----------- +time=840825448 +mem_heap_B=46550851 +mem_heap_extra_B=5310141 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=65 +#----------- +time=849878684 +mem_heap_B=46782656 +mem_heap_extra_B=5321720 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=66 +#----------- +time=859034539 +mem_heap_B=46692198 +mem_heap_extra_B=5357602 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=67 +#----------- +time=864432178 +mem_heap_B=47190423 +mem_heap_extra_B=5376729 +mem_stacks_B=0 +heap_tree=detailed +n5: 47190423 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6738675 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2192928 0x501B5D1: st_init_table_with_size (st.c:605) + n3: 1931904 0x501B8F5: rebuild_table (st.c:780) + n1: 891840 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 891840 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 105408 in 4 places, all below massif's threshold (1.00%) + n1: 618240 0x501C260: st_insert (st.c:1142) + n0: 618240 in 39 places, all below massif's threshold (1.00%) + n0: 421824 in 2 places, all below massif's threshold (1.00%) + n0: 261024 in 50 places, all below massif's threshold (1.00%) + n0: 1754315 in 119 places, all below massif's threshold (1.00%) + n2: 1742856 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1740784 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1740784 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1724320 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1087592 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1018752 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1007512 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1007512 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1007512 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 830560 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 711152 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 543776 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 543776 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 543776 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 543776 in 2 places, all below massif's threshold (1.00%) + n0: 167376 in 2 places, all below massif's threshold (1.00%) + n0: 119408 in 2 places, all below massif's threshold (1.00%) + n0: 176952 in 2 places, all below massif's threshold (1.00%) + n0: 11240 in 4 places, all below massif's threshold (1.00%) + n0: 68840 in 8 places, all below massif's threshold (1.00%) + n0: 636728 in 10 places, all below massif's threshold (1.00%) + n0: 16464 in 7 places, all below massif's threshold (1.00%) + n0: 2072 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 3780608 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1490656 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1474080 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 819328 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 772856 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 764272 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 764272 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 764272 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 621600 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 529544 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 529544 in 3 places, all below massif's threshold (1.00%) + n0: 92056 in 2 places, all below massif's threshold (1.00%) + n0: 142672 in 2 places, all below massif's threshold (1.00%) + n0: 8584 in 4 places, all below massif's threshold (1.00%) + n0: 46472 in 8 places, all below massif's threshold (1.00%) + n0: 654752 in 10 places, all below massif's threshold (1.00%) + n0: 16576 in 7 places, all below massif's threshold (1.00%) + n0: 1415906 in 25 places, all below massif's threshold (1.00%) + n2: 874046 0x4EB208C: iseq_setup (compile.c:2126) + n1: 873971 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 873971 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 866227 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 579238 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 549877 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 544716 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 544716 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 544716 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 544716 in 3 places, all below massif's threshold (1.00%) + n0: 5161 in 4 places, all below massif's threshold (1.00%) + n0: 29361 in 8 places, all below massif's threshold (1.00%) + n0: 286989 in 10 places, all below massif's threshold (1.00%) + n0: 7744 in 7 places, all below massif's threshold (1.00%) + n0: 75 in 1 place, below massif's threshold (1.00%) + n2: 2108376 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 1487304 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 882576 in 21 places, all below massif's threshold (1.00%) + n1: 604728 0x50240D3: str_new0 (string.c:723) + n0: 604728 in 4 places, all below massif's threshold (1.00%) + n0: 621072 in 4 places, all below massif's threshold (1.00%) + n0: 1008332 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=68 +#----------- +time=873479111 +mem_heap_B=47013662 +mem_heap_extra_B=5407826 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=69 +#----------- +time=883815277 +mem_heap_B=47091048 +mem_heap_extra_B=5468192 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=70 +#----------- +time=892869676 +mem_heap_B=46768472 +mem_heap_extra_B=5144032 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=71 +#----------- +time=901916527 +mem_heap_B=46977619 +mem_heap_extra_B=5265589 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=72 +#----------- +time=910964763 +mem_heap_B=47213889 +mem_heap_extra_B=5342127 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=73 +#----------- +time=920013976 +mem_heap_B=47375153 +mem_heap_extra_B=5414287 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=74 +#----------- +time=929067910 +mem_heap_B=47592795 +mem_heap_extra_B=5497309 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=75 +#----------- +time=929231124 +mem_heap_B=47617341 +mem_heap_extra_B=5513851 +mem_stacks_B=0 +heap_tree=detailed +n5: 47617341 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6752703 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2032704 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1734720 0x501B8F5: rebuild_table (st.c:780) + n1: 889728 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 889728 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 103296 in 4 places, all below massif's threshold (1.00%) + n0: 844992 in 3 places, all below massif's threshold (1.00%) + n0: 297984 in 50 places, all below massif's threshold (1.00%) + n2: 1848088 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1845824 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1845824 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1825696 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1158600 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1088000 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1076760 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1076760 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1076760 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 876208 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 754600 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 587176 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 587176 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 587176 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 587176 in 2 places, all below massif's threshold (1.00%) + n0: 167424 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 200552 in 2 places, all below massif's threshold (1.00%) + n0: 11240 in 4 places, all below massif's threshold (1.00%) + n0: 70600 in 8 places, all below massif's threshold (1.00%) + n0: 667096 in 10 places, all below massif's threshold (1.00%) + n0: 20128 in 7 places, all below massif's threshold (1.00%) + n0: 2264 in 1 place, below massif's threshold (1.00%) + n0: 1823335 in 120 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4049347 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1605800 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1581824 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 895992 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 847744 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 839160 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 839160 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 839160 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 675176 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 578680 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 578680 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 163984 in 2 places, all below massif's threshold (1.00%) + n0: 8584 in 4 places, all below massif's threshold (1.00%) + n0: 48248 in 8 places, all below massif's threshold (1.00%) + n0: 685832 in 10 places, all below massif's threshold (1.00%) + n0: 23976 in 7 places, all below massif's threshold (1.00%) + n0: 1520787 in 25 places, all below massif's threshold (1.00%) + n2: 922760 0x4EB208C: iseq_setup (compile.c:2126) + n1: 922681 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 922681 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 914053 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 614524 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 584601 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 579440 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 579440 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 579440 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 579440 in 3 places, all below massif's threshold (1.00%) + n0: 5161 in 4 places, all below massif's threshold (1.00%) + n0: 29923 in 8 places, all below massif's threshold (1.00%) + n0: 299529 in 10 places, all below massif's threshold (1.00%) + n0: 8628 in 7 places, all below massif's threshold (1.00%) + n0: 79 in 1 place, below massif's threshold (1.00%) + n2: 2190096 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 1552680 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 931608 in 22 places, all below massif's threshold (1.00%) + n1: 621072 0x50240D3: str_new0 (string.c:723) + n0: 621072 in 4 places, all below massif's threshold (1.00%) + n0: 637416 in 4 places, all below massif's threshold (1.00%) + n0: 1070763 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=76 +#----------- +time=938420927 +mem_heap_B=48147718 +mem_heap_extra_B=5653530 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=77 +#----------- +time=950067935 +mem_heap_B=48575622 +mem_heap_extra_B=5692394 +mem_stacks_B=0 +heap_tree=peak +n6: 48575622 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 6851034 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2034240 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1734720 0x501B8F5: rebuild_table (st.c:780) + n1: 889728 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 889728 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 103296 in 4 places, all below massif's threshold (1.00%) + n0: 844992 in 3 places, all below massif's threshold (1.00%) + n0: 299520 in 50 places, all below massif's threshold (1.00%) + n0: 1893818 in 120 places, all below massif's threshold (1.00%) + n2: 1874400 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1872136 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1872136 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1851768 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1173616 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1103016 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1091776 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1091776 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1091776 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 890752 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 769144 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 587176 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 587176 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 587176 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 587176 in 2 places, all below massif's threshold (1.00%) + n0: 181968 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 201024 in 2 places, all below massif's threshold (1.00%) + n0: 11240 in 4 places, all below massif's threshold (1.00%) + n0: 70600 in 8 places, all below massif's threshold (1.00%) + n0: 678152 in 10 places, all below massif's threshold (1.00%) + n0: 20368 in 7 places, all below massif's threshold (1.00%) + n0: 2264 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4109737 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1634808 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1610536 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 912272 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 864024 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 855440 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 855440 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 855440 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 690272 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 593776 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 593776 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 165168 in 2 places, all below massif's threshold (1.00%) + n0: 8584 in 4 places, all below massif's threshold (1.00%) + n0: 48248 in 8 places, all below massif's threshold (1.00%) + n0: 698264 in 10 places, all below massif's threshold (1.00%) + n0: 24272 in 7 places, all below massif's threshold (1.00%) + n0: 1537248 in 25 places, all below massif's threshold (1.00%) + n2: 937681 0x4EB208C: iseq_setup (compile.c:2126) + n1: 937602 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 937602 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 928973 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 623884 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 593961 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 588800 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 588800 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 588800 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 588800 in 3 places, all below massif's threshold (1.00%) + n0: 5161 in 4 places, all below massif's threshold (1.00%) + n0: 29923 in 8 places, all below massif's threshold (1.00%) + n0: 305089 in 10 places, all below massif's threshold (1.00%) + n0: 8629 in 7 places, all below massif's threshold (1.00%) + n0: 79 in 1 place, below massif's threshold (1.00%) + n2: 2876544 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2239128 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1193112 in 23 places, all below massif's threshold (1.00%) + n1: 1046016 0x50240D3: str_new0 (string.c:723) + n0: 1046016 in 4 places, all below massif's threshold (1.00%) + n0: 637416 in 4 places, all below massif's threshold (1.00%) + n1: 608238 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n0: 608238 in 14 places, all below massif's threshold (1.00%) + n0: 575637 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=78 +#----------- +time=963098490 +mem_heap_B=48274803 +mem_heap_extra_B=5608205 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=79 +#----------- +time=972290786 +mem_heap_B=48352968 +mem_heap_extra_B=5608536 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=80 +#----------- +time=985936416 +mem_heap_B=48459649 +mem_heap_extra_B=5609047 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=81 +#----------- +time=995005227 +mem_heap_B=48490260 +mem_heap_extra_B=5612036 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=82 +#----------- +time=1004059916 +mem_heap_B=48528763 +mem_heap_extra_B=5614893 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=83 +#----------- +time=1014547415 +mem_heap_B=48568931 +mem_heap_extra_B=5623685 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=84 +#----------- +time=1023853424 +mem_heap_B=48573395 +mem_heap_extra_B=5624597 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=85 +#----------- +time=1032961741 +mem_heap_B=48611083 +mem_heap_extra_B=5625189 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=86 +#----------- +time=1052757291 +mem_heap_B=48709387 +mem_heap_extra_B=5625189 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=87 +#----------- +time=1062130258 +mem_heap_B=48741426 +mem_heap_extra_B=5621614 +mem_stacks_B=0 +heap_tree=detailed +n6: 48741426 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 7123037 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 2252333 in 129 places, all below massif's threshold (1.00%) + n2: 2011008 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1753152 0x501B8F5: rebuild_table (st.c:780) + n1: 908160 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 908160 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 121728 in 4 places, all below massif's threshold (1.00%) + n0: 844992 in 3 places, all below massif's threshold (1.00%) + n0: 257856 in 50 places, all below massif's threshold (1.00%) + n2: 1811120 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1808872 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1808872 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1800536 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1173616 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1103016 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1091776 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1091776 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1091776 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 890752 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 769144 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 587176 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 587176 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 587176 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 587176 in 2 places, all below massif's threshold (1.00%) + n0: 181968 in 2 places, all below massif's threshold (1.00%) + n0: 121608 in 2 places, all below massif's threshold (1.00%) + n0: 201024 in 2 places, all below massif's threshold (1.00%) + n0: 11240 in 4 places, all below massif's threshold (1.00%) + n0: 70600 in 8 places, all below massif's threshold (1.00%) + n0: 626920 in 10 places, all below massif's threshold (1.00%) + n0: 8336 in 7 places, all below massif's threshold (1.00%) + n0: 2248 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 3974175 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1579456 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1573240 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 912272 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 864024 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 855440 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 855440 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 855440 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 690272 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 593776 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 593776 in 3 places, all below massif's threshold (1.00%) + n0: 96496 in 2 places, all below massif's threshold (1.00%) + n0: 165168 in 2 places, all below massif's threshold (1.00%) + n0: 8584 in 4 places, all below massif's threshold (1.00%) + n0: 48248 in 8 places, all below massif's threshold (1.00%) + n0: 660968 in 10 places, all below massif's threshold (1.00%) + n0: 6216 in 7 places, all below massif's threshold (1.00%) + n0: 1481477 in 25 places, all below massif's threshold (1.00%) + n2: 913242 0x4EB208C: iseq_setup (compile.c:2126) + n1: 913164 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 913164 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 909075 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 623884 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 593961 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 588800 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 588800 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 588800 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 588800 in 3 places, all below massif's threshold (1.00%) + n0: 5161 in 4 places, all below massif's threshold (1.00%) + n0: 29923 in 8 places, all below massif's threshold (1.00%) + n0: 285191 in 10 places, all below massif's threshold (1.00%) + n0: 4089 in 7 places, all below massif's threshold (1.00%) + n0: 78 in 1 place, below massif's threshold (1.00%) + n2: 2892888 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2239128 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1193112 in 23 places, all below massif's threshold (1.00%) + n1: 1046016 0x50240D3: str_new0 (string.c:723) + n0: 1046016 in 4 places, all below massif's threshold (1.00%) + n0: 653760 in 4 places, all below massif's threshold (1.00%) + n1: 638618 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n0: 638618 in 16 places, all below massif's threshold (1.00%) + n0: 558276 in 115 places, all below massif's threshold (1.00%) diff --git a/optimizations/step4/profile.callgrind.out.29984 b/optimizations/step4/profile.callgrind.out.29984 new file mode 100644 index 0000000..2256250 --- /dev/null +++ b/optimizations/step4/profile.callgrind.out.29984 @@ -0,0 +1,386 @@ +events: memory + +fl=/Users/donasktello/ruby_runtime +fn=IO::^write +0 9 + +fl=/Users/donasktello/ruby_runtime +fn=String::to_s +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::encode +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Symbol::to_s +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::keys +0 3 + +fl=/Users/donasktello/ruby_runtime +fn=JSON/Ext/Generator/State::initialize_copy +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::initialize_dup +0 0 +cfl=/Users/donasktello/ruby_runtime +cfn=JSON/Ext/Generator/State::initialize_copy +calls=1 152 +152 0 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::dup +0 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::initialize_dup +calls=1 152 +152 1 + +fl=/Users/donasktello/ruby_runtime +fn=JSON/Ext/Generator/GeneratorMethods/Hash::to_json +0 309 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::dup +calls=1 152 +152 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::keys +calls=266 152 +152 3 +cfl=/Users/donasktello/ruby_runtime +cfn=Symbol::to_s +calls=1 152 +152 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::encode +calls=4292 152 +152 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::to_s +calls=2116 152 +152 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::reverse +0 2 + +fl=/Users/donasktello/ruby_runtime +fn=Array::all? +0 4 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase +calls=349 144 +144 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::any? +0 7 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase +calls=728 139 +139 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::max +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Integer::to_s +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::sum +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::to_i +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::merge +0 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::collect_stats_from_users +42 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::each +calls=7 42 +42 149 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=User::initialize +15 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::each_index +0 24 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=264 111 +111 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::join +0 37 + +fl=/Users/donasktello/ruby_runtime +fn=Array::uniq +0 56 + +fl=/Users/donasktello/ruby_runtime +fn=Array::sort +0 43 + +fl=/Users/donasktello/ruby_runtime +fn=String::upcase +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::map +0 172 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase +calls=1382 100 +100 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::to_i +calls=2764 129 +129 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase +calls=1382 134 +134 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::each_key +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::each +337 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::each_key +calls=1 338 +338 1 + +fl=/Users/donasktello/ruby_runtime +fn=Enumerable::count +0 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::each +calls=1 93 +93 2 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::add +349 13 + +fl=/Users/donasktello/ruby_runtime +fn=NilClass::nil? +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::initialize +0 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::initialize +94 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 94 +94 1 +cfl=/Users/donasktello/ruby_runtime +cfn=NilClass::nil? +calls=1 96 +96 0 + +fl=/Users/donasktello/ruby_runtime +fn=Class::new +0 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::initialize +calls=1 87 +87 2 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::initialize +calls=1 94 +94 0 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=User::initialize +calls=264 111 +111 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::count +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::flatten +0 17 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::parse_session +31 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=1382 31 +31 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::parse_user +21 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=264 21 +21 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::each +0 278 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=1646 56 +56 0 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::parse_user +calls=264 59 +59 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::parse_session +calls=1382 63 +63 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::add +calls=1382 90 +90 13 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::count +calls=264 119 +119 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::merge +calls=1848 149 +149 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::map +calls=2376 149 +149 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sum +calls=264 124 +124 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Integer::to_s +calls=528 129 +129 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::max +calls=264 129 +129 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sort +calls=528 149 +149 20 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::join +calls=264 134 +134 34 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::any? +calls=264 139 +139 7 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::all? +calls=264 144 +144 4 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::reverse +calls=264 149 +149 2 + +fl=/Users/donasktello/ruby_runtime +fn=String::split +0 91 + +fl=/Users/donasktello/ruby_runtime +fn=IO::^read +0 117 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::work +50 81 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^read +calls=1 50 +50 117 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=1 50 +50 90 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::each +calls=2 88 +88 214 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::flatten +calls=1 81 +81 17 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::count +calls=2 95 +95 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 87 +87 2 +cfl=/Users/donasktello/ruby_runtime +cfn=Enumerable::count +calls=1 93 +93 2 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::map +calls=2 97 +97 173 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sort +calls=1 97 +97 23 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::uniq +calls=1 97 +97 56 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::join +calls=1 97 +97 3 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::each_index +calls=1 108 +108 25 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::collect_stats_from_users +calls=7 148 +148 150 +cfl=/Users/donasktello/ruby_runtime +cfn=JSON/Ext/Generator/GeneratorMethods/Hash::to_json +calls=1 152 +152 314 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^write +calls=1 152 +152 9 + +fl=/Users/donasktello/Projects/task-1/optimizations/rubyprof_patched.rb +fn=[global]::[no method] +7 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::work +calls=1 7 +7 1276 + diff --git a/optimizations/step4/rubyprof_alloc.txt b/optimizations/step4/rubyprof_alloc.txt new file mode 100644 index 0000000..a1c337d --- /dev/null +++ b/optimizations/step4/rubyprof_alloc.txt @@ -0,0 +1,51 @@ +Measure Mode: allocations +Thread ID: 70236183396360 +Fiber ID: 70236185621160 +Total: 64222.000000 +Sort by: self_time + + %self total self wait child calls name + 37.62 24163.000 24163.000 0.000 0.000 3293 String#split + 30.82 55013.000 19793.000 0.000 35220.000 9 Array#each + 7.10 4557.000 4557.000 0.000 0.000 4292 String#encode + 5.98 3841.000 3841.000 0.000 0.000 3841 String#upcase + 4.30 12438.000 2764.000 0.000 9674.000 1382 Object#parse_session + 3.70 5142.000 2378.000 0.000 2764.000 2378 Array#map + 2.88 1848.000 1848.000 0.000 0.000 1848 Hash#merge + 1.54 992.000 992.000 0.000 0.000 529 Array#sort + 1.23 1320.000 792.000 0.000 528.000 1 Array#each_index + 0.82 530.000 529.000 0.000 1.000 266 *Class#new + 0.82 2112.000 528.000 0.000 1584.000 264 Object#parse_user + 0.82 528.000 528.000 0.000 0.000 528 Integer#to_s + 0.49 1045.000 317.000 0.000 728.000 264 Array#any? + 0.41 266.000 266.000 0.000 0.000 266 Hash#keys + 0.41 265.000 265.000 0.000 0.000 265 Array#join + 0.41 264.000 264.000 0.000 0.000 264 Array#reverse + 0.31 201.000 201.000 0.000 0.000 1382 Set#add + 0.26 514.000 165.000 0.000 349.000 264 Array#all? + 0.02 64221.000 10.000 0.000 64211.000 1 Object#work + 0.01 5.000 5.000 0.000 0.000 1 #write + 0.00 3.000 3.000 0.000 0.000 1 #read + 0.00 2.000 2.000 0.000 0.000 1 Array#uniq + 0.00 2.000 2.000 0.000 0.000 1 Set#each + 0.00 4.000 2.000 0.000 2.000 1 Enumerable#count + 0.00 2.000 2.000 0.000 0.000 1 Array#flatten + 0.00 1.000 1.000 0.000 0.000 1 Symbol#to_s + 0.00 1.000 1.000 0.000 0.000 1 Kernel#dup + 0.00 4826.000 1.000 0.000 4825.000 1 JSON::Ext::Generator::GeneratorMethods::Hash#to_json + 0.00 64222.000 1.000 0.000 64221.000 1 [global]#[no method] + 0.00 0.000 0.000 0.000 0.000 1 Hash#each_key + 0.00 0.000 0.000 0.000 0.000 1 Hash#initialize + 0.00 1.000 0.000 0.000 1.000 1 Set#initialize + 0.00 0.000 0.000 0.000 0.000 264 User#initialize + 0.00 0.000 0.000 0.000 0.000 266 Array#count + 0.00 22156.000 0.000 0.000 22156.000 7 Object#collect_stats_from_users + 0.00 0.000 0.000 0.000 0.000 2764 String#to_i + 0.00 0.000 0.000 0.000 0.000 264 Array#sum + 0.00 0.000 0.000 0.000 0.000 264 Array#max + 0.00 0.000 0.000 0.000 0.000 1 Kernel#initialize_dup + 0.00 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::State#initialize_copy + 0.00 0.000 0.000 0.000 0.000 2116 String#to_s + 0.00 0.000 0.000 0.000 0.000 1 NilClass#nil? + +* indicates recursively called methods diff --git a/optimizations/step4/rubyprof_wall.txt b/optimizations/step4/rubyprof_wall.txt new file mode 100644 index 0000000..229e336 --- /dev/null +++ b/optimizations/step4/rubyprof_wall.txt @@ -0,0 +1,51 @@ +Measure Mode: wall_time +Thread ID: 70236183396360 +Fiber ID: 70236185621160 +Total: 0.021233 +Sort by: self_time + + %self total self wait child calls name + 26.36 0.016 0.006 0.000 0.010 9 Array#each + 15.54 0.004 0.003 0.000 0.001 2378 Array#map + 13.04 0.003 0.003 0.000 0.000 3293 String#split + 5.66 0.003 0.001 0.000 0.001 1 JSON::Ext::Generator::GeneratorMethods::Hash#to_json + 5.17 0.002 0.001 0.000 0.001 1382 Object#parse_session + 4.61 0.001 0.001 0.000 0.000 4292 String#encode + 3.85 0.001 0.001 0.000 0.000 1848 Hash#merge + 3.09 0.001 0.001 0.000 0.000 3841 String#upcase + 2.90 0.001 0.001 0.000 0.000 529 Array#sort + 2.38 0.001 0.001 0.000 0.000 1382 Set#add + 2.07 0.001 0.000 0.000 0.000 264 Array#any? + 2.06 0.000 0.000 0.000 0.000 2764 String#to_i + 1.94 0.000 0.000 0.000 0.000 1 #read + 1.60 0.001 0.000 0.000 0.000 1 Array#each_index + 1.25 0.000 0.000 0.000 0.000 2116 String#to_s + 1.20 0.000 0.000 0.000 0.000 264 Array#all? + 1.08 0.000 0.000 0.000 0.000 1 #write + 1.03 0.000 0.000 0.000 0.000 265 Array#join + 0.85 0.000 0.000 0.000 0.000 264 Object#parse_user + 0.81 0.000 0.000 0.000 0.000 266 *Class#new + 0.68 0.000 0.000 0.000 0.000 528 Integer#to_s + 0.53 0.000 0.000 0.000 0.000 1 Array#flatten + 0.47 0.000 0.000 0.000 0.000 264 User#initialize + 0.36 0.000 0.000 0.000 0.000 264 Array#reverse + 0.36 0.000 0.000 0.000 0.000 1 Array#uniq + 0.24 0.000 0.000 0.000 0.000 266 Hash#keys + 0.19 0.000 0.000 0.000 0.000 264 Array#sum + 0.18 0.000 0.000 0.000 0.000 264 Array#max + 0.15 0.021 0.000 0.000 0.021 1 Object#work + 0.12 0.000 0.000 0.000 0.000 266 Array#count + 0.10 0.021 0.000 0.000 0.021 1 [global]#[no method] + 0.03 0.000 0.000 0.000 0.000 1 Hash#each_key + 0.02 0.000 0.000 0.000 0.000 1 Kernel#dup + 0.02 0.000 0.000 0.000 0.000 1 Set#initialize + 0.01 0.000 0.000 0.000 0.000 1 Enumerable#count + 0.01 0.010 0.000 0.000 0.010 7 Object#collect_stats_from_users + 0.01 0.000 0.000 0.000 0.000 1 Set#each + 0.01 0.000 0.000 0.000 0.000 1 Hash#initialize + 0.01 0.000 0.000 0.000 0.000 1 Kernel#initialize_dup + 0.00 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::State#initialize_copy + 0.00 0.000 0.000 0.000 0.000 1 NilClass#nil? + 0.00 0.000 0.000 0.000 0.000 1 Symbol#to_s + +* indicates recursively called methods diff --git a/optimizations/step4/stackprof_object.txt b/optimizations/step4/stackprof_object.txt new file mode 100644 index 0000000..7ca490e --- /dev/null +++ b/optimizations/step4/stackprof_object.txt @@ -0,0 +1,138 @@ +================================== + Mode: object(1) + Samples: 64222 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 64221 (100.0%) 37842 (58.9%) Object#work + 12438 (19.4%) 12438 (19.4%) Object#parse_session + 22156 (34.5%) 11625 (18.1%) Object#collect_stats_from_users + 2112 (3.3%) 2112 (3.3%) Object#parse_user + 201 (0.3%) 201 (0.3%) Set#add + 2 (0.0%) 2 (0.0%) Set#each + 1 (0.0%) 1 (0.0%) Set#initialize + 64222 (100.0%) 1 (0.0%) block (2 levels) in
+ 64222 (100.0%) 0 (0.0%) block in
+ 64222 (100.0%) 0 (0.0%)
+ 64222 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 64222 (100.0%) 0 (0.0%)
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:49) + samples: 37842 self (58.9%) / 64221 total (100.0%) + callers: + 64221 ( 100.0%) block (2 levels) in
+ 38500 ( 59.9%) Object#work + 10531 ( 16.4%) Object#collect_stats_from_users + callees (26379 total): + 38500 ( 145.9%) Object#work + 22156 ( 84.0%) Object#collect_stats_from_users + 12438 ( 47.2%) Object#parse_session + 2112 ( 8.0%) Object#parse_user + 201 ( 0.8%) Set#add + 2 ( 0.0%) Set#each + 1 ( 0.0%) Set#initialize + code: + | 49 | def work(filename) + 1652 (2.6%) / 1652 (2.6%) | 50 | file_lines = File.read("#{$support_dir}/#{filename}").split("\n") + | 51 | + 1 (0.0%) / 1 (0.0%) | 52 | users = [] + 1 (0.0%) / 1 (0.0%) | 53 | sessions = [] + | 54 | + 32656 (50.8%) | 55 | file_lines.each do |line| + 12904 (20.1%) / 12904 (20.1%) | 56 | cols = line.split(',') + | 57 | + 1646 (2.6%) / 1646 (2.6%) | 58 | if cols[0] == 'user' + 2640 (4.1%) / 528 (0.8%) | 59 | users = users + [parse_user(line)] + | 60 | + 264 (0.4%) / 264 (0.4%) | 61 | sessions << [] + | 62 | else + 15202 (23.7%) / 2764 (4.3%) | 63 | sessions[-1] = sessions[-1] + [parse_session(line)] + | 64 | end + | 65 | end + | 66 | + | 67 | # Отчёт в json + | 68 | # - Сколько всего юзеров + + | 69 | # - Сколько всего уникальных браузеров + + | 70 | # - Сколько всего сессий + + | 71 | # - Перечислить уникальные браузеры в алфавитном порядке через запятую и капсом + + | 72 | # + | 73 | # - По каждому пользователю + | 74 | # - сколько всего сессий + + | 75 | # - сколько всего времени + + | 76 | # - самая длинная сессия + + | 77 | # - браузеры через запятую + + | 78 | # - Хоть раз использовал IE? + + | 79 | # - Всегда использовал только Хром? + + | 80 | # - даты сессий в порядке убывания через запятую + + 2 (0.0%) / 2 (0.0%) | 81 | flatten = sessions.flatten + 1 (0.0%) / 1 (0.0%) | 82 | report = {} + | 83 | + | 84 | report[:totalUsers] = users.count + | 85 | + | 86 | # Подсчёт количества уникальных браузеров + 2 (0.0%) / 1 (0.0%) | 87 | uniqueBrowsers = Set.new + 201 (0.3%) | 88 | flatten.each do |session| + | 89 | browser = session['browser'] + 201 (0.3%) | 90 | uniqueBrowsers << browser + | 91 | end + | 92 | + 4 (0.0%) / 2 (0.0%) | 93 | report['uniqueBrowsersCount'] = uniqueBrowsers.count + | 94 | + | 95 | report['totalSessions'] = flatten.count + | 96 | + | 97 | report['allBrowsers'] = + | 98 | flatten + 1 (0.0%) / 1 (0.0%) | 99 | .map { |s| s['browser'] } + 2765 (4.3%) / 1383 (2.2%) | 100 | .map { |b| b.upcase } + 2 (0.0%) / 2 (0.0%) | 101 | .sort + 2 (0.0%) / 2 (0.0%) | 102 | .uniq + 2 (0.0%) / 2 (0.0%) | 103 | .join(',') + | 104 | + | 105 | # Статистика по пользователям + 1 (0.0%) / 1 (0.0%) | 106 | users_objects = [] + | 107 | + 1320 (2.1%) | 108 | users.each_index do |i| + | 109 | attributes = users[i] + | 110 | user_sessions = sessions[i] + 792 (1.2%) / 792 (1.2%) | 111 | user_object = User.new(attributes: attributes, sessions: user_sessions) + 528 (0.8%) / 528 (0.8%) | 112 | users_objects = users_objects + [user_object] + | 113 | end + | 114 | + 1 (0.0%) / 1 (0.0%) | 115 | report['usersStats'] = {} + | 116 | + | 117 | # Собираем количество сессий по пользователям + 2379 (3.7%) | 118 | collect_stats_from_users(report, users_objects) do |user| + | 119 | { 'sessionsCount' => user.sessions.count } + | 120 | end + | 121 | + | 122 | # Собираем количество времени по пользователям + 3169 (4.9%) | 123 | collect_stats_from_users(report, users_objects) do |user| + 1320 (2.1%) / 1320 (2.1%) | 124 | { 'totalTime' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.sum.to_s + ' min.' } + | 125 | end + | 126 | + | 127 | # Выбираем самую длинную сессию пользователя + 3169 (4.9%) | 128 | collect_stats_from_users(report, users_objects) do |user| + 1320 (2.1%) / 1320 (2.1%) | 129 | { 'longestSession' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.max.to_s + ' min.' } + | 130 | end + | 131 | + | 132 | # Браузеры пользователя через запятую + 4782 (7.4%) | 133 | collect_stats_from_users(report, users_objects) do |user| + 4315 (6.7%) / 2933 (4.6%) | 134 | { 'browsers' => user.sessions.map {|s| s['browser']}.map {|b| b.upcase}.sort.join(', ') } + | 135 | end + | 136 | + | 137 | # Хоть раз использовал IE? + 3158 (4.9%) | 138 | collect_stats_from_users(report, users_objects) do |user| + 2354 (3.7%) / 1309 (2.0%) | 139 | { 'usedIE' => user.sessions.map{|s| s['browser']}.any? { |b| b.upcase =~ /INTERNET EXPLORER/ } } + | 140 | end + | 141 | + | 142 | # Всегда использовал только Chrome? + 2627 (4.1%) | 143 | collect_stats_from_users(report, users_objects) do |user| + 1292 (2.0%) / 778 (1.2%) | 144 | { 'alwaysUsedChrome' => user.sessions.map{|s| s['browser']}.all? { |b| b.upcase =~ /CHROME/ } } + | 145 | end + | 146 | + | 147 | # Даты сессий через запятую в обратном порядке в формате iso8601 + 2872 (4.5%) | 148 | collect_stats_from_users(report, users_objects) do |user| + 1023 (1.6%) / 1023 (1.6%) | 149 | { 'dates' => user.sessions.map{|s| s['date']}.sort.reverse } + | 150 | end + | 151 | + 4833 (7.5%) / 4833 (7.5%) | 152 | File.write("#{$support_dir}/result.json", "#{report.to_json}\n") + | 153 | end diff --git a/optimizations/step4/stackprof_wall.txt b/optimizations/step4/stackprof_wall.txt new file mode 100644 index 0000000..ac55235 --- /dev/null +++ b/optimizations/step4/stackprof_wall.txt @@ -0,0 +1,130 @@ +================================== + Mode: wall(1000) + Samples: 12 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 12 (100.0%) 9 (75.0%) Object#work + 5 (41.7%) 2 (16.7%) Object#collect_stats_from_users + 1 (8.3%) 1 (8.3%) Set#add + 12 (100.0%) 0 (0.0%) block in
+ 12 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 12 (100.0%) 0 (0.0%)
+ 12 (100.0%) 0 (0.0%)
+ 12 (100.0%) 0 (0.0%) block (2 levels) in
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:49) + samples: 9 self (75.0%) / 12 total (100.0%) + callers: + 12 ( 100.0%) block (2 levels) in
+ 8 ( 66.7%) Object#work + 3 ( 25.0%) Object#collect_stats_from_users + callees (3 total): + 8 ( 266.7%) Object#work + 5 ( 166.7%) Object#collect_stats_from_users + 1 ( 33.3%) Set#add + code: + | 49 | def work(filename) + | 50 | file_lines = File.read("#{$support_dir}/#{filename}").split("\n") + | 51 | + | 52 | users = [] + | 53 | sessions = [] + | 54 | + 3 (25.0%) | 55 | file_lines.each do |line| + | 56 | cols = line.split(',') + | 57 | + 3 (25.0%) / 3 (25.0%) | 58 | if cols[0] == 'user' + | 59 | users = users + [parse_user(line)] + | 60 | + | 61 | sessions << [] + | 62 | else + | 63 | sessions[-1] = sessions[-1] + [parse_session(line)] + | 64 | end + | 65 | end + | 66 | + | 67 | # Отчёт в json + | 68 | # - Сколько всего юзеров + + | 69 | # - Сколько всего уникальных браузеров + + | 70 | # - Сколько всего сессий + + | 71 | # - Перечислить уникальные браузеры в алфавитном порядке через запятую и капсом + + | 72 | # + | 73 | # - По каждому пользователю + | 74 | # - сколько всего сессий + + | 75 | # - сколько всего времени + + | 76 | # - самая длинная сессия + + | 77 | # - браузеры через запятую + + | 78 | # - Хоть раз использовал IE? + + | 79 | # - Всегда использовал только Хром? + + | 80 | # - даты сессий в порядке убывания через запятую + + | 81 | flatten = sessions.flatten + | 82 | report = {} + | 83 | + | 84 | report[:totalUsers] = users.count + | 85 | + | 86 | # Подсчёт количества уникальных браузеров + | 87 | uniqueBrowsers = Set.new + 1 (8.3%) | 88 | flatten.each do |session| + | 89 | browser = session['browser'] + 1 (8.3%) | 90 | uniqueBrowsers << browser + | 91 | end + | 92 | + | 93 | report['uniqueBrowsersCount'] = uniqueBrowsers.count + | 94 | + | 95 | report['totalSessions'] = flatten.count + | 96 | + | 97 | report['allBrowsers'] = + | 98 | flatten + | 99 | .map { |s| s['browser'] } + | 100 | .map { |b| b.upcase } + | 101 | .sort + | 102 | .uniq + | 103 | .join(',') + | 104 | + | 105 | # Статистика по пользователям + | 106 | users_objects = [] + | 107 | + 1 (8.3%) | 108 | users.each_index do |i| + | 109 | attributes = users[i] + | 110 | user_sessions = sessions[i] + | 111 | user_object = User.new(attributes: attributes, sessions: user_sessions) + | 112 | users_objects = users_objects + [user_object] + 1 (8.3%) / 1 (8.3%) | 113 | end + | 114 | + | 115 | report['usersStats'] = {} + | 116 | + | 117 | # Собираем количество сессий по пользователям + | 118 | collect_stats_from_users(report, users_objects) do |user| + | 119 | { 'sessionsCount' => user.sessions.count } + | 120 | end + | 121 | + | 122 | # Собираем количество времени по пользователям + 1 (8.3%) | 123 | collect_stats_from_users(report, users_objects) do |user| + 2 (16.7%) / 1 (8.3%) | 124 | { 'totalTime' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.sum.to_s + ' min.' } + | 125 | end + | 126 | + | 127 | # Выбираем самую длинную сессию пользователя + 1 (8.3%) | 128 | collect_stats_from_users(report, users_objects) do |user| + 2 (16.7%) / 1 (8.3%) | 129 | { 'longestSession' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.max.to_s + ' min.' } + | 130 | end + | 131 | + | 132 | # Браузеры пользователя через запятую + 1 (8.3%) | 133 | collect_stats_from_users(report, users_objects) do |user| + | 134 | { 'browsers' => user.sessions.map {|s| s['browser']}.map {|b| b.upcase}.sort.join(', ') } + | 135 | end + | 136 | + | 137 | # Хоть раз использовал IE? + 1 (8.3%) | 138 | collect_stats_from_users(report, users_objects) do |user| + 2 (16.7%) / 1 (8.3%) | 139 | { 'usedIE' => user.sessions.map{|s| s['browser']}.any? { |b| b.upcase =~ /INTERNET EXPLORER/ } } + | 140 | end + | 141 | + | 142 | # Всегда использовал только Chrome? + 1 (8.3%) | 143 | collect_stats_from_users(report, users_objects) do |user| + | 144 | { 'alwaysUsedChrome' => user.sessions.map{|s| s['browser']}.all? { |b| b.upcase =~ /CHROME/ } } + | 145 | end + | 146 | + | 147 | # Даты сессий через запятую в обратном порядке в формате iso8601 + | 148 | collect_stats_from_users(report, users_objects) do |user| + | 149 | { 'dates' => user.sessions.map{|s| s['date']}.sort.reverse } + | 150 | end + | 151 | + 2 (16.7%) / 2 (16.7%) | 152 | File.write("#{$support_dir}/result.json", "#{report.to_json}\n") + | 153 | end diff --git a/optimizations/step5/profile.callgrind.out.30621 b/optimizations/step5/profile.callgrind.out.30621 new file mode 100644 index 0000000..d855c75 --- /dev/null +++ b/optimizations/step5/profile.callgrind.out.30621 @@ -0,0 +1,386 @@ +events: memory + +fl=/Users/donasktello/ruby_runtime +fn=IO::^write +0 9 + +fl=/Users/donasktello/ruby_runtime +fn=String::to_s +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::encode +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Symbol::to_s +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::keys +0 3 + +fl=/Users/donasktello/ruby_runtime +fn=JSON/Ext/Generator/State::initialize_copy +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::initialize_dup +0 0 +cfl=/Users/donasktello/ruby_runtime +cfn=JSON/Ext/Generator/State::initialize_copy +calls=1 151 +151 0 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::dup +0 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::initialize_dup +calls=1 151 +151 1 + +fl=/Users/donasktello/ruby_runtime +fn=JSON/Ext/Generator/GeneratorMethods/Hash::to_json +0 309 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::dup +calls=1 151 +151 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::keys +calls=266 151 +151 3 +cfl=/Users/donasktello/ruby_runtime +cfn=Symbol::to_s +calls=1 151 +151 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::encode +calls=4292 151 +151 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::to_s +calls=2116 151 +151 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::reverse +0 2 + +fl=/Users/donasktello/ruby_runtime +fn=Array::all? +0 4 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase +calls=349 143 +143 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::any? +0 7 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase +calls=728 138 +138 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::max +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Integer::to_s +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::sum +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::to_i +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::merge +0 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::collect_stats_from_users +42 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::each +calls=7 42 +42 319 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=User::initialize +15 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::each_index +0 24 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=264 110 +110 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::upcase +0 4 + +fl=/Users/donasktello/ruby_runtime +fn=Array::join +0 37 + +fl=/Users/donasktello/ruby_runtime +fn=Array::uniq +0 56 + +fl=/Users/donasktello/ruby_runtime +fn=Array::sort +0 43 + +fl=/Users/donasktello/ruby_runtime +fn=Array::map +0 12 +cfl=/Users/donasktello/ruby_runtime +cfn=String::to_i +calls=2764 128 +128 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase +calls=1382 133 +133 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::each_key +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::each +337 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::each_key +calls=1 338 +338 1 + +fl=/Users/donasktello/ruby_runtime +fn=Enumerable::count +0 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::each +calls=1 93 +93 2 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::add +349 13 + +fl=/Users/donasktello/ruby_runtime +fn=NilClass::nil? +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::initialize +0 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::initialize +94 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 94 +94 1 +cfl=/Users/donasktello/ruby_runtime +cfn=NilClass::nil? +calls=1 96 +96 0 + +fl=/Users/donasktello/ruby_runtime +fn=Class::new +0 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::initialize +calls=1 87 +87 2 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::initialize +calls=1 94 +94 0 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=User::initialize +calls=264 110 +110 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::count +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::flatten +0 17 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::parse_session +31 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=1382 31 +31 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::parse_user +21 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=264 21 +21 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::each +0 453 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=1646 56 +56 0 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::parse_user +calls=264 59 +59 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::parse_session +calls=1382 63 +63 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::add +calls=1382 90 +90 13 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::count +calls=264 118 +118 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::merge +calls=1848 148 +148 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::map +calls=2376 148 +148 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sum +calls=264 123 +123 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Integer::to_s +calls=528 128 +128 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::max +calls=264 128 +128 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sort +calls=528 148 +148 20 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::join +calls=264 133 +133 34 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::any? +calls=264 138 +138 7 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::all? +calls=264 143 +143 4 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::reverse +calls=264 148 +148 2 + +fl=/Users/donasktello/ruby_runtime +fn=String::split +0 91 + +fl=/Users/donasktello/ruby_runtime +fn=IO::^read +0 117 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::work +50 81 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^read +calls=1 50 +50 117 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=1 50 +50 90 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::each +calls=2 88 +88 220 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::flatten +calls=1 81 +81 17 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::count +calls=2 95 +95 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 87 +87 2 +cfl=/Users/donasktello/ruby_runtime +cfn=Enumerable::count +calls=1 93 +93 2 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::map +calls=1 97 +97 11 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sort +calls=1 97 +97 23 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::uniq +calls=1 97 +97 56 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::join +calls=1 97 +97 3 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase +calls=1 97 +97 3 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::each_index +calls=1 107 +107 25 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::collect_stats_from_users +calls=7 147 +147 319 +cfl=/Users/donasktello/ruby_runtime +cfn=JSON/Ext/Generator/GeneratorMethods/Hash::to_json +calls=1 151 +151 314 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^write +calls=1 151 +151 9 + +fl=/Users/donasktello/Projects/task-1/optimizations/rubyprof_patched.rb +fn=[global]::[no method] +7 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::work +calls=1 7 +7 1293 + diff --git a/optimizations/step5/rubyprof_alloc.txt b/optimizations/step5/rubyprof_alloc.txt new file mode 100644 index 0000000..5fc5201 --- /dev/null +++ b/optimizations/step5/rubyprof_alloc.txt @@ -0,0 +1,51 @@ +Measure Mode: allocations +Thread ID: 70363941879760 +Fiber ID: 70363943965420 +Total: 59549.000000 +Sort by: self_time + + %self total self wait child calls name + 40.58 24163.000 24163.000 0.000 0.000 3293 String#split + 27.71 51721.000 16501.000 0.000 35220.000 9 Array#each + 7.65 4557.000 4557.000 0.000 0.000 4292 String#encode + 4.64 12438.000 2764.000 0.000 9674.000 1382 Object#parse_session + 4.13 2461.000 2461.000 0.000 0.000 2460 String#upcase + 3.99 3759.000 2377.000 0.000 1382.000 2377 Array#map + 3.10 1848.000 1848.000 0.000 0.000 1848 Hash#merge + 1.67 992.000 992.000 0.000 0.000 529 Array#sort + 1.33 1320.000 792.000 0.000 528.000 1 Array#each_index + 0.89 530.000 529.000 0.000 1.000 266 *Class#new + 0.89 528.000 528.000 0.000 0.000 528 Integer#to_s + 0.89 2112.000 528.000 0.000 1584.000 264 Object#parse_user + 0.53 1045.000 317.000 0.000 728.000 264 Array#any? + 0.45 266.000 266.000 0.000 0.000 266 Hash#keys + 0.45 265.000 265.000 0.000 0.000 265 Array#join + 0.44 264.000 264.000 0.000 0.000 264 Array#reverse + 0.34 201.000 201.000 0.000 0.000 1382 Set#add + 0.28 514.000 165.000 0.000 349.000 264 Array#all? + 0.02 59548.000 10.000 0.000 59538.000 1 Object#work + 0.01 5.000 5.000 0.000 0.000 1 #write + 0.01 3.000 3.000 0.000 0.000 1 #read + 0.00 2.000 2.000 0.000 0.000 1 Set#each + 0.00 2.000 2.000 0.000 0.000 1 Array#uniq + 0.00 4.000 2.000 0.000 2.000 1 Enumerable#count + 0.00 2.000 2.000 0.000 0.000 1 Array#flatten + 0.00 1.000 1.000 0.000 0.000 1 Symbol#to_s + 0.00 1.000 1.000 0.000 0.000 1 Kernel#dup + 0.00 4826.000 1.000 0.000 4825.000 1 JSON::Ext::Generator::GeneratorMethods::Hash#to_json + 0.00 59549.000 1.000 0.000 59548.000 1 [global]#[no method] + 0.00 0.000 0.000 0.000 0.000 1 Hash#each_key + 0.00 0.000 0.000 0.000 0.000 1 Hash#initialize + 0.00 1.000 0.000 0.000 1.000 1 Set#initialize + 0.00 0.000 0.000 0.000 0.000 264 User#initialize + 0.00 0.000 0.000 0.000 0.000 266 Array#count + 0.00 22156.000 0.000 0.000 22156.000 7 Object#collect_stats_from_users + 0.00 0.000 0.000 0.000 0.000 2764 String#to_i + 0.00 0.000 0.000 0.000 0.000 264 Array#sum + 0.00 0.000 0.000 0.000 0.000 264 Array#max + 0.00 0.000 0.000 0.000 0.000 1 Kernel#initialize_dup + 0.00 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::State#initialize_copy + 0.00 0.000 0.000 0.000 0.000 2116 String#to_s + 0.00 0.000 0.000 0.000 0.000 1 NilClass#nil? + +* indicates recursively called methods diff --git a/optimizations/step5/stackprof_object.txt b/optimizations/step5/stackprof_object.txt new file mode 100644 index 0000000..d552119 --- /dev/null +++ b/optimizations/step5/stackprof_object.txt @@ -0,0 +1,137 @@ +================================== + Mode: object(1) + Samples: 59549 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 59548 (100.0%) 33169 (55.7%) Object#work + 12438 (20.9%) 12438 (20.9%) Object#parse_session + 22156 (37.2%) 11625 (19.5%) Object#collect_stats_from_users + 2112 (3.5%) 2112 (3.5%) Object#parse_user + 201 (0.3%) 201 (0.3%) Set#add + 2 (0.0%) 2 (0.0%) Set#each + 1 (0.0%) 1 (0.0%) Set#initialize + 59549 (100.0%) 1 (0.0%) block (2 levels) in
+ 59549 (100.0%) 0 (0.0%) block in
+ 59549 (100.0%) 0 (0.0%)
+ 59549 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 59549 (100.0%) 0 (0.0%)
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:49) + samples: 33169 self (55.7%) / 59548 total (100.0%) + callers: + 59548 ( 100.0%) block (2 levels) in
+ 33826 ( 56.8%) Object#work + 10531 ( 17.7%) Object#collect_stats_from_users + callees (26379 total): + 33826 ( 128.2%) Object#work + 22156 ( 84.0%) Object#collect_stats_from_users + 12438 ( 47.2%) Object#parse_session + 2112 ( 8.0%) Object#parse_user + 201 ( 0.8%) Set#add + 2 ( 0.0%) Set#each + 1 ( 0.0%) Set#initialize + code: + | 49 | def work(filename) + 1652 (2.8%) / 1652 (2.8%) | 50 | file_lines = File.read("#{$support_dir}/#{filename}").split("\n") + | 51 | + 1 (0.0%) / 1 (0.0%) | 52 | users = [] + 1 (0.0%) / 1 (0.0%) | 53 | sessions = [] + | 54 | + 29364 (49.3%) | 55 | file_lines.each do |line| + 12904 (21.7%) / 12904 (21.7%) | 56 | cols = line.split(',') + | 57 | + 1646 (2.8%) / 1646 (2.8%) | 58 | if cols[0] == 'user' + 2112 (3.5%) | 59 | users << parse_user(line) + | 60 | + 264 (0.4%) / 264 (0.4%) | 61 | sessions << [] + | 62 | else + 12438 (20.9%) | 63 | sessions[-1] << parse_session(line) + | 64 | end + | 65 | end + | 66 | + | 67 | # Отчёт в json + | 68 | # - Сколько всего юзеров + + | 69 | # - Сколько всего уникальных браузеров + + | 70 | # - Сколько всего сессий + + | 71 | # - Перечислить уникальные браузеры в алфавитном порядке через запятую и капсом + + | 72 | # + | 73 | # - По каждому пользователю + | 74 | # - сколько всего сессий + + | 75 | # - сколько всего времени + + | 76 | # - самая длинная сессия + + | 77 | # - браузеры через запятую + + | 78 | # - Хоть раз использовал IE? + + | 79 | # - Всегда использовал только Хром? + + | 80 | # - даты сессий в порядке убывания через запятую + + 2 (0.0%) / 2 (0.0%) | 81 | flatten = sessions.flatten + 1 (0.0%) / 1 (0.0%) | 82 | report = {} + | 83 | + | 84 | report[:totalUsers] = users.count + | 85 | + | 86 | # Подсчёт количества уникальных браузеров + 2 (0.0%) / 1 (0.0%) | 87 | uniqueBrowsers = Set.new + 201 (0.3%) | 88 | flatten.each do |session| + | 89 | browser = session['browser'] + 201 (0.3%) | 90 | uniqueBrowsers << browser + | 91 | end + | 92 | + 4 (0.0%) / 2 (0.0%) | 93 | report['uniqueBrowsersCount'] = uniqueBrowsers.count + | 94 | + | 95 | report['totalSessions'] = flatten.count + | 96 | + | 97 | report['allBrowsers'] = + | 98 | flatten + 1 (0.0%) / 1 (0.0%) | 99 | .map { |s| s['browser'] } + 2 (0.0%) / 2 (0.0%) | 100 | .sort + 2 (0.0%) / 2 (0.0%) | 101 | .uniq + 4 (0.0%) / 4 (0.0%) | 102 | .join(',').upcase + | 103 | + | 104 | # Статистика по пользователям + 1 (0.0%) / 1 (0.0%) | 105 | users_objects = [] + | 106 | + 1320 (2.2%) | 107 | users.each_index do |i| + | 108 | attributes = users[i] + | 109 | user_sessions = sessions[i] + 792 (1.3%) / 792 (1.3%) | 110 | user_object = User.new(attributes: attributes, sessions: user_sessions) + 528 (0.9%) / 528 (0.9%) | 111 | users_objects = users_objects + [user_object] + | 112 | end + | 113 | + 1 (0.0%) / 1 (0.0%) | 114 | report['usersStats'] = {} + | 115 | + | 116 | # Собираем количество сессий по пользователям + 2379 (4.0%) | 117 | collect_stats_from_users(report, users_objects) do |user| + | 118 | { 'sessionsCount' => user.sessions.count } + | 119 | end + | 120 | + | 121 | # Собираем количество времени по пользователям + 3169 (5.3%) | 122 | collect_stats_from_users(report, users_objects) do |user| + 1320 (2.2%) / 1320 (2.2%) | 123 | { 'totalTime' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.sum.to_s + ' min.' } + | 124 | end + | 125 | + | 126 | # Выбираем самую длинную сессию пользователя + 3169 (5.3%) | 127 | collect_stats_from_users(report, users_objects) do |user| + 1320 (2.2%) / 1320 (2.2%) | 128 | { 'longestSession' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.max.to_s + ' min.' } + | 129 | end + | 130 | + | 131 | # Браузеры пользователя через запятую + 4782 (8.0%) | 132 | collect_stats_from_users(report, users_objects) do |user| + 4315 (7.2%) / 2933 (4.9%) | 133 | { 'browsers' => user.sessions.map {|s| s['browser']}.map {|b| b.upcase}.sort.join(', ') } + | 134 | end + | 135 | + | 136 | # Хоть раз использовал IE? + 3158 (5.3%) | 137 | collect_stats_from_users(report, users_objects) do |user| + 2354 (4.0%) / 1309 (2.2%) | 138 | { 'usedIE' => user.sessions.map{|s| s['browser']}.any? { |b| b.upcase =~ /INTERNET EXPLORER/ } } + | 139 | end + | 140 | + | 141 | # Всегда использовал только Chrome? + 2627 (4.4%) | 142 | collect_stats_from_users(report, users_objects) do |user| + 1292 (2.2%) / 778 (1.3%) | 143 | { 'alwaysUsedChrome' => user.sessions.map{|s| s['browser']}.all? { |b| b.upcase =~ /CHROME/ } } + | 144 | end + | 145 | + | 146 | # Даты сессий через запятую в обратном порядке в формате iso8601 + 2872 (4.8%) | 147 | collect_stats_from_users(report, users_objects) do |user| + 1023 (1.7%) / 1023 (1.7%) | 148 | { 'dates' => user.sessions.map{|s| s['date']}.sort.reverse } + | 149 | end + | 150 | + 4833 (8.1%) / 4833 (8.1%) | 151 | File.write("#{$support_dir}/result.json", "#{report.to_json}\n") + | 152 | end diff --git a/optimizations/step6/rubyprof_alloc.txt b/optimizations/step6/rubyprof_alloc.txt new file mode 100644 index 0000000..2b71d1c --- /dev/null +++ b/optimizations/step6/rubyprof_alloc.txt @@ -0,0 +1,51 @@ +Measure Mode: allocations +Thread ID: 70319549374480 +Fiber ID: 70319546561660 +Total: 51966.000000 +Sort by: self_time + + %self total self wait child calls name + 46.50 24163.000 24163.000 0.000 0.000 3293 String#split + 20.34 44143.000 10569.000 0.000 33574.000 9 Array#each + 8.77 4557.000 4557.000 0.000 0.000 4292 String#encode + 4.74 2461.000 2461.000 0.000 0.000 2460 String#upcase + 4.57 3759.000 2377.000 0.000 1382.000 2377 Array#map + 3.56 1848.000 1848.000 0.000 0.000 1848 Hash#merge + 2.66 11056.000 1382.000 0.000 9674.000 1382 Object#parse_session + 1.91 992.000 992.000 0.000 0.000 529 Array#sort + 1.52 1320.000 792.000 0.000 528.000 1 Array#each_index + 1.02 530.000 529.000 0.000 1.000 266 *Class#new + 1.02 528.000 528.000 0.000 0.000 528 Integer#to_s + 0.61 1045.000 317.000 0.000 728.000 264 Array#any? + 0.51 266.000 266.000 0.000 0.000 266 Hash#keys + 0.51 265.000 265.000 0.000 0.000 265 Array#join + 0.51 264.000 264.000 0.000 0.000 264 Array#reverse + 0.51 1848.000 264.000 0.000 1584.000 264 Object#parse_user + 0.39 201.000 201.000 0.000 0.000 1382 Set#add + 0.32 514.000 165.000 0.000 349.000 264 Array#all? + 0.02 51965.000 8.000 0.000 51957.000 1 Object#work + 0.01 3.000 3.000 0.000 0.000 1 #write + 0.00 4.000 2.000 0.000 2.000 1 Enumerable#count + 0.00 2.000 2.000 0.000 0.000 1 Set#each + 0.00 2.000 2.000 0.000 0.000 1 Array#uniq + 0.00 2.000 2.000 0.000 0.000 1 #read + 0.00 2.000 2.000 0.000 0.000 1 Array#flatten + 0.00 1.000 1.000 0.000 0.000 1 Symbol#to_s + 0.00 1.000 1.000 0.000 0.000 1 Kernel#dup + 0.00 4826.000 1.000 0.000 4825.000 1 JSON::Ext::Generator::GeneratorMethods::Hash#to_json + 0.00 51966.000 1.000 0.000 51965.000 1 [global]#[no method] + 0.00 0.000 0.000 0.000 0.000 1 Hash#each_key + 0.00 0.000 0.000 0.000 0.000 1 Hash#initialize + 0.00 1.000 0.000 0.000 1.000 1 Set#initialize + 0.00 0.000 0.000 0.000 0.000 264 User#initialize + 0.00 0.000 0.000 0.000 0.000 266 Array#count + 0.00 19516.000 0.000 0.000 19516.000 7 Object#collect_stats_from_users + 0.00 0.000 0.000 0.000 0.000 2764 String#to_i + 0.00 0.000 0.000 0.000 0.000 264 Array#sum + 0.00 0.000 0.000 0.000 0.000 264 Array#max + 0.00 0.000 0.000 0.000 0.000 1 Kernel#initialize_dup + 0.00 0.000 0.000 0.000 0.000 1 JSON::Ext::Generator::State#initialize_copy + 0.00 0.000 0.000 0.000 0.000 2116 String#to_s + 0.00 0.000 0.000 0.000 0.000 1 NilClass#nil? + +* indicates recursively called methods diff --git a/optimizations/step6/stackprof_object.txt b/optimizations/step6/stackprof_object.txt new file mode 100644 index 0000000..66c3b93 --- /dev/null +++ b/optimizations/step6/stackprof_object.txt @@ -0,0 +1,137 @@ +================================== + Mode: object(1) + Samples: 51966 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 51965 (100.0%) 29080 (56.0%) Object#work + 11056 (21.3%) 11056 (21.3%) Object#parse_session + 19516 (37.6%) 9777 (18.8%) Object#collect_stats_from_users + 1848 (3.6%) 1848 (3.6%) Object#parse_user + 201 (0.4%) 201 (0.4%) Set#add + 2 (0.0%) 2 (0.0%) Set#each + 1 (0.0%) 1 (0.0%) Set#initialize + 51966 (100.0%) 1 (0.0%) block (2 levels) in
+ 51966 (100.0%) 0 (0.0%) block in
+ 51966 (100.0%) 0 (0.0%)
+ 51966 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 51966 (100.0%) 0 (0.0%)
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:50) + samples: 29080 self (56.0%) / 51965 total (100.0%) + callers: + 51965 ( 100.0%) block (2 levels) in
+ 28888 ( 55.6%) Object#work + 9739 ( 18.7%) Object#collect_stats_from_users + callees (22885 total): + 28888 ( 126.2%) Object#work + 19516 ( 85.3%) Object#collect_stats_from_users + 11056 ( 48.3%) Object#parse_session + 1848 ( 8.1%) Object#parse_user + 201 ( 0.9%) Set#add + 2 ( 0.0%) Set#each + 1 ( 0.0%) Set#initialize + code: + | 50 | def work(filename) + 1650 (3.2%) / 1650 (3.2%) | 51 | file_lines = File.read("#{$support_dir}/#{filename}").split("\n") + | 52 | + 1 (0.0%) / 1 (0.0%) | 53 | users = [] + 1 (0.0%) / 1 (0.0%) | 54 | sessions = [] + | 55 | + 24426 (47.0%) | 56 | file_lines.each do |line| + 11258 (21.7%) / 11258 (21.7%) | 57 | cols = line.split(',') + | 58 | + | 59 | if cols[0] == 'user' + 1848 (3.6%) | 60 | users << parse_user(line) + | 61 | + 264 (0.5%) / 264 (0.5%) | 62 | sessions << [] + | 63 | else + 11056 (21.3%) | 64 | sessions[-1] << parse_session(line) + | 65 | end + | 66 | end + | 67 | + | 68 | # Отчёт в json + | 69 | # - Сколько всего юзеров + + | 70 | # - Сколько всего уникальных браузеров + + | 71 | # - Сколько всего сессий + + | 72 | # - Перечислить уникальные браузеры в алфавитном порядке через запятую и капсом + + | 73 | # + | 74 | # - По каждому пользователю + | 75 | # - сколько всего сессий + + | 76 | # - сколько всего времени + + | 77 | # - самая длинная сессия + + | 78 | # - браузеры через запятую + + | 79 | # - Хоть раз использовал IE? + + | 80 | # - Всегда использовал только Хром? + + | 81 | # - даты сессий в порядке убывания через запятую + + 2 (0.0%) / 2 (0.0%) | 82 | flatten = sessions.flatten + 1 (0.0%) / 1 (0.0%) | 83 | report = {} + | 84 | + | 85 | report[:totalUsers] = users.count + | 86 | + | 87 | # Подсчёт количества уникальных браузеров + 2 (0.0%) / 1 (0.0%) | 88 | uniqueBrowsers = Set.new + 201 (0.4%) | 89 | flatten.each do |session| + | 90 | browser = session['browser'] + 201 (0.4%) | 91 | uniqueBrowsers << browser + | 92 | end + | 93 | + 4 (0.0%) / 2 (0.0%) | 94 | report['uniqueBrowsersCount'] = uniqueBrowsers.count + | 95 | + | 96 | report['totalSessions'] = flatten.count + | 97 | + | 98 | report['allBrowsers'] = + | 99 | flatten + 1 (0.0%) / 1 (0.0%) | 100 | .map { |s| s['browser'] } + 2 (0.0%) / 2 (0.0%) | 101 | .sort + 2 (0.0%) / 2 (0.0%) | 102 | .uniq + 3 (0.0%) / 3 (0.0%) | 103 | .join(',').upcase + | 104 | + | 105 | # Статистика по пользователям + 1 (0.0%) / 1 (0.0%) | 106 | users_objects = [] + | 107 | + 1320 (2.5%) | 108 | users.each_index do |i| + | 109 | attributes = users[i] + | 110 | user_sessions = sessions[i] + 792 (1.5%) / 792 (1.5%) | 111 | user_object = User.new(attributes: attributes, sessions: user_sessions) + 528 (1.0%) / 528 (1.0%) | 112 | users_objects = users_objects + [user_object] + | 113 | end + | 114 | + 1 (0.0%) / 1 (0.0%) | 115 | report['usersStats'] = {} + | 116 | + | 117 | # Собираем количество сессий по пользователям + 2115 (4.1%) | 118 | collect_stats_from_users(report, users_objects) do |user| + | 119 | { 'sessionsCount' => user.sessions.count } + | 120 | end + | 121 | + | 122 | # Собираем количество времени по пользователям + 2641 (5.1%) | 123 | collect_stats_from_users(report, users_objects) do |user| + 1056 (2.0%) / 1056 (2.0%) | 124 | { 'totalTime' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.sum.to_s + ' min.' } + | 125 | end + | 126 | + | 127 | # Выбираем самую длинную сессию пользователя + 2641 (5.1%) | 128 | collect_stats_from_users(report, users_objects) do |user| + 1056 (2.0%) / 1056 (2.0%) | 129 | { 'longestSession' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.max.to_s + ' min.' } + | 130 | end + | 131 | + | 132 | # Браузеры пользователя через запятую + 4254 (8.2%) | 133 | collect_stats_from_users(report, users_objects) do |user| + 4051 (7.8%) / 2669 (5.1%) | 134 | { 'browsers' => user.sessions.map {|s| s['browser']}.map {|b| b.upcase}.sort.join(', ') } + | 135 | end + | 136 | + | 137 | # Хоть раз использовал IE? + 2894 (5.6%) | 138 | collect_stats_from_users(report, users_objects) do |user| + 2354 (4.5%) / 1309 (2.5%) | 139 | { 'usedIE' => user.sessions.map{|s| s['browser']}.any? { |b| b.upcase =~ /INTERNET EXPLORER/ } } + | 140 | end + | 141 | + | 142 | # Всегда использовал только Chrome? + 2363 (4.5%) | 143 | collect_stats_from_users(report, users_objects) do |user| + 1292 (2.5%) / 778 (1.5%) | 144 | { 'alwaysUsedChrome' => user.sessions.map{|s| s['browser']}.all? { |b| b.upcase =~ /CHROME/ } } + | 145 | end + | 146 | + | 147 | # Даты сессий через запятую в обратном порядке в формате iso8601 + 2608 (5.0%) | 148 | collect_stats_from_users(report, users_objects) do |user| + 1023 (2.0%) / 1023 (2.0%) | 149 | { 'dates' => user.sessions.map{|s| s['date']}.sort.reverse } + | 150 | end + | 151 | + 4831 (9.3%) / 4831 (9.3%) | 152 | File.write("#{$support_dir}/result.json", "#{report.to_json}\n") + | 153 | end diff --git a/optimizations/step7/massif.out.23605 b/optimizations/step7/massif.out.23605 new file mode 100644 index 0000000..f8b127f --- /dev/null +++ b/optimizations/step7/massif.out.23605 @@ -0,0 +1,1231 @@ +desc: (none) +cmd: /home/donasktello/.rvm/rubies/ruby-2.6.1/bin/ruby valgrind_massif.rb +time_unit: i +#----------- +snapshot=0 +#----------- +time=0 +mem_heap_B=0 +mem_heap_extra_B=0 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=1 +#----------- +time=3212288370 +mem_heap_B=49334988 +mem_heap_extra_B=5919316 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=2 +#----------- +time=6834346192 +mem_heap_B=49690014 +mem_heap_extra_B=5916554 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=3 +#----------- +time=9584220064 +mem_heap_B=49670305 +mem_heap_extra_B=5898855 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=4 +#----------- +time=13866190407 +mem_heap_B=50775236 +mem_heap_extra_B=5926028 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=5 +#----------- +time=15769544441 +mem_heap_B=51043085 +mem_heap_extra_B=5927563 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=6 +#----------- +time=18649290609 +mem_heap_B=51143722 +mem_heap_extra_B=5915566 +mem_stacks_B=0 +heap_tree=detailed +n6: 51143722 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n5: 9339031 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2636676 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 2441514 0x4F2DDC1: rb_io_getline_0 (io.c:3211) + n1: 2441514 0x4F2EBE4: rb_io_gets_m (io.c:3527) + n2: 2441514 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2441514 0x5092F70: vm_exec_core (insns.def:765) + n1: 2441514 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2441514 0x509A58C: rb_yield (vm.c:1092) + n1: 2441514 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2441514 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2441514 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2441514 0x5093011: vm_exec_core (insns.def:750) + n1: 2441514 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2441514 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2441514 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2441514 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2441514 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 195162 in 15 places, all below massif's threshold (1.00%) + n2: 1999008 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1737216 0x501B8F5: rebuild_table (st.c:780) + n1: 889728 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 889728 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 103296 in 4 places, all below massif's threshold (1.00%) + n0: 847488 in 3 places, all below massif's threshold (1.00%) + n0: 261792 in 50 places, all below massif's threshold (1.00%) + n2: 1928160 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1925160 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1925160 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1914216 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1258376 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1162456 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1153736 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1153736 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1153736 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 952712 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 830880 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 638728 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 638728 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 638728 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 638728 in 2 places, all below massif's threshold (1.00%) + n0: 192152 in 3 places, all below massif's threshold (1.00%) + n0: 121832 in 2 places, all below massif's threshold (1.00%) + n0: 201024 in 2 places, all below massif's threshold (1.00%) + n0: 8720 in 4 places, all below massif's threshold (1.00%) + n0: 95920 in 8 places, all below massif's threshold (1.00%) + n0: 655840 in 10 places, all below massif's threshold (1.00%) + n0: 10944 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n0: 1726611 in 121 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4188521 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1656416 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1648424 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 968216 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 908424 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 900432 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 900432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 900432 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 735264 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 638176 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 638176 in 4 places, all below massif's threshold (1.00%) + n0: 97088 in 2 places, all below massif's threshold (1.00%) + n0: 165168 in 2 places, all below massif's threshold (1.00%) + n0: 7992 in 4 places, all below massif's threshold (1.00%) + n0: 59792 in 8 places, all below massif's threshold (1.00%) + n0: 680208 in 10 places, all below massif's threshold (1.00%) + n0: 7992 in 7 places, all below massif's threshold (1.00%) + n0: 1568200 in 25 places, all below massif's threshold (1.00%) + n2: 963905 0x4EB208C: iseq_setup (compile.c:2126) + n1: 963788 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 963788 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 958459 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 660220 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 622337 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 618776 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 618776 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 618776 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 618776 in 3 places, all below massif's threshold (1.00%) + n0: 3561 in 4 places, all below massif's threshold (1.00%) + n0: 37883 in 8 places, all below massif's threshold (1.00%) + n0: 298239 in 10 places, all below massif's threshold (1.00%) + n0: 5329 in 7 places, all below massif's threshold (1.00%) + n0: 117 in 1 place, below massif's threshold (1.00%) + n2: 2860200 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2222784 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1242144 in 26 places, all below massif's threshold (1.00%) + n1: 980640 0x50240D3: str_new0 (string.c:723) + n0: 980640 in 5 places, all below massif's threshold (1.00%) + n0: 637416 in 5 places, all below massif's threshold (1.00%) + n0: 609995 in 115 places, all below massif's threshold (1.00%) + n1: 591543 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n0: 591543 in 14 places, all below massif's threshold (1.00%) +#----------- +snapshot=7 +#----------- +time=21933388082 +mem_heap_B=51848655 +mem_heap_extra_B=5928529 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=8 +#----------- +time=24693232692 +mem_heap_B=52378909 +mem_heap_extra_B=5935899 +mem_stacks_B=0 +heap_tree=detailed +n6: 52378909 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n5: 10458042 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 3755895 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 3383709 0x4F2DDC1: rb_io_getline_0 (io.c:3211) + n1: 3383709 0x4F2EBE4: rb_io_gets_m (io.c:3527) + n2: 3383709 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3383709 0x5092F70: vm_exec_core (insns.def:765) + n1: 3383709 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3383709 0x509A58C: rb_yield (vm.c:1092) + n1: 3383709 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3383709 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3383709 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3383709 0x5093011: vm_exec_core (insns.def:750) + n1: 3383709 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3383709 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3383709 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3383709 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3383709 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 372186 in 15 places, all below massif's threshold (1.00%) + n2: 1999008 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1737216 0x501B8F5: rebuild_table (st.c:780) + n1: 889728 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 889728 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 103296 in 4 places, all below massif's threshold (1.00%) + n0: 847488 in 3 places, all below massif's threshold (1.00%) + n0: 261792 in 50 places, all below massif's threshold (1.00%) + n2: 1928160 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1925160 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1925160 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1914216 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1258376 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1162456 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1153736 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1153736 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1153736 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 952712 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 830880 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 638728 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 638728 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 638728 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 638728 in 2 places, all below massif's threshold (1.00%) + n0: 192152 in 3 places, all below massif's threshold (1.00%) + n0: 121832 in 2 places, all below massif's threshold (1.00%) + n0: 201024 in 2 places, all below massif's threshold (1.00%) + n0: 8720 in 4 places, all below massif's threshold (1.00%) + n0: 95920 in 8 places, all below massif's threshold (1.00%) + n0: 655840 in 10 places, all below massif's threshold (1.00%) + n0: 10944 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n0: 1726403 in 121 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4196729 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1656416 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1648424 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 968216 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 908424 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 900432 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 900432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 900432 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 735264 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 638176 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 638176 in 4 places, all below massif's threshold (1.00%) + n0: 97088 in 2 places, all below massif's threshold (1.00%) + n0: 165168 in 2 places, all below massif's threshold (1.00%) + n0: 7992 in 4 places, all below massif's threshold (1.00%) + n0: 59792 in 8 places, all below massif's threshold (1.00%) + n0: 680208 in 10 places, all below massif's threshold (1.00%) + n0: 7992 in 7 places, all below massif's threshold (1.00%) + n0: 1576408 in 25 places, all below massif's threshold (1.00%) + n2: 963905 0x4EB208C: iseq_setup (compile.c:2126) + n1: 963788 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 963788 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 958459 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 660220 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 622337 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 618776 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 618776 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 618776 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 618776 in 3 places, all below massif's threshold (1.00%) + n0: 3561 in 4 places, all below massif's threshold (1.00%) + n0: 37883 in 8 places, all below massif's threshold (1.00%) + n0: 298239 in 10 places, all below massif's threshold (1.00%) + n0: 5329 in 7 places, all below massif's threshold (1.00%) + n0: 117 in 1 place, below massif's threshold (1.00%) + n2: 2860200 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2222784 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1242144 in 26 places, all below massif's threshold (1.00%) + n1: 980640 0x50240D3: str_new0 (string.c:723) + n0: 980640 in 5 places, all below massif's threshold (1.00%) + n0: 637416 in 5 places, all below massif's threshold (1.00%) + n1: 681271 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n0: 681271 in 14 places, all below massif's threshold (1.00%) + n0: 628235 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=9 +#----------- +time=28181093251 +mem_heap_B=48997283 +mem_heap_extra_B=5904173 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=10 +#----------- +time=32625669698 +mem_heap_B=49407637 +mem_heap_extra_B=5899227 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=11 +#----------- +time=35800605760 +mem_heap_B=49906211 +mem_heap_extra_B=5904893 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=12 +#----------- +time=40245238082 +mem_heap_B=50781488 +mem_heap_extra_B=5919112 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=13 +#----------- +time=42785291795 +mem_heap_B=51147203 +mem_heap_extra_B=5921965 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=14 +#----------- +time=46260114050 +mem_heap_B=51265742 +mem_heap_extra_B=5907522 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=15 +#----------- +time=49016265440 +mem_heap_B=51541047 +mem_heap_extra_B=5902337 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=16 +#----------- +time=52323341613 +mem_heap_B=52570966 +mem_heap_extra_B=5930962 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=17 +#----------- +time=54763062784 +mem_heap_B=52966994 +mem_heap_extra_B=5933822 +mem_stacks_B=0 +heap_tree=peak +n6: 52966994 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n5: 11043853 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 4352527 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 3989991 0x4F2DDC1: rb_io_getline_0 (io.c:3211) + n1: 3989991 0x4F2EBE4: rb_io_gets_m (io.c:3527) + n2: 3989991 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3989991 0x5092F70: vm_exec_core (insns.def:765) + n1: 3989991 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3989991 0x509A58C: rb_yield (vm.c:1092) + n1: 3989991 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3989991 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3989991 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3989991 0x5093011: vm_exec_core (insns.def:750) + n1: 3989991 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3989991 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3989991 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3989991 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3989991 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 362536 in 15 places, all below massif's threshold (1.00%) + n2: 1998240 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1737216 0x501B8F5: rebuild_table (st.c:780) + n1: 889728 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 889728 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 103296 in 4 places, all below massif's threshold (1.00%) + n0: 847488 in 3 places, all below massif's threshold (1.00%) + n0: 261024 in 50 places, all below massif's threshold (1.00%) + n2: 1924568 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1921568 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1921568 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1912136 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1258376 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1162456 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1153736 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1153736 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1153736 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 952712 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 830880 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 638728 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 638728 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 638728 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 638728 in 2 places, all below massif's threshold (1.00%) + n0: 192152 in 3 places, all below massif's threshold (1.00%) + n0: 121832 in 2 places, all below massif's threshold (1.00%) + n0: 201024 in 2 places, all below massif's threshold (1.00%) + n0: 8720 in 4 places, all below massif's threshold (1.00%) + n0: 95920 in 8 places, all below massif's threshold (1.00%) + n0: 653760 in 10 places, all below massif's threshold (1.00%) + n0: 9432 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n0: 1719942 in 121 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4197020 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1654048 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1647536 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 968216 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 908424 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 900432 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 900432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 900432 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 735264 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 638176 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 638176 in 4 places, all below massif's threshold (1.00%) + n0: 97088 in 2 places, all below massif's threshold (1.00%) + n0: 165168 in 2 places, all below massif's threshold (1.00%) + n0: 7992 in 4 places, all below massif's threshold (1.00%) + n0: 59792 in 8 places, all below massif's threshold (1.00%) + n0: 679320 in 10 places, all below massif's threshold (1.00%) + n0: 6512 in 7 places, all below massif's threshold (1.00%) + n0: 1580628 in 25 places, all below massif's threshold (1.00%) + n2: 962344 0x4EB208C: iseq_setup (compile.c:2126) + n1: 962227 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 962227 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 957498 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 660220 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 622337 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 618776 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 618776 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 618776 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 618776 in 3 places, all below massif's threshold (1.00%) + n0: 3561 in 4 places, all below massif's threshold (1.00%) + n0: 37883 in 8 places, all below massif's threshold (1.00%) + n0: 297278 in 10 places, all below massif's threshold (1.00%) + n0: 4729 in 7 places, all below massif's threshold (1.00%) + n0: 117 in 1 place, below massif's threshold (1.00%) + n2: 2860200 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2222784 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1242144 in 26 places, all below massif's threshold (1.00%) + n1: 980640 0x50240D3: str_new0 (string.c:723) + n0: 980640 in 5 places, all below massif's threshold (1.00%) + n0: 637416 in 5 places, all below massif's threshold (1.00%) + n1: 675262 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n0: 675262 in 14 places, all below massif's threshold (1.00%) + n0: 636227 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=18 +#----------- +time=59172212232 +mem_heap_B=49285133 +mem_heap_extra_B=5912595 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=19 +#----------- +time=62479448127 +mem_heap_B=49712549 +mem_heap_extra_B=5914779 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=20 +#----------- +time=65786812326 +mem_heap_B=50104013 +mem_heap_extra_B=5915115 +mem_stacks_B=0 +heap_tree=detailed +n6: 50104013 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n5: 8239872 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 1998240 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1737216 0x501B8F5: rebuild_table (st.c:780) + n1: 889728 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 889728 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 103296 in 4 places, all below massif's threshold (1.00%) + n0: 847488 in 3 places, all below massif's threshold (1.00%) + n0: 261024 in 50 places, all below massif's threshold (1.00%) + n2: 1924568 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1921568 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1921568 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1912136 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1258376 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1162456 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1153736 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1153736 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1153736 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 952712 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 830880 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 638728 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 638728 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 638728 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 638728 in 2 places, all below massif's threshold (1.00%) + n0: 192152 in 3 places, all below massif's threshold (1.00%) + n0: 121832 in 2 places, all below massif's threshold (1.00%) + n0: 201024 in 2 places, all below massif's threshold (1.00%) + n0: 8720 in 4 places, all below massif's threshold (1.00%) + n0: 95920 in 8 places, all below massif's threshold (1.00%) + n0: 653760 in 10 places, all below massif's threshold (1.00%) + n0: 9432 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n0: 1719990 in 121 places, all below massif's threshold (1.00%) + n2: 1548498 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 1147020 0x4F2DDC1: rb_io_getline_0 (io.c:3211) + n1: 1147020 0x4F2EBE4: rb_io_gets_m (io.c:3527) + n2: 1147020 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1147020 0x5092F70: vm_exec_core (insns.def:765) + n1: 1147020 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1147020 0x509A58C: rb_yield (vm.c:1092) + n1: 1147020 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1147020 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1147020 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1147020 0x5093011: vm_exec_core (insns.def:750) + n1: 1147020 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1147020 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 1147020 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 1147020 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 1147020 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 401478 in 15 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4172036 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1654048 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1647536 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 968216 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 908424 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 900432 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 900432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 900432 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 735264 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 638176 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 638176 in 4 places, all below massif's threshold (1.00%) + n0: 97088 in 2 places, all below massif's threshold (1.00%) + n0: 165168 in 2 places, all below massif's threshold (1.00%) + n0: 7992 in 4 places, all below massif's threshold (1.00%) + n0: 59792 in 8 places, all below massif's threshold (1.00%) + n0: 679320 in 10 places, all below massif's threshold (1.00%) + n0: 6512 in 7 places, all below massif's threshold (1.00%) + n0: 1555644 in 25 places, all below massif's threshold (1.00%) + n2: 962344 0x4EB208C: iseq_setup (compile.c:2126) + n1: 962227 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 962227 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 957498 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 660220 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 622337 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 618776 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 618776 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 618776 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 618776 in 3 places, all below massif's threshold (1.00%) + n0: 3561 in 4 places, all below massif's threshold (1.00%) + n0: 37883 in 8 places, all below massif's threshold (1.00%) + n0: 297278 in 10 places, all below massif's threshold (1.00%) + n0: 4729 in 7 places, all below massif's threshold (1.00%) + n0: 117 in 1 place, below massif's threshold (1.00%) + n2: 2860200 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2222784 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1242144 in 26 places, all below massif's threshold (1.00%) + n1: 980640 0x50240D3: str_new0 (string.c:723) + n0: 980640 in 5 places, all below massif's threshold (1.00%) + n0: 637416 in 5 places, all below massif's threshold (1.00%) + n1: 696766 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n0: 696766 in 14 places, all below massif's threshold (1.00%) + n0: 580707 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=21 +#----------- +time=67991603948 +mem_heap_B=50446442 +mem_heap_extra_B=5918054 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=22 +#----------- +time=71298668993 +mem_heap_B=50379057 +mem_heap_extra_B=5895415 +mem_stacks_B=0 +heap_tree=detailed +n5: 50379057 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n5: 8660052 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 1998240 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1737216 0x501B8F5: rebuild_table (st.c:780) + n1: 889728 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 889728 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 103296 in 4 places, all below massif's threshold (1.00%) + n0: 847488 in 3 places, all below massif's threshold (1.00%) + n0: 261024 in 50 places, all below massif's threshold (1.00%) + n2: 1968678 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 1884390 0x4F2DDC1: rb_io_getline_0 (io.c:3211) + n1: 1884390 0x4F2EBE4: rb_io_gets_m (io.c:3527) + n2: 1884390 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1884390 0x5092F70: vm_exec_core (insns.def:765) + n1: 1884390 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1884390 0x509A58C: rb_yield (vm.c:1092) + n1: 1884390 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1884390 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1884390 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1884390 0x5093011: vm_exec_core (insns.def:750) + n1: 1884390 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1884390 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 1884390 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 1884390 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 1884390 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 84288 in 15 places, all below massif's threshold (1.00%) + n2: 1924568 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1921568 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1921568 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1912136 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1258376 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1162456 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1153736 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1153736 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1153736 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 952712 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 830880 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 638728 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 638728 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 638728 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 638728 in 2 places, all below massif's threshold (1.00%) + n0: 192152 in 3 places, all below massif's threshold (1.00%) + n0: 121832 in 2 places, all below massif's threshold (1.00%) + n0: 201024 in 2 places, all below massif's threshold (1.00%) + n0: 8720 in 4 places, all below massif's threshold (1.00%) + n0: 95920 in 8 places, all below massif's threshold (1.00%) + n0: 653760 in 10 places, all below massif's threshold (1.00%) + n0: 9432 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n0: 1719990 in 121 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4178516 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1654048 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1647536 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 968216 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 908424 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 900432 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 900432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 900432 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 735264 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 638176 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 638176 in 4 places, all below massif's threshold (1.00%) + n0: 97088 in 2 places, all below massif's threshold (1.00%) + n0: 165168 in 2 places, all below massif's threshold (1.00%) + n0: 7992 in 4 places, all below massif's threshold (1.00%) + n0: 59792 in 8 places, all below massif's threshold (1.00%) + n0: 679320 in 10 places, all below massif's threshold (1.00%) + n0: 6512 in 7 places, all below massif's threshold (1.00%) + n0: 1562124 in 25 places, all below massif's threshold (1.00%) + n2: 962344 0x4EB208C: iseq_setup (compile.c:2126) + n1: 962227 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 962227 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 957498 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 660220 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 622337 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 618776 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 618776 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 618776 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 618776 in 3 places, all below massif's threshold (1.00%) + n0: 3561 in 4 places, all below massif's threshold (1.00%) + n0: 37883 in 8 places, all below massif's threshold (1.00%) + n0: 297278 in 10 places, all below massif's threshold (1.00%) + n0: 4729 in 7 places, all below massif's threshold (1.00%) + n0: 117 in 1 place, below massif's threshold (1.00%) + n2: 2860200 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2222784 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1242144 in 26 places, all below massif's threshold (1.00%) + n1: 980640 0x50240D3: str_new0 (string.c:723) + n0: 980640 in 5 places, all below massif's threshold (1.00%) + n0: 637416 in 5 places, all below massif's threshold (1.00%) + n0: 1125857 in 116 places, all below massif's threshold (1.00%) +#----------- +snapshot=23 +#----------- +time=75229556392 +mem_heap_B=51459409 +mem_heap_extra_B=5923711 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=24 +#----------- +time=78374056811 +mem_heap_B=51902135 +mem_heap_extra_B=5925401 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=25 +#----------- +time=81518804636 +mem_heap_B=52416157 +mem_heap_extra_B=5929459 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=26 +#----------- +time=84663916538 +mem_heap_B=52410063 +mem_heap_extra_B=5907313 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=27 +#----------- +time=88594846236 +mem_heap_B=48646662 +mem_heap_extra_B=5885938 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=28 +#----------- +time=91739133146 +mem_heap_B=49605008 +mem_heap_extra_B=5914456 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=29 +#----------- +time=93311550515 +mem_heap_B=49536951 +mem_heap_extra_B=5903457 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=30 +#----------- +time=96456183269 +mem_heap_B=49890083 +mem_heap_extra_B=5901701 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=31 +#----------- +time=99601064968 +mem_heap_B=50650960 +mem_heap_extra_B=5918968 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=32 +#----------- +time=101959361821 +mem_heap_B=50643479 +mem_heap_extra_B=5905137 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=33 +#----------- +time=105103762239 +mem_heap_B=50998175 +mem_heap_extra_B=5902401 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=34 +#----------- +time=109034572949 +mem_heap_B=51695234 +mem_heap_extra_B=5912470 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=35 +#----------- +time=112811881497 +mem_heap_B=52396697 +mem_heap_extra_B=5922111 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=36 +#----------- +time=116119551812 +mem_heap_B=52836246 +mem_heap_extra_B=5919954 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=37 +#----------- +time=120529864150 +mem_heap_B=49345177 +mem_heap_extra_B=5909671 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=38 +#----------- +time=123837783765 +mem_heap_B=49782460 +mem_heap_extra_B=5911124 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=39 +#----------- +time=126043192632 +mem_heap_B=50156584 +mem_heap_extra_B=5916728 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=40 +#----------- +time=130453607900 +mem_heap_B=50780782 +mem_heap_extra_B=5920474 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=41 +#----------- +time=133761377883 +mem_heap_B=51241071 +mem_heap_extra_B=5923017 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=42 +#----------- +time=138172292239 +mem_heap_B=51866397 +mem_heap_extra_B=5925635 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=43 +#----------- +time=142582875731 +mem_heap_B=52110136 +mem_heap_extra_B=5909808 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=44 +#----------- +time=145890616917 +mem_heap_B=52858412 +mem_heap_extra_B=5925644 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=45 +#----------- +time=149198558543 +mem_heap_B=48964304 +mem_heap_extra_B=5901512 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=46 +#----------- +time=153609167364 +mem_heap_B=49789493 +mem_heap_extra_B=5914979 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=47 +#----------- +time=158019517486 +mem_heap_B=50384926 +mem_heap_extra_B=5918082 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=48 +#----------- +time=161327420608 +mem_heap_B=50210727 +mem_heap_extra_B=5889473 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=49 +#----------- +time=165737793551 +mem_heap_B=51355044 +mem_heap_extra_B=5919132 +mem_stacks_B=0 +heap_tree=detailed +n6: 51355044 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n5: 9490927 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2799441 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 2466093 0x4F2DDC1: rb_io_getline_0 (io.c:3211) + n1: 2466093 0x4F2EBE4: rb_io_gets_m (io.c:3527) + n2: 2466093 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2466093 0x5092F70: vm_exec_core (insns.def:765) + n1: 2466093 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2466093 0x509A58C: rb_yield (vm.c:1092) + n1: 2466093 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2466093 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2466093 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2466093 0x5093011: vm_exec_core (insns.def:750) + n1: 2466093 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2466093 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2466093 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2466093 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2466093 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 333348 in 15 places, all below massif's threshold (1.00%) + n2: 1998240 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1737216 0x501B8F5: rebuild_table (st.c:780) + n1: 889728 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 889728 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 103296 in 4 places, all below massif's threshold (1.00%) + n0: 847488 in 3 places, all below massif's threshold (1.00%) + n0: 261024 in 50 places, all below massif's threshold (1.00%) + n2: 1924568 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1921568 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1921568 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1912136 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1258376 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1162456 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1153736 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1153736 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1153736 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 952712 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n2: 830880 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 638728 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 638728 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 638728 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 638728 in 2 places, all below massif's threshold (1.00%) + n0: 192152 in 3 places, all below massif's threshold (1.00%) + n0: 121832 in 2 places, all below massif's threshold (1.00%) + n0: 201024 in 2 places, all below massif's threshold (1.00%) + n0: 8720 in 4 places, all below massif's threshold (1.00%) + n0: 95920 in 8 places, all below massif's threshold (1.00%) + n0: 653760 in 10 places, all below massif's threshold (1.00%) + n0: 9432 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n0: 1720102 in 121 places, all below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4183628 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1654048 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1647536 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 968216 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 908424 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 900432 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 900432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 900432 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 735264 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 638176 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 638176 in 4 places, all below massif's threshold (1.00%) + n0: 97088 in 2 places, all below massif's threshold (1.00%) + n0: 165168 in 2 places, all below massif's threshold (1.00%) + n0: 7992 in 4 places, all below massif's threshold (1.00%) + n0: 59792 in 8 places, all below massif's threshold (1.00%) + n0: 679320 in 10 places, all below massif's threshold (1.00%) + n0: 6512 in 7 places, all below massif's threshold (1.00%) + n0: 1567236 in 25 places, all below massif's threshold (1.00%) + n2: 962344 0x4EB208C: iseq_setup (compile.c:2126) + n1: 962227 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 962227 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 957498 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 660220 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 622337 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 618776 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 618776 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 618776 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 618776 in 3 places, all below massif's threshold (1.00%) + n0: 3561 in 4 places, all below massif's threshold (1.00%) + n0: 37883 in 8 places, all below massif's threshold (1.00%) + n0: 297278 in 10 places, all below massif's threshold (1.00%) + n0: 4729 in 7 places, all below massif's threshold (1.00%) + n0: 117 in 1 place, below massif's threshold (1.00%) + n2: 2860200 0x4F0FC9B: heap_assign_page (gc.c:7913) + n2: 2222784 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 1242144 in 26 places, all below massif's threshold (1.00%) + n1: 980640 0x50240D3: str_new0 (string.c:723) + n0: 980640 in 5 places, all below massif's threshold (1.00%) + n0: 637416 in 5 places, all below massif's threshold (1.00%) + n1: 659390 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n0: 659390 in 14 places, all below massif's threshold (1.00%) + n0: 606467 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=50 +#----------- +time=167310374606 +mem_heap_B=51682252 +mem_heap_extra_B=5924380 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=51 +#----------- +time=168883070788 +mem_heap_B=51481308 +mem_heap_extra_B=5904844 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=52 +#----------- +time=170455596504 +mem_heap_B=52149109 +mem_heap_extra_B=5927363 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=53 +#----------- +time=172028256865 +mem_heap_B=52398951 +mem_heap_extra_B=5929321 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=54 +#----------- +time=173600807395 +mem_heap_B=52518031 +mem_heap_extra_B=5925417 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=55 +#----------- +time=175173244046 +mem_heap_B=52897500 +mem_heap_extra_B=5933004 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=56 +#----------- +time=176745861077 +mem_heap_B=53141270 +mem_heap_extra_B=5934530 +mem_stacks_B=0 +heap_tree=empty diff --git a/optimizations/step7/profile.callgrind.out.34321 b/optimizations/step7/profile.callgrind.out.34321 new file mode 100644 index 0000000..b6d9108 --- /dev/null +++ b/optimizations/step7/profile.callgrind.out.34321 @@ -0,0 +1,1002 @@ +events: memory + +fl=/Users/donasktello/ruby_runtime +fn=IO::closed? +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=IO::close +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/forwardable.rb +fn=CSV::close +224 0 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::close +calls=1 230 +230 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser/InputsScanner::eos? +76 1 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::eos? +calls=1 76 +76 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::parse_quoted_column_value +658 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::scan_all +calls=1 658 +658 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::shift +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::initialize_copy +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=StringScanner::string +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::last +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::clear +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=IO::write +0 8 + +fl=/Users/donasktello/ruby_runtime +fn=String::inspect +0 517 + +fl=/Users/donasktello/ruby_runtime +fn=Array::inspect +0 90 +cfl=/Users/donasktello/ruby_runtime +cfn=String::inspect +calls=4134 42 +42 517 + +fl=/Users/donasktello/ruby_runtime +fn=FalseClass::to_s +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::upcase! +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::join +0 59 + +fl=/Users/donasktello/ruby_runtime +fn=Array::sort! +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Integer::to_s +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::start_with? +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::to_i +0 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +fn=CSV/FieldsConverter::need_convert? +74 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +fn=CSV/FieldsConverter::convert +42 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +cfn=CSV/FieldsConverter::need_convert? +calls=1646 42 +42 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::emit_row +726 240 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +cfn=CSV/FieldsConverter::convert +calls=1646 740 +740 1 +cfl=/Users/donasktello/ruby_runtime +cfn=String::to_i +calls=3320 59 +59 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::start_with? +calls=1382 61 +61 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Integer::to_s +calls=789 39 +39 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sort! +calls=263 39 +39 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::join +calls=263 39 +39 59 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase! +calls=263 39 +39 0 +cfl=/Users/donasktello/ruby_runtime +cfn=FalseClass::to_s +calls=526 39 +39 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::inspect +calls=263 39 +39 607 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::write +calls=263 44 +44 8 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::clear +calls=789 49 +49 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::parse_row_end +704 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::scan +calls=1647 704 +704 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser/InputsScanner::scan +53 1 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::scan +calls=9613 53 +53 0 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::eos? +calls=7331 57 +57 0 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::scan +calls=1647 53 +53 0 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::eos? +calls=1514 57 +57 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::parse_column_end +690 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::scan +calls=9613 690 +690 1 + +fl=/Users/donasktello/ruby_runtime +fn=StringScanner::eos? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=StringScanner::scan +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser/InputsScanner::scan_all +65 1 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::scan +calls=9620 65 +65 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::nil? +calls=8846 68 +68 0 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::eos? +calls=8850 70 +70 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::read_chunk +calls=7 68 +68 62 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::scan +calls=1 65 +65 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::parse_unquoted_column_value +634 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::scan_all +calls=9613 634 +634 63 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::parse_column_value +605 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::parse_unquoted_column_value +calls=9613 628 +628 64 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::parse_quoted_column_value +calls=1 628 +628 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::push +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=StringScanner::pos +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser/InputsScanner::keep_start +80 4 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::pos +calls=1647 80 +80 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::push +calls=1647 80 +80 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::pop +0 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser/InputsScanner::keep_drop +109 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::pop +calls=1647 109 +109 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::start_row +717 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::keep_drop +calls=1647 720 +720 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::keep_start +calls=1647 722 +722 5 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::skip_needless_lines +578 0 + +fl=/Users/donasktello/ruby_runtime +fn=IO::eof? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=StringScanner::initialize +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::valid_encoding? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=IO::gets +0 73 + +fl=/Users/donasktello/ruby_runtime +fn=Array::first +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser/InputsScanner::read_chunk +118 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::first +calls=1 136 +136 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Module::=== +calls=1 137 +137 0 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::gets +calls=1 146 +146 17 +cfl=/Users/donasktello/ruby_runtime +cfn=String::valid_encoding? +calls=1 148 +148 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 149 +149 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::respond_to? +calls=1 150 +150 0 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::eof? +calls=1 150 +150 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::last +calls=7 121 +121 0 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::string +calls=7 123 +123 0 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::pos +calls=7 124 +124 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::[] +calls=7 124 +124 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::dup +calls=7 130 +130 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::first +calls=7 136 +136 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Module::=== +calls=7 137 +137 0 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::gets +calls=7 146 +146 56 +cfl=/Users/donasktello/ruby_runtime +cfn=String::valid_encoding? +calls=7 148 +148 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=7 149 +149 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::respond_to? +calls=7 150 +150 0 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::eof? +calls=7 150 +150 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::shift +calls=1 151 +151 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::initialize_copy +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::initialize_dup +0 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::initialize_copy +calls=1 44 +44 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::initialize_copy +calls=7 130 +130 0 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::dup +0 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::initialize_dup +calls=1 44 +44 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::initialize_dup +calls=7 130 +130 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser/InputsScanner::initialize +44 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::dup +calls=1 44 +44 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::read_chunk +calls=1 49 +49 20 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::build_scanner +555 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::is_a? +calls=1 556 +556 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::collect +calls=1 568 +568 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 572 +572 22 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::parse +231 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::block_given? +calls=1 231 +231 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::build_scanner +calls=1 245 +245 23 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::skip_needless_lines +calls=1647 265 +265 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::start_row +calls=1647 266 +266 6 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::parse_column_value +calls=9613 251 +251 66 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::parse_column_end +calls=9613 255 +255 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::parse_row_end +calls=1647 257 +257 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::emit_row +calls=1646 262 +262 918 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::eos? +calls=1 267 +267 1 +cfl=/Users/donasktello/ruby_runtime +cfn=NilClass::nil? +calls=1 268 +268 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::may_quoted? +517 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::is_a? +calls=1 517 +517 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::prepare_parser +513 2 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::may_quoted? +calls=1 513 +513 1 + +fl=/Users/donasktello/ruby_runtime +fn=FalseClass::=== +0 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::prepare_header +475 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Module::=== +calls=2 478 +478 0 +cfl=/Users/donasktello/ruby_runtime +cfn=NilClass::=== +calls=1 478 +478 0 +cfl=/Users/donasktello/ruby_runtime +cfn=FalseClass::=== +calls=1 478 +478 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::prepare_line +461 0 + +fl=/Users/donasktello/ruby_runtime +fn=Regexp::initialize +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=NilClass::=== +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Module::=== +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::[] +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Regexp::^escape +0 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::resolve_row_separator +399 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::to_s +calls=1 433 +433 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::encode +calls=1 433 +433 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::encode +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::to_s +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::prepare_regexp +332 1 +cfl=/Users/donasktello/ruby_runtime +cfn=String::to_s +calls=2 335 +335 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::encode +calls=10 395 +395 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::resolve_row_separator +calls=1 334 +334 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Regexp::^escape +calls=4 343 +343 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::[] +calls=1 341 +341 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Module::=== +calls=2 346 +346 0 +cfl=/Users/donasktello/ruby_runtime +cfn=NilClass::=== +calls=1 346 +346 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=7 395 +395 2 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::prepare_variable +311 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::prepare +303 2 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::prepare_variable +calls=1 303 +303 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::prepare_regexp +calls=1 304 +304 6 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::prepare_line +calls=1 305 +305 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::prepare_header +calls=1 306 +306 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::prepare_parser +calls=1 307 +307 3 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +fn=CSV/Parser::initialize +170 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::prepare +calls=1 175 +175 15 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::build_header_fields_converter +1341 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::merge +calls=1 1344 +1344 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 1345 +1345 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::normalize_converters +calls=1 1346 +1346 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::each +calls=1 1346 +1346 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::header_fields_converter +1336 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::build_header_fields_converter +calls=1 1336 +1336 3 + +fl=/Users/donasktello/ruby_runtime +fn=Array::each +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::collect +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::normalize_converters +1277 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::is_a? +calls=1 1278 +1278 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::collect +calls=1 1281 +1281 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::is_a? +calls=1 1278 +1278 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::collect +calls=1 1281 +1281 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +fn=CSV/FieldsConverter::need_static_convert? +70 1 +cfl=/Users/donasktello/ruby_runtime +cfn=NilClass::nil? +calls=1 70 +70 0 +cfl=/Users/donasktello/ruby_runtime +cfn=NilClass::nil? +calls=1 70 +70 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +fn=CSV/FieldsConverter::initialize +8 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +cfn=CSV/FieldsConverter::need_static_convert? +calls=1 14 +14 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +cfn=CSV/FieldsConverter::need_static_convert? +calls=1 14 +14 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::build_fields_converter +1325 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::merge +calls=1 1327 +1327 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 1328 +1328 2 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::normalize_converters +calls=1 1329 +1329 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::each +calls=1 1329 +1329 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::fields_converter +1320 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::build_fields_converter +calls=1 1320 +1320 4 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::parser_options +1357 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::fields_converter +calls=1 1357 +1357 4 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::header_fields_converter +calls=1 1357 +1357 3 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::merge +calls=1 1357 +1357 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::parser +1353 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::parser_options +calls=1 1353 +1353 9 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 1353 +1353 15 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::each +1176 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::parser +calls=1 1176 +1176 24 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::parse +calls=1 1176 +1176 1018 + +fl=/Users/donasktello/ruby_runtime +fn=NilClass::nil? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=IO::external_encoding +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=IO::internal_encoding +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::respond_to? +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::raw_encoding +1310 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::respond_to? +calls=1 1310 +1310 0 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::internal_encoding +calls=1 1311 +1311 1 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::external_encoding +calls=1 1311 +1311 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::determine_encoding +1263 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::raw_encoding +calls=1 1263 +1263 3 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::is_a? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::nil? +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::initialize +915 2 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::nil? +calls=1 915 +915 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::is_a? +calls=1 918 +918 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::determine_encoding +calls=1 919 +919 3 +cfl=/Users/donasktello/ruby_runtime +cfn=NilClass::nil? +calls=1 947 +947 0 + +fl=/Users/donasktello/ruby_runtime +fn=Class::new +0 2 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::initialize +calls=1 648 +648 7 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +cfn=CSV/FieldsConverter::initialize +calls=1 1328 +1328 2 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/fields_converter.rb +cfn=CSV/FieldsConverter::initialize +calls=1 1345 +1345 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser::initialize +calls=1 1353 +1353 15 +cfl=/Users/donasktello/ruby_runtime +cfn=Regexp::initialize +calls=7 395 +395 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv/parser.rb +cfn=CSV/Parser/InputsScanner::initialize +calls=1 572 +572 22 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::initialize +calls=1 149 +149 0 +cfl=/Users/donasktello/ruby_runtime +cfn=StringScanner::initialize +calls=7 149 +149 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::merge +0 2 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::^open +637 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::merge +calls=1 637 +637 1 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^open +calls=1 640 +640 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 648 +648 7 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::block_given? +calls=1 655 +655 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::each +calls=1 510 +510 1043 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/forwardable.rb +cfn=CSV::close +calls=1 659 +659 1 + +fl=/Users/donasktello/ruby_runtime +fn=Kernel::block_given? +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +fn=CSV::^foreach +508 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Kernel::block_given? +calls=1 508 +508 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::^open +calls=1 509 +509 1053 + +fl=/Users/donasktello/ruby_runtime +fn=File::initialize +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=IO::^open +0 1 +cfl=/Users/donasktello/ruby_runtime +cfn=File::initialize +calls=1 33 +33 1 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/csv.rb +cfn=CSV::^foreach +calls=1 34 +34 1054 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::closed? +calls=1 34 +34 0 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::close +calls=1 34 +34 0 +cfl=/Users/donasktello/ruby_runtime +cfn=File::initialize +calls=1 640 +640 0 + +fl=/Users/donasktello/ruby_runtime +fn=IO::^write +0 9 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::work +21 1 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^write +calls=1 21 +21 9 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^open +calls=1 33 +33 1056 + +fl=/Users/donasktello/Projects/task-1/optimizations/rubyprof_patched.rb +fn=[global]::[no method] +7 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::work +calls=1 7 +7 1065 + diff --git a/optimizations/step7/rubyprof_alloc.txt b/optimizations/step7/rubyprof_alloc.txt new file mode 100644 index 0000000..f2b2aef --- /dev/null +++ b/optimizations/step7/rubyprof_alloc.txt @@ -0,0 +1,107 @@ +Measure Mode: allocations +Thread ID: 70279334387720 +Fiber ID: 70279335375600 +Total: 35078.000000 +Sort by: self_time + + %self total self wait child calls name + 54.81 19228.000 19228.000 0.000 0.000 20881 StringScanner#scan + 16.88 12423.000 5921.000 0.000 6502.000 1646 CSV::Parser#emit_row + 11.79 4134.000 4134.000 0.000 0.000 4134 String#inspect + 4.70 34990.000 1647.000 0.000 33343.000 1 CSV::Parser#parse + 4.70 1647.000 1647.000 0.000 0.000 1647 CSV::Parser::InputsScanner#keep_start + 2.25 789.000 789.000 0.000 0.000 789 Integer#to_s + 1.50 526.000 526.000 0.000 0.000 526 FalseClass#to_s + 0.75 264.000 264.000 0.000 0.000 263 IO#write + 0.75 263.000 263.000 0.000 0.000 263 Array#join + 0.75 263.000 263.000 0.000 0.000 263 Array#sort! + 0.75 4397.000 263.000 0.000 4134.000 263 Array#inspect + 0.05 16.000 16.000 0.000 0.000 8 IO#gets + 0.04 65.000 13.000 0.000 52.000 20 *Class#new + 0.03 12.000 12.000 0.000 0.000 7 Regexp#initialize + 0.03 11.000 11.000 0.000 0.000 8 String#[] + 0.03 11.000 11.000 0.000 0.000 11 String#encode + 0.02 8.000 8.000 0.000 0.000 8 Kernel#dup + 0.02 41.000 6.000 0.000 35.000 1 CSV::Parser#prepare_regexp + 0.02 35067.000 6.000 0.000 35061.000 2 *#open + 0.01 5.000 5.000 0.000 0.000 1 #write + 0.01 35077.000 5.000 0.000 35072.000 1 Object#work + 0.01 4.000 4.000 0.000 0.000 4 Hash#merge + 0.01 4.000 4.000 0.000 0.000 4 #escape + 0.01 3.000 3.000 0.000 0.000 3 Array#collect + 0.01 3.000 3.000 0.000 0.000 1 CSV#initialize + 0.01 3.000 3.000 0.000 0.000 2 File#initialize + 0.01 35060.000 2.000 0.000 35058.000 1 #foreach + 0.01 2.000 2.000 0.000 0.000 2 CSV::FieldsConverter#initialize + 0.01 4.000 2.000 0.000 2.000 2 CSV#normalize_converters + 0.01 35058.000 2.000 0.000 35056.000 1 #open + 0.00 35078.000 1.000 0.000 35077.000 1 [global]#[no method] + 0.00 5.000 1.000 0.000 4.000 1 CSV::Parser::InputsScanner#initialize + 0.00 6.000 1.000 0.000 5.000 1 CSV#build_header_fields_converter + 0.00 42.000 1.000 0.000 41.000 1 CSV::Parser#initialize + 0.00 6.000 1.000 0.000 5.000 1 CSV#build_fields_converter + 0.00 14.000 1.000 0.000 13.000 1 CSV#parser_options + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare_parser + 0.00 0.000 0.000 0.000 0.000 1 FalseClass#=== + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare_header + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare_line + 0.00 0.000 0.000 0.000 0.000 2 NilClass#=== + 0.00 0.000 0.000 0.000 0.000 12 Module#=== + 0.00 1.000 0.000 0.000 1.000 1 CSV::Parser#resolve_row_separator + 0.00 0.000 0.000 0.000 0.000 3 String#to_s + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare_variable + 0.00 41.000 0.000 0.000 41.000 1 CSV::Parser#prepare + 0.00 6.000 0.000 0.000 6.000 1 CSV#header_fields_converter + 0.00 0.000 0.000 0.000 0.000 2 Array#each + 0.00 0.000 0.000 0.000 0.000 2 CSV::FieldsConverter#need_static_convert? + 0.00 6.000 0.000 0.000 6.000 1 CSV#fields_converter + 0.00 57.000 0.000 0.000 57.000 1 CSV#parser + 0.00 35047.000 0.000 0.000 35047.000 1 CSV#each + 0.00 0.000 0.000 0.000 0.000 4 NilClass#nil? + 0.00 0.000 0.000 0.000 0.000 1 IO#external_encoding + 0.00 0.000 0.000 0.000 0.000 1 IO#internal_encoding + 0.00 0.000 0.000 0.000 0.000 9 Kernel#respond_to? + 0.00 0.000 0.000 0.000 0.000 1 CSV#raw_encoding + 0.00 0.000 0.000 0.000 0.000 1 CSV#determine_encoding + 0.00 0.000 0.000 0.000 0.000 5 Kernel#is_a? + 0.00 0.000 0.000 0.000 0.000 8847 Kernel#nil? + 0.00 0.000 0.000 0.000 0.000 3 Kernel#block_given? + 0.00 0.000 0.000 0.000 0.000 1 IO#closed? + 0.00 0.000 0.000 0.000 0.000 2 IO#close + 0.00 0.000 0.000 0.000 0.000 1 CSV#close + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser::InputsScanner#eos? + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#parse_quoted_column_value + 0.00 0.000 0.000 0.000 0.000 1 Array#shift + 0.00 0.000 0.000 0.000 0.000 7 String#initialize_copy + 0.00 0.000 0.000 0.000 0.000 7 StringScanner#string + 0.00 0.000 0.000 0.000 0.000 7 Array#last + 0.00 0.000 0.000 0.000 0.000 789 Array#clear + 0.00 0.000 0.000 0.000 0.000 263 String#upcase! + 0.00 0.000 0.000 0.000 0.000 1382 String#start_with? + 0.00 0.000 0.000 0.000 0.000 3320 String#to_i + 0.00 0.000 0.000 0.000 0.000 1646 CSV::FieldsConverter#need_convert? + 0.00 0.000 0.000 0.000 0.000 1646 CSV::FieldsConverter#convert + 0.00 1646.000 0.000 0.000 1646.000 1647 CSV::Parser#parse_row_end + 0.00 7966.000 0.000 0.000 7966.000 9613 CSV::Parser#parse_column_end + 0.00 0.000 0.000 0.000 0.000 17696 StringScanner#eos? + 0.00 9654.000 0.000 0.000 9654.000 9614 CSV::Parser::InputsScanner#scan_all + 0.00 9654.000 0.000 0.000 9654.000 9613 CSV::Parser#parse_unquoted_column_value + 0.00 9654.000 0.000 0.000 9654.000 9613 CSV::Parser#parse_column_value + 0.00 0.000 0.000 0.000 0.000 1647 Array#push + 0.00 0.000 0.000 0.000 0.000 1654 StringScanner#pos + 0.00 0.000 0.000 0.000 0.000 1647 Array#pop + 0.00 0.000 0.000 0.000 0.000 1647 CSV::Parser::InputsScanner#keep_drop + 0.00 1647.000 0.000 0.000 1647.000 1647 CSV::Parser#start_row + 0.00 0.000 0.000 0.000 0.000 1647 CSV::Parser#skip_needless_lines + 0.00 0.000 0.000 0.000 0.000 8 IO#eof? + 0.00 0.000 0.000 0.000 0.000 8 StringScanner#initialize + 0.00 0.000 0.000 0.000 0.000 8 String#valid_encoding? + 0.00 0.000 0.000 0.000 0.000 8 Array#first + 0.00 41.000 0.000 0.000 41.000 8 CSV::Parser::InputsScanner#read_chunk + 0.00 0.000 0.000 0.000 0.000 1 Array#initialize_copy + 0.00 0.000 0.000 0.000 0.000 8 Kernel#initialize_dup + 0.00 7.000 0.000 0.000 7.000 1 CSV::Parser#build_scanner + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#may_quoted? + 0.00 9612.000 0.000 0.000 9612.000 11260 CSV::Parser::InputsScanner#scan + +* indicates recursively called methods diff --git a/optimizations/step7/rubyprof_wall.txt b/optimizations/step7/rubyprof_wall.txt new file mode 100644 index 0000000..f48c548 --- /dev/null +++ b/optimizations/step7/rubyprof_wall.txt @@ -0,0 +1,107 @@ +Measure Mode: wall_time +Thread ID: 70279334387720 +Fiber ID: 70279335375600 +Total: 0.067638 +Sort by: self_time + + %self total self wait child calls name + 16.20 0.066 0.011 0.000 0.055 1 CSV::Parser#parse + 11.08 0.011 0.007 0.000 0.004 11260 CSV::Parser::InputsScanner#scan + 10.11 0.012 0.007 0.000 0.005 9614 CSV::Parser::InputsScanner#scan_all + 9.79 0.019 0.007 0.000 0.012 9613 CSV::Parser#parse_unquoted_column_value + 7.71 0.005 0.005 0.000 0.000 20881 StringScanner#scan + 7.57 0.012 0.005 0.000 0.006 1646 CSV::Parser#emit_row + 7.51 0.024 0.005 0.000 0.019 9613 CSV::Parser#parse_column_value + 5.90 0.013 0.004 0.000 0.009 9613 CSV::Parser#parse_column_end + 3.39 0.002 0.002 0.000 0.000 17696 StringScanner#eos? + 2.66 0.002 0.002 0.000 0.000 4134 String#inspect + 1.99 0.001 0.001 0.000 0.000 1 #write + 1.72 0.003 0.001 0.000 0.002 1647 CSV::Parser#start_row + 1.52 0.001 0.001 0.000 0.000 8847 Kernel#nil? + 1.31 0.003 0.001 0.000 0.002 263 Array#inspect + 1.04 0.001 0.001 0.000 0.000 1647 CSV::Parser::InputsScanner#keep_start + 0.94 0.002 0.001 0.000 0.002 1647 CSV::Parser#parse_row_end + 0.90 0.001 0.001 0.000 0.001 1646 CSV::FieldsConverter#convert + 0.87 0.001 0.001 0.000 0.000 1646 CSV::FieldsConverter#need_convert? + 0.81 0.001 0.001 0.000 0.000 3320 String#to_i + 0.70 0.001 0.000 0.000 0.000 1647 CSV::Parser::InputsScanner#keep_drop + 0.66 0.000 0.000 0.000 0.000 263 Array#join + 0.61 0.000 0.000 0.000 0.000 263 IO#write + 0.60 0.000 0.000 0.000 0.000 1647 CSV::Parser#skip_needless_lines + 0.60 0.000 0.000 0.000 0.000 263 Array#sort! + 0.50 0.000 0.000 0.000 0.000 8 IO#gets + 0.47 0.000 0.000 0.000 0.000 8 IO#eof? + 0.46 0.000 0.000 0.000 0.000 1382 String#start_with? + 0.33 0.000 0.000 0.000 0.000 1647 Array#pop + 0.33 0.000 0.000 0.000 0.000 1654 StringScanner#pos + 0.31 0.000 0.000 0.000 0.000 1647 Array#push + 0.24 0.000 0.000 0.000 0.000 789 Integer#to_s + 0.18 0.000 0.000 0.000 0.000 789 Array#clear + 0.16 0.000 0.000 0.000 0.000 263 String#upcase! + 0.15 0.000 0.000 0.000 0.000 2 IO#close + 0.15 0.000 0.000 0.000 0.000 526 FalseClass#to_s + 0.08 0.001 0.000 0.000 0.001 8 CSV::Parser::InputsScanner#read_chunk + 0.06 0.000 0.000 0.000 0.000 2 File#initialize + 0.03 0.068 0.000 0.000 0.068 1 [global]#[no method] + 0.03 0.001 0.000 0.000 0.001 20 *Class#new + 0.03 0.000 0.000 0.000 0.000 7 Regexp#initialize + 0.02 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare_regexp + 0.02 0.000 0.000 0.000 0.000 1 CSV#initialize + 0.01 0.000 0.000 0.000 0.000 8 String#valid_encoding? + 0.01 0.066 0.000 0.000 0.066 2 *#open + 0.01 0.000 0.000 0.000 0.000 8 Kernel#dup + 0.01 0.066 0.000 0.000 0.066 1 #open + 0.01 0.068 0.000 0.000 0.068 1 Object#work + 0.01 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare + 0.01 0.000 0.000 0.000 0.000 8 String#[] + 0.01 0.000 0.000 0.000 0.000 9 Kernel#respond_to? + 0.01 0.000 0.000 0.000 0.000 12 Module#=== + 0.01 0.000 0.000 0.000 0.000 2 CSV::FieldsConverter#initialize + 0.01 0.000 0.000 0.000 0.000 11 String#encode + 0.01 0.000 0.000 0.000 0.000 2 CSV#normalize_converters + 0.01 0.000 0.000 0.000 0.000 8 StringScanner#initialize + 0.01 0.000 0.000 0.000 0.000 1 CSV#raw_encoding + 0.01 0.000 0.000 0.000 0.000 1 CSV#parser_options + 0.01 0.000 0.000 0.000 0.000 7 StringScanner#string + 0.01 0.000 0.000 0.000 0.000 4 NilClass#nil? + 0.01 0.000 0.000 0.000 0.000 4 Hash#merge + 0.01 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare_header + 0.01 0.000 0.000 0.000 0.000 7 String#initialize_copy + 0.01 0.000 0.000 0.000 0.000 8 Kernel#initialize_dup + 0.00 0.000 0.000 0.000 0.000 8 Array#first + 0.00 0.066 0.000 0.000 0.066 1 CSV#each + 0.00 0.066 0.000 0.000 0.066 1 #foreach + 0.00 0.000 0.000 0.000 0.000 1 CSV#close + 0.00 0.000 0.000 0.000 0.000 1 CSV#build_fields_converter + 0.00 0.000 0.000 0.000 0.000 5 Kernel#is_a? + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare_variable + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare_parser + 0.00 0.000 0.000 0.000 0.000 3 String#to_s + 0.00 0.001 0.000 0.000 0.001 1 CSV::Parser::InputsScanner#initialize + 0.00 0.000 0.000 0.000 0.000 3 Array#collect + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#resolve_row_separator + 0.00 0.000 0.000 0.000 0.000 7 Array#last + 0.00 0.000 0.000 0.000 0.000 1 CSV#determine_encoding + 0.00 0.000 0.000 0.000 0.000 2 Array#each + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#parse_quoted_column_value + 0.00 0.000 0.000 0.000 0.000 1 CSV#parser + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser::InputsScanner#eos? + 0.00 0.000 0.000 0.000 0.000 1 CSV#build_header_fields_converter + 0.00 0.001 0.000 0.000 0.001 1 CSV::Parser#build_scanner + 0.00 0.000 0.000 0.000 0.000 1 Array#shift + 0.00 0.000 0.000 0.000 0.000 3 Kernel#block_given? + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#initialize + 0.00 0.000 0.000 0.000 0.000 1 IO#closed? + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#may_quoted? + 0.00 0.000 0.000 0.000 0.000 1 CSV::Parser#prepare_line + 0.00 0.000 0.000 0.000 0.000 1 CSV#fields_converter + 0.00 0.000 0.000 0.000 0.000 2 CSV::FieldsConverter#need_static_convert? + 0.00 0.000 0.000 0.000 0.000 1 CSV#header_fields_converter + 0.00 0.000 0.000 0.000 0.000 1 Array#initialize_copy + 0.00 0.000 0.000 0.000 0.000 1 IO#internal_encoding + 0.00 0.000 0.000 0.000 0.000 2 NilClass#=== + 0.00 0.000 0.000 0.000 0.000 1 IO#external_encoding + 0.00 0.000 0.000 0.000 0.000 4 #escape + 0.00 0.000 0.000 0.000 0.000 1 FalseClass#=== + +* indicates recursively called methods diff --git a/optimizations/step7/stackprof_object.txt b/optimizations/step7/stackprof_object.txt new file mode 100644 index 0000000..6996b32 --- /dev/null +++ b/optimizations/step7/stackprof_object.txt @@ -0,0 +1,95 @@ +================================== + Mode: object(1) + Samples: 35073 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 35072 (100.0%) 12440 (35.5%) Object#work + 9654 (27.5%) 9616 (27.4%) CSV::Parser::InputsScanner#scan_all + 9612 (27.4%) 9612 (27.4%) CSV::Parser::InputsScanner#scan + 1647 (4.7%) 1647 (4.7%) CSV::Parser::InputsScanner#keep_start + 34990 (99.8%) 1647 (4.7%) CSV::Parser#parse + 41 (0.1%) 41 (0.1%) CSV::Parser::InputsScanner#read_chunk + 36 (0.1%) 35 (0.1%) CSV::Parser#prepare_regexp + 35053 (99.9%) 8 (0.0%) CSV.open + 4 (0.0%) 4 (0.0%) CSV#normalize_converters + 3 (0.0%) 3 (0.0%) CSV#initialize + 6 (0.0%) 3 (0.0%) CSV#build_fields_converter + 6 (0.0%) 3 (0.0%) CSV#build_header_fields_converter + 5 (0.0%) 2 (0.0%) CSV::Parser::InputsScanner#initialize + 14 (0.0%) 2 (0.0%) CSV#parser_options + 7 (0.0%) 2 (0.0%) CSV::Parser#build_scanner + 35055 (99.9%) 2 (0.0%) CSV.foreach + 2 (0.0%) 2 (0.0%) CSV::FieldsConverter#initialize + 52 (0.1%) 1 (0.0%) CSV#parser + 35073 (100.0%) 1 (0.0%) block (2 levels) in
+ 1 (0.0%) 1 (0.0%) CSV::Parser#resolve_row_separator + 37 (0.1%) 1 (0.0%) CSV::Parser#initialize + 12423 (35.4%) 0 (0.0%) CSV::Parser#emit_row + 35073 (100.0%) 0 (0.0%) block in
+ 35073 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 35073 (100.0%) 0 (0.0%)
+ 35073 (100.0%) 0 (0.0%)
+ 6 (0.0%) 0 (0.0%) CSV#fields_converter + 35042 (99.9%) 0 (0.0%) CSV#each + 6 (0.0%) 0 (0.0%) CSV#header_fields_converter + 36 (0.1%) 0 (0.0%) CSV::Parser#prepare + 1647 (4.7%) 0 (0.0%) CSV::Parser#start_row + 9654 (27.5%) 0 (0.0%) CSV::Parser#parse_unquoted_column_value + 9654 (27.5%) 0 (0.0%) CSV::Parser#parse_column_value + 7966 (22.7%) 0 (0.0%) CSV::Parser#parse_column_end + 1646 (4.7%) 0 (0.0%) CSV::Parser#parse_row_end +Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:19) + samples: 12440 self (35.5%) / 35072 total (100.0%) + callers: + 35072 ( 100.0%) block (2 levels) in
+ 35060 ( 100.0%) Object#work + 12423 ( 35.4%) CSV::Parser#emit_row + callees (22632 total): + 35060 ( 154.9%) Object#work + 35055 ( 154.9%) CSV.foreach + code: + | 19 | def work(filename) + | 20 | # report = {} + 5 (0.0%) / 5 (0.0%) | 21 | File.write( + 1 (0.0%) / 1 (0.0%) | 22 | "#{$support_dir}/result.json", + 1 (0.0%) / 1 (0.0%) | 23 | "{\"totalUsers\":%{totalUsers},"\ + | 24 | "\"uniqueBrowsersCount\":%{uniqueBrowsersCount},"\ + | 25 | "\"totalSessions\":%{totalSessions},"\ + | 26 | "\"allBrowsers\":\"%{allBrowsers},"\ + | 27 | "\"usersStats\":{" + | 28 | ) + | 29 | + | 30 | longest_session = total_time = sessions_count = 0 + 1 (0.0%) / 1 (0.0%) | 31 | uniqueBrowsers = dates = browsers = [] + | 32 | always_chrome = used_ie = false + 35064 (100.0%) / 4 (0.0%) | 33 | File.open("#{$support_dir}/result.json", 'a') do |f| + 35057 (100.0%) / 2 (0.0%) | 34 | CSV.foreach("#{$support_dir}/#{filename}", row_sep: "\n") do |row| + 1646 (4.7%) / 1646 (4.7%) | 35 | if row[0] == 'user' + | 36 | # report[:totalUsers] += 1 + | 37 | + | 38 | if sessions_count > 0 + 789 (2.2%) / 789 (2.2%) | 39 | user = "\"#{row[2]} #{row[3]}\":{" << SESSIONS << sessions_count.to_s << "\"," << + 1052 (3.0%) / 1052 (3.0%) | 40 | TOTAL_TIME << total_time.to_s << " min.\"," << LONGEST_SESSION << longest_session.to_s << " min.\"," << + 2367 (6.7%) / 2367 (6.7%) | 41 | BROWSERS << browsers.sort!.join(', ').upcase! << "\"," << USED_IE << "#{used_ie}" << "\"," << ALWAYS_CHROME << "#{always_chrome}" << + 4923 (14.0%) / 4923 (14.0%) | 42 | "\"," << DATES << dates.to_s << '},' + | 43 | + 264 (0.8%) / 264 (0.8%) | 44 | f.write(user) + | 45 | + | 46 | longest_session = total_time = sessions_count = 0 + | 47 | uniqueBrowsers.clear + | 48 | dates.clear + | 49 | browsers.clear + | 50 | always_chrome = used_ie = false + | 51 | end + | 52 | else + | 53 | # report['allBrowsers'] << row[3] << EMPTY_COMMA + | 54 | # report['totalSessions'] += 1 + | 55 | uniqueBrowsers << row[3] + | 56 | + | 57 | sessions_count += 1 + | 58 | total_time += row[4].to_i + | 59 | longest_session = row[4].to_i if longest_session < row[4].to_i + | 60 | browsers << row[3] + 1382 (3.9%) / 1382 (3.9%) | 61 | used_ie = true if used_ie || row[3].start_with?('INTERNET') + | 62 | always_chrome = false if used_ie || !always_chrome || !row[3].start_with?('CHROME') diff --git a/optimizations/step7/stackprof_wall.txt b/optimizations/step7/stackprof_wall.txt new file mode 100644 index 0000000..cb000de --- /dev/null +++ b/optimizations/step7/stackprof_wall.txt @@ -0,0 +1,60 @@ +================================== + Mode: wall(1000) + Samples: 13 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 13 (100.0%) 6 (46.2%) Object#work + 5 (38.5%) 5 (38.5%) CSV::Parser::InputsScanner#scan_all + 2 (15.4%) 2 (15.4%) CSV::Parser::InputsScanner#scan + 13 (100.0%) 0 (0.0%) CSV#each + 13 (100.0%) 0 (0.0%) CSV.foreach + 13 (100.0%) 0 (0.0%) CSV.open + 13 (100.0%) 0 (0.0%) block (2 levels) in
+ 13 (100.0%) 0 (0.0%) block in
+ 13 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 13 (100.0%) 0 (0.0%)
+ 13 (100.0%) 0 (0.0%)
+ 1 (7.7%) 0 (0.0%) CSV::Parser#parse_column_end + 5 (38.5%) 0 (0.0%) CSV::Parser#parse_unquoted_column_value + 5 (38.5%) 0 (0.0%) CSV::Parser#parse_column_value + 1 (7.7%) 0 (0.0%) CSV::Parser#parse_row_end + 6 (46.2%) 0 (0.0%) CSV::Parser#emit_row + 13 (100.0%) 0 (0.0%) CSV::Parser#parse +Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:19) + samples: 6 self (46.2%) / 13 total (100.0%) + callers: + 13 ( 100.0%) block (2 levels) in
+ 13 ( 100.0%) Object#work + 6 ( 46.2%) CSV::Parser#emit_row + callees (7 total): + 13 ( 185.7%) CSV.foreach + 13 ( 185.7%) Object#work + code: + | 19 | def work(filename) + | 20 | # report = {} + | 21 | File.write( + | 22 | "#{$support_dir}/result.json", + | 23 | "{\"totalUsers\":%{totalUsers},"\ + | 24 | "\"uniqueBrowsersCount\":%{uniqueBrowsersCount},"\ + | 25 | "\"totalSessions\":%{totalSessions},"\ + | 26 | "\"allBrowsers\":\"%{allBrowsers},"\ + | 27 | "\"usersStats\":{" + | 28 | ) + | 29 | + | 30 | longest_session = total_time = sessions_count = 0 + | 31 | uniqueBrowsers = dates = browsers = [] + | 32 | always_chrome = used_ie = false + 13 (100.0%) | 33 | File.open("#{$support_dir}/result.json", 'a') do |f| + 13 (100.0%) | 34 | CSV.foreach("#{$support_dir}/#{filename}", row_sep: "\n") do |row| + 1 (7.7%) / 1 (7.7%) | 35 | if row[0] == 'user' + | 36 | # report[:totalUsers] += 1 + | 37 | + | 38 | if sessions_count > 0 + | 39 | user = "\"#{row[2]} #{row[3]}\":{" << SESSIONS << sessions_count.to_s << "\"," << + | 40 | TOTAL_TIME << total_time.to_s << " min.\"," << LONGEST_SESSION << longest_session.to_s << " min.\"," << + | 41 | BROWSERS << browsers.sort!.join(', ').upcase! << "\"," << USED_IE << "#{used_ie}" << "\"," << ALWAYS_CHROME << "#{always_chrome}" << + 4 (30.8%) / 4 (30.8%) | 42 | "\"," << DATES << dates.to_s << '},' + | 43 | + 1 (7.7%) / 1 (7.7%) | 44 | f.write(user) + | 45 | diff --git a/optimizations/step8/massif.out.13262 b/optimizations/step8/massif.out.13262 new file mode 100644 index 0000000..4fb6de6 --- /dev/null +++ b/optimizations/step8/massif.out.13262 @@ -0,0 +1,4834 @@ +desc: (none) +cmd: /home/donasktello/.rvm/rubies/ruby-2.6.1/bin/ruby valgrind_massif.rb +time_unit: i +#----------- +snapshot=0 +#----------- +time=0 +mem_heap_B=0 +mem_heap_extra_B=0 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=1 +#----------- +time=1407278256 +mem_heap_B=49929932 +mem_heap_extra_B=6153692 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=2 +#----------- +time=2160323373 +mem_heap_B=51928650 +mem_heap_extra_B=6809382 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=3 +#----------- +time=3276812240 +mem_heap_B=54647547 +mem_heap_extra_B=8157501 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=4 +#----------- +time=4258506087 +mem_heap_B=58279244 +mem_heap_extra_B=8491452 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=5 +#----------- +time=5641979445 +mem_heap_B=63271030 +mem_heap_extra_B=8933250 +mem_stacks_B=0 +heap_tree=detailed +n7: 63271030 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n3: 13532832 0x4F0FC9B: heap_assign_page (gc.c:7913) + n4: 11784024 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n3: 7926840 0x50240D3: str_new0 (string.c:723) + n2: 6030936 0x503420C: rb_str_subseq (string.c:2457) + n2: 5818464 0x50344DC: split_string.part.34 (string.c:7680) + n1: 5033952 0x503500A: rb_str_split_m (string.c:7893) + n1: 5033952 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5033952 0x5092F70: vm_exec_core (insns.def:765) + n1: 5033952 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5033952 0x509A58C: rb_yield (vm.c:1092) + n1: 5033952 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5033952 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5033952 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5033952 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5033952 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5033952 0x5093011: vm_exec_core (insns.def:750) + n1: 5033952 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5033952 0x509A58C: rb_yield (vm.c:1092) + n1: 5033952 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5033952 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5033952 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5033952 0x5093011: vm_exec_core (insns.def:750) + n1: 5033952 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5033952 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5033952 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5033952 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5033952 0x108969: main (main.c:42) + n1: 784512 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 784512 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 784512 0x5092F70: vm_exec_core (insns.def:765) + n1: 784512 0x509998D: rb_vm_exec (vm.c:1885) + n1: 784512 0x509A58C: rb_yield (vm.c:1092) + n1: 784512 0x4F2E908: io_s_foreach (io.c:10328) + n1: 784512 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 784512 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 784512 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 784512 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 784512 0x5093011: vm_exec_core (insns.def:750) + n1: 784512 0x509998D: rb_vm_exec (vm.c:1885) + n1: 784512 0x509A58C: rb_yield (vm.c:1092) + n1: 784512 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 784512 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 784512 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 784512 0x5093011: vm_exec_core (insns.def:750) + n1: 784512 0x509998D: rb_vm_exec (vm.c:1885) + n1: 784512 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 784512 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 784512 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 784512 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n1: 1078704 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n0: 1078704 in 2 places, all below massif's threshold (1.00%) + n0: 817200 in 4 places, all below massif's threshold (1.00%) + n0: 1863216 in 28 places, all below massif's threshold (1.00%) + n2: 1127736 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 1029672 0x50350C5: rb_str_split_m (string.c:7813) + n1: 1029672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1029672 0x5092F70: vm_exec_core (insns.def:765) + n1: 1029672 0x509998D: rb_vm_exec (vm.c:1885) + n2: 1029672 0x509A58C: rb_yield (vm.c:1092) + n1: 1013328 0x4F2E908: io_s_foreach (io.c:10328) + n1: 1013328 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1013328 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 1013328 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1013328 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1013328 0x5093011: vm_exec_core (insns.def:750) + n1: 1013328 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1013328 0x509A58C: rb_yield (vm.c:1092) + n1: 1013328 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1013328 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1013328 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1013328 0x5093011: vm_exec_core (insns.def:750) + n1: 1013328 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1013328 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 1013328 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 1013328 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 1013328 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 98064 in 3 places, all below massif's threshold (1.00%) + n2: 866232 0x502DC23: rb_str_resurrect (string.c:723) + n1: 849888 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 849888 0x5093B24: vm_exec_core (insns.def:385) + n1: 849888 0x509998D: rb_vm_exec (vm.c:1885) + n1: 849888 0x509A58C: rb_yield (vm.c:1092) + n1: 849888 0x4F2E908: io_s_foreach (io.c:10328) + n1: 849888 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 849888 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 849888 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 849888 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 849888 0x5093011: vm_exec_core (insns.def:750) + n1: 849888 0x509998D: rb_vm_exec (vm.c:1885) + n1: 849888 0x509A58C: rb_yield (vm.c:1092) + n1: 849888 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 849888 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 849888 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 849888 0x5093011: vm_exec_core (insns.def:750) + n1: 849888 0x509998D: rb_vm_exec (vm.c:1885) + n1: 849888 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 849888 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 849888 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 849888 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n2: 1062360 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n1: 849888 0x50240D3: str_new0 (string.c:723) + n0: 849888 in 3 places, all below massif's threshold (1.00%) + n0: 212472 in 5 places, all below massif's threshold (1.00%) + n0: 686448 in 4 places, all below massif's threshold (1.00%) + n4: 7522678 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 2568070 in 121 places, all below massif's threshold (1.00%) + n2: 1994592 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 1734912 0x501B8F5: rebuild_table (st.c:780) + n1: 889728 0x501C45F: st_add_direct_with_hash (st.c:1142) + n2: 889728 0x501D81E: st_update (st.c:1515) + n2: 786432 0x5023E03: register_fstring (string.c:344) + n1: 786432 0x4EA45C7: iseq_compile_each0 (compile.c:7192) + n1: 786432 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 786432 0x4EB37BF: rb_iseq_compile_node (compile.c:704) + n1: 786432 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 786432 0x508CAEB: eval_make_iseq (vm_eval.c:1284) + n1: 786432 0x509D2A2: eval_string_with_cref (vm_eval.c:1317) + n1: 786432 0x509DA61: rb_f_eval (vm_eval.c:1392) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x509A58C: rb_yield (vm.c:1092) + n1: 786432 0x4E66CBA: rb_ary_each (array.c:2086) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5093011: vm_exec_core (insns.def:750) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n1: 786432 0x4F4CD3F: rb_require_internal (load.c:1029) + n1: 786432 0x4F4CE47: rb_require_safe (load.c:1075) + n1: 786432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 786432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 786432 0x5092F70: vm_exec_core (insns.def:765) + n1: 786432 0x509998D: rb_vm_exec (vm.c:1885) + n0: 786432 0x4F493A5: rb_load_internal0 (load.c:612) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 103296 in 4 places, all below massif's threshold (1.00%) + n0: 845184 in 3 places, all below massif's threshold (1.00%) + n0: 259680 in 50 places, all below massif's threshold (1.00%) + n2: 1911440 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1908440 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1908440 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1897928 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1243464 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 1147544 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 1138720 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 1138720 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1138720 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 938168 0x4EA45E3: iseq_compile_each0 (compile.c:7192) + n1: 816336 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 816336 in 4 places, all below massif's threshold (1.00%) + n0: 121832 in 2 places, all below massif's threshold (1.00%) + n0: 200552 in 2 places, all below massif's threshold (1.00%) + n0: 8824 in 4 places, all below massif's threshold (1.00%) + n0: 95920 in 8 places, all below massif's threshold (1.00%) + n0: 654464 in 10 places, all below massif's threshold (1.00%) + n0: 10512 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n3: 4116143 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n2: 1626816 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n2: 1620008 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 951936 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n2: 892144 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n1: 884152 0x4EB3AA9: rb_iseq_compile_node (compile.c:671) + n1: 884152 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 884152 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 884152 in 3 places, all below massif's threshold (1.00%) + n0: 7992 in 4 places, all below massif's threshold (1.00%) + n0: 59792 in 8 places, all below massif's threshold (1.00%) + n0: 668072 in 10 places, all below massif's threshold (1.00%) + n0: 6808 in 7 places, all below massif's threshold (1.00%) + n0: 1536183 in 25 places, all below massif's threshold (1.00%) + n2: 953144 0x4EB208C: iseq_setup (compile.c:2126) + n1: 953027 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 953027 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 947698 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 947698 in 11 places, all below massif's threshold (1.00%) + n0: 5329 in 7 places, all below massif's threshold (1.00%) + n0: 117 in 1 place, below massif's threshold (1.00%) + n2: 2631768 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 2147440 0x4E68137: ary_resize_capa (array.c:335) + n2: 2147440 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 2142176 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 2142176 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 2138568 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 2138568 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2138568 0x5092F70: vm_exec_core (insns.def:765) + n1: 2138568 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2138568 0x509A58C: rb_yield (vm.c:1092) + n1: 2138568 0x4F2E908: io_s_foreach (io.c:10328) + n1: 2138568 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2138568 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2138568 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2138568 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2138568 0x5093011: vm_exec_core (insns.def:750) + n1: 2138568 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2138568 0x509A58C: rb_yield (vm.c:1092) + n1: 2138568 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2138568 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2138568 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2138568 0x5093011: vm_exec_core (insns.def:750) + n1: 2138568 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2138568 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2138568 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2138568 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2138568 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 484328 in 13 places, all below massif's threshold (1.00%) + n2: 1174344 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 1170336 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 1170336 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n1: 805608 0x50240D3: str_new0 (string.c:723) + n0: 805608 in 2 places, all below massif's threshold (1.00%) + n0: 364728 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 4008 in 4 places, all below massif's threshold (1.00%) + n0: 738833 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=6 +#----------- +time=6641284813 +mem_heap_B=69903436 +mem_heap_extra_B=10047708 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=7 +#----------- +time=7677184402 +mem_heap_B=70309371 +mem_heap_extra_B=9917637 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=8 +#----------- +time=8466159931 +mem_heap_B=70697622 +mem_heap_extra_B=9811410 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=9 +#----------- +time=9685909189 +mem_heap_B=79641799 +mem_heap_extra_B=11412681 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=10 +#----------- +time=11401023433 +mem_heap_B=79347228 +mem_heap_extra_B=11028308 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=11 +#----------- +time=13196664976 +mem_heap_B=92840987 +mem_heap_extra_B=18017397 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=12 +#----------- +time=14855428492 +mem_heap_B=94488149 +mem_heap_extra_B=17846211 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=13 +#----------- +time=16363242204 +mem_heap_B=96083186 +mem_heap_extra_B=18279214 +mem_stacks_B=0 +heap_tree=detailed +n7: 96083186 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n2: 35940456 0x4F0FC9B: heap_assign_page (gc.c:7913) + n5: 34126272 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 24189120 0x50240D3: str_new0 (string.c:723) + n2: 18828288 0x503420C: rb_str_subseq (string.c:2457) + n2: 18615816 0x50344DC: split_string.part.34 (string.c:7680) + n1: 15494112 0x503500A: rb_str_split_m (string.c:7893) + n1: 15494112 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 15494112 0x5092F70: vm_exec_core (insns.def:765) + n1: 15494112 0x509998D: rb_vm_exec (vm.c:1885) + n1: 15494112 0x509A58C: rb_yield (vm.c:1092) + n1: 15494112 0x4F2E908: io_s_foreach (io.c:10328) + n1: 15494112 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 15494112 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 15494112 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 15494112 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 15494112 0x5093011: vm_exec_core (insns.def:750) + n1: 15494112 0x509998D: rb_vm_exec (vm.c:1885) + n1: 15494112 0x509A58C: rb_yield (vm.c:1092) + n1: 15494112 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 15494112 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 15494112 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 15494112 0x5093011: vm_exec_core (insns.def:750) + n1: 15494112 0x509998D: rb_vm_exec (vm.c:1885) + n1: 15494112 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 15494112 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 15494112 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 15494112 0x108969: main (main.c:42) + n1: 3121704 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 3121704 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3121704 0x5092F70: vm_exec_core (insns.def:765) + n1: 3121704 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3121704 0x509A58C: rb_yield (vm.c:1092) + n1: 3121704 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3121704 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3121704 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3121704 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3121704 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3121704 0x5093011: vm_exec_core (insns.def:750) + n1: 3121704 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3121704 0x509A58C: rb_yield (vm.c:1092) + n1: 3121704 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3121704 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3121704 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3121704 0x5093011: vm_exec_core (insns.def:750) + n1: 3121704 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3121704 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3121704 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3121704 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3121704 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 3334176 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 2876544 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 2876544 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2876544 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2876544 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2876544 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2876544 0x5093011: vm_exec_core (insns.def:750) + n1: 2876544 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2876544 0x509A58C: rb_yield (vm.c:1092) + n1: 2876544 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2876544 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2876544 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2876544 0x5093011: vm_exec_core (insns.def:750) + n1: 2876544 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2876544 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2876544 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2876544 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2876544 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 1748808 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 1748808 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 1748808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1748808 0x5092F70: vm_exec_core (insns.def:765) + n1: 1748808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1748808 0x509A58C: rb_yield (vm.c:1092) + n1: 1748808 0x4F2E908: io_s_foreach (io.c:10328) + n1: 1748808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1748808 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 1748808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1748808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1748808 0x5093011: vm_exec_core (insns.def:750) + n1: 1748808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1748808 0x509A58C: rb_yield (vm.c:1092) + n1: 1748808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1748808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1748808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1748808 0x5093011: vm_exec_core (insns.def:750) + n1: 1748808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1748808 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 1748808 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 1748808 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 1748808 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 3203424 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 3007296 0x50350C5: rb_str_split_m (string.c:7813) + n1: 3007296 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3007296 0x5092F70: vm_exec_core (insns.def:765) + n1: 3007296 0x509998D: rb_vm_exec (vm.c:1885) + n2: 3007296 0x509A58C: rb_yield (vm.c:1092) + n1: 2990952 0x4F2E908: io_s_foreach (io.c:10328) + n1: 2990952 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2990952 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2990952 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2990952 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2990952 0x5093011: vm_exec_core (insns.def:750) + n1: 2990952 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2990952 0x509A58C: rb_yield (vm.c:1092) + n1: 2990952 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2990952 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2990952 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2990952 0x5093011: vm_exec_core (insns.def:750) + n1: 2990952 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2990952 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2990952 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2990952 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2990952 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 196128 in 3 places, all below massif's threshold (1.00%) + n2: 3023640 0x502DC23: rb_str_resurrect (string.c:723) + n1: 3007296 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 3007296 0x5093B24: vm_exec_core (insns.def:385) + n1: 3007296 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3007296 0x509A58C: rb_yield (vm.c:1092) + n1: 3007296 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3007296 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3007296 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3007296 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3007296 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3007296 0x5093011: vm_exec_core (insns.def:750) + n1: 3007296 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3007296 0x509A58C: rb_yield (vm.c:1092) + n1: 3007296 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3007296 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3007296 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3007296 0x5093011: vm_exec_core (insns.def:750) + n1: 3007296 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3007296 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3007296 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3007296 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3007296 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 2549664 in 27 places, all below massif's threshold (1.00%) + n1: 1160424 0x502BBDB: rb_str_buf_new (string.c:723) + n0: 1160424 in 4 places, all below massif's threshold (1.00%) + n0: 1814184 in 5 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n3: 8538217 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 4632185 in 122 places, all below massif's threshold (1.00%) + n2: 1994592 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 1734912 0x501B8F5: rebuild_table (st.c:780) + n0: 1734912 in 4 places, all below massif's threshold (1.00%) + n0: 259680 in 50 places, all below massif's threshold (1.00%) + n2: 1911440 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1908440 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1908440 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n2: 1897928 0x4E9BD6B: new_child_iseq (compile.c:1224) + n2: 1243464 0x4EA7083: iseq_compile_each0 (compile.c:7122) + n1: 1147544 0x4EA3A55: iseq_compile_each0 (compile.c:5935) + n0: 1147544 in 5 places, all below massif's threshold (1.00%) + n0: 95920 in 8 places, all below massif's threshold (1.00%) + n0: 654464 in 10 places, all below massif's threshold (1.00%) + n0: 10512 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n2: 7712281 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 7226648 0x4E68137: ary_resize_capa (array.c:335) + n2: 7226648 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 7221384 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 7221384 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 7217776 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 7217776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7217776 0x5092F70: vm_exec_core (insns.def:765) + n1: 7217776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7217776 0x509A58C: rb_yield (vm.c:1092) + n1: 7217776 0x4F2E908: io_s_foreach (io.c:10328) + n1: 7217776 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7217776 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 7217776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7217776 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7217776 0x5093011: vm_exec_core (insns.def:750) + n1: 7217776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7217776 0x509A58C: rb_yield (vm.c:1092) + n1: 7217776 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7217776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7217776 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7217776 0x5093011: vm_exec_core (insns.def:750) + n1: 7217776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7217776 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 7217776 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 7217776 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 7217776 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 485633 in 13 places, all below massif's threshold (1.00%) + n2: 5082144 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 5070120 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 5070120 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n2: 4985952 0x50240D3: str_new0 (string.c:723) + n1: 4040064 0x503420C: rb_str_subseq (string.c:2457) + n2: 4040064 0x50344DC: split_string.part.34 (string.c:7680) + n1: 2825640 0x503500A: rb_str_split_m (string.c:7893) + n1: 2825640 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2825640 0x5092F70: vm_exec_core (insns.def:765) + n1: 2825640 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2825640 0x509A58C: rb_yield (vm.c:1092) + n1: 2825640 0x4F2E908: io_s_foreach (io.c:10328) + n1: 2825640 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2825640 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2825640 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2825640 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2825640 0x5093011: vm_exec_core (insns.def:750) + n1: 2825640 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2825640 0x509A58C: rb_yield (vm.c:1092) + n1: 2825640 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2825640 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2825640 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2825640 0x5093011: vm_exec_core (insns.def:750) + n1: 2825640 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2825640 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2825640 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2825640 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2825640 0x108969: main (main.c:42) + n1: 1214424 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 1214424 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1214424 0x5092F70: vm_exec_core (insns.def:765) + n1: 1214424 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1214424 0x509A58C: rb_yield (vm.c:1092) + n1: 1214424 0x4F2E908: io_s_foreach (io.c:10328) + n1: 1214424 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1214424 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 1214424 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1214424 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1214424 0x5093011: vm_exec_core (insns.def:750) + n1: 1214424 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1214424 0x509A58C: rb_yield (vm.c:1092) + n1: 1214424 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1214424 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1214424 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1214424 0x5093011: vm_exec_core (insns.def:750) + n1: 1214424 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1214424 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 1214424 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 1214424 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 1214424 0x108969: main (main.c:42) + n0: 945888 in 1 place, below massif's threshold (1.00%) + n0: 84168 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 12024 in 6 places, all below massif's threshold (1.00%) + n2: 4116143 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 2489327 in 26 places, all below massif's threshold (1.00%) + n2: 1626816 0x4F4678A: rb_iseq_new_with_opt (iseq.c:361) + n1: 1620008 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 1620008 in 11 places, all below massif's threshold (1.00%) + n0: 6808 in 7 places, all below massif's threshold (1.00%) + n0: 1139513 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=14 +#----------- +time=17641006188 +mem_heap_B=110649512 +mem_heap_extra_B=25383976 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=15 +#----------- +time=19021162802 +mem_heap_B=109978545 +mem_heap_extra_B=25261535 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=16 +#----------- +time=20748873579 +mem_heap_B=109156818 +mem_heap_extra_B=25102550 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=17 +#----------- +time=22392379103 +mem_heap_B=114337561 +mem_heap_extra_B=24990951 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=18 +#----------- +time=23406731833 +mem_heap_B=138110162 +mem_heap_extra_B=38345430 +mem_stacks_B=0 +heap_tree=detailed +n7: 138110162 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n2: 66765240 0x4F0FC9B: heap_assign_page (gc.c:7913) + n6: 64934712 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 46253520 0x50240D3: str_new0 (string.c:723) + n2: 36610560 0x503420C: rb_str_subseq (string.c:2457) + n2: 36398088 0x50344DC: split_string.part.34 (string.c:7680) + n1: 30269088 0x503500A: rb_str_split_m (string.c:7893) + n1: 30269088 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30269088 0x5092F70: vm_exec_core (insns.def:765) + n1: 30269088 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30269088 0x509A58C: rb_yield (vm.c:1092) + n1: 30269088 0x4F2E908: io_s_foreach (io.c:10328) + n1: 30269088 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 30269088 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 30269088 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30269088 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 30269088 0x5093011: vm_exec_core (insns.def:750) + n1: 30269088 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30269088 0x509A58C: rb_yield (vm.c:1092) + n1: 30269088 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 30269088 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30269088 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 30269088 0x5093011: vm_exec_core (insns.def:750) + n1: 30269088 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30269088 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 30269088 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 30269088 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 30269088 0x108969: main (main.c:42) + n1: 6129000 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 6129000 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6129000 0x5092F70: vm_exec_core (insns.def:765) + n1: 6129000 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6129000 0x509A58C: rb_yield (vm.c:1092) + n1: 6129000 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6129000 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6129000 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6129000 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6129000 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6129000 0x5093011: vm_exec_core (insns.def:750) + n1: 6129000 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6129000 0x509A58C: rb_yield (vm.c:1092) + n1: 6129000 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6129000 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6129000 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6129000 0x5093011: vm_exec_core (insns.def:750) + n1: 6129000 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6129000 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6129000 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6129000 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6129000 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 6292440 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 5834808 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 5834808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5834808 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5834808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5834808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5834808 0x5093011: vm_exec_core (insns.def:750) + n1: 5834808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5834808 0x509A58C: rb_yield (vm.c:1092) + n1: 5834808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5834808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5834808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5834808 0x5093011: vm_exec_core (insns.def:750) + n1: 5834808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5834808 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5834808 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5834808 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5834808 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 3072672 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 3072672 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 3072672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3072672 0x5092F70: vm_exec_core (insns.def:765) + n1: 3072672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3072672 0x509A58C: rb_yield (vm.c:1092) + n1: 3072672 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3072672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3072672 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3072672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3072672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3072672 0x5093011: vm_exec_core (insns.def:750) + n1: 3072672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3072672 0x509A58C: rb_yield (vm.c:1092) + n1: 3072672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3072672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3072672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3072672 0x5093011: vm_exec_core (insns.def:750) + n1: 3072672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3072672 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3072672 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3072672 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3072672 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 6390504 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 5981904 0x50350C5: rb_str_split_m (string.c:7813) + n1: 5981904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5981904 0x5092F70: vm_exec_core (insns.def:765) + n1: 5981904 0x509998D: rb_vm_exec (vm.c:1885) + n2: 5981904 0x509A58C: rb_yield (vm.c:1092) + n1: 5965560 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5965560 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5965560 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5965560 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5965560 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5965560 0x5093011: vm_exec_core (insns.def:750) + n1: 5965560 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5965560 0x509A58C: rb_yield (vm.c:1092) + n1: 5965560 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5965560 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5965560 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5965560 0x5093011: vm_exec_core (insns.def:750) + n1: 5965560 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5965560 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5965560 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5965560 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5965560 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 408600 in 3 places, all below massif's threshold (1.00%) + n2: 5932872 0x502DC23: rb_str_resurrect (string.c:723) + n1: 5916528 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 5916528 0x5093B24: vm_exec_core (insns.def:385) + n1: 5916528 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5916528 0x509A58C: rb_yield (vm.c:1092) + n1: 5916528 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5916528 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5916528 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5916528 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5916528 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5916528 0x5093011: vm_exec_core (insns.def:750) + n1: 5916528 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5916528 0x509A58C: rb_yield (vm.c:1092) + n1: 5916528 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5916528 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5916528 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5916528 0x5093011: vm_exec_core (insns.def:750) + n1: 5916528 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5916528 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5916528 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5916528 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5916528 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 2484288 in 26 places, all below massif's threshold (1.00%) + n1: 2010312 0x502BBDB: rb_str_buf_new (string.c:723) + n0: 2010312 in 4 places, all below massif's threshold (1.00%) + n1: 1863216 0x5029B4D: rb_usascii_str_new_static (string.c:723) + n1: 1863216 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n0: 1863216 in 2 places, all below massif's threshold (1.00%) + n0: 1830528 in 5 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n5: 13421078 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 3552276 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 2246138 0x503C111: rb_str_concat_literals (string.c:2959) + n2: 2246138 0x5093B24: vm_exec_core (insns.def:385) + n2: 2246138 0x509998D: rb_vm_exec (vm.c:1885) + n2: 2235382 0x509A58C: rb_yield (vm.c:1092) + n1: 2235382 0x4F2E908: io_s_foreach (io.c:10328) + n1: 2235382 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2235382 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2235382 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2235382 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2235382 0x5093011: vm_exec_core (insns.def:750) + n1: 2235382 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2235382 0x509A58C: rb_yield (vm.c:1092) + n1: 2235382 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2235382 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2235382 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2235382 0x5093011: vm_exec_core (insns.def:750) + n1: 2235382 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2235382 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2235382 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2235382 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2235382 0x108969: main (main.c:42) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 10756 in 3 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 1306138 in 12 places, all below massif's threshold (1.00%) + n2: 3289703 0x50241CA: str_new0 (string.c:748) + n2: 3195462 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 3195462 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 3195462 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3195462 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3195462 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3195462 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3195462 0x5093011: vm_exec_core (insns.def:750) + n1: 3195462 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3195462 0x509A58C: rb_yield (vm.c:1092) + n1: 3195462 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3195462 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3195462 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3195462 0x5093011: vm_exec_core (insns.def:750) + n1: 3195462 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3195462 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3195462 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3195462 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3195462 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n0: 2673067 in 120 places, all below massif's threshold (1.00%) + n1: 1994592 0x501B5D1: st_init_table_with_size (st.c:605) + n0: 1994592 in 51 places, all below massif's threshold (1.00%) + n2: 1911440 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1908440 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1908440 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 1897928 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 1897928 in 11 places, all below massif's threshold (1.00%) + n0: 10512 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n2: 11325884 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 10835568 0x4E68137: ary_resize_capa (array.c:335) + n2: 10835568 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 10830304 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 10830304 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 10826696 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 10826696 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 10826696 0x5092F70: vm_exec_core (insns.def:765) + n1: 10826696 0x509998D: rb_vm_exec (vm.c:1885) + n1: 10826696 0x509A58C: rb_yield (vm.c:1092) + n1: 10826696 0x4F2E908: io_s_foreach (io.c:10328) + n1: 10826696 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 10826696 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 10826696 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 10826696 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 10826696 0x5093011: vm_exec_core (insns.def:750) + n1: 10826696 0x509998D: rb_vm_exec (vm.c:1885) + n1: 10826696 0x509A58C: rb_yield (vm.c:1092) + n1: 10826696 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 10826696 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 10826696 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 10826696 0x5093011: vm_exec_core (insns.def:750) + n1: 10826696 0x509998D: rb_vm_exec (vm.c:1885) + n1: 10826696 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 10826696 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 10826696 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 10826696 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 490316 in 13 places, all below massif's threshold (1.00%) + n2: 7250472 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 7242456 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 7242456 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n2: 7242456 0x50240D3: str_new0 (string.c:723) + n1: 6296568 0x503420C: rb_str_subseq (string.c:2457) + n2: 6296568 0x50344DC: split_string.part.34 (string.c:7680) + n1: 5082144 0x503500A: rb_str_split_m (string.c:7893) + n1: 5082144 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5082144 0x5092F70: vm_exec_core (insns.def:765) + n1: 5082144 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5082144 0x509A58C: rb_yield (vm.c:1092) + n1: 5082144 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5082144 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5082144 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5082144 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5082144 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5082144 0x5093011: vm_exec_core (insns.def:750) + n1: 5082144 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5082144 0x509A58C: rb_yield (vm.c:1092) + n1: 5082144 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5082144 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5082144 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5082144 0x5093011: vm_exec_core (insns.def:750) + n1: 5082144 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5082144 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5082144 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5082144 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5082144 0x108969: main (main.c:42) + n0: 1214424 in 1 place, below massif's threshold (1.00%) + n0: 945888 in 1 place, below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 8016 in 6 places, all below massif's threshold (1.00%) + n1: 4116143 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 4116143 in 27 places, all below massif's threshold (1.00%) + n0: 1676913 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=19 +#----------- +time=24647513289 +mem_heap_B=132811350 +mem_heap_extra_B=37394706 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=20 +#----------- +time=25474662983 +mem_heap_B=137195291 +mem_heap_extra_B=38235981 +mem_stacks_B=0 +heap_tree=detailed +n7: 137195291 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n2: 66895992 0x4F0FC9B: heap_assign_page (gc.c:7913) + n6: 65065464 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 46318896 0x50240D3: str_new0 (string.c:723) + n2: 36659592 0x503420C: rb_str_subseq (string.c:2457) + n2: 36447120 0x50344DC: split_string.part.34 (string.c:7680) + n1: 30301776 0x503500A: rb_str_split_m (string.c:7893) + n1: 30301776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30301776 0x5092F70: vm_exec_core (insns.def:765) + n1: 30301776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30301776 0x509A58C: rb_yield (vm.c:1092) + n1: 30301776 0x4F2E908: io_s_foreach (io.c:10328) + n1: 30301776 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 30301776 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 30301776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30301776 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 30301776 0x5093011: vm_exec_core (insns.def:750) + n1: 30301776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30301776 0x509A58C: rb_yield (vm.c:1092) + n1: 30301776 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 30301776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30301776 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 30301776 0x5093011: vm_exec_core (insns.def:750) + n1: 30301776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30301776 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 30301776 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 30301776 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 30301776 0x108969: main (main.c:42) + n1: 6145344 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 6145344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6145344 0x5092F70: vm_exec_core (insns.def:765) + n1: 6145344 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6145344 0x509A58C: rb_yield (vm.c:1092) + n1: 6145344 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6145344 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6145344 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6145344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6145344 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6145344 0x5093011: vm_exec_core (insns.def:750) + n1: 6145344 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6145344 0x509A58C: rb_yield (vm.c:1092) + n1: 6145344 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6145344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6145344 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6145344 0x5093011: vm_exec_core (insns.def:750) + n1: 6145344 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6145344 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6145344 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6145344 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6145344 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 6292440 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 5834808 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 5834808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5834808 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5834808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5834808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5834808 0x5093011: vm_exec_core (insns.def:750) + n1: 5834808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5834808 0x509A58C: rb_yield (vm.c:1092) + n1: 5834808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5834808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5834808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5834808 0x5093011: vm_exec_core (insns.def:750) + n1: 5834808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5834808 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5834808 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5834808 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5834808 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 3089016 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 3089016 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 3089016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3089016 0x5092F70: vm_exec_core (insns.def:765) + n1: 3089016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3089016 0x509A58C: rb_yield (vm.c:1092) + n1: 3089016 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3089016 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3089016 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3089016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3089016 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3089016 0x5093011: vm_exec_core (insns.def:750) + n1: 3089016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3089016 0x509A58C: rb_yield (vm.c:1092) + n1: 3089016 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3089016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3089016 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3089016 0x5093011: vm_exec_core (insns.def:750) + n1: 3089016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3089016 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3089016 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3089016 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3089016 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 6406848 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 5998248 0x50350C5: rb_str_split_m (string.c:7813) + n1: 5998248 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5998248 0x5092F70: vm_exec_core (insns.def:765) + n1: 5998248 0x509998D: rb_vm_exec (vm.c:1885) + n2: 5998248 0x509A58C: rb_yield (vm.c:1092) + n1: 5981904 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5981904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5981904 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5981904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5981904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5981904 0x5093011: vm_exec_core (insns.def:750) + n1: 5981904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5981904 0x509A58C: rb_yield (vm.c:1092) + n1: 5981904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5981904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5981904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5981904 0x5093011: vm_exec_core (insns.def:750) + n1: 5981904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5981904 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5981904 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5981904 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5981904 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 408600 in 3 places, all below massif's threshold (1.00%) + n2: 5949216 0x502DC23: rb_str_resurrect (string.c:723) + n1: 5932872 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 5932872 0x5093B24: vm_exec_core (insns.def:385) + n1: 5932872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5932872 0x509A58C: rb_yield (vm.c:1092) + n1: 5932872 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5932872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5932872 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5932872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5932872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5932872 0x5093011: vm_exec_core (insns.def:750) + n1: 5932872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5932872 0x509A58C: rb_yield (vm.c:1092) + n1: 5932872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5932872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5932872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5932872 0x5093011: vm_exec_core (insns.def:750) + n1: 5932872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5932872 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5932872 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5932872 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5932872 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 2484288 in 26 places, all below massif's threshold (1.00%) + n1: 2043000 0x502BBDB: rb_str_buf_new (string.c:723) + n0: 2043000 in 4 places, all below massif's threshold (1.00%) + n1: 1863216 0x5029B4D: rb_usascii_str_new_static (string.c:723) + n1: 1863216 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n0: 1863216 in 2 places, all below massif's threshold (1.00%) + n0: 1830528 in 5 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n5: 12382182 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 2965420 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 1875765 0x503C111: rb_str_concat_literals (string.c:2959) + n2: 1875765 0x5093B24: vm_exec_core (insns.def:385) + n2: 1875765 0x509998D: rb_vm_exec (vm.c:1885) + n2: 1865009 0x509A58C: rb_yield (vm.c:1092) + n1: 1865009 0x4F2E908: io_s_foreach (io.c:10328) + n1: 1865009 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1865009 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 1865009 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1865009 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1865009 0x5093011: vm_exec_core (insns.def:750) + n1: 1865009 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1865009 0x509A58C: rb_yield (vm.c:1092) + n1: 1865009 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 1865009 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 1865009 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 1865009 0x5093011: vm_exec_core (insns.def:750) + n1: 1865009 0x509998D: rb_vm_exec (vm.c:1885) + n1: 1865009 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 1865009 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 1865009 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 1865009 0x108969: main (main.c:42) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 10756 in 3 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 1089655 in 12 places, all below massif's threshold (1.00%) + n2: 2838757 0x50241CA: str_new0 (string.c:748) + n2: 2744516 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 2744516 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 2744516 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2744516 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2744516 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2744516 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2744516 0x5093011: vm_exec_core (insns.def:750) + n1: 2744516 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2744516 0x509A58C: rb_yield (vm.c:1092) + n1: 2744516 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2744516 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2744516 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2744516 0x5093011: vm_exec_core (insns.def:750) + n1: 2744516 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2744516 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2744516 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2744516 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2744516 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n0: 2671973 in 120 places, all below massif's threshold (1.00%) + n1: 1994592 0x501B5D1: st_init_table_with_size (st.c:605) + n0: 1994592 in 51 places, all below massif's threshold (1.00%) + n2: 1911440 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 1908440 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 1908440 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 1897928 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 1897928 in 11 places, all below massif's threshold (1.00%) + n0: 10512 in 7 places, all below massif's threshold (1.00%) + n0: 3000 in 1 place, below massif's threshold (1.00%) + n2: 11324933 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 10835568 0x4E68137: ary_resize_capa (array.c:335) + n2: 10835568 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 10830304 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 10830304 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 10826696 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 10826696 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 10826696 0x5092F70: vm_exec_core (insns.def:765) + n1: 10826696 0x509998D: rb_vm_exec (vm.c:1885) + n1: 10826696 0x509A58C: rb_yield (vm.c:1092) + n1: 10826696 0x4F2E908: io_s_foreach (io.c:10328) + n1: 10826696 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 10826696 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 10826696 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 10826696 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 10826696 0x5093011: vm_exec_core (insns.def:750) + n1: 10826696 0x509998D: rb_vm_exec (vm.c:1885) + n1: 10826696 0x509A58C: rb_yield (vm.c:1092) + n1: 10826696 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 10826696 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 10826696 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 10826696 0x5093011: vm_exec_core (insns.def:750) + n1: 10826696 0x509998D: rb_vm_exec (vm.c:1885) + n1: 10826696 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 10826696 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 10826696 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 10826696 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 489365 in 13 places, all below massif's threshold (1.00%) + n2: 7242456 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 7234440 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 7234440 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n2: 7234440 0x50240D3: str_new0 (string.c:723) + n1: 6288552 0x503420C: rb_str_subseq (string.c:2457) + n2: 6288552 0x50344DC: split_string.part.34 (string.c:7680) + n1: 5074128 0x503500A: rb_str_split_m (string.c:7893) + n1: 5074128 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5074128 0x5092F70: vm_exec_core (insns.def:765) + n1: 5074128 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5074128 0x509A58C: rb_yield (vm.c:1092) + n1: 5074128 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5074128 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5074128 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5074128 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5074128 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5074128 0x5093011: vm_exec_core (insns.def:750) + n1: 5074128 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5074128 0x509A58C: rb_yield (vm.c:1092) + n1: 5074128 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5074128 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5074128 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5074128 0x5093011: vm_exec_core (insns.def:750) + n1: 5074128 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5074128 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5074128 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5074128 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5074128 0x108969: main (main.c:42) + n0: 1214424 in 1 place, below massif's threshold (1.00%) + n0: 945888 in 1 place, below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 8016 in 6 places, all below massif's threshold (1.00%) + n1: 4116143 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 4116143 in 27 places, all below massif's threshold (1.00%) + n0: 1679153 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=21 +#----------- +time=26548948397 +mem_heap_B=136804373 +mem_heap_extra_B=38170355 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=22 +#----------- +time=28200709151 +mem_heap_B=134779844 +mem_heap_extra_B=37776084 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=23 +#----------- +time=29632520877 +mem_heap_B=135374555 +mem_heap_extra_B=37900645 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=24 +#----------- +time=30721487356 +mem_heap_B=133379743 +mem_heap_extra_B=37510209 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=25 +#----------- +time=31729611683 +mem_heap_B=155144579 +mem_heap_extra_B=44063229 +mem_stacks_B=0 +heap_tree=detailed +n7: 155144579 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 76293792 0x4F0FC9B: heap_assign_page (gc.c:7913) + n5: 65065464 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 46318896 0x50240D3: str_new0 (string.c:723) + n2: 36659592 0x503420C: rb_str_subseq (string.c:2457) + n2: 36447120 0x50344DC: split_string.part.34 (string.c:7680) + n1: 30301776 0x503500A: rb_str_split_m (string.c:7893) + n1: 30301776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30301776 0x5092F70: vm_exec_core (insns.def:765) + n1: 30301776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30301776 0x509A58C: rb_yield (vm.c:1092) + n1: 30301776 0x4F2E908: io_s_foreach (io.c:10328) + n1: 30301776 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 30301776 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 30301776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30301776 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 30301776 0x5093011: vm_exec_core (insns.def:750) + n1: 30301776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30301776 0x509A58C: rb_yield (vm.c:1092) + n1: 30301776 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 30301776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30301776 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 30301776 0x5093011: vm_exec_core (insns.def:750) + n1: 30301776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30301776 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 30301776 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 30301776 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 30301776 0x108969: main (main.c:42) + n1: 6145344 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 6145344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6145344 0x5092F70: vm_exec_core (insns.def:765) + n1: 6145344 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6145344 0x509A58C: rb_yield (vm.c:1092) + n1: 6145344 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6145344 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6145344 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6145344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6145344 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6145344 0x5093011: vm_exec_core (insns.def:750) + n1: 6145344 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6145344 0x509A58C: rb_yield (vm.c:1092) + n1: 6145344 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6145344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6145344 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6145344 0x5093011: vm_exec_core (insns.def:750) + n1: 6145344 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6145344 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6145344 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6145344 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6145344 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 6292440 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 5834808 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 5834808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5834808 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5834808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5834808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5834808 0x5093011: vm_exec_core (insns.def:750) + n1: 5834808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5834808 0x509A58C: rb_yield (vm.c:1092) + n1: 5834808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5834808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5834808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5834808 0x5093011: vm_exec_core (insns.def:750) + n1: 5834808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5834808 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5834808 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5834808 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5834808 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 3089016 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 3089016 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 3089016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3089016 0x5092F70: vm_exec_core (insns.def:765) + n1: 3089016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3089016 0x509A58C: rb_yield (vm.c:1092) + n1: 3089016 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3089016 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3089016 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3089016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3089016 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3089016 0x5093011: vm_exec_core (insns.def:750) + n1: 3089016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3089016 0x509A58C: rb_yield (vm.c:1092) + n1: 3089016 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3089016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3089016 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3089016 0x5093011: vm_exec_core (insns.def:750) + n1: 3089016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3089016 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3089016 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3089016 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3089016 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 6406848 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 5998248 0x50350C5: rb_str_split_m (string.c:7813) + n1: 5998248 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5998248 0x5092F70: vm_exec_core (insns.def:765) + n1: 5998248 0x509998D: rb_vm_exec (vm.c:1885) + n2: 5998248 0x509A58C: rb_yield (vm.c:1092) + n1: 5981904 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5981904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5981904 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5981904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5981904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5981904 0x5093011: vm_exec_core (insns.def:750) + n1: 5981904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5981904 0x509A58C: rb_yield (vm.c:1092) + n1: 5981904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5981904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5981904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5981904 0x5093011: vm_exec_core (insns.def:750) + n1: 5981904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5981904 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5981904 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5981904 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5981904 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 408600 in 3 places, all below massif's threshold (1.00%) + n2: 5949216 0x502DC23: rb_str_resurrect (string.c:723) + n1: 5932872 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 5932872 0x5093B24: vm_exec_core (insns.def:385) + n1: 5932872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5932872 0x509A58C: rb_yield (vm.c:1092) + n1: 5932872 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5932872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5932872 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5932872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5932872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5932872 0x5093011: vm_exec_core (insns.def:750) + n1: 5932872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5932872 0x509A58C: rb_yield (vm.c:1092) + n1: 5932872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5932872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5932872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5932872 0x5093011: vm_exec_core (insns.def:750) + n1: 5932872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5932872 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5932872 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5932872 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5932872 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 4347504 in 27 places, all below massif's threshold (1.00%) + n1: 2043000 0x502BBDB: rb_str_buf_new (string.c:723) + n0: 2043000 in 4 places, all below massif's threshold (1.00%) + n2: 10443816 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n2: 7534584 0x50240D3: str_new0 (string.c:723) + n1: 5802120 0x503420C: rb_str_subseq (string.c:2457) + n2: 5802120 0x50344DC: split_string.part.34 (string.c:7680) + n1: 4805136 0x503500A: rb_str_split_m (string.c:7893) + n1: 4805136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4805136 0x5092F70: vm_exec_core (insns.def:765) + n1: 4805136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4805136 0x509A58C: rb_yield (vm.c:1092) + n1: 4805136 0x4F2E908: io_s_foreach (io.c:10328) + n1: 4805136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4805136 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4805136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4805136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4805136 0x5093011: vm_exec_core (insns.def:750) + n1: 4805136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4805136 0x509A58C: rb_yield (vm.c:1092) + n1: 4805136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4805136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4805136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4805136 0x5093011: vm_exec_core (insns.def:750) + n1: 4805136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4805136 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4805136 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4805136 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4805136 0x108969: main (main.c:42) + n0: 996984 in 1 place, below massif's threshold (1.00%) + n0: 1732464 in 2 places, all below massif's threshold (1.00%) + n0: 2909232 in 5 places, all below massif's threshold (1.00%) + n0: 784512 in 4 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 16739030 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 16248928 0x4E68137: ary_resize_capa (array.c:335) + n2: 16248928 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 16243664 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 16243664 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 16240056 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 16240056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 16240056 0x5092F70: vm_exec_core (insns.def:765) + n1: 16240056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 16240056 0x509A58C: rb_yield (vm.c:1092) + n1: 16240056 0x4F2E908: io_s_foreach (io.c:10328) + n1: 16240056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 16240056 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 16240056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 16240056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 16240056 0x5093011: vm_exec_core (insns.def:750) + n1: 16240056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 16240056 0x509A58C: rb_yield (vm.c:1092) + n1: 16240056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 16240056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 16240056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 16240056 0x5093011: vm_exec_core (insns.def:750) + n1: 16240056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 16240056 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 16240056 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 16240056 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 16240056 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 490102 in 13 places, all below massif's threshold (1.00%) + n4: 12339757 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 4583376 in 121 places, all below massif's threshold (1.00%) + n2: 2943710 0x50241CA: str_new0 (string.c:748) + n2: 2849469 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 2849469 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 2849469 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2849469 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2849469 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2849469 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2849469 0x5093011: vm_exec_core (insns.def:750) + n1: 2849469 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2849469 0x509A58C: rb_yield (vm.c:1092) + n1: 2849469 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2849469 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2849469 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2849469 0x5093011: vm_exec_core (insns.def:750) + n1: 2849469 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2849469 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2849469 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2849469 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2849469 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n1: 2818079 0x502BC1D: rb_str_buf_new (string.c:1332) + n0: 2818079 in 13 places, all below massif's threshold (1.00%) + n1: 1994592 0x501B5D1: st_init_table_with_size (st.c:605) + n0: 1994592 in 51 places, all below massif's threshold (1.00%) + n2: 10248456 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 10240440 0x4F0F06D: gc_mark_children (gc.c:3156) + n3: 10240440 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n2: 6897768 0x50240D3: str_new0 (string.c:723) + n1: 5951880 0x503420C: rb_str_subseq (string.c:2457) + n2: 5951880 0x50344DC: split_string.part.34 (string.c:7680) + n1: 4737456 0x503500A: rb_str_split_m (string.c:7893) + n1: 4737456 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4737456 0x5092F70: vm_exec_core (insns.def:765) + n1: 4737456 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4737456 0x509A58C: rb_yield (vm.c:1092) + n1: 4737456 0x4F2E908: io_s_foreach (io.c:10328) + n1: 4737456 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4737456 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4737456 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4737456 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4737456 0x5093011: vm_exec_core (insns.def:750) + n1: 4737456 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4737456 0x509A58C: rb_yield (vm.c:1092) + n1: 4737456 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4737456 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4737456 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4737456 0x5093011: vm_exec_core (insns.def:750) + n1: 4737456 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4737456 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4737456 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4737456 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4737456 0x108969: main (main.c:42) + n0: 1214424 in 1 place, below massif's threshold (1.00%) + n0: 945888 in 1 place, below massif's threshold (1.00%) + n1: 3342672 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 3342672 0x50350C5: rb_str_split_m (string.c:7813) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x5092F70: vm_exec_core (insns.def:765) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x509A58C: rb_yield (vm.c:1092) + n1: 3342672 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3342672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3342672 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3342672 0x5093011: vm_exec_core (insns.def:750) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x509A58C: rb_yield (vm.c:1092) + n1: 3342672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3342672 0x5093011: vm_exec_core (insns.def:750) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3342672 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3342672 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3342672 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 8016 in 6 places, all below massif's threshold (1.00%) + n1: 4116143 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 4116143 in 27 places, all below massif's threshold (1.00%) + n0: 1852969 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=26 +#----------- +time=32532429818 +mem_heap_B=175626472 +mem_heap_extra_B=58197912 +mem_stacks_B=0 +heap_tree=detailed +n7: 175626472 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 92637792 0x4F0FC9B: heap_assign_page (gc.c:7913) + n4: 65065464 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 46318896 0x50240D3: str_new0 (string.c:723) + n2: 36659592 0x503420C: rb_str_subseq (string.c:2457) + n2: 36447120 0x50344DC: split_string.part.34 (string.c:7680) + n1: 30301776 0x503500A: rb_str_split_m (string.c:7893) + n1: 30301776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30301776 0x5092F70: vm_exec_core (insns.def:765) + n1: 30301776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30301776 0x509A58C: rb_yield (vm.c:1092) + n1: 30301776 0x4F2E908: io_s_foreach (io.c:10328) + n1: 30301776 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 30301776 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 30301776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30301776 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 30301776 0x5093011: vm_exec_core (insns.def:750) + n1: 30301776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30301776 0x509A58C: rb_yield (vm.c:1092) + n1: 30301776 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 30301776 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 30301776 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 30301776 0x5093011: vm_exec_core (insns.def:750) + n1: 30301776 0x509998D: rb_vm_exec (vm.c:1885) + n1: 30301776 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 30301776 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 30301776 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 30301776 0x108969: main (main.c:42) + n1: 6145344 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 6145344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6145344 0x5092F70: vm_exec_core (insns.def:765) + n1: 6145344 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6145344 0x509A58C: rb_yield (vm.c:1092) + n1: 6145344 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6145344 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6145344 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6145344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6145344 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6145344 0x5093011: vm_exec_core (insns.def:750) + n1: 6145344 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6145344 0x509A58C: rb_yield (vm.c:1092) + n1: 6145344 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6145344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6145344 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6145344 0x5093011: vm_exec_core (insns.def:750) + n1: 6145344 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6145344 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6145344 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6145344 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6145344 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 6292440 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 5834808 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 5834808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5834808 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5834808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5834808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5834808 0x5093011: vm_exec_core (insns.def:750) + n1: 5834808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5834808 0x509A58C: rb_yield (vm.c:1092) + n1: 5834808 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5834808 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5834808 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5834808 0x5093011: vm_exec_core (insns.def:750) + n1: 5834808 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5834808 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5834808 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5834808 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5834808 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 3089016 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 3089016 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 3089016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3089016 0x5092F70: vm_exec_core (insns.def:765) + n1: 3089016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3089016 0x509A58C: rb_yield (vm.c:1092) + n1: 3089016 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3089016 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3089016 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3089016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3089016 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3089016 0x5093011: vm_exec_core (insns.def:750) + n1: 3089016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3089016 0x509A58C: rb_yield (vm.c:1092) + n1: 3089016 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3089016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3089016 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3089016 0x5093011: vm_exec_core (insns.def:750) + n1: 3089016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3089016 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3089016 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3089016 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3089016 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 6406848 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 5998248 0x50350C5: rb_str_split_m (string.c:7813) + n1: 5998248 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5998248 0x5092F70: vm_exec_core (insns.def:765) + n1: 5998248 0x509998D: rb_vm_exec (vm.c:1885) + n2: 5998248 0x509A58C: rb_yield (vm.c:1092) + n1: 5981904 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5981904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5981904 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5981904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5981904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5981904 0x5093011: vm_exec_core (insns.def:750) + n1: 5981904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5981904 0x509A58C: rb_yield (vm.c:1092) + n1: 5981904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5981904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5981904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5981904 0x5093011: vm_exec_core (insns.def:750) + n1: 5981904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5981904 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5981904 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5981904 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5981904 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 408600 in 3 places, all below massif's threshold (1.00%) + n0: 6390504 in 28 places, all below massif's threshold (1.00%) + n2: 5949216 0x502DC23: rb_str_resurrect (string.c:723) + n1: 5932872 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 5932872 0x5093B24: vm_exec_core (insns.def:385) + n1: 5932872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5932872 0x509A58C: rb_yield (vm.c:1092) + n1: 5932872 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5932872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5932872 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5932872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5932872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5932872 0x5093011: vm_exec_core (insns.def:750) + n1: 5932872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5932872 0x509A58C: rb_yield (vm.c:1092) + n1: 5932872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5932872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5932872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5932872 0x5093011: vm_exec_core (insns.def:750) + n1: 5932872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5932872 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5932872 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5932872 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5932872 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n4: 26787816 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n3: 19482048 0x50240D3: str_new0 (string.c:723) + n1: 15183576 0x503420C: rb_str_subseq (string.c:2457) + n2: 15183576 0x50344DC: split_string.part.34 (string.c:7680) + n1: 12650256 0x503500A: rb_str_split_m (string.c:7893) + n1: 12650256 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12650256 0x5092F70: vm_exec_core (insns.def:765) + n1: 12650256 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12650256 0x509A58C: rb_yield (vm.c:1092) + n1: 12650256 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12650256 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12650256 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12650256 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12650256 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12650256 0x5093011: vm_exec_core (insns.def:750) + n1: 12650256 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12650256 0x509A58C: rb_yield (vm.c:1092) + n1: 12650256 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12650256 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12650256 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12650256 0x5093011: vm_exec_core (insns.def:750) + n1: 12650256 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12650256 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12650256 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12650256 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12650256 0x108969: main (main.c:42) + n1: 2533320 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 2533320 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2533320 0x5092F70: vm_exec_core (insns.def:765) + n1: 2533320 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2533320 0x509A58C: rb_yield (vm.c:1092) + n1: 2533320 0x4F2E908: io_s_foreach (io.c:10328) + n1: 2533320 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2533320 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2533320 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2533320 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2533320 0x5093011: vm_exec_core (insns.def:750) + n1: 2533320 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2533320 0x509A58C: rb_yield (vm.c:1092) + n1: 2533320 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2533320 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2533320 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2533320 0x5093011: vm_exec_core (insns.def:750) + n1: 2533320 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2533320 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2533320 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2533320 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2533320 0x108969: main (main.c:42) + n2: 2909232 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 2892888 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 2892888 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2892888 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2892888 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2892888 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2892888 0x5093011: vm_exec_core (insns.def:750) + n1: 2892888 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2892888 0x509A58C: rb_yield (vm.c:1092) + n1: 2892888 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2892888 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2892888 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2892888 0x5093011: vm_exec_core (insns.def:750) + n1: 2892888 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2892888 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2892888 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2892888 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2892888 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 1389240 in 1 place, below massif's threshold (1.00%) + n1: 2647728 0x502DC23: rb_str_resurrect (string.c:723) + n1: 2647728 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 2647728 0x5093B24: vm_exec_core (insns.def:385) + n1: 2647728 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2647728 0x509A58C: rb_yield (vm.c:1092) + n1: 2647728 0x4F2E908: io_s_foreach (io.c:10328) + n1: 2647728 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2647728 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2647728 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2647728 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2647728 0x5093011: vm_exec_core (insns.def:750) + n1: 2647728 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2647728 0x509A58C: rb_yield (vm.c:1092) + n1: 2647728 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2647728 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2647728 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2647728 0x5093011: vm_exec_core (insns.def:750) + n1: 2647728 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2647728 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2647728 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2647728 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2647728 0x108969: main (main.c:42) + n2: 2582352 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 2369880 0x50350C5: rb_str_split_m (string.c:7813) + n1: 2369880 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2369880 0x5092F70: vm_exec_core (insns.def:765) + n1: 2369880 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2369880 0x509A58C: rb_yield (vm.c:1092) + n1: 2369880 0x4F2E908: io_s_foreach (io.c:10328) + n1: 2369880 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2369880 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2369880 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2369880 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2369880 0x5093011: vm_exec_core (insns.def:750) + n1: 2369880 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2369880 0x509A58C: rb_yield (vm.c:1092) + n1: 2369880 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2369880 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2369880 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2369880 0x5093011: vm_exec_core (insns.def:750) + n1: 2369880 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2369880 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2369880 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2369880 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2369880 0x108969: main (main.c:42) + n0: 212472 in 1 place, below massif's threshold (1.00%) + n0: 2075688 in 3 places, all below massif's threshold (1.00%) + n0: 784512 in 4 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 16743388 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 16248928 0x4E68137: ary_resize_capa (array.c:335) + n2: 16248928 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 16243664 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 16243664 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 16240056 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 16240056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 16240056 0x5092F70: vm_exec_core (insns.def:765) + n1: 16240056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 16240056 0x509A58C: rb_yield (vm.c:1092) + n1: 16240056 0x4F2E908: io_s_foreach (io.c:10328) + n1: 16240056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 16240056 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 16240056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 16240056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 16240056 0x5093011: vm_exec_core (insns.def:750) + n1: 16240056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 16240056 0x509A58C: rb_yield (vm.c:1092) + n1: 16240056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 16240056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 16240056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 16240056 0x5093011: vm_exec_core (insns.def:750) + n1: 16240056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 16240056 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 16240056 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 16240056 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 16240056 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 494460 in 13 places, all below massif's threshold (1.00%) + n3: 16193292 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 6582500 in 122 places, all below massif's threshold (1.00%) + n2: 4905101 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 3103714 0x503C111: rb_str_concat_literals (string.c:2959) + n2: 3103714 0x5093B24: vm_exec_core (insns.def:385) + n2: 3103714 0x509998D: rb_vm_exec (vm.c:1885) + n2: 3092958 0x509A58C: rb_yield (vm.c:1092) + n1: 3092958 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3092958 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3092958 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3092958 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3092958 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3092958 0x5093011: vm_exec_core (insns.def:750) + n1: 3092958 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3092958 0x509A58C: rb_yield (vm.c:1092) + n1: 3092958 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3092958 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3092958 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3092958 0x5093011: vm_exec_core (insns.def:750) + n1: 3092958 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3092958 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3092958 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3092958 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3092958 0x108969: main (main.c:42) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 10756 in 3 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 1801387 in 12 places, all below massif's threshold (1.00%) + n2: 4705691 0x50241CA: str_new0 (string.c:748) + n2: 4611450 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 4611450 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 4611450 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4611450 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4611450 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4611450 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4611450 0x5093011: vm_exec_core (insns.def:750) + n1: 4611450 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4611450 0x509A58C: rb_yield (vm.c:1092) + n1: 4611450 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4611450 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4611450 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4611450 0x5093011: vm_exec_core (insns.def:750) + n1: 4611450 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4611450 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4611450 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4611450 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4611450 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n2: 10248456 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 10240440 0x4F0F06D: gc_mark_children (gc.c:3156) + n3: 10240440 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n2: 6897768 0x50240D3: str_new0 (string.c:723) + n1: 5951880 0x503420C: rb_str_subseq (string.c:2457) + n2: 5951880 0x50344DC: split_string.part.34 (string.c:7680) + n1: 4737456 0x503500A: rb_str_split_m (string.c:7893) + n1: 4737456 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4737456 0x5092F70: vm_exec_core (insns.def:765) + n1: 4737456 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4737456 0x509A58C: rb_yield (vm.c:1092) + n1: 4737456 0x4F2E908: io_s_foreach (io.c:10328) + n1: 4737456 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4737456 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4737456 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4737456 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4737456 0x5093011: vm_exec_core (insns.def:750) + n1: 4737456 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4737456 0x509A58C: rb_yield (vm.c:1092) + n1: 4737456 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4737456 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4737456 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4737456 0x5093011: vm_exec_core (insns.def:750) + n1: 4737456 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4737456 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4737456 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4737456 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4737456 0x108969: main (main.c:42) + n0: 1214424 in 1 place, below massif's threshold (1.00%) + n0: 945888 in 1 place, below massif's threshold (1.00%) + n1: 3342672 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 3342672 0x50350C5: rb_str_split_m (string.c:7813) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x5092F70: vm_exec_core (insns.def:765) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x509A58C: rb_yield (vm.c:1092) + n1: 3342672 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3342672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3342672 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3342672 0x5093011: vm_exec_core (insns.def:750) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x509A58C: rb_yield (vm.c:1092) + n1: 3342672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3342672 0x5093011: vm_exec_core (insns.def:750) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3342672 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3342672 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3342672 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 8016 in 6 places, all below massif's threshold (1.00%) + n1: 4116143 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 4116143 in 27 places, all below massif's threshold (1.00%) + n0: 2132969 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=27 +#----------- +time=33853843599 +mem_heap_B=175420020 +mem_heap_extra_B=58407180 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=28 +#----------- +time=35272350746 +mem_heap_B=172902735 +mem_heap_extra_B=57909769 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=29 +#----------- +time=36970147544 +mem_heap_B=173977072 +mem_heap_extra_B=58112768 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=30 +#----------- +time=37776251424 +mem_heap_B=173535057 +mem_heap_extra_B=58035919 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=31 +#----------- +time=38985403610 +mem_heap_B=171869246 +mem_heap_extra_B=57713338 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=32 +#----------- +time=40740916438 +mem_heap_B=169303352 +mem_heap_extra_B=57221608 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=33 +#----------- +time=42360093501 +mem_heap_B=174575816 +mem_heap_extra_B=57427056 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=34 +#----------- +time=43701503391 +mem_heap_B=187162492 +mem_heap_extra_B=66143132 +mem_stacks_B=0 +heap_tree=detailed +n7: 187162492 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 102591288 0x4F0FC9B: heap_assign_page (gc.c:7913) + n4: 74561328 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 53118000 0x50240D3: str_new0 (string.c:723) + n2: 42200208 0x503420C: rb_str_subseq (string.c:2457) + n2: 41987736 0x50344DC: split_string.part.34 (string.c:7680) + n1: 35057880 0x503500A: rb_str_split_m (string.c:7893) + n1: 35057880 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 35057880 0x5092F70: vm_exec_core (insns.def:765) + n1: 35057880 0x509998D: rb_vm_exec (vm.c:1885) + n1: 35057880 0x509A58C: rb_yield (vm.c:1092) + n1: 35057880 0x4F2E908: io_s_foreach (io.c:10328) + n1: 35057880 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 35057880 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 35057880 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 35057880 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 35057880 0x5093011: vm_exec_core (insns.def:750) + n1: 35057880 0x509998D: rb_vm_exec (vm.c:1885) + n1: 35057880 0x509A58C: rb_yield (vm.c:1092) + n1: 35057880 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 35057880 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 35057880 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 35057880 0x5093011: vm_exec_core (insns.def:750) + n1: 35057880 0x509998D: rb_vm_exec (vm.c:1885) + n1: 35057880 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 35057880 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 35057880 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 35057880 0x108969: main (main.c:42) + n1: 6929856 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 6929856 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6929856 0x5092F70: vm_exec_core (insns.def:765) + n1: 6929856 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6929856 0x509A58C: rb_yield (vm.c:1092) + n1: 6929856 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6929856 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6929856 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6929856 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6929856 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6929856 0x5093011: vm_exec_core (insns.def:750) + n1: 6929856 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6929856 0x509A58C: rb_yield (vm.c:1092) + n1: 6929856 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6929856 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6929856 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6929856 0x5093011: vm_exec_core (insns.def:750) + n1: 6929856 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6929856 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6929856 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6929856 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6929856 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 7109640 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 6652008 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 6652008 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6652008 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6652008 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6652008 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6652008 0x5093011: vm_exec_core (insns.def:750) + n1: 6652008 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6652008 0x509A58C: rb_yield (vm.c:1092) + n1: 6652008 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6652008 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6652008 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6652008 0x5093011: vm_exec_core (insns.def:750) + n1: 6652008 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6652008 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6652008 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6652008 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6652008 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 3530304 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 3530304 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 3530304 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3530304 0x5092F70: vm_exec_core (insns.def:765) + n1: 3530304 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3530304 0x509A58C: rb_yield (vm.c:1092) + n1: 3530304 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3530304 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3530304 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3530304 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3530304 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3530304 0x5093011: vm_exec_core (insns.def:750) + n1: 3530304 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3530304 0x509A58C: rb_yield (vm.c:1092) + n1: 3530304 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3530304 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3530304 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3530304 0x5093011: vm_exec_core (insns.def:750) + n1: 3530304 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3530304 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3530304 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3530304 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3530304 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 7403832 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 6946200 0x50350C5: rb_str_split_m (string.c:7813) + n1: 6946200 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6946200 0x5092F70: vm_exec_core (insns.def:765) + n1: 6946200 0x509998D: rb_vm_exec (vm.c:1885) + n2: 6946200 0x509A58C: rb_yield (vm.c:1092) + n1: 6929856 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6929856 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6929856 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6929856 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6929856 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6929856 0x5093011: vm_exec_core (insns.def:750) + n1: 6929856 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6929856 0x509A58C: rb_yield (vm.c:1092) + n1: 6929856 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6929856 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6929856 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6929856 0x5093011: vm_exec_core (insns.def:750) + n1: 6929856 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6929856 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6929856 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6929856 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6929856 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 457632 in 3 places, all below massif's threshold (1.00%) + n0: 7175016 in 28 places, all below massif's threshold (1.00%) + n2: 6864480 0x502DC23: rb_str_resurrect (string.c:723) + n1: 6848136 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 6848136 0x5093B24: vm_exec_core (insns.def:385) + n1: 6848136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6848136 0x509A58C: rb_yield (vm.c:1092) + n1: 6848136 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6848136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6848136 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6848136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6848136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6848136 0x5093011: vm_exec_core (insns.def:750) + n1: 6848136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6848136 0x509A58C: rb_yield (vm.c:1092) + n1: 6848136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6848136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6848136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6848136 0x5093011: vm_exec_core (insns.def:750) + n1: 6848136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6848136 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6848136 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6848136 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6848136 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n4: 27229104 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n3: 19841616 0x50240D3: str_new0 (string.c:723) + n1: 15494112 0x503420C: rb_str_subseq (string.c:2457) + n2: 15494112 0x50344DC: split_string.part.34 (string.c:7680) + n1: 12911760 0x503500A: rb_str_split_m (string.c:7893) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x5092F70: vm_exec_core (insns.def:765) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12911760 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12911760 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12911760 0x108969: main (main.c:42) + n1: 2582352 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 2582352 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2582352 0x5092F70: vm_exec_core (insns.def:765) + n1: 2582352 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2582352 0x509A58C: rb_yield (vm.c:1092) + n1: 2582352 0x4F2E908: io_s_foreach (io.c:10328) + n1: 2582352 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2582352 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2582352 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2582352 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2582352 0x5093011: vm_exec_core (insns.def:750) + n1: 2582352 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2582352 0x509A58C: rb_yield (vm.c:1092) + n1: 2582352 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2582352 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2582352 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2582352 0x5093011: vm_exec_core (insns.def:750) + n1: 2582352 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2582352 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2582352 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2582352 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2582352 0x108969: main (main.c:42) + n2: 2958264 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 2941920 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 2941920 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2941920 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2941920 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2941920 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2941920 0x5093011: vm_exec_core (insns.def:750) + n1: 2941920 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2941920 0x509A58C: rb_yield (vm.c:1092) + n1: 2941920 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2941920 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2941920 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2941920 0x5093011: vm_exec_core (insns.def:750) + n1: 2941920 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2941920 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2941920 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2941920 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2941920 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 1389240 in 1 place, below massif's threshold (1.00%) + n1: 2696760 0x502DC23: rb_str_resurrect (string.c:723) + n1: 2696760 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 2696760 0x5093B24: vm_exec_core (insns.def:385) + n1: 2696760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2696760 0x509A58C: rb_yield (vm.c:1092) + n1: 2696760 0x4F2E908: io_s_foreach (io.c:10328) + n1: 2696760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2696760 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 2696760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2696760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2696760 0x5093011: vm_exec_core (insns.def:750) + n1: 2696760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2696760 0x509A58C: rb_yield (vm.c:1092) + n1: 2696760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 2696760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 2696760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 2696760 0x5093011: vm_exec_core (insns.def:750) + n1: 2696760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 2696760 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 2696760 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 2696760 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 2696760 0x108969: main (main.c:42) + n1: 2615040 0x4E6A217: rb_ary_new_capa (array.c:647) + n0: 2615040 in 2 places, all below massif's threshold (1.00%) + n0: 2075688 in 3 places, all below massif's threshold (1.00%) + n0: 800856 in 4 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 16741335 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 16248928 0x4E68137: ary_resize_capa (array.c:335) + n2: 16248928 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 16243664 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 16243664 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 16240056 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 16240056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 16240056 0x5092F70: vm_exec_core (insns.def:765) + n1: 16240056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 16240056 0x509A58C: rb_yield (vm.c:1092) + n1: 16240056 0x4F2E908: io_s_foreach (io.c:10328) + n1: 16240056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 16240056 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 16240056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 16240056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 16240056 0x5093011: vm_exec_core (insns.def:750) + n1: 16240056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 16240056 0x509A58C: rb_yield (vm.c:1092) + n1: 16240056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 16240056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 16240056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 16240056 0x5093011: vm_exec_core (insns.def:750) + n1: 16240056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 16240056 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 16240056 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 16240056 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 16240056 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 492407 in 13 places, all below massif's threshold (1.00%) + n2: 14023992 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 14015976 0x4F0F06D: gc_mark_children (gc.c:3156) + n3: 14015976 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n3: 10673304 0x50240D3: str_new0 (string.c:723) + n1: 5402784 0x503420C: rb_str_subseq (string.c:2457) + n2: 5402784 0x50344DC: split_string.part.34 (string.c:7680) + n1: 4188360 0x503500A: rb_str_split_m (string.c:7893) + n1: 4188360 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4188360 0x5092F70: vm_exec_core (insns.def:765) + n1: 4188360 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4188360 0x509A58C: rb_yield (vm.c:1092) + n1: 4188360 0x4F2E908: io_s_foreach (io.c:10328) + n1: 4188360 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4188360 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4188360 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4188360 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4188360 0x5093011: vm_exec_core (insns.def:750) + n1: 4188360 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4188360 0x509A58C: rb_yield (vm.c:1092) + n1: 4188360 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4188360 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4188360 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4188360 0x5093011: vm_exec_core (insns.def:750) + n1: 4188360 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4188360 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4188360 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4188360 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4188360 0x108969: main (main.c:42) + n0: 1214424 in 1 place, below massif's threshold (1.00%) + n1: 4324632 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 4324632 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x509A58C: rb_yield (vm.c:1092) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4324632 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4324632 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4324632 0x108969: main (main.c:42) + n0: 945888 in 1 place, below massif's threshold (1.00%) + n1: 3342672 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 3342672 0x50350C5: rb_str_split_m (string.c:7813) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x5092F70: vm_exec_core (insns.def:765) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x509A58C: rb_yield (vm.c:1092) + n1: 3342672 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3342672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3342672 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3342672 0x5093011: vm_exec_core (insns.def:750) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x509A58C: rb_yield (vm.c:1092) + n1: 3342672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3342672 0x5093011: vm_exec_core (insns.def:750) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3342672 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3342672 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3342672 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 8016 in 6 places, all below massif's threshold (1.00%) + n3: 13815101 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 6579612 in 122 places, all below massif's threshold (1.00%) + n2: 3727098 0x50241CA: str_new0 (string.c:748) + n2: 3632857 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 3632857 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 3632857 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3632857 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3632857 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3632857 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3632857 0x5093011: vm_exec_core (insns.def:750) + n1: 3632857 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3632857 0x509A58C: rb_yield (vm.c:1092) + n1: 3632857 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3632857 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3632857 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3632857 0x5093011: vm_exec_core (insns.def:750) + n1: 3632857 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3632857 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3632857 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3632857 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3632857 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n1: 3508391 0x502BC1D: rb_str_buf_new (string.c:1332) + n0: 3508391 in 13 places, all below massif's threshold (1.00%) + n1: 4116143 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 4116143 in 27 places, all below massif's threshold (1.00%) + n0: 2320201 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=35 +#----------- +time=45405689341 +mem_heap_B=208948134 +mem_heap_extra_B=87032050 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=36 +#----------- +time=46780380867 +mem_heap_B=224740084 +mem_heap_extra_B=88503492 +mem_stacks_B=0 +heap_tree=detailed +n7: 224740084 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 127221696 0x4F0FC9B: heap_assign_page (gc.c:7913) + n4: 99191736 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 70262856 0x50240D3: str_new0 (string.c:723) + n2: 56157984 0x503420C: rb_str_subseq (string.c:2457) + n2: 55945512 0x50344DC: split_string.part.34 (string.c:7680) + n1: 46253520 0x503500A: rb_str_split_m (string.c:7893) + n1: 46253520 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 46253520 0x5092F70: vm_exec_core (insns.def:765) + n1: 46253520 0x509998D: rb_vm_exec (vm.c:1885) + n1: 46253520 0x509A58C: rb_yield (vm.c:1092) + n1: 46253520 0x4F2E908: io_s_foreach (io.c:10328) + n1: 46253520 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 46253520 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 46253520 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 46253520 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 46253520 0x5093011: vm_exec_core (insns.def:750) + n1: 46253520 0x509998D: rb_vm_exec (vm.c:1885) + n1: 46253520 0x509A58C: rb_yield (vm.c:1092) + n1: 46253520 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 46253520 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 46253520 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 46253520 0x5093011: vm_exec_core (insns.def:750) + n1: 46253520 0x509998D: rb_vm_exec (vm.c:1885) + n1: 46253520 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 46253520 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 46253520 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 46253520 0x108969: main (main.c:42) + n1: 9691992 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 9691992 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 9691992 0x5092F70: vm_exec_core (insns.def:765) + n1: 9691992 0x509998D: rb_vm_exec (vm.c:1885) + n1: 9691992 0x509A58C: rb_yield (vm.c:1092) + n1: 9691992 0x4F2E908: io_s_foreach (io.c:10328) + n1: 9691992 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 9691992 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 9691992 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 9691992 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 9691992 0x5093011: vm_exec_core (insns.def:750) + n1: 9691992 0x509998D: rb_vm_exec (vm.c:1885) + n1: 9691992 0x509A58C: rb_yield (vm.c:1092) + n1: 9691992 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 9691992 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 9691992 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 9691992 0x5093011: vm_exec_core (insns.def:750) + n1: 9691992 0x509998D: rb_vm_exec (vm.c:1885) + n1: 9691992 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 9691992 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 9691992 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 9691992 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 9316080 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 8858448 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 8858448 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 8858448 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 8858448 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 8858448 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 8858448 0x5093011: vm_exec_core (insns.def:750) + n1: 8858448 0x509998D: rb_vm_exec (vm.c:1885) + n1: 8858448 0x509A58C: rb_yield (vm.c:1092) + n1: 8858448 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 8858448 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 8858448 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 8858448 0x5093011: vm_exec_core (insns.def:750) + n1: 8858448 0x509998D: rb_vm_exec (vm.c:1885) + n1: 8858448 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 8858448 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 8858448 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 8858448 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 4510944 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 4510944 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 4510944 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4510944 0x5092F70: vm_exec_core (insns.def:765) + n1: 4510944 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4510944 0x509A58C: rb_yield (vm.c:1092) + n1: 4510944 0x4F2E908: io_s_foreach (io.c:10328) + n1: 4510944 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4510944 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4510944 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4510944 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4510944 0x5093011: vm_exec_core (insns.def:750) + n1: 4510944 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4510944 0x509A58C: rb_yield (vm.c:1092) + n1: 4510944 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4510944 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4510944 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4510944 0x5093011: vm_exec_core (insns.def:750) + n1: 4510944 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4510944 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4510944 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4510944 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4510944 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 10264032 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 9610272 0x50350C5: rb_str_split_m (string.c:7813) + n1: 9610272 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 9610272 0x5092F70: vm_exec_core (insns.def:765) + n1: 9610272 0x509998D: rb_vm_exec (vm.c:1885) + n2: 9610272 0x509A58C: rb_yield (vm.c:1092) + n1: 9593928 0x4F2E908: io_s_foreach (io.c:10328) + n1: 9593928 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 9593928 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 9593928 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 9593928 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 9593928 0x5093011: vm_exec_core (insns.def:750) + n1: 9593928 0x509998D: rb_vm_exec (vm.c:1885) + n1: 9593928 0x509A58C: rb_yield (vm.c:1092) + n1: 9593928 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 9593928 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 9593928 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 9593928 0x5093011: vm_exec_core (insns.def:750) + n1: 9593928 0x509998D: rb_vm_exec (vm.c:1885) + n1: 9593928 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 9593928 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 9593928 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 9593928 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 653760 in 3 places, all below massif's threshold (1.00%) + n0: 9430488 in 28 places, all below massif's threshold (1.00%) + n2: 9234360 0x502DC23: rb_str_resurrect (string.c:723) + n1: 9218016 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 9218016 0x5093B24: vm_exec_core (insns.def:385) + n1: 9218016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 9218016 0x509A58C: rb_yield (vm.c:1092) + n1: 9218016 0x4F2E908: io_s_foreach (io.c:10328) + n1: 9218016 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 9218016 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 9218016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 9218016 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 9218016 0x5093011: vm_exec_core (insns.def:750) + n1: 9218016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 9218016 0x509A58C: rb_yield (vm.c:1092) + n1: 9218016 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 9218016 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 9218016 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 9218016 0x5093011: vm_exec_core (insns.def:750) + n1: 9218016 0x509998D: rb_vm_exec (vm.c:1885) + n1: 9218016 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 9218016 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 9218016 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 9218016 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n2: 27229104 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n2: 19841616 0x50240D3: str_new0 (string.c:723) + n1: 15494112 0x503420C: rb_str_subseq (string.c:2457) + n2: 15494112 0x50344DC: split_string.part.34 (string.c:7680) + n1: 12911760 0x503500A: rb_str_split_m (string.c:7893) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x5092F70: vm_exec_core (insns.def:765) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12911760 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12911760 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12911760 0x108969: main (main.c:42) + n0: 2582352 in 1 place, below massif's threshold (1.00%) + n0: 4347504 in 2 places, all below massif's threshold (1.00%) + n0: 7387488 in 5 places, all below massif's threshold (1.00%) + n0: 800856 in 4 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 24864998 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 24369008 0x4E68137: ary_resize_capa (array.c:335) + n2: 24369008 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 24363744 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 24363744 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 24360136 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x5092F70: vm_exec_core (insns.def:765) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4F2E908: io_s_foreach (io.c:10328) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 24360136 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 24360136 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 24360136 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 495990 in 13 places, all below massif's threshold (1.00%) + n3: 18220670 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n0: 6585992 in 122 places, all below massif's threshold (1.00%) + n2: 5980591 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 3782346 0x503C111: rb_str_concat_literals (string.c:2959) + n2: 3782346 0x5093B24: vm_exec_core (insns.def:385) + n2: 3782346 0x509998D: rb_vm_exec (vm.c:1885) + n2: 3771590 0x509A58C: rb_yield (vm.c:1092) + n1: 3771590 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3771590 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3771590 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3771590 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3771590 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3771590 0x5093011: vm_exec_core (insns.def:750) + n1: 3771590 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3771590 0x509A58C: rb_yield (vm.c:1092) + n1: 3771590 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3771590 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3771590 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3771590 0x5093011: vm_exec_core (insns.def:750) + n1: 3771590 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3771590 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3771590 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3771590 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3771590 0x108969: main (main.c:42) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 10756 in 3 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 2198245 in 12 places, all below massif's threshold (1.00%) + n2: 5654087 0x50241CA: str_new0 (string.c:748) + n2: 5559846 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 5559846 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 5559846 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5559846 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5559846 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5559846 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5559846 0x5093011: vm_exec_core (insns.def:750) + n1: 5559846 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5559846 0x509A58C: rb_yield (vm.c:1092) + n1: 5559846 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5559846 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5559846 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5559846 0x5093011: vm_exec_core (insns.def:750) + n1: 5559846 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5559846 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5559846 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5559846 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5559846 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n2: 14019984 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 14011968 0x4F0F06D: gc_mark_children (gc.c:3156) + n3: 14011968 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n3: 10669296 0x50240D3: str_new0 (string.c:723) + n1: 5398776 0x503420C: rb_str_subseq (string.c:2457) + n2: 5398776 0x50344DC: split_string.part.34 (string.c:7680) + n1: 4184352 0x503500A: rb_str_split_m (string.c:7893) + n1: 4184352 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4184352 0x5092F70: vm_exec_core (insns.def:765) + n1: 4184352 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4184352 0x509A58C: rb_yield (vm.c:1092) + n1: 4184352 0x4F2E908: io_s_foreach (io.c:10328) + n1: 4184352 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4184352 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4184352 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4184352 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4184352 0x5093011: vm_exec_core (insns.def:750) + n1: 4184352 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4184352 0x509A58C: rb_yield (vm.c:1092) + n1: 4184352 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4184352 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4184352 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4184352 0x5093011: vm_exec_core (insns.def:750) + n1: 4184352 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4184352 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4184352 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4184352 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4184352 0x108969: main (main.c:42) + n0: 1214424 in 1 place, below massif's threshold (1.00%) + n1: 4324632 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 4324632 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x509A58C: rb_yield (vm.c:1092) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4324632 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4324632 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4324632 0x108969: main (main.c:42) + n0: 945888 in 1 place, below massif's threshold (1.00%) + n1: 3342672 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 3342672 0x50350C5: rb_str_split_m (string.c:7813) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x5092F70: vm_exec_core (insns.def:765) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x509A58C: rb_yield (vm.c:1092) + n1: 3342672 0x4F2E908: io_s_foreach (io.c:10328) + n1: 3342672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3342672 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3342672 0x5093011: vm_exec_core (insns.def:750) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x509A58C: rb_yield (vm.c:1092) + n1: 3342672 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 3342672 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 3342672 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 3342672 0x5093011: vm_exec_core (insns.def:750) + n1: 3342672 0x509998D: rb_vm_exec (vm.c:1885) + n1: 3342672 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 3342672 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 3342672 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 3342672 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 8016 in 6 places, all below massif's threshold (1.00%) + n1: 4116143 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 4116143 in 27 places, all below massif's threshold (1.00%) + n0: 2742161 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=37 +#----------- +time=48073954780 +mem_heap_B=221930667 +mem_heap_extra_B=87473845 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=38 +#----------- +time=48720786948 +mem_heap_B=224395624 +mem_heap_extra_B=87954352 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=39 +#----------- +time=50014364752 +mem_heap_B=221783130 +mem_heap_extra_B=87766454 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=40 +#----------- +time=51307907438 +mem_heap_B=226262820 +mem_heap_extra_B=88626580 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=41 +#----------- +time=52601442543 +mem_heap_B=220507839 +mem_heap_extra_B=87528849 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=42 +#----------- +time=54024292174 +mem_heap_B=225019654 +mem_heap_extra_B=88390290 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=43 +#----------- +time=55411399107 +mem_heap_B=224390036 +mem_heap_extra_B=88271980 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=44 +#----------- +time=56705530813 +mem_heap_B=223810364 +mem_heap_extra_B=88159260 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=45 +#----------- +time=58263347412 +mem_heap_B=225801648 +mem_heap_extra_B=87823984 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=46 +#----------- +time=59556905298 +mem_heap_B=227656159 +mem_heap_extra_B=88574481 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=47 +#----------- +time=60447510349 +mem_heap_B=257978938 +mem_heap_extra_B=109614190 +mem_stacks_B=0 +heap_tree=detailed +n7: 257978938 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 153339408 0x4F0FC9B: heap_assign_page (gc.c:7913) + n6: 125293104 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 88895016 0x50240D3: str_new0 (string.c:723) + n2: 70720488 0x503420C: rb_str_subseq (string.c:2457) + n2: 70508016 0x50344DC: split_string.part.34 (string.c:7680) + n1: 58021200 0x503500A: rb_str_split_m (string.c:7893) + n1: 58021200 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 58021200 0x5092F70: vm_exec_core (insns.def:765) + n1: 58021200 0x509998D: rb_vm_exec (vm.c:1885) + n1: 58021200 0x509A58C: rb_yield (vm.c:1092) + n1: 58021200 0x4F2E908: io_s_foreach (io.c:10328) + n1: 58021200 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 58021200 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 58021200 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 58021200 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 58021200 0x5093011: vm_exec_core (insns.def:750) + n1: 58021200 0x509998D: rb_vm_exec (vm.c:1885) + n1: 58021200 0x509A58C: rb_yield (vm.c:1092) + n1: 58021200 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 58021200 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 58021200 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 58021200 0x5093011: vm_exec_core (insns.def:750) + n1: 58021200 0x509998D: rb_vm_exec (vm.c:1885) + n1: 58021200 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 58021200 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 58021200 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 58021200 0x108969: main (main.c:42) + n1: 12486816 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 12486816 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12486816 0x5092F70: vm_exec_core (insns.def:765) + n1: 12486816 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12486816 0x509A58C: rb_yield (vm.c:1092) + n1: 12486816 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12486816 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12486816 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12486816 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12486816 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12486816 0x5093011: vm_exec_core (insns.def:750) + n1: 12486816 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12486816 0x509A58C: rb_yield (vm.c:1092) + n1: 12486816 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12486816 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12486816 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12486816 0x5093011: vm_exec_core (insns.def:750) + n1: 12486816 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12486816 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12486816 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12486816 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12486816 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 12159936 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 11702304 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 11702304 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 11702304 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 11702304 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 11702304 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 11702304 0x5093011: vm_exec_core (insns.def:750) + n1: 11702304 0x509998D: rb_vm_exec (vm.c:1885) + n1: 11702304 0x509A58C: rb_yield (vm.c:1092) + n1: 11702304 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 11702304 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 11702304 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 11702304 0x5093011: vm_exec_core (insns.def:750) + n1: 11702304 0x509998D: rb_vm_exec (vm.c:1885) + n1: 11702304 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 11702304 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 11702304 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 11702304 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 5736744 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 5736744 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 5736744 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5736744 0x5092F70: vm_exec_core (insns.def:765) + n1: 5736744 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5736744 0x509A58C: rb_yield (vm.c:1092) + n1: 5736744 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5736744 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5736744 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5736744 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5736744 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5736744 0x5093011: vm_exec_core (insns.def:750) + n1: 5736744 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5736744 0x509A58C: rb_yield (vm.c:1092) + n1: 5736744 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5736744 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5736744 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5736744 0x5093011: vm_exec_core (insns.def:750) + n1: 5736744 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5736744 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5736744 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5736744 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5736744 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 13107888 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 12274344 0x50350C5: rb_str_split_m (string.c:7813) + n1: 12274344 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12274344 0x5092F70: vm_exec_core (insns.def:765) + n1: 12274344 0x509998D: rb_vm_exec (vm.c:1885) + n2: 12274344 0x509A58C: rb_yield (vm.c:1092) + n1: 12258000 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12258000 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12258000 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12258000 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12258000 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12258000 0x5093011: vm_exec_core (insns.def:750) + n1: 12258000 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12258000 0x509A58C: rb_yield (vm.c:1092) + n1: 12258000 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12258000 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12258000 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12258000 0x5093011: vm_exec_core (insns.def:750) + n1: 12258000 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12258000 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12258000 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12258000 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12258000 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 833544 in 3 places, all below massif's threshold (1.00%) + n2: 11669616 0x502DC23: rb_str_resurrect (string.c:723) + n1: 11653272 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 11653272 0x5093B24: vm_exec_core (insns.def:385) + n1: 11653272 0x509998D: rb_vm_exec (vm.c:1885) + n1: 11653272 0x509A58C: rb_yield (vm.c:1092) + n1: 11653272 0x4F2E908: io_s_foreach (io.c:10328) + n1: 11653272 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 11653272 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 11653272 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 11653272 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 11653272 0x5093011: vm_exec_core (insns.def:750) + n1: 11653272 0x509998D: rb_vm_exec (vm.c:1885) + n1: 11653272 0x509A58C: rb_yield (vm.c:1092) + n1: 11653272 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 11653272 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 11653272 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 11653272 0x5093011: vm_exec_core (insns.def:750) + n1: 11653272 0x509998D: rb_vm_exec (vm.c:1885) + n1: 11653272 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 11653272 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 11653272 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 11653272 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n1: 4053312 0x502BBDB: rb_str_buf_new (string.c:723) + n0: 4053312 in 4 places, all below massif's threshold (1.00%) + n0: 3889872 in 26 places, all below massif's threshold (1.00%) + n1: 3677400 0x5029B4D: rb_usascii_str_new_static (string.c:723) + n1: 3677400 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n0: 3677400 in 2 places, all below massif's threshold (1.00%) + n2: 27229104 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n2: 19841616 0x50240D3: str_new0 (string.c:723) + n1: 15494112 0x503420C: rb_str_subseq (string.c:2457) + n2: 15494112 0x50344DC: split_string.part.34 (string.c:7680) + n1: 12911760 0x503500A: rb_str_split_m (string.c:7893) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x5092F70: vm_exec_core (insns.def:765) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12911760 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12911760 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12911760 0x108969: main (main.c:42) + n0: 2582352 in 1 place, below massif's threshold (1.00%) + n0: 4347504 in 2 places, all below massif's threshold (1.00%) + n0: 7387488 in 5 places, all below massif's threshold (1.00%) + n0: 817200 in 4 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 24865895 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 24369008 0x4E68137: ary_resize_capa (array.c:335) + n2: 24369008 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 24363744 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 24363744 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 24360136 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x5092F70: vm_exec_core (insns.def:765) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4F2E908: io_s_foreach (io.c:10328) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 24360136 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 24360136 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 24360136 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 496887 in 13 places, all below massif's threshold (1.00%) + n3: 19652899 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 6657971 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 4209706 0x503C111: rb_str_concat_literals (string.c:2959) + n2: 4209706 0x5093B24: vm_exec_core (insns.def:385) + n2: 4209706 0x509998D: rb_vm_exec (vm.c:1885) + n2: 4198950 0x509A58C: rb_yield (vm.c:1092) + n1: 4198950 0x4F2E908: io_s_foreach (io.c:10328) + n1: 4198950 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4198950 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4198950 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4198950 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4198950 0x5093011: vm_exec_core (insns.def:750) + n1: 4198950 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4198950 0x509A58C: rb_yield (vm.c:1092) + n1: 4198950 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4198950 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4198950 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4198950 0x5093011: vm_exec_core (insns.def:750) + n1: 4198950 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4198950 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4198950 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4198950 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4198950 0x108969: main (main.c:42) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 10756 in 3 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 2448265 in 12 places, all below massif's threshold (1.00%) + n0: 6588523 in 122 places, all below massif's threshold (1.00%) + n2: 6406405 0x50241CA: str_new0 (string.c:748) + n2: 6312164 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 6312164 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 6312164 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6312164 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6312164 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6312164 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6312164 0x5093011: vm_exec_core (insns.def:750) + n1: 6312164 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6312164 0x509A58C: rb_yield (vm.c:1092) + n1: 6312164 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6312164 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6312164 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6312164 0x5093011: vm_exec_core (insns.def:750) + n1: 6312164 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6312164 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6312164 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6312164 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6312164 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n2: 19238400 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 19234392 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 19234392 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n3: 15891720 0x50240D3: str_new0 (string.c:723) + n1: 11567088 0x503420C: rb_str_subseq (string.c:2457) + n2: 11567088 0x50344DC: split_string.part.34 (string.c:7680) + n1: 7947864 0x503500A: rb_str_split_m (string.c:7893) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x5092F70: vm_exec_core (insns.def:765) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4F2E908: io_s_foreach (io.c:10328) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 7947864 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 7947864 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 7947864 0x108969: main (main.c:42) + n0: 3619224 in 1 place, below massif's threshold (1.00%) + n1: 4324632 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 4324632 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x509A58C: rb_yield (vm.c:1092) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4324632 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4324632 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4324632 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 3342672 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 4008 in 6 places, all below massif's threshold (1.00%) + n1: 4116143 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 4116143 in 27 places, all below massif's threshold (1.00%) + n0: 3211761 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=48 +#----------- +time=61942343293 +mem_heap_B=286962570 +mem_heap_extra_B=127426982 +mem_stacks_B=0 +heap_tree=detailed +n6: 286962570 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 172494576 0x4F0FC9B: heap_assign_page (gc.c:7913) + n6: 144448272 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 103114296 0x50240D3: str_new0 (string.c:723) + n2: 82112256 0x503420C: rb_str_subseq (string.c:2457) + n2: 81899784 0x50344DC: split_string.part.34 (string.c:7680) + n1: 67222872 0x503500A: rb_str_split_m (string.c:7893) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x5092F70: vm_exec_core (insns.def:765) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4F2E908: io_s_foreach (io.c:10328) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 67222872 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 67222872 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 67222872 0x108969: main (main.c:42) + n1: 14676912 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x5092F70: vm_exec_core (insns.def:765) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14676912 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14676912 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14676912 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 14333688 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 13876056 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x509A58C: rb_yield (vm.c:1092) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13876056 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13876056 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13876056 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 6390504 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 6390504 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x5092F70: vm_exec_core (insns.def:765) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6390504 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6390504 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6390504 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 15085512 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 14170248 0x50350C5: rb_str_split_m (string.c:7813) + n1: 14170248 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14170248 0x5092F70: vm_exec_core (insns.def:765) + n1: 14170248 0x509998D: rb_vm_exec (vm.c:1885) + n2: 14170248 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14153904 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14153904 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14153904 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 915264 in 3 places, all below massif's threshold (1.00%) + n2: 13369392 0x502DC23: rb_str_resurrect (string.c:723) + n1: 13353048 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 13353048 0x5093B24: vm_exec_core (insns.def:385) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4F2E908: io_s_foreach (io.c:10328) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13353048 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13353048 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13353048 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n1: 4527288 0x502BBDB: rb_str_buf_new (string.c:723) + n0: 4527288 in 4 places, all below massif's threshold (1.00%) + n0: 4200408 in 26 places, all below massif's threshold (1.00%) + n1: 4151376 0x5029B4D: rb_usascii_str_new_static (string.c:723) + n1: 4151376 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n0: 4151376 in 2 places, all below massif's threshold (1.00%) + n2: 27229104 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n2: 19841616 0x50240D3: str_new0 (string.c:723) + n1: 15494112 0x503420C: rb_str_subseq (string.c:2457) + n2: 15494112 0x50344DC: split_string.part.34 (string.c:7680) + n1: 12911760 0x503500A: rb_str_split_m (string.c:7893) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x5092F70: vm_exec_core (insns.def:765) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12911760 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12911760 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12911760 0x108969: main (main.c:42) + n0: 2582352 in 1 place, below massif's threshold (1.00%) + n0: 4347504 in 2 places, all below massif's threshold (1.00%) + n0: 7387488 in 5 places, all below massif's threshold (1.00%) + n0: 817200 in 4 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 29152742 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 9044080 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 5720031 0x503C111: rb_str_concat_literals (string.c:2959) + n2: 5720031 0x5093B24: vm_exec_core (insns.def:385) + n2: 5720031 0x509998D: rb_vm_exec (vm.c:1885) + n2: 5709275 0x509A58C: rb_yield (vm.c:1092) + n1: 5709275 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5709275 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5709275 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5709275 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5709275 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5709275 0x5093011: vm_exec_core (insns.def:750) + n1: 5709275 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5709275 0x509A58C: rb_yield (vm.c:1092) + n1: 5709275 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5709275 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5709275 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5709275 0x5093011: vm_exec_core (insns.def:750) + n1: 5709275 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5709275 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5709275 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5709275 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5709275 0x108969: main (main.c:42) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 10756 in 3 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 3324049 in 12 places, all below massif's threshold (1.00%) + n2: 8265165 0x50241CA: str_new0 (string.c:748) + n2: 8170924 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 8170924 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 8170924 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 8170924 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 8170924 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 8170924 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 8170924 0x5093011: vm_exec_core (insns.def:750) + n1: 8170924 0x509998D: rb_vm_exec (vm.c:1885) + n1: 8170924 0x509A58C: rb_yield (vm.c:1092) + n1: 8170924 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 8170924 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 8170924 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 8170924 0x5093011: vm_exec_core (insns.def:750) + n1: 8170924 0x509998D: rb_vm_exec (vm.c:1885) + n1: 8170924 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 8170924 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 8170924 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 8170924 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n0: 6593097 in 121 places, all below massif's threshold (1.00%) + n1: 5250400 0x4E6822C: ary_resize_capa (array.c:285) + n1: 5250400 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n2: 5250400 0x4E6C89D: rb_ary_push (array.c:1155) + n1: 5250240 0x50343A2: split_string.part.34 (string.c:7682) + n1: 5250240 0x503500A: rb_str_split_m (string.c:7893) + n1: 5250240 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5250240 0x5092F70: vm_exec_core (insns.def:765) + n1: 5250240 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5250240 0x509A58C: rb_yield (vm.c:1092) + n1: 5250240 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5250240 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5250240 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5250240 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5250240 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5250240 0x5093011: vm_exec_core (insns.def:750) + n1: 5250240 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5250240 0x509A58C: rb_yield (vm.c:1092) + n1: 5250240 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5250240 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5250240 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5250240 0x5093011: vm_exec_core (insns.def:750) + n1: 5250240 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5250240 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5250240 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5250240 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5250240 0x108969: main (main.c:42) + n0: 160 in 1 place, below massif's threshold (1.00%) + n2: 24870364 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 24369008 0x4E68137: ary_resize_capa (array.c:335) + n2: 24369008 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 24363744 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 24363744 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 24360136 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x5092F70: vm_exec_core (insns.def:765) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4F2E908: io_s_foreach (io.c:10328) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 24360136 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 24360136 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 24360136 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 501356 in 13 places, all below massif's threshold (1.00%) + n2: 19234392 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 19230384 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 19230384 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n3: 15887712 0x50240D3: str_new0 (string.c:723) + n1: 11563080 0x503420C: rb_str_subseq (string.c:2457) + n2: 11563080 0x50344DC: split_string.part.34 (string.c:7680) + n1: 7947864 0x503500A: rb_str_split_m (string.c:7893) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x5092F70: vm_exec_core (insns.def:765) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4F2E908: io_s_foreach (io.c:10328) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 7947864 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 7947864 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 7947864 0x108969: main (main.c:42) + n0: 3615216 in 1 place, below massif's threshold (1.00%) + n1: 4324632 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 4324632 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x509A58C: rb_yield (vm.c:1092) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4324632 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4324632 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4324632 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 3342672 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 4008 in 6 places, all below massif's threshold (1.00%) + n0: 7656064 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=49 +#----------- +time=63249170934 +mem_heap_B=299003711 +mem_heap_extra_B=127944793 +mem_stacks_B=0 +heap_tree=detailed +n6: 299003711 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 172494576 0x4F0FC9B: heap_assign_page (gc.c:7913) + n5: 144448272 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 103114296 0x50240D3: str_new0 (string.c:723) + n2: 82112256 0x503420C: rb_str_subseq (string.c:2457) + n2: 81899784 0x50344DC: split_string.part.34 (string.c:7680) + n1: 67222872 0x503500A: rb_str_split_m (string.c:7893) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x5092F70: vm_exec_core (insns.def:765) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4F2E908: io_s_foreach (io.c:10328) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 67222872 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 67222872 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 67222872 0x108969: main (main.c:42) + n1: 14676912 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x5092F70: vm_exec_core (insns.def:765) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14676912 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14676912 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14676912 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 14333688 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 13876056 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x509A58C: rb_yield (vm.c:1092) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13876056 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13876056 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13876056 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 6390504 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 6390504 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x5092F70: vm_exec_core (insns.def:765) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6390504 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6390504 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6390504 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 15085512 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 14170248 0x50350C5: rb_str_split_m (string.c:7813) + n1: 14170248 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14170248 0x5092F70: vm_exec_core (insns.def:765) + n1: 14170248 0x509998D: rb_vm_exec (vm.c:1885) + n2: 14170248 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14153904 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14153904 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14153904 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 915264 in 3 places, all below massif's threshold (1.00%) + n2: 13369392 0x502DC23: rb_str_resurrect (string.c:723) + n1: 13353048 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 13353048 0x5093B24: vm_exec_core (insns.def:385) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4F2E908: io_s_foreach (io.c:10328) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13353048 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13353048 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13353048 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 8351784 in 27 places, all below massif's threshold (1.00%) + n1: 4527288 0x502BBDB: rb_str_buf_new (string.c:723) + n0: 4527288 in 4 places, all below massif's threshold (1.00%) + n2: 27229104 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n2: 19841616 0x50240D3: str_new0 (string.c:723) + n1: 15494112 0x503420C: rb_str_subseq (string.c:2457) + n2: 15494112 0x50344DC: split_string.part.34 (string.c:7680) + n1: 12911760 0x503500A: rb_str_split_m (string.c:7893) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x5092F70: vm_exec_core (insns.def:765) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12911760 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12911760 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12911760 0x108969: main (main.c:42) + n0: 2582352 in 1 place, below massif's threshold (1.00%) + n0: 4347504 in 2 places, all below massif's threshold (1.00%) + n0: 7387488 in 5 places, all below massif's threshold (1.00%) + n0: 817200 in 4 places, all below massif's threshold (1.00%) + n4: 41194093 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 18011520 0x4E6822C: ary_resize_capa (array.c:285) + n1: 18011520 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n2: 18011520 0x4E6C89D: rb_ary_push (array.c:1155) + n1: 18011360 0x50343A2: split_string.part.34 (string.c:7682) + n1: 18011360 0x503500A: rb_str_split_m (string.c:7893) + n1: 18011360 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 18011360 0x5092F70: vm_exec_core (insns.def:765) + n1: 18011360 0x509998D: rb_vm_exec (vm.c:1885) + n1: 18011360 0x509A58C: rb_yield (vm.c:1092) + n1: 18011360 0x4F2E908: io_s_foreach (io.c:10328) + n1: 18011360 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 18011360 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 18011360 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 18011360 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 18011360 0x5093011: vm_exec_core (insns.def:750) + n1: 18011360 0x509998D: rb_vm_exec (vm.c:1885) + n1: 18011360 0x509A58C: rb_yield (vm.c:1092) + n1: 18011360 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 18011360 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 18011360 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 18011360 0x5093011: vm_exec_core (insns.def:750) + n1: 18011360 0x509998D: rb_vm_exec (vm.c:1885) + n1: 18011360 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 18011360 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 18011360 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 18011360 0x108969: main (main.c:42) + n0: 160 in 1 place, below massif's threshold (1.00%) + n2: 8629758 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 5459737 0x503C111: rb_str_concat_literals (string.c:2959) + n2: 5459737 0x5093B24: vm_exec_core (insns.def:385) + n2: 5459737 0x509998D: rb_vm_exec (vm.c:1885) + n2: 5448981 0x509A58C: rb_yield (vm.c:1092) + n1: 5448981 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5448981 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5448981 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5448981 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5448981 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5448981 0x5093011: vm_exec_core (insns.def:750) + n1: 5448981 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5448981 0x509A58C: rb_yield (vm.c:1092) + n1: 5448981 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5448981 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5448981 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5448981 0x5093011: vm_exec_core (insns.def:750) + n1: 5448981 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5448981 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5448981 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5448981 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5448981 0x108969: main (main.c:42) + n0: 0 in 3 places, all below massif's threshold (1.00%) + n0: 10756 in 3 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 3170021 in 12 places, all below massif's threshold (1.00%) + n2: 7961158 0x50241CA: str_new0 (string.c:748) + n2: 7866917 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 7866917 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 7866917 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7866917 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 7866917 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7866917 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7866917 0x5093011: vm_exec_core (insns.def:750) + n1: 7866917 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7866917 0x509A58C: rb_yield (vm.c:1092) + n1: 7866917 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7866917 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7866917 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7866917 0x5093011: vm_exec_core (insns.def:750) + n1: 7866917 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7866917 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 7866917 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 7866917 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 7866917 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n0: 6591657 in 121 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 24870154 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 24369008 0x4E68137: ary_resize_capa (array.c:335) + n2: 24369008 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 24363744 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 24363744 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 24360136 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x5092F70: vm_exec_core (insns.def:765) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4F2E908: io_s_foreach (io.c:10328) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 24360136 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 24360136 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 24360136 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 501146 in 13 places, all below massif's threshold (1.00%) + n2: 19234392 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 19230384 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 19230384 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n3: 15887712 0x50240D3: str_new0 (string.c:723) + n1: 11563080 0x503420C: rb_str_subseq (string.c:2457) + n2: 11563080 0x50344DC: split_string.part.34 (string.c:7680) + n1: 7947864 0x503500A: rb_str_split_m (string.c:7893) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x5092F70: vm_exec_core (insns.def:765) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4F2E908: io_s_foreach (io.c:10328) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 7947864 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 7947864 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 7947864 0x108969: main (main.c:42) + n0: 3615216 in 1 place, below massif's threshold (1.00%) + n1: 4324632 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 4324632 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x509A58C: rb_yield (vm.c:1092) + n1: 4324632 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 4324632 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 4324632 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 4324632 0x5093011: vm_exec_core (insns.def:750) + n1: 4324632 0x509998D: rb_vm_exec (vm.c:1885) + n1: 4324632 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 4324632 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 4324632 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 4324632 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 3342672 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 4008 in 6 places, all below massif's threshold (1.00%) + n0: 7656064 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=50 +#----------- +time=73026766367 +mem_heap_B=322916067 +mem_heap_extra_B=128027989 +mem_stacks_B=0 +heap_tree=detailed +n7: 322916067 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 172494576 0x4F0FC9B: heap_assign_page (gc.c:7913) + n5: 144448272 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 103114296 0x50240D3: str_new0 (string.c:723) + n2: 82112256 0x503420C: rb_str_subseq (string.c:2457) + n2: 81899784 0x50344DC: split_string.part.34 (string.c:7680) + n1: 67222872 0x503500A: rb_str_split_m (string.c:7893) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x5092F70: vm_exec_core (insns.def:765) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4F2E908: io_s_foreach (io.c:10328) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 67222872 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 67222872 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 67222872 0x108969: main (main.c:42) + n1: 14676912 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x5092F70: vm_exec_core (insns.def:765) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14676912 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14676912 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14676912 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 14333688 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 13876056 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x509A58C: rb_yield (vm.c:1092) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13876056 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13876056 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13876056 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 6390504 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 6390504 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x5092F70: vm_exec_core (insns.def:765) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6390504 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6390504 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6390504 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 15085512 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 14170248 0x50350C5: rb_str_split_m (string.c:7813) + n1: 14170248 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14170248 0x5092F70: vm_exec_core (insns.def:765) + n1: 14170248 0x509998D: rb_vm_exec (vm.c:1885) + n2: 14170248 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14153904 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14153904 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14153904 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 915264 in 3 places, all below massif's threshold (1.00%) + n2: 13369392 0x502DC23: rb_str_resurrect (string.c:723) + n1: 13353048 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 13353048 0x5093B24: vm_exec_core (insns.def:385) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4F2E908: io_s_foreach (io.c:10328) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13353048 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13353048 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13353048 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 8351784 in 27 places, all below massif's threshold (1.00%) + n1: 4527288 0x502BBDB: rb_str_buf_new (string.c:723) + n0: 4527288 in 4 places, all below massif's threshold (1.00%) + n2: 27229104 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n2: 19841616 0x50240D3: str_new0 (string.c:723) + n1: 15494112 0x503420C: rb_str_subseq (string.c:2457) + n2: 15494112 0x50344DC: split_string.part.34 (string.c:7680) + n1: 12911760 0x503500A: rb_str_split_m (string.c:7893) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x5092F70: vm_exec_core (insns.def:765) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12911760 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12911760 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12911760 0x108969: main (main.c:42) + n0: 2582352 in 1 place, below massif's threshold (1.00%) + n0: 4347504 in 2 places, all below massif's threshold (1.00%) + n0: 7387488 in 5 places, all below massif's threshold (1.00%) + n0: 817200 in 4 places, all below massif's threshold (1.00%) + n4: 43099326 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 20032320 0x4E6822C: ary_resize_capa (array.c:285) + n1: 20032320 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n2: 20032320 0x4E6C89D: rb_ary_push (array.c:1155) + n1: 20032160 0x50343A2: split_string.part.34 (string.c:7682) + n1: 20032160 0x503500A: rb_str_split_m (string.c:7893) + n1: 20032160 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 20032160 0x5092F70: vm_exec_core (insns.def:765) + n1: 20032160 0x509998D: rb_vm_exec (vm.c:1885) + n1: 20032160 0x509A58C: rb_yield (vm.c:1092) + n1: 20032160 0x4F2E908: io_s_foreach (io.c:10328) + n1: 20032160 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 20032160 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 20032160 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 20032160 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 20032160 0x5093011: vm_exec_core (insns.def:750) + n1: 20032160 0x509998D: rb_vm_exec (vm.c:1885) + n1: 20032160 0x509A58C: rb_yield (vm.c:1092) + n1: 20032160 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 20032160 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 20032160 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 20032160 0x5093011: vm_exec_core (insns.def:750) + n1: 20032160 0x509998D: rb_vm_exec (vm.c:1885) + n1: 20032160 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 20032160 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 20032160 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 20032160 0x108969: main (main.c:42) + n0: 160 in 1 place, below massif's threshold (1.00%) + n2: 8572096 0x502BC1D: rb_str_buf_new (string.c:1332) + n1: 5422756 0x503C111: rb_str_concat_literals (string.c:2959) + n2: 5422756 0x5093B24: vm_exec_core (insns.def:385) + n2: 5422756 0x509998D: rb_vm_exec (vm.c:1885) + n2: 5412000 0x509A58C: rb_yield (vm.c:1092) + n1: 5411763 0x4F2E908: io_s_foreach (io.c:10328) + n1: 5411763 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5411763 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 5411763 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5411763 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5411763 0x5093011: vm_exec_core (insns.def:750) + n1: 5411763 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5411763 0x509A58C: rb_yield (vm.c:1092) + n1: 5411763 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 5411763 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 5411763 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 5411763 0x5093011: vm_exec_core (insns.def:750) + n1: 5411763 0x509998D: rb_vm_exec (vm.c:1885) + n1: 5411763 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 5411763 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 5411763 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 5411763 0x108969: main (main.c:42) + n0: 237 in 3 places, all below massif's threshold (1.00%) + n0: 10756 in 3 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 3149340 in 12 places, all below massif's threshold (1.00%) + n2: 7911337 0x50241CA: str_new0 (string.c:748) + n2: 7817096 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 7817096 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 7817096 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7817096 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 7817096 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7817096 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7817096 0x5093011: vm_exec_core (insns.def:750) + n1: 7817096 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7817096 0x509A58C: rb_yield (vm.c:1092) + n1: 7817096 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7817096 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7817096 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7817096 0x5093011: vm_exec_core (insns.def:750) + n1: 7817096 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7817096 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 7817096 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 7817096 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 7817096 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n0: 6583573 in 121 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 24869757 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 24369008 0x4E68137: ary_resize_capa (array.c:335) + n2: 24369008 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 24363744 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 24363744 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 24360136 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x5092F70: vm_exec_core (insns.def:765) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4F2E908: io_s_foreach (io.c:10328) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 24360136 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 24360136 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 24360136 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 500749 in 13 places, all below massif's threshold (1.00%) + n1: 22007520 0x53F35BE: qsort_r (msort.c:222) + n2: 22007520 0x4E6F0CE: rb_ary_sort_bang (array.c:2745) + n1: 22007520 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 22007520 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 22007520 0x5092F70: vm_exec_core (insns.def:765) + n1: 22007520 0x509998D: rb_vm_exec (vm.c:1885) + n1: 22007520 0x509A58C: rb_yield (vm.c:1092) + n1: 22007520 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 22007520 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 22007520 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 22007520 0x5093011: vm_exec_core (insns.def:750) + n1: 22007520 0x509998D: rb_vm_exec (vm.c:1885) + n1: 22007520 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 22007520 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 22007520 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 22007520 0x108969: main (main.c:42) + n0: 0 in 1 place, below massif's threshold (1.00%) + n2: 19234392 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 19230384 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 19230384 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n2: 15887712 0x50240D3: str_new0 (string.c:723) + n1: 11563080 0x503420C: rb_str_subseq (string.c:2457) + n2: 11563080 0x50344DC: split_string.part.34 (string.c:7680) + n1: 7947864 0x503500A: rb_str_split_m (string.c:7893) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x5092F70: vm_exec_core (insns.def:765) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4F2E908: io_s_foreach (io.c:10328) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 7947864 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 7947864 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 7947864 0x108969: main (main.c:42) + n0: 3615216 in 1 place, below massif's threshold (1.00%) + n0: 4324632 in 2 places, all below massif's threshold (1.00%) + n0: 3342672 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 4008 in 6 places, all below massif's threshold (1.00%) + n0: 7656064 in 114 places, all below massif's threshold (1.00%) +#----------- +snapshot=51 +#----------- +time=73331044133 +mem_heap_B=331320304 +mem_heap_extra_B=127406296 +mem_stacks_B=0 +heap_tree=detailed +n6: 331320304 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 172494576 0x4F0FC9B: heap_assign_page (gc.c:7913) + n4: 144448272 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 103114296 0x50240D3: str_new0 (string.c:723) + n2: 82112256 0x503420C: rb_str_subseq (string.c:2457) + n2: 81899784 0x50344DC: split_string.part.34 (string.c:7680) + n1: 67222872 0x503500A: rb_str_split_m (string.c:7893) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x5092F70: vm_exec_core (insns.def:765) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4F2E908: io_s_foreach (io.c:10328) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 67222872 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 67222872 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 67222872 0x108969: main (main.c:42) + n1: 14676912 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x5092F70: vm_exec_core (insns.def:765) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14676912 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14676912 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14676912 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 14333688 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 13876056 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x509A58C: rb_yield (vm.c:1092) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13876056 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13876056 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13876056 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 6390504 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 6390504 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x5092F70: vm_exec_core (insns.def:765) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6390504 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6390504 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6390504 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 15085512 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 14170248 0x50350C5: rb_str_split_m (string.c:7813) + n1: 14170248 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14170248 0x5092F70: vm_exec_core (insns.def:765) + n1: 14170248 0x509998D: rb_vm_exec (vm.c:1885) + n2: 14170248 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14153904 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14153904 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14153904 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 915264 in 3 places, all below massif's threshold (1.00%) + n2: 13369392 0x502DC23: rb_str_resurrect (string.c:723) + n1: 13353048 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 13353048 0x5093B24: vm_exec_core (insns.def:385) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4F2E908: io_s_foreach (io.c:10328) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13353048 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13353048 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13353048 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 12879072 in 28 places, all below massif's threshold (1.00%) + n2: 27229104 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n2: 19841616 0x50240D3: str_new0 (string.c:723) + n1: 15494112 0x503420C: rb_str_subseq (string.c:2457) + n2: 15494112 0x50344DC: split_string.part.34 (string.c:7680) + n1: 12911760 0x503500A: rb_str_split_m (string.c:7893) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x5092F70: vm_exec_core (insns.def:765) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12911760 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12911760 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12911760 0x108969: main (main.c:42) + n0: 2582352 in 1 place, below massif's threshold (1.00%) + n0: 4347504 in 2 places, all below massif's threshold (1.00%) + n0: 7387488 in 5 places, all below massif's threshold (1.00%) + n0: 817200 in 4 places, all below massif's threshold (1.00%) + n5: 73517552 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 33837952 0x501B63C: st_init_table_with_size (st.c:604) + n2: 33554560 0x4F1FFB9: rb_hash_new_with_size (hash.c:1283) + n1: 33554432 0x4E6BECF: rb_ary_uniq_bang (array.c:4405) + n1: 33554432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 33554432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 33554432 0x5092F70: vm_exec_core (insns.def:765) + n1: 33554432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 33554432 0x509A58C: rb_yield (vm.c:1092) + n1: 33554432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 33554432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 33554432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 33554432 0x5093011: vm_exec_core (insns.def:750) + n1: 33554432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 33554432 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 33554432 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 33554432 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 33554432 0x108969: main (main.c:42) + n0: 128 in 7 places, all below massif's threshold (1.00%) + n0: 283392 in 6 places, all below massif's threshold (1.00%) + n1: 20020640 0x4E6822C: ary_resize_capa (array.c:285) + n1: 20020640 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n2: 20020640 0x4E6C89D: rb_ary_push (array.c:1155) + n1: 20020480 0x50343A2: split_string.part.34 (string.c:7682) + n1: 20020480 0x503500A: rb_str_split_m (string.c:7893) + n1: 20020480 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 20020480 0x5092F70: vm_exec_core (insns.def:765) + n1: 20020480 0x509998D: rb_vm_exec (vm.c:1885) + n1: 20020480 0x509A58C: rb_yield (vm.c:1092) + n1: 20020480 0x4F2E908: io_s_foreach (io.c:10328) + n1: 20020480 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 20020480 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 20020480 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 20020480 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 20020480 0x5093011: vm_exec_core (insns.def:750) + n1: 20020480 0x509998D: rb_vm_exec (vm.c:1885) + n1: 20020480 0x509A58C: rb_yield (vm.c:1092) + n1: 20020480 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 20020480 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 20020480 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 20020480 0x5093011: vm_exec_core (insns.def:750) + n1: 20020480 0x509998D: rb_vm_exec (vm.c:1885) + n1: 20020480 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 20020480 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 20020480 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 20020480 0x108969: main (main.c:42) + n0: 160 in 1 place, below massif's threshold (1.00%) + n1: 6815677 0x502BC1D: rb_str_buf_new (string.c:1332) + n0: 6815677 in 13 places, all below massif's threshold (1.00%) + n2: 6547633 0x50241CA: str_new0 (string.c:748) + n2: 6453392 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 6453392 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 6453392 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6453392 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6453392 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6453392 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6453392 0x5093011: vm_exec_core (insns.def:750) + n1: 6453392 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6453392 0x509A58C: rb_yield (vm.c:1092) + n1: 6453392 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6453392 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6453392 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6453392 0x5093011: vm_exec_core (insns.def:750) + n1: 6453392 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6453392 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6453392 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6453392 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6453392 0x108969: main (main.c:42) + n0: 0 in 5 places, all below massif's threshold (1.00%) + n0: 94241 in 11 places, all below massif's threshold (1.00%) + n0: 6295650 in 120 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 24867296 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 24369008 0x4E68137: ary_resize_capa (array.c:335) + n2: 24369008 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 24363744 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 24363744 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 24360136 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x5092F70: vm_exec_core (insns.def:765) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4F2E908: io_s_foreach (io.c:10328) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 24360136 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 24360136 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 24360136 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 498288 in 13 places, all below massif's threshold (1.00%) + n2: 19230384 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 19226376 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 19226376 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n2: 15883704 0x50240D3: str_new0 (string.c:723) + n1: 11559072 0x503420C: rb_str_subseq (string.c:2457) + n2: 11559072 0x50344DC: split_string.part.34 (string.c:7680) + n1: 7947864 0x503500A: rb_str_split_m (string.c:7893) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x5092F70: vm_exec_core (insns.def:765) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4F2E908: io_s_foreach (io.c:10328) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 7947864 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 7947864 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 7947864 0x108969: main (main.c:42) + n0: 3611208 in 1 place, below massif's threshold (1.00%) + n0: 4324632 in 2 places, all below massif's threshold (1.00%) + n0: 3342672 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 4008 in 6 places, all below massif's threshold (1.00%) + n0: 7656064 in 115 places, all below massif's threshold (1.00%) +#----------- +snapshot=52 +#----------- +time=74851025327 +mem_heap_B=399845786 +mem_heap_extra_B=124067566 +mem_stacks_B=0 +heap_tree=peak +n6: 399845786 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n3: 172494576 0x4F0FC9B: heap_assign_page (gc.c:7913) + n4: 144448272 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n4: 103114296 0x50240D3: str_new0 (string.c:723) + n2: 82112256 0x503420C: rb_str_subseq (string.c:2457) + n2: 81899784 0x50344DC: split_string.part.34 (string.c:7680) + n1: 67222872 0x503500A: rb_str_split_m (string.c:7893) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x5092F70: vm_exec_core (insns.def:765) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4F2E908: io_s_foreach (io.c:10328) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x509A58C: rb_yield (vm.c:1092) + n1: 67222872 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 67222872 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 67222872 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 67222872 0x5093011: vm_exec_core (insns.def:750) + n1: 67222872 0x509998D: rb_vm_exec (vm.c:1885) + n1: 67222872 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 67222872 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 67222872 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 67222872 0x108969: main (main.c:42) + n1: 14676912 0x5034EE3: rb_str_split_m (string.c:7898) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x5092F70: vm_exec_core (insns.def:765) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x509A58C: rb_yield (vm.c:1092) + n1: 14676912 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14676912 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14676912 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14676912 0x5093011: vm_exec_core (insns.def:750) + n1: 14676912 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14676912 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14676912 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14676912 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14676912 0x108969: main (main.c:42) + n0: 212472 in 3 places, all below massif's threshold (1.00%) + n2: 14333688 0x4F2E59B: rb_io_getline_0 (io.c:3300) + n1: 13876056 0x4F2E94D: io_s_foreach (io.c:3527) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x509A58C: rb_yield (vm.c:1092) + n1: 13876056 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13876056 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13876056 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13876056 0x5093011: vm_exec_core (insns.def:750) + n1: 13876056 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13876056 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13876056 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13876056 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13876056 0x108969: main (main.c:42) + n0: 457632 in 1 place, below massif's threshold (1.00%) + n1: 6390504 0x50298E4: rb_usascii_str_new (string.c:777) + n1: 6390504 0x4F814AB: rb_fix2str (numeric.c:3537) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x5092F70: vm_exec_core (insns.def:765) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4F2E908: io_s_foreach (io.c:10328) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x509A58C: rb_yield (vm.c:1092) + n1: 6390504 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 6390504 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 6390504 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 6390504 0x5093011: vm_exec_core (insns.def:750) + n1: 6390504 0x509998D: rb_vm_exec (vm.c:1885) + n1: 6390504 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 6390504 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 6390504 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 6390504 0x108969: main (main.c:42) + n0: 277848 in 3 places, all below massif's threshold (1.00%) + n2: 15085512 0x4E6A217: rb_ary_new_capa (array.c:647) + n1: 14170248 0x50350C5: rb_str_split_m (string.c:7813) + n1: 14170248 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14170248 0x5092F70: vm_exec_core (insns.def:765) + n1: 14170248 0x509998D: rb_vm_exec (vm.c:1885) + n2: 14170248 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4F2E908: io_s_foreach (io.c:10328) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x509A58C: rb_yield (vm.c:1092) + n1: 14153904 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 14153904 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 14153904 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 14153904 0x5093011: vm_exec_core (insns.def:750) + n1: 14153904 0x509998D: rb_vm_exec (vm.c:1885) + n1: 14153904 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 14153904 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 14153904 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 14153904 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 915264 in 3 places, all below massif's threshold (1.00%) + n2: 13369392 0x502DC23: rb_str_resurrect (string.c:723) + n1: 13353048 0x503BFFA: rb_str_concat_literals (string.c:2955) + n1: 13353048 0x5093B24: vm_exec_core (insns.def:385) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4F2E908: io_s_foreach (io.c:10328) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x509A58C: rb_yield (vm.c:1092) + n1: 13353048 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 13353048 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 13353048 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 13353048 0x5093011: vm_exec_core (insns.def:750) + n1: 13353048 0x509998D: rb_vm_exec (vm.c:1885) + n1: 13353048 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 13353048 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 13353048 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 13353048 0x108969: main (main.c:42) + n0: 16344 in 1 place, below massif's threshold (1.00%) + n0: 12879072 in 28 places, all below massif's threshold (1.00%) + n2: 27229104 0x4F14D71: newobj_slowpath_wb_protected (gc.c:1718) + n2: 19841616 0x50240D3: str_new0 (string.c:723) + n1: 15494112 0x503420C: rb_str_subseq (string.c:2457) + n2: 15494112 0x50344DC: split_string.part.34 (string.c:7680) + n1: 12911760 0x503500A: rb_str_split_m (string.c:7893) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x5092F70: vm_exec_core (insns.def:765) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4F2E908: io_s_foreach (io.c:10328) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x509A58C: rb_yield (vm.c:1092) + n1: 12911760 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 12911760 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 12911760 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 12911760 0x5093011: vm_exec_core (insns.def:750) + n1: 12911760 0x509998D: rb_vm_exec (vm.c:1885) + n1: 12911760 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 12911760 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 12911760 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 12911760 0x108969: main (main.c:42) + n0: 2582352 in 1 place, below massif's threshold (1.00%) + n0: 4347504 in 2 places, all below massif's threshold (1.00%) + n0: 7387488 in 5 places, all below massif's threshold (1.00%) + n0: 817200 in 4 places, all below massif's threshold (1.00%) + n3: 142055148 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n2: 102657888 0x501B5D1: st_init_table_with_size (st.c:605) + n2: 100672128 0x4F1FFB9: rb_hash_new_with_size (hash.c:1283) + n1: 100663296 0x4E6BECF: rb_ary_uniq_bang (array.c:4405) + n1: 100663296 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 100663296 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 100663296 0x5092F70: vm_exec_core (insns.def:765) + n1: 100663296 0x509998D: rb_vm_exec (vm.c:1885) + n1: 100663296 0x509A58C: rb_yield (vm.c:1092) + n1: 100663296 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 100663296 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 100663296 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 100663296 0x5093011: vm_exec_core (insns.def:750) + n1: 100663296 0x509998D: rb_vm_exec (vm.c:1885) + n1: 100663296 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 100663296 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 100663296 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 100663296 0x108969: main (main.c:42) + n0: 8832 in 7 places, all below massif's threshold (1.00%) + n0: 1985760 in 50 places, all below massif's threshold (1.00%) + n2: 33837952 0x501B63C: st_init_table_with_size (st.c:604) + n2: 33554560 0x4F1FFB9: rb_hash_new_with_size (hash.c:1283) + n1: 33554432 0x4E6BECF: rb_ary_uniq_bang (array.c:4405) + n1: 33554432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 33554432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 33554432 0x5092F70: vm_exec_core (insns.def:765) + n1: 33554432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 33554432 0x509A58C: rb_yield (vm.c:1092) + n1: 33554432 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 33554432 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 33554432 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 33554432 0x5093011: vm_exec_core (insns.def:750) + n1: 33554432 0x509998D: rb_vm_exec (vm.c:1885) + n1: 33554432 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 33554432 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 33554432 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 33554432 0x108969: main (main.c:42) + n0: 128 in 7 places, all below massif's threshold (1.00%) + n0: 283392 in 6 places, all below massif's threshold (1.00%) + n0: 5559308 in 122 places, all below massif's threshold (1.00%) + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n2: 24855182 0x4F16F0A: ruby_xrealloc2 (gc.c:8176) + n2: 24369008 0x4E68137: ary_resize_capa (array.c:335) + n2: 24369008 0x4E6C821: ary_ensure_room_for_push (array.c:602) + n1: 24363744 0x4E6E141: rb_ary_splice (array.c:1841) + n2: 24363744 0x4E75B0E: rb_ary_concat (array.c:3973) + n1: 24360136 0x4E75C41: rb_ary_concat_multi (array.c:4004) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x5092F70: vm_exec_core (insns.def:765) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4F2E908: io_s_foreach (io.c:10328) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x509A58C: rb_yield (vm.c:1092) + n1: 24360136 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 24360136 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 24360136 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 24360136 0x5093011: vm_exec_core (insns.def:750) + n1: 24360136 0x509998D: rb_vm_exec (vm.c:1885) + n1: 24360136 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 24360136 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 24360136 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 24360136 0x108969: main (main.c:42) + n0: 3608 in 1 place, below massif's threshold (1.00%) + n0: 5264 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 1 place, below massif's threshold (1.00%) + n0: 486174 in 13 places, all below massif's threshold (1.00%) + n2: 19230384 0x4F0DE5D: gc_grey (gc.c:3909) + n2: 19226376 0x4F0F06D: gc_mark_children (gc.c:3156) + n2: 19226376 0x4F14F63: newobj_slowpath_wb_protected (gc.c:4876) + n2: 15883704 0x50240D3: str_new0 (string.c:723) + n1: 11559072 0x503420C: rb_str_subseq (string.c:2457) + n2: 11559072 0x50344DC: split_string.part.34 (string.c:7680) + n1: 7947864 0x503500A: rb_str_split_m (string.c:7893) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x5092F70: vm_exec_core (insns.def:765) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4F2E908: io_s_foreach (io.c:10328) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x4F3AC06: rb_io_s_foreach (io.c:10376) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x509A58C: rb_yield (vm.c:1092) + n1: 7947864 0x4EF8A74: rb_ensure (eval.c:1075) + n1: 7947864 0x5089568: vm_call_cfunc (vm_insnhelper.c:1908) + n1: 7947864 0x509C8D1: vm_call_method (vm_insnhelper.c:2397) + n1: 7947864 0x5093011: vm_exec_core (insns.def:750) + n1: 7947864 0x509998D: rb_vm_exec (vm.c:1885) + n1: 7947864 0x4EF4F14: ruby_exec_internal (eval.c:261) + n1: 7947864 0x4EF738B: ruby_exec_node (eval.c:325) + n1: 7947864 0x4EFB2EC: ruby_run_node (eval.c:317) + n0: 7947864 0x108969: main (main.c:42) + n0: 3611208 in 1 place, below massif's threshold (1.00%) + n0: 4324632 in 2 places, all below massif's threshold (1.00%) + n0: 3342672 in 2 places, all below massif's threshold (1.00%) + n0: 0 in 2 places, all below massif's threshold (1.00%) + n0: 4008 in 6 places, all below massif's threshold (1.00%) + n0: 7656064 in 115 places, all below massif's threshold (1.00%) diff --git a/optimizations/step8/profile.callgrind.out.50123 b/optimizations/step8/profile.callgrind.out.50123 new file mode 100644 index 0000000..458c0b6 --- /dev/null +++ b/optimizations/step8/profile.callgrind.out.50123 @@ -0,0 +1,258 @@ +events: memory + +fl=/Users/donasktello/ruby_runtime +fn=IO::close +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=IO::closed? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::% +0 4 +cfl=/Users/donasktello/ruby_runtime +cfn=Integer::to_s +calls=3 108 +108 0 + +fl=/Users/donasktello/ruby_runtime +fn=Array::uniq! +0 56 + +fl=/Users/donasktello/ruby_runtime +fn=Array::clear +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::concat +0 17 + +fl=/Users/donasktello/ruby_runtime +fn=String::tr! +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::shift +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=FalseClass::to_s +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=TrueClass::to_s +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Integer::to_s +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::include? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::end_with? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::upcase! +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::join +0 37 + +fl=/Users/donasktello/ruby_runtime +fn=Array::reverse! +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::sort! +0 12 + +fl=/Users/donasktello/ruby_runtime +fn=String::to_i +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::start_with? +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::split +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=IO::^foreach +0 144 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=1646 41 +41 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::start_with? +calls=1646 43 +43 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::to_i +calls=3320 75 +75 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sort! +calls=526 47 +47 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::reverse! +calls=263 45 +45 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::join +calls=263 47 +47 34 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase! +calls=263 47 +47 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::end_with? +calls=263 48 +48 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::include? +calls=263 49 +49 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Integer::to_s +calls=789 51 +51 0 +cfl=/Users/donasktello/ruby_runtime +cfn=TrueClass::to_s +calls=181 51 +51 1 +cfl=/Users/donasktello/ruby_runtime +cfn=FalseClass::to_s +calls=345 51 +51 0 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::write +calls=1641 56 +56 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::shift +calls=1641 56 +56 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::tr! +calls=1378 56 +56 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::concat +calls=263 59 +59 17 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::clear +calls=526 65 +65 1 + +fl=/Users/donasktello/ruby_runtime +fn=IO::write +0 9 + +fl=/Users/donasktello/ruby_runtime +fn=File::initialize +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=IO::^open +0 1 +cfl=/Users/donasktello/ruby_runtime +cfn=File::initialize +calls=1 37 +37 1 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::write +calls=7 108 +108 9 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^foreach +calls=1 40 +40 203 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sort! +calls=3 104 +104 11 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::reverse! +calls=1 82 +82 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::join +calls=2 105 +105 3 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase! +calls=2 105 +105 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::end_with? +calls=1 85 +85 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::include? +calls=1 86 +86 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Integer::to_s +calls=3 88 +88 0 +cfl=/Users/donasktello/ruby_runtime +cfn=FalseClass::to_s +calls=2 88 +88 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::shift +calls=5 94 +94 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::tr! +calls=3 96 +96 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::concat +calls=1 100 +100 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::uniq! +calls=1 104 +104 56 +cfl=/Users/donasktello/ruby_runtime +cfn=String::% +calls=1 108 +108 5 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::closed? +calls=1 108 +108 1 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::close +calls=1 108 +108 0 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::work +22 1 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^open +calls=1 37 +37 293 + +fl=/Users/donasktello/Projects/task-1/optimizations/rubyprof_patched.rb +fn=[global]::[no method] +7 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::work +calls=1 7 +7 294 + diff --git a/optimizations/step8/rubyprof_alloc.txt b/optimizations/step8/rubyprof_alloc.txt new file mode 100644 index 0000000..8bf1ca5 --- /dev/null +++ b/optimizations/step8/rubyprof_alloc.txt @@ -0,0 +1,35 @@ +Measure Mode: allocations +Thread ID: 70185105154080 +Fiber ID: 70185102929120 +Total: 16879.000000 +Sort by: self_time + + %self total self wait child calls name + 66.70 11258.000 11258.000 0.000 0.000 1646 String#split + 21.05 16849.000 3553.000 0.000 13296.000 1 #foreach + 4.71 795.000 795.000 0.000 0.000 795 Integer#to_s + 2.74 463.000 463.000 0.000 0.000 529 Array#sort! + 2.06 347.000 347.000 0.000 0.000 347 FalseClass#to_s + 1.57 265.000 265.000 0.000 0.000 265 Array#join + 1.07 181.000 181.000 0.000 0.000 181 TrueClass#to_s + 0.04 16873.000 7.000 0.000 16866.000 1 #open + 0.03 16878.000 5.000 0.000 16873.000 1 Object#work + 0.01 2.000 2.000 0.000 0.000 1648 IO#write + 0.01 16879.000 1.000 0.000 16878.000 1 [global]#[no method] + 0.01 4.000 1.000 0.000 3.000 1 String#% + 0.01 1.000 1.000 0.000 0.000 1 Array#uniq! + 0.00 0.000 0.000 0.000 0.000 1 IO#closed? + 0.00 0.000 0.000 0.000 0.000 526 Array#clear + 0.00 0.000 0.000 0.000 0.000 264 Array#concat + 0.00 0.000 0.000 0.000 0.000 1381 String#tr! + 0.00 0.000 0.000 0.000 0.000 1646 Array#shift + 0.00 0.000 0.000 0.000 0.000 264 String#include? + 0.00 0.000 0.000 0.000 0.000 264 String#end_with? + 0.00 0.000 0.000 0.000 0.000 265 String#upcase! + 0.00 0.000 0.000 0.000 0.000 264 Array#reverse! + 0.00 0.000 0.000 0.000 0.000 3320 String#to_i + 0.00 0.000 0.000 0.000 0.000 1646 String#start_with? + 0.00 0.000 0.000 0.000 0.000 1 File#initialize + 0.00 0.000 0.000 0.000 0.000 1 IO#close + +* indicates recursively called methods diff --git a/optimizations/step8/rubyprof_wall.txt b/optimizations/step8/rubyprof_wall.txt new file mode 100644 index 0000000..937dd50 --- /dev/null +++ b/optimizations/step8/rubyprof_wall.txt @@ -0,0 +1,35 @@ +Measure Mode: wall_time +Thread ID: 70185105154080 +Fiber ID: 70185102929120 +Total: 0.015218 +Sort by: self_time + + %self total self wait child calls name + 48.64 0.014 0.007 0.000 0.006 1 #foreach + 12.54 0.002 0.002 0.000 0.000 1646 String#split + 5.30 0.001 0.001 0.000 0.000 3320 String#to_i + 5.12 0.001 0.001 0.000 0.000 529 Array#sort! + 4.86 0.001 0.001 0.000 0.000 1381 String#tr! + 4.75 0.001 0.001 0.000 0.000 1648 IO#write + 3.23 0.000 0.000 0.000 0.000 1 File#initialize + 2.56 0.000 0.000 0.000 0.000 1646 String#start_with? + 2.07 0.000 0.000 0.000 0.000 1646 Array#shift + 1.94 0.000 0.000 0.000 0.000 265 Array#join + 1.41 0.000 0.000 0.000 0.000 795 Integer#to_s + 1.06 0.000 0.000 0.000 0.000 1 IO#close + 0.94 0.000 0.000 0.000 0.000 264 Array#concat + 0.93 0.000 0.000 0.000 0.000 1 Array#uniq! + 0.81 0.000 0.000 0.000 0.000 526 Array#clear + 0.66 0.000 0.000 0.000 0.000 264 String#include? + 0.63 0.000 0.000 0.000 0.000 265 String#upcase! + 0.60 0.000 0.000 0.000 0.000 347 FalseClass#to_s + 0.51 0.000 0.000 0.000 0.000 264 String#end_with? + 0.44 0.000 0.000 0.000 0.000 264 Array#reverse! + 0.38 0.015 0.000 0.000 0.015 1 #open + 0.25 0.000 0.000 0.000 0.000 181 TrueClass#to_s + 0.18 0.015 0.000 0.000 0.015 1 [global]#[no method] + 0.11 0.000 0.000 0.000 0.000 1 String#% + 0.05 0.015 0.000 0.000 0.015 1 Object#work + 0.03 0.000 0.000 0.000 0.000 1 IO#closed? + +* indicates recursively called methods diff --git a/optimizations/step8/stackprof_object.txt b/optimizations/step8/stackprof_object.txt new file mode 100644 index 0000000..ac80467 --- /dev/null +++ b/optimizations/step8/stackprof_object.txt @@ -0,0 +1,109 @@ +================================== + Mode: object(1) + Samples: 16879 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 16878 (100.0%) 16878 (100.0%) Object#work + 16879 (100.0%) 1 (0.0%) block (2 levels) in
+ 16879 (100.0%) 0 (0.0%) block in
+ 16879 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 16879 (100.0%) 0 (0.0%)
+ 16879 (100.0%) 0 (0.0%)
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:21) + samples: 16878 self (100.0%) / 16878 total (100.0%) + callers: + 32073 ( 190.0%) Object#work + 16878 ( 100.0%) block (2 levels) in
+ callees (0 total): + 32073 ( Inf%) Object#work + code: + | 21 | def work(filename) + | 22 | report_general_str = "\"totalUsers\":%{totalUsers},"\ + | 23 | "\"uniqueBrowsersCount\":%{uniqueBrowsersCount},"\ + | 24 | "\"totalSessions\":%{totalSessions},"\ + | 25 | "\"allBrowsers\":\"%{allBrowsers}\"}}\n"\ + | 26 | + 1 (0.0%) / 1 (0.0%) | 27 | report_general = {} + | 28 | report_general[:totalUsers] = report_general[:totalSessions] = 0 + 1 (0.0%) / 1 (0.0%) | 29 | report_general[:uniqueBrowsersCount] = [] + | 30 | + | 31 | user_name = '' + | 32 | user_longest_session = user_total_time = user_sessions_count = 0 + | 33 | user_always_chrome = user_used_ie = false + 1 (0.0%) / 1 (0.0%) | 34 | user_dates = [] + 1 (0.0%) / 1 (0.0%) | 35 | user_browsers = [] + | 36 | + 16874 (100.0%) / 2 (0.0%) | 37 | File.open("#{$support_dir}/result.json", 'w') do |f| + 1 (0.0%) / 1 (0.0%) | 38 | f.write("{\"usersStats\":{") + | 39 | + 16850 (99.8%) / 1649 (9.8%) | 40 | IO.foreach("#{$support_dir}/#{filename}") do |cols| + 11258 (66.7%) / 11258 (66.7%) | 41 | row = cols.split(SEP) + | 42 | + | 43 | if cols.start_with?('user'.freeze) + | 44 | if user_sessions_count > 0 + 230 (1.4%) / 230 (1.4%) | 45 | user_dates.sort!.reverse! + | 46 | + 493 (2.9%) / 493 (2.9%) | 47 | browsers = user_browsers.sort!.join(SEP_SPACE).upcase! + | 48 | user_always_chrome = true if browsers.end_with?('CHROME') + | 49 | user_used_ie = true if !user_always_chrome && browsers.include?('INTERNET') + | 50 | + 789 (4.7%) / 789 (4.7%) | 51 | f.write("\"#{user_name}\":{#{SESSIONS}#{user_sessions_count},#{TOTAL_TIME}#{user_total_time} min.\","\ + 526 (3.1%) / 526 (3.1%) | 52 | "#{LONGEST_SESSION}#{user_longest_session} min.\",#{BROWSERS}#{browsers}\",#{USED_IE}#{user_used_ie},"\ + 263 (1.6%) / 263 (1.6%) | 53 | "#{ALWAYS_CHROME}#{user_always_chrome},#{DATES}") + | 54 | + | 55 | while date = user_dates.shift + 1378 (8.2%) / 1378 (8.2%) | 56 | user_dates.size == 0 ? f.write("\"#{date.tr!("\n", '')}\"]},") : f.write("\"#{date.tr!("\n", '')}\",") + | 57 | end + | 58 | + | 59 | report_general[:uniqueBrowsersCount].concat user_browsers + | 60 | report_general[:totalSessions] += user_sessions_count + | 61 | report_general[:totalUsers] += 1 + | 62 | + | 63 | user_longest_session = user_total_time = user_sessions_count = 0 + | 64 | user_dates.clear + | 65 | user_browsers.clear + | 66 | + | 67 | user_always_chrome = user_used_ie = false + | 68 | end + | 69 | + 264 (1.6%) / 264 (1.6%) | 70 | user_name = "#{row[2]} #{row[3]}" + | 71 | else + | 72 | user_sessions_count += 1 + | 73 | + | 74 | user_total_time += row[4].to_i + | 75 | user_longest_session = row[4].to_i if user_longest_session < row[4].to_i + | 76 | user_browsers << row[3] + | 77 | + | 78 | user_dates << row[5] + | 79 | end + | 80 | end + | 81 | + 1 (0.0%) / 1 (0.0%) | 82 | user_dates.sort!.reverse! + | 83 | + 2 (0.0%) / 2 (0.0%) | 84 | browsers = user_browsers.sort!.join(', ').upcase! + | 85 | user_always_chrome = true if browsers.end_with?('CHROME') + | 86 | user_used_ie = true if !user_always_chrome && browsers.include?('INTERNET') + | 87 | + 3 (0.0%) / 3 (0.0%) | 88 | f.write("\"#{user_name}\":{#{SESSIONS}#{user_sessions_count},#{TOTAL_TIME}#{user_total_time} min.\","\ + 2 (0.0%) / 2 (0.0%) | 89 | "#{LONGEST_SESSION}#{user_longest_session} min.\",#{BROWSERS}#{browsers}\",#{USED_IE}#{user_used_ie},"\ + 1 (0.0%) / 1 (0.0%) | 90 | "#{ALWAYS_CHROME}#{user_always_chrome},#{DATES}") + | 91 | + | 92 | while date = user_dates.shift + | 93 | if user_dates.size == 0 + 1 (0.0%) / 1 (0.0%) | 94 | f.write("\"#{date}\"]},") + | 95 | else + 3 (0.0%) / 3 (0.0%) | 96 | f.write("\"#{date.tr!("\n", '')}\",") + | 97 | end + | 98 | end + | 99 | + | 100 | report_general[:uniqueBrowsersCount].concat user_browsers + | 101 | report_general[:totalSessions] += user_sessions_count + | 102 | report_general[:totalUsers] += 1 + | 103 | + 2 (0.0%) / 2 (0.0%) | 104 | report_general[:uniqueBrowsersCount].sort!.uniq! + 1 (0.0%) / 1 (0.0%) | 105 | report_general[:allBrowsers] = report_general[:uniqueBrowsersCount].join(SEP).upcase! + | 106 | report_general[:uniqueBrowsersCount] = report_general[:uniqueBrowsersCount].size + | 107 | + 5 (0.0%) / 5 (0.0%) | 108 | f.write(report_general_str % report_general) + | 109 | end diff --git a/optimizations/step8/stackprof_wall.txt b/optimizations/step8/stackprof_wall.txt new file mode 100644 index 0000000..406e0b4 --- /dev/null +++ b/optimizations/step8/stackprof_wall.txt @@ -0,0 +1,57 @@ +================================== + Mode: wall(1000) + Samples: 4 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 4 (100.0%) 4 (100.0%) Object#work + 4 (100.0%) 0 (0.0%) block (2 levels) in
+ 4 (100.0%) 0 (0.0%) block in
+ 4 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 4 (100.0%) 0 (0.0%)
+ 4 (100.0%) 0 (0.0%)
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:21) + samples: 4 self (100.0%) / 4 total (100.0%) + callers: + 6 ( 150.0%) Object#work + 4 ( 100.0%) block (2 levels) in
+ callees (0 total): + 6 ( Inf%) Object#work + code: + | 21 | def work(filename) + | 22 | report_general_str = "\"totalUsers\":%{totalUsers},"\ + | 23 | "\"uniqueBrowsersCount\":%{uniqueBrowsersCount},"\ + | 24 | "\"totalSessions\":%{totalSessions},"\ + | 25 | "\"allBrowsers\":\"%{allBrowsers}\"}}\n"\ + | 26 | + | 27 | report_general = {} + | 28 | report_general[:totalUsers] = report_general[:totalSessions] = 0 + | 29 | report_general[:uniqueBrowsersCount] = [] + | 30 | + | 31 | user_name = '' + | 32 | user_longest_session = user_total_time = user_sessions_count = 0 + | 33 | user_always_chrome = user_used_ie = false + | 34 | user_dates = [] + | 35 | user_browsers = [] + | 36 | + 4 (100.0%) / 1 (25.0%) | 37 | File.open("#{$support_dir}/result.json", 'w') do |f| + | 38 | f.write("{\"usersStats\":{") + | 39 | + 3 (75.0%) | 40 | IO.foreach("#{$support_dir}/#{filename}") do |cols| + | 41 | row = cols.split(SEP) + | 42 | + | 43 | if cols.start_with?('user'.freeze) + | 44 | if user_sessions_count > 0 + | 45 | user_dates.sort!.reverse! + | 46 | + | 47 | browsers = user_browsers.sort!.join(SEP_SPACE).upcase! + 1 (25.0%) / 1 (25.0%) | 48 | user_always_chrome = true if browsers.end_with?('CHROME') + | 49 | user_used_ie = true if !user_always_chrome && browsers.include?('INTERNET') + | 50 | + | 51 | f.write("\"#{user_name}\":{#{SESSIONS}#{user_sessions_count},#{TOTAL_TIME}#{user_total_time} min.\","\ + | 52 | "#{LONGEST_SESSION}#{user_longest_session} min.\",#{BROWSERS}#{browsers}\",#{USED_IE}#{user_used_ie},"\ + | 53 | "#{ALWAYS_CHROME}#{user_always_chrome},#{DATES}") + | 54 | + | 55 | while date = user_dates.shift + 2 (50.0%) / 2 (50.0%) | 56 | user_dates.size == 0 ? f.write("\"#{date.tr!("\n", '')}\"]},") : f.write("\"#{date.tr!("\n", '')}\",") + | 57 | end diff --git a/optimizations/step9/massif.out.13500 b/optimizations/step9/massif.out.13500 new file mode 100644 index 0000000..eb100b2 --- /dev/null +++ b/optimizations/step9/massif.out.13500 @@ -0,0 +1,819 @@ +desc: (none) +cmd: /home/donasktello/.rvm/rubies/ruby-2.6.1/bin/ruby valgrind_massif.rb +time_unit: i +#----------- +snapshot=0 +#----------- +time=0 +mem_heap_B=0 +mem_heap_extra_B=0 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=1 +#----------- +time=258678450 +mem_heap_B=38846473 +mem_heap_extra_B=1764767 +mem_stacks_B=0 +heap_tree=peak +n5: 38846473 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2765995 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 650435 in 110 places, all below massif's threshold (1.00%) + n2: 589440 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 474432 0x501B8F5: rebuild_table (st.c:780) + n0: 474432 in 4 places, all below massif's threshold (1.00%) + n0: 115008 in 34 places, all below massif's threshold (1.00%) + n2: 477544 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 477072 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 477072 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 469872 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 469872 in 10 places, all below massif's threshold (1.00%) + n0: 7200 in 6 places, all below massif's threshold (1.00%) + n0: 472 in 1 place, below massif's threshold (1.00%) + n1: 1119689 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1119689 in 26 places, all below massif's threshold (1.00%) + n2: 980640 0x4F0FC9B: heap_assign_page (gc.c:7913) + n0: 506664 in 4 places, all below massif's threshold (1.00%) + n1: 473976 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 473976 in 12 places, all below massif's threshold (1.00%) + n0: 425717 in 97 places, all below massif's threshold (1.00%) +#----------- +snapshot=2 +#----------- +time=957798203 +mem_heap_B=38770661 +mem_heap_extra_B=1753027 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=3 +#----------- +time=2286317311 +mem_heap_B=38773328 +mem_heap_extra_B=1754232 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=4 +#----------- +time=3164784433 +mem_heap_B=38784041 +mem_heap_extra_B=1757431 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=5 +#----------- +time=4111469779 +mem_heap_B=38769782 +mem_heap_extra_B=1754602 +mem_stacks_B=0 +heap_tree=detailed +n5: 38769782 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2710175 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 637599 in 115 places, all below massif's threshold (1.00%) + n2: 560448 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 471360 0x501B8F5: rebuild_table (st.c:780) + n0: 471360 in 4 places, all below massif's threshold (1.00%) + n0: 89088 in 34 places, all below massif's threshold (1.00%) + n2: 463552 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 463096 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 463096 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 460304 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 460304 in 10 places, all below massif's threshold (1.00%) + n0: 2792 in 6 places, all below massif's threshold (1.00%) + n0: 456 in 1 place, below massif's threshold (1.00%) + n1: 1099183 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1099183 in 26 places, all below massif's threshold (1.00%) + n2: 1029672 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 523008 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 523008 in 14 places, all below massif's threshold (1.00%) + n0: 506664 in 4 places, all below massif's threshold (1.00%) + n0: 376320 in 97 places, all below massif's threshold (1.00%) +#----------- +snapshot=6 +#----------- +time=4769267236 +mem_heap_B=38769446 +mem_heap_extra_B=1752202 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=7 +#----------- +time=5777958355 +mem_heap_B=38787630 +mem_heap_extra_B=1756658 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=8 +#----------- +time=6607916228 +mem_heap_B=38784712 +mem_heap_extra_B=1756432 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=9 +#----------- +time=7400262101 +mem_heap_B=38759752 +mem_heap_extra_B=1751920 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=10 +#----------- +time=8456832004 +mem_heap_B=38774929 +mem_heap_extra_B=1755583 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=11 +#----------- +time=9136032210 +mem_heap_B=38718556 +mem_heap_extra_B=1741676 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=12 +#----------- +time=10343501250 +mem_heap_B=38776939 +mem_heap_extra_B=1754597 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=13 +#----------- +time=11312600645 +mem_heap_B=38782941 +mem_heap_extra_B=1756555 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=14 +#----------- +time=12377778707 +mem_heap_B=38764116 +mem_heap_extra_B=1752972 +mem_stacks_B=0 +heap_tree=detailed +n5: 38764116 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2706604 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 634716 in 115 places, all below massif's threshold (1.00%) + n2: 560352 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 471360 0x501B8F5: rebuild_table (st.c:780) + n0: 471360 in 4 places, all below massif's threshold (1.00%) + n0: 88992 in 34 places, all below massif's threshold (1.00%) + n2: 462960 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 462504 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 462504 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 460032 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 460032 in 10 places, all below massif's threshold (1.00%) + n0: 2472 in 6 places, all below massif's threshold (1.00%) + n0: 456 in 1 place, below massif's threshold (1.00%) + n1: 1098229 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1098229 in 26 places, all below massif's threshold (1.00%) + n2: 1029672 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 523008 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 523008 in 14 places, all below massif's threshold (1.00%) + n0: 506664 in 4 places, all below massif's threshold (1.00%) + n0: 375179 in 97 places, all below massif's threshold (1.00%) +#----------- +snapshot=15 +#----------- +time=13797999674 +mem_heap_B=38765469 +mem_heap_extra_B=1751891 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=16 +#----------- +time=15099875304 +mem_heap_B=38727368 +mem_heap_extra_B=1744976 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=17 +#----------- +time=16165014624 +mem_heap_B=38778284 +mem_heap_extra_B=1755812 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=18 +#----------- +time=16638401846 +mem_heap_B=38763985 +mem_heap_extra_B=1753463 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=19 +#----------- +time=17737036382 +mem_heap_B=38758617 +mem_heap_extra_B=1750439 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=20 +#----------- +time=19055418870 +mem_heap_B=38781771 +mem_heap_extra_B=1755405 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=21 +#----------- +time=20154080541 +mem_heap_B=38763363 +mem_heap_extra_B=1752877 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=22 +#----------- +time=21032964899 +mem_heap_B=38771978 +mem_heap_extra_B=1755222 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=23 +#----------- +time=21911927808 +mem_heap_B=38783620 +mem_heap_extra_B=1755220 +mem_stacks_B=0 +heap_tree=detailed +n5: 38783620 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2730083 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 658195 in 115 places, all below massif's threshold (1.00%) + n2: 560352 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 471360 0x501B8F5: rebuild_table (st.c:780) + n0: 471360 in 4 places, all below massif's threshold (1.00%) + n0: 88992 in 34 places, all below massif's threshold (1.00%) + n2: 462960 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 462504 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 462504 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 460032 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 460032 in 10 places, all below massif's threshold (1.00%) + n0: 2472 in 6 places, all below massif's threshold (1.00%) + n0: 456 in 1 place, below massif's threshold (1.00%) + n1: 1098229 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1098229 in 26 places, all below massif's threshold (1.00%) + n2: 1029672 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 523008 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 523008 in 14 places, all below massif's threshold (1.00%) + n0: 506664 in 4 places, all below massif's threshold (1.00%) + n0: 371204 in 97 places, all below massif's threshold (1.00%) +#----------- +snapshot=24 +#----------- +time=22571119415 +mem_heap_B=38782336 +mem_heap_extra_B=1755392 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=25 +#----------- +time=23669727352 +mem_heap_B=38779671 +mem_heap_extra_B=1755473 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=26 +#----------- +time=24548606658 +mem_heap_B=38727474 +mem_heap_extra_B=1745558 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=27 +#----------- +time=25647367094 +mem_heap_B=38774263 +mem_heap_extra_B=1756153 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=28 +#----------- +time=26306533986 +mem_heap_B=38770056 +mem_heap_extra_B=1752624 +mem_stacks_B=0 +heap_tree=detailed +n5: 38770056 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2716604 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 644716 in 115 places, all below massif's threshold (1.00%) + n2: 560352 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 471360 0x501B8F5: rebuild_table (st.c:780) + n0: 471360 in 4 places, all below massif's threshold (1.00%) + n0: 88992 in 34 places, all below massif's threshold (1.00%) + n2: 462960 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 462504 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 462504 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 460032 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 460032 in 10 places, all below massif's threshold (1.00%) + n0: 2472 in 6 places, all below massif's threshold (1.00%) + n0: 456 in 1 place, below massif's threshold (1.00%) + n1: 1098229 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1098229 in 26 places, all below massif's threshold (1.00%) + n2: 1029672 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 523008 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 523008 in 14 places, all below massif's threshold (1.00%) + n0: 506664 in 4 places, all below massif's threshold (1.00%) + n0: 371119 in 97 places, all below massif's threshold (1.00%) +#----------- +snapshot=29 +#----------- +time=27185431843 +mem_heap_B=38783564 +mem_heap_extra_B=1755956 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=30 +#----------- +time=28002235993 +mem_heap_B=38779505 +mem_heap_extra_B=1755719 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=31 +#----------- +time=28756939242 +mem_heap_B=38780122 +mem_heap_extra_B=1756462 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=32 +#----------- +time=29511654939 +mem_heap_B=38775503 +mem_heap_extra_B=1755729 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=33 +#----------- +time=30266362825 +mem_heap_B=38772884 +mem_heap_extra_B=1755844 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=34 +#----------- +time=31021094473 +mem_heap_B=38785399 +mem_heap_extra_B=1755665 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=35 +#----------- +time=32153190832 +mem_heap_B=38780513 +mem_heap_extra_B=1755671 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=36 +#----------- +time=33285261927 +mem_heap_B=38772409 +mem_heap_extra_B=1754295 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=37 +#----------- +time=34039967772 +mem_heap_B=38773711 +mem_heap_extra_B=1756161 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=38 +#----------- +time=34794681029 +mem_heap_B=38716429 +mem_heap_extra_B=1741755 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=39 +#----------- +time=35549392527 +mem_heap_B=38746299 +mem_heap_extra_B=1748301 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=40 +#----------- +time=36681463311 +mem_heap_B=38735753 +mem_heap_extra_B=1746815 +mem_stacks_B=0 +heap_tree=detailed +n5: 38735753 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2682302 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 610414 in 115 places, all below massif's threshold (1.00%) + n2: 560352 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 471360 0x501B8F5: rebuild_table (st.c:780) + n0: 471360 in 4 places, all below massif's threshold (1.00%) + n0: 88992 in 34 places, all below massif's threshold (1.00%) + n2: 462960 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 462504 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 462504 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 460032 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 460032 in 10 places, all below massif's threshold (1.00%) + n0: 2472 in 6 places, all below massif's threshold (1.00%) + n0: 456 in 1 place, below massif's threshold (1.00%) + n1: 1098229 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1098229 in 26 places, all below massif's threshold (1.00%) + n2: 1029672 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 523008 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 523008 in 14 places, all below massif's threshold (1.00%) + n0: 506664 in 4 places, all below massif's threshold (1.00%) + n0: 371118 in 97 places, all below massif's threshold (1.00%) +#----------- +snapshot=41 +#----------- +time=37813561206 +mem_heap_B=38776731 +mem_heap_extra_B=1755613 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=42 +#----------- +time=38568272010 +mem_heap_B=38772665 +mem_heap_extra_B=1756399 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=43 +#----------- +time=39700343563 +mem_heap_B=38784045 +mem_heap_extra_B=1755675 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=44 +#----------- +time=40832434824 +mem_heap_B=38780203 +mem_heap_extra_B=1755469 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=45 +#----------- +time=41587152425 +mem_heap_B=38719201 +mem_heap_extra_B=1743471 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=46 +#----------- +time=43096557816 +mem_heap_B=38775399 +mem_heap_extra_B=1755953 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=47 +#----------- +time=43851281077 +mem_heap_B=38730162 +mem_heap_extra_B=1745110 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=48 +#----------- +time=44983377797 +mem_heap_B=38750061 +mem_heap_extra_B=1749491 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=49 +#----------- +time=46492790594 +mem_heap_B=38724123 +mem_heap_extra_B=1745045 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=50 +#----------- +time=46966180731 +mem_heap_B=38741697 +mem_heap_extra_B=1749199 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=51 +#----------- +time=47439568493 +mem_heap_B=38772408 +mem_heap_extra_B=1755752 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=52 +#----------- +time=47912957076 +mem_heap_B=38787185 +mem_heap_extra_B=1755759 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=53 +#----------- +time=48386352438 +mem_heap_B=38784981 +mem_heap_extra_B=1756043 +mem_stacks_B=0 +heap_tree=detailed +n5: 38784981 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2731364 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 659476 in 115 places, all below massif's threshold (1.00%) + n2: 560352 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 471360 0x501B8F5: rebuild_table (st.c:780) + n0: 471360 in 4 places, all below massif's threshold (1.00%) + n0: 88992 in 34 places, all below massif's threshold (1.00%) + n2: 462960 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 462504 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 462504 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 460032 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 460032 in 10 places, all below massif's threshold (1.00%) + n0: 2472 in 6 places, all below massif's threshold (1.00%) + n0: 456 in 1 place, below massif's threshold (1.00%) + n1: 1098229 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1098229 in 26 places, all below massif's threshold (1.00%) + n2: 1029672 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 523008 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 523008 in 14 places, all below massif's threshold (1.00%) + n0: 506664 in 4 places, all below massif's threshold (1.00%) + n0: 371284 in 97 places, all below massif's threshold (1.00%) +#----------- +snapshot=54 +#----------- +time=48859748772 +mem_heap_B=38737065 +mem_heap_extra_B=1746343 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=55 +#----------- +time=49333138882 +mem_heap_B=38768773 +mem_heap_extra_B=1753091 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=56 +#----------- +time=49806534541 +mem_heap_B=38778486 +mem_heap_extra_B=1755290 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=57 +#----------- +time=50279931365 +mem_heap_B=38759028 +mem_heap_extra_B=1751364 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=58 +#----------- +time=50753321097 +mem_heap_B=38754440 +mem_heap_extra_B=1751272 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=59 +#----------- +time=51226716083 +mem_heap_B=38774061 +mem_heap_extra_B=1755499 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=60 +#----------- +time=51700111512 +mem_heap_B=38763676 +mem_heap_extra_B=1753540 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=61 +#----------- +time=52173500659 +mem_heap_B=38786235 +mem_heap_extra_B=1755997 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=62 +#----------- +time=52646888697 +mem_heap_B=38785313 +mem_heap_extra_B=1755727 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=63 +#----------- +time=53120280073 +mem_heap_B=38751920 +mem_heap_extra_B=1749184 +mem_stacks_B=0 +heap_tree=detailed +n5: 38751920 (heap allocation functions) malloc/new/new[], --alloc-fns, etc. + n1: 33554432 0x4F10D03: rb_aligned_malloc (gc.c:7913) + n1: 33554432 0x50740A3: Init_TransientHeap (transient_heap.c:294) + n1: 33554432 0x4F254A7: rb_call_inits (inits.c:20) + n1: 33554432 0x4EF7297: ruby_setup (eval.c:74) + n1: 33554432 0x4EFA3A7: ruby_init (eval.c:91) + n0: 33554432 0x108954: main (main.c:41) + n4: 2698404 0x4F137C2: objspace_xmalloc0 (gc.c:8134) + n1: 1048576 0x5090610: Init_BareVM (vm.c:2427) + n1: 1048576 0x4EF7225: ruby_setup (eval.c:67) + n1: 1048576 0x4EFA3A7: ruby_init (eval.c:91) + n0: 1048576 0x108954: main (main.c:41) + n0: 626516 in 115 places, all below massif's threshold (1.00%) + n2: 560352 0x501B5D1: st_init_table_with_size (st.c:605) + n1: 471360 0x501B8F5: rebuild_table (st.c:780) + n0: 471360 in 4 places, all below massif's threshold (1.00%) + n0: 88992 in 34 places, all below massif's threshold (1.00%) + n2: 462960 0x4EB1FEB: iseq_setup (compile.c:2119) + n1: 462504 0x4EB39E0: rb_iseq_compile_node (compile.c:738) + n2: 462504 0x4F46800: rb_iseq_new_with_opt (iseq.c:728) + n1: 460032 0x4E9BD6B: new_child_iseq (compile.c:1224) + n0: 460032 in 10 places, all below massif's threshold (1.00%) + n0: 2472 in 6 places, all below massif's threshold (1.00%) + n0: 456 in 1 place, below massif's threshold (1.00%) + n1: 1098229 0x4F16B2A: ruby_xcalloc (gc.c:8350) + n0: 1098229 in 26 places, all below massif's threshold (1.00%) + n2: 1029672 0x4F0FC9B: heap_assign_page (gc.c:7913) + n1: 523008 0x4F15032: newobj_slowpath_wb_protected (gc.c:1718) + n0: 523008 in 14 places, all below massif's threshold (1.00%) + n0: 506664 in 4 places, all below massif's threshold (1.00%) + n0: 371183 in 97 places, all below massif's threshold (1.00%) +#----------- +snapshot=64 +#----------- +time=53593668027 +mem_heap_B=38766446 +mem_heap_extra_B=1752330 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=65 +#----------- +time=54067057134 +mem_heap_B=38773197 +mem_heap_extra_B=1753987 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=66 +#----------- +time=54540444970 +mem_heap_B=38779091 +mem_heap_extra_B=1755573 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=67 +#----------- +time=55013832402 +mem_heap_B=38745507 +mem_heap_extra_B=1749237 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=68 +#----------- +time=55487224257 +mem_heap_B=38777229 +mem_heap_extra_B=1755787 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=69 +#----------- +time=55960612838 +mem_heap_B=38774583 +mem_heap_extra_B=1755913 +mem_stacks_B=0 +heap_tree=empty +#----------- +snapshot=70 +#----------- +time=56434003158 +mem_heap_B=38787908 +mem_heap_extra_B=1755636 +mem_stacks_B=0 +heap_tree=empty diff --git a/optimizations/step9/profile.callgrind.out.52933 b/optimizations/step9/profile.callgrind.out.52933 new file mode 100644 index 0000000..cf6c166 --- /dev/null +++ b/optimizations/step9/profile.callgrind.out.52933 @@ -0,0 +1,314 @@ +events: memory + +fl=/Users/donasktello/ruby_runtime +fn=IO::close +0 2 + +fl=/Users/donasktello/ruby_runtime +fn=IO::closed? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::% +0 4 +cfl=/Users/donasktello/ruby_runtime +cfn=Integer::to_s +calls=3 105 +105 0 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::size +162 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::each_key +0 3 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::each +337 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::each_key +calls=1 338 +338 3 + +fl=/Users/donasktello/ruby_runtime +fn=Enumerable::sort +0 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::each +calls=1 102 +102 3 + +fl=/Users/donasktello/ruby_runtime +fn=Array::clear +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::tr! +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::shift +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=FalseClass::to_s +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=TrueClass::to_s +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Integer::to_s +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::include? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::end_with? +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=String::upcase! +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::join +0 38 + +fl=/Users/donasktello/ruby_runtime +fn=Array::reverse! +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=Array::sort! +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::add +349 13 + +fl=/Users/donasktello/ruby_runtime +fn=String::to_i +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::start_with? +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=String::split +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=IO::^foreach +0 145 +cfl=/Users/donasktello/ruby_runtime +cfn=String::split +calls=1646 40 +40 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::start_with? +calls=1646 42 +42 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::to_i +calls=3320 73 +73 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::add +calls=1382 75 +75 13 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sort! +calls=526 46 +46 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::reverse! +calls=263 44 +44 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::join +calls=263 46 +46 35 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase! +calls=263 46 +46 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::end_with? +calls=263 47 +47 1 +cfl=/Users/donasktello/ruby_runtime +cfn=String::include? +calls=263 48 +48 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Integer::to_s +calls=789 50 +50 0 +cfl=/Users/donasktello/ruby_runtime +cfn=TrueClass::to_s +calls=181 50 +50 0 +cfl=/Users/donasktello/ruby_runtime +cfn=FalseClass::to_s +calls=345 50 +50 0 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::write +calls=1641 55 +55 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::shift +calls=1641 55 +55 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::tr! +calls=1378 55 +55 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::clear +calls=526 63 +63 1 + +fl=/Users/donasktello/ruby_runtime +fn=IO::write +0 9 + +fl=/Users/donasktello/ruby_runtime +fn=File::initialize +0 1 + +fl=/Users/donasktello/ruby_runtime +fn=IO::^open +0 1 +cfl=/Users/donasktello/ruby_runtime +cfn=File::initialize +calls=1 36 +36 1 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::write +calls=7 105 +105 9 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^foreach +calls=1 39 +39 201 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::sort! +calls=2 83 +83 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::reverse! +calls=1 81 +81 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::join +calls=2 102 +102 3 +cfl=/Users/donasktello/ruby_runtime +cfn=String::upcase! +calls=2 102 +102 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::end_with? +calls=1 84 +84 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::include? +calls=1 85 +85 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Integer::to_s +calls=3 87 +87 0 +cfl=/Users/donasktello/ruby_runtime +cfn=FalseClass::to_s +calls=2 87 +87 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Array::shift +calls=5 93 +93 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::tr! +calls=3 95 +95 0 +cfl=/Users/donasktello/ruby_runtime +cfn=Enumerable::sort +calls=1 102 +102 4 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::size +calls=1 103 +103 0 +cfl=/Users/donasktello/ruby_runtime +cfn=String::% +calls=1 105 +105 5 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::closed? +calls=1 105 +105 1 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::close +calls=1 105 +105 2 + +fl=/Users/donasktello/ruby_runtime +fn=NilClass::nil? +0 0 + +fl=/Users/donasktello/ruby_runtime +fn=Hash::initialize +0 1 + +fl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +fn=Set::initialize +94 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 94 +94 1 +cfl=/Users/donasktello/ruby_runtime +cfn=NilClass::nil? +calls=1 96 +96 0 + +fl=/Users/donasktello/ruby_runtime +fn=Class::new +0 0 +cfl=/Users/donasktello/.rvm/rubies/ruby-2.6.1-railsexpress/lib/ruby/2.6.0/set.rb +cfn=Set::initialize +calls=1 28 +28 2 +cfl=/Users/donasktello/ruby_runtime +cfn=Hash::initialize +calls=1 94 +94 1 + +fl=/Users/donasktello/Projects/task-1/lib/parser.rb +fn=Object::work +21 1 +cfl=/Users/donasktello/ruby_runtime +cfn=Class::new +calls=1 28 +28 2 +cfl=/Users/donasktello/ruby_runtime +cfn=IO::^open +calls=1 36 +36 229 + +fl=/Users/donasktello/Projects/task-1/optimizations/rubyprof_patched.rb +fn=[global]::[no method] +7 1 +cfl=/Users/donasktello/Projects/task-1/lib/parser.rb +cfn=Object::work +calls=1 7 +7 232 + diff --git a/optimizations/step9/rubyprof_alloc.txt b/optimizations/step9/rubyprof_alloc.txt new file mode 100644 index 0000000..f4cf02d --- /dev/null +++ b/optimizations/step9/rubyprof_alloc.txt @@ -0,0 +1,42 @@ +Measure Mode: allocations +Thread ID: 70132114317320 +Fiber ID: 70132118710860 +Total: 17084.000000 +Sort by: self_time + + %self total self wait child calls name + 65.90 11258.000 11258.000 0.000 0.000 1646 String#split + 20.80 17050.000 3553.000 0.000 13497.000 1 #foreach + 4.65 795.000 795.000 0.000 0.000 795 Integer#to_s + 2.70 462.000 462.000 0.000 0.000 528 Array#sort! + 2.03 347.000 347.000 0.000 0.000 347 FalseClass#to_s + 1.55 265.000 265.000 0.000 0.000 265 Array#join + 1.18 201.000 201.000 0.000 0.000 1382 Set#add + 1.06 181.000 181.000 0.000 0.000 181 TrueClass#to_s + 0.04 17077.000 7.000 0.000 17070.000 1 #open + 0.02 17083.000 4.000 0.000 17079.000 1 Object#work + 0.02 5.000 3.000 0.000 2.000 1 Enumerable#sort + 0.01 2.000 2.000 0.000 0.000 1648 IO#write + 0.01 2.000 2.000 0.000 0.000 1 Set#each + 0.01 4.000 1.000 0.000 3.000 1 String#% + 0.01 2.000 1.000 0.000 1.000 2 *Class#new + 0.01 17084.000 1.000 0.000 17083.000 1 [global]#[no method] + 0.00 0.000 0.000 0.000 0.000 265 String#upcase! + 0.00 0.000 0.000 0.000 0.000 264 Array#reverse! + 0.00 0.000 0.000 0.000 0.000 1646 Array#shift + 0.00 0.000 0.000 0.000 0.000 1381 String#tr! + 0.00 0.000 0.000 0.000 0.000 3320 String#to_i + 0.00 0.000 0.000 0.000 0.000 1646 String#start_with? + 0.00 0.000 0.000 0.000 0.000 526 Array#clear + 0.00 0.000 0.000 0.000 0.000 1 Hash#each_key + 0.00 0.000 0.000 0.000 0.000 1 Set#size + 0.00 0.000 0.000 0.000 0.000 1 File#initialize + 0.00 0.000 0.000 0.000 0.000 1 IO#closed? + 0.00 0.000 0.000 0.000 0.000 1 NilClass#nil? + 0.00 0.000 0.000 0.000 0.000 1 Hash#initialize + 0.00 1.000 0.000 0.000 1.000 1 Set#initialize + 0.00 0.000 0.000 0.000 0.000 1 IO#close + 0.00 0.000 0.000 0.000 0.000 264 String#end_with? + 0.00 0.000 0.000 0.000 0.000 264 String#include? + +* indicates recursively called methods diff --git a/optimizations/step9/rubyprof_wall.txt b/optimizations/step9/rubyprof_wall.txt new file mode 100644 index 0000000..2fc74c3 --- /dev/null +++ b/optimizations/step9/rubyprof_wall.txt @@ -0,0 +1,42 @@ +Measure Mode: wall_time +Thread ID: 70132114317320 +Fiber ID: 70132118710860 +Total: 0.013361 +Sort by: self_time + + %self total self wait child calls name + 51.97 0.013 0.007 0.000 0.006 1 #foreach + 11.34 0.002 0.002 0.000 0.000 1646 String#split + 5.10 0.001 0.001 0.000 0.000 1382 Set#add + 4.52 0.001 0.001 0.000 0.000 3320 String#to_i + 4.31 0.001 0.001 0.000 0.000 1381 String#tr! + 4.21 0.001 0.001 0.000 0.000 1648 IO#write + 3.55 0.000 0.000 0.000 0.000 1 File#initialize + 2.56 0.000 0.000 0.000 0.000 528 Array#sort! + 2.32 0.000 0.000 0.000 0.000 1646 String#start_with? + 1.96 0.000 0.000 0.000 0.000 1646 Array#shift + 1.88 0.000 0.000 0.000 0.000 265 Array#join + 1.38 0.000 0.000 0.000 0.000 795 Integer#to_s + 0.61 0.000 0.000 0.000 0.000 1 IO#close + 0.57 0.000 0.000 0.000 0.000 264 String#include? + 0.52 0.000 0.000 0.000 0.000 526 Array#clear + 0.50 0.000 0.000 0.000 0.000 265 String#upcase! + 0.50 0.000 0.000 0.000 0.000 264 String#end_with? + 0.45 0.000 0.000 0.000 0.000 347 FalseClass#to_s + 0.34 0.000 0.000 0.000 0.000 264 Array#reverse! + 0.31 0.000 0.000 0.000 0.000 1 Enumerable#sort + 0.28 0.013 0.000 0.000 0.013 1 #open + 0.28 0.000 0.000 0.000 0.000 181 TrueClass#to_s + 0.18 0.013 0.000 0.000 0.013 1 [global]#[no method] + 0.10 0.000 0.000 0.000 0.000 1 Hash#each_key + 0.07 0.000 0.000 0.000 0.000 1 String#% + 0.06 0.013 0.000 0.000 0.013 1 Object#work + 0.04 0.000 0.000 0.000 0.000 1 Set#each + 0.04 0.000 0.000 0.000 0.000 1 Set#initialize + 0.02 0.000 0.000 0.000 0.000 1 Hash#initialize + 0.01 0.000 0.000 0.000 0.000 1 IO#closed? + 0.01 0.000 0.000 0.000 0.000 1 Set#size + 0.01 0.000 0.000 0.000 0.000 2 *Class#new + 0.00 0.000 0.000 0.000 0.000 1 NilClass#nil? + +* indicates recursively called methods diff --git a/optimizations/step9/stackprof_object.txt b/optimizations/step9/stackprof_object.txt new file mode 100644 index 0000000..9c56cdd --- /dev/null +++ b/optimizations/step9/stackprof_object.txt @@ -0,0 +1,113 @@ +================================== + Mode: object(1) + Samples: 17084 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 17083 (100.0%) 16879 (98.8%) Object#work + 201 (1.2%) 201 (1.2%) Set#add + 2 (0.0%) 2 (0.0%) Set#each + 17084 (100.0%) 1 (0.0%) block (2 levels) in
+ 1 (0.0%) 1 (0.0%) Set#initialize + 17084 (100.0%) 0 (0.0%)
+ 17084 (100.0%) 0 (0.0%) block in
+ 17084 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 17084 (100.0%) 0 (0.0%)
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:20) + samples: 16879 self (98.8%) / 17083 total (100.0%) + callers: + 32478 ( 190.1%) Object#work + 17083 ( 100.0%) block (2 levels) in
+ callees (204 total): + 32478 (15920.6%) Object#work + 201 ( 98.5%) Set#add + 2 ( 1.0%) Set#each + 1 ( 0.5%) Set#initialize + code: + | 20 | def work(filename) + | 21 | report_general_str = "\"totalUsers\":%{totalUsers},"\ + | 22 | "\"uniqueBrowsersCount\":%{uniqueBrowsersCount},"\ + | 23 | "\"totalSessions\":%{totalSessions},"\ + | 24 | "\"allBrowsers\":\"%{allBrowsers}\"}}\n"\ + | 25 | + 1 (0.0%) / 1 (0.0%) | 26 | report_general = {} + | 27 | report_general[:totalUsers] = report_general[:totalSessions] = 0 + 2 (0.0%) / 1 (0.0%) | 28 | report_general[:uniqueBrowsersCount] = Set.new + | 29 | + | 30 | user_name = '' + | 31 | user_longest_session = user_total_time = user_sessions_count = 0 + | 32 | user_always_chrome = user_used_ie = false + 1 (0.0%) / 1 (0.0%) | 33 | user_dates = [] + 1 (0.0%) / 1 (0.0%) | 34 | user_browsers = [] + | 35 | + 17078 (100.0%) / 2 (0.0%) | 36 | File.open("#{$support_dir}/result.json", 'w') do |f| + 1 (0.0%) / 1 (0.0%) | 37 | f.write("{\"usersStats\":{") + | 38 | + 17051 (99.8%) / 1649 (9.7%) | 39 | IO.foreach("#{$support_dir}/#{filename}") do |cols| + 11258 (65.9%) / 11258 (65.9%) | 40 | row = cols.split(SEP) + | 41 | + | 42 | if cols.start_with?('user'.freeze) + | 43 | if user_sessions_count > 0 + 230 (1.3%) / 230 (1.3%) | 44 | user_dates.sort!.reverse! + | 45 | + 493 (2.9%) / 493 (2.9%) | 46 | browsers = user_browsers.sort!.join(SEP_SPACE).upcase! + | 47 | user_always_chrome = true if browsers.end_with?('CHROME') + | 48 | user_used_ie = true if !user_always_chrome && browsers.include?('INTERNET') + | 49 | + 789 (4.6%) / 789 (4.6%) | 50 | f.write("\"#{user_name}\":{#{SESSIONS}#{user_sessions_count},#{TOTAL_TIME}#{user_total_time} min.\","\ + 526 (3.1%) / 526 (3.1%) | 51 | "#{LONGEST_SESSION}#{user_longest_session} min.\",#{BROWSERS}#{browsers}\",#{USED_IE}#{user_used_ie},"\ + 263 (1.5%) / 263 (1.5%) | 52 | "#{ALWAYS_CHROME}#{user_always_chrome},#{DATES}") + | 53 | + | 54 | while date = user_dates.shift + 1378 (8.1%) / 1378 (8.1%) | 55 | user_dates.size == 0 ? f.write("\"#{date.tr!("\n", '')}\"]},") : f.write("\"#{date.tr!("\n", '')}\",") + | 56 | end + | 57 | + | 58 | report_general[:totalSessions] += user_sessions_count + | 59 | report_general[:totalUsers] += 1 + | 60 | + | 61 | user_longest_session = user_total_time = user_sessions_count = 0 + | 62 | user_dates.clear + | 63 | user_browsers.clear + | 64 | + | 65 | user_always_chrome = user_used_ie = false + | 66 | end + | 67 | + 264 (1.5%) / 264 (1.5%) | 68 | user_name = "#{row[2]} #{row[3]}" + | 69 | else + | 70 | user_sessions_count += 1 + | 71 | + | 72 | user_total_time += row[4].to_i + | 73 | user_longest_session = row[4].to_i if user_longest_session < row[4].to_i + | 74 | user_browsers << row[3] + 201 (1.2%) | 75 | report_general[:uniqueBrowsersCount] << row[3] + | 76 | + | 77 | user_dates << row[5] + | 78 | end + | 79 | end + | 80 | + 1 (0.0%) / 1 (0.0%) | 81 | user_dates.sort!.reverse! + | 82 | + 2 (0.0%) / 2 (0.0%) | 83 | browsers = user_browsers.sort!.join(', ').upcase! + | 84 | user_always_chrome = true if browsers.end_with?('CHROME') + | 85 | user_used_ie = true if !user_always_chrome && browsers.include?('INTERNET') + | 86 | + 3 (0.0%) / 3 (0.0%) | 87 | f.write("\"#{user_name}\":{#{SESSIONS}#{user_sessions_count},#{TOTAL_TIME}#{user_total_time} min.\","\ + 2 (0.0%) / 2 (0.0%) | 88 | "#{LONGEST_SESSION}#{user_longest_session} min.\",#{BROWSERS}#{browsers}\",#{USED_IE}#{user_used_ie},"\ + 1 (0.0%) / 1 (0.0%) | 89 | "#{ALWAYS_CHROME}#{user_always_chrome},#{DATES}") + | 90 | + | 91 | while date = user_dates.shift + | 92 | if user_dates.size == 0 + 1 (0.0%) / 1 (0.0%) | 93 | f.write("\"#{date}\"]},") + | 94 | else + 3 (0.0%) / 3 (0.0%) | 95 | f.write("\"#{date.tr!("\n", '')}\",") + | 96 | end + | 97 | end + | 98 | + | 99 | report_general[:totalSessions] += user_sessions_count + | 100 | report_general[:totalUsers] += 1 + | 101 | + 6 (0.0%) / 4 (0.0%) | 102 | report_general[:allBrowsers] = report_general[:uniqueBrowsersCount].sort.join(SEP).upcase! + | 103 | report_general[:uniqueBrowsersCount] = report_general[:uniqueBrowsersCount].size + | 104 | + 5 (0.0%) / 5 (0.0%) | 105 | f.write(report_general_str % report_general) + | 106 | end diff --git a/optimizations/step9/stackprof_wall.txt b/optimizations/step9/stackprof_wall.txt new file mode 100644 index 0000000..62361b4 --- /dev/null +++ b/optimizations/step9/stackprof_wall.txt @@ -0,0 +1,57 @@ +================================== + Mode: wall(1000) + Samples: 4 (0.00% miss rate) + GC: 0 (0.00%) +================================== + TOTAL (pct) SAMPLES (pct) FRAME + 4 (100.0%) 4 (100.0%) Object#work + 4 (100.0%) 0 (0.0%) block (2 levels) in
+ 4 (100.0%) 0 (0.0%) block in
+ 4 (100.0%) 0 (0.0%) Object#save_stdout_to_file + 4 (100.0%) 0 (0.0%)
+ 4 (100.0%) 0 (0.0%)
+Object#work (/Users/donasktello/Projects/task-1/lib/parser.rb:20) + samples: 4 self (100.0%) / 4 total (100.0%) + callers: + 8 ( 200.0%) Object#work + 4 ( 100.0%) block (2 levels) in
+ callees (0 total): + 8 ( Inf%) Object#work + code: + | 20 | def work(filename) + | 21 | report_general_str = "\"totalUsers\":%{totalUsers},"\ + | 22 | "\"uniqueBrowsersCount\":%{uniqueBrowsersCount},"\ + | 23 | "\"totalSessions\":%{totalSessions},"\ + | 24 | "\"allBrowsers\":\"%{allBrowsers}\"}}\n"\ + | 25 | + | 26 | report_general = {} + | 27 | report_general[:totalUsers] = report_general[:totalSessions] = 0 + | 28 | report_general[:uniqueBrowsersCount] = Set.new + | 29 | + | 30 | user_name = '' + | 31 | user_longest_session = user_total_time = user_sessions_count = 0 + | 32 | user_always_chrome = user_used_ie = false + | 33 | user_dates = [] + | 34 | user_browsers = [] + | 35 | + 4 (100.0%) | 36 | File.open("#{$support_dir}/result.json", 'w') do |f| + | 37 | f.write("{\"usersStats\":{") + | 38 | + 4 (100.0%) | 39 | IO.foreach("#{$support_dir}/#{filename}") do |cols| + | 40 | row = cols.split(SEP) + | 41 | + | 42 | if cols.start_with?('user'.freeze) + | 43 | if user_sessions_count > 0 + | 44 | user_dates.sort!.reverse! + | 45 | + | 46 | browsers = user_browsers.sort!.join(SEP_SPACE).upcase! + | 47 | user_always_chrome = true if browsers.end_with?('CHROME') + | 48 | user_used_ie = true if !user_always_chrome && browsers.include?('INTERNET') + | 49 | + | 50 | f.write("\"#{user_name}\":{#{SESSIONS}#{user_sessions_count},#{TOTAL_TIME}#{user_total_time} min.\","\ + | 51 | "#{LONGEST_SESSION}#{user_longest_session} min.\",#{BROWSERS}#{browsers}\",#{USED_IE}#{user_used_ie},"\ + 1 (25.0%) / 1 (25.0%) | 52 | "#{ALWAYS_CHROME}#{user_always_chrome},#{DATES}") + | 53 | + 1 (25.0%) / 1 (25.0%) | 54 | while date = user_dates.shift + 2 (50.0%) / 2 (50.0%) | 55 | user_dates.size == 0 ? f.write("\"#{date.tr!("\n", '')}\"]},") : f.write("\"#{date.tr!("\n", '')}\",") + | 56 | end diff --git a/optimizations/valgrind_massif.rb b/optimizations/valgrind_massif.rb new file mode 100644 index 0000000..297eac2 --- /dev/null +++ b/optimizations/valgrind_massif.rb @@ -0,0 +1,7 @@ +require_relative '../lib/parser' + +# report = MemoryProfiler.report do + work('data_large.txt') +# end + +# report.pretty_print diff --git a/spec/asymptotic_calculator.rb b/spec/asymptotic_calculator.rb new file mode 100644 index 0000000..1f4264c --- /dev/null +++ b/spec/asymptotic_calculator.rb @@ -0,0 +1,17 @@ +require_relative '../lib/parser' +require_relative 'stdout_to_file' +require 'benchmark/ips' + +save_stdout_to_file('asymptotic.txt') do + Benchmark.ips do |bench| + bench.config(warmup: 2, time: 2, stats: :bootstrap, confidence: 100) + + bench.report('65kb') { work('data_65kb.txt') } + bench.report('125kb') { work('data_125kb.txt') } + bench.report('250kb') { work('data_250kb.txt') } + bench.report('0.5m') { work('data_05m.txt') } + bench.report('1m') { work('data_1m.txt') } + + bench.compare! + end +end diff --git a/spec/parser_regression_check.rb b/spec/parser_regression_check.rb new file mode 100644 index 0000000..3855096 --- /dev/null +++ b/spec/parser_regression_check.rb @@ -0,0 +1,18 @@ +require_relative '../lib/parser' +require 'benchmark/ips' +require 'yaml' + +metrics, = Benchmark.ips do |bench| + bench.config(warmup: 2, time: 2) + + bench.report { work('data_65kb.txt') } +end.data + +stored_metrics = YAML.load_file("#{$support_dir}/regression_metrics.yml") + +if stored_metrics[:ips] > metrics[:ips] + p "Regression - Was: #{stored_metrics[:ips]}, Became: #{metrics[:ips]}" +else + File.write("#{$support_dir}/regression_metrics.yml", { ips: metrics[:ips].round(2) }.to_yaml) + p "Progression - Was: #{stored_metrics[:ips]}, Became: #{metrics[:ips]}" +end diff --git a/spec/parser_spec.rb b/spec/parser_spec.rb new file mode 100644 index 0000000..8e55a2c --- /dev/null +++ b/spec/parser_spec.rb @@ -0,0 +1,76 @@ +require_relative '../lib/parser' +require 'minitest/autorun' +require 'minitest/spec' + +describe 'Parser' do + let(:data_for_processing) do + "user,0,Leida,Cira,0\n"\ + "session,0,0,Safari 29,87,2016-10-23\n"\ + "session,0,1,Firefox 12,118,2017-02-27\n"\ + "session,0,2,Internet Explorer 28,31,2017-03-28\n"\ + "session,0,3,Internet Explorer 28,109,2016-09-15\n"\ + "session,0,4,Safari 39,104,2017-09-27\n"\ + "session,0,5,Internet Explorer 35,6,2016-09-01\n"\ + "user,1,Palmer,Katrina,65\n"\ + "session,1,0,Safari 17,12,2016-10-21\n"\ + "session,1,1,Firefox 32,3,2016-12-20\n"\ + "session,1,2,Chrome 6,59,2016-11-11\n"\ + "session,1,3,Internet Explorer 10,28,2017-04-29\n"\ + "session,1,4,Chrome 13,116,2016-12-28\n"\ + "user,2,Gregory,Santos,86\n"\ + "session,2,0,Chrome 35,6,2018-09-21\n"\ + "session,2,1,Safari 49,85,2017-05-22\n"\ + "session,2,2,Firefox 47,17,2018-02-02\n"\ + "session,2,3,Chrome 20,84,2016-11-25" + end + + let(:expected_result) do + { + "usersStats":{ + "Leida Cira": { + "sessionsCount":6, + "totalTime":"455 min.", + "longestSession":"118 min.", + "browsers":'FIREFOX 12, INTERNET EXPLORER 28, INTERNET EXPLORER 28, INTERNET EXPLORER 35, '\ + 'SAFARI 29, SAFARI 39', + "usedIE":true, + "alwaysUsedChrome":false, + "dates":["2017-09-27", "2017-03-28", "2017-02-27", "2016-10-23", "2016-09-15", "2016-09-01"] + }, + "Palmer Katrina": { + "sessionsCount":5, + "totalTime":"218 min.", + "longestSession":"116 min.", + "browsers":"CHROME 13, CHROME 6, FIREFOX 32, INTERNET EXPLORER 10, SAFARI 17", + "usedIE":true, + "alwaysUsedChrome":false, + "dates":["2017-04-29", "2016-12-28", "2016-12-20", "2016-11-11", "2016-10-21"] + }, + "Gregory Santos": { + "sessionsCount":4, + "totalTime":"192 min.", + "longestSession":"85 min.", + "browsers":"CHROME 20, CHROME 35, FIREFOX 47, SAFARI 49", + "usedIE":false, + "alwaysUsedChrome":false, + "dates":["2018-09-21", "2018-02-02", "2017-05-22", "2016-11-25"] + }, + "totalUsers":3, + "uniqueBrowsersCount":14, + "totalSessions":15, + "allBrowsers":'CHROME 13,CHROME 20,CHROME 35,CHROME 6,FIREFOX 12,FIREFOX 32,FIREFOX 47,'\ + 'INTERNET EXPLORER 10,INTERNET EXPLORER 28,INTERNET EXPLORER 35,SAFARI 17,'\ + 'SAFARI 29,SAFARI 39,SAFARI 49', + } + }.to_json + "\n" + end + + before { File.write("#{$support_dir}/result.json", '') } + before { File.write("#{$support_dir}/data.txt", data_for_processing) } + + it 'parses file and saves to file calculated report' do + work('data.txt') + + File.read("#{$support_dir}/result.json").must_equal(expected_result) + end +end diff --git a/spec/stdout_to_file.rb b/spec/stdout_to_file.rb new file mode 100644 index 0000000..a6a12b7 --- /dev/null +++ b/spec/stdout_to_file.rb @@ -0,0 +1,9 @@ +def save_stdout_to_file(filename) + $stdout = StringIO.new + + yield + + $stdout.rewind + + File.open("#{$optimizations_dir}/#{filename}", 'w') { |f| f.write($stdout.read) } +end \ No newline at end of file diff --git a/spec/support/data_05m.txt b/spec/support/data_05m.txt new file mode 100644 index 0000000..8718aba --- /dev/null +++ b/spec/support/data_05m.txt @@ -0,0 +1,12835 @@ +user,0,Hazel,Margarete,19 +session,0,0,Internet Explorer 50,81,2018-02-01 +session,0,1,Safari 27,88,2017-10-28 +session,0,2,Firefox 13,92,2016-11-02 +session,0,3,Internet Explorer 40,37,2017-05-31 +session,0,4,Internet Explorer 16,37,2017-11-21 +session,0,5,Safari 19,22,2017-11-30 +session,0,6,Chrome 31,74,2016-08-22 +session,0,7,Firefox 46,76,2019-02-04 +user,1,Wilfredo,Louetta,40 +session,1,0,Firefox 38,68,2018-04-24 +session,1,1,Internet Explorer 41,27,2016-09-06 +session,1,2,Internet Explorer 1,74,2017-01-05 +session,1,3,Firefox 47,28,2017-06-09 +session,1,4,Internet Explorer 22,98,2016-11-03 +user,2,Cecil,Rosalba,44 +session,2,0,Safari 26,96,2018-08-20 +session,2,1,Internet Explorer 10,3,2019-01-03 +session,2,2,Internet Explorer 47,52,2016-07-31 +session,2,3,Safari 34,37,2017-09-14 +session,2,4,Internet Explorer 17,22,2016-07-10 +session,2,5,Firefox 26,76,2017-02-06 +session,2,6,Chrome 14,88,2017-02-19 +session,2,7,Safari 31,113,2018-04-12 +session,2,8,Chrome 20,72,2016-09-04 +session,2,9,Safari 13,14,2017-07-26 +user,3,Kieth,Noble,20 +session,3,0,Safari 23,1,2018-02-19 +session,3,1,Internet Explorer 24,92,2018-05-15 +session,3,2,Chrome 6,91,2017-01-06 +session,3,3,Internet Explorer 47,7,2016-09-01 +session,3,4,Firefox 4,20,2017-03-22 +session,3,5,Internet Explorer 23,17,2016-12-02 +session,3,6,Internet Explorer 5,91,2017-12-29 +session,3,7,Internet Explorer 23,2,2017-03-17 +user,4,Corie,Erika,32 +session,4,0,Chrome 11,49,2019-02-05 +session,4,1,Safari 44,18,2017-09-01 +session,4,2,Firefox 32,88,2017-06-01 +session,4,3,Chrome 28,82,2018-03-18 +session,4,4,Firefox 38,36,2018-06-11 +session,4,5,Safari 14,11,2017-04-06 +session,4,6,Safari 27,116,2017-05-30 +session,4,7,Safari 24,36,2018-06-12 +session,4,8,Firefox 3,28,2018-01-05 +user,5,Lou,Lean,39 +session,5,0,Internet Explorer 42,74,2017-08-20 +session,5,1,Internet Explorer 1,80,2018-11-22 +session,5,2,Chrome 18,105,2018-01-17 +user,6,Deedra,Minta,44 +session,6,0,Firefox 32,27,2017-07-07 +session,6,1,Firefox 45,48,2017-07-22 +session,6,2,Safari 33,55,2018-07-09 +session,6,3,Safari 1,14,2016-11-08 +session,6,4,Firefox 39,18,2017-02-06 +session,6,5,Safari 12,52,2016-07-18 +session,6,6,Firefox 18,84,2016-08-16 +session,6,7,Chrome 2,114,2016-10-18 +user,7,Loria,Vernetta,68 +session,7,0,Safari 14,51,2019-01-25 +session,7,1,Internet Explorer 29,88,2016-10-12 +session,7,2,Firefox 32,55,2016-11-15 +session,7,3,Safari 4,20,2016-11-19 +session,7,4,Chrome 42,95,2018-02-10 +session,7,5,Safari 36,88,2018-03-30 +session,7,6,Safari 7,74,2017-05-27 +session,7,7,Safari 18,67,2017-02-22 +session,7,8,Chrome 24,26,2018-11-01 +user,8,Abdul,Venessa,55 +session,8,0,Internet Explorer 1,60,2018-12-02 +session,8,1,Chrome 3,63,2016-10-02 +session,8,2,Safari 41,99,2017-01-12 +session,8,3,Firefox 13,69,2017-04-17 +session,8,4,Safari 31,115,2018-04-08 +session,8,5,Chrome 30,77,2019-01-28 +session,8,6,Safari 43,56,2017-05-07 +user,9,Brooks,Janae,6 +session,9,0,Internet Explorer 36,11,2018-08-11 +user,10,Rey,Coy,95 +session,10,0,Internet Explorer 27,115,2017-08-05 +session,10,1,Internet Explorer 21,119,2018-11-15 +session,10,2,Internet Explorer 2,0,2016-06-10 +session,10,3,Safari 13,44,2018-04-07 +session,10,4,Firefox 37,26,2018-05-04 +user,11,Cyrus,Danyel,41 +session,11,0,Firefox 34,118,2016-10-14 +session,11,1,Internet Explorer 34,45,2017-10-10 +session,11,2,Internet Explorer 38,70,2017-07-10 +user,12,Valentin,Emilio,21 +session,12,0,Chrome 13,28,2018-04-23 +session,12,1,Firefox 35,17,2018-11-29 +session,12,2,Firefox 19,68,2018-05-03 +session,12,3,Internet Explorer 14,2,2016-09-18 +session,12,4,Firefox 15,97,2018-04-15 +session,12,5,Safari 26,40,2016-06-13 +user,13,Mitchell,Hobert,78 +session,13,0,Internet Explorer 32,89,2019-02-07 +session,13,1,Firefox 17,0,2017-11-05 +session,13,2,Chrome 17,117,2018-12-12 +session,13,3,Firefox 28,3,2016-12-01 +session,13,4,Firefox 9,26,2018-08-05 +session,13,5,Safari 27,113,2017-09-02 +session,13,6,Internet Explorer 20,92,2018-08-17 +session,13,7,Safari 11,103,2016-11-11 +session,13,8,Safari 36,26,2018-06-18 +session,13,9,Internet Explorer 22,33,2018-07-15 +user,14,Yuonne,Nicholle,52 +session,14,0,Safari 45,112,2018-01-23 +session,14,1,Firefox 50,54,2017-08-13 +session,14,2,Chrome 21,53,2018-10-08 +session,14,3,Firefox 24,30,2018-12-25 +session,14,4,Chrome 26,117,2017-09-09 +session,14,5,Chrome 16,38,2019-01-29 +session,14,6,Chrome 48,72,2016-08-12 +session,14,7,Safari 23,36,2016-10-05 +session,14,8,Firefox 12,45,2018-05-17 +user,15,Marlene,Ling,76 +session,15,0,Chrome 50,60,2018-06-29 +user,16,Salina,Eddie,27 +session,16,0,Internet Explorer 26,10,2018-01-10 +session,16,1,Chrome 23,13,2017-01-04 +user,17,Ernestine,Clifton,6 +session,17,0,Chrome 13,28,2016-12-05 +session,17,1,Chrome 10,97,2017-11-13 +session,17,2,Safari 34,39,2017-08-24 +session,17,3,Safari 48,27,2018-03-27 +session,17,4,Internet Explorer 32,76,2016-10-22 +session,17,5,Firefox 42,106,2016-12-23 +session,17,6,Chrome 13,72,2018-01-08 +session,17,7,Chrome 24,37,2017-12-21 +user,18,Homer,Odelia,62 +session,18,0,Safari 10,3,2018-01-19 +session,18,1,Internet Explorer 25,81,2017-11-21 +session,18,2,Firefox 4,110,2017-05-17 +session,18,3,Firefox 12,92,2018-01-15 +session,18,4,Safari 43,88,2017-02-04 +session,18,5,Internet Explorer 42,19,2018-06-30 +session,18,6,Firefox 17,47,2016-09-10 +user,19,Jean,Gregg,96 +session,19,0,Internet Explorer 49,12,2016-10-19 +session,19,1,Firefox 36,56,2018-04-20 +session,19,2,Internet Explorer 32,3,2018-01-02 +session,19,3,Internet Explorer 20,85,2018-03-12 +session,19,4,Internet Explorer 21,21,2017-01-10 +session,19,5,Firefox 46,99,2017-08-19 +user,20,Jacinta,Erinn,34 +session,20,0,Chrome 44,49,2018-01-29 +session,20,1,Internet Explorer 33,90,2017-11-02 +session,20,2,Safari 22,44,2018-10-14 +session,20,3,Firefox 39,32,2019-01-07 +user,21,Melita,Mika,45 +session,21,0,Firefox 30,1,2016-08-03 +session,21,1,Safari 48,64,2017-05-10 +session,21,2,Chrome 40,61,2018-10-07 +session,21,3,Safari 37,0,2018-05-09 +session,21,4,Chrome 12,98,2017-02-24 +user,22,Matthew,Lucretia,23 +session,22,0,Internet Explorer 23,86,2017-08-02 +user,23,Maurice,Paz,38 +session,23,0,Internet Explorer 2,51,2017-09-28 +session,23,1,Internet Explorer 11,60,2016-08-02 +session,23,2,Firefox 31,32,2017-04-30 +user,24,Jessica,Brandi,8 +session,24,0,Chrome 12,111,2017-09-18 +user,25,Marget,Ming,58 +session,25,0,Chrome 31,51,2018-05-18 +session,25,1,Safari 9,63,2016-12-20 +session,25,2,Firefox 48,75,2018-03-26 +session,25,3,Firefox 16,51,2017-09-02 +user,26,Audria,Roselyn,85 +session,26,0,Firefox 22,84,2018-02-13 +session,26,1,Safari 14,52,2017-03-17 +session,26,2,Firefox 36,96,2016-11-12 +session,26,3,Firefox 6,16,2017-12-08 +user,27,Leilani,Ines,86 +session,27,0,Firefox 29,91,2016-10-03 +session,27,1,Chrome 44,66,2016-05-27 +session,27,2,Safari 9,90,2017-08-28 +user,28,Philip,Daysi,2 +session,28,0,Internet Explorer 23,27,2018-09-21 +session,28,1,Safari 4,116,2018-09-19 +user,29,Delmar,Otilia,44 +session,29,0,Safari 17,0,2016-08-02 +session,29,1,Internet Explorer 39,101,2017-04-21 +session,29,2,Internet Explorer 8,0,2016-10-19 +session,29,3,Internet Explorer 20,36,2017-02-05 +session,29,4,Internet Explorer 25,73,2018-07-31 +session,29,5,Chrome 18,49,2017-12-14 +session,29,6,Firefox 24,81,2018-09-06 +user,30,Newton,Brianna,34 +session,30,0,Chrome 38,110,2016-11-21 +session,30,1,Firefox 34,47,2017-08-27 +session,30,2,Internet Explorer 27,74,2017-07-13 +session,30,3,Internet Explorer 29,118,2018-03-14 +session,30,4,Chrome 16,24,2017-02-11 +session,30,5,Firefox 37,85,2019-01-26 +session,30,6,Firefox 34,22,2016-10-19 +session,30,7,Firefox 14,14,2018-04-11 +session,30,8,Firefox 27,33,2017-12-07 +user,31,Sherman,Pearly,65 +session,31,0,Firefox 5,113,2016-05-22 +session,31,1,Safari 1,50,2018-08-06 +session,31,2,Internet Explorer 6,29,2016-06-13 +session,31,3,Internet Explorer 48,103,2017-12-15 +session,31,4,Firefox 32,106,2018-07-26 +session,31,5,Safari 27,105,2016-12-08 +session,31,6,Safari 5,44,2016-09-19 +session,31,7,Safari 41,21,2017-02-19 +session,31,8,Firefox 22,66,2017-11-17 +user,32,Steve,Esmeralda,73 +session,32,0,Chrome 41,64,2018-07-13 +session,32,1,Firefox 11,50,2016-12-18 +session,32,2,Firefox 38,90,2018-12-26 +session,32,3,Firefox 41,114,2018-04-01 +session,32,4,Safari 49,22,2018-05-28 +session,32,5,Firefox 12,72,2017-09-12 +user,33,Young,Todd,59 +session,33,0,Chrome 10,59,2016-12-28 +session,33,1,Internet Explorer 28,92,2018-06-14 +session,33,2,Chrome 28,29,2017-04-28 +session,33,3,Firefox 1,52,2018-04-25 +session,33,4,Safari 46,25,2017-09-20 +session,33,5,Safari 32,57,2016-10-07 +user,34,Wen,Sherill,39 +session,34,0,Internet Explorer 18,92,2016-09-05 +session,34,1,Firefox 16,95,2017-08-27 +user,35,Margarita,Aileen,78 +session,35,0,Chrome 9,72,2018-02-27 +session,35,1,Firefox 27,18,2018-05-23 +session,35,2,Firefox 42,113,2016-07-22 +session,35,3,Safari 5,27,2018-09-14 +session,35,4,Chrome 49,17,2018-10-24 +session,35,5,Internet Explorer 17,75,2017-08-27 +session,35,6,Internet Explorer 46,49,2016-09-12 +user,36,Rich,Maddie,58 +session,36,0,Chrome 37,36,2016-08-22 +session,36,1,Chrome 21,81,2016-05-31 +session,36,2,Safari 38,71,2018-10-04 +user,37,Marcie,Modesto,76 +session,37,0,Internet Explorer 37,45,2017-01-06 +session,37,1,Chrome 27,58,2018-04-14 +session,37,2,Safari 43,108,2018-04-05 +session,37,3,Firefox 29,67,2016-12-09 +session,37,4,Firefox 43,90,2016-10-24 +session,37,5,Firefox 24,90,2017-04-30 +session,37,6,Chrome 3,104,2016-12-20 +session,37,7,Firefox 47,106,2017-06-15 +user,38,Amparo,Elvis,71 +session,38,0,Safari 9,74,2017-12-08 +session,38,1,Chrome 50,103,2016-05-30 +session,38,2,Internet Explorer 23,84,2018-06-21 +session,38,3,Chrome 6,67,2018-04-15 +session,38,4,Chrome 26,99,2017-10-19 +session,38,5,Chrome 36,73,2016-11-20 +session,38,6,Chrome 28,1,2018-01-26 +session,38,7,Chrome 38,21,2017-02-26 +user,39,Bailey,Brittanie,58 +session,39,0,Firefox 31,52,2018-12-19 +session,39,1,Safari 12,15,2017-10-16 +session,39,2,Safari 28,14,2016-11-08 +session,39,3,Chrome 50,60,2017-07-02 +user,40,Tawanda,Georgeann,70 +session,40,0,Safari 21,51,2018-05-02 +session,40,1,Firefox 34,85,2017-11-25 +session,40,2,Firefox 31,0,2017-08-11 +session,40,3,Internet Explorer 31,88,2018-01-06 +user,41,Jonnie,Louise,57 +session,41,0,Internet Explorer 16,7,2018-12-07 +session,41,1,Chrome 41,74,2019-02-03 +session,41,2,Safari 11,98,2018-11-28 +session,41,3,Firefox 16,7,2018-03-17 +session,41,4,Chrome 49,99,2018-10-10 +session,41,5,Firefox 46,18,2018-01-04 +session,41,6,Safari 6,54,2017-03-02 +session,41,7,Chrome 2,113,2016-08-18 +session,41,8,Safari 6,54,2019-02-11 +session,41,9,Firefox 46,40,2016-05-22 +user,42,Jamar,Annita,17 +session,42,0,Safari 8,82,2018-04-28 +session,42,1,Chrome 41,82,2016-05-28 +session,42,2,Firefox 47,35,2018-08-09 +user,43,Kurt,Camie,33 +session,43,0,Internet Explorer 16,90,2018-07-22 +session,43,1,Firefox 46,16,2017-07-23 +session,43,2,Safari 47,19,2016-09-26 +user,44,Gail,Morgan,79 +session,44,0,Safari 46,101,2018-10-31 +session,44,1,Firefox 49,42,2017-05-31 +session,44,2,Safari 50,61,2018-10-24 +session,44,3,Chrome 23,89,2016-07-29 +user,45,Trenton,Carlee,6 +session,45,0,Internet Explorer 27,70,2017-06-05 +session,45,1,Chrome 1,36,2017-05-04 +session,45,2,Firefox 5,29,2018-08-30 +session,45,3,Internet Explorer 38,81,2018-08-27 +session,45,4,Chrome 50,21,2017-01-21 +session,45,5,Internet Explorer 5,29,2017-12-14 +session,45,6,Firefox 42,102,2017-05-16 +session,45,7,Chrome 44,101,2017-12-31 +session,45,8,Internet Explorer 45,17,2019-02-08 +user,46,Ailene,Melba,3 +session,46,0,Chrome 8,73,2019-01-27 +session,46,1,Safari 43,6,2016-10-21 +session,46,2,Firefox 35,22,2018-09-01 +session,46,3,Firefox 29,19,2016-09-26 +session,46,4,Firefox 45,118,2017-01-11 +session,46,5,Chrome 38,47,2017-04-18 +session,46,6,Safari 40,100,2016-10-28 +user,47,Mohamed,Lorina,58 +session,47,0,Safari 48,75,2016-08-03 +session,47,1,Internet Explorer 27,18,2018-12-10 +session,47,2,Internet Explorer 39,117,2017-01-30 +session,47,3,Internet Explorer 42,90,2017-02-21 +session,47,4,Safari 47,15,2016-12-24 +session,47,5,Internet Explorer 38,59,2018-09-27 +session,47,6,Safari 6,4,2016-10-13 +user,48,Abbie,Young,83 +session,48,0,Safari 1,46,2017-08-17 +session,48,1,Firefox 8,4,2017-01-15 +session,48,2,Firefox 15,1,2018-09-06 +session,48,3,Chrome 4,46,2018-11-27 +session,48,4,Firefox 11,36,2016-11-29 +session,48,5,Chrome 34,67,2018-08-28 +session,48,6,Internet Explorer 50,27,2016-09-23 +user,49,Coleman,Mardell,78 +session,49,0,Chrome 32,46,2018-08-03 +session,49,1,Firefox 15,73,2018-10-24 +session,49,2,Safari 34,67,2016-07-16 +session,49,3,Safari 39,6,2019-02-04 +session,49,4,Firefox 37,31,2018-08-28 +session,49,5,Firefox 33,103,2016-09-25 +session,49,6,Chrome 12,68,2016-06-15 +user,50,Edwin,Joseph,20 +session,50,0,Safari 37,55,2017-10-04 +session,50,1,Safari 21,111,2018-04-27 +user,51,Sonya,Gay,42 +session,51,0,Chrome 34,107,2017-05-31 +session,51,1,Internet Explorer 32,1,2016-11-07 +session,51,2,Chrome 38,109,2018-07-02 +session,51,3,Internet Explorer 41,86,2017-08-08 +session,51,4,Internet Explorer 32,26,2016-09-17 +session,51,5,Firefox 10,52,2016-05-24 +session,51,6,Safari 5,9,2018-03-19 +session,51,7,Chrome 28,44,2017-01-28 +user,52,Aaron,Debbra,66 +session,52,0,Firefox 10,35,2016-10-24 +session,52,1,Safari 29,16,2016-09-17 +session,52,2,Chrome 27,66,2016-12-27 +session,52,3,Firefox 36,1,2018-06-20 +session,52,4,Internet Explorer 9,25,2017-05-07 +session,52,5,Internet Explorer 31,62,2016-06-19 +session,52,6,Firefox 44,63,2018-06-29 +session,52,7,Safari 11,56,2017-07-25 +user,53,Markus,Shyla,36 +session,53,0,Chrome 48,94,2018-05-24 +session,53,1,Chrome 6,72,2017-07-10 +session,53,2,Safari 1,21,2017-03-20 +session,53,3,Safari 6,107,2017-08-28 +session,53,4,Internet Explorer 17,67,2017-09-28 +session,53,5,Chrome 43,117,2017-10-15 +user,54,Velia,Corrine,63 +session,54,0,Firefox 27,92,2018-03-16 +user,55,Percy,Tarra,30 +session,55,0,Safari 27,14,2017-04-27 +session,55,1,Safari 45,15,2017-02-03 +session,55,2,Chrome 1,40,2016-06-26 +session,55,3,Internet Explorer 27,3,2017-09-12 +session,55,4,Internet Explorer 45,18,2017-09-27 +user,56,Laure,Lee,53 +session,56,0,Chrome 18,89,2018-04-30 +session,56,1,Firefox 23,97,2018-02-28 +session,56,2,Firefox 49,95,2018-05-03 +session,56,3,Firefox 42,84,2017-06-18 +user,57,Claude,Lauren,57 +session,57,0,Internet Explorer 31,20,2018-06-25 +session,57,1,Internet Explorer 29,37,2017-05-04 +session,57,2,Firefox 6,81,2018-06-10 +session,57,3,Internet Explorer 23,53,2018-10-14 +session,57,4,Firefox 15,54,2016-05-24 +session,57,5,Chrome 22,51,2017-02-07 +session,57,6,Chrome 44,0,2018-08-02 +session,57,7,Firefox 17,58,2016-10-02 +session,57,8,Internet Explorer 40,119,2018-07-24 +user,58,Timmy,Monica,41 +session,58,0,Internet Explorer 7,5,2017-05-07 +session,58,1,Firefox 16,82,2018-09-10 +session,58,2,Safari 26,99,2016-08-27 +session,58,3,Firefox 6,119,2018-10-31 +session,58,4,Firefox 29,42,2018-06-13 +session,58,5,Firefox 19,92,2016-08-25 +user,59,Mark,Shasta,95 +session,59,0,Chrome 50,102,2017-05-25 +session,59,1,Safari 39,25,2017-05-31 +session,59,2,Firefox 33,60,2016-06-25 +session,59,3,Safari 12,54,2018-05-09 +session,59,4,Internet Explorer 16,84,2018-10-13 +session,59,5,Chrome 39,27,2018-10-31 +session,59,6,Chrome 38,113,2018-07-05 +session,59,7,Firefox 45,109,2017-06-12 +user,60,Rhona,Alline,14 +session,60,0,Internet Explorer 2,35,2017-10-21 +session,60,1,Chrome 11,61,2016-09-01 +session,60,2,Firefox 13,42,2019-02-11 +session,60,3,Chrome 5,48,2017-02-11 +session,60,4,Safari 24,35,2018-09-05 +session,60,5,Firefox 44,115,2016-06-07 +user,61,Lester,Margaret,34 +session,61,0,Internet Explorer 18,98,2018-08-23 +session,61,1,Chrome 5,86,2018-12-03 +user,62,Renna,Sam,59 +session,62,0,Internet Explorer 27,73,2018-12-14 +session,62,1,Internet Explorer 49,73,2018-11-30 +session,62,2,Internet Explorer 5,113,2016-11-14 +user,63,Jacquline,Marth,98 +session,63,0,Firefox 43,77,2018-12-16 +session,63,1,Safari 18,84,2016-12-11 +user,64,Alia,Mary,74 +session,64,0,Internet Explorer 46,37,2016-11-26 +session,64,1,Safari 15,53,2016-12-06 +session,64,2,Internet Explorer 31,18,2017-01-01 +session,64,3,Safari 43,112,2016-10-05 +session,64,4,Firefox 35,76,2017-03-16 +session,64,5,Chrome 17,61,2018-03-25 +session,64,6,Internet Explorer 37,26,2018-07-31 +session,64,7,Chrome 36,55,2016-12-13 +session,64,8,Safari 4,66,2017-05-27 +user,65,Patricia,Winston,65 +session,65,0,Internet Explorer 35,118,2018-09-29 +session,65,1,Firefox 14,27,2017-05-28 +session,65,2,Chrome 18,15,2017-06-10 +session,65,3,Firefox 26,82,2016-11-23 +session,65,4,Safari 32,114,2016-09-05 +session,65,5,Internet Explorer 17,52,2016-11-05 +session,65,6,Chrome 44,107,2018-03-26 +session,65,7,Firefox 4,42,2017-05-15 +session,65,8,Internet Explorer 50,47,2017-10-13 +user,66,Jerry,Nicolasa,83 +session,66,0,Firefox 20,80,2017-07-23 +user,67,Randal,Pamella,16 +session,67,0,Chrome 37,10,2018-01-07 +session,67,1,Chrome 42,6,2017-01-26 +session,67,2,Firefox 34,14,2018-07-21 +user,68,Olen,Leia,88 +session,68,0,Chrome 35,47,2016-08-04 +session,68,1,Firefox 10,3,2018-09-15 +user,69,Jarod,Terence,28 +session,69,0,Internet Explorer 16,100,2016-08-06 +user,70,Jamie,Jeremy,32 +session,70,0,Internet Explorer 41,102,2018-04-24 +session,70,1,Firefox 33,46,2017-11-19 +session,70,2,Firefox 20,106,2018-06-30 +session,70,3,Safari 43,106,2018-05-03 +session,70,4,Internet Explorer 35,29,2018-03-18 +session,70,5,Chrome 34,20,2018-08-31 +session,70,6,Safari 44,74,2017-03-31 +session,70,7,Firefox 23,78,2017-04-20 +session,70,8,Internet Explorer 14,29,2018-07-14 +session,70,9,Internet Explorer 18,34,2018-08-11 +user,71,Hung,Delfina,63 +session,71,0,Chrome 11,0,2018-12-21 +session,71,1,Chrome 13,73,2018-11-11 +session,71,2,Internet Explorer 39,103,2016-11-29 +session,71,3,Chrome 11,74,2017-08-04 +session,71,4,Safari 35,90,2019-02-09 +session,71,5,Chrome 34,67,2019-02-12 +session,71,6,Chrome 13,68,2018-01-23 +session,71,7,Chrome 24,59,2018-01-27 +user,72,Kenisha,Belle,16 +session,72,0,Internet Explorer 42,72,2018-04-25 +session,72,1,Safari 2,75,2018-04-24 +session,72,2,Chrome 10,24,2016-06-14 +session,72,3,Chrome 40,113,2017-03-18 +session,72,4,Safari 37,13,2016-12-11 +session,72,5,Chrome 44,31,2018-12-19 +session,72,6,Internet Explorer 18,83,2018-03-19 +session,72,7,Chrome 45,4,2016-11-07 +session,72,8,Internet Explorer 22,83,2017-12-08 +session,72,9,Firefox 37,25,2018-09-09 +user,73,Tien,Kenyetta,30 +session,73,0,Firefox 38,99,2017-06-25 +session,73,1,Internet Explorer 41,80,2018-06-18 +session,73,2,Firefox 1,6,2017-08-09 +session,73,3,Firefox 15,69,2016-12-27 +session,73,4,Internet Explorer 42,96,2016-09-28 +user,74,Samantha,Tama,72 +session,74,0,Safari 33,12,2016-06-23 +user,75,Tyler,Santa,21 +session,75,0,Internet Explorer 40,102,2018-07-04 +session,75,1,Firefox 13,5,2016-06-05 +session,75,2,Safari 46,0,2016-09-16 +session,75,3,Firefox 37,107,2018-11-24 +session,75,4,Chrome 3,15,2018-12-29 +user,76,Jerome,Corene,46 +session,76,0,Chrome 23,42,2017-05-03 +session,76,1,Internet Explorer 8,44,2017-07-31 +session,76,2,Safari 1,71,2017-03-08 +session,76,3,Chrome 43,3,2018-03-31 +session,76,4,Chrome 35,22,2017-04-26 +session,76,5,Firefox 37,21,2016-11-01 +user,77,Lazaro,Raven,33 +session,77,0,Internet Explorer 33,31,2018-12-24 +session,77,1,Safari 18,8,2018-09-11 +session,77,2,Safari 23,86,2016-06-30 +session,77,3,Safari 9,91,2016-11-03 +session,77,4,Safari 14,22,2017-10-29 +session,77,5,Safari 3,114,2019-01-15 +session,77,6,Chrome 2,9,2017-04-06 +session,77,7,Safari 42,73,2017-03-29 +user,78,Normand,Sergio,14 +session,78,0,Firefox 45,92,2016-05-31 +session,78,1,Internet Explorer 31,109,2018-03-05 +session,78,2,Safari 17,65,2017-10-05 +user,79,Delois,Evelynn,78 +session,79,0,Firefox 19,56,2016-08-05 +user,80,Leota,Iva,68 +session,80,0,Chrome 5,66,2017-07-15 +session,80,1,Chrome 26,113,2017-09-09 +user,81,Pa,Therese,5 +session,81,0,Safari 43,53,2018-11-03 +session,81,1,Internet Explorer 44,27,2016-10-08 +session,81,2,Safari 16,10,2018-10-29 +session,81,3,Safari 20,22,2017-03-25 +session,81,4,Firefox 44,37,2018-07-06 +session,81,5,Safari 14,8,2017-12-14 +user,82,Anastacia,Napoleon,16 +session,82,0,Chrome 23,46,2017-06-19 +session,82,1,Chrome 31,95,2018-07-14 +session,82,2,Safari 21,104,2016-12-14 +session,82,3,Internet Explorer 30,2,2017-04-03 +session,82,4,Chrome 9,29,2017-12-26 +user,83,Deetta,Dahlia,37 +session,83,0,Internet Explorer 32,114,2018-10-17 +session,83,1,Internet Explorer 23,53,2017-02-11 +session,83,2,Safari 7,41,2017-06-30 +session,83,3,Firefox 15,55,2017-12-17 +session,83,4,Safari 17,70,2017-02-26 +session,83,5,Firefox 19,22,2018-04-04 +session,83,6,Firefox 39,57,2018-02-03 +session,83,7,Internet Explorer 38,45,2017-03-18 +user,84,Lorraine,Abram,68 +session,84,0,Firefox 27,32,2018-01-27 +session,84,1,Internet Explorer 1,85,2018-04-14 +session,84,2,Internet Explorer 31,11,2016-08-29 +session,84,3,Firefox 26,115,2017-04-23 +user,85,Millard,Tashia,58 +session,85,0,Safari 13,40,2018-10-01 +session,85,1,Safari 11,21,2018-09-29 +session,85,2,Firefox 39,37,2017-06-01 +session,85,3,Internet Explorer 39,95,2019-01-15 +session,85,4,Safari 40,73,2016-10-18 +session,85,5,Chrome 33,16,2018-01-15 +session,85,6,Firefox 1,13,2018-03-03 +session,85,7,Internet Explorer 46,45,2017-02-28 +session,85,8,Safari 3,96,2018-09-01 +user,86,Floretta,Brandon,28 +session,86,0,Safari 21,20,2017-05-21 +session,86,1,Safari 25,1,2017-08-19 +session,86,2,Safari 49,95,2018-12-27 +session,86,3,Internet Explorer 16,59,2016-11-27 +session,86,4,Firefox 16,18,2016-07-19 +session,86,5,Chrome 34,92,2019-01-16 +session,86,6,Internet Explorer 14,5,2017-08-25 +session,86,7,Firefox 27,79,2018-09-03 +session,86,8,Firefox 20,77,2018-02-18 +user,87,Carlyn,Hyun,21 +session,87,0,Safari 42,11,2018-06-16 +session,87,1,Internet Explorer 50,98,2018-02-11 +session,87,2,Internet Explorer 35,37,2018-12-10 +session,87,3,Internet Explorer 20,51,2016-08-08 +session,87,4,Chrome 7,63,2017-01-10 +session,87,5,Internet Explorer 21,96,2017-07-06 +session,87,6,Safari 32,8,2016-08-03 +session,87,7,Chrome 9,14,2017-10-28 +session,87,8,Firefox 38,114,2017-03-29 +session,87,9,Internet Explorer 13,10,2017-12-21 +user,88,Bradly,Karlene,28 +session,88,0,Internet Explorer 27,118,2018-12-20 +session,88,1,Chrome 18,20,2016-11-10 +session,88,2,Internet Explorer 42,7,2018-06-03 +session,88,3,Chrome 21,69,2017-09-06 +session,88,4,Chrome 38,38,2017-04-27 +session,88,5,Firefox 33,111,2018-07-12 +user,89,Alonso,Angelic,13 +session,89,0,Internet Explorer 9,87,2017-07-07 +session,89,1,Safari 41,61,2018-07-25 +session,89,2,Internet Explorer 39,6,2016-08-06 +session,89,3,Firefox 25,71,2018-05-03 +session,89,4,Safari 13,100,2017-04-22 +session,89,5,Internet Explorer 27,72,2017-02-26 +session,89,6,Safari 16,3,2017-04-27 +session,89,7,Internet Explorer 42,94,2017-03-02 +user,90,Tyrone,Selina,7 +session,90,0,Safari 48,5,2016-09-24 +session,90,1,Internet Explorer 20,48,2019-01-15 +session,90,2,Firefox 18,70,2017-08-22 +session,90,3,Chrome 45,71,2017-12-13 +session,90,4,Safari 46,104,2017-02-06 +session,90,5,Internet Explorer 37,104,2018-07-20 +session,90,6,Internet Explorer 23,75,2018-09-24 +session,90,7,Internet Explorer 25,56,2017-07-26 +session,90,8,Internet Explorer 3,21,2018-09-18 +user,91,Eli,Karyl,81 +session,91,0,Internet Explorer 40,29,2017-02-17 +session,91,1,Internet Explorer 11,92,2018-08-19 +session,91,2,Firefox 8,6,2019-01-20 +user,92,Rosalia,Willie,50 +session,92,0,Firefox 9,47,2018-08-28 +session,92,1,Internet Explorer 37,12,2018-02-24 +session,92,2,Internet Explorer 37,8,2018-03-03 +user,93,Chauncey,Debby,36 +session,93,0,Safari 38,35,2017-06-25 +session,93,1,Safari 15,66,2017-02-19 +session,93,2,Chrome 35,40,2017-07-27 +session,93,3,Safari 30,57,2017-08-12 +session,93,4,Firefox 30,2,2018-04-20 +session,93,5,Safari 46,64,2017-09-16 +session,93,6,Firefox 17,106,2018-10-28 +session,93,7,Chrome 24,119,2018-01-06 +user,94,Malika,Susann,66 +session,94,0,Chrome 47,31,2018-03-15 +session,94,1,Chrome 10,109,2017-06-05 +session,94,2,Safari 9,2,2017-11-06 +session,94,3,Chrome 15,25,2018-01-05 +session,94,4,Internet Explorer 28,51,2018-02-06 +user,95,Jerrold,Janise,18 +session,95,0,Safari 30,105,2016-11-25 +session,95,1,Safari 33,97,2018-01-06 +session,95,2,Internet Explorer 45,86,2016-09-22 +session,95,3,Internet Explorer 35,94,2018-06-04 +session,95,4,Chrome 31,67,2017-08-11 +session,95,5,Internet Explorer 43,16,2018-12-19 +session,95,6,Safari 43,12,2017-04-30 +user,96,Raymond,Stephania,43 +session,96,0,Internet Explorer 3,46,2016-09-08 +user,97,Silvia,Kennith,52 +session,97,0,Safari 17,24,2018-07-23 +session,97,1,Firefox 2,13,2018-05-31 +session,97,2,Firefox 48,108,2018-09-27 +session,97,3,Internet Explorer 49,57,2017-02-01 +session,97,4,Safari 23,42,2016-05-21 +session,97,5,Chrome 40,45,2016-08-05 +session,97,6,Internet Explorer 28,29,2017-10-04 +user,98,Hong,Dorris,59 +session,98,0,Chrome 18,10,2017-03-15 +session,98,1,Chrome 15,67,2017-07-03 +session,98,2,Internet Explorer 47,104,2017-01-08 +session,98,3,Safari 19,108,2017-12-06 +session,98,4,Safari 18,101,2018-12-10 +session,98,5,Chrome 33,47,2018-06-24 +user,99,Iesha,Duane,16 +session,99,0,Chrome 40,46,2016-10-27 +session,99,1,Firefox 14,46,2018-02-11 +session,99,2,Chrome 1,89,2018-08-08 +session,99,3,Internet Explorer 46,17,2018-06-20 +session,99,4,Chrome 35,111,2016-08-02 +user,100,Ignacio,Emmie,0 +session,100,0,Chrome 16,81,2018-06-25 +session,100,1,Internet Explorer 48,22,2016-10-06 +user,101,Ossie,Reginia,77 +session,101,0,Internet Explorer 44,105,2019-01-04 +session,101,1,Chrome 17,70,2018-01-12 +user,102,Gerardo,Sharleen,8 +session,102,0,Safari 28,20,2017-06-30 +user,103,Earline,Shantay,53 +session,103,0,Internet Explorer 3,98,2017-11-11 +session,103,1,Chrome 32,9,2016-06-20 +session,103,2,Internet Explorer 37,12,2017-07-01 +session,103,3,Chrome 42,75,2018-05-09 +session,103,4,Chrome 1,23,2018-02-09 +session,103,5,Safari 32,44,2018-04-20 +session,103,6,Safari 5,29,2018-03-01 +session,103,7,Chrome 44,2,2016-12-09 +session,103,8,Safari 35,36,2016-06-04 +session,103,9,Safari 10,16,2016-07-10 +user,104,Santos,Pamelia,15 +session,104,0,Firefox 1,57,2016-12-25 +session,104,1,Chrome 49,18,2018-05-27 +session,104,2,Firefox 17,36,2018-04-23 +session,104,3,Internet Explorer 32,19,2017-09-21 +session,104,4,Safari 41,97,2018-02-16 +session,104,5,Internet Explorer 31,73,2017-04-06 +session,104,6,Safari 4,57,2017-06-06 +session,104,7,Firefox 10,36,2016-11-10 +user,105,Lola,Florentino,24 +session,105,0,Internet Explorer 14,60,2018-01-20 +session,105,1,Safari 31,105,2017-01-18 +session,105,2,Firefox 29,66,2016-12-14 +user,106,Bert,Orville,11 +session,106,0,Safari 17,89,2018-05-20 +session,106,1,Firefox 15,49,2018-02-15 +user,107,Antonio,Brinda,59 +session,107,0,Internet Explorer 7,35,2018-07-06 +session,107,1,Firefox 19,5,2016-09-23 +session,107,2,Firefox 9,44,2018-02-16 +session,107,3,Chrome 5,18,2016-10-03 +session,107,4,Firefox 38,85,2016-07-30 +user,108,Joaquin,Wilfredo,35 +session,108,0,Firefox 6,13,2016-07-04 +session,108,1,Internet Explorer 20,24,2017-08-28 +session,108,2,Chrome 39,16,2018-09-27 +user,109,Clifton,Allan,5 +session,109,0,Safari 41,63,2018-11-29 +session,109,1,Chrome 17,19,2017-05-30 +session,109,2,Firefox 14,94,2018-02-19 +user,110,Donald,Wenona,56 +session,110,0,Safari 44,14,2016-05-19 +session,110,1,Firefox 22,57,2017-08-11 +user,111,Millard,Mittie,17 +session,111,0,Safari 13,23,2019-01-24 +session,111,1,Firefox 20,96,2016-11-15 +session,111,2,Chrome 48,62,2017-11-08 +session,111,3,Firefox 31,98,2017-10-26 +session,111,4,Safari 38,13,2017-10-03 +session,111,5,Internet Explorer 17,116,2017-12-14 +user,112,Jenette,Bruce,68 +session,112,0,Chrome 18,113,2018-02-25 +session,112,1,Firefox 44,1,2016-09-09 +session,112,2,Firefox 30,66,2017-07-27 +session,112,3,Internet Explorer 46,31,2017-12-06 +user,113,Bryan,Clorinda,86 +session,113,0,Safari 50,61,2016-07-17 +session,113,1,Safari 20,37,2018-04-19 +session,113,2,Safari 37,41,2018-06-10 +session,113,3,Internet Explorer 47,33,2017-10-30 +session,113,4,Firefox 30,5,2017-04-07 +session,113,5,Safari 39,6,2016-07-25 +session,113,6,Internet Explorer 36,48,2018-05-15 +session,113,7,Chrome 50,119,2018-03-26 +session,113,8,Firefox 31,93,2017-12-26 +user,114,Jena,Melony,83 +session,114,0,Internet Explorer 10,52,2016-06-11 +user,115,Jerri,Long,20 +session,115,0,Internet Explorer 20,101,2017-09-03 +session,115,1,Chrome 50,107,2017-04-10 +session,115,2,Firefox 36,85,2018-03-07 +session,115,3,Chrome 22,89,2018-12-15 +session,115,4,Safari 14,26,2018-03-23 +session,115,5,Firefox 24,21,2016-06-23 +user,116,Monte,Angelo,35 +session,116,0,Internet Explorer 14,106,2017-06-28 +user,117,Saran,Nathalie,83 +session,117,0,Chrome 9,92,2016-05-30 +session,117,1,Chrome 3,117,2016-11-02 +session,117,2,Safari 35,94,2016-08-09 +session,117,3,Chrome 3,103,2016-07-20 +session,117,4,Chrome 40,97,2017-08-12 +session,117,5,Firefox 4,6,2018-01-11 +session,117,6,Internet Explorer 19,67,2017-05-13 +user,118,Jonna,Waneta,6 +session,118,0,Chrome 10,101,2017-03-28 +session,118,1,Firefox 24,69,2017-05-06 +session,118,2,Safari 25,97,2018-09-28 +session,118,3,Internet Explorer 16,61,2016-09-24 +session,118,4,Chrome 48,94,2016-06-29 +session,118,5,Internet Explorer 29,13,2016-12-19 +session,118,6,Safari 15,98,2019-01-29 +session,118,7,Chrome 23,18,2017-03-27 +session,118,8,Internet Explorer 25,62,2016-07-29 +session,118,9,Firefox 18,5,2018-05-26 +user,119,Valeria,Gigi,79 +session,119,0,Chrome 36,2,2018-12-02 +user,120,Caron,Hye,64 +session,120,0,Safari 33,103,2016-05-30 +session,120,1,Internet Explorer 4,18,2017-08-12 +session,120,2,Safari 36,114,2017-04-30 +session,120,3,Internet Explorer 30,110,2019-01-26 +session,120,4,Internet Explorer 48,28,2018-10-04 +session,120,5,Safari 13,77,2016-06-16 +session,120,6,Chrome 9,73,2017-03-29 +session,120,7,Chrome 7,33,2016-08-23 +user,121,Wilbur,Lilly,91 +session,121,0,Chrome 5,116,2018-11-20 +session,121,1,Firefox 22,81,2017-03-09 +session,121,2,Internet Explorer 20,86,2017-12-01 +session,121,3,Chrome 7,66,2017-10-30 +user,122,Theresa,Iesha,90 +session,122,0,Internet Explorer 34,21,2017-05-20 +session,122,1,Internet Explorer 16,53,2018-11-25 +session,122,2,Internet Explorer 28,81,2017-03-14 +session,122,3,Firefox 21,79,2018-01-26 +session,122,4,Chrome 10,7,2017-03-07 +user,123,Domingo,Paul,70 +session,123,0,Internet Explorer 3,95,2017-07-31 +session,123,1,Chrome 24,53,2017-02-11 +session,123,2,Safari 3,81,2016-10-22 +user,124,Ahmed,Joshua,99 +session,124,0,Firefox 21,19,2017-03-28 +session,124,1,Internet Explorer 49,54,2017-08-14 +session,124,2,Safari 34,31,2017-04-19 +session,124,3,Internet Explorer 37,98,2018-08-25 +session,124,4,Chrome 1,64,2017-07-19 +session,124,5,Safari 17,25,2017-07-13 +session,124,6,Chrome 23,35,2017-10-30 +session,124,7,Safari 50,84,2018-05-25 +session,124,8,Chrome 14,72,2018-05-10 +session,124,9,Chrome 50,50,2017-01-31 +user,125,Isobel,Elwanda,51 +session,125,0,Firefox 50,111,2017-06-22 +session,125,1,Firefox 29,64,2018-10-17 +session,125,2,Safari 45,113,2017-02-04 +session,125,3,Safari 11,17,2016-09-13 +session,125,4,Chrome 14,93,2017-08-19 +session,125,5,Safari 5,35,2016-11-24 +session,125,6,Internet Explorer 12,66,2017-06-03 +session,125,7,Chrome 47,30,2018-11-04 +user,126,Tuyet,Louie,78 +session,126,0,Chrome 41,3,2018-02-07 +session,126,1,Safari 4,64,2017-07-20 +session,126,2,Safari 10,108,2017-07-11 +session,126,3,Chrome 6,60,2018-04-17 +session,126,4,Safari 23,6,2018-04-04 +session,126,5,Firefox 47,44,2017-05-13 +session,126,6,Firefox 37,37,2018-04-18 +session,126,7,Safari 4,23,2016-06-23 +session,126,8,Firefox 23,1,2016-09-23 +session,126,9,Safari 21,63,2017-04-27 +user,127,Tanika,Rufus,94 +session,127,0,Safari 12,4,2018-01-08 +session,127,1,Firefox 43,35,2017-11-23 +session,127,2,Firefox 48,97,2018-11-30 +user,128,Adriene,Athena,26 +session,128,0,Internet Explorer 9,85,2017-08-10 +user,129,Marlon,Lyla,0 +session,129,0,Chrome 28,95,2017-11-13 +session,129,1,Firefox 23,1,2017-09-01 +session,129,2,Safari 42,26,2018-08-12 +session,129,3,Safari 12,89,2018-01-31 +session,129,4,Safari 11,44,2018-07-09 +session,129,5,Firefox 43,7,2019-01-19 +session,129,6,Safari 37,31,2016-08-03 +session,129,7,Chrome 24,60,2017-10-16 +user,130,Beaulah,Titus,85 +session,130,0,Internet Explorer 28,70,2017-07-04 +session,130,1,Internet Explorer 31,92,2017-07-20 +session,130,2,Firefox 29,64,2018-08-09 +session,130,3,Internet Explorer 30,114,2018-07-20 +session,130,4,Internet Explorer 15,67,2017-05-26 +session,130,5,Safari 35,95,2016-12-23 +session,130,6,Internet Explorer 40,49,2018-12-13 +session,130,7,Safari 46,98,2016-06-18 +session,130,8,Internet Explorer 21,97,2017-05-28 +session,130,9,Safari 10,66,2018-05-16 +user,131,Jerold,Giovanna,17 +session,131,0,Internet Explorer 45,77,2018-08-10 +session,131,1,Firefox 46,66,2019-01-27 +session,131,2,Safari 13,36,2017-02-13 +session,131,3,Chrome 41,8,2017-08-09 +session,131,4,Internet Explorer 48,106,2018-03-17 +session,131,5,Safari 20,39,2018-04-04 +session,131,6,Firefox 4,27,2016-05-24 +session,131,7,Internet Explorer 15,13,2017-02-05 +session,131,8,Internet Explorer 7,23,2018-10-31 +session,131,9,Firefox 11,53,2019-02-11 +user,132,Lesley,Asha,31 +session,132,0,Firefox 12,97,2018-06-18 +session,132,1,Safari 10,94,2018-04-23 +session,132,2,Chrome 37,65,2016-12-20 +session,132,3,Safari 11,103,2016-07-02 +session,132,4,Safari 39,89,2018-04-13 +session,132,5,Chrome 37,36,2019-01-13 +session,132,6,Safari 45,78,2018-06-08 +session,132,7,Firefox 2,55,2016-06-17 +user,133,Lavonne,Cathie,18 +session,133,0,Chrome 23,73,2017-11-24 +session,133,1,Internet Explorer 40,89,2018-02-17 +session,133,2,Chrome 41,50,2016-06-27 +session,133,3,Chrome 30,19,2017-03-22 +session,133,4,Chrome 42,2,2017-11-13 +user,134,Jan,Viki,56 +session,134,0,Internet Explorer 6,49,2018-10-17 +session,134,1,Internet Explorer 21,105,2017-03-08 +user,135,Aron,Fairy,70 +session,135,0,Chrome 10,28,2016-08-06 +session,135,1,Safari 9,77,2018-10-14 +session,135,2,Safari 11,47,2017-09-20 +session,135,3,Firefox 43,35,2016-07-25 +user,136,Ronnie,Sung,0 +session,136,0,Internet Explorer 41,81,2018-12-30 +session,136,1,Chrome 39,100,2017-04-07 +session,136,2,Internet Explorer 42,25,2018-05-14 +session,136,3,Internet Explorer 50,30,2016-10-25 +session,136,4,Chrome 5,62,2017-11-21 +session,136,5,Firefox 17,78,2019-01-08 +session,136,6,Safari 7,84,2016-09-13 +session,136,7,Internet Explorer 1,68,2017-01-08 +session,136,8,Safari 15,2,2016-07-15 +session,136,9,Safari 35,44,2018-04-19 +user,137,Lachelle,Rodrigo,69 +session,137,0,Safari 2,52,2018-01-05 +session,137,1,Chrome 33,108,2017-10-12 +session,137,2,Firefox 44,113,2018-02-17 +session,137,3,Safari 15,67,2018-07-24 +session,137,4,Safari 39,115,2018-03-18 +session,137,5,Safari 25,28,2016-09-07 +session,137,6,Firefox 40,53,2017-11-01 +user,138,Justin,Van,66 +session,138,0,Safari 49,4,2018-09-23 +session,138,1,Internet Explorer 21,56,2019-01-29 +session,138,2,Safari 49,25,2018-11-08 +session,138,3,Internet Explorer 12,7,2017-11-05 +session,138,4,Safari 23,50,2017-05-08 +session,138,5,Safari 2,96,2017-03-28 +session,138,6,Internet Explorer 44,82,2016-08-22 +user,139,Theola,Frederica,78 +session,139,0,Firefox 44,107,2017-06-26 +session,139,1,Firefox 3,14,2017-11-28 +session,139,2,Firefox 15,94,2018-07-13 +session,139,3,Safari 31,51,2017-04-05 +session,139,4,Internet Explorer 25,74,2018-12-22 +user,140,Love,Brandy,35 +session,140,0,Chrome 25,27,2018-04-20 +session,140,1,Safari 6,71,2018-03-02 +session,140,2,Chrome 30,16,2016-09-27 +session,140,3,Internet Explorer 38,112,2016-12-09 +session,140,4,Internet Explorer 38,38,2018-09-27 +session,140,5,Firefox 46,18,2018-07-30 +session,140,6,Internet Explorer 48,0,2018-11-14 +user,141,Eleni,Rusty,55 +session,141,0,Safari 21,46,2017-03-05 +user,142,Roland,Shelby,26 +session,142,0,Firefox 4,43,2017-10-22 +session,142,1,Firefox 24,58,2016-11-19 +session,142,2,Chrome 5,73,2016-10-12 +session,142,3,Internet Explorer 12,19,2016-09-28 +session,142,4,Firefox 35,22,2017-05-22 +session,142,5,Chrome 33,4,2017-11-18 +session,142,6,Safari 20,31,2018-05-04 +session,142,7,Safari 4,25,2016-06-10 +user,143,Margot,Rebecca,46 +session,143,0,Chrome 45,110,2017-08-16 +session,143,1,Chrome 46,30,2018-09-29 +session,143,2,Safari 50,62,2018-06-02 +session,143,3,Firefox 11,45,2016-09-07 +session,143,4,Firefox 23,85,2018-12-05 +session,143,5,Safari 34,38,2016-08-10 +session,143,6,Safari 34,5,2017-06-13 +session,143,7,Safari 18,79,2017-01-02 +session,143,8,Firefox 23,57,2018-02-20 +user,144,Sonny,Lulu,20 +session,144,0,Safari 39,54,2016-08-03 +session,144,1,Chrome 5,77,2018-04-07 +session,144,2,Firefox 43,19,2018-02-03 +session,144,3,Chrome 36,103,2018-03-03 +session,144,4,Safari 15,90,2017-07-03 +session,144,5,Safari 35,22,2018-10-31 +session,144,6,Internet Explorer 48,33,2018-12-27 +session,144,7,Internet Explorer 45,109,2018-05-27 +user,145,Dallas,Amy,61 +session,145,0,Chrome 40,19,2018-06-14 +session,145,1,Firefox 43,5,2019-01-18 +session,145,2,Internet Explorer 8,86,2016-06-27 +session,145,3,Safari 24,103,2016-10-30 +user,146,Jamal,Hanh,16 +session,146,0,Chrome 14,9,2018-04-23 +session,146,1,Internet Explorer 4,67,2017-10-25 +session,146,2,Safari 24,104,2017-12-11 +session,146,3,Firefox 17,104,2017-09-06 +session,146,4,Internet Explorer 15,92,2018-07-30 +session,146,5,Internet Explorer 5,61,2016-08-03 +session,146,6,Firefox 8,86,2018-07-05 +session,146,7,Firefox 25,41,2017-01-12 +user,147,Ervin,Gabriel,82 +session,147,0,Safari 4,6,2016-09-07 +user,148,Patsy,Edwardo,89 +session,148,0,Firefox 13,5,2016-11-22 +session,148,1,Chrome 10,64,2018-07-31 +session,148,2,Chrome 10,57,2016-06-25 +session,148,3,Internet Explorer 39,104,2017-11-11 +session,148,4,Firefox 3,115,2018-11-12 +session,148,5,Chrome 23,67,2016-12-05 +session,148,6,Chrome 50,3,2016-11-16 +session,148,7,Chrome 7,110,2016-12-07 +session,148,8,Firefox 12,46,2016-09-16 +user,149,Clay,Retha,42 +session,149,0,Chrome 28,114,2016-10-24 +session,149,1,Internet Explorer 31,115,2018-08-01 +session,149,2,Firefox 42,91,2018-07-08 +session,149,3,Chrome 4,80,2018-04-06 +session,149,4,Firefox 47,5,2017-03-26 +session,149,5,Firefox 1,71,2016-12-15 +session,149,6,Safari 25,14,2017-04-22 +session,149,7,Firefox 11,91,2018-09-10 +user,150,Lindsay,Gail,48 +session,150,0,Safari 26,109,2017-12-16 +session,150,1,Safari 47,91,2018-03-02 +session,150,2,Safari 18,113,2016-09-25 +user,151,Brian,Stella,65 +session,151,0,Firefox 47,26,2018-11-24 +session,151,1,Chrome 42,70,2018-07-11 +session,151,2,Internet Explorer 15,14,2017-10-16 +session,151,3,Chrome 5,69,2017-08-18 +user,152,Newton,Gilda,22 +session,152,0,Firefox 13,50,2018-08-09 +session,152,1,Firefox 23,114,2018-04-16 +session,152,2,Firefox 50,38,2019-01-20 +session,152,3,Chrome 32,93,2018-02-28 +session,152,4,Firefox 6,55,2018-02-20 +session,152,5,Firefox 43,55,2018-06-15 +user,153,Ignacio,Kira,39 +session,153,0,Internet Explorer 41,17,2017-02-13 +session,153,1,Chrome 49,87,2019-02-08 +user,154,Ned,Robbie,15 +session,154,0,Firefox 35,110,2018-05-31 +session,154,1,Safari 6,24,2018-09-30 +session,154,2,Firefox 26,83,2018-01-30 +user,155,Una,Freddy,22 +session,155,0,Chrome 14,81,2017-01-18 +session,155,1,Chrome 48,66,2018-08-25 +session,155,2,Chrome 39,51,2017-02-01 +session,155,3,Chrome 14,63,2019-02-08 +session,155,4,Internet Explorer 30,15,2016-06-26 +session,155,5,Safari 8,28,2016-07-17 +session,155,6,Internet Explorer 12,80,2018-02-16 +session,155,7,Chrome 3,78,2017-09-05 +user,156,Mabelle,Carylon,62 +session,156,0,Safari 15,33,2017-05-01 +user,157,Bo,Vanetta,7 +session,157,0,Safari 7,37,2017-11-10 +session,157,1,Safari 2,96,2017-01-26 +user,158,Stacey,Man,48 +session,158,0,Safari 35,14,2018-09-26 +user,159,Deloras,Sharron,56 +session,159,0,Chrome 12,54,2017-10-10 +session,159,1,Chrome 22,3,2018-03-30 +session,159,2,Safari 31,12,2016-09-03 +user,160,Kristan,Art,2 +session,160,0,Safari 29,108,2016-09-18 +session,160,1,Safari 26,52,2016-12-26 +session,160,2,Firefox 22,10,2017-03-07 +session,160,3,Internet Explorer 22,35,2016-08-20 +session,160,4,Internet Explorer 18,108,2017-01-31 +user,161,Sergio,Almeda,90 +session,161,0,Chrome 14,104,2017-03-22 +user,162,Vance,Heidy,3 +session,162,0,Firefox 25,25,2017-05-08 +session,162,1,Internet Explorer 27,5,2017-02-07 +session,162,2,Chrome 47,2,2016-05-20 +session,162,3,Firefox 14,67,2018-09-12 +session,162,4,Internet Explorer 23,86,2018-12-08 +session,162,5,Internet Explorer 3,53,2018-09-08 +user,163,Sulema,Georgene,22 +session,163,0,Internet Explorer 49,112,2016-10-16 +session,163,1,Safari 1,106,2018-03-13 +session,163,2,Safari 14,83,2018-12-28 +user,164,Verda,Lili,61 +session,164,0,Safari 16,103,2018-09-26 +session,164,1,Safari 36,78,2018-12-06 +session,164,2,Internet Explorer 26,25,2017-08-20 +session,164,3,Chrome 8,45,2017-08-16 +session,164,4,Firefox 30,118,2018-06-08 +session,164,5,Internet Explorer 38,35,2016-11-15 +user,165,Leonarda,Jame,18 +session,165,0,Safari 30,48,2018-01-19 +session,165,1,Internet Explorer 45,94,2017-07-11 +session,165,2,Safari 22,116,2018-03-06 +session,165,3,Internet Explorer 10,11,2018-07-15 +session,165,4,Firefox 7,88,2018-12-21 +session,165,5,Chrome 18,33,2018-05-08 +user,166,Matt,Adrien,89 +session,166,0,Safari 25,105,2016-07-16 +session,166,1,Internet Explorer 16,103,2018-01-19 +session,166,2,Chrome 12,28,2018-11-03 +session,166,3,Safari 3,65,2016-08-17 +user,167,Zetta,Dara,42 +session,167,0,Safari 3,29,2017-11-17 +user,168,Nova,Ollie,97 +session,168,0,Internet Explorer 50,7,2018-02-07 +session,168,1,Safari 42,41,2017-06-16 +session,168,2,Firefox 17,101,2016-05-21 +session,168,3,Safari 20,20,2017-05-02 +session,168,4,Safari 11,40,2016-07-07 +session,168,5,Firefox 41,17,2016-11-22 +session,168,6,Firefox 49,44,2017-10-13 +session,168,7,Chrome 22,101,2018-09-12 +user,169,Erin,Matt,62 +session,169,0,Safari 31,114,2018-10-01 +session,169,1,Chrome 7,3,2017-04-02 +user,170,Randal,Tiffiny,27 +session,170,0,Firefox 25,114,2017-11-09 +session,170,1,Firefox 19,8,2016-06-19 +session,170,2,Safari 9,73,2018-04-12 +session,170,3,Internet Explorer 34,63,2018-07-31 +user,171,Earnest,Gemma,2 +session,171,0,Chrome 32,76,2018-12-18 +session,171,1,Chrome 19,3,2018-03-04 +session,171,2,Safari 10,101,2017-03-16 +session,171,3,Chrome 16,76,2017-08-03 +user,172,Wei,Sharleen,16 +session,172,0,Chrome 5,9,2018-11-16 +session,172,1,Chrome 17,96,2017-01-16 +session,172,2,Safari 24,37,2018-07-13 +session,172,3,Firefox 34,19,2018-03-07 +user,173,Hector,Marin,56 +session,173,0,Firefox 24,94,2018-07-29 +user,174,Robin,Tyrone,54 +session,174,0,Internet Explorer 16,81,2017-04-12 +session,174,1,Chrome 23,36,2017-04-01 +session,174,2,Chrome 50,54,2017-08-30 +user,175,Rosalyn,Inell,34 +session,175,0,Internet Explorer 29,75,2017-11-01 +session,175,1,Internet Explorer 11,72,2018-05-12 +session,175,2,Chrome 46,42,2018-08-10 +session,175,3,Chrome 13,6,2016-12-21 +session,175,4,Firefox 9,55,2016-08-01 +session,175,5,Chrome 5,103,2018-12-02 +user,176,Cory,Maurine,26 +session,176,0,Chrome 34,16,2018-05-22 +session,176,1,Safari 5,31,2017-09-03 +session,176,2,Internet Explorer 22,55,2017-01-06 +session,176,3,Chrome 41,26,2017-04-14 +session,176,4,Internet Explorer 42,4,2017-07-28 +session,176,5,Chrome 45,115,2017-07-12 +session,176,6,Firefox 26,58,2017-03-04 +session,176,7,Safari 26,7,2018-03-06 +session,176,8,Safari 34,60,2016-11-18 +session,176,9,Chrome 10,12,2018-06-30 +user,177,Roxanna,Sina,42 +session,177,0,Internet Explorer 13,108,2017-03-01 +session,177,1,Firefox 13,15,2018-11-16 +session,177,2,Internet Explorer 37,2,2017-11-24 +session,177,3,Safari 5,108,2017-01-01 +session,177,4,Internet Explorer 20,99,2018-06-02 +session,177,5,Firefox 36,54,2018-12-07 +user,178,Marisha,Tijuana,75 +session,178,0,Safari 38,17,2016-11-06 +session,178,1,Internet Explorer 9,67,2016-11-28 +session,178,2,Safari 45,82,2018-05-14 +session,178,3,Firefox 30,85,2017-08-18 +user,179,Tena,Ena,80 +session,179,0,Safari 10,36,2018-08-18 +user,180,German,Florida,78 +session,180,0,Firefox 21,95,2018-04-28 +session,180,1,Chrome 16,91,2017-08-27 +user,181,Cinthia,Angila,10 +session,181,0,Chrome 8,96,2016-12-26 +session,181,1,Chrome 4,50,2016-12-07 +session,181,2,Firefox 8,88,2019-02-08 +session,181,3,Internet Explorer 41,52,2017-10-13 +session,181,4,Safari 29,113,2017-07-21 +session,181,5,Internet Explorer 24,47,2018-12-17 +session,181,6,Internet Explorer 29,82,2018-09-21 +session,181,7,Firefox 18,56,2018-10-20 +user,182,Libbie,Keiko,20 +session,182,0,Chrome 38,67,2016-10-27 +session,182,1,Firefox 31,44,2016-08-20 +session,182,2,Safari 36,27,2017-10-24 +session,182,3,Internet Explorer 45,53,2018-07-31 +session,182,4,Chrome 14,48,2017-06-08 +session,182,5,Firefox 26,82,2016-07-11 +session,182,6,Internet Explorer 24,38,2017-02-04 +user,183,Isobel,Dave,69 +session,183,0,Firefox 28,40,2017-03-13 +session,183,1,Internet Explorer 17,16,2016-10-06 +session,183,2,Safari 1,38,2017-01-20 +session,183,3,Internet Explorer 44,91,2017-06-03 +session,183,4,Internet Explorer 37,5,2016-12-30 +session,183,5,Firefox 36,20,2017-05-02 +session,183,6,Firefox 26,57,2016-08-17 +session,183,7,Safari 21,37,2017-08-12 +session,183,8,Chrome 28,7,2018-02-22 +user,184,Francesco,Fay,0 +session,184,0,Chrome 27,68,2017-08-03 +session,184,1,Safari 7,40,2017-05-10 +session,184,2,Safari 47,94,2018-03-01 +session,184,3,Safari 3,14,2016-09-02 +user,185,Edgar,Temple,53 +session,185,0,Chrome 22,70,2017-06-25 +session,185,1,Firefox 34,8,2018-05-14 +session,185,2,Safari 16,100,2017-11-02 +session,185,3,Safari 40,84,2017-02-24 +session,185,4,Chrome 5,60,2018-08-16 +session,185,5,Firefox 50,76,2018-03-18 +user,186,Mohammad,Lenny,46 +session,186,0,Chrome 28,116,2017-03-29 +session,186,1,Firefox 17,106,2017-09-19 +user,187,Vincenza,Latoya,37 +session,187,0,Firefox 2,52,2016-10-20 +session,187,1,Firefox 40,17,2016-06-27 +session,187,2,Internet Explorer 11,52,2018-10-05 +session,187,3,Safari 9,87,2018-11-04 +session,187,4,Safari 36,6,2016-10-21 +session,187,5,Chrome 16,110,2017-06-07 +session,187,6,Chrome 47,7,2016-08-26 +session,187,7,Safari 21,105,2016-07-08 +user,188,Brent,Kelly,33 +session,188,0,Firefox 17,88,2018-06-11 +session,188,1,Firefox 16,66,2017-11-04 +session,188,2,Safari 26,15,2016-07-03 +session,188,3,Internet Explorer 43,0,2017-11-17 +session,188,4,Chrome 40,23,2017-02-27 +session,188,5,Internet Explorer 16,50,2018-11-22 +user,189,Lincoln,Jillian,60 +session,189,0,Firefox 12,13,2017-08-01 +session,189,1,Firefox 21,109,2018-04-28 +user,190,Iluminada,Kenda,12 +session,190,0,Internet Explorer 20,0,2017-02-23 +session,190,1,Firefox 18,16,2019-01-02 +session,190,2,Chrome 1,29,2018-10-18 +session,190,3,Internet Explorer 32,117,2016-12-08 +session,190,4,Safari 3,104,2018-04-22 +session,190,5,Safari 5,86,2018-05-08 +session,190,6,Firefox 22,18,2018-06-07 +user,191,Eartha,Augusta,78 +session,191,0,Chrome 30,16,2016-05-28 +session,191,1,Safari 36,81,2018-06-28 +session,191,2,Safari 21,71,2017-05-19 +session,191,3,Chrome 2,62,2018-06-23 +session,191,4,Firefox 18,75,2016-11-12 +user,192,Marcelo,Denae,50 +session,192,0,Chrome 31,48,2018-06-12 +session,192,1,Chrome 3,1,2017-02-28 +session,192,2,Firefox 16,98,2018-01-30 +user,193,Shellie,Napoleon,20 +session,193,0,Safari 14,100,2017-08-03 +session,193,1,Internet Explorer 14,112,2018-04-10 +session,193,2,Internet Explorer 22,55,2017-03-15 +session,193,3,Internet Explorer 48,51,2017-05-30 +user,194,Laurence,Donald,41 +session,194,0,Internet Explorer 31,9,2017-10-19 +session,194,1,Chrome 7,30,2018-05-13 +session,194,2,Firefox 17,95,2018-07-28 +session,194,3,Internet Explorer 6,29,2017-07-06 +session,194,4,Firefox 38,31,2017-05-02 +session,194,5,Internet Explorer 19,10,2017-09-21 +session,194,6,Chrome 12,10,2016-11-16 +user,195,Lonnie,Gayle,55 +session,195,0,Internet Explorer 34,53,2016-06-14 +session,195,1,Internet Explorer 26,116,2018-12-30 +session,195,2,Internet Explorer 40,35,2018-01-09 +session,195,3,Chrome 13,92,2017-06-23 +user,196,Charlie,Somer,65 +session,196,0,Firefox 49,77,2017-12-07 +session,196,1,Firefox 4,78,2017-03-31 +session,196,2,Safari 2,49,2017-07-25 +session,196,3,Chrome 25,24,2018-06-06 +session,196,4,Firefox 35,38,2018-08-11 +session,196,5,Chrome 32,102,2018-02-10 +session,196,6,Firefox 31,26,2018-05-10 +session,196,7,Safari 46,14,2017-02-27 +user,197,Berry,Janeth,44 +session,197,0,Chrome 8,95,2017-07-20 +user,198,Trevor,Jeanett,76 +session,198,0,Chrome 31,45,2018-05-13 +session,198,1,Chrome 18,86,2016-09-18 +user,199,Oren,Kim,7 +session,199,0,Firefox 1,34,2017-06-19 +session,199,1,Chrome 44,112,2016-12-07 +session,199,2,Safari 7,27,2016-06-20 +session,199,3,Firefox 4,29,2017-07-22 +session,199,4,Internet Explorer 4,41,2016-07-08 +session,199,5,Safari 42,1,2017-09-11 +session,199,6,Firefox 4,105,2018-10-21 +session,199,7,Firefox 40,93,2017-08-18 +session,199,8,Firefox 13,84,2018-11-20 +user,200,Freddy,Hiram,94 +session,200,0,Safari 49,43,2018-04-01 +session,200,1,Firefox 36,30,2018-04-12 +session,200,2,Chrome 15,111,2018-11-10 +session,200,3,Safari 2,60,2017-06-08 +user,201,Jules,Lucia,36 +session,201,0,Safari 37,78,2016-06-16 +user,202,Christa,Callie,77 +session,202,0,Internet Explorer 1,70,2017-07-15 +session,202,1,Internet Explorer 27,74,2018-02-07 +user,203,Hyun,Raelene,0 +session,203,0,Chrome 9,40,2016-07-11 +user,204,Britni,Nia,48 +session,204,0,Internet Explorer 40,29,2018-05-27 +session,204,1,Chrome 42,99,2016-10-05 +user,205,Caryn,Celia,19 +session,205,0,Safari 43,12,2016-07-20 +user,206,Georgine,Haley,84 +session,206,0,Safari 38,28,2018-03-04 +session,206,1,Safari 18,35,2018-08-27 +session,206,2,Firefox 29,118,2017-12-21 +session,206,3,Internet Explorer 31,28,2017-11-02 +session,206,4,Chrome 43,47,2018-06-12 +session,206,5,Firefox 5,5,2018-08-03 +session,206,6,Chrome 48,97,2017-05-17 +session,206,7,Safari 6,65,2018-02-26 +session,206,8,Chrome 31,46,2017-10-07 +user,207,Jordon,Amiee,15 +session,207,0,Firefox 48,7,2018-02-06 +session,207,1,Firefox 36,17,2016-09-16 +session,207,2,Internet Explorer 8,52,2018-03-25 +session,207,3,Safari 46,71,2018-11-16 +session,207,4,Safari 34,54,2018-05-15 +user,208,Kacy,Shakita,10 +session,208,0,Firefox 46,38,2018-03-02 +session,208,1,Firefox 47,51,2017-11-26 +session,208,2,Safari 28,92,2019-01-16 +session,208,3,Firefox 42,13,2017-05-31 +session,208,4,Safari 2,13,2017-05-29 +session,208,5,Internet Explorer 24,26,2016-10-02 +session,208,6,Firefox 22,73,2018-06-23 +session,208,7,Chrome 11,23,2017-12-12 +user,209,Donovan,Deane,73 +session,209,0,Internet Explorer 44,6,2017-10-09 +session,209,1,Firefox 14,31,2018-12-24 +session,209,2,Chrome 35,64,2017-05-25 +session,209,3,Chrome 8,88,2016-10-31 +session,209,4,Firefox 26,10,2018-08-05 +session,209,5,Chrome 30,6,2017-05-27 +session,209,6,Safari 10,111,2017-06-25 +session,209,7,Chrome 10,42,2016-07-16 +session,209,8,Internet Explorer 18,9,2017-06-17 +user,210,Brandi,Luann,41 +session,210,0,Safari 23,108,2018-03-27 +session,210,1,Internet Explorer 36,21,2017-06-24 +session,210,2,Chrome 15,29,2016-05-23 +session,210,3,Chrome 26,17,2017-02-19 +user,211,Zachery,Franchesca,32 +session,211,0,Chrome 39,52,2016-08-02 +user,212,Augustine,Lupe,55 +session,212,0,Safari 35,80,2018-08-08 +session,212,1,Chrome 45,59,2017-05-06 +session,212,2,Internet Explorer 4,2,2018-02-16 +session,212,3,Safari 19,0,2017-08-30 +session,212,4,Internet Explorer 47,111,2018-03-06 +session,212,5,Internet Explorer 43,119,2017-11-07 +session,212,6,Chrome 40,39,2017-10-27 +session,212,7,Internet Explorer 33,89,2016-12-21 +session,212,8,Chrome 12,5,2016-07-23 +session,212,9,Internet Explorer 49,9,2017-07-01 +user,213,Gabriel,Aline,80 +session,213,0,Firefox 28,56,2018-12-13 +session,213,1,Safari 26,48,2017-06-25 +session,213,2,Chrome 2,87,2018-07-29 +session,213,3,Safari 22,93,2018-10-10 +session,213,4,Safari 41,65,2017-06-22 +session,213,5,Safari 35,111,2017-04-06 +session,213,6,Safari 40,90,2019-01-05 +session,213,7,Safari 41,75,2018-01-08 +user,214,Isaac,Irina,55 +session,214,0,Internet Explorer 43,9,2018-02-06 +session,214,1,Safari 24,30,2018-10-26 +session,214,2,Firefox 45,50,2016-07-05 +session,214,3,Safari 36,48,2017-08-23 +session,214,4,Internet Explorer 26,6,2018-04-30 +session,214,5,Internet Explorer 28,101,2016-12-15 +user,215,Myron,Lacy,63 +session,215,0,Internet Explorer 6,66,2017-07-13 +session,215,1,Internet Explorer 29,23,2018-07-10 +session,215,2,Chrome 18,15,2016-06-18 +user,216,Yong,Heike,3 +session,216,0,Safari 45,67,2016-05-30 +session,216,1,Chrome 45,10,2019-02-02 +session,216,2,Chrome 27,49,2017-09-12 +session,216,3,Internet Explorer 6,116,2019-01-30 +session,216,4,Safari 14,112,2017-04-24 +session,216,5,Chrome 50,3,2016-10-15 +session,216,6,Safari 45,69,2017-04-25 +session,216,7,Chrome 8,38,2017-04-18 +session,216,8,Chrome 9,48,2017-04-04 +user,217,Wilfredo,Jacinto,3 +session,217,0,Chrome 47,80,2016-09-09 +session,217,1,Safari 28,101,2019-01-11 +session,217,2,Firefox 23,89,2017-12-05 +user,218,Dannie,Twanda,42 +session,218,0,Chrome 28,41,2018-10-30 +session,218,1,Safari 10,82,2018-06-16 +session,218,2,Internet Explorer 7,99,2017-01-11 +session,218,3,Internet Explorer 18,42,2017-09-01 +session,218,4,Safari 42,39,2016-07-26 +user,219,Theo,Lottie,32 +session,219,0,Internet Explorer 48,45,2016-07-27 +session,219,1,Firefox 9,102,2018-01-30 +session,219,2,Chrome 44,28,2018-05-04 +session,219,3,Internet Explorer 28,46,2018-08-20 +user,220,Jesenia,Lai,81 +session,220,0,Internet Explorer 28,107,2018-11-30 +session,220,1,Firefox 49,112,2018-02-07 +user,221,Simon,Pearly,17 +session,221,0,Safari 2,99,2018-11-09 +session,221,1,Firefox 4,116,2016-10-16 +session,221,2,Firefox 46,57,2018-06-19 +session,221,3,Safari 20,53,2018-06-11 +session,221,4,Internet Explorer 38,81,2018-01-13 +session,221,5,Firefox 8,45,2017-05-09 +user,222,Eldon,Florencia,36 +session,222,0,Internet Explorer 2,92,2016-11-13 +session,222,1,Firefox 47,2,2016-11-11 +session,222,2,Chrome 25,116,2016-08-21 +session,222,3,Internet Explorer 9,51,2017-06-24 +session,222,4,Internet Explorer 45,113,2017-05-27 +session,222,5,Safari 35,53,2017-03-14 +user,223,Ben,Leisha,23 +session,223,0,Safari 11,101,2019-01-06 +session,223,1,Safari 41,100,2018-05-30 +session,223,2,Internet Explorer 13,77,2017-01-09 +session,223,3,Safari 38,50,2018-05-26 +session,223,4,Firefox 21,18,2017-09-15 +session,223,5,Safari 30,41,2017-05-05 +session,223,6,Internet Explorer 19,53,2017-09-26 +session,223,7,Firefox 38,56,2016-07-29 +session,223,8,Firefox 50,66,2017-04-27 +user,224,Daron,Marshall,64 +session,224,0,Chrome 11,85,2018-04-09 +session,224,1,Internet Explorer 17,106,2018-03-06 +session,224,2,Safari 9,41,2017-03-05 +session,224,3,Chrome 3,54,2018-08-27 +user,225,Melva,Buena,89 +session,225,0,Firefox 31,86,2017-05-18 +session,225,1,Firefox 11,25,2018-01-23 +session,225,2,Internet Explorer 46,28,2017-02-02 +session,225,3,Safari 12,69,2018-01-13 +session,225,4,Safari 18,89,2019-01-16 +session,225,5,Safari 8,40,2017-07-22 +session,225,6,Internet Explorer 28,76,2019-01-13 +session,225,7,Internet Explorer 37,61,2016-08-20 +session,225,8,Firefox 47,72,2018-04-10 +user,226,Andres,Broderick,68 +session,226,0,Safari 29,96,2016-07-13 +user,227,Ron,Lanora,93 +session,227,0,Chrome 48,106,2017-02-18 +session,227,1,Internet Explorer 15,28,2018-07-31 +user,228,Olen,Donn,31 +session,228,0,Firefox 14,35,2017-12-21 +session,228,1,Safari 16,20,2017-06-11 +session,228,2,Chrome 48,109,2017-03-07 +session,228,3,Firefox 1,32,2017-05-25 +user,229,Caroll,Kate,42 +session,229,0,Internet Explorer 41,32,2018-06-09 +session,229,1,Firefox 47,37,2018-01-22 +session,229,2,Safari 20,75,2018-04-21 +session,229,3,Safari 47,52,2017-10-09 +session,229,4,Firefox 37,96,2017-05-14 +session,229,5,Safari 38,50,2018-08-23 +session,229,6,Chrome 20,27,2018-03-27 +user,230,Shana,Hobert,79 +session,230,0,Chrome 39,33,2016-09-02 +session,230,1,Internet Explorer 23,14,2017-09-30 +session,230,2,Internet Explorer 43,55,2016-12-03 +session,230,3,Internet Explorer 41,22,2019-02-10 +session,230,4,Internet Explorer 30,113,2018-08-18 +session,230,5,Safari 4,3,2016-05-19 +session,230,6,Firefox 9,76,2017-01-09 +user,231,Phil,Moira,64 +session,231,0,Safari 42,85,2017-06-17 +session,231,1,Chrome 47,98,2016-09-28 +session,231,2,Internet Explorer 26,3,2016-12-24 +session,231,3,Firefox 24,10,2017-10-29 +session,231,4,Safari 37,22,2016-11-16 +session,231,5,Chrome 23,38,2017-06-08 +session,231,6,Chrome 7,91,2018-08-22 +session,231,7,Chrome 50,90,2017-08-24 +user,232,Efrain,Daniele,86 +session,232,0,Chrome 31,45,2017-07-24 +session,232,1,Safari 25,24,2019-02-04 +session,232,2,Safari 43,1,2018-04-14 +session,232,3,Internet Explorer 47,23,2017-08-06 +user,233,Ria,Barbera,27 +session,233,0,Internet Explorer 38,28,2017-03-14 +session,233,1,Firefox 19,62,2016-09-11 +session,233,2,Firefox 23,18,2017-11-03 +session,233,3,Firefox 13,29,2016-10-31 +session,233,4,Firefox 3,95,2018-07-09 +session,233,5,Firefox 17,18,2016-09-10 +session,233,6,Safari 26,34,2017-07-18 +session,233,7,Firefox 37,105,2016-09-13 +user,234,Percy,Tess,4 +session,234,0,Safari 2,0,2018-02-18 +session,234,1,Chrome 2,40,2017-02-09 +session,234,2,Chrome 17,65,2018-07-27 +session,234,3,Safari 24,107,2017-12-02 +session,234,4,Safari 2,77,2019-01-27 +session,234,5,Firefox 28,15,2016-08-21 +session,234,6,Safari 23,89,2016-07-13 +session,234,7,Safari 27,94,2018-10-14 +session,234,8,Safari 14,27,2017-05-17 +session,234,9,Chrome 29,11,2017-07-04 +user,235,Curtis,Eleni,16 +session,235,0,Chrome 50,117,2017-01-04 +session,235,1,Chrome 5,103,2018-03-08 +session,235,2,Chrome 2,33,2016-08-05 +session,235,3,Internet Explorer 11,53,2018-08-18 +user,236,Delmar,Chantell,3 +session,236,0,Firefox 23,16,2016-10-22 +session,236,1,Firefox 5,34,2016-11-10 +user,237,Lenora,Lynwood,78 +session,237,0,Firefox 10,63,2018-08-09 +session,237,1,Safari 37,92,2018-09-10 +session,237,2,Chrome 15,62,2018-04-09 +session,237,3,Firefox 5,7,2018-10-20 +user,238,Jamey,Ignacio,93 +session,238,0,Firefox 45,95,2017-06-11 +session,238,1,Safari 9,24,2017-10-03 +session,238,2,Firefox 24,3,2018-11-01 +session,238,3,Internet Explorer 48,99,2018-07-04 +session,238,4,Firefox 37,71,2017-10-03 +session,238,5,Firefox 38,110,2018-12-31 +session,238,6,Safari 40,108,2017-02-08 +user,239,Marvin,Freddie,7 +session,239,0,Safari 3,86,2016-05-26 +session,239,1,Safari 50,62,2018-04-05 +session,239,2,Chrome 31,78,2016-10-04 +user,240,Chance,Willa,48 +session,240,0,Chrome 37,73,2018-05-25 +session,240,1,Safari 5,99,2018-02-19 +session,240,2,Firefox 18,100,2017-12-15 +session,240,3,Firefox 10,112,2017-12-20 +session,240,4,Safari 13,91,2018-11-12 +session,240,5,Chrome 44,98,2016-11-09 +session,240,6,Internet Explorer 22,63,2016-06-21 +session,240,7,Chrome 40,74,2017-05-18 +user,241,Petrina,Carmelita,1 +session,241,0,Safari 32,75,2017-10-24 +session,241,1,Safari 30,1,2017-07-01 +session,241,2,Safari 29,17,2016-06-02 +session,241,3,Chrome 22,107,2018-08-20 +session,241,4,Chrome 24,118,2018-03-08 +session,241,5,Chrome 13,99,2017-09-29 +session,241,6,Internet Explorer 38,65,2016-11-05 +session,241,7,Safari 8,25,2018-11-24 +session,241,8,Internet Explorer 7,5,2016-11-24 +user,242,Kathrin,Clement,29 +session,242,0,Chrome 39,86,2018-01-15 +session,242,1,Firefox 49,73,2017-10-23 +session,242,2,Internet Explorer 17,61,2017-02-10 +user,243,Brooks,Theron,80 +session,243,0,Safari 47,54,2018-12-10 +session,243,1,Firefox 43,110,2016-12-29 +session,243,2,Safari 46,92,2017-05-28 +session,243,3,Internet Explorer 1,54,2017-11-03 +session,243,4,Chrome 2,98,2018-08-04 +user,244,Brain,Dewitt,78 +session,244,0,Safari 44,31,2019-02-04 +session,244,1,Internet Explorer 44,48,2016-07-22 +session,244,2,Firefox 25,70,2018-12-09 +session,244,3,Firefox 43,62,2018-09-29 +session,244,4,Safari 1,10,2016-10-15 +session,244,5,Safari 47,63,2018-03-11 +user,245,Brent,Elia,86 +session,245,0,Internet Explorer 50,116,2018-03-12 +user,246,Philip,Cecelia,17 +session,246,0,Firefox 45,43,2018-07-15 +session,246,1,Chrome 50,64,2017-08-18 +session,246,2,Chrome 8,59,2018-08-22 +user,247,Calvin,Della,90 +session,247,0,Internet Explorer 15,23,2017-01-25 +user,248,Warren,Iris,72 +session,248,0,Chrome 26,62,2017-10-18 +user,249,Isidra,Dorsey,83 +session,249,0,Internet Explorer 3,77,2018-08-10 +session,249,1,Safari 36,87,2018-11-22 +session,249,2,Firefox 9,95,2018-12-26 +session,249,3,Safari 19,39,2017-04-21 +user,250,Yen,Claudia,60 +session,250,0,Chrome 49,41,2018-07-08 +session,250,1,Internet Explorer 6,100,2017-01-28 +session,250,2,Firefox 19,93,2017-08-09 +user,251,Mora,Ha,86 +session,251,0,Internet Explorer 1,1,2018-10-30 +session,251,1,Firefox 15,95,2018-04-13 +session,251,2,Chrome 22,10,2016-05-20 +session,251,3,Safari 33,103,2018-10-02 +session,251,4,Safari 43,67,2019-01-11 +session,251,5,Firefox 24,50,2019-01-05 +session,251,6,Firefox 49,36,2016-09-21 +session,251,7,Internet Explorer 48,19,2018-01-20 +session,251,8,Safari 11,52,2017-08-08 +user,252,Dorian,Deane,15 +session,252,0,Safari 23,86,2017-04-23 +session,252,1,Internet Explorer 40,87,2017-06-14 +session,252,2,Internet Explorer 47,29,2017-07-21 +session,252,3,Chrome 27,4,2018-05-27 +session,252,4,Safari 16,0,2018-10-07 +session,252,5,Internet Explorer 26,54,2018-12-20 +session,252,6,Firefox 14,66,2017-08-05 +session,252,7,Internet Explorer 27,13,2017-01-28 +user,253,Shawn,Jaimee,79 +session,253,0,Internet Explorer 21,68,2017-01-19 +session,253,1,Internet Explorer 35,62,2017-04-29 +session,253,2,Internet Explorer 1,64,2017-12-29 +session,253,3,Chrome 36,2,2019-01-21 +session,253,4,Firefox 19,43,2018-03-10 +user,254,Cori,Divina,16 +session,254,0,Internet Explorer 30,116,2017-07-27 +session,254,1,Internet Explorer 42,74,2018-10-25 +session,254,2,Firefox 30,21,2018-12-20 +session,254,3,Firefox 13,57,2018-12-01 +session,254,4,Chrome 3,14,2018-07-16 +session,254,5,Firefox 34,99,2017-02-28 +user,255,Garret,Georgann,75 +session,255,0,Chrome 8,33,2017-11-14 +session,255,1,Chrome 43,51,2016-08-06 +session,255,2,Internet Explorer 21,20,2019-01-11 +session,255,3,Chrome 37,102,2018-11-16 +session,255,4,Safari 11,66,2016-08-27 +session,255,5,Internet Explorer 23,47,2017-10-17 +session,255,6,Internet Explorer 14,43,2019-01-11 +session,255,7,Firefox 27,60,2016-12-15 +session,255,8,Firefox 33,83,2018-08-23 +user,256,Theo,Tricia,82 +session,256,0,Internet Explorer 32,71,2017-01-25 +user,257,Libby,Lera,12 +session,257,0,Firefox 24,86,2016-12-01 +session,257,1,Safari 38,104,2017-03-21 +session,257,2,Chrome 16,47,2019-01-04 +session,257,3,Safari 14,25,2018-07-27 +session,257,4,Chrome 5,112,2018-03-27 +session,257,5,Firefox 10,43,2018-02-04 +session,257,6,Firefox 15,82,2018-05-25 +session,257,7,Chrome 29,38,2017-05-17 +session,257,8,Firefox 41,4,2018-01-09 +session,257,9,Firefox 8,96,2017-05-15 +user,258,Evalyn,Abe,39 +session,258,0,Safari 47,2,2018-09-21 +session,258,1,Safari 36,117,2017-07-31 +session,258,2,Internet Explorer 14,53,2016-12-06 +session,258,3,Internet Explorer 24,103,2018-10-07 +session,258,4,Safari 42,28,2018-05-24 +session,258,5,Internet Explorer 24,95,2018-10-15 +user,259,Alexandra,Malia,95 +session,259,0,Firefox 41,70,2017-06-13 +session,259,1,Internet Explorer 34,70,2018-12-21 +session,259,2,Firefox 13,81,2018-03-10 +session,259,3,Internet Explorer 28,38,2017-03-21 +session,259,4,Chrome 6,109,2016-05-29 +session,259,5,Internet Explorer 45,102,2018-11-22 +session,259,6,Firefox 21,8,2017-01-13 +session,259,7,Internet Explorer 45,84,2017-01-15 +user,260,Tamisha,Camelia,84 +session,260,0,Safari 25,93,2017-06-10 +session,260,1,Internet Explorer 46,110,2016-09-26 +session,260,2,Firefox 18,107,2018-04-28 +session,260,3,Chrome 28,52,2018-07-07 +session,260,4,Internet Explorer 29,98,2017-10-20 +session,260,5,Safari 14,116,2018-04-22 +session,260,6,Firefox 27,15,2017-05-30 +session,260,7,Firefox 33,111,2018-02-11 +session,260,8,Safari 23,8,2018-11-13 +session,260,9,Chrome 25,117,2017-08-12 +user,261,Walker,Gerry,71 +session,261,0,Chrome 45,61,2018-02-17 +session,261,1,Firefox 11,75,2016-11-05 +session,261,2,Internet Explorer 15,61,2018-04-29 +session,261,3,Safari 17,56,2016-12-19 +user,262,Tuan,Maire,13 +session,262,0,Firefox 15,98,2016-08-08 +session,262,1,Chrome 30,35,2017-09-09 +user,263,Elvin,Ayesha,77 +session,263,0,Firefox 43,16,2019-02-04 +session,263,1,Chrome 5,57,2017-03-26 +session,263,2,Firefox 49,66,2017-08-18 +session,263,3,Chrome 3,103,2017-12-06 +user,264,Stanton,Margareta,11 +session,264,0,Firefox 19,30,2018-12-28 +session,264,1,Internet Explorer 16,91,2018-06-03 +session,264,2,Safari 16,107,2017-08-17 +session,264,3,Firefox 4,6,2016-07-11 +session,264,4,Firefox 12,13,2017-05-22 +session,264,5,Chrome 20,38,2017-02-04 +session,264,6,Chrome 2,41,2016-12-18 +user,265,Delora,Porter,44 +session,265,0,Chrome 18,72,2018-08-27 +session,265,1,Firefox 45,18,2016-11-08 +session,265,2,Chrome 7,25,2018-03-15 +session,265,3,Chrome 27,41,2018-11-19 +session,265,4,Safari 30,15,2018-08-26 +session,265,5,Internet Explorer 7,81,2018-11-05 +session,265,6,Internet Explorer 3,26,2016-06-06 +session,265,7,Chrome 31,66,2018-02-21 +session,265,8,Firefox 6,114,2016-09-21 +session,265,9,Chrome 2,101,2018-03-06 +user,266,Jene,Margart,37 +session,266,0,Chrome 41,33,2017-07-19 +session,266,1,Safari 48,103,2017-09-15 +session,266,2,Safari 11,70,2018-08-23 +session,266,3,Safari 31,28,2017-06-23 +user,267,Vertie,Rob,83 +session,267,0,Safari 50,113,2017-12-05 +session,267,1,Chrome 26,22,2016-07-27 +session,267,2,Firefox 34,114,2017-07-18 +session,267,3,Chrome 18,56,2017-11-09 +user,268,Jude,Rowena,47 +session,268,0,Internet Explorer 20,51,2018-05-05 +session,268,1,Firefox 36,14,2017-05-19 +session,268,2,Firefox 41,87,2018-10-21 +session,268,3,Safari 31,3,2017-08-14 +session,268,4,Safari 29,13,2016-08-06 +session,268,5,Firefox 7,31,2017-07-10 +session,268,6,Firefox 9,77,2017-12-28 +user,269,Sachiko,Marlys,68 +session,269,0,Chrome 28,61,2017-02-20 +session,269,1,Firefox 37,2,2016-08-18 +user,270,Walker,Qiana,23 +session,270,0,Firefox 49,13,2017-04-11 +session,270,1,Safari 42,114,2017-05-15 +session,270,2,Firefox 23,84,2017-05-23 +session,270,3,Chrome 23,67,2018-01-01 +user,271,Matilda,Anastacia,58 +session,271,0,Safari 26,79,2016-06-27 +session,271,1,Safari 8,89,2016-05-30 +session,271,2,Firefox 32,97,2018-10-25 +session,271,3,Firefox 11,87,2017-01-25 +session,271,4,Chrome 27,99,2016-08-27 +session,271,5,Chrome 2,111,2017-11-25 +session,271,6,Safari 37,116,2017-05-04 +user,272,Cory,Freda,87 +session,272,0,Internet Explorer 2,85,2018-01-26 +session,272,1,Safari 10,112,2019-01-11 +session,272,2,Internet Explorer 43,33,2018-10-13 +session,272,3,Internet Explorer 30,89,2019-02-09 +session,272,4,Chrome 25,96,2016-10-14 +session,272,5,Internet Explorer 27,116,2018-07-08 +session,272,6,Chrome 1,37,2019-02-03 +session,272,7,Internet Explorer 41,13,2017-12-19 +session,272,8,Firefox 33,71,2017-03-26 +user,273,Carlene,Alexis,49 +session,273,0,Internet Explorer 11,13,2018-08-30 +user,274,Milagros,Loreta,35 +session,274,0,Internet Explorer 4,40,2018-06-20 +session,274,1,Internet Explorer 12,114,2018-02-04 +session,274,2,Internet Explorer 5,101,2017-12-05 +session,274,3,Firefox 42,89,2016-12-12 +session,274,4,Firefox 4,94,2017-07-04 +user,275,Leonardo,Antonette,95 +session,275,0,Internet Explorer 47,94,2018-02-01 +session,275,1,Firefox 3,53,2016-08-12 +session,275,2,Safari 24,42,2018-08-08 +session,275,3,Safari 9,32,2016-10-11 +session,275,4,Safari 24,80,2016-09-22 +session,275,5,Chrome 33,31,2016-08-02 +session,275,6,Chrome 29,59,2017-11-01 +session,275,7,Firefox 25,65,2016-09-17 +user,276,Alyce,Susana,69 +session,276,0,Chrome 42,119,2016-11-28 +session,276,1,Chrome 1,75,2016-12-04 +session,276,2,Chrome 29,65,2018-10-04 +user,277,Miquel,Tori,99 +session,277,0,Chrome 34,47,2018-04-05 +session,277,1,Firefox 9,85,2017-09-06 +session,277,2,Safari 47,59,2017-02-05 +user,278,Ming,Rachelle,49 +session,278,0,Safari 43,9,2019-01-08 +user,279,Sonya,Rubie,6 +session,279,0,Safari 13,76,2018-03-08 +session,279,1,Firefox 1,32,2016-10-12 +session,279,2,Firefox 11,74,2017-04-02 +session,279,3,Safari 24,79,2016-10-27 +session,279,4,Internet Explorer 42,68,2018-05-02 +session,279,5,Safari 16,42,2016-12-26 +session,279,6,Safari 40,32,2018-12-16 +session,279,7,Safari 24,36,2016-06-13 +user,280,Leticia,Elana,20 +session,280,0,Safari 39,58,2017-11-23 +session,280,1,Internet Explorer 1,17,2016-09-12 +session,280,2,Firefox 48,0,2017-05-19 +session,280,3,Chrome 24,78,2017-03-05 +session,280,4,Internet Explorer 7,9,2016-07-02 +session,280,5,Chrome 19,118,2017-05-21 +session,280,6,Firefox 46,110,2017-12-06 +session,280,7,Chrome 38,93,2018-05-06 +user,281,Geoffrey,Leif,76 +session,281,0,Internet Explorer 19,109,2018-09-11 +session,281,1,Chrome 19,60,2017-12-21 +session,281,2,Internet Explorer 18,60,2018-12-28 +session,281,3,Internet Explorer 29,35,2018-07-24 +session,281,4,Internet Explorer 30,86,2016-08-21 +user,282,Perry,Shila,49 +session,282,0,Safari 44,56,2017-09-23 +session,282,1,Firefox 31,62,2019-01-24 +session,282,2,Chrome 13,1,2018-09-11 +session,282,3,Chrome 38,16,2018-02-28 +session,282,4,Chrome 31,56,2017-03-19 +session,282,5,Firefox 3,70,2018-02-21 +session,282,6,Safari 47,58,2017-05-04 +session,282,7,Safari 45,73,2017-02-06 +session,282,8,Internet Explorer 46,94,2018-03-15 +session,282,9,Safari 50,89,2017-11-25 +user,283,Johnathon,Kimberlee,26 +session,283,0,Firefox 5,19,2017-05-22 +session,283,1,Internet Explorer 47,89,2017-08-27 +session,283,2,Internet Explorer 6,118,2018-11-28 +session,283,3,Internet Explorer 17,44,2017-01-06 +session,283,4,Firefox 24,92,2017-07-16 +session,283,5,Internet Explorer 3,106,2018-11-28 +session,283,6,Internet Explorer 4,45,2018-07-25 +session,283,7,Chrome 29,94,2017-06-18 +session,283,8,Chrome 44,109,2016-12-19 +user,284,Shanti,Derrick,52 +session,284,0,Chrome 43,17,2017-02-01 +session,284,1,Internet Explorer 33,17,2018-07-30 +session,284,2,Firefox 7,22,2018-11-12 +session,284,3,Internet Explorer 36,58,2017-11-08 +session,284,4,Firefox 10,42,2017-02-14 +session,284,5,Internet Explorer 41,73,2018-06-13 +session,284,6,Chrome 5,31,2018-10-25 +session,284,7,Safari 45,70,2019-01-10 +session,284,8,Firefox 12,19,2017-12-11 +user,285,Peggy,Wynona,98 +session,285,0,Safari 2,66,2016-08-24 +session,285,1,Chrome 36,20,2018-07-21 +session,285,2,Chrome 37,1,2017-09-09 +session,285,3,Chrome 17,61,2017-05-04 +session,285,4,Safari 3,28,2018-07-08 +session,285,5,Firefox 31,92,2018-12-25 +session,285,6,Firefox 11,56,2017-04-25 +session,285,7,Safari 6,100,2018-08-24 +user,286,Mable,Nikia,90 +session,286,0,Firefox 36,82,2016-07-07 +session,286,1,Internet Explorer 24,5,2018-01-28 +session,286,2,Firefox 47,115,2017-02-16 +session,286,3,Chrome 30,92,2019-01-16 +session,286,4,Safari 49,106,2018-12-21 +user,287,Gaston,Carter,43 +session,287,0,Safari 33,67,2016-08-16 +session,287,1,Firefox 7,27,2018-05-17 +session,287,2,Chrome 41,54,2018-07-10 +user,288,Anderson,Terri,39 +session,288,0,Firefox 24,0,2017-01-26 +session,288,1,Internet Explorer 50,24,2018-08-09 +session,288,2,Internet Explorer 5,105,2018-06-11 +session,288,3,Safari 41,118,2018-03-16 +session,288,4,Safari 8,106,2017-02-16 +user,289,Mike,Debbie,10 +session,289,0,Chrome 12,3,2016-09-01 +session,289,1,Safari 14,112,2017-10-25 +session,289,2,Safari 12,107,2018-09-29 +session,289,3,Safari 22,84,2017-08-11 +session,289,4,Firefox 15,84,2016-07-17 +session,289,5,Safari 43,11,2017-05-25 +session,289,6,Chrome 18,104,2017-04-24 +session,289,7,Internet Explorer 12,62,2018-07-17 +session,289,8,Internet Explorer 13,33,2016-07-23 +session,289,9,Firefox 29,50,2017-04-17 +user,290,Arron,Carlotta,45 +session,290,0,Safari 10,3,2016-08-20 +session,290,1,Internet Explorer 1,108,2018-03-18 +session,290,2,Internet Explorer 29,105,2016-09-13 +user,291,Marcel,Abdul,51 +session,291,0,Internet Explorer 44,34,2018-11-17 +session,291,1,Internet Explorer 9,35,2016-09-30 +session,291,2,Chrome 27,73,2017-05-24 +session,291,3,Chrome 31,37,2018-02-06 +session,291,4,Firefox 38,85,2016-11-06 +session,291,5,Chrome 23,43,2019-01-17 +session,291,6,Firefox 13,103,2017-01-13 +user,292,Vickie,Lakendra,93 +session,292,0,Chrome 37,32,2018-10-14 +session,292,1,Safari 29,115,2017-04-22 +session,292,2,Safari 18,119,2018-09-23 +user,293,Dino,Shemika,16 +session,293,0,Internet Explorer 23,92,2016-12-27 +session,293,1,Safari 29,101,2018-06-25 +session,293,2,Internet Explorer 4,8,2016-12-17 +session,293,3,Firefox 36,10,2016-10-14 +user,294,Cornelius,Tisa,20 +session,294,0,Safari 41,82,2016-09-08 +session,294,1,Safari 21,22,2017-01-24 +user,295,Naoma,Harrison,83 +session,295,0,Internet Explorer 21,91,2016-07-15 +session,295,1,Internet Explorer 30,87,2016-07-16 +session,295,2,Internet Explorer 26,47,2017-10-30 +session,295,3,Firefox 28,36,2017-01-29 +session,295,4,Safari 45,80,2017-03-24 +session,295,5,Chrome 35,96,2018-04-26 +user,296,Crysta,Gwen,52 +session,296,0,Internet Explorer 47,92,2017-01-02 +session,296,1,Safari 9,72,2017-12-31 +session,296,2,Firefox 40,35,2017-03-24 +session,296,3,Chrome 24,77,2017-12-26 +session,296,4,Firefox 42,101,2018-06-22 +session,296,5,Safari 39,45,2018-02-19 +session,296,6,Firefox 36,61,2018-06-05 +session,296,7,Internet Explorer 1,70,2017-11-03 +session,296,8,Safari 25,60,2016-11-03 +session,296,9,Chrome 40,36,2018-08-07 +user,297,Liberty,Billie,74 +session,297,0,Internet Explorer 39,103,2016-12-31 +session,297,1,Firefox 28,0,2018-12-25 +session,297,2,Chrome 37,77,2017-07-08 +session,297,3,Firefox 16,48,2017-12-14 +session,297,4,Safari 23,22,2018-06-25 +session,297,5,Safari 44,21,2018-09-19 +session,297,6,Internet Explorer 12,52,2017-04-24 +session,297,7,Firefox 6,46,2017-05-25 +session,297,8,Firefox 12,57,2016-11-24 +user,298,Demetria,Daysi,42 +session,298,0,Chrome 44,27,2016-07-20 +session,298,1,Chrome 50,58,2017-04-13 +session,298,2,Safari 40,90,2019-01-17 +session,298,3,Internet Explorer 44,96,2018-05-27 +user,299,Lady,Gricelda,8 +session,299,0,Firefox 28,88,2017-08-16 +session,299,1,Chrome 11,14,2017-11-17 +session,299,2,Chrome 25,10,2018-09-25 +session,299,3,Safari 17,83,2017-10-21 +session,299,4,Safari 16,81,2017-07-05 +session,299,5,Chrome 26,40,2016-10-17 +session,299,6,Chrome 3,103,2018-03-04 +session,299,7,Chrome 24,70,2017-08-06 +user,300,Sulema,Daryl,99 +session,300,0,Internet Explorer 39,35,2018-01-16 +session,300,1,Safari 1,5,2016-10-22 +session,300,2,Firefox 10,61,2017-04-03 +session,300,3,Safari 37,71,2017-08-03 +user,301,Rachael,Lauryn,78 +session,301,0,Safari 7,51,2017-12-17 +user,302,Margarito,Arden,36 +session,302,0,Internet Explorer 33,23,2018-04-26 +session,302,1,Firefox 40,83,2018-10-06 +session,302,2,Chrome 5,118,2018-10-22 +session,302,3,Safari 25,17,2019-01-30 +session,302,4,Internet Explorer 34,95,2017-03-20 +session,302,5,Chrome 4,31,2018-11-06 +session,302,6,Internet Explorer 9,34,2017-04-24 +session,302,7,Firefox 49,68,2018-08-22 +session,302,8,Internet Explorer 35,83,2017-08-28 +user,303,Cletus,Jamel,28 +session,303,0,Chrome 18,37,2017-05-01 +session,303,1,Safari 38,30,2017-08-05 +session,303,2,Chrome 29,62,2016-08-08 +session,303,3,Safari 7,84,2016-11-14 +session,303,4,Internet Explorer 31,113,2016-07-24 +session,303,5,Firefox 6,90,2016-10-14 +session,303,6,Firefox 22,47,2018-12-25 +session,303,7,Firefox 41,15,2016-06-10 +session,303,8,Internet Explorer 50,3,2017-08-07 +user,304,Roscoe,Greg,28 +session,304,0,Firefox 28,99,2019-02-09 +session,304,1,Safari 29,49,2018-01-27 +session,304,2,Safari 9,61,2018-06-22 +session,304,3,Chrome 45,86,2018-05-20 +session,304,4,Safari 28,66,2017-07-06 +session,304,5,Chrome 32,92,2017-07-07 +session,304,6,Safari 26,25,2017-07-24 +user,305,Cody,Henry,36 +session,305,0,Safari 10,21,2016-11-05 +session,305,1,Internet Explorer 2,11,2016-05-23 +session,305,2,Chrome 5,1,2016-10-02 +user,306,Reba,Delena,33 +session,306,0,Chrome 36,37,2017-06-03 +session,306,1,Firefox 39,56,2018-10-26 +session,306,2,Chrome 34,108,2017-07-24 +session,306,3,Firefox 21,67,2018-07-11 +session,306,4,Internet Explorer 5,59,2018-01-29 +session,306,5,Firefox 43,102,2017-08-04 +session,306,6,Chrome 45,74,2017-03-20 +session,306,7,Internet Explorer 39,77,2017-07-04 +session,306,8,Internet Explorer 33,79,2017-05-31 +user,307,Moshe,Nora,80 +session,307,0,Safari 4,32,2016-06-10 +session,307,1,Safari 19,11,2018-05-18 +user,308,Lai,Christie,98 +session,308,0,Chrome 47,38,2017-11-10 +session,308,1,Chrome 10,81,2016-09-12 +session,308,2,Firefox 28,87,2018-08-18 +user,309,Anabel,Shera,99 +session,309,0,Internet Explorer 16,34,2017-02-25 +session,309,1,Firefox 23,57,2016-07-06 +session,309,2,Firefox 34,37,2018-03-03 +session,309,3,Internet Explorer 12,107,2017-09-20 +session,309,4,Internet Explorer 36,22,2017-10-28 +user,310,Willie,Heidi,90 +session,310,0,Chrome 42,76,2017-08-25 +session,310,1,Internet Explorer 20,112,2018-12-01 +session,310,2,Safari 36,117,2018-11-15 +session,310,3,Firefox 24,59,2016-09-13 +user,311,Romeo,Alison,37 +session,311,0,Safari 33,92,2017-02-25 +session,311,1,Firefox 25,109,2017-09-04 +session,311,2,Chrome 37,77,2016-12-05 +session,311,3,Firefox 35,31,2017-05-23 +session,311,4,Internet Explorer 46,1,2017-11-11 +session,311,5,Safari 19,27,2017-05-24 +user,312,Cary,Kasey,64 +session,312,0,Internet Explorer 13,11,2017-01-05 +session,312,1,Firefox 27,3,2016-11-22 +session,312,2,Safari 38,107,2017-08-13 +session,312,3,Firefox 12,37,2016-06-16 +session,312,4,Internet Explorer 50,51,2016-06-26 +user,313,Whitney,Yolando,50 +session,313,0,Safari 49,80,2018-04-23 +session,313,1,Safari 48,86,2018-07-23 +session,313,2,Safari 8,57,2018-10-03 +session,313,3,Internet Explorer 20,72,2016-09-03 +user,314,Juan,Kelli,56 +session,314,0,Safari 50,30,2016-11-04 +session,314,1,Firefox 2,43,2018-06-16 +session,314,2,Internet Explorer 33,8,2017-06-21 +user,315,Brandy,Beryl,9 +session,315,0,Internet Explorer 47,14,2017-07-30 +session,315,1,Safari 42,87,2017-07-31 +session,315,2,Firefox 25,42,2017-10-17 +session,315,3,Internet Explorer 50,1,2018-04-06 +user,316,Walker,Susanna,58 +session,316,0,Firefox 4,14,2017-04-09 +session,316,1,Firefox 35,75,2018-11-14 +session,316,2,Chrome 34,51,2018-02-11 +session,316,3,Safari 20,20,2019-01-25 +session,316,4,Chrome 50,5,2016-12-15 +session,316,5,Internet Explorer 9,37,2017-07-24 +session,316,6,Internet Explorer 30,39,2018-02-05 +user,317,Guy,Bette,96 +session,317,0,Chrome 11,23,2017-04-26 +user,318,Loyce,Barb,49 +session,318,0,Internet Explorer 2,81,2018-10-16 +session,318,1,Safari 34,51,2018-05-01 +session,318,2,Safari 48,107,2017-11-19 +session,318,3,Safari 13,2,2017-02-10 +session,318,4,Safari 18,20,2016-09-24 +session,318,5,Chrome 7,100,2017-06-07 +session,318,6,Chrome 48,60,2017-11-14 +session,318,7,Safari 15,77,2017-07-02 +session,318,8,Firefox 49,99,2018-01-06 +session,318,9,Firefox 33,75,2017-03-31 +user,319,Marilee,Queenie,44 +session,319,0,Chrome 41,59,2016-08-26 +session,319,1,Safari 3,10,2017-05-31 +session,319,2,Chrome 7,101,2017-04-17 +session,319,3,Safari 36,24,2017-04-13 +session,319,4,Chrome 39,10,2017-02-13 +session,319,5,Chrome 28,19,2016-06-19 +session,319,6,Internet Explorer 27,90,2017-02-17 +session,319,7,Chrome 42,49,2017-12-06 +user,320,Tangela,Salley,32 +session,320,0,Chrome 28,115,2017-02-03 +session,320,1,Firefox 28,51,2019-01-29 +session,320,2,Internet Explorer 46,7,2016-11-12 +session,320,3,Firefox 46,59,2016-08-06 +session,320,4,Safari 4,83,2017-08-27 +session,320,5,Firefox 9,3,2018-08-08 +session,320,6,Internet Explorer 35,109,2018-04-01 +session,320,7,Internet Explorer 1,1,2018-09-13 +session,320,8,Internet Explorer 10,107,2017-06-17 +session,320,9,Internet Explorer 28,116,2018-03-22 +user,321,Ina,Alia,42 +session,321,0,Internet Explorer 44,118,2017-11-21 +session,321,1,Safari 45,35,2018-01-08 +session,321,2,Safari 31,94,2017-06-04 +session,321,3,Internet Explorer 21,93,2018-04-08 +user,322,Randal,Yen,31 +session,322,0,Firefox 26,97,2017-03-28 +session,322,1,Firefox 21,41,2018-10-01 +session,322,2,Internet Explorer 25,98,2017-11-19 +session,322,3,Firefox 42,89,2018-06-10 +user,323,Reuben,Shanta,59 +session,323,0,Firefox 32,87,2017-11-25 +session,323,1,Firefox 11,98,2016-10-11 +session,323,2,Safari 37,72,2017-02-11 +session,323,3,Internet Explorer 14,0,2017-04-29 +session,323,4,Internet Explorer 1,67,2017-12-22 +session,323,5,Safari 30,22,2016-11-02 +session,323,6,Chrome 38,27,2018-05-27 +session,323,7,Internet Explorer 21,21,2017-01-24 +session,323,8,Chrome 13,27,2016-12-18 +user,324,Waneta,Clarice,66 +session,324,0,Internet Explorer 42,95,2018-01-06 +session,324,1,Safari 30,54,2017-02-02 +session,324,2,Internet Explorer 43,81,2016-12-25 +session,324,3,Firefox 42,93,2017-07-14 +session,324,4,Internet Explorer 43,15,2017-04-20 +session,324,5,Internet Explorer 5,46,2017-06-01 +user,325,Shay,Shanika,99 +session,325,0,Firefox 28,57,2018-01-04 +session,325,1,Safari 40,45,2018-02-14 +session,325,2,Chrome 14,56,2018-11-25 +session,325,3,Chrome 32,81,2017-03-03 +session,325,4,Internet Explorer 16,68,2016-08-28 +session,325,5,Internet Explorer 1,1,2016-08-21 +session,325,6,Firefox 35,97,2018-11-05 +session,325,7,Firefox 37,119,2017-04-02 +session,325,8,Internet Explorer 11,5,2016-11-20 +session,325,9,Firefox 24,117,2018-01-11 +user,326,Ariel,Hassan,77 +session,326,0,Internet Explorer 39,75,2016-11-24 +session,326,1,Safari 22,101,2018-07-28 +user,327,Kala,Paula,91 +session,327,0,Internet Explorer 37,58,2016-07-16 +session,327,1,Firefox 21,92,2017-05-11 +session,327,2,Internet Explorer 31,26,2016-12-24 +session,327,3,Safari 6,49,2017-10-24 +session,327,4,Chrome 44,62,2016-07-26 +session,327,5,Internet Explorer 26,1,2018-03-20 +session,327,6,Internet Explorer 43,85,2017-02-19 +user,328,Jere,Olive,24 +session,328,0,Chrome 26,47,2016-06-22 +session,328,1,Chrome 36,115,2018-05-27 +session,328,2,Safari 17,5,2016-08-03 +session,328,3,Chrome 30,51,2017-06-30 +session,328,4,Firefox 45,1,2016-08-28 +user,329,Nereida,Ryan,95 +session,329,0,Firefox 40,105,2017-03-20 +session,329,1,Safari 49,93,2017-12-03 +session,329,2,Chrome 4,108,2018-01-31 +session,329,3,Firefox 44,24,2016-06-04 +session,329,4,Firefox 9,108,2018-03-16 +user,330,Ebonie,Cherise,32 +session,330,0,Firefox 12,33,2018-06-06 +session,330,1,Chrome 11,49,2018-05-13 +session,330,2,Internet Explorer 11,54,2017-10-04 +user,331,Lourdes,William,74 +session,331,0,Chrome 29,69,2018-08-07 +session,331,1,Safari 49,15,2018-05-25 +session,331,2,Safari 27,3,2016-05-29 +session,331,3,Safari 37,8,2016-07-25 +user,332,Carmine,Christel,88 +session,332,0,Firefox 47,71,2016-07-11 +session,332,1,Chrome 16,44,2018-04-09 +session,332,2,Safari 48,117,2019-02-09 +session,332,3,Internet Explorer 46,19,2018-07-19 +session,332,4,Chrome 38,58,2017-09-29 +session,332,5,Firefox 23,4,2016-07-23 +session,332,6,Internet Explorer 11,24,2017-08-09 +session,332,7,Firefox 37,5,2016-08-31 +user,333,Waylon,Loni,10 +session,333,0,Safari 18,82,2018-02-12 +session,333,1,Chrome 46,60,2017-08-16 +session,333,2,Internet Explorer 23,14,2018-08-14 +session,333,3,Firefox 21,9,2018-09-02 +session,333,4,Firefox 21,40,2018-05-18 +user,334,Lamar,Antonio,96 +session,334,0,Firefox 42,72,2017-05-30 +session,334,1,Internet Explorer 4,99,2018-03-27 +session,334,2,Firefox 27,39,2018-04-01 +session,334,3,Internet Explorer 37,47,2016-07-18 +session,334,4,Firefox 39,112,2017-02-05 +session,334,5,Internet Explorer 44,31,2019-01-19 +session,334,6,Chrome 45,35,2017-06-18 +user,335,Eustolia,Jackelyn,94 +session,335,0,Chrome 21,38,2016-11-04 +user,336,Man,Willian,4 +session,336,0,Safari 50,107,2016-07-21 +session,336,1,Safari 8,69,2018-07-08 +session,336,2,Safari 5,34,2017-03-20 +user,337,Shanti,Rosalva,37 +session,337,0,Firefox 11,117,2016-07-28 +session,337,1,Internet Explorer 34,2,2016-09-02 +session,337,2,Internet Explorer 20,84,2018-09-13 +session,337,3,Chrome 38,13,2017-08-21 +session,337,4,Internet Explorer 9,117,2017-09-24 +session,337,5,Firefox 13,43,2017-11-16 +session,337,6,Firefox 50,118,2017-08-05 +session,337,7,Chrome 46,6,2018-09-29 +session,337,8,Firefox 10,0,2017-01-26 +user,338,Sylvie,Eloisa,46 +session,338,0,Firefox 6,105,2016-12-05 +session,338,1,Safari 28,117,2018-09-01 +session,338,2,Safari 23,45,2018-03-09 +session,338,3,Internet Explorer 32,67,2018-08-31 +session,338,4,Internet Explorer 1,37,2016-11-17 +session,338,5,Internet Explorer 49,41,2017-07-07 +session,338,6,Safari 48,52,2017-03-14 +session,338,7,Safari 29,94,2018-10-08 +session,338,8,Internet Explorer 50,62,2018-10-02 +user,339,Silvana,Palma,16 +session,339,0,Firefox 47,93,2016-10-15 +session,339,1,Firefox 17,27,2017-03-03 +session,339,2,Internet Explorer 49,13,2018-11-19 +session,339,3,Internet Explorer 40,53,2017-12-19 +session,339,4,Internet Explorer 26,111,2016-09-01 +session,339,5,Firefox 16,104,2018-12-06 +session,339,6,Internet Explorer 3,23,2016-11-24 +user,340,Lulu,Jordon,63 +session,340,0,Chrome 48,119,2016-06-16 +session,340,1,Chrome 48,104,2017-12-11 +session,340,2,Firefox 36,27,2016-07-22 +session,340,3,Safari 9,81,2018-04-30 +session,340,4,Firefox 2,65,2017-01-31 +session,340,5,Internet Explorer 8,77,2018-05-12 +session,340,6,Internet Explorer 49,7,2017-05-03 +session,340,7,Firefox 26,38,2018-01-14 +user,341,Cecil,Joseph,33 +session,341,0,Chrome 10,21,2017-03-29 +session,341,1,Firefox 8,104,2017-09-16 +session,341,2,Chrome 3,4,2017-08-11 +session,341,3,Firefox 2,70,2018-04-26 +session,341,4,Safari 24,7,2018-03-12 +session,341,5,Chrome 33,64,2017-10-03 +user,342,Yajaira,Dante,29 +session,342,0,Safari 47,23,2017-10-09 +session,342,1,Firefox 21,88,2017-01-24 +session,342,2,Firefox 25,50,2018-10-09 +session,342,3,Chrome 42,94,2018-11-19 +session,342,4,Safari 36,62,2016-07-18 +session,342,5,Firefox 2,91,2016-10-12 +session,342,6,Internet Explorer 22,85,2018-03-28 +session,342,7,Chrome 50,13,2016-11-27 +session,342,8,Firefox 44,24,2016-09-20 +user,343,Jennell,Brain,89 +session,343,0,Safari 46,89,2017-06-23 +session,343,1,Internet Explorer 2,105,2018-02-18 +session,343,2,Internet Explorer 29,8,2017-11-24 +session,343,3,Internet Explorer 38,107,2017-02-09 +session,343,4,Internet Explorer 24,101,2017-07-27 +session,343,5,Internet Explorer 40,83,2018-11-09 +session,343,6,Safari 35,30,2016-09-04 +session,343,7,Firefox 32,57,2017-03-13 +session,343,8,Chrome 25,11,2018-03-31 +session,343,9,Safari 41,24,2018-11-21 +user,344,Tiana,Milford,23 +session,344,0,Internet Explorer 30,51,2018-09-25 +session,344,1,Safari 36,20,2017-09-12 +session,344,2,Firefox 27,7,2016-06-10 +session,344,3,Safari 14,88,2018-08-01 +session,344,4,Internet Explorer 40,118,2018-02-13 +session,344,5,Chrome 2,41,2018-06-09 +session,344,6,Internet Explorer 9,52,2017-06-22 +session,344,7,Firefox 17,72,2018-12-03 +user,345,Cliff,Ethelyn,2 +session,345,0,Internet Explorer 43,116,2016-12-24 +session,345,1,Firefox 1,97,2018-07-11 +session,345,2,Safari 14,117,2019-02-02 +session,345,3,Internet Explorer 40,0,2018-08-06 +user,346,Pablo,Aaron,98 +session,346,0,Firefox 29,25,2018-06-07 +session,346,1,Internet Explorer 24,76,2018-10-02 +session,346,2,Safari 47,20,2018-08-03 +session,346,3,Chrome 4,79,2016-05-29 +session,346,4,Internet Explorer 40,50,2016-07-23 +session,346,5,Chrome 30,107,2017-11-26 +user,347,Benny,Angel,29 +session,347,0,Safari 2,20,2018-04-18 +session,347,1,Chrome 50,7,2018-09-16 +session,347,2,Internet Explorer 20,98,2016-12-09 +user,348,Kallie,Ignacia,23 +session,348,0,Chrome 24,39,2018-12-25 +session,348,1,Chrome 12,53,2018-10-16 +session,348,2,Chrome 22,49,2018-01-07 +session,348,3,Safari 5,50,2018-11-05 +session,348,4,Safari 40,110,2017-01-15 +session,348,5,Internet Explorer 50,19,2018-08-31 +session,348,6,Firefox 3,85,2018-07-02 +session,348,7,Firefox 25,108,2018-02-08 +user,349,Jerold,Justina,16 +session,349,0,Internet Explorer 47,1,2017-02-19 +session,349,1,Firefox 30,90,2017-12-19 +session,349,2,Firefox 10,36,2017-08-09 +session,349,3,Firefox 32,19,2017-08-05 +session,349,4,Internet Explorer 30,66,2018-04-04 +user,350,Latricia,Carolyn,21 +session,350,0,Safari 17,12,2018-01-24 +session,350,1,Chrome 31,43,2018-03-04 +session,350,2,Chrome 5,98,2017-04-12 +user,351,Kris,Odelia,58 +session,351,0,Safari 23,74,2018-09-20 +session,351,1,Firefox 36,81,2017-12-13 +session,351,2,Safari 23,116,2017-12-09 +session,351,3,Internet Explorer 19,118,2017-12-23 +session,351,4,Chrome 26,62,2017-01-20 +session,351,5,Firefox 10,116,2018-01-28 +session,351,6,Safari 46,31,2018-06-22 +session,351,7,Chrome 16,117,2018-02-21 +session,351,8,Chrome 40,92,2018-03-13 +session,351,9,Internet Explorer 13,32,2016-09-23 +user,352,Gilbert,Daisey,85 +session,352,0,Internet Explorer 11,36,2018-12-27 +session,352,1,Firefox 31,34,2017-01-01 +session,352,2,Safari 16,44,2017-08-17 +session,352,3,Safari 27,10,2019-01-31 +session,352,4,Firefox 47,114,2016-09-28 +session,352,5,Safari 47,69,2016-07-20 +session,352,6,Safari 45,89,2018-06-20 +session,352,7,Firefox 39,54,2018-11-12 +user,353,Ali,Paola,42 +session,353,0,Firefox 41,53,2018-08-13 +session,353,1,Firefox 33,11,2017-09-03 +session,353,2,Chrome 24,13,2019-01-31 +session,353,3,Chrome 17,18,2016-08-03 +session,353,4,Firefox 42,86,2018-07-11 +user,354,Debi,Socorro,41 +session,354,0,Internet Explorer 5,114,2017-02-26 +user,355,Cesar,Lorna,10 +session,355,0,Internet Explorer 2,7,2018-02-16 +session,355,1,Safari 44,87,2017-03-20 +session,355,2,Chrome 31,9,2017-03-13 +session,355,3,Internet Explorer 31,108,2018-02-08 +session,355,4,Chrome 33,22,2017-07-26 +user,356,Tyron,Keena,34 +session,356,0,Internet Explorer 41,28,2018-02-01 +session,356,1,Safari 42,39,2016-09-19 +session,356,2,Safari 10,75,2017-09-27 +session,356,3,Safari 10,66,2018-01-16 +session,356,4,Chrome 10,47,2016-10-10 +session,356,5,Internet Explorer 32,94,2017-04-29 +session,356,6,Firefox 3,33,2016-08-06 +session,356,7,Chrome 23,77,2017-03-17 +session,356,8,Safari 37,67,2016-12-31 +session,356,9,Firefox 28,43,2019-02-05 +user,357,Desmond,Paige,87 +session,357,0,Firefox 35,12,2018-10-27 +session,357,1,Chrome 50,99,2016-05-20 +session,357,2,Safari 12,11,2017-07-28 +session,357,3,Safari 25,47,2017-05-30 +session,357,4,Safari 24,97,2019-02-03 +session,357,5,Chrome 39,97,2018-09-04 +user,358,Ned,Chi,72 +session,358,0,Safari 46,54,2018-02-19 +user,359,Paulette,Jessika,95 +session,359,0,Safari 33,95,2016-05-30 +user,360,Sanjuanita,Luciano,67 +session,360,0,Firefox 43,88,2017-06-01 +session,360,1,Firefox 35,99,2018-11-05 +session,360,2,Chrome 20,32,2017-12-26 +session,360,3,Chrome 29,65,2017-11-20 +session,360,4,Firefox 43,119,2017-03-05 +session,360,5,Chrome 25,23,2018-12-09 +session,360,6,Chrome 32,47,2016-11-28 +user,361,Cordie,Marcia,63 +session,361,0,Internet Explorer 38,41,2016-07-26 +session,361,1,Internet Explorer 23,78,2017-06-24 +session,361,2,Chrome 38,29,2018-04-12 +session,361,3,Chrome 37,100,2018-01-16 +session,361,4,Internet Explorer 9,92,2018-07-17 +session,361,5,Chrome 38,47,2016-08-25 +user,362,Rosaline,Allen,81 +session,362,0,Internet Explorer 12,38,2017-03-09 +session,362,1,Safari 2,37,2017-12-01 +session,362,2,Internet Explorer 43,29,2017-11-01 +session,362,3,Chrome 13,28,2018-02-20 +session,362,4,Chrome 34,88,2017-05-31 +user,363,Rey,Victoria,2 +session,363,0,Firefox 50,79,2017-08-29 +session,363,1,Safari 30,107,2018-03-31 +session,363,2,Firefox 47,79,2018-08-31 +session,363,3,Firefox 9,65,2017-08-31 +user,364,Emmett,Sherice,90 +session,364,0,Firefox 4,4,2018-02-08 +session,364,1,Safari 46,90,2017-01-11 +session,364,2,Internet Explorer 28,110,2019-01-19 +session,364,3,Chrome 3,59,2018-01-03 +session,364,4,Safari 43,30,2018-11-17 +session,364,5,Chrome 10,80,2018-05-05 +session,364,6,Chrome 24,30,2018-02-23 +session,364,7,Firefox 18,34,2018-09-06 +session,364,8,Internet Explorer 16,52,2017-01-06 +user,365,Sulema,Refugio,34 +session,365,0,Firefox 12,77,2018-12-08 +session,365,1,Internet Explorer 3,12,2017-04-25 +session,365,2,Internet Explorer 42,95,2016-07-17 +user,366,Jefferey,Lamonica,15 +session,366,0,Safari 7,73,2018-01-08 +session,366,1,Chrome 41,66,2017-03-29 +session,366,2,Internet Explorer 36,13,2017-03-29 +user,367,Jimmy,Hanh,87 +session,367,0,Firefox 40,47,2017-07-25 +session,367,1,Safari 19,87,2018-12-15 +session,367,2,Firefox 41,18,2018-11-22 +session,367,3,Firefox 3,79,2018-12-16 +session,367,4,Firefox 21,109,2016-12-25 +session,367,5,Firefox 14,65,2018-07-23 +session,367,6,Safari 15,9,2017-12-30 +user,368,Luanna,Joel,28 +session,368,0,Internet Explorer 26,112,2018-10-01 +session,368,1,Chrome 5,99,2017-01-09 +session,368,2,Safari 4,100,2018-06-23 +session,368,3,Internet Explorer 36,30,2017-07-20 +session,368,4,Firefox 30,2,2016-05-26 +session,368,5,Chrome 21,110,2018-03-28 +session,368,6,Internet Explorer 22,62,2018-07-24 +user,369,Domenic,Suellen,8 +session,369,0,Safari 49,12,2017-12-14 +session,369,1,Firefox 44,38,2017-11-20 +session,369,2,Safari 30,64,2017-12-28 +user,370,Mathew,Fabiola,69 +session,370,0,Chrome 3,46,2017-02-24 +session,370,1,Safari 4,11,2017-03-03 +session,370,2,Chrome 24,70,2018-07-20 +session,370,3,Firefox 30,65,2018-10-28 +session,370,4,Internet Explorer 47,102,2018-07-10 +session,370,5,Internet Explorer 49,63,2019-01-17 +user,371,Willian,Verdell,91 +session,371,0,Safari 38,101,2018-02-27 +session,371,1,Safari 24,0,2018-05-30 +session,371,2,Internet Explorer 48,54,2018-02-14 +session,371,3,Internet Explorer 44,74,2016-09-14 +session,371,4,Firefox 49,55,2018-05-05 +session,371,5,Chrome 9,85,2017-11-29 +session,371,6,Firefox 12,108,2016-08-19 +session,371,7,Safari 40,102,2019-01-23 +session,371,8,Internet Explorer 25,22,2016-11-27 +session,371,9,Chrome 44,92,2018-04-14 +user,372,Dona,Irmgard,80 +session,372,0,Firefox 9,21,2016-08-08 +session,372,1,Internet Explorer 10,101,2019-01-12 +user,373,Twila,Ivana,83 +session,373,0,Chrome 38,103,2016-08-31 +session,373,1,Internet Explorer 38,101,2018-11-11 +user,374,Shondra,Margaret,87 +session,374,0,Chrome 42,86,2017-12-29 +session,374,1,Chrome 34,10,2018-11-27 +session,374,2,Firefox 41,17,2018-05-21 +session,374,3,Chrome 41,18,2018-11-13 +user,375,Brunilda,Eugene,26 +session,375,0,Internet Explorer 48,8,2016-11-09 +session,375,1,Firefox 48,92,2018-07-14 +session,375,2,Internet Explorer 45,23,2017-02-04 +session,375,3,Firefox 25,32,2017-01-20 +user,376,Valentine,Flora,90 +session,376,0,Chrome 11,103,2018-05-16 +user,377,Chuck,Tia,40 +session,377,0,Internet Explorer 2,94,2019-01-28 +session,377,1,Safari 16,45,2018-09-01 +session,377,2,Internet Explorer 7,79,2017-04-11 +session,377,3,Safari 14,103,2018-01-26 +session,377,4,Safari 3,47,2017-07-17 +session,377,5,Internet Explorer 25,45,2017-02-16 +session,377,6,Internet Explorer 25,108,2016-09-22 +user,378,Adaline,Carey,52 +session,378,0,Chrome 14,118,2018-11-13 +session,378,1,Safari 26,56,2017-11-24 +user,379,Nicolas,Seth,38 +session,379,0,Safari 7,3,2017-09-06 +session,379,1,Firefox 20,108,2017-12-17 +session,379,2,Chrome 1,10,2017-10-20 +session,379,3,Firefox 26,102,2017-03-09 +session,379,4,Safari 10,8,2018-07-29 +user,380,Antoine,Davis,23 +session,380,0,Chrome 10,100,2017-03-01 +session,380,1,Internet Explorer 50,95,2018-08-06 +session,380,2,Firefox 22,106,2016-10-07 +session,380,3,Firefox 7,117,2017-04-16 +session,380,4,Firefox 34,108,2017-12-11 +session,380,5,Firefox 14,54,2018-04-27 +session,380,6,Firefox 7,15,2018-01-01 +session,380,7,Firefox 34,54,2017-08-20 +user,381,Lesley,Bronwyn,17 +session,381,0,Internet Explorer 9,5,2017-08-16 +session,381,1,Safari 49,23,2018-12-13 +session,381,2,Internet Explorer 45,94,2018-05-07 +session,381,3,Internet Explorer 25,10,2017-01-23 +session,381,4,Firefox 46,11,2017-03-31 +session,381,5,Internet Explorer 37,62,2016-06-23 +session,381,6,Chrome 2,6,2016-09-18 +session,381,7,Firefox 18,78,2018-04-28 +user,382,Christopher,Grant,69 +session,382,0,Chrome 21,17,2016-07-18 +session,382,1,Safari 5,9,2018-08-27 +session,382,2,Chrome 37,27,2018-05-06 +session,382,3,Chrome 17,110,2018-11-12 +session,382,4,Firefox 43,46,2017-05-02 +session,382,5,Firefox 10,14,2016-05-23 +session,382,6,Internet Explorer 37,96,2017-06-26 +session,382,7,Firefox 8,80,2017-04-17 +user,383,Vincent,Lashaun,28 +session,383,0,Chrome 49,92,2017-08-30 +session,383,1,Chrome 2,15,2018-08-24 +session,383,2,Firefox 11,59,2016-11-26 +session,383,3,Chrome 27,17,2018-04-15 +session,383,4,Chrome 8,85,2017-10-14 +session,383,5,Safari 25,87,2016-08-19 +session,383,6,Safari 28,21,2018-07-24 +user,384,Curt,Ying,52 +session,384,0,Chrome 34,19,2017-04-01 +session,384,1,Chrome 46,83,2018-08-21 +session,384,2,Firefox 11,6,2016-11-17 +session,384,3,Chrome 9,57,2018-06-19 +session,384,4,Internet Explorer 15,33,2016-11-11 +session,384,5,Internet Explorer 41,72,2016-06-10 +session,384,6,Chrome 20,24,2017-01-30 +session,384,7,Internet Explorer 4,60,2017-04-08 +session,384,8,Chrome 15,73,2016-05-27 +user,385,Donya,Cristopher,46 +session,385,0,Safari 5,110,2016-08-08 +session,385,1,Firefox 18,33,2016-10-13 +session,385,2,Safari 15,12,2017-08-26 +session,385,3,Firefox 36,11,2016-06-11 +user,386,Lula,Senaida,5 +session,386,0,Safari 12,95,2016-08-09 +session,386,1,Internet Explorer 3,52,2016-06-01 +session,386,2,Firefox 27,118,2017-01-23 +session,386,3,Safari 43,96,2018-05-30 +session,386,4,Internet Explorer 15,65,2018-06-01 +session,386,5,Chrome 50,40,2018-01-17 +session,386,6,Safari 10,95,2018-07-17 +session,386,7,Safari 8,4,2017-05-22 +session,386,8,Safari 3,11,2017-08-15 +session,386,9,Firefox 10,82,2016-07-09 +user,387,Roger,Armando,14 +session,387,0,Chrome 35,27,2017-12-03 +session,387,1,Safari 8,104,2018-04-23 +user,388,Ula,Demetria,46 +session,388,0,Internet Explorer 30,26,2018-07-18 +session,388,1,Chrome 26,56,2018-06-22 +session,388,2,Chrome 21,38,2018-08-15 +session,388,3,Safari 24,7,2016-06-20 +session,388,4,Chrome 8,50,2018-09-19 +user,389,Suzanna,Ria,9 +session,389,0,Internet Explorer 32,74,2016-12-13 +session,389,1,Firefox 36,72,2018-09-21 +session,389,2,Safari 29,14,2016-05-25 +session,389,3,Safari 35,9,2016-06-02 +user,390,Lee,Naomi,5 +session,390,0,Chrome 22,23,2018-06-02 +session,390,1,Internet Explorer 8,42,2016-08-09 +session,390,2,Firefox 42,56,2017-01-26 +session,390,3,Internet Explorer 18,14,2018-09-27 +session,390,4,Firefox 6,33,2017-07-08 +session,390,5,Firefox 14,70,2017-09-03 +session,390,6,Chrome 43,66,2017-10-24 +session,390,7,Internet Explorer 3,15,2016-06-28 +user,391,Andre,Royal,99 +session,391,0,Internet Explorer 23,56,2018-11-13 +session,391,1,Firefox 24,34,2018-02-06 +user,392,Brigid,Titus,49 +session,392,0,Firefox 42,79,2017-09-02 +session,392,1,Chrome 22,29,2018-11-06 +session,392,2,Safari 20,36,2019-01-24 +session,392,3,Firefox 47,8,2018-03-17 +user,393,Nichole,Lizbeth,91 +session,393,0,Chrome 41,43,2017-04-15 +session,393,1,Chrome 42,28,2018-02-04 +session,393,2,Internet Explorer 6,114,2017-08-11 +session,393,3,Safari 30,11,2016-05-22 +session,393,4,Firefox 1,13,2017-04-20 +session,393,5,Chrome 28,48,2018-10-21 +session,393,6,Chrome 3,16,2018-07-20 +session,393,7,Chrome 47,111,2018-02-25 +session,393,8,Firefox 24,88,2016-08-25 +session,393,9,Internet Explorer 38,28,2017-04-05 +user,394,Christian,Inez,49 +session,394,0,Safari 16,43,2019-01-26 +session,394,1,Firefox 8,35,2017-06-13 +session,394,2,Safari 41,15,2018-04-12 +session,394,3,Chrome 27,22,2016-12-22 +session,394,4,Safari 27,0,2016-08-01 +session,394,5,Chrome 12,53,2016-06-22 +session,394,6,Firefox 16,111,2018-04-14 +user,395,Catina,Rema,98 +session,395,0,Chrome 14,91,2018-05-04 +session,395,1,Internet Explorer 31,91,2018-02-12 +session,395,2,Internet Explorer 43,54,2017-10-02 +session,395,3,Firefox 35,34,2016-12-10 +session,395,4,Internet Explorer 11,56,2016-08-25 +session,395,5,Firefox 45,50,2017-06-19 +session,395,6,Safari 7,104,2017-02-19 +session,395,7,Firefox 29,108,2016-11-03 +session,395,8,Internet Explorer 35,91,2018-05-15 +session,395,9,Safari 23,18,2017-06-19 +user,396,Kaleigh,Mirtha,66 +session,396,0,Chrome 30,99,2018-05-06 +session,396,1,Safari 17,88,2018-01-15 +session,396,2,Chrome 37,115,2017-12-24 +user,397,Karissa,Elois,55 +session,397,0,Internet Explorer 44,68,2017-06-14 +session,397,1,Firefox 23,61,2017-08-25 +session,397,2,Internet Explorer 46,19,2018-10-09 +session,397,3,Chrome 13,78,2017-11-18 +session,397,4,Firefox 10,80,2018-10-06 +session,397,5,Internet Explorer 22,92,2018-01-09 +session,397,6,Internet Explorer 4,85,2017-12-22 +user,398,Cyrstal,Freda,25 +session,398,0,Chrome 21,106,2017-01-18 +session,398,1,Chrome 48,80,2016-08-03 +session,398,2,Firefox 23,72,2017-12-31 +session,398,3,Chrome 44,78,2016-07-04 +session,398,4,Chrome 22,106,2017-05-10 +session,398,5,Chrome 4,57,2017-12-02 +session,398,6,Safari 35,87,2017-06-16 +session,398,7,Firefox 25,12,2018-04-20 +user,399,Jerry,Aurelio,50 +session,399,0,Safari 12,9,2018-01-22 +session,399,1,Chrome 2,111,2018-03-18 +session,399,2,Safari 3,109,2017-01-30 +session,399,3,Chrome 31,111,2017-12-07 +session,399,4,Firefox 16,43,2016-09-13 +session,399,5,Internet Explorer 43,103,2017-05-16 +session,399,6,Firefox 41,32,2018-11-08 +session,399,7,Internet Explorer 17,111,2018-11-04 +session,399,8,Safari 12,91,2016-09-25 +session,399,9,Internet Explorer 24,44,2018-06-24 +user,400,Marlon,Jame,93 +session,400,0,Firefox 3,38,2018-06-07 +session,400,1,Firefox 16,117,2018-12-30 +session,400,2,Firefox 37,99,2017-03-07 +session,400,3,Safari 20,80,2018-12-14 +session,400,4,Safari 31,46,2018-04-13 +session,400,5,Chrome 28,46,2017-07-31 +session,400,6,Internet Explorer 11,56,2018-04-05 +session,400,7,Firefox 9,4,2016-12-25 +session,400,8,Safari 40,71,2017-05-14 +session,400,9,Internet Explorer 41,112,2016-12-03 +user,401,Rochelle,Rebecka,13 +session,401,0,Internet Explorer 36,25,2017-02-22 +session,401,1,Safari 11,96,2018-03-09 +session,401,2,Safari 38,98,2017-05-01 +session,401,3,Chrome 22,25,2016-06-28 +session,401,4,Safari 7,50,2018-07-17 +session,401,5,Chrome 11,33,2018-12-01 +session,401,6,Safari 40,53,2017-12-06 +user,402,Jennifer,Jenell,65 +session,402,0,Internet Explorer 29,61,2018-01-04 +session,402,1,Internet Explorer 2,90,2019-01-22 +session,402,2,Safari 3,94,2016-08-17 +session,402,3,Internet Explorer 23,20,2018-12-06 +session,402,4,Internet Explorer 19,85,2016-09-08 +session,402,5,Internet Explorer 47,95,2018-12-22 +session,402,6,Firefox 18,115,2016-08-05 +user,403,Ricky,Norah,60 +session,403,0,Chrome 6,25,2018-09-02 +session,403,1,Safari 45,81,2017-05-10 +session,403,2,Safari 20,114,2018-08-26 +session,403,3,Safari 9,77,2017-01-20 +session,403,4,Firefox 13,28,2017-02-23 +session,403,5,Safari 9,109,2016-06-14 +session,403,6,Safari 21,5,2017-01-11 +session,403,7,Safari 50,107,2018-07-01 +user,404,Francesco,Reyes,16 +session,404,0,Chrome 49,103,2018-07-31 +session,404,1,Internet Explorer 33,71,2017-10-06 +user,405,Carleen,Neville,14 +session,405,0,Firefox 23,109,2016-09-15 +session,405,1,Safari 43,41,2018-09-01 +session,405,2,Safari 17,66,2018-05-10 +session,405,3,Chrome 3,67,2018-08-12 +user,406,Carmelia,Tomi,53 +session,406,0,Internet Explorer 32,84,2016-08-16 +session,406,1,Chrome 46,104,2016-11-09 +session,406,2,Firefox 32,6,2017-12-16 +session,406,3,Chrome 33,16,2018-06-10 +session,406,4,Safari 11,90,2017-05-12 +session,406,5,Chrome 28,32,2016-07-29 +session,406,6,Firefox 49,95,2016-08-13 +session,406,7,Safari 18,32,2017-04-09 +session,406,8,Safari 23,107,2016-10-16 +session,406,9,Internet Explorer 24,73,2018-10-18 +user,407,Frank,Fonda,81 +session,407,0,Safari 34,74,2018-11-27 +session,407,1,Chrome 3,19,2018-01-29 +session,407,2,Chrome 11,119,2017-09-08 +session,407,3,Chrome 4,4,2018-03-05 +session,407,4,Firefox 29,41,2018-10-19 +user,408,Coleman,Dawna,18 +session,408,0,Internet Explorer 41,111,2017-07-10 +session,408,1,Internet Explorer 3,11,2018-11-24 +session,408,2,Internet Explorer 24,76,2018-11-10 +session,408,3,Firefox 40,70,2018-07-19 +session,408,4,Internet Explorer 15,11,2017-02-17 +session,408,5,Internet Explorer 18,37,2018-10-04 +session,408,6,Firefox 32,103,2016-09-26 +session,408,7,Safari 50,89,2016-07-31 +session,408,8,Chrome 41,76,2018-11-26 +user,409,Justa,Yesenia,16 +session,409,0,Safari 2,0,2017-05-10 +session,409,1,Internet Explorer 19,38,2016-11-30 +session,409,2,Firefox 29,110,2017-04-21 +user,410,Milford,Danna,35 +session,410,0,Chrome 46,88,2018-09-02 +user,411,Delsie,Lorene,21 +session,411,0,Chrome 22,59,2016-10-14 +session,411,1,Chrome 20,114,2017-10-22 +session,411,2,Internet Explorer 27,109,2018-09-20 +session,411,3,Safari 3,17,2017-02-26 +session,411,4,Chrome 36,92,2019-01-02 +session,411,5,Chrome 47,60,2017-08-02 +session,411,6,Internet Explorer 14,85,2017-11-18 +session,411,7,Safari 2,86,2016-05-27 +session,411,8,Chrome 26,104,2018-09-05 +session,411,9,Internet Explorer 43,39,2019-01-15 +user,412,Jewel,Alpha,64 +session,412,0,Firefox 1,72,2017-01-18 +session,412,1,Safari 4,77,2018-07-25 +session,412,2,Internet Explorer 20,80,2017-03-29 +session,412,3,Chrome 4,12,2017-04-16 +user,413,Judson,Darcey,60 +session,413,0,Firefox 30,94,2017-05-29 +session,413,1,Firefox 32,59,2017-01-17 +session,413,2,Chrome 1,111,2018-01-23 +session,413,3,Firefox 5,97,2018-03-10 +session,413,4,Firefox 20,4,2017-12-02 +session,413,5,Safari 29,57,2018-05-28 +session,413,6,Safari 11,88,2018-09-13 +session,413,7,Safari 47,15,2018-07-23 +session,413,8,Safari 8,60,2017-05-07 +user,414,Franklyn,Torri,57 +session,414,0,Internet Explorer 46,68,2018-01-03 +session,414,1,Chrome 16,110,2017-03-08 +session,414,2,Internet Explorer 28,47,2018-07-19 +user,415,Belen,Mandie,57 +session,415,0,Firefox 37,6,2018-09-05 +session,415,1,Safari 13,12,2016-06-07 +session,415,2,Firefox 30,75,2018-02-04 +session,415,3,Safari 10,26,2016-11-22 +session,415,4,Firefox 13,86,2017-05-12 +session,415,5,Internet Explorer 11,83,2017-12-06 +session,415,6,Firefox 33,2,2017-10-03 +session,415,7,Safari 29,66,2017-03-12 +session,415,8,Firefox 23,63,2018-02-26 +user,416,Alva,Many,52 +session,416,0,Internet Explorer 46,0,2018-04-29 +user,417,Kristy,Rhonda,93 +session,417,0,Chrome 11,24,2016-08-03 +session,417,1,Safari 44,50,2016-06-25 +session,417,2,Safari 6,37,2018-06-20 +user,418,Houston,Abbey,32 +session,418,0,Chrome 24,36,2016-12-06 +session,418,1,Chrome 9,34,2018-02-07 +session,418,2,Safari 24,106,2017-04-02 +session,418,3,Chrome 38,24,2018-08-24 +session,418,4,Safari 35,72,2019-01-01 +session,418,5,Internet Explorer 23,49,2017-10-21 +session,418,6,Chrome 22,78,2017-03-18 +session,418,7,Firefox 19,112,2018-07-30 +session,418,8,Safari 23,30,2017-07-07 +session,418,9,Chrome 37,69,2017-09-23 +user,419,Stan,Milo,75 +session,419,0,Chrome 40,67,2018-06-09 +session,419,1,Firefox 33,106,2018-10-20 +user,420,Soraya,Terrie,33 +session,420,0,Firefox 40,58,2018-04-21 +session,420,1,Firefox 26,64,2017-01-29 +session,420,2,Chrome 36,36,2018-03-21 +session,420,3,Chrome 17,34,2016-11-29 +user,421,Pearlene,Alejandrina,3 +session,421,0,Safari 25,8,2017-07-19 +session,421,1,Internet Explorer 45,111,2017-09-19 +session,421,2,Firefox 15,5,2017-01-07 +session,421,3,Chrome 14,11,2017-09-12 +session,421,4,Internet Explorer 14,26,2018-12-24 +session,421,5,Safari 39,67,2017-10-06 +session,421,6,Safari 20,1,2017-04-29 +user,422,Tracy,Waldo,27 +session,422,0,Internet Explorer 27,7,2017-03-21 +session,422,1,Internet Explorer 34,52,2018-11-22 +session,422,2,Internet Explorer 19,56,2018-06-28 +session,422,3,Firefox 2,54,2017-03-06 +session,422,4,Internet Explorer 1,42,2018-11-22 +user,423,Halina,Kizzie,3 +session,423,0,Firefox 15,32,2016-06-29 +session,423,1,Internet Explorer 31,88,2017-04-12 +session,423,2,Internet Explorer 9,17,2018-04-06 +user,424,Chas,Davida,25 +session,424,0,Safari 4,91,2016-11-06 +session,424,1,Safari 21,49,2018-06-10 +session,424,2,Internet Explorer 37,2,2018-12-05 +session,424,3,Chrome 35,19,2016-10-15 +session,424,4,Internet Explorer 47,40,2017-06-18 +session,424,5,Firefox 23,75,2017-01-31 +session,424,6,Chrome 31,80,2016-08-16 +session,424,7,Internet Explorer 26,33,2017-12-26 +session,424,8,Firefox 38,45,2016-07-07 +session,424,9,Firefox 2,50,2017-10-29 +user,425,Billye,Claire,2 +session,425,0,Internet Explorer 34,94,2016-08-03 +session,425,1,Firefox 32,38,2018-08-10 +session,425,2,Chrome 13,96,2019-01-18 +session,425,3,Internet Explorer 32,115,2018-05-24 +session,425,4,Chrome 21,48,2017-07-14 +session,425,5,Internet Explorer 34,102,2016-09-16 +user,426,Thi,Aura,68 +session,426,0,Safari 15,24,2017-03-08 +session,426,1,Chrome 34,24,2018-04-29 +session,426,2,Chrome 26,84,2017-02-18 +session,426,3,Firefox 29,117,2018-11-30 +session,426,4,Chrome 28,78,2017-02-01 +session,426,5,Internet Explorer 31,104,2018-11-11 +user,427,Dexter,Kennith,81 +session,427,0,Safari 1,24,2016-05-31 +user,428,Johnny,Lilla,76 +session,428,0,Firefox 11,75,2017-07-23 +session,428,1,Internet Explorer 10,18,2017-12-01 +session,428,2,Chrome 8,89,2016-09-07 +session,428,3,Safari 26,74,2018-01-20 +session,428,4,Internet Explorer 33,72,2016-10-04 +session,428,5,Firefox 9,49,2017-03-15 +session,428,6,Firefox 50,98,2018-01-09 +session,428,7,Safari 11,57,2016-11-04 +session,428,8,Chrome 24,43,2018-10-25 +session,428,9,Safari 45,36,2017-12-04 +user,429,Eve,Karleen,48 +session,429,0,Safari 19,19,2017-07-11 +session,429,1,Safari 9,78,2017-06-13 +session,429,2,Safari 28,18,2016-06-24 +user,430,Shila,Samira,27 +session,430,0,Safari 23,74,2016-07-31 +user,431,Roxann,James,84 +session,431,0,Safari 47,88,2018-03-12 +session,431,1,Chrome 28,103,2018-05-26 +session,431,2,Safari 29,17,2018-10-13 +session,431,3,Chrome 32,21,2018-06-20 +session,431,4,Internet Explorer 39,118,2017-10-09 +session,431,5,Chrome 15,40,2018-12-14 +session,431,6,Safari 10,118,2017-03-06 +session,431,7,Chrome 27,2,2018-02-23 +session,431,8,Firefox 37,18,2017-10-12 +user,432,Shante,Tera,17 +session,432,0,Safari 37,116,2017-09-05 +session,432,1,Safari 21,92,2018-10-31 +session,432,2,Firefox 17,36,2018-02-07 +session,432,3,Chrome 23,10,2019-01-01 +session,432,4,Safari 23,118,2018-03-12 +session,432,5,Safari 21,107,2016-06-15 +session,432,6,Firefox 37,45,2016-09-08 +session,432,7,Firefox 43,75,2017-11-10 +session,432,8,Safari 30,10,2018-03-03 +user,433,Alexis,Mariella,79 +session,433,0,Chrome 11,2,2018-11-26 +session,433,1,Safari 8,82,2018-12-20 +session,433,2,Internet Explorer 7,87,2018-08-28 +session,433,3,Chrome 32,36,2016-10-10 +user,434,Margarite,Yen,29 +session,434,0,Safari 9,62,2018-02-25 +session,434,1,Safari 6,108,2019-02-12 +session,434,2,Firefox 13,0,2017-02-20 +session,434,3,Firefox 21,11,2017-04-17 +session,434,4,Safari 7,6,2017-05-28 +session,434,5,Internet Explorer 29,102,2017-06-11 +session,434,6,Chrome 9,32,2016-06-05 +session,434,7,Safari 34,60,2017-02-01 +session,434,8,Chrome 50,43,2018-08-12 +user,435,Jess,Cierra,92 +session,435,0,Firefox 1,9,2017-12-12 +session,435,1,Chrome 15,3,2016-06-04 +user,436,Carmelo,Krystyna,3 +session,436,0,Safari 46,21,2017-10-14 +session,436,1,Internet Explorer 2,78,2018-01-11 +session,436,2,Firefox 20,115,2018-06-14 +session,436,3,Chrome 26,26,2018-05-24 +session,436,4,Internet Explorer 39,24,2017-02-16 +session,436,5,Safari 45,44,2017-05-05 +session,436,6,Chrome 46,89,2016-08-29 +session,436,7,Chrome 20,46,2017-06-13 +session,436,8,Safari 46,75,2017-08-26 +user,437,Emmitt,Verdie,40 +session,437,0,Safari 43,2,2017-05-24 +session,437,1,Internet Explorer 27,74,2017-04-12 +session,437,2,Chrome 10,47,2016-07-08 +session,437,3,Chrome 2,106,2017-08-10 +session,437,4,Safari 44,24,2018-11-13 +session,437,5,Chrome 45,63,2018-03-13 +session,437,6,Safari 46,30,2016-08-23 +session,437,7,Safari 13,91,2018-01-15 +session,437,8,Firefox 27,12,2017-10-14 +user,438,Luana,Milford,61 +session,438,0,Chrome 18,117,2016-08-11 +session,438,1,Chrome 21,37,2018-11-12 +session,438,2,Safari 19,104,2016-11-10 +session,438,3,Firefox 19,92,2016-07-02 +session,438,4,Chrome 34,45,2016-11-21 +session,438,5,Chrome 28,29,2016-09-18 +user,439,Arlie,Savanna,89 +session,439,0,Safari 45,54,2017-02-12 +session,439,1,Firefox 40,113,2018-08-10 +user,440,Romelia,Joannie,16 +session,440,0,Chrome 39,15,2016-08-20 +session,440,1,Internet Explorer 27,27,2016-11-12 +session,440,2,Chrome 46,9,2019-02-07 +session,440,3,Internet Explorer 28,102,2017-09-24 +session,440,4,Chrome 29,102,2018-05-23 +user,441,Tammara,Joey,80 +session,441,0,Chrome 41,58,2017-05-08 +session,441,1,Chrome 24,100,2017-07-07 +session,441,2,Chrome 46,93,2016-09-04 +user,442,Shin,Ronda,19 +session,442,0,Firefox 33,32,2018-08-03 +session,442,1,Firefox 11,99,2017-12-12 +user,443,Pedro,Zita,63 +session,443,0,Safari 20,59,2018-12-12 +session,443,1,Firefox 38,107,2017-10-17 +user,444,Felix,Rolland,77 +session,444,0,Internet Explorer 44,37,2018-02-19 +session,444,1,Firefox 45,26,2016-12-29 +session,444,2,Internet Explorer 27,13,2018-11-30 +session,444,3,Chrome 4,51,2016-12-13 +user,445,Lupe,Magaly,31 +session,445,0,Firefox 10,63,2018-07-20 +session,445,1,Safari 40,96,2017-09-05 +session,445,2,Firefox 49,35,2019-02-01 +session,445,3,Safari 36,70,2018-09-23 +user,446,Ressie,Frank,81 +session,446,0,Safari 42,14,2017-07-28 +session,446,1,Chrome 24,109,2017-09-04 +session,446,2,Safari 34,39,2017-05-31 +session,446,3,Firefox 17,52,2017-03-25 +user,447,Leda,Leon,97 +session,447,0,Safari 34,90,2016-09-30 +session,447,1,Safari 2,72,2018-06-02 +session,447,2,Internet Explorer 26,65,2017-10-20 +session,447,3,Firefox 41,29,2017-05-07 +user,448,Carlie,Pearline,36 +session,448,0,Internet Explorer 44,36,2016-12-24 +session,448,1,Safari 2,85,2017-04-25 +user,449,Jessie,Jeffrey,39 +session,449,0,Safari 17,51,2017-10-26 +session,449,1,Chrome 27,91,2016-10-05 +session,449,2,Internet Explorer 16,92,2017-12-10 +session,449,3,Firefox 31,1,2017-07-15 +session,449,4,Internet Explorer 9,15,2017-08-12 +session,449,5,Chrome 17,6,2016-09-18 +session,449,6,Internet Explorer 49,17,2016-12-30 +session,449,7,Internet Explorer 24,10,2017-10-13 +user,450,Kirk,Margarette,80 +session,450,0,Chrome 13,50,2017-12-05 +session,450,1,Firefox 26,71,2017-02-07 +user,451,Leigh,Adriane,21 +session,451,0,Firefox 38,31,2016-11-28 +user,452,Anton,Tiera,94 +session,452,0,Safari 26,107,2018-10-30 +session,452,1,Safari 38,92,2018-12-29 +session,452,2,Safari 20,32,2017-05-28 +session,452,3,Internet Explorer 4,43,2017-03-05 +session,452,4,Chrome 28,56,2017-09-25 +session,452,5,Chrome 44,107,2017-10-09 +session,452,6,Chrome 13,85,2017-05-23 +session,452,7,Firefox 49,67,2018-12-30 +session,452,8,Firefox 28,0,2017-08-21 +session,452,9,Internet Explorer 11,103,2018-05-31 +user,453,Lachelle,Tameka,56 +session,453,0,Firefox 19,25,2017-07-15 +session,453,1,Chrome 10,58,2016-09-11 +session,453,2,Chrome 14,69,2016-08-09 +session,453,3,Internet Explorer 8,12,2018-06-12 +session,453,4,Firefox 45,81,2018-10-11 +user,454,Len,Federico,28 +session,454,0,Chrome 26,108,2017-01-18 +session,454,1,Internet Explorer 37,51,2016-07-22 +session,454,2,Internet Explorer 13,81,2018-02-03 +user,455,Liane,Lane,82 +session,455,0,Chrome 2,37,2016-09-21 +session,455,1,Internet Explorer 23,71,2017-08-04 +user,456,Aimee,Natacha,77 +session,456,0,Internet Explorer 20,100,2018-10-24 +session,456,1,Firefox 29,77,2018-11-11 +user,457,Maricruz,Kera,49 +session,457,0,Chrome 36,14,2017-07-06 +session,457,1,Chrome 16,110,2017-09-28 +session,457,2,Internet Explorer 3,70,2018-11-23 +session,457,3,Safari 19,5,2017-01-29 +user,458,Laverne,Merry,62 +session,458,0,Firefox 30,102,2018-09-25 +session,458,1,Safari 29,37,2017-11-15 +session,458,2,Firefox 41,109,2018-04-15 +user,459,Everett,Kacy,52 +session,459,0,Internet Explorer 21,118,2017-10-14 +session,459,1,Safari 31,108,2017-04-13 +session,459,2,Firefox 49,95,2017-05-09 +session,459,3,Safari 40,74,2018-08-15 +session,459,4,Firefox 20,83,2017-04-08 +session,459,5,Chrome 3,48,2018-07-10 +session,459,6,Internet Explorer 27,19,2017-11-05 +session,459,7,Safari 50,69,2018-02-01 +user,460,Macie,Jared,27 +session,460,0,Internet Explorer 15,43,2018-06-12 +session,460,1,Safari 35,70,2016-11-24 +session,460,2,Firefox 47,87,2016-12-16 +session,460,3,Firefox 30,102,2018-07-06 +session,460,4,Safari 8,39,2016-10-01 +session,460,5,Safari 48,81,2017-06-02 +session,460,6,Safari 15,105,2016-10-15 +session,460,7,Chrome 18,108,2017-06-21 +session,460,8,Safari 46,112,2016-12-23 +session,460,9,Chrome 6,63,2018-11-18 +user,461,Elmo,Chris,18 +session,461,0,Firefox 7,71,2017-02-14 +session,461,1,Firefox 17,42,2016-06-02 +session,461,2,Firefox 43,103,2018-05-14 +session,461,3,Safari 13,88,2017-03-21 +session,461,4,Firefox 14,52,2018-11-20 +session,461,5,Chrome 7,101,2017-07-01 +session,461,6,Chrome 32,0,2016-08-20 +session,461,7,Chrome 46,27,2018-01-23 +session,461,8,Internet Explorer 21,41,2018-01-14 +user,462,Luigi,Chantelle,47 +session,462,0,Internet Explorer 36,42,2018-02-23 +user,463,Louanne,Leroy,97 +session,463,0,Safari 21,42,2016-09-09 +session,463,1,Safari 11,119,2016-07-23 +session,463,2,Safari 4,29,2018-04-16 +session,463,3,Chrome 10,39,2016-09-04 +session,463,4,Internet Explorer 23,91,2018-05-31 +session,463,5,Firefox 19,7,2016-08-13 +session,463,6,Safari 24,49,2017-11-07 +user,464,Horacio,Chang,55 +session,464,0,Safari 43,83,2017-04-30 +user,465,Cordell,Kris,27 +session,465,0,Firefox 50,14,2018-01-02 +session,465,1,Internet Explorer 26,36,2017-05-08 +session,465,2,Chrome 42,43,2017-06-17 +session,465,3,Internet Explorer 36,105,2016-08-27 +session,465,4,Safari 18,30,2018-04-07 +session,465,5,Internet Explorer 10,12,2019-01-26 +session,465,6,Internet Explorer 22,3,2017-04-20 +session,465,7,Chrome 10,12,2017-02-23 +session,465,8,Internet Explorer 49,78,2016-07-26 +session,465,9,Internet Explorer 43,47,2017-12-24 +user,466,Chantal,Keren,90 +session,466,0,Chrome 29,68,2018-12-31 +session,466,1,Chrome 28,35,2017-02-28 +session,466,2,Firefox 49,46,2017-01-05 +session,466,3,Safari 17,57,2016-09-23 +user,467,Jake,Lara,74 +session,467,0,Firefox 46,59,2017-12-19 +session,467,1,Safari 9,63,2018-06-15 +session,467,2,Chrome 1,116,2018-06-04 +session,467,3,Chrome 35,17,2017-04-12 +session,467,4,Internet Explorer 19,43,2017-04-11 +session,467,5,Chrome 15,29,2016-06-23 +session,467,6,Firefox 18,103,2016-11-20 +session,467,7,Safari 25,32,2017-06-02 +session,467,8,Chrome 34,23,2017-04-05 +session,467,9,Safari 35,86,2018-05-10 +user,468,Kristina,Hellen,85 +session,468,0,Internet Explorer 2,50,2017-06-23 +session,468,1,Internet Explorer 3,40,2017-05-02 +session,468,2,Safari 17,27,2018-12-25 +session,468,3,Safari 42,4,2018-08-25 +user,469,China,Beckie,93 +session,469,0,Internet Explorer 38,91,2017-08-04 +user,470,Graig,Cole,67 +session,470,0,Safari 5,67,2018-09-07 +session,470,1,Firefox 36,12,2018-04-20 +session,470,2,Safari 24,45,2017-08-10 +user,471,Lyndsey,Martina,72 +session,471,0,Firefox 25,37,2017-10-11 +user,472,Vernie,Quincy,19 +session,472,0,Safari 23,117,2017-01-26 +session,472,1,Internet Explorer 6,89,2018-11-21 +session,472,2,Firefox 34,83,2017-12-30 +session,472,3,Chrome 32,29,2018-05-27 +session,472,4,Chrome 5,13,2017-02-19 +session,472,5,Internet Explorer 15,111,2018-03-06 +session,472,6,Chrome 5,107,2018-07-13 +session,472,7,Safari 19,2,2017-02-18 +session,472,8,Internet Explorer 3,90,2016-08-28 +user,473,Willette,Delaine,23 +session,473,0,Firefox 25,1,2018-01-27 +session,473,1,Firefox 14,36,2018-05-06 +session,473,2,Safari 26,33,2016-08-30 +session,473,3,Chrome 50,83,2017-08-25 +session,473,4,Firefox 42,35,2018-10-03 +session,473,5,Internet Explorer 18,73,2018-06-22 +user,474,Roseann,Ashley,84 +session,474,0,Chrome 3,19,2017-04-03 +session,474,1,Chrome 26,90,2017-10-13 +session,474,2,Firefox 50,35,2016-07-04 +session,474,3,Internet Explorer 21,14,2017-11-08 +session,474,4,Safari 46,98,2019-01-11 +session,474,5,Firefox 39,16,2017-10-12 +session,474,6,Internet Explorer 38,63,2018-05-25 +session,474,7,Safari 8,33,2017-06-16 +session,474,8,Firefox 4,21,2018-12-27 +session,474,9,Internet Explorer 16,80,2016-10-08 +user,475,Cleveland,Mia,70 +session,475,0,Safari 45,41,2018-07-19 +session,475,1,Chrome 41,110,2017-04-10 +session,475,2,Safari 15,60,2018-03-10 +session,475,3,Chrome 49,82,2016-06-24 +user,476,Janell,Earlene,63 +session,476,0,Chrome 12,13,2017-06-21 +session,476,1,Safari 48,101,2017-06-15 +session,476,2,Internet Explorer 22,105,2018-07-04 +session,476,3,Safari 25,80,2018-06-21 +session,476,4,Safari 8,43,2017-04-20 +session,476,5,Internet Explorer 16,80,2018-07-11 +session,476,6,Safari 40,98,2016-10-09 +session,476,7,Chrome 19,106,2018-06-11 +session,476,8,Firefox 8,63,2017-01-09 +session,476,9,Internet Explorer 20,96,2016-07-24 +user,477,Marylee,Sherron,94 +session,477,0,Safari 38,23,2017-12-18 +session,477,1,Safari 34,67,2018-11-24 +session,477,2,Firefox 12,52,2018-07-24 +session,477,3,Safari 21,82,2016-10-17 +user,478,Jordan,Dee,12 +session,478,0,Internet Explorer 33,39,2017-06-02 +session,478,1,Internet Explorer 19,102,2017-03-13 +session,478,2,Firefox 49,72,2017-08-24 +session,478,3,Internet Explorer 6,112,2018-04-07 +session,478,4,Firefox 39,88,2017-08-05 +session,478,5,Safari 30,66,2017-11-30 +session,478,6,Internet Explorer 10,30,2016-11-05 +session,478,7,Safari 10,24,2017-08-17 +session,478,8,Safari 9,64,2016-08-10 +session,478,9,Firefox 33,26,2018-10-29 +user,479,Claud,Loyd,53 +session,479,0,Chrome 8,91,2017-04-11 +session,479,1,Firefox 44,53,2017-10-17 +session,479,2,Safari 15,86,2019-01-31 +session,479,3,Internet Explorer 27,54,2017-05-12 +session,479,4,Firefox 17,38,2017-11-21 +session,479,5,Firefox 7,63,2017-09-19 +session,479,6,Internet Explorer 5,112,2018-06-13 +session,479,7,Chrome 22,91,2016-09-19 +user,480,Elijah,Alita,40 +session,480,0,Firefox 12,104,2018-06-04 +session,480,1,Safari 26,115,2017-11-15 +session,480,2,Firefox 17,105,2017-01-17 +session,480,3,Chrome 1,4,2019-01-04 +user,481,Andra,Sherie,66 +session,481,0,Chrome 24,117,2018-05-18 +session,481,1,Chrome 49,107,2017-12-02 +session,481,2,Firefox 49,2,2017-05-07 +user,482,Alba,Delilah,80 +session,482,0,Internet Explorer 39,83,2018-09-17 +session,482,1,Chrome 49,49,2018-01-03 +session,482,2,Safari 37,113,2017-03-20 +session,482,3,Safari 20,80,2017-10-18 +session,482,4,Chrome 37,14,2017-08-21 +session,482,5,Chrome 26,83,2016-11-13 +session,482,6,Internet Explorer 42,85,2016-11-06 +session,482,7,Chrome 40,61,2016-08-10 +session,482,8,Safari 41,72,2016-08-19 +session,482,9,Firefox 18,42,2017-05-10 +user,483,Johnnie,Rayna,45 +session,483,0,Firefox 4,71,2018-02-11 +session,483,1,Chrome 29,102,2017-12-09 +session,483,2,Internet Explorer 28,63,2016-09-26 +session,483,3,Chrome 20,65,2018-09-07 +session,483,4,Firefox 16,18,2017-07-16 +session,483,5,Safari 7,42,2017-10-09 +session,483,6,Chrome 2,36,2017-06-04 +session,483,7,Chrome 40,112,2018-06-26 +user,484,Nancie,Burt,59 +session,484,0,Firefox 5,54,2016-08-23 +session,484,1,Chrome 3,84,2017-12-23 +session,484,2,Chrome 22,95,2017-08-06 +session,484,3,Internet Explorer 22,52,2016-11-10 +session,484,4,Internet Explorer 34,46,2016-07-28 +session,484,5,Safari 39,60,2016-11-21 +user,485,Irwin,Eric,92 +session,485,0,Internet Explorer 30,29,2016-11-02 +session,485,1,Safari 49,76,2019-01-13 +session,485,2,Internet Explorer 8,91,2017-07-02 +session,485,3,Internet Explorer 36,110,2018-08-04 +session,485,4,Safari 14,69,2017-12-29 +user,486,Henrietta,Regena,48 +session,486,0,Chrome 30,100,2017-07-09 +session,486,1,Safari 30,23,2018-10-24 +session,486,2,Firefox 48,54,2019-02-07 +session,486,3,Firefox 34,109,2017-06-04 +session,486,4,Internet Explorer 11,29,2018-04-05 +user,487,Giuseppe,Zenobia,2 +session,487,0,Internet Explorer 9,0,2017-04-05 +session,487,1,Safari 41,86,2017-10-04 +session,487,2,Internet Explorer 29,65,2017-09-19 +session,487,3,Chrome 10,85,2018-07-31 +session,487,4,Firefox 17,113,2017-11-21 +session,487,5,Safari 21,23,2018-05-21 +session,487,6,Internet Explorer 41,73,2016-05-21 +session,487,7,Firefox 24,24,2016-08-29 +user,488,Mao,Kasey,90 +session,488,0,Safari 50,29,2017-05-05 +session,488,1,Internet Explorer 43,59,2018-04-11 +session,488,2,Chrome 38,105,2018-10-01 +session,488,3,Firefox 19,79,2018-10-07 +session,488,4,Internet Explorer 10,101,2018-02-03 +session,488,5,Safari 30,5,2017-01-28 +session,488,6,Firefox 13,88,2016-06-08 +user,489,Floyd,Trent,11 +session,489,0,Safari 18,41,2017-02-14 +session,489,1,Chrome 6,12,2017-09-07 +session,489,2,Safari 13,8,2017-11-28 +session,489,3,Internet Explorer 16,48,2019-02-10 +session,489,4,Safari 36,1,2016-05-26 +session,489,5,Safari 27,80,2017-03-06 +session,489,6,Chrome 21,20,2016-12-26 +session,489,7,Internet Explorer 22,110,2017-01-18 +user,490,Versie,Yuriko,22 +session,490,0,Safari 3,89,2019-01-23 +session,490,1,Chrome 7,6,2016-11-08 +session,490,2,Firefox 36,69,2017-06-08 +session,490,3,Chrome 2,112,2017-12-25 +session,490,4,Internet Explorer 18,118,2018-04-12 +session,490,5,Internet Explorer 50,26,2018-07-16 +session,490,6,Firefox 19,24,2018-07-03 +session,490,7,Chrome 12,112,2018-05-31 +session,490,8,Internet Explorer 3,83,2016-10-18 +session,490,9,Safari 27,70,2016-06-20 +user,491,Belkis,Sanora,53 +session,491,0,Internet Explorer 50,103,2019-02-01 +session,491,1,Internet Explorer 8,108,2016-10-31 +session,491,2,Internet Explorer 13,97,2018-10-31 +session,491,3,Firefox 39,13,2019-02-04 +session,491,4,Internet Explorer 44,3,2018-08-30 +session,491,5,Firefox 34,57,2017-12-25 +session,491,6,Chrome 22,92,2018-08-17 +session,491,7,Chrome 20,60,2019-01-17 +user,492,Edgar,Tamesha,28 +session,492,0,Safari 5,21,2018-01-27 +session,492,1,Internet Explorer 10,3,2017-04-02 +session,492,2,Firefox 35,5,2017-02-16 +session,492,3,Firefox 18,10,2018-12-25 +session,492,4,Internet Explorer 47,114,2018-07-07 +session,492,5,Firefox 11,16,2018-08-09 +session,492,6,Internet Explorer 29,107,2017-05-30 +session,492,7,Safari 47,26,2016-06-23 +user,493,Charlette,Rebecca,27 +session,493,0,Chrome 19,69,2017-01-02 +session,493,1,Firefox 12,32,2017-03-07 +session,493,2,Safari 44,107,2016-12-30 +session,493,3,Safari 22,51,2017-04-18 +session,493,4,Safari 39,92,2018-05-22 +session,493,5,Internet Explorer 9,80,2018-12-02 +user,494,Roman,Virgil,28 +session,494,0,Safari 34,45,2018-12-27 +user,495,Nathaniel,Chase,3 +session,495,0,Safari 21,26,2017-10-19 +session,495,1,Safari 38,95,2016-06-20 +session,495,2,Chrome 1,37,2017-02-03 +session,495,3,Safari 28,71,2017-03-17 +user,496,Miles,Deeann,53 +session,496,0,Firefox 13,24,2018-02-04 +session,496,1,Chrome 27,64,2017-02-24 +user,497,Marcelo,Sam,30 +session,497,0,Chrome 42,14,2017-10-06 +user,498,Sol,Terrell,54 +session,498,0,Internet Explorer 31,32,2018-01-26 +user,499,Antonia,Gale,36 +session,499,0,Safari 25,21,2016-06-21 +user,500,Bebe,Ira,73 +session,500,0,Internet Explorer 21,46,2017-02-08 +session,500,1,Firefox 7,113,2018-12-05 +session,500,2,Internet Explorer 20,102,2016-07-14 +session,500,3,Firefox 11,15,2018-10-18 +session,500,4,Firefox 35,119,2016-10-04 +user,501,Alton,Zachery,88 +session,501,0,Chrome 23,11,2017-09-15 +session,501,1,Firefox 40,101,2019-01-18 +user,502,Mahalia,Katy,67 +session,502,0,Chrome 35,46,2018-10-31 +session,502,1,Firefox 18,72,2017-04-26 +session,502,2,Safari 49,53,2018-08-23 +session,502,3,Internet Explorer 13,41,2019-01-19 +session,502,4,Chrome 23,48,2016-07-14 +session,502,5,Firefox 4,96,2017-05-05 +session,502,6,Safari 2,15,2016-11-28 +session,502,7,Internet Explorer 41,103,2016-12-23 +session,502,8,Internet Explorer 49,9,2016-11-19 +session,502,9,Firefox 16,63,2018-04-29 +user,503,Lashell,Verla,68 +session,503,0,Internet Explorer 28,24,2018-07-13 +session,503,1,Safari 35,38,2017-04-21 +session,503,2,Safari 29,57,2016-10-02 +session,503,3,Safari 20,27,2018-07-17 +user,504,Rafael,Yaeko,32 +session,504,0,Chrome 25,46,2018-12-19 +session,504,1,Firefox 44,47,2018-04-08 +session,504,2,Firefox 13,32,2018-06-20 +session,504,3,Safari 26,80,2017-09-06 +session,504,4,Firefox 24,94,2018-03-03 +session,504,5,Firefox 31,31,2018-08-25 +session,504,6,Internet Explorer 8,10,2017-07-29 +session,504,7,Chrome 15,107,2018-11-25 +session,504,8,Safari 10,116,2018-03-07 +session,504,9,Chrome 28,54,2018-02-03 +user,505,Lynn,Yuk,22 +session,505,0,Safari 26,78,2018-02-13 +session,505,1,Safari 13,72,2018-11-21 +session,505,2,Firefox 40,33,2018-07-25 +session,505,3,Internet Explorer 19,57,2017-09-20 +session,505,4,Firefox 13,74,2016-08-08 +session,505,5,Safari 39,52,2016-09-01 +session,505,6,Internet Explorer 7,103,2018-01-25 +session,505,7,Chrome 14,49,2017-04-14 +user,506,Kimi,Andrew,88 +session,506,0,Chrome 46,67,2017-09-03 +session,506,1,Chrome 22,108,2016-06-12 +user,507,Rubie,Kala,70 +session,507,0,Chrome 15,65,2016-06-08 +session,507,1,Internet Explorer 50,105,2018-10-25 +session,507,2,Safari 31,9,2016-09-20 +session,507,3,Chrome 14,118,2017-01-15 +session,507,4,Safari 16,10,2017-10-22 +session,507,5,Firefox 9,6,2017-06-08 +session,507,6,Chrome 30,101,2018-01-31 +session,507,7,Chrome 4,37,2016-12-07 +session,507,8,Firefox 43,92,2018-10-22 +user,508,Latia,Lucio,33 +session,508,0,Safari 39,53,2018-01-24 +session,508,1,Chrome 18,5,2017-11-11 +session,508,2,Firefox 37,59,2017-09-22 +session,508,3,Firefox 33,23,2016-05-23 +session,508,4,Internet Explorer 6,106,2016-12-27 +session,508,5,Firefox 32,12,2016-08-17 +session,508,6,Internet Explorer 10,95,2017-06-13 +session,508,7,Firefox 11,90,2017-12-12 +user,509,Jarod,Cyrus,39 +session,509,0,Safari 50,6,2017-07-04 +session,509,1,Chrome 34,8,2019-01-16 +session,509,2,Firefox 10,25,2016-11-16 +session,509,3,Chrome 30,110,2017-08-26 +session,509,4,Firefox 40,53,2017-09-15 +session,509,5,Internet Explorer 9,38,2018-07-09 +session,509,6,Firefox 25,96,2016-10-26 +user,510,Renato,Allegra,34 +session,510,0,Chrome 23,12,2017-08-14 +session,510,1,Firefox 34,72,2017-05-01 +session,510,2,Chrome 40,8,2018-05-01 +session,510,3,Firefox 47,44,2018-03-23 +session,510,4,Safari 31,47,2016-12-21 +session,510,5,Chrome 39,44,2016-08-21 +session,510,6,Chrome 40,43,2017-09-03 +session,510,7,Internet Explorer 5,25,2017-10-10 +session,510,8,Firefox 41,82,2018-02-07 +user,511,Sharita,Svetlana,3 +session,511,0,Firefox 30,101,2017-04-16 +session,511,1,Chrome 22,106,2016-12-10 +session,511,2,Firefox 17,55,2016-08-11 +session,511,3,Safari 49,75,2017-08-30 +session,511,4,Safari 12,36,2018-10-19 +session,511,5,Safari 9,76,2016-10-05 +session,511,6,Internet Explorer 28,89,2017-08-15 +session,511,7,Firefox 36,60,2017-04-19 +session,511,8,Firefox 43,54,2017-07-05 +user,512,Melony,Del,79 +session,512,0,Firefox 15,109,2016-08-20 +session,512,1,Internet Explorer 21,47,2018-08-20 +session,512,2,Firefox 1,77,2016-07-06 +session,512,3,Firefox 48,38,2017-02-22 +session,512,4,Firefox 30,73,2017-08-08 +session,512,5,Firefox 6,18,2018-10-04 +session,512,6,Safari 29,114,2017-07-25 +session,512,7,Chrome 6,117,2017-10-24 +user,513,Tamesha,Garfield,79 +session,513,0,Chrome 11,22,2018-09-07 +session,513,1,Safari 15,2,2016-11-20 +session,513,2,Safari 43,21,2017-12-12 +user,514,Duncan,Ayako,45 +session,514,0,Firefox 20,29,2017-06-26 +session,514,1,Firefox 10,67,2017-12-11 +session,514,2,Internet Explorer 19,115,2018-07-28 +session,514,3,Firefox 4,45,2016-10-12 +session,514,4,Chrome 42,109,2016-06-25 +user,515,Albertina,April,84 +session,515,0,Firefox 41,83,2018-12-18 +session,515,1,Safari 7,19,2017-06-17 +session,515,2,Internet Explorer 2,84,2017-05-08 +user,516,Elton,Consuelo,43 +session,516,0,Firefox 12,88,2017-05-25 +user,517,Vesta,Albina,5 +session,517,0,Internet Explorer 26,2,2016-07-30 +session,517,1,Chrome 25,104,2018-05-29 +session,517,2,Chrome 4,2,2017-09-01 +session,517,3,Chrome 18,66,2018-01-13 +session,517,4,Safari 25,82,2016-09-27 +session,517,5,Chrome 43,27,2018-07-19 +session,517,6,Chrome 27,101,2016-07-29 +session,517,7,Firefox 5,39,2017-01-05 +session,517,8,Chrome 25,111,2017-03-04 +session,517,9,Safari 6,107,2018-08-01 +user,518,Kira,Christie,12 +session,518,0,Safari 7,49,2017-12-07 +session,518,1,Safari 50,86,2017-12-14 +session,518,2,Safari 31,71,2018-05-01 +session,518,3,Chrome 46,75,2017-02-26 +session,518,4,Internet Explorer 31,76,2018-03-09 +session,518,5,Chrome 22,50,2017-06-03 +session,518,6,Safari 47,85,2018-01-08 +user,519,Hung,Angella,87 +session,519,0,Chrome 40,43,2016-10-21 +session,519,1,Chrome 34,89,2017-03-26 +user,520,Josiah,Merrill,82 +session,520,0,Firefox 40,25,2016-09-19 +session,520,1,Safari 43,27,2019-01-29 +session,520,2,Internet Explorer 20,94,2017-11-22 +session,520,3,Firefox 18,57,2019-01-10 +session,520,4,Chrome 14,19,2016-12-11 +session,520,5,Safari 14,74,2017-10-26 +session,520,6,Chrome 33,13,2018-01-24 +session,520,7,Internet Explorer 40,32,2017-12-29 +session,520,8,Safari 19,35,2016-10-07 +user,521,Hazel,Lyman,51 +session,521,0,Safari 3,19,2017-12-04 +session,521,1,Safari 34,26,2018-08-25 +session,521,2,Firefox 14,98,2017-06-14 +user,522,Titus,Arturo,90 +session,522,0,Internet Explorer 45,99,2018-01-11 +session,522,1,Chrome 5,10,2017-05-26 +session,522,2,Internet Explorer 29,28,2016-12-12 +session,522,3,Chrome 15,35,2017-12-16 +session,522,4,Chrome 47,73,2017-09-06 +user,523,Lamont,Jacquelyn,97 +session,523,0,Safari 28,73,2017-04-13 +session,523,1,Safari 43,54,2017-09-11 +session,523,2,Internet Explorer 35,13,2019-01-26 +session,523,3,Safari 44,59,2018-04-10 +session,523,4,Safari 41,89,2019-02-09 +user,524,Charles,Karri,99 +session,524,0,Chrome 50,75,2018-03-09 +session,524,1,Chrome 47,76,2018-01-28 +session,524,2,Chrome 36,20,2016-07-07 +session,524,3,Chrome 32,116,2018-03-31 +session,524,4,Chrome 30,68,2018-11-07 +session,524,5,Safari 47,31,2017-06-23 +session,524,6,Chrome 8,54,2018-09-16 +user,525,Jinny,Aja,38 +session,525,0,Safari 47,15,2016-11-06 +user,526,Mary,Jere,65 +session,526,0,Chrome 5,28,2017-01-04 +session,526,1,Firefox 20,2,2018-05-12 +user,527,Brant,Brett,95 +session,527,0,Chrome 22,87,2018-11-29 +session,527,1,Chrome 30,92,2019-02-08 +session,527,2,Internet Explorer 14,97,2018-02-12 +session,527,3,Firefox 12,10,2017-04-12 +session,527,4,Safari 50,119,2017-08-23 +session,527,5,Internet Explorer 42,90,2016-12-02 +user,528,Yadira,Adrienne,0 +session,528,0,Internet Explorer 33,99,2017-09-16 +session,528,1,Firefox 23,38,2018-01-02 +user,529,Nina,Xenia,16 +session,529,0,Safari 26,77,2016-10-14 +session,529,1,Chrome 25,32,2018-11-10 +user,530,Malik,Frankie,4 +session,530,0,Internet Explorer 6,48,2017-10-16 +session,530,1,Internet Explorer 33,21,2017-09-25 +session,530,2,Internet Explorer 50,30,2017-04-04 +session,530,3,Firefox 19,78,2017-08-01 +session,530,4,Safari 11,8,2018-03-17 +session,530,5,Internet Explorer 21,15,2017-09-17 +session,530,6,Internet Explorer 3,37,2016-08-11 +session,530,7,Safari 28,97,2016-10-29 +session,530,8,Safari 18,91,2018-03-19 +session,530,9,Safari 47,12,2018-08-08 +user,531,Dolly,Jermaine,25 +session,531,0,Chrome 14,62,2016-06-24 +session,531,1,Firefox 27,107,2017-02-20 +session,531,2,Chrome 47,65,2017-04-22 +session,531,3,Firefox 42,119,2016-11-23 +session,531,4,Safari 32,95,2019-01-29 +session,531,5,Internet Explorer 35,30,2018-06-25 +user,532,Vita,Johana,41 +session,532,0,Firefox 4,11,2016-07-27 +session,532,1,Safari 30,57,2019-01-28 +session,532,2,Internet Explorer 26,52,2019-02-06 +session,532,3,Chrome 10,112,2016-12-11 +session,532,4,Chrome 18,78,2016-08-19 +user,533,Karyl,Gerry,67 +session,533,0,Chrome 24,22,2018-12-06 +session,533,1,Chrome 17,12,2019-02-04 +session,533,2,Safari 1,28,2017-08-01 +session,533,3,Internet Explorer 6,14,2018-08-02 +session,533,4,Firefox 41,4,2018-06-10 +user,534,Hildegarde,Stephen,41 +session,534,0,Safari 22,91,2016-08-29 +session,534,1,Safari 19,79,2017-08-24 +session,534,2,Safari 34,84,2017-08-06 +session,534,3,Firefox 40,64,2018-08-19 +user,535,Brendan,Nubia,42 +session,535,0,Safari 37,49,2017-04-25 +session,535,1,Safari 46,94,2018-11-18 +session,535,2,Chrome 15,17,2018-11-01 +session,535,3,Internet Explorer 31,10,2018-03-21 +user,536,Gus,Irish,3 +session,536,0,Internet Explorer 34,29,2018-05-20 +session,536,1,Safari 37,43,2016-10-25 +session,536,2,Safari 35,9,2018-11-11 +session,536,3,Safari 37,37,2017-12-13 +session,536,4,Safari 46,89,2017-05-19 +session,536,5,Firefox 45,4,2016-09-16 +user,537,Lavina,Emely,73 +session,537,0,Internet Explorer 5,27,2019-01-06 +session,537,1,Safari 36,35,2017-01-07 +session,537,2,Safari 30,14,2018-07-08 +session,537,3,Internet Explorer 30,27,2017-08-27 +session,537,4,Safari 46,101,2017-11-19 +user,538,Consuelo,Carmelo,65 +session,538,0,Safari 34,57,2017-08-11 +user,539,Carroll,Lizabeth,7 +session,539,0,Internet Explorer 2,45,2018-04-03 +user,540,Neal,Juan,31 +session,540,0,Chrome 23,35,2018-03-02 +session,540,1,Safari 38,36,2016-06-18 +session,540,2,Safari 10,56,2018-11-18 +session,540,3,Safari 8,51,2018-12-28 +user,541,Ilda,Jerrell,38 +session,541,0,Internet Explorer 8,75,2018-04-09 +session,541,1,Firefox 3,13,2017-05-17 +session,541,2,Chrome 9,7,2018-10-11 +session,541,3,Firefox 38,119,2017-03-17 +user,542,Sterling,Lavona,18 +session,542,0,Internet Explorer 32,107,2017-12-14 +session,542,1,Chrome 47,19,2016-08-30 +session,542,2,Firefox 9,63,2018-06-28 +session,542,3,Chrome 45,50,2016-12-20 +session,542,4,Safari 9,54,2017-08-18 +session,542,5,Internet Explorer 7,72,2016-07-17 +user,543,Debora,Bettye,74 +session,543,0,Internet Explorer 35,88,2017-02-15 +session,543,1,Safari 47,7,2016-11-24 +session,543,2,Firefox 44,62,2017-03-13 +session,543,3,Safari 4,24,2016-09-26 +user,544,Mercedez,Palma,7 +session,544,0,Chrome 19,7,2016-10-07 +session,544,1,Safari 18,31,2016-11-06 +session,544,2,Internet Explorer 8,39,2017-08-12 +session,544,3,Firefox 37,71,2019-01-01 +session,544,4,Chrome 10,85,2018-07-19 +user,545,Ernie,Cheryl,56 +session,545,0,Internet Explorer 40,44,2016-05-29 +session,545,1,Internet Explorer 32,87,2018-05-13 +session,545,2,Safari 36,103,2018-04-26 +user,546,Cayla,Jerrie,97 +session,546,0,Firefox 7,105,2017-05-12 +session,546,1,Chrome 39,1,2019-01-13 +session,546,2,Safari 38,111,2017-03-25 +session,546,3,Internet Explorer 47,87,2018-12-25 +session,546,4,Safari 36,5,2016-07-04 +session,546,5,Safari 13,59,2017-03-08 +session,546,6,Firefox 19,79,2016-08-27 +user,547,Season,Odilia,51 +session,547,0,Internet Explorer 15,30,2016-11-15 +session,547,1,Chrome 41,78,2017-11-04 +session,547,2,Safari 41,73,2018-03-08 +session,547,3,Chrome 2,79,2017-05-06 +session,547,4,Internet Explorer 26,19,2017-09-29 +session,547,5,Safari 13,9,2017-11-21 +user,548,Georgine,Gloria,68 +session,548,0,Safari 2,14,2019-01-02 +session,548,1,Internet Explorer 25,90,2018-07-09 +session,548,2,Safari 22,78,2018-03-14 +session,548,3,Firefox 28,37,2017-12-30 +session,548,4,Internet Explorer 14,3,2018-03-03 +session,548,5,Chrome 10,4,2017-07-18 +user,549,Antoine,Major,62 +session,549,0,Firefox 34,8,2016-06-15 +user,550,Houston,Gale,10 +session,550,0,Internet Explorer 3,46,2017-12-30 +session,550,1,Firefox 7,23,2018-08-06 +session,550,2,Firefox 15,103,2016-06-09 +session,550,3,Internet Explorer 10,86,2017-11-22 +session,550,4,Internet Explorer 6,27,2018-12-20 +session,550,5,Internet Explorer 31,80,2017-02-28 +session,550,6,Safari 25,64,2018-11-05 +session,550,7,Safari 38,84,2018-12-14 +session,550,8,Safari 16,3,2018-10-17 +user,551,Karlyn,Julius,94 +session,551,0,Firefox 16,19,2017-05-21 +session,551,1,Safari 14,100,2017-01-23 +user,552,Demetra,Boris,51 +session,552,0,Safari 4,81,2017-08-02 +session,552,1,Firefox 38,15,2017-01-05 +session,552,2,Chrome 41,27,2017-04-28 +session,552,3,Firefox 21,33,2017-06-13 +user,553,Kerry,Cole,70 +session,553,0,Safari 27,112,2017-07-24 +session,553,1,Internet Explorer 5,6,2016-07-09 +session,553,2,Internet Explorer 18,103,2018-11-29 +session,553,3,Chrome 26,69,2017-04-19 +session,553,4,Internet Explorer 15,67,2018-07-11 +session,553,5,Chrome 11,86,2018-07-29 +session,553,6,Safari 1,15,2016-11-28 +session,553,7,Safari 4,44,2019-02-10 +session,553,8,Internet Explorer 33,87,2019-02-02 +session,553,9,Internet Explorer 24,18,2017-08-12 +user,554,Stewart,Magen,11 +session,554,0,Internet Explorer 39,118,2018-11-01 +session,554,1,Firefox 20,74,2019-02-12 +user,555,Colton,Charline,33 +session,555,0,Internet Explorer 31,58,2017-08-16 +session,555,1,Chrome 47,114,2016-09-21 +session,555,2,Chrome 23,4,2019-02-11 +session,555,3,Internet Explorer 44,91,2016-12-07 +session,555,4,Firefox 25,102,2017-10-12 +session,555,5,Safari 7,44,2018-01-30 +session,555,6,Internet Explorer 9,37,2018-05-21 +session,555,7,Safari 1,83,2016-07-05 +user,556,Warren,Shandra,47 +session,556,0,Chrome 35,53,2016-06-29 +session,556,1,Firefox 21,112,2018-01-07 +session,556,2,Internet Explorer 28,54,2018-09-14 +session,556,3,Safari 21,106,2018-01-13 +session,556,4,Firefox 40,92,2018-10-05 +user,557,Karole,Vicenta,30 +session,557,0,Internet Explorer 39,78,2017-09-07 +session,557,1,Safari 30,57,2018-10-12 +session,557,2,Firefox 43,3,2016-12-24 +session,557,3,Firefox 23,6,2017-04-18 +session,557,4,Internet Explorer 23,2,2017-03-25 +user,558,Dona,Catherina,79 +session,558,0,Firefox 23,67,2019-02-04 +session,558,1,Internet Explorer 18,84,2018-09-24 +session,558,2,Chrome 26,23,2018-05-05 +session,558,3,Safari 47,83,2016-07-29 +session,558,4,Internet Explorer 32,113,2017-07-07 +session,558,5,Chrome 21,52,2018-11-06 +session,558,6,Safari 1,49,2018-05-15 +user,559,Paris,Son,61 +session,559,0,Internet Explorer 34,91,2018-09-13 +session,559,1,Safari 5,60,2017-10-14 +session,559,2,Firefox 1,110,2018-05-27 +session,559,3,Chrome 11,18,2018-06-10 +session,559,4,Chrome 11,25,2017-04-11 +session,559,5,Internet Explorer 40,31,2017-10-02 +session,559,6,Firefox 14,104,2017-06-04 +session,559,7,Chrome 36,81,2018-02-28 +user,560,Benton,Winston,56 +session,560,0,Firefox 15,55,2017-07-28 +session,560,1,Firefox 9,119,2016-08-09 +session,560,2,Internet Explorer 16,80,2018-08-10 +session,560,3,Internet Explorer 13,88,2016-12-03 +session,560,4,Chrome 37,113,2017-11-19 +user,561,Marcellus,Rosanna,28 +session,561,0,Chrome 39,81,2016-09-02 +session,561,1,Firefox 40,6,2017-10-13 +user,562,Gabrielle,Megan,21 +session,562,0,Chrome 2,86,2017-08-20 +session,562,1,Safari 7,95,2018-09-11 +session,562,2,Safari 34,19,2018-04-26 +session,562,3,Firefox 6,99,2018-02-24 +user,563,Milagro,Julie,49 +session,563,0,Safari 5,93,2018-01-12 +user,564,Un,Kenton,87 +session,564,0,Safari 4,44,2017-10-11 +session,564,1,Safari 21,52,2017-06-01 +session,564,2,Chrome 32,36,2016-11-09 +session,564,3,Chrome 14,9,2017-06-06 +session,564,4,Safari 18,7,2018-01-01 +session,564,5,Firefox 1,54,2018-11-17 +session,564,6,Safari 44,50,2018-07-20 +session,564,7,Firefox 33,59,2016-05-24 +user,565,Cecil,Jeanetta,13 +session,565,0,Safari 29,60,2018-01-28 +session,565,1,Firefox 31,9,2018-05-27 +session,565,2,Safari 35,95,2017-09-10 +session,565,3,Internet Explorer 22,10,2017-07-28 +session,565,4,Chrome 9,2,2018-07-24 +session,565,5,Firefox 37,119,2018-08-13 +session,565,6,Firefox 16,14,2017-11-09 +session,565,7,Safari 14,79,2016-10-20 +session,565,8,Chrome 3,32,2017-11-12 +user,566,Ermelinda,Peter,25 +session,566,0,Firefox 5,31,2017-10-18 +user,567,Luciano,Elton,77 +session,567,0,Chrome 39,60,2017-11-05 +session,567,1,Safari 41,105,2017-02-26 +user,568,Loise,Tom,66 +session,568,0,Firefox 47,49,2016-06-19 +session,568,1,Internet Explorer 49,115,2018-09-13 +session,568,2,Internet Explorer 45,45,2018-09-14 +session,568,3,Chrome 4,77,2016-06-15 +session,568,4,Firefox 4,107,2018-01-31 +session,568,5,Firefox 33,117,2018-10-07 +session,568,6,Internet Explorer 21,55,2017-06-29 +session,568,7,Firefox 14,8,2017-06-01 +session,568,8,Chrome 27,3,2016-05-25 +user,569,Carole,Alfonzo,99 +session,569,0,Firefox 45,36,2016-07-12 +session,569,1,Safari 3,29,2017-01-29 +session,569,2,Firefox 24,28,2016-11-11 +session,569,3,Firefox 44,26,2018-09-22 +session,569,4,Chrome 6,48,2017-04-15 +session,569,5,Internet Explorer 25,78,2017-04-19 +session,569,6,Safari 38,24,2018-09-22 +session,569,7,Chrome 32,19,2017-03-14 +user,570,Del,Akilah,30 +session,570,0,Internet Explorer 13,88,2016-09-08 +session,570,1,Chrome 18,60,2017-11-08 +user,571,Bernarda,Dominque,76 +session,571,0,Firefox 5,67,2018-12-31 +session,571,1,Safari 9,113,2017-11-15 +session,571,2,Firefox 10,12,2018-12-11 +session,571,3,Firefox 39,102,2016-06-19 +session,571,4,Firefox 38,104,2017-07-18 +session,571,5,Firefox 28,27,2016-07-02 +session,571,6,Chrome 50,116,2018-03-13 +user,572,Lilla,Chas,44 +session,572,0,Chrome 11,60,2017-08-04 +session,572,1,Internet Explorer 19,39,2018-10-02 +session,572,2,Firefox 46,92,2018-07-02 +session,572,3,Internet Explorer 12,96,2018-11-07 +session,572,4,Safari 5,31,2017-03-28 +session,572,5,Chrome 19,12,2018-02-11 +session,572,6,Chrome 18,27,2016-12-03 +session,572,7,Internet Explorer 25,55,2016-06-27 +session,572,8,Safari 26,90,2018-11-26 +user,573,Steven,Nick,83 +session,573,0,Safari 13,83,2018-06-23 +session,573,1,Safari 23,19,2017-12-20 +session,573,2,Safari 21,96,2018-07-14 +session,573,3,Chrome 29,15,2017-10-20 +user,574,Hiroko,Madelyn,51 +session,574,0,Internet Explorer 12,63,2018-04-11 +session,574,1,Internet Explorer 34,42,2018-05-17 +session,574,2,Chrome 11,35,2017-03-17 +session,574,3,Internet Explorer 50,2,2016-08-06 +session,574,4,Internet Explorer 37,116,2018-05-31 +user,575,Ashly,Bethann,82 +session,575,0,Firefox 40,19,2018-12-05 +session,575,1,Firefox 20,42,2018-08-25 +session,575,2,Chrome 37,79,2018-05-10 +session,575,3,Safari 47,8,2017-01-03 +user,576,Delbert,Kareem,8 +session,576,0,Firefox 43,29,2018-05-26 +user,577,Lawana,Julian,68 +session,577,0,Safari 49,8,2017-04-21 +session,577,1,Chrome 37,29,2017-10-22 +session,577,2,Chrome 47,26,2019-01-29 +user,578,Andree,Samella,62 +session,578,0,Chrome 18,57,2019-01-18 +session,578,1,Chrome 18,45,2017-10-08 +session,578,2,Internet Explorer 40,0,2017-01-08 +session,578,3,Firefox 18,18,2017-10-30 +session,578,4,Safari 44,7,2017-10-08 +user,579,Brian,Leta,85 +session,579,0,Internet Explorer 40,73,2018-01-28 +user,580,Elisa,Hortensia,76 +session,580,0,Firefox 16,35,2017-02-10 +session,580,1,Chrome 13,73,2018-01-05 +session,580,2,Firefox 15,67,2018-07-22 +session,580,3,Chrome 24,88,2018-03-23 +session,580,4,Chrome 17,54,2018-03-29 +session,580,5,Chrome 6,51,2017-06-24 +session,580,6,Chrome 38,117,2016-12-07 +user,581,Polly,Rossana,28 +session,581,0,Safari 2,97,2017-08-03 +session,581,1,Firefox 42,76,2016-08-10 +session,581,2,Firefox 46,41,2018-01-11 +session,581,3,Internet Explorer 33,18,2016-05-22 +session,581,4,Firefox 44,111,2018-07-05 +session,581,5,Chrome 20,23,2016-11-17 +session,581,6,Firefox 38,78,2018-08-01 +session,581,7,Firefox 13,92,2016-09-03 +session,581,8,Safari 47,59,2019-02-06 +session,581,9,Safari 28,35,2017-09-03 +user,582,Berry,Meredith,79 +session,582,0,Firefox 16,104,2018-07-17 +session,582,1,Safari 26,33,2016-06-11 +session,582,2,Firefox 27,26,2018-01-08 +session,582,3,Chrome 42,37,2017-11-05 +user,583,Bud,Ranae,38 +session,583,0,Internet Explorer 3,45,2017-09-22 +session,583,1,Internet Explorer 31,100,2017-04-13 +user,584,Manual,Darius,99 +session,584,0,Safari 44,35,2017-07-15 +session,584,1,Internet Explorer 26,43,2016-09-06 +session,584,2,Firefox 36,65,2016-09-04 +session,584,3,Firefox 34,25,2016-12-19 +session,584,4,Firefox 28,112,2016-12-19 +session,584,5,Internet Explorer 26,25,2016-10-21 +session,584,6,Internet Explorer 35,63,2016-12-26 +session,584,7,Safari 30,116,2016-08-20 +user,585,Teddy,Antony,21 +session,585,0,Firefox 45,115,2017-07-13 +session,585,1,Safari 41,92,2017-01-03 +session,585,2,Internet Explorer 9,85,2018-10-15 +session,585,3,Firefox 21,112,2018-01-01 +session,585,4,Firefox 3,76,2019-01-25 +session,585,5,Firefox 4,119,2017-10-31 +user,586,Erich,Gearldine,96 +session,586,0,Safari 18,11,2018-05-02 +session,586,1,Internet Explorer 20,83,2018-03-24 +session,586,2,Firefox 41,36,2017-01-30 +session,586,3,Chrome 8,115,2017-02-21 +session,586,4,Safari 40,101,2017-06-30 +session,586,5,Safari 43,106,2019-01-13 +session,586,6,Internet Explorer 27,41,2018-05-30 +session,586,7,Safari 10,77,2017-07-19 +session,586,8,Safari 16,65,2017-11-02 +user,587,Ellie,Lorna,93 +session,587,0,Safari 2,65,2018-01-12 +session,587,1,Firefox 48,67,2018-03-03 +session,587,2,Internet Explorer 2,91,2019-02-10 +session,587,3,Firefox 6,33,2016-07-19 +session,587,4,Chrome 36,83,2017-08-25 +session,587,5,Chrome 38,82,2018-05-23 +session,587,6,Chrome 45,50,2017-01-29 +session,587,7,Chrome 47,52,2017-11-18 +session,587,8,Firefox 32,35,2016-09-18 +user,588,Tamar,Rowena,21 +session,588,0,Firefox 28,29,2018-03-03 +session,588,1,Firefox 3,115,2018-08-21 +session,588,2,Chrome 27,95,2018-04-17 +session,588,3,Chrome 8,106,2016-08-04 +session,588,4,Firefox 17,3,2018-12-11 +session,588,5,Chrome 43,38,2018-12-11 +user,589,Beverley,Delsie,6 +session,589,0,Internet Explorer 49,74,2016-12-13 +session,589,1,Firefox 49,100,2018-01-22 +session,589,2,Firefox 14,34,2016-11-19 +session,589,3,Safari 24,68,2019-01-26 +session,589,4,Safari 31,91,2017-12-15 +session,589,5,Chrome 23,14,2017-07-25 +user,590,Joshua,Debbi,2 +session,590,0,Firefox 4,12,2018-06-06 +user,591,Tony,Harris,26 +session,591,0,Firefox 17,30,2019-01-17 +user,592,Damion,Dick,16 +session,592,0,Internet Explorer 49,75,2018-07-10 +session,592,1,Firefox 34,85,2017-01-25 +session,592,2,Chrome 1,53,2017-10-02 +session,592,3,Chrome 12,119,2017-10-16 +user,593,Burton,Delcie,15 +session,593,0,Safari 1,116,2018-07-08 +session,593,1,Firefox 5,21,2016-11-02 +session,593,2,Firefox 50,97,2018-04-03 +session,593,3,Internet Explorer 18,8,2018-02-24 +session,593,4,Internet Explorer 8,9,2018-12-22 +session,593,5,Chrome 43,32,2018-04-20 +user,594,Myung,Michele,28 +session,594,0,Chrome 34,72,2018-08-28 +session,594,1,Chrome 48,70,2018-10-31 +session,594,2,Chrome 9,95,2018-01-30 +session,594,3,Safari 17,2,2018-11-04 +session,594,4,Safari 33,46,2018-05-06 +user,595,Felicitas,Natalie,99 +session,595,0,Chrome 34,17,2017-06-08 +session,595,1,Internet Explorer 3,106,2017-11-21 +session,595,2,Safari 36,23,2017-08-24 +user,596,Delmar,Elsa,47 +session,596,0,Chrome 33,101,2017-11-30 +session,596,1,Internet Explorer 41,61,2017-01-28 +session,596,2,Safari 1,79,2018-08-10 +session,596,3,Firefox 6,24,2018-08-07 +session,596,4,Chrome 29,109,2019-02-11 +session,596,5,Safari 50,41,2018-02-07 +session,596,6,Chrome 23,13,2018-08-31 +user,597,Beulah,Sharyn,85 +session,597,0,Chrome 25,54,2017-12-23 +session,597,1,Chrome 17,43,2019-01-14 +session,597,2,Chrome 15,108,2019-01-05 +session,597,3,Safari 19,67,2018-07-07 +session,597,4,Safari 45,0,2018-11-01 +user,598,Collen,Marylin,39 +session,598,0,Firefox 35,107,2017-12-10 +session,598,1,Chrome 11,86,2018-07-10 +session,598,2,Chrome 40,40,2017-01-31 +session,598,3,Firefox 24,71,2018-05-12 +user,599,Rochel,Trisha,95 +session,599,0,Internet Explorer 49,110,2017-09-10 +session,599,1,Safari 43,53,2016-08-17 +session,599,2,Safari 14,23,2016-06-28 +session,599,3,Firefox 28,34,2017-02-25 +user,600,Roselia,Tamar,33 +session,600,0,Internet Explorer 1,54,2017-03-19 +user,601,Cortney,Rodrigo,63 +session,601,0,Firefox 10,4,2016-10-03 +session,601,1,Internet Explorer 48,97,2017-07-18 +session,601,2,Firefox 39,22,2019-01-27 +session,601,3,Internet Explorer 35,19,2018-07-10 +session,601,4,Firefox 36,113,2016-06-21 +user,602,Jared,Chastity,80 +session,602,0,Chrome 34,35,2016-08-10 +session,602,1,Internet Explorer 30,105,2016-11-01 +session,602,2,Safari 10,73,2017-02-06 +session,602,3,Internet Explorer 45,93,2019-01-01 +session,602,4,Internet Explorer 7,57,2017-08-10 +session,602,5,Chrome 50,32,2017-10-16 +session,602,6,Internet Explorer 39,77,2017-01-08 +user,603,Sydney,Norman,72 +session,603,0,Internet Explorer 6,57,2017-08-24 +session,603,1,Firefox 41,24,2018-04-02 +session,603,2,Chrome 39,106,2017-04-09 +session,603,3,Chrome 12,87,2018-07-05 +user,604,Chiquita,Catherina,80 +session,604,0,Chrome 36,100,2019-01-03 +session,604,1,Firefox 45,40,2016-09-11 +session,604,2,Chrome 4,45,2017-02-11 +session,604,3,Internet Explorer 45,77,2017-10-17 +session,604,4,Internet Explorer 30,80,2018-10-14 +session,604,5,Firefox 8,29,2016-12-22 +session,604,6,Safari 1,51,2018-08-19 +session,604,7,Firefox 15,116,2016-09-04 +session,604,8,Internet Explorer 43,44,2016-09-05 +session,604,9,Internet Explorer 42,111,2018-06-08 +user,605,Alvaro,Teisha,41 +session,605,0,Chrome 17,118,2017-12-02 +session,605,1,Chrome 36,113,2016-09-03 +session,605,2,Internet Explorer 30,2,2017-12-05 +session,605,3,Firefox 16,69,2017-04-27 +session,605,4,Chrome 15,30,2018-10-16 +session,605,5,Chrome 25,81,2016-09-03 +user,606,Danial,Yan,57 +session,606,0,Internet Explorer 17,71,2017-07-24 +session,606,1,Firefox 17,15,2016-12-25 +session,606,2,Chrome 2,80,2018-01-12 +session,606,3,Firefox 10,64,2017-11-18 +session,606,4,Chrome 29,14,2017-02-20 +session,606,5,Safari 18,31,2018-04-21 +session,606,6,Safari 4,98,2019-02-08 +session,606,7,Internet Explorer 27,22,2018-09-13 +session,606,8,Safari 37,10,2016-10-25 +user,607,Emanuel,Kenda,10 +session,607,0,Safari 14,94,2016-09-05 +session,607,1,Chrome 28,83,2018-11-06 +session,607,2,Safari 50,41,2018-08-11 +session,607,3,Chrome 48,109,2018-12-04 +session,607,4,Internet Explorer 38,4,2018-05-20 +session,607,5,Chrome 5,83,2017-10-02 +session,607,6,Internet Explorer 38,33,2017-04-07 +session,607,7,Internet Explorer 38,44,2017-07-11 +session,607,8,Internet Explorer 36,76,2016-10-18 +session,607,9,Internet Explorer 36,41,2018-08-03 +user,608,Cleveland,Ronnie,63 +session,608,0,Chrome 11,20,2017-01-19 +session,608,1,Safari 12,62,2016-06-07 +user,609,Benedict,Hsiu,70 +session,609,0,Chrome 28,22,2018-12-15 +session,609,1,Safari 17,69,2018-06-08 +session,609,2,Safari 1,87,2016-07-18 +session,609,3,Internet Explorer 28,34,2017-03-07 +session,609,4,Safari 36,105,2016-12-22 +session,609,5,Internet Explorer 43,96,2016-09-18 +session,609,6,Chrome 36,39,2017-07-27 +session,609,7,Firefox 7,43,2016-07-31 +session,609,8,Chrome 21,27,2018-05-05 +user,610,Coy,Jann,17 +session,610,0,Internet Explorer 49,27,2016-07-21 +session,610,1,Internet Explorer 16,4,2017-12-18 +session,610,2,Internet Explorer 37,46,2017-08-22 +session,610,3,Internet Explorer 16,68,2018-10-04 +session,610,4,Chrome 8,21,2016-11-25 +session,610,5,Internet Explorer 33,114,2017-10-15 +session,610,6,Safari 36,96,2018-04-01 +session,610,7,Chrome 24,58,2018-08-23 +session,610,8,Firefox 35,29,2017-04-11 +session,610,9,Internet Explorer 2,86,2017-07-31 +user,611,Randy,Catharine,76 +session,611,0,Internet Explorer 35,77,2018-01-19 +session,611,1,Safari 35,40,2017-01-23 +session,611,2,Internet Explorer 43,38,2018-11-01 +user,612,Tyron,Jessica,14 +session,612,0,Chrome 44,50,2016-11-29 +session,612,1,Firefox 14,28,2018-05-02 +session,612,2,Safari 3,85,2018-12-26 +session,612,3,Internet Explorer 26,104,2017-04-02 +session,612,4,Firefox 25,109,2017-10-15 +session,612,5,Internet Explorer 8,97,2017-04-11 +session,612,6,Internet Explorer 39,94,2019-01-10 +session,612,7,Safari 4,101,2018-03-19 +user,613,Jodee,Cinda,69 +session,613,0,Safari 50,67,2018-04-08 +session,613,1,Chrome 9,95,2018-07-18 +session,613,2,Firefox 47,4,2016-10-12 +session,613,3,Firefox 16,78,2016-10-16 +session,613,4,Safari 7,52,2017-01-29 +session,613,5,Internet Explorer 29,117,2017-09-16 +user,614,Rhona,Kizzie,72 +session,614,0,Chrome 19,53,2018-11-02 +session,614,1,Chrome 39,40,2018-08-11 +session,614,2,Chrome 17,88,2018-12-13 +user,615,Myron,Clement,13 +session,615,0,Internet Explorer 13,36,2017-09-21 +session,615,1,Firefox 12,101,2016-10-22 +session,615,2,Internet Explorer 46,44,2017-01-22 +session,615,3,Firefox 22,82,2017-02-25 +session,615,4,Firefox 34,119,2018-01-18 +session,615,5,Firefox 18,84,2018-06-27 +session,615,6,Safari 29,68,2016-09-18 +session,615,7,Safari 16,18,2016-07-23 +user,616,Enedina,Estelle,56 +session,616,0,Firefox 45,42,2016-10-16 +user,617,Burt,Katherine,55 +session,617,0,Internet Explorer 43,72,2018-12-08 +user,618,Deeann,Rosemary,42 +session,618,0,Firefox 8,100,2017-01-27 +session,618,1,Safari 3,63,2017-07-10 +session,618,2,Chrome 7,95,2018-04-21 +session,618,3,Chrome 34,117,2016-10-24 +session,618,4,Internet Explorer 17,56,2017-01-01 +session,618,5,Internet Explorer 41,20,2016-11-21 +session,618,6,Firefox 34,115,2018-10-07 +session,618,7,Safari 2,12,2018-03-16 +session,618,8,Internet Explorer 34,1,2018-05-15 +session,618,9,Chrome 24,1,2017-08-25 +user,619,Rayna,Denese,30 +session,619,0,Internet Explorer 4,0,2016-08-12 +session,619,1,Internet Explorer 16,92,2018-03-22 +session,619,2,Chrome 26,65,2018-05-05 +session,619,3,Internet Explorer 49,19,2016-06-18 +session,619,4,Safari 34,57,2017-02-06 +session,619,5,Chrome 34,7,2018-11-03 +session,619,6,Internet Explorer 18,108,2019-01-21 +session,619,7,Safari 31,79,2018-08-23 +session,619,8,Safari 42,106,2017-06-26 +session,619,9,Chrome 47,57,2017-09-20 +user,620,Margery,Jody,42 +session,620,0,Safari 31,80,2017-03-15 +session,620,1,Safari 34,46,2017-03-28 +session,620,2,Internet Explorer 13,96,2018-11-02 +session,620,3,Internet Explorer 23,87,2018-04-18 +session,620,4,Safari 11,42,2018-12-29 +session,620,5,Chrome 37,56,2018-02-02 +user,621,Demetra,Ka,45 +session,621,0,Chrome 31,104,2017-11-17 +session,621,1,Firefox 40,62,2018-11-05 +session,621,2,Internet Explorer 46,19,2017-10-03 +session,621,3,Internet Explorer 10,26,2018-12-08 +session,621,4,Safari 43,1,2017-05-07 +session,621,5,Internet Explorer 43,67,2018-07-06 +session,621,6,Firefox 1,100,2016-08-22 +session,621,7,Firefox 26,117,2018-07-18 +user,622,Hien,Cory,24 +session,622,0,Chrome 6,56,2017-09-17 +session,622,1,Safari 23,111,2016-11-21 +session,622,2,Chrome 8,107,2017-05-10 +session,622,3,Chrome 8,38,2016-09-15 +session,622,4,Safari 33,79,2017-12-28 +session,622,5,Internet Explorer 20,53,2017-03-23 +session,622,6,Chrome 29,79,2018-04-23 +session,622,7,Chrome 46,75,2016-09-21 +session,622,8,Firefox 48,68,2016-05-25 +user,623,Karissa,Emilie,98 +session,623,0,Internet Explorer 2,67,2016-09-09 +session,623,1,Safari 32,7,2018-12-11 +session,623,2,Safari 34,93,2018-10-12 +user,624,Queen,Matha,12 +session,624,0,Firefox 24,13,2018-08-24 +session,624,1,Firefox 38,56,2018-05-24 +session,624,2,Internet Explorer 42,20,2016-10-13 +session,624,3,Firefox 26,100,2017-07-23 +session,624,4,Safari 29,18,2018-01-24 +session,624,5,Safari 11,79,2018-11-03 +session,624,6,Safari 12,43,2016-07-11 +session,624,7,Chrome 24,115,2017-06-21 +user,625,Loren,Rikki,10 +session,625,0,Safari 48,87,2016-08-31 +session,625,1,Safari 9,96,2018-03-01 +session,625,2,Internet Explorer 6,103,2016-06-07 +session,625,3,Safari 38,67,2016-08-23 +session,625,4,Chrome 36,71,2017-06-17 +session,625,5,Internet Explorer 28,101,2016-09-28 +session,625,6,Internet Explorer 7,85,2017-08-23 +session,625,7,Firefox 15,10,2016-08-29 +session,625,8,Chrome 30,36,2016-05-24 +user,626,Carman,Jessie,12 +session,626,0,Safari 1,27,2016-11-15 +user,627,Kyong,Gertie,28 +session,627,0,Firefox 50,13,2018-09-15 +session,627,1,Chrome 13,42,2016-06-30 +session,627,2,Firefox 46,104,2016-12-10 +session,627,3,Firefox 2,29,2016-07-04 +session,627,4,Internet Explorer 35,80,2017-02-20 +session,627,5,Safari 22,2,2016-11-17 +session,627,6,Internet Explorer 9,19,2017-09-04 +user,628,Clarine,Adrian,64 +session,628,0,Firefox 17,55,2017-03-13 +session,628,1,Safari 46,59,2016-07-14 +session,628,2,Safari 40,71,2016-10-07 +session,628,3,Firefox 32,79,2018-06-21 +session,628,4,Chrome 37,41,2017-05-16 +session,628,5,Firefox 4,59,2018-02-09 +session,628,6,Internet Explorer 38,37,2017-07-22 +user,629,Diane,Lakeisha,5 +session,629,0,Internet Explorer 16,108,2017-08-15 +session,629,1,Chrome 22,86,2018-12-04 +session,629,2,Firefox 18,68,2017-02-10 +session,629,3,Safari 23,39,2017-11-09 +user,630,Olene,Leann,77 +session,630,0,Internet Explorer 30,54,2017-07-06 +session,630,1,Internet Explorer 47,74,2017-01-24 +user,631,Kim,Humberto,5 +session,631,0,Firefox 6,47,2018-07-25 +session,631,1,Safari 30,46,2018-07-07 +session,631,2,Firefox 8,93,2016-12-06 +session,631,3,Firefox 49,65,2018-07-23 +session,631,4,Chrome 31,37,2018-10-14 +session,631,5,Firefox 46,110,2018-04-21 +session,631,6,Firefox 37,8,2017-03-19 +session,631,7,Safari 18,109,2016-08-27 +user,632,Refugio,Alexis,81 +session,632,0,Chrome 30,108,2017-08-29 +session,632,1,Safari 37,48,2019-02-05 +session,632,2,Chrome 27,61,2016-10-23 +session,632,3,Internet Explorer 48,33,2018-03-07 +user,633,Leopoldo,Shavon,5 +session,633,0,Internet Explorer 30,56,2017-04-17 +session,633,1,Safari 20,90,2017-03-29 +session,633,2,Safari 32,80,2017-02-08 +session,633,3,Firefox 12,119,2017-11-12 +session,633,4,Chrome 13,15,2016-08-30 +session,633,5,Chrome 20,16,2019-01-03 +session,633,6,Internet Explorer 48,96,2017-10-17 +session,633,7,Safari 9,70,2017-05-27 +session,633,8,Chrome 11,24,2017-07-20 +session,633,9,Safari 11,25,2017-01-23 +user,634,Dominique,Victorina,64 +session,634,0,Safari 27,72,2017-07-23 +session,634,1,Chrome 3,116,2018-04-22 +user,635,Frank,Kelsey,96 +session,635,0,Firefox 48,106,2017-06-11 +session,635,1,Chrome 2,48,2017-10-21 +session,635,2,Chrome 25,114,2017-09-15 +session,635,3,Safari 7,110,2018-05-02 +session,635,4,Chrome 31,18,2018-07-14 +session,635,5,Firefox 42,56,2018-06-16 +session,635,6,Internet Explorer 24,17,2016-11-26 +session,635,7,Chrome 18,78,2018-03-15 +session,635,8,Internet Explorer 29,33,2016-12-24 +user,636,Fredrick,Gus,40 +session,636,0,Firefox 43,43,2017-09-25 +session,636,1,Safari 25,6,2017-10-14 +session,636,2,Safari 33,62,2018-04-01 +session,636,3,Safari 18,19,2016-09-14 +session,636,4,Chrome 1,60,2018-12-13 +session,636,5,Chrome 42,88,2017-08-25 +session,636,6,Safari 9,55,2017-10-27 +session,636,7,Chrome 49,32,2018-06-15 +session,636,8,Safari 45,113,2018-10-29 +session,636,9,Internet Explorer 14,24,2018-08-28 +user,637,Jody,Patrick,5 +session,637,0,Safari 12,75,2017-07-12 +user,638,Georgene,Na,30 +session,638,0,Internet Explorer 33,80,2018-05-06 +session,638,1,Safari 47,91,2018-07-08 +user,639,Jackelyn,Tawny,49 +session,639,0,Firefox 33,109,2016-08-10 +session,639,1,Chrome 12,8,2017-10-25 +session,639,2,Firefox 33,114,2017-01-13 +session,639,3,Firefox 38,73,2018-08-18 +user,640,Nisha,Robena,84 +session,640,0,Safari 11,70,2018-11-08 +session,640,1,Internet Explorer 16,98,2016-09-30 +session,640,2,Firefox 31,109,2017-10-04 +session,640,3,Safari 6,41,2016-07-22 +session,640,4,Internet Explorer 50,62,2016-09-03 +session,640,5,Internet Explorer 29,3,2017-12-21 +session,640,6,Chrome 40,73,2018-03-30 +session,640,7,Safari 15,48,2017-01-13 +session,640,8,Safari 33,103,2016-12-31 +session,640,9,Internet Explorer 32,57,2018-06-25 +user,641,Carrol,Gerald,27 +session,641,0,Chrome 36,16,2017-01-13 +session,641,1,Chrome 37,91,2018-11-06 +user,642,Jeffry,Sabrina,63 +session,642,0,Safari 26,66,2018-10-31 +session,642,1,Firefox 41,64,2017-04-04 +session,642,2,Safari 45,15,2016-10-09 +user,643,Fern,Julian,56 +session,643,0,Firefox 28,46,2017-01-12 +session,643,1,Safari 21,49,2016-07-24 +session,643,2,Internet Explorer 24,39,2018-12-18 +session,643,3,Firefox 7,97,2018-03-03 +session,643,4,Chrome 27,44,2018-08-03 +session,643,5,Internet Explorer 24,86,2016-11-23 +session,643,6,Chrome 22,62,2016-07-15 +session,643,7,Chrome 48,56,2018-06-21 +user,644,Lola,Nelly,94 +session,644,0,Chrome 33,111,2017-02-07 +session,644,1,Chrome 37,83,2016-08-10 +session,644,2,Firefox 35,50,2018-12-10 +session,644,3,Chrome 7,22,2018-01-24 +session,644,4,Safari 31,68,2017-03-28 +session,644,5,Chrome 46,11,2016-11-05 +session,644,6,Firefox 48,114,2016-12-10 +user,645,Lurlene,Amee,49 +session,645,0,Chrome 49,75,2017-05-03 +session,645,1,Internet Explorer 46,4,2019-01-10 +session,645,2,Internet Explorer 40,70,2017-06-20 +user,646,Cassy,Jim,40 +session,646,0,Firefox 14,60,2016-10-19 +session,646,1,Firefox 8,119,2018-12-06 +session,646,2,Chrome 34,118,2019-01-21 +session,646,3,Safari 36,18,2017-07-07 +session,646,4,Internet Explorer 16,107,2016-08-23 +session,646,5,Safari 19,25,2018-05-03 +user,647,Bethel,Hassie,23 +session,647,0,Firefox 32,108,2017-11-12 +session,647,1,Safari 41,114,2016-05-31 +session,647,2,Chrome 12,61,2019-01-14 +session,647,3,Firefox 38,109,2017-11-22 +session,647,4,Internet Explorer 13,95,2016-10-17 +session,647,5,Firefox 16,18,2017-02-07 +session,647,6,Firefox 27,104,2018-07-18 +session,647,7,Safari 32,114,2017-01-14 +user,648,Roxane,Crystal,66 +session,648,0,Firefox 43,98,2018-06-24 +user,649,Kristie,Jerilyn,51 +session,649,0,Internet Explorer 37,88,2017-07-24 +session,649,1,Chrome 49,44,2016-11-01 +session,649,2,Firefox 39,32,2017-12-11 +session,649,3,Internet Explorer 27,18,2016-06-11 +session,649,4,Internet Explorer 35,57,2017-01-19 +session,649,5,Firefox 20,68,2018-03-24 +user,650,Micheal,Pearly,58 +session,650,0,Chrome 15,16,2016-09-03 +session,650,1,Safari 30,4,2016-07-29 +session,650,2,Internet Explorer 20,102,2016-08-07 +session,650,3,Firefox 36,3,2017-04-19 +session,650,4,Internet Explorer 26,69,2018-12-15 +session,650,5,Safari 18,113,2017-09-27 +user,651,Gracie,Hollis,29 +session,651,0,Internet Explorer 35,76,2017-01-06 +session,651,1,Firefox 43,11,2017-03-13 +user,652,Broderick,Shaneka,9 +session,652,0,Chrome 9,56,2018-11-30 +session,652,1,Internet Explorer 44,52,2018-06-10 +session,652,2,Chrome 46,25,2017-12-04 +session,652,3,Internet Explorer 22,109,2017-04-29 +session,652,4,Firefox 50,14,2017-10-21 +session,652,5,Firefox 36,90,2017-10-01 +session,652,6,Firefox 9,112,2018-01-20 +session,652,7,Safari 7,101,2017-08-27 +user,653,Floyd,Virgina,4 +session,653,0,Firefox 26,81,2018-02-28 +session,653,1,Internet Explorer 5,30,2018-08-26 +session,653,2,Firefox 19,72,2016-06-10 +session,653,3,Safari 10,89,2018-07-22 +session,653,4,Firefox 23,57,2018-10-21 +session,653,5,Safari 2,10,2016-11-15 +user,654,Carline,Shirley,24 +session,654,0,Safari 28,33,2018-09-19 +session,654,1,Safari 30,36,2017-01-17 +session,654,2,Safari 8,90,2016-10-09 +session,654,3,Chrome 45,27,2017-11-22 +session,654,4,Safari 6,111,2018-04-02 +user,655,William,Joella,50 +session,655,0,Internet Explorer 45,97,2019-01-17 +user,656,Jules,Vada,65 +session,656,0,Internet Explorer 26,20,2018-08-11 +session,656,1,Safari 10,113,2017-04-27 +session,656,2,Safari 35,42,2019-01-31 +session,656,3,Chrome 15,26,2016-07-29 +session,656,4,Firefox 20,23,2017-02-08 +session,656,5,Internet Explorer 34,16,2018-09-26 +session,656,6,Chrome 16,4,2017-07-13 +user,657,Tamesha,Jill,16 +session,657,0,Internet Explorer 3,76,2018-01-13 +session,657,1,Chrome 32,56,2017-12-09 +session,657,2,Firefox 42,66,2016-12-03 +session,657,3,Safari 13,48,2017-02-05 +session,657,4,Internet Explorer 42,107,2018-03-15 +session,657,5,Firefox 27,27,2017-06-04 +user,658,Amos,Arianna,27 +session,658,0,Internet Explorer 32,84,2017-06-13 +session,658,1,Chrome 19,72,2018-06-16 +session,658,2,Firefox 30,33,2017-03-24 +session,658,3,Internet Explorer 38,44,2016-11-15 +session,658,4,Chrome 20,42,2017-10-11 +user,659,Neil,Katina,10 +session,659,0,Chrome 31,78,2018-05-28 +session,659,1,Chrome 38,3,2018-03-13 +session,659,2,Internet Explorer 23,116,2016-09-01 +session,659,3,Internet Explorer 48,18,2017-07-29 +session,659,4,Chrome 23,105,2017-07-30 +session,659,5,Internet Explorer 4,31,2017-06-19 +session,659,6,Internet Explorer 40,52,2019-01-19 +user,660,Wilford,Keri,8 +session,660,0,Firefox 21,107,2016-11-10 +session,660,1,Internet Explorer 18,43,2017-11-28 +session,660,2,Chrome 9,39,2017-05-04 +session,660,3,Firefox 6,68,2018-02-15 +session,660,4,Safari 22,75,2018-02-02 +session,660,5,Chrome 6,96,2016-12-06 +session,660,6,Chrome 7,113,2017-10-23 +session,660,7,Firefox 13,108,2016-06-21 +session,660,8,Safari 43,88,2017-06-09 +session,660,9,Safari 24,55,2016-09-06 +user,661,Aide,Elli,44 +session,661,0,Internet Explorer 3,20,2017-11-04 +session,661,1,Safari 28,88,2016-10-01 +session,661,2,Safari 47,79,2017-04-21 +session,661,3,Firefox 25,26,2017-12-14 +session,661,4,Safari 19,65,2017-08-19 +session,661,5,Firefox 6,82,2017-11-28 +session,661,6,Safari 27,108,2018-09-02 +user,662,Roy,Justina,37 +session,662,0,Safari 48,100,2017-09-18 +session,662,1,Internet Explorer 47,94,2018-08-21 +session,662,2,Internet Explorer 44,93,2017-04-15 +session,662,3,Chrome 47,83,2016-12-06 +session,662,4,Safari 30,115,2017-02-04 +session,662,5,Firefox 23,62,2016-12-13 +session,662,6,Firefox 38,94,2017-03-30 +session,662,7,Internet Explorer 19,37,2017-07-02 +session,662,8,Safari 45,106,2018-05-13 +user,663,Lourie,Maxine,18 +session,663,0,Safari 3,115,2017-01-05 +session,663,1,Firefox 36,6,2016-11-17 +user,664,Brook,Jeanene,34 +session,664,0,Internet Explorer 25,21,2017-05-27 +session,664,1,Chrome 44,24,2016-07-19 +session,664,2,Chrome 27,11,2018-04-15 +session,664,3,Firefox 2,100,2017-06-10 +session,664,4,Internet Explorer 31,31,2017-04-03 +session,664,5,Firefox 47,117,2018-10-20 +session,664,6,Chrome 43,36,2018-02-06 +user,665,Eddie,Marion,98 +session,665,0,Safari 38,79,2017-02-03 +session,665,1,Chrome 40,50,2017-08-27 +session,665,2,Safari 21,62,2016-07-31 +session,665,3,Firefox 46,69,2018-05-22 +session,665,4,Chrome 47,114,2016-05-21 +session,665,5,Firefox 49,42,2016-09-23 +session,665,6,Internet Explorer 8,50,2016-12-20 +session,665,7,Internet Explorer 14,74,2018-02-07 +session,665,8,Chrome 37,52,2018-09-20 +user,666,Amie,Pierre,43 +session,666,0,Chrome 29,25,2016-07-11 +session,666,1,Safari 49,114,2016-06-28 +session,666,2,Firefox 24,76,2016-12-27 +session,666,3,Chrome 32,4,2016-08-12 +session,666,4,Internet Explorer 28,119,2018-08-13 +session,666,5,Safari 24,98,2017-09-04 +session,666,6,Internet Explorer 10,71,2016-10-18 +session,666,7,Safari 48,61,2018-03-10 +user,667,Tobias,Mel,7 +session,667,0,Firefox 22,71,2016-12-18 +session,667,1,Internet Explorer 27,84,2018-04-12 +session,667,2,Firefox 41,97,2018-05-27 +session,667,3,Safari 3,82,2017-01-01 +session,667,4,Firefox 37,98,2016-12-23 +session,667,5,Firefox 7,28,2016-07-16 +session,667,6,Safari 33,34,2017-03-06 +session,667,7,Firefox 35,32,2018-08-19 +session,667,8,Safari 13,35,2017-06-18 +session,667,9,Internet Explorer 43,56,2017-07-25 +user,668,Claude,Domenic,91 +session,668,0,Internet Explorer 49,88,2017-03-01 +session,668,1,Firefox 1,32,2018-02-25 +session,668,2,Safari 24,47,2018-09-08 +session,668,3,Safari 14,81,2018-04-02 +session,668,4,Internet Explorer 40,111,2016-05-21 +session,668,5,Safari 29,31,2017-05-03 +session,668,6,Safari 25,36,2018-07-05 +user,669,Eusebio,Mertie,1 +session,669,0,Internet Explorer 31,113,2017-06-24 +session,669,1,Safari 25,109,2018-07-05 +session,669,2,Internet Explorer 21,52,2019-01-20 +session,669,3,Firefox 46,84,2017-02-28 +session,669,4,Firefox 37,77,2018-02-12 +session,669,5,Internet Explorer 12,10,2017-02-23 +session,669,6,Chrome 18,62,2018-03-23 +session,669,7,Firefox 13,22,2017-08-13 +session,669,8,Firefox 30,13,2018-05-04 +session,669,9,Safari 20,22,2017-07-04 +user,670,Barrett,Velda,64 +session,670,0,Chrome 30,113,2017-03-01 +session,670,1,Chrome 36,86,2018-12-25 +session,670,2,Internet Explorer 5,30,2018-05-20 +session,670,3,Internet Explorer 41,90,2016-05-31 +user,671,Freddy,Roger,38 +session,671,0,Chrome 30,42,2017-06-17 +session,671,1,Chrome 17,28,2019-01-02 +user,672,Benjamin,Louise,13 +session,672,0,Chrome 36,117,2017-08-14 +user,673,Jenice,Eugenie,64 +session,673,0,Chrome 30,107,2016-09-02 +session,673,1,Safari 16,50,2017-12-25 +user,674,Angelo,Angelica,99 +session,674,0,Firefox 26,49,2017-05-10 +session,674,1,Chrome 6,45,2017-11-20 +session,674,2,Chrome 50,90,2016-08-07 +session,674,3,Internet Explorer 20,49,2017-11-07 +session,674,4,Chrome 49,28,2016-05-30 +session,674,5,Chrome 31,18,2017-03-22 +session,674,6,Internet Explorer 35,78,2017-02-03 +session,674,7,Safari 28,94,2018-09-20 +user,675,Lemuel,Laila,13 +session,675,0,Firefox 44,40,2017-11-28 +session,675,1,Chrome 42,12,2016-06-04 +session,675,2,Safari 22,27,2018-02-14 +session,675,3,Firefox 13,88,2016-09-09 +user,676,Tiny,Kathrine,63 +session,676,0,Safari 45,27,2018-01-25 +session,676,1,Chrome 2,79,2016-08-03 +session,676,2,Safari 3,87,2016-12-24 +session,676,3,Internet Explorer 44,27,2017-02-01 +session,676,4,Chrome 19,18,2017-01-02 +session,676,5,Firefox 5,105,2017-04-14 +user,677,Vernia,Lacey,21 +session,677,0,Chrome 38,44,2017-01-29 +user,678,Wilfred,Gracia,48 +session,678,0,Firefox 50,87,2016-10-05 +user,679,Tabetha,Carletta,36 +session,679,0,Safari 8,70,2016-07-24 +session,679,1,Internet Explorer 1,113,2018-09-08 +session,679,2,Chrome 18,61,2018-08-07 +session,679,3,Chrome 18,64,2017-09-16 +user,680,Madelyn,Trang,18 +session,680,0,Internet Explorer 45,72,2019-02-02 +session,680,1,Firefox 40,51,2016-09-05 +session,680,2,Firefox 42,71,2018-12-13 +session,680,3,Chrome 37,110,2017-01-01 +session,680,4,Internet Explorer 18,93,2016-08-08 +session,680,5,Chrome 13,41,2017-12-28 +session,680,6,Firefox 48,58,2017-03-10 +session,680,7,Safari 22,47,2016-11-13 +session,680,8,Chrome 34,72,2017-03-01 +session,680,9,Firefox 48,90,2018-02-01 +user,681,Porfirio,Zola,14 +session,681,0,Chrome 8,19,2018-02-23 +session,681,1,Chrome 32,86,2018-03-01 +user,682,Willis,Wendell,81 +session,682,0,Firefox 49,32,2018-08-14 +user,683,Dylan,Collin,5 +session,683,0,Internet Explorer 19,25,2016-05-31 +session,683,1,Safari 40,60,2018-01-26 +session,683,2,Safari 25,89,2018-09-07 +session,683,3,Chrome 49,58,2017-03-31 +user,684,Miki,Leopoldo,67 +session,684,0,Internet Explorer 38,41,2017-10-22 +user,685,Leonardo,Shawnee,14 +session,685,0,Safari 31,70,2018-07-24 +session,685,1,Safari 14,80,2018-09-11 +session,685,2,Chrome 7,105,2016-06-03 +session,685,3,Chrome 14,62,2019-01-05 +session,685,4,Chrome 4,84,2016-07-03 +session,685,5,Firefox 36,74,2017-09-18 +session,685,6,Chrome 33,21,2018-09-14 +user,686,Wesley,Marilee,72 +session,686,0,Chrome 47,11,2018-04-18 +session,686,1,Firefox 37,54,2018-03-29 +session,686,2,Chrome 47,70,2016-09-17 +session,686,3,Safari 37,95,2017-01-29 +session,686,4,Safari 24,55,2017-05-17 +session,686,5,Chrome 32,6,2016-07-21 +session,686,6,Chrome 10,73,2017-07-08 +user,687,Patience,Bao,11 +session,687,0,Internet Explorer 3,34,2018-12-28 +session,687,1,Internet Explorer 5,110,2018-04-03 +session,687,2,Safari 23,106,2017-05-18 +session,687,3,Chrome 14,15,2017-03-23 +session,687,4,Internet Explorer 32,90,2018-10-14 +session,687,5,Internet Explorer 38,93,2018-03-04 +user,688,Herbert,Lennie,69 +session,688,0,Firefox 37,112,2016-11-06 +session,688,1,Internet Explorer 32,10,2018-07-03 +session,688,2,Safari 43,111,2018-10-11 +session,688,3,Chrome 36,107,2018-03-30 +session,688,4,Chrome 25,103,2017-04-06 +session,688,5,Internet Explorer 2,59,2017-09-19 +session,688,6,Safari 45,34,2018-02-17 +session,688,7,Internet Explorer 15,64,2016-09-25 +session,688,8,Chrome 45,31,2016-05-30 +session,688,9,Internet Explorer 30,57,2017-02-19 +user,689,Rodolfo,Dionne,58 +session,689,0,Internet Explorer 3,41,2017-11-09 +session,689,1,Safari 48,30,2018-03-28 +session,689,2,Internet Explorer 39,91,2016-06-05 +session,689,3,Firefox 25,56,2019-01-26 +session,689,4,Safari 30,3,2016-09-21 +session,689,5,Chrome 16,41,2018-11-16 +session,689,6,Chrome 48,23,2018-05-05 +session,689,7,Chrome 28,78,2017-08-13 +session,689,8,Safari 41,66,2017-07-10 +user,690,Fallon,Tarra,65 +session,690,0,Safari 21,25,2017-08-15 +session,690,1,Internet Explorer 30,77,2017-12-01 +session,690,2,Safari 20,57,2017-02-25 +user,691,Randolph,Gisele,81 +session,691,0,Internet Explorer 37,70,2018-02-18 +session,691,1,Firefox 47,87,2018-05-14 +session,691,2,Safari 10,9,2017-09-19 +session,691,3,Safari 26,116,2017-10-23 +user,692,Andra,Narcisa,8 +session,692,0,Firefox 49,29,2018-12-29 +session,692,1,Safari 32,8,2017-11-19 +session,692,2,Internet Explorer 3,5,2018-08-23 +session,692,3,Firefox 18,87,2018-06-16 +session,692,4,Safari 48,86,2018-07-14 +session,692,5,Internet Explorer 19,119,2017-12-10 +session,692,6,Safari 14,111,2018-08-29 +session,692,7,Safari 47,94,2018-10-29 +session,692,8,Safari 6,71,2018-08-07 +session,692,9,Safari 46,69,2018-05-13 +user,693,Angelena,Hollis,80 +session,693,0,Firefox 31,97,2018-08-15 +session,693,1,Firefox 3,100,2017-12-13 +session,693,2,Chrome 26,87,2017-07-26 +session,693,3,Firefox 23,27,2016-08-12 +session,693,4,Firefox 17,21,2018-10-05 +session,693,5,Safari 16,79,2018-06-04 +session,693,6,Safari 26,82,2018-08-01 +session,693,7,Internet Explorer 35,0,2018-02-28 +user,694,Alvaro,Herb,20 +session,694,0,Firefox 7,68,2018-05-02 +session,694,1,Firefox 45,86,2017-02-06 +session,694,2,Firefox 44,99,2018-10-19 +session,694,3,Safari 37,8,2016-06-02 +session,694,4,Chrome 42,8,2018-03-13 +session,694,5,Chrome 4,62,2018-04-06 +session,694,6,Internet Explorer 29,40,2016-07-25 +session,694,7,Firefox 27,87,2018-03-11 +user,695,Teri,Deangelo,36 +session,695,0,Safari 45,90,2017-02-11 +session,695,1,Safari 9,86,2017-08-25 +session,695,2,Internet Explorer 4,36,2016-08-02 +session,695,3,Internet Explorer 46,16,2017-10-01 +session,695,4,Safari 39,15,2016-08-10 +user,696,Sara,Aubrey,71 +session,696,0,Firefox 12,16,2017-02-11 +session,696,1,Firefox 37,12,2018-05-31 +session,696,2,Internet Explorer 32,86,2017-08-21 +session,696,3,Firefox 41,14,2016-11-22 +session,696,4,Chrome 2,53,2016-08-30 +session,696,5,Internet Explorer 33,111,2018-09-28 +session,696,6,Internet Explorer 44,20,2016-06-23 +user,697,Dino,Isreal,89 +session,697,0,Internet Explorer 26,101,2018-07-18 +session,697,1,Internet Explorer 21,19,2018-12-30 +session,697,2,Chrome 3,29,2017-08-28 +session,697,3,Firefox 39,66,2016-08-20 +session,697,4,Chrome 25,62,2017-07-28 +session,697,5,Chrome 42,106,2016-10-02 +session,697,6,Chrome 16,46,2017-10-02 +session,697,7,Safari 5,89,2016-11-10 +session,697,8,Chrome 6,66,2018-05-08 +session,697,9,Internet Explorer 45,113,2017-08-05 +user,698,Rubie,Nanci,50 +session,698,0,Firefox 47,90,2016-06-18 +session,698,1,Firefox 18,2,2018-05-27 +session,698,2,Safari 18,21,2017-02-02 +session,698,3,Chrome 36,32,2017-12-06 +session,698,4,Firefox 42,26,2016-11-24 +session,698,5,Firefox 11,23,2018-11-14 +session,698,6,Internet Explorer 28,19,2018-10-14 +session,698,7,Safari 19,26,2018-12-29 +user,699,Kieth,Megan,90 +session,699,0,Chrome 26,53,2018-03-17 +session,699,1,Firefox 11,92,2016-06-13 +session,699,2,Chrome 17,36,2018-03-07 +session,699,3,Internet Explorer 45,85,2016-08-10 +session,699,4,Chrome 39,16,2017-09-22 +session,699,5,Safari 18,87,2018-11-26 +session,699,6,Safari 1,46,2016-07-20 +user,700,Audie,Oscar,34 +session,700,0,Safari 42,39,2017-10-02 +session,700,1,Chrome 40,23,2018-10-08 +session,700,2,Firefox 36,68,2016-11-10 +session,700,3,Safari 37,42,2019-01-06 +session,700,4,Safari 46,114,2018-09-28 +session,700,5,Safari 9,27,2018-09-27 +session,700,6,Chrome 29,15,2016-06-12 +session,700,7,Chrome 7,57,2017-03-02 +user,701,Jamar,Yuko,99 +session,701,0,Firefox 6,99,2016-08-26 +session,701,1,Chrome 49,79,2017-12-24 +user,702,Tania,Joesph,97 +session,702,0,Safari 16,29,2018-01-29 +session,702,1,Safari 26,92,2018-01-14 +session,702,2,Firefox 25,110,2018-08-11 +session,702,3,Firefox 30,93,2017-12-14 +session,702,4,Safari 35,5,2018-09-03 +session,702,5,Chrome 37,77,2016-09-19 +session,702,6,Safari 14,72,2016-07-27 +session,702,7,Safari 49,21,2018-08-31 +session,702,8,Internet Explorer 20,93,2018-07-06 +user,703,Bridget,Brain,52 +session,703,0,Internet Explorer 49,25,2017-04-05 +session,703,1,Chrome 21,97,2018-04-13 +session,703,2,Firefox 14,78,2016-09-29 +session,703,3,Internet Explorer 1,92,2016-08-08 +session,703,4,Firefox 22,77,2018-12-16 +session,703,5,Safari 20,15,2018-02-23 +session,703,6,Chrome 39,28,2017-08-21 +session,703,7,Safari 30,83,2017-12-12 +user,704,Khalilah,Jenni,96 +session,704,0,Firefox 13,94,2017-05-07 +session,704,1,Safari 43,5,2017-05-30 +session,704,2,Safari 7,41,2017-08-22 +session,704,3,Firefox 25,56,2017-09-13 +session,704,4,Safari 17,95,2017-09-15 +session,704,5,Internet Explorer 7,116,2017-09-01 +session,704,6,Firefox 44,17,2016-10-01 +session,704,7,Internet Explorer 2,27,2016-11-19 +user,705,Armand,Galen,4 +session,705,0,Safari 3,101,2016-08-27 +session,705,1,Internet Explorer 37,70,2017-03-22 +user,706,Gracia,Ayana,54 +session,706,0,Firefox 18,90,2019-01-04 +session,706,1,Chrome 46,51,2019-02-11 +session,706,2,Firefox 33,114,2016-10-06 +session,706,3,Chrome 24,26,2018-11-06 +session,706,4,Firefox 28,35,2018-10-22 +session,706,5,Internet Explorer 36,83,2018-05-22 +session,706,6,Firefox 34,16,2017-02-06 +session,706,7,Chrome 48,8,2016-12-23 +session,706,8,Firefox 26,34,2017-11-17 +session,706,9,Internet Explorer 13,56,2017-09-18 +user,707,Sandie,Temeka,26 +session,707,0,Chrome 23,5,2018-05-31 +session,707,1,Internet Explorer 32,62,2016-06-15 +session,707,2,Chrome 12,74,2018-12-12 +session,707,3,Safari 15,6,2017-09-14 +session,707,4,Chrome 27,7,2018-12-28 +user,708,Merlin,Masako,80 +session,708,0,Safari 19,71,2018-06-02 +session,708,1,Safari 35,17,2018-04-11 +user,709,Marion,Floria,64 +session,709,0,Firefox 15,43,2018-10-22 +session,709,1,Safari 11,82,2016-06-04 +session,709,2,Firefox 39,47,2018-05-03 +session,709,3,Chrome 43,91,2018-04-04 +session,709,4,Chrome 49,103,2016-07-09 +session,709,5,Internet Explorer 36,114,2017-10-15 +session,709,6,Safari 44,95,2018-08-28 +session,709,7,Internet Explorer 31,46,2018-12-09 +session,709,8,Chrome 33,58,2019-01-24 +user,710,Louis,Georgianna,83 +session,710,0,Firefox 27,30,2016-09-26 +session,710,1,Internet Explorer 29,96,2017-02-12 +session,710,2,Safari 26,111,2016-10-04 +session,710,3,Safari 48,118,2017-11-21 +session,710,4,Safari 8,104,2018-07-28 +session,710,5,Safari 49,8,2016-09-14 +session,710,6,Safari 7,118,2018-10-04 +user,711,Florinda,Tashina,48 +session,711,0,Chrome 30,94,2017-04-27 +user,712,Song,Devon,41 +session,712,0,Internet Explorer 25,97,2018-08-23 +session,712,1,Internet Explorer 48,18,2018-07-25 +session,712,2,Internet Explorer 35,118,2016-11-12 +session,712,3,Firefox 43,74,2016-12-29 +session,712,4,Firefox 6,49,2018-11-03 +user,713,Era,Andera,62 +session,713,0,Firefox 18,93,2017-01-01 +session,713,1,Firefox 34,26,2018-03-19 +session,713,2,Safari 48,53,2016-10-28 +session,713,3,Safari 50,34,2017-03-02 +session,713,4,Chrome 34,90,2018-06-09 +user,714,Lucilla,Albertha,49 +session,714,0,Safari 29,72,2017-06-02 +session,714,1,Internet Explorer 32,47,2019-01-05 +session,714,2,Internet Explorer 9,61,2016-11-04 +session,714,3,Firefox 12,114,2016-09-17 +session,714,4,Chrome 50,17,2018-10-29 +session,714,5,Chrome 3,45,2017-07-30 +user,715,Magen,Ardith,41 +session,715,0,Internet Explorer 36,43,2018-02-08 +session,715,1,Chrome 31,71,2017-06-12 +session,715,2,Chrome 8,70,2018-01-15 +session,715,3,Internet Explorer 32,66,2017-10-12 +session,715,4,Safari 12,2,2018-07-13 +session,715,5,Safari 4,118,2017-09-26 +user,716,Kati,Brittney,8 +session,716,0,Safari 11,72,2016-10-31 +session,716,1,Chrome 24,44,2017-03-15 +session,716,2,Firefox 24,66,2016-11-27 +session,716,3,Chrome 23,74,2016-06-07 +session,716,4,Safari 34,85,2018-06-08 +session,716,5,Chrome 45,111,2017-01-04 +session,716,6,Chrome 9,87,2018-01-28 +session,716,7,Internet Explorer 44,61,2017-06-30 +user,717,Alysha,Avril,29 +session,717,0,Firefox 29,47,2016-10-15 +session,717,1,Firefox 21,9,2018-05-13 +session,717,2,Chrome 2,93,2018-08-04 +session,717,3,Chrome 36,24,2017-05-08 +session,717,4,Safari 42,49,2018-02-26 +session,717,5,Chrome 6,59,2017-05-24 +session,717,6,Firefox 4,20,2017-08-16 +session,717,7,Chrome 40,93,2017-12-17 +session,717,8,Internet Explorer 28,14,2017-09-10 +session,717,9,Safari 44,79,2018-04-29 +user,718,Felton,Reiko,99 +session,718,0,Firefox 20,31,2016-11-18 +session,718,1,Safari 5,77,2017-02-15 +session,718,2,Internet Explorer 25,100,2018-12-12 +session,718,3,Firefox 38,6,2017-04-14 +user,719,Maxie,Carlee,58 +session,719,0,Firefox 32,63,2017-11-15 +session,719,1,Chrome 48,28,2017-07-25 +session,719,2,Internet Explorer 35,86,2018-10-17 +session,719,3,Safari 31,90,2016-09-17 +session,719,4,Safari 2,35,2018-03-17 +session,719,5,Safari 34,51,2017-05-25 +user,720,Angelika,Sunni,56 +session,720,0,Chrome 9,87,2018-10-08 +user,721,Fe,Alene,45 +session,721,0,Safari 40,38,2016-10-20 +session,721,1,Internet Explorer 31,111,2017-04-18 +session,721,2,Safari 20,45,2018-09-24 +session,721,3,Internet Explorer 45,109,2016-06-05 +session,721,4,Firefox 29,37,2017-02-12 +user,722,Markita,Debra,60 +session,722,0,Chrome 7,33,2018-07-02 +user,723,Miles,Lajuana,8 +session,723,0,Internet Explorer 39,3,2018-12-14 +session,723,1,Internet Explorer 35,7,2017-09-26 +session,723,2,Internet Explorer 31,15,2017-05-16 +session,723,3,Chrome 44,31,2018-06-09 +session,723,4,Firefox 26,86,2017-07-08 +session,723,5,Firefox 5,74,2018-10-14 +session,723,6,Internet Explorer 40,16,2018-04-26 +session,723,7,Firefox 2,13,2018-08-29 +session,723,8,Firefox 26,0,2018-01-10 +user,724,Edward,Jeannie,10 +session,724,0,Firefox 23,58,2016-08-24 +session,724,1,Firefox 2,62,2018-08-07 +session,724,2,Safari 40,115,2017-10-27 +session,724,3,Chrome 4,98,2018-11-09 +user,725,Machelle,Melissa,5 +session,725,0,Internet Explorer 25,18,2018-01-15 +session,725,1,Firefox 1,114,2018-05-31 +session,725,2,Firefox 17,57,2017-07-22 +user,726,Jaime,Lavenia,92 +session,726,0,Internet Explorer 44,52,2017-09-08 +session,726,1,Firefox 5,93,2017-11-27 +session,726,2,Chrome 19,44,2019-02-06 +session,726,3,Chrome 4,22,2017-05-28 +session,726,4,Firefox 37,13,2017-09-13 +user,727,Tova,Robin,51 +session,727,0,Safari 6,44,2017-10-05 +session,727,1,Chrome 50,0,2017-03-09 +session,727,2,Chrome 23,21,2018-06-16 +session,727,3,Firefox 9,35,2018-10-02 +session,727,4,Firefox 34,11,2016-07-08 +user,728,Michael,Callie,9 +session,728,0,Safari 42,22,2016-06-10 +session,728,1,Firefox 44,70,2017-10-20 +session,728,2,Firefox 31,47,2017-02-06 +session,728,3,Safari 47,111,2017-01-09 +session,728,4,Chrome 25,58,2016-08-27 +session,728,5,Internet Explorer 19,43,2017-10-11 +user,729,Dacia,Tana,84 +session,729,0,Chrome 34,100,2016-07-18 +session,729,1,Chrome 36,66,2017-09-08 +session,729,2,Safari 23,13,2018-08-30 +session,729,3,Chrome 43,79,2016-06-22 +session,729,4,Safari 36,99,2016-10-13 +session,729,5,Firefox 38,71,2018-02-26 +session,729,6,Internet Explorer 14,5,2016-07-20 +session,729,7,Firefox 14,50,2019-02-04 +user,730,Danial,Modesta,39 +session,730,0,Safari 22,105,2016-06-24 +session,730,1,Safari 11,13,2016-07-28 +session,730,2,Safari 48,57,2018-01-16 +session,730,3,Safari 49,118,2018-04-12 +session,730,4,Safari 49,75,2018-06-06 +session,730,5,Firefox 20,56,2019-01-17 +user,731,Britt,Sharyl,83 +session,731,0,Chrome 22,13,2016-09-26 +session,731,1,Internet Explorer 13,118,2017-10-14 +session,731,2,Firefox 15,102,2017-05-24 +user,732,Felica,Alayna,62 +session,732,0,Chrome 23,42,2016-05-26 +session,732,1,Firefox 36,39,2017-04-13 +session,732,2,Safari 46,24,2017-03-02 +session,732,3,Firefox 50,42,2018-09-04 +user,733,Marylynn,Tiana,44 +session,733,0,Firefox 19,96,2016-07-13 +session,733,1,Firefox 41,40,2018-01-16 +session,733,2,Internet Explorer 48,113,2016-09-09 +session,733,3,Internet Explorer 34,119,2016-09-09 +session,733,4,Chrome 43,70,2017-02-20 +session,733,5,Chrome 44,97,2017-05-14 +user,734,Shea,Franklyn,60 +session,734,0,Firefox 34,41,2018-05-09 +session,734,1,Internet Explorer 46,73,2017-07-30 +session,734,2,Firefox 38,36,2017-02-04 +session,734,3,Internet Explorer 49,69,2017-07-31 +session,734,4,Safari 25,55,2016-08-10 +session,734,5,Safari 29,27,2017-06-29 +session,734,6,Firefox 8,89,2016-10-03 +session,734,7,Safari 37,35,2019-02-04 +user,735,Lacie,Christopher,28 +session,735,0,Chrome 22,85,2018-04-30 +session,735,1,Firefox 43,5,2019-01-12 +session,735,2,Chrome 49,117,2017-12-27 +session,735,3,Chrome 47,68,2019-01-18 +session,735,4,Firefox 21,34,2017-07-20 +session,735,5,Safari 33,32,2017-08-18 +session,735,6,Safari 19,60,2017-05-08 +session,735,7,Internet Explorer 29,18,2018-08-24 +session,735,8,Chrome 43,81,2018-05-01 +session,735,9,Chrome 5,45,2019-02-05 +user,736,Yoshie,Sharron,23 +session,736,0,Firefox 24,17,2017-09-21 +session,736,1,Internet Explorer 49,65,2018-01-20 +session,736,2,Firefox 42,36,2019-01-25 +session,736,3,Firefox 13,56,2017-01-05 +session,736,4,Internet Explorer 3,72,2017-07-07 +user,737,Jerome,Kerry,1 +session,737,0,Chrome 37,21,2017-01-29 +session,737,1,Safari 45,42,2018-12-31 +session,737,2,Internet Explorer 7,39,2016-07-17 +session,737,3,Internet Explorer 24,104,2017-01-12 +session,737,4,Safari 11,16,2018-02-18 +session,737,5,Chrome 22,17,2018-10-06 +user,738,Stanford,Kathlene,58 +session,738,0,Safari 12,73,2016-12-30 +session,738,1,Chrome 21,38,2019-01-14 +session,738,2,Firefox 14,8,2018-08-28 +session,738,3,Firefox 45,74,2016-07-02 +session,738,4,Safari 27,69,2017-09-22 +session,738,5,Firefox 31,89,2016-08-18 +session,738,6,Chrome 49,40,2017-10-23 +user,739,Latisha,Asley,46 +session,739,0,Safari 49,28,2016-06-13 +session,739,1,Chrome 21,48,2017-11-22 +session,739,2,Firefox 37,46,2018-10-26 +user,740,Stevie,Amberly,30 +session,740,0,Chrome 5,108,2016-12-10 +session,740,1,Chrome 49,93,2018-02-23 +session,740,2,Chrome 14,12,2018-08-31 +session,740,3,Safari 39,25,2018-02-14 +session,740,4,Chrome 30,51,2017-03-22 +session,740,5,Internet Explorer 5,42,2018-02-27 +user,741,Roger,Diedre,56 +session,741,0,Firefox 12,51,2017-04-09 +session,741,1,Firefox 37,44,2017-04-29 +user,742,Marlon,Arletha,81 +session,742,0,Firefox 22,30,2017-08-16 +user,743,Rigoberto,Merlin,17 +session,743,0,Firefox 36,84,2017-07-06 +session,743,1,Firefox 29,55,2017-06-12 +session,743,2,Safari 4,102,2018-10-24 +session,743,3,Chrome 1,57,2018-01-23 +session,743,4,Chrome 42,55,2016-09-01 +session,743,5,Chrome 5,30,2016-10-11 +session,743,6,Safari 33,99,2016-07-06 +session,743,7,Internet Explorer 35,20,2018-07-18 +session,743,8,Firefox 49,73,2018-11-20 +session,743,9,Safari 20,81,2018-08-27 +user,744,Darron,Ray,88 +session,744,0,Internet Explorer 20,100,2017-02-10 +session,744,1,Safari 27,82,2018-01-02 +session,744,2,Chrome 40,28,2017-03-15 +session,744,3,Firefox 6,33,2017-09-28 +session,744,4,Firefox 32,81,2019-01-30 +session,744,5,Firefox 39,16,2016-08-19 +user,745,William,Serena,73 +session,745,0,Chrome 44,95,2017-12-21 +session,745,1,Internet Explorer 11,116,2018-10-16 +session,745,2,Firefox 22,30,2018-03-16 +session,745,3,Internet Explorer 22,33,2018-02-21 +session,745,4,Chrome 31,17,2016-06-24 +session,745,5,Safari 45,91,2017-06-24 +session,745,6,Internet Explorer 24,9,2018-04-19 +session,745,7,Firefox 18,49,2017-05-23 +session,745,8,Chrome 18,80,2018-07-29 +user,746,Lessie,Luz,3 +session,746,0,Internet Explorer 1,37,2017-04-11 +session,746,1,Internet Explorer 38,41,2017-10-03 +session,746,2,Chrome 15,58,2016-10-01 +session,746,3,Chrome 38,51,2019-02-05 +session,746,4,Internet Explorer 3,80,2018-12-13 +session,746,5,Internet Explorer 46,117,2017-11-06 +session,746,6,Safari 9,43,2018-07-29 +session,746,7,Chrome 3,46,2017-11-04 +session,746,8,Safari 37,49,2018-02-05 +session,746,9,Chrome 24,64,2017-07-08 +user,747,Miriam,Jenice,46 +session,747,0,Chrome 31,97,2018-05-18 +session,747,1,Internet Explorer 20,35,2018-12-06 +session,747,2,Internet Explorer 39,89,2017-01-24 +session,747,3,Firefox 45,83,2018-07-31 +session,747,4,Chrome 48,105,2017-07-17 +session,747,5,Internet Explorer 8,114,2017-01-03 +session,747,6,Internet Explorer 13,88,2017-05-01 +session,747,7,Internet Explorer 5,12,2017-04-01 +session,747,8,Safari 39,69,2016-12-01 +user,748,Florida,Mina,54 +session,748,0,Firefox 15,31,2017-06-26 +session,748,1,Internet Explorer 10,108,2018-03-18 +session,748,2,Internet Explorer 22,115,2017-08-14 +user,749,Vaughn,Vivienne,14 +session,749,0,Chrome 31,117,2016-11-25 +session,749,1,Chrome 37,105,2019-01-02 +user,750,Gearldine,Jeffrey,65 +session,750,0,Chrome 41,27,2017-01-13 +session,750,1,Safari 39,107,2016-12-26 +session,750,2,Firefox 27,35,2017-12-09 +session,750,3,Internet Explorer 35,64,2016-07-29 +session,750,4,Firefox 11,79,2018-06-03 +session,750,5,Firefox 38,91,2017-04-14 +session,750,6,Chrome 9,84,2017-01-02 +session,750,7,Internet Explorer 3,85,2018-02-16 +user,751,Shanta,Keely,28 +session,751,0,Internet Explorer 19,60,2017-02-11 +session,751,1,Internet Explorer 2,64,2017-01-25 +session,751,2,Internet Explorer 13,9,2017-09-23 +session,751,3,Internet Explorer 26,1,2018-05-11 +session,751,4,Safari 45,111,2016-07-27 +session,751,5,Safari 36,54,2018-10-04 +session,751,6,Internet Explorer 49,43,2017-11-19 +session,751,7,Chrome 17,10,2017-08-17 +user,752,Anthony,Alonzo,27 +session,752,0,Firefox 15,56,2016-08-28 +session,752,1,Safari 39,45,2016-08-03 +session,752,2,Safari 45,57,2018-08-13 +session,752,3,Safari 24,19,2017-05-23 +session,752,4,Firefox 8,80,2018-05-17 +session,752,5,Firefox 46,74,2018-11-30 +session,752,6,Safari 3,102,2017-07-27 +session,752,7,Chrome 18,11,2017-05-26 +user,753,Thurman,Tamar,72 +session,753,0,Chrome 4,19,2016-06-04 +session,753,1,Firefox 9,20,2018-01-19 +user,754,Joaquina,Peter,9 +session,754,0,Safari 24,96,2017-09-22 +user,755,Shaunna,Nicky,99 +session,755,0,Safari 46,58,2017-12-30 +session,755,1,Safari 48,115,2017-05-03 +session,755,2,Internet Explorer 44,90,2017-02-25 +session,755,3,Safari 9,62,2017-11-17 +user,756,Huey,Tamie,18 +session,756,0,Safari 11,112,2017-09-19 +session,756,1,Firefox 13,17,2018-06-29 +session,756,2,Internet Explorer 10,102,2018-09-12 +session,756,3,Chrome 9,78,2017-03-23 +session,756,4,Safari 46,80,2019-01-15 +session,756,5,Internet Explorer 40,110,2017-07-16 +session,756,6,Internet Explorer 43,31,2019-01-15 +session,756,7,Firefox 8,79,2018-05-18 +session,756,8,Chrome 13,7,2017-01-03 +session,756,9,Firefox 27,75,2017-11-22 +user,757,Shawn,Bernardo,93 +session,757,0,Safari 17,95,2017-05-30 +session,757,1,Internet Explorer 6,69,2017-09-10 +session,757,2,Firefox 16,73,2017-11-04 +session,757,3,Firefox 23,25,2017-01-19 +session,757,4,Chrome 4,66,2018-07-08 +session,757,5,Firefox 9,7,2016-09-01 +session,757,6,Internet Explorer 39,105,2016-11-27 +user,758,Glenna,Marlo,45 +session,758,0,Safari 11,70,2019-01-05 +session,758,1,Safari 1,107,2018-12-06 +session,758,2,Firefox 16,31,2017-11-13 +session,758,3,Firefox 25,49,2017-03-24 +user,759,Drew,Grisel,61 +session,759,0,Firefox 16,56,2017-03-19 +session,759,1,Firefox 14,84,2017-06-22 +session,759,2,Safari 43,59,2017-12-24 +session,759,3,Safari 12,18,2018-07-27 +session,759,4,Safari 24,53,2017-07-20 +user,760,Jamison,Chuck,95 +session,760,0,Internet Explorer 42,69,2017-08-21 +session,760,1,Chrome 32,20,2016-06-30 +session,760,2,Chrome 45,40,2018-04-26 +session,760,3,Safari 27,14,2017-04-13 +session,760,4,Firefox 12,103,2018-03-05 +session,760,5,Safari 21,67,2019-01-13 +session,760,6,Safari 8,27,2018-08-24 +user,761,Emanuel,Patty,47 +session,761,0,Safari 48,7,2017-07-03 +session,761,1,Internet Explorer 20,49,2017-10-27 +session,761,2,Internet Explorer 32,42,2018-11-07 +session,761,3,Firefox 41,72,2017-04-22 +user,762,Marlin,Loura,2 +session,762,0,Internet Explorer 12,27,2018-01-06 +session,762,1,Internet Explorer 23,111,2019-01-19 +session,762,2,Internet Explorer 20,72,2016-12-15 +session,762,3,Chrome 37,107,2016-06-25 +session,762,4,Safari 21,12,2018-08-21 +session,762,5,Chrome 19,28,2018-12-28 +session,762,6,Firefox 12,14,2017-11-14 +session,762,7,Chrome 2,57,2016-05-21 +session,762,8,Firefox 45,27,2018-09-01 +session,762,9,Internet Explorer 1,86,2017-12-04 +user,763,Kaycee,Melania,7 +session,763,0,Firefox 32,18,2018-01-01 +session,763,1,Firefox 25,51,2016-07-31 +session,763,2,Safari 24,98,2017-03-01 +session,763,3,Chrome 39,11,2017-02-05 +session,763,4,Chrome 34,21,2018-09-14 +user,764,Gladis,Clarice,26 +session,764,0,Firefox 34,6,2017-06-23 +session,764,1,Internet Explorer 31,77,2017-11-13 +session,764,2,Firefox 24,44,2018-03-31 +session,764,3,Safari 31,0,2017-10-18 +session,764,4,Internet Explorer 1,9,2016-05-30 +session,764,5,Firefox 34,82,2018-11-05 +session,764,6,Safari 49,51,2017-10-28 +session,764,7,Chrome 17,42,2016-09-18 +session,764,8,Firefox 4,61,2018-05-14 +session,764,9,Internet Explorer 43,43,2018-06-03 +user,765,Guillermo,Britt,51 +session,765,0,Safari 41,119,2017-07-28 +session,765,1,Firefox 33,52,2018-03-01 +session,765,2,Internet Explorer 13,10,2018-04-01 +session,765,3,Chrome 11,65,2017-11-13 +session,765,4,Firefox 14,21,2018-07-07 +session,765,5,Safari 47,92,2016-10-05 +session,765,6,Chrome 24,81,2019-01-17 +session,765,7,Chrome 20,94,2019-01-08 +user,766,Dominic,Tory,16 +session,766,0,Chrome 11,62,2018-12-05 +session,766,1,Chrome 50,4,2016-12-15 +session,766,2,Firefox 23,15,2017-09-13 +session,766,3,Safari 45,109,2017-10-06 +session,766,4,Firefox 1,63,2017-06-20 +session,766,5,Chrome 42,19,2017-06-28 +session,766,6,Safari 14,26,2017-06-05 +session,766,7,Firefox 49,40,2016-08-09 +user,767,Neal,Tarsha,40 +session,767,0,Internet Explorer 42,105,2018-02-05 +session,767,1,Safari 47,67,2017-02-10 +session,767,2,Firefox 50,38,2018-08-14 +user,768,Felix,Kari,51 +session,768,0,Internet Explorer 12,112,2018-08-20 +session,768,1,Internet Explorer 19,72,2017-05-17 +session,768,2,Safari 47,116,2017-04-12 +session,768,3,Safari 45,96,2018-11-17 +session,768,4,Internet Explorer 36,47,2018-12-08 +session,768,5,Safari 35,85,2017-01-28 +session,768,6,Safari 8,21,2018-02-02 +session,768,7,Firefox 35,86,2017-02-05 +user,769,Wendell,Sallie,90 +session,769,0,Internet Explorer 12,76,2018-11-21 +session,769,1,Internet Explorer 12,52,2016-07-09 +session,769,2,Safari 21,87,2016-12-04 +user,770,Marlon,Aimee,33 +session,770,0,Safari 46,15,2018-11-04 +session,770,1,Safari 17,43,2018-05-27 +session,770,2,Chrome 4,46,2017-08-31 +session,770,3,Firefox 44,10,2018-08-08 +session,770,4,Internet Explorer 32,9,2017-04-13 +session,770,5,Chrome 48,36,2018-07-24 +session,770,6,Internet Explorer 25,8,2018-05-17 +session,770,7,Firefox 9,109,2018-07-15 +session,770,8,Internet Explorer 7,80,2019-01-05 +user,771,Dean,Kamilah,14 +session,771,0,Chrome 30,103,2018-02-18 +session,771,1,Internet Explorer 25,108,2018-12-09 +session,771,2,Chrome 30,74,2017-11-23 +session,771,3,Firefox 37,80,2017-08-15 +user,772,Edward,Elana,80 +session,772,0,Safari 4,80,2017-04-14 +session,772,1,Chrome 45,118,2018-05-17 +session,772,2,Chrome 34,111,2017-03-08 +user,773,Scotty,Fernanda,82 +session,773,0,Chrome 31,100,2016-09-30 +session,773,1,Safari 4,33,2017-08-17 +session,773,2,Internet Explorer 22,93,2017-03-23 +session,773,3,Safari 45,4,2018-02-21 +session,773,4,Internet Explorer 36,113,2017-05-25 +user,774,Elliot,Ambrose,3 +session,774,0,Chrome 19,99,2017-02-20 +session,774,1,Chrome 18,59,2018-02-04 +session,774,2,Internet Explorer 36,0,2018-07-28 +session,774,3,Internet Explorer 18,72,2018-04-09 +session,774,4,Firefox 31,103,2018-04-26 +user,775,Sanda,Amee,16 +session,775,0,Safari 50,66,2016-09-28 +user,776,Soledad,Celine,82 +session,776,0,Safari 19,74,2017-11-05 +session,776,1,Chrome 35,100,2016-07-07 +session,776,2,Chrome 14,89,2018-10-17 +session,776,3,Internet Explorer 38,82,2017-06-09 +user,777,Fred,Dell,59 +session,777,0,Firefox 1,22,2016-09-25 +user,778,Debrah,Efren,81 +session,778,0,Firefox 1,14,2019-02-01 +user,779,Genny,Rochell,71 +session,779,0,Chrome 46,22,2017-04-12 +session,779,1,Internet Explorer 48,18,2016-12-25 +session,779,2,Firefox 27,99,2017-01-16 +session,779,3,Internet Explorer 40,4,2017-03-04 +session,779,4,Chrome 14,114,2017-06-27 +session,779,5,Firefox 21,23,2018-01-10 +user,780,Franklin,Augustus,85 +session,780,0,Chrome 4,98,2017-05-07 +session,780,1,Firefox 4,70,2018-11-12 +session,780,2,Chrome 50,69,2017-01-21 +session,780,3,Chrome 37,50,2017-11-10 +session,780,4,Firefox 39,31,2018-11-29 +user,781,Titus,Arica,19 +session,781,0,Internet Explorer 21,4,2018-08-26 +session,781,1,Safari 28,110,2017-07-13 +session,781,2,Chrome 40,16,2017-07-16 +user,782,Lorna,Deirdre,6 +session,782,0,Internet Explorer 25,1,2017-11-28 +session,782,1,Firefox 5,27,2018-12-03 +session,782,2,Chrome 25,85,2016-11-07 +session,782,3,Chrome 17,73,2018-01-02 +session,782,4,Internet Explorer 17,54,2018-07-03 +session,782,5,Safari 49,39,2017-11-22 +session,782,6,Internet Explorer 38,29,2016-08-21 +session,782,7,Internet Explorer 30,103,2017-02-20 +session,782,8,Internet Explorer 12,110,2016-07-04 +user,783,Sunshine,Christine,26 +session,783,0,Safari 37,31,2016-07-30 +session,783,1,Safari 11,36,2018-08-30 +user,784,Ginette,Joette,67 +session,784,0,Firefox 49,55,2016-11-03 +session,784,1,Internet Explorer 44,22,2018-04-25 +session,784,2,Internet Explorer 49,91,2016-11-03 +session,784,3,Safari 34,34,2017-08-08 +user,785,Lisette,Cyril,71 +session,785,0,Safari 36,41,2016-12-15 +session,785,1,Firefox 43,68,2016-11-28 +user,786,Misti,Louis,86 +session,786,0,Safari 31,54,2018-09-10 +session,786,1,Firefox 46,104,2018-02-07 +session,786,2,Firefox 19,95,2016-07-01 +session,786,3,Safari 50,20,2017-07-16 +session,786,4,Safari 20,9,2017-10-28 +session,786,5,Internet Explorer 47,80,2016-08-15 +session,786,6,Safari 36,104,2018-03-26 +session,786,7,Safari 49,9,2017-06-01 +session,786,8,Safari 24,118,2017-01-09 +user,787,Nelda,Josephine,78 +session,787,0,Internet Explorer 4,20,2017-07-18 +session,787,1,Firefox 41,80,2017-11-04 +session,787,2,Internet Explorer 34,103,2016-07-13 +session,787,3,Safari 20,76,2016-09-14 +session,787,4,Internet Explorer 10,119,2016-10-28 +session,787,5,Safari 36,102,2018-07-08 +session,787,6,Safari 34,18,2016-07-07 +session,787,7,Internet Explorer 37,48,2018-06-12 +user,788,Alejandra,Kimberley,31 +session,788,0,Firefox 37,25,2017-09-30 +session,788,1,Internet Explorer 1,27,2017-06-21 +session,788,2,Safari 20,12,2018-06-02 +session,788,3,Internet Explorer 50,26,2016-12-23 +session,788,4,Firefox 12,22,2017-08-21 +session,788,5,Chrome 46,11,2018-07-12 +session,788,6,Chrome 8,45,2017-08-28 +user,789,Coretta,Rubin,69 +session,789,0,Firefox 23,68,2016-08-16 +session,789,1,Safari 41,6,2017-11-08 +session,789,2,Firefox 12,51,2016-10-19 +session,789,3,Safari 12,42,2016-09-24 +session,789,4,Safari 43,84,2017-08-22 +session,789,5,Internet Explorer 29,37,2018-07-15 +session,789,6,Internet Explorer 12,24,2016-11-02 +session,789,7,Chrome 30,44,2018-01-26 +user,790,Ulysses,Barbara,84 +session,790,0,Safari 14,80,2019-01-16 +session,790,1,Firefox 40,75,2017-05-07 +session,790,2,Firefox 25,109,2016-07-03 +session,790,3,Internet Explorer 5,19,2016-10-30 +session,790,4,Firefox 48,49,2016-12-01 +session,790,5,Safari 26,83,2017-11-11 +session,790,6,Chrome 31,43,2016-09-28 +user,791,Francie,Dina,36 +session,791,0,Safari 42,27,2016-09-27 +session,791,1,Chrome 33,74,2017-07-11 +session,791,2,Internet Explorer 10,107,2018-07-24 +session,791,3,Firefox 12,62,2018-03-15 +session,791,4,Firefox 1,16,2016-06-21 +session,791,5,Chrome 32,41,2018-09-17 +session,791,6,Internet Explorer 9,15,2018-11-20 +user,792,Lanny,Alethia,82 +session,792,0,Firefox 48,57,2017-08-31 +session,792,1,Safari 16,57,2017-03-14 +session,792,2,Firefox 3,4,2016-08-22 +user,793,Tosha,Robyn,85 +session,793,0,Internet Explorer 45,24,2016-07-29 +session,793,1,Safari 43,11,2019-01-29 +session,793,2,Safari 34,93,2016-09-07 +user,794,Ernest,Apryl,95 +session,794,0,Safari 26,76,2019-01-06 +session,794,1,Internet Explorer 6,60,2017-05-18 +session,794,2,Chrome 31,37,2017-09-03 +session,794,3,Safari 9,59,2016-05-26 +session,794,4,Internet Explorer 35,15,2016-12-20 +session,794,5,Firefox 13,5,2018-06-24 +session,794,6,Safari 6,43,2017-02-13 +user,795,Merlin,Ja,47 +session,795,0,Safari 24,5,2017-04-12 +session,795,1,Chrome 23,27,2017-02-02 +user,796,Sheldon,Valentin,1 +session,796,0,Safari 13,87,2017-02-16 +user,797,Annelle,Na,63 +session,797,0,Safari 40,85,2017-11-12 +session,797,1,Chrome 9,6,2018-10-03 +session,797,2,Internet Explorer 22,53,2017-09-08 +session,797,3,Safari 42,64,2016-10-23 +user,798,Jamison,Tamatha,95 +session,798,0,Chrome 34,88,2017-03-28 +session,798,1,Firefox 12,98,2018-05-29 +session,798,2,Firefox 34,68,2016-10-30 +session,798,3,Chrome 24,30,2017-09-12 +session,798,4,Chrome 5,29,2016-07-09 +session,798,5,Safari 46,47,2018-01-26 +session,798,6,Firefox 49,68,2017-01-17 +session,798,7,Safari 38,96,2017-12-12 +user,799,Cristen,Sabrina,31 +session,799,0,Chrome 18,22,2018-11-13 +session,799,1,Chrome 38,36,2019-01-02 +session,799,2,Firefox 48,9,2017-03-14 +user,800,Tawny,Jude,59 +session,800,0,Firefox 9,60,2017-05-14 +session,800,1,Firefox 25,115,2017-01-03 +session,800,2,Internet Explorer 28,115,2016-07-30 +session,800,3,Chrome 12,114,2017-10-05 +session,800,4,Chrome 41,108,2016-10-21 +session,800,5,Safari 28,87,2017-07-02 +session,800,6,Chrome 2,87,2019-02-02 +session,800,7,Firefox 16,93,2018-04-01 +session,800,8,Firefox 1,49,2018-12-10 +session,800,9,Firefox 49,92,2017-03-25 +user,801,Rayford,Lacy,34 +session,801,0,Internet Explorer 8,47,2018-12-27 +session,801,1,Firefox 14,115,2018-06-20 +session,801,2,Internet Explorer 8,105,2018-08-19 +user,802,Izetta,Margarete,57 +session,802,0,Internet Explorer 40,46,2016-06-07 +session,802,1,Internet Explorer 32,41,2018-01-10 +session,802,2,Firefox 37,117,2018-11-18 +session,802,3,Safari 36,93,2019-01-18 +session,802,4,Firefox 17,56,2018-09-22 +session,802,5,Safari 24,11,2018-03-19 +session,802,6,Safari 5,0,2019-01-16 +session,802,7,Safari 34,4,2017-09-01 +session,802,8,Chrome 14,55,2016-10-29 +session,802,9,Chrome 32,93,2018-07-15 +user,803,Sunni,Shu,5 +session,803,0,Internet Explorer 38,29,2018-01-27 +user,804,Yon,Bret,26 +session,804,0,Internet Explorer 16,33,2016-11-26 +session,804,1,Internet Explorer 21,114,2017-08-27 +user,805,Elmer,Rory,26 +session,805,0,Internet Explorer 50,98,2018-07-12 +session,805,1,Safari 28,36,2018-09-26 +session,805,2,Safari 12,116,2017-06-08 +session,805,3,Internet Explorer 45,92,2019-01-18 +session,805,4,Chrome 32,17,2016-11-21 +session,805,5,Internet Explorer 30,86,2017-05-15 +session,805,6,Chrome 14,20,2018-01-12 +session,805,7,Firefox 19,1,2016-07-27 +session,805,8,Chrome 45,10,2016-06-04 +user,806,Elbert,Kaycee,54 +session,806,0,Chrome 38,99,2017-07-28 +session,806,1,Safari 50,99,2019-02-08 +session,806,2,Chrome 21,58,2018-07-24 +session,806,3,Safari 23,31,2018-06-15 +session,806,4,Internet Explorer 32,106,2016-07-07 +user,807,Shanelle,Digna,19 +session,807,0,Internet Explorer 2,90,2017-09-18 +session,807,1,Safari 40,11,2018-02-01 +session,807,2,Safari 3,82,2017-10-20 +session,807,3,Firefox 19,106,2016-07-13 +session,807,4,Safari 32,94,2017-07-23 +session,807,5,Safari 38,72,2017-04-11 +session,807,6,Chrome 35,21,2016-06-02 +session,807,7,Firefox 31,44,2016-11-30 +session,807,8,Chrome 43,63,2017-04-03 +session,807,9,Safari 13,113,2017-08-13 +user,808,Starla,Josh,37 +session,808,0,Safari 17,51,2017-07-26 +session,808,1,Internet Explorer 26,117,2017-12-22 +session,808,2,Safari 43,13,2016-08-15 +session,808,3,Internet Explorer 9,101,2018-01-30 +session,808,4,Safari 13,12,2018-04-28 +session,808,5,Safari 47,10,2018-07-13 +session,808,6,Chrome 20,115,2019-01-14 +session,808,7,Firefox 37,61,2017-09-11 +session,808,8,Internet Explorer 12,88,2016-12-16 +user,809,Gregory,Patsy,91 +session,809,0,Firefox 8,14,2016-09-26 +session,809,1,Internet Explorer 20,51,2019-01-10 +session,809,2,Internet Explorer 34,99,2016-08-04 +user,810,Ali,Leonida,52 +session,810,0,Firefox 11,38,2018-03-10 +session,810,1,Safari 9,11,2017-06-09 +session,810,2,Chrome 31,32,2017-07-28 +session,810,3,Internet Explorer 45,32,2018-03-24 +session,810,4,Firefox 23,62,2017-09-22 +session,810,5,Chrome 14,1,2016-09-26 +session,810,6,Internet Explorer 29,54,2017-02-03 +session,810,7,Internet Explorer 22,75,2017-06-08 +session,810,8,Internet Explorer 3,86,2018-02-25 +user,811,Azucena,Maragret,91 +session,811,0,Internet Explorer 37,47,2018-12-19 +user,812,Klara,Laine,44 +session,812,0,Chrome 40,92,2017-04-07 +session,812,1,Internet Explorer 50,1,2016-07-05 +session,812,2,Chrome 29,95,2017-09-14 +session,812,3,Chrome 48,10,2017-10-25 +session,812,4,Chrome 28,70,2017-04-29 +session,812,5,Internet Explorer 24,21,2018-06-17 +session,812,6,Safari 29,16,2018-06-11 +session,812,7,Safari 25,69,2017-07-03 +user,813,Carlos,Melda,63 +session,813,0,Internet Explorer 9,3,2017-04-06 +session,813,1,Chrome 33,75,2017-09-05 +session,813,2,Chrome 24,55,2019-01-26 +session,813,3,Firefox 12,40,2018-05-27 +session,813,4,Safari 35,42,2017-11-09 +session,813,5,Firefox 11,47,2018-07-31 +session,813,6,Internet Explorer 31,46,2017-01-18 +user,814,Lena,Julee,13 +session,814,0,Firefox 36,104,2016-12-28 +session,814,1,Safari 36,67,2016-11-24 +session,814,2,Safari 13,7,2018-06-13 +session,814,3,Safari 11,15,2017-02-13 +session,814,4,Safari 32,75,2019-01-12 +session,814,5,Internet Explorer 50,81,2016-08-21 +user,815,Jonell,Antwan,34 +session,815,0,Internet Explorer 15,28,2017-06-14 +session,815,1,Firefox 23,50,2018-08-29 +session,815,2,Firefox 40,2,2016-08-31 +session,815,3,Firefox 28,100,2019-01-19 +session,815,4,Internet Explorer 6,55,2017-01-27 +session,815,5,Chrome 3,54,2018-05-31 +session,815,6,Chrome 46,38,2018-01-01 +user,816,Zack,Romana,5 +session,816,0,Chrome 38,70,2016-10-06 +session,816,1,Firefox 49,6,2017-01-20 +session,816,2,Chrome 4,46,2018-06-02 +session,816,3,Internet Explorer 38,91,2018-03-26 +session,816,4,Chrome 35,93,2018-01-08 +session,816,5,Safari 24,73,2017-04-03 +session,816,6,Firefox 44,13,2016-08-04 +session,816,7,Chrome 19,72,2018-01-20 +user,817,Junko,Arvilla,92 +session,817,0,Safari 27,46,2016-12-22 +session,817,1,Chrome 13,16,2016-07-08 +session,817,2,Chrome 20,83,2016-11-17 +session,817,3,Firefox 50,92,2016-06-09 +user,818,Jackson,Francisco,26 +session,818,0,Safari 18,76,2017-10-15 +user,819,Pura,Richelle,11 +session,819,0,Chrome 22,1,2016-09-15 +session,819,1,Internet Explorer 35,94,2018-07-29 +session,819,2,Firefox 32,81,2016-09-23 +session,819,3,Internet Explorer 47,46,2017-02-11 +session,819,4,Chrome 12,30,2017-11-17 +session,819,5,Firefox 43,84,2017-05-07 +session,819,6,Firefox 46,46,2016-10-02 +user,820,Alexandra,Mackenzie,8 +session,820,0,Internet Explorer 16,46,2016-07-21 +user,821,Waylon,Agueda,92 +session,821,0,Chrome 49,110,2016-07-08 +user,822,Maegan,Scarlett,42 +session,822,0,Internet Explorer 33,58,2018-02-07 +session,822,1,Chrome 23,114,2016-08-05 +session,822,2,Safari 31,51,2017-03-03 +session,822,3,Chrome 13,28,2018-01-13 +session,822,4,Internet Explorer 19,75,2017-02-09 +session,822,5,Safari 5,29,2018-02-05 +user,823,Fidel,Lisa,1 +session,823,0,Firefox 50,47,2018-09-15 +session,823,1,Safari 22,9,2016-12-25 +session,823,2,Firefox 40,82,2018-08-14 +session,823,3,Firefox 26,85,2017-07-26 +session,823,4,Chrome 28,83,2018-01-08 +session,823,5,Chrome 42,61,2018-07-23 +session,823,6,Firefox 43,39,2018-07-31 +session,823,7,Chrome 36,97,2016-06-17 +user,824,Kip,Benjamin,51 +session,824,0,Safari 17,108,2017-04-26 +session,824,1,Internet Explorer 42,33,2017-12-06 +session,824,2,Chrome 20,41,2016-08-28 +session,824,3,Internet Explorer 50,77,2016-09-10 +session,824,4,Firefox 8,17,2017-05-08 +session,824,5,Chrome 42,86,2017-06-06 +session,824,6,Chrome 38,89,2017-08-28 +user,825,Kenneth,Nicky,78 +session,825,0,Firefox 37,117,2016-10-24 +session,825,1,Firefox 7,67,2017-10-23 +session,825,2,Safari 5,31,2017-07-20 +session,825,3,Chrome 22,14,2017-05-11 +session,825,4,Chrome 8,16,2016-10-13 +session,825,5,Safari 12,106,2017-09-27 +session,825,6,Internet Explorer 19,23,2018-09-29 +user,826,Fredericka,Marisa,18 +session,826,0,Internet Explorer 2,97,2017-05-26 +session,826,1,Internet Explorer 11,24,2017-02-08 +session,826,2,Internet Explorer 36,13,2017-05-06 +session,826,3,Chrome 22,107,2017-03-11 +session,826,4,Chrome 38,43,2016-08-06 +user,827,Rosena,Junita,3 +session,827,0,Internet Explorer 5,21,2017-04-05 +session,827,1,Chrome 8,93,2017-09-25 +session,827,2,Safari 17,36,2018-09-05 +session,827,3,Safari 28,98,2017-11-13 +session,827,4,Internet Explorer 22,17,2017-11-28 +session,827,5,Safari 48,70,2017-01-24 +session,827,6,Internet Explorer 13,81,2018-06-21 +session,827,7,Safari 12,67,2018-10-20 +session,827,8,Internet Explorer 4,25,2017-02-17 +session,827,9,Chrome 15,79,2017-11-19 +user,828,Lou,Aracely,98 +session,828,0,Safari 39,22,2016-07-18 +user,829,Kendrick,Michiko,71 +session,829,0,Internet Explorer 48,81,2016-07-15 +user,830,Vannessa,Paris,36 +session,830,0,Chrome 4,39,2017-01-10 +session,830,1,Internet Explorer 26,119,2017-06-24 +session,830,2,Firefox 41,61,2016-08-28 +session,830,3,Internet Explorer 40,73,2016-07-14 +session,830,4,Internet Explorer 50,92,2016-09-14 +session,830,5,Safari 30,20,2017-04-23 +session,830,6,Firefox 35,60,2018-08-15 +session,830,7,Chrome 21,49,2017-06-01 +session,830,8,Internet Explorer 35,76,2018-05-16 +user,831,Ellsworth,Louann,42 +session,831,0,Safari 25,38,2018-04-22 +session,831,1,Safari 32,21,2017-07-26 +session,831,2,Safari 22,109,2018-10-14 +session,831,3,Safari 20,68,2018-11-06 +session,831,4,Chrome 50,69,2017-04-08 +session,831,5,Chrome 5,19,2016-08-07 +session,831,6,Firefox 42,78,2018-11-21 +session,831,7,Safari 15,69,2016-05-24 +session,831,8,Internet Explorer 6,56,2017-12-27 +user,832,Louis,Pennie,98 +session,832,0,Firefox 36,69,2016-07-25 +session,832,1,Firefox 7,79,2017-09-18 +session,832,2,Internet Explorer 1,102,2017-01-22 +user,833,Blanch,Kirstie,20 +session,833,0,Firefox 4,36,2016-08-23 +session,833,1,Chrome 44,90,2018-11-23 +session,833,2,Safari 39,87,2018-04-16 +session,833,3,Internet Explorer 20,118,2017-04-07 +session,833,4,Chrome 1,59,2018-01-16 +user,834,Shenika,Diana,41 +session,834,0,Internet Explorer 37,88,2018-09-19 +session,834,1,Firefox 7,53,2018-04-06 +user,835,Chase,Andre,88 +session,835,0,Chrome 9,95,2019-02-06 +session,835,1,Safari 44,69,2016-10-14 +session,835,2,Chrome 6,74,2018-09-29 +session,835,3,Safari 4,19,2017-08-17 +session,835,4,Chrome 29,113,2017-09-07 +session,835,5,Firefox 20,21,2016-09-11 +session,835,6,Chrome 20,8,2018-06-18 +user,836,Sally,Carry,57 +session,836,0,Internet Explorer 18,0,2018-04-12 +session,836,1,Firefox 29,17,2016-07-29 +session,836,2,Internet Explorer 17,117,2017-05-17 +session,836,3,Chrome 12,14,2017-05-30 +session,836,4,Safari 23,68,2017-10-14 +session,836,5,Safari 47,79,2018-12-31 +session,836,6,Safari 26,102,2016-07-25 +session,836,7,Chrome 31,23,2017-08-02 +session,836,8,Chrome 23,88,2017-03-01 +session,836,9,Chrome 6,96,2017-07-15 +user,837,Elina,Jeanmarie,21 +session,837,0,Firefox 38,100,2017-03-07 +session,837,1,Firefox 31,114,2017-06-25 +user,838,Dorian,Laurel,1 +session,838,0,Chrome 42,49,2016-07-13 +session,838,1,Chrome 29,20,2017-02-09 +session,838,2,Safari 12,72,2018-04-30 +session,838,3,Chrome 14,34,2017-06-16 +session,838,4,Chrome 40,66,2017-09-17 +session,838,5,Internet Explorer 9,42,2018-10-07 +session,838,6,Safari 19,106,2018-10-01 +session,838,7,Firefox 5,56,2018-03-05 +session,838,8,Chrome 9,23,2018-06-07 +session,838,9,Chrome 23,28,2016-11-27 +user,839,Denisha,Parthenia,90 +session,839,0,Chrome 24,11,2017-05-07 +session,839,1,Firefox 8,109,2017-08-22 +session,839,2,Chrome 23,115,2018-01-29 +session,839,3,Chrome 26,47,2016-10-20 +session,839,4,Firefox 24,89,2018-09-18 +session,839,5,Internet Explorer 36,16,2019-01-08 +session,839,6,Internet Explorer 44,63,2016-09-14 +session,839,7,Safari 19,66,2016-09-06 +session,839,8,Chrome 31,54,2018-03-18 +session,839,9,Internet Explorer 47,89,2017-07-31 +user,840,Novella,Shanelle,55 +session,840,0,Internet Explorer 8,44,2016-08-02 +session,840,1,Internet Explorer 28,107,2018-03-18 +session,840,2,Firefox 35,109,2016-09-27 +session,840,3,Firefox 33,109,2018-10-06 +session,840,4,Firefox 10,78,2018-05-03 +session,840,5,Safari 17,114,2019-01-24 +session,840,6,Safari 42,49,2019-02-11 +session,840,7,Internet Explorer 10,55,2017-09-06 +session,840,8,Chrome 14,113,2018-08-31 +user,841,Conrad,Diego,14 +session,841,0,Safari 31,23,2018-10-21 +session,841,1,Chrome 29,103,2018-07-28 +user,842,Eulalia,Dawne,90 +session,842,0,Chrome 46,5,2018-05-23 +session,842,1,Internet Explorer 10,92,2017-01-03 +session,842,2,Chrome 21,84,2017-02-01 +session,842,3,Safari 9,92,2019-01-26 +user,843,Argentina,Arianne,51 +session,843,0,Firefox 44,15,2016-07-08 +session,843,1,Internet Explorer 10,71,2017-06-29 +user,844,Ryan,Brook,32 +session,844,0,Firefox 48,54,2017-10-08 +user,845,Lyndon,Kali,70 +session,845,0,Safari 6,59,2016-10-31 +session,845,1,Firefox 27,116,2016-10-27 +session,845,2,Firefox 9,41,2018-01-07 +session,845,3,Internet Explorer 34,61,2018-01-21 +session,845,4,Chrome 44,65,2017-06-28 +session,845,5,Chrome 29,116,2018-05-03 +session,845,6,Safari 44,52,2017-09-30 +user,846,Shayne,Waneta,42 +session,846,0,Internet Explorer 40,92,2016-06-23 +session,846,1,Firefox 8,94,2017-03-22 +session,846,2,Safari 39,46,2018-12-12 +session,846,3,Internet Explorer 16,18,2018-04-17 +session,846,4,Chrome 41,74,2017-06-26 +session,846,5,Safari 8,80,2017-07-28 +user,847,Taneka,Laurence,75 +session,847,0,Firefox 31,33,2017-07-01 +session,847,1,Chrome 43,5,2016-07-10 +session,847,2,Safari 46,61,2017-08-26 +session,847,3,Internet Explorer 20,17,2018-09-22 +user,848,Federico,Rodrigo,11 +session,848,0,Chrome 24,58,2017-03-28 +session,848,1,Safari 48,68,2018-07-24 +session,848,2,Safari 4,29,2017-02-20 +session,848,3,Chrome 38,4,2018-07-09 +session,848,4,Firefox 31,34,2018-05-26 +session,848,5,Safari 20,75,2018-03-27 +session,848,6,Internet Explorer 14,14,2018-03-13 +session,848,7,Safari 42,72,2016-08-07 +session,848,8,Firefox 23,30,2018-03-09 +user,849,Eldora,Rufina,86 +session,849,0,Firefox 35,119,2017-04-21 +session,849,1,Safari 49,111,2016-09-06 +session,849,2,Safari 34,60,2018-10-03 +session,849,3,Chrome 19,12,2017-07-29 +session,849,4,Firefox 44,116,2018-04-18 +session,849,5,Safari 22,15,2019-01-16 +session,849,6,Firefox 1,74,2018-08-11 +session,849,7,Internet Explorer 40,43,2017-10-28 +session,849,8,Chrome 21,115,2018-01-07 +user,850,Troy,Chong,38 +session,850,0,Firefox 17,79,2018-02-28 +session,850,1,Firefox 37,107,2018-04-20 +session,850,2,Internet Explorer 34,71,2018-03-14 +session,850,3,Firefox 17,110,2017-10-08 +user,851,Benny,Shani,7 +session,851,0,Internet Explorer 14,79,2017-06-20 +session,851,1,Internet Explorer 12,109,2017-03-17 +session,851,2,Safari 6,47,2018-02-27 +session,851,3,Chrome 48,109,2017-05-05 +session,851,4,Safari 40,59,2018-01-08 +session,851,5,Internet Explorer 12,87,2018-10-04 +session,851,6,Internet Explorer 10,36,2017-09-20 +session,851,7,Chrome 1,30,2017-06-14 +user,852,Nicky,Ocie,85 +session,852,0,Safari 10,88,2016-08-02 +session,852,1,Internet Explorer 30,101,2018-05-12 +session,852,2,Chrome 50,28,2017-04-30 +session,852,3,Firefox 6,108,2016-12-30 +session,852,4,Chrome 36,104,2018-09-30 +session,852,5,Internet Explorer 9,73,2016-10-13 +session,852,6,Chrome 30,12,2017-09-22 +session,852,7,Internet Explorer 37,39,2017-08-20 +user,853,Miquel,Dave,31 +session,853,0,Safari 1,45,2018-04-23 +session,853,1,Safari 32,32,2017-11-10 +session,853,2,Internet Explorer 12,52,2017-10-25 +session,853,3,Internet Explorer 32,19,2018-08-14 +session,853,4,Internet Explorer 7,103,2017-06-19 +session,853,5,Chrome 32,66,2017-04-20 +session,853,6,Firefox 3,78,2017-12-24 +session,853,7,Internet Explorer 11,117,2018-10-10 +user,854,Gilbert,Davina,83 +session,854,0,Internet Explorer 48,110,2018-04-13 +session,854,1,Firefox 35,9,2018-10-07 +session,854,2,Internet Explorer 30,100,2018-12-28 +session,854,3,Chrome 15,12,2017-08-04 +session,854,4,Chrome 48,71,2018-02-07 +session,854,5,Internet Explorer 18,74,2017-05-01 +session,854,6,Chrome 37,23,2016-11-24 +session,854,7,Internet Explorer 4,1,2017-11-25 +session,854,8,Internet Explorer 16,5,2017-01-15 +session,854,9,Safari 17,21,2018-02-25 +user,855,Antonio,Krystal,38 +session,855,0,Safari 41,101,2017-08-16 +session,855,1,Safari 26,92,2018-10-16 +session,855,2,Chrome 44,113,2017-02-27 +user,856,Warren,Hong,92 +session,856,0,Chrome 19,2,2016-09-30 +session,856,1,Chrome 41,70,2017-02-07 +session,856,2,Chrome 49,63,2016-07-15 +session,856,3,Chrome 23,108,2018-09-21 +session,856,4,Chrome 23,60,2018-06-27 +session,856,5,Internet Explorer 9,17,2018-06-29 +session,856,6,Internet Explorer 32,102,2018-02-08 +session,856,7,Internet Explorer 9,70,2018-02-28 +session,856,8,Safari 5,81,2016-07-23 +user,857,Rico,Adria,19 +session,857,0,Chrome 12,66,2017-12-19 +session,857,1,Firefox 26,109,2018-03-15 +session,857,2,Firefox 2,117,2017-11-09 +session,857,3,Firefox 36,114,2018-07-29 +session,857,4,Firefox 12,20,2018-06-09 +session,857,5,Internet Explorer 32,56,2016-05-27 +session,857,6,Chrome 46,100,2019-01-16 +user,858,Yer,Marita,90 +session,858,0,Safari 26,36,2018-04-24 +session,858,1,Safari 37,73,2018-08-24 +session,858,2,Firefox 15,118,2017-07-06 +user,859,Bernie,Corie,86 +session,859,0,Safari 20,75,2017-08-24 +session,859,1,Safari 44,28,2017-07-01 +session,859,2,Safari 4,109,2018-10-10 +user,860,Colby,Milo,42 +session,860,0,Chrome 38,32,2017-08-29 +session,860,1,Chrome 13,92,2017-01-01 +session,860,2,Internet Explorer 28,103,2018-03-25 +session,860,3,Safari 40,71,2017-08-15 +session,860,4,Chrome 27,27,2016-06-08 +session,860,5,Safari 23,29,2016-09-13 +session,860,6,Firefox 15,5,2017-06-19 +session,860,7,Safari 28,61,2018-08-26 +session,860,8,Firefox 26,103,2018-02-09 +session,860,9,Chrome 10,38,2017-11-09 +user,861,Erma,Stephaine,16 +session,861,0,Safari 43,39,2017-02-09 +session,861,1,Firefox 27,101,2018-12-13 +user,862,Ching,Leena,88 +session,862,0,Firefox 36,97,2018-02-14 +session,862,1,Safari 6,57,2017-02-20 +session,862,2,Safari 19,54,2018-05-28 +session,862,3,Safari 28,23,2017-12-25 +session,862,4,Safari 45,15,2018-04-03 +session,862,5,Firefox 2,102,2019-01-08 +session,862,6,Chrome 21,8,2017-05-20 +session,862,7,Internet Explorer 21,45,2017-10-04 +session,862,8,Chrome 47,56,2018-06-12 +session,862,9,Safari 45,72,2016-08-06 +user,863,Dani,Alena,43 +session,863,0,Safari 22,17,2018-10-05 +session,863,1,Firefox 40,68,2016-11-02 +user,864,Willia,Jami,42 +session,864,0,Firefox 22,25,2017-11-25 +user,865,Lucien,Brett,25 +session,865,0,Safari 43,110,2018-06-30 +session,865,1,Chrome 14,2,2018-03-22 +session,865,2,Safari 21,59,2017-12-20 +session,865,3,Safari 48,50,2017-09-28 +session,865,4,Internet Explorer 29,104,2017-10-30 +session,865,5,Chrome 43,69,2018-09-02 +session,865,6,Firefox 37,108,2018-07-13 +user,866,Ai,Melissa,4 +session,866,0,Firefox 28,75,2017-03-10 +session,866,1,Chrome 27,17,2019-02-09 +session,866,2,Safari 39,36,2016-05-24 +session,866,3,Firefox 50,61,2018-09-21 +session,866,4,Chrome 21,2,2018-02-05 +session,866,5,Safari 23,63,2017-04-09 +session,866,6,Firefox 22,45,2018-07-03 +session,866,7,Internet Explorer 49,101,2017-02-13 +session,866,8,Firefox 14,85,2019-01-22 +session,866,9,Firefox 45,94,2018-04-07 +user,867,Kera,Velda,44 +session,867,0,Firefox 18,55,2017-01-30 +session,867,1,Firefox 18,31,2018-03-24 +session,867,2,Firefox 32,56,2016-12-30 +session,867,3,Firefox 38,75,2016-12-06 +session,867,4,Chrome 4,117,2016-12-18 +session,867,5,Firefox 15,108,2017-05-08 +session,867,6,Internet Explorer 32,84,2019-02-11 +session,867,7,Firefox 1,30,2016-10-15 +session,867,8,Chrome 21,107,2016-12-26 +session,867,9,Firefox 40,7,2016-12-08 +user,868,Karlyn,Tobi,20 +session,868,0,Firefox 29,18,2018-01-22 +user,869,Angelyn,Cortez,59 +session,869,0,Safari 29,32,2016-06-22 +user,870,Arletha,Earlene,58 +session,870,0,Firefox 26,63,2018-12-12 +session,870,1,Safari 32,41,2017-03-13 +session,870,2,Firefox 14,74,2016-06-20 +session,870,3,Firefox 32,21,2017-01-12 +session,870,4,Chrome 14,4,2016-11-04 +session,870,5,Internet Explorer 2,76,2017-07-06 +session,870,6,Safari 21,77,2018-07-12 +session,870,7,Firefox 18,102,2017-10-05 +session,870,8,Firefox 50,14,2019-01-22 +session,870,9,Internet Explorer 25,6,2018-02-02 +user,871,Regan,Joette,81 +session,871,0,Firefox 14,79,2017-05-20 +session,871,1,Chrome 44,61,2018-12-22 +session,871,2,Safari 27,22,2017-08-30 +session,871,3,Firefox 40,107,2017-03-22 +session,871,4,Chrome 47,79,2017-09-01 +user,872,Rosaura,Yesenia,34 +session,872,0,Chrome 12,110,2017-09-06 +user,873,Leif,Hien,76 +session,873,0,Firefox 34,68,2016-07-16 +session,873,1,Safari 16,80,2016-11-07 +session,873,2,Internet Explorer 46,18,2017-10-03 +session,873,3,Internet Explorer 16,109,2016-06-04 +session,873,4,Firefox 6,105,2018-11-30 +session,873,5,Firefox 50,17,2016-10-17 +session,873,6,Internet Explorer 40,96,2018-08-01 +session,873,7,Safari 20,42,2017-11-24 +user,874,Malcom,Rudolph,90 +session,874,0,Firefox 15,92,2018-06-12 +session,874,1,Safari 40,118,2016-10-16 +session,874,2,Internet Explorer 26,46,2016-11-25 +session,874,3,Safari 2,102,2019-01-31 +session,874,4,Chrome 43,118,2017-03-13 +session,874,5,Safari 39,77,2017-04-02 +session,874,6,Firefox 18,102,2018-12-15 +session,874,7,Chrome 10,56,2017-02-02 +session,874,8,Chrome 29,107,2016-08-01 +user,875,Dwight,Ilda,47 +session,875,0,Safari 30,93,2018-11-06 +session,875,1,Firefox 27,22,2018-09-20 +session,875,2,Safari 9,80,2017-04-26 +session,875,3,Internet Explorer 46,106,2017-11-03 +session,875,4,Chrome 41,13,2017-10-30 +session,875,5,Chrome 11,73,2016-12-17 +user,876,Selene,Krystal,22 +session,876,0,Internet Explorer 21,98,2016-05-26 +session,876,1,Firefox 11,86,2017-03-08 +session,876,2,Firefox 14,1,2018-02-15 +session,876,3,Internet Explorer 31,54,2018-08-07 +session,876,4,Internet Explorer 44,32,2016-09-24 +user,877,Ethan,Dalton,2 +session,877,0,Firefox 19,0,2017-12-13 +session,877,1,Firefox 18,58,2018-10-22 +session,877,2,Safari 11,10,2018-11-01 +session,877,3,Chrome 43,66,2017-03-21 +session,877,4,Firefox 17,31,2017-09-14 +session,877,5,Safari 27,87,2017-10-11 +session,877,6,Chrome 46,64,2017-11-29 +session,877,7,Firefox 32,96,2016-09-11 +session,877,8,Firefox 33,116,2016-10-28 +session,877,9,Safari 23,46,2017-04-13 +user,878,Trena,Ayesha,26 +session,878,0,Firefox 36,31,2018-06-24 +session,878,1,Firefox 45,1,2018-05-19 +session,878,2,Chrome 25,9,2016-07-13 +session,878,3,Safari 12,39,2018-01-06 +session,878,4,Internet Explorer 45,92,2017-01-25 +session,878,5,Safari 42,52,2016-11-15 +session,878,6,Safari 15,50,2016-10-19 +user,879,Emmanuel,Hallie,14 +session,879,0,Chrome 45,66,2019-02-06 +session,879,1,Safari 32,71,2018-10-30 +session,879,2,Internet Explorer 8,0,2017-06-03 +session,879,3,Internet Explorer 46,90,2016-09-23 +user,880,Clementine,Denice,72 +session,880,0,Safari 48,28,2018-10-29 +session,880,1,Chrome 26,87,2018-12-18 +user,881,Babette,Sasha,5 +session,881,0,Chrome 20,29,2016-12-12 +session,881,1,Firefox 28,2,2018-01-25 +user,882,Francis,Jeanie,92 +session,882,0,Chrome 39,11,2016-08-22 +session,882,1,Firefox 8,43,2018-06-10 +session,882,2,Safari 35,75,2016-08-26 +session,882,3,Chrome 2,24,2018-07-15 +session,882,4,Internet Explorer 13,23,2016-05-25 +session,882,5,Internet Explorer 13,103,2017-03-10 +session,882,6,Chrome 44,29,2017-01-05 +user,883,Ayanna,Palmira,53 +session,883,0,Firefox 10,82,2018-08-28 +user,884,Gwendolyn,Kamilah,68 +session,884,0,Safari 49,5,2017-02-28 +session,884,1,Safari 33,35,2016-07-12 +session,884,2,Chrome 36,104,2018-09-08 +user,885,Brandon,Alverta,58 +session,885,0,Safari 29,20,2018-06-02 +session,885,1,Internet Explorer 20,92,2016-08-10 +session,885,2,Chrome 4,80,2018-08-16 +session,885,3,Safari 43,16,2018-02-19 +session,885,4,Internet Explorer 36,111,2016-11-23 +session,885,5,Safari 36,34,2017-04-11 +session,885,6,Safari 14,110,2018-01-26 +session,885,7,Safari 8,74,2017-12-16 +session,885,8,Firefox 46,83,2017-03-19 +session,885,9,Internet Explorer 22,46,2018-12-15 +user,886,Alexandria,Kizzy,47 +session,886,0,Internet Explorer 2,61,2018-01-25 +session,886,1,Safari 50,56,2018-07-23 +session,886,2,Safari 23,5,2018-12-21 +session,886,3,Chrome 25,40,2017-08-01 +session,886,4,Chrome 44,94,2017-11-21 +session,886,5,Chrome 49,87,2016-10-11 +session,886,6,Chrome 37,69,2018-08-28 +session,886,7,Internet Explorer 50,22,2019-02-12 +session,886,8,Chrome 15,37,2017-12-12 +session,886,9,Firefox 46,90,2018-09-23 +user,887,Georgianne,Marica,87 +session,887,0,Internet Explorer 31,2,2017-10-27 +session,887,1,Safari 4,30,2018-01-13 +session,887,2,Internet Explorer 46,30,2017-06-29 +session,887,3,Safari 46,4,2017-12-14 +session,887,4,Safari 43,97,2018-12-03 +session,887,5,Chrome 29,106,2017-01-14 +user,888,Glenna,Luciano,36 +session,888,0,Internet Explorer 7,6,2017-08-20 +session,888,1,Safari 46,65,2018-06-17 +user,889,Simon,Jody,66 +session,889,0,Safari 5,89,2017-06-29 +session,889,1,Firefox 31,79,2019-01-22 +user,890,Noe,Karena,15 +session,890,0,Safari 33,15,2017-05-15 +session,890,1,Internet Explorer 48,16,2018-06-21 +session,890,2,Firefox 2,28,2018-07-25 +user,891,Dianne,Isreal,94 +session,891,0,Internet Explorer 3,12,2016-08-18 +session,891,1,Internet Explorer 45,60,2016-06-02 +session,891,2,Chrome 41,69,2017-01-18 +session,891,3,Firefox 19,91,2018-02-26 +session,891,4,Safari 44,13,2018-10-27 +session,891,5,Firefox 48,90,2017-09-22 +user,892,Hugh,Tai,37 +session,892,0,Internet Explorer 23,113,2017-08-04 +session,892,1,Internet Explorer 47,43,2017-02-13 +session,892,2,Internet Explorer 35,69,2017-07-27 +session,892,3,Internet Explorer 12,2,2017-03-20 +session,892,4,Internet Explorer 13,82,2018-06-03 +user,893,Eleanora,Nikita,38 +session,893,0,Firefox 37,17,2018-02-23 +user,894,Minh,Tabetha,55 +session,894,0,Firefox 34,81,2019-01-22 +session,894,1,Firefox 13,97,2016-11-16 +session,894,2,Safari 3,52,2017-10-03 +session,894,3,Safari 1,80,2019-01-19 +user,895,Brittani,Jordan,35 +session,895,0,Safari 46,101,2016-10-10 +session,895,1,Chrome 26,12,2018-07-21 +session,895,2,Firefox 18,74,2018-11-06 +session,895,3,Safari 33,26,2018-10-20 +session,895,4,Chrome 24,32,2018-05-16 +session,895,5,Firefox 48,27,2018-07-22 +session,895,6,Firefox 30,36,2016-05-30 +session,895,7,Internet Explorer 39,79,2016-11-21 +session,895,8,Internet Explorer 33,22,2017-09-13 +user,896,Fonda,Rafael,28 +session,896,0,Firefox 12,114,2017-08-19 +session,896,1,Internet Explorer 7,60,2017-07-28 +session,896,2,Safari 34,69,2017-06-16 +session,896,3,Internet Explorer 15,31,2016-09-28 +session,896,4,Safari 19,7,2016-07-22 +session,896,5,Internet Explorer 38,30,2018-05-08 +session,896,6,Internet Explorer 21,0,2017-03-15 +user,897,Mohamed,Nella,31 +session,897,0,Safari 16,54,2018-01-23 +session,897,1,Chrome 1,86,2017-03-07 +user,898,Yajaira,Marcelino,84 +session,898,0,Safari 27,41,2016-12-28 +session,898,1,Chrome 35,63,2016-12-06 +session,898,2,Safari 18,27,2017-08-22 +session,898,3,Internet Explorer 25,23,2017-11-01 +session,898,4,Chrome 2,30,2017-02-24 +session,898,5,Safari 29,102,2018-07-30 +session,898,6,Safari 45,102,2017-01-18 +user,899,Willena,Shira,99 +session,899,0,Internet Explorer 36,108,2017-07-10 +session,899,1,Internet Explorer 43,70,2018-01-07 +session,899,2,Safari 35,1,2016-08-24 +session,899,3,Safari 11,84,2017-04-24 +session,899,4,Firefox 6,52,2017-05-04 +session,899,5,Internet Explorer 32,11,2017-10-22 +user,900,Vonda,Miles,95 +session,900,0,Safari 38,64,2018-12-20 +session,900,1,Chrome 16,30,2016-09-16 +session,900,2,Internet Explorer 29,87,2017-05-04 +session,900,3,Chrome 11,95,2018-04-24 +session,900,4,Chrome 35,64,2017-04-18 +session,900,5,Firefox 34,70,2018-11-10 +session,900,6,Safari 50,101,2018-10-26 +user,901,Lanny,Amado,62 +session,901,0,Firefox 34,101,2016-12-25 +session,901,1,Internet Explorer 25,93,2017-01-06 +session,901,2,Internet Explorer 12,46,2018-04-22 +user,902,Katherina,Laverna,34 +session,902,0,Firefox 27,67,2018-09-27 +session,902,1,Chrome 20,83,2017-04-08 +session,902,2,Chrome 30,38,2017-05-01 +session,902,3,Chrome 41,24,2017-10-02 +session,902,4,Safari 17,62,2017-05-16 +session,902,5,Chrome 5,71,2018-10-30 +session,902,6,Internet Explorer 11,114,2018-03-09 +user,903,Clint,John,94 +session,903,0,Chrome 17,39,2017-01-08 +session,903,1,Firefox 49,37,2017-08-14 +session,903,2,Chrome 12,106,2018-03-27 +user,904,Bernard,Denisse,4 +session,904,0,Internet Explorer 27,23,2018-11-16 +session,904,1,Firefox 19,30,2017-05-11 +session,904,2,Safari 7,101,2017-01-05 +session,904,3,Internet Explorer 1,87,2017-05-21 +session,904,4,Safari 9,34,2019-01-06 +user,905,Freeman,Wan,98 +session,905,0,Chrome 27,47,2018-10-20 +session,905,1,Firefox 21,11,2018-06-27 +session,905,2,Firefox 35,57,2017-09-11 +session,905,3,Firefox 35,40,2016-06-30 +session,905,4,Internet Explorer 10,95,2017-09-24 +session,905,5,Internet Explorer 38,4,2018-09-01 +session,905,6,Safari 12,51,2016-09-06 +session,905,7,Safari 26,74,2017-02-07 +user,906,Johnnie,Rickey,57 +session,906,0,Firefox 21,31,2018-10-23 +session,906,1,Internet Explorer 37,111,2018-04-05 +session,906,2,Firefox 45,81,2018-08-28 +session,906,3,Firefox 6,101,2016-09-24 +session,906,4,Safari 33,98,2018-08-18 +user,907,Tuan,Eleanore,85 +session,907,0,Internet Explorer 27,118,2018-04-04 +session,907,1,Safari 5,84,2017-09-17 +session,907,2,Internet Explorer 23,78,2018-04-24 +session,907,3,Safari 20,77,2018-06-22 +session,907,4,Internet Explorer 21,47,2018-03-06 +user,908,Brittani,Shenita,52 +session,908,0,Internet Explorer 29,87,2016-07-22 +session,908,1,Safari 49,14,2016-08-25 +session,908,2,Internet Explorer 41,90,2016-12-29 +session,908,3,Internet Explorer 49,11,2016-09-24 +session,908,4,Chrome 17,98,2018-12-09 +session,908,5,Chrome 12,28,2016-10-23 +session,908,6,Firefox 14,53,2018-07-23 +session,908,7,Firefox 31,10,2017-09-29 +session,908,8,Safari 3,101,2017-10-26 +user,909,Ulysses,Virgilio,31 +session,909,0,Internet Explorer 29,114,2019-01-10 +session,909,1,Firefox 39,25,2017-11-25 +session,909,2,Firefox 45,31,2017-10-04 +user,910,Hollis,Brendon,31 +session,910,0,Chrome 21,10,2016-10-28 +session,910,1,Chrome 14,68,2017-04-25 +session,910,2,Safari 27,32,2018-12-08 +session,910,3,Firefox 43,79,2018-04-23 +session,910,4,Safari 5,55,2017-02-18 +session,910,5,Chrome 48,30,2016-12-24 +user,911,Carson,Deeanna,89 +session,911,0,Internet Explorer 29,110,2017-09-28 +session,911,1,Safari 17,8,2018-01-29 +session,911,2,Firefox 1,84,2016-06-28 +session,911,3,Chrome 30,107,2018-11-10 +session,911,4,Safari 20,89,2018-06-01 +session,911,5,Internet Explorer 7,8,2018-01-01 +user,912,Willie,Juliann,24 +session,912,0,Internet Explorer 33,31,2018-04-07 +session,912,1,Chrome 37,83,2017-09-07 +session,912,2,Chrome 1,112,2018-01-07 +session,912,3,Firefox 24,73,2017-04-15 +user,913,Dean,Roseann,18 +session,913,0,Safari 7,2,2018-12-14 +session,913,1,Internet Explorer 9,63,2017-08-06 +session,913,2,Internet Explorer 31,79,2016-10-09 +session,913,3,Chrome 33,117,2016-10-19 +session,913,4,Firefox 2,0,2018-12-10 +session,913,5,Internet Explorer 11,101,2016-08-09 +session,913,6,Chrome 14,119,2018-07-21 +session,913,7,Safari 8,2,2018-10-16 +session,913,8,Chrome 50,3,2017-12-04 +user,914,Frankie,Tiny,69 +session,914,0,Chrome 5,105,2016-06-26 +session,914,1,Firefox 45,70,2016-07-10 +session,914,2,Firefox 17,40,2018-08-17 +user,915,Darnell,Ezekiel,20 +session,915,0,Chrome 33,54,2017-01-13 +session,915,1,Chrome 37,118,2016-06-22 +session,915,2,Safari 27,2,2018-11-03 +session,915,3,Firefox 13,48,2018-04-28 +session,915,4,Internet Explorer 1,103,2017-01-11 +session,915,5,Chrome 42,114,2017-06-21 +session,915,6,Firefox 18,61,2016-11-15 +user,916,Cameron,Esperanza,82 +session,916,0,Firefox 1,38,2018-12-07 +session,916,1,Safari 33,76,2016-11-06 +user,917,Graig,Manie,13 +session,917,0,Safari 33,30,2016-08-04 +session,917,1,Chrome 50,85,2017-09-08 +user,918,Saul,Roberta,53 +session,918,0,Firefox 46,67,2016-12-01 +session,918,1,Firefox 23,104,2018-03-12 +session,918,2,Firefox 23,45,2016-10-09 +session,918,3,Internet Explorer 48,114,2017-07-31 +session,918,4,Firefox 7,51,2017-02-08 +session,918,5,Internet Explorer 42,28,2018-10-07 +session,918,6,Safari 18,30,2016-11-24 +session,918,7,Safari 49,92,2018-01-17 +user,919,Debroah,Charlie,24 +session,919,0,Firefox 33,90,2018-11-14 +session,919,1,Internet Explorer 26,5,2017-09-30 +session,919,2,Safari 42,66,2016-07-29 +user,920,Aracelis,Felice,67 +session,920,0,Chrome 34,84,2018-04-05 +session,920,1,Internet Explorer 13,102,2017-02-24 +session,920,2,Internet Explorer 29,48,2018-10-24 +session,920,3,Firefox 48,89,2016-08-10 +session,920,4,Firefox 30,45,2018-05-05 +session,920,5,Firefox 37,103,2018-12-18 +user,921,Elena,Vada,22 +session,921,0,Firefox 17,79,2016-08-26 +session,921,1,Internet Explorer 6,2,2018-02-11 +session,921,2,Chrome 9,113,2016-09-24 +session,921,3,Firefox 17,2,2018-04-09 +session,921,4,Safari 28,36,2018-08-06 +session,921,5,Chrome 3,90,2018-01-17 +user,922,Mari,Javier,93 +session,922,0,Chrome 15,79,2017-09-26 +session,922,1,Chrome 34,0,2018-06-29 +session,922,2,Chrome 40,1,2017-12-28 +session,922,3,Safari 15,59,2016-08-05 +session,922,4,Safari 1,60,2016-05-26 +session,922,5,Internet Explorer 22,7,2016-07-14 +user,923,Vivan,Ward,85 +session,923,0,Chrome 45,26,2017-07-20 +session,923,1,Safari 3,56,2018-11-16 +session,923,2,Safari 26,45,2017-05-28 +session,923,3,Safari 19,73,2016-06-01 +session,923,4,Internet Explorer 43,1,2017-01-02 +session,923,5,Safari 26,91,2016-11-20 +session,923,6,Chrome 6,15,2018-07-28 +session,923,7,Firefox 11,33,2016-12-15 +session,923,8,Firefox 48,104,2018-10-09 +session,923,9,Firefox 47,42,2018-12-18 +user,924,Saundra,Syreeta,22 +session,924,0,Firefox 43,47,2018-02-06 +session,924,1,Safari 29,44,2017-03-10 +session,924,2,Internet Explorer 20,55,2018-10-08 +session,924,3,Safari 41,114,2016-11-15 +session,924,4,Firefox 49,108,2017-02-06 +session,924,5,Safari 30,40,2016-12-04 +session,924,6,Firefox 32,29,2017-06-15 +session,924,7,Firefox 36,24,2017-05-24 +session,924,8,Internet Explorer 12,44,2016-12-14 +user,925,Nathan,Lenna,75 +session,925,0,Chrome 18,4,2017-08-22 +session,925,1,Firefox 39,98,2018-09-29 +session,925,2,Safari 40,100,2016-12-04 +session,925,3,Chrome 47,88,2016-08-18 +session,925,4,Chrome 10,30,2018-03-26 +session,925,5,Safari 45,101,2016-07-21 +session,925,6,Firefox 37,90,2019-01-02 +user,926,Armanda,Jewel,87 +session,926,0,Firefox 4,40,2016-06-27 +session,926,1,Internet Explorer 48,12,2016-07-11 +session,926,2,Chrome 4,22,2018-09-29 +session,926,3,Chrome 34,49,2018-04-30 +session,926,4,Firefox 7,10,2017-02-09 +session,926,5,Firefox 17,84,2017-10-04 +session,926,6,Safari 22,63,2018-08-29 +user,927,Harold,Aliza,75 +session,927,0,Internet Explorer 13,65,2017-05-27 +session,927,1,Internet Explorer 38,18,2017-06-29 +session,927,2,Firefox 49,87,2018-07-03 +user,928,Alfredo,Temika,63 +session,928,0,Chrome 33,79,2018-05-19 +session,928,1,Chrome 6,27,2017-01-06 +session,928,2,Internet Explorer 3,66,2018-07-24 +session,928,3,Firefox 7,21,2017-05-26 +session,928,4,Chrome 20,12,2017-06-01 +user,929,Jose,Zoe,97 +session,929,0,Safari 24,60,2017-10-17 +session,929,1,Chrome 40,29,2018-03-31 +session,929,2,Chrome 6,20,2016-11-19 +session,929,3,Chrome 41,16,2017-03-28 +session,929,4,Chrome 6,23,2018-08-30 +session,929,5,Internet Explorer 27,61,2018-05-14 +session,929,6,Safari 18,3,2018-09-19 +user,930,Sherri,Deedee,39 +session,930,0,Firefox 11,84,2019-01-31 +session,930,1,Chrome 41,0,2018-11-19 +session,930,2,Safari 9,91,2018-02-26 +session,930,3,Firefox 10,49,2017-01-02 +session,930,4,Firefox 4,106,2017-09-27 +session,930,5,Internet Explorer 22,5,2017-06-29 +user,931,Denny,Carissa,45 +session,931,0,Safari 38,116,2018-01-08 +session,931,1,Internet Explorer 47,99,2019-01-25 +user,932,Suzy,Jamel,3 +session,932,0,Firefox 9,89,2018-09-16 +session,932,1,Safari 18,64,2018-05-06 +session,932,2,Internet Explorer 19,71,2018-04-08 +session,932,3,Internet Explorer 40,5,2017-03-06 +session,932,4,Chrome 27,110,2018-07-19 +user,933,Burton,Roxy,93 +session,933,0,Internet Explorer 6,29,2017-11-20 +session,933,1,Chrome 39,7,2017-03-19 +session,933,2,Chrome 46,111,2016-09-07 +user,934,Deon,Maris,75 +session,934,0,Firefox 33,119,2017-03-02 +session,934,1,Internet Explorer 33,72,2017-08-08 +session,934,2,Safari 31,111,2017-09-04 +session,934,3,Safari 25,117,2017-05-22 +session,934,4,Firefox 10,40,2017-10-22 +session,934,5,Safari 15,46,2017-12-29 +user,935,Elias,Ellsworth,95 +session,935,0,Safari 7,103,2016-09-24 +user,936,Paul,Bella,44 +session,936,0,Safari 49,84,2018-03-21 +session,936,1,Firefox 42,105,2017-10-29 +session,936,2,Firefox 19,103,2016-12-02 +user,937,Kasha,Tarsha,4 +session,937,0,Internet Explorer 46,19,2017-09-29 +session,937,1,Firefox 25,14,2018-05-10 +session,937,2,Chrome 35,100,2017-08-03 +session,937,3,Firefox 8,7,2017-12-26 +session,937,4,Firefox 1,92,2017-06-18 +session,937,5,Safari 29,71,2017-04-30 +session,937,6,Internet Explorer 3,92,2017-06-11 +user,938,Shanice,Joan,98 +session,938,0,Safari 15,35,2018-02-27 +session,938,1,Firefox 40,32,2017-10-29 +session,938,2,Internet Explorer 1,80,2016-11-02 +session,938,3,Internet Explorer 9,112,2017-03-01 +session,938,4,Safari 47,17,2018-02-28 +session,938,5,Internet Explorer 16,95,2016-05-23 +session,938,6,Safari 49,72,2018-07-21 +session,938,7,Internet Explorer 28,42,2016-06-25 +user,939,Bertram,Loyd,41 +session,939,0,Safari 24,68,2018-08-28 +user,940,Susann,France,79 +session,940,0,Firefox 1,117,2017-06-20 +session,940,1,Firefox 12,96,2018-01-26 +session,940,2,Safari 27,24,2017-03-19 +session,940,3,Firefox 17,7,2017-01-25 +user,941,Daria,Derick,74 +session,941,0,Firefox 36,114,2017-04-23 +session,941,1,Firefox 42,46,2017-02-10 +user,942,Chet,Scottie,67 +session,942,0,Firefox 47,103,2016-11-30 +session,942,1,Firefox 44,10,2017-05-05 +session,942,2,Firefox 6,90,2018-02-06 +user,943,Giuseppe,Chana,66 +session,943,0,Chrome 19,82,2017-08-14 +session,943,1,Chrome 32,13,2016-08-31 +session,943,2,Safari 6,61,2018-09-29 +user,944,Stephani,Denyse,83 +session,944,0,Firefox 41,33,2017-10-24 +session,944,1,Internet Explorer 42,79,2018-01-22 +session,944,2,Firefox 3,78,2016-08-25 +session,944,3,Chrome 11,46,2016-08-25 +session,944,4,Safari 33,37,2016-08-25 +session,944,5,Firefox 36,113,2018-05-17 +session,944,6,Firefox 49,55,2017-09-12 +session,944,7,Chrome 10,2,2017-12-08 +session,944,8,Safari 22,115,2018-03-31 +user,945,Latisha,Malia,21 +session,945,0,Internet Explorer 17,50,2018-06-16 +session,945,1,Internet Explorer 13,33,2018-05-28 +session,945,2,Safari 30,70,2016-09-10 +session,945,3,Safari 16,4,2016-12-17 +session,945,4,Firefox 46,111,2017-09-16 +session,945,5,Internet Explorer 49,0,2016-10-03 +session,945,6,Firefox 2,50,2018-08-10 +session,945,7,Chrome 26,31,2018-11-16 +session,945,8,Internet Explorer 35,116,2018-12-07 +session,945,9,Safari 12,109,2016-11-26 +user,946,Kurt,Vashti,24 +session,946,0,Safari 26,5,2018-07-05 +session,946,1,Chrome 1,95,2017-12-13 +session,946,2,Safari 10,108,2017-03-31 +session,946,3,Internet Explorer 45,73,2018-02-28 +user,947,Mimi,Asuncion,34 +session,947,0,Safari 35,109,2018-02-10 +session,947,1,Internet Explorer 3,78,2018-12-24 +session,947,2,Safari 50,94,2016-09-16 +session,947,3,Internet Explorer 10,119,2018-12-24 +session,947,4,Chrome 5,52,2017-09-30 +session,947,5,Safari 47,4,2017-09-05 +session,947,6,Internet Explorer 23,43,2018-07-11 +user,948,Sterling,Genevive,72 +session,948,0,Internet Explorer 39,99,2017-02-12 +session,948,1,Chrome 46,10,2018-01-28 +session,948,2,Safari 27,63,2019-01-13 +session,948,3,Internet Explorer 7,57,2017-04-09 +user,949,Loyd,Palmer,89 +session,949,0,Safari 39,27,2016-07-12 +session,949,1,Firefox 39,89,2017-05-24 +session,949,2,Internet Explorer 49,68,2017-01-02 +session,949,3,Firefox 34,49,2017-10-18 +session,949,4,Chrome 6,115,2017-06-03 +session,949,5,Chrome 46,27,2016-10-07 +session,949,6,Safari 39,87,2017-07-24 +session,949,7,Firefox 8,55,2018-09-26 +session,949,8,Chrome 18,11,2016-05-29 +session,949,9,Internet Explorer 6,46,2018-08-14 +user,950,Emmett,Charles,24 +session,950,0,Firefox 32,18,2018-10-27 +session,950,1,Internet Explorer 48,114,2016-08-13 +session,950,2,Internet Explorer 6,66,2017-09-23 +user,951,Teodora,Bruce,76 +session,951,0,Chrome 13,66,2018-11-29 +session,951,1,Firefox 10,100,2018-08-06 +session,951,2,Chrome 2,7,2018-03-20 +session,951,3,Firefox 30,45,2017-11-07 +session,951,4,Firefox 6,59,2018-08-13 +session,951,5,Internet Explorer 50,59,2017-01-14 +session,951,6,Safari 43,91,2018-03-28 +session,951,7,Internet Explorer 26,81,2019-01-12 +session,951,8,Chrome 42,111,2017-07-09 +session,951,9,Firefox 30,41,2018-02-01 +user,952,Micki,Ena,77 +session,952,0,Internet Explorer 30,15,2017-12-15 +user,953,Noble,Brigitte,63 +session,953,0,Safari 28,43,2018-10-07 +session,953,1,Internet Explorer 36,20,2017-08-26 +user,954,Walter,Coralee,53 +session,954,0,Internet Explorer 25,97,2016-08-25 +session,954,1,Internet Explorer 22,13,2017-08-08 +session,954,2,Firefox 43,90,2017-10-28 +user,955,Dannie,Shaneka,74 +session,955,0,Safari 10,62,2016-05-29 +session,955,1,Firefox 50,94,2016-12-19 +session,955,2,Internet Explorer 34,2,2017-05-07 +session,955,3,Chrome 39,62,2018-10-25 +session,955,4,Chrome 30,73,2017-11-08 +session,955,5,Internet Explorer 34,82,2018-12-05 +session,955,6,Firefox 49,32,2016-08-01 +session,955,7,Safari 32,31,2019-02-07 +user,956,Pauline,Lorrie,42 +session,956,0,Firefox 14,28,2017-08-03 +session,956,1,Chrome 9,33,2017-05-03 +session,956,2,Internet Explorer 3,112,2017-07-26 +session,956,3,Chrome 41,32,2017-04-29 +session,956,4,Chrome 44,53,2018-10-15 +session,956,5,Chrome 49,22,2017-09-06 +session,956,6,Chrome 13,92,2016-09-10 +user,957,Carly,Gertrudis,24 +session,957,0,Chrome 6,8,2018-11-08 +user,958,Earle,Tobi,63 +session,958,0,Safari 3,14,2018-11-27 +user,959,Luther,Olive,42 +session,959,0,Firefox 23,42,2018-11-03 +session,959,1,Internet Explorer 14,16,2017-05-07 +session,959,2,Internet Explorer 45,119,2018-01-26 +session,959,3,Safari 14,14,2017-04-28 +session,959,4,Safari 50,89,2017-07-03 +session,959,5,Safari 14,99,2018-01-17 +user,960,Barney,Carolyne,67 +session,960,0,Safari 30,34,2016-10-13 +session,960,1,Chrome 31,46,2018-04-24 +session,960,2,Chrome 23,98,2017-08-22 +session,960,3,Safari 41,99,2018-08-14 +session,960,4,Chrome 29,57,2018-09-18 +session,960,5,Safari 18,10,2018-02-12 +session,960,6,Safari 8,68,2016-10-14 +user,961,Fred,Kenna,98 +session,961,0,Safari 30,35,2017-10-03 +session,961,1,Chrome 24,29,2017-09-17 +session,961,2,Safari 50,30,2017-06-28 +user,962,Boyd,Hyacinth,62 +session,962,0,Safari 31,100,2016-06-10 +session,962,1,Safari 15,23,2018-06-27 +session,962,2,Firefox 46,37,2018-05-30 +session,962,3,Safari 23,45,2018-10-26 +session,962,4,Internet Explorer 35,90,2017-11-01 +session,962,5,Internet Explorer 9,117,2017-06-20 +session,962,6,Safari 19,25,2016-11-08 +session,962,7,Safari 23,76,2018-04-24 +session,962,8,Safari 47,55,2018-02-19 +user,963,Grover,Lelia,46 +session,963,0,Chrome 44,80,2017-06-27 +session,963,1,Internet Explorer 18,57,2017-12-16 +session,963,2,Firefox 6,118,2016-10-13 +session,963,3,Firefox 46,74,2019-01-14 +session,963,4,Chrome 25,98,2018-12-25 +session,963,5,Safari 4,26,2018-12-16 +session,963,6,Chrome 32,71,2018-10-13 +user,964,Kisha,Sabine,54 +session,964,0,Safari 7,69,2018-10-08 +session,964,1,Internet Explorer 4,105,2018-08-15 +session,964,2,Safari 43,64,2016-10-05 +user,965,Lissette,Lakendra,41 +session,965,0,Chrome 38,98,2018-11-10 +user,966,Adolfo,Evita,30 +session,966,0,Internet Explorer 36,80,2018-02-11 +session,966,1,Chrome 26,45,2016-08-07 +session,966,2,Internet Explorer 23,3,2019-01-24 +session,966,3,Firefox 43,24,2018-04-23 +session,966,4,Chrome 28,90,2016-12-29 +session,966,5,Chrome 11,18,2017-01-18 +session,966,6,Firefox 38,74,2016-09-28 +session,966,7,Internet Explorer 8,28,2018-11-02 +session,966,8,Safari 8,51,2017-04-03 +session,966,9,Safari 24,101,2018-08-27 +user,967,Belia,Lilly,18 +session,967,0,Safari 33,66,2016-06-19 +session,967,1,Firefox 42,44,2016-12-09 +session,967,2,Firefox 10,73,2018-03-11 +session,967,3,Chrome 12,47,2019-02-12 +session,967,4,Safari 35,98,2016-09-12 +session,967,5,Safari 41,61,2016-06-18 +session,967,6,Chrome 11,82,2017-11-19 +session,967,7,Internet Explorer 10,43,2017-11-15 +user,968,Pandora,Marlena,36 +session,968,0,Safari 16,5,2018-03-06 +session,968,1,Chrome 39,37,2018-09-19 +session,968,2,Internet Explorer 11,70,2017-10-14 +session,968,3,Safari 1,23,2018-03-21 +session,968,4,Firefox 22,112,2017-03-16 +user,969,Marlin,Pedro,10 +session,969,0,Internet Explorer 42,54,2017-04-21 +session,969,1,Firefox 7,78,2018-11-27 +session,969,2,Firefox 48,36,2017-06-24 +session,969,3,Internet Explorer 23,114,2018-08-27 +user,970,Adaline,Vilma,27 +session,970,0,Internet Explorer 41,3,2016-11-22 +session,970,1,Chrome 9,5,2017-09-08 +session,970,2,Safari 36,11,2018-03-12 +session,970,3,Firefox 2,17,2018-05-07 +session,970,4,Internet Explorer 33,8,2018-05-17 +session,970,5,Internet Explorer 46,49,2018-02-18 +session,970,6,Chrome 50,3,2016-06-29 +session,970,7,Chrome 37,12,2016-12-30 +user,971,Wilfred,Reatha,93 +session,971,0,Firefox 39,80,2016-06-29 +session,971,1,Firefox 34,82,2019-02-04 +session,971,2,Firefox 47,32,2018-06-23 +session,971,3,Internet Explorer 49,48,2017-09-22 +session,971,4,Chrome 37,67,2018-03-09 +session,971,5,Safari 47,83,2016-11-10 +session,971,6,Safari 17,66,2017-12-16 +session,971,7,Chrome 8,29,2017-02-24 +user,972,Connie,Norine,2 +session,972,0,Safari 9,22,2018-03-23 +session,972,1,Safari 42,9,2016-08-21 +user,973,Hank,Zetta,62 +session,973,0,Internet Explorer 16,40,2019-02-06 +user,974,Malcolm,Georgianne,21 +session,974,0,Chrome 35,58,2016-05-28 +session,974,1,Safari 44,118,2017-06-29 +session,974,2,Safari 46,96,2019-02-06 +session,974,3,Firefox 29,26,2018-04-05 +session,974,4,Internet Explorer 43,92,2017-04-30 +session,974,5,Internet Explorer 27,2,2016-08-12 +session,974,6,Internet Explorer 13,80,2016-06-14 +session,974,7,Chrome 12,61,2018-02-21 +session,974,8,Firefox 39,101,2017-01-08 +user,975,Toby,Angelina,88 +session,975,0,Firefox 27,56,2018-09-20 +session,975,1,Firefox 31,4,2016-06-23 +session,975,2,Internet Explorer 34,65,2018-03-18 +session,975,3,Firefox 33,17,2017-09-09 +session,975,4,Internet Explorer 2,89,2018-06-16 +user,976,Ellamae,Nereida,44 +session,976,0,Firefox 4,3,2017-08-30 +session,976,1,Firefox 46,56,2016-12-17 +session,976,2,Firefox 19,84,2017-04-07 +session,976,3,Safari 39,113,2018-12-21 +session,976,4,Firefox 22,71,2017-09-10 +session,976,5,Chrome 32,100,2018-11-02 +session,976,6,Internet Explorer 9,35,2018-10-21 +session,976,7,Internet Explorer 38,1,2017-07-08 +session,976,8,Chrome 2,3,2019-02-02 +session,976,9,Firefox 38,60,2018-02-14 +user,977,Frank,Shu,71 +session,977,0,Safari 49,81,2018-08-10 +session,977,1,Safari 28,96,2016-06-25 +session,977,2,Internet Explorer 41,22,2016-12-29 +session,977,3,Chrome 15,9,2018-02-28 +session,977,4,Firefox 8,53,2019-01-15 +session,977,5,Internet Explorer 36,82,2017-04-21 +user,978,Lettie,Dani,46 +session,978,0,Firefox 47,93,2017-12-06 +session,978,1,Safari 4,36,2018-10-15 +session,978,2,Internet Explorer 3,5,2018-03-03 +session,978,3,Safari 7,15,2018-06-11 +user,979,Juliette,Thanh,71 +session,979,0,Internet Explorer 11,83,2017-12-15 +session,979,1,Internet Explorer 35,2,2017-11-06 +session,979,2,Internet Explorer 44,112,2016-07-19 +session,979,3,Internet Explorer 11,5,2018-02-05 +user,980,Major,Felisa,27 +session,980,0,Firefox 48,81,2018-10-23 +session,980,1,Chrome 22,16,2019-01-02 +session,980,2,Safari 16,21,2017-03-03 +session,980,3,Firefox 43,97,2018-03-31 +session,980,4,Chrome 10,77,2018-01-24 +session,980,5,Chrome 47,33,2018-07-16 +session,980,6,Chrome 33,119,2019-01-27 +user,981,Alva,Audie,29 +session,981,0,Safari 36,83,2018-05-30 +session,981,1,Safari 33,33,2017-01-28 +session,981,2,Firefox 3,66,2017-11-17 +session,981,3,Safari 19,43,2017-10-06 +session,981,4,Internet Explorer 23,84,2016-10-25 +session,981,5,Safari 28,26,2016-11-19 +session,981,6,Internet Explorer 44,22,2018-07-16 +user,982,Jere,Lashanda,46 +session,982,0,Firefox 1,82,2018-12-07 +session,982,1,Chrome 15,74,2018-07-22 +session,982,2,Firefox 24,83,2016-10-08 +session,982,3,Internet Explorer 49,5,2018-02-05 +session,982,4,Safari 40,66,2017-01-05 +session,982,5,Safari 12,39,2018-11-30 +session,982,6,Safari 45,79,2017-01-20 +session,982,7,Safari 23,76,2016-07-22 +session,982,8,Chrome 37,1,2016-12-27 +user,983,Elliot,Sylvia,33 +session,983,0,Chrome 22,104,2017-03-21 +session,983,1,Firefox 23,9,2018-07-29 +session,983,2,Chrome 28,98,2017-08-10 +session,983,3,Safari 42,86,2018-02-27 +session,983,4,Firefox 32,28,2017-09-26 +session,983,5,Chrome 5,73,2017-05-04 +session,983,6,Chrome 6,65,2019-01-19 +user,984,Leopoldo,Alvaro,55 +session,984,0,Chrome 16,7,2018-06-23 +session,984,1,Firefox 8,101,2017-09-18 +session,984,2,Internet Explorer 9,98,2018-10-26 +user,985,Ronald,Berniece,70 +session,985,0,Chrome 21,116,2017-07-05 +session,985,1,Chrome 6,1,2019-01-17 +session,985,2,Safari 19,20,2016-07-19 +session,985,3,Firefox 12,87,2018-08-28 +session,985,4,Internet Explorer 10,94,2017-03-15 +session,985,5,Firefox 2,45,2018-12-15 +session,985,6,Firefox 10,100,2018-09-22 +session,985,7,Internet Explorer 25,78,2017-07-26 +user,986,Luigi,Lakisha,40 +session,986,0,Chrome 17,10,2017-07-18 +session,986,1,Internet Explorer 29,31,2016-10-02 +session,986,2,Safari 28,65,2016-08-04 +session,986,3,Firefox 38,118,2016-09-25 +session,986,4,Safari 44,53,2018-05-28 +session,986,5,Firefox 14,45,2018-08-09 +session,986,6,Firefox 35,68,2018-09-17 +session,986,7,Chrome 4,79,2018-09-29 +user,987,Kanisha,Karyl,69 +session,987,0,Chrome 39,79,2017-12-24 +session,987,1,Safari 12,114,2016-10-04 +session,987,2,Firefox 13,62,2016-06-17 +session,987,3,Internet Explorer 33,23,2018-01-27 +session,987,4,Firefox 18,2,2018-06-29 +session,987,5,Internet Explorer 48,101,2018-03-22 +user,988,Marvin,Ebony,34 +session,988,0,Firefox 42,81,2018-12-02 +session,988,1,Internet Explorer 39,32,2019-01-04 +session,988,2,Internet Explorer 44,64,2017-12-04 +session,988,3,Safari 2,2,2017-01-11 +session,988,4,Firefox 15,119,2017-06-14 +user,989,Casimira,Terina,82 +session,989,0,Firefox 1,46,2016-07-06 +session,989,1,Internet Explorer 8,47,2016-06-17 +session,989,2,Chrome 32,1,2018-01-09 +session,989,3,Safari 40,119,2018-01-04 +session,989,4,Internet Explorer 17,59,2018-10-01 +session,989,5,Firefox 29,106,2017-04-19 +session,989,6,Chrome 37,72,2017-09-09 +session,989,7,Safari 13,8,2016-08-08 +session,989,8,Firefox 43,39,2018-07-01 +user,990,Tory,Ashlyn,52 +session,990,0,Safari 5,111,2018-08-31 +user,991,Zane,Love,42 +session,991,0,Safari 12,42,2017-01-24 +session,991,1,Internet Explorer 27,9,2017-09-27 +session,991,2,Firefox 41,112,2018-05-31 +session,991,3,Internet Explorer 4,57,2018-05-28 +user,992,Ron,Terrence,20 +session,992,0,Chrome 1,7,2018-01-21 +session,992,1,Chrome 42,60,2018-09-27 +session,992,2,Safari 46,0,2018-05-27 +session,992,3,Safari 42,99,2016-06-19 +session,992,4,Internet Explorer 31,81,2018-06-20 +session,992,5,Safari 19,109,2018-10-15 +session,992,6,Internet Explorer 38,26,2017-11-05 +session,992,7,Chrome 5,16,2016-08-05 +session,992,8,Safari 40,84,2017-10-24 +session,992,9,Chrome 19,20,2016-08-09 +user,993,Tawana,Tula,86 +session,993,0,Safari 44,92,2018-12-20 +session,993,1,Safari 36,29,2017-05-19 +session,993,2,Chrome 35,74,2018-07-28 +session,993,3,Internet Explorer 41,69,2018-12-31 +session,993,4,Chrome 22,30,2017-05-06 +session,993,5,Internet Explorer 4,104,2018-12-31 +session,993,6,Internet Explorer 24,54,2017-02-12 +session,993,7,Firefox 33,42,2017-07-14 +user,994,Lorna,Matthew,39 +session,994,0,Firefox 47,87,2016-10-27 +session,994,1,Firefox 11,95,2018-03-14 +session,994,2,Internet Explorer 34,46,2016-08-30 +user,995,Emeline,Lia,10 +session,995,0,Internet Explorer 49,61,2018-12-22 +session,995,1,Chrome 36,18,2017-10-29 +session,995,2,Internet Explorer 11,5,2018-06-18 +session,995,3,Safari 5,105,2016-12-17 +session,995,4,Firefox 27,119,2016-12-10 +user,996,Nathaniel,Herb,71 +session,996,0,Chrome 11,13,2017-04-29 +session,996,1,Safari 37,107,2017-03-23 +session,996,2,Firefox 26,118,2018-03-31 +session,996,3,Firefox 15,113,2017-07-02 +session,996,4,Safari 27,4,2017-09-19 +session,996,5,Chrome 25,83,2016-07-16 +session,996,6,Firefox 44,40,2018-10-23 +user,997,Domingo,Tracey,4 +session,997,0,Safari 27,76,2018-08-10 +session,997,1,Firefox 8,26,2018-07-06 +user,998,Gayle,Nedra,82 +session,998,0,Chrome 16,52,2016-09-29 +session,998,1,Chrome 14,82,2017-06-27 +session,998,2,Safari 11,24,2016-12-28 +user,999,Shea,Latosha,46 +session,999,0,Internet Explorer 49,20,2016-10-20 +session,999,1,Chrome 45,94,2016-11-17 +session,999,2,Firefox 19,23,2016-08-06 +session,999,3,Safari 12,55,2016-07-25 +session,999,4,Internet Explorer 1,32,2018-06-11 +user,1000,Alline,Natividad,46 +session,1000,0,Internet Explorer 36,26,2017-08-20 +session,1000,1,Internet Explorer 32,29,2017-08-18 +user,1001,Parthenia,Travis,59 +session,1001,0,Firefox 46,45,2017-06-17 +session,1001,1,Internet Explorer 48,52,2018-11-13 +session,1001,2,Safari 27,15,2018-07-12 +user,1002,Troy,Shannon,71 +session,1002,0,Internet Explorer 28,100,2018-07-29 +session,1002,1,Internet Explorer 30,6,2018-07-23 +session,1002,2,Safari 35,93,2016-11-04 +session,1002,3,Safari 24,14,2016-07-16 +session,1002,4,Chrome 10,92,2016-07-11 +session,1002,5,Safari 44,3,2018-09-16 +session,1002,6,Chrome 20,14,2017-01-24 +session,1002,7,Chrome 4,11,2018-11-06 +session,1002,8,Firefox 29,21,2017-02-14 +session,1002,9,Chrome 29,27,2016-11-08 +user,1003,Hanna,Willis,91 +session,1003,0,Internet Explorer 46,85,2018-10-28 +session,1003,1,Safari 31,51,2016-10-07 +session,1003,2,Safari 19,60,2017-08-05 +session,1003,3,Firefox 34,90,2016-09-13 +session,1003,4,Firefox 8,54,2018-05-13 +session,1003,5,Safari 5,24,2017-05-08 +session,1003,6,Chrome 26,68,2018-11-15 +session,1003,7,Internet Explorer 40,82,2017-04-17 +session,1003,8,Safari 21,12,2017-08-22 +session,1003,9,Safari 13,45,2018-09-17 +user,1004,Timothy,Demetrius,5 +session,1004,0,Internet Explorer 20,105,2018-03-07 +session,1004,1,Chrome 5,61,2018-12-22 +session,1004,2,Safari 49,97,2017-11-22 +session,1004,3,Firefox 16,56,2017-09-28 +session,1004,4,Safari 17,60,2018-10-05 +session,1004,5,Safari 30,114,2016-08-08 +session,1004,6,Firefox 33,42,2018-01-01 +session,1004,7,Chrome 25,101,2017-03-08 +session,1004,8,Chrome 34,28,2017-10-03 +user,1005,Sanford,Deann,57 +session,1005,0,Safari 32,61,2018-02-12 +session,1005,1,Safari 33,48,2018-06-08 +session,1005,2,Safari 49,27,2018-07-23 +user,1006,Carisa,Cesar,76 +session,1006,0,Firefox 30,93,2018-03-28 +session,1006,1,Firefox 27,27,2016-09-04 +session,1006,2,Firefox 25,93,2017-11-10 +session,1006,3,Chrome 26,16,2017-06-19 +session,1006,4,Firefox 35,32,2018-05-11 +session,1006,5,Firefox 19,42,2018-02-16 +session,1006,6,Safari 31,66,2018-05-19 +user,1007,Jared,Svetlana,20 +session,1007,0,Internet Explorer 34,75,2016-07-28 +session,1007,1,Firefox 20,59,2018-06-20 +session,1007,2,Chrome 22,68,2017-10-16 +user,1008,Alton,Brigid,11 +session,1008,0,Chrome 28,94,2016-10-12 +session,1008,1,Internet Explorer 21,116,2018-05-19 +session,1008,2,Safari 26,65,2018-05-04 +session,1008,3,Internet Explorer 19,5,2017-08-05 +session,1008,4,Chrome 40,76,2018-08-17 +session,1008,5,Safari 26,76,2017-08-27 +session,1008,6,Internet Explorer 48,53,2017-07-21 +session,1008,7,Safari 20,112,2017-03-19 +session,1008,8,Safari 45,35,2018-06-21 +session,1008,9,Internet Explorer 50,38,2018-08-25 +user,1009,Rory,Landon,80 +session,1009,0,Firefox 30,64,2016-06-05 +session,1009,1,Internet Explorer 36,12,2017-06-23 +session,1009,2,Safari 44,24,2018-08-27 +session,1009,3,Internet Explorer 37,114,2017-03-10 +session,1009,4,Safari 38,77,2018-06-16 +session,1009,5,Safari 15,51,2018-09-14 +session,1009,6,Firefox 42,95,2017-03-05 +session,1009,7,Firefox 47,79,2016-11-02 +user,1010,Audrie,Annette,96 +session,1010,0,Safari 30,33,2018-04-15 +session,1010,1,Internet Explorer 31,9,2016-07-01 +session,1010,2,Chrome 46,60,2017-02-09 +session,1010,3,Safari 47,8,2018-06-25 +session,1010,4,Firefox 35,105,2019-02-02 +session,1010,5,Internet Explorer 31,44,2017-04-25 +user,1011,Edison,Mee,6 +session,1011,0,Internet Explorer 10,107,2016-10-01 +session,1011,1,Chrome 21,119,2016-12-22 +session,1011,2,Internet Explorer 41,91,2017-06-21 +session,1011,3,Chrome 33,113,2016-06-22 +session,1011,4,Chrome 27,27,2018-05-28 +session,1011,5,Safari 32,7,2018-02-27 +session,1011,6,Safari 40,66,2017-06-09 +session,1011,7,Internet Explorer 19,84,2017-02-11 +user,1012,Gordon,Eliseo,27 +session,1012,0,Firefox 41,29,2016-10-07 +session,1012,1,Chrome 20,50,2018-08-06 +session,1012,2,Safari 28,53,2017-01-31 +session,1012,3,Chrome 35,66,2018-03-13 +session,1012,4,Chrome 46,106,2017-06-15 +session,1012,5,Internet Explorer 24,25,2017-07-13 +user,1013,Mac,Barbar,3 +session,1013,0,Chrome 50,14,2017-06-22 +session,1013,1,Chrome 5,117,2017-04-09 +session,1013,2,Safari 15,6,2016-06-02 +session,1013,3,Chrome 47,33,2018-10-07 +session,1013,4,Safari 40,35,2017-12-27 +session,1013,5,Chrome 35,19,2017-10-15 +user,1014,Hugh,Leanne,54 +session,1014,0,Safari 7,99,2017-03-08 +session,1014,1,Internet Explorer 11,115,2016-09-17 +session,1014,2,Chrome 41,118,2018-01-06 +user,1015,Leif,Joni,38 +session,1015,0,Safari 16,93,2017-11-08 +session,1015,1,Firefox 7,34,2018-01-10 +session,1015,2,Safari 18,17,2017-06-02 +session,1015,3,Safari 26,95,2018-09-13 +session,1015,4,Internet Explorer 1,62,2017-09-05 +user,1016,Elliott,Jennifer,61 +session,1016,0,Firefox 48,64,2018-06-25 +user,1017,Alden,Oda,46 +session,1017,0,Firefox 24,102,2018-12-13 +user,1018,Cortney,Cornell,31 +session,1018,0,Chrome 12,21,2018-11-08 +session,1018,1,Safari 23,11,2017-12-28 +session,1018,2,Safari 39,41,2017-12-02 +session,1018,3,Safari 14,28,2017-12-08 +session,1018,4,Internet Explorer 37,65,2016-06-17 +session,1018,5,Internet Explorer 49,107,2018-04-27 +user,1019,Mara,Sammie,55 +session,1019,0,Firefox 42,22,2018-01-08 +user,1020,Keith,Shasta,28 +session,1020,0,Safari 40,117,2017-09-10 +session,1020,1,Chrome 45,83,2018-05-29 +user,1021,Long,Jacque,24 +session,1021,0,Safari 25,73,2016-11-25 +session,1021,1,Chrome 29,87,2017-11-01 +session,1021,2,Internet Explorer 47,19,2018-04-16 +session,1021,3,Internet Explorer 29,95,2016-07-19 +session,1021,4,Firefox 36,28,2018-11-18 +session,1021,5,Chrome 31,62,2017-11-02 +session,1021,6,Chrome 15,20,2018-12-08 +session,1021,7,Chrome 49,69,2018-03-07 +session,1021,8,Internet Explorer 23,77,2016-10-11 +user,1022,Whitney,Joi,45 +session,1022,0,Internet Explorer 16,79,2018-09-02 +user,1023,Hien,Mathilde,29 +session,1023,0,Firefox 8,91,2018-01-31 +session,1023,1,Internet Explorer 44,57,2017-09-15 +user,1024,Alica,Yee,62 +session,1024,0,Firefox 21,90,2017-08-26 +session,1024,1,Safari 26,67,2016-08-24 +session,1024,2,Chrome 2,34,2017-05-11 +session,1024,3,Firefox 15,69,2017-08-22 +session,1024,4,Firefox 46,5,2017-02-10 +session,1024,5,Internet Explorer 10,39,2017-07-21 +user,1025,Cole,Socorro,16 +session,1025,0,Chrome 17,64,2018-11-09 +session,1025,1,Internet Explorer 48,83,2017-11-08 +session,1025,2,Firefox 1,33,2018-03-03 +session,1025,3,Safari 17,97,2018-07-08 +user,1026,Leota,Ismael,12 +session,1026,0,Internet Explorer 6,106,2016-12-13 +session,1026,1,Firefox 36,102,2017-05-13 +session,1026,2,Internet Explorer 18,28,2019-02-07 +session,1026,3,Chrome 15,13,2018-06-07 +session,1026,4,Firefox 36,38,2018-09-09 +session,1026,5,Chrome 44,113,2016-08-11 +session,1026,6,Internet Explorer 50,56,2017-02-18 +user,1027,Reggie,Vallie,86 +session,1027,0,Safari 38,28,2016-06-25 +session,1027,1,Safari 29,39,2017-03-14 +session,1027,2,Safari 36,72,2017-06-24 +session,1027,3,Safari 34,86,2016-09-21 +user,1028,Raphael,Nancee,75 +session,1028,0,Chrome 16,38,2017-07-13 +session,1028,1,Safari 3,21,2017-05-24 +session,1028,2,Chrome 36,48,2017-04-14 +session,1028,3,Safari 19,7,2017-07-22 +session,1028,4,Safari 28,34,2016-11-20 +session,1028,5,Internet Explorer 17,1,2017-07-23 +session,1028,6,Chrome 17,97,2017-04-09 +session,1028,7,Safari 30,19,2018-05-02 +session,1028,8,Chrome 42,103,2017-08-11 +user,1029,Klara,Florine,60 +session,1029,0,Safari 31,11,2016-11-05 +user,1030,Douglass,Jasmine,30 +session,1030,0,Safari 10,44,2018-08-09 +session,1030,1,Firefox 18,20,2016-10-03 +session,1030,2,Safari 37,26,2017-01-07 +session,1030,3,Firefox 13,55,2018-10-03 +session,1030,4,Safari 11,113,2016-07-13 +session,1030,5,Chrome 41,7,2018-08-15 +session,1030,6,Chrome 14,107,2017-09-23 +session,1030,7,Internet Explorer 18,71,2018-12-21 +session,1030,8,Safari 12,112,2017-10-19 +session,1030,9,Firefox 37,41,2017-04-27 +user,1031,Sidney,Rebbecca,21 +session,1031,0,Chrome 10,109,2018-11-05 +session,1031,1,Chrome 49,21,2017-10-23 +session,1031,2,Safari 26,38,2016-09-30 +session,1031,3,Safari 18,59,2018-01-30 +session,1031,4,Firefox 5,53,2018-09-19 +user,1032,Alberto,Chantelle,62 +session,1032,0,Firefox 44,19,2017-01-21 +session,1032,1,Firefox 4,34,2018-09-21 +session,1032,2,Safari 36,42,2018-07-26 +session,1032,3,Chrome 30,76,2017-09-08 +session,1032,4,Chrome 19,5,2017-09-27 +user,1033,Jeramy,Aide,11 +session,1033,0,Safari 10,45,2017-10-13 +session,1033,1,Firefox 3,43,2017-06-23 +user,1034,Muoi,Lovetta,41 +session,1034,0,Safari 30,8,2016-09-13 +session,1034,1,Internet Explorer 21,112,2017-08-01 +session,1034,2,Internet Explorer 17,61,2017-12-29 +session,1034,3,Internet Explorer 35,65,2018-09-11 +session,1034,4,Firefox 44,103,2017-07-05 +session,1034,5,Internet Explorer 39,56,2018-11-04 +session,1034,6,Safari 3,116,2019-01-08 +session,1034,7,Chrome 50,44,2017-02-26 +user,1035,Odis,Bertie,23 +session,1035,0,Firefox 24,25,2016-10-05 +session,1035,1,Firefox 38,79,2016-07-15 +session,1035,2,Firefox 17,81,2017-04-14 +session,1035,3,Firefox 35,38,2017-06-17 +session,1035,4,Chrome 10,48,2017-06-03 +session,1035,5,Safari 7,84,2017-07-20 +session,1035,6,Safari 8,14,2018-03-04 +session,1035,7,Chrome 2,87,2017-03-15 +session,1035,8,Chrome 39,26,2016-09-27 +session,1035,9,Internet Explorer 12,45,2016-11-02 +user,1036,Albina,Eugenio,20 +session,1036,0,Internet Explorer 44,59,2018-05-31 +session,1036,1,Internet Explorer 2,11,2016-06-25 +session,1036,2,Internet Explorer 2,84,2016-08-16 +session,1036,3,Safari 27,58,2017-05-14 +session,1036,4,Internet Explorer 29,117,2018-10-15 +session,1036,5,Firefox 22,25,2018-01-22 +session,1036,6,Safari 16,48,2018-07-12 +session,1036,7,Chrome 25,116,2017-10-15 +session,1036,8,Chrome 34,5,2016-12-12 +session,1036,9,Chrome 13,15,2018-02-09 +user,1037,Therese,Lazaro,49 +session,1037,0,Safari 15,46,2016-12-15 +session,1037,1,Chrome 27,51,2018-02-05 +session,1037,2,Chrome 30,52,2016-09-27 +session,1037,3,Firefox 40,60,2018-06-23 +session,1037,4,Safari 16,60,2016-12-22 +session,1037,5,Firefox 13,72,2018-08-08 +session,1037,6,Firefox 3,75,2016-09-04 +session,1037,7,Chrome 47,49,2017-07-29 +session,1037,8,Chrome 10,15,2017-07-25 +user,1038,Emanuel,Aline,68 +session,1038,0,Internet Explorer 34,105,2017-05-06 +user,1039,Dian,Alla,26 +session,1039,0,Safari 8,58,2016-12-17 +session,1039,1,Safari 5,87,2018-11-02 +session,1039,2,Chrome 46,88,2017-03-17 +user,1040,Woodrow,Marcela,23 +session,1040,0,Chrome 26,100,2018-04-27 +session,1040,1,Safari 18,73,2018-10-30 +session,1040,2,Safari 34,39,2017-02-27 +session,1040,3,Safari 26,118,2018-10-26 +session,1040,4,Firefox 41,110,2018-07-24 +user,1041,Sharron,Sharri,87 +session,1041,0,Chrome 39,66,2018-03-25 +session,1041,1,Internet Explorer 11,20,2016-08-29 +session,1041,2,Safari 15,41,2016-10-23 +session,1041,3,Firefox 14,112,2016-08-03 +session,1041,4,Chrome 45,33,2017-07-19 +session,1041,5,Safari 32,24,2017-04-25 +user,1042,Carrol,Michaela,45 +session,1042,0,Internet Explorer 10,46,2018-12-14 +session,1042,1,Safari 3,36,2018-11-20 +session,1042,2,Firefox 31,45,2017-05-27 +session,1042,3,Chrome 40,33,2018-12-08 +user,1043,Daryl,Augusta,96 +session,1043,0,Safari 25,20,2016-05-21 +session,1043,1,Internet Explorer 42,19,2018-12-23 +user,1044,Brendan,Tosha,45 +session,1044,0,Safari 28,112,2018-05-25 +session,1044,1,Internet Explorer 7,83,2018-09-13 +session,1044,2,Safari 20,110,2018-11-05 +session,1044,3,Safari 37,23,2017-01-11 +session,1044,4,Safari 11,99,2017-01-29 +session,1044,5,Firefox 20,62,2017-09-13 +session,1044,6,Firefox 38,17,2018-11-27 +session,1044,7,Firefox 23,0,2017-09-17 +user,1045,Casimira,Edmond,96 +session,1045,0,Safari 7,37,2017-10-17 +session,1045,1,Safari 18,37,2016-05-28 +session,1045,2,Safari 39,26,2018-10-24 +session,1045,3,Safari 25,56,2017-10-21 +session,1045,4,Safari 34,57,2017-01-18 +session,1045,5,Internet Explorer 29,81,2017-05-13 +user,1046,Mirella,Shonda,4 +session,1046,0,Internet Explorer 9,41,2017-01-15 +session,1046,1,Firefox 44,8,2018-11-30 +session,1046,2,Internet Explorer 50,37,2016-08-20 +session,1046,3,Safari 27,59,2016-06-26 +session,1046,4,Firefox 7,36,2016-11-01 +user,1047,Leonore,Clelia,23 +session,1047,0,Firefox 31,81,2017-07-12 +user,1048,Hedy,Mammie,84 +session,1048,0,Firefox 21,99,2016-06-24 +session,1048,1,Firefox 5,91,2017-11-30 +session,1048,2,Chrome 11,117,2017-10-17 +session,1048,3,Chrome 13,17,2017-12-08 +session,1048,4,Internet Explorer 10,46,2017-04-16 +user,1049,Ramon,Jennine,67 +session,1049,0,Safari 26,46,2016-10-18 +session,1049,1,Chrome 17,45,2018-10-05 +session,1049,2,Firefox 21,101,2017-08-27 +session,1049,3,Internet Explorer 25,2,2017-02-27 +session,1049,4,Internet Explorer 17,72,2016-10-23 +session,1049,5,Chrome 20,17,2017-10-04 +session,1049,6,Safari 30,63,2017-07-08 +session,1049,7,Internet Explorer 6,68,2016-12-21 +session,1049,8,Chrome 36,31,2018-04-25 +user,1050,Leland,Chrissy,75 +session,1050,0,Internet Explorer 49,70,2017-08-17 +session,1050,1,Firefox 48,16,2018-06-03 +session,1050,2,Internet Explorer 41,58,2018-07-15 +session,1050,3,Firefox 34,71,2018-01-04 +session,1050,4,Internet Explorer 30,12,2017-08-13 +session,1050,5,Safari 43,27,2017-08-10 +user,1051,Tania,Leonore,44 +session,1051,0,Firefox 44,65,2016-07-13 +session,1051,1,Firefox 12,6,2016-08-05 +session,1051,2,Safari 17,1,2019-02-01 +session,1051,3,Internet Explorer 46,33,2018-02-13 +session,1051,4,Safari 46,77,2017-12-11 +session,1051,5,Firefox 13,57,2017-07-24 +session,1051,6,Internet Explorer 30,115,2018-06-01 +session,1051,7,Safari 22,21,2017-01-25 +user,1052,Madalyn,Pamelia,67 +session,1052,0,Safari 25,60,2017-03-06 +session,1052,1,Firefox 32,104,2017-10-28 +session,1052,2,Firefox 42,0,2018-09-14 +user,1053,Mitch,Iliana,81 +session,1053,0,Chrome 6,28,2018-07-01 +session,1053,1,Chrome 28,111,2017-12-30 +session,1053,2,Firefox 47,38,2018-10-10 +session,1053,3,Safari 33,29,2017-10-31 +session,1053,4,Chrome 7,59,2016-05-27 +session,1053,5,Firefox 31,53,2016-12-06 +session,1053,6,Firefox 28,119,2018-07-30 +session,1053,7,Safari 35,94,2018-09-22 +session,1053,8,Internet Explorer 20,90,2016-06-28 +user,1054,Tim,Danuta,50 +session,1054,0,Firefox 36,13,2016-08-25 +session,1054,1,Internet Explorer 37,76,2018-07-15 +session,1054,2,Internet Explorer 37,108,2017-04-11 +session,1054,3,Chrome 23,84,2018-04-11 +session,1054,4,Firefox 18,18,2017-06-14 +session,1054,5,Safari 28,71,2016-09-25 +session,1054,6,Firefox 36,41,2018-11-06 +session,1054,7,Safari 48,43,2016-07-26 +session,1054,8,Internet Explorer 10,24,2017-09-18 +session,1054,9,Chrome 22,111,2017-03-07 +user,1055,Britany,Celeste,70 +session,1055,0,Internet Explorer 48,39,2016-06-15 +session,1055,1,Chrome 35,20,2018-03-07 +session,1055,2,Safari 26,22,2017-08-19 +session,1055,3,Safari 34,87,2018-10-01 +session,1055,4,Firefox 1,113,2017-04-30 +session,1055,5,Safari 31,8,2017-08-12 +session,1055,6,Safari 31,103,2017-08-25 +session,1055,7,Chrome 49,81,2016-12-09 +session,1055,8,Firefox 31,66,2018-12-04 +user,1056,Sherise,Talia,40 +session,1056,0,Chrome 9,33,2017-04-21 +session,1056,1,Chrome 33,63,2016-11-06 +session,1056,2,Internet Explorer 16,82,2018-05-05 +user,1057,Mica,Dianna,0 +session,1057,0,Internet Explorer 26,86,2018-03-31 +session,1057,1,Safari 38,35,2017-07-04 +session,1057,2,Chrome 11,87,2017-12-28 +session,1057,3,Safari 41,71,2018-12-09 +user,1058,Dino,Gilberte,72 +session,1058,0,Internet Explorer 19,8,2017-01-03 +session,1058,1,Internet Explorer 2,83,2018-04-17 +session,1058,2,Firefox 3,5,2017-05-11 +session,1058,3,Firefox 47,31,2017-07-27 +session,1058,4,Internet Explorer 16,97,2016-10-09 +session,1058,5,Firefox 45,62,2018-01-06 +session,1058,6,Safari 33,23,2017-04-24 +session,1058,7,Chrome 12,47,2017-09-17 +user,1059,Leonardo,Nannette,51 +session,1059,0,Internet Explorer 35,23,2016-12-07 +session,1059,1,Internet Explorer 35,71,2018-05-23 +user,1060,Melanie,Paulina,6 +session,1060,0,Internet Explorer 3,5,2018-08-04 +session,1060,1,Firefox 12,13,2019-01-08 +session,1060,2,Internet Explorer 34,25,2017-03-18 +session,1060,3,Firefox 26,93,2019-02-09 +session,1060,4,Internet Explorer 4,103,2016-10-21 +session,1060,5,Internet Explorer 8,26,2017-07-18 +session,1060,6,Chrome 44,0,2019-01-23 +session,1060,7,Safari 32,92,2018-03-27 +session,1060,8,Firefox 14,1,2018-03-19 +user,1061,Leonie,Vonnie,79 +session,1061,0,Safari 29,46,2016-08-27 +session,1061,1,Safari 38,95,2017-03-11 +user,1062,Marylouise,Anja,36 +session,1062,0,Safari 13,56,2016-06-16 +session,1062,1,Firefox 22,11,2017-06-08 +session,1062,2,Internet Explorer 2,109,2018-01-16 +session,1062,3,Firefox 46,116,2018-09-18 +session,1062,4,Internet Explorer 37,32,2017-08-14 +session,1062,5,Safari 34,7,2018-09-23 +session,1062,6,Safari 35,119,2018-08-19 +session,1062,7,Safari 44,51,2018-01-17 +session,1062,8,Safari 25,105,2018-11-02 +user,1063,Loyd,Enrique,38 +session,1063,0,Firefox 21,106,2016-07-27 +session,1063,1,Firefox 11,102,2017-12-11 +session,1063,2,Firefox 43,119,2018-06-09 +session,1063,3,Internet Explorer 41,44,2018-02-06 +session,1063,4,Chrome 10,44,2017-11-04 +session,1063,5,Internet Explorer 45,21,2016-07-05 +session,1063,6,Firefox 46,60,2017-12-30 +session,1063,7,Firefox 50,16,2016-09-08 +session,1063,8,Chrome 30,101,2018-11-09 +session,1063,9,Internet Explorer 25,52,2016-08-21 +user,1064,Annamarie,Layla,18 +session,1064,0,Chrome 3,102,2018-02-09 +session,1064,1,Internet Explorer 39,25,2017-08-09 +session,1064,2,Internet Explorer 30,45,2018-04-20 +session,1064,3,Chrome 40,95,2018-11-15 +session,1064,4,Chrome 14,15,2018-04-25 +session,1064,5,Safari 2,19,2017-01-16 +session,1064,6,Firefox 34,36,2016-12-13 +user,1065,Neta,Rocio,7 +session,1065,0,Safari 10,114,2018-08-30 +user,1066,Weston,Lashawn,16 +session,1066,0,Chrome 4,43,2016-05-28 +session,1066,1,Safari 47,60,2016-10-27 +user,1067,Forest,Christene,81 +session,1067,0,Internet Explorer 41,36,2017-09-25 +session,1067,1,Firefox 45,113,2018-01-29 +session,1067,2,Safari 9,33,2016-10-10 +session,1067,3,Firefox 17,63,2017-02-02 +session,1067,4,Internet Explorer 36,63,2018-03-17 +session,1067,5,Firefox 21,96,2018-03-04 +user,1068,Luther,Granville,99 +session,1068,0,Firefox 47,14,2018-03-30 +session,1068,1,Safari 15,94,2016-09-04 +session,1068,2,Firefox 46,100,2018-01-12 +session,1068,3,Firefox 16,16,2018-01-28 +session,1068,4,Internet Explorer 29,87,2018-07-29 +session,1068,5,Chrome 11,3,2018-04-29 +user,1069,Gino,Amee,79 +session,1069,0,Safari 25,36,2017-06-09 +session,1069,1,Chrome 29,91,2019-02-11 +session,1069,2,Chrome 48,18,2017-11-09 +session,1069,3,Firefox 50,8,2018-01-13 +session,1069,4,Safari 36,71,2018-02-14 +user,1070,Jeffry,Amalia,92 +session,1070,0,Chrome 20,108,2017-02-21 +session,1070,1,Chrome 26,41,2016-11-25 +session,1070,2,Safari 19,66,2018-07-20 +session,1070,3,Firefox 42,26,2017-05-09 +session,1070,4,Firefox 48,13,2017-03-31 +session,1070,5,Firefox 41,74,2017-02-08 +session,1070,6,Safari 30,85,2017-11-21 +session,1070,7,Safari 46,60,2016-07-20 +user,1071,Dorinda,Michaela,76 +session,1071,0,Firefox 5,96,2017-09-26 +session,1071,1,Internet Explorer 10,56,2017-11-11 +user,1072,Stella,Aida,48 +session,1072,0,Internet Explorer 14,41,2018-04-20 +session,1072,1,Internet Explorer 45,4,2018-10-02 +session,1072,2,Internet Explorer 44,79,2018-09-24 +user,1073,Elena,Karena,72 +session,1073,0,Safari 17,74,2018-05-08 +session,1073,1,Safari 18,118,2017-12-29 +session,1073,2,Internet Explorer 4,73,2017-06-19 +session,1073,3,Internet Explorer 5,63,2016-11-23 +session,1073,4,Internet Explorer 5,74,2018-02-27 +session,1073,5,Safari 35,65,2018-09-03 +session,1073,6,Chrome 8,63,2018-09-08 +session,1073,7,Firefox 32,111,2017-09-01 +session,1073,8,Chrome 48,92,2018-03-30 +user,1074,Shaun,Miguelina,67 +session,1074,0,Firefox 14,79,2016-11-10 +session,1074,1,Safari 29,76,2018-04-23 +session,1074,2,Firefox 45,56,2019-02-11 +session,1074,3,Chrome 43,117,2018-05-24 +session,1074,4,Firefox 20,112,2017-12-05 +session,1074,5,Firefox 22,61,2016-11-28 +session,1074,6,Internet Explorer 14,48,2018-06-14 +session,1074,7,Safari 25,62,2016-08-31 +session,1074,8,Chrome 48,7,2018-08-11 +user,1075,Bella,Lance,62 +session,1075,0,Internet Explorer 34,106,2018-01-05 +session,1075,1,Chrome 44,100,2016-10-06 +session,1075,2,Firefox 21,38,2017-09-18 +session,1075,3,Safari 41,71,2016-08-25 +session,1075,4,Firefox 4,18,2018-01-03 +user,1076,Blair,Dave,44 +session,1076,0,Chrome 20,64,2018-01-05 +session,1076,1,Firefox 1,59,2018-10-07 +session,1076,2,Firefox 2,16,2017-08-21 +session,1076,3,Firefox 22,104,2017-04-23 +session,1076,4,Chrome 42,112,2017-11-06 +session,1076,5,Chrome 4,31,2018-03-04 +session,1076,6,Chrome 41,92,2016-07-07 +session,1076,7,Chrome 21,64,2018-02-21 +session,1076,8,Firefox 30,48,2018-06-06 +session,1076,9,Safari 18,19,2017-07-29 +user,1077,Fausto,Carlena,83 +session,1077,0,Safari 17,52,2018-08-20 +session,1077,1,Firefox 38,47,2017-09-24 +session,1077,2,Internet Explorer 13,54,2018-02-16 +user,1078,Zora,Latia,52 +session,1078,0,Internet Explorer 25,60,2017-10-02 +session,1078,1,Chrome 50,58,2018-09-15 +session,1078,2,Chrome 41,10,2017-09-11 +session,1078,3,Safari 50,76,2018-05-17 +session,1078,4,Firefox 7,114,2017-04-03 +session,1078,5,Safari 23,3,2018-02-14 +session,1078,6,Safari 22,73,2016-09-19 +session,1078,7,Firefox 23,85,2019-01-08 +user,1079,Abel,Tamiko,64 +session,1079,0,Safari 40,95,2016-10-29 +session,1079,1,Safari 46,8,2017-09-07 +session,1079,2,Chrome 17,46,2018-04-05 +session,1079,3,Safari 48,105,2017-05-10 +session,1079,4,Chrome 43,37,2016-05-30 +session,1079,5,Internet Explorer 37,62,2018-09-15 +session,1079,6,Internet Explorer 40,33,2016-12-31 +session,1079,7,Chrome 15,86,2017-05-16 +user,1080,Cornelia,Graig,6 +session,1080,0,Chrome 41,110,2018-03-05 +user,1081,Arnita,Lorina,55 +session,1081,0,Firefox 13,23,2017-12-04 +session,1081,1,Safari 50,37,2018-05-30 +session,1081,2,Safari 35,33,2018-05-30 +session,1081,3,Chrome 12,87,2016-06-21 +session,1081,4,Chrome 20,62,2018-06-01 +user,1082,Phillip,Buford,61 +session,1082,0,Firefox 41,94,2018-01-20 +session,1082,1,Safari 12,81,2017-01-30 +session,1082,2,Internet Explorer 8,98,2017-12-22 +session,1082,3,Chrome 48,22,2016-12-24 +session,1082,4,Internet Explorer 38,96,2017-11-08 +session,1082,5,Safari 17,16,2019-01-25 +session,1082,6,Internet Explorer 50,7,2017-09-05 +session,1082,7,Firefox 18,34,2017-05-29 +session,1082,8,Chrome 40,90,2018-02-08 +session,1082,9,Safari 33,75,2017-09-15 +user,1083,Nicolas,Shonna,74 +session,1083,0,Safari 10,28,2017-03-01 +session,1083,1,Safari 37,79,2018-01-17 +user,1084,Virginia,Fred,35 +session,1084,0,Chrome 42,41,2017-11-05 +session,1084,1,Safari 16,29,2017-07-12 +session,1084,2,Chrome 46,41,2017-05-11 +session,1084,3,Safari 44,53,2016-08-14 +session,1084,4,Internet Explorer 22,47,2016-11-07 +session,1084,5,Internet Explorer 30,85,2019-01-08 +session,1084,6,Chrome 3,50,2016-12-05 +session,1084,7,Safari 29,93,2018-12-15 +session,1084,8,Internet Explorer 12,101,2017-06-06 +session,1084,9,Firefox 7,75,2018-06-25 +user,1085,Retha,Sharan,44 +session,1085,0,Chrome 5,72,2017-08-04 +session,1085,1,Chrome 13,81,2016-11-08 +user,1086,Pat,Tenesha,86 +session,1086,0,Chrome 33,39,2016-06-07 +session,1086,1,Internet Explorer 40,52,2017-07-04 +session,1086,2,Safari 4,29,2018-06-05 +session,1086,3,Internet Explorer 19,57,2019-01-31 +session,1086,4,Firefox 18,42,2017-08-07 +session,1086,5,Internet Explorer 23,119,2018-12-09 +session,1086,6,Firefox 9,76,2017-06-08 +user,1087,Amos,Neva,94 +session,1087,0,Firefox 16,47,2019-01-01 +session,1087,1,Internet Explorer 7,56,2018-01-01 +session,1087,2,Chrome 39,82,2017-05-27 +session,1087,3,Internet Explorer 27,96,2017-10-23 +session,1087,4,Internet Explorer 6,13,2016-08-27 +session,1087,5,Safari 36,95,2018-01-23 +session,1087,6,Internet Explorer 45,44,2019-01-20 +session,1087,7,Firefox 10,72,2018-11-24 +session,1087,8,Firefox 46,98,2017-03-25 +user,1088,Antony,Cornelia,58 +session,1088,0,Safari 41,74,2016-12-15 +session,1088,1,Internet Explorer 38,29,2017-09-25 +session,1088,2,Safari 38,6,2018-01-20 +session,1088,3,Safari 8,18,2017-12-17 +session,1088,4,Internet Explorer 19,75,2018-12-03 +user,1089,Danial,Clair,83 +session,1089,0,Safari 26,34,2018-06-14 +session,1089,1,Safari 10,19,2017-03-17 +session,1089,2,Firefox 17,25,2018-11-20 +session,1089,3,Internet Explorer 32,70,2016-07-09 +session,1089,4,Firefox 33,11,2017-03-12 +session,1089,5,Safari 50,118,2016-05-24 +session,1089,6,Firefox 3,89,2018-09-25 +session,1089,7,Firefox 30,50,2017-11-21 +user,1090,Trey,Carmina,35 +session,1090,0,Internet Explorer 42,37,2018-08-02 +session,1090,1,Firefox 5,114,2018-01-13 +session,1090,2,Chrome 35,50,2017-12-12 +session,1090,3,Safari 34,21,2017-12-22 +session,1090,4,Firefox 36,115,2016-10-30 +session,1090,5,Firefox 42,117,2017-03-01 +session,1090,6,Chrome 34,15,2018-08-21 +session,1090,7,Safari 49,5,2016-08-25 +session,1090,8,Firefox 13,105,2017-11-03 +session,1090,9,Chrome 43,101,2018-03-02 +user,1091,Wilford,Gina,42 +session,1091,0,Chrome 46,19,2018-05-26 +session,1091,1,Safari 36,74,2016-06-22 +session,1091,2,Chrome 31,76,2016-06-01 +session,1091,3,Firefox 41,57,2017-01-27 +session,1091,4,Internet Explorer 26,39,2016-06-28 +session,1091,5,Safari 36,11,2019-01-15 +session,1091,6,Internet Explorer 6,5,2017-09-12 +user,1092,Abram,Fritz,10 +session,1092,0,Chrome 20,99,2016-11-27 +user,1093,Michal,Margareta,81 +session,1093,0,Firefox 31,91,2016-08-09 +user,1094,Lael,Paola,44 +session,1094,0,Firefox 46,19,2018-06-24 +session,1094,1,Chrome 35,108,2017-10-26 +session,1094,2,Chrome 21,83,2017-12-07 +session,1094,3,Internet Explorer 50,10,2018-06-05 +session,1094,4,Safari 40,93,2016-08-14 +session,1094,5,Firefox 5,80,2017-12-07 +session,1094,6,Safari 20,53,2017-11-25 +session,1094,7,Chrome 29,39,2018-08-20 +session,1094,8,Internet Explorer 6,44,2018-01-30 +session,1094,9,Chrome 4,111,2018-02-27 +user,1095,Joe,Helaine,44 +session,1095,0,Firefox 10,69,2019-02-10 +session,1095,1,Safari 38,45,2016-05-27 +session,1095,2,Internet Explorer 32,51,2016-08-05 +session,1095,3,Internet Explorer 7,80,2016-10-26 +session,1095,4,Chrome 5,65,2017-11-12 +session,1095,5,Chrome 31,93,2018-03-19 +session,1095,6,Firefox 48,100,2018-09-14 +session,1095,7,Firefox 34,43,2016-05-21 +user,1096,Cruz,Mercedes,85 +session,1096,0,Chrome 34,36,2016-07-01 +session,1096,1,Chrome 13,58,2018-01-04 +session,1096,2,Safari 27,34,2017-12-04 +session,1096,3,Safari 1,77,2018-10-01 +session,1096,4,Chrome 8,110,2017-04-19 +session,1096,5,Chrome 33,90,2018-03-08 +session,1096,6,Chrome 42,52,2019-01-20 +session,1096,7,Safari 43,39,2016-11-11 +session,1096,8,Chrome 14,86,2017-06-02 +user,1097,Vance,Roseanna,83 +session,1097,0,Internet Explorer 21,77,2016-06-09 +session,1097,1,Safari 22,4,2018-07-26 +session,1097,2,Chrome 15,92,2018-04-17 +session,1097,3,Internet Explorer 32,24,2017-03-23 +session,1097,4,Chrome 4,13,2018-12-27 +session,1097,5,Internet Explorer 8,89,2016-09-18 +session,1097,6,Chrome 10,98,2018-10-31 +session,1097,7,Firefox 23,74,2017-01-10 +session,1097,8,Internet Explorer 11,86,2017-08-05 +session,1097,9,Firefox 15,16,2016-09-10 +user,1098,Rosella,Danita,13 +session,1098,0,Safari 11,88,2017-08-29 +session,1098,1,Firefox 16,9,2017-03-06 +session,1098,2,Firefox 14,41,2016-12-30 +session,1098,3,Chrome 22,90,2017-06-06 +session,1098,4,Firefox 13,42,2018-04-23 +session,1098,5,Safari 45,38,2018-05-31 +session,1098,6,Internet Explorer 38,84,2016-05-24 +user,1099,Julian,Heather,12 +session,1099,0,Safari 10,45,2018-02-19 +session,1099,1,Internet Explorer 9,53,2018-02-16 +user,1100,Cira,Joanna,6 +session,1100,0,Firefox 14,57,2017-06-23 +session,1100,1,Chrome 34,98,2018-07-13 +session,1100,2,Internet Explorer 8,65,2018-11-13 +session,1100,3,Internet Explorer 27,80,2016-05-26 +session,1100,4,Safari 3,117,2016-08-27 +session,1100,5,Chrome 48,6,2018-01-28 +session,1100,6,Safari 26,25,2016-07-20 +session,1100,7,Firefox 12,68,2017-02-17 +session,1100,8,Safari 43,63,2018-04-01 +user,1101,Justin,Gilberto,9 +session,1101,0,Firefox 33,7,2017-07-03 +session,1101,1,Chrome 19,22,2018-07-28 +session,1101,2,Safari 9,25,2017-12-05 +session,1101,3,Safari 39,117,2018-12-13 +session,1101,4,Chrome 11,116,2018-06-01 +user,1102,Carley,Penny,45 +session,1102,0,Chrome 3,33,2018-09-25 +session,1102,1,Chrome 39,42,2016-08-16 +session,1102,2,Firefox 29,64,2018-08-22 +session,1102,3,Internet Explorer 48,100,2017-06-04 +session,1102,4,Internet Explorer 41,26,2017-02-06 +session,1102,5,Chrome 25,67,2016-08-09 +session,1102,6,Safari 3,10,2017-05-29 +user,1103,Johnnie,Kaleigh,95 +session,1103,0,Internet Explorer 40,85,2017-08-05 +session,1103,1,Chrome 42,53,2016-11-22 +session,1103,2,Chrome 45,110,2019-01-25 +session,1103,3,Internet Explorer 8,90,2018-08-27 +session,1103,4,Internet Explorer 2,80,2017-06-04 +session,1103,5,Chrome 27,19,2018-05-12 +session,1103,6,Chrome 12,86,2016-09-13 +user,1104,Gene,Jean,41 +session,1104,0,Firefox 30,119,2017-07-11 +session,1104,1,Firefox 45,104,2018-01-13 +session,1104,2,Internet Explorer 41,104,2018-12-07 +session,1104,3,Internet Explorer 39,79,2016-09-30 +session,1104,4,Internet Explorer 20,7,2017-08-27 +session,1104,5,Internet Explorer 17,119,2017-06-15 +session,1104,6,Internet Explorer 17,17,2016-08-20 +session,1104,7,Chrome 6,43,2018-07-27 +session,1104,8,Internet Explorer 5,17,2019-01-20 +session,1104,9,Safari 9,19,2016-07-13 +user,1105,Dorris,Isaura,81 +session,1105,0,Chrome 47,65,2017-01-16 +session,1105,1,Safari 22,61,2018-09-07 +session,1105,2,Chrome 25,49,2018-09-01 +session,1105,3,Chrome 38,92,2017-03-29 +user,1106,Janise,Rolf,54 +session,1106,0,Firefox 6,83,2016-11-24 +session,1106,1,Firefox 19,76,2018-02-28 +session,1106,2,Chrome 16,55,2018-06-14 +session,1106,3,Safari 19,109,2018-07-05 +session,1106,4,Internet Explorer 46,62,2016-07-31 +session,1106,5,Firefox 7,52,2018-03-22 +session,1106,6,Chrome 48,33,2017-04-17 +user,1107,Elda,Inger,55 +session,1107,0,Internet Explorer 19,6,2018-04-06 +session,1107,1,Internet Explorer 45,45,2017-05-11 +session,1107,2,Internet Explorer 26,5,2017-08-20 +session,1107,3,Chrome 43,70,2017-10-03 +session,1107,4,Safari 50,78,2017-01-07 +session,1107,5,Firefox 50,78,2017-01-08 +session,1107,6,Firefox 22,73,2016-08-21 +user,1108,Miquel,Diedra,94 +session,1108,0,Internet Explorer 42,38,2016-06-04 +session,1108,1,Chrome 27,112,2016-11-03 +session,1108,2,Firefox 34,8,2016-06-19 +session,1108,3,Chrome 47,83,2018-12-22 +session,1108,4,Internet Explorer 24,26,2017-03-22 +session,1108,5,Chrome 7,90,2017-03-20 +session,1108,6,Internet Explorer 6,30,2018-09-18 +session,1108,7,Chrome 7,70,2017-04-01 +user,1109,Georgianne,Bailey,56 +session,1109,0,Safari 4,30,2018-01-09 +session,1109,1,Firefox 36,64,2018-03-31 +session,1109,2,Chrome 17,111,2018-08-25 +session,1109,3,Firefox 33,89,2018-11-24 +user,1110,Alva,Dorthea,98 +session,1110,0,Chrome 28,14,2016-11-09 +user,1111,Kamala,Makeda,9 +session,1111,0,Safari 26,111,2016-06-11 +session,1111,1,Chrome 18,38,2018-08-18 +session,1111,2,Safari 25,10,2016-12-18 +session,1111,3,Safari 26,23,2018-04-11 +session,1111,4,Safari 17,84,2017-02-18 +session,1111,5,Firefox 48,71,2019-02-01 +user,1112,Glynis,Magnolia,12 +session,1112,0,Safari 31,117,2017-03-11 +session,1112,1,Safari 38,78,2018-02-16 +session,1112,2,Internet Explorer 10,2,2017-12-11 +user,1113,Rudy,Monique,35 +session,1113,0,Safari 31,86,2017-01-27 +session,1113,1,Chrome 27,49,2017-05-12 +session,1113,2,Firefox 21,41,2018-06-27 +session,1113,3,Chrome 6,105,2017-04-13 +user,1114,Zack,Daina,1 +session,1114,0,Chrome 29,115,2018-07-01 +session,1114,1,Internet Explorer 24,75,2018-09-24 +session,1114,2,Internet Explorer 11,70,2017-04-11 +user,1115,Lee,Kiara,62 +session,1115,0,Chrome 26,112,2017-11-19 +session,1115,1,Firefox 25,31,2016-06-27 +session,1115,2,Safari 40,8,2018-10-20 +session,1115,3,Chrome 2,6,2018-07-12 +session,1115,4,Firefox 3,49,2016-06-10 +session,1115,5,Firefox 42,42,2017-12-05 +session,1115,6,Firefox 22,38,2017-12-03 +session,1115,7,Internet Explorer 21,103,2019-02-06 +session,1115,8,Chrome 34,24,2017-08-09 +user,1116,Marilou,Carly,65 +session,1116,0,Safari 11,85,2016-06-05 +session,1116,1,Internet Explorer 38,46,2017-08-23 +session,1116,2,Chrome 11,53,2017-01-25 +session,1116,3,Safari 2,45,2017-03-02 +session,1116,4,Firefox 43,70,2016-08-27 +session,1116,5,Internet Explorer 27,10,2017-12-03 +session,1116,6,Internet Explorer 45,76,2017-11-06 +user,1117,Angelina,Oretha,64 +session,1117,0,Internet Explorer 21,112,2017-08-21 +session,1117,1,Internet Explorer 41,46,2018-04-08 +session,1117,2,Safari 37,59,2016-09-30 +session,1117,3,Firefox 15,117,2016-11-09 +user,1118,Jude,Preston,52 +session,1118,0,Safari 38,72,2018-05-03 +session,1118,1,Safari 46,118,2017-06-24 +user,1119,Homer,Teena,85 +session,1119,0,Internet Explorer 30,33,2016-07-30 +session,1119,1,Firefox 2,95,2017-12-30 +session,1119,2,Internet Explorer 43,11,2017-08-31 +session,1119,3,Internet Explorer 27,63,2016-06-10 +session,1119,4,Chrome 19,34,2017-10-22 +session,1119,5,Firefox 10,43,2017-05-18 +session,1119,6,Chrome 21,11,2018-05-21 +session,1119,7,Safari 6,31,2017-09-03 +session,1119,8,Internet Explorer 12,83,2018-12-24 +user,1120,Gregory,Sarita,19 +session,1120,0,Safari 50,82,2017-02-21 +session,1120,1,Firefox 22,96,2017-10-19 +session,1120,2,Firefox 20,54,2017-04-29 +session,1120,3,Chrome 27,19,2016-08-11 +session,1120,4,Internet Explorer 35,85,2017-06-01 +session,1120,5,Safari 6,91,2017-04-30 +session,1120,6,Chrome 9,101,2016-09-11 +session,1120,7,Firefox 3,13,2019-01-17 +session,1120,8,Chrome 35,44,2017-08-10 +user,1121,Rolande,Neil,25 +session,1121,0,Firefox 14,44,2017-06-30 +session,1121,1,Chrome 8,6,2016-12-27 +session,1121,2,Firefox 7,91,2016-08-29 +session,1121,3,Chrome 42,99,2017-10-06 +session,1121,4,Internet Explorer 49,86,2019-01-18 +session,1121,5,Internet Explorer 8,70,2016-12-26 +user,1122,Luna,Xavier,3 +session,1122,0,Chrome 47,11,2016-09-19 +session,1122,1,Internet Explorer 43,10,2016-11-29 +session,1122,2,Chrome 4,16,2018-06-02 +session,1122,3,Chrome 18,60,2017-12-12 +session,1122,4,Chrome 29,5,2016-05-25 +session,1122,5,Safari 30,105,2017-05-18 +session,1122,6,Internet Explorer 45,110,2018-04-11 +session,1122,7,Firefox 10,102,2017-03-15 +session,1122,8,Chrome 30,58,2017-06-06 +session,1122,9,Internet Explorer 24,40,2018-10-06 +user,1123,Elias,Yolanda,46 +session,1123,0,Internet Explorer 38,108,2017-10-21 +session,1123,1,Firefox 21,100,2016-07-25 +session,1123,2,Chrome 8,27,2017-06-11 +session,1123,3,Internet Explorer 9,98,2016-09-01 +session,1123,4,Chrome 25,116,2018-12-07 +user,1124,Sydney,Vallie,62 +session,1124,0,Safari 22,41,2018-01-19 +session,1124,1,Firefox 25,15,2018-04-27 +session,1124,2,Safari 9,119,2017-12-03 +session,1124,3,Chrome 1,12,2017-01-15 +session,1124,4,Internet Explorer 43,103,2017-06-30 +session,1124,5,Internet Explorer 5,68,2019-01-05 +session,1124,6,Firefox 10,80,2017-10-09 +session,1124,7,Safari 36,14,2018-11-17 +session,1124,8,Internet Explorer 34,105,2017-12-19 +session,1124,9,Chrome 19,91,2018-11-23 +user,1125,Jorge,Johnnie,23 +session,1125,0,Firefox 49,65,2017-04-05 +session,1125,1,Chrome 48,67,2019-01-10 +user,1126,Lesley,Stacy,47 +session,1126,0,Safari 2,66,2018-05-21 +session,1126,1,Internet Explorer 46,70,2017-07-12 +session,1126,2,Internet Explorer 3,54,2017-05-28 +session,1126,3,Safari 24,18,2018-12-10 +session,1126,4,Firefox 39,112,2017-04-07 +session,1126,5,Internet Explorer 9,0,2016-07-07 +session,1126,6,Chrome 30,4,2018-11-09 +session,1126,7,Chrome 34,9,2016-12-01 +user,1127,Belva,Pam,69 +session,1127,0,Chrome 11,10,2017-03-23 +session,1127,1,Firefox 19,108,2018-12-25 +session,1127,2,Safari 41,71,2016-12-07 +session,1127,3,Firefox 5,65,2017-12-05 +session,1127,4,Firefox 50,102,2017-02-09 +session,1127,5,Safari 9,88,2018-02-01 +session,1127,6,Safari 45,66,2017-03-01 +session,1127,7,Safari 31,0,2017-05-01 +user,1128,Usha,Charlie,89 +session,1128,0,Firefox 8,48,2016-10-08 +session,1128,1,Safari 35,71,2016-10-19 +session,1128,2,Safari 11,115,2018-11-10 +session,1128,3,Internet Explorer 21,67,2019-01-16 +session,1128,4,Chrome 12,21,2016-10-23 +session,1128,5,Internet Explorer 32,50,2017-03-25 +session,1128,6,Internet Explorer 4,55,2017-08-20 +user,1129,Glady,Curtis,50 +session,1129,0,Internet Explorer 44,114,2018-09-08 +session,1129,1,Chrome 47,7,2017-04-30 +session,1129,2,Firefox 31,99,2017-10-09 +session,1129,3,Internet Explorer 46,2,2016-11-17 +session,1129,4,Firefox 32,108,2016-05-19 +session,1129,5,Safari 1,69,2017-04-22 +session,1129,6,Safari 38,52,2018-08-10 +session,1129,7,Chrome 16,56,2016-07-30 +user,1130,Lanora,Leatrice,48 +session,1130,0,Firefox 2,77,2018-12-02 +session,1130,1,Chrome 43,18,2017-07-15 +session,1130,2,Internet Explorer 6,20,2018-07-18 +session,1130,3,Internet Explorer 28,51,2017-07-26 +user,1131,Cuc,Irving,81 +session,1131,0,Chrome 35,60,2016-11-17 +session,1131,1,Firefox 39,95,2016-11-16 +session,1131,2,Internet Explorer 2,43,2016-09-25 +session,1131,3,Firefox 30,31,2017-04-26 +user,1132,Ivory,Fredric,67 +session,1132,0,Safari 13,73,2016-12-27 +user,1133,Mercedez,Jarrett,65 +session,1133,0,Internet Explorer 8,32,2017-01-03 +session,1133,1,Safari 40,43,2017-07-04 +session,1133,2,Internet Explorer 48,96,2016-06-30 +session,1133,3,Internet Explorer 2,58,2019-01-04 +session,1133,4,Internet Explorer 41,71,2016-12-28 +session,1133,5,Chrome 12,47,2018-05-28 +session,1133,6,Chrome 49,81,2016-12-01 +user,1134,Sandie,Shelia,71 +session,1134,0,Internet Explorer 12,68,2019-01-03 +session,1134,1,Internet Explorer 21,63,2017-09-16 +session,1134,2,Firefox 15,54,2017-12-21 +session,1134,3,Firefox 43,83,2016-05-30 +session,1134,4,Chrome 1,57,2019-02-10 +session,1134,5,Safari 12,119,2018-12-26 +session,1134,6,Safari 28,107,2018-03-18 +session,1134,7,Chrome 27,91,2017-11-05 +session,1134,8,Internet Explorer 14,11,2017-10-19 +session,1134,9,Internet Explorer 39,0,2017-06-04 +user,1135,Martina,Shirl,0 +session,1135,0,Safari 44,47,2017-05-27 +session,1135,1,Chrome 4,27,2018-11-25 +session,1135,2,Internet Explorer 24,66,2018-12-15 +session,1135,3,Chrome 46,40,2018-01-20 +session,1135,4,Safari 1,33,2017-12-08 +session,1135,5,Firefox 12,12,2017-06-02 +session,1135,6,Safari 29,113,2017-06-26 +session,1135,7,Safari 30,46,2018-11-07 +user,1136,Rusty,Louanne,33 +session,1136,0,Chrome 1,29,2017-10-30 +user,1137,Corrina,Dominic,34 +session,1137,0,Internet Explorer 28,97,2019-01-31 +session,1137,1,Internet Explorer 16,39,2017-06-28 +session,1137,2,Internet Explorer 27,40,2017-02-20 +session,1137,3,Internet Explorer 35,108,2018-09-13 +session,1137,4,Safari 34,70,2016-10-05 +session,1137,5,Safari 48,48,2017-10-16 +session,1137,6,Firefox 25,36,2019-01-10 +session,1137,7,Internet Explorer 37,112,2019-01-29 +user,1138,Merrilee,Ladawn,3 +session,1138,0,Chrome 3,57,2016-06-17 +session,1138,1,Chrome 14,49,2016-08-19 +user,1139,Gaylord,Shelby,54 +session,1139,0,Safari 18,12,2016-11-08 +session,1139,1,Safari 35,57,2018-11-12 +session,1139,2,Chrome 48,115,2018-02-27 +session,1139,3,Chrome 39,83,2017-04-27 +session,1139,4,Safari 8,75,2017-07-14 +session,1139,5,Firefox 20,62,2018-02-21 +user,1140,Russ,Eldon,95 +session,1140,0,Firefox 50,1,2017-07-30 +session,1140,1,Internet Explorer 11,103,2018-07-06 +session,1140,2,Internet Explorer 7,86,2016-08-18 +session,1140,3,Chrome 21,23,2016-05-24 +session,1140,4,Firefox 27,50,2019-01-16 +user,1141,Zona,Ethelene,4 +session,1141,0,Internet Explorer 38,47,2017-02-26 +session,1141,1,Firefox 32,0,2016-09-04 +session,1141,2,Chrome 3,119,2016-08-18 +session,1141,3,Chrome 12,85,2016-05-24 +session,1141,4,Internet Explorer 46,105,2018-01-27 +session,1141,5,Safari 10,28,2017-02-13 +user,1142,Johnnie,Renea,14 +session,1142,0,Firefox 45,95,2018-12-07 +session,1142,1,Chrome 24,36,2018-07-11 +session,1142,2,Safari 4,105,2017-09-06 +session,1142,3,Firefox 35,15,2019-01-06 +session,1142,4,Safari 14,79,2018-08-27 +session,1142,5,Firefox 2,10,2017-01-07 +session,1142,6,Internet Explorer 40,10,2017-08-29 +session,1142,7,Internet Explorer 45,68,2018-12-28 +session,1142,8,Safari 22,67,2017-01-18 +user,1143,Antoine,Douglass,80 +session,1143,0,Internet Explorer 35,17,2017-11-29 +session,1143,1,Chrome 22,37,2018-07-18 +user,1144,Nina,Jimmie,18 +session,1144,0,Internet Explorer 5,114,2017-01-28 +session,1144,1,Firefox 42,59,2017-11-24 +session,1144,2,Chrome 9,32,2016-09-10 +session,1144,3,Safari 35,77,2017-03-04 +session,1144,4,Internet Explorer 47,100,2016-06-08 +session,1144,5,Internet Explorer 32,7,2018-09-07 +session,1144,6,Safari 23,91,2018-04-19 +session,1144,7,Firefox 10,42,2017-05-11 +session,1144,8,Firefox 13,90,2017-06-04 +user,1145,Ji,Fannie,94 +session,1145,0,Internet Explorer 48,90,2016-08-03 +session,1145,1,Internet Explorer 40,64,2016-08-20 +session,1145,2,Firefox 33,35,2017-03-03 +session,1145,3,Firefox 34,99,2016-10-23 +session,1145,4,Chrome 38,76,2018-10-31 +session,1145,5,Chrome 3,67,2016-12-13 +session,1145,6,Internet Explorer 29,68,2017-05-31 +user,1146,Marcel,Alana,79 +session,1146,0,Internet Explorer 24,71,2017-07-15 +session,1146,1,Internet Explorer 32,30,2016-12-22 +session,1146,2,Internet Explorer 43,41,2018-05-26 +session,1146,3,Internet Explorer 50,98,2017-05-23 +session,1146,4,Chrome 47,89,2018-09-20 +session,1146,5,Safari 43,39,2016-09-20 +user,1147,Chere,Damien,2 +session,1147,0,Safari 11,115,2018-01-18 +session,1147,1,Firefox 33,11,2017-01-10 +session,1147,2,Firefox 29,26,2019-01-24 +session,1147,3,Firefox 19,27,2018-01-11 +session,1147,4,Internet Explorer 30,34,2018-10-02 +session,1147,5,Safari 50,66,2017-12-19 +user,1148,Osvaldo,Nereida,27 +session,1148,0,Chrome 19,84,2018-07-14 +session,1148,1,Internet Explorer 9,34,2018-07-27 +session,1148,2,Internet Explorer 15,114,2017-01-07 +session,1148,3,Safari 50,10,2018-12-29 +session,1148,4,Safari 26,110,2017-01-18 +session,1148,5,Safari 50,15,2016-10-06 +session,1148,6,Safari 24,71,2017-08-03 +session,1148,7,Firefox 50,21,2017-10-16 +user,1149,Willy,Alix,1 +session,1149,0,Safari 48,39,2018-04-26 +session,1149,1,Internet Explorer 50,29,2017-07-31 +session,1149,2,Chrome 49,117,2017-11-05 +session,1149,3,Safari 37,88,2018-05-09 +session,1149,4,Internet Explorer 5,103,2017-12-28 +session,1149,5,Firefox 39,35,2018-03-09 +session,1149,6,Internet Explorer 27,88,2018-10-22 +session,1149,7,Internet Explorer 25,117,2016-05-23 +user,1150,Efren,Eric,96 +session,1150,0,Chrome 34,109,2016-12-21 +session,1150,1,Firefox 21,1,2016-09-24 +session,1150,2,Firefox 13,47,2018-06-11 +session,1150,3,Firefox 29,7,2016-06-16 +user,1151,Carlton,Carleen,78 +session,1151,0,Firefox 49,99,2017-11-20 +session,1151,1,Firefox 36,86,2019-01-19 +session,1151,2,Firefox 20,19,2016-12-01 +session,1151,3,Chrome 25,30,2018-11-08 +session,1151,4,Safari 49,30,2016-07-24 +session,1151,5,Chrome 47,26,2018-02-22 +session,1151,6,Chrome 33,8,2018-06-07 +session,1151,7,Internet Explorer 2,32,2017-11-22 +session,1151,8,Firefox 28,61,2017-07-20 +session,1151,9,Safari 11,89,2017-08-30 +user,1152,Rowena,Tim,18 +session,1152,0,Firefox 42,100,2018-07-02 +session,1152,1,Chrome 22,2,2018-09-16 +session,1152,2,Internet Explorer 29,118,2018-12-17 +session,1152,3,Safari 1,5,2018-09-12 +session,1152,4,Internet Explorer 19,94,2017-03-02 +user,1153,Jonnie,Shayne,24 +session,1153,0,Internet Explorer 6,94,2017-09-13 +session,1153,1,Safari 9,37,2016-06-12 +user,1154,Donnie,Newton,97 +session,1154,0,Safari 9,65,2018-04-19 +session,1154,1,Internet Explorer 7,114,2016-06-08 +session,1154,2,Firefox 36,62,2017-12-28 +session,1154,3,Chrome 31,99,2019-01-23 +user,1155,Celsa,Clifton,29 +session,1155,0,Safari 50,18,2017-07-19 +session,1155,1,Firefox 14,44,2017-06-29 +user,1156,Carlo,Basil,0 +session,1156,0,Firefox 47,51,2017-12-28 +user,1157,Loralee,Willow,35 +session,1157,0,Chrome 13,45,2017-01-05 +session,1157,1,Safari 37,10,2017-06-08 +session,1157,2,Safari 3,31,2016-12-07 +session,1157,3,Firefox 4,44,2016-06-09 +session,1157,4,Chrome 33,2,2018-03-12 +user,1158,Kurt,Robin,18 +session,1158,0,Internet Explorer 33,82,2018-01-04 +session,1158,1,Chrome 13,105,2017-01-03 +session,1158,2,Chrome 2,84,2017-02-14 +session,1158,3,Safari 13,49,2018-12-31 +session,1158,4,Internet Explorer 35,119,2018-03-31 +session,1158,5,Safari 32,59,2016-12-09 +session,1158,6,Chrome 23,4,2016-12-06 +session,1158,7,Safari 8,88,2017-08-26 +session,1158,8,Safari 44,69,2018-10-06 +session,1158,9,Chrome 42,19,2017-04-14 +user,1159,Merrill,Christina,89 +session,1159,0,Firefox 30,100,2018-05-08 +session,1159,1,Firefox 9,72,2016-07-11 +session,1159,2,Chrome 1,104,2016-08-22 +session,1159,3,Chrome 33,93,2018-08-13 +user,1160,Larry,Jeffery,34 +session,1160,0,Safari 45,80,2016-08-13 +session,1160,1,Internet Explorer 13,4,2016-10-28 +session,1160,2,Chrome 31,52,2016-08-15 +session,1160,3,Internet Explorer 10,5,2017-04-27 +session,1160,4,Safari 21,65,2017-11-05 +user,1161,Clemente,Jada,74 +session,1161,0,Internet Explorer 20,62,2016-06-20 +session,1161,1,Chrome 25,117,2016-06-30 +session,1161,2,Chrome 26,71,2018-12-08 +session,1161,3,Chrome 16,115,2017-04-19 +session,1161,4,Firefox 21,60,2016-09-10 +session,1161,5,Internet Explorer 21,3,2018-05-18 +user,1162,Brittany,Corrine,68 +session,1162,0,Firefox 30,1,2017-08-21 +session,1162,1,Chrome 9,76,2018-10-16 +session,1162,2,Firefox 48,75,2017-11-20 +session,1162,3,Chrome 15,71,2018-03-13 +session,1162,4,Safari 37,55,2018-12-02 +session,1162,5,Internet Explorer 8,52,2019-01-05 +session,1162,6,Firefox 37,80,2017-08-08 +session,1162,7,Firefox 11,109,2018-06-16 +user,1163,Osvaldo,Alissa,7 +session,1163,0,Chrome 40,70,2018-01-17 +session,1163,1,Safari 36,24,2016-07-22 +session,1163,2,Internet Explorer 43,7,2016-12-07 +session,1163,3,Safari 8,63,2018-02-06 +session,1163,4,Safari 15,77,2018-01-19 +session,1163,5,Internet Explorer 31,117,2017-09-30 +session,1163,6,Chrome 22,91,2018-07-17 +session,1163,7,Chrome 28,108,2018-11-03 +session,1163,8,Chrome 1,4,2017-08-24 +session,1163,9,Firefox 50,59,2016-09-09 +user,1164,Isobel,Viva,59 +session,1164,0,Chrome 38,74,2018-08-23 +session,1164,1,Chrome 16,44,2018-12-04 +user,1165,Bennie,Dong,49 +session,1165,0,Internet Explorer 38,90,2017-12-12 +session,1165,1,Firefox 19,83,2017-12-31 +session,1165,2,Firefox 47,77,2018-02-20 +session,1165,3,Firefox 11,26,2017-10-14 +session,1165,4,Safari 6,53,2018-01-22 +session,1165,5,Internet Explorer 38,101,2017-12-10 +session,1165,6,Chrome 30,42,2018-10-15 +session,1165,7,Chrome 8,74,2019-01-01 +user,1166,Regan,Nina,86 +session,1166,0,Chrome 35,31,2016-07-02 +session,1166,1,Safari 37,104,2018-12-28 +session,1166,2,Firefox 45,95,2018-09-20 +session,1166,3,Chrome 17,46,2016-11-17 +user,1167,Christoper,Rebekah,92 +session,1167,0,Internet Explorer 36,111,2018-12-19 +session,1167,1,Firefox 5,90,2018-08-31 +session,1167,2,Firefox 36,9,2018-02-10 +session,1167,3,Internet Explorer 27,114,2017-05-18 +session,1167,4,Firefox 15,111,2017-04-26 +session,1167,5,Internet Explorer 40,33,2016-09-15 +session,1167,6,Chrome 10,26,2016-07-08 +session,1167,7,Firefox 41,69,2017-06-23 +session,1167,8,Firefox 44,62,2017-10-30 +user,1168,Marcelle,Cordell,78 +session,1168,0,Chrome 36,111,2018-10-28 +session,1168,1,Internet Explorer 30,11,2018-11-11 +user,1169,Barabara,Julia,93 +session,1169,0,Chrome 6,108,2016-09-20 +session,1169,1,Firefox 11,52,2017-10-17 +session,1169,2,Safari 19,15,2017-09-09 +session,1169,3,Safari 10,42,2017-07-16 +session,1169,4,Safari 21,57,2017-08-04 +session,1169,5,Internet Explorer 36,35,2016-07-04 +session,1169,6,Firefox 34,95,2016-10-24 +user,1170,Irving,Genevive,12 +session,1170,0,Firefox 9,101,2018-12-08 +session,1170,1,Safari 11,102,2018-12-24 +session,1170,2,Firefox 49,42,2017-01-03 +session,1170,3,Safari 29,20,2017-09-23 +session,1170,4,Internet Explorer 39,9,2016-10-17 +session,1170,5,Internet Explorer 39,67,2017-06-28 +session,1170,6,Internet Explorer 10,10,2017-04-13 +session,1170,7,Chrome 25,69,2017-09-23 +session,1170,8,Internet Explorer 43,64,2017-09-09 +user,1171,Jordan,Ida,39 +session,1171,0,Safari 20,81,2018-10-12 +session,1171,1,Internet Explorer 42,15,2017-01-13 +session,1171,2,Chrome 1,37,2016-07-05 +session,1171,3,Internet Explorer 43,107,2016-11-04 +session,1171,4,Firefox 47,18,2017-07-03 +session,1171,5,Firefox 9,50,2016-10-24 +session,1171,6,Firefox 2,74,2016-06-12 +user,1172,Jody,Xiao,60 +session,1172,0,Internet Explorer 11,102,2018-10-18 +session,1172,1,Chrome 19,25,2018-06-03 +session,1172,2,Internet Explorer 35,20,2016-07-07 +user,1173,Foster,Evita,19 +session,1173,0,Internet Explorer 9,60,2017-08-18 +session,1173,1,Firefox 50,45,2017-10-11 +session,1173,2,Internet Explorer 21,105,2017-08-23 +session,1173,3,Internet Explorer 1,72,2017-06-10 +user,1174,Peg,Scot,41 +session,1174,0,Internet Explorer 36,69,2018-09-08 +session,1174,1,Chrome 4,103,2017-05-11 +session,1174,2,Internet Explorer 26,38,2017-01-22 +session,1174,3,Internet Explorer 6,39,2018-01-25 +session,1174,4,Safari 39,6,2017-07-03 +session,1174,5,Chrome 28,88,2018-01-21 +session,1174,6,Chrome 49,56,2017-11-07 +user,1175,Ramiro,Margarita,17 +session,1175,0,Safari 14,56,2018-05-18 +session,1175,1,Firefox 39,51,2018-01-09 +session,1175,2,Safari 24,75,2017-08-22 +session,1175,3,Safari 26,77,2017-11-28 +session,1175,4,Internet Explorer 16,66,2018-06-03 +user,1176,Jonathan,Mable,35 +session,1176,0,Safari 47,75,2018-11-23 +session,1176,1,Internet Explorer 23,70,2017-05-23 +user,1177,Jc,Minh,55 +session,1177,0,Safari 30,70,2018-05-15 +session,1177,1,Internet Explorer 28,4,2017-03-06 +session,1177,2,Safari 19,40,2017-09-16 +session,1177,3,Chrome 45,118,2018-12-16 +session,1177,4,Chrome 10,76,2017-11-27 +session,1177,5,Firefox 49,65,2018-08-10 +session,1177,6,Safari 4,111,2018-04-06 +session,1177,7,Firefox 21,3,2016-07-26 +user,1178,Leana,Carin,60 +session,1178,0,Firefox 33,99,2017-04-17 +session,1178,1,Safari 19,59,2018-01-21 +session,1178,2,Chrome 40,11,2016-12-30 +session,1178,3,Safari 2,16,2018-09-18 +session,1178,4,Internet Explorer 40,1,2016-12-01 +session,1178,5,Firefox 45,64,2017-12-14 +session,1178,6,Chrome 40,23,2016-06-22 +session,1178,7,Firefox 25,39,2017-08-16 +session,1178,8,Safari 28,111,2017-10-26 +session,1178,9,Internet Explorer 22,4,2017-07-18 +user,1179,Emmanuel,Leroy,4 +session,1179,0,Internet Explorer 9,31,2016-11-13 +session,1179,1,Safari 13,62,2016-10-20 +session,1179,2,Chrome 30,1,2016-07-04 +session,1179,3,Internet Explorer 35,26,2016-07-23 +session,1179,4,Internet Explorer 7,112,2016-07-18 +session,1179,5,Internet Explorer 10,84,2018-06-16 +session,1179,6,Chrome 5,28,2017-05-20 +session,1179,7,Safari 42,71,2018-11-23 +session,1179,8,Internet Explorer 23,8,2016-10-17 +user,1180,Cortez,Celestina,50 +session,1180,0,Firefox 41,116,2016-06-16 +session,1180,1,Chrome 32,30,2017-11-20 +session,1180,2,Internet Explorer 7,49,2016-05-28 +session,1180,3,Safari 43,19,2019-02-04 +session,1180,4,Safari 43,83,2019-01-11 +session,1180,5,Firefox 23,86,2017-01-05 +user,1181,Willie,Clinton,77 +session,1181,0,Chrome 36,25,2018-10-10 +session,1181,1,Safari 2,26,2018-10-09 +session,1181,2,Internet Explorer 46,84,2018-11-24 +session,1181,3,Firefox 50,19,2016-07-07 +session,1181,4,Internet Explorer 47,41,2017-04-09 +session,1181,5,Safari 27,102,2016-11-22 +session,1181,6,Internet Explorer 46,42,2016-11-02 +session,1181,7,Firefox 35,28,2016-12-01 +session,1181,8,Internet Explorer 5,67,2016-06-24 +session,1181,9,Firefox 49,119,2018-11-30 +user,1182,Julee,Isidro,95 +session,1182,0,Chrome 19,105,2017-07-29 +session,1182,1,Firefox 38,117,2018-11-12 +session,1182,2,Internet Explorer 1,18,2018-12-20 +session,1182,3,Chrome 11,24,2017-09-21 +session,1182,4,Firefox 28,119,2019-01-02 +session,1182,5,Chrome 25,95,2017-06-27 +session,1182,6,Firefox 46,13,2018-07-15 +user,1183,Garfield,Sona,42 +session,1183,0,Internet Explorer 45,52,2017-07-20 +session,1183,1,Chrome 17,9,2018-07-03 +user,1184,Candace,Brenda,55 +session,1184,0,Safari 12,94,2016-12-14 +session,1184,1,Firefox 49,66,2017-11-03 +session,1184,2,Internet Explorer 36,96,2018-08-25 +session,1184,3,Safari 29,73,2017-11-21 +session,1184,4,Safari 44,37,2018-10-18 +session,1184,5,Safari 39,7,2017-02-12 +user,1185,Oswaldo,Maire,47 +session,1185,0,Internet Explorer 16,1,2017-11-13 +session,1185,1,Safari 34,22,2018-10-09 +session,1185,2,Internet Explorer 47,57,2018-10-16 +user,1186,Magali,Ina,0 +session,1186,0,Safari 40,119,2017-11-16 +session,1186,1,Chrome 4,80,2018-07-12 +user,1187,Rossana,Roosevelt,77 +session,1187,0,Firefox 18,24,2017-06-05 +session,1187,1,Safari 24,56,2018-02-15 +session,1187,2,Firefox 10,84,2019-01-17 +session,1187,3,Internet Explorer 28,30,2018-06-02 +session,1187,4,Safari 30,91,2017-02-05 +session,1187,5,Internet Explorer 49,30,2016-09-05 +user,1188,Toya,Salome,8 +session,1188,0,Internet Explorer 2,112,2019-01-02 +session,1188,1,Chrome 35,41,2017-07-26 +session,1188,2,Chrome 28,75,2018-11-23 +session,1188,3,Internet Explorer 36,106,2018-04-29 +session,1188,4,Safari 34,0,2017-09-23 +session,1188,5,Internet Explorer 31,27,2018-02-12 +session,1188,6,Chrome 31,48,2017-08-11 +user,1189,Zaida,Rueben,72 +session,1189,0,Firefox 16,51,2017-03-20 +session,1189,1,Internet Explorer 2,90,2017-11-26 +session,1189,2,Safari 33,102,2018-02-08 +session,1189,3,Safari 6,112,2016-05-24 +session,1189,4,Firefox 38,18,2018-12-24 +session,1189,5,Chrome 17,98,2018-07-18 +session,1189,6,Chrome 19,18,2017-08-02 +session,1189,7,Internet Explorer 39,74,2017-11-18 +session,1189,8,Firefox 7,14,2016-06-21 +user,1190,Dante,Jammie,0 +session,1190,0,Internet Explorer 45,108,2017-08-17 +session,1190,1,Firefox 24,32,2016-09-27 +session,1190,2,Safari 32,114,2017-08-03 +session,1190,3,Firefox 48,77,2018-08-20 +session,1190,4,Firefox 30,58,2018-11-18 +session,1190,5,Firefox 27,67,2018-05-11 +session,1190,6,Chrome 41,74,2018-10-29 +session,1190,7,Chrome 36,2,2017-03-08 +session,1190,8,Internet Explorer 26,22,2016-08-23 +user,1191,Katia,Bethanie,12 +session,1191,0,Internet Explorer 22,57,2018-11-27 +session,1191,1,Internet Explorer 24,94,2018-02-16 +session,1191,2,Chrome 43,44,2016-10-30 +session,1191,3,Chrome 46,46,2017-01-21 +session,1191,4,Firefox 39,95,2017-02-23 +session,1191,5,Safari 10,83,2018-04-05 +session,1191,6,Firefox 33,48,2018-08-03 +session,1191,7,Safari 32,112,2017-10-10 +user,1192,Bud,Jeremy,13 +session,1192,0,Firefox 26,14,2018-08-27 +user,1193,Rolf,Conchita,22 +session,1193,0,Safari 27,38,2018-02-06 +user,1194,Basil,Leota,82 +session,1194,0,Internet Explorer 30,8,2017-05-21 +session,1194,1,Safari 45,75,2017-09-21 +session,1194,2,Firefox 21,40,2018-12-29 +session,1194,3,Safari 14,81,2018-07-16 +session,1194,4,Chrome 28,100,2017-04-15 +session,1194,5,Firefox 7,52,2017-02-22 +session,1194,6,Safari 19,1,2017-01-24 +session,1194,7,Safari 24,89,2017-05-29 +session,1194,8,Firefox 4,84,2018-05-03 +session,1194,9,Chrome 45,101,2018-12-09 +user,1195,Preston,Kaylee,94 +session,1195,0,Safari 35,6,2017-06-09 +session,1195,1,Safari 4,99,2018-03-19 +session,1195,2,Firefox 44,118,2017-10-30 +session,1195,3,Internet Explorer 40,119,2018-10-07 +user,1196,Marguerita,Breann,18 +session,1196,0,Safari 22,80,2017-07-23 +session,1196,1,Safari 31,48,2017-10-29 +session,1196,2,Internet Explorer 30,57,2018-01-09 +user,1197,Monika,Shelba,67 +session,1197,0,Chrome 24,53,2018-05-19 +session,1197,1,Firefox 16,88,2017-05-19 +session,1197,2,Safari 4,91,2016-07-30 +session,1197,3,Firefox 45,1,2018-09-18 +session,1197,4,Chrome 37,35,2018-01-20 +user,1198,Cleo,Erlene,8 +session,1198,0,Firefox 3,112,2019-01-20 +session,1198,1,Safari 13,13,2018-09-15 +session,1198,2,Chrome 47,104,2017-08-04 +user,1199,Mike,Heriberto,68 +session,1199,0,Firefox 50,117,2018-06-22 +session,1199,1,Chrome 34,17,2018-02-14 +session,1199,2,Internet Explorer 23,48,2017-06-16 +user,1200,Doreen,Marcene,8 +session,1200,0,Chrome 50,39,2018-03-13 +session,1200,1,Firefox 46,27,2017-09-28 +session,1200,2,Firefox 11,41,2018-02-13 +session,1200,3,Firefox 3,83,2017-11-22 +session,1200,4,Safari 28,2,2018-06-06 +session,1200,5,Safari 41,114,2017-01-13 +user,1201,Fidela,Gertha,9 +session,1201,0,Chrome 49,13,2017-03-28 +session,1201,1,Chrome 17,91,2016-12-04 +session,1201,2,Internet Explorer 11,96,2018-10-07 +session,1201,3,Safari 15,6,2018-07-11 +session,1201,4,Safari 40,58,2016-07-21 +session,1201,5,Firefox 40,12,2017-12-29 +session,1201,6,Chrome 25,38,2018-06-04 +session,1201,7,Chrome 12,14,2019-01-28 +session,1201,8,Chrome 39,106,2018-10-03 +user,1202,Normand,Jacques,34 +session,1202,0,Firefox 40,10,2016-12-01 +session,1202,1,Safari 43,13,2018-08-01 +session,1202,2,Chrome 44,30,2018-07-31 +session,1202,3,Firefox 32,43,2017-05-11 +session,1202,4,Chrome 8,80,2018-01-21 +session,1202,5,Safari 7,101,2018-03-26 +session,1202,6,Firefox 5,13,2018-01-31 +user,1203,Jefferson,Margaretta,16 +session,1203,0,Chrome 38,1,2017-01-03 +user,1204,Les,Lana,77 +session,1204,0,Internet Explorer 28,103,2018-09-08 +session,1204,1,Firefox 8,86,2017-07-19 +session,1204,2,Firefox 42,62,2017-03-19 +session,1204,3,Chrome 20,0,2017-03-03 +session,1204,4,Chrome 50,85,2017-12-02 +user,1205,Johnathan,Sacha,0 +session,1205,0,Internet Explorer 16,24,2018-01-29 +session,1205,1,Safari 20,31,2018-07-16 +session,1205,2,Firefox 43,19,2016-11-26 +session,1205,3,Safari 38,62,2016-12-20 +session,1205,4,Safari 1,92,2016-07-14 +session,1205,5,Safari 13,25,2016-07-23 +user,1206,Juliann,Concepcion,55 +session,1206,0,Internet Explorer 6,47,2016-11-23 +session,1206,1,Chrome 46,37,2017-12-03 +session,1206,2,Firefox 29,115,2017-05-04 +session,1206,3,Internet Explorer 31,98,2018-03-26 +session,1206,4,Safari 31,37,2018-02-07 +session,1206,5,Safari 18,20,2018-10-24 +session,1206,6,Firefox 15,104,2016-10-10 +user,1207,Mason,Araceli,4 +session,1207,0,Chrome 25,33,2017-06-18 +session,1207,1,Safari 14,4,2018-04-16 +session,1207,2,Internet Explorer 33,41,2017-06-26 +session,1207,3,Safari 16,7,2017-08-15 +session,1207,4,Internet Explorer 8,28,2018-07-03 +session,1207,5,Safari 42,7,2016-11-21 +session,1207,6,Chrome 38,54,2019-01-14 +session,1207,7,Internet Explorer 48,108,2019-01-24 +user,1208,Cleotilde,Elaina,65 +session,1208,0,Chrome 11,28,2018-05-20 +session,1208,1,Chrome 30,88,2018-03-17 +session,1208,2,Firefox 18,100,2016-09-19 +session,1208,3,Safari 32,34,2016-09-28 +session,1208,4,Internet Explorer 30,78,2017-10-15 +user,1209,Arlette,Neal,43 +session,1209,0,Safari 42,69,2016-08-25 +session,1209,1,Safari 30,75,2017-05-22 +session,1209,2,Internet Explorer 18,47,2018-10-11 +session,1209,3,Firefox 36,102,2018-07-07 +session,1209,4,Firefox 6,27,2017-12-07 +user,1210,Brice,Toni,27 +session,1210,0,Safari 6,11,2018-05-28 +session,1210,1,Firefox 30,115,2017-09-28 +session,1210,2,Internet Explorer 36,23,2017-09-20 +session,1210,3,Internet Explorer 18,106,2016-08-28 +session,1210,4,Chrome 30,30,2018-11-24 +user,1211,Zonia,Leoma,56 +session,1211,0,Internet Explorer 35,20,2018-06-10 +session,1211,1,Internet Explorer 13,5,2016-08-12 +session,1211,2,Firefox 11,79,2017-10-16 +user,1212,Fritz,Mertie,38 +session,1212,0,Safari 1,40,2018-02-24 +session,1212,1,Safari 8,100,2016-06-29 +session,1212,2,Safari 46,89,2018-05-30 +session,1212,3,Firefox 15,20,2017-08-04 +session,1212,4,Chrome 26,95,2016-07-12 +user,1213,Daine,Donnie,50 +session,1213,0,Safari 3,98,2017-01-09 +session,1213,1,Internet Explorer 28,59,2017-01-18 +session,1213,2,Internet Explorer 15,77,2018-02-26 +session,1213,3,Internet Explorer 19,84,2018-10-02 +user,1214,Joshua,Sherley,64 +session,1214,0,Chrome 41,22,2017-09-21 +session,1214,1,Internet Explorer 13,63,2018-04-23 +session,1214,2,Chrome 2,107,2017-05-10 +session,1214,3,Chrome 12,111,2016-05-27 +session,1214,4,Internet Explorer 25,32,2016-10-29 +session,1214,5,Safari 21,32,2017-02-22 +user,1215,Aleshia,Opal,2 +session,1215,0,Safari 48,87,2016-12-17 +session,1215,1,Firefox 41,21,2017-11-27 +session,1215,2,Chrome 15,48,2016-11-19 +session,1215,3,Internet Explorer 49,30,2017-09-26 +session,1215,4,Chrome 28,70,2017-05-25 +session,1215,5,Chrome 16,67,2016-10-21 +user,1216,Harris,Rhoda,98 +session,1216,0,Safari 33,110,2018-04-07 +session,1216,1,Firefox 41,68,2017-06-15 +session,1216,2,Safari 8,40,2016-09-16 +session,1216,3,Chrome 15,117,2018-05-15 +session,1216,4,Internet Explorer 11,59,2017-01-05 +session,1216,5,Safari 11,66,2018-07-20 +session,1216,6,Chrome 27,70,2017-06-24 +session,1216,7,Firefox 49,20,2019-01-09 +session,1216,8,Safari 9,30,2018-01-19 +session,1216,9,Firefox 19,93,2018-05-16 +user,1217,Penni,Jerica,34 +session,1217,0,Internet Explorer 27,61,2018-08-03 +session,1217,1,Internet Explorer 41,43,2017-09-01 +session,1217,2,Safari 34,43,2017-12-13 +session,1217,3,Safari 44,75,2018-01-23 +user,1218,Sol,Darin,0 +session,1218,0,Internet Explorer 49,54,2018-11-17 +session,1218,1,Safari 48,117,2016-12-14 +session,1218,2,Internet Explorer 10,99,2018-08-04 +user,1219,Tyson,Celia,94 +session,1219,0,Internet Explorer 44,42,2017-08-14 +session,1219,1,Internet Explorer 40,107,2017-08-15 +user,1220,Ellen,Toney,64 +session,1220,0,Internet Explorer 21,21,2017-10-20 +session,1220,1,Firefox 49,113,2018-01-18 +user,1221,Scott,Allen,86 +session,1221,0,Chrome 44,65,2017-05-13 +session,1221,1,Internet Explorer 17,6,2017-01-17 +session,1221,2,Chrome 25,76,2018-12-24 +user,1222,Marquis,Latoyia,85 +session,1222,0,Internet Explorer 34,53,2017-02-26 +session,1222,1,Safari 7,101,2018-01-04 +session,1222,2,Safari 4,47,2018-08-11 +session,1222,3,Internet Explorer 45,27,2018-07-17 +session,1222,4,Firefox 33,14,2017-06-05 +session,1222,5,Safari 49,42,2017-03-24 +session,1222,6,Chrome 45,58,2018-08-24 +user,1223,Alexander,Kecia,23 +session,1223,0,Firefox 25,52,2018-07-07 +session,1223,1,Safari 9,55,2016-05-19 +session,1223,2,Safari 30,53,2018-07-12 +session,1223,3,Safari 30,94,2017-08-01 +session,1223,4,Chrome 48,50,2018-09-09 +session,1223,5,Safari 12,13,2016-11-09 +session,1223,6,Firefox 22,57,2016-08-05 +session,1223,7,Internet Explorer 20,107,2016-12-29 +user,1224,Mitzi,Maya,9 +session,1224,0,Safari 36,75,2017-02-04 +session,1224,1,Internet Explorer 34,94,2017-01-15 +session,1224,2,Firefox 30,86,2018-08-29 +session,1224,3,Firefox 15,20,2018-08-09 +session,1224,4,Chrome 41,87,2017-11-17 +session,1224,5,Firefox 21,29,2019-01-24 +session,1224,6,Internet Explorer 30,80,2017-01-13 +user,1225,Aisha,Sulema,19 +session,1225,0,Firefox 10,72,2018-12-14 +session,1225,1,Internet Explorer 42,47,2016-09-29 +session,1225,2,Firefox 4,25,2016-09-22 +user,1226,Nova,Jade,4 +session,1226,0,Internet Explorer 8,67,2016-08-11 +session,1226,1,Internet Explorer 22,97,2018-11-06 +session,1226,2,Firefox 50,84,2016-05-24 +session,1226,3,Internet Explorer 33,34,2019-02-07 +session,1226,4,Firefox 37,101,2017-10-07 +session,1226,5,Safari 5,29,2017-02-05 +session,1226,6,Chrome 7,30,2017-12-24 +session,1226,7,Safari 7,81,2016-09-05 +session,1226,8,Firefox 13,79,2018-04-25 +user,1227,Jamie,Meg,52 +session,1227,0,Safari 40,118,2016-10-13 +session,1227,1,Chrome 6,97,2017-09-18 +session,1227,2,Internet Explorer 33,62,2016-08-10 +user,1228,Lulu,Lucio,26 +session,1228,0,Safari 47,112,2017-11-20 +session,1228,1,Internet Explorer 4,89,2017-03-04 +session,1228,2,Internet Explorer 44,61,2017-12-04 +session,1228,3,Safari 45,106,2018-06-04 +session,1228,4,Safari 47,86,2017-10-22 +session,1228,5,Chrome 28,69,2018-05-20 +session,1228,6,Chrome 15,113,2018-07-12 +user,1229,Jeffery,Cicely,65 +session,1229,0,Safari 1,53,2017-08-17 +session,1229,1,Safari 9,52,2016-11-17 +session,1229,2,Internet Explorer 46,52,2018-06-08 +session,1229,3,Internet Explorer 7,5,2018-07-02 +session,1229,4,Chrome 11,78,2018-04-16 +user,1230,Cherry,Hilma,92 +session,1230,0,Safari 38,54,2016-11-27 +user,1231,Rhona,Zona,33 +session,1231,0,Safari 48,51,2018-10-21 +session,1231,1,Safari 8,35,2018-11-08 +session,1231,2,Firefox 48,0,2018-06-13 +session,1231,3,Firefox 18,102,2019-01-20 +session,1231,4,Safari 16,36,2018-07-17 +session,1231,5,Firefox 32,36,2016-10-07 +session,1231,6,Chrome 50,57,2017-06-26 +session,1231,7,Chrome 20,87,2017-01-14 +user,1232,Shanta,Violet,77 +session,1232,0,Internet Explorer 12,26,2016-06-07 +session,1232,1,Firefox 14,24,2016-08-14 +session,1232,2,Internet Explorer 39,65,2018-05-31 +session,1232,3,Chrome 29,78,2018-10-27 +user,1233,Mikaela,Leonia,68 +session,1233,0,Safari 34,105,2017-01-27 +session,1233,1,Safari 21,73,2017-11-29 +session,1233,2,Internet Explorer 5,20,2017-06-22 +session,1233,3,Safari 6,8,2018-09-04 +session,1233,4,Safari 9,48,2019-01-19 +user,1234,Ike,Jenniffer,18 +session,1234,0,Internet Explorer 17,53,2016-11-26 +session,1234,1,Firefox 31,45,2018-10-18 +session,1234,2,Chrome 17,34,2018-12-17 +session,1234,3,Firefox 24,71,2019-01-25 +session,1234,4,Firefox 22,42,2016-12-11 +user,1235,Trudie,Vita,28 +session,1235,0,Chrome 35,31,2016-12-09 +session,1235,1,Chrome 22,29,2016-07-21 +session,1235,2,Internet Explorer 36,17,2016-08-31 +session,1235,3,Chrome 46,20,2017-09-19 +session,1235,4,Firefox 35,39,2019-02-09 +user,1236,Dannie,Wallace,33 +session,1236,0,Firefox 9,5,2018-06-15 +session,1236,1,Internet Explorer 4,27,2016-06-23 +session,1236,2,Internet Explorer 25,97,2018-10-18 +user,1237,Meggan,Mellie,63 +session,1237,0,Internet Explorer 10,24,2017-04-17 +session,1237,1,Chrome 34,110,2016-07-07 +session,1237,2,Firefox 45,77,2016-06-01 +session,1237,3,Safari 22,67,2018-02-26 +session,1237,4,Internet Explorer 38,24,2017-02-28 +user,1238,Nubia,Shavonda,54 +session,1238,0,Firefox 14,25,2018-11-07 +session,1238,1,Firefox 8,29,2017-07-19 +session,1238,2,Internet Explorer 36,42,2017-07-28 +user,1239,Adolfo,Lenora,14 +session,1239,0,Chrome 19,39,2016-09-17 +session,1239,1,Chrome 13,65,2018-03-28 +session,1239,2,Chrome 31,65,2018-03-18 +session,1239,3,Internet Explorer 27,85,2017-10-24 +session,1239,4,Chrome 23,108,2018-08-21 +user,1240,Frank,Corina,13 +session,1240,0,Internet Explorer 18,0,2017-10-31 +session,1240,1,Firefox 50,4,2018-11-09 +session,1240,2,Chrome 37,103,2016-12-28 +session,1240,3,Internet Explorer 7,108,2017-06-15 +session,1240,4,Internet Explorer 6,21,2018-08-21 +session,1240,5,Safari 29,73,2019-01-15 +session,1240,6,Internet Explorer 18,118,2019-02-09 +session,1240,7,Chrome 45,38,2018-11-18 +session,1240,8,Chrome 28,96,2018-03-10 +user,1241,Caroyln,Burma,44 +session,1241,0,Internet Explorer 49,17,2018-10-03 +session,1241,1,Internet Explorer 14,103,2017-11-28 +user,1242,Josefa,Bill,99 +session,1242,0,Chrome 33,8,2016-11-30 +session,1242,1,Safari 29,39,2017-07-08 +session,1242,2,Safari 10,24,2016-08-17 +session,1242,3,Firefox 10,6,2018-07-06 +session,1242,4,Chrome 26,7,2017-03-12 +session,1242,5,Firefox 10,59,2018-09-20 +session,1242,6,Safari 39,22,2018-05-17 +session,1242,7,Firefox 50,106,2017-05-30 +session,1242,8,Internet Explorer 3,45,2019-02-03 +user,1243,Ammie,Antione,43 +session,1243,0,Internet Explorer 35,52,2016-06-15 +session,1243,1,Safari 18,96,2016-12-02 +session,1243,2,Firefox 43,63,2018-05-20 +session,1243,3,Chrome 50,86,2017-09-11 +session,1243,4,Chrome 18,23,2017-05-27 +session,1243,5,Chrome 49,42,2017-01-15 +session,1243,6,Chrome 4,114,2018-08-04 +session,1243,7,Firefox 14,2,2019-02-07 +session,1243,8,Chrome 39,3,2016-11-23 +session,1243,9,Internet Explorer 41,14,2018-06-17 +user,1244,Ja,Lana,84 +session,1244,0,Internet Explorer 18,119,2017-04-04 +session,1244,1,Firefox 47,18,2018-12-12 +session,1244,2,Internet Explorer 47,55,2018-03-19 +session,1244,3,Firefox 43,113,2017-11-23 +session,1244,4,Internet Explorer 35,12,2018-05-06 +session,1244,5,Safari 22,0,2017-12-26 +session,1244,6,Internet Explorer 43,58,2016-09-01 +session,1244,7,Internet Explorer 44,39,2018-06-17 +session,1244,8,Internet Explorer 28,70,2017-09-10 +session,1244,9,Safari 9,27,2016-08-12 +user,1245,Tommy,Letha,72 +session,1245,0,Chrome 3,107,2016-11-07 +session,1245,1,Chrome 17,70,2017-09-07 +session,1245,2,Internet Explorer 21,69,2017-09-22 +session,1245,3,Chrome 20,110,2018-07-29 +session,1245,4,Safari 29,90,2016-11-07 +session,1245,5,Firefox 30,23,2016-06-28 +session,1245,6,Chrome 21,26,2016-09-09 +user,1246,Velvet,Verdie,4 +session,1246,0,Safari 24,79,2018-11-13 +session,1246,1,Firefox 9,31,2018-08-19 +session,1246,2,Internet Explorer 30,39,2017-10-08 +session,1246,3,Internet Explorer 1,27,2017-03-24 +session,1246,4,Firefox 36,33,2018-06-28 +session,1246,5,Firefox 40,33,2017-04-08 +session,1246,6,Internet Explorer 17,58,2017-12-23 +session,1246,7,Chrome 1,14,2017-10-07 +session,1246,8,Internet Explorer 24,91,2017-02-04 +session,1246,9,Safari 36,108,2017-09-27 +user,1247,Miles,Minda,98 +session,1247,0,Firefox 49,86,2018-03-26 +session,1247,1,Internet Explorer 43,65,2018-05-06 +session,1247,2,Chrome 28,102,2018-07-01 +session,1247,3,Chrome 45,44,2016-06-18 +session,1247,4,Firefox 17,116,2018-04-04 +session,1247,5,Chrome 50,88,2018-08-10 +session,1247,6,Chrome 44,76,2018-08-23 +session,1247,7,Firefox 11,19,2017-04-29 +user,1248,Boyd,Micki,57 +session,1248,0,Chrome 19,64,2016-11-18 +session,1248,1,Firefox 20,69,2017-04-22 +session,1248,2,Internet Explorer 8,8,2017-08-28 +user,1249,Lynsey,Doria,82 +session,1249,0,Firefox 40,77,2017-05-17 +session,1249,1,Firefox 21,59,2017-08-21 +user,1250,Samira,Andre,42 +session,1250,0,Chrome 17,1,2017-02-02 +session,1250,1,Firefox 45,93,2018-05-20 +session,1250,2,Internet Explorer 47,99,2018-12-24 +session,1250,3,Firefox 46,48,2018-12-15 +session,1250,4,Firefox 18,59,2018-06-04 +session,1250,5,Chrome 47,60,2017-04-30 +session,1250,6,Safari 1,29,2018-10-16 +session,1250,7,Chrome 15,93,2017-06-26 +session,1250,8,Internet Explorer 20,34,2016-06-21 +session,1250,9,Firefox 16,81,2016-12-09 +user,1251,Lawrence,Philip,95 +session,1251,0,Internet Explorer 15,48,2018-06-13 +user,1252,Rozanne,Phebe,78 +session,1252,0,Chrome 16,11,2017-01-31 +session,1252,1,Internet Explorer 23,13,2018-11-07 +session,1252,2,Chrome 11,24,2018-03-29 +session,1252,3,Safari 7,94,2016-07-14 +session,1252,4,Internet Explorer 47,49,2018-04-19 +session,1252,5,Internet Explorer 44,57,2018-09-18 +session,1252,6,Internet Explorer 24,55,2016-05-23 +session,1252,7,Safari 34,35,2018-01-24 +user,1253,Orville,Fredericka,93 +session,1253,0,Safari 44,44,2016-10-19 +session,1253,1,Safari 23,1,2017-06-09 +session,1253,2,Internet Explorer 30,87,2017-10-05 +session,1253,3,Safari 36,29,2018-11-08 +session,1253,4,Chrome 39,8,2016-08-18 +session,1253,5,Firefox 21,103,2016-09-22 +session,1253,6,Internet Explorer 1,13,2017-02-02 +session,1253,7,Internet Explorer 17,101,2018-05-29 +user,1254,Denny,Bea,17 +session,1254,0,Safari 20,66,2016-08-26 +session,1254,1,Safari 17,37,2018-12-18 +session,1254,2,Internet Explorer 42,96,2018-07-20 +user,1255,Garfield,Thora,17 +session,1255,0,Safari 7,87,2018-08-09 +session,1255,1,Internet Explorer 49,77,2017-12-14 +session,1255,2,Safari 4,75,2018-06-15 +session,1255,3,Safari 14,5,2017-10-16 +session,1255,4,Firefox 32,51,2018-07-31 +user,1256,Ula,Dennise,69 +session,1256,0,Chrome 9,71,2019-01-30 +session,1256,1,Chrome 50,46,2017-03-31 +session,1256,2,Firefox 12,71,2018-07-21 +session,1256,3,Internet Explorer 6,93,2016-09-26 +session,1256,4,Internet Explorer 20,18,2018-08-10 +session,1256,5,Firefox 18,81,2016-07-17 +session,1256,6,Chrome 29,36,2018-08-27 +session,1256,7,Firefox 50,89,2018-01-11 +user,1257,Domenic,Verlie,57 +session,1257,0,Internet Explorer 3,96,2017-04-11 +session,1257,1,Safari 21,18,2017-07-08 +session,1257,2,Chrome 14,76,2016-07-27 +session,1257,3,Chrome 33,58,2018-10-30 +session,1257,4,Safari 4,59,2017-02-10 +session,1257,5,Chrome 16,25,2018-10-23 +session,1257,6,Firefox 28,70,2017-01-19 +session,1257,7,Chrome 47,59,2017-11-29 +session,1257,8,Firefox 21,40,2017-06-24 +session,1257,9,Internet Explorer 15,119,2017-01-10 +user,1258,Vina,Cher,23 +session,1258,0,Firefox 30,65,2016-07-21 +session,1258,1,Firefox 8,8,2018-03-06 +user,1259,Shawnta,Keli,65 +session,1259,0,Safari 9,101,2018-08-30 +session,1259,1,Firefox 9,94,2017-09-05 +session,1259,2,Firefox 45,34,2018-06-24 +session,1259,3,Firefox 13,86,2018-09-30 +user,1260,Chassidy,Gabrielle,68 +session,1260,0,Internet Explorer 21,87,2017-07-04 +user,1261,Andy,Aleida,77 +session,1261,0,Safari 31,32,2017-07-02 +session,1261,1,Firefox 5,27,2017-02-25 +user,1262,Darryl,Ila,74 +session,1262,0,Chrome 20,99,2018-09-07 +session,1262,1,Chrome 19,102,2018-07-10 +session,1262,2,Chrome 29,35,2017-04-22 +session,1262,3,Chrome 42,68,2018-03-27 +session,1262,4,Internet Explorer 40,0,2017-09-21 +session,1262,5,Firefox 36,86,2018-01-06 +user,1263,Ollie,Donita,34 +session,1263,0,Firefox 36,8,2018-06-05 +session,1263,1,Firefox 22,22,2018-12-09 +session,1263,2,Chrome 29,31,2018-05-13 +session,1263,3,Firefox 13,54,2018-07-22 +user,1264,Florentino,Rheba,19 +session,1264,0,Firefox 8,71,2018-10-23 +session,1264,1,Chrome 7,103,2019-01-11 +session,1264,2,Chrome 17,8,2018-01-13 +session,1264,3,Internet Explorer 13,111,2018-06-02 +session,1264,4,Safari 30,38,2017-10-27 +session,1264,5,Firefox 24,26,2016-08-28 +user,1265,Otis,Agatha,79 +session,1265,0,Firefox 41,79,2017-02-12 +session,1265,1,Firefox 30,26,2018-02-04 +session,1265,2,Internet Explorer 31,68,2017-04-28 +session,1265,3,Firefox 15,22,2017-02-02 +session,1265,4,Chrome 18,21,2016-08-10 +session,1265,5,Internet Explorer 30,37,2018-08-19 +session,1265,6,Safari 27,52,2018-01-28 +session,1265,7,Safari 34,112,2017-02-24 +user,1266,Dakota,Luke,19 +session,1266,0,Safari 11,53,2017-07-01 +session,1266,1,Firefox 46,109,2018-03-13 +session,1266,2,Firefox 24,105,2018-06-01 +session,1266,3,Internet Explorer 9,7,2017-03-12 +session,1266,4,Firefox 9,59,2017-02-15 +session,1266,5,Safari 2,50,2017-02-21 +session,1266,6,Internet Explorer 49,19,2017-05-09 +session,1266,7,Internet Explorer 41,33,2017-03-27 +session,1266,8,Firefox 13,57,2017-12-18 +session,1266,9,Safari 18,12,2019-01-22 +user,1267,Kimber,Delana,47 +session,1267,0,Safari 35,117,2018-05-24 +session,1267,1,Safari 15,4,2018-08-20 +session,1267,2,Safari 47,107,2018-10-21 +session,1267,3,Safari 34,97,2017-02-10 +session,1267,4,Safari 25,30,2018-12-09 +session,1267,5,Internet Explorer 3,101,2018-03-31 +session,1267,6,Chrome 11,71,2018-01-11 +user,1268,Keneth,Clora,58 +session,1268,0,Safari 11,58,2016-10-09 +session,1268,1,Chrome 30,90,2016-08-07 +session,1268,2,Safari 16,38,2016-11-24 +session,1268,3,Internet Explorer 27,101,2016-09-10 +session,1268,4,Firefox 33,42,2017-08-17 +session,1268,5,Safari 45,58,2018-08-03 +session,1268,6,Internet Explorer 19,92,2018-12-08 +session,1268,7,Firefox 10,67,2017-05-06 +session,1268,8,Internet Explorer 40,32,2017-04-27 +user,1269,Vonda,Violet,87 +session,1269,0,Safari 30,9,2016-10-11 +session,1269,1,Internet Explorer 2,101,2016-05-28 +session,1269,2,Chrome 5,84,2018-05-29 +session,1269,3,Safari 7,117,2018-07-31 +session,1269,4,Chrome 30,30,2016-11-08 +session,1269,5,Internet Explorer 36,78,2018-10-31 +session,1269,6,Safari 20,17,2016-12-27 +session,1269,7,Safari 26,115,2018-11-05 +session,1269,8,Safari 20,75,2016-12-15 +user,1270,Kyung,Freddy,48 +session,1270,0,Firefox 25,53,2018-03-17 +session,1270,1,Firefox 11,5,2016-12-20 +session,1270,2,Firefox 2,117,2017-10-16 +session,1270,3,Chrome 33,12,2017-03-31 +session,1270,4,Safari 16,48,2017-01-15 +session,1270,5,Safari 45,105,2018-08-12 +session,1270,6,Safari 31,48,2017-01-04 +session,1270,7,Firefox 39,70,2018-03-18 +user,1271,Carlo,Ashely,78 +session,1271,0,Safari 8,115,2018-12-22 +session,1271,1,Safari 36,58,2016-09-22 +session,1271,2,Firefox 37,46,2017-05-29 +session,1271,3,Internet Explorer 12,94,2017-07-20 +session,1271,4,Safari 19,79,2018-06-05 +session,1271,5,Firefox 30,17,2019-02-07 +user,1272,Stacy,Lizbeth,48 +session,1272,0,Chrome 10,62,2016-11-12 +session,1272,1,Chrome 19,86,2018-05-02 +user,1273,Mack,Rivka,75 +session,1273,0,Chrome 6,114,2016-07-16 +session,1273,1,Chrome 48,25,2016-10-23 +session,1273,2,Chrome 26,33,2018-07-13 +session,1273,3,Firefox 47,8,2017-09-14 +session,1273,4,Internet Explorer 14,58,2018-10-18 +session,1273,5,Firefox 44,51,2018-02-26 +session,1273,6,Chrome 17,96,2017-06-20 +session,1273,7,Internet Explorer 16,9,2017-12-17 +session,1273,8,Chrome 31,90,2017-05-18 +session,1273,9,Safari 17,39,2017-03-30 +user,1274,Adolfo,Mickey,69 +session,1274,0,Safari 43,11,2018-09-02 +user,1275,Barabara,Noelia,64 +session,1275,0,Safari 46,66,2017-12-11 +session,1275,1,Internet Explorer 22,1,2018-06-04 +session,1275,2,Chrome 16,82,2017-07-19 +session,1275,3,Firefox 25,13,2017-10-06 +session,1275,4,Internet Explorer 21,36,2018-10-31 +session,1275,5,Chrome 27,59,2018-05-13 +session,1275,6,Safari 29,83,2017-02-12 +session,1275,7,Internet Explorer 26,113,2016-12-23 +session,1275,8,Chrome 20,116,2017-02-27 +user,1276,Misti,Jeromy,30 +session,1276,0,Chrome 26,26,2017-02-28 +session,1276,1,Chrome 47,84,2018-03-10 +session,1276,2,Safari 44,11,2018-02-17 +session,1276,3,Firefox 1,108,2017-01-05 +session,1276,4,Internet Explorer 21,60,2018-09-25 +session,1276,5,Safari 5,60,2018-11-22 +session,1276,6,Chrome 29,46,2017-12-22 +session,1276,7,Internet Explorer 4,94,2017-10-03 +session,1276,8,Chrome 38,2,2018-05-21 +session,1276,9,Firefox 30,73,2017-09-17 +user,1277,Elicia,Brittny,15 +session,1277,0,Internet Explorer 9,64,2017-08-24 +session,1277,1,Firefox 50,17,2017-12-18 +session,1277,2,Internet Explorer 41,51,2017-11-23 +session,1277,3,Chrome 41,33,2017-04-25 +session,1277,4,Firefox 25,104,2017-10-05 +session,1277,5,Chrome 48,46,2018-08-24 +user,1278,Alfredo,Ariel,10 +session,1278,0,Firefox 48,75,2017-10-09 +session,1278,1,Chrome 27,5,2017-10-16 +session,1278,2,Safari 26,8,2017-12-27 +session,1278,3,Firefox 33,10,2018-08-23 +session,1278,4,Safari 11,33,2016-12-25 +session,1278,5,Chrome 11,88,2018-09-24 +session,1278,6,Safari 26,18,2017-02-25 +user,1279,Chantal,Svetlana,28 +session,1279,0,Internet Explorer 33,24,2017-08-19 +session,1279,1,Firefox 8,5,2017-01-24 +session,1279,2,Safari 27,30,2018-02-28 +user,1280,Mason,Christie,40 +session,1280,0,Chrome 32,32,2018-06-06 +session,1280,1,Firefox 9,48,2017-12-11 +session,1280,2,Safari 24,27,2017-03-26 +session,1280,3,Internet Explorer 27,19,2019-01-16 +session,1280,4,Internet Explorer 26,40,2017-02-06 +session,1280,5,Chrome 48,27,2016-08-14 +session,1280,6,Internet Explorer 50,111,2017-07-24 +session,1280,7,Internet Explorer 37,47,2017-05-09 +user,1281,Earlene,Valene,9 +session,1281,0,Firefox 49,48,2018-01-26 +session,1281,1,Internet Explorer 15,51,2016-11-16 +user,1282,Jerrica,Hillary,39 +session,1282,0,Safari 30,63,2017-09-19 +session,1282,1,Safari 6,51,2018-07-30 +session,1282,2,Firefox 18,90,2018-11-29 +session,1282,3,Chrome 20,55,2017-06-19 +session,1282,4,Chrome 48,98,2017-02-10 +session,1282,5,Firefox 42,102,2017-08-11 +session,1282,6,Internet Explorer 18,79,2016-08-24 +session,1282,7,Internet Explorer 31,116,2016-10-13 +session,1282,8,Firefox 33,83,2018-04-28 +user,1283,Daryl,Hanna,61 +session,1283,0,Internet Explorer 24,116,2017-05-25 +session,1283,1,Internet Explorer 9,100,2017-12-28 +session,1283,2,Safari 45,109,2016-09-25 +user,1284,Linh,Marybelle,29 +session,1284,0,Firefox 36,110,2018-10-01 +session,1284,1,Internet Explorer 6,102,2016-07-06 +session,1284,2,Safari 35,74,2018-05-19 +session,1284,3,Firefox 22,27,2018-04-09 +session,1284,4,Safari 4,54,2017-07-26 +session,1284,5,Firefox 41,52,2017-11-26 +session,1284,6,Safari 11,36,2017-06-04 +session,1284,7,Chrome 17,11,2018-02-22 +user,1285,Chauncey,Shu,63 +session,1285,0,Safari 31,12,2016-09-02 +session,1285,1,Firefox 16,77,2017-06-01 +session,1285,2,Chrome 5,88,2018-08-11 +session,1285,3,Firefox 43,116,2018-06-18 +session,1285,4,Chrome 26,86,2017-04-18 +session,1285,5,Chrome 43,13,2016-08-28 +session,1285,6,Firefox 18,63,2018-05-21 +session,1285,7,Internet Explorer 40,104,2018-07-14 +user,1286,Elizebeth,Rutha,24 +session,1286,0,Internet Explorer 5,59,2018-04-16 +session,1286,1,Internet Explorer 49,15,2018-09-07 +user,1287,Amalia,Jarvis,68 +session,1287,0,Safari 16,86,2017-02-21 +session,1287,1,Chrome 37,30,2017-08-18 +session,1287,2,Firefox 7,58,2017-03-28 +user,1288,Chase,Holley,95 +session,1288,0,Chrome 1,9,2018-05-18 +session,1288,1,Chrome 23,0,2018-12-07 +session,1288,2,Internet Explorer 2,24,2018-03-19 +session,1288,3,Firefox 16,4,2017-03-31 +user,1289,Shonda,Steve,38 +session,1289,0,Safari 32,101,2016-06-22 +user,1290,Aleida,Willy,13 +session,1290,0,Safari 25,105,2017-08-02 +user,1291,Ma,Mariana,76 +session,1291,0,Firefox 5,5,2017-01-05 +session,1291,1,Internet Explorer 19,43,2017-10-19 +user,1292,Vicente,Jere,4 +session,1292,0,Safari 2,102,2016-07-22 +user,1293,Doreatha,Ann,54 +session,1293,0,Internet Explorer 41,47,2016-10-05 +session,1293,1,Internet Explorer 32,94,2016-09-28 +session,1293,2,Firefox 13,110,2016-09-13 +session,1293,3,Chrome 15,106,2018-08-12 +session,1293,4,Firefox 4,41,2016-08-30 +session,1293,5,Safari 34,104,2017-12-28 +session,1293,6,Chrome 33,106,2018-10-04 +session,1293,7,Firefox 1,115,2018-11-14 +session,1293,8,Safari 18,25,2018-01-05 +user,1294,Clair,Jenine,54 +session,1294,0,Chrome 14,76,2016-10-06 +user,1295,Myles,Chana,27 +session,1295,0,Chrome 26,104,2017-11-12 +session,1295,1,Internet Explorer 47,76,2016-06-19 +session,1295,2,Internet Explorer 29,104,2017-05-28 +session,1295,3,Internet Explorer 15,30,2017-12-01 +session,1295,4,Firefox 42,107,2017-11-15 +session,1295,5,Firefox 36,108,2017-12-10 +session,1295,6,Chrome 9,81,2017-04-04 +session,1295,7,Internet Explorer 38,21,2017-03-27 +session,1295,8,Firefox 19,107,2017-06-05 +user,1296,Jillian,Precious,61 +session,1296,0,Firefox 36,90,2018-05-15 +session,1296,1,Safari 48,13,2018-06-26 +session,1296,2,Internet Explorer 43,106,2018-09-19 +session,1296,3,Safari 4,11,2017-06-25 +session,1296,4,Safari 33,14,2018-10-23 +session,1296,5,Internet Explorer 32,56,2018-05-01 +session,1296,6,Internet Explorer 29,81,2017-10-26 +session,1296,7,Chrome 22,113,2017-10-25 +session,1296,8,Chrome 27,102,2018-05-23 +session,1296,9,Safari 27,114,2016-09-29 +user,1297,Dennis,Eliza,10 +session,1297,0,Safari 4,104,2018-07-31 +session,1297,1,Chrome 42,73,2017-07-02 +session,1297,2,Firefox 38,27,2017-04-13 +user,1298,Diego,Lelia,80 +session,1298,0,Safari 37,99,2018-10-20 +session,1298,1,Firefox 2,32,2018-07-01 +session,1298,2,Internet Explorer 22,65,2018-03-21 +session,1298,3,Safari 6,58,2016-08-16 +session,1298,4,Firefox 15,11,2018-02-18 +session,1298,5,Firefox 34,13,2017-11-06 +session,1298,6,Chrome 31,65,2017-07-22 +user,1299,Song,Keva,75 +session,1299,0,Firefox 49,113,2018-05-07 +session,1299,1,Chrome 47,104,2018-12-07 +session,1299,2,Firefox 23,58,2016-07-04 +session,1299,3,Firefox 44,114,2016-10-11 +session,1299,4,Chrome 20,103,2017-07-17 +session,1299,5,Internet Explorer 41,37,2018-08-17 +session,1299,6,Internet Explorer 7,24,2018-06-01 +session,1299,7,Chrome 40,4,2016-07-15 +user,1300,Renato,Halley,43 +session,1300,0,Safari 47,24,2017-07-26 +user,1301,Kelly,Guadalupe,53 +session,1301,0,Chrome 32,15,2019-01-02 +session,1301,1,Safari 8,50,2018-09-02 +session,1301,2,Safari 33,65,2018-06-27 +session,1301,3,Safari 19,112,2018-07-19 +session,1301,4,Internet Explorer 45,24,2018-03-29 +session,1301,5,Internet Explorer 3,62,2018-12-26 +session,1301,6,Internet Explorer 22,71,2018-06-05 +session,1301,7,Safari 14,107,2019-01-01 +session,1301,8,Firefox 33,40,2017-05-30 +user,1302,Chester,Jonah,62 +session,1302,0,Chrome 20,91,2018-04-19 +session,1302,1,Safari 32,62,2017-06-18 +session,1302,2,Firefox 7,45,2018-09-27 +user,1303,Marty,Lasandra,28 +session,1303,0,Safari 27,10,2018-03-10 +session,1303,1,Firefox 24,7,2018-10-07 +session,1303,2,Safari 16,61,2016-08-07 +session,1303,3,Chrome 11,0,2016-06-22 +session,1303,4,Safari 15,108,2017-09-28 +session,1303,5,Firefox 44,85,2018-06-20 +session,1303,6,Firefox 44,72,2018-06-23 +user,1304,Bernie,Lee,98 +session,1304,0,Safari 47,64,2018-09-21 +session,1304,1,Firefox 23,85,2017-04-22 +session,1304,2,Safari 1,96,2017-12-04 +session,1304,3,Firefox 33,82,2017-01-01 +session,1304,4,Internet Explorer 47,50,2019-02-04 +user,1305,Clair,Lourdes,75 +session,1305,0,Firefox 50,62,2017-06-19 +session,1305,1,Firefox 21,3,2018-12-28 +session,1305,2,Firefox 16,117,2018-12-13 +session,1305,3,Internet Explorer 13,106,2017-10-11 +session,1305,4,Chrome 39,81,2017-03-19 +session,1305,5,Firefox 39,46,2018-10-02 +session,1305,6,Firefox 40,117,2017-08-16 +session,1305,7,Internet Explorer 40,58,2017-10-25 +session,1305,8,Safari 42,12,2017-06-08 +user,1306,Carlos,Dahlia,25 +session,1306,0,Chrome 29,41,2017-07-30 +session,1306,1,Safari 47,46,2018-09-08 +session,1306,2,Safari 28,95,2017-08-24 +session,1306,3,Safari 8,39,2018-03-14 +session,1306,4,Firefox 43,59,2018-07-07 +session,1306,5,Chrome 16,60,2017-11-06 +session,1306,6,Safari 25,75,2017-11-26 +session,1306,7,Firefox 39,5,2017-08-10 +user,1307,Gerry,Sixta,43 +session,1307,0,Safari 22,37,2018-10-31 +session,1307,1,Chrome 11,22,2016-07-27 +session,1307,2,Safari 9,16,2017-05-08 +session,1307,3,Safari 38,90,2018-01-22 +session,1307,4,Firefox 34,19,2018-09-27 +session,1307,5,Chrome 36,0,2017-04-24 +session,1307,6,Safari 24,40,2016-12-10 +session,1307,7,Chrome 21,19,2016-10-28 +session,1307,8,Chrome 39,52,2018-02-01 +user,1308,Sharleen,Jacquetta,77 +session,1308,0,Firefox 30,40,2018-05-09 +session,1308,1,Safari 44,51,2017-11-10 +session,1308,2,Internet Explorer 21,99,2018-02-24 +session,1308,3,Firefox 48,107,2016-11-16 +session,1308,4,Firefox 40,47,2018-10-02 +session,1308,5,Safari 22,3,2017-12-02 +session,1308,6,Safari 4,118,2017-11-21 +session,1308,7,Firefox 8,42,2017-09-30 +user,1309,Roland,Rosalee,87 +session,1309,0,Firefox 48,72,2016-06-23 +session,1309,1,Firefox 31,89,2018-09-26 +session,1309,2,Safari 24,73,2017-08-11 +session,1309,3,Firefox 32,116,2018-10-30 +session,1309,4,Chrome 31,6,2018-12-09 +session,1309,5,Internet Explorer 5,78,2016-09-14 +session,1309,6,Safari 42,72,2018-04-08 +session,1309,7,Firefox 40,16,2017-02-27 +user,1310,Tad,Elvia,26 +session,1310,0,Internet Explorer 9,77,2017-11-12 +user,1311,Lowell,Kia,65 +session,1311,0,Safari 20,69,2017-07-11 +session,1311,1,Internet Explorer 43,22,2018-08-04 +session,1311,2,Firefox 32,59,2018-11-12 +session,1311,3,Firefox 16,28,2018-01-12 +session,1311,4,Chrome 4,15,2016-08-05 +user,1312,Loan,Joaquina,86 +session,1312,0,Safari 25,8,2018-12-26 +user,1313,Nelson,Dorothy,11 +session,1313,0,Internet Explorer 20,77,2017-03-10 +session,1313,1,Chrome 8,12,2018-10-23 +session,1313,2,Safari 37,34,2017-09-18 +session,1313,3,Safari 6,7,2016-07-20 +session,1313,4,Internet Explorer 40,64,2016-12-03 +user,1314,Tyler,Alicia,2 +session,1314,0,Safari 13,36,2016-08-03 +session,1314,1,Chrome 39,107,2016-10-31 +session,1314,2,Internet Explorer 37,49,2016-12-08 +session,1314,3,Chrome 7,67,2017-03-06 +session,1314,4,Safari 48,95,2018-12-15 +session,1314,5,Chrome 50,26,2017-07-04 +user,1315,Marvella,Addie,69 +session,1315,0,Internet Explorer 49,82,2017-04-08 +session,1315,1,Safari 19,99,2016-11-23 +session,1315,2,Internet Explorer 14,14,2016-08-06 +session,1315,3,Firefox 24,49,2017-04-10 +session,1315,4,Internet Explorer 25,36,2017-03-08 +session,1315,5,Chrome 11,111,2017-12-15 +session,1315,6,Chrome 38,105,2017-04-25 +session,1315,7,Chrome 21,71,2018-10-16 +user,1316,Tommy,Lawana,21 +session,1316,0,Safari 25,6,2017-12-21 +session,1316,1,Safari 42,103,2018-01-18 +session,1316,2,Safari 22,14,2016-11-04 +session,1316,3,Chrome 39,79,2019-01-14 +user,1317,Reita,Bennie,83 +session,1317,0,Firefox 29,16,2016-09-04 +session,1317,1,Internet Explorer 6,43,2016-11-05 +session,1317,2,Internet Explorer 23,84,2016-07-25 +session,1317,3,Safari 23,100,2017-12-10 +session,1317,4,Safari 31,56,2018-11-23 +session,1317,5,Chrome 26,110,2016-08-29 +session,1317,6,Chrome 13,92,2018-07-22 +user,1318,Gerry,Ken,99 +session,1318,0,Firefox 15,114,2018-01-01 +session,1318,1,Internet Explorer 14,13,2017-12-17 +session,1318,2,Internet Explorer 18,31,2016-08-18 +session,1318,3,Safari 26,90,2018-10-17 +session,1318,4,Internet Explorer 30,13,2016-06-19 +session,1318,5,Chrome 38,99,2017-10-11 +user,1319,Tom,Aurelio,28 +session,1319,0,Firefox 36,57,2017-08-07 +session,1319,1,Internet Explorer 48,63,2019-01-04 +session,1319,2,Internet Explorer 39,12,2016-08-09 +session,1319,3,Chrome 49,98,2016-08-21 +session,1319,4,Firefox 8,73,2017-10-03 +session,1319,5,Safari 15,71,2017-06-16 +session,1319,6,Firefox 50,8,2018-08-22 +session,1319,7,Safari 23,85,2017-06-03 +session,1319,8,Chrome 29,67,2019-02-10 +user,1320,Madelene,Roland,29 +session,1320,0,Chrome 49,36,2017-10-02 +session,1320,1,Safari 25,31,2018-11-05 +session,1320,2,Safari 18,72,2017-07-10 +session,1320,3,Safari 44,99,2016-11-24 +session,1320,4,Firefox 34,72,2016-09-14 +session,1320,5,Chrome 45,69,2018-01-18 +session,1320,6,Safari 19,63,2018-04-23 +session,1320,7,Chrome 2,86,2018-05-01 +session,1320,8,Chrome 18,100,2016-06-14 +user,1321,Lera,Dominica,63 +session,1321,0,Firefox 17,101,2016-05-28 +session,1321,1,Safari 38,92,2016-09-03 +session,1321,2,Safari 13,76,2016-08-21 +user,1322,Ezra,Peg,22 +session,1322,0,Internet Explorer 39,68,2016-07-31 +session,1322,1,Chrome 12,116,2016-06-23 +session,1322,2,Chrome 27,18,2018-07-17 +session,1322,3,Safari 2,63,2016-08-03 +session,1322,4,Firefox 32,66,2018-06-24 +session,1322,5,Safari 9,92,2018-04-10 +user,1323,Cody,Donnette,69 +session,1323,0,Safari 17,98,2017-04-04 +session,1323,1,Firefox 12,113,2018-03-02 +session,1323,2,Firefox 24,18,2017-06-26 +user,1324,Ehtel,Hettie,62 +session,1324,0,Safari 37,43,2017-07-28 +user,1325,Leilani,Del,70 +session,1325,0,Firefox 22,17,2018-09-10 +session,1325,1,Chrome 19,117,2018-03-20 +session,1325,2,Safari 35,96,2017-12-03 +session,1325,3,Chrome 9,15,2017-05-12 +session,1325,4,Internet Explorer 41,78,2017-01-05 +session,1325,5,Internet Explorer 13,8,2018-04-25 +session,1325,6,Chrome 41,78,2019-01-05 +session,1325,7,Internet Explorer 29,91,2016-11-23 +session,1325,8,Internet Explorer 39,60,2017-04-10 +session,1325,9,Safari 16,97,2017-10-08 +user,1326,Elvin,Lashell,43 +session,1326,0,Chrome 18,112,2017-03-12 +session,1326,1,Internet Explorer 17,107,2017-12-07 +session,1326,2,Internet Explorer 32,64,2018-11-05 +session,1326,3,Firefox 35,64,2018-04-13 +user,1327,Jenice,Winnifred,75 +session,1327,0,Chrome 33,87,2018-06-19 +session,1327,1,Safari 48,96,2017-11-04 +session,1327,2,Firefox 41,114,2016-07-25 +user,1328,Elissa,Antione,1 +session,1328,0,Safari 3,116,2017-01-06 +session,1328,1,Chrome 48,116,2017-11-27 +session,1328,2,Firefox 9,51,2017-07-28 +session,1328,3,Firefox 45,38,2017-08-14 +session,1328,4,Internet Explorer 27,78,2016-08-16 +session,1328,5,Chrome 36,85,2016-12-12 +session,1328,6,Internet Explorer 42,36,2017-09-19 +session,1328,7,Internet Explorer 38,94,2016-10-24 +session,1328,8,Firefox 7,72,2018-11-26 +session,1328,9,Safari 48,106,2018-01-28 +user,1329,Shani,Pamella,17 +session,1329,0,Firefox 39,44,2018-07-18 +session,1329,1,Chrome 4,84,2017-03-12 +session,1329,2,Safari 41,86,2017-05-09 +session,1329,3,Firefox 18,25,2016-07-27 +user,1330,Ivy,Toshia,57 +session,1330,0,Chrome 9,102,2018-03-16 +user,1331,Mac,Ardelle,28 +session,1331,0,Firefox 1,17,2018-01-04 +session,1331,1,Chrome 38,98,2017-09-14 +session,1331,2,Internet Explorer 28,29,2018-12-26 +user,1332,Allen,Chas,30 +session,1332,0,Safari 13,60,2016-07-22 +user,1333,Kasey,Lacy,74 +session,1333,0,Chrome 28,85,2017-09-29 +user,1334,Theron,Marylou,38 +session,1334,0,Internet Explorer 41,68,2016-08-16 +session,1334,1,Firefox 10,18,2016-06-22 +session,1334,2,Safari 46,48,2017-12-02 +session,1334,3,Internet Explorer 32,35,2016-12-10 +session,1334,4,Firefox 48,119,2018-07-27 +session,1334,5,Internet Explorer 6,41,2017-07-19 +session,1334,6,Internet Explorer 39,32,2016-09-28 +session,1334,7,Internet Explorer 11,63,2018-11-07 +session,1334,8,Internet Explorer 15,106,2019-02-07 +session,1334,9,Chrome 44,85,2018-06-18 +user,1335,Johnsie,Jewell,50 +session,1335,0,Safari 46,13,2017-02-17 +user,1336,Loura,Shanel,66 +session,1336,0,Firefox 42,12,2018-06-18 +user,1337,Tawna,Leann,99 +session,1337,0,Chrome 22,16,2017-11-05 +session,1337,1,Safari 47,16,2017-08-07 +session,1337,2,Firefox 46,41,2019-01-19 +session,1337,3,Internet Explorer 29,41,2017-03-25 +session,1337,4,Firefox 24,117,2016-06-09 +user,1338,Erwin,Lucile,10 +session,1338,0,Chrome 16,9,2018-06-14 +session,1338,1,Chrome 8,45,2016-12-06 +session,1338,2,Safari 4,88,2018-09-08 +session,1338,3,Firefox 10,29,2018-06-14 +session,1338,4,Chrome 10,46,2017-08-25 +session,1338,5,Safari 33,108,2016-09-13 +session,1338,6,Internet Explorer 48,38,2017-04-23 +session,1338,7,Firefox 37,52,2018-11-13 +user,1339,Angelyn,Lanora,68 +session,1339,0,Firefox 23,85,2018-08-29 +session,1339,1,Chrome 48,13,2016-05-24 +session,1339,2,Safari 36,26,2018-09-21 +session,1339,3,Firefox 49,89,2018-03-31 +session,1339,4,Firefox 31,80,2016-05-23 +user,1340,Buddy,Candida,41 +session,1340,0,Safari 47,79,2018-03-01 +session,1340,1,Chrome 7,91,2018-09-23 +session,1340,2,Internet Explorer 23,79,2016-12-16 +session,1340,3,Internet Explorer 26,68,2017-05-31 +session,1340,4,Safari 38,116,2018-02-01 +session,1340,5,Safari 42,44,2018-07-01 +session,1340,6,Safari 42,106,2018-07-23 +session,1340,7,Safari 14,46,2018-09-12 +session,1340,8,Chrome 24,41,2016-06-04 +session,1340,9,Firefox 48,56,2017-01-24 +user,1341,Carina,Rickie,27 +session,1341,0,Safari 49,38,2018-01-07 +user,1342,Hanh,Ethelene,7 +session,1342,0,Firefox 10,53,2019-02-06 +session,1342,1,Safari 10,47,2017-08-13 +session,1342,2,Internet Explorer 34,68,2017-02-02 +session,1342,3,Firefox 22,0,2017-06-09 +session,1342,4,Safari 17,107,2016-07-18 +session,1342,5,Chrome 14,21,2018-04-20 +session,1342,6,Firefox 5,89,2017-11-04 +session,1342,7,Internet Explorer 27,21,2018-11-10 +session,1342,8,Chrome 16,32,2018-08-02 +session,1342,9,Chrome 7,91,2017-04-16 +user,1343,Yadira,Debi,24 +session,1343,0,Internet Explorer 48,18,2019-01-13 +user,1344,Adelia,Edda,15 +session,1344,0,Firefox 22,33,2018-12-01 +session,1344,1,Chrome 16,119,2017-06-20 +session,1344,2,Safari 8,48,2017-02-18 +session,1344,3,Chrome 34,11,2018-02-15 +session,1344,4,Firefox 24,36,2016-12-05 +session,1344,5,Internet Explorer 46,100,2016-11-09 +session,1344,6,Chrome 24,72,2018-07-29 +session,1344,7,Chrome 25,108,2018-12-07 +user,1345,Theo,Gretchen,93 +session,1345,0,Safari 23,85,2018-07-28 +session,1345,1,Safari 41,33,2016-10-31 +session,1345,2,Internet Explorer 10,74,2016-11-07 +session,1345,3,Chrome 41,114,2017-02-21 +user,1346,Leif,Hertha,37 +session,1346,0,Firefox 1,72,2017-08-31 +session,1346,1,Firefox 29,79,2018-02-06 +session,1346,2,Internet Explorer 43,56,2018-06-15 +session,1346,3,Safari 3,7,2018-03-09 +session,1346,4,Internet Explorer 16,52,2017-03-16 +session,1346,5,Internet Explorer 22,56,2017-07-20 +session,1346,6,Chrome 34,102,2018-07-03 +session,1346,7,Chrome 44,63,2017-06-25 +user,1347,Jacqueline,Lavenia,40 +session,1347,0,Chrome 48,75,2018-06-17 +session,1347,1,Safari 6,96,2019-01-07 +session,1347,2,Internet Explorer 14,97,2018-07-18 +user,1348,Harland,Jed,24 +session,1348,0,Safari 13,47,2019-01-22 +session,1348,1,Chrome 19,106,2017-09-13 +user,1349,Jarvis,Lillie,45 +session,1349,0,Chrome 9,25,2016-09-27 +session,1349,1,Firefox 6,67,2017-07-01 +session,1349,2,Internet Explorer 7,83,2017-10-20 +session,1349,3,Internet Explorer 18,118,2018-06-21 +user,1350,Bambi,Fatimah,58 +session,1350,0,Chrome 18,65,2018-09-27 +session,1350,1,Safari 49,109,2018-09-14 +user,1351,Hassan,Rick,12 +session,1351,0,Internet Explorer 38,57,2018-06-27 +user,1352,Merrill,Ardelia,25 +session,1352,0,Safari 16,50,2018-01-15 +session,1352,1,Internet Explorer 48,17,2018-07-26 +session,1352,2,Firefox 22,118,2018-11-09 +session,1352,3,Firefox 47,19,2017-06-01 +session,1352,4,Firefox 5,32,2018-05-02 +user,1353,Trey,Latrice,45 +session,1353,0,Safari 32,71,2017-09-27 +session,1353,1,Firefox 13,12,2017-02-27 +session,1353,2,Chrome 23,43,2017-03-11 +session,1353,3,Internet Explorer 44,4,2017-02-22 +session,1353,4,Chrome 8,96,2016-08-05 +session,1353,5,Internet Explorer 26,66,2017-07-28 +session,1353,6,Internet Explorer 10,64,2018-05-03 +user,1354,Lonny,Laticia,33 +session,1354,0,Safari 29,13,2018-06-03 +session,1354,1,Chrome 35,22,2018-07-20 +session,1354,2,Safari 10,42,2019-01-23 +session,1354,3,Firefox 39,45,2017-12-13 +session,1354,4,Firefox 44,105,2017-06-20 +session,1354,5,Internet Explorer 2,80,2016-07-22 +session,1354,6,Firefox 6,4,2017-07-29 +session,1354,7,Chrome 16,110,2018-10-31 +session,1354,8,Chrome 42,110,2016-08-28 +user,1355,Devon,Sarita,4 +session,1355,0,Safari 8,88,2016-12-06 +session,1355,1,Safari 26,27,2018-02-08 +session,1355,2,Firefox 7,72,2017-10-04 +session,1355,3,Chrome 21,55,2017-03-02 +session,1355,4,Safari 50,0,2018-01-13 +session,1355,5,Chrome 42,40,2017-06-27 +session,1355,6,Safari 11,66,2018-12-05 +user,1356,Cyril,Hye,73 +session,1356,0,Firefox 10,30,2017-05-25 +session,1356,1,Firefox 21,82,2016-08-22 +session,1356,2,Internet Explorer 5,40,2018-11-14 +session,1356,3,Safari 42,14,2017-08-19 +session,1356,4,Chrome 17,50,2016-10-18 +session,1356,5,Firefox 4,55,2018-01-22 +session,1356,6,Chrome 50,70,2017-07-24 +session,1356,7,Firefox 9,46,2018-03-14 +session,1356,8,Firefox 44,18,2018-07-26 +user,1357,Lorilee,Signe,24 +session,1357,0,Chrome 17,106,2016-10-10 +session,1357,1,Safari 20,29,2018-06-04 +session,1357,2,Firefox 28,59,2017-11-22 +session,1357,3,Internet Explorer 17,119,2016-08-05 +session,1357,4,Chrome 25,118,2018-08-01 +user,1358,Merrilee,Ilona,51 +session,1358,0,Safari 1,97,2018-06-09 +session,1358,1,Safari 45,93,2017-11-08 +session,1358,2,Firefox 48,9,2016-09-04 +session,1358,3,Firefox 10,110,2017-04-15 +session,1358,4,Chrome 44,116,2018-12-15 +session,1358,5,Chrome 30,41,2018-12-25 +session,1358,6,Internet Explorer 50,39,2018-04-14 +session,1358,7,Firefox 35,20,2017-05-08 +session,1358,8,Firefox 28,21,2016-06-19 +session,1358,9,Safari 46,99,2017-09-27 +user,1359,Arnetta,Kandis,35 +session,1359,0,Internet Explorer 17,45,2017-05-15 +session,1359,1,Internet Explorer 22,25,2016-05-24 +session,1359,2,Internet Explorer 11,55,2017-03-30 +session,1359,3,Firefox 22,28,2018-06-02 +session,1359,4,Chrome 45,71,2017-05-13 +session,1359,5,Safari 50,60,2019-02-11 +session,1359,6,Internet Explorer 25,97,2018-10-29 +session,1359,7,Internet Explorer 39,84,2018-11-17 +session,1359,8,Internet Explorer 33,57,2018-03-24 +user,1360,Tod,Lance,95 +session,1360,0,Internet Explorer 4,37,2018-12-15 +session,1360,1,Chrome 16,72,2018-11-03 +user,1361,Derick,Aleshia,85 +session,1361,0,Firefox 45,11,2016-11-13 +session,1361,1,Internet Explorer 4,51,2016-08-17 +session,1361,2,Firefox 21,60,2018-05-05 +session,1361,3,Firefox 20,107,2017-07-15 +session,1361,4,Internet Explorer 15,77,2017-07-08 +session,1361,5,Chrome 43,7,2016-06-21 +user,1362,Louetta,Brenton,36 +session,1362,0,Safari 22,85,2018-03-12 +session,1362,1,Firefox 11,19,2017-03-01 +user,1363,Nguyet,Georgann,0 +session,1363,0,Internet Explorer 17,44,2016-09-17 +session,1363,1,Safari 44,116,2017-02-10 +session,1363,2,Internet Explorer 37,72,2018-04-04 +user,1364,Billy,Ella,43 +session,1364,0,Internet Explorer 17,91,2018-06-20 +session,1364,1,Chrome 31,39,2019-01-02 +session,1364,2,Internet Explorer 46,33,2017-06-22 +session,1364,3,Internet Explorer 8,60,2017-11-07 +session,1364,4,Chrome 49,74,2018-09-28 +session,1364,5,Safari 38,51,2018-01-20 +session,1364,6,Internet Explorer 19,66,2017-12-31 +session,1364,7,Internet Explorer 30,101,2018-08-06 +session,1364,8,Safari 45,10,2017-08-11 +session,1364,9,Internet Explorer 19,58,2016-10-10 +user,1365,Cleora,Valrie,41 +session,1365,0,Internet Explorer 10,117,2018-12-25 +user,1366,Oswaldo,Herta,26 +session,1366,0,Firefox 16,70,2017-09-29 +session,1366,1,Chrome 16,64,2018-05-11 +user,1367,Cesar,Corine,55 +session,1367,0,Internet Explorer 4,98,2017-04-01 +session,1367,1,Chrome 26,116,2017-06-16 +session,1367,2,Firefox 22,59,2017-11-16 +session,1367,3,Safari 31,83,2018-11-04 +session,1367,4,Internet Explorer 13,67,2016-11-05 +session,1367,5,Chrome 48,18,2016-12-08 +session,1367,6,Safari 25,5,2018-04-27 +user,1368,Malka,Salina,84 +session,1368,0,Chrome 33,25,2017-10-15 +session,1368,1,Firefox 11,1,2017-11-29 +session,1368,2,Chrome 3,72,2017-04-18 +session,1368,3,Chrome 31,29,2018-04-19 +session,1368,4,Internet Explorer 18,52,2017-11-27 +user,1369,Hilton,Detra,15 +session,1369,0,Firefox 9,59,2017-01-03 +session,1369,1,Safari 47,24,2018-08-11 +session,1369,2,Internet Explorer 10,35,2016-07-23 +session,1369,3,Internet Explorer 8,110,2018-07-01 +session,1369,4,Chrome 33,37,2017-02-12 +user,1370,Dan,Lashawn,4 +session,1370,0,Firefox 45,29,2017-01-09 +session,1370,1,Safari 48,81,2018-11-14 +session,1370,2,Chrome 43,20,2019-01-26 +session,1370,3,Firefox 29,66,2017-11-14 +session,1370,4,Firefox 28,115,2017-01-24 +session,1370,5,Safari 22,80,2017-04-08 +session,1370,6,Internet Explorer 23,64,2018-03-27 +user,1371,Remedios,Hoyt,23 +session,1371,0,Chrome 20,98,2017-12-20 +session,1371,1,Chrome 40,43,2016-09-29 +session,1371,2,Firefox 23,102,2017-04-05 +session,1371,3,Firefox 25,92,2016-10-26 +session,1371,4,Firefox 5,81,2017-09-16 +session,1371,5,Firefox 30,13,2018-05-20 +session,1371,6,Chrome 47,109,2018-12-11 +session,1371,7,Chrome 48,105,2016-12-29 +session,1371,8,Safari 42,95,2016-05-31 +user,1372,Wilmer,Kristin,55 +session,1372,0,Firefox 8,33,2018-02-18 +session,1372,1,Safari 29,27,2017-03-26 +session,1372,2,Internet Explorer 23,9,2017-10-12 +session,1372,3,Internet Explorer 4,3,2017-08-21 +session,1372,4,Firefox 22,83,2016-09-19 +session,1372,5,Internet Explorer 38,45,2017-10-21 +user,1373,Brock,Devon,64 +session,1373,0,Firefox 34,45,2017-05-21 +session,1373,1,Firefox 46,19,2017-06-20 +session,1373,2,Firefox 6,119,2017-02-03 +session,1373,3,Firefox 49,109,2018-06-24 +session,1373,4,Safari 4,91,2017-01-08 +session,1373,5,Chrome 9,10,2016-11-01 +session,1373,6,Chrome 33,87,2018-01-14 +session,1373,7,Chrome 35,57,2017-01-12 +session,1373,8,Safari 39,91,2018-12-10 +user,1374,Collette,Candy,45 +session,1374,0,Safari 47,100,2019-01-22 +session,1374,1,Firefox 2,64,2017-10-04 +session,1374,2,Internet Explorer 6,97,2018-01-12 +session,1374,3,Internet Explorer 6,87,2018-01-06 +session,1374,4,Chrome 31,78,2017-10-16 +user,1375,Emmie,Sybil,17 +session,1375,0,Chrome 37,83,2017-05-12 +session,1375,1,Safari 26,90,2016-10-16 +session,1375,2,Safari 10,108,2018-07-31 +session,1375,3,Safari 2,90,2016-10-07 +session,1375,4,Firefox 13,94,2017-04-25 +session,1375,5,Safari 44,75,2018-10-02 +user,1376,Avelina,Nu,68 +session,1376,0,Chrome 2,88,2018-12-17 +user,1377,Kristian,Jasper,69 +session,1377,0,Chrome 28,49,2017-12-23 +session,1377,1,Safari 48,23,2017-07-29 +session,1377,2,Safari 12,97,2017-01-14 +user,1378,Sandy,Leah,83 +session,1378,0,Chrome 8,119,2019-01-17 +session,1378,1,Internet Explorer 44,9,2018-03-25 +session,1378,2,Internet Explorer 15,61,2017-11-30 +session,1378,3,Firefox 20,28,2017-09-22 +session,1378,4,Firefox 25,21,2017-07-08 +session,1378,5,Firefox 35,92,2017-02-22 +user,1379,Ismael,Monika,76 +session,1379,0,Internet Explorer 37,56,2018-07-24 +session,1379,1,Internet Explorer 13,97,2018-05-12 +session,1379,2,Chrome 21,1,2017-06-28 +session,1379,3,Safari 20,64,2018-10-22 +session,1379,4,Chrome 41,0,2017-07-08 +session,1379,5,Safari 22,7,2018-12-07 +user,1380,Genny,Kaylene,59 +session,1380,0,Firefox 22,77,2018-02-16 +session,1380,1,Chrome 24,98,2017-10-29 +session,1380,2,Safari 37,63,2017-04-18 +session,1380,3,Chrome 26,110,2016-10-02 +session,1380,4,Firefox 50,36,2018-07-29 +session,1380,5,Safari 42,95,2017-09-20 +session,1380,6,Internet Explorer 15,18,2017-04-07 +user,1381,Agustin,Towanda,51 +session,1381,0,Firefox 7,67,2017-07-21 +session,1381,1,Chrome 8,42,2016-12-17 +user,1382,Sang,Edward,55 +session,1382,0,Internet Explorer 32,46,2017-08-24 +session,1382,1,Chrome 13,53,2017-01-22 +session,1382,2,Safari 18,103,2018-11-14 +session,1382,3,Internet Explorer 46,53,2018-10-04 +user,1383,Cristie,Sha,81 +session,1383,0,Safari 33,94,2016-05-23 +session,1383,1,Chrome 31,96,2017-09-08 +user,1384,Tam,Kasandra,47 +session,1384,0,Firefox 18,5,2018-01-27 +session,1384,1,Chrome 45,27,2016-09-20 +session,1384,2,Chrome 5,92,2017-03-23 +session,1384,3,Internet Explorer 28,102,2017-05-31 +session,1384,4,Safari 41,92,2018-12-31 +session,1384,5,Safari 47,9,2016-12-21 +session,1384,6,Chrome 5,40,2018-12-29 +session,1384,7,Firefox 49,92,2017-12-17 +session,1384,8,Firefox 3,26,2019-01-11 +session,1384,9,Safari 30,85,2017-06-24 +user,1385,Sammy,Celina,33 +session,1385,0,Chrome 48,9,2017-05-24 +session,1385,1,Internet Explorer 38,81,2018-04-18 +session,1385,2,Internet Explorer 2,3,2019-01-17 +session,1385,3,Chrome 12,115,2017-07-09 +session,1385,4,Chrome 48,29,2018-04-04 +session,1385,5,Chrome 4,68,2018-06-03 +session,1385,6,Chrome 9,11,2016-12-06 +session,1385,7,Firefox 40,82,2016-09-12 +user,1386,Natacha,Deandre,59 +session,1386,0,Firefox 11,23,2017-04-21 +session,1386,1,Chrome 47,33,2017-09-08 +session,1386,2,Safari 1,108,2017-10-27 +session,1386,3,Firefox 49,97,2016-06-14 +user,1387,Carma,Leone,37 +session,1387,0,Safari 1,109,2017-10-30 +session,1387,1,Firefox 6,43,2018-10-26 +session,1387,2,Safari 39,45,2016-05-24 +session,1387,3,Chrome 40,69,2018-11-13 +session,1387,4,Firefox 25,88,2016-12-18 +session,1387,5,Chrome 26,12,2017-09-30 +session,1387,6,Firefox 25,7,2018-02-09 +session,1387,7,Internet Explorer 32,93,2017-03-26 +session,1387,8,Firefox 6,49,2016-06-26 +session,1387,9,Firefox 37,2,2017-06-13 +user,1388,Joseph,Tomiko,1 +session,1388,0,Internet Explorer 44,101,2016-11-28 +session,1388,1,Internet Explorer 10,1,2018-05-22 +session,1388,2,Safari 14,4,2017-04-13 +session,1388,3,Chrome 40,81,2018-10-19 +session,1388,4,Internet Explorer 1,52,2017-09-30 +session,1388,5,Chrome 12,99,2016-07-19 +session,1388,6,Safari 22,35,2018-11-03 +session,1388,7,Firefox 36,28,2018-11-25 +user,1389,Bennie,Shela,61 +session,1389,0,Safari 20,18,2018-10-18 +session,1389,1,Safari 15,54,2018-03-04 +session,1389,2,Internet Explorer 7,45,2017-12-06 +session,1389,3,Firefox 42,112,2019-02-02 +session,1389,4,Firefox 26,43,2017-02-13 +user,1390,Dario,Louise,75 +session,1390,0,Chrome 23,87,2016-09-26 +session,1390,1,Chrome 26,58,2018-03-19 +session,1390,2,Chrome 22,63,2018-01-05 +session,1390,3,Internet Explorer 45,96,2017-07-17 +session,1390,4,Chrome 3,42,2018-05-05 +session,1390,5,Chrome 50,14,2016-12-04 +session,1390,6,Safari 29,7,2018-09-12 +user,1391,Darnell,Lonnie,74 +session,1391,0,Chrome 39,119,2018-12-06 +session,1391,1,Internet Explorer 28,18,2019-02-09 +user,1392,Maryanna,Hana,53 +session,1392,0,Internet Explorer 37,50,2016-08-11 +session,1392,1,Internet Explorer 15,78,2018-04-02 +session,1392,2,Internet Explorer 8,85,2017-08-09 +session,1392,3,Safari 30,119,2016-09-15 +session,1392,4,Safari 34,68,2017-10-27 +session,1392,5,Firefox 16,62,2018-07-23 +session,1392,6,Firefox 18,108,2016-09-06 +user,1393,Tomiko,Ione,8 +session,1393,0,Firefox 33,64,2016-08-25 +session,1393,1,Safari 5,56,2017-05-21 +session,1393,2,Internet Explorer 30,66,2016-05-23 +session,1393,3,Safari 38,44,2016-11-28 +session,1393,4,Chrome 7,95,2018-11-20 +session,1393,5,Firefox 28,70,2016-11-01 +user,1394,Hildred,Carley,72 +session,1394,0,Firefox 16,32,2016-12-19 +session,1394,1,Chrome 25,99,2018-11-06 +session,1394,2,Firefox 49,20,2016-06-07 +session,1394,3,Chrome 15,105,2016-07-28 +session,1394,4,Safari 31,31,2016-06-03 +session,1394,5,Safari 23,102,2018-02-14 +session,1394,6,Safari 50,109,2017-01-24 +user,1395,Darrell,Adelaide,40 +session,1395,0,Internet Explorer 13,68,2017-09-13 +session,1395,1,Safari 44,76,2018-02-17 +session,1395,2,Safari 18,53,2018-05-18 +session,1395,3,Chrome 49,7,2016-12-01 +user,1396,Dallas,Luanna,30 +session,1396,0,Internet Explorer 27,2,2017-03-30 +session,1396,1,Chrome 50,53,2018-03-25 +session,1396,2,Firefox 1,87,2017-05-30 +session,1396,3,Internet Explorer 25,102,2017-01-10 +session,1396,4,Safari 18,80,2017-06-15 +session,1396,5,Safari 50,113,2018-05-16 +session,1396,6,Safari 6,65,2016-12-24 +session,1396,7,Firefox 34,16,2017-03-04 +session,1396,8,Internet Explorer 30,37,2017-05-11 +user,1397,Matthew,Michal,22 +session,1397,0,Internet Explorer 43,72,2017-04-24 +session,1397,1,Chrome 38,87,2017-05-17 +user,1398,Nana,Kiesha,69 +session,1398,0,Firefox 6,21,2016-09-18 +user,1399,Xuan,Ginny,84 +session,1399,0,Safari 30,115,2018-10-15 +session,1399,1,Firefox 12,28,2017-11-13 +session,1399,2,Firefox 28,92,2016-05-26 +session,1399,3,Internet Explorer 13,81,2016-11-01 +session,1399,4,Internet Explorer 4,23,2018-11-14 +session,1399,5,Firefox 43,2,2016-09-10 +session,1399,6,Firefox 15,0,2016-08-04 +user,1400,Charlsie,Cassy,4 +session,1400,0,Internet Explorer 3,11,2016-07-28 +user,1401,Wesley,Letty,82 +session,1401,0,Firefox 7,54,2018-03-11 +session,1401,1,Firefox 21,8,2018-11-11 +session,1401,2,Firefox 22,119,2018-09-14 +session,1401,3,Safari 37,43,2018-05-30 +session,1401,4,Firefox 31,16,2016-08-02 +session,1401,5,Internet Explorer 43,59,2017-10-04 +session,1401,6,Safari 49,68,2017-07-21 +session,1401,7,Chrome 31,22,2018-12-14 +user,1402,Rosanne,Ann,9 +session,1402,0,Internet Explorer 7,110,2016-08-07 +session,1402,1,Internet Explorer 27,66,2017-05-23 +session,1402,2,Internet Explorer 49,36,2017-08-27 +session,1402,3,Safari 35,118,2018-08-05 +session,1402,4,Firefox 1,94,2018-06-01 +session,1402,5,Chrome 35,63,2017-05-11 +session,1402,6,Firefox 3,14,2016-08-05 +session,1402,7,Firefox 29,92,2018-10-07 +session,1402,8,Internet Explorer 11,9,2016-12-24 +user,1403,Gregoria,Branda,15 +session,1403,0,Firefox 27,51,2016-07-13 +session,1403,1,Firefox 37,88,2017-01-15 +session,1403,2,Safari 14,40,2017-10-24 +session,1403,3,Chrome 7,76,2017-12-17 +session,1403,4,Chrome 19,106,2016-08-10 +session,1403,5,Firefox 9,110,2016-10-27 +session,1403,6,Safari 3,102,2018-09-24 +session,1403,7,Firefox 23,115,2018-01-30 +session,1403,8,Firefox 22,115,2017-07-08 +session,1403,9,Safari 40,24,2017-05-05 +user,1404,Tana,Douglas,84 +session,1404,0,Safari 32,22,2016-07-21 +session,1404,1,Safari 24,25,2018-01-17 +session,1404,2,Safari 30,27,2016-05-24 +user,1405,Tommie,Norbert,6 +session,1405,0,Chrome 47,50,2017-09-18 +session,1405,1,Chrome 24,108,2018-06-14 +session,1405,2,Firefox 32,26,2018-11-09 +session,1405,3,Internet Explorer 23,78,2018-02-01 +session,1405,4,Chrome 27,55,2018-01-22 +user,1406,Sharmaine,Cami,97 +session,1406,0,Firefox 47,42,2016-08-05 +session,1406,1,Firefox 10,108,2017-09-03 +session,1406,2,Firefox 41,107,2016-10-17 +session,1406,3,Chrome 2,32,2017-06-11 +session,1406,4,Safari 31,76,2019-01-02 +session,1406,5,Firefox 35,1,2018-11-14 +session,1406,6,Firefox 19,59,2017-04-20 +session,1406,7,Firefox 32,35,2017-10-25 +user,1407,Karen,Phuong,35 +session,1407,0,Chrome 2,26,2017-06-15 +session,1407,1,Chrome 47,67,2017-02-12 +user,1408,Cameron,Anderson,83 +session,1408,0,Firefox 26,6,2018-09-14 +session,1408,1,Internet Explorer 42,73,2017-05-16 +user,1409,Jc,Parthenia,3 +session,1409,0,Safari 15,13,2018-12-14 +session,1409,1,Safari 13,13,2017-12-23 +user,1410,Tom,Lance,9 +session,1410,0,Firefox 36,44,2018-04-28 +user,1411,Candy,Tamisha,82 +session,1411,0,Firefox 6,35,2018-08-24 +session,1411,1,Safari 46,54,2018-02-08 +session,1411,2,Firefox 22,103,2017-07-30 +session,1411,3,Firefox 21,88,2016-12-31 +session,1411,4,Safari 36,114,2018-01-21 +session,1411,5,Internet Explorer 16,25,2018-04-16 +session,1411,6,Internet Explorer 31,50,2017-07-01 +session,1411,7,Chrome 41,87,2018-10-05 +user,1412,Sherman,Long,31 +session,1412,0,Internet Explorer 11,70,2018-10-15 +session,1412,1,Firefox 35,101,2018-09-11 +session,1412,2,Firefox 6,108,2016-08-19 +session,1412,3,Chrome 26,111,2018-09-09 +session,1412,4,Safari 33,84,2018-06-14 +session,1412,5,Safari 44,107,2018-07-14 +session,1412,6,Safari 32,9,2017-05-04 +session,1412,7,Safari 4,32,2017-10-03 +user,1413,Elvin,Florene,28 +session,1413,0,Firefox 17,44,2019-01-05 +user,1414,Amberly,Marilou,84 +session,1414,0,Safari 36,50,2018-07-15 +session,1414,1,Chrome 46,40,2016-11-29 +session,1414,2,Firefox 1,10,2016-07-21 +session,1414,3,Firefox 7,79,2018-09-01 +session,1414,4,Safari 23,26,2018-08-10 +session,1414,5,Safari 7,82,2016-11-06 +user,1415,Laurene,Reina,72 +session,1415,0,Internet Explorer 17,73,2018-12-29 +session,1415,1,Chrome 10,53,2018-05-10 +session,1415,2,Firefox 13,8,2018-06-28 +session,1415,3,Internet Explorer 2,101,2018-03-21 +session,1415,4,Firefox 25,108,2018-10-21 +session,1415,5,Chrome 22,38,2017-09-01 +session,1415,6,Chrome 41,110,2017-03-23 +user,1416,Armando,Kizzie,8 +session,1416,0,Safari 47,39,2018-01-12 +session,1416,1,Firefox 21,56,2018-09-23 +session,1416,2,Firefox 7,11,2016-07-14 +session,1416,3,Chrome 35,115,2018-07-19 +session,1416,4,Chrome 29,54,2018-02-10 +session,1416,5,Chrome 31,74,2017-10-20 +session,1416,6,Chrome 42,86,2016-08-26 +session,1416,7,Firefox 12,14,2018-03-11 +user,1417,Edie,Felicidad,43 +session,1417,0,Chrome 42,36,2016-12-11 +user,1418,Robert,Jutta,38 +session,1418,0,Safari 22,0,2018-11-02 +session,1418,1,Chrome 41,89,2017-04-26 +session,1418,2,Chrome 33,34,2017-08-09 +session,1418,3,Firefox 18,97,2018-08-11 +session,1418,4,Firefox 48,76,2017-08-03 +session,1418,5,Internet Explorer 21,104,2019-01-08 +session,1418,6,Firefox 1,3,2016-08-28 +session,1418,7,Firefox 29,36,2018-03-25 +session,1418,8,Internet Explorer 21,50,2016-05-29 +user,1419,Jeromy,Leslie,42 +session,1419,0,Chrome 16,100,2017-02-20 +session,1419,1,Safari 13,64,2017-09-06 +session,1419,2,Safari 3,107,2018-05-25 +session,1419,3,Internet Explorer 6,57,2018-06-10 +session,1419,4,Internet Explorer 17,49,2017-06-16 +user,1420,Pablo,Dane,47 +session,1420,0,Firefox 32,89,2019-02-03 +session,1420,1,Safari 49,58,2017-05-23 +session,1420,2,Chrome 16,42,2017-08-10 +session,1420,3,Internet Explorer 22,47,2016-09-30 +session,1420,4,Safari 29,116,2017-05-21 +session,1420,5,Firefox 41,104,2016-09-29 +session,1420,6,Safari 9,100,2018-04-13 +session,1420,7,Safari 39,50,2017-04-05 +user,1421,Ayesha,Angelo,12 +session,1421,0,Safari 4,101,2017-08-22 +session,1421,1,Safari 31,50,2018-06-27 +user,1422,Charley,Lorri,52 +session,1422,0,Internet Explorer 37,81,2017-09-25 +session,1422,1,Firefox 2,43,2018-11-14 +session,1422,2,Chrome 12,25,2017-06-11 +session,1422,3,Safari 3,96,2017-11-19 +session,1422,4,Chrome 47,95,2017-05-25 +session,1422,5,Safari 12,100,2019-01-20 +session,1422,6,Internet Explorer 33,14,2016-11-18 +session,1422,7,Firefox 21,82,2017-09-04 +session,1422,8,Firefox 11,3,2018-11-16 +session,1422,9,Chrome 20,110,2018-10-21 +user,1423,Aileen,Katharyn,69 +session,1423,0,Firefox 43,19,2017-07-23 +session,1423,1,Internet Explorer 33,119,2018-11-16 +session,1423,2,Chrome 50,119,2019-02-11 +session,1423,3,Firefox 16,74,2016-11-19 +session,1423,4,Firefox 44,14,2016-09-20 +session,1423,5,Firefox 31,32,2017-09-05 +user,1424,Pamila,Olive,55 +session,1424,0,Safari 41,64,2018-06-30 +session,1424,1,Firefox 18,76,2017-11-07 +session,1424,2,Firefox 3,48,2018-05-21 +session,1424,3,Internet Explorer 45,58,2016-09-15 +session,1424,4,Chrome 20,59,2018-02-11 +user,1425,Carmelita,Gilda,53 +session,1425,0,Firefox 17,113,2018-01-02 +session,1425,1,Internet Explorer 47,97,2017-09-20 +session,1425,2,Chrome 25,48,2018-07-13 +session,1425,3,Safari 31,110,2018-05-21 +session,1425,4,Chrome 33,34,2018-04-04 +session,1425,5,Internet Explorer 39,78,2017-10-30 +session,1425,6,Internet Explorer 4,72,2016-11-30 +session,1425,7,Safari 32,49,2017-09-07 +session,1425,8,Chrome 2,14,2018-09-12 +user,1426,Alena,Nickie,78 +session,1426,0,Firefox 3,52,2016-12-04 +session,1426,1,Internet Explorer 43,25,2018-01-13 +session,1426,2,Safari 16,93,2016-11-22 +user,1427,Patricia,Karine,99 +session,1427,0,Internet Explorer 44,47,2018-02-18 +session,1427,1,Safari 36,16,2018-04-06 +session,1427,2,Chrome 18,99,2018-05-21 +session,1427,3,Safari 45,79,2016-08-14 +session,1427,4,Chrome 1,58,2018-11-04 +session,1427,5,Firefox 31,56,2018-03-09 +session,1427,6,Chrome 2,71,2016-11-14 +session,1427,7,Safari 40,25,2017-04-07 +session,1427,8,Chrome 26,40,2018-12-18 +user,1428,Sarah,Shanda,3 +session,1428,0,Firefox 33,103,2017-08-06 +session,1428,1,Chrome 19,58,2019-02-04 +session,1428,2,Firefox 28,48,2017-04-08 +session,1428,3,Chrome 49,5,2016-12-05 +session,1428,4,Firefox 21,38,2017-01-06 +session,1428,5,Safari 45,65,2016-10-10 +session,1428,6,Chrome 49,22,2018-12-14 +session,1428,7,Internet Explorer 1,59,2016-08-03 +session,1428,8,Firefox 29,54,2016-06-26 +user,1429,Rolando,Kirk,29 +session,1429,0,Internet Explorer 47,55,2017-06-25 +user,1430,Charlotte,Janey,60 +session,1430,0,Chrome 47,11,2018-06-23 +session,1430,1,Firefox 30,52,2018-10-30 +session,1430,2,Chrome 13,48,2018-10-22 +session,1430,3,Firefox 33,94,2017-02-14 +session,1430,4,Firefox 6,73,2017-08-20 +session,1430,5,Firefox 9,67,2017-01-24 +session,1430,6,Chrome 9,20,2018-11-21 +session,1430,7,Internet Explorer 1,54,2016-07-22 +user,1431,Dayna,Jennette,26 +session,1431,0,Chrome 38,56,2018-08-30 +session,1431,1,Firefox 22,78,2018-12-03 +session,1431,2,Internet Explorer 15,7,2018-06-03 +session,1431,3,Internet Explorer 14,85,2018-06-17 +session,1431,4,Internet Explorer 15,35,2018-11-05 +session,1431,5,Chrome 4,115,2018-11-03 +session,1431,6,Chrome 21,102,2016-12-17 +session,1431,7,Safari 18,38,2017-03-02 +session,1431,8,Chrome 21,105,2016-11-23 +session,1431,9,Safari 26,99,2016-10-02 +user,1432,Lanelle,Abram,73 +session,1432,0,Chrome 4,36,2018-12-12 +session,1432,1,Safari 37,104,2016-09-01 +session,1432,2,Safari 48,18,2018-09-09 +session,1432,3,Internet Explorer 45,78,2017-11-09 +session,1432,4,Firefox 17,55,2018-08-25 +session,1432,5,Chrome 49,41,2017-02-18 +session,1432,6,Safari 14,16,2018-01-29 +session,1432,7,Safari 15,99,2018-06-09 +user,1433,Odis,Mee,12 +session,1433,0,Chrome 33,2,2018-01-06 +session,1433,1,Firefox 25,53,2017-05-17 +session,1433,2,Chrome 9,14,2018-06-15 +session,1433,3,Chrome 39,76,2018-11-10 +session,1433,4,Chrome 43,27,2018-02-02 +session,1433,5,Chrome 28,29,2016-09-22 +session,1433,6,Safari 43,63,2018-04-05 +session,1433,7,Internet Explorer 12,75,2018-08-14 +session,1433,8,Firefox 7,45,2018-10-17 +user,1434,Raymond,Glenn,14 +session,1434,0,Chrome 43,57,2017-07-16 +session,1434,1,Internet Explorer 33,61,2016-06-07 +session,1434,2,Chrome 46,39,2018-01-21 +session,1434,3,Safari 34,84,2018-08-29 +session,1434,4,Firefox 37,44,2017-07-31 +session,1434,5,Internet Explorer 11,80,2018-01-17 +session,1434,6,Firefox 31,105,2018-04-27 +session,1434,7,Chrome 22,28,2017-04-11 +user,1435,Effie,Ignacio,79 +session,1435,0,Firefox 1,40,2016-12-11 +session,1435,1,Internet Explorer 28,42,2016-09-13 +session,1435,2,Internet Explorer 1,116,2018-06-19 +user,1436,Moshe,Cecila,42 +session,1436,0,Firefox 42,23,2018-04-10 +session,1436,1,Chrome 17,42,2017-06-20 +session,1436,2,Firefox 24,103,2017-11-13 +session,1436,3,Safari 41,10,2018-03-06 +session,1436,4,Chrome 17,5,2017-06-14 +user,1437,Samantha,Barrett,11 +session,1437,0,Safari 10,119,2018-09-19 +session,1437,1,Firefox 28,81,2016-12-24 +session,1437,2,Internet Explorer 5,105,2016-11-24 +session,1437,3,Safari 32,114,2019-01-12 +session,1437,4,Firefox 21,38,2016-09-03 +user,1438,Leah,Cammy,30 +session,1438,0,Firefox 32,60,2017-01-16 +session,1438,1,Chrome 3,79,2018-01-15 +session,1438,2,Safari 5,70,2016-11-27 +user,1439,Sherlyn,Karyl,99 +session,1439,0,Internet Explorer 6,92,2017-08-10 +session,1439,1,Safari 1,21,2018-11-30 +session,1439,2,Chrome 20,81,2018-02-10 +session,1439,3,Internet Explorer 5,89,2018-11-27 +session,1439,4,Internet Explorer 28,108,2017-04-23 +session,1439,5,Chrome 46,35,2018-09-28 +session,1439,6,Firefox 33,21,2017-06-29 +session,1439,7,Internet Explorer 25,75,2017-09-20 +session,1439,8,Firefox 17,62,2017-12-22 +user,1440,Rolanda,Claire,85 +session,1440,0,Chrome 36,59,2018-04-07 +session,1440,1,Internet Explorer 6,106,2017-01-08 +session,1440,2,Chrome 46,99,2017-06-19 +session,1440,3,Firefox 14,29,2017-09-13 +session,1440,4,Chrome 27,90,2018-07-16 +session,1440,5,Firefox 40,51,2017-11-15 +session,1440,6,Safari 20,77,2016-11-14 +session,1440,7,Firefox 10,71,2017-03-20 +user,1441,Sherwood,Kaleigh,60 +session,1441,0,Internet Explorer 20,84,2017-06-06 +session,1441,1,Safari 7,64,2017-03-26 +session,1441,2,Chrome 33,0,2019-01-14 +session,1441,3,Firefox 49,14,2017-05-20 +session,1441,4,Firefox 37,62,2018-11-09 +user,1442,Robby,Fern,56 +session,1442,0,Safari 21,23,2016-05-24 +session,1442,1,Internet Explorer 31,3,2018-03-07 +user,1443,Jeannetta,Mallie,28 +session,1443,0,Safari 11,10,2016-10-24 +user,1444,Dante,Reyes,50 +session,1444,0,Firefox 28,22,2018-03-18 +session,1444,1,Chrome 3,93,2018-11-15 +session,1444,2,Firefox 15,94,2018-11-10 +session,1444,3,Chrome 10,71,2016-06-10 +session,1444,4,Firefox 14,20,2017-09-28 +session,1444,5,Chrome 3,89,2016-08-29 +session,1444,6,Chrome 16,100,2017-02-13 +session,1444,7,Firefox 3,82,2016-11-01 +session,1444,8,Firefox 46,104,2016-09-20 +user,1445,Valda,Haywood,9 +session,1445,0,Safari 27,90,2018-03-26 +user,1446,Beata,Jaimee,55 +session,1446,0,Chrome 13,36,2018-05-18 +session,1446,1,Firefox 29,0,2017-07-07 +session,1446,2,Internet Explorer 50,49,2017-10-07 +session,1446,3,Firefox 21,87,2017-08-03 +session,1446,4,Firefox 26,38,2017-09-28 +session,1446,5,Internet Explorer 1,30,2019-01-11 +session,1446,6,Safari 36,25,2016-08-05 +session,1446,7,Internet Explorer 20,0,2016-05-21 +session,1446,8,Internet Explorer 26,35,2017-08-24 +session,1446,9,Firefox 34,12,2018-07-03 +user,1447,Gala,Loreta,29 +session,1447,0,Chrome 45,108,2016-05-23 +session,1447,1,Firefox 21,88,2017-03-19 +session,1447,2,Firefox 12,111,2016-08-09 +session,1447,3,Safari 50,28,2016-10-11 +session,1447,4,Internet Explorer 3,27,2017-03-07 +session,1447,5,Firefox 47,12,2016-07-07 +session,1447,6,Chrome 28,28,2016-05-24 +session,1447,7,Internet Explorer 31,5,2017-03-04 +session,1447,8,Firefox 1,98,2017-02-09 +session,1447,9,Firefox 2,36,2017-02-18 +user,1448,August,Alida,85 +session,1448,0,Safari 14,36,2018-11-27 +session,1448,1,Safari 15,29,2019-01-12 +session,1448,2,Internet Explorer 32,19,2017-04-02 +session,1448,3,Chrome 8,27,2018-01-27 +session,1448,4,Internet Explorer 6,73,2018-11-02 +session,1448,5,Safari 33,57,2016-09-01 +session,1448,6,Internet Explorer 47,64,2017-04-18 +session,1448,7,Chrome 26,3,2016-10-27 +session,1448,8,Firefox 50,79,2018-11-22 +user,1449,Rickie,Emile,22 +session,1449,0,Chrome 8,102,2018-01-29 +session,1449,1,Safari 37,106,2017-10-20 +session,1449,2,Chrome 38,21,2018-08-10 +session,1449,3,Internet Explorer 28,42,2017-07-29 +user,1450,Kelley,Toi,24 +session,1450,0,Chrome 4,48,2017-07-30 +session,1450,1,Safari 50,28,2018-06-26 +session,1450,2,Firefox 49,84,2017-01-19 +session,1450,3,Firefox 30,13,2018-09-29 +session,1450,4,Internet Explorer 22,8,2017-03-03 +session,1450,5,Internet Explorer 32,100,2017-09-07 +session,1450,6,Safari 41,116,2017-03-22 +session,1450,7,Internet Explorer 16,50,2017-03-25 +session,1450,8,Firefox 46,43,2018-10-22 +session,1450,9,Firefox 10,42,2016-10-12 +user,1451,Burt,Aida,74 +session,1451,0,Firefox 12,65,2018-07-25 +session,1451,1,Internet Explorer 12,9,2019-01-07 +session,1451,2,Firefox 40,82,2018-03-16 +session,1451,3,Internet Explorer 21,84,2017-03-29 +user,1452,Debra,Shera,2 +session,1452,0,Safari 5,45,2017-12-26 +user,1453,Roselyn,Gertrude,66 +session,1453,0,Internet Explorer 16,25,2018-10-02 +session,1453,1,Safari 1,70,2019-01-26 +session,1453,2,Safari 46,38,2017-04-01 +session,1453,3,Internet Explorer 39,37,2017-08-04 +session,1453,4,Chrome 1,12,2018-08-24 +session,1453,5,Safari 13,101,2018-09-12 +user,1454,Felisha,Rodrigo,9 +session,1454,0,Firefox 3,92,2017-05-24 +session,1454,1,Chrome 21,6,2017-09-27 +session,1454,2,Chrome 4,104,2017-06-24 +user,1455,Hollis,Carylon,46 +session,1455,0,Firefox 19,24,2017-05-26 +session,1455,1,Chrome 12,40,2017-06-26 +session,1455,2,Safari 19,9,2016-05-28 +session,1455,3,Internet Explorer 29,36,2017-10-31 +session,1455,4,Firefox 44,55,2018-03-02 +session,1455,5,Firefox 39,97,2017-02-10 +session,1455,6,Chrome 19,14,2018-08-17 +session,1455,7,Internet Explorer 16,104,2018-09-06 +session,1455,8,Firefox 29,58,2018-03-31 +session,1455,9,Internet Explorer 6,79,2017-02-23 +user,1456,Hong,Yolande,63 +session,1456,0,Safari 25,13,2017-05-22 +session,1456,1,Chrome 3,93,2017-11-14 +session,1456,2,Firefox 22,32,2017-11-27 +session,1456,3,Safari 33,119,2017-05-05 +session,1456,4,Internet Explorer 2,2,2018-07-18 +session,1456,5,Safari 19,29,2016-06-25 +user,1457,Adolfo,Jarred,97 +session,1457,0,Safari 35,34,2018-09-24 +session,1457,1,Internet Explorer 8,54,2018-03-20 +session,1457,2,Chrome 46,60,2016-07-11 +session,1457,3,Chrome 34,31,2017-02-26 +session,1457,4,Firefox 21,57,2017-07-07 +session,1457,5,Firefox 43,36,2016-10-20 +session,1457,6,Internet Explorer 47,66,2016-06-22 +session,1457,7,Internet Explorer 23,89,2017-10-24 +session,1457,8,Chrome 40,119,2016-09-16 +user,1458,Shona,Maurita,8 +session,1458,0,Chrome 5,13,2018-04-07 +session,1458,1,Internet Explorer 32,82,2017-11-14 +session,1458,2,Safari 4,19,2017-04-13 +session,1458,3,Firefox 22,26,2018-07-25 +session,1458,4,Chrome 39,39,2016-08-23 +session,1458,5,Chrome 6,60,2018-11-02 +session,1458,6,Safari 1,55,2016-09-18 +session,1458,7,Safari 19,9,2018-01-29 +user,1459,Fernando,Andrea,1 +session,1459,0,Safari 12,12,2017-06-03 +session,1459,1,Firefox 13,68,2016-05-29 +session,1459,2,Chrome 33,32,2018-05-29 +session,1459,3,Internet Explorer 21,64,2017-05-31 +session,1459,4,Safari 19,89,2017-06-11 +session,1459,5,Safari 39,15,2017-05-08 +user,1460,Magaly,Loyce,90 +session,1460,0,Safari 42,100,2018-02-21 +session,1460,1,Internet Explorer 47,40,2018-06-22 +session,1460,2,Firefox 3,62,2016-08-22 +session,1460,3,Internet Explorer 42,26,2016-06-20 +user,1461,Matthew,Corie,19 +session,1461,0,Safari 40,63,2016-06-12 +session,1461,1,Chrome 16,87,2018-05-04 +session,1461,2,Chrome 36,8,2017-07-15 +session,1461,3,Safari 2,24,2017-07-18 +session,1461,4,Firefox 35,102,2017-02-27 +user,1462,Jody,Charlette,49 +session,1462,0,Firefox 38,1,2018-08-25 +session,1462,1,Chrome 26,73,2018-01-14 +session,1462,2,Chrome 7,11,2016-12-21 +session,1462,3,Chrome 29,101,2018-01-25 +session,1462,4,Chrome 50,17,2017-09-09 +session,1462,5,Safari 24,34,2017-02-21 +session,1462,6,Chrome 1,88,2018-09-04 +session,1462,7,Safari 10,112,2017-03-17 +user,1463,Bernie,Marivel,82 +session,1463,0,Firefox 47,16,2018-01-25 +session,1463,1,Firefox 37,69,2017-10-16 +user,1464,Ethel,Ahmed,33 +session,1464,0,Chrome 6,40,2017-08-19 +session,1464,1,Firefox 12,32,2017-06-11 +session,1464,2,Internet Explorer 12,56,2018-07-02 +session,1464,3,Firefox 31,49,2017-04-23 +session,1464,4,Safari 25,12,2016-10-08 +session,1464,5,Chrome 46,114,2018-04-08 +session,1464,6,Safari 37,17,2016-10-18 +session,1464,7,Chrome 48,98,2018-11-12 +session,1464,8,Safari 40,2,2017-12-03 +user,1465,Zane,Lawerence,19 +session,1465,0,Chrome 27,97,2017-12-29 +session,1465,1,Internet Explorer 42,76,2018-07-05 +session,1465,2,Chrome 9,77,2018-04-15 +session,1465,3,Chrome 2,98,2019-01-13 +session,1465,4,Chrome 48,34,2016-09-05 +session,1465,5,Firefox 5,33,2016-07-10 +user,1466,Berry,Dodie,20 +session,1466,0,Chrome 19,33,2018-06-09 +session,1466,1,Firefox 12,66,2016-06-08 +session,1466,2,Internet Explorer 28,18,2017-07-13 +session,1466,3,Firefox 5,78,2018-03-07 +session,1466,4,Internet Explorer 46,100,2016-10-24 +user,1467,Jimmy,Alphonse,73 +session,1467,0,Internet Explorer 45,50,2016-09-12 +session,1467,1,Firefox 15,1,2018-07-31 +session,1467,2,Chrome 38,64,2017-11-27 +session,1467,3,Safari 33,59,2017-09-08 +user,1468,Melania,Rachell,32 +session,1468,0,Safari 14,64,2019-01-11 +user,1469,Lakiesha,Lavone,35 +session,1469,0,Chrome 17,54,2016-07-22 +user,1470,Lottie,Eufemia,19 +session,1470,0,Internet Explorer 21,96,2017-12-05 +session,1470,1,Safari 19,8,2018-06-08 +session,1470,2,Chrome 27,119,2016-09-21 +session,1470,3,Chrome 37,96,2016-12-25 +session,1470,4,Internet Explorer 16,103,2016-12-16 +session,1470,5,Safari 15,3,2018-06-26 +session,1470,6,Safari 7,68,2018-07-12 +user,1471,Lynn,Horace,92 +session,1471,0,Safari 30,118,2016-06-30 +session,1471,1,Internet Explorer 27,77,2018-04-23 +session,1471,2,Safari 20,23,2016-06-16 +session,1471,3,Safari 30,101,2018-09-03 +session,1471,4,Internet Explorer 30,59,2018-01-24 +session,1471,5,Internet Explorer 48,89,2017-03-19 +session,1471,6,Chrome 45,10,2017-12-09 +session,1471,7,Firefox 32,68,2018-11-24 +session,1471,8,Chrome 30,27,2017-11-03 +user,1472,Aimee,Yasmine,95 +session,1472,0,Internet Explorer 33,17,2016-05-22 +session,1472,1,Safari 21,91,2018-04-24 +session,1472,2,Safari 26,91,2018-07-06 +session,1472,3,Safari 39,56,2017-09-10 +session,1472,4,Chrome 46,10,2018-12-03 +session,1472,5,Safari 10,113,2016-06-14 +session,1472,6,Internet Explorer 25,68,2017-08-05 +session,1472,7,Internet Explorer 25,51,2017-06-14 +session,1472,8,Safari 38,8,2017-07-05 +user,1473,Demarcus,Lavina,61 +session,1473,0,Internet Explorer 33,105,2017-11-16 +session,1473,1,Internet Explorer 38,117,2016-12-11 +session,1473,2,Chrome 30,97,2018-10-27 +user,1474,Shira,Guy,19 +session,1474,0,Safari 1,47,2018-08-01 +session,1474,1,Chrome 3,39,2018-10-23 +session,1474,2,Safari 32,113,2017-03-11 +session,1474,3,Firefox 36,38,2018-08-15 +session,1474,4,Chrome 11,3,2017-06-22 +session,1474,5,Firefox 1,32,2017-04-19 +session,1474,6,Internet Explorer 35,56,2018-07-25 +user,1475,Tiesha,Traci,51 +session,1475,0,Internet Explorer 16,49,2018-12-16 +session,1475,1,Safari 44,32,2019-02-08 +session,1475,2,Safari 39,116,2017-02-19 +session,1475,3,Internet Explorer 33,39,2017-04-29 +session,1475,4,Chrome 46,19,2017-12-10 +user,1476,Gavin,Jann,78 +session,1476,0,Safari 28,21,2016-11-28 +session,1476,1,Internet Explorer 35,67,2016-11-17 +session,1476,2,Safari 30,39,2018-11-27 +session,1476,3,Chrome 17,101,2017-12-17 +session,1476,4,Firefox 16,89,2018-11-22 +session,1476,5,Safari 4,4,2017-04-26 +session,1476,6,Safari 20,49,2018-10-16 +user,1477,Melodie,Krista,63 +session,1477,0,Internet Explorer 49,75,2018-04-01 +user,1478,Juliann,Emmaline,54 +session,1478,0,Internet Explorer 35,84,2016-06-20 +session,1478,1,Internet Explorer 40,79,2018-05-05 +session,1478,2,Firefox 22,92,2018-09-12 +session,1478,3,Safari 41,58,2019-01-17 +session,1478,4,Internet Explorer 31,82,2017-02-10 +session,1478,5,Safari 48,114,2017-07-24 +session,1478,6,Chrome 50,11,2018-06-12 +session,1478,7,Firefox 9,76,2018-01-16 +session,1478,8,Firefox 22,42,2018-03-29 +user,1479,Chia,Corey,18 +session,1479,0,Chrome 29,74,2016-06-05 +user,1480,Azalee,Lavern,45 +session,1480,0,Safari 7,17,2018-01-21 +session,1480,1,Chrome 23,86,2018-01-12 +session,1480,2,Internet Explorer 40,83,2016-08-25 +user,1481,Markus,Malinda,92 +session,1481,0,Chrome 12,37,2016-11-13 +user,1482,Lanny,Tuan,11 +session,1482,0,Firefox 9,58,2018-10-05 +user,1483,Dawna,Clinton,38 +session,1483,0,Firefox 36,93,2016-12-13 +session,1483,1,Chrome 9,48,2017-03-25 +session,1483,2,Chrome 17,109,2016-08-17 +session,1483,3,Safari 5,54,2016-05-21 +session,1483,4,Chrome 35,2,2017-08-11 +session,1483,5,Firefox 43,32,2017-10-22 +session,1483,6,Firefox 1,113,2018-11-13 +session,1483,7,Safari 32,85,2018-10-16 +session,1483,8,Chrome 30,41,2018-03-29 +user,1484,Jackson,Tyson,3 +session,1484,0,Safari 6,11,2017-12-09 +session,1484,1,Internet Explorer 42,102,2018-05-21 +session,1484,2,Chrome 5,119,2019-01-09 +user,1485,Caleb,Matthew,59 +session,1485,0,Internet Explorer 40,59,2016-09-25 +session,1485,1,Chrome 10,100,2016-05-29 +session,1485,2,Internet Explorer 47,25,2018-12-18 +session,1485,3,Safari 5,52,2017-10-21 +session,1485,4,Safari 6,91,2018-08-16 +session,1485,5,Safari 9,64,2016-09-05 +user,1486,Neil,Corina,56 +session,1486,0,Chrome 13,52,2018-01-04 +session,1486,1,Safari 20,93,2016-08-17 +session,1486,2,Chrome 27,30,2016-07-12 +session,1486,3,Firefox 29,63,2017-02-25 +session,1486,4,Internet Explorer 38,80,2017-09-15 +session,1486,5,Safari 50,28,2016-08-18 +user,1487,Elnora,Linwood,9 +session,1487,0,Chrome 35,32,2018-06-29 +session,1487,1,Internet Explorer 32,17,2017-07-15 +session,1487,2,Chrome 27,62,2018-10-18 +session,1487,3,Chrome 41,39,2017-08-26 +session,1487,4,Internet Explorer 49,31,2017-02-21 +session,1487,5,Internet Explorer 8,98,2016-11-22 +session,1487,6,Firefox 31,113,2016-05-20 +session,1487,7,Safari 3,53,2019-01-29 +user,1488,Theresa,Maximina,83 +session,1488,0,Chrome 20,2,2016-09-22 +session,1488,1,Chrome 1,22,2018-12-03 +session,1488,2,Safari 21,94,2018-03-03 +session,1488,3,Firefox 31,76,2018-06-13 +session,1488,4,Chrome 4,27,2018-10-13 +session,1488,5,Firefox 37,108,2016-08-25 +session,1488,6,Internet Explorer 25,57,2018-08-09 +user,1489,Leonila,Lola,58 +session,1489,0,Chrome 22,65,2019-01-16 +session,1489,1,Chrome 24,47,2018-12-06 +session,1489,2,Chrome 43,71,2016-07-18 +session,1489,3,Safari 3,23,2017-07-22 +session,1489,4,Firefox 2,102,2017-05-29 +user,1490,Tammy,Marianne,71 +session,1490,0,Chrome 9,11,2018-04-15 +session,1490,1,Safari 36,21,2017-05-25 +session,1490,2,Internet Explorer 41,109,2018-03-07 +session,1490,3,Internet Explorer 7,114,2016-06-04 +session,1490,4,Internet Explorer 2,48,2017-09-20 +session,1490,5,Firefox 49,119,2018-06-26 +session,1490,6,Safari 14,92,2017-09-24 +session,1490,7,Safari 43,50,2018-01-15 +session,1490,8,Firefox 46,43,2016-12-31 +user,1491,Merle,Victorina,31 +session,1491,0,Chrome 20,85,2017-07-10 +session,1491,1,Internet Explorer 43,61,2018-07-04 +session,1491,2,Chrome 49,100,2019-01-16 +user,1492,Louis,Lashanda,1 +session,1492,0,Firefox 17,110,2016-11-01 +session,1492,1,Safari 22,48,2016-11-24 +session,1492,2,Internet Explorer 39,44,2017-08-16 +session,1492,3,Internet Explorer 3,9,2018-07-01 +user,1493,Trent,Lilla,96 +session,1493,0,Safari 6,28,2017-10-01 +session,1493,1,Firefox 50,79,2016-12-13 +session,1493,2,Chrome 2,13,2017-07-25 +session,1493,3,Firefox 1,6,2017-12-03 +session,1493,4,Chrome 5,50,2016-05-19 +user,1494,Clement,Lael,64 +session,1494,0,Chrome 50,51,2016-12-28 +user,1495,Dennis,Carla,61 +session,1495,0,Chrome 28,77,2017-05-15 +session,1495,1,Firefox 45,44,2018-07-20 +session,1495,2,Internet Explorer 15,104,2016-10-01 +session,1495,3,Safari 24,0,2017-04-19 +session,1495,4,Chrome 1,115,2017-11-14 +session,1495,5,Internet Explorer 16,11,2018-11-03 +user,1496,Buddy,Brooks,76 +session,1496,0,Firefox 30,74,2016-09-29 +session,1496,1,Chrome 34,60,2018-04-10 +session,1496,2,Firefox 20,86,2017-09-29 +session,1496,3,Safari 7,95,2017-08-21 +session,1496,4,Firefox 27,115,2017-07-14 +session,1496,5,Firefox 12,26,2019-02-03 +user,1497,Nicholas,Edwina,61 +session,1497,0,Firefox 7,39,2018-06-07 +session,1497,1,Chrome 38,13,2018-04-12 +user,1498,Elinore,Heath,50 +session,1498,0,Safari 39,73,2018-02-22 +user,1499,Maureen,Terresa,52 +session,1499,0,Chrome 1,26,2017-03-07 +session,1499,1,Internet Explorer 24,62,2017-01-22 +session,1499,2,Chrome 22,54,2017-10-04 +session,1499,3,Firefox 9,46,2017-02-13 +session,1499,4,Internet Explorer 12,85,2017-04-11 +session,1499,5,Internet Explorer 32,20,2016-08-22 +user,1500,Carlos,Benita,93 +session,1500,0,Safari 14,58,2017-02-05 +session,1500,1,Safari 48,103,2018-05-18 +session,1500,2,Firefox 49,54,2018-01-19 +user,1501,Hayley,Janeen,26 +session,1501,0,Internet Explorer 8,76,2017-02-26 +session,1501,1,Chrome 33,77,2017-08-07 +session,1501,2,Firefox 42,81,2016-07-17 +session,1501,3,Firefox 43,34,2019-01-13 +session,1501,4,Firefox 31,65,2018-03-11 +session,1501,5,Chrome 14,98,2017-07-14 +session,1501,6,Internet Explorer 33,75,2016-09-25 +session,1501,7,Firefox 48,114,2016-08-31 +user,1502,Bess,Queen,90 +session,1502,0,Safari 20,22,2018-10-24 +session,1502,1,Firefox 19,58,2018-08-22 +user,1503,Danilo,Mirta,92 +session,1503,0,Safari 17,36,2018-09-26 +session,1503,1,Firefox 32,99,2019-01-14 +session,1503,2,Internet Explorer 17,78,2016-12-29 +session,1503,3,Safari 48,62,2017-04-26 +session,1503,4,Internet Explorer 17,116,2016-08-13 +session,1503,5,Internet Explorer 45,44,2017-10-04 +session,1503,6,Firefox 48,46,2019-02-01 +session,1503,7,Internet Explorer 18,55,2017-02-15 +session,1503,8,Internet Explorer 2,73,2017-05-29 +user,1504,Terri,Moshe,56 +session,1504,0,Internet Explorer 17,69,2017-07-24 +session,1504,1,Internet Explorer 22,7,2017-07-23 +session,1504,2,Internet Explorer 44,102,2018-04-16 +user,1505,Sammy,Samuel,62 +session,1505,0,Safari 43,43,2016-06-22 +user,1506,Vanesa,Lesia,87 +session,1506,0,Chrome 9,17,2018-04-19 +session,1506,1,Chrome 14,113,2017-03-08 +session,1506,2,Firefox 2,0,2018-08-17 +session,1506,3,Safari 31,63,2016-07-09 +session,1506,4,Firefox 41,95,2017-06-18 +session,1506,5,Internet Explorer 13,85,2018-06-11 +session,1506,6,Chrome 43,63,2018-03-19 +session,1506,7,Chrome 39,85,2018-04-01 +session,1506,8,Firefox 46,114,2016-09-20 +user,1507,Heike,Ozie,9 +session,1507,0,Internet Explorer 40,76,2018-04-30 +user,1508,Carroll,Jame,45 +session,1508,0,Safari 13,19,2018-11-25 +session,1508,1,Internet Explorer 49,67,2018-12-22 +session,1508,2,Chrome 4,20,2018-01-06 +session,1508,3,Internet Explorer 40,37,2018-07-25 +session,1508,4,Firefox 17,7,2017-02-19 +session,1508,5,Chrome 26,64,2018-07-19 +session,1508,6,Internet Explorer 5,26,2017-11-19 +user,1509,Greg,Rhona,43 +session,1509,0,Internet Explorer 33,117,2018-08-16 +session,1509,1,Internet Explorer 3,86,2017-04-06 +user,1510,Kevin,Clarissa,6 +session,1510,0,Internet Explorer 32,95,2018-11-14 +user,1511,Virginia,Stefania,84 +session,1511,0,Firefox 14,2,2017-01-02 +session,1511,1,Safari 38,6,2017-06-16 +session,1511,2,Chrome 39,52,2018-09-24 +session,1511,3,Internet Explorer 42,46,2017-12-08 +user,1512,Major,Sharyl,2 +session,1512,0,Internet Explorer 13,11,2017-05-17 +session,1512,1,Firefox 23,27,2017-10-10 +session,1512,2,Firefox 31,66,2018-03-18 +session,1512,3,Internet Explorer 26,107,2017-03-02 +user,1513,Jamey,Mayra,33 +session,1513,0,Internet Explorer 7,20,2018-12-08 +session,1513,1,Chrome 47,65,2017-10-12 +session,1513,2,Internet Explorer 46,112,2017-03-23 +session,1513,3,Internet Explorer 32,96,2018-04-11 +session,1513,4,Firefox 30,82,2016-10-03 +session,1513,5,Chrome 44,37,2018-07-20 +session,1513,6,Chrome 12,41,2016-11-24 +session,1513,7,Firefox 3,88,2017-03-04 +session,1513,8,Safari 26,108,2018-09-23 +session,1513,9,Firefox 27,28,2018-12-31 +user,1514,Saul,Queen,75 +session,1514,0,Firefox 50,37,2016-09-21 +session,1514,1,Firefox 12,117,2018-07-29 +session,1514,2,Safari 4,103,2018-12-15 +session,1514,3,Safari 7,63,2017-04-16 +user,1515,Carmine,Wilton,98 +session,1515,0,Safari 47,44,2017-06-24 +session,1515,1,Firefox 15,102,2019-01-17 +session,1515,2,Safari 47,96,2016-12-02 +session,1515,3,Safari 12,20,2017-01-22 +session,1515,4,Firefox 2,119,2017-05-21 +session,1515,5,Chrome 11,88,2018-01-21 +session,1515,6,Internet Explorer 34,117,2018-10-07 +session,1515,7,Safari 4,77,2017-10-11 +user,1516,Elanor,Loreen,6 +session,1516,0,Internet Explorer 48,92,2017-08-15 +session,1516,1,Chrome 3,9,2017-01-14 +session,1516,2,Firefox 33,39,2016-11-25 +session,1516,3,Safari 34,83,2018-06-17 +user,1517,Catrina,Jennefer,16 +session,1517,0,Internet Explorer 17,14,2017-01-01 +session,1517,1,Firefox 26,10,2017-11-17 +session,1517,2,Internet Explorer 33,89,2018-04-10 +session,1517,3,Internet Explorer 22,71,2018-10-23 +session,1517,4,Internet Explorer 42,56,2018-04-15 +session,1517,5,Internet Explorer 50,104,2017-07-25 +session,1517,6,Safari 43,3,2018-10-29 +user,1518,Sebastian,Robbi,32 +session,1518,0,Internet Explorer 19,37,2017-02-11 +session,1518,1,Chrome 1,91,2016-12-14 +session,1518,2,Chrome 31,50,2017-06-05 +session,1518,3,Chrome 12,74,2018-02-27 +session,1518,4,Safari 46,51,2018-12-06 +session,1518,5,Chrome 4,107,2016-11-22 +user,1519,Toya,Lavinia,86 +session,1519,0,Chrome 50,2,2017-08-01 +session,1519,1,Chrome 36,114,2018-11-15 +session,1519,2,Firefox 8,77,2017-07-21 +session,1519,3,Safari 15,43,2016-12-17 +session,1519,4,Internet Explorer 6,38,2017-02-16 +user,1520,Yolando,Ozell,66 +session,1520,0,Chrome 21,10,2018-10-09 +session,1520,1,Safari 39,38,2017-05-30 +session,1520,2,Internet Explorer 24,111,2016-06-03 +session,1520,3,Safari 17,117,2016-07-26 +session,1520,4,Internet Explorer 1,67,2017-11-03 +session,1520,5,Chrome 32,119,2016-07-24 +session,1520,6,Safari 13,10,2017-04-14 +session,1520,7,Internet Explorer 41,69,2018-02-04 +user,1521,Dean,Rhonda,87 +session,1521,0,Internet Explorer 11,106,2016-09-21 +session,1521,1,Firefox 32,27,2017-05-12 +session,1521,2,Firefox 11,102,2018-05-14 +session,1521,3,Chrome 1,33,2018-10-25 +user,1522,Estella,Piedad,31 +session,1522,0,Firefox 26,64,2018-06-24 +session,1522,1,Internet Explorer 41,63,2018-07-21 +session,1522,2,Internet Explorer 7,116,2018-06-29 +session,1522,3,Safari 19,72,2018-12-10 +session,1522,4,Internet Explorer 15,91,2016-11-20 +session,1522,5,Safari 1,22,2016-10-19 +session,1522,6,Firefox 47,86,2017-06-18 +session,1522,7,Firefox 23,98,2017-08-23 +session,1522,8,Firefox 47,60,2016-10-23 +user,1523,Laurence,Kiyoko,44 +session,1523,0,Safari 41,87,2019-01-10 +session,1523,1,Firefox 3,18,2018-11-01 +session,1523,2,Internet Explorer 15,114,2017-12-08 +session,1523,3,Firefox 40,115,2018-12-03 +session,1523,4,Internet Explorer 21,56,2017-01-19 +session,1523,5,Firefox 42,88,2018-07-31 +session,1523,6,Firefox 39,115,2017-06-03 +session,1523,7,Internet Explorer 41,83,2016-08-17 +session,1523,8,Firefox 49,74,2017-02-11 +session,1523,9,Safari 29,90,2018-05-12 +user,1524,Rosita,Theda,11 +session,1524,0,Safari 32,100,2016-10-13 +session,1524,1,Safari 16,49,2016-06-21 +session,1524,2,Safari 26,20,2018-01-16 +session,1524,3,Internet Explorer 16,87,2018-06-02 +session,1524,4,Chrome 41,43,2018-04-13 +session,1524,5,Chrome 46,3,2018-05-22 +session,1524,6,Safari 34,25,2018-07-02 +session,1524,7,Firefox 15,8,2017-10-13 +session,1524,8,Firefox 4,84,2016-10-23 +user,1525,Stevie,Alesha,83 +session,1525,0,Chrome 32,0,2019-01-31 +session,1525,1,Firefox 38,82,2017-07-30 +session,1525,2,Chrome 25,20,2018-01-24 +session,1525,3,Safari 8,37,2017-02-21 +session,1525,4,Internet Explorer 4,47,2018-12-10 +session,1525,5,Firefox 40,36,2017-06-04 +user,1526,Lizeth,Merissa,24 +session,1526,0,Firefox 16,22,2017-05-12 +session,1526,1,Safari 42,53,2017-02-12 +session,1526,2,Firefox 11,83,2017-10-19 +session,1526,3,Internet Explorer 33,19,2016-06-14 +user,1527,Anglea,Gayla,70 +session,1527,0,Safari 11,46,2018-10-06 +session,1527,1,Chrome 47,69,2017-05-21 +session,1527,2,Chrome 25,52,2016-09-07 +session,1527,3,Firefox 34,57,2018-06-14 +session,1527,4,Firefox 25,116,2018-09-02 +session,1527,5,Safari 13,119,2016-11-16 +session,1527,6,Safari 19,27,2017-03-16 +user,1528,Connie,Serita,29 +session,1528,0,Chrome 44,100,2017-07-01 +session,1528,1,Firefox 25,28,2017-12-25 +session,1528,2,Internet Explorer 2,29,2018-04-01 +session,1528,3,Firefox 23,44,2019-01-29 +session,1528,4,Safari 21,40,2019-01-23 +session,1528,5,Chrome 45,33,2017-01-06 +session,1528,6,Internet Explorer 50,72,2016-11-04 +session,1528,7,Firefox 43,47,2017-04-04 +session,1528,8,Internet Explorer 42,50,2018-06-09 +session,1528,9,Safari 20,78,2016-11-12 +user,1529,Bobby,Warren,59 +session,1529,0,Internet Explorer 17,104,2018-02-25 +session,1529,1,Safari 26,52,2016-08-07 +session,1529,2,Firefox 13,28,2016-10-23 +session,1529,3,Safari 42,118,2018-02-02 +session,1529,4,Safari 5,31,2017-07-25 +session,1529,5,Firefox 2,91,2018-05-28 +session,1529,6,Internet Explorer 32,19,2017-08-07 +session,1529,7,Chrome 28,43,2018-02-26 +session,1529,8,Chrome 4,117,2018-01-29 +user,1530,Emmitt,Anthony,32 +session,1530,0,Safari 28,41,2017-04-15 +session,1530,1,Chrome 15,53,2017-10-11 +session,1530,2,Safari 40,94,2016-11-22 +session,1530,3,Safari 4,28,2017-11-19 +session,1530,4,Internet Explorer 18,61,2016-10-26 +user,1531,Lois,Betsey,46 +session,1531,0,Safari 30,113,2018-07-30 +session,1531,1,Internet Explorer 19,86,2016-08-28 +session,1531,2,Firefox 24,86,2017-02-05 +session,1531,3,Chrome 8,38,2019-01-31 +session,1531,4,Safari 32,80,2018-10-08 +user,1532,Retha,Raymon,47 +session,1532,0,Internet Explorer 14,42,2016-11-01 +session,1532,1,Chrome 14,119,2017-09-30 +session,1532,2,Safari 7,1,2016-11-23 +session,1532,3,Chrome 21,89,2019-01-16 +session,1532,4,Firefox 43,69,2019-01-20 +session,1532,5,Chrome 19,27,2016-09-09 +session,1532,6,Firefox 6,79,2016-06-19 +session,1532,7,Internet Explorer 10,49,2017-11-28 +session,1532,8,Chrome 46,10,2016-12-24 +session,1532,9,Firefox 48,26,2017-09-26 +user,1533,Dorathy,Gertie,6 +session,1533,0,Chrome 48,6,2016-09-27 +user,1534,Maryland,Nigel,31 +session,1534,0,Safari 22,11,2017-09-25 +session,1534,1,Safari 37,46,2016-10-16 +session,1534,2,Safari 2,15,2018-10-08 +session,1534,3,Firefox 1,15,2018-11-27 +session,1534,4,Safari 49,67,2017-05-09 +session,1534,5,Safari 26,19,2018-08-29 +session,1534,6,Chrome 15,66,2016-11-15 +session,1534,7,Internet Explorer 48,16,2017-04-03 +session,1534,8,Firefox 9,105,2018-03-31 +session,1534,9,Safari 21,23,2018-12-04 +user,1535,Wiley,Sage,27 +session,1535,0,Firefox 34,94,2016-09-23 +session,1535,1,Internet Explorer 43,99,2017-03-07 +session,1535,2,Internet Explorer 26,83,2017-04-12 +session,1535,3,Chrome 35,21,2017-06-04 +session,1535,4,Firefox 50,27,2018-11-17 +session,1535,5,Internet Explorer 42,57,2018-05-25 +session,1535,6,Internet Explorer 22,113,2017-12-05 +session,1535,7,Chrome 16,6,2017-04-05 +session,1535,8,Safari 50,48,2017-06-04 +user,1536,Heath,Frank,52 +session,1536,0,Safari 46,66,2017-05-19 +session,1536,1,Internet Explorer 8,90,2017-11-16 +session,1536,2,Safari 41,42,2018-01-30 +session,1536,3,Safari 35,12,2017-03-15 +session,1536,4,Firefox 36,22,2019-01-13 +session,1536,5,Firefox 16,47,2017-12-16 +session,1536,6,Internet Explorer 43,24,2017-03-02 +user,1537,Monte,Aleshia,68 +session,1537,0,Safari 4,25,2018-12-04 +user,1538,Deeanna,Chi,89 +session,1538,0,Firefox 38,50,2018-06-11 +session,1538,1,Chrome 24,106,2016-11-14 +session,1538,2,Chrome 28,40,2016-08-27 +session,1538,3,Chrome 27,11,2017-03-31 +session,1538,4,Firefox 18,63,2018-10-15 +session,1538,5,Firefox 21,103,2017-02-12 +session,1538,6,Safari 21,53,2016-09-14 +session,1538,7,Safari 21,59,2017-03-06 +session,1538,8,Firefox 13,25,2016-06-14 +user,1539,Kimiko,Danny,30 +session,1539,0,Chrome 15,55,2019-01-29 +session,1539,1,Firefox 23,60,2017-12-05 +session,1539,2,Chrome 42,24,2016-05-31 +session,1539,3,Chrome 43,35,2017-10-05 +session,1539,4,Chrome 10,81,2018-03-21 +user,1540,Rod,Damon,93 +session,1540,0,Firefox 32,47,2018-07-05 +session,1540,1,Internet Explorer 21,93,2016-11-14 +user,1541,Ahmed,Parker,69 +session,1541,0,Safari 1,35,2017-06-18 +session,1541,1,Internet Explorer 1,79,2016-09-16 +session,1541,2,Safari 4,93,2017-10-29 +session,1541,3,Internet Explorer 36,89,2018-10-13 +session,1541,4,Chrome 19,62,2018-07-30 +session,1541,5,Firefox 38,24,2017-03-13 +session,1541,6,Internet Explorer 15,74,2018-06-05 +session,1541,7,Firefox 10,84,2016-12-27 +session,1541,8,Firefox 3,84,2018-03-26 +session,1541,9,Safari 48,45,2018-07-18 +user,1542,Sunday,Devon,98 +session,1542,0,Internet Explorer 11,81,2018-07-06 +session,1542,1,Firefox 49,10,2016-11-06 +session,1542,2,Internet Explorer 13,5,2016-08-01 +session,1542,3,Chrome 48,106,2019-01-23 +session,1542,4,Internet Explorer 24,119,2017-08-11 +session,1542,5,Chrome 15,103,2016-08-06 +session,1542,6,Chrome 13,79,2016-10-08 +session,1542,7,Firefox 35,29,2016-06-07 +session,1542,8,Firefox 38,19,2016-07-16 +session,1542,9,Internet Explorer 36,13,2019-02-05 +user,1543,Hester,Rachele,20 +session,1543,0,Safari 31,19,2016-11-05 +session,1543,1,Safari 16,103,2017-03-22 +session,1543,2,Safari 35,109,2017-08-23 +user,1544,Hipolito,Nicolas,8 +session,1544,0,Safari 27,15,2017-05-03 +session,1544,1,Chrome 34,107,2018-09-27 +session,1544,2,Internet Explorer 50,9,2017-11-01 +session,1544,3,Firefox 35,6,2018-07-23 +session,1544,4,Safari 28,119,2016-11-25 +user,1545,Barrie,Shay,69 +session,1545,0,Internet Explorer 50,98,2016-08-02 +session,1545,1,Chrome 40,67,2019-02-08 +session,1545,2,Firefox 15,74,2018-12-12 +user,1546,Kip,Jayne,1 +session,1546,0,Firefox 16,57,2017-06-23 +session,1546,1,Firefox 32,108,2018-05-01 +session,1546,2,Safari 43,102,2018-08-18 +session,1546,3,Firefox 6,106,2016-09-28 +session,1546,4,Chrome 41,54,2018-03-09 +session,1546,5,Firefox 42,104,2017-12-15 +session,1546,6,Internet Explorer 46,41,2017-08-21 +session,1546,7,Safari 11,103,2017-01-07 +session,1546,8,Firefox 23,1,2017-06-13 +session,1546,9,Safari 29,77,2016-11-12 +user,1547,Bill,Fidel,55 +session,1547,0,Firefox 24,58,2016-07-27 +session,1547,1,Chrome 49,11,2017-09-25 +session,1547,2,Internet Explorer 19,84,2017-02-23 +user,1548,Jae,Ryan,96 +session,1548,0,Internet Explorer 13,79,2016-11-11 +user,1549,Josie,Sharda,99 +session,1549,0,Safari 46,10,2017-07-18 +session,1549,1,Chrome 17,25,2017-01-20 +session,1549,2,Chrome 30,104,2018-12-22 +session,1549,3,Chrome 7,119,2016-12-02 +session,1549,4,Internet Explorer 16,53,2017-09-28 +session,1549,5,Chrome 19,53,2017-01-29 +user,1550,Noma,Augustine,93 +session,1550,0,Firefox 27,109,2016-10-30 +session,1550,1,Firefox 19,74,2016-12-10 +session,1550,2,Safari 6,82,2017-07-26 +session,1550,3,Internet Explorer 9,21,2017-07-19 +session,1550,4,Safari 19,108,2016-06-18 +session,1550,5,Chrome 44,111,2016-06-13 +user,1551,Alena,Brandy,21 +session,1551,0,Safari 18,9,2018-12-18 +session,1551,1,Safari 1,103,2018-12-07 +session,1551,2,Safari 41,68,2017-11-09 +session,1551,3,Internet Explorer 34,92,2016-06-27 +session,1551,4,Internet Explorer 34,17,2017-02-16 +session,1551,5,Firefox 32,38,2017-04-21 +session,1551,6,Chrome 21,75,2017-02-18 +session,1551,7,Chrome 33,104,2018-01-15 +user,1552,Claudio,Numbers,23 +session,1552,0,Safari 16,107,2017-01-29 +session,1552,1,Chrome 14,115,2018-02-03 +session,1552,2,Firefox 12,107,2018-06-30 +session,1552,3,Chrome 48,92,2017-04-15 +session,1552,4,Chrome 49,26,2017-10-31 +session,1552,5,Safari 12,105,2018-01-10 +session,1552,6,Chrome 39,18,2019-01-19 +user,1553,Marty,Joeann,35 +session,1553,0,Firefox 24,21,2017-08-01 +session,1553,1,Firefox 34,119,2018-04-24 +session,1553,2,Firefox 24,109,2017-06-01 +session,1553,3,Chrome 48,97,2018-04-06 +session,1553,4,Internet Explorer 33,26,2017-05-31 +session,1553,5,Internet Explorer 23,11,2017-05-25 +session,1553,6,Internet Explorer 31,0,2017-08-04 +session,1553,7,Internet Explorer 46,21,2017-05-25 +session,1553,8,Firefox 24,54,2018-02-08 +session,1553,9,Chrome 20,112,2018-04-16 +user,1554,Valentine,Lore,87 +session,1554,0,Safari 44,0,2018-07-10 +session,1554,1,Chrome 15,82,2018-06-16 +session,1554,2,Chrome 47,102,2018-05-21 +user,1555,Jody,Columbus,62 +session,1555,0,Chrome 14,10,2017-01-23 +session,1555,1,Chrome 38,79,2018-04-12 +user,1556,Dane,Philomena,87 +session,1556,0,Firefox 42,112,2019-01-18 +session,1556,1,Safari 9,73,2018-08-19 +session,1556,2,Firefox 9,76,2018-06-29 +session,1556,3,Chrome 17,34,2017-06-17 +session,1556,4,Firefox 6,2,2018-11-03 +session,1556,5,Internet Explorer 30,36,2017-09-09 +session,1556,6,Safari 41,27,2016-08-05 +session,1556,7,Chrome 40,43,2016-08-07 +session,1556,8,Internet Explorer 8,46,2017-08-21 +session,1556,9,Safari 23,76,2019-01-16 +user,1557,Kelley,Arlene,96 +session,1557,0,Chrome 28,101,2016-10-31 +session,1557,1,Chrome 4,76,2017-09-03 +user,1558,Tory,Zina,79 +session,1558,0,Internet Explorer 3,83,2016-06-29 +session,1558,1,Chrome 2,35,2017-10-16 +session,1558,2,Firefox 7,104,2018-05-25 +user,1559,Oscar,Destiny,15 +session,1559,0,Internet Explorer 43,28,2019-01-21 +user,1560,Harry,Karina,95 +session,1560,0,Safari 47,59,2018-12-10 +user,1561,Elmer,Lidia,39 +session,1561,0,Firefox 46,70,2016-12-02 +user,1562,Kennith,Annamaria,96 +session,1562,0,Safari 1,11,2016-12-19 +session,1562,1,Firefox 42,56,2016-08-13 +session,1562,2,Safari 44,58,2017-11-15 +session,1562,3,Chrome 16,75,2017-03-29 +session,1562,4,Firefox 34,38,2016-09-17 +user,1563,Tracy,Marvel,66 +session,1563,0,Internet Explorer 47,110,2018-12-31 +session,1563,1,Internet Explorer 7,111,2018-09-22 +session,1563,2,Chrome 29,5,2019-01-08 +user,1564,Tiera,Carolin,15 +session,1564,0,Firefox 8,55,2018-04-02 +session,1564,1,Chrome 39,89,2017-04-05 +session,1564,2,Chrome 1,79,2017-07-12 +session,1564,3,Internet Explorer 4,97,2018-11-02 +session,1564,4,Safari 26,45,2018-02-01 +session,1564,5,Firefox 6,51,2016-06-29 +session,1564,6,Internet Explorer 1,39,2018-01-16 +session,1564,7,Firefox 8,19,2017-07-27 +session,1564,8,Chrome 4,10,2018-02-24 +session,1564,9,Chrome 2,69,2017-07-12 +user,1565,Kaycee,Althea,38 +session,1565,0,Internet Explorer 49,20,2019-01-24 +session,1565,1,Safari 31,79,2019-02-07 +session,1565,2,Chrome 32,38,2018-08-11 +session,1565,3,Chrome 43,62,2018-10-07 +session,1565,4,Chrome 2,25,2018-06-19 +session,1565,5,Internet Explorer 45,37,2018-10-13 +session,1565,6,Firefox 14,67,2017-06-19 +user,1566,Katherine,Benito,16 +session,1566,0,Firefox 15,41,2016-11-03 +user,1567,Steven,Harrison,34 +session,1567,0,Internet Explorer 13,66,2017-03-02 +session,1567,1,Firefox 17,41,2018-07-26 +session,1567,2,Internet Explorer 25,92,2018-10-12 +session,1567,3,Safari 5,86,2018-09-28 +session,1567,4,Chrome 5,3,2016-07-21 +session,1567,5,Firefox 49,101,2018-10-02 +session,1567,6,Internet Explorer 45,92,2018-11-27 +user,1568,Ty,Ami,79 +session,1568,0,Safari 28,61,2018-04-26 +user,1569,Gregory,Wilson,86 +session,1569,0,Safari 11,2,2017-06-02 +session,1569,1,Internet Explorer 18,89,2018-10-26 +session,1569,2,Chrome 13,32,2017-03-22 +session,1569,3,Firefox 28,43,2018-10-04 +session,1569,4,Safari 6,47,2017-02-01 +session,1569,5,Internet Explorer 26,30,2019-01-28 +session,1569,6,Firefox 36,100,2017-12-20 +user,1570,Claudio,Kimberely,33 +session,1570,0,Safari 2,1,2017-02-10 +session,1570,1,Firefox 45,105,2016-07-10 +user,1571,Leana,Melania,47 +session,1571,0,Safari 24,8,2018-08-02 +session,1571,1,Firefox 41,115,2017-08-20 +session,1571,2,Firefox 43,94,2018-08-24 +session,1571,3,Internet Explorer 17,23,2016-12-18 +user,1572,Antonio,Catalina,32 +session,1572,0,Chrome 9,67,2018-04-05 +session,1572,1,Safari 17,96,2018-10-18 +session,1572,2,Firefox 42,1,2018-09-25 +session,1572,3,Safari 23,34,2017-05-12 +user,1573,Sid,Regan,27 +session,1573,0,Internet Explorer 41,0,2019-02-02 +session,1573,1,Chrome 4,100,2018-06-13 +session,1573,2,Firefox 41,117,2018-07-18 +session,1573,3,Chrome 2,51,2016-11-14 +session,1573,4,Safari 38,84,2019-01-03 +session,1573,5,Firefox 40,86,2018-05-01 +session,1573,6,Internet Explorer 7,75,2018-03-18 +session,1573,7,Firefox 32,46,2017-05-15 +user,1574,Ruben,Fallon,1 +session,1574,0,Safari 42,104,2017-08-20 +session,1574,1,Internet Explorer 33,74,2018-11-28 +session,1574,2,Safari 38,90,2018-11-13 +session,1574,3,Firefox 5,89,2018-10-22 +session,1574,4,Chrome 43,83,2018-02-11 +session,1574,5,Safari 39,76,2018-06-17 +session,1574,6,Chrome 16,109,2018-08-09 +session,1574,7,Firefox 14,119,2018-09-04 +session,1574,8,Chrome 38,56,2016-11-08 +session,1574,9,Safari 6,2,2016-08-28 +user,1575,Willard,Dessie,67 +session,1575,0,Firefox 30,72,2017-12-04 +session,1575,1,Internet Explorer 10,25,2017-01-04 +user,1576,Timothy,Lyn,95 +session,1576,0,Safari 34,77,2016-10-17 +session,1576,1,Internet Explorer 40,24,2018-01-23 +user,1577,Yanira,Charlena,56 +session,1577,0,Internet Explorer 7,36,2016-10-26 +user,1578,Meagan,Jack,14 +session,1578,0,Firefox 27,14,2016-08-27 +session,1578,1,Internet Explorer 24,28,2018-09-10 +session,1578,2,Firefox 44,96,2017-03-06 +session,1578,3,Chrome 28,22,2017-06-23 +session,1578,4,Internet Explorer 48,88,2017-12-06 +user,1579,Casey,Gaynelle,9 +session,1579,0,Chrome 19,65,2018-12-12 +session,1579,1,Firefox 45,29,2018-11-09 +session,1579,2,Chrome 49,3,2017-05-16 +session,1579,3,Chrome 7,71,2017-02-27 +session,1579,4,Firefox 37,118,2018-06-23 +user,1580,Maryjo,Zelda,44 +session,1580,0,Internet Explorer 12,34,2018-12-13 +session,1580,1,Safari 37,64,2018-02-04 +user,1581,Alphonso,Scotty,57 +session,1581,0,Internet Explorer 14,23,2016-08-10 +session,1581,1,Firefox 46,61,2019-01-04 +user,1582,Cliff,Tomi,28 +session,1582,0,Chrome 9,75,2018-06-24 +session,1582,1,Internet Explorer 32,59,2016-07-19 +session,1582,2,Firefox 15,10,2017-12-22 +session,1582,3,Internet Explorer 10,1,2016-06-25 +session,1582,4,Firefox 6,48,2018-09-07 +session,1582,5,Firefox 1,98,2017-01-14 +session,1582,6,Firefox 39,81,2018-10-02 +session,1582,7,Internet Explorer 50,82,2017-01-15 +session,1582,8,Firefox 2,37,2018-07-27 +user,1583,Jewel,Jessenia,83 +session,1583,0,Firefox 37,93,2018-04-27 +session,1583,1,Internet Explorer 27,3,2018-04-07 +session,1583,2,Firefox 1,44,2018-11-18 +session,1583,3,Chrome 12,12,2016-08-06 +session,1583,4,Firefox 22,14,2016-07-15 +session,1583,5,Firefox 1,106,2017-04-14 +session,1583,6,Internet Explorer 7,83,2016-08-26 +session,1583,7,Firefox 10,119,2017-05-03 +session,1583,8,Chrome 12,109,2019-01-15 +session,1583,9,Chrome 24,40,2018-11-10 +user,1584,Lucy,Maryam,61 +session,1584,0,Safari 29,76,2016-11-26 +session,1584,1,Safari 47,11,2017-02-26 +session,1584,2,Firefox 2,80,2017-02-10 +session,1584,3,Chrome 44,71,2018-07-12 +session,1584,4,Firefox 3,90,2017-04-16 +session,1584,5,Chrome 12,95,2016-06-16 +session,1584,6,Safari 1,62,2016-07-30 +session,1584,7,Firefox 5,33,2016-07-15 +session,1584,8,Internet Explorer 40,20,2017-12-10 +user,1585,Esperanza,Rosetta,55 +session,1585,0,Chrome 48,71,2018-07-20 +session,1585,1,Chrome 29,106,2018-12-19 +session,1585,2,Safari 22,108,2018-01-01 +session,1585,3,Safari 35,79,2018-09-16 +user,1586,Dora,Roxana,63 +session,1586,0,Safari 16,60,2016-06-22 +session,1586,1,Firefox 7,93,2016-07-15 +session,1586,2,Firefox 2,80,2016-06-21 +session,1586,3,Safari 13,95,2016-07-27 +session,1586,4,Internet Explorer 32,46,2017-09-08 +user,1587,Micheal,Carolyne,16 +session,1587,0,Safari 42,107,2018-09-27 +session,1587,1,Chrome 21,4,2018-02-16 +session,1587,2,Chrome 3,109,2016-07-31 +session,1587,3,Firefox 46,34,2018-06-13 +session,1587,4,Chrome 49,37,2018-08-06 +session,1587,5,Internet Explorer 5,107,2018-12-21 +session,1587,6,Firefox 6,114,2018-05-31 +session,1587,7,Safari 29,56,2017-03-20 +session,1587,8,Chrome 41,8,2016-08-26 +session,1587,9,Safari 28,2,2018-01-09 +user,1588,Theo,Osvaldo,9 +session,1588,0,Chrome 43,48,2018-03-30 +session,1588,1,Safari 17,43,2016-11-23 +session,1588,2,Firefox 42,69,2017-10-02 +session,1588,3,Safari 42,30,2018-01-15 +session,1588,4,Chrome 48,78,2017-07-21 +session,1588,5,Firefox 3,30,2016-06-11 +session,1588,6,Internet Explorer 45,75,2016-06-23 +session,1588,7,Chrome 17,4,2017-10-17 +user,1589,Terri,Aretha,18 +session,1589,0,Internet Explorer 32,101,2018-12-12 +session,1589,1,Chrome 39,101,2016-12-11 +session,1589,2,Safari 43,67,2017-04-02 +session,1589,3,Chrome 27,39,2017-06-06 +session,1589,4,Firefox 43,73,2018-03-17 +user,1590,Afton,Arminda,52 +session,1590,0,Safari 9,11,2017-09-09 +session,1590,1,Internet Explorer 22,26,2016-09-19 +session,1590,2,Firefox 32,6,2016-07-22 +session,1590,3,Internet Explorer 7,80,2018-10-11 +session,1590,4,Firefox 35,67,2017-03-31 +session,1590,5,Firefox 20,18,2016-11-12 +session,1590,6,Safari 7,79,2017-10-24 +session,1590,7,Chrome 22,8,2018-08-28 +session,1590,8,Safari 12,68,2018-01-05 +user,1591,Alexis,Broderick,92 +session,1591,0,Chrome 2,75,2017-03-31 +session,1591,1,Safari 23,25,2018-02-24 +session,1591,2,Chrome 2,17,2017-12-09 +session,1591,3,Safari 49,84,2016-11-04 +session,1591,4,Safari 22,71,2018-08-29 +session,1591,5,Safari 44,97,2018-03-14 +session,1591,6,Internet Explorer 33,72,2019-01-07 +session,1591,7,Firefox 40,103,2018-08-01 +session,1591,8,Safari 15,83,2016-10-08 +session,1591,9,Firefox 22,9,2017-02-08 +user,1592,Josh,Evelynn,6 +session,1592,0,Safari 50,70,2018-03-11 +session,1592,1,Internet Explorer 48,21,2018-03-28 +session,1592,2,Chrome 40,108,2018-11-18 +session,1592,3,Safari 1,21,2018-03-27 +session,1592,4,Firefox 22,95,2017-03-20 +session,1592,5,Firefox 38,71,2018-11-22 +session,1592,6,Chrome 21,113,2018-05-26 +session,1592,7,Internet Explorer 14,34,2016-06-09 +session,1592,8,Firefox 33,22,2017-02-07 +user,1593,Duane,Willene,8 +session,1593,0,Internet Explorer 27,101,2017-01-06 +session,1593,1,Internet Explorer 38,63,2018-05-16 +session,1593,2,Safari 1,38,2016-10-16 +session,1593,3,Firefox 8,50,2016-10-02 +session,1593,4,Internet Explorer 13,70,2018-01-21 +session,1593,5,Chrome 42,110,2016-10-02 +session,1593,6,Safari 34,5,2016-10-30 +session,1593,7,Firefox 43,104,2018-07-09 +session,1593,8,Safari 21,43,2016-06-18 +session,1593,9,Chrome 47,76,2017-03-13 +user,1594,Eusebio,Katheleen,40 +session,1594,0,Chrome 44,14,2017-04-20 +session,1594,1,Safari 24,87,2017-02-05 +session,1594,2,Chrome 36,99,2017-11-04 +user,1595,Vanita,Mendy,63 +session,1595,0,Firefox 18,1,2018-04-22 +session,1595,1,Firefox 46,113,2018-07-16 +session,1595,2,Firefox 42,26,2018-09-23 +session,1595,3,Safari 10,72,2018-08-09 +session,1595,4,Chrome 21,75,2017-02-24 +session,1595,5,Firefox 26,69,2018-06-21 +session,1595,6,Firefox 24,31,2018-07-31 +user,1596,Henrietta,Jonnie,77 +session,1596,0,Firefox 48,77,2017-03-23 +session,1596,1,Safari 22,48,2016-10-16 +session,1596,2,Firefox 48,48,2019-02-01 +session,1596,3,Firefox 3,113,2017-08-07 +session,1596,4,Internet Explorer 48,103,2018-01-02 +user,1597,Billie,Danika,19 +session,1597,0,Firefox 25,105,2018-12-03 +user,1598,Arnoldo,Ileen,70 +session,1598,0,Firefox 47,38,2019-02-12 +user,1599,Jonas,Loyce,16 +session,1599,0,Firefox 17,104,2017-11-30 +session,1599,1,Firefox 36,42,2018-08-12 +session,1599,2,Internet Explorer 15,102,2017-06-19 +session,1599,3,Firefox 47,59,2016-06-07 +session,1599,4,Chrome 48,80,2018-01-26 +session,1599,5,Firefox 48,71,2016-08-14 +session,1599,6,Safari 25,12,2016-06-04 +session,1599,7,Chrome 18,100,2018-12-05 +user,1600,Angelo,Delsie,31 +session,1600,0,Safari 50,118,2018-12-15 +session,1600,1,Firefox 31,108,2016-06-28 +session,1600,2,Safari 49,29,2016-10-11 +session,1600,3,Internet Explorer 19,114,2017-06-05 +session,1600,4,Internet Explorer 20,10,2017-01-21 +session,1600,5,Chrome 18,60,2018-09-02 +session,1600,6,Safari 2,111,2018-02-18 +session,1600,7,Firefox 17,112,2018-07-01 +session,1600,8,Internet Explorer 35,75,2016-08-06 +session,1600,9,Internet Explorer 10,100,2017-01-01 +user,1601,Logan,Kristopher,50 +session,1601,0,Chrome 50,62,2018-02-19 +session,1601,1,Firefox 39,53,2017-09-07 +session,1601,2,Firefox 3,32,2019-01-30 +user,1602,Andrew,Corrine,22 +session,1602,0,Safari 27,86,2018-03-07 +session,1602,1,Chrome 26,110,2017-11-20 +session,1602,2,Firefox 5,103,2018-09-05 +session,1602,3,Firefox 34,26,2017-09-03 +session,1602,4,Chrome 27,43,2016-10-28 +session,1602,5,Internet Explorer 7,56,2017-02-13 +session,1602,6,Internet Explorer 10,40,2019-02-11 +user,1603,Adrien,Tony,46 +session,1603,0,Safari 22,57,2018-01-22 +session,1603,1,Safari 27,4,2018-11-22 +session,1603,2,Internet Explorer 50,57,2018-02-25 +session,1603,3,Firefox 39,5,2018-10-08 +session,1603,4,Internet Explorer 44,113,2017-06-21 +user,1604,Wallace,Riva,14 +session,1604,0,Internet Explorer 31,52,2016-12-18 +session,1604,1,Safari 20,83,2017-03-02 +session,1604,2,Safari 33,76,2017-06-27 +session,1604,3,Internet Explorer 37,97,2017-09-19 +session,1604,4,Firefox 10,1,2018-05-31 +session,1604,5,Internet Explorer 5,8,2017-08-04 +session,1604,6,Chrome 4,102,2018-04-06 +session,1604,7,Chrome 41,46,2018-07-07 +session,1604,8,Internet Explorer 19,103,2018-04-17 +user,1605,Barbara,Bernetta,49 +session,1605,0,Internet Explorer 15,70,2017-11-22 +session,1605,1,Safari 32,77,2017-03-30 +session,1605,2,Safari 46,17,2016-10-22 +session,1605,3,Internet Explorer 12,119,2018-11-20 +user,1606,Wendell,Charlesetta,93 +session,1606,0,Chrome 28,87,2018-11-15 +session,1606,1,Firefox 26,85,2018-11-20 +session,1606,2,Safari 27,88,2018-09-14 +session,1606,3,Safari 39,64,2018-09-05 +session,1606,4,Safari 32,48,2016-08-26 +session,1606,5,Safari 43,119,2016-10-06 +session,1606,6,Safari 19,4,2018-03-18 +session,1606,7,Internet Explorer 8,41,2017-07-24 +session,1606,8,Safari 12,88,2018-11-28 +user,1607,Lorrie,Charissa,21 +session,1607,0,Internet Explorer 33,17,2018-07-30 +session,1607,1,Safari 18,51,2019-01-18 +session,1607,2,Firefox 3,76,2016-10-29 +session,1607,3,Firefox 13,94,2018-10-22 +session,1607,4,Firefox 22,25,2016-12-18 +session,1607,5,Internet Explorer 20,14,2017-04-07 +user,1608,Wilbur,Shay,61 +session,1608,0,Chrome 36,104,2016-07-22 +session,1608,1,Internet Explorer 7,58,2018-05-23 +session,1608,2,Internet Explorer 11,76,2019-02-12 +session,1608,3,Chrome 28,40,2017-02-10 +session,1608,4,Safari 35,40,2018-04-14 +session,1608,5,Internet Explorer 36,107,2019-01-20 +session,1608,6,Chrome 14,60,2017-02-25 +session,1608,7,Safari 50,98,2018-07-24 +user,1609,Shondra,Robbie,64 +session,1609,0,Chrome 20,107,2016-06-13 +session,1609,1,Internet Explorer 1,96,2017-02-17 +session,1609,2,Firefox 35,57,2016-12-16 +session,1609,3,Internet Explorer 6,62,2016-07-01 +session,1609,4,Internet Explorer 22,35,2017-01-14 +session,1609,5,Safari 11,34,2016-07-31 +session,1609,6,Chrome 12,42,2018-01-09 +session,1609,7,Firefox 50,59,2017-06-23 +session,1609,8,Safari 4,41,2016-07-20 +user,1610,Lamar,Bart,22 +session,1610,0,Internet Explorer 30,67,2018-02-01 +session,1610,1,Internet Explorer 5,105,2017-03-28 +session,1610,2,Firefox 21,5,2018-03-05 +session,1610,3,Safari 12,88,2017-10-31 +session,1610,4,Firefox 6,119,2017-08-10 +session,1610,5,Firefox 26,15,2019-02-07 +session,1610,6,Internet Explorer 43,78,2018-08-09 +session,1610,7,Safari 30,11,2018-08-31 +session,1610,8,Firefox 30,45,2017-04-17 +user,1611,Madelaine,Beverlee,75 +session,1611,0,Safari 34,104,2017-02-08 +session,1611,1,Firefox 7,11,2017-12-05 +session,1611,2,Safari 20,79,2018-11-22 +session,1611,3,Safari 1,114,2018-12-06 +session,1611,4,Chrome 45,108,2018-05-19 +session,1611,5,Internet Explorer 7,94,2018-01-09 +session,1611,6,Internet Explorer 3,47,2019-01-19 +session,1611,7,Firefox 32,108,2017-05-13 +user,1612,Donnie,Vernie,84 +session,1612,0,Internet Explorer 12,25,2017-08-31 +session,1612,1,Internet Explorer 18,15,2018-08-24 +user,1613,Christia,Viviana,13 +session,1613,0,Chrome 8,49,2017-07-21 +session,1613,1,Safari 33,70,2017-12-16 +session,1613,2,Internet Explorer 4,88,2016-10-05 +session,1613,3,Chrome 21,72,2018-11-13 +session,1613,4,Safari 32,0,2017-07-25 +user,1614,Ferdinand,Marinda,3 +session,1614,0,Chrome 24,55,2018-02-06 +session,1614,1,Safari 31,116,2016-10-28 +session,1614,2,Chrome 4,79,2016-07-20 +user,1615,Autumn,Nakia,7 +session,1615,0,Chrome 41,31,2016-10-20 +session,1615,1,Safari 15,52,2017-07-27 +session,1615,2,Safari 46,36,2017-08-04 +session,1615,3,Internet Explorer 9,26,2018-02-08 +user,1616,Werner,Thresa,96 +session,1616,0,Safari 12,110,2018-03-03 +user,1617,Dexter,Nicki,67 +session,1617,0,Chrome 8,116,2018-10-11 +session,1617,1,Internet Explorer 17,35,2018-09-26 +session,1617,2,Chrome 34,49,2018-05-08 +session,1617,3,Firefox 21,74,2018-12-10 +session,1617,4,Safari 38,87,2019-01-07 +session,1617,5,Chrome 31,40,2017-08-31 +session,1617,6,Chrome 5,58,2017-06-12 +user,1618,Desmond,Tomi,54 +session,1618,0,Safari 22,85,2016-11-16 +session,1618,1,Internet Explorer 6,47,2017-08-21 +session,1618,2,Safari 15,16,2017-06-29 +session,1618,3,Internet Explorer 16,44,2016-07-10 +session,1618,4,Internet Explorer 30,31,2018-11-21 +session,1618,5,Safari 15,28,2019-01-04 +user,1619,Oscar,Murray,69 +session,1619,0,Chrome 8,54,2018-07-29 +session,1619,1,Internet Explorer 50,28,2017-12-12 +session,1619,2,Chrome 50,16,2016-07-03 +user,1620,Edmundo,Lonnie,42 +session,1620,0,Chrome 12,86,2016-06-28 +session,1620,1,Safari 36,22,2016-08-31 +session,1620,2,Chrome 41,46,2016-09-28 +session,1620,3,Internet Explorer 35,71,2016-11-06 +session,1620,4,Firefox 13,96,2016-06-02 +user,1621,Myra,Augustina,81 +session,1621,0,Safari 39,47,2018-11-06 +session,1621,1,Firefox 26,87,2016-07-20 +session,1621,2,Firefox 21,32,2018-03-02 +session,1621,3,Firefox 46,63,2016-10-18 +session,1621,4,Chrome 8,107,2016-07-03 +session,1621,5,Chrome 6,85,2016-08-12 +session,1621,6,Chrome 28,105,2016-08-12 +session,1621,7,Internet Explorer 34,54,2017-01-28 +session,1621,8,Firefox 32,67,2019-01-29 +user,1622,Margart,Antonio,51 +session,1622,0,Safari 34,115,2017-09-16 +session,1622,1,Chrome 2,103,2016-10-13 +user,1623,Anette,Malinda,32 +session,1623,0,Chrome 17,77,2017-01-15 +session,1623,1,Firefox 3,4,2018-02-28 +session,1623,2,Firefox 39,61,2018-10-26 +session,1623,3,Internet Explorer 6,88,2017-12-23 +session,1623,4,Firefox 44,85,2017-05-26 +session,1623,5,Internet Explorer 35,98,2018-06-01 +session,1623,6,Firefox 41,23,2017-02-24 +session,1623,7,Safari 29,31,2016-11-14 +user,1624,Carlton,Shakita,5 +session,1624,0,Chrome 44,63,2016-11-21 +session,1624,1,Chrome 40,42,2017-07-12 +session,1624,2,Firefox 9,19,2017-04-12 +session,1624,3,Internet Explorer 14,89,2018-04-23 +session,1624,4,Internet Explorer 35,51,2016-06-13 +session,1624,5,Chrome 50,108,2018-09-04 +session,1624,6,Firefox 29,3,2018-04-10 +session,1624,7,Firefox 43,92,2018-05-30 +session,1624,8,Chrome 7,19,2017-09-15 +session,1624,9,Safari 39,118,2017-08-13 +user,1625,Jake,Hyacinth,47 +session,1625,0,Chrome 22,6,2017-10-09 +session,1625,1,Internet Explorer 37,20,2018-06-11 +session,1625,2,Firefox 10,19,2017-03-16 +session,1625,3,Internet Explorer 27,109,2016-12-06 +session,1625,4,Safari 50,14,2019-02-09 +session,1625,5,Chrome 38,20,2017-09-11 +session,1625,6,Firefox 22,45,2016-12-30 +session,1625,7,Internet Explorer 41,92,2016-11-02 +user,1626,Xuan,Ji,26 +session,1626,0,Firefox 46,52,2016-11-03 +session,1626,1,Chrome 28,99,2018-08-23 +session,1626,2,Chrome 17,30,2017-11-23 +session,1626,3,Internet Explorer 30,117,2016-06-13 +session,1626,4,Firefox 33,59,2017-01-03 +user,1627,Matthew,Kathryne,55 +session,1627,0,Safari 37,8,2017-09-27 +user,1628,Saul,Collette,62 +session,1628,0,Safari 34,39,2018-08-30 +session,1628,1,Firefox 36,21,2016-07-14 +session,1628,2,Chrome 12,57,2018-10-25 +session,1628,3,Safari 8,26,2017-06-03 +user,1629,Val,Zelma,42 +session,1629,0,Chrome 13,87,2018-06-12 +session,1629,1,Chrome 22,70,2018-04-08 +session,1629,2,Internet Explorer 28,84,2016-06-23 +user,1630,Harrison,Amparo,35 +session,1630,0,Safari 16,10,2018-06-04 +user,1631,Ladonna,Cassi,18 +session,1631,0,Firefox 1,114,2018-06-10 +session,1631,1,Internet Explorer 44,98,2018-10-06 +user,1632,Alden,Lakeesha,70 +session,1632,0,Internet Explorer 38,24,2017-09-09 +session,1632,1,Internet Explorer 4,34,2017-09-27 +user,1633,Lorilee,Marylee,32 +session,1633,0,Firefox 18,87,2017-05-02 +session,1633,1,Chrome 49,98,2018-12-13 +session,1633,2,Chrome 34,97,2017-09-14 +session,1633,3,Safari 46,42,2018-01-06 +session,1633,4,Internet Explorer 35,105,2019-02-07 +session,1633,5,Safari 10,16,2017-02-06 +session,1633,6,Firefox 31,72,2017-10-28 +user,1634,Willard,Dakota,57 +session,1634,0,Firefox 6,33,2017-09-15 +session,1634,1,Internet Explorer 26,114,2017-12-02 +session,1634,2,Firefox 29,7,2019-02-07 +session,1634,3,Chrome 19,66,2016-12-10 +session,1634,4,Firefox 36,42,2017-01-21 +session,1634,5,Safari 25,33,2018-11-19 +session,1634,6,Internet Explorer 47,14,2018-12-29 +session,1634,7,Safari 27,91,2018-07-14 +session,1634,8,Internet Explorer 31,55,2018-03-09 +user,1635,Jamal,Venita,57 +session,1635,0,Chrome 28,42,2018-12-18 +session,1635,1,Chrome 20,9,2017-11-27 +session,1635,2,Safari 18,86,2016-10-13 +user,1636,Katie,Leo,66 +session,1636,0,Internet Explorer 46,88,2016-11-05 +session,1636,1,Internet Explorer 45,90,2016-08-19 +session,1636,2,Safari 37,7,2016-12-05 +session,1636,3,Safari 28,103,2017-04-17 +user,1637,Sydney,Jonas,1 +session,1637,0,Firefox 46,18,2018-07-24 +user,1638,Vasiliki,Jonathon,64 +session,1638,0,Firefox 22,119,2016-05-25 +session,1638,1,Internet Explorer 48,118,2016-12-04 +user,1639,Jona,Wesley,40 +session,1639,0,Internet Explorer 9,89,2018-09-16 +session,1639,1,Safari 10,112,2017-07-18 +session,1639,2,Firefox 48,63,2018-04-06 +session,1639,3,Safari 32,110,2018-07-23 +session,1639,4,Firefox 5,60,2017-05-04 +session,1639,5,Safari 35,116,2016-10-30 +session,1639,6,Safari 7,64,2018-08-03 +session,1639,7,Firefox 15,48,2017-11-09 +session,1639,8,Safari 18,98,2016-08-05 +user,1640,Huong,Lamont,16 +session,1640,0,Internet Explorer 7,44,2017-02-13 +user,1641,Isaias,Nilsa,56 +session,1641,0,Internet Explorer 9,56,2018-01-05 +session,1641,1,Safari 20,94,2017-10-06 +user,1642,Kourtney,Ivonne,70 +session,1642,0,Internet Explorer 43,44,2019-01-13 +session,1642,1,Safari 38,87,2018-04-10 +session,1642,2,Firefox 16,41,2017-01-17 +session,1642,3,Firefox 40,65,2018-02-10 +session,1642,4,Safari 34,60,2016-07-17 +session,1642,5,Firefox 6,23,2016-10-05 +session,1642,6,Firefox 24,44,2017-10-08 +session,1642,7,Internet Explorer 40,6,2019-01-13 +session,1642,8,Safari 39,117,2016-10-22 +session,1642,9,Internet Explorer 38,20,2016-06-15 +user,1643,Dania,Gaylene,48 +session,1643,0,Internet Explorer 13,41,2018-12-03 +session,1643,1,Firefox 18,92,2018-08-10 +session,1643,2,Safari 28,85,2017-02-18 +session,1643,3,Chrome 47,76,2018-05-15 +session,1643,4,Chrome 25,38,2017-06-05 +user,1644,Hilario,Bailey,41 +session,1644,0,Firefox 36,40,2018-11-09 +session,1644,1,Chrome 38,116,2017-10-15 +session,1644,2,Chrome 28,14,2018-06-03 +session,1644,3,Firefox 38,14,2018-05-10 +user,1645,Kaycee,Nidia,8 +session,1645,0,Safari 18,8,2018-05-07 +session,1645,1,Chrome 41,117,2018-01-29 +session,1645,2,Chrome 50,25,2016-08-09 +session,1645,3,Internet Explorer 6,92,2017-07-02 +session,1645,4,Firefox 30,88,2017-04-06 +session,1645,5,Safari 41,20,2017-09-03 +session,1645,6,Internet Explorer 40,95,2019-02-10 +user,1646,Treva,Sandra,23 +session,1646,0,Safari 30,117,2018-06-05 +user,1647,Denny,Collin,20 +session,1647,0,Chrome 47,10,2019-01-13 +session,1647,1,Chrome 43,50,2018-03-07 +user,1648,Nicki,Ocie,81 +session,1648,0,Chrome 13,72,2019-01-04 +session,1648,1,Firefox 28,103,2018-08-11 +session,1648,2,Safari 19,11,2018-08-20 +session,1648,3,Chrome 17,58,2017-04-01 +session,1648,4,Safari 48,65,2018-12-08 +session,1648,5,Internet Explorer 17,66,2016-07-28 +session,1648,6,Internet Explorer 42,95,2018-01-07 +session,1648,7,Firefox 19,67,2017-09-14 +session,1648,8,Chrome 12,105,2016-12-19 +session,1648,9,Internet Explorer 5,48,2018-04-17 +user,1649,Marvin,Scot,97 +session,1649,0,Safari 41,98,2018-02-03 +session,1649,1,Firefox 19,34,2017-02-28 +session,1649,2,Safari 9,65,2018-06-08 +session,1649,3,Internet Explorer 8,97,2017-04-08 +session,1649,4,Firefox 32,37,2017-09-07 +session,1649,5,Internet Explorer 49,14,2018-06-14 +session,1649,6,Firefox 45,77,2016-11-17 +session,1649,7,Firefox 38,69,2017-08-18 +session,1649,8,Safari 10,68,2016-08-20 +user,1650,Freeman,Ryan,65 +session,1650,0,Safari 46,77,2018-01-20 +session,1650,1,Firefox 49,50,2018-08-16 +user,1651,Luciano,Francis,35 +session,1651,0,Chrome 10,63,2017-01-06 +session,1651,1,Safari 17,63,2018-09-12 +session,1651,2,Firefox 4,3,2018-12-10 +session,1651,3,Firefox 17,22,2017-01-16 +session,1651,4,Internet Explorer 29,87,2018-11-25 +session,1651,5,Chrome 19,19,2016-07-13 +session,1651,6,Safari 30,6,2017-12-21 +user,1652,Petrina,Adolfo,81 +session,1652,0,Safari 12,117,2017-05-23 +session,1652,1,Firefox 9,28,2017-06-09 +session,1652,2,Chrome 31,62,2018-05-19 +session,1652,3,Safari 25,115,2017-08-27 +session,1652,4,Internet Explorer 7,89,2016-08-22 +user,1653,Trudie,Jene,60 +session,1653,0,Firefox 35,43,2016-06-28 +session,1653,1,Chrome 3,45,2016-08-01 +user,1654,Tiffiny,Alberta,24 +session,1654,0,Safari 12,95,2018-12-11 +session,1654,1,Firefox 37,10,2019-01-08 +session,1654,2,Safari 29,56,2017-05-02 +session,1654,3,Safari 47,18,2016-11-05 +user,1655,Wynell,Maryanne,36 +session,1655,0,Internet Explorer 11,79,2018-04-18 +user,1656,Denis,Kim,55 +session,1656,0,Chrome 11,59,2016-07-18 +session,1656,1,Internet Explorer 49,37,2017-11-24 +session,1656,2,Internet Explorer 27,72,2017-03-08 +session,1656,3,Firefox 14,49,2017-12-07 +session,1656,4,Safari 6,73,2018-10-14 +user,1657,Benny,Mohammed,79 +session,1657,0,Firefox 4,101,2017-07-19 +session,1657,1,Safari 23,42,2016-11-06 +session,1657,2,Chrome 48,72,2018-08-08 +session,1657,3,Internet Explorer 44,46,2017-10-22 +session,1657,4,Chrome 18,8,2016-06-22 +session,1657,5,Firefox 31,107,2017-03-03 +session,1657,6,Chrome 6,70,2018-03-08 +user,1658,Lida,Dione,9 +session,1658,0,Safari 28,84,2018-01-21 +user,1659,Raymon,Lonnie,89 +session,1659,0,Chrome 29,113,2018-06-19 +session,1659,1,Firefox 20,111,2018-05-28 +session,1659,2,Firefox 5,91,2018-08-13 +session,1659,3,Internet Explorer 50,24,2016-11-07 +session,1659,4,Safari 24,25,2017-12-01 +user,1660,Guadalupe,Maira,93 +session,1660,0,Internet Explorer 40,14,2016-11-01 +session,1660,1,Firefox 43,13,2017-07-02 +session,1660,2,Internet Explorer 18,59,2016-12-21 +session,1660,3,Safari 1,54,2016-10-07 +session,1660,4,Safari 27,90,2017-01-30 +user,1661,Hiram,Daryl,48 +session,1661,0,Chrome 8,27,2016-11-11 +session,1661,1,Firefox 39,95,2016-09-17 +session,1661,2,Firefox 9,22,2016-06-02 +session,1661,3,Firefox 29,23,2017-08-30 +session,1661,4,Firefox 16,62,2018-03-24 +user,1662,Ute,Regine,4 +session,1662,0,Chrome 16,48,2016-11-17 +session,1662,1,Safari 3,37,2018-09-26 +session,1662,2,Internet Explorer 50,63,2018-05-23 +session,1662,3,Safari 50,19,2018-02-26 +user,1663,Dorine,Hui,85 +session,1663,0,Internet Explorer 30,27,2018-07-20 +session,1663,1,Safari 34,57,2017-07-31 +user,1664,Arron,Ethel,32 +session,1664,0,Safari 45,44,2017-07-24 +session,1664,1,Chrome 31,79,2018-08-24 +session,1664,2,Internet Explorer 10,90,2017-02-18 +session,1664,3,Internet Explorer 14,32,2017-09-24 +session,1664,4,Chrome 32,36,2017-02-17 +session,1664,5,Chrome 2,2,2017-01-13 +session,1664,6,Safari 12,16,2017-04-17 +session,1664,7,Safari 12,112,2016-08-11 +session,1664,8,Firefox 12,95,2017-01-26 +user,1665,Lucas,Mildred,5 +session,1665,0,Safari 14,104,2017-11-06 +session,1665,1,Firefox 22,37,2017-12-27 +session,1665,2,Firefox 10,109,2016-11-07 +user,1666,Malena,Jeromy,94 +session,1666,0,Chrome 39,95,2018-10-10 +session,1666,1,Safari 6,35,2018-07-27 +session,1666,2,Firefox 49,47,2017-09-05 +session,1666,3,Internet Explorer 5,85,2017-03-30 +session,1666,4,Chrome 44,112,2017-10-29 +session,1666,5,Internet Explorer 46,95,2017-07-16 +session,1666,6,Internet Explorer 31,53,2018-04-07 +session,1666,7,Chrome 39,110,2017-10-08 +user,1667,Coleman,Kristin,97 +session,1667,0,Internet Explorer 37,12,2017-06-10 +user,1668,Timmy,Jessika,99 +session,1668,0,Firefox 17,105,2016-06-06 +session,1668,1,Chrome 26,13,2018-03-14 +session,1668,2,Internet Explorer 15,92,2016-10-27 +user,1669,Danial,Theron,36 +session,1669,0,Safari 2,113,2017-03-13 +session,1669,1,Chrome 14,69,2017-05-17 +user,1670,Pilar,Gilma,30 +session,1670,0,Firefox 46,0,2018-08-08 +session,1670,1,Firefox 48,114,2018-06-03 +session,1670,2,Safari 35,88,2017-11-26 +session,1670,3,Internet Explorer 13,27,2018-03-08 +session,1670,4,Safari 45,119,2017-07-29 +session,1670,5,Firefox 43,38,2018-11-26 +session,1670,6,Firefox 23,66,2018-06-30 +session,1670,7,Safari 37,94,2017-06-08 +session,1670,8,Firefox 36,61,2016-12-19 +session,1670,9,Chrome 49,15,2017-07-28 +user,1671,Abby,Amalia,65 +session,1671,0,Firefox 12,56,2018-09-24 +session,1671,1,Internet Explorer 12,24,2018-10-04 +session,1671,2,Safari 8,43,2018-06-29 +session,1671,3,Chrome 18,15,2018-10-11 +session,1671,4,Firefox 12,10,2017-02-07 +session,1671,5,Chrome 12,46,2016-10-07 +session,1671,6,Chrome 19,76,2018-08-07 +session,1671,7,Firefox 47,35,2017-07-08 +user,1672,Kip,Felipe,4 +session,1672,0,Safari 35,18,2016-12-08 +session,1672,1,Safari 15,65,2018-09-26 +session,1672,2,Firefox 23,74,2017-12-05 +session,1672,3,Internet Explorer 5,93,2017-05-18 +session,1672,4,Safari 33,75,2018-08-02 +session,1672,5,Safari 35,66,2017-08-03 +user,1673,Ryan,Gregg,1 +session,1673,0,Firefox 10,71,2018-03-26 +user,1674,Masako,Ronald,29 +session,1674,0,Internet Explorer 6,113,2016-08-26 +session,1674,1,Internet Explorer 10,57,2016-10-17 +session,1674,2,Internet Explorer 32,9,2016-07-28 +session,1674,3,Internet Explorer 23,29,2017-07-11 +session,1674,4,Internet Explorer 23,44,2017-07-04 +session,1674,5,Firefox 5,116,2017-10-27 +user,1675,Graciela,Cherie,0 +session,1675,0,Chrome 14,75,2016-12-17 +session,1675,1,Firefox 6,19,2016-08-25 +session,1675,2,Internet Explorer 11,47,2016-08-27 +session,1675,3,Internet Explorer 26,100,2018-06-13 +session,1675,4,Chrome 11,61,2017-10-20 +session,1675,5,Internet Explorer 5,75,2016-06-17 +user,1676,Qiana,Rossana,72 +session,1676,0,Internet Explorer 15,21,2016-09-26 +session,1676,1,Safari 33,113,2018-10-11 +session,1676,2,Chrome 14,8,2017-12-31 +session,1676,3,Firefox 42,44,2018-05-14 +session,1676,4,Firefox 14,53,2018-01-10 +session,1676,5,Chrome 18,93,2017-10-04 +session,1676,6,Safari 46,74,2016-05-24 +session,1676,7,Internet Explorer 42,76,2017-02-02 +session,1676,8,Firefox 35,38,2017-05-25 +user,1677,Bryan,Andrea,69 +session,1677,0,Internet Explorer 7,26,2016-06-29 +session,1677,1,Safari 20,98,2017-03-14 +session,1677,2,Internet Explorer 42,108,2018-09-25 +session,1677,3,Chrome 45,34,2016-09-30 +session,1677,4,Internet Explorer 5,114,2018-08-18 +user,1678,Archie,Marylou,22 +session,1678,0,Chrome 34,40,2018-12-20 +session,1678,1,Chrome 27,100,2018-05-22 +session,1678,2,Internet Explorer 10,2,2017-03-07 +session,1678,3,Chrome 19,65,2016-08-30 +session,1678,4,Firefox 5,5,2018-11-26 +session,1678,5,Internet Explorer 34,22,2017-08-25 +session,1678,6,Firefox 8,97,2018-11-28 +session,1678,7,Safari 37,61,2018-10-24 +user,1679,Blake,Ron,82 +session,1679,0,Safari 22,9,2016-08-23 +session,1679,1,Internet Explorer 31,97,2017-07-08 +session,1679,2,Chrome 40,89,2017-05-14 +session,1679,3,Internet Explorer 28,103,2018-07-11 +session,1679,4,Chrome 13,45,2016-08-10 +session,1679,5,Safari 29,52,2018-05-29 +user,1680,Roselee,Christopher,10 +session,1680,0,Safari 29,88,2017-04-21 +session,1680,1,Firefox 21,1,2018-12-03 +session,1680,2,Chrome 20,96,2016-09-20 +session,1680,3,Safari 9,75,2016-07-19 +user,1681,Deanne,Betsey,55 +session,1681,0,Chrome 29,78,2017-07-21 +session,1681,1,Safari 43,81,2018-01-13 +session,1681,2,Firefox 45,9,2018-02-11 +user,1682,Alyse,Robbin,13 +session,1682,0,Internet Explorer 24,36,2018-08-29 +session,1682,1,Firefox 12,65,2017-02-09 +session,1682,2,Chrome 48,76,2017-08-29 +session,1682,3,Internet Explorer 1,24,2018-09-19 +session,1682,4,Internet Explorer 35,97,2016-06-07 +session,1682,5,Internet Explorer 36,1,2017-04-13 +session,1682,6,Firefox 38,36,2017-07-11 +session,1682,7,Safari 13,79,2018-02-12 +session,1682,8,Safari 31,113,2016-08-09 +session,1682,9,Firefox 13,93,2018-05-03 +user,1683,Marvel,Alisia,49 +session,1683,0,Internet Explorer 11,33,2018-09-01 +session,1683,1,Firefox 8,36,2017-12-28 +session,1683,2,Chrome 50,98,2017-08-29 +session,1683,3,Internet Explorer 40,110,2018-03-08 +session,1683,4,Chrome 8,71,2018-07-20 +session,1683,5,Safari 42,74,2017-01-20 +session,1683,6,Safari 21,40,2016-07-10 +session,1683,7,Firefox 25,85,2016-08-16 +session,1683,8,Firefox 17,0,2018-03-02 +user,1684,Raymond,Sherise,32 +session,1684,0,Chrome 13,52,2017-11-10 +session,1684,1,Safari 43,13,2017-01-01 +session,1684,2,Firefox 24,43,2018-06-05 +user,1685,Loralee,Man,73 +session,1685,0,Safari 6,35,2018-08-27 +session,1685,1,Firefox 40,85,2016-11-25 +session,1685,2,Safari 1,16,2018-02-17 +session,1685,3,Chrome 50,1,2016-09-17 +session,1685,4,Safari 4,6,2018-04-10 +session,1685,5,Safari 43,48,2018-05-20 +session,1685,6,Internet Explorer 50,107,2018-04-18 +session,1685,7,Firefox 42,60,2016-12-13 +session,1685,8,Safari 7,49,2018-08-10 +user,1686,Azalee,Therese,55 +session,1686,0,Internet Explorer 24,28,2018-03-05 +session,1686,1,Internet Explorer 2,71,2017-09-05 +session,1686,2,Firefox 44,51,2018-01-22 +session,1686,3,Chrome 11,52,2017-08-07 +user,1687,Bernardina,Dawna,66 +session,1687,0,Chrome 39,4,2018-08-20 +session,1687,1,Internet Explorer 21,96,2017-01-26 +user,1688,Brock,Micki,8 +session,1688,0,Safari 17,98,2018-03-30 +session,1688,1,Chrome 47,24,2017-04-11 +user,1689,Lovella,Garret,26 +session,1689,0,Firefox 24,62,2017-11-20 +session,1689,1,Chrome 26,107,2017-10-15 +session,1689,2,Chrome 14,28,2016-06-04 +session,1689,3,Safari 46,103,2017-05-24 +session,1689,4,Chrome 39,87,2017-04-08 +session,1689,5,Internet Explorer 29,57,2016-10-19 +session,1689,6,Chrome 20,50,2016-12-28 +session,1689,7,Chrome 4,0,2017-02-14 +user,1690,Sherly,Ellis,72 +session,1690,0,Safari 34,90,2017-06-08 +session,1690,1,Internet Explorer 17,101,2017-04-25 +session,1690,2,Firefox 49,27,2017-11-02 +user,1691,Rigoberto,Jess,82 +session,1691,0,Safari 50,79,2017-02-24 +session,1691,1,Internet Explorer 31,86,2018-07-13 +session,1691,2,Safari 30,11,2017-08-07 +session,1691,3,Chrome 41,5,2016-10-22 +session,1691,4,Internet Explorer 26,96,2016-10-11 +session,1691,5,Firefox 39,47,2018-07-27 +user,1692,Margarette,Tyree,49 +session,1692,0,Safari 35,17,2016-08-29 +session,1692,1,Internet Explorer 36,99,2016-05-22 +session,1692,2,Safari 7,67,2018-04-05 +session,1692,3,Firefox 32,104,2016-08-30 +session,1692,4,Internet Explorer 34,31,2017-02-16 +session,1692,5,Firefox 34,92,2016-11-28 +session,1692,6,Internet Explorer 42,103,2018-08-20 +session,1692,7,Chrome 15,91,2017-09-01 +session,1692,8,Internet Explorer 27,63,2017-10-26 +session,1692,9,Safari 48,12,2017-10-21 +user,1693,Bobby,Domonique,37 +session,1693,0,Chrome 7,38,2017-01-04 +session,1693,1,Firefox 15,5,2018-06-01 +session,1693,2,Internet Explorer 36,111,2018-10-09 +session,1693,3,Safari 9,12,2016-06-15 +session,1693,4,Internet Explorer 15,92,2017-05-01 +session,1693,5,Firefox 39,18,2018-09-11 +user,1694,Alec,Dion,29 +session,1694,0,Internet Explorer 27,100,2018-11-19 +session,1694,1,Chrome 11,46,2018-06-16 +session,1694,2,Internet Explorer 50,109,2018-12-31 +user,1695,Fabiola,Hester,95 +session,1695,0,Chrome 36,91,2017-03-26 +session,1695,1,Internet Explorer 18,49,2018-01-07 +session,1695,2,Internet Explorer 44,17,2017-10-09 +session,1695,3,Safari 22,100,2016-07-15 +session,1695,4,Safari 17,67,2018-05-23 +session,1695,5,Firefox 26,100,2019-02-12 +session,1695,6,Internet Explorer 42,101,2018-06-23 +session,1695,7,Safari 21,39,2017-12-19 +user,1696,Lamont,Roy,6 +session,1696,0,Firefox 4,117,2018-05-29 +session,1696,1,Internet Explorer 4,58,2017-06-08 +session,1696,2,Firefox 50,16,2018-08-07 +session,1696,3,Firefox 44,85,2019-01-16 +session,1696,4,Firefox 26,18,2018-10-15 +session,1696,5,Safari 22,110,2017-08-31 +user,1697,Stanton,Evangeline,83 +session,1697,0,Internet Explorer 27,61,2018-11-30 +session,1697,1,Internet Explorer 30,66,2018-01-18 +session,1697,2,Internet Explorer 21,0,2017-12-15 +session,1697,3,Internet Explorer 33,119,2016-05-20 +session,1697,4,Chrome 24,86,2016-10-26 +session,1697,5,Firefox 13,18,2018-10-13 +session,1697,6,Safari 48,15,2018-01-20 +session,1697,7,Internet Explorer 26,80,2017-09-01 +user,1698,Salvador,Suzann,89 +session,1698,0,Chrome 16,74,2018-12-27 +session,1698,1,Firefox 35,30,2017-07-13 +session,1698,2,Firefox 41,104,2018-01-13 +session,1698,3,Safari 44,68,2017-04-01 +session,1698,4,Internet Explorer 9,77,2018-09-13 +session,1698,5,Internet Explorer 12,39,2016-10-10 +session,1698,6,Firefox 8,32,2017-06-03 +session,1698,7,Internet Explorer 26,108,2018-03-08 +session,1698,8,Chrome 49,35,2017-05-17 +session,1698,9,Chrome 39,49,2016-08-18 +user,1699,Carmine,Marge,48 +session,1699,0,Chrome 31,1,2016-11-05 +session,1699,1,Firefox 21,59,2018-09-14 +session,1699,2,Internet Explorer 41,86,2017-11-03 +session,1699,3,Chrome 49,104,2018-06-10 +session,1699,4,Firefox 5,13,2017-09-27 +session,1699,5,Safari 49,60,2018-11-16 +session,1699,6,Chrome 25,114,2016-10-19 +session,1699,7,Chrome 21,92,2017-04-11 +session,1699,8,Firefox 10,46,2017-03-01 +session,1699,9,Internet Explorer 42,115,2016-06-09 +user,1700,Henry,Jeannine,48 +session,1700,0,Firefox 2,50,2017-02-26 +session,1700,1,Safari 33,43,2016-12-24 +session,1700,2,Internet Explorer 29,40,2017-10-04 +session,1700,3,Chrome 9,40,2016-05-25 +session,1700,4,Internet Explorer 15,112,2018-03-08 +session,1700,5,Firefox 23,3,2017-07-02 +session,1700,6,Internet Explorer 28,65,2017-03-19 +session,1700,7,Chrome 17,107,2018-01-06 +user,1701,Layne,Armandina,33 +session,1701,0,Firefox 44,102,2016-10-16 +session,1701,1,Firefox 19,69,2016-12-22 +session,1701,2,Safari 42,45,2018-11-11 +session,1701,3,Internet Explorer 50,83,2018-02-04 +session,1701,4,Firefox 18,67,2018-04-23 +session,1701,5,Firefox 25,88,2017-04-20 +session,1701,6,Internet Explorer 2,62,2018-09-21 +session,1701,7,Firefox 7,89,2017-02-05 +user,1702,Ellan,Anita,2 +session,1702,0,Chrome 37,12,2016-06-24 +session,1702,1,Firefox 37,58,2017-05-08 +session,1702,2,Chrome 43,99,2018-11-24 +session,1702,3,Chrome 34,42,2018-07-27 +session,1702,4,Safari 15,63,2016-09-21 +session,1702,5,Firefox 21,29,2018-12-07 +session,1702,6,Internet Explorer 46,52,2018-12-27 +session,1702,7,Chrome 27,108,2016-10-22 +user,1703,Bob,Shaun,63 +session,1703,0,Chrome 35,29,2017-04-01 +session,1703,1,Chrome 29,48,2017-03-29 +session,1703,2,Internet Explorer 33,101,2018-03-16 +session,1703,3,Internet Explorer 34,57,2018-02-10 +session,1703,4,Internet Explorer 31,113,2017-08-06 +session,1703,5,Firefox 47,118,2017-02-21 +user,1704,Brinda,Juanita,7 +session,1704,0,Firefox 25,18,2017-07-03 +session,1704,1,Internet Explorer 31,39,2017-01-19 +session,1704,2,Firefox 5,26,2016-12-27 +session,1704,3,Firefox 38,56,2017-12-03 +session,1704,4,Internet Explorer 19,70,2016-09-05 +session,1704,5,Safari 39,98,2018-06-26 +session,1704,6,Internet Explorer 32,92,2017-03-06 +user,1705,Earle,Pete,45 +session,1705,0,Safari 5,54,2018-08-07 +session,1705,1,Internet Explorer 2,81,2019-01-31 +user,1706,Gussie,Mei,47 +session,1706,0,Firefox 15,113,2017-07-10 +session,1706,1,Firefox 32,45,2017-06-30 +session,1706,2,Internet Explorer 39,0,2017-04-03 +user,1707,Chester,Haley,39 +session,1707,0,Internet Explorer 42,63,2018-01-02 +session,1707,1,Chrome 48,84,2017-06-22 +session,1707,2,Safari 44,44,2017-11-07 +user,1708,Sharda,Delila,5 +session,1708,0,Chrome 14,94,2016-07-21 +session,1708,1,Firefox 38,83,2016-06-26 +session,1708,2,Firefox 34,2,2018-12-02 +session,1708,3,Internet Explorer 26,108,2017-08-30 +session,1708,4,Safari 33,64,2016-09-29 +session,1708,5,Safari 17,36,2017-05-08 +session,1708,6,Chrome 37,70,2017-02-12 +session,1708,7,Firefox 30,80,2017-04-18 +session,1708,8,Safari 29,97,2017-01-15 +session,1708,9,Internet Explorer 2,33,2016-06-22 +user,1709,Eldridge,Treva,35 +session,1709,0,Firefox 30,96,2017-09-19 +user,1710,Dallas,Mary,54 +session,1710,0,Chrome 19,7,2016-12-18 +session,1710,1,Firefox 28,52,2018-04-09 +user,1711,Maximina,Zita,54 +session,1711,0,Internet Explorer 31,99,2018-09-03 +session,1711,1,Safari 38,68,2017-09-06 +session,1711,2,Chrome 33,44,2017-11-02 +user,1712,Florentino,Agustin,16 +session,1712,0,Safari 26,76,2017-08-30 +session,1712,1,Firefox 11,53,2017-02-06 +session,1712,2,Firefox 9,98,2017-07-26 +session,1712,3,Firefox 10,94,2017-05-26 +session,1712,4,Internet Explorer 8,108,2017-02-12 +session,1712,5,Firefox 36,38,2016-12-17 +user,1713,Sebastian,Samuel,49 +session,1713,0,Internet Explorer 20,1,2018-09-12 +session,1713,1,Safari 17,77,2018-02-14 +session,1713,2,Internet Explorer 35,118,2017-04-29 +session,1713,3,Safari 4,59,2017-07-22 +session,1713,4,Safari 38,117,2017-07-19 +session,1713,5,Firefox 22,54,2019-01-30 +session,1713,6,Firefox 11,105,2018-12-23 +user,1714,Gaylord,Chiquita,57 +session,1714,0,Safari 50,98,2018-11-05 +session,1714,1,Chrome 9,113,2017-02-01 +session,1714,2,Firefox 21,105,2016-06-09 +session,1714,3,Safari 34,87,2017-11-20 +session,1714,4,Internet Explorer 20,62,2016-06-26 +session,1714,5,Safari 11,11,2016-11-05 +session,1714,6,Chrome 49,95,2016-08-08 +session,1714,7,Firefox 2,117,2017-12-13 +session,1714,8,Safari 30,98,2016-10-29 +session,1714,9,Firefox 39,42,2017-08-08 +user,1715,Larraine,Vivien,19 +session,1715,0,Firefox 27,1,2019-01-31 +session,1715,1,Safari 11,95,2018-07-25 +session,1715,2,Safari 27,78,2016-09-09 +session,1715,3,Internet Explorer 36,94,2018-07-18 +session,1715,4,Safari 34,116,2018-12-31 +session,1715,5,Safari 38,27,2017-06-11 +session,1715,6,Firefox 21,15,2017-11-12 +session,1715,7,Firefox 49,11,2017-02-12 +session,1715,8,Firefox 10,110,2018-03-18 +user,1716,Adrian,Tawna,62 +session,1716,0,Chrome 11,96,2018-09-22 +session,1716,1,Firefox 12,37,2017-09-08 +session,1716,2,Safari 19,107,2016-08-30 +session,1716,3,Internet Explorer 22,9,2017-12-26 +session,1716,4,Chrome 25,12,2017-12-04 +user,1717,Napoleon,Alex,49 +session,1717,0,Safari 25,47,2017-12-13 +session,1717,1,Chrome 41,30,2016-09-11 +session,1717,2,Chrome 11,51,2016-12-29 +session,1717,3,Safari 11,117,2018-09-13 +session,1717,4,Firefox 12,38,2018-01-02 +session,1717,5,Chrome 6,35,2017-11-05 +user,1718,Robert,Azzie,17 +session,1718,0,Chrome 13,14,2018-08-14 +session,1718,1,Safari 12,114,2017-01-20 +session,1718,2,Firefox 19,61,2018-03-14 +session,1718,3,Safari 50,62,2016-09-11 +session,1718,4,Safari 48,24,2017-12-15 +session,1718,5,Chrome 45,29,2017-03-24 +session,1718,6,Safari 15,100,2016-06-10 +user,1719,Misha,Letha,78 +session,1719,0,Internet Explorer 13,86,2018-08-30 +session,1719,1,Firefox 41,41,2018-12-08 +session,1719,2,Internet Explorer 38,85,2016-12-19 +session,1719,3,Chrome 24,53,2017-10-31 +session,1719,4,Internet Explorer 48,68,2017-12-07 +user,1720,Cordell,Maire,40 +session,1720,0,Chrome 23,50,2018-01-31 +user,1721,Miles,Everette,94 +session,1721,0,Safari 18,16,2019-01-21 +session,1721,1,Firefox 30,22,2018-09-20 +user,1722,Joaquin,Merideth,67 +session,1722,0,Firefox 3,117,2018-02-24 +session,1722,1,Chrome 30,92,2017-05-02 +session,1722,2,Firefox 45,87,2017-05-03 +session,1722,3,Safari 30,45,2017-08-28 +session,1722,4,Safari 39,109,2016-07-29 +session,1722,5,Chrome 3,36,2017-09-01 +session,1722,6,Chrome 1,112,2016-09-08 +session,1722,7,Safari 35,30,2016-06-24 +session,1722,8,Internet Explorer 1,35,2018-11-06 +session,1722,9,Firefox 9,63,2018-01-26 +user,1723,Thaddeus,Carroll,17 +session,1723,0,Chrome 17,119,2017-02-15 +session,1723,1,Chrome 39,98,2018-10-24 +session,1723,2,Chrome 37,80,2017-02-21 +session,1723,3,Internet Explorer 22,78,2017-11-17 +session,1723,4,Chrome 12,77,2019-01-23 +session,1723,5,Chrome 18,1,2017-08-23 +session,1723,6,Chrome 10,20,2017-02-13 +user,1724,Elvira,Thi,82 +session,1724,0,Chrome 38,33,2017-01-28 +session,1724,1,Chrome 2,11,2017-03-11 +session,1724,2,Firefox 5,8,2018-10-22 +user,1725,Lasonya,Karyn,45 +session,1725,0,Internet Explorer 50,12,2017-07-07 +session,1725,1,Firefox 33,74,2017-12-16 +session,1725,2,Safari 20,84,2017-04-15 +session,1725,3,Internet Explorer 41,59,2018-10-06 +session,1725,4,Safari 41,117,2017-09-17 +session,1725,5,Safari 33,56,2017-02-15 +session,1725,6,Internet Explorer 44,77,2018-02-10 +user,1726,Synthia,Deanne,5 +session,1726,0,Chrome 43,80,2018-05-24 +session,1726,1,Internet Explorer 19,105,2017-12-23 +session,1726,2,Internet Explorer 15,118,2018-05-23 +user,1727,Duncan,Terra,63 +session,1727,0,Chrome 5,23,2018-06-03 +session,1727,1,Chrome 46,23,2018-09-25 +session,1727,2,Internet Explorer 17,40,2018-06-01 +session,1727,3,Internet Explorer 40,110,2016-12-20 +session,1727,4,Internet Explorer 11,68,2017-04-11 +session,1727,5,Internet Explorer 16,68,2018-09-24 +session,1727,6,Firefox 44,104,2016-12-14 +session,1727,7,Safari 11,43,2017-12-06 +user,1728,Norman,Terence,93 +session,1728,0,Safari 50,65,2017-01-31 +session,1728,1,Firefox 14,10,2016-07-31 +session,1728,2,Chrome 8,57,2016-11-14 +session,1728,3,Safari 45,55,2018-06-16 +session,1728,4,Firefox 8,63,2017-04-19 +session,1728,5,Internet Explorer 5,31,2017-03-12 +session,1728,6,Safari 32,57,2018-07-24 +session,1728,7,Firefox 6,71,2018-01-27 +user,1729,Lincoln,Monte,15 +session,1729,0,Firefox 39,29,2017-04-15 +user,1730,Ali,Laverne,76 +session,1730,0,Internet Explorer 7,97,2016-11-19 +session,1730,1,Internet Explorer 31,58,2017-02-08 +session,1730,2,Safari 3,84,2018-04-15 +session,1730,3,Internet Explorer 4,12,2016-10-21 +session,1730,4,Chrome 27,40,2017-08-23 +session,1730,5,Safari 39,44,2018-09-09 +session,1730,6,Firefox 7,27,2018-07-11 +session,1730,7,Chrome 32,86,2017-11-19 +user,1731,Derick,Cheree,72 +session,1731,0,Internet Explorer 38,30,2016-06-18 +session,1731,1,Safari 22,96,2017-04-19 +session,1731,2,Firefox 41,92,2017-02-03 +session,1731,3,Safari 12,37,2018-02-15 +session,1731,4,Firefox 32,67,2016-10-23 +session,1731,5,Chrome 1,78,2018-10-16 +session,1731,6,Internet Explorer 24,100,2019-01-10 +user,1732,Trey,Donnie,12 +session,1732,0,Chrome 30,110,2017-12-14 +session,1732,1,Safari 37,13,2018-12-30 +session,1732,2,Chrome 22,73,2017-01-12 +session,1732,3,Safari 3,77,2018-09-06 +session,1732,4,Firefox 39,109,2016-12-10 +session,1732,5,Internet Explorer 26,18,2016-08-18 +session,1732,6,Safari 17,109,2018-01-26 +user,1733,Cole,Darin,96 +session,1733,0,Chrome 7,45,2016-10-07 +session,1733,1,Internet Explorer 27,43,2017-02-07 +session,1733,2,Firefox 37,14,2016-12-18 +session,1733,3,Safari 21,70,2018-10-08 +session,1733,4,Chrome 5,28,2017-09-09 +user,1734,Adrian,Isaura,99 +session,1734,0,Chrome 11,41,2018-02-18 +session,1734,1,Safari 15,116,2018-09-28 +session,1734,2,Firefox 12,8,2018-10-22 +session,1734,3,Safari 34,58,2018-06-01 +session,1734,4,Internet Explorer 50,25,2018-09-23 +session,1734,5,Safari 44,4,2018-12-22 +user,1735,Neil,Fidel,86 +session,1735,0,Chrome 45,91,2018-06-02 +session,1735,1,Safari 18,38,2017-10-24 +session,1735,2,Internet Explorer 9,15,2018-11-01 +user,1736,Marcellus,Merle,96 +session,1736,0,Firefox 9,98,2018-02-22 +session,1736,1,Internet Explorer 12,34,2017-01-13 +session,1736,2,Internet Explorer 1,72,2016-10-22 +session,1736,3,Internet Explorer 42,31,2018-08-09 +session,1736,4,Safari 3,74,2016-08-29 +session,1736,5,Firefox 42,14,2018-05-27 +session,1736,6,Firefox 39,21,2018-10-25 +session,1736,7,Internet Explorer 4,95,2017-06-16 +user,1737,Carmine,Camila,6 +session,1737,0,Internet Explorer 2,99,2018-03-13 +session,1737,1,Chrome 8,4,2016-11-25 +session,1737,2,Firefox 28,49,2017-04-10 +session,1737,3,Internet Explorer 31,111,2017-11-12 +user,1738,Romelia,Demetrius,97 +session,1738,0,Internet Explorer 47,96,2017-01-31 +session,1738,1,Chrome 9,15,2018-07-30 +user,1739,Brandon,Bo,96 +session,1739,0,Chrome 17,114,2016-06-13 +user,1740,Herbert,Darcey,89 +session,1740,0,Internet Explorer 31,97,2017-11-07 +session,1740,1,Internet Explorer 11,31,2017-10-28 +session,1740,2,Safari 36,69,2018-05-14 +session,1740,3,Chrome 33,86,2018-11-22 +session,1740,4,Safari 33,71,2016-09-14 +session,1740,5,Firefox 41,20,2016-07-07 +session,1740,6,Firefox 43,105,2016-09-04 +session,1740,7,Internet Explorer 12,28,2016-07-28 +session,1740,8,Safari 6,55,2016-12-11 +user,1741,Val,Genoveva,88 +session,1741,0,Chrome 2,16,2017-01-21 +session,1741,1,Firefox 32,3,2017-05-14 +session,1741,2,Firefox 45,67,2017-12-04 +session,1741,3,Internet Explorer 15,23,2017-11-08 +user,1742,Courtney,Paul,51 +session,1742,0,Internet Explorer 12,53,2017-04-14 +session,1742,1,Safari 29,108,2017-03-10 +session,1742,2,Safari 41,97,2018-02-18 +session,1742,3,Chrome 29,36,2018-12-16 +session,1742,4,Chrome 22,99,2017-09-24 +session,1742,5,Firefox 12,45,2017-05-22 +user,1743,Isa,Makeda,24 +session,1743,0,Internet Explorer 33,0,2018-09-16 +session,1743,1,Internet Explorer 49,54,2018-05-05 +session,1743,2,Internet Explorer 28,85,2018-04-23 +session,1743,3,Safari 32,70,2017-02-22 +session,1743,4,Safari 12,100,2017-02-26 +session,1743,5,Safari 44,65,2016-11-22 +session,1743,6,Chrome 26,100,2018-07-23 +session,1743,7,Firefox 50,102,2016-07-05 +session,1743,8,Internet Explorer 14,85,2017-07-29 +user,1744,Jame,Claris,91 +session,1744,0,Firefox 33,74,2018-05-09 +session,1744,1,Internet Explorer 27,60,2016-11-10 +session,1744,2,Safari 15,96,2017-08-20 +session,1744,3,Chrome 42,45,2019-01-19 +session,1744,4,Chrome 2,50,2017-04-20 +user,1745,Jessia,Mikki,31 +session,1745,0,Firefox 40,19,2018-10-02 +session,1745,1,Safari 30,69,2017-12-05 +session,1745,2,Internet Explorer 18,61,2016-08-01 +session,1745,3,Safari 6,16,2017-11-16 +user,1746,Katharina,Darleen,70 +session,1746,0,Safari 24,31,2018-03-22 +session,1746,1,Firefox 50,1,2017-09-17 +session,1746,2,Safari 3,30,2018-10-21 +session,1746,3,Firefox 21,12,2019-01-23 +session,1746,4,Firefox 50,77,2018-12-16 +session,1746,5,Chrome 26,102,2018-11-11 +session,1746,6,Firefox 34,61,2018-05-19 +session,1746,7,Internet Explorer 25,10,2018-11-24 +session,1746,8,Internet Explorer 35,70,2017-04-08 +user,1747,Breana,Shannan,12 +session,1747,0,Internet Explorer 13,117,2016-12-25 +session,1747,1,Firefox 10,84,2018-01-23 +user,1748,Vina,Domonique,45 +session,1748,0,Firefox 34,16,2018-11-05 +user,1749,Jere,Flor,66 +session,1749,0,Safari 34,51,2018-03-13 +session,1749,1,Firefox 3,18,2018-12-01 +session,1749,2,Safari 45,65,2018-08-22 +session,1749,3,Safari 30,69,2016-09-04 +user,1750,Nora,Kyle,83 +session,1750,0,Safari 35,69,2016-09-08 +session,1750,1,Internet Explorer 6,49,2016-09-17 +user,1751,Petra,Renda,49 +session,1751,0,Internet Explorer 6,15,2018-03-14 +session,1751,1,Chrome 15,28,2018-11-23 +session,1751,2,Safari 46,71,2018-11-28 +session,1751,3,Chrome 37,1,2017-01-14 +session,1751,4,Internet Explorer 29,36,2017-11-18 +user,1752,Renate,Edwin,13 +session,1752,0,Firefox 10,68,2018-09-15 +session,1752,1,Chrome 38,54,2018-10-03 +session,1752,2,Safari 2,43,2019-02-10 +session,1752,3,Firefox 11,59,2017-09-06 +session,1752,4,Firefox 36,101,2016-08-19 +session,1752,5,Firefox 28,11,2017-11-14 +session,1752,6,Safari 1,9,2017-03-15 +user,1753,Samual,Althea,86 +session,1753,0,Safari 32,29,2017-04-10 +session,1753,1,Internet Explorer 13,46,2018-01-10 +session,1753,2,Firefox 47,116,2016-11-02 +session,1753,3,Internet Explorer 24,0,2017-09-26 +session,1753,4,Chrome 28,92,2016-07-10 +session,1753,5,Internet Explorer 19,83,2016-06-05 +session,1753,6,Safari 22,72,2017-12-05 +user,1754,Shelby,Olene,6 +session,1754,0,Internet Explorer 34,1,2016-12-03 +session,1754,1,Safari 8,57,2016-06-17 +session,1754,2,Safari 37,39,2017-08-22 +session,1754,3,Chrome 7,68,2018-10-04 +session,1754,4,Internet Explorer 23,68,2017-03-02 +user,1755,Margarito,Clemencia,5 +session,1755,0,Chrome 26,114,2016-07-23 +session,1755,1,Internet Explorer 35,2,2017-08-17 +session,1755,2,Firefox 35,44,2016-08-18 +session,1755,3,Safari 35,58,2017-09-12 +session,1755,4,Internet Explorer 48,97,2018-10-27 +session,1755,5,Firefox 16,107,2018-06-17 +user,1756,Millard,Sabra,74 +session,1756,0,Chrome 34,83,2017-12-12 +session,1756,1,Safari 30,22,2016-09-28 +session,1756,2,Chrome 43,95,2016-11-09 +session,1756,3,Chrome 35,25,2018-06-07 +session,1756,4,Firefox 32,72,2016-12-08 +session,1756,5,Chrome 12,92,2017-02-24 +session,1756,6,Internet Explorer 43,6,2018-02-24 +session,1756,7,Firefox 35,41,2019-01-18 +user,1757,Kasey,Glenna,60 +session,1757,0,Safari 31,45,2016-10-20 +session,1757,1,Chrome 14,1,2016-08-12 +session,1757,2,Chrome 47,80,2018-09-04 +session,1757,3,Safari 1,110,2018-07-12 +session,1757,4,Internet Explorer 45,95,2017-11-28 +session,1757,5,Internet Explorer 50,38,2018-01-02 +session,1757,6,Chrome 27,105,2017-06-07 +session,1757,7,Internet Explorer 21,11,2017-09-19 +session,1757,8,Chrome 6,76,2016-05-29 +session,1757,9,Safari 45,30,2017-07-01 +user,1758,Misty,Estelle,42 +session,1758,0,Internet Explorer 19,85,2018-02-25 +session,1758,1,Internet Explorer 12,16,2018-08-08 +session,1758,2,Chrome 10,51,2016-07-18 +session,1758,3,Safari 44,113,2017-06-25 +session,1758,4,Firefox 29,10,2017-08-02 +session,1758,5,Chrome 18,107,2016-08-17 +session,1758,6,Internet Explorer 38,18,2017-05-10 +user,1759,Sharen,Lesley,62 +session,1759,0,Internet Explorer 17,69,2016-12-04 +session,1759,1,Firefox 45,78,2018-08-19 +session,1759,2,Chrome 3,103,2018-07-13 +session,1759,3,Internet Explorer 19,64,2018-11-13 +session,1759,4,Firefox 29,26,2017-11-18 +session,1759,5,Safari 8,9,2017-12-16 +session,1759,6,Firefox 43,87,2016-12-30 +session,1759,7,Chrome 33,74,2017-03-13 +user,1760,January,Emelia,25 +session,1760,0,Chrome 3,34,2017-07-17 +session,1760,1,Safari 1,72,2017-12-25 +session,1760,2,Chrome 12,23,2016-12-06 +session,1760,3,Internet Explorer 33,49,2017-07-24 +user,1761,Bret,Carlita,49 +session,1761,0,Firefox 9,40,2016-08-22 +user,1762,Clifford,Reginald,42 +session,1762,0,Safari 38,5,2016-11-05 +session,1762,1,Chrome 13,52,2018-08-05 +session,1762,2,Firefox 12,39,2018-05-09 +session,1762,3,Safari 39,37,2017-11-06 +session,1762,4,Internet Explorer 46,36,2018-11-03 +user,1763,Bradley,Quyen,3 +session,1763,0,Safari 19,61,2018-04-07 +session,1763,1,Firefox 39,37,2018-12-23 +session,1763,2,Firefox 21,74,2018-07-15 +session,1763,3,Firefox 18,115,2017-02-15 +session,1763,4,Safari 15,31,2017-10-17 +session,1763,5,Internet Explorer 41,93,2018-03-30 +session,1763,6,Firefox 37,90,2018-12-28 +session,1763,7,Chrome 43,112,2017-12-25 +user,1764,Wes,Tammy,81 +session,1764,0,Firefox 22,91,2016-11-24 +session,1764,1,Internet Explorer 48,45,2016-12-22 +session,1764,2,Safari 41,53,2017-11-20 +session,1764,3,Chrome 21,87,2018-05-19 +session,1764,4,Firefox 24,71,2018-07-05 +session,1764,5,Internet Explorer 12,48,2018-05-21 +user,1765,Verline,Alisia,75 +session,1765,0,Firefox 48,47,2018-12-04 +session,1765,1,Chrome 21,54,2018-06-05 +session,1765,2,Safari 7,76,2018-06-14 +session,1765,3,Firefox 32,118,2017-06-09 +session,1765,4,Internet Explorer 20,103,2016-12-30 +user,1766,Joni,Josette,87 +session,1766,0,Chrome 44,46,2017-04-01 +session,1766,1,Safari 23,23,2017-04-13 +session,1766,2,Internet Explorer 33,83,2019-02-03 +session,1766,3,Firefox 10,19,2016-12-04 +session,1766,4,Firefox 36,116,2016-10-20 +session,1766,5,Chrome 48,64,2018-04-27 +session,1766,6,Internet Explorer 26,56,2017-10-25 +user,1767,Bess,Alana,47 +session,1767,0,Chrome 21,93,2017-02-10 +user,1768,Alan,Vinnie,12 +session,1768,0,Firefox 18,58,2018-03-30 +session,1768,1,Chrome 5,114,2016-09-03 +session,1768,2,Firefox 10,18,2017-06-19 +session,1768,3,Firefox 39,95,2018-03-11 +session,1768,4,Chrome 46,58,2018-03-24 +user,1769,Chang,Yanira,42 +session,1769,0,Chrome 45,25,2018-05-15 +session,1769,1,Chrome 23,7,2016-08-03 +user,1770,Stuart,Ula,50 +session,1770,0,Firefox 5,69,2016-06-11 +user,1771,Will,Maryln,20 +session,1771,0,Chrome 45,45,2017-03-03 +session,1771,1,Safari 48,52,2018-11-05 +user,1772,Juliana,Margery,35 +session,1772,0,Chrome 41,32,2017-08-24 +session,1772,1,Firefox 3,49,2018-08-17 +session,1772,2,Safari 38,70,2016-08-31 +session,1772,3,Internet Explorer 50,40,2016-08-18 +session,1772,4,Safari 40,56,2017-04-19 +session,1772,5,Chrome 39,96,2017-05-05 +user,1773,Agripina,Kelsie,12 +session,1773,0,Firefox 7,9,2016-06-18 +session,1773,1,Internet Explorer 47,68,2018-06-29 +session,1773,2,Safari 37,78,2018-03-21 +session,1773,3,Safari 37,65,2017-08-15 +session,1773,4,Chrome 49,104,2016-07-19 +session,1773,5,Firefox 23,14,2018-08-23 +session,1773,6,Internet Explorer 26,40,2018-07-21 +session,1773,7,Chrome 13,92,2018-06-23 +session,1773,8,Safari 12,25,2017-10-26 +user,1774,Myrna,Maple,80 +session,1774,0,Safari 42,99,2017-03-23 +session,1774,1,Firefox 49,37,2016-12-04 +session,1774,2,Internet Explorer 14,22,2018-05-16 +session,1774,3,Chrome 22,7,2018-09-01 +session,1774,4,Safari 35,27,2018-01-04 +user,1775,Hilde,Bill,74 +session,1775,0,Chrome 6,33,2018-05-21 +session,1775,1,Safari 38,21,2017-04-11 +session,1775,2,Chrome 42,68,2017-06-12 +session,1775,3,Firefox 47,53,2017-11-19 +session,1775,4,Chrome 40,79,2017-03-07 +session,1775,5,Internet Explorer 50,28,2017-10-23 +session,1775,6,Firefox 25,71,2016-11-09 +session,1775,7,Safari 6,31,2017-07-05 +session,1775,8,Chrome 12,30,2016-10-08 +session,1775,9,Safari 24,58,2017-07-03 +user,1776,Tricia,Tasia,89 +session,1776,0,Firefox 30,74,2017-03-08 +session,1776,1,Internet Explorer 43,74,2017-03-20 +session,1776,2,Safari 36,102,2017-04-23 +session,1776,3,Safari 29,2,2017-09-05 +session,1776,4,Firefox 24,21,2018-04-12 +session,1776,5,Internet Explorer 19,69,2018-10-28 +session,1776,6,Chrome 26,56,2016-05-19 +session,1776,7,Internet Explorer 10,115,2018-01-03 +session,1776,8,Firefox 10,1,2017-05-05 +user,1777,Fleta,Phoebe,77 +session,1777,0,Safari 5,79,2017-02-28 +session,1777,1,Chrome 34,7,2017-04-14 +session,1777,2,Internet Explorer 13,28,2019-01-29 +session,1777,3,Internet Explorer 1,23,2016-06-03 +session,1777,4,Firefox 13,66,2016-09-25 +user,1778,Janise,Joellen,39 +session,1778,0,Chrome 38,88,2018-12-01 +session,1778,1,Chrome 45,90,2017-03-04 +session,1778,2,Safari 30,60,2016-08-04 +session,1778,3,Internet Explorer 38,30,2018-06-11 +session,1778,4,Internet Explorer 27,47,2018-04-25 +user,1779,Winfred,Donnell,40 +session,1779,0,Firefox 9,116,2018-11-04 +session,1779,1,Firefox 28,91,2017-04-29 +session,1779,2,Firefox 22,114,2017-07-26 +session,1779,3,Firefox 11,46,2016-11-12 +session,1779,4,Chrome 35,16,2018-12-10 +session,1779,5,Internet Explorer 21,105,2017-07-30 +session,1779,6,Internet Explorer 49,51,2018-05-30 +session,1779,7,Internet Explorer 18,87,2017-04-28 +session,1779,8,Internet Explorer 25,35,2019-01-29 +user,1780,Keven,Sharice,31 +session,1780,0,Internet Explorer 44,36,2017-04-25 +session,1780,1,Firefox 3,62,2018-11-11 +session,1780,2,Firefox 11,56,2018-10-22 +session,1780,3,Safari 48,21,2017-08-17 +session,1780,4,Safari 23,69,2018-09-10 +session,1780,5,Safari 47,112,2017-05-22 +user,1781,Florance,Lasandra,77 +session,1781,0,Chrome 23,53,2018-06-07 +session,1781,1,Firefox 24,91,2018-08-20 +session,1781,2,Safari 39,105,2017-12-19 +user,1782,Merle,Reinaldo,22 +session,1782,0,Safari 15,23,2017-04-22 +session,1782,1,Chrome 29,40,2017-10-04 +session,1782,2,Safari 15,70,2016-07-20 +session,1782,3,Internet Explorer 27,112,2017-09-29 +session,1782,4,Internet Explorer 36,68,2017-04-22 +session,1782,5,Chrome 26,62,2017-10-10 +session,1782,6,Chrome 12,74,2017-01-06 +session,1782,7,Safari 46,2,2018-05-06 +session,1782,8,Internet Explorer 50,80,2018-04-16 +user,1783,Latarsha,Chloe,32 +session,1783,0,Chrome 25,30,2018-08-28 +session,1783,1,Internet Explorer 50,103,2017-05-19 +session,1783,2,Firefox 29,17,2018-09-25 +session,1783,3,Internet Explorer 11,93,2017-11-25 +session,1783,4,Safari 33,90,2018-09-23 +session,1783,5,Safari 9,117,2016-08-03 +user,1784,Curt,Tonda,49 +session,1784,0,Chrome 22,93,2017-10-30 +session,1784,1,Safari 39,4,2018-01-25 +session,1784,2,Chrome 28,12,2018-05-24 +session,1784,3,Firefox 29,7,2018-01-30 +session,1784,4,Internet Explorer 42,112,2016-08-31 +session,1784,5,Safari 21,77,2018-02-13 +session,1784,6,Safari 6,27,2017-12-31 +session,1784,7,Internet Explorer 48,117,2017-08-26 +session,1784,8,Chrome 9,45,2018-09-15 +user,1785,Arnette,Russ,25 +session,1785,0,Chrome 11,99,2016-07-07 +session,1785,1,Safari 19,11,2017-06-11 +session,1785,2,Firefox 30,53,2018-10-18 +session,1785,3,Firefox 10,56,2018-04-14 +session,1785,4,Internet Explorer 37,40,2016-06-30 +session,1785,5,Internet Explorer 27,107,2018-08-24 +session,1785,6,Firefox 47,110,2017-11-26 +session,1785,7,Internet Explorer 39,45,2017-01-08 +session,1785,8,Safari 48,74,2018-10-03 +user,1786,Olympia,Marion,85 +session,1786,0,Chrome 44,105,2016-10-27 +session,1786,1,Internet Explorer 27,95,2017-01-04 +session,1786,2,Internet Explorer 26,40,2019-01-30 +session,1786,3,Chrome 39,17,2017-05-30 +session,1786,4,Chrome 25,83,2018-09-16 +session,1786,5,Chrome 10,85,2018-08-07 +session,1786,6,Firefox 42,12,2016-05-27 +user,1787,Margaret,Lasonya,99 +session,1787,0,Chrome 25,61,2016-08-17 +session,1787,1,Safari 24,97,2017-06-01 +session,1787,2,Internet Explorer 12,70,2016-12-29 +session,1787,3,Safari 16,11,2018-05-08 +session,1787,4,Firefox 29,101,2018-06-27 +session,1787,5,Chrome 17,64,2018-07-18 +session,1787,6,Firefox 27,64,2017-08-27 +session,1787,7,Firefox 31,52,2017-08-03 +session,1787,8,Internet Explorer 23,94,2017-06-29 +session,1787,9,Firefox 6,82,2017-04-04 +user,1788,Loraine,Jaime,1 +session,1788,0,Chrome 22,21,2019-01-24 +session,1788,1,Firefox 28,12,2016-09-27 +session,1788,2,Firefox 19,69,2017-12-13 +session,1788,3,Firefox 34,99,2018-05-24 +session,1788,4,Safari 2,98,2016-10-10 +session,1788,5,Firefox 3,8,2017-08-08 +session,1788,6,Firefox 20,28,2017-05-08 +user,1789,Carey,Warner,35 +session,1789,0,Chrome 21,78,2018-06-13 +session,1789,1,Safari 18,115,2017-05-01 +session,1789,2,Safari 31,101,2016-12-15 +user,1790,Moses,Nicki,96 +session,1790,0,Firefox 24,73,2017-10-22 +session,1790,1,Firefox 13,43,2018-05-27 +session,1790,2,Firefox 7,113,2017-10-30 +user,1791,Corina,Dayna,33 +session,1791,0,Internet Explorer 47,62,2017-01-17 +session,1791,1,Chrome 19,8,2019-02-02 +user,1792,Mistie,George,72 +session,1792,0,Safari 22,18,2017-05-05 +session,1792,1,Firefox 27,39,2019-01-24 +session,1792,2,Safari 27,3,2018-08-16 +session,1792,3,Safari 19,109,2016-12-04 +session,1792,4,Internet Explorer 35,35,2017-05-06 +session,1792,5,Internet Explorer 5,75,2019-01-15 +session,1792,6,Chrome 4,42,2016-08-10 +session,1792,7,Firefox 4,115,2016-06-26 +session,1792,8,Internet Explorer 38,10,2017-04-27 +session,1792,9,Firefox 43,42,2017-04-23 +user,1793,Miquel,Pasquale,42 +session,1793,0,Safari 5,30,2018-11-12 +session,1793,1,Chrome 4,87,2018-08-29 +user,1794,Erik,Adele,39 +session,1794,0,Chrome 50,66,2016-08-21 +session,1794,1,Safari 26,35,2018-08-16 +session,1794,2,Firefox 26,4,2018-03-12 +session,1794,3,Safari 30,47,2017-06-12 +session,1794,4,Safari 22,82,2018-01-08 +session,1794,5,Chrome 22,106,2018-09-05 +session,1794,6,Safari 14,78,2018-06-27 +session,1794,7,Firefox 34,66,2018-11-19 +session,1794,8,Firefox 1,38,2017-09-06 +user,1795,Velma,Rosalva,67 +session,1795,0,Firefox 20,38,2017-03-01 +session,1795,1,Chrome 27,77,2016-10-09 +session,1795,2,Firefox 22,112,2017-04-24 +session,1795,3,Firefox 27,6,2016-06-29 +session,1795,4,Firefox 1,31,2018-12-04 +session,1795,5,Safari 10,109,2017-11-15 +session,1795,6,Chrome 10,75,2017-01-29 +session,1795,7,Safari 10,70,2017-12-16 +user,1796,Avery,Emily,75 +session,1796,0,Firefox 16,21,2016-05-23 +session,1796,1,Chrome 17,42,2016-11-21 +user,1797,Ahmed,Hortensia,98 +session,1797,0,Internet Explorer 7,71,2018-07-25 +session,1797,1,Firefox 38,47,2018-07-07 +session,1797,2,Chrome 37,91,2018-06-17 +session,1797,3,Internet Explorer 15,71,2018-12-22 +session,1797,4,Internet Explorer 28,58,2018-09-26 +session,1797,5,Safari 40,75,2016-07-01 +user,1798,Fidela,Lyla,8 +session,1798,0,Internet Explorer 37,64,2018-12-20 +session,1798,1,Safari 23,66,2017-03-13 +session,1798,2,Safari 7,86,2016-09-24 +user,1799,Weldon,Kimbery,99 +session,1799,0,Chrome 3,62,2017-12-15 +session,1799,1,Internet Explorer 29,47,2018-06-12 +session,1799,2,Firefox 26,103,2017-04-28 +session,1799,3,Internet Explorer 11,97,2017-01-21 +session,1799,4,Internet Explorer 27,32,2017-12-20 +session,1799,5,Safari 30,88,2016-08-06 +session,1799,6,Firefox 50,114,2017-04-25 +session,1799,7,Internet Explorer 14,11,2018-05-20 +session,1799,8,Firefox 33,64,2017-09-13 +user,1800,Dwayne,Larue,90 +session,1800,0,Internet Explorer 40,4,2017-02-28 +session,1800,1,Internet Explorer 14,15,2017-07-25 +session,1800,2,Chrome 35,26,2016-07-19 +session,1800,3,Firefox 10,73,2016-11-04 +session,1800,4,Firefox 25,118,2018-01-30 +user,1801,Elsa,Tien,89 +session,1801,0,Safari 27,77,2017-04-17 +session,1801,1,Firefox 19,89,2016-11-01 +session,1801,2,Firefox 21,4,2018-01-20 +session,1801,3,Safari 32,31,2017-10-15 +session,1801,4,Internet Explorer 30,84,2018-03-31 +session,1801,5,Firefox 16,75,2016-08-15 +user,1802,Jesus,Lucius,1 +session,1802,0,Internet Explorer 21,83,2017-02-25 +session,1802,1,Firefox 9,30,2016-10-03 +session,1802,2,Firefox 39,36,2017-05-06 +session,1802,3,Firefox 13,26,2018-07-21 +user,1803,Wyatt,Ok,50 +session,1803,0,Chrome 18,112,2018-09-28 +session,1803,1,Internet Explorer 39,7,2019-01-12 +session,1803,2,Firefox 9,95,2018-01-07 +session,1803,3,Firefox 12,73,2017-05-02 +session,1803,4,Firefox 25,26,2017-03-10 +session,1803,5,Firefox 34,1,2017-01-24 +session,1803,6,Chrome 1,86,2017-11-04 +session,1803,7,Internet Explorer 44,88,2019-02-07 +user,1804,Eldora,Delbert,66 +session,1804,0,Chrome 48,85,2016-12-26 +session,1804,1,Safari 14,9,2019-01-30 +session,1804,2,Firefox 8,63,2017-01-12 +user,1805,Eloy,Murray,12 +session,1805,0,Chrome 36,64,2018-03-27 +session,1805,1,Safari 36,20,2018-06-14 +session,1805,2,Firefox 3,105,2017-05-18 +session,1805,3,Firefox 16,91,2018-10-01 +session,1805,4,Chrome 22,10,2016-09-12 +session,1805,5,Safari 29,61,2017-06-04 +user,1806,Lindsay,Deanne,69 +session,1806,0,Chrome 22,62,2018-12-30 +session,1806,1,Firefox 29,38,2018-06-15 +session,1806,2,Chrome 35,63,2017-08-01 +user,1807,Brooks,Alphonso,47 +session,1807,0,Firefox 10,2,2017-12-18 +session,1807,1,Internet Explorer 17,13,2018-05-21 +user,1808,Norah,Libbie,5 +session,1808,0,Safari 28,97,2016-08-14 +session,1808,1,Safari 36,30,2018-05-22 +session,1808,2,Safari 21,115,2016-12-18 +session,1808,3,Firefox 6,99,2018-04-18 +user,1809,Carroll,Elton,7 +session,1809,0,Safari 34,108,2018-04-11 +session,1809,1,Safari 27,11,2017-06-01 +session,1809,2,Firefox 41,38,2017-01-20 +session,1809,3,Safari 50,115,2018-02-24 +session,1809,4,Firefox 8,45,2017-10-04 +session,1809,5,Safari 29,38,2017-01-09 +session,1809,6,Firefox 25,53,2017-05-06 +user,1810,Vashti,Kimber,45 +session,1810,0,Internet Explorer 32,27,2018-08-21 +session,1810,1,Internet Explorer 39,40,2018-12-14 +session,1810,2,Chrome 19,83,2017-10-23 +session,1810,3,Safari 39,105,2017-10-15 +session,1810,4,Firefox 44,97,2016-05-19 +session,1810,5,Internet Explorer 33,39,2016-12-02 +user,1811,Nona,Tonja,34 +session,1811,0,Chrome 14,94,2018-09-19 +session,1811,1,Internet Explorer 21,0,2018-07-23 +session,1811,2,Chrome 48,34,2018-01-31 +session,1811,3,Internet Explorer 42,55,2018-11-18 +session,1811,4,Firefox 24,55,2018-10-31 +session,1811,5,Safari 47,93,2016-11-08 +session,1811,6,Firefox 48,57,2018-01-07 +session,1811,7,Safari 31,119,2018-08-19 +session,1811,8,Internet Explorer 8,97,2017-11-15 +session,1811,9,Safari 25,99,2017-12-12 +user,1812,Sana,Ludivina,49 +session,1812,0,Safari 47,79,2017-05-01 +session,1812,1,Safari 30,83,2016-10-22 +session,1812,2,Firefox 9,57,2019-02-10 +session,1812,3,Chrome 16,44,2017-05-07 +user,1813,Son,Hettie,58 +session,1813,0,Safari 46,115,2017-05-09 +session,1813,1,Safari 8,40,2017-10-31 +user,1814,Bart,Spencer,95 +session,1814,0,Internet Explorer 48,11,2017-07-19 +session,1814,1,Safari 25,117,2018-05-28 +user,1815,Erin,Cristen,49 +session,1815,0,Chrome 47,20,2018-06-03 +session,1815,1,Firefox 15,64,2018-09-18 +session,1815,2,Internet Explorer 41,83,2018-11-09 +user,1816,Laurena,Herminia,27 +session,1816,0,Safari 4,112,2017-12-28 +session,1816,1,Firefox 23,19,2017-08-19 +session,1816,2,Chrome 22,39,2016-07-08 +session,1816,3,Firefox 4,92,2017-10-18 +session,1816,4,Safari 48,68,2017-12-27 +session,1816,5,Internet Explorer 9,88,2017-01-11 +session,1816,6,Internet Explorer 16,89,2017-11-17 +user,1817,Austin,Divina,3 +session,1817,0,Chrome 17,65,2018-10-24 +session,1817,1,Chrome 47,1,2018-04-01 +user,1818,Domenic,Anjelica,13 +session,1818,0,Internet Explorer 7,76,2017-03-22 +session,1818,1,Internet Explorer 34,70,2017-08-03 +session,1818,2,Firefox 36,42,2016-09-06 +user,1819,Lilliam,Huong,52 +session,1819,0,Safari 48,29,2018-07-07 +session,1819,1,Chrome 19,84,2017-03-08 +session,1819,2,Internet Explorer 39,29,2018-04-13 +session,1819,3,Firefox 40,80,2018-03-24 +session,1819,4,Chrome 7,50,2018-03-12 +session,1819,5,Internet Explorer 31,47,2018-07-09 +session,1819,6,Safari 7,59,2017-05-29 +session,1819,7,Chrome 33,56,2018-01-29 +user,1820,Leonel,Jules,58 +session,1820,0,Internet Explorer 6,65,2016-09-14 +session,1820,1,Chrome 19,7,2017-10-14 +session,1820,2,Internet Explorer 7,92,2017-03-07 +session,1820,3,Firefox 46,55,2017-08-07 +session,1820,4,Internet Explorer 22,97,2016-08-29 +session,1820,5,Safari 45,61,2017-07-04 +session,1820,6,Internet Explorer 4,14,2018-07-19 +session,1820,7,Safari 37,102,2018-05-26 +session,1820,8,Internet Explorer 42,103,2017-11-25 +session,1820,9,Chrome 32,101,2017-07-17 +user,1821,Kourtney,Veronika,38 +session,1821,0,Safari 50,46,2017-03-18 +session,1821,1,Chrome 36,115,2018-12-23 +session,1821,2,Chrome 3,52,2016-11-16 +session,1821,3,Firefox 17,48,2018-08-07 +session,1821,4,Chrome 5,0,2018-11-21 +session,1821,5,Chrome 33,113,2016-09-04 +user,1822,Phylis,Mai,87 +session,1822,0,Internet Explorer 32,63,2017-09-03 +session,1822,1,Chrome 15,46,2018-05-09 +session,1822,2,Internet Explorer 13,88,2017-04-11 +user,1823,Woodrow,Lakeisha,60 +session,1823,0,Chrome 7,116,2018-04-13 +session,1823,1,Chrome 13,112,2017-08-04 +session,1823,2,Firefox 31,26,2019-02-09 +session,1823,3,Firefox 33,32,2018-10-19 +session,1823,4,Internet Explorer 7,73,2017-01-03 +session,1823,5,Safari 21,96,2016-12-22 +user,1824,Mimi,Brant,20 +session,1824,0,Internet Explorer 21,101,2018-12-30 +session,1824,1,Chrome 1,57,2017-11-28 +session,1824,2,Firefox 36,108,2019-01-16 +session,1824,3,Firefox 19,77,2017-02-17 +user,1825,Russ,Kendall,72 +session,1825,0,Safari 5,33,2018-08-28 +session,1825,1,Safari 42,99,2017-10-13 +session,1825,2,Safari 44,115,2017-12-11 +session,1825,3,Firefox 27,101,2017-03-08 +session,1825,4,Safari 41,117,2017-04-27 +session,1825,5,Safari 28,46,2018-07-10 +session,1825,6,Safari 38,2,2017-02-28 +user,1826,Lisabeth,Jeneva,34 +session,1826,0,Chrome 3,53,2018-12-02 +session,1826,1,Chrome 35,41,2018-08-15 +session,1826,2,Chrome 8,16,2017-11-15 +session,1826,3,Internet Explorer 12,0,2017-06-17 +session,1826,4,Internet Explorer 45,43,2017-08-06 +session,1826,5,Internet Explorer 4,74,2017-02-27 +session,1826,6,Internet Explorer 9,66,2016-11-14 +session,1826,7,Firefox 44,98,2017-09-02 +session,1826,8,Firefox 41,64,2018-06-27 +user,1827,Norene,Ella,68 +session,1827,0,Internet Explorer 41,10,2018-09-30 +session,1827,1,Internet Explorer 10,116,2016-12-16 +session,1827,2,Safari 18,86,2016-07-16 +session,1827,3,Chrome 35,101,2018-07-13 +session,1827,4,Chrome 24,85,2017-10-16 +session,1827,5,Chrome 40,72,2017-11-07 +session,1827,6,Firefox 37,10,2017-06-03 +session,1827,7,Internet Explorer 21,17,2016-10-26 +session,1827,8,Internet Explorer 43,56,2018-05-26 +session,1827,9,Safari 6,31,2018-01-24 +user,1828,Carita,Krystyna,18 +session,1828,0,Internet Explorer 17,115,2017-07-08 +session,1828,1,Internet Explorer 38,32,2017-02-11 +session,1828,2,Firefox 25,83,2017-08-23 +session,1828,3,Chrome 42,59,2017-02-27 +session,1828,4,Internet Explorer 15,48,2016-09-21 +session,1828,5,Internet Explorer 22,35,2017-09-19 +session,1828,6,Firefox 9,74,2016-08-06 +user,1829,Raymonde,Karly,73 +session,1829,0,Safari 30,75,2019-02-03 +session,1829,1,Firefox 9,64,2016-09-01 +session,1829,2,Internet Explorer 34,39,2017-02-05 +session,1829,3,Chrome 12,21,2016-11-20 +session,1829,4,Chrome 29,109,2017-12-14 +session,1829,5,Firefox 23,116,2017-11-29 +session,1829,6,Internet Explorer 24,14,2018-04-12 +session,1829,7,Firefox 45,99,2019-01-22 +session,1829,8,Chrome 33,65,2018-10-20 +session,1829,9,Chrome 13,76,2019-01-10 +user,1830,Tommy,Corliss,56 +session,1830,0,Chrome 37,89,2017-03-12 +user,1831,Kirstin,Nancie,0 +session,1831,0,Chrome 15,47,2016-07-08 +session,1831,1,Firefox 25,17,2017-09-18 +session,1831,2,Safari 4,41,2016-06-12 +session,1831,3,Chrome 37,7,2018-02-12 +session,1831,4,Firefox 35,0,2017-09-15 +session,1831,5,Internet Explorer 32,101,2016-11-13 +session,1831,6,Firefox 48,8,2017-10-07 +session,1831,7,Internet Explorer 16,68,2018-06-03 +user,1832,Keneth,Sol,12 +session,1832,0,Chrome 49,112,2018-07-14 +session,1832,1,Firefox 43,118,2017-11-02 +session,1832,2,Chrome 32,40,2019-02-08 +user,1833,Nathanial,Brigette,89 +session,1833,0,Internet Explorer 21,94,2018-10-05 +session,1833,1,Safari 19,1,2017-08-26 +session,1833,2,Safari 44,38,2018-02-19 +session,1833,3,Firefox 14,86,2016-07-16 +session,1833,4,Internet Explorer 39,94,2016-08-24 +user,1834,Shayne,Rey,37 +session,1834,0,Chrome 43,56,2019-01-04 +user,1835,Luke,Lesia,22 +session,1835,0,Safari 46,37,2018-05-17 +session,1835,1,Internet Explorer 13,15,2018-08-26 +session,1835,2,Firefox 37,46,2017-05-14 +session,1835,3,Chrome 32,117,2018-12-03 +session,1835,4,Chrome 42,32,2018-12-10 +session,1835,5,Firefox 39,17,2017-11-09 +session,1835,6,Firefox 24,107,2018-04-22 +session,1835,7,Internet Explorer 29,115,2018-08-20 +session,1835,8,Chrome 22,15,2017-06-26 +user,1836,Joni,Nicki,83 +session,1836,0,Firefox 19,44,2018-09-24 +user,1837,Lauretta,Coralie,46 +session,1837,0,Internet Explorer 23,2,2017-02-14 +user,1838,Randell,Clair,1 +session,1838,0,Internet Explorer 47,43,2018-03-25 +user,1839,Sherrie,Hillary,11 +session,1839,0,Firefox 23,55,2017-05-12 +session,1839,1,Safari 47,84,2019-01-26 +session,1839,2,Internet Explorer 29,76,2017-01-02 +session,1839,3,Chrome 7,8,2017-08-23 +user,1840,Natosha,Roxana,29 +session,1840,0,Chrome 7,70,2017-06-25 +session,1840,1,Firefox 31,82,2018-10-26 +session,1840,2,Safari 10,39,2018-01-05 +session,1840,3,Internet Explorer 50,86,2017-07-08 +session,1840,4,Internet Explorer 34,94,2017-11-24 +session,1840,5,Firefox 38,0,2017-03-30 +session,1840,6,Chrome 10,30,2018-03-03 +session,1840,7,Chrome 11,1,2018-11-22 +session,1840,8,Chrome 9,75,2016-10-28 +session,1840,9,Internet Explorer 41,55,2018-05-30 +user,1841,Deonna,Albina,82 +session,1841,0,Firefox 19,77,2018-12-15 +session,1841,1,Chrome 28,25,2017-03-04 +user,1842,Alesia,Dottie,75 +session,1842,0,Chrome 38,13,2017-12-09 +session,1842,1,Internet Explorer 5,12,2016-11-25 +session,1842,2,Safari 45,16,2016-12-03 +session,1842,3,Firefox 48,43,2016-05-25 +session,1842,4,Safari 11,36,2016-10-04 +user,1843,Trevor,Yanira,89 +session,1843,0,Safari 17,85,2017-12-17 +session,1843,1,Chrome 39,95,2018-08-07 +session,1843,2,Firefox 8,40,2018-04-11 +session,1843,3,Safari 49,96,2016-12-31 +session,1843,4,Safari 31,83,2017-07-04 +session,1843,5,Firefox 19,111,2016-10-19 +user,1844,Evelia,Detra,12 +session,1844,0,Internet Explorer 21,100,2018-04-24 +session,1844,1,Internet Explorer 29,72,2018-12-28 +session,1844,2,Firefox 19,9,2018-06-18 +session,1844,3,Safari 30,61,2016-09-26 +session,1844,4,Safari 8,78,2018-10-27 +session,1844,5,Safari 1,34,2016-08-06 +user,1845,Stephen,Darci,19 +session,1845,0,Firefox 38,44,2016-07-05 +session,1845,1,Safari 48,0,2016-07-07 +session,1845,2,Safari 24,99,2016-10-03 +session,1845,3,Safari 48,70,2017-10-11 +session,1845,4,Safari 4,66,2017-01-31 +session,1845,5,Chrome 23,79,2017-02-19 +session,1845,6,Firefox 25,62,2018-03-14 +session,1845,7,Safari 48,14,2017-08-26 +session,1845,8,Internet Explorer 33,53,2017-02-26 +user,1846,Joslyn,Hayden,8 +session,1846,0,Internet Explorer 44,98,2018-09-20 +session,1846,1,Chrome 21,53,2017-07-14 +session,1846,2,Safari 29,32,2017-02-23 +user,1847,Felix,Sharolyn,98 +session,1847,0,Chrome 2,86,2019-01-03 +session,1847,1,Safari 50,11,2017-10-16 +session,1847,2,Internet Explorer 7,49,2016-11-17 +session,1847,3,Chrome 46,118,2018-07-08 +session,1847,4,Internet Explorer 19,38,2016-08-03 +session,1847,5,Firefox 43,3,2018-01-05 +session,1847,6,Chrome 31,3,2018-11-14 +session,1847,7,Safari 43,78,2017-07-12 +user,1848,Maybelle,Marivel,23 +session,1848,0,Firefox 34,29,2018-02-26 +session,1848,1,Chrome 37,25,2017-10-23 +session,1848,2,Chrome 19,102,2018-12-27 +session,1848,3,Firefox 34,83,2017-01-10 +user,1849,Yolando,Annis,14 +session,1849,0,Chrome 23,69,2016-07-10 +user,1850,Nick,Gabrielle,81 +session,1850,0,Internet Explorer 2,23,2018-11-26 +session,1850,1,Internet Explorer 46,35,2017-11-07 +session,1850,2,Internet Explorer 3,78,2017-10-10 +session,1850,3,Firefox 28,53,2016-10-30 +session,1850,4,Chrome 17,90,2018-05-21 +user,1851,Santo,Donya,46 +session,1851,0,Internet Explorer 38,104,2018-06-25 +session,1851,1,Safari 46,62,2016-12-17 +user,1852,Lavenia,Brigitte,65 +session,1852,0,Firefox 49,34,2017-08-25 +session,1852,1,Chrome 35,27,2018-05-23 +session,1852,2,Internet Explorer 46,87,2017-06-14 +session,1852,3,Chrome 19,92,2018-03-14 +session,1852,4,Chrome 16,79,2017-03-24 +session,1852,5,Chrome 29,112,2018-09-03 +user,1853,Frank,Charlyn,64 +session,1853,0,Internet Explorer 13,116,2016-12-05 +session,1853,1,Chrome 39,8,2017-08-24 +session,1853,2,Firefox 11,17,2018-05-27 +user,1854,Charise,Becki,32 +session,1854,0,Firefox 8,99,2017-05-21 +session,1854,1,Internet Explorer 11,17,2019-02-06 +session,1854,2,Safari 3,27,2018-02-11 +session,1854,3,Firefox 22,6,2018-10-28 +session,1854,4,Safari 49,119,2017-03-12 +session,1854,5,Chrome 12,100,2017-10-27 +session,1854,6,Firefox 38,53,2017-09-08 +session,1854,7,Chrome 44,65,2016-12-04 +session,1854,8,Internet Explorer 48,99,2019-01-01 +session,1854,9,Firefox 38,46,2018-07-31 +user,1855,Quentin,Mindi,32 +session,1855,0,Safari 28,56,2018-02-28 +session,1855,1,Safari 36,78,2016-07-05 +session,1855,2,Firefox 12,3,2017-05-02 +session,1855,3,Safari 45,103,2016-10-15 +session,1855,4,Firefox 2,48,2017-11-18 +user,1856,Katrina,Merri,15 +session,1856,0,Firefox 29,96,2018-04-25 +session,1856,1,Safari 32,78,2017-01-12 +user,1857,Norma,Rory,35 +session,1857,0,Safari 5,22,2016-08-25 +session,1857,1,Internet Explorer 2,36,2016-08-18 +session,1857,2,Internet Explorer 23,8,2018-08-29 +session,1857,3,Safari 27,103,2018-03-11 +session,1857,4,Chrome 24,91,2017-09-22 +session,1857,5,Safari 49,20,2016-09-20 +user,1858,Marco,Lamont,60 +session,1858,0,Firefox 4,117,2018-10-06 +session,1858,1,Chrome 48,105,2017-05-20 +session,1858,2,Chrome 36,40,2017-05-23 +session,1858,3,Chrome 4,4,2016-08-16 +session,1858,4,Firefox 35,26,2017-04-21 +session,1858,5,Safari 18,77,2018-02-18 +user,1859,Granville,Deloras,71 +session,1859,0,Internet Explorer 15,31,2018-02-23 +session,1859,1,Chrome 31,117,2018-05-23 +session,1859,2,Firefox 28,101,2018-09-19 +session,1859,3,Chrome 8,82,2016-09-27 +session,1859,4,Chrome 33,104,2017-10-04 +session,1859,5,Chrome 35,45,2017-08-03 +session,1859,6,Firefox 48,76,2017-07-19 +session,1859,7,Safari 45,8,2019-01-20 +session,1859,8,Safari 27,102,2018-07-18 +session,1859,9,Firefox 42,37,2016-08-08 +user,1860,Janae,Kathleen,10 +session,1860,0,Firefox 6,27,2018-08-17 +session,1860,1,Chrome 50,18,2017-12-10 +session,1860,2,Firefox 6,0,2017-02-17 +session,1860,3,Firefox 28,106,2018-12-07 +session,1860,4,Chrome 19,45,2018-06-19 +session,1860,5,Internet Explorer 45,103,2016-08-30 +session,1860,6,Safari 9,67,2018-03-09 +session,1860,7,Safari 41,11,2017-03-29 +session,1860,8,Firefox 8,36,2018-02-09 +user,1861,Trinidad,Sanjuana,24 +session,1861,0,Safari 23,104,2017-01-11 +session,1861,1,Safari 8,69,2016-10-08 +session,1861,2,Chrome 7,107,2018-12-06 +user,1862,Stephan,Cheyenne,59 +session,1862,0,Internet Explorer 32,46,2017-04-06 +session,1862,1,Internet Explorer 14,36,2018-03-11 +session,1862,2,Internet Explorer 29,21,2016-07-08 +session,1862,3,Chrome 20,44,2018-04-15 +session,1862,4,Safari 25,34,2016-12-28 +session,1862,5,Firefox 24,10,2017-03-13 +session,1862,6,Safari 15,105,2017-10-04 +session,1862,7,Safari 2,115,2017-01-31 +session,1862,8,Internet Explorer 34,67,2018-11-06 +session,1862,9,Internet Explorer 43,39,2016-09-02 +user,1863,Wilbert,Merlin,55 +session,1863,0,Safari 31,12,2018-02-07 +session,1863,1,Safari 30,111,2017-08-31 +session,1863,2,Internet Explorer 21,26,2017-05-25 +session,1863,3,Firefox 44,12,2017-09-10 +user,1864,Felix,Shavonda,86 +session,1864,0,Firefox 21,15,2017-11-12 +session,1864,1,Chrome 15,47,2017-09-03 +session,1864,2,Chrome 33,117,2018-06-06 +session,1864,3,Chrome 15,49,2017-04-15 +session,1864,4,Firefox 50,32,2017-05-09 +user,1865,Chase,Felicitas,31 +session,1865,0,Firefox 12,76,2017-02-16 +session,1865,1,Firefox 17,82,2018-04-01 +session,1865,2,Chrome 34,4,2018-12-22 +session,1865,3,Firefox 33,67,2017-12-22 +session,1865,4,Firefox 44,6,2017-08-02 +session,1865,5,Chrome 48,18,2018-12-08 +session,1865,6,Safari 30,79,2016-12-06 +session,1865,7,Firefox 14,117,2016-11-13 +user,1866,Carley,Pat,54 +session,1866,0,Safari 22,97,2017-08-24 +session,1866,1,Safari 21,14,2016-08-09 +user,1867,Lizbeth,Allene,54 +session,1867,0,Internet Explorer 17,99,2016-07-31 +user,1868,Jeanelle,Angela,21 +session,1868,0,Internet Explorer 3,69,2016-12-31 +session,1868,1,Chrome 37,109,2018-05-12 +session,1868,2,Safari 11,92,2017-03-24 +session,1868,3,Safari 7,116,2017-05-16 +user,1869,Mark,Alline,14 +session,1869,0,Chrome 17,87,2018-04-25 +session,1869,1,Firefox 15,94,2017-06-27 +user,1870,Randell,Jane,48 +session,1870,0,Safari 48,76,2017-10-11 +session,1870,1,Safari 12,108,2017-01-27 +session,1870,2,Chrome 35,67,2018-11-16 +session,1870,3,Firefox 26,107,2018-11-24 +session,1870,4,Internet Explorer 10,57,2017-11-03 +session,1870,5,Internet Explorer 42,86,2017-04-11 +session,1870,6,Chrome 32,50,2017-03-12 +user,1871,Shela,Viviana,97 +session,1871,0,Safari 5,39,2017-01-12 +session,1871,1,Internet Explorer 35,93,2017-03-25 +session,1871,2,Firefox 3,51,2017-05-05 +session,1871,3,Safari 50,109,2017-12-29 +session,1871,4,Internet Explorer 23,24,2017-03-21 +session,1871,5,Chrome 33,4,2018-08-08 +session,1871,6,Internet Explorer 35,77,2017-07-25 +session,1871,7,Internet Explorer 7,47,2017-05-25 +user,1872,Tova,Kayce,2 +session,1872,0,Safari 35,45,2016-09-28 +session,1872,1,Safari 39,62,2016-10-18 +session,1872,2,Safari 39,17,2018-09-13 +session,1872,3,Chrome 11,117,2018-07-01 +session,1872,4,Safari 48,26,2018-08-18 +session,1872,5,Chrome 32,15,2017-06-06 +user,1873,Bennie,Bennie,5 +session,1873,0,Chrome 43,61,2017-03-25 +session,1873,1,Firefox 9,116,2018-08-02 +user,1874,Eleni,Quentin,3 +session,1874,0,Safari 46,81,2018-01-17 +session,1874,1,Chrome 19,54,2018-05-15 +session,1874,2,Chrome 49,10,2017-06-01 +session,1874,3,Firefox 18,110,2016-11-24 +session,1874,4,Firefox 4,7,2018-12-27 +session,1874,5,Firefox 27,43,2017-06-30 +session,1874,6,Safari 35,66,2018-10-14 +session,1874,7,Chrome 40,23,2017-11-22 +session,1874,8,Safari 11,76,2018-02-25 +user,1875,Tandy,Sarah,80 +session,1875,0,Internet Explorer 12,102,2017-10-21 +session,1875,1,Internet Explorer 22,76,2016-12-18 +session,1875,2,Firefox 45,27,2017-07-03 +session,1875,3,Safari 20,114,2017-12-27 +session,1875,4,Firefox 45,79,2017-04-25 +session,1875,5,Firefox 18,48,2018-08-25 +session,1875,6,Firefox 5,15,2016-05-26 +session,1875,7,Internet Explorer 10,56,2016-10-02 +session,1875,8,Safari 1,82,2017-05-05 +session,1875,9,Firefox 7,70,2016-12-10 +user,1876,Augustus,Missy,6 +session,1876,0,Firefox 29,17,2017-07-05 +session,1876,1,Safari 43,77,2017-08-01 +session,1876,2,Safari 18,76,2019-01-30 +session,1876,3,Firefox 43,42,2018-06-25 +session,1876,4,Internet Explorer 31,29,2017-09-12 +user,1877,Chris,Olimpia,40 +session,1877,0,Firefox 10,53,2016-09-07 +session,1877,1,Safari 6,20,2018-05-19 +session,1877,2,Internet Explorer 13,93,2017-06-14 +session,1877,3,Internet Explorer 40,5,2017-11-22 +session,1877,4,Internet Explorer 1,118,2018-12-03 +session,1877,5,Firefox 42,4,2018-01-20 +session,1877,6,Chrome 24,50,2016-12-27 +session,1877,7,Chrome 50,91,2017-12-11 +session,1877,8,Firefox 14,79,2017-07-04 +session,1877,9,Internet Explorer 48,107,2018-01-10 +user,1878,Cleopatra,Kami,99 +session,1878,0,Safari 10,98,2017-04-21 +session,1878,1,Internet Explorer 27,103,2016-12-21 +user,1879,Davida,Lavera,83 +session,1879,0,Firefox 24,85,2018-02-06 +session,1879,1,Chrome 34,114,2016-12-06 +session,1879,2,Firefox 10,71,2018-05-22 +session,1879,3,Internet Explorer 9,30,2017-06-04 +session,1879,4,Firefox 19,47,2018-12-14 +session,1879,5,Firefox 21,117,2018-07-14 +session,1879,6,Firefox 43,71,2018-10-02 +session,1879,7,Chrome 12,105,2016-08-16 +session,1879,8,Internet Explorer 20,51,2016-07-05 +session,1879,9,Firefox 27,75,2017-12-18 +user,1880,Tad,Allen,32 +session,1880,0,Internet Explorer 33,39,2017-09-16 +session,1880,1,Safari 29,26,2018-04-24 +session,1880,2,Chrome 43,62,2017-10-12 +session,1880,3,Firefox 21,50,2017-03-12 +user,1881,Hai,Jacquelyne,86 +session,1881,0,Internet Explorer 7,67,2017-03-06 +session,1881,1,Chrome 26,45,2018-02-26 +session,1881,2,Firefox 44,116,2017-10-17 +session,1881,3,Internet Explorer 5,49,2017-07-14 +session,1881,4,Chrome 40,95,2018-04-14 +session,1881,5,Safari 9,14,2018-06-14 +user,1882,Carlyn,Christene,65 +session,1882,0,Safari 8,116,2017-04-16 +session,1882,1,Safari 27,48,2018-02-01 +session,1882,2,Internet Explorer 38,46,2017-11-07 +session,1882,3,Chrome 45,18,2018-09-08 +session,1882,4,Safari 32,43,2018-11-18 +session,1882,5,Firefox 23,20,2017-08-14 +session,1882,6,Internet Explorer 31,9,2018-03-22 +user,1883,Matthew,Tameika,44 +session,1883,0,Internet Explorer 25,87,2018-05-28 +session,1883,1,Firefox 40,113,2017-07-21 +session,1883,2,Safari 16,105,2018-04-04 +session,1883,3,Safari 16,37,2016-12-15 +user,1884,Inge,Myron,39 +session,1884,0,Firefox 25,99,2016-12-26 +session,1884,1,Safari 46,91,2019-01-04 +session,1884,2,Firefox 31,29,2016-10-02 +user,1885,Nancy,Nereida,2 +session,1885,0,Chrome 33,59,2018-12-09 +session,1885,1,Internet Explorer 13,94,2017-01-13 +user,1886,Marita,Marx,58 +session,1886,0,Internet Explorer 14,79,2018-12-19 +session,1886,1,Chrome 35,47,2017-12-02 +session,1886,2,Internet Explorer 35,23,2018-02-12 +session,1886,3,Chrome 36,9,2017-02-01 +session,1886,4,Chrome 12,21,2017-02-07 +session,1886,5,Firefox 20,11,2016-12-25 +session,1886,6,Firefox 36,30,2017-09-05 +session,1886,7,Internet Explorer 42,12,2018-08-12 +user,1887,Marc,Laverne,63 +session,1887,0,Internet Explorer 7,57,2017-09-23 +session,1887,1,Chrome 22,17,2018-02-13 +user,1888,Tina,Zack,19 +session,1888,0,Internet Explorer 31,60,2017-01-14 +session,1888,1,Firefox 49,10,2018-02-06 +user,1889,Debora,Tam,90 +session,1889,0,Safari 19,106,2017-02-24 +session,1889,1,Firefox 17,29,2017-07-18 +session,1889,2,Firefox 14,22,2017-11-29 +session,1889,3,Safari 45,7,2019-01-17 +session,1889,4,Internet Explorer 15,29,2017-12-13 +session,1889,5,Chrome 37,29,2018-07-11 +session,1889,6,Chrome 24,2,2018-04-09 +user,1890,Harland,Keren,41 +session,1890,0,Chrome 35,18,2016-09-23 +session,1890,1,Firefox 33,119,2018-10-31 +session,1890,2,Internet Explorer 40,19,2018-08-05 +session,1890,3,Firefox 47,101,2018-11-16 +session,1890,4,Safari 14,82,2017-04-18 +session,1890,5,Safari 25,51,2017-10-22 +session,1890,6,Internet Explorer 39,48,2017-05-26 +session,1890,7,Internet Explorer 15,110,2017-11-05 +session,1890,8,Internet Explorer 6,110,2018-10-16 +user,1891,Cheree,Shanae,14 +session,1891,0,Firefox 4,49,2017-07-20 +session,1891,1,Safari 44,7,2016-09-26 +session,1891,2,Chrome 28,67,2018-03-08 +session,1891,3,Internet Explorer 12,68,2017-05-03 +user,1892,Deeann,Zackary,2 +session,1892,0,Safari 20,35,2017-01-09 +session,1892,1,Safari 10,9,2017-07-25 +session,1892,2,Firefox 29,58,2018-04-27 +session,1892,3,Chrome 24,33,2017-07-29 +session,1892,4,Firefox 21,35,2018-10-25 +session,1892,5,Chrome 3,12,2017-09-07 +session,1892,6,Safari 47,97,2018-05-23 +session,1892,7,Chrome 29,89,2018-11-24 +session,1892,8,Chrome 24,37,2016-10-22 +session,1892,9,Internet Explorer 26,92,2017-05-24 +user,1893,Malcolm,Charleen,8 +session,1893,0,Chrome 44,101,2017-05-01 +user,1894,Grady,Ermelinda,2 +session,1894,0,Safari 6,10,2018-08-16 +session,1894,1,Chrome 6,119,2016-09-22 +session,1894,2,Firefox 16,113,2018-04-03 +user,1895,Tiffanie,Kenna,64 +session,1895,0,Firefox 22,50,2016-10-14 +session,1895,1,Firefox 13,56,2017-09-24 +session,1895,2,Chrome 38,65,2018-04-06 +session,1895,3,Safari 47,95,2017-12-05 +user,1896,Rolland,Vesta,48 +session,1896,0,Chrome 44,86,2018-07-07 +session,1896,1,Internet Explorer 1,68,2018-03-16 +session,1896,2,Chrome 34,65,2017-03-27 +session,1896,3,Firefox 5,51,2018-10-27 +user,1897,Fausto,Rosalinda,97 +session,1897,0,Safari 4,0,2018-03-14 +session,1897,1,Safari 30,16,2016-12-01 +session,1897,2,Firefox 3,97,2017-07-30 +user,1898,Reta,Gretta,5 +session,1898,0,Chrome 42,19,2017-02-10 +session,1898,1,Internet Explorer 13,47,2017-11-03 +session,1898,2,Firefox 27,62,2016-07-21 +session,1898,3,Internet Explorer 17,60,2016-12-03 +session,1898,4,Internet Explorer 18,7,2016-10-23 +session,1898,5,Firefox 21,89,2018-03-11 +session,1898,6,Internet Explorer 20,62,2018-02-15 +session,1898,7,Safari 41,79,2016-10-24 +session,1898,8,Safari 7,65,2018-10-16 +session,1898,9,Firefox 16,31,2016-08-26 +user,1899,Arnulfo,Hyun,55 +session,1899,0,Internet Explorer 5,97,2016-11-13 +session,1899,1,Firefox 35,36,2019-01-07 +session,1899,2,Internet Explorer 40,63,2016-10-06 +session,1899,3,Chrome 32,67,2016-06-07 +user,1900,Shayne,Jana,88 +session,1900,0,Safari 33,74,2018-01-17 +session,1900,1,Firefox 48,114,2018-07-26 +session,1900,2,Chrome 32,26,2017-05-14 +session,1900,3,Firefox 48,61,2017-12-16 +session,1900,4,Internet Explorer 12,4,2017-07-02 +session,1900,5,Firefox 49,1,2018-08-19 +session,1900,6,Internet Explorer 6,42,2018-07-17 +session,1900,7,Safari 32,4,2017-08-16 +session,1900,8,Chrome 36,74,2018-09-04 +user,1901,Avis,Vito,60 +session,1901,0,Firefox 24,74,2016-06-26 +session,1901,1,Internet Explorer 19,59,2018-05-22 +session,1901,2,Safari 37,90,2017-08-04 +session,1901,3,Firefox 26,119,2018-10-25 +session,1901,4,Chrome 32,5,2017-09-06 +session,1901,5,Safari 42,91,2016-12-22 +session,1901,6,Firefox 2,39,2017-07-30 +user,1902,Lucas,Ying,38 +session,1902,0,Firefox 14,53,2017-06-06 +session,1902,1,Internet Explorer 27,37,2017-09-13 +session,1902,2,Safari 45,67,2018-07-31 +session,1902,3,Chrome 20,103,2018-03-12 +session,1902,4,Internet Explorer 43,21,2017-12-19 +session,1902,5,Firefox 12,62,2017-07-01 +session,1902,6,Firefox 39,25,2018-02-17 +session,1902,7,Firefox 40,62,2018-11-12 +session,1902,8,Safari 8,34,2016-10-22 +user,1903,Tiffaney,Reta,49 +session,1903,0,Internet Explorer 6,8,2018-03-04 +session,1903,1,Internet Explorer 23,52,2016-07-02 +session,1903,2,Chrome 27,6,2017-11-09 +user,1904,Cody,Erwin,41 +session,1904,0,Chrome 13,59,2017-11-06 +session,1904,1,Internet Explorer 9,109,2016-12-02 +session,1904,2,Chrome 14,76,2016-09-06 +session,1904,3,Safari 1,97,2018-10-03 +session,1904,4,Internet Explorer 3,116,2017-04-09 +session,1904,5,Chrome 1,70,2018-07-18 +session,1904,6,Firefox 4,31,2016-05-28 +user,1905,Sherryl,Magda,20 +session,1905,0,Chrome 25,24,2018-06-27 +session,1905,1,Safari 8,111,2019-01-10 +session,1905,2,Safari 35,59,2019-01-09 +user,1906,Arthur,Theo,24 +session,1906,0,Internet Explorer 33,19,2017-07-07 +session,1906,1,Internet Explorer 16,78,2018-06-10 +session,1906,2,Safari 40,115,2018-08-02 +session,1906,3,Internet Explorer 20,107,2017-11-11 +session,1906,4,Safari 47,106,2018-02-15 +session,1906,5,Firefox 27,18,2017-06-19 +session,1906,6,Internet Explorer 36,31,2018-11-17 +user,1907,Brittanie,Jordan,75 +session,1907,0,Internet Explorer 48,60,2018-09-21 +user,1908,Zulma,Leoma,18 +session,1908,0,Internet Explorer 16,66,2016-09-09 +user,1909,Kevin,Anitra,57 +session,1909,0,Firefox 27,66,2018-05-14 +session,1909,1,Internet Explorer 14,4,2016-08-22 +session,1909,2,Internet Explorer 22,53,2018-11-27 +session,1909,3,Chrome 5,46,2018-07-08 +session,1909,4,Firefox 22,119,2017-03-23 +session,1909,5,Internet Explorer 38,54,2018-09-24 +session,1909,6,Safari 6,117,2018-05-06 +user,1910,Arturo,Tarra,25 +session,1910,0,Safari 36,9,2017-05-28 +session,1910,1,Internet Explorer 26,55,2018-11-13 +session,1910,2,Chrome 48,6,2018-08-22 +session,1910,3,Safari 11,110,2019-02-06 +session,1910,4,Internet Explorer 1,82,2017-05-07 +session,1910,5,Safari 18,117,2017-03-31 +session,1910,6,Firefox 12,91,2018-05-13 +user,1911,Lavonia,Adolph,67 +session,1911,0,Chrome 12,8,2018-01-25 +session,1911,1,Firefox 39,117,2017-11-07 +session,1911,2,Safari 29,112,2018-04-27 +session,1911,3,Chrome 14,53,2018-03-01 +session,1911,4,Chrome 6,2,2018-06-22 +session,1911,5,Internet Explorer 22,9,2018-01-27 +session,1911,6,Internet Explorer 39,4,2016-08-26 +session,1911,7,Safari 1,40,2018-10-27 +session,1911,8,Firefox 43,8,2019-02-04 +user,1912,Myrtie,Tomika,71 +session,1912,0,Firefox 23,108,2017-07-02 +session,1912,1,Internet Explorer 44,51,2016-09-26 +session,1912,2,Internet Explorer 42,75,2016-12-04 +session,1912,3,Internet Explorer 18,53,2019-02-05 +session,1912,4,Firefox 17,6,2018-01-09 +session,1912,5,Chrome 31,2,2017-02-14 +session,1912,6,Internet Explorer 3,1,2018-04-27 +session,1912,7,Chrome 21,66,2016-10-04 +session,1912,8,Chrome 22,92,2017-02-22 +user,1913,Harry,Trang,42 +session,1913,0,Firefox 30,17,2016-06-09 +session,1913,1,Internet Explorer 18,113,2018-06-20 +session,1913,2,Firefox 5,102,2017-12-16 +session,1913,3,Internet Explorer 50,67,2018-11-18 +user,1914,Deloris,Jared,96 +session,1914,0,Internet Explorer 26,79,2018-09-26 +session,1914,1,Firefox 31,94,2016-09-08 +session,1914,2,Internet Explorer 17,90,2017-11-12 +session,1914,3,Internet Explorer 18,2,2016-09-16 +session,1914,4,Internet Explorer 35,29,2017-12-31 +session,1914,5,Safari 36,108,2017-08-16 +session,1914,6,Chrome 23,33,2017-12-24 +session,1914,7,Internet Explorer 21,96,2017-04-24 +session,1914,8,Firefox 18,22,2018-10-10 +user,1915,Hae,Leland,1 +session,1915,0,Internet Explorer 41,13,2017-05-28 +session,1915,1,Safari 45,119,2018-10-09 +session,1915,2,Firefox 38,116,2018-10-04 +session,1915,3,Internet Explorer 36,75,2016-11-09 +session,1915,4,Chrome 28,15,2017-09-21 +session,1915,5,Chrome 41,92,2016-08-18 +session,1915,6,Safari 16,51,2017-03-17 +session,1915,7,Chrome 48,5,2018-09-07 +session,1915,8,Firefox 50,16,2018-05-06 +session,1915,9,Internet Explorer 11,88,2018-12-09 +user,1916,Dreama,Kip,38 +session,1916,0,Chrome 19,116,2018-11-12 +session,1916,1,Safari 2,73,2018-08-22 +session,1916,2,Chrome 41,5,2016-11-18 +session,1916,3,Firefox 50,69,2017-03-31 +session,1916,4,Safari 1,13,2017-05-14 +session,1916,5,Chrome 14,106,2017-11-14 +session,1916,6,Chrome 14,66,2019-01-19 +user,1917,Cyrus,Mariel,33 +session,1917,0,Safari 9,50,2018-04-10 +session,1917,1,Internet Explorer 12,46,2017-02-26 +session,1917,2,Firefox 13,79,2017-12-11 +user,1918,Daniell,King,43 +session,1918,0,Chrome 38,99,2018-12-09 +session,1918,1,Safari 1,108,2017-09-12 +session,1918,2,Safari 2,118,2019-01-18 +session,1918,3,Safari 39,89,2017-07-12 +session,1918,4,Firefox 28,96,2018-01-05 +user,1919,Claud,Sima,46 +session,1919,0,Internet Explorer 3,36,2017-05-25 +session,1919,1,Firefox 27,0,2017-01-08 +session,1919,2,Safari 16,84,2017-01-30 +user,1920,Loise,Concetta,34 +session,1920,0,Chrome 18,72,2018-08-30 +session,1920,1,Internet Explorer 27,100,2019-01-12 +session,1920,2,Safari 14,50,2017-05-02 +session,1920,3,Firefox 11,78,2017-08-13 +session,1920,4,Chrome 28,61,2018-11-10 +session,1920,5,Chrome 43,110,2018-12-22 +session,1920,6,Safari 32,70,2017-11-29 +session,1920,7,Firefox 41,69,2017-07-03 +user,1921,Bob,Dell,93 +session,1921,0,Safari 34,86,2017-04-09 +session,1921,1,Safari 29,26,2017-01-27 +session,1921,2,Firefox 19,44,2018-01-29 +session,1921,3,Chrome 5,92,2017-01-10 +session,1921,4,Chrome 37,42,2018-06-12 +session,1921,5,Internet Explorer 46,115,2018-05-20 +user,1922,Shayne,Twana,46 +session,1922,0,Internet Explorer 35,92,2018-12-12 +session,1922,1,Chrome 19,56,2017-09-29 +session,1922,2,Safari 25,52,2017-04-22 +session,1922,3,Chrome 3,88,2018-11-14 +session,1922,4,Safari 13,92,2017-08-31 +user,1923,Jeannine,Tonya,49 +session,1923,0,Safari 23,109,2016-05-29 +session,1923,1,Safari 9,13,2017-03-21 +session,1923,2,Firefox 12,61,2018-09-28 +session,1923,3,Firefox 49,70,2017-06-21 +session,1923,4,Internet Explorer 10,5,2018-08-29 +session,1923,5,Internet Explorer 40,82,2018-01-01 +session,1923,6,Firefox 29,51,2016-09-30 +session,1923,7,Chrome 8,76,2017-03-04 +user,1924,Brad,Jonie,67 +session,1924,0,Chrome 26,70,2016-12-31 +session,1924,1,Firefox 45,33,2017-01-23 +session,1924,2,Chrome 37,36,2018-01-16 +session,1924,3,Chrome 19,96,2018-03-22 +session,1924,4,Chrome 31,36,2018-01-29 +session,1924,5,Internet Explorer 10,93,2016-12-07 +session,1924,6,Safari 35,62,2016-11-04 +session,1924,7,Chrome 36,90,2016-08-27 +session,1924,8,Internet Explorer 28,40,2017-11-05 +session,1924,9,Safari 24,66,2019-01-05 +user,1925,Tarra,Lavonia,16 +session,1925,0,Firefox 37,51,2016-08-09 +session,1925,1,Internet Explorer 14,3,2018-04-25 +session,1925,2,Safari 4,14,2016-06-06 +session,1925,3,Internet Explorer 11,105,2017-11-09 +session,1925,4,Chrome 9,42,2016-08-03 +session,1925,5,Safari 28,34,2017-03-15 +session,1925,6,Firefox 8,67,2018-06-25 +session,1925,7,Internet Explorer 18,12,2019-01-24 +user,1926,Jeanna,Justa,74 +session,1926,0,Chrome 32,23,2018-03-30 +session,1926,1,Firefox 46,56,2018-07-01 +session,1926,2,Firefox 7,26,2017-02-23 +session,1926,3,Internet Explorer 50,68,2016-08-21 +session,1926,4,Safari 48,109,2017-10-15 +session,1926,5,Safari 18,67,2017-04-01 +session,1926,6,Firefox 48,43,2017-11-06 +user,1927,Tuyet,Katherin,24 +session,1927,0,Firefox 15,77,2018-09-10 +session,1927,1,Internet Explorer 38,65,2018-03-24 +session,1927,2,Firefox 7,16,2017-04-20 +session,1927,3,Safari 30,3,2016-12-02 +session,1927,4,Safari 1,6,2016-08-15 +session,1927,5,Firefox 6,90,2018-05-14 +session,1927,6,Firefox 25,43,2016-07-27 +session,1927,7,Safari 23,66,2018-04-24 +session,1927,8,Firefox 11,78,2016-09-17 +session,1927,9,Internet Explorer 15,54,2018-03-26 +user,1928,Loni,Simonne,91 +session,1928,0,Internet Explorer 27,98,2017-06-08 +session,1928,1,Firefox 50,7,2018-04-13 +session,1928,2,Safari 27,13,2017-07-06 +session,1928,3,Firefox 41,100,2017-04-01 +session,1928,4,Safari 18,72,2017-03-19 +user,1929,Anthony,Libbie,37 +session,1929,0,Firefox 35,44,2018-11-11 +session,1929,1,Firefox 45,30,2018-10-12 +session,1929,2,Internet Explorer 23,30,2016-10-01 +session,1929,3,Firefox 28,102,2016-12-10 +user,1930,Le,Gayle,49 +session,1930,0,Internet Explorer 5,57,2018-03-12 +session,1930,1,Internet Explorer 29,20,2016-10-16 +session,1930,2,Firefox 3,35,2017-12-04 +session,1930,3,Safari 32,36,2018-08-23 +user,1931,Myrtis,Trevor,24 +session,1931,0,Safari 8,30,2017-02-10 +session,1931,1,Firefox 6,86,2018-03-30 +session,1931,2,Firefox 29,52,2017-01-25 +user,1932,Eddy,Shavonne,32 +session,1932,0,Safari 14,99,2018-04-24 +session,1932,1,Safari 11,111,2018-01-31 +session,1932,2,Chrome 31,9,2017-05-22 +session,1932,3,Firefox 10,104,2018-11-26 +session,1932,4,Chrome 5,113,2016-09-10 +session,1932,5,Internet Explorer 15,76,2019-02-09 +session,1932,6,Internet Explorer 38,26,2017-06-19 +session,1932,7,Safari 34,61,2018-08-16 +user,1933,Sydney,Jen,42 +session,1933,0,Safari 34,3,2018-01-26 +session,1933,1,Safari 17,40,2017-06-16 +session,1933,2,Firefox 17,89,2018-07-20 +session,1933,3,Firefox 49,75,2017-04-08 +session,1933,4,Chrome 29,94,2017-09-30 +session,1933,5,Chrome 37,115,2017-11-05 +session,1933,6,Chrome 47,36,2017-06-19 +user,1934,Hertha,Sanford,86 +session,1934,0,Chrome 35,63,2018-01-24 +session,1934,1,Safari 42,29,2018-01-04 +session,1934,2,Internet Explorer 39,57,2017-07-25 +session,1934,3,Chrome 32,39,2018-09-25 +session,1934,4,Firefox 38,4,2018-07-06 +session,1934,5,Safari 49,3,2016-08-13 +session,1934,6,Firefox 4,113,2018-04-01 +session,1934,7,Internet Explorer 29,16,2018-08-25 +session,1934,8,Safari 18,106,2018-02-08 +user,1935,Pete,Noel,54 +session,1935,0,Internet Explorer 30,76,2018-06-20 +session,1935,1,Firefox 30,45,2018-04-02 +session,1935,2,Safari 27,26,2017-10-09 +session,1935,3,Firefox 28,78,2017-09-11 +session,1935,4,Firefox 13,68,2017-11-18 +session,1935,5,Firefox 18,85,2018-06-04 +session,1935,6,Internet Explorer 24,109,2017-05-10 +session,1935,7,Firefox 12,104,2018-01-01 +user,1936,Kip,Johnnie,85 +session,1936,0,Internet Explorer 42,59,2018-12-08 +session,1936,1,Chrome 42,104,2019-01-28 +session,1936,2,Firefox 39,44,2018-11-20 +session,1936,3,Chrome 28,100,2018-10-28 +session,1936,4,Internet Explorer 21,94,2017-09-07 +session,1936,5,Internet Explorer 27,22,2016-08-02 +session,1936,6,Safari 24,7,2019-01-29 +session,1936,7,Internet Explorer 42,116,2017-10-30 +session,1936,8,Chrome 49,0,2018-03-31 +session,1936,9,Safari 13,104,2016-12-20 +user,1937,Ophelia,Darren,88 +session,1937,0,Safari 11,48,2018-01-19 +session,1937,1,Internet Explorer 30,75,2018-06-08 +session,1937,2,Firefox 46,48,2017-03-02 +session,1937,3,Safari 48,25,2018-01-19 +user,1938,Tamra,Verline,70 +session,1938,0,Safari 27,69,2018-01-12 +session,1938,1,Chrome 17,107,2016-11-10 +user,1939,Otis,Carri,92 +session,1939,0,Safari 20,24,2018-11-20 +session,1939,1,Chrome 21,31,2016-07-04 +session,1939,2,Chrome 18,85,2018-12-15 +user,1940,Modesto,Georgia,53 +session,1940,0,Internet Explorer 43,70,2017-11-29 +session,1940,1,Safari 21,40,2016-12-01 +session,1940,2,Firefox 37,13,2017-09-01 +session,1940,3,Firefox 29,12,2018-07-12 +session,1940,4,Chrome 15,41,2018-01-05 +session,1940,5,Safari 34,116,2018-10-16 +session,1940,6,Chrome 46,90,2018-09-14 +session,1940,7,Firefox 26,98,2017-02-07 +session,1940,8,Chrome 8,46,2017-03-24 +user,1941,Pablo,Michel,0 +session,1941,0,Internet Explorer 4,67,2016-10-11 +session,1941,1,Internet Explorer 28,58,2016-08-15 +session,1941,2,Firefox 43,44,2018-03-25 +session,1941,3,Safari 33,25,2018-03-19 +session,1941,4,Firefox 45,104,2016-11-19 +user,1942,Golden,Mahalia,75 +session,1942,0,Safari 38,49,2017-02-18 +session,1942,1,Safari 40,47,2016-07-01 +session,1942,2,Internet Explorer 43,81,2016-10-14 +session,1942,3,Safari 17,109,2018-08-13 +session,1942,4,Chrome 30,66,2017-10-09 +session,1942,5,Internet Explorer 12,9,2018-09-27 +session,1942,6,Firefox 34,96,2017-06-23 +session,1942,7,Firefox 7,75,2017-01-20 +user,1943,Norberto,Craig,50 +session,1943,0,Internet Explorer 17,47,2018-05-22 +session,1943,1,Safari 25,116,2017-01-05 +session,1943,2,Internet Explorer 29,93,2018-07-14 +user,1944,Sunny,Carmelo,11 +session,1944,0,Internet Explorer 41,94,2018-08-24 +session,1944,1,Chrome 29,50,2016-08-26 +session,1944,2,Internet Explorer 6,101,2017-12-10 +session,1944,3,Firefox 2,22,2017-09-13 +session,1944,4,Internet Explorer 37,23,2017-03-01 +session,1944,5,Firefox 10,66,2017-08-16 +session,1944,6,Firefox 5,95,2017-02-24 +session,1944,7,Safari 26,42,2016-06-08 +user,1945,Blair,Dawn,99 +session,1945,0,Firefox 16,12,2018-07-25 +session,1945,1,Internet Explorer 35,105,2017-03-19 +session,1945,2,Internet Explorer 24,73,2018-09-05 +session,1945,3,Internet Explorer 6,95,2017-07-02 +session,1945,4,Chrome 4,107,2016-10-27 +session,1945,5,Chrome 23,10,2017-02-22 +user,1946,Rory,Darnell,82 +session,1946,0,Internet Explorer 25,2,2018-05-19 +session,1946,1,Internet Explorer 14,22,2016-06-27 +user,1947,Alfonzo,Stefanie,3 +session,1947,0,Internet Explorer 6,102,2018-04-20 +session,1947,1,Chrome 20,97,2018-10-31 +session,1947,2,Internet Explorer 48,28,2018-03-11 +session,1947,3,Internet Explorer 15,73,2017-01-08 +session,1947,4,Internet Explorer 41,20,2018-03-11 +session,1947,5,Safari 21,71,2017-01-03 +session,1947,6,Chrome 30,75,2016-10-11 +session,1947,7,Chrome 20,110,2018-09-14 +user,1948,Cristal,Aliza,76 +session,1948,0,Safari 28,50,2016-09-21 +session,1948,1,Chrome 17,66,2018-05-29 +session,1948,2,Chrome 14,7,2017-10-14 +session,1948,3,Firefox 2,14,2018-02-03 +session,1948,4,Chrome 26,87,2017-03-29 +session,1948,5,Internet Explorer 41,66,2017-04-29 +session,1948,6,Chrome 29,74,2018-08-26 +user,1949,Christian,Tamika,62 +session,1949,0,Chrome 34,97,2017-05-08 +session,1949,1,Internet Explorer 3,17,2019-01-29 +session,1949,2,Safari 24,68,2018-05-22 +session,1949,3,Safari 24,14,2018-07-03 +session,1949,4,Chrome 34,47,2016-12-20 +session,1949,5,Internet Explorer 29,108,2019-01-12 +session,1949,6,Internet Explorer 28,57,2016-10-15 +user,1950,Cary,Samuel,51 +session,1950,0,Chrome 13,92,2016-05-24 +session,1950,1,Firefox 49,62,2017-11-20 +session,1950,2,Firefox 29,116,2016-08-02 +session,1950,3,Firefox 2,93,2017-12-21 +session,1950,4,Firefox 42,110,2018-03-21 +user,1951,Noah,Vera,85 +session,1951,0,Safari 41,4,2019-01-06 +session,1951,1,Firefox 50,25,2019-01-08 +session,1951,2,Safari 19,71,2018-02-03 +user,1952,Ellis,Hermelinda,36 +session,1952,0,Safari 7,40,2018-01-07 +session,1952,1,Firefox 22,0,2016-06-14 +session,1952,2,Firefox 6,25,2016-10-27 +session,1952,3,Internet Explorer 48,7,2017-05-31 +session,1952,4,Internet Explorer 25,94,2017-09-10 +session,1952,5,Safari 14,28,2018-06-03 +session,1952,6,Firefox 23,32,2018-01-19 +session,1952,7,Safari 40,57,2018-03-25 +user,1953,Daine,Cedric,76 +session,1953,0,Safari 32,92,2018-11-28 +session,1953,1,Chrome 42,23,2017-09-21 +session,1953,2,Chrome 8,89,2016-06-28 +user,1954,Rowena,Charlotte,35 +session,1954,0,Safari 44,77,2016-07-16 +session,1954,1,Safari 1,45,2017-11-10 +session,1954,2,Firefox 37,78,2017-12-30 +session,1954,3,Safari 28,27,2016-07-01 +session,1954,4,Firefox 47,89,2017-05-14 +session,1954,5,Firefox 6,61,2018-03-31 +user,1955,Brandon,Avis,53 +session,1955,0,Chrome 35,80,2016-11-23 +session,1955,1,Chrome 23,23,2017-03-25 +session,1955,2,Internet Explorer 5,56,2016-06-11 +session,1955,3,Firefox 10,38,2016-09-23 +session,1955,4,Safari 1,63,2018-10-11 +session,1955,5,Safari 22,13,2018-09-21 +user,1956,Loni,Coleman,24 +session,1956,0,Internet Explorer 40,50,2018-06-11 +session,1956,1,Safari 1,117,2017-09-02 +session,1956,2,Safari 2,57,2019-02-12 +session,1956,3,Chrome 9,83,2017-09-17 +session,1956,4,Safari 48,110,2018-04-27 +session,1956,5,Internet Explorer 25,105,2018-01-18 +session,1956,6,Internet Explorer 13,91,2016-11-20 +session,1956,7,Safari 27,80,2017-10-08 +session,1956,8,Internet Explorer 48,53,2016-09-05 +user,1957,Roger,Gwenn,23 +session,1957,0,Safari 43,7,2017-10-31 +session,1957,1,Chrome 28,59,2016-12-02 +session,1957,2,Firefox 37,84,2016-10-23 +session,1957,3,Chrome 39,62,2016-08-07 +session,1957,4,Internet Explorer 4,47,2017-05-01 +session,1957,5,Firefox 8,99,2016-11-24 +session,1957,6,Chrome 15,59,2017-03-29 +session,1957,7,Internet Explorer 8,17,2016-09-12 +session,1957,8,Chrome 1,19,2016-10-12 +session,1957,9,Safari 47,35,2018-02-17 +user,1958,Fannie,Reginia,10 +session,1958,0,Safari 35,38,2017-10-19 +session,1958,1,Chrome 31,2,2018-08-15 +session,1958,2,Firefox 29,39,2017-01-28 +session,1958,3,Safari 17,31,2017-06-11 +user,1959,Rogelio,Alec,97 +session,1959,0,Internet Explorer 41,66,2016-10-17 +session,1959,1,Chrome 41,63,2017-02-26 +session,1959,2,Safari 2,66,2017-06-17 +session,1959,3,Safari 27,105,2017-04-14 +session,1959,4,Internet Explorer 7,118,2017-03-26 +session,1959,5,Firefox 48,6,2017-02-21 +session,1959,6,Safari 37,5,2018-02-12 +session,1959,7,Safari 24,49,2018-03-03 +session,1959,8,Firefox 35,71,2017-05-17 +session,1959,9,Safari 24,33,2016-12-17 +user,1960,Moshe,Larita,59 +session,1960,0,Firefox 2,102,2016-05-23 +session,1960,1,Internet Explorer 5,15,2016-10-29 +session,1960,2,Chrome 34,44,2017-07-09 +session,1960,3,Chrome 30,45,2017-08-23 +session,1960,4,Firefox 2,25,2019-02-06 +session,1960,5,Internet Explorer 37,109,2018-12-14 +user,1961,Lovie,Doretta,89 +session,1961,0,Internet Explorer 32,69,2017-08-20 +session,1961,1,Safari 33,99,2017-07-08 +session,1961,2,Internet Explorer 4,28,2018-02-09 +session,1961,3,Firefox 46,82,2017-03-17 +session,1961,4,Chrome 39,52,2016-10-27 +session,1961,5,Firefox 27,52,2016-10-16 +session,1961,6,Firefox 45,26,2018-02-13 +user,1962,Kraig,Lita,58 +session,1962,0,Firefox 30,44,2019-01-25 +session,1962,1,Internet Explorer 49,88,2017-02-01 +session,1962,2,Firefox 40,55,2017-12-19 +session,1962,3,Firefox 6,109,2018-01-05 +session,1962,4,Safari 25,109,2019-01-11 +session,1962,5,Safari 47,66,2018-06-04 +session,1962,6,Internet Explorer 25,91,2017-02-11 +user,1963,Joann,Somer,74 +session,1963,0,Chrome 7,4,2017-06-15 +session,1963,1,Chrome 16,57,2017-09-04 +session,1963,2,Chrome 20,66,2017-08-16 +session,1963,3,Safari 39,101,2017-07-29 +session,1963,4,Chrome 47,18,2017-05-03 +session,1963,5,Safari 28,87,2017-04-30 +session,1963,6,Internet Explorer 48,25,2017-05-11 +session,1963,7,Chrome 16,46,2018-04-25 +session,1963,8,Safari 31,10,2017-12-27 +user,1964,Sadye,Graham,2 +session,1964,0,Safari 16,63,2017-05-13 +session,1964,1,Firefox 42,58,2018-07-23 +user,1965,Jin,Raleigh,43 +session,1965,0,Chrome 13,106,2018-11-02 +session,1965,1,Internet Explorer 34,14,2017-02-23 +session,1965,2,Internet Explorer 33,42,2017-09-25 +session,1965,3,Safari 31,115,2016-07-18 +user,1966,Blanch,Melida,9 +session,1966,0,Chrome 37,52,2016-09-16 +session,1966,1,Chrome 6,23,2017-12-15 +session,1966,2,Safari 33,29,2018-12-09 +session,1966,3,Safari 5,113,2018-04-29 +session,1966,4,Chrome 25,26,2018-02-12 +session,1966,5,Internet Explorer 31,62,2017-01-15 +session,1966,6,Firefox 49,108,2017-07-17 +session,1966,7,Safari 50,13,2016-06-25 +session,1966,8,Safari 19,73,2018-12-11 +user,1967,Seymour,Jesus,76 +session,1967,0,Chrome 2,25,2018-09-07 +session,1967,1,Internet Explorer 27,10,2017-10-12 +session,1967,2,Safari 27,82,2016-11-19 +session,1967,3,Safari 28,6,2016-06-23 +session,1967,4,Internet Explorer 7,106,2017-03-24 +session,1967,5,Safari 44,38,2017-07-25 +session,1967,6,Internet Explorer 14,17,2017-06-18 +session,1967,7,Internet Explorer 22,44,2018-05-22 +session,1967,8,Internet Explorer 37,78,2016-06-03 +user,1968,Sebastian,Shay,37 +session,1968,0,Chrome 46,63,2017-09-04 +session,1968,1,Firefox 39,111,2018-06-09 +session,1968,2,Safari 2,50,2018-04-21 +session,1968,3,Chrome 40,25,2017-02-20 +session,1968,4,Internet Explorer 6,99,2019-01-14 +user,1969,Charla,Deena,19 +session,1969,0,Safari 25,8,2016-11-17 +session,1969,1,Firefox 37,119,2017-04-29 diff --git a/spec/support/data_125kb.txt b/spec/support/data_125kb.txt new file mode 100644 index 0000000..907e3a6 --- /dev/null +++ b/spec/support/data_125kb.txt @@ -0,0 +1,3268 @@ +user,0,Hazel,Margarete,19 +session,0,0,Internet Explorer 50,81,2018-02-01 +session,0,1,Safari 27,88,2017-10-28 +session,0,2,Firefox 13,92,2016-11-02 +session,0,3,Internet Explorer 40,37,2017-05-31 +session,0,4,Internet Explorer 16,37,2017-11-21 +session,0,5,Safari 19,22,2017-11-30 +session,0,6,Chrome 31,74,2016-08-22 +session,0,7,Firefox 46,76,2019-02-04 +user,1,Wilfredo,Louetta,40 +session,1,0,Firefox 38,68,2018-04-24 +session,1,1,Internet Explorer 41,27,2016-09-06 +session,1,2,Internet Explorer 1,74,2017-01-05 +session,1,3,Firefox 47,28,2017-06-09 +session,1,4,Internet Explorer 22,98,2016-11-03 +user,2,Cecil,Rosalba,44 +session,2,0,Safari 26,96,2018-08-20 +session,2,1,Internet Explorer 10,3,2019-01-03 +session,2,2,Internet Explorer 47,52,2016-07-31 +session,2,3,Safari 34,37,2017-09-14 +session,2,4,Internet Explorer 17,22,2016-07-10 +session,2,5,Firefox 26,76,2017-02-06 +session,2,6,Chrome 14,88,2017-02-19 +session,2,7,Safari 31,113,2018-04-12 +session,2,8,Chrome 20,72,2016-09-04 +session,2,9,Safari 13,14,2017-07-26 +user,3,Kieth,Noble,20 +session,3,0,Safari 23,1,2018-02-19 +session,3,1,Internet Explorer 24,92,2018-05-15 +session,3,2,Chrome 6,91,2017-01-06 +session,3,3,Internet Explorer 47,7,2016-09-01 +session,3,4,Firefox 4,20,2017-03-22 +session,3,5,Internet Explorer 23,17,2016-12-02 +session,3,6,Internet Explorer 5,91,2017-12-29 +session,3,7,Internet Explorer 23,2,2017-03-17 +user,4,Corie,Erika,32 +session,4,0,Chrome 11,49,2019-02-05 +session,4,1,Safari 44,18,2017-09-01 +session,4,2,Firefox 32,88,2017-06-01 +session,4,3,Chrome 28,82,2018-03-18 +session,4,4,Firefox 38,36,2018-06-11 +session,4,5,Safari 14,11,2017-04-06 +session,4,6,Safari 27,116,2017-05-30 +session,4,7,Safari 24,36,2018-06-12 +session,4,8,Firefox 3,28,2018-01-05 +user,5,Lou,Lean,39 +session,5,0,Internet Explorer 42,74,2017-08-20 +session,5,1,Internet Explorer 1,80,2018-11-22 +session,5,2,Chrome 18,105,2018-01-17 +user,6,Deedra,Minta,44 +session,6,0,Firefox 32,27,2017-07-07 +session,6,1,Firefox 45,48,2017-07-22 +session,6,2,Safari 33,55,2018-07-09 +session,6,3,Safari 1,14,2016-11-08 +session,6,4,Firefox 39,18,2017-02-06 +session,6,5,Safari 12,52,2016-07-18 +session,6,6,Firefox 18,84,2016-08-16 +session,6,7,Chrome 2,114,2016-10-18 +user,7,Loria,Vernetta,68 +session,7,0,Safari 14,51,2019-01-25 +session,7,1,Internet Explorer 29,88,2016-10-12 +session,7,2,Firefox 32,55,2016-11-15 +session,7,3,Safari 4,20,2016-11-19 +session,7,4,Chrome 42,95,2018-02-10 +session,7,5,Safari 36,88,2018-03-30 +session,7,6,Safari 7,74,2017-05-27 +session,7,7,Safari 18,67,2017-02-22 +session,7,8,Chrome 24,26,2018-11-01 +user,8,Abdul,Venessa,55 +session,8,0,Internet Explorer 1,60,2018-12-02 +session,8,1,Chrome 3,63,2016-10-02 +session,8,2,Safari 41,99,2017-01-12 +session,8,3,Firefox 13,69,2017-04-17 +session,8,4,Safari 31,115,2018-04-08 +session,8,5,Chrome 30,77,2019-01-28 +session,8,6,Safari 43,56,2017-05-07 +user,9,Brooks,Janae,6 +session,9,0,Internet Explorer 36,11,2018-08-11 +user,10,Rey,Coy,95 +session,10,0,Internet Explorer 27,115,2017-08-05 +session,10,1,Internet Explorer 21,119,2018-11-15 +session,10,2,Internet Explorer 2,0,2016-06-10 +session,10,3,Safari 13,44,2018-04-07 +session,10,4,Firefox 37,26,2018-05-04 +user,11,Cyrus,Danyel,41 +session,11,0,Firefox 34,118,2016-10-14 +session,11,1,Internet Explorer 34,45,2017-10-10 +session,11,2,Internet Explorer 38,70,2017-07-10 +user,12,Valentin,Emilio,21 +session,12,0,Chrome 13,28,2018-04-23 +session,12,1,Firefox 35,17,2018-11-29 +session,12,2,Firefox 19,68,2018-05-03 +session,12,3,Internet Explorer 14,2,2016-09-18 +session,12,4,Firefox 15,97,2018-04-15 +session,12,5,Safari 26,40,2016-06-13 +user,13,Mitchell,Hobert,78 +session,13,0,Internet Explorer 32,89,2019-02-07 +session,13,1,Firefox 17,0,2017-11-05 +session,13,2,Chrome 17,117,2018-12-12 +session,13,3,Firefox 28,3,2016-12-01 +session,13,4,Firefox 9,26,2018-08-05 +session,13,5,Safari 27,113,2017-09-02 +session,13,6,Internet Explorer 20,92,2018-08-17 +session,13,7,Safari 11,103,2016-11-11 +session,13,8,Safari 36,26,2018-06-18 +session,13,9,Internet Explorer 22,33,2018-07-15 +user,14,Yuonne,Nicholle,52 +session,14,0,Safari 45,112,2018-01-23 +session,14,1,Firefox 50,54,2017-08-13 +session,14,2,Chrome 21,53,2018-10-08 +session,14,3,Firefox 24,30,2018-12-25 +session,14,4,Chrome 26,117,2017-09-09 +session,14,5,Chrome 16,38,2019-01-29 +session,14,6,Chrome 48,72,2016-08-12 +session,14,7,Safari 23,36,2016-10-05 +session,14,8,Firefox 12,45,2018-05-17 +user,15,Marlene,Ling,76 +session,15,0,Chrome 50,60,2018-06-29 +user,16,Salina,Eddie,27 +session,16,0,Internet Explorer 26,10,2018-01-10 +session,16,1,Chrome 23,13,2017-01-04 +user,17,Ernestine,Clifton,6 +session,17,0,Chrome 13,28,2016-12-05 +session,17,1,Chrome 10,97,2017-11-13 +session,17,2,Safari 34,39,2017-08-24 +session,17,3,Safari 48,27,2018-03-27 +session,17,4,Internet Explorer 32,76,2016-10-22 +session,17,5,Firefox 42,106,2016-12-23 +session,17,6,Chrome 13,72,2018-01-08 +session,17,7,Chrome 24,37,2017-12-21 +user,18,Homer,Odelia,62 +session,18,0,Safari 10,3,2018-01-19 +session,18,1,Internet Explorer 25,81,2017-11-21 +session,18,2,Firefox 4,110,2017-05-17 +session,18,3,Firefox 12,92,2018-01-15 +session,18,4,Safari 43,88,2017-02-04 +session,18,5,Internet Explorer 42,19,2018-06-30 +session,18,6,Firefox 17,47,2016-09-10 +user,19,Jean,Gregg,96 +session,19,0,Internet Explorer 49,12,2016-10-19 +session,19,1,Firefox 36,56,2018-04-20 +session,19,2,Internet Explorer 32,3,2018-01-02 +session,19,3,Internet Explorer 20,85,2018-03-12 +session,19,4,Internet Explorer 21,21,2017-01-10 +session,19,5,Firefox 46,99,2017-08-19 +user,20,Jacinta,Erinn,34 +session,20,0,Chrome 44,49,2018-01-29 +session,20,1,Internet Explorer 33,90,2017-11-02 +session,20,2,Safari 22,44,2018-10-14 +session,20,3,Firefox 39,32,2019-01-07 +user,21,Melita,Mika,45 +session,21,0,Firefox 30,1,2016-08-03 +session,21,1,Safari 48,64,2017-05-10 +session,21,2,Chrome 40,61,2018-10-07 +session,21,3,Safari 37,0,2018-05-09 +session,21,4,Chrome 12,98,2017-02-24 +user,22,Matthew,Lucretia,23 +session,22,0,Internet Explorer 23,86,2017-08-02 +user,23,Maurice,Paz,38 +session,23,0,Internet Explorer 2,51,2017-09-28 +session,23,1,Internet Explorer 11,60,2016-08-02 +session,23,2,Firefox 31,32,2017-04-30 +user,24,Jessica,Brandi,8 +session,24,0,Chrome 12,111,2017-09-18 +user,25,Marget,Ming,58 +session,25,0,Chrome 31,51,2018-05-18 +session,25,1,Safari 9,63,2016-12-20 +session,25,2,Firefox 48,75,2018-03-26 +session,25,3,Firefox 16,51,2017-09-02 +user,26,Audria,Roselyn,85 +session,26,0,Firefox 22,84,2018-02-13 +session,26,1,Safari 14,52,2017-03-17 +session,26,2,Firefox 36,96,2016-11-12 +session,26,3,Firefox 6,16,2017-12-08 +user,27,Leilani,Ines,86 +session,27,0,Firefox 29,91,2016-10-03 +session,27,1,Chrome 44,66,2016-05-27 +session,27,2,Safari 9,90,2017-08-28 +user,28,Philip,Daysi,2 +session,28,0,Internet Explorer 23,27,2018-09-21 +session,28,1,Safari 4,116,2018-09-19 +user,29,Delmar,Otilia,44 +session,29,0,Safari 17,0,2016-08-02 +session,29,1,Internet Explorer 39,101,2017-04-21 +session,29,2,Internet Explorer 8,0,2016-10-19 +session,29,3,Internet Explorer 20,36,2017-02-05 +session,29,4,Internet Explorer 25,73,2018-07-31 +session,29,5,Chrome 18,49,2017-12-14 +session,29,6,Firefox 24,81,2018-09-06 +user,30,Newton,Brianna,34 +session,30,0,Chrome 38,110,2016-11-21 +session,30,1,Firefox 34,47,2017-08-27 +session,30,2,Internet Explorer 27,74,2017-07-13 +session,30,3,Internet Explorer 29,118,2018-03-14 +session,30,4,Chrome 16,24,2017-02-11 +session,30,5,Firefox 37,85,2019-01-26 +session,30,6,Firefox 34,22,2016-10-19 +session,30,7,Firefox 14,14,2018-04-11 +session,30,8,Firefox 27,33,2017-12-07 +user,31,Sherman,Pearly,65 +session,31,0,Firefox 5,113,2016-05-22 +session,31,1,Safari 1,50,2018-08-06 +session,31,2,Internet Explorer 6,29,2016-06-13 +session,31,3,Internet Explorer 48,103,2017-12-15 +session,31,4,Firefox 32,106,2018-07-26 +session,31,5,Safari 27,105,2016-12-08 +session,31,6,Safari 5,44,2016-09-19 +session,31,7,Safari 41,21,2017-02-19 +session,31,8,Firefox 22,66,2017-11-17 +user,32,Steve,Esmeralda,73 +session,32,0,Chrome 41,64,2018-07-13 +session,32,1,Firefox 11,50,2016-12-18 +session,32,2,Firefox 38,90,2018-12-26 +session,32,3,Firefox 41,114,2018-04-01 +session,32,4,Safari 49,22,2018-05-28 +session,32,5,Firefox 12,72,2017-09-12 +user,33,Young,Todd,59 +session,33,0,Chrome 10,59,2016-12-28 +session,33,1,Internet Explorer 28,92,2018-06-14 +session,33,2,Chrome 28,29,2017-04-28 +session,33,3,Firefox 1,52,2018-04-25 +session,33,4,Safari 46,25,2017-09-20 +session,33,5,Safari 32,57,2016-10-07 +user,34,Wen,Sherill,39 +session,34,0,Internet Explorer 18,92,2016-09-05 +session,34,1,Firefox 16,95,2017-08-27 +user,35,Margarita,Aileen,78 +session,35,0,Chrome 9,72,2018-02-27 +session,35,1,Firefox 27,18,2018-05-23 +session,35,2,Firefox 42,113,2016-07-22 +session,35,3,Safari 5,27,2018-09-14 +session,35,4,Chrome 49,17,2018-10-24 +session,35,5,Internet Explorer 17,75,2017-08-27 +session,35,6,Internet Explorer 46,49,2016-09-12 +user,36,Rich,Maddie,58 +session,36,0,Chrome 37,36,2016-08-22 +session,36,1,Chrome 21,81,2016-05-31 +session,36,2,Safari 38,71,2018-10-04 +user,37,Marcie,Modesto,76 +session,37,0,Internet Explorer 37,45,2017-01-06 +session,37,1,Chrome 27,58,2018-04-14 +session,37,2,Safari 43,108,2018-04-05 +session,37,3,Firefox 29,67,2016-12-09 +session,37,4,Firefox 43,90,2016-10-24 +session,37,5,Firefox 24,90,2017-04-30 +session,37,6,Chrome 3,104,2016-12-20 +session,37,7,Firefox 47,106,2017-06-15 +user,38,Amparo,Elvis,71 +session,38,0,Safari 9,74,2017-12-08 +session,38,1,Chrome 50,103,2016-05-30 +session,38,2,Internet Explorer 23,84,2018-06-21 +session,38,3,Chrome 6,67,2018-04-15 +session,38,4,Chrome 26,99,2017-10-19 +session,38,5,Chrome 36,73,2016-11-20 +session,38,6,Chrome 28,1,2018-01-26 +session,38,7,Chrome 38,21,2017-02-26 +user,39,Bailey,Brittanie,58 +session,39,0,Firefox 31,52,2018-12-19 +session,39,1,Safari 12,15,2017-10-16 +session,39,2,Safari 28,14,2016-11-08 +session,39,3,Chrome 50,60,2017-07-02 +user,40,Tawanda,Georgeann,70 +session,40,0,Safari 21,51,2018-05-02 +session,40,1,Firefox 34,85,2017-11-25 +session,40,2,Firefox 31,0,2017-08-11 +session,40,3,Internet Explorer 31,88,2018-01-06 +user,41,Jonnie,Louise,57 +session,41,0,Internet Explorer 16,7,2018-12-07 +session,41,1,Chrome 41,74,2019-02-03 +session,41,2,Safari 11,98,2018-11-28 +session,41,3,Firefox 16,7,2018-03-17 +session,41,4,Chrome 49,99,2018-10-10 +session,41,5,Firefox 46,18,2018-01-04 +session,41,6,Safari 6,54,2017-03-02 +session,41,7,Chrome 2,113,2016-08-18 +session,41,8,Safari 6,54,2019-02-11 +session,41,9,Firefox 46,40,2016-05-22 +user,42,Jamar,Annita,17 +session,42,0,Safari 8,82,2018-04-28 +session,42,1,Chrome 41,82,2016-05-28 +session,42,2,Firefox 47,35,2018-08-09 +user,43,Kurt,Camie,33 +session,43,0,Internet Explorer 16,90,2018-07-22 +session,43,1,Firefox 46,16,2017-07-23 +session,43,2,Safari 47,19,2016-09-26 +user,44,Gail,Morgan,79 +session,44,0,Safari 46,101,2018-10-31 +session,44,1,Firefox 49,42,2017-05-31 +session,44,2,Safari 50,61,2018-10-24 +session,44,3,Chrome 23,89,2016-07-29 +user,45,Trenton,Carlee,6 +session,45,0,Internet Explorer 27,70,2017-06-05 +session,45,1,Chrome 1,36,2017-05-04 +session,45,2,Firefox 5,29,2018-08-30 +session,45,3,Internet Explorer 38,81,2018-08-27 +session,45,4,Chrome 50,21,2017-01-21 +session,45,5,Internet Explorer 5,29,2017-12-14 +session,45,6,Firefox 42,102,2017-05-16 +session,45,7,Chrome 44,101,2017-12-31 +session,45,8,Internet Explorer 45,17,2019-02-08 +user,46,Ailene,Melba,3 +session,46,0,Chrome 8,73,2019-01-27 +session,46,1,Safari 43,6,2016-10-21 +session,46,2,Firefox 35,22,2018-09-01 +session,46,3,Firefox 29,19,2016-09-26 +session,46,4,Firefox 45,118,2017-01-11 +session,46,5,Chrome 38,47,2017-04-18 +session,46,6,Safari 40,100,2016-10-28 +user,47,Mohamed,Lorina,58 +session,47,0,Safari 48,75,2016-08-03 +session,47,1,Internet Explorer 27,18,2018-12-10 +session,47,2,Internet Explorer 39,117,2017-01-30 +session,47,3,Internet Explorer 42,90,2017-02-21 +session,47,4,Safari 47,15,2016-12-24 +session,47,5,Internet Explorer 38,59,2018-09-27 +session,47,6,Safari 6,4,2016-10-13 +user,48,Abbie,Young,83 +session,48,0,Safari 1,46,2017-08-17 +session,48,1,Firefox 8,4,2017-01-15 +session,48,2,Firefox 15,1,2018-09-06 +session,48,3,Chrome 4,46,2018-11-27 +session,48,4,Firefox 11,36,2016-11-29 +session,48,5,Chrome 34,67,2018-08-28 +session,48,6,Internet Explorer 50,27,2016-09-23 +user,49,Coleman,Mardell,78 +session,49,0,Chrome 32,46,2018-08-03 +session,49,1,Firefox 15,73,2018-10-24 +session,49,2,Safari 34,67,2016-07-16 +session,49,3,Safari 39,6,2019-02-04 +session,49,4,Firefox 37,31,2018-08-28 +session,49,5,Firefox 33,103,2016-09-25 +session,49,6,Chrome 12,68,2016-06-15 +user,50,Edwin,Joseph,20 +session,50,0,Safari 37,55,2017-10-04 +session,50,1,Safari 21,111,2018-04-27 +user,51,Sonya,Gay,42 +session,51,0,Chrome 34,107,2017-05-31 +session,51,1,Internet Explorer 32,1,2016-11-07 +session,51,2,Chrome 38,109,2018-07-02 +session,51,3,Internet Explorer 41,86,2017-08-08 +session,51,4,Internet Explorer 32,26,2016-09-17 +session,51,5,Firefox 10,52,2016-05-24 +session,51,6,Safari 5,9,2018-03-19 +session,51,7,Chrome 28,44,2017-01-28 +user,52,Aaron,Debbra,66 +session,52,0,Firefox 10,35,2016-10-24 +session,52,1,Safari 29,16,2016-09-17 +session,52,2,Chrome 27,66,2016-12-27 +session,52,3,Firefox 36,1,2018-06-20 +session,52,4,Internet Explorer 9,25,2017-05-07 +session,52,5,Internet Explorer 31,62,2016-06-19 +session,52,6,Firefox 44,63,2018-06-29 +session,52,7,Safari 11,56,2017-07-25 +user,53,Markus,Shyla,36 +session,53,0,Chrome 48,94,2018-05-24 +session,53,1,Chrome 6,72,2017-07-10 +session,53,2,Safari 1,21,2017-03-20 +session,53,3,Safari 6,107,2017-08-28 +session,53,4,Internet Explorer 17,67,2017-09-28 +session,53,5,Chrome 43,117,2017-10-15 +user,54,Velia,Corrine,63 +session,54,0,Firefox 27,92,2018-03-16 +user,55,Percy,Tarra,30 +session,55,0,Safari 27,14,2017-04-27 +session,55,1,Safari 45,15,2017-02-03 +session,55,2,Chrome 1,40,2016-06-26 +session,55,3,Internet Explorer 27,3,2017-09-12 +session,55,4,Internet Explorer 45,18,2017-09-27 +user,56,Laure,Lee,53 +session,56,0,Chrome 18,89,2018-04-30 +session,56,1,Firefox 23,97,2018-02-28 +session,56,2,Firefox 49,95,2018-05-03 +session,56,3,Firefox 42,84,2017-06-18 +user,57,Claude,Lauren,57 +session,57,0,Internet Explorer 31,20,2018-06-25 +session,57,1,Internet Explorer 29,37,2017-05-04 +session,57,2,Firefox 6,81,2018-06-10 +session,57,3,Internet Explorer 23,53,2018-10-14 +session,57,4,Firefox 15,54,2016-05-24 +session,57,5,Chrome 22,51,2017-02-07 +session,57,6,Chrome 44,0,2018-08-02 +session,57,7,Firefox 17,58,2016-10-02 +session,57,8,Internet Explorer 40,119,2018-07-24 +user,58,Timmy,Monica,41 +session,58,0,Internet Explorer 7,5,2017-05-07 +session,58,1,Firefox 16,82,2018-09-10 +session,58,2,Safari 26,99,2016-08-27 +session,58,3,Firefox 6,119,2018-10-31 +session,58,4,Firefox 29,42,2018-06-13 +session,58,5,Firefox 19,92,2016-08-25 +user,59,Mark,Shasta,95 +session,59,0,Chrome 50,102,2017-05-25 +session,59,1,Safari 39,25,2017-05-31 +session,59,2,Firefox 33,60,2016-06-25 +session,59,3,Safari 12,54,2018-05-09 +session,59,4,Internet Explorer 16,84,2018-10-13 +session,59,5,Chrome 39,27,2018-10-31 +session,59,6,Chrome 38,113,2018-07-05 +session,59,7,Firefox 45,109,2017-06-12 +user,60,Rhona,Alline,14 +session,60,0,Internet Explorer 2,35,2017-10-21 +session,60,1,Chrome 11,61,2016-09-01 +session,60,2,Firefox 13,42,2019-02-11 +session,60,3,Chrome 5,48,2017-02-11 +session,60,4,Safari 24,35,2018-09-05 +session,60,5,Firefox 44,115,2016-06-07 +user,61,Lester,Margaret,34 +session,61,0,Internet Explorer 18,98,2018-08-23 +session,61,1,Chrome 5,86,2018-12-03 +user,62,Renna,Sam,59 +session,62,0,Internet Explorer 27,73,2018-12-14 +session,62,1,Internet Explorer 49,73,2018-11-30 +session,62,2,Internet Explorer 5,113,2016-11-14 +user,63,Jacquline,Marth,98 +session,63,0,Firefox 43,77,2018-12-16 +session,63,1,Safari 18,84,2016-12-11 +user,64,Alia,Mary,74 +session,64,0,Internet Explorer 46,37,2016-11-26 +session,64,1,Safari 15,53,2016-12-06 +session,64,2,Internet Explorer 31,18,2017-01-01 +session,64,3,Safari 43,112,2016-10-05 +session,64,4,Firefox 35,76,2017-03-16 +session,64,5,Chrome 17,61,2018-03-25 +session,64,6,Internet Explorer 37,26,2018-07-31 +session,64,7,Chrome 36,55,2016-12-13 +session,64,8,Safari 4,66,2017-05-27 +user,65,Patricia,Winston,65 +session,65,0,Internet Explorer 35,118,2018-09-29 +session,65,1,Firefox 14,27,2017-05-28 +session,65,2,Chrome 18,15,2017-06-10 +session,65,3,Firefox 26,82,2016-11-23 +session,65,4,Safari 32,114,2016-09-05 +session,65,5,Internet Explorer 17,52,2016-11-05 +session,65,6,Chrome 44,107,2018-03-26 +session,65,7,Firefox 4,42,2017-05-15 +session,65,8,Internet Explorer 50,47,2017-10-13 +user,66,Jerry,Nicolasa,83 +session,66,0,Firefox 20,80,2017-07-23 +user,67,Randal,Pamella,16 +session,67,0,Chrome 37,10,2018-01-07 +session,67,1,Chrome 42,6,2017-01-26 +session,67,2,Firefox 34,14,2018-07-21 +user,68,Olen,Leia,88 +session,68,0,Chrome 35,47,2016-08-04 +session,68,1,Firefox 10,3,2018-09-15 +user,69,Jarod,Terence,28 +session,69,0,Internet Explorer 16,100,2016-08-06 +user,70,Jamie,Jeremy,32 +session,70,0,Internet Explorer 41,102,2018-04-24 +session,70,1,Firefox 33,46,2017-11-19 +session,70,2,Firefox 20,106,2018-06-30 +session,70,3,Safari 43,106,2018-05-03 +session,70,4,Internet Explorer 35,29,2018-03-18 +session,70,5,Chrome 34,20,2018-08-31 +session,70,6,Safari 44,74,2017-03-31 +session,70,7,Firefox 23,78,2017-04-20 +session,70,8,Internet Explorer 14,29,2018-07-14 +session,70,9,Internet Explorer 18,34,2018-08-11 +user,71,Hung,Delfina,63 +session,71,0,Chrome 11,0,2018-12-21 +session,71,1,Chrome 13,73,2018-11-11 +session,71,2,Internet Explorer 39,103,2016-11-29 +session,71,3,Chrome 11,74,2017-08-04 +session,71,4,Safari 35,90,2019-02-09 +session,71,5,Chrome 34,67,2019-02-12 +session,71,6,Chrome 13,68,2018-01-23 +session,71,7,Chrome 24,59,2018-01-27 +user,72,Kenisha,Belle,16 +session,72,0,Internet Explorer 42,72,2018-04-25 +session,72,1,Safari 2,75,2018-04-24 +session,72,2,Chrome 10,24,2016-06-14 +session,72,3,Chrome 40,113,2017-03-18 +session,72,4,Safari 37,13,2016-12-11 +session,72,5,Chrome 44,31,2018-12-19 +session,72,6,Internet Explorer 18,83,2018-03-19 +session,72,7,Chrome 45,4,2016-11-07 +session,72,8,Internet Explorer 22,83,2017-12-08 +session,72,9,Firefox 37,25,2018-09-09 +user,73,Tien,Kenyetta,30 +session,73,0,Firefox 38,99,2017-06-25 +session,73,1,Internet Explorer 41,80,2018-06-18 +session,73,2,Firefox 1,6,2017-08-09 +session,73,3,Firefox 15,69,2016-12-27 +session,73,4,Internet Explorer 42,96,2016-09-28 +user,74,Samantha,Tama,72 +session,74,0,Safari 33,12,2016-06-23 +user,75,Tyler,Santa,21 +session,75,0,Internet Explorer 40,102,2018-07-04 +session,75,1,Firefox 13,5,2016-06-05 +session,75,2,Safari 46,0,2016-09-16 +session,75,3,Firefox 37,107,2018-11-24 +session,75,4,Chrome 3,15,2018-12-29 +user,76,Jerome,Corene,46 +session,76,0,Chrome 23,42,2017-05-03 +session,76,1,Internet Explorer 8,44,2017-07-31 +session,76,2,Safari 1,71,2017-03-08 +session,76,3,Chrome 43,3,2018-03-31 +session,76,4,Chrome 35,22,2017-04-26 +session,76,5,Firefox 37,21,2016-11-01 +user,77,Lazaro,Raven,33 +session,77,0,Internet Explorer 33,31,2018-12-24 +session,77,1,Safari 18,8,2018-09-11 +session,77,2,Safari 23,86,2016-06-30 +session,77,3,Safari 9,91,2016-11-03 +session,77,4,Safari 14,22,2017-10-29 +session,77,5,Safari 3,114,2019-01-15 +session,77,6,Chrome 2,9,2017-04-06 +session,77,7,Safari 42,73,2017-03-29 +user,78,Normand,Sergio,14 +session,78,0,Firefox 45,92,2016-05-31 +session,78,1,Internet Explorer 31,109,2018-03-05 +session,78,2,Safari 17,65,2017-10-05 +user,79,Delois,Evelynn,78 +session,79,0,Firefox 19,56,2016-08-05 +user,80,Leota,Iva,68 +session,80,0,Chrome 5,66,2017-07-15 +session,80,1,Chrome 26,113,2017-09-09 +user,81,Pa,Therese,5 +session,81,0,Safari 43,53,2018-11-03 +session,81,1,Internet Explorer 44,27,2016-10-08 +session,81,2,Safari 16,10,2018-10-29 +session,81,3,Safari 20,22,2017-03-25 +session,81,4,Firefox 44,37,2018-07-06 +session,81,5,Safari 14,8,2017-12-14 +user,82,Anastacia,Napoleon,16 +session,82,0,Chrome 23,46,2017-06-19 +session,82,1,Chrome 31,95,2018-07-14 +session,82,2,Safari 21,104,2016-12-14 +session,82,3,Internet Explorer 30,2,2017-04-03 +session,82,4,Chrome 9,29,2017-12-26 +user,83,Deetta,Dahlia,37 +session,83,0,Internet Explorer 32,114,2018-10-17 +session,83,1,Internet Explorer 23,53,2017-02-11 +session,83,2,Safari 7,41,2017-06-30 +session,83,3,Firefox 15,55,2017-12-17 +session,83,4,Safari 17,70,2017-02-26 +session,83,5,Firefox 19,22,2018-04-04 +session,83,6,Firefox 39,57,2018-02-03 +session,83,7,Internet Explorer 38,45,2017-03-18 +user,84,Lorraine,Abram,68 +session,84,0,Firefox 27,32,2018-01-27 +session,84,1,Internet Explorer 1,85,2018-04-14 +session,84,2,Internet Explorer 31,11,2016-08-29 +session,84,3,Firefox 26,115,2017-04-23 +user,85,Millard,Tashia,58 +session,85,0,Safari 13,40,2018-10-01 +session,85,1,Safari 11,21,2018-09-29 +session,85,2,Firefox 39,37,2017-06-01 +session,85,3,Internet Explorer 39,95,2019-01-15 +session,85,4,Safari 40,73,2016-10-18 +session,85,5,Chrome 33,16,2018-01-15 +session,85,6,Firefox 1,13,2018-03-03 +session,85,7,Internet Explorer 46,45,2017-02-28 +session,85,8,Safari 3,96,2018-09-01 +user,86,Floretta,Brandon,28 +session,86,0,Safari 21,20,2017-05-21 +session,86,1,Safari 25,1,2017-08-19 +session,86,2,Safari 49,95,2018-12-27 +session,86,3,Internet Explorer 16,59,2016-11-27 +session,86,4,Firefox 16,18,2016-07-19 +session,86,5,Chrome 34,92,2019-01-16 +session,86,6,Internet Explorer 14,5,2017-08-25 +session,86,7,Firefox 27,79,2018-09-03 +session,86,8,Firefox 20,77,2018-02-18 +user,87,Carlyn,Hyun,21 +session,87,0,Safari 42,11,2018-06-16 +session,87,1,Internet Explorer 50,98,2018-02-11 +session,87,2,Internet Explorer 35,37,2018-12-10 +session,87,3,Internet Explorer 20,51,2016-08-08 +session,87,4,Chrome 7,63,2017-01-10 +session,87,5,Internet Explorer 21,96,2017-07-06 +session,87,6,Safari 32,8,2016-08-03 +session,87,7,Chrome 9,14,2017-10-28 +session,87,8,Firefox 38,114,2017-03-29 +session,87,9,Internet Explorer 13,10,2017-12-21 +user,88,Bradly,Karlene,28 +session,88,0,Internet Explorer 27,118,2018-12-20 +session,88,1,Chrome 18,20,2016-11-10 +session,88,2,Internet Explorer 42,7,2018-06-03 +session,88,3,Chrome 21,69,2017-09-06 +session,88,4,Chrome 38,38,2017-04-27 +session,88,5,Firefox 33,111,2018-07-12 +user,89,Alonso,Angelic,13 +session,89,0,Internet Explorer 9,87,2017-07-07 +session,89,1,Safari 41,61,2018-07-25 +session,89,2,Internet Explorer 39,6,2016-08-06 +session,89,3,Firefox 25,71,2018-05-03 +session,89,4,Safari 13,100,2017-04-22 +session,89,5,Internet Explorer 27,72,2017-02-26 +session,89,6,Safari 16,3,2017-04-27 +session,89,7,Internet Explorer 42,94,2017-03-02 +user,90,Tyrone,Selina,7 +session,90,0,Safari 48,5,2016-09-24 +session,90,1,Internet Explorer 20,48,2019-01-15 +session,90,2,Firefox 18,70,2017-08-22 +session,90,3,Chrome 45,71,2017-12-13 +session,90,4,Safari 46,104,2017-02-06 +session,90,5,Internet Explorer 37,104,2018-07-20 +session,90,6,Internet Explorer 23,75,2018-09-24 +session,90,7,Internet Explorer 25,56,2017-07-26 +session,90,8,Internet Explorer 3,21,2018-09-18 +user,91,Eli,Karyl,81 +session,91,0,Internet Explorer 40,29,2017-02-17 +session,91,1,Internet Explorer 11,92,2018-08-19 +session,91,2,Firefox 8,6,2019-01-20 +user,92,Rosalia,Willie,50 +session,92,0,Firefox 9,47,2018-08-28 +session,92,1,Internet Explorer 37,12,2018-02-24 +session,92,2,Internet Explorer 37,8,2018-03-03 +user,93,Chauncey,Debby,36 +session,93,0,Safari 38,35,2017-06-25 +session,93,1,Safari 15,66,2017-02-19 +session,93,2,Chrome 35,40,2017-07-27 +session,93,3,Safari 30,57,2017-08-12 +session,93,4,Firefox 30,2,2018-04-20 +session,93,5,Safari 46,64,2017-09-16 +session,93,6,Firefox 17,106,2018-10-28 +session,93,7,Chrome 24,119,2018-01-06 +user,94,Malika,Susann,66 +session,94,0,Chrome 47,31,2018-03-15 +session,94,1,Chrome 10,109,2017-06-05 +session,94,2,Safari 9,2,2017-11-06 +session,94,3,Chrome 15,25,2018-01-05 +session,94,4,Internet Explorer 28,51,2018-02-06 +user,95,Jerrold,Janise,18 +session,95,0,Safari 30,105,2016-11-25 +session,95,1,Safari 33,97,2018-01-06 +session,95,2,Internet Explorer 45,86,2016-09-22 +session,95,3,Internet Explorer 35,94,2018-06-04 +session,95,4,Chrome 31,67,2017-08-11 +session,95,5,Internet Explorer 43,16,2018-12-19 +session,95,6,Safari 43,12,2017-04-30 +user,96,Raymond,Stephania,43 +session,96,0,Internet Explorer 3,46,2016-09-08 +user,97,Silvia,Kennith,52 +session,97,0,Safari 17,24,2018-07-23 +session,97,1,Firefox 2,13,2018-05-31 +session,97,2,Firefox 48,108,2018-09-27 +session,97,3,Internet Explorer 49,57,2017-02-01 +session,97,4,Safari 23,42,2016-05-21 +session,97,5,Chrome 40,45,2016-08-05 +session,97,6,Internet Explorer 28,29,2017-10-04 +user,98,Hong,Dorris,59 +session,98,0,Chrome 18,10,2017-03-15 +session,98,1,Chrome 15,67,2017-07-03 +session,98,2,Internet Explorer 47,104,2017-01-08 +session,98,3,Safari 19,108,2017-12-06 +session,98,4,Safari 18,101,2018-12-10 +session,98,5,Chrome 33,47,2018-06-24 +user,99,Iesha,Duane,16 +session,99,0,Chrome 40,46,2016-10-27 +session,99,1,Firefox 14,46,2018-02-11 +session,99,2,Chrome 1,89,2018-08-08 +session,99,3,Internet Explorer 46,17,2018-06-20 +session,99,4,Chrome 35,111,2016-08-02 +user,100,Ignacio,Emmie,0 +session,100,0,Chrome 16,81,2018-06-25 +session,100,1,Internet Explorer 48,22,2016-10-06 +user,101,Ossie,Reginia,77 +session,101,0,Internet Explorer 44,105,2019-01-04 +session,101,1,Chrome 17,70,2018-01-12 +user,102,Gerardo,Sharleen,8 +session,102,0,Safari 28,20,2017-06-30 +user,103,Earline,Shantay,53 +session,103,0,Internet Explorer 3,98,2017-11-11 +session,103,1,Chrome 32,9,2016-06-20 +session,103,2,Internet Explorer 37,12,2017-07-01 +session,103,3,Chrome 42,75,2018-05-09 +session,103,4,Chrome 1,23,2018-02-09 +session,103,5,Safari 32,44,2018-04-20 +session,103,6,Safari 5,29,2018-03-01 +session,103,7,Chrome 44,2,2016-12-09 +session,103,8,Safari 35,36,2016-06-04 +session,103,9,Safari 10,16,2016-07-10 +user,104,Santos,Pamelia,15 +session,104,0,Firefox 1,57,2016-12-25 +session,104,1,Chrome 49,18,2018-05-27 +session,104,2,Firefox 17,36,2018-04-23 +session,104,3,Internet Explorer 32,19,2017-09-21 +session,104,4,Safari 41,97,2018-02-16 +session,104,5,Internet Explorer 31,73,2017-04-06 +session,104,6,Safari 4,57,2017-06-06 +session,104,7,Firefox 10,36,2016-11-10 +user,105,Lola,Florentino,24 +session,105,0,Internet Explorer 14,60,2018-01-20 +session,105,1,Safari 31,105,2017-01-18 +session,105,2,Firefox 29,66,2016-12-14 +user,106,Bert,Orville,11 +session,106,0,Safari 17,89,2018-05-20 +session,106,1,Firefox 15,49,2018-02-15 +user,107,Antonio,Brinda,59 +session,107,0,Internet Explorer 7,35,2018-07-06 +session,107,1,Firefox 19,5,2016-09-23 +session,107,2,Firefox 9,44,2018-02-16 +session,107,3,Chrome 5,18,2016-10-03 +session,107,4,Firefox 38,85,2016-07-30 +user,108,Joaquin,Wilfredo,35 +session,108,0,Firefox 6,13,2016-07-04 +session,108,1,Internet Explorer 20,24,2017-08-28 +session,108,2,Chrome 39,16,2018-09-27 +user,109,Clifton,Allan,5 +session,109,0,Safari 41,63,2018-11-29 +session,109,1,Chrome 17,19,2017-05-30 +session,109,2,Firefox 14,94,2018-02-19 +user,110,Donald,Wenona,56 +session,110,0,Safari 44,14,2016-05-19 +session,110,1,Firefox 22,57,2017-08-11 +user,111,Millard,Mittie,17 +session,111,0,Safari 13,23,2019-01-24 +session,111,1,Firefox 20,96,2016-11-15 +session,111,2,Chrome 48,62,2017-11-08 +session,111,3,Firefox 31,98,2017-10-26 +session,111,4,Safari 38,13,2017-10-03 +session,111,5,Internet Explorer 17,116,2017-12-14 +user,112,Jenette,Bruce,68 +session,112,0,Chrome 18,113,2018-02-25 +session,112,1,Firefox 44,1,2016-09-09 +session,112,2,Firefox 30,66,2017-07-27 +session,112,3,Internet Explorer 46,31,2017-12-06 +user,113,Bryan,Clorinda,86 +session,113,0,Safari 50,61,2016-07-17 +session,113,1,Safari 20,37,2018-04-19 +session,113,2,Safari 37,41,2018-06-10 +session,113,3,Internet Explorer 47,33,2017-10-30 +session,113,4,Firefox 30,5,2017-04-07 +session,113,5,Safari 39,6,2016-07-25 +session,113,6,Internet Explorer 36,48,2018-05-15 +session,113,7,Chrome 50,119,2018-03-26 +session,113,8,Firefox 31,93,2017-12-26 +user,114,Jena,Melony,83 +session,114,0,Internet Explorer 10,52,2016-06-11 +user,115,Jerri,Long,20 +session,115,0,Internet Explorer 20,101,2017-09-03 +session,115,1,Chrome 50,107,2017-04-10 +session,115,2,Firefox 36,85,2018-03-07 +session,115,3,Chrome 22,89,2018-12-15 +session,115,4,Safari 14,26,2018-03-23 +session,115,5,Firefox 24,21,2016-06-23 +user,116,Monte,Angelo,35 +session,116,0,Internet Explorer 14,106,2017-06-28 +user,117,Saran,Nathalie,83 +session,117,0,Chrome 9,92,2016-05-30 +session,117,1,Chrome 3,117,2016-11-02 +session,117,2,Safari 35,94,2016-08-09 +session,117,3,Chrome 3,103,2016-07-20 +session,117,4,Chrome 40,97,2017-08-12 +session,117,5,Firefox 4,6,2018-01-11 +session,117,6,Internet Explorer 19,67,2017-05-13 +user,118,Jonna,Waneta,6 +session,118,0,Chrome 10,101,2017-03-28 +session,118,1,Firefox 24,69,2017-05-06 +session,118,2,Safari 25,97,2018-09-28 +session,118,3,Internet Explorer 16,61,2016-09-24 +session,118,4,Chrome 48,94,2016-06-29 +session,118,5,Internet Explorer 29,13,2016-12-19 +session,118,6,Safari 15,98,2019-01-29 +session,118,7,Chrome 23,18,2017-03-27 +session,118,8,Internet Explorer 25,62,2016-07-29 +session,118,9,Firefox 18,5,2018-05-26 +user,119,Valeria,Gigi,79 +session,119,0,Chrome 36,2,2018-12-02 +user,120,Caron,Hye,64 +session,120,0,Safari 33,103,2016-05-30 +session,120,1,Internet Explorer 4,18,2017-08-12 +session,120,2,Safari 36,114,2017-04-30 +session,120,3,Internet Explorer 30,110,2019-01-26 +session,120,4,Internet Explorer 48,28,2018-10-04 +session,120,5,Safari 13,77,2016-06-16 +session,120,6,Chrome 9,73,2017-03-29 +session,120,7,Chrome 7,33,2016-08-23 +user,121,Wilbur,Lilly,91 +session,121,0,Chrome 5,116,2018-11-20 +session,121,1,Firefox 22,81,2017-03-09 +session,121,2,Internet Explorer 20,86,2017-12-01 +session,121,3,Chrome 7,66,2017-10-30 +user,122,Theresa,Iesha,90 +session,122,0,Internet Explorer 34,21,2017-05-20 +session,122,1,Internet Explorer 16,53,2018-11-25 +session,122,2,Internet Explorer 28,81,2017-03-14 +session,122,3,Firefox 21,79,2018-01-26 +session,122,4,Chrome 10,7,2017-03-07 +user,123,Domingo,Paul,70 +session,123,0,Internet Explorer 3,95,2017-07-31 +session,123,1,Chrome 24,53,2017-02-11 +session,123,2,Safari 3,81,2016-10-22 +user,124,Ahmed,Joshua,99 +session,124,0,Firefox 21,19,2017-03-28 +session,124,1,Internet Explorer 49,54,2017-08-14 +session,124,2,Safari 34,31,2017-04-19 +session,124,3,Internet Explorer 37,98,2018-08-25 +session,124,4,Chrome 1,64,2017-07-19 +session,124,5,Safari 17,25,2017-07-13 +session,124,6,Chrome 23,35,2017-10-30 +session,124,7,Safari 50,84,2018-05-25 +session,124,8,Chrome 14,72,2018-05-10 +session,124,9,Chrome 50,50,2017-01-31 +user,125,Isobel,Elwanda,51 +session,125,0,Firefox 50,111,2017-06-22 +session,125,1,Firefox 29,64,2018-10-17 +session,125,2,Safari 45,113,2017-02-04 +session,125,3,Safari 11,17,2016-09-13 +session,125,4,Chrome 14,93,2017-08-19 +session,125,5,Safari 5,35,2016-11-24 +session,125,6,Internet Explorer 12,66,2017-06-03 +session,125,7,Chrome 47,30,2018-11-04 +user,126,Tuyet,Louie,78 +session,126,0,Chrome 41,3,2018-02-07 +session,126,1,Safari 4,64,2017-07-20 +session,126,2,Safari 10,108,2017-07-11 +session,126,3,Chrome 6,60,2018-04-17 +session,126,4,Safari 23,6,2018-04-04 +session,126,5,Firefox 47,44,2017-05-13 +session,126,6,Firefox 37,37,2018-04-18 +session,126,7,Safari 4,23,2016-06-23 +session,126,8,Firefox 23,1,2016-09-23 +session,126,9,Safari 21,63,2017-04-27 +user,127,Tanika,Rufus,94 +session,127,0,Safari 12,4,2018-01-08 +session,127,1,Firefox 43,35,2017-11-23 +session,127,2,Firefox 48,97,2018-11-30 +user,128,Adriene,Athena,26 +session,128,0,Internet Explorer 9,85,2017-08-10 +user,129,Marlon,Lyla,0 +session,129,0,Chrome 28,95,2017-11-13 +session,129,1,Firefox 23,1,2017-09-01 +session,129,2,Safari 42,26,2018-08-12 +session,129,3,Safari 12,89,2018-01-31 +session,129,4,Safari 11,44,2018-07-09 +session,129,5,Firefox 43,7,2019-01-19 +session,129,6,Safari 37,31,2016-08-03 +session,129,7,Chrome 24,60,2017-10-16 +user,130,Beaulah,Titus,85 +session,130,0,Internet Explorer 28,70,2017-07-04 +session,130,1,Internet Explorer 31,92,2017-07-20 +session,130,2,Firefox 29,64,2018-08-09 +session,130,3,Internet Explorer 30,114,2018-07-20 +session,130,4,Internet Explorer 15,67,2017-05-26 +session,130,5,Safari 35,95,2016-12-23 +session,130,6,Internet Explorer 40,49,2018-12-13 +session,130,7,Safari 46,98,2016-06-18 +session,130,8,Internet Explorer 21,97,2017-05-28 +session,130,9,Safari 10,66,2018-05-16 +user,131,Jerold,Giovanna,17 +session,131,0,Internet Explorer 45,77,2018-08-10 +session,131,1,Firefox 46,66,2019-01-27 +session,131,2,Safari 13,36,2017-02-13 +session,131,3,Chrome 41,8,2017-08-09 +session,131,4,Internet Explorer 48,106,2018-03-17 +session,131,5,Safari 20,39,2018-04-04 +session,131,6,Firefox 4,27,2016-05-24 +session,131,7,Internet Explorer 15,13,2017-02-05 +session,131,8,Internet Explorer 7,23,2018-10-31 +session,131,9,Firefox 11,53,2019-02-11 +user,132,Lesley,Asha,31 +session,132,0,Firefox 12,97,2018-06-18 +session,132,1,Safari 10,94,2018-04-23 +session,132,2,Chrome 37,65,2016-12-20 +session,132,3,Safari 11,103,2016-07-02 +session,132,4,Safari 39,89,2018-04-13 +session,132,5,Chrome 37,36,2019-01-13 +session,132,6,Safari 45,78,2018-06-08 +session,132,7,Firefox 2,55,2016-06-17 +user,133,Lavonne,Cathie,18 +session,133,0,Chrome 23,73,2017-11-24 +session,133,1,Internet Explorer 40,89,2018-02-17 +session,133,2,Chrome 41,50,2016-06-27 +session,133,3,Chrome 30,19,2017-03-22 +session,133,4,Chrome 42,2,2017-11-13 +user,134,Jan,Viki,56 +session,134,0,Internet Explorer 6,49,2018-10-17 +session,134,1,Internet Explorer 21,105,2017-03-08 +user,135,Aron,Fairy,70 +session,135,0,Chrome 10,28,2016-08-06 +session,135,1,Safari 9,77,2018-10-14 +session,135,2,Safari 11,47,2017-09-20 +session,135,3,Firefox 43,35,2016-07-25 +user,136,Ronnie,Sung,0 +session,136,0,Internet Explorer 41,81,2018-12-30 +session,136,1,Chrome 39,100,2017-04-07 +session,136,2,Internet Explorer 42,25,2018-05-14 +session,136,3,Internet Explorer 50,30,2016-10-25 +session,136,4,Chrome 5,62,2017-11-21 +session,136,5,Firefox 17,78,2019-01-08 +session,136,6,Safari 7,84,2016-09-13 +session,136,7,Internet Explorer 1,68,2017-01-08 +session,136,8,Safari 15,2,2016-07-15 +session,136,9,Safari 35,44,2018-04-19 +user,137,Lachelle,Rodrigo,69 +session,137,0,Safari 2,52,2018-01-05 +session,137,1,Chrome 33,108,2017-10-12 +session,137,2,Firefox 44,113,2018-02-17 +session,137,3,Safari 15,67,2018-07-24 +session,137,4,Safari 39,115,2018-03-18 +session,137,5,Safari 25,28,2016-09-07 +session,137,6,Firefox 40,53,2017-11-01 +user,138,Justin,Van,66 +session,138,0,Safari 49,4,2018-09-23 +session,138,1,Internet Explorer 21,56,2019-01-29 +session,138,2,Safari 49,25,2018-11-08 +session,138,3,Internet Explorer 12,7,2017-11-05 +session,138,4,Safari 23,50,2017-05-08 +session,138,5,Safari 2,96,2017-03-28 +session,138,6,Internet Explorer 44,82,2016-08-22 +user,139,Theola,Frederica,78 +session,139,0,Firefox 44,107,2017-06-26 +session,139,1,Firefox 3,14,2017-11-28 +session,139,2,Firefox 15,94,2018-07-13 +session,139,3,Safari 31,51,2017-04-05 +session,139,4,Internet Explorer 25,74,2018-12-22 +user,140,Love,Brandy,35 +session,140,0,Chrome 25,27,2018-04-20 +session,140,1,Safari 6,71,2018-03-02 +session,140,2,Chrome 30,16,2016-09-27 +session,140,3,Internet Explorer 38,112,2016-12-09 +session,140,4,Internet Explorer 38,38,2018-09-27 +session,140,5,Firefox 46,18,2018-07-30 +session,140,6,Internet Explorer 48,0,2018-11-14 +user,141,Eleni,Rusty,55 +session,141,0,Safari 21,46,2017-03-05 +user,142,Roland,Shelby,26 +session,142,0,Firefox 4,43,2017-10-22 +session,142,1,Firefox 24,58,2016-11-19 +session,142,2,Chrome 5,73,2016-10-12 +session,142,3,Internet Explorer 12,19,2016-09-28 +session,142,4,Firefox 35,22,2017-05-22 +session,142,5,Chrome 33,4,2017-11-18 +session,142,6,Safari 20,31,2018-05-04 +session,142,7,Safari 4,25,2016-06-10 +user,143,Margot,Rebecca,46 +session,143,0,Chrome 45,110,2017-08-16 +session,143,1,Chrome 46,30,2018-09-29 +session,143,2,Safari 50,62,2018-06-02 +session,143,3,Firefox 11,45,2016-09-07 +session,143,4,Firefox 23,85,2018-12-05 +session,143,5,Safari 34,38,2016-08-10 +session,143,6,Safari 34,5,2017-06-13 +session,143,7,Safari 18,79,2017-01-02 +session,143,8,Firefox 23,57,2018-02-20 +user,144,Sonny,Lulu,20 +session,144,0,Safari 39,54,2016-08-03 +session,144,1,Chrome 5,77,2018-04-07 +session,144,2,Firefox 43,19,2018-02-03 +session,144,3,Chrome 36,103,2018-03-03 +session,144,4,Safari 15,90,2017-07-03 +session,144,5,Safari 35,22,2018-10-31 +session,144,6,Internet Explorer 48,33,2018-12-27 +session,144,7,Internet Explorer 45,109,2018-05-27 +user,145,Dallas,Amy,61 +session,145,0,Chrome 40,19,2018-06-14 +session,145,1,Firefox 43,5,2019-01-18 +session,145,2,Internet Explorer 8,86,2016-06-27 +session,145,3,Safari 24,103,2016-10-30 +user,146,Jamal,Hanh,16 +session,146,0,Chrome 14,9,2018-04-23 +session,146,1,Internet Explorer 4,67,2017-10-25 +session,146,2,Safari 24,104,2017-12-11 +session,146,3,Firefox 17,104,2017-09-06 +session,146,4,Internet Explorer 15,92,2018-07-30 +session,146,5,Internet Explorer 5,61,2016-08-03 +session,146,6,Firefox 8,86,2018-07-05 +session,146,7,Firefox 25,41,2017-01-12 +user,147,Ervin,Gabriel,82 +session,147,0,Safari 4,6,2016-09-07 +user,148,Patsy,Edwardo,89 +session,148,0,Firefox 13,5,2016-11-22 +session,148,1,Chrome 10,64,2018-07-31 +session,148,2,Chrome 10,57,2016-06-25 +session,148,3,Internet Explorer 39,104,2017-11-11 +session,148,4,Firefox 3,115,2018-11-12 +session,148,5,Chrome 23,67,2016-12-05 +session,148,6,Chrome 50,3,2016-11-16 +session,148,7,Chrome 7,110,2016-12-07 +session,148,8,Firefox 12,46,2016-09-16 +user,149,Clay,Retha,42 +session,149,0,Chrome 28,114,2016-10-24 +session,149,1,Internet Explorer 31,115,2018-08-01 +session,149,2,Firefox 42,91,2018-07-08 +session,149,3,Chrome 4,80,2018-04-06 +session,149,4,Firefox 47,5,2017-03-26 +session,149,5,Firefox 1,71,2016-12-15 +session,149,6,Safari 25,14,2017-04-22 +session,149,7,Firefox 11,91,2018-09-10 +user,150,Lindsay,Gail,48 +session,150,0,Safari 26,109,2017-12-16 +session,150,1,Safari 47,91,2018-03-02 +session,150,2,Safari 18,113,2016-09-25 +user,151,Brian,Stella,65 +session,151,0,Firefox 47,26,2018-11-24 +session,151,1,Chrome 42,70,2018-07-11 +session,151,2,Internet Explorer 15,14,2017-10-16 +session,151,3,Chrome 5,69,2017-08-18 +user,152,Newton,Gilda,22 +session,152,0,Firefox 13,50,2018-08-09 +session,152,1,Firefox 23,114,2018-04-16 +session,152,2,Firefox 50,38,2019-01-20 +session,152,3,Chrome 32,93,2018-02-28 +session,152,4,Firefox 6,55,2018-02-20 +session,152,5,Firefox 43,55,2018-06-15 +user,153,Ignacio,Kira,39 +session,153,0,Internet Explorer 41,17,2017-02-13 +session,153,1,Chrome 49,87,2019-02-08 +user,154,Ned,Robbie,15 +session,154,0,Firefox 35,110,2018-05-31 +session,154,1,Safari 6,24,2018-09-30 +session,154,2,Firefox 26,83,2018-01-30 +user,155,Una,Freddy,22 +session,155,0,Chrome 14,81,2017-01-18 +session,155,1,Chrome 48,66,2018-08-25 +session,155,2,Chrome 39,51,2017-02-01 +session,155,3,Chrome 14,63,2019-02-08 +session,155,4,Internet Explorer 30,15,2016-06-26 +session,155,5,Safari 8,28,2016-07-17 +session,155,6,Internet Explorer 12,80,2018-02-16 +session,155,7,Chrome 3,78,2017-09-05 +user,156,Mabelle,Carylon,62 +session,156,0,Safari 15,33,2017-05-01 +user,157,Bo,Vanetta,7 +session,157,0,Safari 7,37,2017-11-10 +session,157,1,Safari 2,96,2017-01-26 +user,158,Stacey,Man,48 +session,158,0,Safari 35,14,2018-09-26 +user,159,Deloras,Sharron,56 +session,159,0,Chrome 12,54,2017-10-10 +session,159,1,Chrome 22,3,2018-03-30 +session,159,2,Safari 31,12,2016-09-03 +user,160,Kristan,Art,2 +session,160,0,Safari 29,108,2016-09-18 +session,160,1,Safari 26,52,2016-12-26 +session,160,2,Firefox 22,10,2017-03-07 +session,160,3,Internet Explorer 22,35,2016-08-20 +session,160,4,Internet Explorer 18,108,2017-01-31 +user,161,Sergio,Almeda,90 +session,161,0,Chrome 14,104,2017-03-22 +user,162,Vance,Heidy,3 +session,162,0,Firefox 25,25,2017-05-08 +session,162,1,Internet Explorer 27,5,2017-02-07 +session,162,2,Chrome 47,2,2016-05-20 +session,162,3,Firefox 14,67,2018-09-12 +session,162,4,Internet Explorer 23,86,2018-12-08 +session,162,5,Internet Explorer 3,53,2018-09-08 +user,163,Sulema,Georgene,22 +session,163,0,Internet Explorer 49,112,2016-10-16 +session,163,1,Safari 1,106,2018-03-13 +session,163,2,Safari 14,83,2018-12-28 +user,164,Verda,Lili,61 +session,164,0,Safari 16,103,2018-09-26 +session,164,1,Safari 36,78,2018-12-06 +session,164,2,Internet Explorer 26,25,2017-08-20 +session,164,3,Chrome 8,45,2017-08-16 +session,164,4,Firefox 30,118,2018-06-08 +session,164,5,Internet Explorer 38,35,2016-11-15 +user,165,Leonarda,Jame,18 +session,165,0,Safari 30,48,2018-01-19 +session,165,1,Internet Explorer 45,94,2017-07-11 +session,165,2,Safari 22,116,2018-03-06 +session,165,3,Internet Explorer 10,11,2018-07-15 +session,165,4,Firefox 7,88,2018-12-21 +session,165,5,Chrome 18,33,2018-05-08 +user,166,Matt,Adrien,89 +session,166,0,Safari 25,105,2016-07-16 +session,166,1,Internet Explorer 16,103,2018-01-19 +session,166,2,Chrome 12,28,2018-11-03 +session,166,3,Safari 3,65,2016-08-17 +user,167,Zetta,Dara,42 +session,167,0,Safari 3,29,2017-11-17 +user,168,Nova,Ollie,97 +session,168,0,Internet Explorer 50,7,2018-02-07 +session,168,1,Safari 42,41,2017-06-16 +session,168,2,Firefox 17,101,2016-05-21 +session,168,3,Safari 20,20,2017-05-02 +session,168,4,Safari 11,40,2016-07-07 +session,168,5,Firefox 41,17,2016-11-22 +session,168,6,Firefox 49,44,2017-10-13 +session,168,7,Chrome 22,101,2018-09-12 +user,169,Erin,Matt,62 +session,169,0,Safari 31,114,2018-10-01 +session,169,1,Chrome 7,3,2017-04-02 +user,170,Randal,Tiffiny,27 +session,170,0,Firefox 25,114,2017-11-09 +session,170,1,Firefox 19,8,2016-06-19 +session,170,2,Safari 9,73,2018-04-12 +session,170,3,Internet Explorer 34,63,2018-07-31 +user,171,Earnest,Gemma,2 +session,171,0,Chrome 32,76,2018-12-18 +session,171,1,Chrome 19,3,2018-03-04 +session,171,2,Safari 10,101,2017-03-16 +session,171,3,Chrome 16,76,2017-08-03 +user,172,Wei,Sharleen,16 +session,172,0,Chrome 5,9,2018-11-16 +session,172,1,Chrome 17,96,2017-01-16 +session,172,2,Safari 24,37,2018-07-13 +session,172,3,Firefox 34,19,2018-03-07 +user,173,Hector,Marin,56 +session,173,0,Firefox 24,94,2018-07-29 +user,174,Robin,Tyrone,54 +session,174,0,Internet Explorer 16,81,2017-04-12 +session,174,1,Chrome 23,36,2017-04-01 +session,174,2,Chrome 50,54,2017-08-30 +user,175,Rosalyn,Inell,34 +session,175,0,Internet Explorer 29,75,2017-11-01 +session,175,1,Internet Explorer 11,72,2018-05-12 +session,175,2,Chrome 46,42,2018-08-10 +session,175,3,Chrome 13,6,2016-12-21 +session,175,4,Firefox 9,55,2016-08-01 +session,175,5,Chrome 5,103,2018-12-02 +user,176,Cory,Maurine,26 +session,176,0,Chrome 34,16,2018-05-22 +session,176,1,Safari 5,31,2017-09-03 +session,176,2,Internet Explorer 22,55,2017-01-06 +session,176,3,Chrome 41,26,2017-04-14 +session,176,4,Internet Explorer 42,4,2017-07-28 +session,176,5,Chrome 45,115,2017-07-12 +session,176,6,Firefox 26,58,2017-03-04 +session,176,7,Safari 26,7,2018-03-06 +session,176,8,Safari 34,60,2016-11-18 +session,176,9,Chrome 10,12,2018-06-30 +user,177,Roxanna,Sina,42 +session,177,0,Internet Explorer 13,108,2017-03-01 +session,177,1,Firefox 13,15,2018-11-16 +session,177,2,Internet Explorer 37,2,2017-11-24 +session,177,3,Safari 5,108,2017-01-01 +session,177,4,Internet Explorer 20,99,2018-06-02 +session,177,5,Firefox 36,54,2018-12-07 +user,178,Marisha,Tijuana,75 +session,178,0,Safari 38,17,2016-11-06 +session,178,1,Internet Explorer 9,67,2016-11-28 +session,178,2,Safari 45,82,2018-05-14 +session,178,3,Firefox 30,85,2017-08-18 +user,179,Tena,Ena,80 +session,179,0,Safari 10,36,2018-08-18 +user,180,German,Florida,78 +session,180,0,Firefox 21,95,2018-04-28 +session,180,1,Chrome 16,91,2017-08-27 +user,181,Cinthia,Angila,10 +session,181,0,Chrome 8,96,2016-12-26 +session,181,1,Chrome 4,50,2016-12-07 +session,181,2,Firefox 8,88,2019-02-08 +session,181,3,Internet Explorer 41,52,2017-10-13 +session,181,4,Safari 29,113,2017-07-21 +session,181,5,Internet Explorer 24,47,2018-12-17 +session,181,6,Internet Explorer 29,82,2018-09-21 +session,181,7,Firefox 18,56,2018-10-20 +user,182,Libbie,Keiko,20 +session,182,0,Chrome 38,67,2016-10-27 +session,182,1,Firefox 31,44,2016-08-20 +session,182,2,Safari 36,27,2017-10-24 +session,182,3,Internet Explorer 45,53,2018-07-31 +session,182,4,Chrome 14,48,2017-06-08 +session,182,5,Firefox 26,82,2016-07-11 +session,182,6,Internet Explorer 24,38,2017-02-04 +user,183,Isobel,Dave,69 +session,183,0,Firefox 28,40,2017-03-13 +session,183,1,Internet Explorer 17,16,2016-10-06 +session,183,2,Safari 1,38,2017-01-20 +session,183,3,Internet Explorer 44,91,2017-06-03 +session,183,4,Internet Explorer 37,5,2016-12-30 +session,183,5,Firefox 36,20,2017-05-02 +session,183,6,Firefox 26,57,2016-08-17 +session,183,7,Safari 21,37,2017-08-12 +session,183,8,Chrome 28,7,2018-02-22 +user,184,Francesco,Fay,0 +session,184,0,Chrome 27,68,2017-08-03 +session,184,1,Safari 7,40,2017-05-10 +session,184,2,Safari 47,94,2018-03-01 +session,184,3,Safari 3,14,2016-09-02 +user,185,Edgar,Temple,53 +session,185,0,Chrome 22,70,2017-06-25 +session,185,1,Firefox 34,8,2018-05-14 +session,185,2,Safari 16,100,2017-11-02 +session,185,3,Safari 40,84,2017-02-24 +session,185,4,Chrome 5,60,2018-08-16 +session,185,5,Firefox 50,76,2018-03-18 +user,186,Mohammad,Lenny,46 +session,186,0,Chrome 28,116,2017-03-29 +session,186,1,Firefox 17,106,2017-09-19 +user,187,Vincenza,Latoya,37 +session,187,0,Firefox 2,52,2016-10-20 +session,187,1,Firefox 40,17,2016-06-27 +session,187,2,Internet Explorer 11,52,2018-10-05 +session,187,3,Safari 9,87,2018-11-04 +session,187,4,Safari 36,6,2016-10-21 +session,187,5,Chrome 16,110,2017-06-07 +session,187,6,Chrome 47,7,2016-08-26 +session,187,7,Safari 21,105,2016-07-08 +user,188,Brent,Kelly,33 +session,188,0,Firefox 17,88,2018-06-11 +session,188,1,Firefox 16,66,2017-11-04 +session,188,2,Safari 26,15,2016-07-03 +session,188,3,Internet Explorer 43,0,2017-11-17 +session,188,4,Chrome 40,23,2017-02-27 +session,188,5,Internet Explorer 16,50,2018-11-22 +user,189,Lincoln,Jillian,60 +session,189,0,Firefox 12,13,2017-08-01 +session,189,1,Firefox 21,109,2018-04-28 +user,190,Iluminada,Kenda,12 +session,190,0,Internet Explorer 20,0,2017-02-23 +session,190,1,Firefox 18,16,2019-01-02 +session,190,2,Chrome 1,29,2018-10-18 +session,190,3,Internet Explorer 32,117,2016-12-08 +session,190,4,Safari 3,104,2018-04-22 +session,190,5,Safari 5,86,2018-05-08 +session,190,6,Firefox 22,18,2018-06-07 +user,191,Eartha,Augusta,78 +session,191,0,Chrome 30,16,2016-05-28 +session,191,1,Safari 36,81,2018-06-28 +session,191,2,Safari 21,71,2017-05-19 +session,191,3,Chrome 2,62,2018-06-23 +session,191,4,Firefox 18,75,2016-11-12 +user,192,Marcelo,Denae,50 +session,192,0,Chrome 31,48,2018-06-12 +session,192,1,Chrome 3,1,2017-02-28 +session,192,2,Firefox 16,98,2018-01-30 +user,193,Shellie,Napoleon,20 +session,193,0,Safari 14,100,2017-08-03 +session,193,1,Internet Explorer 14,112,2018-04-10 +session,193,2,Internet Explorer 22,55,2017-03-15 +session,193,3,Internet Explorer 48,51,2017-05-30 +user,194,Laurence,Donald,41 +session,194,0,Internet Explorer 31,9,2017-10-19 +session,194,1,Chrome 7,30,2018-05-13 +session,194,2,Firefox 17,95,2018-07-28 +session,194,3,Internet Explorer 6,29,2017-07-06 +session,194,4,Firefox 38,31,2017-05-02 +session,194,5,Internet Explorer 19,10,2017-09-21 +session,194,6,Chrome 12,10,2016-11-16 +user,195,Lonnie,Gayle,55 +session,195,0,Internet Explorer 34,53,2016-06-14 +session,195,1,Internet Explorer 26,116,2018-12-30 +session,195,2,Internet Explorer 40,35,2018-01-09 +session,195,3,Chrome 13,92,2017-06-23 +user,196,Charlie,Somer,65 +session,196,0,Firefox 49,77,2017-12-07 +session,196,1,Firefox 4,78,2017-03-31 +session,196,2,Safari 2,49,2017-07-25 +session,196,3,Chrome 25,24,2018-06-06 +session,196,4,Firefox 35,38,2018-08-11 +session,196,5,Chrome 32,102,2018-02-10 +session,196,6,Firefox 31,26,2018-05-10 +session,196,7,Safari 46,14,2017-02-27 +user,197,Berry,Janeth,44 +session,197,0,Chrome 8,95,2017-07-20 +user,198,Trevor,Jeanett,76 +session,198,0,Chrome 31,45,2018-05-13 +session,198,1,Chrome 18,86,2016-09-18 +user,199,Oren,Kim,7 +session,199,0,Firefox 1,34,2017-06-19 +session,199,1,Chrome 44,112,2016-12-07 +session,199,2,Safari 7,27,2016-06-20 +session,199,3,Firefox 4,29,2017-07-22 +session,199,4,Internet Explorer 4,41,2016-07-08 +session,199,5,Safari 42,1,2017-09-11 +session,199,6,Firefox 4,105,2018-10-21 +session,199,7,Firefox 40,93,2017-08-18 +session,199,8,Firefox 13,84,2018-11-20 +user,200,Freddy,Hiram,94 +session,200,0,Safari 49,43,2018-04-01 +session,200,1,Firefox 36,30,2018-04-12 +session,200,2,Chrome 15,111,2018-11-10 +session,200,3,Safari 2,60,2017-06-08 +user,201,Jules,Lucia,36 +session,201,0,Safari 37,78,2016-06-16 +user,202,Christa,Callie,77 +session,202,0,Internet Explorer 1,70,2017-07-15 +session,202,1,Internet Explorer 27,74,2018-02-07 +user,203,Hyun,Raelene,0 +session,203,0,Chrome 9,40,2016-07-11 +user,204,Britni,Nia,48 +session,204,0,Internet Explorer 40,29,2018-05-27 +session,204,1,Chrome 42,99,2016-10-05 +user,205,Caryn,Celia,19 +session,205,0,Safari 43,12,2016-07-20 +user,206,Georgine,Haley,84 +session,206,0,Safari 38,28,2018-03-04 +session,206,1,Safari 18,35,2018-08-27 +session,206,2,Firefox 29,118,2017-12-21 +session,206,3,Internet Explorer 31,28,2017-11-02 +session,206,4,Chrome 43,47,2018-06-12 +session,206,5,Firefox 5,5,2018-08-03 +session,206,6,Chrome 48,97,2017-05-17 +session,206,7,Safari 6,65,2018-02-26 +session,206,8,Chrome 31,46,2017-10-07 +user,207,Jordon,Amiee,15 +session,207,0,Firefox 48,7,2018-02-06 +session,207,1,Firefox 36,17,2016-09-16 +session,207,2,Internet Explorer 8,52,2018-03-25 +session,207,3,Safari 46,71,2018-11-16 +session,207,4,Safari 34,54,2018-05-15 +user,208,Kacy,Shakita,10 +session,208,0,Firefox 46,38,2018-03-02 +session,208,1,Firefox 47,51,2017-11-26 +session,208,2,Safari 28,92,2019-01-16 +session,208,3,Firefox 42,13,2017-05-31 +session,208,4,Safari 2,13,2017-05-29 +session,208,5,Internet Explorer 24,26,2016-10-02 +session,208,6,Firefox 22,73,2018-06-23 +session,208,7,Chrome 11,23,2017-12-12 +user,209,Donovan,Deane,73 +session,209,0,Internet Explorer 44,6,2017-10-09 +session,209,1,Firefox 14,31,2018-12-24 +session,209,2,Chrome 35,64,2017-05-25 +session,209,3,Chrome 8,88,2016-10-31 +session,209,4,Firefox 26,10,2018-08-05 +session,209,5,Chrome 30,6,2017-05-27 +session,209,6,Safari 10,111,2017-06-25 +session,209,7,Chrome 10,42,2016-07-16 +session,209,8,Internet Explorer 18,9,2017-06-17 +user,210,Brandi,Luann,41 +session,210,0,Safari 23,108,2018-03-27 +session,210,1,Internet Explorer 36,21,2017-06-24 +session,210,2,Chrome 15,29,2016-05-23 +session,210,3,Chrome 26,17,2017-02-19 +user,211,Zachery,Franchesca,32 +session,211,0,Chrome 39,52,2016-08-02 +user,212,Augustine,Lupe,55 +session,212,0,Safari 35,80,2018-08-08 +session,212,1,Chrome 45,59,2017-05-06 +session,212,2,Internet Explorer 4,2,2018-02-16 +session,212,3,Safari 19,0,2017-08-30 +session,212,4,Internet Explorer 47,111,2018-03-06 +session,212,5,Internet Explorer 43,119,2017-11-07 +session,212,6,Chrome 40,39,2017-10-27 +session,212,7,Internet Explorer 33,89,2016-12-21 +session,212,8,Chrome 12,5,2016-07-23 +session,212,9,Internet Explorer 49,9,2017-07-01 +user,213,Gabriel,Aline,80 +session,213,0,Firefox 28,56,2018-12-13 +session,213,1,Safari 26,48,2017-06-25 +session,213,2,Chrome 2,87,2018-07-29 +session,213,3,Safari 22,93,2018-10-10 +session,213,4,Safari 41,65,2017-06-22 +session,213,5,Safari 35,111,2017-04-06 +session,213,6,Safari 40,90,2019-01-05 +session,213,7,Safari 41,75,2018-01-08 +user,214,Isaac,Irina,55 +session,214,0,Internet Explorer 43,9,2018-02-06 +session,214,1,Safari 24,30,2018-10-26 +session,214,2,Firefox 45,50,2016-07-05 +session,214,3,Safari 36,48,2017-08-23 +session,214,4,Internet Explorer 26,6,2018-04-30 +session,214,5,Internet Explorer 28,101,2016-12-15 +user,215,Myron,Lacy,63 +session,215,0,Internet Explorer 6,66,2017-07-13 +session,215,1,Internet Explorer 29,23,2018-07-10 +session,215,2,Chrome 18,15,2016-06-18 +user,216,Yong,Heike,3 +session,216,0,Safari 45,67,2016-05-30 +session,216,1,Chrome 45,10,2019-02-02 +session,216,2,Chrome 27,49,2017-09-12 +session,216,3,Internet Explorer 6,116,2019-01-30 +session,216,4,Safari 14,112,2017-04-24 +session,216,5,Chrome 50,3,2016-10-15 +session,216,6,Safari 45,69,2017-04-25 +session,216,7,Chrome 8,38,2017-04-18 +session,216,8,Chrome 9,48,2017-04-04 +user,217,Wilfredo,Jacinto,3 +session,217,0,Chrome 47,80,2016-09-09 +session,217,1,Safari 28,101,2019-01-11 +session,217,2,Firefox 23,89,2017-12-05 +user,218,Dannie,Twanda,42 +session,218,0,Chrome 28,41,2018-10-30 +session,218,1,Safari 10,82,2018-06-16 +session,218,2,Internet Explorer 7,99,2017-01-11 +session,218,3,Internet Explorer 18,42,2017-09-01 +session,218,4,Safari 42,39,2016-07-26 +user,219,Theo,Lottie,32 +session,219,0,Internet Explorer 48,45,2016-07-27 +session,219,1,Firefox 9,102,2018-01-30 +session,219,2,Chrome 44,28,2018-05-04 +session,219,3,Internet Explorer 28,46,2018-08-20 +user,220,Jesenia,Lai,81 +session,220,0,Internet Explorer 28,107,2018-11-30 +session,220,1,Firefox 49,112,2018-02-07 +user,221,Simon,Pearly,17 +session,221,0,Safari 2,99,2018-11-09 +session,221,1,Firefox 4,116,2016-10-16 +session,221,2,Firefox 46,57,2018-06-19 +session,221,3,Safari 20,53,2018-06-11 +session,221,4,Internet Explorer 38,81,2018-01-13 +session,221,5,Firefox 8,45,2017-05-09 +user,222,Eldon,Florencia,36 +session,222,0,Internet Explorer 2,92,2016-11-13 +session,222,1,Firefox 47,2,2016-11-11 +session,222,2,Chrome 25,116,2016-08-21 +session,222,3,Internet Explorer 9,51,2017-06-24 +session,222,4,Internet Explorer 45,113,2017-05-27 +session,222,5,Safari 35,53,2017-03-14 +user,223,Ben,Leisha,23 +session,223,0,Safari 11,101,2019-01-06 +session,223,1,Safari 41,100,2018-05-30 +session,223,2,Internet Explorer 13,77,2017-01-09 +session,223,3,Safari 38,50,2018-05-26 +session,223,4,Firefox 21,18,2017-09-15 +session,223,5,Safari 30,41,2017-05-05 +session,223,6,Internet Explorer 19,53,2017-09-26 +session,223,7,Firefox 38,56,2016-07-29 +session,223,8,Firefox 50,66,2017-04-27 +user,224,Daron,Marshall,64 +session,224,0,Chrome 11,85,2018-04-09 +session,224,1,Internet Explorer 17,106,2018-03-06 +session,224,2,Safari 9,41,2017-03-05 +session,224,3,Chrome 3,54,2018-08-27 +user,225,Melva,Buena,89 +session,225,0,Firefox 31,86,2017-05-18 +session,225,1,Firefox 11,25,2018-01-23 +session,225,2,Internet Explorer 46,28,2017-02-02 +session,225,3,Safari 12,69,2018-01-13 +session,225,4,Safari 18,89,2019-01-16 +session,225,5,Safari 8,40,2017-07-22 +session,225,6,Internet Explorer 28,76,2019-01-13 +session,225,7,Internet Explorer 37,61,2016-08-20 +session,225,8,Firefox 47,72,2018-04-10 +user,226,Andres,Broderick,68 +session,226,0,Safari 29,96,2016-07-13 +user,227,Ron,Lanora,93 +session,227,0,Chrome 48,106,2017-02-18 +session,227,1,Internet Explorer 15,28,2018-07-31 +user,228,Olen,Donn,31 +session,228,0,Firefox 14,35,2017-12-21 +session,228,1,Safari 16,20,2017-06-11 +session,228,2,Chrome 48,109,2017-03-07 +session,228,3,Firefox 1,32,2017-05-25 +user,229,Caroll,Kate,42 +session,229,0,Internet Explorer 41,32,2018-06-09 +session,229,1,Firefox 47,37,2018-01-22 +session,229,2,Safari 20,75,2018-04-21 +session,229,3,Safari 47,52,2017-10-09 +session,229,4,Firefox 37,96,2017-05-14 +session,229,5,Safari 38,50,2018-08-23 +session,229,6,Chrome 20,27,2018-03-27 +user,230,Shana,Hobert,79 +session,230,0,Chrome 39,33,2016-09-02 +session,230,1,Internet Explorer 23,14,2017-09-30 +session,230,2,Internet Explorer 43,55,2016-12-03 +session,230,3,Internet Explorer 41,22,2019-02-10 +session,230,4,Internet Explorer 30,113,2018-08-18 +session,230,5,Safari 4,3,2016-05-19 +session,230,6,Firefox 9,76,2017-01-09 +user,231,Phil,Moira,64 +session,231,0,Safari 42,85,2017-06-17 +session,231,1,Chrome 47,98,2016-09-28 +session,231,2,Internet Explorer 26,3,2016-12-24 +session,231,3,Firefox 24,10,2017-10-29 +session,231,4,Safari 37,22,2016-11-16 +session,231,5,Chrome 23,38,2017-06-08 +session,231,6,Chrome 7,91,2018-08-22 +session,231,7,Chrome 50,90,2017-08-24 +user,232,Efrain,Daniele,86 +session,232,0,Chrome 31,45,2017-07-24 +session,232,1,Safari 25,24,2019-02-04 +session,232,2,Safari 43,1,2018-04-14 +session,232,3,Internet Explorer 47,23,2017-08-06 +user,233,Ria,Barbera,27 +session,233,0,Internet Explorer 38,28,2017-03-14 +session,233,1,Firefox 19,62,2016-09-11 +session,233,2,Firefox 23,18,2017-11-03 +session,233,3,Firefox 13,29,2016-10-31 +session,233,4,Firefox 3,95,2018-07-09 +session,233,5,Firefox 17,18,2016-09-10 +session,233,6,Safari 26,34,2017-07-18 +session,233,7,Firefox 37,105,2016-09-13 +user,234,Percy,Tess,4 +session,234,0,Safari 2,0,2018-02-18 +session,234,1,Chrome 2,40,2017-02-09 +session,234,2,Chrome 17,65,2018-07-27 +session,234,3,Safari 24,107,2017-12-02 +session,234,4,Safari 2,77,2019-01-27 +session,234,5,Firefox 28,15,2016-08-21 +session,234,6,Safari 23,89,2016-07-13 +session,234,7,Safari 27,94,2018-10-14 +session,234,8,Safari 14,27,2017-05-17 +session,234,9,Chrome 29,11,2017-07-04 +user,235,Curtis,Eleni,16 +session,235,0,Chrome 50,117,2017-01-04 +session,235,1,Chrome 5,103,2018-03-08 +session,235,2,Chrome 2,33,2016-08-05 +session,235,3,Internet Explorer 11,53,2018-08-18 +user,236,Delmar,Chantell,3 +session,236,0,Firefox 23,16,2016-10-22 +session,236,1,Firefox 5,34,2016-11-10 +user,237,Lenora,Lynwood,78 +session,237,0,Firefox 10,63,2018-08-09 +session,237,1,Safari 37,92,2018-09-10 +session,237,2,Chrome 15,62,2018-04-09 +session,237,3,Firefox 5,7,2018-10-20 +user,238,Jamey,Ignacio,93 +session,238,0,Firefox 45,95,2017-06-11 +session,238,1,Safari 9,24,2017-10-03 +session,238,2,Firefox 24,3,2018-11-01 +session,238,3,Internet Explorer 48,99,2018-07-04 +session,238,4,Firefox 37,71,2017-10-03 +session,238,5,Firefox 38,110,2018-12-31 +session,238,6,Safari 40,108,2017-02-08 +user,239,Marvin,Freddie,7 +session,239,0,Safari 3,86,2016-05-26 +session,239,1,Safari 50,62,2018-04-05 +session,239,2,Chrome 31,78,2016-10-04 +user,240,Chance,Willa,48 +session,240,0,Chrome 37,73,2018-05-25 +session,240,1,Safari 5,99,2018-02-19 +session,240,2,Firefox 18,100,2017-12-15 +session,240,3,Firefox 10,112,2017-12-20 +session,240,4,Safari 13,91,2018-11-12 +session,240,5,Chrome 44,98,2016-11-09 +session,240,6,Internet Explorer 22,63,2016-06-21 +session,240,7,Chrome 40,74,2017-05-18 +user,241,Petrina,Carmelita,1 +session,241,0,Safari 32,75,2017-10-24 +session,241,1,Safari 30,1,2017-07-01 +session,241,2,Safari 29,17,2016-06-02 +session,241,3,Chrome 22,107,2018-08-20 +session,241,4,Chrome 24,118,2018-03-08 +session,241,5,Chrome 13,99,2017-09-29 +session,241,6,Internet Explorer 38,65,2016-11-05 +session,241,7,Safari 8,25,2018-11-24 +session,241,8,Internet Explorer 7,5,2016-11-24 +user,242,Kathrin,Clement,29 +session,242,0,Chrome 39,86,2018-01-15 +session,242,1,Firefox 49,73,2017-10-23 +session,242,2,Internet Explorer 17,61,2017-02-10 +user,243,Brooks,Theron,80 +session,243,0,Safari 47,54,2018-12-10 +session,243,1,Firefox 43,110,2016-12-29 +session,243,2,Safari 46,92,2017-05-28 +session,243,3,Internet Explorer 1,54,2017-11-03 +session,243,4,Chrome 2,98,2018-08-04 +user,244,Brain,Dewitt,78 +session,244,0,Safari 44,31,2019-02-04 +session,244,1,Internet Explorer 44,48,2016-07-22 +session,244,2,Firefox 25,70,2018-12-09 +session,244,3,Firefox 43,62,2018-09-29 +session,244,4,Safari 1,10,2016-10-15 +session,244,5,Safari 47,63,2018-03-11 +user,245,Brent,Elia,86 +session,245,0,Internet Explorer 50,116,2018-03-12 +user,246,Philip,Cecelia,17 +session,246,0,Firefox 45,43,2018-07-15 +session,246,1,Chrome 50,64,2017-08-18 +session,246,2,Chrome 8,59,2018-08-22 +user,247,Calvin,Della,90 +session,247,0,Internet Explorer 15,23,2017-01-25 +user,248,Warren,Iris,72 +session,248,0,Chrome 26,62,2017-10-18 +user,249,Isidra,Dorsey,83 +session,249,0,Internet Explorer 3,77,2018-08-10 +session,249,1,Safari 36,87,2018-11-22 +session,249,2,Firefox 9,95,2018-12-26 +session,249,3,Safari 19,39,2017-04-21 +user,250,Yen,Claudia,60 +session,250,0,Chrome 49,41,2018-07-08 +session,250,1,Internet Explorer 6,100,2017-01-28 +session,250,2,Firefox 19,93,2017-08-09 +user,251,Mora,Ha,86 +session,251,0,Internet Explorer 1,1,2018-10-30 +session,251,1,Firefox 15,95,2018-04-13 +session,251,2,Chrome 22,10,2016-05-20 +session,251,3,Safari 33,103,2018-10-02 +session,251,4,Safari 43,67,2019-01-11 +session,251,5,Firefox 24,50,2019-01-05 +session,251,6,Firefox 49,36,2016-09-21 +session,251,7,Internet Explorer 48,19,2018-01-20 +session,251,8,Safari 11,52,2017-08-08 +user,252,Dorian,Deane,15 +session,252,0,Safari 23,86,2017-04-23 +session,252,1,Internet Explorer 40,87,2017-06-14 +session,252,2,Internet Explorer 47,29,2017-07-21 +session,252,3,Chrome 27,4,2018-05-27 +session,252,4,Safari 16,0,2018-10-07 +session,252,5,Internet Explorer 26,54,2018-12-20 +session,252,6,Firefox 14,66,2017-08-05 +session,252,7,Internet Explorer 27,13,2017-01-28 +user,253,Shawn,Jaimee,79 +session,253,0,Internet Explorer 21,68,2017-01-19 +session,253,1,Internet Explorer 35,62,2017-04-29 +session,253,2,Internet Explorer 1,64,2017-12-29 +session,253,3,Chrome 36,2,2019-01-21 +session,253,4,Firefox 19,43,2018-03-10 +user,254,Cori,Divina,16 +session,254,0,Internet Explorer 30,116,2017-07-27 +session,254,1,Internet Explorer 42,74,2018-10-25 +session,254,2,Firefox 30,21,2018-12-20 +session,254,3,Firefox 13,57,2018-12-01 +session,254,4,Chrome 3,14,2018-07-16 +session,254,5,Firefox 34,99,2017-02-28 +user,255,Garret,Georgann,75 +session,255,0,Chrome 8,33,2017-11-14 +session,255,1,Chrome 43,51,2016-08-06 +session,255,2,Internet Explorer 21,20,2019-01-11 +session,255,3,Chrome 37,102,2018-11-16 +session,255,4,Safari 11,66,2016-08-27 +session,255,5,Internet Explorer 23,47,2017-10-17 +session,255,6,Internet Explorer 14,43,2019-01-11 +session,255,7,Firefox 27,60,2016-12-15 +session,255,8,Firefox 33,83,2018-08-23 +user,256,Theo,Tricia,82 +session,256,0,Internet Explorer 32,71,2017-01-25 +user,257,Libby,Lera,12 +session,257,0,Firefox 24,86,2016-12-01 +session,257,1,Safari 38,104,2017-03-21 +session,257,2,Chrome 16,47,2019-01-04 +session,257,3,Safari 14,25,2018-07-27 +session,257,4,Chrome 5,112,2018-03-27 +session,257,5,Firefox 10,43,2018-02-04 +session,257,6,Firefox 15,82,2018-05-25 +session,257,7,Chrome 29,38,2017-05-17 +session,257,8,Firefox 41,4,2018-01-09 +session,257,9,Firefox 8,96,2017-05-15 +user,258,Evalyn,Abe,39 +session,258,0,Safari 47,2,2018-09-21 +session,258,1,Safari 36,117,2017-07-31 +session,258,2,Internet Explorer 14,53,2016-12-06 +session,258,3,Internet Explorer 24,103,2018-10-07 +session,258,4,Safari 42,28,2018-05-24 +session,258,5,Internet Explorer 24,95,2018-10-15 +user,259,Alexandra,Malia,95 +session,259,0,Firefox 41,70,2017-06-13 +session,259,1,Internet Explorer 34,70,2018-12-21 +session,259,2,Firefox 13,81,2018-03-10 +session,259,3,Internet Explorer 28,38,2017-03-21 +session,259,4,Chrome 6,109,2016-05-29 +session,259,5,Internet Explorer 45,102,2018-11-22 +session,259,6,Firefox 21,8,2017-01-13 +session,259,7,Internet Explorer 45,84,2017-01-15 +user,260,Tamisha,Camelia,84 +session,260,0,Safari 25,93,2017-06-10 +session,260,1,Internet Explorer 46,110,2016-09-26 +session,260,2,Firefox 18,107,2018-04-28 +session,260,3,Chrome 28,52,2018-07-07 +session,260,4,Internet Explorer 29,98,2017-10-20 +session,260,5,Safari 14,116,2018-04-22 +session,260,6,Firefox 27,15,2017-05-30 +session,260,7,Firefox 33,111,2018-02-11 +session,260,8,Safari 23,8,2018-11-13 +session,260,9,Chrome 25,117,2017-08-12 +user,261,Walker,Gerry,71 +session,261,0,Chrome 45,61,2018-02-17 +session,261,1,Firefox 11,75,2016-11-05 +session,261,2,Internet Explorer 15,61,2018-04-29 +session,261,3,Safari 17,56,2016-12-19 +user,262,Tuan,Maire,13 +session,262,0,Firefox 15,98,2016-08-08 +session,262,1,Chrome 30,35,2017-09-09 +user,263,Elvin,Ayesha,77 +session,263,0,Firefox 43,16,2019-02-04 +session,263,1,Chrome 5,57,2017-03-26 +session,263,2,Firefox 49,66,2017-08-18 +session,263,3,Chrome 3,103,2017-12-06 +user,264,Stanton,Margareta,11 +session,264,0,Firefox 19,30,2018-12-28 +session,264,1,Internet Explorer 16,91,2018-06-03 +session,264,2,Safari 16,107,2017-08-17 +session,264,3,Firefox 4,6,2016-07-11 +session,264,4,Firefox 12,13,2017-05-22 +session,264,5,Chrome 20,38,2017-02-04 +session,264,6,Chrome 2,41,2016-12-18 +user,265,Delora,Porter,44 +session,265,0,Chrome 18,72,2018-08-27 +session,265,1,Firefox 45,18,2016-11-08 +session,265,2,Chrome 7,25,2018-03-15 +session,265,3,Chrome 27,41,2018-11-19 +session,265,4,Safari 30,15,2018-08-26 +session,265,5,Internet Explorer 7,81,2018-11-05 +session,265,6,Internet Explorer 3,26,2016-06-06 +session,265,7,Chrome 31,66,2018-02-21 +session,265,8,Firefox 6,114,2016-09-21 +session,265,9,Chrome 2,101,2018-03-06 +user,266,Jene,Margart,37 +session,266,0,Chrome 41,33,2017-07-19 +session,266,1,Safari 48,103,2017-09-15 +session,266,2,Safari 11,70,2018-08-23 +session,266,3,Safari 31,28,2017-06-23 +user,267,Vertie,Rob,83 +session,267,0,Safari 50,113,2017-12-05 +session,267,1,Chrome 26,22,2016-07-27 +session,267,2,Firefox 34,114,2017-07-18 +session,267,3,Chrome 18,56,2017-11-09 +user,268,Jude,Rowena,47 +session,268,0,Internet Explorer 20,51,2018-05-05 +session,268,1,Firefox 36,14,2017-05-19 +session,268,2,Firefox 41,87,2018-10-21 +session,268,3,Safari 31,3,2017-08-14 +session,268,4,Safari 29,13,2016-08-06 +session,268,5,Firefox 7,31,2017-07-10 +session,268,6,Firefox 9,77,2017-12-28 +user,269,Sachiko,Marlys,68 +session,269,0,Chrome 28,61,2017-02-20 +session,269,1,Firefox 37,2,2016-08-18 +user,270,Walker,Qiana,23 +session,270,0,Firefox 49,13,2017-04-11 +session,270,1,Safari 42,114,2017-05-15 +session,270,2,Firefox 23,84,2017-05-23 +session,270,3,Chrome 23,67,2018-01-01 +user,271,Matilda,Anastacia,58 +session,271,0,Safari 26,79,2016-06-27 +session,271,1,Safari 8,89,2016-05-30 +session,271,2,Firefox 32,97,2018-10-25 +session,271,3,Firefox 11,87,2017-01-25 +session,271,4,Chrome 27,99,2016-08-27 +session,271,5,Chrome 2,111,2017-11-25 +session,271,6,Safari 37,116,2017-05-04 +user,272,Cory,Freda,87 +session,272,0,Internet Explorer 2,85,2018-01-26 +session,272,1,Safari 10,112,2019-01-11 +session,272,2,Internet Explorer 43,33,2018-10-13 +session,272,3,Internet Explorer 30,89,2019-02-09 +session,272,4,Chrome 25,96,2016-10-14 +session,272,5,Internet Explorer 27,116,2018-07-08 +session,272,6,Chrome 1,37,2019-02-03 +session,272,7,Internet Explorer 41,13,2017-12-19 +session,272,8,Firefox 33,71,2017-03-26 +user,273,Carlene,Alexis,49 +session,273,0,Internet Explorer 11,13,2018-08-30 +user,274,Milagros,Loreta,35 +session,274,0,Internet Explorer 4,40,2018-06-20 +session,274,1,Internet Explorer 12,114,2018-02-04 +session,274,2,Internet Explorer 5,101,2017-12-05 +session,274,3,Firefox 42,89,2016-12-12 +session,274,4,Firefox 4,94,2017-07-04 +user,275,Leonardo,Antonette,95 +session,275,0,Internet Explorer 47,94,2018-02-01 +session,275,1,Firefox 3,53,2016-08-12 +session,275,2,Safari 24,42,2018-08-08 +session,275,3,Safari 9,32,2016-10-11 +session,275,4,Safari 24,80,2016-09-22 +session,275,5,Chrome 33,31,2016-08-02 +session,275,6,Chrome 29,59,2017-11-01 +session,275,7,Firefox 25,65,2016-09-17 +user,276,Alyce,Susana,69 +session,276,0,Chrome 42,119,2016-11-28 +session,276,1,Chrome 1,75,2016-12-04 +session,276,2,Chrome 29,65,2018-10-04 +user,277,Miquel,Tori,99 +session,277,0,Chrome 34,47,2018-04-05 +session,277,1,Firefox 9,85,2017-09-06 +session,277,2,Safari 47,59,2017-02-05 +user,278,Ming,Rachelle,49 +session,278,0,Safari 43,9,2019-01-08 +user,279,Sonya,Rubie,6 +session,279,0,Safari 13,76,2018-03-08 +session,279,1,Firefox 1,32,2016-10-12 +session,279,2,Firefox 11,74,2017-04-02 +session,279,3,Safari 24,79,2016-10-27 +session,279,4,Internet Explorer 42,68,2018-05-02 +session,279,5,Safari 16,42,2016-12-26 +session,279,6,Safari 40,32,2018-12-16 +session,279,7,Safari 24,36,2016-06-13 +user,280,Leticia,Elana,20 +session,280,0,Safari 39,58,2017-11-23 +session,280,1,Internet Explorer 1,17,2016-09-12 +session,280,2,Firefox 48,0,2017-05-19 +session,280,3,Chrome 24,78,2017-03-05 +session,280,4,Internet Explorer 7,9,2016-07-02 +session,280,5,Chrome 19,118,2017-05-21 +session,280,6,Firefox 46,110,2017-12-06 +session,280,7,Chrome 38,93,2018-05-06 +user,281,Geoffrey,Leif,76 +session,281,0,Internet Explorer 19,109,2018-09-11 +session,281,1,Chrome 19,60,2017-12-21 +session,281,2,Internet Explorer 18,60,2018-12-28 +session,281,3,Internet Explorer 29,35,2018-07-24 +session,281,4,Internet Explorer 30,86,2016-08-21 +user,282,Perry,Shila,49 +session,282,0,Safari 44,56,2017-09-23 +session,282,1,Firefox 31,62,2019-01-24 +session,282,2,Chrome 13,1,2018-09-11 +session,282,3,Chrome 38,16,2018-02-28 +session,282,4,Chrome 31,56,2017-03-19 +session,282,5,Firefox 3,70,2018-02-21 +session,282,6,Safari 47,58,2017-05-04 +session,282,7,Safari 45,73,2017-02-06 +session,282,8,Internet Explorer 46,94,2018-03-15 +session,282,9,Safari 50,89,2017-11-25 +user,283,Johnathon,Kimberlee,26 +session,283,0,Firefox 5,19,2017-05-22 +session,283,1,Internet Explorer 47,89,2017-08-27 +session,283,2,Internet Explorer 6,118,2018-11-28 +session,283,3,Internet Explorer 17,44,2017-01-06 +session,283,4,Firefox 24,92,2017-07-16 +session,283,5,Internet Explorer 3,106,2018-11-28 +session,283,6,Internet Explorer 4,45,2018-07-25 +session,283,7,Chrome 29,94,2017-06-18 +session,283,8,Chrome 44,109,2016-12-19 +user,284,Shanti,Derrick,52 +session,284,0,Chrome 43,17,2017-02-01 +session,284,1,Internet Explorer 33,17,2018-07-30 +session,284,2,Firefox 7,22,2018-11-12 +session,284,3,Internet Explorer 36,58,2017-11-08 +session,284,4,Firefox 10,42,2017-02-14 +session,284,5,Internet Explorer 41,73,2018-06-13 +session,284,6,Chrome 5,31,2018-10-25 +session,284,7,Safari 45,70,2019-01-10 +session,284,8,Firefox 12,19,2017-12-11 +user,285,Peggy,Wynona,98 +session,285,0,Safari 2,66,2016-08-24 +session,285,1,Chrome 36,20,2018-07-21 +session,285,2,Chrome 37,1,2017-09-09 +session,285,3,Chrome 17,61,2017-05-04 +session,285,4,Safari 3,28,2018-07-08 +session,285,5,Firefox 31,92,2018-12-25 +session,285,6,Firefox 11,56,2017-04-25 +session,285,7,Safari 6,100,2018-08-24 +user,286,Mable,Nikia,90 +session,286,0,Firefox 36,82,2016-07-07 +session,286,1,Internet Explorer 24,5,2018-01-28 +session,286,2,Firefox 47,115,2017-02-16 +session,286,3,Chrome 30,92,2019-01-16 +session,286,4,Safari 49,106,2018-12-21 +user,287,Gaston,Carter,43 +session,287,0,Safari 33,67,2016-08-16 +session,287,1,Firefox 7,27,2018-05-17 +session,287,2,Chrome 41,54,2018-07-10 +user,288,Anderson,Terri,39 +session,288,0,Firefox 24,0,2017-01-26 +session,288,1,Internet Explorer 50,24,2018-08-09 +session,288,2,Internet Explorer 5,105,2018-06-11 +session,288,3,Safari 41,118,2018-03-16 +session,288,4,Safari 8,106,2017-02-16 +user,289,Mike,Debbie,10 +session,289,0,Chrome 12,3,2016-09-01 +session,289,1,Safari 14,112,2017-10-25 +session,289,2,Safari 12,107,2018-09-29 +session,289,3,Safari 22,84,2017-08-11 +session,289,4,Firefox 15,84,2016-07-17 +session,289,5,Safari 43,11,2017-05-25 +session,289,6,Chrome 18,104,2017-04-24 +session,289,7,Internet Explorer 12,62,2018-07-17 +session,289,8,Internet Explorer 13,33,2016-07-23 +session,289,9,Firefox 29,50,2017-04-17 +user,290,Arron,Carlotta,45 +session,290,0,Safari 10,3,2016-08-20 +session,290,1,Internet Explorer 1,108,2018-03-18 +session,290,2,Internet Explorer 29,105,2016-09-13 +user,291,Marcel,Abdul,51 +session,291,0,Internet Explorer 44,34,2018-11-17 +session,291,1,Internet Explorer 9,35,2016-09-30 +session,291,2,Chrome 27,73,2017-05-24 +session,291,3,Chrome 31,37,2018-02-06 +session,291,4,Firefox 38,85,2016-11-06 +session,291,5,Chrome 23,43,2019-01-17 +session,291,6,Firefox 13,103,2017-01-13 +user,292,Vickie,Lakendra,93 +session,292,0,Chrome 37,32,2018-10-14 +session,292,1,Safari 29,115,2017-04-22 +session,292,2,Safari 18,119,2018-09-23 +user,293,Dino,Shemika,16 +session,293,0,Internet Explorer 23,92,2016-12-27 +session,293,1,Safari 29,101,2018-06-25 +session,293,2,Internet Explorer 4,8,2016-12-17 +session,293,3,Firefox 36,10,2016-10-14 +user,294,Cornelius,Tisa,20 +session,294,0,Safari 41,82,2016-09-08 +session,294,1,Safari 21,22,2017-01-24 +user,295,Naoma,Harrison,83 +session,295,0,Internet Explorer 21,91,2016-07-15 +session,295,1,Internet Explorer 30,87,2016-07-16 +session,295,2,Internet Explorer 26,47,2017-10-30 +session,295,3,Firefox 28,36,2017-01-29 +session,295,4,Safari 45,80,2017-03-24 +session,295,5,Chrome 35,96,2018-04-26 +user,296,Crysta,Gwen,52 +session,296,0,Internet Explorer 47,92,2017-01-02 +session,296,1,Safari 9,72,2017-12-31 +session,296,2,Firefox 40,35,2017-03-24 +session,296,3,Chrome 24,77,2017-12-26 +session,296,4,Firefox 42,101,2018-06-22 +session,296,5,Safari 39,45,2018-02-19 +session,296,6,Firefox 36,61,2018-06-05 +session,296,7,Internet Explorer 1,70,2017-11-03 +session,296,8,Safari 25,60,2016-11-03 +session,296,9,Chrome 40,36,2018-08-07 +user,297,Liberty,Billie,74 +session,297,0,Internet Explorer 39,103,2016-12-31 +session,297,1,Firefox 28,0,2018-12-25 +session,297,2,Chrome 37,77,2017-07-08 +session,297,3,Firefox 16,48,2017-12-14 +session,297,4,Safari 23,22,2018-06-25 +session,297,5,Safari 44,21,2018-09-19 +session,297,6,Internet Explorer 12,52,2017-04-24 +session,297,7,Firefox 6,46,2017-05-25 +session,297,8,Firefox 12,57,2016-11-24 +user,298,Demetria,Daysi,42 +session,298,0,Chrome 44,27,2016-07-20 +session,298,1,Chrome 50,58,2017-04-13 +session,298,2,Safari 40,90,2019-01-17 +session,298,3,Internet Explorer 44,96,2018-05-27 +user,299,Lady,Gricelda,8 +session,299,0,Firefox 28,88,2017-08-16 +session,299,1,Chrome 11,14,2017-11-17 +session,299,2,Chrome 25,10,2018-09-25 +session,299,3,Safari 17,83,2017-10-21 +session,299,4,Safari 16,81,2017-07-05 +session,299,5,Chrome 26,40,2016-10-17 +session,299,6,Chrome 3,103,2018-03-04 +session,299,7,Chrome 24,70,2017-08-06 +user,300,Sulema,Daryl,99 +session,300,0,Internet Explorer 39,35,2018-01-16 +session,300,1,Safari 1,5,2016-10-22 +session,300,2,Firefox 10,61,2017-04-03 +session,300,3,Safari 37,71,2017-08-03 +user,301,Rachael,Lauryn,78 +session,301,0,Safari 7,51,2017-12-17 +user,302,Margarito,Arden,36 +session,302,0,Internet Explorer 33,23,2018-04-26 +session,302,1,Firefox 40,83,2018-10-06 +session,302,2,Chrome 5,118,2018-10-22 +session,302,3,Safari 25,17,2019-01-30 +session,302,4,Internet Explorer 34,95,2017-03-20 +session,302,5,Chrome 4,31,2018-11-06 +session,302,6,Internet Explorer 9,34,2017-04-24 +session,302,7,Firefox 49,68,2018-08-22 +session,302,8,Internet Explorer 35,83,2017-08-28 +user,303,Cletus,Jamel,28 +session,303,0,Chrome 18,37,2017-05-01 +session,303,1,Safari 38,30,2017-08-05 +session,303,2,Chrome 29,62,2016-08-08 +session,303,3,Safari 7,84,2016-11-14 +session,303,4,Internet Explorer 31,113,2016-07-24 +session,303,5,Firefox 6,90,2016-10-14 +session,303,6,Firefox 22,47,2018-12-25 +session,303,7,Firefox 41,15,2016-06-10 +session,303,8,Internet Explorer 50,3,2017-08-07 +user,304,Roscoe,Greg,28 +session,304,0,Firefox 28,99,2019-02-09 +session,304,1,Safari 29,49,2018-01-27 +session,304,2,Safari 9,61,2018-06-22 +session,304,3,Chrome 45,86,2018-05-20 +session,304,4,Safari 28,66,2017-07-06 +session,304,5,Chrome 32,92,2017-07-07 +session,304,6,Safari 26,25,2017-07-24 +user,305,Cody,Henry,36 +session,305,0,Safari 10,21,2016-11-05 +session,305,1,Internet Explorer 2,11,2016-05-23 +session,305,2,Chrome 5,1,2016-10-02 +user,306,Reba,Delena,33 +session,306,0,Chrome 36,37,2017-06-03 +session,306,1,Firefox 39,56,2018-10-26 +session,306,2,Chrome 34,108,2017-07-24 +session,306,3,Firefox 21,67,2018-07-11 +session,306,4,Internet Explorer 5,59,2018-01-29 +session,306,5,Firefox 43,102,2017-08-04 +session,306,6,Chrome 45,74,2017-03-20 +session,306,7,Internet Explorer 39,77,2017-07-04 +session,306,8,Internet Explorer 33,79,2017-05-31 +user,307,Moshe,Nora,80 +session,307,0,Safari 4,32,2016-06-10 +session,307,1,Safari 19,11,2018-05-18 +user,308,Lai,Christie,98 +session,308,0,Chrome 47,38,2017-11-10 +session,308,1,Chrome 10,81,2016-09-12 +session,308,2,Firefox 28,87,2018-08-18 +user,309,Anabel,Shera,99 +session,309,0,Internet Explorer 16,34,2017-02-25 +session,309,1,Firefox 23,57,2016-07-06 +session,309,2,Firefox 34,37,2018-03-03 +session,309,3,Internet Explorer 12,107,2017-09-20 +session,309,4,Internet Explorer 36,22,2017-10-28 +user,310,Willie,Heidi,90 +session,310,0,Chrome 42,76,2017-08-25 +session,310,1,Internet Explorer 20,112,2018-12-01 +session,310,2,Safari 36,117,2018-11-15 +session,310,3,Firefox 24,59,2016-09-13 +user,311,Romeo,Alison,37 +session,311,0,Safari 33,92,2017-02-25 +session,311,1,Firefox 25,109,2017-09-04 +session,311,2,Chrome 37,77,2016-12-05 +session,311,3,Firefox 35,31,2017-05-23 +session,311,4,Internet Explorer 46,1,2017-11-11 +session,311,5,Safari 19,27,2017-05-24 +user,312,Cary,Kasey,64 +session,312,0,Internet Explorer 13,11,2017-01-05 +session,312,1,Firefox 27,3,2016-11-22 +session,312,2,Safari 38,107,2017-08-13 +session,312,3,Firefox 12,37,2016-06-16 +session,312,4,Internet Explorer 50,51,2016-06-26 +user,313,Whitney,Yolando,50 +session,313,0,Safari 49,80,2018-04-23 +session,313,1,Safari 48,86,2018-07-23 +session,313,2,Safari 8,57,2018-10-03 +session,313,3,Internet Explorer 20,72,2016-09-03 +user,314,Juan,Kelli,56 +session,314,0,Safari 50,30,2016-11-04 +session,314,1,Firefox 2,43,2018-06-16 +session,314,2,Internet Explorer 33,8,2017-06-21 +user,315,Brandy,Beryl,9 +session,315,0,Internet Explorer 47,14,2017-07-30 +session,315,1,Safari 42,87,2017-07-31 +session,315,2,Firefox 25,42,2017-10-17 +session,315,3,Internet Explorer 50,1,2018-04-06 +user,316,Walker,Susanna,58 +session,316,0,Firefox 4,14,2017-04-09 +session,316,1,Firefox 35,75,2018-11-14 +session,316,2,Chrome 34,51,2018-02-11 +session,316,3,Safari 20,20,2019-01-25 +session,316,4,Chrome 50,5,2016-12-15 +session,316,5,Internet Explorer 9,37,2017-07-24 +session,316,6,Internet Explorer 30,39,2018-02-05 +user,317,Guy,Bette,96 +session,317,0,Chrome 11,23,2017-04-26 +user,318,Loyce,Barb,49 +session,318,0,Internet Explorer 2,81,2018-10-16 +session,318,1,Safari 34,51,2018-05-01 +session,318,2,Safari 48,107,2017-11-19 +session,318,3,Safari 13,2,2017-02-10 +session,318,4,Safari 18,20,2016-09-24 +session,318,5,Chrome 7,100,2017-06-07 +session,318,6,Chrome 48,60,2017-11-14 +session,318,7,Safari 15,77,2017-07-02 +session,318,8,Firefox 49,99,2018-01-06 +session,318,9,Firefox 33,75,2017-03-31 +user,319,Marilee,Queenie,44 +session,319,0,Chrome 41,59,2016-08-26 +session,319,1,Safari 3,10,2017-05-31 +session,319,2,Chrome 7,101,2017-04-17 +session,319,3,Safari 36,24,2017-04-13 +session,319,4,Chrome 39,10,2017-02-13 +session,319,5,Chrome 28,19,2016-06-19 +session,319,6,Internet Explorer 27,90,2017-02-17 +session,319,7,Chrome 42,49,2017-12-06 +user,320,Tangela,Salley,32 +session,320,0,Chrome 28,115,2017-02-03 +session,320,1,Firefox 28,51,2019-01-29 +session,320,2,Internet Explorer 46,7,2016-11-12 +session,320,3,Firefox 46,59,2016-08-06 +session,320,4,Safari 4,83,2017-08-27 +session,320,5,Firefox 9,3,2018-08-08 +session,320,6,Internet Explorer 35,109,2018-04-01 +session,320,7,Internet Explorer 1,1,2018-09-13 +session,320,8,Internet Explorer 10,107,2017-06-17 +session,320,9,Internet Explorer 28,116,2018-03-22 +user,321,Ina,Alia,42 +session,321,0,Internet Explorer 44,118,2017-11-21 +session,321,1,Safari 45,35,2018-01-08 +session,321,2,Safari 31,94,2017-06-04 +session,321,3,Internet Explorer 21,93,2018-04-08 +user,322,Randal,Yen,31 +session,322,0,Firefox 26,97,2017-03-28 +session,322,1,Firefox 21,41,2018-10-01 +session,322,2,Internet Explorer 25,98,2017-11-19 +session,322,3,Firefox 42,89,2018-06-10 +user,323,Reuben,Shanta,59 +session,323,0,Firefox 32,87,2017-11-25 +session,323,1,Firefox 11,98,2016-10-11 +session,323,2,Safari 37,72,2017-02-11 +session,323,3,Internet Explorer 14,0,2017-04-29 +session,323,4,Internet Explorer 1,67,2017-12-22 +session,323,5,Safari 30,22,2016-11-02 +session,323,6,Chrome 38,27,2018-05-27 +session,323,7,Internet Explorer 21,21,2017-01-24 +session,323,8,Chrome 13,27,2016-12-18 +user,324,Waneta,Clarice,66 +session,324,0,Internet Explorer 42,95,2018-01-06 +session,324,1,Safari 30,54,2017-02-02 +session,324,2,Internet Explorer 43,81,2016-12-25 +session,324,3,Firefox 42,93,2017-07-14 +session,324,4,Internet Explorer 43,15,2017-04-20 +session,324,5,Internet Explorer 5,46,2017-06-01 +user,325,Shay,Shanika,99 +session,325,0,Firefox 28,57,2018-01-04 +session,325,1,Safari 40,45,2018-02-14 +session,325,2,Chrome 14,56,2018-11-25 +session,325,3,Chrome 32,81,2017-03-03 +session,325,4,Internet Explorer 16,68,2016-08-28 +session,325,5,Internet Explorer 1,1,2016-08-21 +session,325,6,Firefox 35,97,2018-11-05 +session,325,7,Firefox 37,119,2017-04-02 +session,325,8,Internet Explorer 11,5,2016-11-20 +session,325,9,Firefox 24,117,2018-01-11 +user,326,Ariel,Hassan,77 +session,326,0,Internet Explorer 39,75,2016-11-24 +session,326,1,Safari 22,101,2018-07-28 +user,327,Kala,Paula,91 +session,327,0,Internet Explorer 37,58,2016-07-16 +session,327,1,Firefox 21,92,2017-05-11 +session,327,2,Internet Explorer 31,26,2016-12-24 +session,327,3,Safari 6,49,2017-10-24 +session,327,4,Chrome 44,62,2016-07-26 +session,327,5,Internet Explorer 26,1,2018-03-20 +session,327,6,Internet Explorer 43,85,2017-02-19 +user,328,Jere,Olive,24 +session,328,0,Chrome 26,47,2016-06-22 +session,328,1,Chrome 36,115,2018-05-27 +session,328,2,Safari 17,5,2016-08-03 +session,328,3,Chrome 30,51,2017-06-30 +session,328,4,Firefox 45,1,2016-08-28 +user,329,Nereida,Ryan,95 +session,329,0,Firefox 40,105,2017-03-20 +session,329,1,Safari 49,93,2017-12-03 +session,329,2,Chrome 4,108,2018-01-31 +session,329,3,Firefox 44,24,2016-06-04 +session,329,4,Firefox 9,108,2018-03-16 +user,330,Ebonie,Cherise,32 +session,330,0,Firefox 12,33,2018-06-06 +session,330,1,Chrome 11,49,2018-05-13 +session,330,2,Internet Explorer 11,54,2017-10-04 +user,331,Lourdes,William,74 +session,331,0,Chrome 29,69,2018-08-07 +session,331,1,Safari 49,15,2018-05-25 +session,331,2,Safari 27,3,2016-05-29 +session,331,3,Safari 37,8,2016-07-25 +user,332,Carmine,Christel,88 +session,332,0,Firefox 47,71,2016-07-11 +session,332,1,Chrome 16,44,2018-04-09 +session,332,2,Safari 48,117,2019-02-09 +session,332,3,Internet Explorer 46,19,2018-07-19 +session,332,4,Chrome 38,58,2017-09-29 +session,332,5,Firefox 23,4,2016-07-23 +session,332,6,Internet Explorer 11,24,2017-08-09 +session,332,7,Firefox 37,5,2016-08-31 +user,333,Waylon,Loni,10 +session,333,0,Safari 18,82,2018-02-12 +session,333,1,Chrome 46,60,2017-08-16 +session,333,2,Internet Explorer 23,14,2018-08-14 +session,333,3,Firefox 21,9,2018-09-02 +session,333,4,Firefox 21,40,2018-05-18 +user,334,Lamar,Antonio,96 +session,334,0,Firefox 42,72,2017-05-30 +session,334,1,Internet Explorer 4,99,2018-03-27 +session,334,2,Firefox 27,39,2018-04-01 +session,334,3,Internet Explorer 37,47,2016-07-18 +session,334,4,Firefox 39,112,2017-02-05 +session,334,5,Internet Explorer 44,31,2019-01-19 +session,334,6,Chrome 45,35,2017-06-18 +user,335,Eustolia,Jackelyn,94 +session,335,0,Chrome 21,38,2016-11-04 +user,336,Man,Willian,4 +session,336,0,Safari 50,107,2016-07-21 +session,336,1,Safari 8,69,2018-07-08 +session,336,2,Safari 5,34,2017-03-20 +user,337,Shanti,Rosalva,37 +session,337,0,Firefox 11,117,2016-07-28 +session,337,1,Internet Explorer 34,2,2016-09-02 +session,337,2,Internet Explorer 20,84,2018-09-13 +session,337,3,Chrome 38,13,2017-08-21 +session,337,4,Internet Explorer 9,117,2017-09-24 +session,337,5,Firefox 13,43,2017-11-16 +session,337,6,Firefox 50,118,2017-08-05 +session,337,7,Chrome 46,6,2018-09-29 +session,337,8,Firefox 10,0,2017-01-26 +user,338,Sylvie,Eloisa,46 +session,338,0,Firefox 6,105,2016-12-05 +session,338,1,Safari 28,117,2018-09-01 +session,338,2,Safari 23,45,2018-03-09 +session,338,3,Internet Explorer 32,67,2018-08-31 +session,338,4,Internet Explorer 1,37,2016-11-17 +session,338,5,Internet Explorer 49,41,2017-07-07 +session,338,6,Safari 48,52,2017-03-14 +session,338,7,Safari 29,94,2018-10-08 +session,338,8,Internet Explorer 50,62,2018-10-02 +user,339,Silvana,Palma,16 +session,339,0,Firefox 47,93,2016-10-15 +session,339,1,Firefox 17,27,2017-03-03 +session,339,2,Internet Explorer 49,13,2018-11-19 +session,339,3,Internet Explorer 40,53,2017-12-19 +session,339,4,Internet Explorer 26,111,2016-09-01 +session,339,5,Firefox 16,104,2018-12-06 +session,339,6,Internet Explorer 3,23,2016-11-24 +user,340,Lulu,Jordon,63 +session,340,0,Chrome 48,119,2016-06-16 +session,340,1,Chrome 48,104,2017-12-11 +session,340,2,Firefox 36,27,2016-07-22 +session,340,3,Safari 9,81,2018-04-30 +session,340,4,Firefox 2,65,2017-01-31 +session,340,5,Internet Explorer 8,77,2018-05-12 +session,340,6,Internet Explorer 49,7,2017-05-03 +session,340,7,Firefox 26,38,2018-01-14 +user,341,Cecil,Joseph,33 +session,341,0,Chrome 10,21,2017-03-29 +session,341,1,Firefox 8,104,2017-09-16 +session,341,2,Chrome 3,4,2017-08-11 +session,341,3,Firefox 2,70,2018-04-26 +session,341,4,Safari 24,7,2018-03-12 +session,341,5,Chrome 33,64,2017-10-03 +user,342,Yajaira,Dante,29 +session,342,0,Safari 47,23,2017-10-09 +session,342,1,Firefox 21,88,2017-01-24 +session,342,2,Firefox 25,50,2018-10-09 +session,342,3,Chrome 42,94,2018-11-19 +session,342,4,Safari 36,62,2016-07-18 +session,342,5,Firefox 2,91,2016-10-12 +session,342,6,Internet Explorer 22,85,2018-03-28 +session,342,7,Chrome 50,13,2016-11-27 +session,342,8,Firefox 44,24,2016-09-20 +user,343,Jennell,Brain,89 +session,343,0,Safari 46,89,2017-06-23 +session,343,1,Internet Explorer 2,105,2018-02-18 +session,343,2,Internet Explorer 29,8,2017-11-24 +session,343,3,Internet Explorer 38,107,2017-02-09 +session,343,4,Internet Explorer 24,101,2017-07-27 +session,343,5,Internet Explorer 40,83,2018-11-09 +session,343,6,Safari 35,30,2016-09-04 +session,343,7,Firefox 32,57,2017-03-13 +session,343,8,Chrome 25,11,2018-03-31 +session,343,9,Safari 41,24,2018-11-21 +user,344,Tiana,Milford,23 +session,344,0,Internet Explorer 30,51,2018-09-25 +session,344,1,Safari 36,20,2017-09-12 +session,344,2,Firefox 27,7,2016-06-10 +session,344,3,Safari 14,88,2018-08-01 +session,344,4,Internet Explorer 40,118,2018-02-13 +session,344,5,Chrome 2,41,2018-06-09 +session,344,6,Internet Explorer 9,52,2017-06-22 +session,344,7,Firefox 17,72,2018-12-03 +user,345,Cliff,Ethelyn,2 +session,345,0,Internet Explorer 43,116,2016-12-24 +session,345,1,Firefox 1,97,2018-07-11 +session,345,2,Safari 14,117,2019-02-02 +session,345,3,Internet Explorer 40,0,2018-08-06 +user,346,Pablo,Aaron,98 +session,346,0,Firefox 29,25,2018-06-07 +session,346,1,Internet Explorer 24,76,2018-10-02 +session,346,2,Safari 47,20,2018-08-03 +session,346,3,Chrome 4,79,2016-05-29 +session,346,4,Internet Explorer 40,50,2016-07-23 +session,346,5,Chrome 30,107,2017-11-26 +user,347,Benny,Angel,29 +session,347,0,Safari 2,20,2018-04-18 +session,347,1,Chrome 50,7,2018-09-16 +session,347,2,Internet Explorer 20,98,2016-12-09 +user,348,Kallie,Ignacia,23 +session,348,0,Chrome 24,39,2018-12-25 +session,348,1,Chrome 12,53,2018-10-16 +session,348,2,Chrome 22,49,2018-01-07 +session,348,3,Safari 5,50,2018-11-05 +session,348,4,Safari 40,110,2017-01-15 +session,348,5,Internet Explorer 50,19,2018-08-31 +session,348,6,Firefox 3,85,2018-07-02 +session,348,7,Firefox 25,108,2018-02-08 +user,349,Jerold,Justina,16 +session,349,0,Internet Explorer 47,1,2017-02-19 +session,349,1,Firefox 30,90,2017-12-19 +session,349,2,Firefox 10,36,2017-08-09 +session,349,3,Firefox 32,19,2017-08-05 +session,349,4,Internet Explorer 30,66,2018-04-04 +user,350,Latricia,Carolyn,21 +session,350,0,Safari 17,12,2018-01-24 +session,350,1,Chrome 31,43,2018-03-04 +session,350,2,Chrome 5,98,2017-04-12 +user,351,Kris,Odelia,58 +session,351,0,Safari 23,74,2018-09-20 +session,351,1,Firefox 36,81,2017-12-13 +session,351,2,Safari 23,116,2017-12-09 +session,351,3,Internet Explorer 19,118,2017-12-23 +session,351,4,Chrome 26,62,2017-01-20 +session,351,5,Firefox 10,116,2018-01-28 +session,351,6,Safari 46,31,2018-06-22 +session,351,7,Chrome 16,117,2018-02-21 +session,351,8,Chrome 40,92,2018-03-13 +session,351,9,Internet Explorer 13,32,2016-09-23 +user,352,Gilbert,Daisey,85 +session,352,0,Internet Explorer 11,36,2018-12-27 +session,352,1,Firefox 31,34,2017-01-01 +session,352,2,Safari 16,44,2017-08-17 +session,352,3,Safari 27,10,2019-01-31 +session,352,4,Firefox 47,114,2016-09-28 +session,352,5,Safari 47,69,2016-07-20 +session,352,6,Safari 45,89,2018-06-20 +session,352,7,Firefox 39,54,2018-11-12 +user,353,Ali,Paola,42 +session,353,0,Firefox 41,53,2018-08-13 +session,353,1,Firefox 33,11,2017-09-03 +session,353,2,Chrome 24,13,2019-01-31 +session,353,3,Chrome 17,18,2016-08-03 +session,353,4,Firefox 42,86,2018-07-11 +user,354,Debi,Socorro,41 +session,354,0,Internet Explorer 5,114,2017-02-26 +user,355,Cesar,Lorna,10 +session,355,0,Internet Explorer 2,7,2018-02-16 +session,355,1,Safari 44,87,2017-03-20 +session,355,2,Chrome 31,9,2017-03-13 +session,355,3,Internet Explorer 31,108,2018-02-08 +session,355,4,Chrome 33,22,2017-07-26 +user,356,Tyron,Keena,34 +session,356,0,Internet Explorer 41,28,2018-02-01 +session,356,1,Safari 42,39,2016-09-19 +session,356,2,Safari 10,75,2017-09-27 +session,356,3,Safari 10,66,2018-01-16 +session,356,4,Chrome 10,47,2016-10-10 +session,356,5,Internet Explorer 32,94,2017-04-29 +session,356,6,Firefox 3,33,2016-08-06 +session,356,7,Chrome 23,77,2017-03-17 +session,356,8,Safari 37,67,2016-12-31 +session,356,9,Firefox 28,43,2019-02-05 +user,357,Desmond,Paige,87 +session,357,0,Firefox 35,12,2018-10-27 +session,357,1,Chrome 50,99,2016-05-20 +session,357,2,Safari 12,11,2017-07-28 +session,357,3,Safari 25,47,2017-05-30 +session,357,4,Safari 24,97,2019-02-03 +session,357,5,Chrome 39,97,2018-09-04 +user,358,Ned,Chi,72 +session,358,0,Safari 46,54,2018-02-19 +user,359,Paulette,Jessika,95 +session,359,0,Safari 33,95,2016-05-30 +user,360,Sanjuanita,Luciano,67 +session,360,0,Firefox 43,88,2017-06-01 +session,360,1,Firefox 35,99,2018-11-05 +session,360,2,Chrome 20,32,2017-12-26 +session,360,3,Chrome 29,65,2017-11-20 +session,360,4,Firefox 43,119,2017-03-05 +session,360,5,Chrome 25,23,2018-12-09 +session,360,6,Chrome 32,47,2016-11-28 +user,361,Cordie,Marcia,63 +session,361,0,Internet Explorer 38,41,2016-07-26 +session,361,1,Internet Explorer 23,78,2017-06-24 +session,361,2,Chrome 38,29,2018-04-12 +session,361,3,Chrome 37,100,2018-01-16 +session,361,4,Internet Explorer 9,92,2018-07-17 +session,361,5,Chrome 38,47,2016-08-25 +user,362,Rosaline,Allen,81 +session,362,0,Internet Explorer 12,38,2017-03-09 +session,362,1,Safari 2,37,2017-12-01 +session,362,2,Internet Explorer 43,29,2017-11-01 +session,362,3,Chrome 13,28,2018-02-20 +session,362,4,Chrome 34,88,2017-05-31 +user,363,Rey,Victoria,2 +session,363,0,Firefox 50,79,2017-08-29 +session,363,1,Safari 30,107,2018-03-31 +session,363,2,Firefox 47,79,2018-08-31 +session,363,3,Firefox 9,65,2017-08-31 +user,364,Emmett,Sherice,90 +session,364,0,Firefox 4,4,2018-02-08 +session,364,1,Safari 46,90,2017-01-11 +session,364,2,Internet Explorer 28,110,2019-01-19 +session,364,3,Chrome 3,59,2018-01-03 +session,364,4,Safari 43,30,2018-11-17 +session,364,5,Chrome 10,80,2018-05-05 +session,364,6,Chrome 24,30,2018-02-23 +session,364,7,Firefox 18,34,2018-09-06 +session,364,8,Internet Explorer 16,52,2017-01-06 +user,365,Sulema,Refugio,34 +session,365,0,Firefox 12,77,2018-12-08 +session,365,1,Internet Explorer 3,12,2017-04-25 +session,365,2,Internet Explorer 42,95,2016-07-17 +user,366,Jefferey,Lamonica,15 +session,366,0,Safari 7,73,2018-01-08 +session,366,1,Chrome 41,66,2017-03-29 +session,366,2,Internet Explorer 36,13,2017-03-29 +user,367,Jimmy,Hanh,87 +session,367,0,Firefox 40,47,2017-07-25 +session,367,1,Safari 19,87,2018-12-15 +session,367,2,Firefox 41,18,2018-11-22 +session,367,3,Firefox 3,79,2018-12-16 +session,367,4,Firefox 21,109,2016-12-25 +session,367,5,Firefox 14,65,2018-07-23 +session,367,6,Safari 15,9,2017-12-30 +user,368,Luanna,Joel,28 +session,368,0,Internet Explorer 26,112,2018-10-01 +session,368,1,Chrome 5,99,2017-01-09 +session,368,2,Safari 4,100,2018-06-23 +session,368,3,Internet Explorer 36,30,2017-07-20 +session,368,4,Firefox 30,2,2016-05-26 +session,368,5,Chrome 21,110,2018-03-28 +session,368,6,Internet Explorer 22,62,2018-07-24 +user,369,Domenic,Suellen,8 +session,369,0,Safari 49,12,2017-12-14 +session,369,1,Firefox 44,38,2017-11-20 +session,369,2,Safari 30,64,2017-12-28 +user,370,Mathew,Fabiola,69 +session,370,0,Chrome 3,46,2017-02-24 +session,370,1,Safari 4,11,2017-03-03 +session,370,2,Chrome 24,70,2018-07-20 +session,370,3,Firefox 30,65,2018-10-28 +session,370,4,Internet Explorer 47,102,2018-07-10 +session,370,5,Internet Explorer 49,63,2019-01-17 +user,371,Willian,Verdell,91 +session,371,0,Safari 38,101,2018-02-27 +session,371,1,Safari 24,0,2018-05-30 +session,371,2,Internet Explorer 48,54,2018-02-14 +session,371,3,Internet Explorer 44,74,2016-09-14 +session,371,4,Firefox 49,55,2018-05-05 +session,371,5,Chrome 9,85,2017-11-29 +session,371,6,Firefox 12,108,2016-08-19 +session,371,7,Safari 40,102,2019-01-23 +session,371,8,Internet Explorer 25,22,2016-11-27 +session,371,9,Chrome 44,92,2018-04-14 +user,372,Dona,Irmgard,80 +session,372,0,Firefox 9,21,2016-08-08 +session,372,1,Internet Explorer 10,101,2019-01-12 +user,373,Twila,Ivana,83 +session,373,0,Chrome 38,103,2016-08-31 +session,373,1,Internet Explorer 38,101,2018-11-11 +user,374,Shondra,Margaret,87 +session,374,0,Chrome 42,86,2017-12-29 +session,374,1,Chrome 34,10,2018-11-27 +session,374,2,Firefox 41,17,2018-05-21 +session,374,3,Chrome 41,18,2018-11-13 +user,375,Brunilda,Eugene,26 +session,375,0,Internet Explorer 48,8,2016-11-09 +session,375,1,Firefox 48,92,2018-07-14 +session,375,2,Internet Explorer 45,23,2017-02-04 +session,375,3,Firefox 25,32,2017-01-20 +user,376,Valentine,Flora,90 +session,376,0,Chrome 11,103,2018-05-16 +user,377,Chuck,Tia,40 +session,377,0,Internet Explorer 2,94,2019-01-28 +session,377,1,Safari 16,45,2018-09-01 +session,377,2,Internet Explorer 7,79,2017-04-11 +session,377,3,Safari 14,103,2018-01-26 +session,377,4,Safari 3,47,2017-07-17 +session,377,5,Internet Explorer 25,45,2017-02-16 +session,377,6,Internet Explorer 25,108,2016-09-22 +user,378,Adaline,Carey,52 +session,378,0,Chrome 14,118,2018-11-13 +session,378,1,Safari 26,56,2017-11-24 +user,379,Nicolas,Seth,38 +session,379,0,Safari 7,3,2017-09-06 +session,379,1,Firefox 20,108,2017-12-17 +session,379,2,Chrome 1,10,2017-10-20 +session,379,3,Firefox 26,102,2017-03-09 +session,379,4,Safari 10,8,2018-07-29 +user,380,Antoine,Davis,23 +session,380,0,Chrome 10,100,2017-03-01 +session,380,1,Internet Explorer 50,95,2018-08-06 +session,380,2,Firefox 22,106,2016-10-07 +session,380,3,Firefox 7,117,2017-04-16 +session,380,4,Firefox 34,108,2017-12-11 +session,380,5,Firefox 14,54,2018-04-27 +session,380,6,Firefox 7,15,2018-01-01 +session,380,7,Firefox 34,54,2017-08-20 +user,381,Lesley,Bronwyn,17 +session,381,0,Internet Explorer 9,5,2017-08-16 +session,381,1,Safari 49,23,2018-12-13 +session,381,2,Internet Explorer 45,94,2018-05-07 +session,381,3,Internet Explorer 25,10,2017-01-23 +session,381,4,Firefox 46,11,2017-03-31 +session,381,5,Internet Explorer 37,62,2016-06-23 +session,381,6,Chrome 2,6,2016-09-18 +session,381,7,Firefox 18,78,2018-04-28 +user,382,Christopher,Grant,69 +session,382,0,Chrome 21,17,2016-07-18 +session,382,1,Safari 5,9,2018-08-27 +session,382,2,Chrome 37,27,2018-05-06 +session,382,3,Chrome 17,110,2018-11-12 +session,382,4,Firefox 43,46,2017-05-02 +session,382,5,Firefox 10,14,2016-05-23 +session,382,6,Internet Explorer 37,96,2017-06-26 +session,382,7,Firefox 8,80,2017-04-17 +user,383,Vincent,Lashaun,28 +session,383,0,Chrome 49,92,2017-08-30 +session,383,1,Chrome 2,15,2018-08-24 +session,383,2,Firefox 11,59,2016-11-26 +session,383,3,Chrome 27,17,2018-04-15 +session,383,4,Chrome 8,85,2017-10-14 +session,383,5,Safari 25,87,2016-08-19 +session,383,6,Safari 28,21,2018-07-24 +user,384,Curt,Ying,52 +session,384,0,Chrome 34,19,2017-04-01 +session,384,1,Chrome 46,83,2018-08-21 +session,384,2,Firefox 11,6,2016-11-17 +session,384,3,Chrome 9,57,2018-06-19 +session,384,4,Internet Explorer 15,33,2016-11-11 +session,384,5,Internet Explorer 41,72,2016-06-10 +session,384,6,Chrome 20,24,2017-01-30 +session,384,7,Internet Explorer 4,60,2017-04-08 +session,384,8,Chrome 15,73,2016-05-27 +user,385,Donya,Cristopher,46 +session,385,0,Safari 5,110,2016-08-08 +session,385,1,Firefox 18,33,2016-10-13 +session,385,2,Safari 15,12,2017-08-26 +session,385,3,Firefox 36,11,2016-06-11 +user,386,Lula,Senaida,5 +session,386,0,Safari 12,95,2016-08-09 +session,386,1,Internet Explorer 3,52,2016-06-01 +session,386,2,Firefox 27,118,2017-01-23 +session,386,3,Safari 43,96,2018-05-30 +session,386,4,Internet Explorer 15,65,2018-06-01 +session,386,5,Chrome 50,40,2018-01-17 +session,386,6,Safari 10,95,2018-07-17 +session,386,7,Safari 8,4,2017-05-22 +session,386,8,Safari 3,11,2017-08-15 +session,386,9,Firefox 10,82,2016-07-09 +user,387,Roger,Armando,14 +session,387,0,Chrome 35,27,2017-12-03 +session,387,1,Safari 8,104,2018-04-23 +user,388,Ula,Demetria,46 +session,388,0,Internet Explorer 30,26,2018-07-18 +session,388,1,Chrome 26,56,2018-06-22 +session,388,2,Chrome 21,38,2018-08-15 +session,388,3,Safari 24,7,2016-06-20 +session,388,4,Chrome 8,50,2018-09-19 +user,389,Suzanna,Ria,9 +session,389,0,Internet Explorer 32,74,2016-12-13 +session,389,1,Firefox 36,72,2018-09-21 +session,389,2,Safari 29,14,2016-05-25 +session,389,3,Safari 35,9,2016-06-02 +user,390,Lee,Naomi,5 +session,390,0,Chrome 22,23,2018-06-02 +session,390,1,Internet Explorer 8,42,2016-08-09 +session,390,2,Firefox 42,56,2017-01-26 +session,390,3,Internet Explorer 18,14,2018-09-27 +session,390,4,Firefox 6,33,2017-07-08 +session,390,5,Firefox 14,70,2017-09-03 +session,390,6,Chrome 43,66,2017-10-24 +session,390,7,Internet Explorer 3,15,2016-06-28 +user,391,Andre,Royal,99 +session,391,0,Internet Explorer 23,56,2018-11-13 +session,391,1,Firefox 24,34,2018-02-06 +user,392,Brigid,Titus,49 +session,392,0,Firefox 42,79,2017-09-02 +session,392,1,Chrome 22,29,2018-11-06 +session,392,2,Safari 20,36,2019-01-24 +session,392,3,Firefox 47,8,2018-03-17 +user,393,Nichole,Lizbeth,91 +session,393,0,Chrome 41,43,2017-04-15 +session,393,1,Chrome 42,28,2018-02-04 +session,393,2,Internet Explorer 6,114,2017-08-11 +session,393,3,Safari 30,11,2016-05-22 +session,393,4,Firefox 1,13,2017-04-20 +session,393,5,Chrome 28,48,2018-10-21 +session,393,6,Chrome 3,16,2018-07-20 +session,393,7,Chrome 47,111,2018-02-25 +session,393,8,Firefox 24,88,2016-08-25 +session,393,9,Internet Explorer 38,28,2017-04-05 +user,394,Christian,Inez,49 +session,394,0,Safari 16,43,2019-01-26 +session,394,1,Firefox 8,35,2017-06-13 +session,394,2,Safari 41,15,2018-04-12 +session,394,3,Chrome 27,22,2016-12-22 +session,394,4,Safari 27,0,2016-08-01 +session,394,5,Chrome 12,53,2016-06-22 +session,394,6,Firefox 16,111,2018-04-14 +user,395,Catina,Rema,98 +session,395,0,Chrome 14,91,2018-05-04 +session,395,1,Internet Explorer 31,91,2018-02-12 +session,395,2,Internet Explorer 43,54,2017-10-02 +session,395,3,Firefox 35,34,2016-12-10 +session,395,4,Internet Explorer 11,56,2016-08-25 +session,395,5,Firefox 45,50,2017-06-19 +session,395,6,Safari 7,104,2017-02-19 +session,395,7,Firefox 29,108,2016-11-03 +session,395,8,Internet Explorer 35,91,2018-05-15 +session,395,9,Safari 23,18,2017-06-19 +user,396,Kaleigh,Mirtha,66 +session,396,0,Chrome 30,99,2018-05-06 +session,396,1,Safari 17,88,2018-01-15 +session,396,2,Chrome 37,115,2017-12-24 +user,397,Karissa,Elois,55 +session,397,0,Internet Explorer 44,68,2017-06-14 +session,397,1,Firefox 23,61,2017-08-25 +session,397,2,Internet Explorer 46,19,2018-10-09 +session,397,3,Chrome 13,78,2017-11-18 +session,397,4,Firefox 10,80,2018-10-06 +session,397,5,Internet Explorer 22,92,2018-01-09 +session,397,6,Internet Explorer 4,85,2017-12-22 +user,398,Cyrstal,Freda,25 +session,398,0,Chrome 21,106,2017-01-18 +session,398,1,Chrome 48,80,2016-08-03 +session,398,2,Firefox 23,72,2017-12-31 +session,398,3,Chrome 44,78,2016-07-04 +session,398,4,Chrome 22,106,2017-05-10 +session,398,5,Chrome 4,57,2017-12-02 +session,398,6,Safari 35,87,2017-06-16 +session,398,7,Firefox 25,12,2018-04-20 +user,399,Jerry,Aurelio,50 +session,399,0,Safari 12,9,2018-01-22 +session,399,1,Chrome 2,111,2018-03-18 +session,399,2,Safari 3,109,2017-01-30 +session,399,3,Chrome 31,111,2017-12-07 +session,399,4,Firefox 16,43,2016-09-13 +session,399,5,Internet Explorer 43,103,2017-05-16 +session,399,6,Firefox 41,32,2018-11-08 +session,399,7,Internet Explorer 17,111,2018-11-04 +session,399,8,Safari 12,91,2016-09-25 +session,399,9,Internet Explorer 24,44,2018-06-24 +user,400,Marlon,Jame,93 +session,400,0,Firefox 3,38,2018-06-07 +session,400,1,Firefox 16,117,2018-12-30 +session,400,2,Firefox 37,99,2017-03-07 +session,400,3,Safari 20,80,2018-12-14 +session,400,4,Safari 31,46,2018-04-13 +session,400,5,Chrome 28,46,2017-07-31 +session,400,6,Internet Explorer 11,56,2018-04-05 +session,400,7,Firefox 9,4,2016-12-25 +session,400,8,Safari 40,71,2017-05-14 +session,400,9,Internet Explorer 41,112,2016-12-03 +user,401,Rochelle,Rebecka,13 +session,401,0,Internet Explorer 36,25,2017-02-22 +session,401,1,Safari 11,96,2018-03-09 +session,401,2,Safari 38,98,2017-05-01 +session,401,3,Chrome 22,25,2016-06-28 +session,401,4,Safari 7,50,2018-07-17 +session,401,5,Chrome 11,33,2018-12-01 +session,401,6,Safari 40,53,2017-12-06 +user,402,Jennifer,Jenell,65 +session,402,0,Internet Explorer 29,61,2018-01-04 +session,402,1,Internet Explorer 2,90,2019-01-22 +session,402,2,Safari 3,94,2016-08-17 +session,402,3,Internet Explorer 23,20,2018-12-06 +session,402,4,Internet Explorer 19,85,2016-09-08 +session,402,5,Internet Explorer 47,95,2018-12-22 +session,402,6,Firefox 18,115,2016-08-05 +user,403,Ricky,Norah,60 +session,403,0,Chrome 6,25,2018-09-02 +session,403,1,Safari 45,81,2017-05-10 +session,403,2,Safari 20,114,2018-08-26 +session,403,3,Safari 9,77,2017-01-20 +session,403,4,Firefox 13,28,2017-02-23 +session,403,5,Safari 9,109,2016-06-14 +session,403,6,Safari 21,5,2017-01-11 +session,403,7,Safari 50,107,2018-07-01 +user,404,Francesco,Reyes,16 +session,404,0,Chrome 49,103,2018-07-31 +session,404,1,Internet Explorer 33,71,2017-10-06 +user,405,Carleen,Neville,14 +session,405,0,Firefox 23,109,2016-09-15 +session,405,1,Safari 43,41,2018-09-01 +session,405,2,Safari 17,66,2018-05-10 +session,405,3,Chrome 3,67,2018-08-12 +user,406,Carmelia,Tomi,53 +session,406,0,Internet Explorer 32,84,2016-08-16 +session,406,1,Chrome 46,104,2016-11-09 +session,406,2,Firefox 32,6,2017-12-16 +session,406,3,Chrome 33,16,2018-06-10 +session,406,4,Safari 11,90,2017-05-12 +session,406,5,Chrome 28,32,2016-07-29 +session,406,6,Firefox 49,95,2016-08-13 +session,406,7,Safari 18,32,2017-04-09 +session,406,8,Safari 23,107,2016-10-16 +session,406,9,Internet Explorer 24,73,2018-10-18 +user,407,Frank,Fonda,81 +session,407,0,Safari 34,74,2018-11-27 +session,407,1,Chrome 3,19,2018-01-29 +session,407,2,Chrome 11,119,2017-09-08 +session,407,3,Chrome 4,4,2018-03-05 +session,407,4,Firefox 29,41,2018-10-19 +user,408,Coleman,Dawna,18 +session,408,0,Internet Explorer 41,111,2017-07-10 +session,408,1,Internet Explorer 3,11,2018-11-24 +session,408,2,Internet Explorer 24,76,2018-11-10 +session,408,3,Firefox 40,70,2018-07-19 +session,408,4,Internet Explorer 15,11,2017-02-17 +session,408,5,Internet Explorer 18,37,2018-10-04 +session,408,6,Firefox 32,103,2016-09-26 +session,408,7,Safari 50,89,2016-07-31 +session,408,8,Chrome 41,76,2018-11-26 +user,409,Justa,Yesenia,16 +session,409,0,Safari 2,0,2017-05-10 +session,409,1,Internet Explorer 19,38,2016-11-30 +session,409,2,Firefox 29,110,2017-04-21 +user,410,Milford,Danna,35 +session,410,0,Chrome 46,88,2018-09-02 +user,411,Delsie,Lorene,21 +session,411,0,Chrome 22,59,2016-10-14 +session,411,1,Chrome 20,114,2017-10-22 +session,411,2,Internet Explorer 27,109,2018-09-20 +session,411,3,Safari 3,17,2017-02-26 +session,411,4,Chrome 36,92,2019-01-02 +session,411,5,Chrome 47,60,2017-08-02 +session,411,6,Internet Explorer 14,85,2017-11-18 +session,411,7,Safari 2,86,2016-05-27 +session,411,8,Chrome 26,104,2018-09-05 +session,411,9,Internet Explorer 43,39,2019-01-15 +user,412,Jewel,Alpha,64 +session,412,0,Firefox 1,72,2017-01-18 +session,412,1,Safari 4,77,2018-07-25 +session,412,2,Internet Explorer 20,80,2017-03-29 +session,412,3,Chrome 4,12,2017-04-16 +user,413,Judson,Darcey,60 +session,413,0,Firefox 30,94,2017-05-29 +session,413,1,Firefox 32,59,2017-01-17 +session,413,2,Chrome 1,111,2018-01-23 +session,413,3,Firefox 5,97,2018-03-10 +session,413,4,Firefox 20,4,2017-12-02 +session,413,5,Safari 29,57,2018-05-28 +session,413,6,Safari 11,88,2018-09-13 +session,413,7,Safari 47,15,2018-07-23 +session,413,8,Safari 8,60,2017-05-07 +user,414,Franklyn,Torri,57 +session,414,0,Internet Explorer 46,68,2018-01-03 +session,414,1,Chrome 16,110,2017-03-08 +session,414,2,Internet Explorer 28,47,2018-07-19 +user,415,Belen,Mandie,57 +session,415,0,Firefox 37,6,2018-09-05 +session,415,1,Safari 13,12,2016-06-07 +session,415,2,Firefox 30,75,2018-02-04 +session,415,3,Safari 10,26,2016-11-22 +session,415,4,Firefox 13,86,2017-05-12 +session,415,5,Internet Explorer 11,83,2017-12-06 +session,415,6,Firefox 33,2,2017-10-03 +session,415,7,Safari 29,66,2017-03-12 +session,415,8,Firefox 23,63,2018-02-26 +user,416,Alva,Many,52 +session,416,0,Internet Explorer 46,0,2018-04-29 +user,417,Kristy,Rhonda,93 +session,417,0,Chrome 11,24,2016-08-03 +session,417,1,Safari 44,50,2016-06-25 +session,417,2,Safari 6,37,2018-06-20 +user,418,Houston,Abbey,32 +session,418,0,Chrome 24,36,2016-12-06 +session,418,1,Chrome 9,34,2018-02-07 +session,418,2,Safari 24,106,2017-04-02 +session,418,3,Chrome 38,24,2018-08-24 +session,418,4,Safari 35,72,2019-01-01 +session,418,5,Internet Explorer 23,49,2017-10-21 +session,418,6,Chrome 22,78,2017-03-18 +session,418,7,Firefox 19,112,2018-07-30 +session,418,8,Safari 23,30,2017-07-07 +session,418,9,Chrome 37,69,2017-09-23 +user,419,Stan,Milo,75 +session,419,0,Chrome 40,67,2018-06-09 +session,419,1,Firefox 33,106,2018-10-20 +user,420,Soraya,Terrie,33 +session,420,0,Firefox 40,58,2018-04-21 +session,420,1,Firefox 26,64,2017-01-29 +session,420,2,Chrome 36,36,2018-03-21 +session,420,3,Chrome 17,34,2016-11-29 +user,421,Pearlene,Alejandrina,3 +session,421,0,Safari 25,8,2017-07-19 +session,421,1,Internet Explorer 45,111,2017-09-19 +session,421,2,Firefox 15,5,2017-01-07 +session,421,3,Chrome 14,11,2017-09-12 +session,421,4,Internet Explorer 14,26,2018-12-24 +session,421,5,Safari 39,67,2017-10-06 +session,421,6,Safari 20,1,2017-04-29 +user,422,Tracy,Waldo,27 +session,422,0,Internet Explorer 27,7,2017-03-21 +session,422,1,Internet Explorer 34,52,2018-11-22 +session,422,2,Internet Explorer 19,56,2018-06-28 +session,422,3,Firefox 2,54,2017-03-06 +session,422,4,Internet Explorer 1,42,2018-11-22 +user,423,Halina,Kizzie,3 +session,423,0,Firefox 15,32,2016-06-29 +session,423,1,Internet Explorer 31,88,2017-04-12 +session,423,2,Internet Explorer 9,17,2018-04-06 +user,424,Chas,Davida,25 +session,424,0,Safari 4,91,2016-11-06 +session,424,1,Safari 21,49,2018-06-10 +session,424,2,Internet Explorer 37,2,2018-12-05 +session,424,3,Chrome 35,19,2016-10-15 +session,424,4,Internet Explorer 47,40,2017-06-18 +session,424,5,Firefox 23,75,2017-01-31 +session,424,6,Chrome 31,80,2016-08-16 +session,424,7,Internet Explorer 26,33,2017-12-26 +session,424,8,Firefox 38,45,2016-07-07 +session,424,9,Firefox 2,50,2017-10-29 +user,425,Billye,Claire,2 +session,425,0,Internet Explorer 34,94,2016-08-03 +session,425,1,Firefox 32,38,2018-08-10 +session,425,2,Chrome 13,96,2019-01-18 +session,425,3,Internet Explorer 32,115,2018-05-24 +session,425,4,Chrome 21,48,2017-07-14 +session,425,5,Internet Explorer 34,102,2016-09-16 +user,426,Thi,Aura,68 +session,426,0,Safari 15,24,2017-03-08 +session,426,1,Chrome 34,24,2018-04-29 +session,426,2,Chrome 26,84,2017-02-18 +session,426,3,Firefox 29,117,2018-11-30 +session,426,4,Chrome 28,78,2017-02-01 +session,426,5,Internet Explorer 31,104,2018-11-11 +user,427,Dexter,Kennith,81 +session,427,0,Safari 1,24,2016-05-31 +user,428,Johnny,Lilla,76 +session,428,0,Firefox 11,75,2017-07-23 +session,428,1,Internet Explorer 10,18,2017-12-01 +session,428,2,Chrome 8,89,2016-09-07 +session,428,3,Safari 26,74,2018-01-20 +session,428,4,Internet Explorer 33,72,2016-10-04 +session,428,5,Firefox 9,49,2017-03-15 +session,428,6,Firefox 50,98,2018-01-09 +session,428,7,Safari 11,57,2016-11-04 +session,428,8,Chrome 24,43,2018-10-25 +session,428,9,Safari 45,36,2017-12-04 +user,429,Eve,Karleen,48 +session,429,0,Safari 19,19,2017-07-11 +session,429,1,Safari 9,78,2017-06-13 +session,429,2,Safari 28,18,2016-06-24 +user,430,Shila,Samira,27 +session,430,0,Safari 23,74,2016-07-31 +user,431,Roxann,James,84 +session,431,0,Safari 47,88,2018-03-12 +session,431,1,Chrome 28,103,2018-05-26 +session,431,2,Safari 29,17,2018-10-13 +session,431,3,Chrome 32,21,2018-06-20 +session,431,4,Internet Explorer 39,118,2017-10-09 +session,431,5,Chrome 15,40,2018-12-14 +session,431,6,Safari 10,118,2017-03-06 +session,431,7,Chrome 27,2,2018-02-23 +session,431,8,Firefox 37,18,2017-10-12 +user,432,Shante,Tera,17 +session,432,0,Safari 37,116,2017-09-05 +session,432,1,Safari 21,92,2018-10-31 +session,432,2,Firefox 17,36,2018-02-07 +session,432,3,Chrome 23,10,2019-01-01 +session,432,4,Safari 23,118,2018-03-12 +session,432,5,Safari 21,107,2016-06-15 +session,432,6,Firefox 37,45,2016-09-08 +session,432,7,Firefox 43,75,2017-11-10 +session,432,8,Safari 30,10,2018-03-03 +user,433,Alexis,Mariella,79 +session,433,0,Chrome 11,2,2018-11-26 +session,433,1,Safari 8,82,2018-12-20 +session,433,2,Internet Explorer 7,87,2018-08-28 +session,433,3,Chrome 32,36,2016-10-10 +user,434,Margarite,Yen,29 +session,434,0,Safari 9,62,2018-02-25 +session,434,1,Safari 6,108,2019-02-12 +session,434,2,Firefox 13,0,2017-02-20 +session,434,3,Firefox 21,11,2017-04-17 +session,434,4,Safari 7,6,2017-05-28 +session,434,5,Internet Explorer 29,102,2017-06-11 +session,434,6,Chrome 9,32,2016-06-05 +session,434,7,Safari 34,60,2017-02-01 +session,434,8,Chrome 50,43,2018-08-12 +user,435,Jess,Cierra,92 +session,435,0,Firefox 1,9,2017-12-12 +session,435,1,Chrome 15,3,2016-06-04 +user,436,Carmelo,Krystyna,3 +session,436,0,Safari 46,21,2017-10-14 +session,436,1,Internet Explorer 2,78,2018-01-11 +session,436,2,Firefox 20,115,2018-06-14 +session,436,3,Chrome 26,26,2018-05-24 +session,436,4,Internet Explorer 39,24,2017-02-16 +session,436,5,Safari 45,44,2017-05-05 +session,436,6,Chrome 46,89,2016-08-29 +session,436,7,Chrome 20,46,2017-06-13 +session,436,8,Safari 46,75,2017-08-26 +user,437,Emmitt,Verdie,40 +session,437,0,Safari 43,2,2017-05-24 +session,437,1,Internet Explorer 27,74,2017-04-12 +session,437,2,Chrome 10,47,2016-07-08 +session,437,3,Chrome 2,106,2017-08-10 +session,437,4,Safari 44,24,2018-11-13 +session,437,5,Chrome 45,63,2018-03-13 +session,437,6,Safari 46,30,2016-08-23 +session,437,7,Safari 13,91,2018-01-15 +session,437,8,Firefox 27,12,2017-10-14 +user,438,Luana,Milford,61 +session,438,0,Chrome 18,117,2016-08-11 +session,438,1,Chrome 21,37,2018-11-12 +session,438,2,Safari 19,104,2016-11-10 +session,438,3,Firefox 19,92,2016-07-02 +session,438,4,Chrome 34,45,2016-11-21 +session,438,5,Chrome 28,29,2016-09-18 +user,439,Arlie,Savanna,89 +session,439,0,Safari 45,54,2017-02-12 +session,439,1,Firefox 40,113,2018-08-10 +user,440,Romelia,Joannie,16 +session,440,0,Chrome 39,15,2016-08-20 +session,440,1,Internet Explorer 27,27,2016-11-12 +session,440,2,Chrome 46,9,2019-02-07 +session,440,3,Internet Explorer 28,102,2017-09-24 +session,440,4,Chrome 29,102,2018-05-23 +user,441,Tammara,Joey,80 +session,441,0,Chrome 41,58,2017-05-08 +session,441,1,Chrome 24,100,2017-07-07 +session,441,2,Chrome 46,93,2016-09-04 +user,442,Shin,Ronda,19 +session,442,0,Firefox 33,32,2018-08-03 +session,442,1,Firefox 11,99,2017-12-12 +user,443,Pedro,Zita,63 +session,443,0,Safari 20,59,2018-12-12 +session,443,1,Firefox 38,107,2017-10-17 +user,444,Felix,Rolland,77 +session,444,0,Internet Explorer 44,37,2018-02-19 +session,444,1,Firefox 45,26,2016-12-29 +session,444,2,Internet Explorer 27,13,2018-11-30 +session,444,3,Chrome 4,51,2016-12-13 +user,445,Lupe,Magaly,31 +session,445,0,Firefox 10,63,2018-07-20 +session,445,1,Safari 40,96,2017-09-05 +session,445,2,Firefox 49,35,2019-02-01 +session,445,3,Safari 36,70,2018-09-23 +user,446,Ressie,Frank,81 +session,446,0,Safari 42,14,2017-07-28 +session,446,1,Chrome 24,109,2017-09-04 +session,446,2,Safari 34,39,2017-05-31 +session,446,3,Firefox 17,52,2017-03-25 +user,447,Leda,Leon,97 +session,447,0,Safari 34,90,2016-09-30 +session,447,1,Safari 2,72,2018-06-02 +session,447,2,Internet Explorer 26,65,2017-10-20 +session,447,3,Firefox 41,29,2017-05-07 +user,448,Carlie,Pearline,36 +session,448,0,Internet Explorer 44,36,2016-12-24 +session,448,1,Safari 2,85,2017-04-25 +user,449,Jessie,Jeffrey,39 +session,449,0,Safari 17,51,2017-10-26 +session,449,1,Chrome 27,91,2016-10-05 +session,449,2,Internet Explorer 16,92,2017-12-10 +session,449,3,Firefox 31,1,2017-07-15 +session,449,4,Internet Explorer 9,15,2017-08-12 +session,449,5,Chrome 17,6,2016-09-18 +session,449,6,Internet Explorer 49,17,2016-12-30 +session,449,7,Internet Explorer 24,10,2017-10-13 +user,450,Kirk,Margarette,80 +session,450,0,Chrome 13,50,2017-12-05 +session,450,1,Firefox 26,71,2017-02-07 +user,451,Leigh,Adriane,21 +session,451,0,Firefox 38,31,2016-11-28 +user,452,Anton,Tiera,94 +session,452,0,Safari 26,107,2018-10-30 +session,452,1,Safari 38,92,2018-12-29 +session,452,2,Safari 20,32,2017-05-28 +session,452,3,Internet Explorer 4,43,2017-03-05 +session,452,4,Chrome 28,56,2017-09-25 +session,452,5,Chrome 44,107,2017-10-09 +session,452,6,Chrome 13,85,2017-05-23 +session,452,7,Firefox 49,67,2018-12-30 +session,452,8,Firefox 28,0,2017-08-21 +session,452,9,Internet Explorer 11,103,2018-05-31 +user,453,Lachelle,Tameka,56 +session,453,0,Firefox 19,25,2017-07-15 +session,453,1,Chrome 10,58,2016-09-11 +session,453,2,Chrome 14,69,2016-08-09 +session,453,3,Internet Explorer 8,12,2018-06-12 +session,453,4,Firefox 45,81,2018-10-11 +user,454,Len,Federico,28 +session,454,0,Chrome 26,108,2017-01-18 +session,454,1,Internet Explorer 37,51,2016-07-22 +session,454,2,Internet Explorer 13,81,2018-02-03 +user,455,Liane,Lane,82 +session,455,0,Chrome 2,37,2016-09-21 +session,455,1,Internet Explorer 23,71,2017-08-04 +user,456,Aimee,Natacha,77 +session,456,0,Internet Explorer 20,100,2018-10-24 +session,456,1,Firefox 29,77,2018-11-11 +user,457,Maricruz,Kera,49 +session,457,0,Chrome 36,14,2017-07-06 +session,457,1,Chrome 16,110,2017-09-28 +session,457,2,Internet Explorer 3,70,2018-11-23 +session,457,3,Safari 19,5,2017-01-29 +user,458,Laverne,Merry,62 +session,458,0,Firefox 30,102,2018-09-25 +session,458,1,Safari 29,37,2017-11-15 +session,458,2,Firefox 41,109,2018-04-15 +user,459,Everett,Kacy,52 +session,459,0,Internet Explorer 21,118,2017-10-14 +session,459,1,Safari 31,108,2017-04-13 +session,459,2,Firefox 49,95,2017-05-09 +session,459,3,Safari 40,74,2018-08-15 +session,459,4,Firefox 20,83,2017-04-08 +session,459,5,Chrome 3,48,2018-07-10 +session,459,6,Internet Explorer 27,19,2017-11-05 +session,459,7,Safari 50,69,2018-02-01 +user,460,Macie,Jared,27 +session,460,0,Internet Explorer 15,43,2018-06-12 +session,460,1,Safari 35,70,2016-11-24 +session,460,2,Firefox 47,87,2016-12-16 +session,460,3,Firefox 30,102,2018-07-06 +session,460,4,Safari 8,39,2016-10-01 +session,460,5,Safari 48,81,2017-06-02 +session,460,6,Safari 15,105,2016-10-15 +session,460,7,Chrome 18,108,2017-06-21 +session,460,8,Safari 46,112,2016-12-23 +session,460,9,Chrome 6,63,2018-11-18 +user,461,Elmo,Chris,18 +session,461,0,Firefox 7,71,2017-02-14 +session,461,1,Firefox 17,42,2016-06-02 +session,461,2,Firefox 43,103,2018-05-14 +session,461,3,Safari 13,88,2017-03-21 +session,461,4,Firefox 14,52,2018-11-20 +session,461,5,Chrome 7,101,2017-07-01 +session,461,6,Chrome 32,0,2016-08-20 +session,461,7,Chrome 46,27,2018-01-23 +session,461,8,Internet Explorer 21,41,2018-01-14 +user,462,Luigi,Chantelle,47 +session,462,0,Internet Explorer 36,42,2018-02-23 +user,463,Louanne,Leroy,97 +session,463,0,Safari 21,42,2016-09-09 +session,463,1,Safari 11,119,2016-07-23 +session,463,2,Safari 4,29,2018-04-16 +session,463,3,Chrome 10,39,2016-09-04 +session,463,4,Internet Explorer 23,91,2018-05-31 +session,463,5,Firefox 19,7,2016-08-13 +session,463,6,Safari 24,49,2017-11-07 +user,464,Horacio,Chang,55 +session,464,0,Safari 43,83,2017-04-30 +user,465,Cordell,Kris,27 +session,465,0,Firefox 50,14,2018-01-02 +session,465,1,Internet Explorer 26,36,2017-05-08 +session,465,2,Chrome 42,43,2017-06-17 +session,465,3,Internet Explorer 36,105,2016-08-27 +session,465,4,Safari 18,30,2018-04-07 +session,465,5,Internet Explorer 10,12,2019-01-26 +session,465,6,Internet Explorer 22,3,2017-04-20 +session,465,7,Chrome 10,12,2017-02-23 +session,465,8,Internet Explorer 49,78,2016-07-26 +session,465,9,Internet Explorer 43,47,2017-12-24 +user,466,Chantal,Keren,90 +session,466,0,Chrome 29,68,2018-12-31 +session,466,1,Chrome 28,35,2017-02-28 +session,466,2,Firefox 49,46,2017-01-05 +session,466,3,Safari 17,57,2016-09-23 +user,467,Jake,Lara,74 +session,467,0,Firefox 46,59,2017-12-19 +session,467,1,Safari 9,63,2018-06-15 +session,467,2,Chrome 1,116,2018-06-04 +session,467,3,Chrome 35,17,2017-04-12 +session,467,4,Internet Explorer 19,43,2017-04-11 +session,467,5,Chrome 15,29,2016-06-23 +session,467,6,Firefox 18,103,2016-11-20 +session,467,7,Safari 25,32,2017-06-02 +session,467,8,Chrome 34,23,2017-04-05 +session,467,9,Safari 35,86,2018-05-10 +user,468,Kristina,Hellen,85 +session,468,0,Internet Explorer 2,50,2017-06-23 +session,468,1,Internet Explorer 3,40,2017-05-02 +session,468,2,Safari 17,27,2018-12-25 +session,468,3,Safari 42,4,2018-08-25 +user,469,China,Beckie,93 +session,469,0,Internet Explorer 38,91,2017-08-04 +user,470,Graig,Cole,67 +session,470,0,Safari 5,67,2018-09-07 +session,470,1,Firefox 36,12,2018-04-20 +session,470,2,Safari 24,45,2017-08-10 +user,471,Lyndsey,Martina,72 +session,471,0,Firefox 25,37,2017-10-11 +user,472,Vernie,Quincy,19 +session,472,0,Safari 23,117,2017-01-26 +session,472,1,Internet Explorer 6,89,2018-11-21 +session,472,2,Firefox 34,83,2017-12-30 +session,472,3,Chrome 32,29,2018-05-27 +session,472,4,Chrome 5,13,2017-02-19 +session,472,5,Internet Explorer 15,111,2018-03-06 +session,472,6,Chrome 5,107,2018-07-13 +session,472,7,Safari 19,2,2017-02-18 +session,472,8,Internet Explorer 3,90,2016-08-28 +user,473,Willette,Delaine,23 +session,473,0,Firefox 25,1,2018-01-27 +session,473,1,Firefox 14,36,2018-05-06 +session,473,2,Safari 26,33,2016-08-30 +session,473,3,Chrome 50,83,2017-08-25 +session,473,4,Firefox 42,35,2018-10-03 +session,473,5,Internet Explorer 18,73,2018-06-22 +user,474,Roseann,Ashley,84 +session,474,0,Chrome 3,19,2017-04-03 +session,474,1,Chrome 26,90,2017-10-13 +session,474,2,Firefox 50,35,2016-07-04 +session,474,3,Internet Explorer 21,14,2017-11-08 +session,474,4,Safari 46,98,2019-01-11 +session,474,5,Firefox 39,16,2017-10-12 +session,474,6,Internet Explorer 38,63,2018-05-25 +session,474,7,Safari 8,33,2017-06-16 +session,474,8,Firefox 4,21,2018-12-27 +session,474,9,Internet Explorer 16,80,2016-10-08 +user,475,Cleveland,Mia,70 +session,475,0,Safari 45,41,2018-07-19 +session,475,1,Chrome 41,110,2017-04-10 +session,475,2,Safari 15,60,2018-03-10 +session,475,3,Chrome 49,82,2016-06-24 +user,476,Janell,Earlene,63 +session,476,0,Chrome 12,13,2017-06-21 +session,476,1,Safari 48,101,2017-06-15 +session,476,2,Internet Explorer 22,105,2018-07-04 +session,476,3,Safari 25,80,2018-06-21 +session,476,4,Safari 8,43,2017-04-20 +session,476,5,Internet Explorer 16,80,2018-07-11 +session,476,6,Safari 40,98,2016-10-09 +session,476,7,Chrome 19,106,2018-06-11 +session,476,8,Firefox 8,63,2017-01-09 +session,476,9,Internet Explorer 20,96,2016-07-24 +user,477,Marylee,Sherron,94 +session,477,0,Safari 38,23,2017-12-18 +session,477,1,Safari 34,67,2018-11-24 +session,477,2,Firefox 12,52,2018-07-24 +session,477,3,Safari 21,82,2016-10-17 +user,478,Jordan,Dee,12 +session,478,0,Internet Explorer 33,39,2017-06-02 +session,478,1,Internet Explorer 19,102,2017-03-13 +session,478,2,Firefox 49,72,2017-08-24 +session,478,3,Internet Explorer 6,112,2018-04-07 +session,478,4,Firefox 39,88,2017-08-05 +session,478,5,Safari 30,66,2017-11-30 +session,478,6,Internet Explorer 10,30,2016-11-05 +session,478,7,Safari 10,24,2017-08-17 +session,478,8,Safari 9,64,2016-08-10 +session,478,9,Firefox 33,26,2018-10-29 +user,479,Claud,Loyd,53 +session,479,0,Chrome 8,91,2017-04-11 +session,479,1,Firefox 44,53,2017-10-17 +session,479,2,Safari 15,86,2019-01-31 +session,479,3,Internet Explorer 27,54,2017-05-12 +session,479,4,Firefox 17,38,2017-11-21 +session,479,5,Firefox 7,63,2017-09-19 +session,479,6,Internet Explorer 5,112,2018-06-13 +session,479,7,Chrome 22,91,2016-09-19 +user,480,Elijah,Alita,40 +session,480,0,Firefox 12,104,2018-06-04 +session,480,1,Safari 26,115,2017-11-15 +session,480,2,Firefox 17,105,2017-01-17 +session,480,3,Chrome 1,4,2019-01-04 +user,481,Andra,Sherie,66 +session,481,0,Chrome 24,117,2018-05-18 +session,481,1,Chrome 49,107,2017-12-02 +session,481,2,Firefox 49,2,2017-05-07 +user,482,Alba,Delilah,80 +session,482,0,Internet Explorer 39,83,2018-09-17 +session,482,1,Chrome 49,49,2018-01-03 +session,482,2,Safari 37,113,2017-03-20 +session,482,3,Safari 20,80,2017-10-18 +session,482,4,Chrome 37,14,2017-08-21 +session,482,5,Chrome 26,83,2016-11-13 +session,482,6,Internet Explorer 42,85,2016-11-06 +session,482,7,Chrome 40,61,2016-08-10 +session,482,8,Safari 41,72,2016-08-19 +session,482,9,Firefox 18,42,2017-05-10 +user,483,Johnnie,Rayna,45 +session,483,0,Firefox 4,71,2018-02-11 +session,483,1,Chrome 29,102,2017-12-09 +session,483,2,Internet Explorer 28,63,2016-09-26 +session,483,3,Chrome 20,65,2018-09-07 +session,483,4,Firefox 16,18,2017-07-16 +session,483,5,Safari 7,42,2017-10-09 +session,483,6,Chrome 2,36,2017-06-04 +session,483,7,Chrome 40,112,2018-06-26 +user,484,Nancie,Burt,59 +session,484,0,Firefox 5,54,2016-08-23 +session,484,1,Chrome 3,84,2017-12-23 +session,484,2,Chrome 22,95,2017-08-06 +session,484,3,Internet Explorer 22,52,2016-11-10 +session,484,4,Internet Explorer 34,46,2016-07-28 +session,484,5,Safari 39,60,2016-11-21 +user,485,Irwin,Eric,92 +session,485,0,Internet Explorer 30,29,2016-11-02 +session,485,1,Safari 49,76,2019-01-13 +session,485,2,Internet Explorer 8,91,2017-07-02 +session,485,3,Internet Explorer 36,110,2018-08-04 +session,485,4,Safari 14,69,2017-12-29 +user,486,Henrietta,Regena,48 +session,486,0,Chrome 30,100,2017-07-09 +session,486,1,Safari 30,23,2018-10-24 +session,486,2,Firefox 48,54,2019-02-07 +session,486,3,Firefox 34,109,2017-06-04 +session,486,4,Internet Explorer 11,29,2018-04-05 +user,487,Giuseppe,Zenobia,2 +session,487,0,Internet Explorer 9,0,2017-04-05 +session,487,1,Safari 41,86,2017-10-04 +session,487,2,Internet Explorer 29,65,2017-09-19 +session,487,3,Chrome 10,85,2018-07-31 +session,487,4,Firefox 17,113,2017-11-21 +session,487,5,Safari 21,23,2018-05-21 +session,487,6,Internet Explorer 41,73,2016-05-21 +session,487,7,Firefox 24,24,2016-08-29 +user,488,Mao,Kasey,90 +session,488,0,Safari 50,29,2017-05-05 +session,488,1,Internet Explorer 43,59,2018-04-11 +session,488,2,Chrome 38,105,2018-10-01 +session,488,3,Firefox 19,79,2018-10-07 +session,488,4,Internet Explorer 10,101,2018-02-03 +session,488,5,Safari 30,5,2017-01-28 +session,488,6,Firefox 13,88,2016-06-08 +user,489,Floyd,Trent,11 +session,489,0,Safari 18,41,2017-02-14 +session,489,1,Chrome 6,12,2017-09-07 +session,489,2,Safari 13,8,2017-11-28 +session,489,3,Internet Explorer 16,48,2019-02-10 +session,489,4,Safari 36,1,2016-05-26 +session,489,5,Safari 27,80,2017-03-06 +session,489,6,Chrome 21,20,2016-12-26 +session,489,7,Internet Explorer 22,110,2017-01-18 +user,490,Versie,Yuriko,22 +session,490,0,Safari 3,89,2019-01-23 +session,490,1,Chrome 7,6,2016-11-08 +session,490,2,Firefox 36,69,2017-06-08 +session,490,3,Chrome 2,112,2017-12-25 +session,490,4,Internet Explorer 18,118,2018-04-12 +session,490,5,Internet Explorer 50,26,2018-07-16 +session,490,6,Firefox 19,24,2018-07-03 +session,490,7,Chrome 12,112,2018-05-31 +session,490,8,Internet Explorer 3,83,2016-10-18 +session,490,9,Safari 27,70,2016-06-20 +user,491,Belkis,Sanora,53 +session,491,0,Internet Explorer 50,103,2019-02-01 +session,491,1,Internet Explorer 8,108,2016-10-31 +session,491,2,Internet Explorer 13,97,2018-10-31 +session,491,3,Firefox 39,13,2019-02-04 +session,491,4,Internet Explorer 44,3,2018-08-30 +session,491,5,Firefox 34,57,2017-12-25 +session,491,6,Chrome 22,92,2018-08-17 +session,491,7,Chrome 20,60,2019-01-17 +user,492,Edgar,Tamesha,28 +session,492,0,Safari 5,21,2018-01-27 +session,492,1,Internet Explorer 10,3,2017-04-02 +session,492,2,Firefox 35,5,2017-02-16 +session,492,3,Firefox 18,10,2018-12-25 +session,492,4,Internet Explorer 47,114,2018-07-07 +session,492,5,Firefox 11,16,2018-08-09 +session,492,6,Internet Explorer 29,107,2017-05-30 +session,492,7,Safari 47,26,2016-06-23 +user,493,Charlette,Rebecca,27 +session,493,0,Chrome 19,69,2017-01-02 +session,493,1,Firefox 12,32,2017-03-07 +session,493,2,Safari 44,107,2016-12-30 +session,493,3,Safari 22,51,2017-04-18 +session,493,4,Safari 39,92,2018-05-22 +session,493,5,Internet Explorer 9,80,2018-12-02 +user,494,Roman,Virgil,28 +session,494,0,Safari 34,45,2018-12-27 +user,495,Nathaniel,Chase,3 +session,495,0,Safari 21,26,2017-10-19 +session,495,1,Safari 38,95,2016-06-20 +session,495,2,Chrome 1,37,2017-02-03 +session,495,3,Safari 28,71,2017-03-17 +user,496,Miles,Deeann,53 +session,496,0,Firefox 13,24,2018-02-04 +session,496,1,Chrome 27,64,2017-02-24 +user,497,Marcelo,Sam,30 +session,497,0,Chrome 42,14,2017-10-06 +user,498,Sol,Terrell,54 +session,498,0,Internet Explorer 31,32,2018-01-26 +user,499,Antonia,Gale,36 +session,499,0,Safari 25,21,2016-06-21 +user,500,Bebe,Ira,73 +session,500,0,Internet Explorer 21,46,2017-02-08 +session,500,1,Firefox 7,113,2018-12-05 +session,500,2,Internet Explorer 20,102,2016-07-14 +session,500,3,Firefox 11,15,2018-10-18 +session,500,4,Firefox 35,119,2016-10-04 +user,501,Alton,Zachery,88 +session,501,0,Chrome 23,11,2017-09-15 +session,501,1,Firefox 40,101,2019-01-18 +user,502,Mahalia,Katy,67 +session,502,0,Chrome 35,46,2018-10-31 +session,502,1,Firefox 18,72,2017-04-26 +session,502,2,Safari 49,53,2018-08-23 +session,502,3,Internet Explorer 13,41,2019-01-19 +session,502,4,Chrome 23,48,2016-07-14 +session,502,5,Firefox 4,96,2017-05-05 +session,502,6,Safari 2,15,2016-11-28 +session,502,7,Internet Explorer 41,103,2016-12-23 +session,502,8,Internet Explorer 49,9,2016-11-19 +session,502,9,Firefox 16,63,2018-04-29 +user,503,Lashell,Verla,68 +session,503,0,Internet Explorer 28,24,2018-07-13 +session,503,1,Safari 35,38,2017-04-21 +session,503,2,Safari 29,57,2016-10-02 +session,503,3,Safari 20,27,2018-07-17 +user,504,Rafael,Yaeko,32 +session,504,0,Chrome 25,46,2018-12-19 +session,504,1,Firefox 44,47,2018-04-08 +session,504,2,Firefox 13,32,2018-06-20 +session,504,3,Safari 26,80,2017-09-06 +session,504,4,Firefox 24,94,2018-03-03 +session,504,5,Firefox 31,31,2018-08-25 +session,504,6,Internet Explorer 8,10,2017-07-29 +session,504,7,Chrome 15,107,2018-11-25 +session,504,8,Safari 10,116,2018-03-07 +session,504,9,Chrome 28,54,2018-02-03 +user,505,Lynn,Yuk,22 +session,505,0,Safari 26,78,2018-02-13 +session,505,1,Safari 13,72,2018-11-21 +session,505,2,Firefox 40,33,2018-07-25 +session,505,3,Internet Explorer 19,57,2017-09-20 +session,505,4,Firefox 13,74,2016-08-08 +session,505,5,Safari 39,52,2016-09-01 +session,505,6,Internet Explorer 7,103,2018-01-25 +session,505,7,Chrome 14,49,2017-04-14 +user,506,Kimi,Andrew,88 +session,506,0,Chrome 46,67,2017-09-03 +session,506,1,Chrome 22,108,2016-06-12 +user,507,Rubie,Kala,70 +session,507,0,Chrome 15,65,2016-06-08 +session,507,1,Internet Explorer 50,105,2018-10-25 +session,507,2,Safari 31,9,2016-09-20 +session,507,3,Chrome 14,118,2017-01-15 +session,507,4,Safari 16,10,2017-10-22 +session,507,5,Firefox 9,6,2017-06-08 +session,507,6,Chrome 30,101,2018-01-31 +session,507,7,Chrome 4,37,2016-12-07 +session,507,8,Firefox 43,92,2018-10-22 +user,508,Latia,Lucio,33 +session,508,0,Safari 39,53,2018-01-24 +session,508,1,Chrome 18,5,2017-11-11 +session,508,2,Firefox 37,59,2017-09-22 +session,508,3,Firefox 33,23,2016-05-23 +session,508,4,Internet Explorer 6,106,2016-12-27 +session,508,5,Firefox 32,12,2016-08-17 +session,508,6,Internet Explorer 10,95,2017-06-13 +session,508,7,Firefox 11,90,2017-12-12 diff --git a/spec/support/data_1m.txt b/spec/support/data_1m.txt new file mode 100644 index 0000000..3cb319f --- /dev/null +++ b/spec/support/data_1m.txt @@ -0,0 +1,25457 @@ +user,0,Hazel,Margarete,19 +session,0,0,Internet Explorer 50,81,2018-02-01 +session,0,1,Safari 27,88,2017-10-28 +session,0,2,Firefox 13,92,2016-11-02 +session,0,3,Internet Explorer 40,37,2017-05-31 +session,0,4,Internet Explorer 16,37,2017-11-21 +session,0,5,Safari 19,22,2017-11-30 +session,0,6,Chrome 31,74,2016-08-22 +session,0,7,Firefox 46,76,2019-02-04 +user,1,Wilfredo,Louetta,40 +session,1,0,Firefox 38,68,2018-04-24 +session,1,1,Internet Explorer 41,27,2016-09-06 +session,1,2,Internet Explorer 1,74,2017-01-05 +session,1,3,Firefox 47,28,2017-06-09 +session,1,4,Internet Explorer 22,98,2016-11-03 +user,2,Cecil,Rosalba,44 +session,2,0,Safari 26,96,2018-08-20 +session,2,1,Internet Explorer 10,3,2019-01-03 +session,2,2,Internet Explorer 47,52,2016-07-31 +session,2,3,Safari 34,37,2017-09-14 +session,2,4,Internet Explorer 17,22,2016-07-10 +session,2,5,Firefox 26,76,2017-02-06 +session,2,6,Chrome 14,88,2017-02-19 +session,2,7,Safari 31,113,2018-04-12 +session,2,8,Chrome 20,72,2016-09-04 +session,2,9,Safari 13,14,2017-07-26 +user,3,Kieth,Noble,20 +session,3,0,Safari 23,1,2018-02-19 +session,3,1,Internet Explorer 24,92,2018-05-15 +session,3,2,Chrome 6,91,2017-01-06 +session,3,3,Internet Explorer 47,7,2016-09-01 +session,3,4,Firefox 4,20,2017-03-22 +session,3,5,Internet Explorer 23,17,2016-12-02 +session,3,6,Internet Explorer 5,91,2017-12-29 +session,3,7,Internet Explorer 23,2,2017-03-17 +user,4,Corie,Erika,32 +session,4,0,Chrome 11,49,2019-02-05 +session,4,1,Safari 44,18,2017-09-01 +session,4,2,Firefox 32,88,2017-06-01 +session,4,3,Chrome 28,82,2018-03-18 +session,4,4,Firefox 38,36,2018-06-11 +session,4,5,Safari 14,11,2017-04-06 +session,4,6,Safari 27,116,2017-05-30 +session,4,7,Safari 24,36,2018-06-12 +session,4,8,Firefox 3,28,2018-01-05 +user,5,Lou,Lean,39 +session,5,0,Internet Explorer 42,74,2017-08-20 +session,5,1,Internet Explorer 1,80,2018-11-22 +session,5,2,Chrome 18,105,2018-01-17 +user,6,Deedra,Minta,44 +session,6,0,Firefox 32,27,2017-07-07 +session,6,1,Firefox 45,48,2017-07-22 +session,6,2,Safari 33,55,2018-07-09 +session,6,3,Safari 1,14,2016-11-08 +session,6,4,Firefox 39,18,2017-02-06 +session,6,5,Safari 12,52,2016-07-18 +session,6,6,Firefox 18,84,2016-08-16 +session,6,7,Chrome 2,114,2016-10-18 +user,7,Loria,Vernetta,68 +session,7,0,Safari 14,51,2019-01-25 +session,7,1,Internet Explorer 29,88,2016-10-12 +session,7,2,Firefox 32,55,2016-11-15 +session,7,3,Safari 4,20,2016-11-19 +session,7,4,Chrome 42,95,2018-02-10 +session,7,5,Safari 36,88,2018-03-30 +session,7,6,Safari 7,74,2017-05-27 +session,7,7,Safari 18,67,2017-02-22 +session,7,8,Chrome 24,26,2018-11-01 +user,8,Abdul,Venessa,55 +session,8,0,Internet Explorer 1,60,2018-12-02 +session,8,1,Chrome 3,63,2016-10-02 +session,8,2,Safari 41,99,2017-01-12 +session,8,3,Firefox 13,69,2017-04-17 +session,8,4,Safari 31,115,2018-04-08 +session,8,5,Chrome 30,77,2019-01-28 +session,8,6,Safari 43,56,2017-05-07 +user,9,Brooks,Janae,6 +session,9,0,Internet Explorer 36,11,2018-08-11 +user,10,Rey,Coy,95 +session,10,0,Internet Explorer 27,115,2017-08-05 +session,10,1,Internet Explorer 21,119,2018-11-15 +session,10,2,Internet Explorer 2,0,2016-06-10 +session,10,3,Safari 13,44,2018-04-07 +session,10,4,Firefox 37,26,2018-05-04 +user,11,Cyrus,Danyel,41 +session,11,0,Firefox 34,118,2016-10-14 +session,11,1,Internet Explorer 34,45,2017-10-10 +session,11,2,Internet Explorer 38,70,2017-07-10 +user,12,Valentin,Emilio,21 +session,12,0,Chrome 13,28,2018-04-23 +session,12,1,Firefox 35,17,2018-11-29 +session,12,2,Firefox 19,68,2018-05-03 +session,12,3,Internet Explorer 14,2,2016-09-18 +session,12,4,Firefox 15,97,2018-04-15 +session,12,5,Safari 26,40,2016-06-13 +user,13,Mitchell,Hobert,78 +session,13,0,Internet Explorer 32,89,2019-02-07 +session,13,1,Firefox 17,0,2017-11-05 +session,13,2,Chrome 17,117,2018-12-12 +session,13,3,Firefox 28,3,2016-12-01 +session,13,4,Firefox 9,26,2018-08-05 +session,13,5,Safari 27,113,2017-09-02 +session,13,6,Internet Explorer 20,92,2018-08-17 +session,13,7,Safari 11,103,2016-11-11 +session,13,8,Safari 36,26,2018-06-18 +session,13,9,Internet Explorer 22,33,2018-07-15 +user,14,Yuonne,Nicholle,52 +session,14,0,Safari 45,112,2018-01-23 +session,14,1,Firefox 50,54,2017-08-13 +session,14,2,Chrome 21,53,2018-10-08 +session,14,3,Firefox 24,30,2018-12-25 +session,14,4,Chrome 26,117,2017-09-09 +session,14,5,Chrome 16,38,2019-01-29 +session,14,6,Chrome 48,72,2016-08-12 +session,14,7,Safari 23,36,2016-10-05 +session,14,8,Firefox 12,45,2018-05-17 +user,15,Marlene,Ling,76 +session,15,0,Chrome 50,60,2018-06-29 +user,16,Salina,Eddie,27 +session,16,0,Internet Explorer 26,10,2018-01-10 +session,16,1,Chrome 23,13,2017-01-04 +user,17,Ernestine,Clifton,6 +session,17,0,Chrome 13,28,2016-12-05 +session,17,1,Chrome 10,97,2017-11-13 +session,17,2,Safari 34,39,2017-08-24 +session,17,3,Safari 48,27,2018-03-27 +session,17,4,Internet Explorer 32,76,2016-10-22 +session,17,5,Firefox 42,106,2016-12-23 +session,17,6,Chrome 13,72,2018-01-08 +session,17,7,Chrome 24,37,2017-12-21 +user,18,Homer,Odelia,62 +session,18,0,Safari 10,3,2018-01-19 +session,18,1,Internet Explorer 25,81,2017-11-21 +session,18,2,Firefox 4,110,2017-05-17 +session,18,3,Firefox 12,92,2018-01-15 +session,18,4,Safari 43,88,2017-02-04 +session,18,5,Internet Explorer 42,19,2018-06-30 +session,18,6,Firefox 17,47,2016-09-10 +user,19,Jean,Gregg,96 +session,19,0,Internet Explorer 49,12,2016-10-19 +session,19,1,Firefox 36,56,2018-04-20 +session,19,2,Internet Explorer 32,3,2018-01-02 +session,19,3,Internet Explorer 20,85,2018-03-12 +session,19,4,Internet Explorer 21,21,2017-01-10 +session,19,5,Firefox 46,99,2017-08-19 +user,20,Jacinta,Erinn,34 +session,20,0,Chrome 44,49,2018-01-29 +session,20,1,Internet Explorer 33,90,2017-11-02 +session,20,2,Safari 22,44,2018-10-14 +session,20,3,Firefox 39,32,2019-01-07 +user,21,Melita,Mika,45 +session,21,0,Firefox 30,1,2016-08-03 +session,21,1,Safari 48,64,2017-05-10 +session,21,2,Chrome 40,61,2018-10-07 +session,21,3,Safari 37,0,2018-05-09 +session,21,4,Chrome 12,98,2017-02-24 +user,22,Matthew,Lucretia,23 +session,22,0,Internet Explorer 23,86,2017-08-02 +user,23,Maurice,Paz,38 +session,23,0,Internet Explorer 2,51,2017-09-28 +session,23,1,Internet Explorer 11,60,2016-08-02 +session,23,2,Firefox 31,32,2017-04-30 +user,24,Jessica,Brandi,8 +session,24,0,Chrome 12,111,2017-09-18 +user,25,Marget,Ming,58 +session,25,0,Chrome 31,51,2018-05-18 +session,25,1,Safari 9,63,2016-12-20 +session,25,2,Firefox 48,75,2018-03-26 +session,25,3,Firefox 16,51,2017-09-02 +user,26,Audria,Roselyn,85 +session,26,0,Firefox 22,84,2018-02-13 +session,26,1,Safari 14,52,2017-03-17 +session,26,2,Firefox 36,96,2016-11-12 +session,26,3,Firefox 6,16,2017-12-08 +user,27,Leilani,Ines,86 +session,27,0,Firefox 29,91,2016-10-03 +session,27,1,Chrome 44,66,2016-05-27 +session,27,2,Safari 9,90,2017-08-28 +user,28,Philip,Daysi,2 +session,28,0,Internet Explorer 23,27,2018-09-21 +session,28,1,Safari 4,116,2018-09-19 +user,29,Delmar,Otilia,44 +session,29,0,Safari 17,0,2016-08-02 +session,29,1,Internet Explorer 39,101,2017-04-21 +session,29,2,Internet Explorer 8,0,2016-10-19 +session,29,3,Internet Explorer 20,36,2017-02-05 +session,29,4,Internet Explorer 25,73,2018-07-31 +session,29,5,Chrome 18,49,2017-12-14 +session,29,6,Firefox 24,81,2018-09-06 +user,30,Newton,Brianna,34 +session,30,0,Chrome 38,110,2016-11-21 +session,30,1,Firefox 34,47,2017-08-27 +session,30,2,Internet Explorer 27,74,2017-07-13 +session,30,3,Internet Explorer 29,118,2018-03-14 +session,30,4,Chrome 16,24,2017-02-11 +session,30,5,Firefox 37,85,2019-01-26 +session,30,6,Firefox 34,22,2016-10-19 +session,30,7,Firefox 14,14,2018-04-11 +session,30,8,Firefox 27,33,2017-12-07 +user,31,Sherman,Pearly,65 +session,31,0,Firefox 5,113,2016-05-22 +session,31,1,Safari 1,50,2018-08-06 +session,31,2,Internet Explorer 6,29,2016-06-13 +session,31,3,Internet Explorer 48,103,2017-12-15 +session,31,4,Firefox 32,106,2018-07-26 +session,31,5,Safari 27,105,2016-12-08 +session,31,6,Safari 5,44,2016-09-19 +session,31,7,Safari 41,21,2017-02-19 +session,31,8,Firefox 22,66,2017-11-17 +user,32,Steve,Esmeralda,73 +session,32,0,Chrome 41,64,2018-07-13 +session,32,1,Firefox 11,50,2016-12-18 +session,32,2,Firefox 38,90,2018-12-26 +session,32,3,Firefox 41,114,2018-04-01 +session,32,4,Safari 49,22,2018-05-28 +session,32,5,Firefox 12,72,2017-09-12 +user,33,Young,Todd,59 +session,33,0,Chrome 10,59,2016-12-28 +session,33,1,Internet Explorer 28,92,2018-06-14 +session,33,2,Chrome 28,29,2017-04-28 +session,33,3,Firefox 1,52,2018-04-25 +session,33,4,Safari 46,25,2017-09-20 +session,33,5,Safari 32,57,2016-10-07 +user,34,Wen,Sherill,39 +session,34,0,Internet Explorer 18,92,2016-09-05 +session,34,1,Firefox 16,95,2017-08-27 +user,35,Margarita,Aileen,78 +session,35,0,Chrome 9,72,2018-02-27 +session,35,1,Firefox 27,18,2018-05-23 +session,35,2,Firefox 42,113,2016-07-22 +session,35,3,Safari 5,27,2018-09-14 +session,35,4,Chrome 49,17,2018-10-24 +session,35,5,Internet Explorer 17,75,2017-08-27 +session,35,6,Internet Explorer 46,49,2016-09-12 +user,36,Rich,Maddie,58 +session,36,0,Chrome 37,36,2016-08-22 +session,36,1,Chrome 21,81,2016-05-31 +session,36,2,Safari 38,71,2018-10-04 +user,37,Marcie,Modesto,76 +session,37,0,Internet Explorer 37,45,2017-01-06 +session,37,1,Chrome 27,58,2018-04-14 +session,37,2,Safari 43,108,2018-04-05 +session,37,3,Firefox 29,67,2016-12-09 +session,37,4,Firefox 43,90,2016-10-24 +session,37,5,Firefox 24,90,2017-04-30 +session,37,6,Chrome 3,104,2016-12-20 +session,37,7,Firefox 47,106,2017-06-15 +user,38,Amparo,Elvis,71 +session,38,0,Safari 9,74,2017-12-08 +session,38,1,Chrome 50,103,2016-05-30 +session,38,2,Internet Explorer 23,84,2018-06-21 +session,38,3,Chrome 6,67,2018-04-15 +session,38,4,Chrome 26,99,2017-10-19 +session,38,5,Chrome 36,73,2016-11-20 +session,38,6,Chrome 28,1,2018-01-26 +session,38,7,Chrome 38,21,2017-02-26 +user,39,Bailey,Brittanie,58 +session,39,0,Firefox 31,52,2018-12-19 +session,39,1,Safari 12,15,2017-10-16 +session,39,2,Safari 28,14,2016-11-08 +session,39,3,Chrome 50,60,2017-07-02 +user,40,Tawanda,Georgeann,70 +session,40,0,Safari 21,51,2018-05-02 +session,40,1,Firefox 34,85,2017-11-25 +session,40,2,Firefox 31,0,2017-08-11 +session,40,3,Internet Explorer 31,88,2018-01-06 +user,41,Jonnie,Louise,57 +session,41,0,Internet Explorer 16,7,2018-12-07 +session,41,1,Chrome 41,74,2019-02-03 +session,41,2,Safari 11,98,2018-11-28 +session,41,3,Firefox 16,7,2018-03-17 +session,41,4,Chrome 49,99,2018-10-10 +session,41,5,Firefox 46,18,2018-01-04 +session,41,6,Safari 6,54,2017-03-02 +session,41,7,Chrome 2,113,2016-08-18 +session,41,8,Safari 6,54,2019-02-11 +session,41,9,Firefox 46,40,2016-05-22 +user,42,Jamar,Annita,17 +session,42,0,Safari 8,82,2018-04-28 +session,42,1,Chrome 41,82,2016-05-28 +session,42,2,Firefox 47,35,2018-08-09 +user,43,Kurt,Camie,33 +session,43,0,Internet Explorer 16,90,2018-07-22 +session,43,1,Firefox 46,16,2017-07-23 +session,43,2,Safari 47,19,2016-09-26 +user,44,Gail,Morgan,79 +session,44,0,Safari 46,101,2018-10-31 +session,44,1,Firefox 49,42,2017-05-31 +session,44,2,Safari 50,61,2018-10-24 +session,44,3,Chrome 23,89,2016-07-29 +user,45,Trenton,Carlee,6 +session,45,0,Internet Explorer 27,70,2017-06-05 +session,45,1,Chrome 1,36,2017-05-04 +session,45,2,Firefox 5,29,2018-08-30 +session,45,3,Internet Explorer 38,81,2018-08-27 +session,45,4,Chrome 50,21,2017-01-21 +session,45,5,Internet Explorer 5,29,2017-12-14 +session,45,6,Firefox 42,102,2017-05-16 +session,45,7,Chrome 44,101,2017-12-31 +session,45,8,Internet Explorer 45,17,2019-02-08 +user,46,Ailene,Melba,3 +session,46,0,Chrome 8,73,2019-01-27 +session,46,1,Safari 43,6,2016-10-21 +session,46,2,Firefox 35,22,2018-09-01 +session,46,3,Firefox 29,19,2016-09-26 +session,46,4,Firefox 45,118,2017-01-11 +session,46,5,Chrome 38,47,2017-04-18 +session,46,6,Safari 40,100,2016-10-28 +user,47,Mohamed,Lorina,58 +session,47,0,Safari 48,75,2016-08-03 +session,47,1,Internet Explorer 27,18,2018-12-10 +session,47,2,Internet Explorer 39,117,2017-01-30 +session,47,3,Internet Explorer 42,90,2017-02-21 +session,47,4,Safari 47,15,2016-12-24 +session,47,5,Internet Explorer 38,59,2018-09-27 +session,47,6,Safari 6,4,2016-10-13 +user,48,Abbie,Young,83 +session,48,0,Safari 1,46,2017-08-17 +session,48,1,Firefox 8,4,2017-01-15 +session,48,2,Firefox 15,1,2018-09-06 +session,48,3,Chrome 4,46,2018-11-27 +session,48,4,Firefox 11,36,2016-11-29 +session,48,5,Chrome 34,67,2018-08-28 +session,48,6,Internet Explorer 50,27,2016-09-23 +user,49,Coleman,Mardell,78 +session,49,0,Chrome 32,46,2018-08-03 +session,49,1,Firefox 15,73,2018-10-24 +session,49,2,Safari 34,67,2016-07-16 +session,49,3,Safari 39,6,2019-02-04 +session,49,4,Firefox 37,31,2018-08-28 +session,49,5,Firefox 33,103,2016-09-25 +session,49,6,Chrome 12,68,2016-06-15 +user,50,Edwin,Joseph,20 +session,50,0,Safari 37,55,2017-10-04 +session,50,1,Safari 21,111,2018-04-27 +user,51,Sonya,Gay,42 +session,51,0,Chrome 34,107,2017-05-31 +session,51,1,Internet Explorer 32,1,2016-11-07 +session,51,2,Chrome 38,109,2018-07-02 +session,51,3,Internet Explorer 41,86,2017-08-08 +session,51,4,Internet Explorer 32,26,2016-09-17 +session,51,5,Firefox 10,52,2016-05-24 +session,51,6,Safari 5,9,2018-03-19 +session,51,7,Chrome 28,44,2017-01-28 +user,52,Aaron,Debbra,66 +session,52,0,Firefox 10,35,2016-10-24 +session,52,1,Safari 29,16,2016-09-17 +session,52,2,Chrome 27,66,2016-12-27 +session,52,3,Firefox 36,1,2018-06-20 +session,52,4,Internet Explorer 9,25,2017-05-07 +session,52,5,Internet Explorer 31,62,2016-06-19 +session,52,6,Firefox 44,63,2018-06-29 +session,52,7,Safari 11,56,2017-07-25 +user,53,Markus,Shyla,36 +session,53,0,Chrome 48,94,2018-05-24 +session,53,1,Chrome 6,72,2017-07-10 +session,53,2,Safari 1,21,2017-03-20 +session,53,3,Safari 6,107,2017-08-28 +session,53,4,Internet Explorer 17,67,2017-09-28 +session,53,5,Chrome 43,117,2017-10-15 +user,54,Velia,Corrine,63 +session,54,0,Firefox 27,92,2018-03-16 +user,55,Percy,Tarra,30 +session,55,0,Safari 27,14,2017-04-27 +session,55,1,Safari 45,15,2017-02-03 +session,55,2,Chrome 1,40,2016-06-26 +session,55,3,Internet Explorer 27,3,2017-09-12 +session,55,4,Internet Explorer 45,18,2017-09-27 +user,56,Laure,Lee,53 +session,56,0,Chrome 18,89,2018-04-30 +session,56,1,Firefox 23,97,2018-02-28 +session,56,2,Firefox 49,95,2018-05-03 +session,56,3,Firefox 42,84,2017-06-18 +user,57,Claude,Lauren,57 +session,57,0,Internet Explorer 31,20,2018-06-25 +session,57,1,Internet Explorer 29,37,2017-05-04 +session,57,2,Firefox 6,81,2018-06-10 +session,57,3,Internet Explorer 23,53,2018-10-14 +session,57,4,Firefox 15,54,2016-05-24 +session,57,5,Chrome 22,51,2017-02-07 +session,57,6,Chrome 44,0,2018-08-02 +session,57,7,Firefox 17,58,2016-10-02 +session,57,8,Internet Explorer 40,119,2018-07-24 +user,58,Timmy,Monica,41 +session,58,0,Internet Explorer 7,5,2017-05-07 +session,58,1,Firefox 16,82,2018-09-10 +session,58,2,Safari 26,99,2016-08-27 +session,58,3,Firefox 6,119,2018-10-31 +session,58,4,Firefox 29,42,2018-06-13 +session,58,5,Firefox 19,92,2016-08-25 +user,59,Mark,Shasta,95 +session,59,0,Chrome 50,102,2017-05-25 +session,59,1,Safari 39,25,2017-05-31 +session,59,2,Firefox 33,60,2016-06-25 +session,59,3,Safari 12,54,2018-05-09 +session,59,4,Internet Explorer 16,84,2018-10-13 +session,59,5,Chrome 39,27,2018-10-31 +session,59,6,Chrome 38,113,2018-07-05 +session,59,7,Firefox 45,109,2017-06-12 +user,60,Rhona,Alline,14 +session,60,0,Internet Explorer 2,35,2017-10-21 +session,60,1,Chrome 11,61,2016-09-01 +session,60,2,Firefox 13,42,2019-02-11 +session,60,3,Chrome 5,48,2017-02-11 +session,60,4,Safari 24,35,2018-09-05 +session,60,5,Firefox 44,115,2016-06-07 +user,61,Lester,Margaret,34 +session,61,0,Internet Explorer 18,98,2018-08-23 +session,61,1,Chrome 5,86,2018-12-03 +user,62,Renna,Sam,59 +session,62,0,Internet Explorer 27,73,2018-12-14 +session,62,1,Internet Explorer 49,73,2018-11-30 +session,62,2,Internet Explorer 5,113,2016-11-14 +user,63,Jacquline,Marth,98 +session,63,0,Firefox 43,77,2018-12-16 +session,63,1,Safari 18,84,2016-12-11 +user,64,Alia,Mary,74 +session,64,0,Internet Explorer 46,37,2016-11-26 +session,64,1,Safari 15,53,2016-12-06 +session,64,2,Internet Explorer 31,18,2017-01-01 +session,64,3,Safari 43,112,2016-10-05 +session,64,4,Firefox 35,76,2017-03-16 +session,64,5,Chrome 17,61,2018-03-25 +session,64,6,Internet Explorer 37,26,2018-07-31 +session,64,7,Chrome 36,55,2016-12-13 +session,64,8,Safari 4,66,2017-05-27 +user,65,Patricia,Winston,65 +session,65,0,Internet Explorer 35,118,2018-09-29 +session,65,1,Firefox 14,27,2017-05-28 +session,65,2,Chrome 18,15,2017-06-10 +session,65,3,Firefox 26,82,2016-11-23 +session,65,4,Safari 32,114,2016-09-05 +session,65,5,Internet Explorer 17,52,2016-11-05 +session,65,6,Chrome 44,107,2018-03-26 +session,65,7,Firefox 4,42,2017-05-15 +session,65,8,Internet Explorer 50,47,2017-10-13 +user,66,Jerry,Nicolasa,83 +session,66,0,Firefox 20,80,2017-07-23 +user,67,Randal,Pamella,16 +session,67,0,Chrome 37,10,2018-01-07 +session,67,1,Chrome 42,6,2017-01-26 +session,67,2,Firefox 34,14,2018-07-21 +user,68,Olen,Leia,88 +session,68,0,Chrome 35,47,2016-08-04 +session,68,1,Firefox 10,3,2018-09-15 +user,69,Jarod,Terence,28 +session,69,0,Internet Explorer 16,100,2016-08-06 +user,70,Jamie,Jeremy,32 +session,70,0,Internet Explorer 41,102,2018-04-24 +session,70,1,Firefox 33,46,2017-11-19 +session,70,2,Firefox 20,106,2018-06-30 +session,70,3,Safari 43,106,2018-05-03 +session,70,4,Internet Explorer 35,29,2018-03-18 +session,70,5,Chrome 34,20,2018-08-31 +session,70,6,Safari 44,74,2017-03-31 +session,70,7,Firefox 23,78,2017-04-20 +session,70,8,Internet Explorer 14,29,2018-07-14 +session,70,9,Internet Explorer 18,34,2018-08-11 +user,71,Hung,Delfina,63 +session,71,0,Chrome 11,0,2018-12-21 +session,71,1,Chrome 13,73,2018-11-11 +session,71,2,Internet Explorer 39,103,2016-11-29 +session,71,3,Chrome 11,74,2017-08-04 +session,71,4,Safari 35,90,2019-02-09 +session,71,5,Chrome 34,67,2019-02-12 +session,71,6,Chrome 13,68,2018-01-23 +session,71,7,Chrome 24,59,2018-01-27 +user,72,Kenisha,Belle,16 +session,72,0,Internet Explorer 42,72,2018-04-25 +session,72,1,Safari 2,75,2018-04-24 +session,72,2,Chrome 10,24,2016-06-14 +session,72,3,Chrome 40,113,2017-03-18 +session,72,4,Safari 37,13,2016-12-11 +session,72,5,Chrome 44,31,2018-12-19 +session,72,6,Internet Explorer 18,83,2018-03-19 +session,72,7,Chrome 45,4,2016-11-07 +session,72,8,Internet Explorer 22,83,2017-12-08 +session,72,9,Firefox 37,25,2018-09-09 +user,73,Tien,Kenyetta,30 +session,73,0,Firefox 38,99,2017-06-25 +session,73,1,Internet Explorer 41,80,2018-06-18 +session,73,2,Firefox 1,6,2017-08-09 +session,73,3,Firefox 15,69,2016-12-27 +session,73,4,Internet Explorer 42,96,2016-09-28 +user,74,Samantha,Tama,72 +session,74,0,Safari 33,12,2016-06-23 +user,75,Tyler,Santa,21 +session,75,0,Internet Explorer 40,102,2018-07-04 +session,75,1,Firefox 13,5,2016-06-05 +session,75,2,Safari 46,0,2016-09-16 +session,75,3,Firefox 37,107,2018-11-24 +session,75,4,Chrome 3,15,2018-12-29 +user,76,Jerome,Corene,46 +session,76,0,Chrome 23,42,2017-05-03 +session,76,1,Internet Explorer 8,44,2017-07-31 +session,76,2,Safari 1,71,2017-03-08 +session,76,3,Chrome 43,3,2018-03-31 +session,76,4,Chrome 35,22,2017-04-26 +session,76,5,Firefox 37,21,2016-11-01 +user,77,Lazaro,Raven,33 +session,77,0,Internet Explorer 33,31,2018-12-24 +session,77,1,Safari 18,8,2018-09-11 +session,77,2,Safari 23,86,2016-06-30 +session,77,3,Safari 9,91,2016-11-03 +session,77,4,Safari 14,22,2017-10-29 +session,77,5,Safari 3,114,2019-01-15 +session,77,6,Chrome 2,9,2017-04-06 +session,77,7,Safari 42,73,2017-03-29 +user,78,Normand,Sergio,14 +session,78,0,Firefox 45,92,2016-05-31 +session,78,1,Internet Explorer 31,109,2018-03-05 +session,78,2,Safari 17,65,2017-10-05 +user,79,Delois,Evelynn,78 +session,79,0,Firefox 19,56,2016-08-05 +user,80,Leota,Iva,68 +session,80,0,Chrome 5,66,2017-07-15 +session,80,1,Chrome 26,113,2017-09-09 +user,81,Pa,Therese,5 +session,81,0,Safari 43,53,2018-11-03 +session,81,1,Internet Explorer 44,27,2016-10-08 +session,81,2,Safari 16,10,2018-10-29 +session,81,3,Safari 20,22,2017-03-25 +session,81,4,Firefox 44,37,2018-07-06 +session,81,5,Safari 14,8,2017-12-14 +user,82,Anastacia,Napoleon,16 +session,82,0,Chrome 23,46,2017-06-19 +session,82,1,Chrome 31,95,2018-07-14 +session,82,2,Safari 21,104,2016-12-14 +session,82,3,Internet Explorer 30,2,2017-04-03 +session,82,4,Chrome 9,29,2017-12-26 +user,83,Deetta,Dahlia,37 +session,83,0,Internet Explorer 32,114,2018-10-17 +session,83,1,Internet Explorer 23,53,2017-02-11 +session,83,2,Safari 7,41,2017-06-30 +session,83,3,Firefox 15,55,2017-12-17 +session,83,4,Safari 17,70,2017-02-26 +session,83,5,Firefox 19,22,2018-04-04 +session,83,6,Firefox 39,57,2018-02-03 +session,83,7,Internet Explorer 38,45,2017-03-18 +user,84,Lorraine,Abram,68 +session,84,0,Firefox 27,32,2018-01-27 +session,84,1,Internet Explorer 1,85,2018-04-14 +session,84,2,Internet Explorer 31,11,2016-08-29 +session,84,3,Firefox 26,115,2017-04-23 +user,85,Millard,Tashia,58 +session,85,0,Safari 13,40,2018-10-01 +session,85,1,Safari 11,21,2018-09-29 +session,85,2,Firefox 39,37,2017-06-01 +session,85,3,Internet Explorer 39,95,2019-01-15 +session,85,4,Safari 40,73,2016-10-18 +session,85,5,Chrome 33,16,2018-01-15 +session,85,6,Firefox 1,13,2018-03-03 +session,85,7,Internet Explorer 46,45,2017-02-28 +session,85,8,Safari 3,96,2018-09-01 +user,86,Floretta,Brandon,28 +session,86,0,Safari 21,20,2017-05-21 +session,86,1,Safari 25,1,2017-08-19 +session,86,2,Safari 49,95,2018-12-27 +session,86,3,Internet Explorer 16,59,2016-11-27 +session,86,4,Firefox 16,18,2016-07-19 +session,86,5,Chrome 34,92,2019-01-16 +session,86,6,Internet Explorer 14,5,2017-08-25 +session,86,7,Firefox 27,79,2018-09-03 +session,86,8,Firefox 20,77,2018-02-18 +user,87,Carlyn,Hyun,21 +session,87,0,Safari 42,11,2018-06-16 +session,87,1,Internet Explorer 50,98,2018-02-11 +session,87,2,Internet Explorer 35,37,2018-12-10 +session,87,3,Internet Explorer 20,51,2016-08-08 +session,87,4,Chrome 7,63,2017-01-10 +session,87,5,Internet Explorer 21,96,2017-07-06 +session,87,6,Safari 32,8,2016-08-03 +session,87,7,Chrome 9,14,2017-10-28 +session,87,8,Firefox 38,114,2017-03-29 +session,87,9,Internet Explorer 13,10,2017-12-21 +user,88,Bradly,Karlene,28 +session,88,0,Internet Explorer 27,118,2018-12-20 +session,88,1,Chrome 18,20,2016-11-10 +session,88,2,Internet Explorer 42,7,2018-06-03 +session,88,3,Chrome 21,69,2017-09-06 +session,88,4,Chrome 38,38,2017-04-27 +session,88,5,Firefox 33,111,2018-07-12 +user,89,Alonso,Angelic,13 +session,89,0,Internet Explorer 9,87,2017-07-07 +session,89,1,Safari 41,61,2018-07-25 +session,89,2,Internet Explorer 39,6,2016-08-06 +session,89,3,Firefox 25,71,2018-05-03 +session,89,4,Safari 13,100,2017-04-22 +session,89,5,Internet Explorer 27,72,2017-02-26 +session,89,6,Safari 16,3,2017-04-27 +session,89,7,Internet Explorer 42,94,2017-03-02 +user,90,Tyrone,Selina,7 +session,90,0,Safari 48,5,2016-09-24 +session,90,1,Internet Explorer 20,48,2019-01-15 +session,90,2,Firefox 18,70,2017-08-22 +session,90,3,Chrome 45,71,2017-12-13 +session,90,4,Safari 46,104,2017-02-06 +session,90,5,Internet Explorer 37,104,2018-07-20 +session,90,6,Internet Explorer 23,75,2018-09-24 +session,90,7,Internet Explorer 25,56,2017-07-26 +session,90,8,Internet Explorer 3,21,2018-09-18 +user,91,Eli,Karyl,81 +session,91,0,Internet Explorer 40,29,2017-02-17 +session,91,1,Internet Explorer 11,92,2018-08-19 +session,91,2,Firefox 8,6,2019-01-20 +user,92,Rosalia,Willie,50 +session,92,0,Firefox 9,47,2018-08-28 +session,92,1,Internet Explorer 37,12,2018-02-24 +session,92,2,Internet Explorer 37,8,2018-03-03 +user,93,Chauncey,Debby,36 +session,93,0,Safari 38,35,2017-06-25 +session,93,1,Safari 15,66,2017-02-19 +session,93,2,Chrome 35,40,2017-07-27 +session,93,3,Safari 30,57,2017-08-12 +session,93,4,Firefox 30,2,2018-04-20 +session,93,5,Safari 46,64,2017-09-16 +session,93,6,Firefox 17,106,2018-10-28 +session,93,7,Chrome 24,119,2018-01-06 +user,94,Malika,Susann,66 +session,94,0,Chrome 47,31,2018-03-15 +session,94,1,Chrome 10,109,2017-06-05 +session,94,2,Safari 9,2,2017-11-06 +session,94,3,Chrome 15,25,2018-01-05 +session,94,4,Internet Explorer 28,51,2018-02-06 +user,95,Jerrold,Janise,18 +session,95,0,Safari 30,105,2016-11-25 +session,95,1,Safari 33,97,2018-01-06 +session,95,2,Internet Explorer 45,86,2016-09-22 +session,95,3,Internet Explorer 35,94,2018-06-04 +session,95,4,Chrome 31,67,2017-08-11 +session,95,5,Internet Explorer 43,16,2018-12-19 +session,95,6,Safari 43,12,2017-04-30 +user,96,Raymond,Stephania,43 +session,96,0,Internet Explorer 3,46,2016-09-08 +user,97,Silvia,Kennith,52 +session,97,0,Safari 17,24,2018-07-23 +session,97,1,Firefox 2,13,2018-05-31 +session,97,2,Firefox 48,108,2018-09-27 +session,97,3,Internet Explorer 49,57,2017-02-01 +session,97,4,Safari 23,42,2016-05-21 +session,97,5,Chrome 40,45,2016-08-05 +session,97,6,Internet Explorer 28,29,2017-10-04 +user,98,Hong,Dorris,59 +session,98,0,Chrome 18,10,2017-03-15 +session,98,1,Chrome 15,67,2017-07-03 +session,98,2,Internet Explorer 47,104,2017-01-08 +session,98,3,Safari 19,108,2017-12-06 +session,98,4,Safari 18,101,2018-12-10 +session,98,5,Chrome 33,47,2018-06-24 +user,99,Iesha,Duane,16 +session,99,0,Chrome 40,46,2016-10-27 +session,99,1,Firefox 14,46,2018-02-11 +session,99,2,Chrome 1,89,2018-08-08 +session,99,3,Internet Explorer 46,17,2018-06-20 +session,99,4,Chrome 35,111,2016-08-02 +user,100,Ignacio,Emmie,0 +session,100,0,Chrome 16,81,2018-06-25 +session,100,1,Internet Explorer 48,22,2016-10-06 +user,101,Ossie,Reginia,77 +session,101,0,Internet Explorer 44,105,2019-01-04 +session,101,1,Chrome 17,70,2018-01-12 +user,102,Gerardo,Sharleen,8 +session,102,0,Safari 28,20,2017-06-30 +user,103,Earline,Shantay,53 +session,103,0,Internet Explorer 3,98,2017-11-11 +session,103,1,Chrome 32,9,2016-06-20 +session,103,2,Internet Explorer 37,12,2017-07-01 +session,103,3,Chrome 42,75,2018-05-09 +session,103,4,Chrome 1,23,2018-02-09 +session,103,5,Safari 32,44,2018-04-20 +session,103,6,Safari 5,29,2018-03-01 +session,103,7,Chrome 44,2,2016-12-09 +session,103,8,Safari 35,36,2016-06-04 +session,103,9,Safari 10,16,2016-07-10 +user,104,Santos,Pamelia,15 +session,104,0,Firefox 1,57,2016-12-25 +session,104,1,Chrome 49,18,2018-05-27 +session,104,2,Firefox 17,36,2018-04-23 +session,104,3,Internet Explorer 32,19,2017-09-21 +session,104,4,Safari 41,97,2018-02-16 +session,104,5,Internet Explorer 31,73,2017-04-06 +session,104,6,Safari 4,57,2017-06-06 +session,104,7,Firefox 10,36,2016-11-10 +user,105,Lola,Florentino,24 +session,105,0,Internet Explorer 14,60,2018-01-20 +session,105,1,Safari 31,105,2017-01-18 +session,105,2,Firefox 29,66,2016-12-14 +user,106,Bert,Orville,11 +session,106,0,Safari 17,89,2018-05-20 +session,106,1,Firefox 15,49,2018-02-15 +user,107,Antonio,Brinda,59 +session,107,0,Internet Explorer 7,35,2018-07-06 +session,107,1,Firefox 19,5,2016-09-23 +session,107,2,Firefox 9,44,2018-02-16 +session,107,3,Chrome 5,18,2016-10-03 +session,107,4,Firefox 38,85,2016-07-30 +user,108,Joaquin,Wilfredo,35 +session,108,0,Firefox 6,13,2016-07-04 +session,108,1,Internet Explorer 20,24,2017-08-28 +session,108,2,Chrome 39,16,2018-09-27 +user,109,Clifton,Allan,5 +session,109,0,Safari 41,63,2018-11-29 +session,109,1,Chrome 17,19,2017-05-30 +session,109,2,Firefox 14,94,2018-02-19 +user,110,Donald,Wenona,56 +session,110,0,Safari 44,14,2016-05-19 +session,110,1,Firefox 22,57,2017-08-11 +user,111,Millard,Mittie,17 +session,111,0,Safari 13,23,2019-01-24 +session,111,1,Firefox 20,96,2016-11-15 +session,111,2,Chrome 48,62,2017-11-08 +session,111,3,Firefox 31,98,2017-10-26 +session,111,4,Safari 38,13,2017-10-03 +session,111,5,Internet Explorer 17,116,2017-12-14 +user,112,Jenette,Bruce,68 +session,112,0,Chrome 18,113,2018-02-25 +session,112,1,Firefox 44,1,2016-09-09 +session,112,2,Firefox 30,66,2017-07-27 +session,112,3,Internet Explorer 46,31,2017-12-06 +user,113,Bryan,Clorinda,86 +session,113,0,Safari 50,61,2016-07-17 +session,113,1,Safari 20,37,2018-04-19 +session,113,2,Safari 37,41,2018-06-10 +session,113,3,Internet Explorer 47,33,2017-10-30 +session,113,4,Firefox 30,5,2017-04-07 +session,113,5,Safari 39,6,2016-07-25 +session,113,6,Internet Explorer 36,48,2018-05-15 +session,113,7,Chrome 50,119,2018-03-26 +session,113,8,Firefox 31,93,2017-12-26 +user,114,Jena,Melony,83 +session,114,0,Internet Explorer 10,52,2016-06-11 +user,115,Jerri,Long,20 +session,115,0,Internet Explorer 20,101,2017-09-03 +session,115,1,Chrome 50,107,2017-04-10 +session,115,2,Firefox 36,85,2018-03-07 +session,115,3,Chrome 22,89,2018-12-15 +session,115,4,Safari 14,26,2018-03-23 +session,115,5,Firefox 24,21,2016-06-23 +user,116,Monte,Angelo,35 +session,116,0,Internet Explorer 14,106,2017-06-28 +user,117,Saran,Nathalie,83 +session,117,0,Chrome 9,92,2016-05-30 +session,117,1,Chrome 3,117,2016-11-02 +session,117,2,Safari 35,94,2016-08-09 +session,117,3,Chrome 3,103,2016-07-20 +session,117,4,Chrome 40,97,2017-08-12 +session,117,5,Firefox 4,6,2018-01-11 +session,117,6,Internet Explorer 19,67,2017-05-13 +user,118,Jonna,Waneta,6 +session,118,0,Chrome 10,101,2017-03-28 +session,118,1,Firefox 24,69,2017-05-06 +session,118,2,Safari 25,97,2018-09-28 +session,118,3,Internet Explorer 16,61,2016-09-24 +session,118,4,Chrome 48,94,2016-06-29 +session,118,5,Internet Explorer 29,13,2016-12-19 +session,118,6,Safari 15,98,2019-01-29 +session,118,7,Chrome 23,18,2017-03-27 +session,118,8,Internet Explorer 25,62,2016-07-29 +session,118,9,Firefox 18,5,2018-05-26 +user,119,Valeria,Gigi,79 +session,119,0,Chrome 36,2,2018-12-02 +user,120,Caron,Hye,64 +session,120,0,Safari 33,103,2016-05-30 +session,120,1,Internet Explorer 4,18,2017-08-12 +session,120,2,Safari 36,114,2017-04-30 +session,120,3,Internet Explorer 30,110,2019-01-26 +session,120,4,Internet Explorer 48,28,2018-10-04 +session,120,5,Safari 13,77,2016-06-16 +session,120,6,Chrome 9,73,2017-03-29 +session,120,7,Chrome 7,33,2016-08-23 +user,121,Wilbur,Lilly,91 +session,121,0,Chrome 5,116,2018-11-20 +session,121,1,Firefox 22,81,2017-03-09 +session,121,2,Internet Explorer 20,86,2017-12-01 +session,121,3,Chrome 7,66,2017-10-30 +user,122,Theresa,Iesha,90 +session,122,0,Internet Explorer 34,21,2017-05-20 +session,122,1,Internet Explorer 16,53,2018-11-25 +session,122,2,Internet Explorer 28,81,2017-03-14 +session,122,3,Firefox 21,79,2018-01-26 +session,122,4,Chrome 10,7,2017-03-07 +user,123,Domingo,Paul,70 +session,123,0,Internet Explorer 3,95,2017-07-31 +session,123,1,Chrome 24,53,2017-02-11 +session,123,2,Safari 3,81,2016-10-22 +user,124,Ahmed,Joshua,99 +session,124,0,Firefox 21,19,2017-03-28 +session,124,1,Internet Explorer 49,54,2017-08-14 +session,124,2,Safari 34,31,2017-04-19 +session,124,3,Internet Explorer 37,98,2018-08-25 +session,124,4,Chrome 1,64,2017-07-19 +session,124,5,Safari 17,25,2017-07-13 +session,124,6,Chrome 23,35,2017-10-30 +session,124,7,Safari 50,84,2018-05-25 +session,124,8,Chrome 14,72,2018-05-10 +session,124,9,Chrome 50,50,2017-01-31 +user,125,Isobel,Elwanda,51 +session,125,0,Firefox 50,111,2017-06-22 +session,125,1,Firefox 29,64,2018-10-17 +session,125,2,Safari 45,113,2017-02-04 +session,125,3,Safari 11,17,2016-09-13 +session,125,4,Chrome 14,93,2017-08-19 +session,125,5,Safari 5,35,2016-11-24 +session,125,6,Internet Explorer 12,66,2017-06-03 +session,125,7,Chrome 47,30,2018-11-04 +user,126,Tuyet,Louie,78 +session,126,0,Chrome 41,3,2018-02-07 +session,126,1,Safari 4,64,2017-07-20 +session,126,2,Safari 10,108,2017-07-11 +session,126,3,Chrome 6,60,2018-04-17 +session,126,4,Safari 23,6,2018-04-04 +session,126,5,Firefox 47,44,2017-05-13 +session,126,6,Firefox 37,37,2018-04-18 +session,126,7,Safari 4,23,2016-06-23 +session,126,8,Firefox 23,1,2016-09-23 +session,126,9,Safari 21,63,2017-04-27 +user,127,Tanika,Rufus,94 +session,127,0,Safari 12,4,2018-01-08 +session,127,1,Firefox 43,35,2017-11-23 +session,127,2,Firefox 48,97,2018-11-30 +user,128,Adriene,Athena,26 +session,128,0,Internet Explorer 9,85,2017-08-10 +user,129,Marlon,Lyla,0 +session,129,0,Chrome 28,95,2017-11-13 +session,129,1,Firefox 23,1,2017-09-01 +session,129,2,Safari 42,26,2018-08-12 +session,129,3,Safari 12,89,2018-01-31 +session,129,4,Safari 11,44,2018-07-09 +session,129,5,Firefox 43,7,2019-01-19 +session,129,6,Safari 37,31,2016-08-03 +session,129,7,Chrome 24,60,2017-10-16 +user,130,Beaulah,Titus,85 +session,130,0,Internet Explorer 28,70,2017-07-04 +session,130,1,Internet Explorer 31,92,2017-07-20 +session,130,2,Firefox 29,64,2018-08-09 +session,130,3,Internet Explorer 30,114,2018-07-20 +session,130,4,Internet Explorer 15,67,2017-05-26 +session,130,5,Safari 35,95,2016-12-23 +session,130,6,Internet Explorer 40,49,2018-12-13 +session,130,7,Safari 46,98,2016-06-18 +session,130,8,Internet Explorer 21,97,2017-05-28 +session,130,9,Safari 10,66,2018-05-16 +user,131,Jerold,Giovanna,17 +session,131,0,Internet Explorer 45,77,2018-08-10 +session,131,1,Firefox 46,66,2019-01-27 +session,131,2,Safari 13,36,2017-02-13 +session,131,3,Chrome 41,8,2017-08-09 +session,131,4,Internet Explorer 48,106,2018-03-17 +session,131,5,Safari 20,39,2018-04-04 +session,131,6,Firefox 4,27,2016-05-24 +session,131,7,Internet Explorer 15,13,2017-02-05 +session,131,8,Internet Explorer 7,23,2018-10-31 +session,131,9,Firefox 11,53,2019-02-11 +user,132,Lesley,Asha,31 +session,132,0,Firefox 12,97,2018-06-18 +session,132,1,Safari 10,94,2018-04-23 +session,132,2,Chrome 37,65,2016-12-20 +session,132,3,Safari 11,103,2016-07-02 +session,132,4,Safari 39,89,2018-04-13 +session,132,5,Chrome 37,36,2019-01-13 +session,132,6,Safari 45,78,2018-06-08 +session,132,7,Firefox 2,55,2016-06-17 +user,133,Lavonne,Cathie,18 +session,133,0,Chrome 23,73,2017-11-24 +session,133,1,Internet Explorer 40,89,2018-02-17 +session,133,2,Chrome 41,50,2016-06-27 +session,133,3,Chrome 30,19,2017-03-22 +session,133,4,Chrome 42,2,2017-11-13 +user,134,Jan,Viki,56 +session,134,0,Internet Explorer 6,49,2018-10-17 +session,134,1,Internet Explorer 21,105,2017-03-08 +user,135,Aron,Fairy,70 +session,135,0,Chrome 10,28,2016-08-06 +session,135,1,Safari 9,77,2018-10-14 +session,135,2,Safari 11,47,2017-09-20 +session,135,3,Firefox 43,35,2016-07-25 +user,136,Ronnie,Sung,0 +session,136,0,Internet Explorer 41,81,2018-12-30 +session,136,1,Chrome 39,100,2017-04-07 +session,136,2,Internet Explorer 42,25,2018-05-14 +session,136,3,Internet Explorer 50,30,2016-10-25 +session,136,4,Chrome 5,62,2017-11-21 +session,136,5,Firefox 17,78,2019-01-08 +session,136,6,Safari 7,84,2016-09-13 +session,136,7,Internet Explorer 1,68,2017-01-08 +session,136,8,Safari 15,2,2016-07-15 +session,136,9,Safari 35,44,2018-04-19 +user,137,Lachelle,Rodrigo,69 +session,137,0,Safari 2,52,2018-01-05 +session,137,1,Chrome 33,108,2017-10-12 +session,137,2,Firefox 44,113,2018-02-17 +session,137,3,Safari 15,67,2018-07-24 +session,137,4,Safari 39,115,2018-03-18 +session,137,5,Safari 25,28,2016-09-07 +session,137,6,Firefox 40,53,2017-11-01 +user,138,Justin,Van,66 +session,138,0,Safari 49,4,2018-09-23 +session,138,1,Internet Explorer 21,56,2019-01-29 +session,138,2,Safari 49,25,2018-11-08 +session,138,3,Internet Explorer 12,7,2017-11-05 +session,138,4,Safari 23,50,2017-05-08 +session,138,5,Safari 2,96,2017-03-28 +session,138,6,Internet Explorer 44,82,2016-08-22 +user,139,Theola,Frederica,78 +session,139,0,Firefox 44,107,2017-06-26 +session,139,1,Firefox 3,14,2017-11-28 +session,139,2,Firefox 15,94,2018-07-13 +session,139,3,Safari 31,51,2017-04-05 +session,139,4,Internet Explorer 25,74,2018-12-22 +user,140,Love,Brandy,35 +session,140,0,Chrome 25,27,2018-04-20 +session,140,1,Safari 6,71,2018-03-02 +session,140,2,Chrome 30,16,2016-09-27 +session,140,3,Internet Explorer 38,112,2016-12-09 +session,140,4,Internet Explorer 38,38,2018-09-27 +session,140,5,Firefox 46,18,2018-07-30 +session,140,6,Internet Explorer 48,0,2018-11-14 +user,141,Eleni,Rusty,55 +session,141,0,Safari 21,46,2017-03-05 +user,142,Roland,Shelby,26 +session,142,0,Firefox 4,43,2017-10-22 +session,142,1,Firefox 24,58,2016-11-19 +session,142,2,Chrome 5,73,2016-10-12 +session,142,3,Internet Explorer 12,19,2016-09-28 +session,142,4,Firefox 35,22,2017-05-22 +session,142,5,Chrome 33,4,2017-11-18 +session,142,6,Safari 20,31,2018-05-04 +session,142,7,Safari 4,25,2016-06-10 +user,143,Margot,Rebecca,46 +session,143,0,Chrome 45,110,2017-08-16 +session,143,1,Chrome 46,30,2018-09-29 +session,143,2,Safari 50,62,2018-06-02 +session,143,3,Firefox 11,45,2016-09-07 +session,143,4,Firefox 23,85,2018-12-05 +session,143,5,Safari 34,38,2016-08-10 +session,143,6,Safari 34,5,2017-06-13 +session,143,7,Safari 18,79,2017-01-02 +session,143,8,Firefox 23,57,2018-02-20 +user,144,Sonny,Lulu,20 +session,144,0,Safari 39,54,2016-08-03 +session,144,1,Chrome 5,77,2018-04-07 +session,144,2,Firefox 43,19,2018-02-03 +session,144,3,Chrome 36,103,2018-03-03 +session,144,4,Safari 15,90,2017-07-03 +session,144,5,Safari 35,22,2018-10-31 +session,144,6,Internet Explorer 48,33,2018-12-27 +session,144,7,Internet Explorer 45,109,2018-05-27 +user,145,Dallas,Amy,61 +session,145,0,Chrome 40,19,2018-06-14 +session,145,1,Firefox 43,5,2019-01-18 +session,145,2,Internet Explorer 8,86,2016-06-27 +session,145,3,Safari 24,103,2016-10-30 +user,146,Jamal,Hanh,16 +session,146,0,Chrome 14,9,2018-04-23 +session,146,1,Internet Explorer 4,67,2017-10-25 +session,146,2,Safari 24,104,2017-12-11 +session,146,3,Firefox 17,104,2017-09-06 +session,146,4,Internet Explorer 15,92,2018-07-30 +session,146,5,Internet Explorer 5,61,2016-08-03 +session,146,6,Firefox 8,86,2018-07-05 +session,146,7,Firefox 25,41,2017-01-12 +user,147,Ervin,Gabriel,82 +session,147,0,Safari 4,6,2016-09-07 +user,148,Patsy,Edwardo,89 +session,148,0,Firefox 13,5,2016-11-22 +session,148,1,Chrome 10,64,2018-07-31 +session,148,2,Chrome 10,57,2016-06-25 +session,148,3,Internet Explorer 39,104,2017-11-11 +session,148,4,Firefox 3,115,2018-11-12 +session,148,5,Chrome 23,67,2016-12-05 +session,148,6,Chrome 50,3,2016-11-16 +session,148,7,Chrome 7,110,2016-12-07 +session,148,8,Firefox 12,46,2016-09-16 +user,149,Clay,Retha,42 +session,149,0,Chrome 28,114,2016-10-24 +session,149,1,Internet Explorer 31,115,2018-08-01 +session,149,2,Firefox 42,91,2018-07-08 +session,149,3,Chrome 4,80,2018-04-06 +session,149,4,Firefox 47,5,2017-03-26 +session,149,5,Firefox 1,71,2016-12-15 +session,149,6,Safari 25,14,2017-04-22 +session,149,7,Firefox 11,91,2018-09-10 +user,150,Lindsay,Gail,48 +session,150,0,Safari 26,109,2017-12-16 +session,150,1,Safari 47,91,2018-03-02 +session,150,2,Safari 18,113,2016-09-25 +user,151,Brian,Stella,65 +session,151,0,Firefox 47,26,2018-11-24 +session,151,1,Chrome 42,70,2018-07-11 +session,151,2,Internet Explorer 15,14,2017-10-16 +session,151,3,Chrome 5,69,2017-08-18 +user,152,Newton,Gilda,22 +session,152,0,Firefox 13,50,2018-08-09 +session,152,1,Firefox 23,114,2018-04-16 +session,152,2,Firefox 50,38,2019-01-20 +session,152,3,Chrome 32,93,2018-02-28 +session,152,4,Firefox 6,55,2018-02-20 +session,152,5,Firefox 43,55,2018-06-15 +user,153,Ignacio,Kira,39 +session,153,0,Internet Explorer 41,17,2017-02-13 +session,153,1,Chrome 49,87,2019-02-08 +user,154,Ned,Robbie,15 +session,154,0,Firefox 35,110,2018-05-31 +session,154,1,Safari 6,24,2018-09-30 +session,154,2,Firefox 26,83,2018-01-30 +user,155,Una,Freddy,22 +session,155,0,Chrome 14,81,2017-01-18 +session,155,1,Chrome 48,66,2018-08-25 +session,155,2,Chrome 39,51,2017-02-01 +session,155,3,Chrome 14,63,2019-02-08 +session,155,4,Internet Explorer 30,15,2016-06-26 +session,155,5,Safari 8,28,2016-07-17 +session,155,6,Internet Explorer 12,80,2018-02-16 +session,155,7,Chrome 3,78,2017-09-05 +user,156,Mabelle,Carylon,62 +session,156,0,Safari 15,33,2017-05-01 +user,157,Bo,Vanetta,7 +session,157,0,Safari 7,37,2017-11-10 +session,157,1,Safari 2,96,2017-01-26 +user,158,Stacey,Man,48 +session,158,0,Safari 35,14,2018-09-26 +user,159,Deloras,Sharron,56 +session,159,0,Chrome 12,54,2017-10-10 +session,159,1,Chrome 22,3,2018-03-30 +session,159,2,Safari 31,12,2016-09-03 +user,160,Kristan,Art,2 +session,160,0,Safari 29,108,2016-09-18 +session,160,1,Safari 26,52,2016-12-26 +session,160,2,Firefox 22,10,2017-03-07 +session,160,3,Internet Explorer 22,35,2016-08-20 +session,160,4,Internet Explorer 18,108,2017-01-31 +user,161,Sergio,Almeda,90 +session,161,0,Chrome 14,104,2017-03-22 +user,162,Vance,Heidy,3 +session,162,0,Firefox 25,25,2017-05-08 +session,162,1,Internet Explorer 27,5,2017-02-07 +session,162,2,Chrome 47,2,2016-05-20 +session,162,3,Firefox 14,67,2018-09-12 +session,162,4,Internet Explorer 23,86,2018-12-08 +session,162,5,Internet Explorer 3,53,2018-09-08 +user,163,Sulema,Georgene,22 +session,163,0,Internet Explorer 49,112,2016-10-16 +session,163,1,Safari 1,106,2018-03-13 +session,163,2,Safari 14,83,2018-12-28 +user,164,Verda,Lili,61 +session,164,0,Safari 16,103,2018-09-26 +session,164,1,Safari 36,78,2018-12-06 +session,164,2,Internet Explorer 26,25,2017-08-20 +session,164,3,Chrome 8,45,2017-08-16 +session,164,4,Firefox 30,118,2018-06-08 +session,164,5,Internet Explorer 38,35,2016-11-15 +user,165,Leonarda,Jame,18 +session,165,0,Safari 30,48,2018-01-19 +session,165,1,Internet Explorer 45,94,2017-07-11 +session,165,2,Safari 22,116,2018-03-06 +session,165,3,Internet Explorer 10,11,2018-07-15 +session,165,4,Firefox 7,88,2018-12-21 +session,165,5,Chrome 18,33,2018-05-08 +user,166,Matt,Adrien,89 +session,166,0,Safari 25,105,2016-07-16 +session,166,1,Internet Explorer 16,103,2018-01-19 +session,166,2,Chrome 12,28,2018-11-03 +session,166,3,Safari 3,65,2016-08-17 +user,167,Zetta,Dara,42 +session,167,0,Safari 3,29,2017-11-17 +user,168,Nova,Ollie,97 +session,168,0,Internet Explorer 50,7,2018-02-07 +session,168,1,Safari 42,41,2017-06-16 +session,168,2,Firefox 17,101,2016-05-21 +session,168,3,Safari 20,20,2017-05-02 +session,168,4,Safari 11,40,2016-07-07 +session,168,5,Firefox 41,17,2016-11-22 +session,168,6,Firefox 49,44,2017-10-13 +session,168,7,Chrome 22,101,2018-09-12 +user,169,Erin,Matt,62 +session,169,0,Safari 31,114,2018-10-01 +session,169,1,Chrome 7,3,2017-04-02 +user,170,Randal,Tiffiny,27 +session,170,0,Firefox 25,114,2017-11-09 +session,170,1,Firefox 19,8,2016-06-19 +session,170,2,Safari 9,73,2018-04-12 +session,170,3,Internet Explorer 34,63,2018-07-31 +user,171,Earnest,Gemma,2 +session,171,0,Chrome 32,76,2018-12-18 +session,171,1,Chrome 19,3,2018-03-04 +session,171,2,Safari 10,101,2017-03-16 +session,171,3,Chrome 16,76,2017-08-03 +user,172,Wei,Sharleen,16 +session,172,0,Chrome 5,9,2018-11-16 +session,172,1,Chrome 17,96,2017-01-16 +session,172,2,Safari 24,37,2018-07-13 +session,172,3,Firefox 34,19,2018-03-07 +user,173,Hector,Marin,56 +session,173,0,Firefox 24,94,2018-07-29 +user,174,Robin,Tyrone,54 +session,174,0,Internet Explorer 16,81,2017-04-12 +session,174,1,Chrome 23,36,2017-04-01 +session,174,2,Chrome 50,54,2017-08-30 +user,175,Rosalyn,Inell,34 +session,175,0,Internet Explorer 29,75,2017-11-01 +session,175,1,Internet Explorer 11,72,2018-05-12 +session,175,2,Chrome 46,42,2018-08-10 +session,175,3,Chrome 13,6,2016-12-21 +session,175,4,Firefox 9,55,2016-08-01 +session,175,5,Chrome 5,103,2018-12-02 +user,176,Cory,Maurine,26 +session,176,0,Chrome 34,16,2018-05-22 +session,176,1,Safari 5,31,2017-09-03 +session,176,2,Internet Explorer 22,55,2017-01-06 +session,176,3,Chrome 41,26,2017-04-14 +session,176,4,Internet Explorer 42,4,2017-07-28 +session,176,5,Chrome 45,115,2017-07-12 +session,176,6,Firefox 26,58,2017-03-04 +session,176,7,Safari 26,7,2018-03-06 +session,176,8,Safari 34,60,2016-11-18 +session,176,9,Chrome 10,12,2018-06-30 +user,177,Roxanna,Sina,42 +session,177,0,Internet Explorer 13,108,2017-03-01 +session,177,1,Firefox 13,15,2018-11-16 +session,177,2,Internet Explorer 37,2,2017-11-24 +session,177,3,Safari 5,108,2017-01-01 +session,177,4,Internet Explorer 20,99,2018-06-02 +session,177,5,Firefox 36,54,2018-12-07 +user,178,Marisha,Tijuana,75 +session,178,0,Safari 38,17,2016-11-06 +session,178,1,Internet Explorer 9,67,2016-11-28 +session,178,2,Safari 45,82,2018-05-14 +session,178,3,Firefox 30,85,2017-08-18 +user,179,Tena,Ena,80 +session,179,0,Safari 10,36,2018-08-18 +user,180,German,Florida,78 +session,180,0,Firefox 21,95,2018-04-28 +session,180,1,Chrome 16,91,2017-08-27 +user,181,Cinthia,Angila,10 +session,181,0,Chrome 8,96,2016-12-26 +session,181,1,Chrome 4,50,2016-12-07 +session,181,2,Firefox 8,88,2019-02-08 +session,181,3,Internet Explorer 41,52,2017-10-13 +session,181,4,Safari 29,113,2017-07-21 +session,181,5,Internet Explorer 24,47,2018-12-17 +session,181,6,Internet Explorer 29,82,2018-09-21 +session,181,7,Firefox 18,56,2018-10-20 +user,182,Libbie,Keiko,20 +session,182,0,Chrome 38,67,2016-10-27 +session,182,1,Firefox 31,44,2016-08-20 +session,182,2,Safari 36,27,2017-10-24 +session,182,3,Internet Explorer 45,53,2018-07-31 +session,182,4,Chrome 14,48,2017-06-08 +session,182,5,Firefox 26,82,2016-07-11 +session,182,6,Internet Explorer 24,38,2017-02-04 +user,183,Isobel,Dave,69 +session,183,0,Firefox 28,40,2017-03-13 +session,183,1,Internet Explorer 17,16,2016-10-06 +session,183,2,Safari 1,38,2017-01-20 +session,183,3,Internet Explorer 44,91,2017-06-03 +session,183,4,Internet Explorer 37,5,2016-12-30 +session,183,5,Firefox 36,20,2017-05-02 +session,183,6,Firefox 26,57,2016-08-17 +session,183,7,Safari 21,37,2017-08-12 +session,183,8,Chrome 28,7,2018-02-22 +user,184,Francesco,Fay,0 +session,184,0,Chrome 27,68,2017-08-03 +session,184,1,Safari 7,40,2017-05-10 +session,184,2,Safari 47,94,2018-03-01 +session,184,3,Safari 3,14,2016-09-02 +user,185,Edgar,Temple,53 +session,185,0,Chrome 22,70,2017-06-25 +session,185,1,Firefox 34,8,2018-05-14 +session,185,2,Safari 16,100,2017-11-02 +session,185,3,Safari 40,84,2017-02-24 +session,185,4,Chrome 5,60,2018-08-16 +session,185,5,Firefox 50,76,2018-03-18 +user,186,Mohammad,Lenny,46 +session,186,0,Chrome 28,116,2017-03-29 +session,186,1,Firefox 17,106,2017-09-19 +user,187,Vincenza,Latoya,37 +session,187,0,Firefox 2,52,2016-10-20 +session,187,1,Firefox 40,17,2016-06-27 +session,187,2,Internet Explorer 11,52,2018-10-05 +session,187,3,Safari 9,87,2018-11-04 +session,187,4,Safari 36,6,2016-10-21 +session,187,5,Chrome 16,110,2017-06-07 +session,187,6,Chrome 47,7,2016-08-26 +session,187,7,Safari 21,105,2016-07-08 +user,188,Brent,Kelly,33 +session,188,0,Firefox 17,88,2018-06-11 +session,188,1,Firefox 16,66,2017-11-04 +session,188,2,Safari 26,15,2016-07-03 +session,188,3,Internet Explorer 43,0,2017-11-17 +session,188,4,Chrome 40,23,2017-02-27 +session,188,5,Internet Explorer 16,50,2018-11-22 +user,189,Lincoln,Jillian,60 +session,189,0,Firefox 12,13,2017-08-01 +session,189,1,Firefox 21,109,2018-04-28 +user,190,Iluminada,Kenda,12 +session,190,0,Internet Explorer 20,0,2017-02-23 +session,190,1,Firefox 18,16,2019-01-02 +session,190,2,Chrome 1,29,2018-10-18 +session,190,3,Internet Explorer 32,117,2016-12-08 +session,190,4,Safari 3,104,2018-04-22 +session,190,5,Safari 5,86,2018-05-08 +session,190,6,Firefox 22,18,2018-06-07 +user,191,Eartha,Augusta,78 +session,191,0,Chrome 30,16,2016-05-28 +session,191,1,Safari 36,81,2018-06-28 +session,191,2,Safari 21,71,2017-05-19 +session,191,3,Chrome 2,62,2018-06-23 +session,191,4,Firefox 18,75,2016-11-12 +user,192,Marcelo,Denae,50 +session,192,0,Chrome 31,48,2018-06-12 +session,192,1,Chrome 3,1,2017-02-28 +session,192,2,Firefox 16,98,2018-01-30 +user,193,Shellie,Napoleon,20 +session,193,0,Safari 14,100,2017-08-03 +session,193,1,Internet Explorer 14,112,2018-04-10 +session,193,2,Internet Explorer 22,55,2017-03-15 +session,193,3,Internet Explorer 48,51,2017-05-30 +user,194,Laurence,Donald,41 +session,194,0,Internet Explorer 31,9,2017-10-19 +session,194,1,Chrome 7,30,2018-05-13 +session,194,2,Firefox 17,95,2018-07-28 +session,194,3,Internet Explorer 6,29,2017-07-06 +session,194,4,Firefox 38,31,2017-05-02 +session,194,5,Internet Explorer 19,10,2017-09-21 +session,194,6,Chrome 12,10,2016-11-16 +user,195,Lonnie,Gayle,55 +session,195,0,Internet Explorer 34,53,2016-06-14 +session,195,1,Internet Explorer 26,116,2018-12-30 +session,195,2,Internet Explorer 40,35,2018-01-09 +session,195,3,Chrome 13,92,2017-06-23 +user,196,Charlie,Somer,65 +session,196,0,Firefox 49,77,2017-12-07 +session,196,1,Firefox 4,78,2017-03-31 +session,196,2,Safari 2,49,2017-07-25 +session,196,3,Chrome 25,24,2018-06-06 +session,196,4,Firefox 35,38,2018-08-11 +session,196,5,Chrome 32,102,2018-02-10 +session,196,6,Firefox 31,26,2018-05-10 +session,196,7,Safari 46,14,2017-02-27 +user,197,Berry,Janeth,44 +session,197,0,Chrome 8,95,2017-07-20 +user,198,Trevor,Jeanett,76 +session,198,0,Chrome 31,45,2018-05-13 +session,198,1,Chrome 18,86,2016-09-18 +user,199,Oren,Kim,7 +session,199,0,Firefox 1,34,2017-06-19 +session,199,1,Chrome 44,112,2016-12-07 +session,199,2,Safari 7,27,2016-06-20 +session,199,3,Firefox 4,29,2017-07-22 +session,199,4,Internet Explorer 4,41,2016-07-08 +session,199,5,Safari 42,1,2017-09-11 +session,199,6,Firefox 4,105,2018-10-21 +session,199,7,Firefox 40,93,2017-08-18 +session,199,8,Firefox 13,84,2018-11-20 +user,200,Freddy,Hiram,94 +session,200,0,Safari 49,43,2018-04-01 +session,200,1,Firefox 36,30,2018-04-12 +session,200,2,Chrome 15,111,2018-11-10 +session,200,3,Safari 2,60,2017-06-08 +user,201,Jules,Lucia,36 +session,201,0,Safari 37,78,2016-06-16 +user,202,Christa,Callie,77 +session,202,0,Internet Explorer 1,70,2017-07-15 +session,202,1,Internet Explorer 27,74,2018-02-07 +user,203,Hyun,Raelene,0 +session,203,0,Chrome 9,40,2016-07-11 +user,204,Britni,Nia,48 +session,204,0,Internet Explorer 40,29,2018-05-27 +session,204,1,Chrome 42,99,2016-10-05 +user,205,Caryn,Celia,19 +session,205,0,Safari 43,12,2016-07-20 +user,206,Georgine,Haley,84 +session,206,0,Safari 38,28,2018-03-04 +session,206,1,Safari 18,35,2018-08-27 +session,206,2,Firefox 29,118,2017-12-21 +session,206,3,Internet Explorer 31,28,2017-11-02 +session,206,4,Chrome 43,47,2018-06-12 +session,206,5,Firefox 5,5,2018-08-03 +session,206,6,Chrome 48,97,2017-05-17 +session,206,7,Safari 6,65,2018-02-26 +session,206,8,Chrome 31,46,2017-10-07 +user,207,Jordon,Amiee,15 +session,207,0,Firefox 48,7,2018-02-06 +session,207,1,Firefox 36,17,2016-09-16 +session,207,2,Internet Explorer 8,52,2018-03-25 +session,207,3,Safari 46,71,2018-11-16 +session,207,4,Safari 34,54,2018-05-15 +user,208,Kacy,Shakita,10 +session,208,0,Firefox 46,38,2018-03-02 +session,208,1,Firefox 47,51,2017-11-26 +session,208,2,Safari 28,92,2019-01-16 +session,208,3,Firefox 42,13,2017-05-31 +session,208,4,Safari 2,13,2017-05-29 +session,208,5,Internet Explorer 24,26,2016-10-02 +session,208,6,Firefox 22,73,2018-06-23 +session,208,7,Chrome 11,23,2017-12-12 +user,209,Donovan,Deane,73 +session,209,0,Internet Explorer 44,6,2017-10-09 +session,209,1,Firefox 14,31,2018-12-24 +session,209,2,Chrome 35,64,2017-05-25 +session,209,3,Chrome 8,88,2016-10-31 +session,209,4,Firefox 26,10,2018-08-05 +session,209,5,Chrome 30,6,2017-05-27 +session,209,6,Safari 10,111,2017-06-25 +session,209,7,Chrome 10,42,2016-07-16 +session,209,8,Internet Explorer 18,9,2017-06-17 +user,210,Brandi,Luann,41 +session,210,0,Safari 23,108,2018-03-27 +session,210,1,Internet Explorer 36,21,2017-06-24 +session,210,2,Chrome 15,29,2016-05-23 +session,210,3,Chrome 26,17,2017-02-19 +user,211,Zachery,Franchesca,32 +session,211,0,Chrome 39,52,2016-08-02 +user,212,Augustine,Lupe,55 +session,212,0,Safari 35,80,2018-08-08 +session,212,1,Chrome 45,59,2017-05-06 +session,212,2,Internet Explorer 4,2,2018-02-16 +session,212,3,Safari 19,0,2017-08-30 +session,212,4,Internet Explorer 47,111,2018-03-06 +session,212,5,Internet Explorer 43,119,2017-11-07 +session,212,6,Chrome 40,39,2017-10-27 +session,212,7,Internet Explorer 33,89,2016-12-21 +session,212,8,Chrome 12,5,2016-07-23 +session,212,9,Internet Explorer 49,9,2017-07-01 +user,213,Gabriel,Aline,80 +session,213,0,Firefox 28,56,2018-12-13 +session,213,1,Safari 26,48,2017-06-25 +session,213,2,Chrome 2,87,2018-07-29 +session,213,3,Safari 22,93,2018-10-10 +session,213,4,Safari 41,65,2017-06-22 +session,213,5,Safari 35,111,2017-04-06 +session,213,6,Safari 40,90,2019-01-05 +session,213,7,Safari 41,75,2018-01-08 +user,214,Isaac,Irina,55 +session,214,0,Internet Explorer 43,9,2018-02-06 +session,214,1,Safari 24,30,2018-10-26 +session,214,2,Firefox 45,50,2016-07-05 +session,214,3,Safari 36,48,2017-08-23 +session,214,4,Internet Explorer 26,6,2018-04-30 +session,214,5,Internet Explorer 28,101,2016-12-15 +user,215,Myron,Lacy,63 +session,215,0,Internet Explorer 6,66,2017-07-13 +session,215,1,Internet Explorer 29,23,2018-07-10 +session,215,2,Chrome 18,15,2016-06-18 +user,216,Yong,Heike,3 +session,216,0,Safari 45,67,2016-05-30 +session,216,1,Chrome 45,10,2019-02-02 +session,216,2,Chrome 27,49,2017-09-12 +session,216,3,Internet Explorer 6,116,2019-01-30 +session,216,4,Safari 14,112,2017-04-24 +session,216,5,Chrome 50,3,2016-10-15 +session,216,6,Safari 45,69,2017-04-25 +session,216,7,Chrome 8,38,2017-04-18 +session,216,8,Chrome 9,48,2017-04-04 +user,217,Wilfredo,Jacinto,3 +session,217,0,Chrome 47,80,2016-09-09 +session,217,1,Safari 28,101,2019-01-11 +session,217,2,Firefox 23,89,2017-12-05 +user,218,Dannie,Twanda,42 +session,218,0,Chrome 28,41,2018-10-30 +session,218,1,Safari 10,82,2018-06-16 +session,218,2,Internet Explorer 7,99,2017-01-11 +session,218,3,Internet Explorer 18,42,2017-09-01 +session,218,4,Safari 42,39,2016-07-26 +user,219,Theo,Lottie,32 +session,219,0,Internet Explorer 48,45,2016-07-27 +session,219,1,Firefox 9,102,2018-01-30 +session,219,2,Chrome 44,28,2018-05-04 +session,219,3,Internet Explorer 28,46,2018-08-20 +user,220,Jesenia,Lai,81 +session,220,0,Internet Explorer 28,107,2018-11-30 +session,220,1,Firefox 49,112,2018-02-07 +user,221,Simon,Pearly,17 +session,221,0,Safari 2,99,2018-11-09 +session,221,1,Firefox 4,116,2016-10-16 +session,221,2,Firefox 46,57,2018-06-19 +session,221,3,Safari 20,53,2018-06-11 +session,221,4,Internet Explorer 38,81,2018-01-13 +session,221,5,Firefox 8,45,2017-05-09 +user,222,Eldon,Florencia,36 +session,222,0,Internet Explorer 2,92,2016-11-13 +session,222,1,Firefox 47,2,2016-11-11 +session,222,2,Chrome 25,116,2016-08-21 +session,222,3,Internet Explorer 9,51,2017-06-24 +session,222,4,Internet Explorer 45,113,2017-05-27 +session,222,5,Safari 35,53,2017-03-14 +user,223,Ben,Leisha,23 +session,223,0,Safari 11,101,2019-01-06 +session,223,1,Safari 41,100,2018-05-30 +session,223,2,Internet Explorer 13,77,2017-01-09 +session,223,3,Safari 38,50,2018-05-26 +session,223,4,Firefox 21,18,2017-09-15 +session,223,5,Safari 30,41,2017-05-05 +session,223,6,Internet Explorer 19,53,2017-09-26 +session,223,7,Firefox 38,56,2016-07-29 +session,223,8,Firefox 50,66,2017-04-27 +user,224,Daron,Marshall,64 +session,224,0,Chrome 11,85,2018-04-09 +session,224,1,Internet Explorer 17,106,2018-03-06 +session,224,2,Safari 9,41,2017-03-05 +session,224,3,Chrome 3,54,2018-08-27 +user,225,Melva,Buena,89 +session,225,0,Firefox 31,86,2017-05-18 +session,225,1,Firefox 11,25,2018-01-23 +session,225,2,Internet Explorer 46,28,2017-02-02 +session,225,3,Safari 12,69,2018-01-13 +session,225,4,Safari 18,89,2019-01-16 +session,225,5,Safari 8,40,2017-07-22 +session,225,6,Internet Explorer 28,76,2019-01-13 +session,225,7,Internet Explorer 37,61,2016-08-20 +session,225,8,Firefox 47,72,2018-04-10 +user,226,Andres,Broderick,68 +session,226,0,Safari 29,96,2016-07-13 +user,227,Ron,Lanora,93 +session,227,0,Chrome 48,106,2017-02-18 +session,227,1,Internet Explorer 15,28,2018-07-31 +user,228,Olen,Donn,31 +session,228,0,Firefox 14,35,2017-12-21 +session,228,1,Safari 16,20,2017-06-11 +session,228,2,Chrome 48,109,2017-03-07 +session,228,3,Firefox 1,32,2017-05-25 +user,229,Caroll,Kate,42 +session,229,0,Internet Explorer 41,32,2018-06-09 +session,229,1,Firefox 47,37,2018-01-22 +session,229,2,Safari 20,75,2018-04-21 +session,229,3,Safari 47,52,2017-10-09 +session,229,4,Firefox 37,96,2017-05-14 +session,229,5,Safari 38,50,2018-08-23 +session,229,6,Chrome 20,27,2018-03-27 +user,230,Shana,Hobert,79 +session,230,0,Chrome 39,33,2016-09-02 +session,230,1,Internet Explorer 23,14,2017-09-30 +session,230,2,Internet Explorer 43,55,2016-12-03 +session,230,3,Internet Explorer 41,22,2019-02-10 +session,230,4,Internet Explorer 30,113,2018-08-18 +session,230,5,Safari 4,3,2016-05-19 +session,230,6,Firefox 9,76,2017-01-09 +user,231,Phil,Moira,64 +session,231,0,Safari 42,85,2017-06-17 +session,231,1,Chrome 47,98,2016-09-28 +session,231,2,Internet Explorer 26,3,2016-12-24 +session,231,3,Firefox 24,10,2017-10-29 +session,231,4,Safari 37,22,2016-11-16 +session,231,5,Chrome 23,38,2017-06-08 +session,231,6,Chrome 7,91,2018-08-22 +session,231,7,Chrome 50,90,2017-08-24 +user,232,Efrain,Daniele,86 +session,232,0,Chrome 31,45,2017-07-24 +session,232,1,Safari 25,24,2019-02-04 +session,232,2,Safari 43,1,2018-04-14 +session,232,3,Internet Explorer 47,23,2017-08-06 +user,233,Ria,Barbera,27 +session,233,0,Internet Explorer 38,28,2017-03-14 +session,233,1,Firefox 19,62,2016-09-11 +session,233,2,Firefox 23,18,2017-11-03 +session,233,3,Firefox 13,29,2016-10-31 +session,233,4,Firefox 3,95,2018-07-09 +session,233,5,Firefox 17,18,2016-09-10 +session,233,6,Safari 26,34,2017-07-18 +session,233,7,Firefox 37,105,2016-09-13 +user,234,Percy,Tess,4 +session,234,0,Safari 2,0,2018-02-18 +session,234,1,Chrome 2,40,2017-02-09 +session,234,2,Chrome 17,65,2018-07-27 +session,234,3,Safari 24,107,2017-12-02 +session,234,4,Safari 2,77,2019-01-27 +session,234,5,Firefox 28,15,2016-08-21 +session,234,6,Safari 23,89,2016-07-13 +session,234,7,Safari 27,94,2018-10-14 +session,234,8,Safari 14,27,2017-05-17 +session,234,9,Chrome 29,11,2017-07-04 +user,235,Curtis,Eleni,16 +session,235,0,Chrome 50,117,2017-01-04 +session,235,1,Chrome 5,103,2018-03-08 +session,235,2,Chrome 2,33,2016-08-05 +session,235,3,Internet Explorer 11,53,2018-08-18 +user,236,Delmar,Chantell,3 +session,236,0,Firefox 23,16,2016-10-22 +session,236,1,Firefox 5,34,2016-11-10 +user,237,Lenora,Lynwood,78 +session,237,0,Firefox 10,63,2018-08-09 +session,237,1,Safari 37,92,2018-09-10 +session,237,2,Chrome 15,62,2018-04-09 +session,237,3,Firefox 5,7,2018-10-20 +user,238,Jamey,Ignacio,93 +session,238,0,Firefox 45,95,2017-06-11 +session,238,1,Safari 9,24,2017-10-03 +session,238,2,Firefox 24,3,2018-11-01 +session,238,3,Internet Explorer 48,99,2018-07-04 +session,238,4,Firefox 37,71,2017-10-03 +session,238,5,Firefox 38,110,2018-12-31 +session,238,6,Safari 40,108,2017-02-08 +user,239,Marvin,Freddie,7 +session,239,0,Safari 3,86,2016-05-26 +session,239,1,Safari 50,62,2018-04-05 +session,239,2,Chrome 31,78,2016-10-04 +user,240,Chance,Willa,48 +session,240,0,Chrome 37,73,2018-05-25 +session,240,1,Safari 5,99,2018-02-19 +session,240,2,Firefox 18,100,2017-12-15 +session,240,3,Firefox 10,112,2017-12-20 +session,240,4,Safari 13,91,2018-11-12 +session,240,5,Chrome 44,98,2016-11-09 +session,240,6,Internet Explorer 22,63,2016-06-21 +session,240,7,Chrome 40,74,2017-05-18 +user,241,Petrina,Carmelita,1 +session,241,0,Safari 32,75,2017-10-24 +session,241,1,Safari 30,1,2017-07-01 +session,241,2,Safari 29,17,2016-06-02 +session,241,3,Chrome 22,107,2018-08-20 +session,241,4,Chrome 24,118,2018-03-08 +session,241,5,Chrome 13,99,2017-09-29 +session,241,6,Internet Explorer 38,65,2016-11-05 +session,241,7,Safari 8,25,2018-11-24 +session,241,8,Internet Explorer 7,5,2016-11-24 +user,242,Kathrin,Clement,29 +session,242,0,Chrome 39,86,2018-01-15 +session,242,1,Firefox 49,73,2017-10-23 +session,242,2,Internet Explorer 17,61,2017-02-10 +user,243,Brooks,Theron,80 +session,243,0,Safari 47,54,2018-12-10 +session,243,1,Firefox 43,110,2016-12-29 +session,243,2,Safari 46,92,2017-05-28 +session,243,3,Internet Explorer 1,54,2017-11-03 +session,243,4,Chrome 2,98,2018-08-04 +user,244,Brain,Dewitt,78 +session,244,0,Safari 44,31,2019-02-04 +session,244,1,Internet Explorer 44,48,2016-07-22 +session,244,2,Firefox 25,70,2018-12-09 +session,244,3,Firefox 43,62,2018-09-29 +session,244,4,Safari 1,10,2016-10-15 +session,244,5,Safari 47,63,2018-03-11 +user,245,Brent,Elia,86 +session,245,0,Internet Explorer 50,116,2018-03-12 +user,246,Philip,Cecelia,17 +session,246,0,Firefox 45,43,2018-07-15 +session,246,1,Chrome 50,64,2017-08-18 +session,246,2,Chrome 8,59,2018-08-22 +user,247,Calvin,Della,90 +session,247,0,Internet Explorer 15,23,2017-01-25 +user,248,Warren,Iris,72 +session,248,0,Chrome 26,62,2017-10-18 +user,249,Isidra,Dorsey,83 +session,249,0,Internet Explorer 3,77,2018-08-10 +session,249,1,Safari 36,87,2018-11-22 +session,249,2,Firefox 9,95,2018-12-26 +session,249,3,Safari 19,39,2017-04-21 +user,250,Yen,Claudia,60 +session,250,0,Chrome 49,41,2018-07-08 +session,250,1,Internet Explorer 6,100,2017-01-28 +session,250,2,Firefox 19,93,2017-08-09 +user,251,Mora,Ha,86 +session,251,0,Internet Explorer 1,1,2018-10-30 +session,251,1,Firefox 15,95,2018-04-13 +session,251,2,Chrome 22,10,2016-05-20 +session,251,3,Safari 33,103,2018-10-02 +session,251,4,Safari 43,67,2019-01-11 +session,251,5,Firefox 24,50,2019-01-05 +session,251,6,Firefox 49,36,2016-09-21 +session,251,7,Internet Explorer 48,19,2018-01-20 +session,251,8,Safari 11,52,2017-08-08 +user,252,Dorian,Deane,15 +session,252,0,Safari 23,86,2017-04-23 +session,252,1,Internet Explorer 40,87,2017-06-14 +session,252,2,Internet Explorer 47,29,2017-07-21 +session,252,3,Chrome 27,4,2018-05-27 +session,252,4,Safari 16,0,2018-10-07 +session,252,5,Internet Explorer 26,54,2018-12-20 +session,252,6,Firefox 14,66,2017-08-05 +session,252,7,Internet Explorer 27,13,2017-01-28 +user,253,Shawn,Jaimee,79 +session,253,0,Internet Explorer 21,68,2017-01-19 +session,253,1,Internet Explorer 35,62,2017-04-29 +session,253,2,Internet Explorer 1,64,2017-12-29 +session,253,3,Chrome 36,2,2019-01-21 +session,253,4,Firefox 19,43,2018-03-10 +user,254,Cori,Divina,16 +session,254,0,Internet Explorer 30,116,2017-07-27 +session,254,1,Internet Explorer 42,74,2018-10-25 +session,254,2,Firefox 30,21,2018-12-20 +session,254,3,Firefox 13,57,2018-12-01 +session,254,4,Chrome 3,14,2018-07-16 +session,254,5,Firefox 34,99,2017-02-28 +user,255,Garret,Georgann,75 +session,255,0,Chrome 8,33,2017-11-14 +session,255,1,Chrome 43,51,2016-08-06 +session,255,2,Internet Explorer 21,20,2019-01-11 +session,255,3,Chrome 37,102,2018-11-16 +session,255,4,Safari 11,66,2016-08-27 +session,255,5,Internet Explorer 23,47,2017-10-17 +session,255,6,Internet Explorer 14,43,2019-01-11 +session,255,7,Firefox 27,60,2016-12-15 +session,255,8,Firefox 33,83,2018-08-23 +user,256,Theo,Tricia,82 +session,256,0,Internet Explorer 32,71,2017-01-25 +user,257,Libby,Lera,12 +session,257,0,Firefox 24,86,2016-12-01 +session,257,1,Safari 38,104,2017-03-21 +session,257,2,Chrome 16,47,2019-01-04 +session,257,3,Safari 14,25,2018-07-27 +session,257,4,Chrome 5,112,2018-03-27 +session,257,5,Firefox 10,43,2018-02-04 +session,257,6,Firefox 15,82,2018-05-25 +session,257,7,Chrome 29,38,2017-05-17 +session,257,8,Firefox 41,4,2018-01-09 +session,257,9,Firefox 8,96,2017-05-15 +user,258,Evalyn,Abe,39 +session,258,0,Safari 47,2,2018-09-21 +session,258,1,Safari 36,117,2017-07-31 +session,258,2,Internet Explorer 14,53,2016-12-06 +session,258,3,Internet Explorer 24,103,2018-10-07 +session,258,4,Safari 42,28,2018-05-24 +session,258,5,Internet Explorer 24,95,2018-10-15 +user,259,Alexandra,Malia,95 +session,259,0,Firefox 41,70,2017-06-13 +session,259,1,Internet Explorer 34,70,2018-12-21 +session,259,2,Firefox 13,81,2018-03-10 +session,259,3,Internet Explorer 28,38,2017-03-21 +session,259,4,Chrome 6,109,2016-05-29 +session,259,5,Internet Explorer 45,102,2018-11-22 +session,259,6,Firefox 21,8,2017-01-13 +session,259,7,Internet Explorer 45,84,2017-01-15 +user,260,Tamisha,Camelia,84 +session,260,0,Safari 25,93,2017-06-10 +session,260,1,Internet Explorer 46,110,2016-09-26 +session,260,2,Firefox 18,107,2018-04-28 +session,260,3,Chrome 28,52,2018-07-07 +session,260,4,Internet Explorer 29,98,2017-10-20 +session,260,5,Safari 14,116,2018-04-22 +session,260,6,Firefox 27,15,2017-05-30 +session,260,7,Firefox 33,111,2018-02-11 +session,260,8,Safari 23,8,2018-11-13 +session,260,9,Chrome 25,117,2017-08-12 +user,261,Walker,Gerry,71 +session,261,0,Chrome 45,61,2018-02-17 +session,261,1,Firefox 11,75,2016-11-05 +session,261,2,Internet Explorer 15,61,2018-04-29 +session,261,3,Safari 17,56,2016-12-19 +user,262,Tuan,Maire,13 +session,262,0,Firefox 15,98,2016-08-08 +session,262,1,Chrome 30,35,2017-09-09 +user,263,Elvin,Ayesha,77 +session,263,0,Firefox 43,16,2019-02-04 +session,263,1,Chrome 5,57,2017-03-26 +session,263,2,Firefox 49,66,2017-08-18 +session,263,3,Chrome 3,103,2017-12-06 +user,264,Stanton,Margareta,11 +session,264,0,Firefox 19,30,2018-12-28 +session,264,1,Internet Explorer 16,91,2018-06-03 +session,264,2,Safari 16,107,2017-08-17 +session,264,3,Firefox 4,6,2016-07-11 +session,264,4,Firefox 12,13,2017-05-22 +session,264,5,Chrome 20,38,2017-02-04 +session,264,6,Chrome 2,41,2016-12-18 +user,265,Delora,Porter,44 +session,265,0,Chrome 18,72,2018-08-27 +session,265,1,Firefox 45,18,2016-11-08 +session,265,2,Chrome 7,25,2018-03-15 +session,265,3,Chrome 27,41,2018-11-19 +session,265,4,Safari 30,15,2018-08-26 +session,265,5,Internet Explorer 7,81,2018-11-05 +session,265,6,Internet Explorer 3,26,2016-06-06 +session,265,7,Chrome 31,66,2018-02-21 +session,265,8,Firefox 6,114,2016-09-21 +session,265,9,Chrome 2,101,2018-03-06 +user,266,Jene,Margart,37 +session,266,0,Chrome 41,33,2017-07-19 +session,266,1,Safari 48,103,2017-09-15 +session,266,2,Safari 11,70,2018-08-23 +session,266,3,Safari 31,28,2017-06-23 +user,267,Vertie,Rob,83 +session,267,0,Safari 50,113,2017-12-05 +session,267,1,Chrome 26,22,2016-07-27 +session,267,2,Firefox 34,114,2017-07-18 +session,267,3,Chrome 18,56,2017-11-09 +user,268,Jude,Rowena,47 +session,268,0,Internet Explorer 20,51,2018-05-05 +session,268,1,Firefox 36,14,2017-05-19 +session,268,2,Firefox 41,87,2018-10-21 +session,268,3,Safari 31,3,2017-08-14 +session,268,4,Safari 29,13,2016-08-06 +session,268,5,Firefox 7,31,2017-07-10 +session,268,6,Firefox 9,77,2017-12-28 +user,269,Sachiko,Marlys,68 +session,269,0,Chrome 28,61,2017-02-20 +session,269,1,Firefox 37,2,2016-08-18 +user,270,Walker,Qiana,23 +session,270,0,Firefox 49,13,2017-04-11 +session,270,1,Safari 42,114,2017-05-15 +session,270,2,Firefox 23,84,2017-05-23 +session,270,3,Chrome 23,67,2018-01-01 +user,271,Matilda,Anastacia,58 +session,271,0,Safari 26,79,2016-06-27 +session,271,1,Safari 8,89,2016-05-30 +session,271,2,Firefox 32,97,2018-10-25 +session,271,3,Firefox 11,87,2017-01-25 +session,271,4,Chrome 27,99,2016-08-27 +session,271,5,Chrome 2,111,2017-11-25 +session,271,6,Safari 37,116,2017-05-04 +user,272,Cory,Freda,87 +session,272,0,Internet Explorer 2,85,2018-01-26 +session,272,1,Safari 10,112,2019-01-11 +session,272,2,Internet Explorer 43,33,2018-10-13 +session,272,3,Internet Explorer 30,89,2019-02-09 +session,272,4,Chrome 25,96,2016-10-14 +session,272,5,Internet Explorer 27,116,2018-07-08 +session,272,6,Chrome 1,37,2019-02-03 +session,272,7,Internet Explorer 41,13,2017-12-19 +session,272,8,Firefox 33,71,2017-03-26 +user,273,Carlene,Alexis,49 +session,273,0,Internet Explorer 11,13,2018-08-30 +user,274,Milagros,Loreta,35 +session,274,0,Internet Explorer 4,40,2018-06-20 +session,274,1,Internet Explorer 12,114,2018-02-04 +session,274,2,Internet Explorer 5,101,2017-12-05 +session,274,3,Firefox 42,89,2016-12-12 +session,274,4,Firefox 4,94,2017-07-04 +user,275,Leonardo,Antonette,95 +session,275,0,Internet Explorer 47,94,2018-02-01 +session,275,1,Firefox 3,53,2016-08-12 +session,275,2,Safari 24,42,2018-08-08 +session,275,3,Safari 9,32,2016-10-11 +session,275,4,Safari 24,80,2016-09-22 +session,275,5,Chrome 33,31,2016-08-02 +session,275,6,Chrome 29,59,2017-11-01 +session,275,7,Firefox 25,65,2016-09-17 +user,276,Alyce,Susana,69 +session,276,0,Chrome 42,119,2016-11-28 +session,276,1,Chrome 1,75,2016-12-04 +session,276,2,Chrome 29,65,2018-10-04 +user,277,Miquel,Tori,99 +session,277,0,Chrome 34,47,2018-04-05 +session,277,1,Firefox 9,85,2017-09-06 +session,277,2,Safari 47,59,2017-02-05 +user,278,Ming,Rachelle,49 +session,278,0,Safari 43,9,2019-01-08 +user,279,Sonya,Rubie,6 +session,279,0,Safari 13,76,2018-03-08 +session,279,1,Firefox 1,32,2016-10-12 +session,279,2,Firefox 11,74,2017-04-02 +session,279,3,Safari 24,79,2016-10-27 +session,279,4,Internet Explorer 42,68,2018-05-02 +session,279,5,Safari 16,42,2016-12-26 +session,279,6,Safari 40,32,2018-12-16 +session,279,7,Safari 24,36,2016-06-13 +user,280,Leticia,Elana,20 +session,280,0,Safari 39,58,2017-11-23 +session,280,1,Internet Explorer 1,17,2016-09-12 +session,280,2,Firefox 48,0,2017-05-19 +session,280,3,Chrome 24,78,2017-03-05 +session,280,4,Internet Explorer 7,9,2016-07-02 +session,280,5,Chrome 19,118,2017-05-21 +session,280,6,Firefox 46,110,2017-12-06 +session,280,7,Chrome 38,93,2018-05-06 +user,281,Geoffrey,Leif,76 +session,281,0,Internet Explorer 19,109,2018-09-11 +session,281,1,Chrome 19,60,2017-12-21 +session,281,2,Internet Explorer 18,60,2018-12-28 +session,281,3,Internet Explorer 29,35,2018-07-24 +session,281,4,Internet Explorer 30,86,2016-08-21 +user,282,Perry,Shila,49 +session,282,0,Safari 44,56,2017-09-23 +session,282,1,Firefox 31,62,2019-01-24 +session,282,2,Chrome 13,1,2018-09-11 +session,282,3,Chrome 38,16,2018-02-28 +session,282,4,Chrome 31,56,2017-03-19 +session,282,5,Firefox 3,70,2018-02-21 +session,282,6,Safari 47,58,2017-05-04 +session,282,7,Safari 45,73,2017-02-06 +session,282,8,Internet Explorer 46,94,2018-03-15 +session,282,9,Safari 50,89,2017-11-25 +user,283,Johnathon,Kimberlee,26 +session,283,0,Firefox 5,19,2017-05-22 +session,283,1,Internet Explorer 47,89,2017-08-27 +session,283,2,Internet Explorer 6,118,2018-11-28 +session,283,3,Internet Explorer 17,44,2017-01-06 +session,283,4,Firefox 24,92,2017-07-16 +session,283,5,Internet Explorer 3,106,2018-11-28 +session,283,6,Internet Explorer 4,45,2018-07-25 +session,283,7,Chrome 29,94,2017-06-18 +session,283,8,Chrome 44,109,2016-12-19 +user,284,Shanti,Derrick,52 +session,284,0,Chrome 43,17,2017-02-01 +session,284,1,Internet Explorer 33,17,2018-07-30 +session,284,2,Firefox 7,22,2018-11-12 +session,284,3,Internet Explorer 36,58,2017-11-08 +session,284,4,Firefox 10,42,2017-02-14 +session,284,5,Internet Explorer 41,73,2018-06-13 +session,284,6,Chrome 5,31,2018-10-25 +session,284,7,Safari 45,70,2019-01-10 +session,284,8,Firefox 12,19,2017-12-11 +user,285,Peggy,Wynona,98 +session,285,0,Safari 2,66,2016-08-24 +session,285,1,Chrome 36,20,2018-07-21 +session,285,2,Chrome 37,1,2017-09-09 +session,285,3,Chrome 17,61,2017-05-04 +session,285,4,Safari 3,28,2018-07-08 +session,285,5,Firefox 31,92,2018-12-25 +session,285,6,Firefox 11,56,2017-04-25 +session,285,7,Safari 6,100,2018-08-24 +user,286,Mable,Nikia,90 +session,286,0,Firefox 36,82,2016-07-07 +session,286,1,Internet Explorer 24,5,2018-01-28 +session,286,2,Firefox 47,115,2017-02-16 +session,286,3,Chrome 30,92,2019-01-16 +session,286,4,Safari 49,106,2018-12-21 +user,287,Gaston,Carter,43 +session,287,0,Safari 33,67,2016-08-16 +session,287,1,Firefox 7,27,2018-05-17 +session,287,2,Chrome 41,54,2018-07-10 +user,288,Anderson,Terri,39 +session,288,0,Firefox 24,0,2017-01-26 +session,288,1,Internet Explorer 50,24,2018-08-09 +session,288,2,Internet Explorer 5,105,2018-06-11 +session,288,3,Safari 41,118,2018-03-16 +session,288,4,Safari 8,106,2017-02-16 +user,289,Mike,Debbie,10 +session,289,0,Chrome 12,3,2016-09-01 +session,289,1,Safari 14,112,2017-10-25 +session,289,2,Safari 12,107,2018-09-29 +session,289,3,Safari 22,84,2017-08-11 +session,289,4,Firefox 15,84,2016-07-17 +session,289,5,Safari 43,11,2017-05-25 +session,289,6,Chrome 18,104,2017-04-24 +session,289,7,Internet Explorer 12,62,2018-07-17 +session,289,8,Internet Explorer 13,33,2016-07-23 +session,289,9,Firefox 29,50,2017-04-17 +user,290,Arron,Carlotta,45 +session,290,0,Safari 10,3,2016-08-20 +session,290,1,Internet Explorer 1,108,2018-03-18 +session,290,2,Internet Explorer 29,105,2016-09-13 +user,291,Marcel,Abdul,51 +session,291,0,Internet Explorer 44,34,2018-11-17 +session,291,1,Internet Explorer 9,35,2016-09-30 +session,291,2,Chrome 27,73,2017-05-24 +session,291,3,Chrome 31,37,2018-02-06 +session,291,4,Firefox 38,85,2016-11-06 +session,291,5,Chrome 23,43,2019-01-17 +session,291,6,Firefox 13,103,2017-01-13 +user,292,Vickie,Lakendra,93 +session,292,0,Chrome 37,32,2018-10-14 +session,292,1,Safari 29,115,2017-04-22 +session,292,2,Safari 18,119,2018-09-23 +user,293,Dino,Shemika,16 +session,293,0,Internet Explorer 23,92,2016-12-27 +session,293,1,Safari 29,101,2018-06-25 +session,293,2,Internet Explorer 4,8,2016-12-17 +session,293,3,Firefox 36,10,2016-10-14 +user,294,Cornelius,Tisa,20 +session,294,0,Safari 41,82,2016-09-08 +session,294,1,Safari 21,22,2017-01-24 +user,295,Naoma,Harrison,83 +session,295,0,Internet Explorer 21,91,2016-07-15 +session,295,1,Internet Explorer 30,87,2016-07-16 +session,295,2,Internet Explorer 26,47,2017-10-30 +session,295,3,Firefox 28,36,2017-01-29 +session,295,4,Safari 45,80,2017-03-24 +session,295,5,Chrome 35,96,2018-04-26 +user,296,Crysta,Gwen,52 +session,296,0,Internet Explorer 47,92,2017-01-02 +session,296,1,Safari 9,72,2017-12-31 +session,296,2,Firefox 40,35,2017-03-24 +session,296,3,Chrome 24,77,2017-12-26 +session,296,4,Firefox 42,101,2018-06-22 +session,296,5,Safari 39,45,2018-02-19 +session,296,6,Firefox 36,61,2018-06-05 +session,296,7,Internet Explorer 1,70,2017-11-03 +session,296,8,Safari 25,60,2016-11-03 +session,296,9,Chrome 40,36,2018-08-07 +user,297,Liberty,Billie,74 +session,297,0,Internet Explorer 39,103,2016-12-31 +session,297,1,Firefox 28,0,2018-12-25 +session,297,2,Chrome 37,77,2017-07-08 +session,297,3,Firefox 16,48,2017-12-14 +session,297,4,Safari 23,22,2018-06-25 +session,297,5,Safari 44,21,2018-09-19 +session,297,6,Internet Explorer 12,52,2017-04-24 +session,297,7,Firefox 6,46,2017-05-25 +session,297,8,Firefox 12,57,2016-11-24 +user,298,Demetria,Daysi,42 +session,298,0,Chrome 44,27,2016-07-20 +session,298,1,Chrome 50,58,2017-04-13 +session,298,2,Safari 40,90,2019-01-17 +session,298,3,Internet Explorer 44,96,2018-05-27 +user,299,Lady,Gricelda,8 +session,299,0,Firefox 28,88,2017-08-16 +session,299,1,Chrome 11,14,2017-11-17 +session,299,2,Chrome 25,10,2018-09-25 +session,299,3,Safari 17,83,2017-10-21 +session,299,4,Safari 16,81,2017-07-05 +session,299,5,Chrome 26,40,2016-10-17 +session,299,6,Chrome 3,103,2018-03-04 +session,299,7,Chrome 24,70,2017-08-06 +user,300,Sulema,Daryl,99 +session,300,0,Internet Explorer 39,35,2018-01-16 +session,300,1,Safari 1,5,2016-10-22 +session,300,2,Firefox 10,61,2017-04-03 +session,300,3,Safari 37,71,2017-08-03 +user,301,Rachael,Lauryn,78 +session,301,0,Safari 7,51,2017-12-17 +user,302,Margarito,Arden,36 +session,302,0,Internet Explorer 33,23,2018-04-26 +session,302,1,Firefox 40,83,2018-10-06 +session,302,2,Chrome 5,118,2018-10-22 +session,302,3,Safari 25,17,2019-01-30 +session,302,4,Internet Explorer 34,95,2017-03-20 +session,302,5,Chrome 4,31,2018-11-06 +session,302,6,Internet Explorer 9,34,2017-04-24 +session,302,7,Firefox 49,68,2018-08-22 +session,302,8,Internet Explorer 35,83,2017-08-28 +user,303,Cletus,Jamel,28 +session,303,0,Chrome 18,37,2017-05-01 +session,303,1,Safari 38,30,2017-08-05 +session,303,2,Chrome 29,62,2016-08-08 +session,303,3,Safari 7,84,2016-11-14 +session,303,4,Internet Explorer 31,113,2016-07-24 +session,303,5,Firefox 6,90,2016-10-14 +session,303,6,Firefox 22,47,2018-12-25 +session,303,7,Firefox 41,15,2016-06-10 +session,303,8,Internet Explorer 50,3,2017-08-07 +user,304,Roscoe,Greg,28 +session,304,0,Firefox 28,99,2019-02-09 +session,304,1,Safari 29,49,2018-01-27 +session,304,2,Safari 9,61,2018-06-22 +session,304,3,Chrome 45,86,2018-05-20 +session,304,4,Safari 28,66,2017-07-06 +session,304,5,Chrome 32,92,2017-07-07 +session,304,6,Safari 26,25,2017-07-24 +user,305,Cody,Henry,36 +session,305,0,Safari 10,21,2016-11-05 +session,305,1,Internet Explorer 2,11,2016-05-23 +session,305,2,Chrome 5,1,2016-10-02 +user,306,Reba,Delena,33 +session,306,0,Chrome 36,37,2017-06-03 +session,306,1,Firefox 39,56,2018-10-26 +session,306,2,Chrome 34,108,2017-07-24 +session,306,3,Firefox 21,67,2018-07-11 +session,306,4,Internet Explorer 5,59,2018-01-29 +session,306,5,Firefox 43,102,2017-08-04 +session,306,6,Chrome 45,74,2017-03-20 +session,306,7,Internet Explorer 39,77,2017-07-04 +session,306,8,Internet Explorer 33,79,2017-05-31 +user,307,Moshe,Nora,80 +session,307,0,Safari 4,32,2016-06-10 +session,307,1,Safari 19,11,2018-05-18 +user,308,Lai,Christie,98 +session,308,0,Chrome 47,38,2017-11-10 +session,308,1,Chrome 10,81,2016-09-12 +session,308,2,Firefox 28,87,2018-08-18 +user,309,Anabel,Shera,99 +session,309,0,Internet Explorer 16,34,2017-02-25 +session,309,1,Firefox 23,57,2016-07-06 +session,309,2,Firefox 34,37,2018-03-03 +session,309,3,Internet Explorer 12,107,2017-09-20 +session,309,4,Internet Explorer 36,22,2017-10-28 +user,310,Willie,Heidi,90 +session,310,0,Chrome 42,76,2017-08-25 +session,310,1,Internet Explorer 20,112,2018-12-01 +session,310,2,Safari 36,117,2018-11-15 +session,310,3,Firefox 24,59,2016-09-13 +user,311,Romeo,Alison,37 +session,311,0,Safari 33,92,2017-02-25 +session,311,1,Firefox 25,109,2017-09-04 +session,311,2,Chrome 37,77,2016-12-05 +session,311,3,Firefox 35,31,2017-05-23 +session,311,4,Internet Explorer 46,1,2017-11-11 +session,311,5,Safari 19,27,2017-05-24 +user,312,Cary,Kasey,64 +session,312,0,Internet Explorer 13,11,2017-01-05 +session,312,1,Firefox 27,3,2016-11-22 +session,312,2,Safari 38,107,2017-08-13 +session,312,3,Firefox 12,37,2016-06-16 +session,312,4,Internet Explorer 50,51,2016-06-26 +user,313,Whitney,Yolando,50 +session,313,0,Safari 49,80,2018-04-23 +session,313,1,Safari 48,86,2018-07-23 +session,313,2,Safari 8,57,2018-10-03 +session,313,3,Internet Explorer 20,72,2016-09-03 +user,314,Juan,Kelli,56 +session,314,0,Safari 50,30,2016-11-04 +session,314,1,Firefox 2,43,2018-06-16 +session,314,2,Internet Explorer 33,8,2017-06-21 +user,315,Brandy,Beryl,9 +session,315,0,Internet Explorer 47,14,2017-07-30 +session,315,1,Safari 42,87,2017-07-31 +session,315,2,Firefox 25,42,2017-10-17 +session,315,3,Internet Explorer 50,1,2018-04-06 +user,316,Walker,Susanna,58 +session,316,0,Firefox 4,14,2017-04-09 +session,316,1,Firefox 35,75,2018-11-14 +session,316,2,Chrome 34,51,2018-02-11 +session,316,3,Safari 20,20,2019-01-25 +session,316,4,Chrome 50,5,2016-12-15 +session,316,5,Internet Explorer 9,37,2017-07-24 +session,316,6,Internet Explorer 30,39,2018-02-05 +user,317,Guy,Bette,96 +session,317,0,Chrome 11,23,2017-04-26 +user,318,Loyce,Barb,49 +session,318,0,Internet Explorer 2,81,2018-10-16 +session,318,1,Safari 34,51,2018-05-01 +session,318,2,Safari 48,107,2017-11-19 +session,318,3,Safari 13,2,2017-02-10 +session,318,4,Safari 18,20,2016-09-24 +session,318,5,Chrome 7,100,2017-06-07 +session,318,6,Chrome 48,60,2017-11-14 +session,318,7,Safari 15,77,2017-07-02 +session,318,8,Firefox 49,99,2018-01-06 +session,318,9,Firefox 33,75,2017-03-31 +user,319,Marilee,Queenie,44 +session,319,0,Chrome 41,59,2016-08-26 +session,319,1,Safari 3,10,2017-05-31 +session,319,2,Chrome 7,101,2017-04-17 +session,319,3,Safari 36,24,2017-04-13 +session,319,4,Chrome 39,10,2017-02-13 +session,319,5,Chrome 28,19,2016-06-19 +session,319,6,Internet Explorer 27,90,2017-02-17 +session,319,7,Chrome 42,49,2017-12-06 +user,320,Tangela,Salley,32 +session,320,0,Chrome 28,115,2017-02-03 +session,320,1,Firefox 28,51,2019-01-29 +session,320,2,Internet Explorer 46,7,2016-11-12 +session,320,3,Firefox 46,59,2016-08-06 +session,320,4,Safari 4,83,2017-08-27 +session,320,5,Firefox 9,3,2018-08-08 +session,320,6,Internet Explorer 35,109,2018-04-01 +session,320,7,Internet Explorer 1,1,2018-09-13 +session,320,8,Internet Explorer 10,107,2017-06-17 +session,320,9,Internet Explorer 28,116,2018-03-22 +user,321,Ina,Alia,42 +session,321,0,Internet Explorer 44,118,2017-11-21 +session,321,1,Safari 45,35,2018-01-08 +session,321,2,Safari 31,94,2017-06-04 +session,321,3,Internet Explorer 21,93,2018-04-08 +user,322,Randal,Yen,31 +session,322,0,Firefox 26,97,2017-03-28 +session,322,1,Firefox 21,41,2018-10-01 +session,322,2,Internet Explorer 25,98,2017-11-19 +session,322,3,Firefox 42,89,2018-06-10 +user,323,Reuben,Shanta,59 +session,323,0,Firefox 32,87,2017-11-25 +session,323,1,Firefox 11,98,2016-10-11 +session,323,2,Safari 37,72,2017-02-11 +session,323,3,Internet Explorer 14,0,2017-04-29 +session,323,4,Internet Explorer 1,67,2017-12-22 +session,323,5,Safari 30,22,2016-11-02 +session,323,6,Chrome 38,27,2018-05-27 +session,323,7,Internet Explorer 21,21,2017-01-24 +session,323,8,Chrome 13,27,2016-12-18 +user,324,Waneta,Clarice,66 +session,324,0,Internet Explorer 42,95,2018-01-06 +session,324,1,Safari 30,54,2017-02-02 +session,324,2,Internet Explorer 43,81,2016-12-25 +session,324,3,Firefox 42,93,2017-07-14 +session,324,4,Internet Explorer 43,15,2017-04-20 +session,324,5,Internet Explorer 5,46,2017-06-01 +user,325,Shay,Shanika,99 +session,325,0,Firefox 28,57,2018-01-04 +session,325,1,Safari 40,45,2018-02-14 +session,325,2,Chrome 14,56,2018-11-25 +session,325,3,Chrome 32,81,2017-03-03 +session,325,4,Internet Explorer 16,68,2016-08-28 +session,325,5,Internet Explorer 1,1,2016-08-21 +session,325,6,Firefox 35,97,2018-11-05 +session,325,7,Firefox 37,119,2017-04-02 +session,325,8,Internet Explorer 11,5,2016-11-20 +session,325,9,Firefox 24,117,2018-01-11 +user,326,Ariel,Hassan,77 +session,326,0,Internet Explorer 39,75,2016-11-24 +session,326,1,Safari 22,101,2018-07-28 +user,327,Kala,Paula,91 +session,327,0,Internet Explorer 37,58,2016-07-16 +session,327,1,Firefox 21,92,2017-05-11 +session,327,2,Internet Explorer 31,26,2016-12-24 +session,327,3,Safari 6,49,2017-10-24 +session,327,4,Chrome 44,62,2016-07-26 +session,327,5,Internet Explorer 26,1,2018-03-20 +session,327,6,Internet Explorer 43,85,2017-02-19 +user,328,Jere,Olive,24 +session,328,0,Chrome 26,47,2016-06-22 +session,328,1,Chrome 36,115,2018-05-27 +session,328,2,Safari 17,5,2016-08-03 +session,328,3,Chrome 30,51,2017-06-30 +session,328,4,Firefox 45,1,2016-08-28 +user,329,Nereida,Ryan,95 +session,329,0,Firefox 40,105,2017-03-20 +session,329,1,Safari 49,93,2017-12-03 +session,329,2,Chrome 4,108,2018-01-31 +session,329,3,Firefox 44,24,2016-06-04 +session,329,4,Firefox 9,108,2018-03-16 +user,330,Ebonie,Cherise,32 +session,330,0,Firefox 12,33,2018-06-06 +session,330,1,Chrome 11,49,2018-05-13 +session,330,2,Internet Explorer 11,54,2017-10-04 +user,331,Lourdes,William,74 +session,331,0,Chrome 29,69,2018-08-07 +session,331,1,Safari 49,15,2018-05-25 +session,331,2,Safari 27,3,2016-05-29 +session,331,3,Safari 37,8,2016-07-25 +user,332,Carmine,Christel,88 +session,332,0,Firefox 47,71,2016-07-11 +session,332,1,Chrome 16,44,2018-04-09 +session,332,2,Safari 48,117,2019-02-09 +session,332,3,Internet Explorer 46,19,2018-07-19 +session,332,4,Chrome 38,58,2017-09-29 +session,332,5,Firefox 23,4,2016-07-23 +session,332,6,Internet Explorer 11,24,2017-08-09 +session,332,7,Firefox 37,5,2016-08-31 +user,333,Waylon,Loni,10 +session,333,0,Safari 18,82,2018-02-12 +session,333,1,Chrome 46,60,2017-08-16 +session,333,2,Internet Explorer 23,14,2018-08-14 +session,333,3,Firefox 21,9,2018-09-02 +session,333,4,Firefox 21,40,2018-05-18 +user,334,Lamar,Antonio,96 +session,334,0,Firefox 42,72,2017-05-30 +session,334,1,Internet Explorer 4,99,2018-03-27 +session,334,2,Firefox 27,39,2018-04-01 +session,334,3,Internet Explorer 37,47,2016-07-18 +session,334,4,Firefox 39,112,2017-02-05 +session,334,5,Internet Explorer 44,31,2019-01-19 +session,334,6,Chrome 45,35,2017-06-18 +user,335,Eustolia,Jackelyn,94 +session,335,0,Chrome 21,38,2016-11-04 +user,336,Man,Willian,4 +session,336,0,Safari 50,107,2016-07-21 +session,336,1,Safari 8,69,2018-07-08 +session,336,2,Safari 5,34,2017-03-20 +user,337,Shanti,Rosalva,37 +session,337,0,Firefox 11,117,2016-07-28 +session,337,1,Internet Explorer 34,2,2016-09-02 +session,337,2,Internet Explorer 20,84,2018-09-13 +session,337,3,Chrome 38,13,2017-08-21 +session,337,4,Internet Explorer 9,117,2017-09-24 +session,337,5,Firefox 13,43,2017-11-16 +session,337,6,Firefox 50,118,2017-08-05 +session,337,7,Chrome 46,6,2018-09-29 +session,337,8,Firefox 10,0,2017-01-26 +user,338,Sylvie,Eloisa,46 +session,338,0,Firefox 6,105,2016-12-05 +session,338,1,Safari 28,117,2018-09-01 +session,338,2,Safari 23,45,2018-03-09 +session,338,3,Internet Explorer 32,67,2018-08-31 +session,338,4,Internet Explorer 1,37,2016-11-17 +session,338,5,Internet Explorer 49,41,2017-07-07 +session,338,6,Safari 48,52,2017-03-14 +session,338,7,Safari 29,94,2018-10-08 +session,338,8,Internet Explorer 50,62,2018-10-02 +user,339,Silvana,Palma,16 +session,339,0,Firefox 47,93,2016-10-15 +session,339,1,Firefox 17,27,2017-03-03 +session,339,2,Internet Explorer 49,13,2018-11-19 +session,339,3,Internet Explorer 40,53,2017-12-19 +session,339,4,Internet Explorer 26,111,2016-09-01 +session,339,5,Firefox 16,104,2018-12-06 +session,339,6,Internet Explorer 3,23,2016-11-24 +user,340,Lulu,Jordon,63 +session,340,0,Chrome 48,119,2016-06-16 +session,340,1,Chrome 48,104,2017-12-11 +session,340,2,Firefox 36,27,2016-07-22 +session,340,3,Safari 9,81,2018-04-30 +session,340,4,Firefox 2,65,2017-01-31 +session,340,5,Internet Explorer 8,77,2018-05-12 +session,340,6,Internet Explorer 49,7,2017-05-03 +session,340,7,Firefox 26,38,2018-01-14 +user,341,Cecil,Joseph,33 +session,341,0,Chrome 10,21,2017-03-29 +session,341,1,Firefox 8,104,2017-09-16 +session,341,2,Chrome 3,4,2017-08-11 +session,341,3,Firefox 2,70,2018-04-26 +session,341,4,Safari 24,7,2018-03-12 +session,341,5,Chrome 33,64,2017-10-03 +user,342,Yajaira,Dante,29 +session,342,0,Safari 47,23,2017-10-09 +session,342,1,Firefox 21,88,2017-01-24 +session,342,2,Firefox 25,50,2018-10-09 +session,342,3,Chrome 42,94,2018-11-19 +session,342,4,Safari 36,62,2016-07-18 +session,342,5,Firefox 2,91,2016-10-12 +session,342,6,Internet Explorer 22,85,2018-03-28 +session,342,7,Chrome 50,13,2016-11-27 +session,342,8,Firefox 44,24,2016-09-20 +user,343,Jennell,Brain,89 +session,343,0,Safari 46,89,2017-06-23 +session,343,1,Internet Explorer 2,105,2018-02-18 +session,343,2,Internet Explorer 29,8,2017-11-24 +session,343,3,Internet Explorer 38,107,2017-02-09 +session,343,4,Internet Explorer 24,101,2017-07-27 +session,343,5,Internet Explorer 40,83,2018-11-09 +session,343,6,Safari 35,30,2016-09-04 +session,343,7,Firefox 32,57,2017-03-13 +session,343,8,Chrome 25,11,2018-03-31 +session,343,9,Safari 41,24,2018-11-21 +user,344,Tiana,Milford,23 +session,344,0,Internet Explorer 30,51,2018-09-25 +session,344,1,Safari 36,20,2017-09-12 +session,344,2,Firefox 27,7,2016-06-10 +session,344,3,Safari 14,88,2018-08-01 +session,344,4,Internet Explorer 40,118,2018-02-13 +session,344,5,Chrome 2,41,2018-06-09 +session,344,6,Internet Explorer 9,52,2017-06-22 +session,344,7,Firefox 17,72,2018-12-03 +user,345,Cliff,Ethelyn,2 +session,345,0,Internet Explorer 43,116,2016-12-24 +session,345,1,Firefox 1,97,2018-07-11 +session,345,2,Safari 14,117,2019-02-02 +session,345,3,Internet Explorer 40,0,2018-08-06 +user,346,Pablo,Aaron,98 +session,346,0,Firefox 29,25,2018-06-07 +session,346,1,Internet Explorer 24,76,2018-10-02 +session,346,2,Safari 47,20,2018-08-03 +session,346,3,Chrome 4,79,2016-05-29 +session,346,4,Internet Explorer 40,50,2016-07-23 +session,346,5,Chrome 30,107,2017-11-26 +user,347,Benny,Angel,29 +session,347,0,Safari 2,20,2018-04-18 +session,347,1,Chrome 50,7,2018-09-16 +session,347,2,Internet Explorer 20,98,2016-12-09 +user,348,Kallie,Ignacia,23 +session,348,0,Chrome 24,39,2018-12-25 +session,348,1,Chrome 12,53,2018-10-16 +session,348,2,Chrome 22,49,2018-01-07 +session,348,3,Safari 5,50,2018-11-05 +session,348,4,Safari 40,110,2017-01-15 +session,348,5,Internet Explorer 50,19,2018-08-31 +session,348,6,Firefox 3,85,2018-07-02 +session,348,7,Firefox 25,108,2018-02-08 +user,349,Jerold,Justina,16 +session,349,0,Internet Explorer 47,1,2017-02-19 +session,349,1,Firefox 30,90,2017-12-19 +session,349,2,Firefox 10,36,2017-08-09 +session,349,3,Firefox 32,19,2017-08-05 +session,349,4,Internet Explorer 30,66,2018-04-04 +user,350,Latricia,Carolyn,21 +session,350,0,Safari 17,12,2018-01-24 +session,350,1,Chrome 31,43,2018-03-04 +session,350,2,Chrome 5,98,2017-04-12 +user,351,Kris,Odelia,58 +session,351,0,Safari 23,74,2018-09-20 +session,351,1,Firefox 36,81,2017-12-13 +session,351,2,Safari 23,116,2017-12-09 +session,351,3,Internet Explorer 19,118,2017-12-23 +session,351,4,Chrome 26,62,2017-01-20 +session,351,5,Firefox 10,116,2018-01-28 +session,351,6,Safari 46,31,2018-06-22 +session,351,7,Chrome 16,117,2018-02-21 +session,351,8,Chrome 40,92,2018-03-13 +session,351,9,Internet Explorer 13,32,2016-09-23 +user,352,Gilbert,Daisey,85 +session,352,0,Internet Explorer 11,36,2018-12-27 +session,352,1,Firefox 31,34,2017-01-01 +session,352,2,Safari 16,44,2017-08-17 +session,352,3,Safari 27,10,2019-01-31 +session,352,4,Firefox 47,114,2016-09-28 +session,352,5,Safari 47,69,2016-07-20 +session,352,6,Safari 45,89,2018-06-20 +session,352,7,Firefox 39,54,2018-11-12 +user,353,Ali,Paola,42 +session,353,0,Firefox 41,53,2018-08-13 +session,353,1,Firefox 33,11,2017-09-03 +session,353,2,Chrome 24,13,2019-01-31 +session,353,3,Chrome 17,18,2016-08-03 +session,353,4,Firefox 42,86,2018-07-11 +user,354,Debi,Socorro,41 +session,354,0,Internet Explorer 5,114,2017-02-26 +user,355,Cesar,Lorna,10 +session,355,0,Internet Explorer 2,7,2018-02-16 +session,355,1,Safari 44,87,2017-03-20 +session,355,2,Chrome 31,9,2017-03-13 +session,355,3,Internet Explorer 31,108,2018-02-08 +session,355,4,Chrome 33,22,2017-07-26 +user,356,Tyron,Keena,34 +session,356,0,Internet Explorer 41,28,2018-02-01 +session,356,1,Safari 42,39,2016-09-19 +session,356,2,Safari 10,75,2017-09-27 +session,356,3,Safari 10,66,2018-01-16 +session,356,4,Chrome 10,47,2016-10-10 +session,356,5,Internet Explorer 32,94,2017-04-29 +session,356,6,Firefox 3,33,2016-08-06 +session,356,7,Chrome 23,77,2017-03-17 +session,356,8,Safari 37,67,2016-12-31 +session,356,9,Firefox 28,43,2019-02-05 +user,357,Desmond,Paige,87 +session,357,0,Firefox 35,12,2018-10-27 +session,357,1,Chrome 50,99,2016-05-20 +session,357,2,Safari 12,11,2017-07-28 +session,357,3,Safari 25,47,2017-05-30 +session,357,4,Safari 24,97,2019-02-03 +session,357,5,Chrome 39,97,2018-09-04 +user,358,Ned,Chi,72 +session,358,0,Safari 46,54,2018-02-19 +user,359,Paulette,Jessika,95 +session,359,0,Safari 33,95,2016-05-30 +user,360,Sanjuanita,Luciano,67 +session,360,0,Firefox 43,88,2017-06-01 +session,360,1,Firefox 35,99,2018-11-05 +session,360,2,Chrome 20,32,2017-12-26 +session,360,3,Chrome 29,65,2017-11-20 +session,360,4,Firefox 43,119,2017-03-05 +session,360,5,Chrome 25,23,2018-12-09 +session,360,6,Chrome 32,47,2016-11-28 +user,361,Cordie,Marcia,63 +session,361,0,Internet Explorer 38,41,2016-07-26 +session,361,1,Internet Explorer 23,78,2017-06-24 +session,361,2,Chrome 38,29,2018-04-12 +session,361,3,Chrome 37,100,2018-01-16 +session,361,4,Internet Explorer 9,92,2018-07-17 +session,361,5,Chrome 38,47,2016-08-25 +user,362,Rosaline,Allen,81 +session,362,0,Internet Explorer 12,38,2017-03-09 +session,362,1,Safari 2,37,2017-12-01 +session,362,2,Internet Explorer 43,29,2017-11-01 +session,362,3,Chrome 13,28,2018-02-20 +session,362,4,Chrome 34,88,2017-05-31 +user,363,Rey,Victoria,2 +session,363,0,Firefox 50,79,2017-08-29 +session,363,1,Safari 30,107,2018-03-31 +session,363,2,Firefox 47,79,2018-08-31 +session,363,3,Firefox 9,65,2017-08-31 +user,364,Emmett,Sherice,90 +session,364,0,Firefox 4,4,2018-02-08 +session,364,1,Safari 46,90,2017-01-11 +session,364,2,Internet Explorer 28,110,2019-01-19 +session,364,3,Chrome 3,59,2018-01-03 +session,364,4,Safari 43,30,2018-11-17 +session,364,5,Chrome 10,80,2018-05-05 +session,364,6,Chrome 24,30,2018-02-23 +session,364,7,Firefox 18,34,2018-09-06 +session,364,8,Internet Explorer 16,52,2017-01-06 +user,365,Sulema,Refugio,34 +session,365,0,Firefox 12,77,2018-12-08 +session,365,1,Internet Explorer 3,12,2017-04-25 +session,365,2,Internet Explorer 42,95,2016-07-17 +user,366,Jefferey,Lamonica,15 +session,366,0,Safari 7,73,2018-01-08 +session,366,1,Chrome 41,66,2017-03-29 +session,366,2,Internet Explorer 36,13,2017-03-29 +user,367,Jimmy,Hanh,87 +session,367,0,Firefox 40,47,2017-07-25 +session,367,1,Safari 19,87,2018-12-15 +session,367,2,Firefox 41,18,2018-11-22 +session,367,3,Firefox 3,79,2018-12-16 +session,367,4,Firefox 21,109,2016-12-25 +session,367,5,Firefox 14,65,2018-07-23 +session,367,6,Safari 15,9,2017-12-30 +user,368,Luanna,Joel,28 +session,368,0,Internet Explorer 26,112,2018-10-01 +session,368,1,Chrome 5,99,2017-01-09 +session,368,2,Safari 4,100,2018-06-23 +session,368,3,Internet Explorer 36,30,2017-07-20 +session,368,4,Firefox 30,2,2016-05-26 +session,368,5,Chrome 21,110,2018-03-28 +session,368,6,Internet Explorer 22,62,2018-07-24 +user,369,Domenic,Suellen,8 +session,369,0,Safari 49,12,2017-12-14 +session,369,1,Firefox 44,38,2017-11-20 +session,369,2,Safari 30,64,2017-12-28 +user,370,Mathew,Fabiola,69 +session,370,0,Chrome 3,46,2017-02-24 +session,370,1,Safari 4,11,2017-03-03 +session,370,2,Chrome 24,70,2018-07-20 +session,370,3,Firefox 30,65,2018-10-28 +session,370,4,Internet Explorer 47,102,2018-07-10 +session,370,5,Internet Explorer 49,63,2019-01-17 +user,371,Willian,Verdell,91 +session,371,0,Safari 38,101,2018-02-27 +session,371,1,Safari 24,0,2018-05-30 +session,371,2,Internet Explorer 48,54,2018-02-14 +session,371,3,Internet Explorer 44,74,2016-09-14 +session,371,4,Firefox 49,55,2018-05-05 +session,371,5,Chrome 9,85,2017-11-29 +session,371,6,Firefox 12,108,2016-08-19 +session,371,7,Safari 40,102,2019-01-23 +session,371,8,Internet Explorer 25,22,2016-11-27 +session,371,9,Chrome 44,92,2018-04-14 +user,372,Dona,Irmgard,80 +session,372,0,Firefox 9,21,2016-08-08 +session,372,1,Internet Explorer 10,101,2019-01-12 +user,373,Twila,Ivana,83 +session,373,0,Chrome 38,103,2016-08-31 +session,373,1,Internet Explorer 38,101,2018-11-11 +user,374,Shondra,Margaret,87 +session,374,0,Chrome 42,86,2017-12-29 +session,374,1,Chrome 34,10,2018-11-27 +session,374,2,Firefox 41,17,2018-05-21 +session,374,3,Chrome 41,18,2018-11-13 +user,375,Brunilda,Eugene,26 +session,375,0,Internet Explorer 48,8,2016-11-09 +session,375,1,Firefox 48,92,2018-07-14 +session,375,2,Internet Explorer 45,23,2017-02-04 +session,375,3,Firefox 25,32,2017-01-20 +user,376,Valentine,Flora,90 +session,376,0,Chrome 11,103,2018-05-16 +user,377,Chuck,Tia,40 +session,377,0,Internet Explorer 2,94,2019-01-28 +session,377,1,Safari 16,45,2018-09-01 +session,377,2,Internet Explorer 7,79,2017-04-11 +session,377,3,Safari 14,103,2018-01-26 +session,377,4,Safari 3,47,2017-07-17 +session,377,5,Internet Explorer 25,45,2017-02-16 +session,377,6,Internet Explorer 25,108,2016-09-22 +user,378,Adaline,Carey,52 +session,378,0,Chrome 14,118,2018-11-13 +session,378,1,Safari 26,56,2017-11-24 +user,379,Nicolas,Seth,38 +session,379,0,Safari 7,3,2017-09-06 +session,379,1,Firefox 20,108,2017-12-17 +session,379,2,Chrome 1,10,2017-10-20 +session,379,3,Firefox 26,102,2017-03-09 +session,379,4,Safari 10,8,2018-07-29 +user,380,Antoine,Davis,23 +session,380,0,Chrome 10,100,2017-03-01 +session,380,1,Internet Explorer 50,95,2018-08-06 +session,380,2,Firefox 22,106,2016-10-07 +session,380,3,Firefox 7,117,2017-04-16 +session,380,4,Firefox 34,108,2017-12-11 +session,380,5,Firefox 14,54,2018-04-27 +session,380,6,Firefox 7,15,2018-01-01 +session,380,7,Firefox 34,54,2017-08-20 +user,381,Lesley,Bronwyn,17 +session,381,0,Internet Explorer 9,5,2017-08-16 +session,381,1,Safari 49,23,2018-12-13 +session,381,2,Internet Explorer 45,94,2018-05-07 +session,381,3,Internet Explorer 25,10,2017-01-23 +session,381,4,Firefox 46,11,2017-03-31 +session,381,5,Internet Explorer 37,62,2016-06-23 +session,381,6,Chrome 2,6,2016-09-18 +session,381,7,Firefox 18,78,2018-04-28 +user,382,Christopher,Grant,69 +session,382,0,Chrome 21,17,2016-07-18 +session,382,1,Safari 5,9,2018-08-27 +session,382,2,Chrome 37,27,2018-05-06 +session,382,3,Chrome 17,110,2018-11-12 +session,382,4,Firefox 43,46,2017-05-02 +session,382,5,Firefox 10,14,2016-05-23 +session,382,6,Internet Explorer 37,96,2017-06-26 +session,382,7,Firefox 8,80,2017-04-17 +user,383,Vincent,Lashaun,28 +session,383,0,Chrome 49,92,2017-08-30 +session,383,1,Chrome 2,15,2018-08-24 +session,383,2,Firefox 11,59,2016-11-26 +session,383,3,Chrome 27,17,2018-04-15 +session,383,4,Chrome 8,85,2017-10-14 +session,383,5,Safari 25,87,2016-08-19 +session,383,6,Safari 28,21,2018-07-24 +user,384,Curt,Ying,52 +session,384,0,Chrome 34,19,2017-04-01 +session,384,1,Chrome 46,83,2018-08-21 +session,384,2,Firefox 11,6,2016-11-17 +session,384,3,Chrome 9,57,2018-06-19 +session,384,4,Internet Explorer 15,33,2016-11-11 +session,384,5,Internet Explorer 41,72,2016-06-10 +session,384,6,Chrome 20,24,2017-01-30 +session,384,7,Internet Explorer 4,60,2017-04-08 +session,384,8,Chrome 15,73,2016-05-27 +user,385,Donya,Cristopher,46 +session,385,0,Safari 5,110,2016-08-08 +session,385,1,Firefox 18,33,2016-10-13 +session,385,2,Safari 15,12,2017-08-26 +session,385,3,Firefox 36,11,2016-06-11 +user,386,Lula,Senaida,5 +session,386,0,Safari 12,95,2016-08-09 +session,386,1,Internet Explorer 3,52,2016-06-01 +session,386,2,Firefox 27,118,2017-01-23 +session,386,3,Safari 43,96,2018-05-30 +session,386,4,Internet Explorer 15,65,2018-06-01 +session,386,5,Chrome 50,40,2018-01-17 +session,386,6,Safari 10,95,2018-07-17 +session,386,7,Safari 8,4,2017-05-22 +session,386,8,Safari 3,11,2017-08-15 +session,386,9,Firefox 10,82,2016-07-09 +user,387,Roger,Armando,14 +session,387,0,Chrome 35,27,2017-12-03 +session,387,1,Safari 8,104,2018-04-23 +user,388,Ula,Demetria,46 +session,388,0,Internet Explorer 30,26,2018-07-18 +session,388,1,Chrome 26,56,2018-06-22 +session,388,2,Chrome 21,38,2018-08-15 +session,388,3,Safari 24,7,2016-06-20 +session,388,4,Chrome 8,50,2018-09-19 +user,389,Suzanna,Ria,9 +session,389,0,Internet Explorer 32,74,2016-12-13 +session,389,1,Firefox 36,72,2018-09-21 +session,389,2,Safari 29,14,2016-05-25 +session,389,3,Safari 35,9,2016-06-02 +user,390,Lee,Naomi,5 +session,390,0,Chrome 22,23,2018-06-02 +session,390,1,Internet Explorer 8,42,2016-08-09 +session,390,2,Firefox 42,56,2017-01-26 +session,390,3,Internet Explorer 18,14,2018-09-27 +session,390,4,Firefox 6,33,2017-07-08 +session,390,5,Firefox 14,70,2017-09-03 +session,390,6,Chrome 43,66,2017-10-24 +session,390,7,Internet Explorer 3,15,2016-06-28 +user,391,Andre,Royal,99 +session,391,0,Internet Explorer 23,56,2018-11-13 +session,391,1,Firefox 24,34,2018-02-06 +user,392,Brigid,Titus,49 +session,392,0,Firefox 42,79,2017-09-02 +session,392,1,Chrome 22,29,2018-11-06 +session,392,2,Safari 20,36,2019-01-24 +session,392,3,Firefox 47,8,2018-03-17 +user,393,Nichole,Lizbeth,91 +session,393,0,Chrome 41,43,2017-04-15 +session,393,1,Chrome 42,28,2018-02-04 +session,393,2,Internet Explorer 6,114,2017-08-11 +session,393,3,Safari 30,11,2016-05-22 +session,393,4,Firefox 1,13,2017-04-20 +session,393,5,Chrome 28,48,2018-10-21 +session,393,6,Chrome 3,16,2018-07-20 +session,393,7,Chrome 47,111,2018-02-25 +session,393,8,Firefox 24,88,2016-08-25 +session,393,9,Internet Explorer 38,28,2017-04-05 +user,394,Christian,Inez,49 +session,394,0,Safari 16,43,2019-01-26 +session,394,1,Firefox 8,35,2017-06-13 +session,394,2,Safari 41,15,2018-04-12 +session,394,3,Chrome 27,22,2016-12-22 +session,394,4,Safari 27,0,2016-08-01 +session,394,5,Chrome 12,53,2016-06-22 +session,394,6,Firefox 16,111,2018-04-14 +user,395,Catina,Rema,98 +session,395,0,Chrome 14,91,2018-05-04 +session,395,1,Internet Explorer 31,91,2018-02-12 +session,395,2,Internet Explorer 43,54,2017-10-02 +session,395,3,Firefox 35,34,2016-12-10 +session,395,4,Internet Explorer 11,56,2016-08-25 +session,395,5,Firefox 45,50,2017-06-19 +session,395,6,Safari 7,104,2017-02-19 +session,395,7,Firefox 29,108,2016-11-03 +session,395,8,Internet Explorer 35,91,2018-05-15 +session,395,9,Safari 23,18,2017-06-19 +user,396,Kaleigh,Mirtha,66 +session,396,0,Chrome 30,99,2018-05-06 +session,396,1,Safari 17,88,2018-01-15 +session,396,2,Chrome 37,115,2017-12-24 +user,397,Karissa,Elois,55 +session,397,0,Internet Explorer 44,68,2017-06-14 +session,397,1,Firefox 23,61,2017-08-25 +session,397,2,Internet Explorer 46,19,2018-10-09 +session,397,3,Chrome 13,78,2017-11-18 +session,397,4,Firefox 10,80,2018-10-06 +session,397,5,Internet Explorer 22,92,2018-01-09 +session,397,6,Internet Explorer 4,85,2017-12-22 +user,398,Cyrstal,Freda,25 +session,398,0,Chrome 21,106,2017-01-18 +session,398,1,Chrome 48,80,2016-08-03 +session,398,2,Firefox 23,72,2017-12-31 +session,398,3,Chrome 44,78,2016-07-04 +session,398,4,Chrome 22,106,2017-05-10 +session,398,5,Chrome 4,57,2017-12-02 +session,398,6,Safari 35,87,2017-06-16 +session,398,7,Firefox 25,12,2018-04-20 +user,399,Jerry,Aurelio,50 +session,399,0,Safari 12,9,2018-01-22 +session,399,1,Chrome 2,111,2018-03-18 +session,399,2,Safari 3,109,2017-01-30 +session,399,3,Chrome 31,111,2017-12-07 +session,399,4,Firefox 16,43,2016-09-13 +session,399,5,Internet Explorer 43,103,2017-05-16 +session,399,6,Firefox 41,32,2018-11-08 +session,399,7,Internet Explorer 17,111,2018-11-04 +session,399,8,Safari 12,91,2016-09-25 +session,399,9,Internet Explorer 24,44,2018-06-24 +user,400,Marlon,Jame,93 +session,400,0,Firefox 3,38,2018-06-07 +session,400,1,Firefox 16,117,2018-12-30 +session,400,2,Firefox 37,99,2017-03-07 +session,400,3,Safari 20,80,2018-12-14 +session,400,4,Safari 31,46,2018-04-13 +session,400,5,Chrome 28,46,2017-07-31 +session,400,6,Internet Explorer 11,56,2018-04-05 +session,400,7,Firefox 9,4,2016-12-25 +session,400,8,Safari 40,71,2017-05-14 +session,400,9,Internet Explorer 41,112,2016-12-03 +user,401,Rochelle,Rebecka,13 +session,401,0,Internet Explorer 36,25,2017-02-22 +session,401,1,Safari 11,96,2018-03-09 +session,401,2,Safari 38,98,2017-05-01 +session,401,3,Chrome 22,25,2016-06-28 +session,401,4,Safari 7,50,2018-07-17 +session,401,5,Chrome 11,33,2018-12-01 +session,401,6,Safari 40,53,2017-12-06 +user,402,Jennifer,Jenell,65 +session,402,0,Internet Explorer 29,61,2018-01-04 +session,402,1,Internet Explorer 2,90,2019-01-22 +session,402,2,Safari 3,94,2016-08-17 +session,402,3,Internet Explorer 23,20,2018-12-06 +session,402,4,Internet Explorer 19,85,2016-09-08 +session,402,5,Internet Explorer 47,95,2018-12-22 +session,402,6,Firefox 18,115,2016-08-05 +user,403,Ricky,Norah,60 +session,403,0,Chrome 6,25,2018-09-02 +session,403,1,Safari 45,81,2017-05-10 +session,403,2,Safari 20,114,2018-08-26 +session,403,3,Safari 9,77,2017-01-20 +session,403,4,Firefox 13,28,2017-02-23 +session,403,5,Safari 9,109,2016-06-14 +session,403,6,Safari 21,5,2017-01-11 +session,403,7,Safari 50,107,2018-07-01 +user,404,Francesco,Reyes,16 +session,404,0,Chrome 49,103,2018-07-31 +session,404,1,Internet Explorer 33,71,2017-10-06 +user,405,Carleen,Neville,14 +session,405,0,Firefox 23,109,2016-09-15 +session,405,1,Safari 43,41,2018-09-01 +session,405,2,Safari 17,66,2018-05-10 +session,405,3,Chrome 3,67,2018-08-12 +user,406,Carmelia,Tomi,53 +session,406,0,Internet Explorer 32,84,2016-08-16 +session,406,1,Chrome 46,104,2016-11-09 +session,406,2,Firefox 32,6,2017-12-16 +session,406,3,Chrome 33,16,2018-06-10 +session,406,4,Safari 11,90,2017-05-12 +session,406,5,Chrome 28,32,2016-07-29 +session,406,6,Firefox 49,95,2016-08-13 +session,406,7,Safari 18,32,2017-04-09 +session,406,8,Safari 23,107,2016-10-16 +session,406,9,Internet Explorer 24,73,2018-10-18 +user,407,Frank,Fonda,81 +session,407,0,Safari 34,74,2018-11-27 +session,407,1,Chrome 3,19,2018-01-29 +session,407,2,Chrome 11,119,2017-09-08 +session,407,3,Chrome 4,4,2018-03-05 +session,407,4,Firefox 29,41,2018-10-19 +user,408,Coleman,Dawna,18 +session,408,0,Internet Explorer 41,111,2017-07-10 +session,408,1,Internet Explorer 3,11,2018-11-24 +session,408,2,Internet Explorer 24,76,2018-11-10 +session,408,3,Firefox 40,70,2018-07-19 +session,408,4,Internet Explorer 15,11,2017-02-17 +session,408,5,Internet Explorer 18,37,2018-10-04 +session,408,6,Firefox 32,103,2016-09-26 +session,408,7,Safari 50,89,2016-07-31 +session,408,8,Chrome 41,76,2018-11-26 +user,409,Justa,Yesenia,16 +session,409,0,Safari 2,0,2017-05-10 +session,409,1,Internet Explorer 19,38,2016-11-30 +session,409,2,Firefox 29,110,2017-04-21 +user,410,Milford,Danna,35 +session,410,0,Chrome 46,88,2018-09-02 +user,411,Delsie,Lorene,21 +session,411,0,Chrome 22,59,2016-10-14 +session,411,1,Chrome 20,114,2017-10-22 +session,411,2,Internet Explorer 27,109,2018-09-20 +session,411,3,Safari 3,17,2017-02-26 +session,411,4,Chrome 36,92,2019-01-02 +session,411,5,Chrome 47,60,2017-08-02 +session,411,6,Internet Explorer 14,85,2017-11-18 +session,411,7,Safari 2,86,2016-05-27 +session,411,8,Chrome 26,104,2018-09-05 +session,411,9,Internet Explorer 43,39,2019-01-15 +user,412,Jewel,Alpha,64 +session,412,0,Firefox 1,72,2017-01-18 +session,412,1,Safari 4,77,2018-07-25 +session,412,2,Internet Explorer 20,80,2017-03-29 +session,412,3,Chrome 4,12,2017-04-16 +user,413,Judson,Darcey,60 +session,413,0,Firefox 30,94,2017-05-29 +session,413,1,Firefox 32,59,2017-01-17 +session,413,2,Chrome 1,111,2018-01-23 +session,413,3,Firefox 5,97,2018-03-10 +session,413,4,Firefox 20,4,2017-12-02 +session,413,5,Safari 29,57,2018-05-28 +session,413,6,Safari 11,88,2018-09-13 +session,413,7,Safari 47,15,2018-07-23 +session,413,8,Safari 8,60,2017-05-07 +user,414,Franklyn,Torri,57 +session,414,0,Internet Explorer 46,68,2018-01-03 +session,414,1,Chrome 16,110,2017-03-08 +session,414,2,Internet Explorer 28,47,2018-07-19 +user,415,Belen,Mandie,57 +session,415,0,Firefox 37,6,2018-09-05 +session,415,1,Safari 13,12,2016-06-07 +session,415,2,Firefox 30,75,2018-02-04 +session,415,3,Safari 10,26,2016-11-22 +session,415,4,Firefox 13,86,2017-05-12 +session,415,5,Internet Explorer 11,83,2017-12-06 +session,415,6,Firefox 33,2,2017-10-03 +session,415,7,Safari 29,66,2017-03-12 +session,415,8,Firefox 23,63,2018-02-26 +user,416,Alva,Many,52 +session,416,0,Internet Explorer 46,0,2018-04-29 +user,417,Kristy,Rhonda,93 +session,417,0,Chrome 11,24,2016-08-03 +session,417,1,Safari 44,50,2016-06-25 +session,417,2,Safari 6,37,2018-06-20 +user,418,Houston,Abbey,32 +session,418,0,Chrome 24,36,2016-12-06 +session,418,1,Chrome 9,34,2018-02-07 +session,418,2,Safari 24,106,2017-04-02 +session,418,3,Chrome 38,24,2018-08-24 +session,418,4,Safari 35,72,2019-01-01 +session,418,5,Internet Explorer 23,49,2017-10-21 +session,418,6,Chrome 22,78,2017-03-18 +session,418,7,Firefox 19,112,2018-07-30 +session,418,8,Safari 23,30,2017-07-07 +session,418,9,Chrome 37,69,2017-09-23 +user,419,Stan,Milo,75 +session,419,0,Chrome 40,67,2018-06-09 +session,419,1,Firefox 33,106,2018-10-20 +user,420,Soraya,Terrie,33 +session,420,0,Firefox 40,58,2018-04-21 +session,420,1,Firefox 26,64,2017-01-29 +session,420,2,Chrome 36,36,2018-03-21 +session,420,3,Chrome 17,34,2016-11-29 +user,421,Pearlene,Alejandrina,3 +session,421,0,Safari 25,8,2017-07-19 +session,421,1,Internet Explorer 45,111,2017-09-19 +session,421,2,Firefox 15,5,2017-01-07 +session,421,3,Chrome 14,11,2017-09-12 +session,421,4,Internet Explorer 14,26,2018-12-24 +session,421,5,Safari 39,67,2017-10-06 +session,421,6,Safari 20,1,2017-04-29 +user,422,Tracy,Waldo,27 +session,422,0,Internet Explorer 27,7,2017-03-21 +session,422,1,Internet Explorer 34,52,2018-11-22 +session,422,2,Internet Explorer 19,56,2018-06-28 +session,422,3,Firefox 2,54,2017-03-06 +session,422,4,Internet Explorer 1,42,2018-11-22 +user,423,Halina,Kizzie,3 +session,423,0,Firefox 15,32,2016-06-29 +session,423,1,Internet Explorer 31,88,2017-04-12 +session,423,2,Internet Explorer 9,17,2018-04-06 +user,424,Chas,Davida,25 +session,424,0,Safari 4,91,2016-11-06 +session,424,1,Safari 21,49,2018-06-10 +session,424,2,Internet Explorer 37,2,2018-12-05 +session,424,3,Chrome 35,19,2016-10-15 +session,424,4,Internet Explorer 47,40,2017-06-18 +session,424,5,Firefox 23,75,2017-01-31 +session,424,6,Chrome 31,80,2016-08-16 +session,424,7,Internet Explorer 26,33,2017-12-26 +session,424,8,Firefox 38,45,2016-07-07 +session,424,9,Firefox 2,50,2017-10-29 +user,425,Billye,Claire,2 +session,425,0,Internet Explorer 34,94,2016-08-03 +session,425,1,Firefox 32,38,2018-08-10 +session,425,2,Chrome 13,96,2019-01-18 +session,425,3,Internet Explorer 32,115,2018-05-24 +session,425,4,Chrome 21,48,2017-07-14 +session,425,5,Internet Explorer 34,102,2016-09-16 +user,426,Thi,Aura,68 +session,426,0,Safari 15,24,2017-03-08 +session,426,1,Chrome 34,24,2018-04-29 +session,426,2,Chrome 26,84,2017-02-18 +session,426,3,Firefox 29,117,2018-11-30 +session,426,4,Chrome 28,78,2017-02-01 +session,426,5,Internet Explorer 31,104,2018-11-11 +user,427,Dexter,Kennith,81 +session,427,0,Safari 1,24,2016-05-31 +user,428,Johnny,Lilla,76 +session,428,0,Firefox 11,75,2017-07-23 +session,428,1,Internet Explorer 10,18,2017-12-01 +session,428,2,Chrome 8,89,2016-09-07 +session,428,3,Safari 26,74,2018-01-20 +session,428,4,Internet Explorer 33,72,2016-10-04 +session,428,5,Firefox 9,49,2017-03-15 +session,428,6,Firefox 50,98,2018-01-09 +session,428,7,Safari 11,57,2016-11-04 +session,428,8,Chrome 24,43,2018-10-25 +session,428,9,Safari 45,36,2017-12-04 +user,429,Eve,Karleen,48 +session,429,0,Safari 19,19,2017-07-11 +session,429,1,Safari 9,78,2017-06-13 +session,429,2,Safari 28,18,2016-06-24 +user,430,Shila,Samira,27 +session,430,0,Safari 23,74,2016-07-31 +user,431,Roxann,James,84 +session,431,0,Safari 47,88,2018-03-12 +session,431,1,Chrome 28,103,2018-05-26 +session,431,2,Safari 29,17,2018-10-13 +session,431,3,Chrome 32,21,2018-06-20 +session,431,4,Internet Explorer 39,118,2017-10-09 +session,431,5,Chrome 15,40,2018-12-14 +session,431,6,Safari 10,118,2017-03-06 +session,431,7,Chrome 27,2,2018-02-23 +session,431,8,Firefox 37,18,2017-10-12 +user,432,Shante,Tera,17 +session,432,0,Safari 37,116,2017-09-05 +session,432,1,Safari 21,92,2018-10-31 +session,432,2,Firefox 17,36,2018-02-07 +session,432,3,Chrome 23,10,2019-01-01 +session,432,4,Safari 23,118,2018-03-12 +session,432,5,Safari 21,107,2016-06-15 +session,432,6,Firefox 37,45,2016-09-08 +session,432,7,Firefox 43,75,2017-11-10 +session,432,8,Safari 30,10,2018-03-03 +user,433,Alexis,Mariella,79 +session,433,0,Chrome 11,2,2018-11-26 +session,433,1,Safari 8,82,2018-12-20 +session,433,2,Internet Explorer 7,87,2018-08-28 +session,433,3,Chrome 32,36,2016-10-10 +user,434,Margarite,Yen,29 +session,434,0,Safari 9,62,2018-02-25 +session,434,1,Safari 6,108,2019-02-12 +session,434,2,Firefox 13,0,2017-02-20 +session,434,3,Firefox 21,11,2017-04-17 +session,434,4,Safari 7,6,2017-05-28 +session,434,5,Internet Explorer 29,102,2017-06-11 +session,434,6,Chrome 9,32,2016-06-05 +session,434,7,Safari 34,60,2017-02-01 +session,434,8,Chrome 50,43,2018-08-12 +user,435,Jess,Cierra,92 +session,435,0,Firefox 1,9,2017-12-12 +session,435,1,Chrome 15,3,2016-06-04 +user,436,Carmelo,Krystyna,3 +session,436,0,Safari 46,21,2017-10-14 +session,436,1,Internet Explorer 2,78,2018-01-11 +session,436,2,Firefox 20,115,2018-06-14 +session,436,3,Chrome 26,26,2018-05-24 +session,436,4,Internet Explorer 39,24,2017-02-16 +session,436,5,Safari 45,44,2017-05-05 +session,436,6,Chrome 46,89,2016-08-29 +session,436,7,Chrome 20,46,2017-06-13 +session,436,8,Safari 46,75,2017-08-26 +user,437,Emmitt,Verdie,40 +session,437,0,Safari 43,2,2017-05-24 +session,437,1,Internet Explorer 27,74,2017-04-12 +session,437,2,Chrome 10,47,2016-07-08 +session,437,3,Chrome 2,106,2017-08-10 +session,437,4,Safari 44,24,2018-11-13 +session,437,5,Chrome 45,63,2018-03-13 +session,437,6,Safari 46,30,2016-08-23 +session,437,7,Safari 13,91,2018-01-15 +session,437,8,Firefox 27,12,2017-10-14 +user,438,Luana,Milford,61 +session,438,0,Chrome 18,117,2016-08-11 +session,438,1,Chrome 21,37,2018-11-12 +session,438,2,Safari 19,104,2016-11-10 +session,438,3,Firefox 19,92,2016-07-02 +session,438,4,Chrome 34,45,2016-11-21 +session,438,5,Chrome 28,29,2016-09-18 +user,439,Arlie,Savanna,89 +session,439,0,Safari 45,54,2017-02-12 +session,439,1,Firefox 40,113,2018-08-10 +user,440,Romelia,Joannie,16 +session,440,0,Chrome 39,15,2016-08-20 +session,440,1,Internet Explorer 27,27,2016-11-12 +session,440,2,Chrome 46,9,2019-02-07 +session,440,3,Internet Explorer 28,102,2017-09-24 +session,440,4,Chrome 29,102,2018-05-23 +user,441,Tammara,Joey,80 +session,441,0,Chrome 41,58,2017-05-08 +session,441,1,Chrome 24,100,2017-07-07 +session,441,2,Chrome 46,93,2016-09-04 +user,442,Shin,Ronda,19 +session,442,0,Firefox 33,32,2018-08-03 +session,442,1,Firefox 11,99,2017-12-12 +user,443,Pedro,Zita,63 +session,443,0,Safari 20,59,2018-12-12 +session,443,1,Firefox 38,107,2017-10-17 +user,444,Felix,Rolland,77 +session,444,0,Internet Explorer 44,37,2018-02-19 +session,444,1,Firefox 45,26,2016-12-29 +session,444,2,Internet Explorer 27,13,2018-11-30 +session,444,3,Chrome 4,51,2016-12-13 +user,445,Lupe,Magaly,31 +session,445,0,Firefox 10,63,2018-07-20 +session,445,1,Safari 40,96,2017-09-05 +session,445,2,Firefox 49,35,2019-02-01 +session,445,3,Safari 36,70,2018-09-23 +user,446,Ressie,Frank,81 +session,446,0,Safari 42,14,2017-07-28 +session,446,1,Chrome 24,109,2017-09-04 +session,446,2,Safari 34,39,2017-05-31 +session,446,3,Firefox 17,52,2017-03-25 +user,447,Leda,Leon,97 +session,447,0,Safari 34,90,2016-09-30 +session,447,1,Safari 2,72,2018-06-02 +session,447,2,Internet Explorer 26,65,2017-10-20 +session,447,3,Firefox 41,29,2017-05-07 +user,448,Carlie,Pearline,36 +session,448,0,Internet Explorer 44,36,2016-12-24 +session,448,1,Safari 2,85,2017-04-25 +user,449,Jessie,Jeffrey,39 +session,449,0,Safari 17,51,2017-10-26 +session,449,1,Chrome 27,91,2016-10-05 +session,449,2,Internet Explorer 16,92,2017-12-10 +session,449,3,Firefox 31,1,2017-07-15 +session,449,4,Internet Explorer 9,15,2017-08-12 +session,449,5,Chrome 17,6,2016-09-18 +session,449,6,Internet Explorer 49,17,2016-12-30 +session,449,7,Internet Explorer 24,10,2017-10-13 +user,450,Kirk,Margarette,80 +session,450,0,Chrome 13,50,2017-12-05 +session,450,1,Firefox 26,71,2017-02-07 +user,451,Leigh,Adriane,21 +session,451,0,Firefox 38,31,2016-11-28 +user,452,Anton,Tiera,94 +session,452,0,Safari 26,107,2018-10-30 +session,452,1,Safari 38,92,2018-12-29 +session,452,2,Safari 20,32,2017-05-28 +session,452,3,Internet Explorer 4,43,2017-03-05 +session,452,4,Chrome 28,56,2017-09-25 +session,452,5,Chrome 44,107,2017-10-09 +session,452,6,Chrome 13,85,2017-05-23 +session,452,7,Firefox 49,67,2018-12-30 +session,452,8,Firefox 28,0,2017-08-21 +session,452,9,Internet Explorer 11,103,2018-05-31 +user,453,Lachelle,Tameka,56 +session,453,0,Firefox 19,25,2017-07-15 +session,453,1,Chrome 10,58,2016-09-11 +session,453,2,Chrome 14,69,2016-08-09 +session,453,3,Internet Explorer 8,12,2018-06-12 +session,453,4,Firefox 45,81,2018-10-11 +user,454,Len,Federico,28 +session,454,0,Chrome 26,108,2017-01-18 +session,454,1,Internet Explorer 37,51,2016-07-22 +session,454,2,Internet Explorer 13,81,2018-02-03 +user,455,Liane,Lane,82 +session,455,0,Chrome 2,37,2016-09-21 +session,455,1,Internet Explorer 23,71,2017-08-04 +user,456,Aimee,Natacha,77 +session,456,0,Internet Explorer 20,100,2018-10-24 +session,456,1,Firefox 29,77,2018-11-11 +user,457,Maricruz,Kera,49 +session,457,0,Chrome 36,14,2017-07-06 +session,457,1,Chrome 16,110,2017-09-28 +session,457,2,Internet Explorer 3,70,2018-11-23 +session,457,3,Safari 19,5,2017-01-29 +user,458,Laverne,Merry,62 +session,458,0,Firefox 30,102,2018-09-25 +session,458,1,Safari 29,37,2017-11-15 +session,458,2,Firefox 41,109,2018-04-15 +user,459,Everett,Kacy,52 +session,459,0,Internet Explorer 21,118,2017-10-14 +session,459,1,Safari 31,108,2017-04-13 +session,459,2,Firefox 49,95,2017-05-09 +session,459,3,Safari 40,74,2018-08-15 +session,459,4,Firefox 20,83,2017-04-08 +session,459,5,Chrome 3,48,2018-07-10 +session,459,6,Internet Explorer 27,19,2017-11-05 +session,459,7,Safari 50,69,2018-02-01 +user,460,Macie,Jared,27 +session,460,0,Internet Explorer 15,43,2018-06-12 +session,460,1,Safari 35,70,2016-11-24 +session,460,2,Firefox 47,87,2016-12-16 +session,460,3,Firefox 30,102,2018-07-06 +session,460,4,Safari 8,39,2016-10-01 +session,460,5,Safari 48,81,2017-06-02 +session,460,6,Safari 15,105,2016-10-15 +session,460,7,Chrome 18,108,2017-06-21 +session,460,8,Safari 46,112,2016-12-23 +session,460,9,Chrome 6,63,2018-11-18 +user,461,Elmo,Chris,18 +session,461,0,Firefox 7,71,2017-02-14 +session,461,1,Firefox 17,42,2016-06-02 +session,461,2,Firefox 43,103,2018-05-14 +session,461,3,Safari 13,88,2017-03-21 +session,461,4,Firefox 14,52,2018-11-20 +session,461,5,Chrome 7,101,2017-07-01 +session,461,6,Chrome 32,0,2016-08-20 +session,461,7,Chrome 46,27,2018-01-23 +session,461,8,Internet Explorer 21,41,2018-01-14 +user,462,Luigi,Chantelle,47 +session,462,0,Internet Explorer 36,42,2018-02-23 +user,463,Louanne,Leroy,97 +session,463,0,Safari 21,42,2016-09-09 +session,463,1,Safari 11,119,2016-07-23 +session,463,2,Safari 4,29,2018-04-16 +session,463,3,Chrome 10,39,2016-09-04 +session,463,4,Internet Explorer 23,91,2018-05-31 +session,463,5,Firefox 19,7,2016-08-13 +session,463,6,Safari 24,49,2017-11-07 +user,464,Horacio,Chang,55 +session,464,0,Safari 43,83,2017-04-30 +user,465,Cordell,Kris,27 +session,465,0,Firefox 50,14,2018-01-02 +session,465,1,Internet Explorer 26,36,2017-05-08 +session,465,2,Chrome 42,43,2017-06-17 +session,465,3,Internet Explorer 36,105,2016-08-27 +session,465,4,Safari 18,30,2018-04-07 +session,465,5,Internet Explorer 10,12,2019-01-26 +session,465,6,Internet Explorer 22,3,2017-04-20 +session,465,7,Chrome 10,12,2017-02-23 +session,465,8,Internet Explorer 49,78,2016-07-26 +session,465,9,Internet Explorer 43,47,2017-12-24 +user,466,Chantal,Keren,90 +session,466,0,Chrome 29,68,2018-12-31 +session,466,1,Chrome 28,35,2017-02-28 +session,466,2,Firefox 49,46,2017-01-05 +session,466,3,Safari 17,57,2016-09-23 +user,467,Jake,Lara,74 +session,467,0,Firefox 46,59,2017-12-19 +session,467,1,Safari 9,63,2018-06-15 +session,467,2,Chrome 1,116,2018-06-04 +session,467,3,Chrome 35,17,2017-04-12 +session,467,4,Internet Explorer 19,43,2017-04-11 +session,467,5,Chrome 15,29,2016-06-23 +session,467,6,Firefox 18,103,2016-11-20 +session,467,7,Safari 25,32,2017-06-02 +session,467,8,Chrome 34,23,2017-04-05 +session,467,9,Safari 35,86,2018-05-10 +user,468,Kristina,Hellen,85 +session,468,0,Internet Explorer 2,50,2017-06-23 +session,468,1,Internet Explorer 3,40,2017-05-02 +session,468,2,Safari 17,27,2018-12-25 +session,468,3,Safari 42,4,2018-08-25 +user,469,China,Beckie,93 +session,469,0,Internet Explorer 38,91,2017-08-04 +user,470,Graig,Cole,67 +session,470,0,Safari 5,67,2018-09-07 +session,470,1,Firefox 36,12,2018-04-20 +session,470,2,Safari 24,45,2017-08-10 +user,471,Lyndsey,Martina,72 +session,471,0,Firefox 25,37,2017-10-11 +user,472,Vernie,Quincy,19 +session,472,0,Safari 23,117,2017-01-26 +session,472,1,Internet Explorer 6,89,2018-11-21 +session,472,2,Firefox 34,83,2017-12-30 +session,472,3,Chrome 32,29,2018-05-27 +session,472,4,Chrome 5,13,2017-02-19 +session,472,5,Internet Explorer 15,111,2018-03-06 +session,472,6,Chrome 5,107,2018-07-13 +session,472,7,Safari 19,2,2017-02-18 +session,472,8,Internet Explorer 3,90,2016-08-28 +user,473,Willette,Delaine,23 +session,473,0,Firefox 25,1,2018-01-27 +session,473,1,Firefox 14,36,2018-05-06 +session,473,2,Safari 26,33,2016-08-30 +session,473,3,Chrome 50,83,2017-08-25 +session,473,4,Firefox 42,35,2018-10-03 +session,473,5,Internet Explorer 18,73,2018-06-22 +user,474,Roseann,Ashley,84 +session,474,0,Chrome 3,19,2017-04-03 +session,474,1,Chrome 26,90,2017-10-13 +session,474,2,Firefox 50,35,2016-07-04 +session,474,3,Internet Explorer 21,14,2017-11-08 +session,474,4,Safari 46,98,2019-01-11 +session,474,5,Firefox 39,16,2017-10-12 +session,474,6,Internet Explorer 38,63,2018-05-25 +session,474,7,Safari 8,33,2017-06-16 +session,474,8,Firefox 4,21,2018-12-27 +session,474,9,Internet Explorer 16,80,2016-10-08 +user,475,Cleveland,Mia,70 +session,475,0,Safari 45,41,2018-07-19 +session,475,1,Chrome 41,110,2017-04-10 +session,475,2,Safari 15,60,2018-03-10 +session,475,3,Chrome 49,82,2016-06-24 +user,476,Janell,Earlene,63 +session,476,0,Chrome 12,13,2017-06-21 +session,476,1,Safari 48,101,2017-06-15 +session,476,2,Internet Explorer 22,105,2018-07-04 +session,476,3,Safari 25,80,2018-06-21 +session,476,4,Safari 8,43,2017-04-20 +session,476,5,Internet Explorer 16,80,2018-07-11 +session,476,6,Safari 40,98,2016-10-09 +session,476,7,Chrome 19,106,2018-06-11 +session,476,8,Firefox 8,63,2017-01-09 +session,476,9,Internet Explorer 20,96,2016-07-24 +user,477,Marylee,Sherron,94 +session,477,0,Safari 38,23,2017-12-18 +session,477,1,Safari 34,67,2018-11-24 +session,477,2,Firefox 12,52,2018-07-24 +session,477,3,Safari 21,82,2016-10-17 +user,478,Jordan,Dee,12 +session,478,0,Internet Explorer 33,39,2017-06-02 +session,478,1,Internet Explorer 19,102,2017-03-13 +session,478,2,Firefox 49,72,2017-08-24 +session,478,3,Internet Explorer 6,112,2018-04-07 +session,478,4,Firefox 39,88,2017-08-05 +session,478,5,Safari 30,66,2017-11-30 +session,478,6,Internet Explorer 10,30,2016-11-05 +session,478,7,Safari 10,24,2017-08-17 +session,478,8,Safari 9,64,2016-08-10 +session,478,9,Firefox 33,26,2018-10-29 +user,479,Claud,Loyd,53 +session,479,0,Chrome 8,91,2017-04-11 +session,479,1,Firefox 44,53,2017-10-17 +session,479,2,Safari 15,86,2019-01-31 +session,479,3,Internet Explorer 27,54,2017-05-12 +session,479,4,Firefox 17,38,2017-11-21 +session,479,5,Firefox 7,63,2017-09-19 +session,479,6,Internet Explorer 5,112,2018-06-13 +session,479,7,Chrome 22,91,2016-09-19 +user,480,Elijah,Alita,40 +session,480,0,Firefox 12,104,2018-06-04 +session,480,1,Safari 26,115,2017-11-15 +session,480,2,Firefox 17,105,2017-01-17 +session,480,3,Chrome 1,4,2019-01-04 +user,481,Andra,Sherie,66 +session,481,0,Chrome 24,117,2018-05-18 +session,481,1,Chrome 49,107,2017-12-02 +session,481,2,Firefox 49,2,2017-05-07 +user,482,Alba,Delilah,80 +session,482,0,Internet Explorer 39,83,2018-09-17 +session,482,1,Chrome 49,49,2018-01-03 +session,482,2,Safari 37,113,2017-03-20 +session,482,3,Safari 20,80,2017-10-18 +session,482,4,Chrome 37,14,2017-08-21 +session,482,5,Chrome 26,83,2016-11-13 +session,482,6,Internet Explorer 42,85,2016-11-06 +session,482,7,Chrome 40,61,2016-08-10 +session,482,8,Safari 41,72,2016-08-19 +session,482,9,Firefox 18,42,2017-05-10 +user,483,Johnnie,Rayna,45 +session,483,0,Firefox 4,71,2018-02-11 +session,483,1,Chrome 29,102,2017-12-09 +session,483,2,Internet Explorer 28,63,2016-09-26 +session,483,3,Chrome 20,65,2018-09-07 +session,483,4,Firefox 16,18,2017-07-16 +session,483,5,Safari 7,42,2017-10-09 +session,483,6,Chrome 2,36,2017-06-04 +session,483,7,Chrome 40,112,2018-06-26 +user,484,Nancie,Burt,59 +session,484,0,Firefox 5,54,2016-08-23 +session,484,1,Chrome 3,84,2017-12-23 +session,484,2,Chrome 22,95,2017-08-06 +session,484,3,Internet Explorer 22,52,2016-11-10 +session,484,4,Internet Explorer 34,46,2016-07-28 +session,484,5,Safari 39,60,2016-11-21 +user,485,Irwin,Eric,92 +session,485,0,Internet Explorer 30,29,2016-11-02 +session,485,1,Safari 49,76,2019-01-13 +session,485,2,Internet Explorer 8,91,2017-07-02 +session,485,3,Internet Explorer 36,110,2018-08-04 +session,485,4,Safari 14,69,2017-12-29 +user,486,Henrietta,Regena,48 +session,486,0,Chrome 30,100,2017-07-09 +session,486,1,Safari 30,23,2018-10-24 +session,486,2,Firefox 48,54,2019-02-07 +session,486,3,Firefox 34,109,2017-06-04 +session,486,4,Internet Explorer 11,29,2018-04-05 +user,487,Giuseppe,Zenobia,2 +session,487,0,Internet Explorer 9,0,2017-04-05 +session,487,1,Safari 41,86,2017-10-04 +session,487,2,Internet Explorer 29,65,2017-09-19 +session,487,3,Chrome 10,85,2018-07-31 +session,487,4,Firefox 17,113,2017-11-21 +session,487,5,Safari 21,23,2018-05-21 +session,487,6,Internet Explorer 41,73,2016-05-21 +session,487,7,Firefox 24,24,2016-08-29 +user,488,Mao,Kasey,90 +session,488,0,Safari 50,29,2017-05-05 +session,488,1,Internet Explorer 43,59,2018-04-11 +session,488,2,Chrome 38,105,2018-10-01 +session,488,3,Firefox 19,79,2018-10-07 +session,488,4,Internet Explorer 10,101,2018-02-03 +session,488,5,Safari 30,5,2017-01-28 +session,488,6,Firefox 13,88,2016-06-08 +user,489,Floyd,Trent,11 +session,489,0,Safari 18,41,2017-02-14 +session,489,1,Chrome 6,12,2017-09-07 +session,489,2,Safari 13,8,2017-11-28 +session,489,3,Internet Explorer 16,48,2019-02-10 +session,489,4,Safari 36,1,2016-05-26 +session,489,5,Safari 27,80,2017-03-06 +session,489,6,Chrome 21,20,2016-12-26 +session,489,7,Internet Explorer 22,110,2017-01-18 +user,490,Versie,Yuriko,22 +session,490,0,Safari 3,89,2019-01-23 +session,490,1,Chrome 7,6,2016-11-08 +session,490,2,Firefox 36,69,2017-06-08 +session,490,3,Chrome 2,112,2017-12-25 +session,490,4,Internet Explorer 18,118,2018-04-12 +session,490,5,Internet Explorer 50,26,2018-07-16 +session,490,6,Firefox 19,24,2018-07-03 +session,490,7,Chrome 12,112,2018-05-31 +session,490,8,Internet Explorer 3,83,2016-10-18 +session,490,9,Safari 27,70,2016-06-20 +user,491,Belkis,Sanora,53 +session,491,0,Internet Explorer 50,103,2019-02-01 +session,491,1,Internet Explorer 8,108,2016-10-31 +session,491,2,Internet Explorer 13,97,2018-10-31 +session,491,3,Firefox 39,13,2019-02-04 +session,491,4,Internet Explorer 44,3,2018-08-30 +session,491,5,Firefox 34,57,2017-12-25 +session,491,6,Chrome 22,92,2018-08-17 +session,491,7,Chrome 20,60,2019-01-17 +user,492,Edgar,Tamesha,28 +session,492,0,Safari 5,21,2018-01-27 +session,492,1,Internet Explorer 10,3,2017-04-02 +session,492,2,Firefox 35,5,2017-02-16 +session,492,3,Firefox 18,10,2018-12-25 +session,492,4,Internet Explorer 47,114,2018-07-07 +session,492,5,Firefox 11,16,2018-08-09 +session,492,6,Internet Explorer 29,107,2017-05-30 +session,492,7,Safari 47,26,2016-06-23 +user,493,Charlette,Rebecca,27 +session,493,0,Chrome 19,69,2017-01-02 +session,493,1,Firefox 12,32,2017-03-07 +session,493,2,Safari 44,107,2016-12-30 +session,493,3,Safari 22,51,2017-04-18 +session,493,4,Safari 39,92,2018-05-22 +session,493,5,Internet Explorer 9,80,2018-12-02 +user,494,Roman,Virgil,28 +session,494,0,Safari 34,45,2018-12-27 +user,495,Nathaniel,Chase,3 +session,495,0,Safari 21,26,2017-10-19 +session,495,1,Safari 38,95,2016-06-20 +session,495,2,Chrome 1,37,2017-02-03 +session,495,3,Safari 28,71,2017-03-17 +user,496,Miles,Deeann,53 +session,496,0,Firefox 13,24,2018-02-04 +session,496,1,Chrome 27,64,2017-02-24 +user,497,Marcelo,Sam,30 +session,497,0,Chrome 42,14,2017-10-06 +user,498,Sol,Terrell,54 +session,498,0,Internet Explorer 31,32,2018-01-26 +user,499,Antonia,Gale,36 +session,499,0,Safari 25,21,2016-06-21 +user,500,Bebe,Ira,73 +session,500,0,Internet Explorer 21,46,2017-02-08 +session,500,1,Firefox 7,113,2018-12-05 +session,500,2,Internet Explorer 20,102,2016-07-14 +session,500,3,Firefox 11,15,2018-10-18 +session,500,4,Firefox 35,119,2016-10-04 +user,501,Alton,Zachery,88 +session,501,0,Chrome 23,11,2017-09-15 +session,501,1,Firefox 40,101,2019-01-18 +user,502,Mahalia,Katy,67 +session,502,0,Chrome 35,46,2018-10-31 +session,502,1,Firefox 18,72,2017-04-26 +session,502,2,Safari 49,53,2018-08-23 +session,502,3,Internet Explorer 13,41,2019-01-19 +session,502,4,Chrome 23,48,2016-07-14 +session,502,5,Firefox 4,96,2017-05-05 +session,502,6,Safari 2,15,2016-11-28 +session,502,7,Internet Explorer 41,103,2016-12-23 +session,502,8,Internet Explorer 49,9,2016-11-19 +session,502,9,Firefox 16,63,2018-04-29 +user,503,Lashell,Verla,68 +session,503,0,Internet Explorer 28,24,2018-07-13 +session,503,1,Safari 35,38,2017-04-21 +session,503,2,Safari 29,57,2016-10-02 +session,503,3,Safari 20,27,2018-07-17 +user,504,Rafael,Yaeko,32 +session,504,0,Chrome 25,46,2018-12-19 +session,504,1,Firefox 44,47,2018-04-08 +session,504,2,Firefox 13,32,2018-06-20 +session,504,3,Safari 26,80,2017-09-06 +session,504,4,Firefox 24,94,2018-03-03 +session,504,5,Firefox 31,31,2018-08-25 +session,504,6,Internet Explorer 8,10,2017-07-29 +session,504,7,Chrome 15,107,2018-11-25 +session,504,8,Safari 10,116,2018-03-07 +session,504,9,Chrome 28,54,2018-02-03 +user,505,Lynn,Yuk,22 +session,505,0,Safari 26,78,2018-02-13 +session,505,1,Safari 13,72,2018-11-21 +session,505,2,Firefox 40,33,2018-07-25 +session,505,3,Internet Explorer 19,57,2017-09-20 +session,505,4,Firefox 13,74,2016-08-08 +session,505,5,Safari 39,52,2016-09-01 +session,505,6,Internet Explorer 7,103,2018-01-25 +session,505,7,Chrome 14,49,2017-04-14 +user,506,Kimi,Andrew,88 +session,506,0,Chrome 46,67,2017-09-03 +session,506,1,Chrome 22,108,2016-06-12 +user,507,Rubie,Kala,70 +session,507,0,Chrome 15,65,2016-06-08 +session,507,1,Internet Explorer 50,105,2018-10-25 +session,507,2,Safari 31,9,2016-09-20 +session,507,3,Chrome 14,118,2017-01-15 +session,507,4,Safari 16,10,2017-10-22 +session,507,5,Firefox 9,6,2017-06-08 +session,507,6,Chrome 30,101,2018-01-31 +session,507,7,Chrome 4,37,2016-12-07 +session,507,8,Firefox 43,92,2018-10-22 +user,508,Latia,Lucio,33 +session,508,0,Safari 39,53,2018-01-24 +session,508,1,Chrome 18,5,2017-11-11 +session,508,2,Firefox 37,59,2017-09-22 +session,508,3,Firefox 33,23,2016-05-23 +session,508,4,Internet Explorer 6,106,2016-12-27 +session,508,5,Firefox 32,12,2016-08-17 +session,508,6,Internet Explorer 10,95,2017-06-13 +session,508,7,Firefox 11,90,2017-12-12 +user,509,Jarod,Cyrus,39 +session,509,0,Safari 50,6,2017-07-04 +session,509,1,Chrome 34,8,2019-01-16 +session,509,2,Firefox 10,25,2016-11-16 +session,509,3,Chrome 30,110,2017-08-26 +session,509,4,Firefox 40,53,2017-09-15 +session,509,5,Internet Explorer 9,38,2018-07-09 +session,509,6,Firefox 25,96,2016-10-26 +user,510,Renato,Allegra,34 +session,510,0,Chrome 23,12,2017-08-14 +session,510,1,Firefox 34,72,2017-05-01 +session,510,2,Chrome 40,8,2018-05-01 +session,510,3,Firefox 47,44,2018-03-23 +session,510,4,Safari 31,47,2016-12-21 +session,510,5,Chrome 39,44,2016-08-21 +session,510,6,Chrome 40,43,2017-09-03 +session,510,7,Internet Explorer 5,25,2017-10-10 +session,510,8,Firefox 41,82,2018-02-07 +user,511,Sharita,Svetlana,3 +session,511,0,Firefox 30,101,2017-04-16 +session,511,1,Chrome 22,106,2016-12-10 +session,511,2,Firefox 17,55,2016-08-11 +session,511,3,Safari 49,75,2017-08-30 +session,511,4,Safari 12,36,2018-10-19 +session,511,5,Safari 9,76,2016-10-05 +session,511,6,Internet Explorer 28,89,2017-08-15 +session,511,7,Firefox 36,60,2017-04-19 +session,511,8,Firefox 43,54,2017-07-05 +user,512,Melony,Del,79 +session,512,0,Firefox 15,109,2016-08-20 +session,512,1,Internet Explorer 21,47,2018-08-20 +session,512,2,Firefox 1,77,2016-07-06 +session,512,3,Firefox 48,38,2017-02-22 +session,512,4,Firefox 30,73,2017-08-08 +session,512,5,Firefox 6,18,2018-10-04 +session,512,6,Safari 29,114,2017-07-25 +session,512,7,Chrome 6,117,2017-10-24 +user,513,Tamesha,Garfield,79 +session,513,0,Chrome 11,22,2018-09-07 +session,513,1,Safari 15,2,2016-11-20 +session,513,2,Safari 43,21,2017-12-12 +user,514,Duncan,Ayako,45 +session,514,0,Firefox 20,29,2017-06-26 +session,514,1,Firefox 10,67,2017-12-11 +session,514,2,Internet Explorer 19,115,2018-07-28 +session,514,3,Firefox 4,45,2016-10-12 +session,514,4,Chrome 42,109,2016-06-25 +user,515,Albertina,April,84 +session,515,0,Firefox 41,83,2018-12-18 +session,515,1,Safari 7,19,2017-06-17 +session,515,2,Internet Explorer 2,84,2017-05-08 +user,516,Elton,Consuelo,43 +session,516,0,Firefox 12,88,2017-05-25 +user,517,Vesta,Albina,5 +session,517,0,Internet Explorer 26,2,2016-07-30 +session,517,1,Chrome 25,104,2018-05-29 +session,517,2,Chrome 4,2,2017-09-01 +session,517,3,Chrome 18,66,2018-01-13 +session,517,4,Safari 25,82,2016-09-27 +session,517,5,Chrome 43,27,2018-07-19 +session,517,6,Chrome 27,101,2016-07-29 +session,517,7,Firefox 5,39,2017-01-05 +session,517,8,Chrome 25,111,2017-03-04 +session,517,9,Safari 6,107,2018-08-01 +user,518,Kira,Christie,12 +session,518,0,Safari 7,49,2017-12-07 +session,518,1,Safari 50,86,2017-12-14 +session,518,2,Safari 31,71,2018-05-01 +session,518,3,Chrome 46,75,2017-02-26 +session,518,4,Internet Explorer 31,76,2018-03-09 +session,518,5,Chrome 22,50,2017-06-03 +session,518,6,Safari 47,85,2018-01-08 +user,519,Hung,Angella,87 +session,519,0,Chrome 40,43,2016-10-21 +session,519,1,Chrome 34,89,2017-03-26 +user,520,Josiah,Merrill,82 +session,520,0,Firefox 40,25,2016-09-19 +session,520,1,Safari 43,27,2019-01-29 +session,520,2,Internet Explorer 20,94,2017-11-22 +session,520,3,Firefox 18,57,2019-01-10 +session,520,4,Chrome 14,19,2016-12-11 +session,520,5,Safari 14,74,2017-10-26 +session,520,6,Chrome 33,13,2018-01-24 +session,520,7,Internet Explorer 40,32,2017-12-29 +session,520,8,Safari 19,35,2016-10-07 +user,521,Hazel,Lyman,51 +session,521,0,Safari 3,19,2017-12-04 +session,521,1,Safari 34,26,2018-08-25 +session,521,2,Firefox 14,98,2017-06-14 +user,522,Titus,Arturo,90 +session,522,0,Internet Explorer 45,99,2018-01-11 +session,522,1,Chrome 5,10,2017-05-26 +session,522,2,Internet Explorer 29,28,2016-12-12 +session,522,3,Chrome 15,35,2017-12-16 +session,522,4,Chrome 47,73,2017-09-06 +user,523,Lamont,Jacquelyn,97 +session,523,0,Safari 28,73,2017-04-13 +session,523,1,Safari 43,54,2017-09-11 +session,523,2,Internet Explorer 35,13,2019-01-26 +session,523,3,Safari 44,59,2018-04-10 +session,523,4,Safari 41,89,2019-02-09 +user,524,Charles,Karri,99 +session,524,0,Chrome 50,75,2018-03-09 +session,524,1,Chrome 47,76,2018-01-28 +session,524,2,Chrome 36,20,2016-07-07 +session,524,3,Chrome 32,116,2018-03-31 +session,524,4,Chrome 30,68,2018-11-07 +session,524,5,Safari 47,31,2017-06-23 +session,524,6,Chrome 8,54,2018-09-16 +user,525,Jinny,Aja,38 +session,525,0,Safari 47,15,2016-11-06 +user,526,Mary,Jere,65 +session,526,0,Chrome 5,28,2017-01-04 +session,526,1,Firefox 20,2,2018-05-12 +user,527,Brant,Brett,95 +session,527,0,Chrome 22,87,2018-11-29 +session,527,1,Chrome 30,92,2019-02-08 +session,527,2,Internet Explorer 14,97,2018-02-12 +session,527,3,Firefox 12,10,2017-04-12 +session,527,4,Safari 50,119,2017-08-23 +session,527,5,Internet Explorer 42,90,2016-12-02 +user,528,Yadira,Adrienne,0 +session,528,0,Internet Explorer 33,99,2017-09-16 +session,528,1,Firefox 23,38,2018-01-02 +user,529,Nina,Xenia,16 +session,529,0,Safari 26,77,2016-10-14 +session,529,1,Chrome 25,32,2018-11-10 +user,530,Malik,Frankie,4 +session,530,0,Internet Explorer 6,48,2017-10-16 +session,530,1,Internet Explorer 33,21,2017-09-25 +session,530,2,Internet Explorer 50,30,2017-04-04 +session,530,3,Firefox 19,78,2017-08-01 +session,530,4,Safari 11,8,2018-03-17 +session,530,5,Internet Explorer 21,15,2017-09-17 +session,530,6,Internet Explorer 3,37,2016-08-11 +session,530,7,Safari 28,97,2016-10-29 +session,530,8,Safari 18,91,2018-03-19 +session,530,9,Safari 47,12,2018-08-08 +user,531,Dolly,Jermaine,25 +session,531,0,Chrome 14,62,2016-06-24 +session,531,1,Firefox 27,107,2017-02-20 +session,531,2,Chrome 47,65,2017-04-22 +session,531,3,Firefox 42,119,2016-11-23 +session,531,4,Safari 32,95,2019-01-29 +session,531,5,Internet Explorer 35,30,2018-06-25 +user,532,Vita,Johana,41 +session,532,0,Firefox 4,11,2016-07-27 +session,532,1,Safari 30,57,2019-01-28 +session,532,2,Internet Explorer 26,52,2019-02-06 +session,532,3,Chrome 10,112,2016-12-11 +session,532,4,Chrome 18,78,2016-08-19 +user,533,Karyl,Gerry,67 +session,533,0,Chrome 24,22,2018-12-06 +session,533,1,Chrome 17,12,2019-02-04 +session,533,2,Safari 1,28,2017-08-01 +session,533,3,Internet Explorer 6,14,2018-08-02 +session,533,4,Firefox 41,4,2018-06-10 +user,534,Hildegarde,Stephen,41 +session,534,0,Safari 22,91,2016-08-29 +session,534,1,Safari 19,79,2017-08-24 +session,534,2,Safari 34,84,2017-08-06 +session,534,3,Firefox 40,64,2018-08-19 +user,535,Brendan,Nubia,42 +session,535,0,Safari 37,49,2017-04-25 +session,535,1,Safari 46,94,2018-11-18 +session,535,2,Chrome 15,17,2018-11-01 +session,535,3,Internet Explorer 31,10,2018-03-21 +user,536,Gus,Irish,3 +session,536,0,Internet Explorer 34,29,2018-05-20 +session,536,1,Safari 37,43,2016-10-25 +session,536,2,Safari 35,9,2018-11-11 +session,536,3,Safari 37,37,2017-12-13 +session,536,4,Safari 46,89,2017-05-19 +session,536,5,Firefox 45,4,2016-09-16 +user,537,Lavina,Emely,73 +session,537,0,Internet Explorer 5,27,2019-01-06 +session,537,1,Safari 36,35,2017-01-07 +session,537,2,Safari 30,14,2018-07-08 +session,537,3,Internet Explorer 30,27,2017-08-27 +session,537,4,Safari 46,101,2017-11-19 +user,538,Consuelo,Carmelo,65 +session,538,0,Safari 34,57,2017-08-11 +user,539,Carroll,Lizabeth,7 +session,539,0,Internet Explorer 2,45,2018-04-03 +user,540,Neal,Juan,31 +session,540,0,Chrome 23,35,2018-03-02 +session,540,1,Safari 38,36,2016-06-18 +session,540,2,Safari 10,56,2018-11-18 +session,540,3,Safari 8,51,2018-12-28 +user,541,Ilda,Jerrell,38 +session,541,0,Internet Explorer 8,75,2018-04-09 +session,541,1,Firefox 3,13,2017-05-17 +session,541,2,Chrome 9,7,2018-10-11 +session,541,3,Firefox 38,119,2017-03-17 +user,542,Sterling,Lavona,18 +session,542,0,Internet Explorer 32,107,2017-12-14 +session,542,1,Chrome 47,19,2016-08-30 +session,542,2,Firefox 9,63,2018-06-28 +session,542,3,Chrome 45,50,2016-12-20 +session,542,4,Safari 9,54,2017-08-18 +session,542,5,Internet Explorer 7,72,2016-07-17 +user,543,Debora,Bettye,74 +session,543,0,Internet Explorer 35,88,2017-02-15 +session,543,1,Safari 47,7,2016-11-24 +session,543,2,Firefox 44,62,2017-03-13 +session,543,3,Safari 4,24,2016-09-26 +user,544,Mercedez,Palma,7 +session,544,0,Chrome 19,7,2016-10-07 +session,544,1,Safari 18,31,2016-11-06 +session,544,2,Internet Explorer 8,39,2017-08-12 +session,544,3,Firefox 37,71,2019-01-01 +session,544,4,Chrome 10,85,2018-07-19 +user,545,Ernie,Cheryl,56 +session,545,0,Internet Explorer 40,44,2016-05-29 +session,545,1,Internet Explorer 32,87,2018-05-13 +session,545,2,Safari 36,103,2018-04-26 +user,546,Cayla,Jerrie,97 +session,546,0,Firefox 7,105,2017-05-12 +session,546,1,Chrome 39,1,2019-01-13 +session,546,2,Safari 38,111,2017-03-25 +session,546,3,Internet Explorer 47,87,2018-12-25 +session,546,4,Safari 36,5,2016-07-04 +session,546,5,Safari 13,59,2017-03-08 +session,546,6,Firefox 19,79,2016-08-27 +user,547,Season,Odilia,51 +session,547,0,Internet Explorer 15,30,2016-11-15 +session,547,1,Chrome 41,78,2017-11-04 +session,547,2,Safari 41,73,2018-03-08 +session,547,3,Chrome 2,79,2017-05-06 +session,547,4,Internet Explorer 26,19,2017-09-29 +session,547,5,Safari 13,9,2017-11-21 +user,548,Georgine,Gloria,68 +session,548,0,Safari 2,14,2019-01-02 +session,548,1,Internet Explorer 25,90,2018-07-09 +session,548,2,Safari 22,78,2018-03-14 +session,548,3,Firefox 28,37,2017-12-30 +session,548,4,Internet Explorer 14,3,2018-03-03 +session,548,5,Chrome 10,4,2017-07-18 +user,549,Antoine,Major,62 +session,549,0,Firefox 34,8,2016-06-15 +user,550,Houston,Gale,10 +session,550,0,Internet Explorer 3,46,2017-12-30 +session,550,1,Firefox 7,23,2018-08-06 +session,550,2,Firefox 15,103,2016-06-09 +session,550,3,Internet Explorer 10,86,2017-11-22 +session,550,4,Internet Explorer 6,27,2018-12-20 +session,550,5,Internet Explorer 31,80,2017-02-28 +session,550,6,Safari 25,64,2018-11-05 +session,550,7,Safari 38,84,2018-12-14 +session,550,8,Safari 16,3,2018-10-17 +user,551,Karlyn,Julius,94 +session,551,0,Firefox 16,19,2017-05-21 +session,551,1,Safari 14,100,2017-01-23 +user,552,Demetra,Boris,51 +session,552,0,Safari 4,81,2017-08-02 +session,552,1,Firefox 38,15,2017-01-05 +session,552,2,Chrome 41,27,2017-04-28 +session,552,3,Firefox 21,33,2017-06-13 +user,553,Kerry,Cole,70 +session,553,0,Safari 27,112,2017-07-24 +session,553,1,Internet Explorer 5,6,2016-07-09 +session,553,2,Internet Explorer 18,103,2018-11-29 +session,553,3,Chrome 26,69,2017-04-19 +session,553,4,Internet Explorer 15,67,2018-07-11 +session,553,5,Chrome 11,86,2018-07-29 +session,553,6,Safari 1,15,2016-11-28 +session,553,7,Safari 4,44,2019-02-10 +session,553,8,Internet Explorer 33,87,2019-02-02 +session,553,9,Internet Explorer 24,18,2017-08-12 +user,554,Stewart,Magen,11 +session,554,0,Internet Explorer 39,118,2018-11-01 +session,554,1,Firefox 20,74,2019-02-12 +user,555,Colton,Charline,33 +session,555,0,Internet Explorer 31,58,2017-08-16 +session,555,1,Chrome 47,114,2016-09-21 +session,555,2,Chrome 23,4,2019-02-11 +session,555,3,Internet Explorer 44,91,2016-12-07 +session,555,4,Firefox 25,102,2017-10-12 +session,555,5,Safari 7,44,2018-01-30 +session,555,6,Internet Explorer 9,37,2018-05-21 +session,555,7,Safari 1,83,2016-07-05 +user,556,Warren,Shandra,47 +session,556,0,Chrome 35,53,2016-06-29 +session,556,1,Firefox 21,112,2018-01-07 +session,556,2,Internet Explorer 28,54,2018-09-14 +session,556,3,Safari 21,106,2018-01-13 +session,556,4,Firefox 40,92,2018-10-05 +user,557,Karole,Vicenta,30 +session,557,0,Internet Explorer 39,78,2017-09-07 +session,557,1,Safari 30,57,2018-10-12 +session,557,2,Firefox 43,3,2016-12-24 +session,557,3,Firefox 23,6,2017-04-18 +session,557,4,Internet Explorer 23,2,2017-03-25 +user,558,Dona,Catherina,79 +session,558,0,Firefox 23,67,2019-02-04 +session,558,1,Internet Explorer 18,84,2018-09-24 +session,558,2,Chrome 26,23,2018-05-05 +session,558,3,Safari 47,83,2016-07-29 +session,558,4,Internet Explorer 32,113,2017-07-07 +session,558,5,Chrome 21,52,2018-11-06 +session,558,6,Safari 1,49,2018-05-15 +user,559,Paris,Son,61 +session,559,0,Internet Explorer 34,91,2018-09-13 +session,559,1,Safari 5,60,2017-10-14 +session,559,2,Firefox 1,110,2018-05-27 +session,559,3,Chrome 11,18,2018-06-10 +session,559,4,Chrome 11,25,2017-04-11 +session,559,5,Internet Explorer 40,31,2017-10-02 +session,559,6,Firefox 14,104,2017-06-04 +session,559,7,Chrome 36,81,2018-02-28 +user,560,Benton,Winston,56 +session,560,0,Firefox 15,55,2017-07-28 +session,560,1,Firefox 9,119,2016-08-09 +session,560,2,Internet Explorer 16,80,2018-08-10 +session,560,3,Internet Explorer 13,88,2016-12-03 +session,560,4,Chrome 37,113,2017-11-19 +user,561,Marcellus,Rosanna,28 +session,561,0,Chrome 39,81,2016-09-02 +session,561,1,Firefox 40,6,2017-10-13 +user,562,Gabrielle,Megan,21 +session,562,0,Chrome 2,86,2017-08-20 +session,562,1,Safari 7,95,2018-09-11 +session,562,2,Safari 34,19,2018-04-26 +session,562,3,Firefox 6,99,2018-02-24 +user,563,Milagro,Julie,49 +session,563,0,Safari 5,93,2018-01-12 +user,564,Un,Kenton,87 +session,564,0,Safari 4,44,2017-10-11 +session,564,1,Safari 21,52,2017-06-01 +session,564,2,Chrome 32,36,2016-11-09 +session,564,3,Chrome 14,9,2017-06-06 +session,564,4,Safari 18,7,2018-01-01 +session,564,5,Firefox 1,54,2018-11-17 +session,564,6,Safari 44,50,2018-07-20 +session,564,7,Firefox 33,59,2016-05-24 +user,565,Cecil,Jeanetta,13 +session,565,0,Safari 29,60,2018-01-28 +session,565,1,Firefox 31,9,2018-05-27 +session,565,2,Safari 35,95,2017-09-10 +session,565,3,Internet Explorer 22,10,2017-07-28 +session,565,4,Chrome 9,2,2018-07-24 +session,565,5,Firefox 37,119,2018-08-13 +session,565,6,Firefox 16,14,2017-11-09 +session,565,7,Safari 14,79,2016-10-20 +session,565,8,Chrome 3,32,2017-11-12 +user,566,Ermelinda,Peter,25 +session,566,0,Firefox 5,31,2017-10-18 +user,567,Luciano,Elton,77 +session,567,0,Chrome 39,60,2017-11-05 +session,567,1,Safari 41,105,2017-02-26 +user,568,Loise,Tom,66 +session,568,0,Firefox 47,49,2016-06-19 +session,568,1,Internet Explorer 49,115,2018-09-13 +session,568,2,Internet Explorer 45,45,2018-09-14 +session,568,3,Chrome 4,77,2016-06-15 +session,568,4,Firefox 4,107,2018-01-31 +session,568,5,Firefox 33,117,2018-10-07 +session,568,6,Internet Explorer 21,55,2017-06-29 +session,568,7,Firefox 14,8,2017-06-01 +session,568,8,Chrome 27,3,2016-05-25 +user,569,Carole,Alfonzo,99 +session,569,0,Firefox 45,36,2016-07-12 +session,569,1,Safari 3,29,2017-01-29 +session,569,2,Firefox 24,28,2016-11-11 +session,569,3,Firefox 44,26,2018-09-22 +session,569,4,Chrome 6,48,2017-04-15 +session,569,5,Internet Explorer 25,78,2017-04-19 +session,569,6,Safari 38,24,2018-09-22 +session,569,7,Chrome 32,19,2017-03-14 +user,570,Del,Akilah,30 +session,570,0,Internet Explorer 13,88,2016-09-08 +session,570,1,Chrome 18,60,2017-11-08 +user,571,Bernarda,Dominque,76 +session,571,0,Firefox 5,67,2018-12-31 +session,571,1,Safari 9,113,2017-11-15 +session,571,2,Firefox 10,12,2018-12-11 +session,571,3,Firefox 39,102,2016-06-19 +session,571,4,Firefox 38,104,2017-07-18 +session,571,5,Firefox 28,27,2016-07-02 +session,571,6,Chrome 50,116,2018-03-13 +user,572,Lilla,Chas,44 +session,572,0,Chrome 11,60,2017-08-04 +session,572,1,Internet Explorer 19,39,2018-10-02 +session,572,2,Firefox 46,92,2018-07-02 +session,572,3,Internet Explorer 12,96,2018-11-07 +session,572,4,Safari 5,31,2017-03-28 +session,572,5,Chrome 19,12,2018-02-11 +session,572,6,Chrome 18,27,2016-12-03 +session,572,7,Internet Explorer 25,55,2016-06-27 +session,572,8,Safari 26,90,2018-11-26 +user,573,Steven,Nick,83 +session,573,0,Safari 13,83,2018-06-23 +session,573,1,Safari 23,19,2017-12-20 +session,573,2,Safari 21,96,2018-07-14 +session,573,3,Chrome 29,15,2017-10-20 +user,574,Hiroko,Madelyn,51 +session,574,0,Internet Explorer 12,63,2018-04-11 +session,574,1,Internet Explorer 34,42,2018-05-17 +session,574,2,Chrome 11,35,2017-03-17 +session,574,3,Internet Explorer 50,2,2016-08-06 +session,574,4,Internet Explorer 37,116,2018-05-31 +user,575,Ashly,Bethann,82 +session,575,0,Firefox 40,19,2018-12-05 +session,575,1,Firefox 20,42,2018-08-25 +session,575,2,Chrome 37,79,2018-05-10 +session,575,3,Safari 47,8,2017-01-03 +user,576,Delbert,Kareem,8 +session,576,0,Firefox 43,29,2018-05-26 +user,577,Lawana,Julian,68 +session,577,0,Safari 49,8,2017-04-21 +session,577,1,Chrome 37,29,2017-10-22 +session,577,2,Chrome 47,26,2019-01-29 +user,578,Andree,Samella,62 +session,578,0,Chrome 18,57,2019-01-18 +session,578,1,Chrome 18,45,2017-10-08 +session,578,2,Internet Explorer 40,0,2017-01-08 +session,578,3,Firefox 18,18,2017-10-30 +session,578,4,Safari 44,7,2017-10-08 +user,579,Brian,Leta,85 +session,579,0,Internet Explorer 40,73,2018-01-28 +user,580,Elisa,Hortensia,76 +session,580,0,Firefox 16,35,2017-02-10 +session,580,1,Chrome 13,73,2018-01-05 +session,580,2,Firefox 15,67,2018-07-22 +session,580,3,Chrome 24,88,2018-03-23 +session,580,4,Chrome 17,54,2018-03-29 +session,580,5,Chrome 6,51,2017-06-24 +session,580,6,Chrome 38,117,2016-12-07 +user,581,Polly,Rossana,28 +session,581,0,Safari 2,97,2017-08-03 +session,581,1,Firefox 42,76,2016-08-10 +session,581,2,Firefox 46,41,2018-01-11 +session,581,3,Internet Explorer 33,18,2016-05-22 +session,581,4,Firefox 44,111,2018-07-05 +session,581,5,Chrome 20,23,2016-11-17 +session,581,6,Firefox 38,78,2018-08-01 +session,581,7,Firefox 13,92,2016-09-03 +session,581,8,Safari 47,59,2019-02-06 +session,581,9,Safari 28,35,2017-09-03 +user,582,Berry,Meredith,79 +session,582,0,Firefox 16,104,2018-07-17 +session,582,1,Safari 26,33,2016-06-11 +session,582,2,Firefox 27,26,2018-01-08 +session,582,3,Chrome 42,37,2017-11-05 +user,583,Bud,Ranae,38 +session,583,0,Internet Explorer 3,45,2017-09-22 +session,583,1,Internet Explorer 31,100,2017-04-13 +user,584,Manual,Darius,99 +session,584,0,Safari 44,35,2017-07-15 +session,584,1,Internet Explorer 26,43,2016-09-06 +session,584,2,Firefox 36,65,2016-09-04 +session,584,3,Firefox 34,25,2016-12-19 +session,584,4,Firefox 28,112,2016-12-19 +session,584,5,Internet Explorer 26,25,2016-10-21 +session,584,6,Internet Explorer 35,63,2016-12-26 +session,584,7,Safari 30,116,2016-08-20 +user,585,Teddy,Antony,21 +session,585,0,Firefox 45,115,2017-07-13 +session,585,1,Safari 41,92,2017-01-03 +session,585,2,Internet Explorer 9,85,2018-10-15 +session,585,3,Firefox 21,112,2018-01-01 +session,585,4,Firefox 3,76,2019-01-25 +session,585,5,Firefox 4,119,2017-10-31 +user,586,Erich,Gearldine,96 +session,586,0,Safari 18,11,2018-05-02 +session,586,1,Internet Explorer 20,83,2018-03-24 +session,586,2,Firefox 41,36,2017-01-30 +session,586,3,Chrome 8,115,2017-02-21 +session,586,4,Safari 40,101,2017-06-30 +session,586,5,Safari 43,106,2019-01-13 +session,586,6,Internet Explorer 27,41,2018-05-30 +session,586,7,Safari 10,77,2017-07-19 +session,586,8,Safari 16,65,2017-11-02 +user,587,Ellie,Lorna,93 +session,587,0,Safari 2,65,2018-01-12 +session,587,1,Firefox 48,67,2018-03-03 +session,587,2,Internet Explorer 2,91,2019-02-10 +session,587,3,Firefox 6,33,2016-07-19 +session,587,4,Chrome 36,83,2017-08-25 +session,587,5,Chrome 38,82,2018-05-23 +session,587,6,Chrome 45,50,2017-01-29 +session,587,7,Chrome 47,52,2017-11-18 +session,587,8,Firefox 32,35,2016-09-18 +user,588,Tamar,Rowena,21 +session,588,0,Firefox 28,29,2018-03-03 +session,588,1,Firefox 3,115,2018-08-21 +session,588,2,Chrome 27,95,2018-04-17 +session,588,3,Chrome 8,106,2016-08-04 +session,588,4,Firefox 17,3,2018-12-11 +session,588,5,Chrome 43,38,2018-12-11 +user,589,Beverley,Delsie,6 +session,589,0,Internet Explorer 49,74,2016-12-13 +session,589,1,Firefox 49,100,2018-01-22 +session,589,2,Firefox 14,34,2016-11-19 +session,589,3,Safari 24,68,2019-01-26 +session,589,4,Safari 31,91,2017-12-15 +session,589,5,Chrome 23,14,2017-07-25 +user,590,Joshua,Debbi,2 +session,590,0,Firefox 4,12,2018-06-06 +user,591,Tony,Harris,26 +session,591,0,Firefox 17,30,2019-01-17 +user,592,Damion,Dick,16 +session,592,0,Internet Explorer 49,75,2018-07-10 +session,592,1,Firefox 34,85,2017-01-25 +session,592,2,Chrome 1,53,2017-10-02 +session,592,3,Chrome 12,119,2017-10-16 +user,593,Burton,Delcie,15 +session,593,0,Safari 1,116,2018-07-08 +session,593,1,Firefox 5,21,2016-11-02 +session,593,2,Firefox 50,97,2018-04-03 +session,593,3,Internet Explorer 18,8,2018-02-24 +session,593,4,Internet Explorer 8,9,2018-12-22 +session,593,5,Chrome 43,32,2018-04-20 +user,594,Myung,Michele,28 +session,594,0,Chrome 34,72,2018-08-28 +session,594,1,Chrome 48,70,2018-10-31 +session,594,2,Chrome 9,95,2018-01-30 +session,594,3,Safari 17,2,2018-11-04 +session,594,4,Safari 33,46,2018-05-06 +user,595,Felicitas,Natalie,99 +session,595,0,Chrome 34,17,2017-06-08 +session,595,1,Internet Explorer 3,106,2017-11-21 +session,595,2,Safari 36,23,2017-08-24 +user,596,Delmar,Elsa,47 +session,596,0,Chrome 33,101,2017-11-30 +session,596,1,Internet Explorer 41,61,2017-01-28 +session,596,2,Safari 1,79,2018-08-10 +session,596,3,Firefox 6,24,2018-08-07 +session,596,4,Chrome 29,109,2019-02-11 +session,596,5,Safari 50,41,2018-02-07 +session,596,6,Chrome 23,13,2018-08-31 +user,597,Beulah,Sharyn,85 +session,597,0,Chrome 25,54,2017-12-23 +session,597,1,Chrome 17,43,2019-01-14 +session,597,2,Chrome 15,108,2019-01-05 +session,597,3,Safari 19,67,2018-07-07 +session,597,4,Safari 45,0,2018-11-01 +user,598,Collen,Marylin,39 +session,598,0,Firefox 35,107,2017-12-10 +session,598,1,Chrome 11,86,2018-07-10 +session,598,2,Chrome 40,40,2017-01-31 +session,598,3,Firefox 24,71,2018-05-12 +user,599,Rochel,Trisha,95 +session,599,0,Internet Explorer 49,110,2017-09-10 +session,599,1,Safari 43,53,2016-08-17 +session,599,2,Safari 14,23,2016-06-28 +session,599,3,Firefox 28,34,2017-02-25 +user,600,Roselia,Tamar,33 +session,600,0,Internet Explorer 1,54,2017-03-19 +user,601,Cortney,Rodrigo,63 +session,601,0,Firefox 10,4,2016-10-03 +session,601,1,Internet Explorer 48,97,2017-07-18 +session,601,2,Firefox 39,22,2019-01-27 +session,601,3,Internet Explorer 35,19,2018-07-10 +session,601,4,Firefox 36,113,2016-06-21 +user,602,Jared,Chastity,80 +session,602,0,Chrome 34,35,2016-08-10 +session,602,1,Internet Explorer 30,105,2016-11-01 +session,602,2,Safari 10,73,2017-02-06 +session,602,3,Internet Explorer 45,93,2019-01-01 +session,602,4,Internet Explorer 7,57,2017-08-10 +session,602,5,Chrome 50,32,2017-10-16 +session,602,6,Internet Explorer 39,77,2017-01-08 +user,603,Sydney,Norman,72 +session,603,0,Internet Explorer 6,57,2017-08-24 +session,603,1,Firefox 41,24,2018-04-02 +session,603,2,Chrome 39,106,2017-04-09 +session,603,3,Chrome 12,87,2018-07-05 +user,604,Chiquita,Catherina,80 +session,604,0,Chrome 36,100,2019-01-03 +session,604,1,Firefox 45,40,2016-09-11 +session,604,2,Chrome 4,45,2017-02-11 +session,604,3,Internet Explorer 45,77,2017-10-17 +session,604,4,Internet Explorer 30,80,2018-10-14 +session,604,5,Firefox 8,29,2016-12-22 +session,604,6,Safari 1,51,2018-08-19 +session,604,7,Firefox 15,116,2016-09-04 +session,604,8,Internet Explorer 43,44,2016-09-05 +session,604,9,Internet Explorer 42,111,2018-06-08 +user,605,Alvaro,Teisha,41 +session,605,0,Chrome 17,118,2017-12-02 +session,605,1,Chrome 36,113,2016-09-03 +session,605,2,Internet Explorer 30,2,2017-12-05 +session,605,3,Firefox 16,69,2017-04-27 +session,605,4,Chrome 15,30,2018-10-16 +session,605,5,Chrome 25,81,2016-09-03 +user,606,Danial,Yan,57 +session,606,0,Internet Explorer 17,71,2017-07-24 +session,606,1,Firefox 17,15,2016-12-25 +session,606,2,Chrome 2,80,2018-01-12 +session,606,3,Firefox 10,64,2017-11-18 +session,606,4,Chrome 29,14,2017-02-20 +session,606,5,Safari 18,31,2018-04-21 +session,606,6,Safari 4,98,2019-02-08 +session,606,7,Internet Explorer 27,22,2018-09-13 +session,606,8,Safari 37,10,2016-10-25 +user,607,Emanuel,Kenda,10 +session,607,0,Safari 14,94,2016-09-05 +session,607,1,Chrome 28,83,2018-11-06 +session,607,2,Safari 50,41,2018-08-11 +session,607,3,Chrome 48,109,2018-12-04 +session,607,4,Internet Explorer 38,4,2018-05-20 +session,607,5,Chrome 5,83,2017-10-02 +session,607,6,Internet Explorer 38,33,2017-04-07 +session,607,7,Internet Explorer 38,44,2017-07-11 +session,607,8,Internet Explorer 36,76,2016-10-18 +session,607,9,Internet Explorer 36,41,2018-08-03 +user,608,Cleveland,Ronnie,63 +session,608,0,Chrome 11,20,2017-01-19 +session,608,1,Safari 12,62,2016-06-07 +user,609,Benedict,Hsiu,70 +session,609,0,Chrome 28,22,2018-12-15 +session,609,1,Safari 17,69,2018-06-08 +session,609,2,Safari 1,87,2016-07-18 +session,609,3,Internet Explorer 28,34,2017-03-07 +session,609,4,Safari 36,105,2016-12-22 +session,609,5,Internet Explorer 43,96,2016-09-18 +session,609,6,Chrome 36,39,2017-07-27 +session,609,7,Firefox 7,43,2016-07-31 +session,609,8,Chrome 21,27,2018-05-05 +user,610,Coy,Jann,17 +session,610,0,Internet Explorer 49,27,2016-07-21 +session,610,1,Internet Explorer 16,4,2017-12-18 +session,610,2,Internet Explorer 37,46,2017-08-22 +session,610,3,Internet Explorer 16,68,2018-10-04 +session,610,4,Chrome 8,21,2016-11-25 +session,610,5,Internet Explorer 33,114,2017-10-15 +session,610,6,Safari 36,96,2018-04-01 +session,610,7,Chrome 24,58,2018-08-23 +session,610,8,Firefox 35,29,2017-04-11 +session,610,9,Internet Explorer 2,86,2017-07-31 +user,611,Randy,Catharine,76 +session,611,0,Internet Explorer 35,77,2018-01-19 +session,611,1,Safari 35,40,2017-01-23 +session,611,2,Internet Explorer 43,38,2018-11-01 +user,612,Tyron,Jessica,14 +session,612,0,Chrome 44,50,2016-11-29 +session,612,1,Firefox 14,28,2018-05-02 +session,612,2,Safari 3,85,2018-12-26 +session,612,3,Internet Explorer 26,104,2017-04-02 +session,612,4,Firefox 25,109,2017-10-15 +session,612,5,Internet Explorer 8,97,2017-04-11 +session,612,6,Internet Explorer 39,94,2019-01-10 +session,612,7,Safari 4,101,2018-03-19 +user,613,Jodee,Cinda,69 +session,613,0,Safari 50,67,2018-04-08 +session,613,1,Chrome 9,95,2018-07-18 +session,613,2,Firefox 47,4,2016-10-12 +session,613,3,Firefox 16,78,2016-10-16 +session,613,4,Safari 7,52,2017-01-29 +session,613,5,Internet Explorer 29,117,2017-09-16 +user,614,Rhona,Kizzie,72 +session,614,0,Chrome 19,53,2018-11-02 +session,614,1,Chrome 39,40,2018-08-11 +session,614,2,Chrome 17,88,2018-12-13 +user,615,Myron,Clement,13 +session,615,0,Internet Explorer 13,36,2017-09-21 +session,615,1,Firefox 12,101,2016-10-22 +session,615,2,Internet Explorer 46,44,2017-01-22 +session,615,3,Firefox 22,82,2017-02-25 +session,615,4,Firefox 34,119,2018-01-18 +session,615,5,Firefox 18,84,2018-06-27 +session,615,6,Safari 29,68,2016-09-18 +session,615,7,Safari 16,18,2016-07-23 +user,616,Enedina,Estelle,56 +session,616,0,Firefox 45,42,2016-10-16 +user,617,Burt,Katherine,55 +session,617,0,Internet Explorer 43,72,2018-12-08 +user,618,Deeann,Rosemary,42 +session,618,0,Firefox 8,100,2017-01-27 +session,618,1,Safari 3,63,2017-07-10 +session,618,2,Chrome 7,95,2018-04-21 +session,618,3,Chrome 34,117,2016-10-24 +session,618,4,Internet Explorer 17,56,2017-01-01 +session,618,5,Internet Explorer 41,20,2016-11-21 +session,618,6,Firefox 34,115,2018-10-07 +session,618,7,Safari 2,12,2018-03-16 +session,618,8,Internet Explorer 34,1,2018-05-15 +session,618,9,Chrome 24,1,2017-08-25 +user,619,Rayna,Denese,30 +session,619,0,Internet Explorer 4,0,2016-08-12 +session,619,1,Internet Explorer 16,92,2018-03-22 +session,619,2,Chrome 26,65,2018-05-05 +session,619,3,Internet Explorer 49,19,2016-06-18 +session,619,4,Safari 34,57,2017-02-06 +session,619,5,Chrome 34,7,2018-11-03 +session,619,6,Internet Explorer 18,108,2019-01-21 +session,619,7,Safari 31,79,2018-08-23 +session,619,8,Safari 42,106,2017-06-26 +session,619,9,Chrome 47,57,2017-09-20 +user,620,Margery,Jody,42 +session,620,0,Safari 31,80,2017-03-15 +session,620,1,Safari 34,46,2017-03-28 +session,620,2,Internet Explorer 13,96,2018-11-02 +session,620,3,Internet Explorer 23,87,2018-04-18 +session,620,4,Safari 11,42,2018-12-29 +session,620,5,Chrome 37,56,2018-02-02 +user,621,Demetra,Ka,45 +session,621,0,Chrome 31,104,2017-11-17 +session,621,1,Firefox 40,62,2018-11-05 +session,621,2,Internet Explorer 46,19,2017-10-03 +session,621,3,Internet Explorer 10,26,2018-12-08 +session,621,4,Safari 43,1,2017-05-07 +session,621,5,Internet Explorer 43,67,2018-07-06 +session,621,6,Firefox 1,100,2016-08-22 +session,621,7,Firefox 26,117,2018-07-18 +user,622,Hien,Cory,24 +session,622,0,Chrome 6,56,2017-09-17 +session,622,1,Safari 23,111,2016-11-21 +session,622,2,Chrome 8,107,2017-05-10 +session,622,3,Chrome 8,38,2016-09-15 +session,622,4,Safari 33,79,2017-12-28 +session,622,5,Internet Explorer 20,53,2017-03-23 +session,622,6,Chrome 29,79,2018-04-23 +session,622,7,Chrome 46,75,2016-09-21 +session,622,8,Firefox 48,68,2016-05-25 +user,623,Karissa,Emilie,98 +session,623,0,Internet Explorer 2,67,2016-09-09 +session,623,1,Safari 32,7,2018-12-11 +session,623,2,Safari 34,93,2018-10-12 +user,624,Queen,Matha,12 +session,624,0,Firefox 24,13,2018-08-24 +session,624,1,Firefox 38,56,2018-05-24 +session,624,2,Internet Explorer 42,20,2016-10-13 +session,624,3,Firefox 26,100,2017-07-23 +session,624,4,Safari 29,18,2018-01-24 +session,624,5,Safari 11,79,2018-11-03 +session,624,6,Safari 12,43,2016-07-11 +session,624,7,Chrome 24,115,2017-06-21 +user,625,Loren,Rikki,10 +session,625,0,Safari 48,87,2016-08-31 +session,625,1,Safari 9,96,2018-03-01 +session,625,2,Internet Explorer 6,103,2016-06-07 +session,625,3,Safari 38,67,2016-08-23 +session,625,4,Chrome 36,71,2017-06-17 +session,625,5,Internet Explorer 28,101,2016-09-28 +session,625,6,Internet Explorer 7,85,2017-08-23 +session,625,7,Firefox 15,10,2016-08-29 +session,625,8,Chrome 30,36,2016-05-24 +user,626,Carman,Jessie,12 +session,626,0,Safari 1,27,2016-11-15 +user,627,Kyong,Gertie,28 +session,627,0,Firefox 50,13,2018-09-15 +session,627,1,Chrome 13,42,2016-06-30 +session,627,2,Firefox 46,104,2016-12-10 +session,627,3,Firefox 2,29,2016-07-04 +session,627,4,Internet Explorer 35,80,2017-02-20 +session,627,5,Safari 22,2,2016-11-17 +session,627,6,Internet Explorer 9,19,2017-09-04 +user,628,Clarine,Adrian,64 +session,628,0,Firefox 17,55,2017-03-13 +session,628,1,Safari 46,59,2016-07-14 +session,628,2,Safari 40,71,2016-10-07 +session,628,3,Firefox 32,79,2018-06-21 +session,628,4,Chrome 37,41,2017-05-16 +session,628,5,Firefox 4,59,2018-02-09 +session,628,6,Internet Explorer 38,37,2017-07-22 +user,629,Diane,Lakeisha,5 +session,629,0,Internet Explorer 16,108,2017-08-15 +session,629,1,Chrome 22,86,2018-12-04 +session,629,2,Firefox 18,68,2017-02-10 +session,629,3,Safari 23,39,2017-11-09 +user,630,Olene,Leann,77 +session,630,0,Internet Explorer 30,54,2017-07-06 +session,630,1,Internet Explorer 47,74,2017-01-24 +user,631,Kim,Humberto,5 +session,631,0,Firefox 6,47,2018-07-25 +session,631,1,Safari 30,46,2018-07-07 +session,631,2,Firefox 8,93,2016-12-06 +session,631,3,Firefox 49,65,2018-07-23 +session,631,4,Chrome 31,37,2018-10-14 +session,631,5,Firefox 46,110,2018-04-21 +session,631,6,Firefox 37,8,2017-03-19 +session,631,7,Safari 18,109,2016-08-27 +user,632,Refugio,Alexis,81 +session,632,0,Chrome 30,108,2017-08-29 +session,632,1,Safari 37,48,2019-02-05 +session,632,2,Chrome 27,61,2016-10-23 +session,632,3,Internet Explorer 48,33,2018-03-07 +user,633,Leopoldo,Shavon,5 +session,633,0,Internet Explorer 30,56,2017-04-17 +session,633,1,Safari 20,90,2017-03-29 +session,633,2,Safari 32,80,2017-02-08 +session,633,3,Firefox 12,119,2017-11-12 +session,633,4,Chrome 13,15,2016-08-30 +session,633,5,Chrome 20,16,2019-01-03 +session,633,6,Internet Explorer 48,96,2017-10-17 +session,633,7,Safari 9,70,2017-05-27 +session,633,8,Chrome 11,24,2017-07-20 +session,633,9,Safari 11,25,2017-01-23 +user,634,Dominique,Victorina,64 +session,634,0,Safari 27,72,2017-07-23 +session,634,1,Chrome 3,116,2018-04-22 +user,635,Frank,Kelsey,96 +session,635,0,Firefox 48,106,2017-06-11 +session,635,1,Chrome 2,48,2017-10-21 +session,635,2,Chrome 25,114,2017-09-15 +session,635,3,Safari 7,110,2018-05-02 +session,635,4,Chrome 31,18,2018-07-14 +session,635,5,Firefox 42,56,2018-06-16 +session,635,6,Internet Explorer 24,17,2016-11-26 +session,635,7,Chrome 18,78,2018-03-15 +session,635,8,Internet Explorer 29,33,2016-12-24 +user,636,Fredrick,Gus,40 +session,636,0,Firefox 43,43,2017-09-25 +session,636,1,Safari 25,6,2017-10-14 +session,636,2,Safari 33,62,2018-04-01 +session,636,3,Safari 18,19,2016-09-14 +session,636,4,Chrome 1,60,2018-12-13 +session,636,5,Chrome 42,88,2017-08-25 +session,636,6,Safari 9,55,2017-10-27 +session,636,7,Chrome 49,32,2018-06-15 +session,636,8,Safari 45,113,2018-10-29 +session,636,9,Internet Explorer 14,24,2018-08-28 +user,637,Jody,Patrick,5 +session,637,0,Safari 12,75,2017-07-12 +user,638,Georgene,Na,30 +session,638,0,Internet Explorer 33,80,2018-05-06 +session,638,1,Safari 47,91,2018-07-08 +user,639,Jackelyn,Tawny,49 +session,639,0,Firefox 33,109,2016-08-10 +session,639,1,Chrome 12,8,2017-10-25 +session,639,2,Firefox 33,114,2017-01-13 +session,639,3,Firefox 38,73,2018-08-18 +user,640,Nisha,Robena,84 +session,640,0,Safari 11,70,2018-11-08 +session,640,1,Internet Explorer 16,98,2016-09-30 +session,640,2,Firefox 31,109,2017-10-04 +session,640,3,Safari 6,41,2016-07-22 +session,640,4,Internet Explorer 50,62,2016-09-03 +session,640,5,Internet Explorer 29,3,2017-12-21 +session,640,6,Chrome 40,73,2018-03-30 +session,640,7,Safari 15,48,2017-01-13 +session,640,8,Safari 33,103,2016-12-31 +session,640,9,Internet Explorer 32,57,2018-06-25 +user,641,Carrol,Gerald,27 +session,641,0,Chrome 36,16,2017-01-13 +session,641,1,Chrome 37,91,2018-11-06 +user,642,Jeffry,Sabrina,63 +session,642,0,Safari 26,66,2018-10-31 +session,642,1,Firefox 41,64,2017-04-04 +session,642,2,Safari 45,15,2016-10-09 +user,643,Fern,Julian,56 +session,643,0,Firefox 28,46,2017-01-12 +session,643,1,Safari 21,49,2016-07-24 +session,643,2,Internet Explorer 24,39,2018-12-18 +session,643,3,Firefox 7,97,2018-03-03 +session,643,4,Chrome 27,44,2018-08-03 +session,643,5,Internet Explorer 24,86,2016-11-23 +session,643,6,Chrome 22,62,2016-07-15 +session,643,7,Chrome 48,56,2018-06-21 +user,644,Lola,Nelly,94 +session,644,0,Chrome 33,111,2017-02-07 +session,644,1,Chrome 37,83,2016-08-10 +session,644,2,Firefox 35,50,2018-12-10 +session,644,3,Chrome 7,22,2018-01-24 +session,644,4,Safari 31,68,2017-03-28 +session,644,5,Chrome 46,11,2016-11-05 +session,644,6,Firefox 48,114,2016-12-10 +user,645,Lurlene,Amee,49 +session,645,0,Chrome 49,75,2017-05-03 +session,645,1,Internet Explorer 46,4,2019-01-10 +session,645,2,Internet Explorer 40,70,2017-06-20 +user,646,Cassy,Jim,40 +session,646,0,Firefox 14,60,2016-10-19 +session,646,1,Firefox 8,119,2018-12-06 +session,646,2,Chrome 34,118,2019-01-21 +session,646,3,Safari 36,18,2017-07-07 +session,646,4,Internet Explorer 16,107,2016-08-23 +session,646,5,Safari 19,25,2018-05-03 +user,647,Bethel,Hassie,23 +session,647,0,Firefox 32,108,2017-11-12 +session,647,1,Safari 41,114,2016-05-31 +session,647,2,Chrome 12,61,2019-01-14 +session,647,3,Firefox 38,109,2017-11-22 +session,647,4,Internet Explorer 13,95,2016-10-17 +session,647,5,Firefox 16,18,2017-02-07 +session,647,6,Firefox 27,104,2018-07-18 +session,647,7,Safari 32,114,2017-01-14 +user,648,Roxane,Crystal,66 +session,648,0,Firefox 43,98,2018-06-24 +user,649,Kristie,Jerilyn,51 +session,649,0,Internet Explorer 37,88,2017-07-24 +session,649,1,Chrome 49,44,2016-11-01 +session,649,2,Firefox 39,32,2017-12-11 +session,649,3,Internet Explorer 27,18,2016-06-11 +session,649,4,Internet Explorer 35,57,2017-01-19 +session,649,5,Firefox 20,68,2018-03-24 +user,650,Micheal,Pearly,58 +session,650,0,Chrome 15,16,2016-09-03 +session,650,1,Safari 30,4,2016-07-29 +session,650,2,Internet Explorer 20,102,2016-08-07 +session,650,3,Firefox 36,3,2017-04-19 +session,650,4,Internet Explorer 26,69,2018-12-15 +session,650,5,Safari 18,113,2017-09-27 +user,651,Gracie,Hollis,29 +session,651,0,Internet Explorer 35,76,2017-01-06 +session,651,1,Firefox 43,11,2017-03-13 +user,652,Broderick,Shaneka,9 +session,652,0,Chrome 9,56,2018-11-30 +session,652,1,Internet Explorer 44,52,2018-06-10 +session,652,2,Chrome 46,25,2017-12-04 +session,652,3,Internet Explorer 22,109,2017-04-29 +session,652,4,Firefox 50,14,2017-10-21 +session,652,5,Firefox 36,90,2017-10-01 +session,652,6,Firefox 9,112,2018-01-20 +session,652,7,Safari 7,101,2017-08-27 +user,653,Floyd,Virgina,4 +session,653,0,Firefox 26,81,2018-02-28 +session,653,1,Internet Explorer 5,30,2018-08-26 +session,653,2,Firefox 19,72,2016-06-10 +session,653,3,Safari 10,89,2018-07-22 +session,653,4,Firefox 23,57,2018-10-21 +session,653,5,Safari 2,10,2016-11-15 +user,654,Carline,Shirley,24 +session,654,0,Safari 28,33,2018-09-19 +session,654,1,Safari 30,36,2017-01-17 +session,654,2,Safari 8,90,2016-10-09 +session,654,3,Chrome 45,27,2017-11-22 +session,654,4,Safari 6,111,2018-04-02 +user,655,William,Joella,50 +session,655,0,Internet Explorer 45,97,2019-01-17 +user,656,Jules,Vada,65 +session,656,0,Internet Explorer 26,20,2018-08-11 +session,656,1,Safari 10,113,2017-04-27 +session,656,2,Safari 35,42,2019-01-31 +session,656,3,Chrome 15,26,2016-07-29 +session,656,4,Firefox 20,23,2017-02-08 +session,656,5,Internet Explorer 34,16,2018-09-26 +session,656,6,Chrome 16,4,2017-07-13 +user,657,Tamesha,Jill,16 +session,657,0,Internet Explorer 3,76,2018-01-13 +session,657,1,Chrome 32,56,2017-12-09 +session,657,2,Firefox 42,66,2016-12-03 +session,657,3,Safari 13,48,2017-02-05 +session,657,4,Internet Explorer 42,107,2018-03-15 +session,657,5,Firefox 27,27,2017-06-04 +user,658,Amos,Arianna,27 +session,658,0,Internet Explorer 32,84,2017-06-13 +session,658,1,Chrome 19,72,2018-06-16 +session,658,2,Firefox 30,33,2017-03-24 +session,658,3,Internet Explorer 38,44,2016-11-15 +session,658,4,Chrome 20,42,2017-10-11 +user,659,Neil,Katina,10 +session,659,0,Chrome 31,78,2018-05-28 +session,659,1,Chrome 38,3,2018-03-13 +session,659,2,Internet Explorer 23,116,2016-09-01 +session,659,3,Internet Explorer 48,18,2017-07-29 +session,659,4,Chrome 23,105,2017-07-30 +session,659,5,Internet Explorer 4,31,2017-06-19 +session,659,6,Internet Explorer 40,52,2019-01-19 +user,660,Wilford,Keri,8 +session,660,0,Firefox 21,107,2016-11-10 +session,660,1,Internet Explorer 18,43,2017-11-28 +session,660,2,Chrome 9,39,2017-05-04 +session,660,3,Firefox 6,68,2018-02-15 +session,660,4,Safari 22,75,2018-02-02 +session,660,5,Chrome 6,96,2016-12-06 +session,660,6,Chrome 7,113,2017-10-23 +session,660,7,Firefox 13,108,2016-06-21 +session,660,8,Safari 43,88,2017-06-09 +session,660,9,Safari 24,55,2016-09-06 +user,661,Aide,Elli,44 +session,661,0,Internet Explorer 3,20,2017-11-04 +session,661,1,Safari 28,88,2016-10-01 +session,661,2,Safari 47,79,2017-04-21 +session,661,3,Firefox 25,26,2017-12-14 +session,661,4,Safari 19,65,2017-08-19 +session,661,5,Firefox 6,82,2017-11-28 +session,661,6,Safari 27,108,2018-09-02 +user,662,Roy,Justina,37 +session,662,0,Safari 48,100,2017-09-18 +session,662,1,Internet Explorer 47,94,2018-08-21 +session,662,2,Internet Explorer 44,93,2017-04-15 +session,662,3,Chrome 47,83,2016-12-06 +session,662,4,Safari 30,115,2017-02-04 +session,662,5,Firefox 23,62,2016-12-13 +session,662,6,Firefox 38,94,2017-03-30 +session,662,7,Internet Explorer 19,37,2017-07-02 +session,662,8,Safari 45,106,2018-05-13 +user,663,Lourie,Maxine,18 +session,663,0,Safari 3,115,2017-01-05 +session,663,1,Firefox 36,6,2016-11-17 +user,664,Brook,Jeanene,34 +session,664,0,Internet Explorer 25,21,2017-05-27 +session,664,1,Chrome 44,24,2016-07-19 +session,664,2,Chrome 27,11,2018-04-15 +session,664,3,Firefox 2,100,2017-06-10 +session,664,4,Internet Explorer 31,31,2017-04-03 +session,664,5,Firefox 47,117,2018-10-20 +session,664,6,Chrome 43,36,2018-02-06 +user,665,Eddie,Marion,98 +session,665,0,Safari 38,79,2017-02-03 +session,665,1,Chrome 40,50,2017-08-27 +session,665,2,Safari 21,62,2016-07-31 +session,665,3,Firefox 46,69,2018-05-22 +session,665,4,Chrome 47,114,2016-05-21 +session,665,5,Firefox 49,42,2016-09-23 +session,665,6,Internet Explorer 8,50,2016-12-20 +session,665,7,Internet Explorer 14,74,2018-02-07 +session,665,8,Chrome 37,52,2018-09-20 +user,666,Amie,Pierre,43 +session,666,0,Chrome 29,25,2016-07-11 +session,666,1,Safari 49,114,2016-06-28 +session,666,2,Firefox 24,76,2016-12-27 +session,666,3,Chrome 32,4,2016-08-12 +session,666,4,Internet Explorer 28,119,2018-08-13 +session,666,5,Safari 24,98,2017-09-04 +session,666,6,Internet Explorer 10,71,2016-10-18 +session,666,7,Safari 48,61,2018-03-10 +user,667,Tobias,Mel,7 +session,667,0,Firefox 22,71,2016-12-18 +session,667,1,Internet Explorer 27,84,2018-04-12 +session,667,2,Firefox 41,97,2018-05-27 +session,667,3,Safari 3,82,2017-01-01 +session,667,4,Firefox 37,98,2016-12-23 +session,667,5,Firefox 7,28,2016-07-16 +session,667,6,Safari 33,34,2017-03-06 +session,667,7,Firefox 35,32,2018-08-19 +session,667,8,Safari 13,35,2017-06-18 +session,667,9,Internet Explorer 43,56,2017-07-25 +user,668,Claude,Domenic,91 +session,668,0,Internet Explorer 49,88,2017-03-01 +session,668,1,Firefox 1,32,2018-02-25 +session,668,2,Safari 24,47,2018-09-08 +session,668,3,Safari 14,81,2018-04-02 +session,668,4,Internet Explorer 40,111,2016-05-21 +session,668,5,Safari 29,31,2017-05-03 +session,668,6,Safari 25,36,2018-07-05 +user,669,Eusebio,Mertie,1 +session,669,0,Internet Explorer 31,113,2017-06-24 +session,669,1,Safari 25,109,2018-07-05 +session,669,2,Internet Explorer 21,52,2019-01-20 +session,669,3,Firefox 46,84,2017-02-28 +session,669,4,Firefox 37,77,2018-02-12 +session,669,5,Internet Explorer 12,10,2017-02-23 +session,669,6,Chrome 18,62,2018-03-23 +session,669,7,Firefox 13,22,2017-08-13 +session,669,8,Firefox 30,13,2018-05-04 +session,669,9,Safari 20,22,2017-07-04 +user,670,Barrett,Velda,64 +session,670,0,Chrome 30,113,2017-03-01 +session,670,1,Chrome 36,86,2018-12-25 +session,670,2,Internet Explorer 5,30,2018-05-20 +session,670,3,Internet Explorer 41,90,2016-05-31 +user,671,Freddy,Roger,38 +session,671,0,Chrome 30,42,2017-06-17 +session,671,1,Chrome 17,28,2019-01-02 +user,672,Benjamin,Louise,13 +session,672,0,Chrome 36,117,2017-08-14 +user,673,Jenice,Eugenie,64 +session,673,0,Chrome 30,107,2016-09-02 +session,673,1,Safari 16,50,2017-12-25 +user,674,Angelo,Angelica,99 +session,674,0,Firefox 26,49,2017-05-10 +session,674,1,Chrome 6,45,2017-11-20 +session,674,2,Chrome 50,90,2016-08-07 +session,674,3,Internet Explorer 20,49,2017-11-07 +session,674,4,Chrome 49,28,2016-05-30 +session,674,5,Chrome 31,18,2017-03-22 +session,674,6,Internet Explorer 35,78,2017-02-03 +session,674,7,Safari 28,94,2018-09-20 +user,675,Lemuel,Laila,13 +session,675,0,Firefox 44,40,2017-11-28 +session,675,1,Chrome 42,12,2016-06-04 +session,675,2,Safari 22,27,2018-02-14 +session,675,3,Firefox 13,88,2016-09-09 +user,676,Tiny,Kathrine,63 +session,676,0,Safari 45,27,2018-01-25 +session,676,1,Chrome 2,79,2016-08-03 +session,676,2,Safari 3,87,2016-12-24 +session,676,3,Internet Explorer 44,27,2017-02-01 +session,676,4,Chrome 19,18,2017-01-02 +session,676,5,Firefox 5,105,2017-04-14 +user,677,Vernia,Lacey,21 +session,677,0,Chrome 38,44,2017-01-29 +user,678,Wilfred,Gracia,48 +session,678,0,Firefox 50,87,2016-10-05 +user,679,Tabetha,Carletta,36 +session,679,0,Safari 8,70,2016-07-24 +session,679,1,Internet Explorer 1,113,2018-09-08 +session,679,2,Chrome 18,61,2018-08-07 +session,679,3,Chrome 18,64,2017-09-16 +user,680,Madelyn,Trang,18 +session,680,0,Internet Explorer 45,72,2019-02-02 +session,680,1,Firefox 40,51,2016-09-05 +session,680,2,Firefox 42,71,2018-12-13 +session,680,3,Chrome 37,110,2017-01-01 +session,680,4,Internet Explorer 18,93,2016-08-08 +session,680,5,Chrome 13,41,2017-12-28 +session,680,6,Firefox 48,58,2017-03-10 +session,680,7,Safari 22,47,2016-11-13 +session,680,8,Chrome 34,72,2017-03-01 +session,680,9,Firefox 48,90,2018-02-01 +user,681,Porfirio,Zola,14 +session,681,0,Chrome 8,19,2018-02-23 +session,681,1,Chrome 32,86,2018-03-01 +user,682,Willis,Wendell,81 +session,682,0,Firefox 49,32,2018-08-14 +user,683,Dylan,Collin,5 +session,683,0,Internet Explorer 19,25,2016-05-31 +session,683,1,Safari 40,60,2018-01-26 +session,683,2,Safari 25,89,2018-09-07 +session,683,3,Chrome 49,58,2017-03-31 +user,684,Miki,Leopoldo,67 +session,684,0,Internet Explorer 38,41,2017-10-22 +user,685,Leonardo,Shawnee,14 +session,685,0,Safari 31,70,2018-07-24 +session,685,1,Safari 14,80,2018-09-11 +session,685,2,Chrome 7,105,2016-06-03 +session,685,3,Chrome 14,62,2019-01-05 +session,685,4,Chrome 4,84,2016-07-03 +session,685,5,Firefox 36,74,2017-09-18 +session,685,6,Chrome 33,21,2018-09-14 +user,686,Wesley,Marilee,72 +session,686,0,Chrome 47,11,2018-04-18 +session,686,1,Firefox 37,54,2018-03-29 +session,686,2,Chrome 47,70,2016-09-17 +session,686,3,Safari 37,95,2017-01-29 +session,686,4,Safari 24,55,2017-05-17 +session,686,5,Chrome 32,6,2016-07-21 +session,686,6,Chrome 10,73,2017-07-08 +user,687,Patience,Bao,11 +session,687,0,Internet Explorer 3,34,2018-12-28 +session,687,1,Internet Explorer 5,110,2018-04-03 +session,687,2,Safari 23,106,2017-05-18 +session,687,3,Chrome 14,15,2017-03-23 +session,687,4,Internet Explorer 32,90,2018-10-14 +session,687,5,Internet Explorer 38,93,2018-03-04 +user,688,Herbert,Lennie,69 +session,688,0,Firefox 37,112,2016-11-06 +session,688,1,Internet Explorer 32,10,2018-07-03 +session,688,2,Safari 43,111,2018-10-11 +session,688,3,Chrome 36,107,2018-03-30 +session,688,4,Chrome 25,103,2017-04-06 +session,688,5,Internet Explorer 2,59,2017-09-19 +session,688,6,Safari 45,34,2018-02-17 +session,688,7,Internet Explorer 15,64,2016-09-25 +session,688,8,Chrome 45,31,2016-05-30 +session,688,9,Internet Explorer 30,57,2017-02-19 +user,689,Rodolfo,Dionne,58 +session,689,0,Internet Explorer 3,41,2017-11-09 +session,689,1,Safari 48,30,2018-03-28 +session,689,2,Internet Explorer 39,91,2016-06-05 +session,689,3,Firefox 25,56,2019-01-26 +session,689,4,Safari 30,3,2016-09-21 +session,689,5,Chrome 16,41,2018-11-16 +session,689,6,Chrome 48,23,2018-05-05 +session,689,7,Chrome 28,78,2017-08-13 +session,689,8,Safari 41,66,2017-07-10 +user,690,Fallon,Tarra,65 +session,690,0,Safari 21,25,2017-08-15 +session,690,1,Internet Explorer 30,77,2017-12-01 +session,690,2,Safari 20,57,2017-02-25 +user,691,Randolph,Gisele,81 +session,691,0,Internet Explorer 37,70,2018-02-18 +session,691,1,Firefox 47,87,2018-05-14 +session,691,2,Safari 10,9,2017-09-19 +session,691,3,Safari 26,116,2017-10-23 +user,692,Andra,Narcisa,8 +session,692,0,Firefox 49,29,2018-12-29 +session,692,1,Safari 32,8,2017-11-19 +session,692,2,Internet Explorer 3,5,2018-08-23 +session,692,3,Firefox 18,87,2018-06-16 +session,692,4,Safari 48,86,2018-07-14 +session,692,5,Internet Explorer 19,119,2017-12-10 +session,692,6,Safari 14,111,2018-08-29 +session,692,7,Safari 47,94,2018-10-29 +session,692,8,Safari 6,71,2018-08-07 +session,692,9,Safari 46,69,2018-05-13 +user,693,Angelena,Hollis,80 +session,693,0,Firefox 31,97,2018-08-15 +session,693,1,Firefox 3,100,2017-12-13 +session,693,2,Chrome 26,87,2017-07-26 +session,693,3,Firefox 23,27,2016-08-12 +session,693,4,Firefox 17,21,2018-10-05 +session,693,5,Safari 16,79,2018-06-04 +session,693,6,Safari 26,82,2018-08-01 +session,693,7,Internet Explorer 35,0,2018-02-28 +user,694,Alvaro,Herb,20 +session,694,0,Firefox 7,68,2018-05-02 +session,694,1,Firefox 45,86,2017-02-06 +session,694,2,Firefox 44,99,2018-10-19 +session,694,3,Safari 37,8,2016-06-02 +session,694,4,Chrome 42,8,2018-03-13 +session,694,5,Chrome 4,62,2018-04-06 +session,694,6,Internet Explorer 29,40,2016-07-25 +session,694,7,Firefox 27,87,2018-03-11 +user,695,Teri,Deangelo,36 +session,695,0,Safari 45,90,2017-02-11 +session,695,1,Safari 9,86,2017-08-25 +session,695,2,Internet Explorer 4,36,2016-08-02 +session,695,3,Internet Explorer 46,16,2017-10-01 +session,695,4,Safari 39,15,2016-08-10 +user,696,Sara,Aubrey,71 +session,696,0,Firefox 12,16,2017-02-11 +session,696,1,Firefox 37,12,2018-05-31 +session,696,2,Internet Explorer 32,86,2017-08-21 +session,696,3,Firefox 41,14,2016-11-22 +session,696,4,Chrome 2,53,2016-08-30 +session,696,5,Internet Explorer 33,111,2018-09-28 +session,696,6,Internet Explorer 44,20,2016-06-23 +user,697,Dino,Isreal,89 +session,697,0,Internet Explorer 26,101,2018-07-18 +session,697,1,Internet Explorer 21,19,2018-12-30 +session,697,2,Chrome 3,29,2017-08-28 +session,697,3,Firefox 39,66,2016-08-20 +session,697,4,Chrome 25,62,2017-07-28 +session,697,5,Chrome 42,106,2016-10-02 +session,697,6,Chrome 16,46,2017-10-02 +session,697,7,Safari 5,89,2016-11-10 +session,697,8,Chrome 6,66,2018-05-08 +session,697,9,Internet Explorer 45,113,2017-08-05 +user,698,Rubie,Nanci,50 +session,698,0,Firefox 47,90,2016-06-18 +session,698,1,Firefox 18,2,2018-05-27 +session,698,2,Safari 18,21,2017-02-02 +session,698,3,Chrome 36,32,2017-12-06 +session,698,4,Firefox 42,26,2016-11-24 +session,698,5,Firefox 11,23,2018-11-14 +session,698,6,Internet Explorer 28,19,2018-10-14 +session,698,7,Safari 19,26,2018-12-29 +user,699,Kieth,Megan,90 +session,699,0,Chrome 26,53,2018-03-17 +session,699,1,Firefox 11,92,2016-06-13 +session,699,2,Chrome 17,36,2018-03-07 +session,699,3,Internet Explorer 45,85,2016-08-10 +session,699,4,Chrome 39,16,2017-09-22 +session,699,5,Safari 18,87,2018-11-26 +session,699,6,Safari 1,46,2016-07-20 +user,700,Audie,Oscar,34 +session,700,0,Safari 42,39,2017-10-02 +session,700,1,Chrome 40,23,2018-10-08 +session,700,2,Firefox 36,68,2016-11-10 +session,700,3,Safari 37,42,2019-01-06 +session,700,4,Safari 46,114,2018-09-28 +session,700,5,Safari 9,27,2018-09-27 +session,700,6,Chrome 29,15,2016-06-12 +session,700,7,Chrome 7,57,2017-03-02 +user,701,Jamar,Yuko,99 +session,701,0,Firefox 6,99,2016-08-26 +session,701,1,Chrome 49,79,2017-12-24 +user,702,Tania,Joesph,97 +session,702,0,Safari 16,29,2018-01-29 +session,702,1,Safari 26,92,2018-01-14 +session,702,2,Firefox 25,110,2018-08-11 +session,702,3,Firefox 30,93,2017-12-14 +session,702,4,Safari 35,5,2018-09-03 +session,702,5,Chrome 37,77,2016-09-19 +session,702,6,Safari 14,72,2016-07-27 +session,702,7,Safari 49,21,2018-08-31 +session,702,8,Internet Explorer 20,93,2018-07-06 +user,703,Bridget,Brain,52 +session,703,0,Internet Explorer 49,25,2017-04-05 +session,703,1,Chrome 21,97,2018-04-13 +session,703,2,Firefox 14,78,2016-09-29 +session,703,3,Internet Explorer 1,92,2016-08-08 +session,703,4,Firefox 22,77,2018-12-16 +session,703,5,Safari 20,15,2018-02-23 +session,703,6,Chrome 39,28,2017-08-21 +session,703,7,Safari 30,83,2017-12-12 +user,704,Khalilah,Jenni,96 +session,704,0,Firefox 13,94,2017-05-07 +session,704,1,Safari 43,5,2017-05-30 +session,704,2,Safari 7,41,2017-08-22 +session,704,3,Firefox 25,56,2017-09-13 +session,704,4,Safari 17,95,2017-09-15 +session,704,5,Internet Explorer 7,116,2017-09-01 +session,704,6,Firefox 44,17,2016-10-01 +session,704,7,Internet Explorer 2,27,2016-11-19 +user,705,Armand,Galen,4 +session,705,0,Safari 3,101,2016-08-27 +session,705,1,Internet Explorer 37,70,2017-03-22 +user,706,Gracia,Ayana,54 +session,706,0,Firefox 18,90,2019-01-04 +session,706,1,Chrome 46,51,2019-02-11 +session,706,2,Firefox 33,114,2016-10-06 +session,706,3,Chrome 24,26,2018-11-06 +session,706,4,Firefox 28,35,2018-10-22 +session,706,5,Internet Explorer 36,83,2018-05-22 +session,706,6,Firefox 34,16,2017-02-06 +session,706,7,Chrome 48,8,2016-12-23 +session,706,8,Firefox 26,34,2017-11-17 +session,706,9,Internet Explorer 13,56,2017-09-18 +user,707,Sandie,Temeka,26 +session,707,0,Chrome 23,5,2018-05-31 +session,707,1,Internet Explorer 32,62,2016-06-15 +session,707,2,Chrome 12,74,2018-12-12 +session,707,3,Safari 15,6,2017-09-14 +session,707,4,Chrome 27,7,2018-12-28 +user,708,Merlin,Masako,80 +session,708,0,Safari 19,71,2018-06-02 +session,708,1,Safari 35,17,2018-04-11 +user,709,Marion,Floria,64 +session,709,0,Firefox 15,43,2018-10-22 +session,709,1,Safari 11,82,2016-06-04 +session,709,2,Firefox 39,47,2018-05-03 +session,709,3,Chrome 43,91,2018-04-04 +session,709,4,Chrome 49,103,2016-07-09 +session,709,5,Internet Explorer 36,114,2017-10-15 +session,709,6,Safari 44,95,2018-08-28 +session,709,7,Internet Explorer 31,46,2018-12-09 +session,709,8,Chrome 33,58,2019-01-24 +user,710,Louis,Georgianna,83 +session,710,0,Firefox 27,30,2016-09-26 +session,710,1,Internet Explorer 29,96,2017-02-12 +session,710,2,Safari 26,111,2016-10-04 +session,710,3,Safari 48,118,2017-11-21 +session,710,4,Safari 8,104,2018-07-28 +session,710,5,Safari 49,8,2016-09-14 +session,710,6,Safari 7,118,2018-10-04 +user,711,Florinda,Tashina,48 +session,711,0,Chrome 30,94,2017-04-27 +user,712,Song,Devon,41 +session,712,0,Internet Explorer 25,97,2018-08-23 +session,712,1,Internet Explorer 48,18,2018-07-25 +session,712,2,Internet Explorer 35,118,2016-11-12 +session,712,3,Firefox 43,74,2016-12-29 +session,712,4,Firefox 6,49,2018-11-03 +user,713,Era,Andera,62 +session,713,0,Firefox 18,93,2017-01-01 +session,713,1,Firefox 34,26,2018-03-19 +session,713,2,Safari 48,53,2016-10-28 +session,713,3,Safari 50,34,2017-03-02 +session,713,4,Chrome 34,90,2018-06-09 +user,714,Lucilla,Albertha,49 +session,714,0,Safari 29,72,2017-06-02 +session,714,1,Internet Explorer 32,47,2019-01-05 +session,714,2,Internet Explorer 9,61,2016-11-04 +session,714,3,Firefox 12,114,2016-09-17 +session,714,4,Chrome 50,17,2018-10-29 +session,714,5,Chrome 3,45,2017-07-30 +user,715,Magen,Ardith,41 +session,715,0,Internet Explorer 36,43,2018-02-08 +session,715,1,Chrome 31,71,2017-06-12 +session,715,2,Chrome 8,70,2018-01-15 +session,715,3,Internet Explorer 32,66,2017-10-12 +session,715,4,Safari 12,2,2018-07-13 +session,715,5,Safari 4,118,2017-09-26 +user,716,Kati,Brittney,8 +session,716,0,Safari 11,72,2016-10-31 +session,716,1,Chrome 24,44,2017-03-15 +session,716,2,Firefox 24,66,2016-11-27 +session,716,3,Chrome 23,74,2016-06-07 +session,716,4,Safari 34,85,2018-06-08 +session,716,5,Chrome 45,111,2017-01-04 +session,716,6,Chrome 9,87,2018-01-28 +session,716,7,Internet Explorer 44,61,2017-06-30 +user,717,Alysha,Avril,29 +session,717,0,Firefox 29,47,2016-10-15 +session,717,1,Firefox 21,9,2018-05-13 +session,717,2,Chrome 2,93,2018-08-04 +session,717,3,Chrome 36,24,2017-05-08 +session,717,4,Safari 42,49,2018-02-26 +session,717,5,Chrome 6,59,2017-05-24 +session,717,6,Firefox 4,20,2017-08-16 +session,717,7,Chrome 40,93,2017-12-17 +session,717,8,Internet Explorer 28,14,2017-09-10 +session,717,9,Safari 44,79,2018-04-29 +user,718,Felton,Reiko,99 +session,718,0,Firefox 20,31,2016-11-18 +session,718,1,Safari 5,77,2017-02-15 +session,718,2,Internet Explorer 25,100,2018-12-12 +session,718,3,Firefox 38,6,2017-04-14 +user,719,Maxie,Carlee,58 +session,719,0,Firefox 32,63,2017-11-15 +session,719,1,Chrome 48,28,2017-07-25 +session,719,2,Internet Explorer 35,86,2018-10-17 +session,719,3,Safari 31,90,2016-09-17 +session,719,4,Safari 2,35,2018-03-17 +session,719,5,Safari 34,51,2017-05-25 +user,720,Angelika,Sunni,56 +session,720,0,Chrome 9,87,2018-10-08 +user,721,Fe,Alene,45 +session,721,0,Safari 40,38,2016-10-20 +session,721,1,Internet Explorer 31,111,2017-04-18 +session,721,2,Safari 20,45,2018-09-24 +session,721,3,Internet Explorer 45,109,2016-06-05 +session,721,4,Firefox 29,37,2017-02-12 +user,722,Markita,Debra,60 +session,722,0,Chrome 7,33,2018-07-02 +user,723,Miles,Lajuana,8 +session,723,0,Internet Explorer 39,3,2018-12-14 +session,723,1,Internet Explorer 35,7,2017-09-26 +session,723,2,Internet Explorer 31,15,2017-05-16 +session,723,3,Chrome 44,31,2018-06-09 +session,723,4,Firefox 26,86,2017-07-08 +session,723,5,Firefox 5,74,2018-10-14 +session,723,6,Internet Explorer 40,16,2018-04-26 +session,723,7,Firefox 2,13,2018-08-29 +session,723,8,Firefox 26,0,2018-01-10 +user,724,Edward,Jeannie,10 +session,724,0,Firefox 23,58,2016-08-24 +session,724,1,Firefox 2,62,2018-08-07 +session,724,2,Safari 40,115,2017-10-27 +session,724,3,Chrome 4,98,2018-11-09 +user,725,Machelle,Melissa,5 +session,725,0,Internet Explorer 25,18,2018-01-15 +session,725,1,Firefox 1,114,2018-05-31 +session,725,2,Firefox 17,57,2017-07-22 +user,726,Jaime,Lavenia,92 +session,726,0,Internet Explorer 44,52,2017-09-08 +session,726,1,Firefox 5,93,2017-11-27 +session,726,2,Chrome 19,44,2019-02-06 +session,726,3,Chrome 4,22,2017-05-28 +session,726,4,Firefox 37,13,2017-09-13 +user,727,Tova,Robin,51 +session,727,0,Safari 6,44,2017-10-05 +session,727,1,Chrome 50,0,2017-03-09 +session,727,2,Chrome 23,21,2018-06-16 +session,727,3,Firefox 9,35,2018-10-02 +session,727,4,Firefox 34,11,2016-07-08 +user,728,Michael,Callie,9 +session,728,0,Safari 42,22,2016-06-10 +session,728,1,Firefox 44,70,2017-10-20 +session,728,2,Firefox 31,47,2017-02-06 +session,728,3,Safari 47,111,2017-01-09 +session,728,4,Chrome 25,58,2016-08-27 +session,728,5,Internet Explorer 19,43,2017-10-11 +user,729,Dacia,Tana,84 +session,729,0,Chrome 34,100,2016-07-18 +session,729,1,Chrome 36,66,2017-09-08 +session,729,2,Safari 23,13,2018-08-30 +session,729,3,Chrome 43,79,2016-06-22 +session,729,4,Safari 36,99,2016-10-13 +session,729,5,Firefox 38,71,2018-02-26 +session,729,6,Internet Explorer 14,5,2016-07-20 +session,729,7,Firefox 14,50,2019-02-04 +user,730,Danial,Modesta,39 +session,730,0,Safari 22,105,2016-06-24 +session,730,1,Safari 11,13,2016-07-28 +session,730,2,Safari 48,57,2018-01-16 +session,730,3,Safari 49,118,2018-04-12 +session,730,4,Safari 49,75,2018-06-06 +session,730,5,Firefox 20,56,2019-01-17 +user,731,Britt,Sharyl,83 +session,731,0,Chrome 22,13,2016-09-26 +session,731,1,Internet Explorer 13,118,2017-10-14 +session,731,2,Firefox 15,102,2017-05-24 +user,732,Felica,Alayna,62 +session,732,0,Chrome 23,42,2016-05-26 +session,732,1,Firefox 36,39,2017-04-13 +session,732,2,Safari 46,24,2017-03-02 +session,732,3,Firefox 50,42,2018-09-04 +user,733,Marylynn,Tiana,44 +session,733,0,Firefox 19,96,2016-07-13 +session,733,1,Firefox 41,40,2018-01-16 +session,733,2,Internet Explorer 48,113,2016-09-09 +session,733,3,Internet Explorer 34,119,2016-09-09 +session,733,4,Chrome 43,70,2017-02-20 +session,733,5,Chrome 44,97,2017-05-14 +user,734,Shea,Franklyn,60 +session,734,0,Firefox 34,41,2018-05-09 +session,734,1,Internet Explorer 46,73,2017-07-30 +session,734,2,Firefox 38,36,2017-02-04 +session,734,3,Internet Explorer 49,69,2017-07-31 +session,734,4,Safari 25,55,2016-08-10 +session,734,5,Safari 29,27,2017-06-29 +session,734,6,Firefox 8,89,2016-10-03 +session,734,7,Safari 37,35,2019-02-04 +user,735,Lacie,Christopher,28 +session,735,0,Chrome 22,85,2018-04-30 +session,735,1,Firefox 43,5,2019-01-12 +session,735,2,Chrome 49,117,2017-12-27 +session,735,3,Chrome 47,68,2019-01-18 +session,735,4,Firefox 21,34,2017-07-20 +session,735,5,Safari 33,32,2017-08-18 +session,735,6,Safari 19,60,2017-05-08 +session,735,7,Internet Explorer 29,18,2018-08-24 +session,735,8,Chrome 43,81,2018-05-01 +session,735,9,Chrome 5,45,2019-02-05 +user,736,Yoshie,Sharron,23 +session,736,0,Firefox 24,17,2017-09-21 +session,736,1,Internet Explorer 49,65,2018-01-20 +session,736,2,Firefox 42,36,2019-01-25 +session,736,3,Firefox 13,56,2017-01-05 +session,736,4,Internet Explorer 3,72,2017-07-07 +user,737,Jerome,Kerry,1 +session,737,0,Chrome 37,21,2017-01-29 +session,737,1,Safari 45,42,2018-12-31 +session,737,2,Internet Explorer 7,39,2016-07-17 +session,737,3,Internet Explorer 24,104,2017-01-12 +session,737,4,Safari 11,16,2018-02-18 +session,737,5,Chrome 22,17,2018-10-06 +user,738,Stanford,Kathlene,58 +session,738,0,Safari 12,73,2016-12-30 +session,738,1,Chrome 21,38,2019-01-14 +session,738,2,Firefox 14,8,2018-08-28 +session,738,3,Firefox 45,74,2016-07-02 +session,738,4,Safari 27,69,2017-09-22 +session,738,5,Firefox 31,89,2016-08-18 +session,738,6,Chrome 49,40,2017-10-23 +user,739,Latisha,Asley,46 +session,739,0,Safari 49,28,2016-06-13 +session,739,1,Chrome 21,48,2017-11-22 +session,739,2,Firefox 37,46,2018-10-26 +user,740,Stevie,Amberly,30 +session,740,0,Chrome 5,108,2016-12-10 +session,740,1,Chrome 49,93,2018-02-23 +session,740,2,Chrome 14,12,2018-08-31 +session,740,3,Safari 39,25,2018-02-14 +session,740,4,Chrome 30,51,2017-03-22 +session,740,5,Internet Explorer 5,42,2018-02-27 +user,741,Roger,Diedre,56 +session,741,0,Firefox 12,51,2017-04-09 +session,741,1,Firefox 37,44,2017-04-29 +user,742,Marlon,Arletha,81 +session,742,0,Firefox 22,30,2017-08-16 +user,743,Rigoberto,Merlin,17 +session,743,0,Firefox 36,84,2017-07-06 +session,743,1,Firefox 29,55,2017-06-12 +session,743,2,Safari 4,102,2018-10-24 +session,743,3,Chrome 1,57,2018-01-23 +session,743,4,Chrome 42,55,2016-09-01 +session,743,5,Chrome 5,30,2016-10-11 +session,743,6,Safari 33,99,2016-07-06 +session,743,7,Internet Explorer 35,20,2018-07-18 +session,743,8,Firefox 49,73,2018-11-20 +session,743,9,Safari 20,81,2018-08-27 +user,744,Darron,Ray,88 +session,744,0,Internet Explorer 20,100,2017-02-10 +session,744,1,Safari 27,82,2018-01-02 +session,744,2,Chrome 40,28,2017-03-15 +session,744,3,Firefox 6,33,2017-09-28 +session,744,4,Firefox 32,81,2019-01-30 +session,744,5,Firefox 39,16,2016-08-19 +user,745,William,Serena,73 +session,745,0,Chrome 44,95,2017-12-21 +session,745,1,Internet Explorer 11,116,2018-10-16 +session,745,2,Firefox 22,30,2018-03-16 +session,745,3,Internet Explorer 22,33,2018-02-21 +session,745,4,Chrome 31,17,2016-06-24 +session,745,5,Safari 45,91,2017-06-24 +session,745,6,Internet Explorer 24,9,2018-04-19 +session,745,7,Firefox 18,49,2017-05-23 +session,745,8,Chrome 18,80,2018-07-29 +user,746,Lessie,Luz,3 +session,746,0,Internet Explorer 1,37,2017-04-11 +session,746,1,Internet Explorer 38,41,2017-10-03 +session,746,2,Chrome 15,58,2016-10-01 +session,746,3,Chrome 38,51,2019-02-05 +session,746,4,Internet Explorer 3,80,2018-12-13 +session,746,5,Internet Explorer 46,117,2017-11-06 +session,746,6,Safari 9,43,2018-07-29 +session,746,7,Chrome 3,46,2017-11-04 +session,746,8,Safari 37,49,2018-02-05 +session,746,9,Chrome 24,64,2017-07-08 +user,747,Miriam,Jenice,46 +session,747,0,Chrome 31,97,2018-05-18 +session,747,1,Internet Explorer 20,35,2018-12-06 +session,747,2,Internet Explorer 39,89,2017-01-24 +session,747,3,Firefox 45,83,2018-07-31 +session,747,4,Chrome 48,105,2017-07-17 +session,747,5,Internet Explorer 8,114,2017-01-03 +session,747,6,Internet Explorer 13,88,2017-05-01 +session,747,7,Internet Explorer 5,12,2017-04-01 +session,747,8,Safari 39,69,2016-12-01 +user,748,Florida,Mina,54 +session,748,0,Firefox 15,31,2017-06-26 +session,748,1,Internet Explorer 10,108,2018-03-18 +session,748,2,Internet Explorer 22,115,2017-08-14 +user,749,Vaughn,Vivienne,14 +session,749,0,Chrome 31,117,2016-11-25 +session,749,1,Chrome 37,105,2019-01-02 +user,750,Gearldine,Jeffrey,65 +session,750,0,Chrome 41,27,2017-01-13 +session,750,1,Safari 39,107,2016-12-26 +session,750,2,Firefox 27,35,2017-12-09 +session,750,3,Internet Explorer 35,64,2016-07-29 +session,750,4,Firefox 11,79,2018-06-03 +session,750,5,Firefox 38,91,2017-04-14 +session,750,6,Chrome 9,84,2017-01-02 +session,750,7,Internet Explorer 3,85,2018-02-16 +user,751,Shanta,Keely,28 +session,751,0,Internet Explorer 19,60,2017-02-11 +session,751,1,Internet Explorer 2,64,2017-01-25 +session,751,2,Internet Explorer 13,9,2017-09-23 +session,751,3,Internet Explorer 26,1,2018-05-11 +session,751,4,Safari 45,111,2016-07-27 +session,751,5,Safari 36,54,2018-10-04 +session,751,6,Internet Explorer 49,43,2017-11-19 +session,751,7,Chrome 17,10,2017-08-17 +user,752,Anthony,Alonzo,27 +session,752,0,Firefox 15,56,2016-08-28 +session,752,1,Safari 39,45,2016-08-03 +session,752,2,Safari 45,57,2018-08-13 +session,752,3,Safari 24,19,2017-05-23 +session,752,4,Firefox 8,80,2018-05-17 +session,752,5,Firefox 46,74,2018-11-30 +session,752,6,Safari 3,102,2017-07-27 +session,752,7,Chrome 18,11,2017-05-26 +user,753,Thurman,Tamar,72 +session,753,0,Chrome 4,19,2016-06-04 +session,753,1,Firefox 9,20,2018-01-19 +user,754,Joaquina,Peter,9 +session,754,0,Safari 24,96,2017-09-22 +user,755,Shaunna,Nicky,99 +session,755,0,Safari 46,58,2017-12-30 +session,755,1,Safari 48,115,2017-05-03 +session,755,2,Internet Explorer 44,90,2017-02-25 +session,755,3,Safari 9,62,2017-11-17 +user,756,Huey,Tamie,18 +session,756,0,Safari 11,112,2017-09-19 +session,756,1,Firefox 13,17,2018-06-29 +session,756,2,Internet Explorer 10,102,2018-09-12 +session,756,3,Chrome 9,78,2017-03-23 +session,756,4,Safari 46,80,2019-01-15 +session,756,5,Internet Explorer 40,110,2017-07-16 +session,756,6,Internet Explorer 43,31,2019-01-15 +session,756,7,Firefox 8,79,2018-05-18 +session,756,8,Chrome 13,7,2017-01-03 +session,756,9,Firefox 27,75,2017-11-22 +user,757,Shawn,Bernardo,93 +session,757,0,Safari 17,95,2017-05-30 +session,757,1,Internet Explorer 6,69,2017-09-10 +session,757,2,Firefox 16,73,2017-11-04 +session,757,3,Firefox 23,25,2017-01-19 +session,757,4,Chrome 4,66,2018-07-08 +session,757,5,Firefox 9,7,2016-09-01 +session,757,6,Internet Explorer 39,105,2016-11-27 +user,758,Glenna,Marlo,45 +session,758,0,Safari 11,70,2019-01-05 +session,758,1,Safari 1,107,2018-12-06 +session,758,2,Firefox 16,31,2017-11-13 +session,758,3,Firefox 25,49,2017-03-24 +user,759,Drew,Grisel,61 +session,759,0,Firefox 16,56,2017-03-19 +session,759,1,Firefox 14,84,2017-06-22 +session,759,2,Safari 43,59,2017-12-24 +session,759,3,Safari 12,18,2018-07-27 +session,759,4,Safari 24,53,2017-07-20 +user,760,Jamison,Chuck,95 +session,760,0,Internet Explorer 42,69,2017-08-21 +session,760,1,Chrome 32,20,2016-06-30 +session,760,2,Chrome 45,40,2018-04-26 +session,760,3,Safari 27,14,2017-04-13 +session,760,4,Firefox 12,103,2018-03-05 +session,760,5,Safari 21,67,2019-01-13 +session,760,6,Safari 8,27,2018-08-24 +user,761,Emanuel,Patty,47 +session,761,0,Safari 48,7,2017-07-03 +session,761,1,Internet Explorer 20,49,2017-10-27 +session,761,2,Internet Explorer 32,42,2018-11-07 +session,761,3,Firefox 41,72,2017-04-22 +user,762,Marlin,Loura,2 +session,762,0,Internet Explorer 12,27,2018-01-06 +session,762,1,Internet Explorer 23,111,2019-01-19 +session,762,2,Internet Explorer 20,72,2016-12-15 +session,762,3,Chrome 37,107,2016-06-25 +session,762,4,Safari 21,12,2018-08-21 +session,762,5,Chrome 19,28,2018-12-28 +session,762,6,Firefox 12,14,2017-11-14 +session,762,7,Chrome 2,57,2016-05-21 +session,762,8,Firefox 45,27,2018-09-01 +session,762,9,Internet Explorer 1,86,2017-12-04 +user,763,Kaycee,Melania,7 +session,763,0,Firefox 32,18,2018-01-01 +session,763,1,Firefox 25,51,2016-07-31 +session,763,2,Safari 24,98,2017-03-01 +session,763,3,Chrome 39,11,2017-02-05 +session,763,4,Chrome 34,21,2018-09-14 +user,764,Gladis,Clarice,26 +session,764,0,Firefox 34,6,2017-06-23 +session,764,1,Internet Explorer 31,77,2017-11-13 +session,764,2,Firefox 24,44,2018-03-31 +session,764,3,Safari 31,0,2017-10-18 +session,764,4,Internet Explorer 1,9,2016-05-30 +session,764,5,Firefox 34,82,2018-11-05 +session,764,6,Safari 49,51,2017-10-28 +session,764,7,Chrome 17,42,2016-09-18 +session,764,8,Firefox 4,61,2018-05-14 +session,764,9,Internet Explorer 43,43,2018-06-03 +user,765,Guillermo,Britt,51 +session,765,0,Safari 41,119,2017-07-28 +session,765,1,Firefox 33,52,2018-03-01 +session,765,2,Internet Explorer 13,10,2018-04-01 +session,765,3,Chrome 11,65,2017-11-13 +session,765,4,Firefox 14,21,2018-07-07 +session,765,5,Safari 47,92,2016-10-05 +session,765,6,Chrome 24,81,2019-01-17 +session,765,7,Chrome 20,94,2019-01-08 +user,766,Dominic,Tory,16 +session,766,0,Chrome 11,62,2018-12-05 +session,766,1,Chrome 50,4,2016-12-15 +session,766,2,Firefox 23,15,2017-09-13 +session,766,3,Safari 45,109,2017-10-06 +session,766,4,Firefox 1,63,2017-06-20 +session,766,5,Chrome 42,19,2017-06-28 +session,766,6,Safari 14,26,2017-06-05 +session,766,7,Firefox 49,40,2016-08-09 +user,767,Neal,Tarsha,40 +session,767,0,Internet Explorer 42,105,2018-02-05 +session,767,1,Safari 47,67,2017-02-10 +session,767,2,Firefox 50,38,2018-08-14 +user,768,Felix,Kari,51 +session,768,0,Internet Explorer 12,112,2018-08-20 +session,768,1,Internet Explorer 19,72,2017-05-17 +session,768,2,Safari 47,116,2017-04-12 +session,768,3,Safari 45,96,2018-11-17 +session,768,4,Internet Explorer 36,47,2018-12-08 +session,768,5,Safari 35,85,2017-01-28 +session,768,6,Safari 8,21,2018-02-02 +session,768,7,Firefox 35,86,2017-02-05 +user,769,Wendell,Sallie,90 +session,769,0,Internet Explorer 12,76,2018-11-21 +session,769,1,Internet Explorer 12,52,2016-07-09 +session,769,2,Safari 21,87,2016-12-04 +user,770,Marlon,Aimee,33 +session,770,0,Safari 46,15,2018-11-04 +session,770,1,Safari 17,43,2018-05-27 +session,770,2,Chrome 4,46,2017-08-31 +session,770,3,Firefox 44,10,2018-08-08 +session,770,4,Internet Explorer 32,9,2017-04-13 +session,770,5,Chrome 48,36,2018-07-24 +session,770,6,Internet Explorer 25,8,2018-05-17 +session,770,7,Firefox 9,109,2018-07-15 +session,770,8,Internet Explorer 7,80,2019-01-05 +user,771,Dean,Kamilah,14 +session,771,0,Chrome 30,103,2018-02-18 +session,771,1,Internet Explorer 25,108,2018-12-09 +session,771,2,Chrome 30,74,2017-11-23 +session,771,3,Firefox 37,80,2017-08-15 +user,772,Edward,Elana,80 +session,772,0,Safari 4,80,2017-04-14 +session,772,1,Chrome 45,118,2018-05-17 +session,772,2,Chrome 34,111,2017-03-08 +user,773,Scotty,Fernanda,82 +session,773,0,Chrome 31,100,2016-09-30 +session,773,1,Safari 4,33,2017-08-17 +session,773,2,Internet Explorer 22,93,2017-03-23 +session,773,3,Safari 45,4,2018-02-21 +session,773,4,Internet Explorer 36,113,2017-05-25 +user,774,Elliot,Ambrose,3 +session,774,0,Chrome 19,99,2017-02-20 +session,774,1,Chrome 18,59,2018-02-04 +session,774,2,Internet Explorer 36,0,2018-07-28 +session,774,3,Internet Explorer 18,72,2018-04-09 +session,774,4,Firefox 31,103,2018-04-26 +user,775,Sanda,Amee,16 +session,775,0,Safari 50,66,2016-09-28 +user,776,Soledad,Celine,82 +session,776,0,Safari 19,74,2017-11-05 +session,776,1,Chrome 35,100,2016-07-07 +session,776,2,Chrome 14,89,2018-10-17 +session,776,3,Internet Explorer 38,82,2017-06-09 +user,777,Fred,Dell,59 +session,777,0,Firefox 1,22,2016-09-25 +user,778,Debrah,Efren,81 +session,778,0,Firefox 1,14,2019-02-01 +user,779,Genny,Rochell,71 +session,779,0,Chrome 46,22,2017-04-12 +session,779,1,Internet Explorer 48,18,2016-12-25 +session,779,2,Firefox 27,99,2017-01-16 +session,779,3,Internet Explorer 40,4,2017-03-04 +session,779,4,Chrome 14,114,2017-06-27 +session,779,5,Firefox 21,23,2018-01-10 +user,780,Franklin,Augustus,85 +session,780,0,Chrome 4,98,2017-05-07 +session,780,1,Firefox 4,70,2018-11-12 +session,780,2,Chrome 50,69,2017-01-21 +session,780,3,Chrome 37,50,2017-11-10 +session,780,4,Firefox 39,31,2018-11-29 +user,781,Titus,Arica,19 +session,781,0,Internet Explorer 21,4,2018-08-26 +session,781,1,Safari 28,110,2017-07-13 +session,781,2,Chrome 40,16,2017-07-16 +user,782,Lorna,Deirdre,6 +session,782,0,Internet Explorer 25,1,2017-11-28 +session,782,1,Firefox 5,27,2018-12-03 +session,782,2,Chrome 25,85,2016-11-07 +session,782,3,Chrome 17,73,2018-01-02 +session,782,4,Internet Explorer 17,54,2018-07-03 +session,782,5,Safari 49,39,2017-11-22 +session,782,6,Internet Explorer 38,29,2016-08-21 +session,782,7,Internet Explorer 30,103,2017-02-20 +session,782,8,Internet Explorer 12,110,2016-07-04 +user,783,Sunshine,Christine,26 +session,783,0,Safari 37,31,2016-07-30 +session,783,1,Safari 11,36,2018-08-30 +user,784,Ginette,Joette,67 +session,784,0,Firefox 49,55,2016-11-03 +session,784,1,Internet Explorer 44,22,2018-04-25 +session,784,2,Internet Explorer 49,91,2016-11-03 +session,784,3,Safari 34,34,2017-08-08 +user,785,Lisette,Cyril,71 +session,785,0,Safari 36,41,2016-12-15 +session,785,1,Firefox 43,68,2016-11-28 +user,786,Misti,Louis,86 +session,786,0,Safari 31,54,2018-09-10 +session,786,1,Firefox 46,104,2018-02-07 +session,786,2,Firefox 19,95,2016-07-01 +session,786,3,Safari 50,20,2017-07-16 +session,786,4,Safari 20,9,2017-10-28 +session,786,5,Internet Explorer 47,80,2016-08-15 +session,786,6,Safari 36,104,2018-03-26 +session,786,7,Safari 49,9,2017-06-01 +session,786,8,Safari 24,118,2017-01-09 +user,787,Nelda,Josephine,78 +session,787,0,Internet Explorer 4,20,2017-07-18 +session,787,1,Firefox 41,80,2017-11-04 +session,787,2,Internet Explorer 34,103,2016-07-13 +session,787,3,Safari 20,76,2016-09-14 +session,787,4,Internet Explorer 10,119,2016-10-28 +session,787,5,Safari 36,102,2018-07-08 +session,787,6,Safari 34,18,2016-07-07 +session,787,7,Internet Explorer 37,48,2018-06-12 +user,788,Alejandra,Kimberley,31 +session,788,0,Firefox 37,25,2017-09-30 +session,788,1,Internet Explorer 1,27,2017-06-21 +session,788,2,Safari 20,12,2018-06-02 +session,788,3,Internet Explorer 50,26,2016-12-23 +session,788,4,Firefox 12,22,2017-08-21 +session,788,5,Chrome 46,11,2018-07-12 +session,788,6,Chrome 8,45,2017-08-28 +user,789,Coretta,Rubin,69 +session,789,0,Firefox 23,68,2016-08-16 +session,789,1,Safari 41,6,2017-11-08 +session,789,2,Firefox 12,51,2016-10-19 +session,789,3,Safari 12,42,2016-09-24 +session,789,4,Safari 43,84,2017-08-22 +session,789,5,Internet Explorer 29,37,2018-07-15 +session,789,6,Internet Explorer 12,24,2016-11-02 +session,789,7,Chrome 30,44,2018-01-26 +user,790,Ulysses,Barbara,84 +session,790,0,Safari 14,80,2019-01-16 +session,790,1,Firefox 40,75,2017-05-07 +session,790,2,Firefox 25,109,2016-07-03 +session,790,3,Internet Explorer 5,19,2016-10-30 +session,790,4,Firefox 48,49,2016-12-01 +session,790,5,Safari 26,83,2017-11-11 +session,790,6,Chrome 31,43,2016-09-28 +user,791,Francie,Dina,36 +session,791,0,Safari 42,27,2016-09-27 +session,791,1,Chrome 33,74,2017-07-11 +session,791,2,Internet Explorer 10,107,2018-07-24 +session,791,3,Firefox 12,62,2018-03-15 +session,791,4,Firefox 1,16,2016-06-21 +session,791,5,Chrome 32,41,2018-09-17 +session,791,6,Internet Explorer 9,15,2018-11-20 +user,792,Lanny,Alethia,82 +session,792,0,Firefox 48,57,2017-08-31 +session,792,1,Safari 16,57,2017-03-14 +session,792,2,Firefox 3,4,2016-08-22 +user,793,Tosha,Robyn,85 +session,793,0,Internet Explorer 45,24,2016-07-29 +session,793,1,Safari 43,11,2019-01-29 +session,793,2,Safari 34,93,2016-09-07 +user,794,Ernest,Apryl,95 +session,794,0,Safari 26,76,2019-01-06 +session,794,1,Internet Explorer 6,60,2017-05-18 +session,794,2,Chrome 31,37,2017-09-03 +session,794,3,Safari 9,59,2016-05-26 +session,794,4,Internet Explorer 35,15,2016-12-20 +session,794,5,Firefox 13,5,2018-06-24 +session,794,6,Safari 6,43,2017-02-13 +user,795,Merlin,Ja,47 +session,795,0,Safari 24,5,2017-04-12 +session,795,1,Chrome 23,27,2017-02-02 +user,796,Sheldon,Valentin,1 +session,796,0,Safari 13,87,2017-02-16 +user,797,Annelle,Na,63 +session,797,0,Safari 40,85,2017-11-12 +session,797,1,Chrome 9,6,2018-10-03 +session,797,2,Internet Explorer 22,53,2017-09-08 +session,797,3,Safari 42,64,2016-10-23 +user,798,Jamison,Tamatha,95 +session,798,0,Chrome 34,88,2017-03-28 +session,798,1,Firefox 12,98,2018-05-29 +session,798,2,Firefox 34,68,2016-10-30 +session,798,3,Chrome 24,30,2017-09-12 +session,798,4,Chrome 5,29,2016-07-09 +session,798,5,Safari 46,47,2018-01-26 +session,798,6,Firefox 49,68,2017-01-17 +session,798,7,Safari 38,96,2017-12-12 +user,799,Cristen,Sabrina,31 +session,799,0,Chrome 18,22,2018-11-13 +session,799,1,Chrome 38,36,2019-01-02 +session,799,2,Firefox 48,9,2017-03-14 +user,800,Tawny,Jude,59 +session,800,0,Firefox 9,60,2017-05-14 +session,800,1,Firefox 25,115,2017-01-03 +session,800,2,Internet Explorer 28,115,2016-07-30 +session,800,3,Chrome 12,114,2017-10-05 +session,800,4,Chrome 41,108,2016-10-21 +session,800,5,Safari 28,87,2017-07-02 +session,800,6,Chrome 2,87,2019-02-02 +session,800,7,Firefox 16,93,2018-04-01 +session,800,8,Firefox 1,49,2018-12-10 +session,800,9,Firefox 49,92,2017-03-25 +user,801,Rayford,Lacy,34 +session,801,0,Internet Explorer 8,47,2018-12-27 +session,801,1,Firefox 14,115,2018-06-20 +session,801,2,Internet Explorer 8,105,2018-08-19 +user,802,Izetta,Margarete,57 +session,802,0,Internet Explorer 40,46,2016-06-07 +session,802,1,Internet Explorer 32,41,2018-01-10 +session,802,2,Firefox 37,117,2018-11-18 +session,802,3,Safari 36,93,2019-01-18 +session,802,4,Firefox 17,56,2018-09-22 +session,802,5,Safari 24,11,2018-03-19 +session,802,6,Safari 5,0,2019-01-16 +session,802,7,Safari 34,4,2017-09-01 +session,802,8,Chrome 14,55,2016-10-29 +session,802,9,Chrome 32,93,2018-07-15 +user,803,Sunni,Shu,5 +session,803,0,Internet Explorer 38,29,2018-01-27 +user,804,Yon,Bret,26 +session,804,0,Internet Explorer 16,33,2016-11-26 +session,804,1,Internet Explorer 21,114,2017-08-27 +user,805,Elmer,Rory,26 +session,805,0,Internet Explorer 50,98,2018-07-12 +session,805,1,Safari 28,36,2018-09-26 +session,805,2,Safari 12,116,2017-06-08 +session,805,3,Internet Explorer 45,92,2019-01-18 +session,805,4,Chrome 32,17,2016-11-21 +session,805,5,Internet Explorer 30,86,2017-05-15 +session,805,6,Chrome 14,20,2018-01-12 +session,805,7,Firefox 19,1,2016-07-27 +session,805,8,Chrome 45,10,2016-06-04 +user,806,Elbert,Kaycee,54 +session,806,0,Chrome 38,99,2017-07-28 +session,806,1,Safari 50,99,2019-02-08 +session,806,2,Chrome 21,58,2018-07-24 +session,806,3,Safari 23,31,2018-06-15 +session,806,4,Internet Explorer 32,106,2016-07-07 +user,807,Shanelle,Digna,19 +session,807,0,Internet Explorer 2,90,2017-09-18 +session,807,1,Safari 40,11,2018-02-01 +session,807,2,Safari 3,82,2017-10-20 +session,807,3,Firefox 19,106,2016-07-13 +session,807,4,Safari 32,94,2017-07-23 +session,807,5,Safari 38,72,2017-04-11 +session,807,6,Chrome 35,21,2016-06-02 +session,807,7,Firefox 31,44,2016-11-30 +session,807,8,Chrome 43,63,2017-04-03 +session,807,9,Safari 13,113,2017-08-13 +user,808,Starla,Josh,37 +session,808,0,Safari 17,51,2017-07-26 +session,808,1,Internet Explorer 26,117,2017-12-22 +session,808,2,Safari 43,13,2016-08-15 +session,808,3,Internet Explorer 9,101,2018-01-30 +session,808,4,Safari 13,12,2018-04-28 +session,808,5,Safari 47,10,2018-07-13 +session,808,6,Chrome 20,115,2019-01-14 +session,808,7,Firefox 37,61,2017-09-11 +session,808,8,Internet Explorer 12,88,2016-12-16 +user,809,Gregory,Patsy,91 +session,809,0,Firefox 8,14,2016-09-26 +session,809,1,Internet Explorer 20,51,2019-01-10 +session,809,2,Internet Explorer 34,99,2016-08-04 +user,810,Ali,Leonida,52 +session,810,0,Firefox 11,38,2018-03-10 +session,810,1,Safari 9,11,2017-06-09 +session,810,2,Chrome 31,32,2017-07-28 +session,810,3,Internet Explorer 45,32,2018-03-24 +session,810,4,Firefox 23,62,2017-09-22 +session,810,5,Chrome 14,1,2016-09-26 +session,810,6,Internet Explorer 29,54,2017-02-03 +session,810,7,Internet Explorer 22,75,2017-06-08 +session,810,8,Internet Explorer 3,86,2018-02-25 +user,811,Azucena,Maragret,91 +session,811,0,Internet Explorer 37,47,2018-12-19 +user,812,Klara,Laine,44 +session,812,0,Chrome 40,92,2017-04-07 +session,812,1,Internet Explorer 50,1,2016-07-05 +session,812,2,Chrome 29,95,2017-09-14 +session,812,3,Chrome 48,10,2017-10-25 +session,812,4,Chrome 28,70,2017-04-29 +session,812,5,Internet Explorer 24,21,2018-06-17 +session,812,6,Safari 29,16,2018-06-11 +session,812,7,Safari 25,69,2017-07-03 +user,813,Carlos,Melda,63 +session,813,0,Internet Explorer 9,3,2017-04-06 +session,813,1,Chrome 33,75,2017-09-05 +session,813,2,Chrome 24,55,2019-01-26 +session,813,3,Firefox 12,40,2018-05-27 +session,813,4,Safari 35,42,2017-11-09 +session,813,5,Firefox 11,47,2018-07-31 +session,813,6,Internet Explorer 31,46,2017-01-18 +user,814,Lena,Julee,13 +session,814,0,Firefox 36,104,2016-12-28 +session,814,1,Safari 36,67,2016-11-24 +session,814,2,Safari 13,7,2018-06-13 +session,814,3,Safari 11,15,2017-02-13 +session,814,4,Safari 32,75,2019-01-12 +session,814,5,Internet Explorer 50,81,2016-08-21 +user,815,Jonell,Antwan,34 +session,815,0,Internet Explorer 15,28,2017-06-14 +session,815,1,Firefox 23,50,2018-08-29 +session,815,2,Firefox 40,2,2016-08-31 +session,815,3,Firefox 28,100,2019-01-19 +session,815,4,Internet Explorer 6,55,2017-01-27 +session,815,5,Chrome 3,54,2018-05-31 +session,815,6,Chrome 46,38,2018-01-01 +user,816,Zack,Romana,5 +session,816,0,Chrome 38,70,2016-10-06 +session,816,1,Firefox 49,6,2017-01-20 +session,816,2,Chrome 4,46,2018-06-02 +session,816,3,Internet Explorer 38,91,2018-03-26 +session,816,4,Chrome 35,93,2018-01-08 +session,816,5,Safari 24,73,2017-04-03 +session,816,6,Firefox 44,13,2016-08-04 +session,816,7,Chrome 19,72,2018-01-20 +user,817,Junko,Arvilla,92 +session,817,0,Safari 27,46,2016-12-22 +session,817,1,Chrome 13,16,2016-07-08 +session,817,2,Chrome 20,83,2016-11-17 +session,817,3,Firefox 50,92,2016-06-09 +user,818,Jackson,Francisco,26 +session,818,0,Safari 18,76,2017-10-15 +user,819,Pura,Richelle,11 +session,819,0,Chrome 22,1,2016-09-15 +session,819,1,Internet Explorer 35,94,2018-07-29 +session,819,2,Firefox 32,81,2016-09-23 +session,819,3,Internet Explorer 47,46,2017-02-11 +session,819,4,Chrome 12,30,2017-11-17 +session,819,5,Firefox 43,84,2017-05-07 +session,819,6,Firefox 46,46,2016-10-02 +user,820,Alexandra,Mackenzie,8 +session,820,0,Internet Explorer 16,46,2016-07-21 +user,821,Waylon,Agueda,92 +session,821,0,Chrome 49,110,2016-07-08 +user,822,Maegan,Scarlett,42 +session,822,0,Internet Explorer 33,58,2018-02-07 +session,822,1,Chrome 23,114,2016-08-05 +session,822,2,Safari 31,51,2017-03-03 +session,822,3,Chrome 13,28,2018-01-13 +session,822,4,Internet Explorer 19,75,2017-02-09 +session,822,5,Safari 5,29,2018-02-05 +user,823,Fidel,Lisa,1 +session,823,0,Firefox 50,47,2018-09-15 +session,823,1,Safari 22,9,2016-12-25 +session,823,2,Firefox 40,82,2018-08-14 +session,823,3,Firefox 26,85,2017-07-26 +session,823,4,Chrome 28,83,2018-01-08 +session,823,5,Chrome 42,61,2018-07-23 +session,823,6,Firefox 43,39,2018-07-31 +session,823,7,Chrome 36,97,2016-06-17 +user,824,Kip,Benjamin,51 +session,824,0,Safari 17,108,2017-04-26 +session,824,1,Internet Explorer 42,33,2017-12-06 +session,824,2,Chrome 20,41,2016-08-28 +session,824,3,Internet Explorer 50,77,2016-09-10 +session,824,4,Firefox 8,17,2017-05-08 +session,824,5,Chrome 42,86,2017-06-06 +session,824,6,Chrome 38,89,2017-08-28 +user,825,Kenneth,Nicky,78 +session,825,0,Firefox 37,117,2016-10-24 +session,825,1,Firefox 7,67,2017-10-23 +session,825,2,Safari 5,31,2017-07-20 +session,825,3,Chrome 22,14,2017-05-11 +session,825,4,Chrome 8,16,2016-10-13 +session,825,5,Safari 12,106,2017-09-27 +session,825,6,Internet Explorer 19,23,2018-09-29 +user,826,Fredericka,Marisa,18 +session,826,0,Internet Explorer 2,97,2017-05-26 +session,826,1,Internet Explorer 11,24,2017-02-08 +session,826,2,Internet Explorer 36,13,2017-05-06 +session,826,3,Chrome 22,107,2017-03-11 +session,826,4,Chrome 38,43,2016-08-06 +user,827,Rosena,Junita,3 +session,827,0,Internet Explorer 5,21,2017-04-05 +session,827,1,Chrome 8,93,2017-09-25 +session,827,2,Safari 17,36,2018-09-05 +session,827,3,Safari 28,98,2017-11-13 +session,827,4,Internet Explorer 22,17,2017-11-28 +session,827,5,Safari 48,70,2017-01-24 +session,827,6,Internet Explorer 13,81,2018-06-21 +session,827,7,Safari 12,67,2018-10-20 +session,827,8,Internet Explorer 4,25,2017-02-17 +session,827,9,Chrome 15,79,2017-11-19 +user,828,Lou,Aracely,98 +session,828,0,Safari 39,22,2016-07-18 +user,829,Kendrick,Michiko,71 +session,829,0,Internet Explorer 48,81,2016-07-15 +user,830,Vannessa,Paris,36 +session,830,0,Chrome 4,39,2017-01-10 +session,830,1,Internet Explorer 26,119,2017-06-24 +session,830,2,Firefox 41,61,2016-08-28 +session,830,3,Internet Explorer 40,73,2016-07-14 +session,830,4,Internet Explorer 50,92,2016-09-14 +session,830,5,Safari 30,20,2017-04-23 +session,830,6,Firefox 35,60,2018-08-15 +session,830,7,Chrome 21,49,2017-06-01 +session,830,8,Internet Explorer 35,76,2018-05-16 +user,831,Ellsworth,Louann,42 +session,831,0,Safari 25,38,2018-04-22 +session,831,1,Safari 32,21,2017-07-26 +session,831,2,Safari 22,109,2018-10-14 +session,831,3,Safari 20,68,2018-11-06 +session,831,4,Chrome 50,69,2017-04-08 +session,831,5,Chrome 5,19,2016-08-07 +session,831,6,Firefox 42,78,2018-11-21 +session,831,7,Safari 15,69,2016-05-24 +session,831,8,Internet Explorer 6,56,2017-12-27 +user,832,Louis,Pennie,98 +session,832,0,Firefox 36,69,2016-07-25 +session,832,1,Firefox 7,79,2017-09-18 +session,832,2,Internet Explorer 1,102,2017-01-22 +user,833,Blanch,Kirstie,20 +session,833,0,Firefox 4,36,2016-08-23 +session,833,1,Chrome 44,90,2018-11-23 +session,833,2,Safari 39,87,2018-04-16 +session,833,3,Internet Explorer 20,118,2017-04-07 +session,833,4,Chrome 1,59,2018-01-16 +user,834,Shenika,Diana,41 +session,834,0,Internet Explorer 37,88,2018-09-19 +session,834,1,Firefox 7,53,2018-04-06 +user,835,Chase,Andre,88 +session,835,0,Chrome 9,95,2019-02-06 +session,835,1,Safari 44,69,2016-10-14 +session,835,2,Chrome 6,74,2018-09-29 +session,835,3,Safari 4,19,2017-08-17 +session,835,4,Chrome 29,113,2017-09-07 +session,835,5,Firefox 20,21,2016-09-11 +session,835,6,Chrome 20,8,2018-06-18 +user,836,Sally,Carry,57 +session,836,0,Internet Explorer 18,0,2018-04-12 +session,836,1,Firefox 29,17,2016-07-29 +session,836,2,Internet Explorer 17,117,2017-05-17 +session,836,3,Chrome 12,14,2017-05-30 +session,836,4,Safari 23,68,2017-10-14 +session,836,5,Safari 47,79,2018-12-31 +session,836,6,Safari 26,102,2016-07-25 +session,836,7,Chrome 31,23,2017-08-02 +session,836,8,Chrome 23,88,2017-03-01 +session,836,9,Chrome 6,96,2017-07-15 +user,837,Elina,Jeanmarie,21 +session,837,0,Firefox 38,100,2017-03-07 +session,837,1,Firefox 31,114,2017-06-25 +user,838,Dorian,Laurel,1 +session,838,0,Chrome 42,49,2016-07-13 +session,838,1,Chrome 29,20,2017-02-09 +session,838,2,Safari 12,72,2018-04-30 +session,838,3,Chrome 14,34,2017-06-16 +session,838,4,Chrome 40,66,2017-09-17 +session,838,5,Internet Explorer 9,42,2018-10-07 +session,838,6,Safari 19,106,2018-10-01 +session,838,7,Firefox 5,56,2018-03-05 +session,838,8,Chrome 9,23,2018-06-07 +session,838,9,Chrome 23,28,2016-11-27 +user,839,Denisha,Parthenia,90 +session,839,0,Chrome 24,11,2017-05-07 +session,839,1,Firefox 8,109,2017-08-22 +session,839,2,Chrome 23,115,2018-01-29 +session,839,3,Chrome 26,47,2016-10-20 +session,839,4,Firefox 24,89,2018-09-18 +session,839,5,Internet Explorer 36,16,2019-01-08 +session,839,6,Internet Explorer 44,63,2016-09-14 +session,839,7,Safari 19,66,2016-09-06 +session,839,8,Chrome 31,54,2018-03-18 +session,839,9,Internet Explorer 47,89,2017-07-31 +user,840,Novella,Shanelle,55 +session,840,0,Internet Explorer 8,44,2016-08-02 +session,840,1,Internet Explorer 28,107,2018-03-18 +session,840,2,Firefox 35,109,2016-09-27 +session,840,3,Firefox 33,109,2018-10-06 +session,840,4,Firefox 10,78,2018-05-03 +session,840,5,Safari 17,114,2019-01-24 +session,840,6,Safari 42,49,2019-02-11 +session,840,7,Internet Explorer 10,55,2017-09-06 +session,840,8,Chrome 14,113,2018-08-31 +user,841,Conrad,Diego,14 +session,841,0,Safari 31,23,2018-10-21 +session,841,1,Chrome 29,103,2018-07-28 +user,842,Eulalia,Dawne,90 +session,842,0,Chrome 46,5,2018-05-23 +session,842,1,Internet Explorer 10,92,2017-01-03 +session,842,2,Chrome 21,84,2017-02-01 +session,842,3,Safari 9,92,2019-01-26 +user,843,Argentina,Arianne,51 +session,843,0,Firefox 44,15,2016-07-08 +session,843,1,Internet Explorer 10,71,2017-06-29 +user,844,Ryan,Brook,32 +session,844,0,Firefox 48,54,2017-10-08 +user,845,Lyndon,Kali,70 +session,845,0,Safari 6,59,2016-10-31 +session,845,1,Firefox 27,116,2016-10-27 +session,845,2,Firefox 9,41,2018-01-07 +session,845,3,Internet Explorer 34,61,2018-01-21 +session,845,4,Chrome 44,65,2017-06-28 +session,845,5,Chrome 29,116,2018-05-03 +session,845,6,Safari 44,52,2017-09-30 +user,846,Shayne,Waneta,42 +session,846,0,Internet Explorer 40,92,2016-06-23 +session,846,1,Firefox 8,94,2017-03-22 +session,846,2,Safari 39,46,2018-12-12 +session,846,3,Internet Explorer 16,18,2018-04-17 +session,846,4,Chrome 41,74,2017-06-26 +session,846,5,Safari 8,80,2017-07-28 +user,847,Taneka,Laurence,75 +session,847,0,Firefox 31,33,2017-07-01 +session,847,1,Chrome 43,5,2016-07-10 +session,847,2,Safari 46,61,2017-08-26 +session,847,3,Internet Explorer 20,17,2018-09-22 +user,848,Federico,Rodrigo,11 +session,848,0,Chrome 24,58,2017-03-28 +session,848,1,Safari 48,68,2018-07-24 +session,848,2,Safari 4,29,2017-02-20 +session,848,3,Chrome 38,4,2018-07-09 +session,848,4,Firefox 31,34,2018-05-26 +session,848,5,Safari 20,75,2018-03-27 +session,848,6,Internet Explorer 14,14,2018-03-13 +session,848,7,Safari 42,72,2016-08-07 +session,848,8,Firefox 23,30,2018-03-09 +user,849,Eldora,Rufina,86 +session,849,0,Firefox 35,119,2017-04-21 +session,849,1,Safari 49,111,2016-09-06 +session,849,2,Safari 34,60,2018-10-03 +session,849,3,Chrome 19,12,2017-07-29 +session,849,4,Firefox 44,116,2018-04-18 +session,849,5,Safari 22,15,2019-01-16 +session,849,6,Firefox 1,74,2018-08-11 +session,849,7,Internet Explorer 40,43,2017-10-28 +session,849,8,Chrome 21,115,2018-01-07 +user,850,Troy,Chong,38 +session,850,0,Firefox 17,79,2018-02-28 +session,850,1,Firefox 37,107,2018-04-20 +session,850,2,Internet Explorer 34,71,2018-03-14 +session,850,3,Firefox 17,110,2017-10-08 +user,851,Benny,Shani,7 +session,851,0,Internet Explorer 14,79,2017-06-20 +session,851,1,Internet Explorer 12,109,2017-03-17 +session,851,2,Safari 6,47,2018-02-27 +session,851,3,Chrome 48,109,2017-05-05 +session,851,4,Safari 40,59,2018-01-08 +session,851,5,Internet Explorer 12,87,2018-10-04 +session,851,6,Internet Explorer 10,36,2017-09-20 +session,851,7,Chrome 1,30,2017-06-14 +user,852,Nicky,Ocie,85 +session,852,0,Safari 10,88,2016-08-02 +session,852,1,Internet Explorer 30,101,2018-05-12 +session,852,2,Chrome 50,28,2017-04-30 +session,852,3,Firefox 6,108,2016-12-30 +session,852,4,Chrome 36,104,2018-09-30 +session,852,5,Internet Explorer 9,73,2016-10-13 +session,852,6,Chrome 30,12,2017-09-22 +session,852,7,Internet Explorer 37,39,2017-08-20 +user,853,Miquel,Dave,31 +session,853,0,Safari 1,45,2018-04-23 +session,853,1,Safari 32,32,2017-11-10 +session,853,2,Internet Explorer 12,52,2017-10-25 +session,853,3,Internet Explorer 32,19,2018-08-14 +session,853,4,Internet Explorer 7,103,2017-06-19 +session,853,5,Chrome 32,66,2017-04-20 +session,853,6,Firefox 3,78,2017-12-24 +session,853,7,Internet Explorer 11,117,2018-10-10 +user,854,Gilbert,Davina,83 +session,854,0,Internet Explorer 48,110,2018-04-13 +session,854,1,Firefox 35,9,2018-10-07 +session,854,2,Internet Explorer 30,100,2018-12-28 +session,854,3,Chrome 15,12,2017-08-04 +session,854,4,Chrome 48,71,2018-02-07 +session,854,5,Internet Explorer 18,74,2017-05-01 +session,854,6,Chrome 37,23,2016-11-24 +session,854,7,Internet Explorer 4,1,2017-11-25 +session,854,8,Internet Explorer 16,5,2017-01-15 +session,854,9,Safari 17,21,2018-02-25 +user,855,Antonio,Krystal,38 +session,855,0,Safari 41,101,2017-08-16 +session,855,1,Safari 26,92,2018-10-16 +session,855,2,Chrome 44,113,2017-02-27 +user,856,Warren,Hong,92 +session,856,0,Chrome 19,2,2016-09-30 +session,856,1,Chrome 41,70,2017-02-07 +session,856,2,Chrome 49,63,2016-07-15 +session,856,3,Chrome 23,108,2018-09-21 +session,856,4,Chrome 23,60,2018-06-27 +session,856,5,Internet Explorer 9,17,2018-06-29 +session,856,6,Internet Explorer 32,102,2018-02-08 +session,856,7,Internet Explorer 9,70,2018-02-28 +session,856,8,Safari 5,81,2016-07-23 +user,857,Rico,Adria,19 +session,857,0,Chrome 12,66,2017-12-19 +session,857,1,Firefox 26,109,2018-03-15 +session,857,2,Firefox 2,117,2017-11-09 +session,857,3,Firefox 36,114,2018-07-29 +session,857,4,Firefox 12,20,2018-06-09 +session,857,5,Internet Explorer 32,56,2016-05-27 +session,857,6,Chrome 46,100,2019-01-16 +user,858,Yer,Marita,90 +session,858,0,Safari 26,36,2018-04-24 +session,858,1,Safari 37,73,2018-08-24 +session,858,2,Firefox 15,118,2017-07-06 +user,859,Bernie,Corie,86 +session,859,0,Safari 20,75,2017-08-24 +session,859,1,Safari 44,28,2017-07-01 +session,859,2,Safari 4,109,2018-10-10 +user,860,Colby,Milo,42 +session,860,0,Chrome 38,32,2017-08-29 +session,860,1,Chrome 13,92,2017-01-01 +session,860,2,Internet Explorer 28,103,2018-03-25 +session,860,3,Safari 40,71,2017-08-15 +session,860,4,Chrome 27,27,2016-06-08 +session,860,5,Safari 23,29,2016-09-13 +session,860,6,Firefox 15,5,2017-06-19 +session,860,7,Safari 28,61,2018-08-26 +session,860,8,Firefox 26,103,2018-02-09 +session,860,9,Chrome 10,38,2017-11-09 +user,861,Erma,Stephaine,16 +session,861,0,Safari 43,39,2017-02-09 +session,861,1,Firefox 27,101,2018-12-13 +user,862,Ching,Leena,88 +session,862,0,Firefox 36,97,2018-02-14 +session,862,1,Safari 6,57,2017-02-20 +session,862,2,Safari 19,54,2018-05-28 +session,862,3,Safari 28,23,2017-12-25 +session,862,4,Safari 45,15,2018-04-03 +session,862,5,Firefox 2,102,2019-01-08 +session,862,6,Chrome 21,8,2017-05-20 +session,862,7,Internet Explorer 21,45,2017-10-04 +session,862,8,Chrome 47,56,2018-06-12 +session,862,9,Safari 45,72,2016-08-06 +user,863,Dani,Alena,43 +session,863,0,Safari 22,17,2018-10-05 +session,863,1,Firefox 40,68,2016-11-02 +user,864,Willia,Jami,42 +session,864,0,Firefox 22,25,2017-11-25 +user,865,Lucien,Brett,25 +session,865,0,Safari 43,110,2018-06-30 +session,865,1,Chrome 14,2,2018-03-22 +session,865,2,Safari 21,59,2017-12-20 +session,865,3,Safari 48,50,2017-09-28 +session,865,4,Internet Explorer 29,104,2017-10-30 +session,865,5,Chrome 43,69,2018-09-02 +session,865,6,Firefox 37,108,2018-07-13 +user,866,Ai,Melissa,4 +session,866,0,Firefox 28,75,2017-03-10 +session,866,1,Chrome 27,17,2019-02-09 +session,866,2,Safari 39,36,2016-05-24 +session,866,3,Firefox 50,61,2018-09-21 +session,866,4,Chrome 21,2,2018-02-05 +session,866,5,Safari 23,63,2017-04-09 +session,866,6,Firefox 22,45,2018-07-03 +session,866,7,Internet Explorer 49,101,2017-02-13 +session,866,8,Firefox 14,85,2019-01-22 +session,866,9,Firefox 45,94,2018-04-07 +user,867,Kera,Velda,44 +session,867,0,Firefox 18,55,2017-01-30 +session,867,1,Firefox 18,31,2018-03-24 +session,867,2,Firefox 32,56,2016-12-30 +session,867,3,Firefox 38,75,2016-12-06 +session,867,4,Chrome 4,117,2016-12-18 +session,867,5,Firefox 15,108,2017-05-08 +session,867,6,Internet Explorer 32,84,2019-02-11 +session,867,7,Firefox 1,30,2016-10-15 +session,867,8,Chrome 21,107,2016-12-26 +session,867,9,Firefox 40,7,2016-12-08 +user,868,Karlyn,Tobi,20 +session,868,0,Firefox 29,18,2018-01-22 +user,869,Angelyn,Cortez,59 +session,869,0,Safari 29,32,2016-06-22 +user,870,Arletha,Earlene,58 +session,870,0,Firefox 26,63,2018-12-12 +session,870,1,Safari 32,41,2017-03-13 +session,870,2,Firefox 14,74,2016-06-20 +session,870,3,Firefox 32,21,2017-01-12 +session,870,4,Chrome 14,4,2016-11-04 +session,870,5,Internet Explorer 2,76,2017-07-06 +session,870,6,Safari 21,77,2018-07-12 +session,870,7,Firefox 18,102,2017-10-05 +session,870,8,Firefox 50,14,2019-01-22 +session,870,9,Internet Explorer 25,6,2018-02-02 +user,871,Regan,Joette,81 +session,871,0,Firefox 14,79,2017-05-20 +session,871,1,Chrome 44,61,2018-12-22 +session,871,2,Safari 27,22,2017-08-30 +session,871,3,Firefox 40,107,2017-03-22 +session,871,4,Chrome 47,79,2017-09-01 +user,872,Rosaura,Yesenia,34 +session,872,0,Chrome 12,110,2017-09-06 +user,873,Leif,Hien,76 +session,873,0,Firefox 34,68,2016-07-16 +session,873,1,Safari 16,80,2016-11-07 +session,873,2,Internet Explorer 46,18,2017-10-03 +session,873,3,Internet Explorer 16,109,2016-06-04 +session,873,4,Firefox 6,105,2018-11-30 +session,873,5,Firefox 50,17,2016-10-17 +session,873,6,Internet Explorer 40,96,2018-08-01 +session,873,7,Safari 20,42,2017-11-24 +user,874,Malcom,Rudolph,90 +session,874,0,Firefox 15,92,2018-06-12 +session,874,1,Safari 40,118,2016-10-16 +session,874,2,Internet Explorer 26,46,2016-11-25 +session,874,3,Safari 2,102,2019-01-31 +session,874,4,Chrome 43,118,2017-03-13 +session,874,5,Safari 39,77,2017-04-02 +session,874,6,Firefox 18,102,2018-12-15 +session,874,7,Chrome 10,56,2017-02-02 +session,874,8,Chrome 29,107,2016-08-01 +user,875,Dwight,Ilda,47 +session,875,0,Safari 30,93,2018-11-06 +session,875,1,Firefox 27,22,2018-09-20 +session,875,2,Safari 9,80,2017-04-26 +session,875,3,Internet Explorer 46,106,2017-11-03 +session,875,4,Chrome 41,13,2017-10-30 +session,875,5,Chrome 11,73,2016-12-17 +user,876,Selene,Krystal,22 +session,876,0,Internet Explorer 21,98,2016-05-26 +session,876,1,Firefox 11,86,2017-03-08 +session,876,2,Firefox 14,1,2018-02-15 +session,876,3,Internet Explorer 31,54,2018-08-07 +session,876,4,Internet Explorer 44,32,2016-09-24 +user,877,Ethan,Dalton,2 +session,877,0,Firefox 19,0,2017-12-13 +session,877,1,Firefox 18,58,2018-10-22 +session,877,2,Safari 11,10,2018-11-01 +session,877,3,Chrome 43,66,2017-03-21 +session,877,4,Firefox 17,31,2017-09-14 +session,877,5,Safari 27,87,2017-10-11 +session,877,6,Chrome 46,64,2017-11-29 +session,877,7,Firefox 32,96,2016-09-11 +session,877,8,Firefox 33,116,2016-10-28 +session,877,9,Safari 23,46,2017-04-13 +user,878,Trena,Ayesha,26 +session,878,0,Firefox 36,31,2018-06-24 +session,878,1,Firefox 45,1,2018-05-19 +session,878,2,Chrome 25,9,2016-07-13 +session,878,3,Safari 12,39,2018-01-06 +session,878,4,Internet Explorer 45,92,2017-01-25 +session,878,5,Safari 42,52,2016-11-15 +session,878,6,Safari 15,50,2016-10-19 +user,879,Emmanuel,Hallie,14 +session,879,0,Chrome 45,66,2019-02-06 +session,879,1,Safari 32,71,2018-10-30 +session,879,2,Internet Explorer 8,0,2017-06-03 +session,879,3,Internet Explorer 46,90,2016-09-23 +user,880,Clementine,Denice,72 +session,880,0,Safari 48,28,2018-10-29 +session,880,1,Chrome 26,87,2018-12-18 +user,881,Babette,Sasha,5 +session,881,0,Chrome 20,29,2016-12-12 +session,881,1,Firefox 28,2,2018-01-25 +user,882,Francis,Jeanie,92 +session,882,0,Chrome 39,11,2016-08-22 +session,882,1,Firefox 8,43,2018-06-10 +session,882,2,Safari 35,75,2016-08-26 +session,882,3,Chrome 2,24,2018-07-15 +session,882,4,Internet Explorer 13,23,2016-05-25 +session,882,5,Internet Explorer 13,103,2017-03-10 +session,882,6,Chrome 44,29,2017-01-05 +user,883,Ayanna,Palmira,53 +session,883,0,Firefox 10,82,2018-08-28 +user,884,Gwendolyn,Kamilah,68 +session,884,0,Safari 49,5,2017-02-28 +session,884,1,Safari 33,35,2016-07-12 +session,884,2,Chrome 36,104,2018-09-08 +user,885,Brandon,Alverta,58 +session,885,0,Safari 29,20,2018-06-02 +session,885,1,Internet Explorer 20,92,2016-08-10 +session,885,2,Chrome 4,80,2018-08-16 +session,885,3,Safari 43,16,2018-02-19 +session,885,4,Internet Explorer 36,111,2016-11-23 +session,885,5,Safari 36,34,2017-04-11 +session,885,6,Safari 14,110,2018-01-26 +session,885,7,Safari 8,74,2017-12-16 +session,885,8,Firefox 46,83,2017-03-19 +session,885,9,Internet Explorer 22,46,2018-12-15 +user,886,Alexandria,Kizzy,47 +session,886,0,Internet Explorer 2,61,2018-01-25 +session,886,1,Safari 50,56,2018-07-23 +session,886,2,Safari 23,5,2018-12-21 +session,886,3,Chrome 25,40,2017-08-01 +session,886,4,Chrome 44,94,2017-11-21 +session,886,5,Chrome 49,87,2016-10-11 +session,886,6,Chrome 37,69,2018-08-28 +session,886,7,Internet Explorer 50,22,2019-02-12 +session,886,8,Chrome 15,37,2017-12-12 +session,886,9,Firefox 46,90,2018-09-23 +user,887,Georgianne,Marica,87 +session,887,0,Internet Explorer 31,2,2017-10-27 +session,887,1,Safari 4,30,2018-01-13 +session,887,2,Internet Explorer 46,30,2017-06-29 +session,887,3,Safari 46,4,2017-12-14 +session,887,4,Safari 43,97,2018-12-03 +session,887,5,Chrome 29,106,2017-01-14 +user,888,Glenna,Luciano,36 +session,888,0,Internet Explorer 7,6,2017-08-20 +session,888,1,Safari 46,65,2018-06-17 +user,889,Simon,Jody,66 +session,889,0,Safari 5,89,2017-06-29 +session,889,1,Firefox 31,79,2019-01-22 +user,890,Noe,Karena,15 +session,890,0,Safari 33,15,2017-05-15 +session,890,1,Internet Explorer 48,16,2018-06-21 +session,890,2,Firefox 2,28,2018-07-25 +user,891,Dianne,Isreal,94 +session,891,0,Internet Explorer 3,12,2016-08-18 +session,891,1,Internet Explorer 45,60,2016-06-02 +session,891,2,Chrome 41,69,2017-01-18 +session,891,3,Firefox 19,91,2018-02-26 +session,891,4,Safari 44,13,2018-10-27 +session,891,5,Firefox 48,90,2017-09-22 +user,892,Hugh,Tai,37 +session,892,0,Internet Explorer 23,113,2017-08-04 +session,892,1,Internet Explorer 47,43,2017-02-13 +session,892,2,Internet Explorer 35,69,2017-07-27 +session,892,3,Internet Explorer 12,2,2017-03-20 +session,892,4,Internet Explorer 13,82,2018-06-03 +user,893,Eleanora,Nikita,38 +session,893,0,Firefox 37,17,2018-02-23 +user,894,Minh,Tabetha,55 +session,894,0,Firefox 34,81,2019-01-22 +session,894,1,Firefox 13,97,2016-11-16 +session,894,2,Safari 3,52,2017-10-03 +session,894,3,Safari 1,80,2019-01-19 +user,895,Brittani,Jordan,35 +session,895,0,Safari 46,101,2016-10-10 +session,895,1,Chrome 26,12,2018-07-21 +session,895,2,Firefox 18,74,2018-11-06 +session,895,3,Safari 33,26,2018-10-20 +session,895,4,Chrome 24,32,2018-05-16 +session,895,5,Firefox 48,27,2018-07-22 +session,895,6,Firefox 30,36,2016-05-30 +session,895,7,Internet Explorer 39,79,2016-11-21 +session,895,8,Internet Explorer 33,22,2017-09-13 +user,896,Fonda,Rafael,28 +session,896,0,Firefox 12,114,2017-08-19 +session,896,1,Internet Explorer 7,60,2017-07-28 +session,896,2,Safari 34,69,2017-06-16 +session,896,3,Internet Explorer 15,31,2016-09-28 +session,896,4,Safari 19,7,2016-07-22 +session,896,5,Internet Explorer 38,30,2018-05-08 +session,896,6,Internet Explorer 21,0,2017-03-15 +user,897,Mohamed,Nella,31 +session,897,0,Safari 16,54,2018-01-23 +session,897,1,Chrome 1,86,2017-03-07 +user,898,Yajaira,Marcelino,84 +session,898,0,Safari 27,41,2016-12-28 +session,898,1,Chrome 35,63,2016-12-06 +session,898,2,Safari 18,27,2017-08-22 +session,898,3,Internet Explorer 25,23,2017-11-01 +session,898,4,Chrome 2,30,2017-02-24 +session,898,5,Safari 29,102,2018-07-30 +session,898,6,Safari 45,102,2017-01-18 +user,899,Willena,Shira,99 +session,899,0,Internet Explorer 36,108,2017-07-10 +session,899,1,Internet Explorer 43,70,2018-01-07 +session,899,2,Safari 35,1,2016-08-24 +session,899,3,Safari 11,84,2017-04-24 +session,899,4,Firefox 6,52,2017-05-04 +session,899,5,Internet Explorer 32,11,2017-10-22 +user,900,Vonda,Miles,95 +session,900,0,Safari 38,64,2018-12-20 +session,900,1,Chrome 16,30,2016-09-16 +session,900,2,Internet Explorer 29,87,2017-05-04 +session,900,3,Chrome 11,95,2018-04-24 +session,900,4,Chrome 35,64,2017-04-18 +session,900,5,Firefox 34,70,2018-11-10 +session,900,6,Safari 50,101,2018-10-26 +user,901,Lanny,Amado,62 +session,901,0,Firefox 34,101,2016-12-25 +session,901,1,Internet Explorer 25,93,2017-01-06 +session,901,2,Internet Explorer 12,46,2018-04-22 +user,902,Katherina,Laverna,34 +session,902,0,Firefox 27,67,2018-09-27 +session,902,1,Chrome 20,83,2017-04-08 +session,902,2,Chrome 30,38,2017-05-01 +session,902,3,Chrome 41,24,2017-10-02 +session,902,4,Safari 17,62,2017-05-16 +session,902,5,Chrome 5,71,2018-10-30 +session,902,6,Internet Explorer 11,114,2018-03-09 +user,903,Clint,John,94 +session,903,0,Chrome 17,39,2017-01-08 +session,903,1,Firefox 49,37,2017-08-14 +session,903,2,Chrome 12,106,2018-03-27 +user,904,Bernard,Denisse,4 +session,904,0,Internet Explorer 27,23,2018-11-16 +session,904,1,Firefox 19,30,2017-05-11 +session,904,2,Safari 7,101,2017-01-05 +session,904,3,Internet Explorer 1,87,2017-05-21 +session,904,4,Safari 9,34,2019-01-06 +user,905,Freeman,Wan,98 +session,905,0,Chrome 27,47,2018-10-20 +session,905,1,Firefox 21,11,2018-06-27 +session,905,2,Firefox 35,57,2017-09-11 +session,905,3,Firefox 35,40,2016-06-30 +session,905,4,Internet Explorer 10,95,2017-09-24 +session,905,5,Internet Explorer 38,4,2018-09-01 +session,905,6,Safari 12,51,2016-09-06 +session,905,7,Safari 26,74,2017-02-07 +user,906,Johnnie,Rickey,57 +session,906,0,Firefox 21,31,2018-10-23 +session,906,1,Internet Explorer 37,111,2018-04-05 +session,906,2,Firefox 45,81,2018-08-28 +session,906,3,Firefox 6,101,2016-09-24 +session,906,4,Safari 33,98,2018-08-18 +user,907,Tuan,Eleanore,85 +session,907,0,Internet Explorer 27,118,2018-04-04 +session,907,1,Safari 5,84,2017-09-17 +session,907,2,Internet Explorer 23,78,2018-04-24 +session,907,3,Safari 20,77,2018-06-22 +session,907,4,Internet Explorer 21,47,2018-03-06 +user,908,Brittani,Shenita,52 +session,908,0,Internet Explorer 29,87,2016-07-22 +session,908,1,Safari 49,14,2016-08-25 +session,908,2,Internet Explorer 41,90,2016-12-29 +session,908,3,Internet Explorer 49,11,2016-09-24 +session,908,4,Chrome 17,98,2018-12-09 +session,908,5,Chrome 12,28,2016-10-23 +session,908,6,Firefox 14,53,2018-07-23 +session,908,7,Firefox 31,10,2017-09-29 +session,908,8,Safari 3,101,2017-10-26 +user,909,Ulysses,Virgilio,31 +session,909,0,Internet Explorer 29,114,2019-01-10 +session,909,1,Firefox 39,25,2017-11-25 +session,909,2,Firefox 45,31,2017-10-04 +user,910,Hollis,Brendon,31 +session,910,0,Chrome 21,10,2016-10-28 +session,910,1,Chrome 14,68,2017-04-25 +session,910,2,Safari 27,32,2018-12-08 +session,910,3,Firefox 43,79,2018-04-23 +session,910,4,Safari 5,55,2017-02-18 +session,910,5,Chrome 48,30,2016-12-24 +user,911,Carson,Deeanna,89 +session,911,0,Internet Explorer 29,110,2017-09-28 +session,911,1,Safari 17,8,2018-01-29 +session,911,2,Firefox 1,84,2016-06-28 +session,911,3,Chrome 30,107,2018-11-10 +session,911,4,Safari 20,89,2018-06-01 +session,911,5,Internet Explorer 7,8,2018-01-01 +user,912,Willie,Juliann,24 +session,912,0,Internet Explorer 33,31,2018-04-07 +session,912,1,Chrome 37,83,2017-09-07 +session,912,2,Chrome 1,112,2018-01-07 +session,912,3,Firefox 24,73,2017-04-15 +user,913,Dean,Roseann,18 +session,913,0,Safari 7,2,2018-12-14 +session,913,1,Internet Explorer 9,63,2017-08-06 +session,913,2,Internet Explorer 31,79,2016-10-09 +session,913,3,Chrome 33,117,2016-10-19 +session,913,4,Firefox 2,0,2018-12-10 +session,913,5,Internet Explorer 11,101,2016-08-09 +session,913,6,Chrome 14,119,2018-07-21 +session,913,7,Safari 8,2,2018-10-16 +session,913,8,Chrome 50,3,2017-12-04 +user,914,Frankie,Tiny,69 +session,914,0,Chrome 5,105,2016-06-26 +session,914,1,Firefox 45,70,2016-07-10 +session,914,2,Firefox 17,40,2018-08-17 +user,915,Darnell,Ezekiel,20 +session,915,0,Chrome 33,54,2017-01-13 +session,915,1,Chrome 37,118,2016-06-22 +session,915,2,Safari 27,2,2018-11-03 +session,915,3,Firefox 13,48,2018-04-28 +session,915,4,Internet Explorer 1,103,2017-01-11 +session,915,5,Chrome 42,114,2017-06-21 +session,915,6,Firefox 18,61,2016-11-15 +user,916,Cameron,Esperanza,82 +session,916,0,Firefox 1,38,2018-12-07 +session,916,1,Safari 33,76,2016-11-06 +user,917,Graig,Manie,13 +session,917,0,Safari 33,30,2016-08-04 +session,917,1,Chrome 50,85,2017-09-08 +user,918,Saul,Roberta,53 +session,918,0,Firefox 46,67,2016-12-01 +session,918,1,Firefox 23,104,2018-03-12 +session,918,2,Firefox 23,45,2016-10-09 +session,918,3,Internet Explorer 48,114,2017-07-31 +session,918,4,Firefox 7,51,2017-02-08 +session,918,5,Internet Explorer 42,28,2018-10-07 +session,918,6,Safari 18,30,2016-11-24 +session,918,7,Safari 49,92,2018-01-17 +user,919,Debroah,Charlie,24 +session,919,0,Firefox 33,90,2018-11-14 +session,919,1,Internet Explorer 26,5,2017-09-30 +session,919,2,Safari 42,66,2016-07-29 +user,920,Aracelis,Felice,67 +session,920,0,Chrome 34,84,2018-04-05 +session,920,1,Internet Explorer 13,102,2017-02-24 +session,920,2,Internet Explorer 29,48,2018-10-24 +session,920,3,Firefox 48,89,2016-08-10 +session,920,4,Firefox 30,45,2018-05-05 +session,920,5,Firefox 37,103,2018-12-18 +user,921,Elena,Vada,22 +session,921,0,Firefox 17,79,2016-08-26 +session,921,1,Internet Explorer 6,2,2018-02-11 +session,921,2,Chrome 9,113,2016-09-24 +session,921,3,Firefox 17,2,2018-04-09 +session,921,4,Safari 28,36,2018-08-06 +session,921,5,Chrome 3,90,2018-01-17 +user,922,Mari,Javier,93 +session,922,0,Chrome 15,79,2017-09-26 +session,922,1,Chrome 34,0,2018-06-29 +session,922,2,Chrome 40,1,2017-12-28 +session,922,3,Safari 15,59,2016-08-05 +session,922,4,Safari 1,60,2016-05-26 +session,922,5,Internet Explorer 22,7,2016-07-14 +user,923,Vivan,Ward,85 +session,923,0,Chrome 45,26,2017-07-20 +session,923,1,Safari 3,56,2018-11-16 +session,923,2,Safari 26,45,2017-05-28 +session,923,3,Safari 19,73,2016-06-01 +session,923,4,Internet Explorer 43,1,2017-01-02 +session,923,5,Safari 26,91,2016-11-20 +session,923,6,Chrome 6,15,2018-07-28 +session,923,7,Firefox 11,33,2016-12-15 +session,923,8,Firefox 48,104,2018-10-09 +session,923,9,Firefox 47,42,2018-12-18 +user,924,Saundra,Syreeta,22 +session,924,0,Firefox 43,47,2018-02-06 +session,924,1,Safari 29,44,2017-03-10 +session,924,2,Internet Explorer 20,55,2018-10-08 +session,924,3,Safari 41,114,2016-11-15 +session,924,4,Firefox 49,108,2017-02-06 +session,924,5,Safari 30,40,2016-12-04 +session,924,6,Firefox 32,29,2017-06-15 +session,924,7,Firefox 36,24,2017-05-24 +session,924,8,Internet Explorer 12,44,2016-12-14 +user,925,Nathan,Lenna,75 +session,925,0,Chrome 18,4,2017-08-22 +session,925,1,Firefox 39,98,2018-09-29 +session,925,2,Safari 40,100,2016-12-04 +session,925,3,Chrome 47,88,2016-08-18 +session,925,4,Chrome 10,30,2018-03-26 +session,925,5,Safari 45,101,2016-07-21 +session,925,6,Firefox 37,90,2019-01-02 +user,926,Armanda,Jewel,87 +session,926,0,Firefox 4,40,2016-06-27 +session,926,1,Internet Explorer 48,12,2016-07-11 +session,926,2,Chrome 4,22,2018-09-29 +session,926,3,Chrome 34,49,2018-04-30 +session,926,4,Firefox 7,10,2017-02-09 +session,926,5,Firefox 17,84,2017-10-04 +session,926,6,Safari 22,63,2018-08-29 +user,927,Harold,Aliza,75 +session,927,0,Internet Explorer 13,65,2017-05-27 +session,927,1,Internet Explorer 38,18,2017-06-29 +session,927,2,Firefox 49,87,2018-07-03 +user,928,Alfredo,Temika,63 +session,928,0,Chrome 33,79,2018-05-19 +session,928,1,Chrome 6,27,2017-01-06 +session,928,2,Internet Explorer 3,66,2018-07-24 +session,928,3,Firefox 7,21,2017-05-26 +session,928,4,Chrome 20,12,2017-06-01 +user,929,Jose,Zoe,97 +session,929,0,Safari 24,60,2017-10-17 +session,929,1,Chrome 40,29,2018-03-31 +session,929,2,Chrome 6,20,2016-11-19 +session,929,3,Chrome 41,16,2017-03-28 +session,929,4,Chrome 6,23,2018-08-30 +session,929,5,Internet Explorer 27,61,2018-05-14 +session,929,6,Safari 18,3,2018-09-19 +user,930,Sherri,Deedee,39 +session,930,0,Firefox 11,84,2019-01-31 +session,930,1,Chrome 41,0,2018-11-19 +session,930,2,Safari 9,91,2018-02-26 +session,930,3,Firefox 10,49,2017-01-02 +session,930,4,Firefox 4,106,2017-09-27 +session,930,5,Internet Explorer 22,5,2017-06-29 +user,931,Denny,Carissa,45 +session,931,0,Safari 38,116,2018-01-08 +session,931,1,Internet Explorer 47,99,2019-01-25 +user,932,Suzy,Jamel,3 +session,932,0,Firefox 9,89,2018-09-16 +session,932,1,Safari 18,64,2018-05-06 +session,932,2,Internet Explorer 19,71,2018-04-08 +session,932,3,Internet Explorer 40,5,2017-03-06 +session,932,4,Chrome 27,110,2018-07-19 +user,933,Burton,Roxy,93 +session,933,0,Internet Explorer 6,29,2017-11-20 +session,933,1,Chrome 39,7,2017-03-19 +session,933,2,Chrome 46,111,2016-09-07 +user,934,Deon,Maris,75 +session,934,0,Firefox 33,119,2017-03-02 +session,934,1,Internet Explorer 33,72,2017-08-08 +session,934,2,Safari 31,111,2017-09-04 +session,934,3,Safari 25,117,2017-05-22 +session,934,4,Firefox 10,40,2017-10-22 +session,934,5,Safari 15,46,2017-12-29 +user,935,Elias,Ellsworth,95 +session,935,0,Safari 7,103,2016-09-24 +user,936,Paul,Bella,44 +session,936,0,Safari 49,84,2018-03-21 +session,936,1,Firefox 42,105,2017-10-29 +session,936,2,Firefox 19,103,2016-12-02 +user,937,Kasha,Tarsha,4 +session,937,0,Internet Explorer 46,19,2017-09-29 +session,937,1,Firefox 25,14,2018-05-10 +session,937,2,Chrome 35,100,2017-08-03 +session,937,3,Firefox 8,7,2017-12-26 +session,937,4,Firefox 1,92,2017-06-18 +session,937,5,Safari 29,71,2017-04-30 +session,937,6,Internet Explorer 3,92,2017-06-11 +user,938,Shanice,Joan,98 +session,938,0,Safari 15,35,2018-02-27 +session,938,1,Firefox 40,32,2017-10-29 +session,938,2,Internet Explorer 1,80,2016-11-02 +session,938,3,Internet Explorer 9,112,2017-03-01 +session,938,4,Safari 47,17,2018-02-28 +session,938,5,Internet Explorer 16,95,2016-05-23 +session,938,6,Safari 49,72,2018-07-21 +session,938,7,Internet Explorer 28,42,2016-06-25 +user,939,Bertram,Loyd,41 +session,939,0,Safari 24,68,2018-08-28 +user,940,Susann,France,79 +session,940,0,Firefox 1,117,2017-06-20 +session,940,1,Firefox 12,96,2018-01-26 +session,940,2,Safari 27,24,2017-03-19 +session,940,3,Firefox 17,7,2017-01-25 +user,941,Daria,Derick,74 +session,941,0,Firefox 36,114,2017-04-23 +session,941,1,Firefox 42,46,2017-02-10 +user,942,Chet,Scottie,67 +session,942,0,Firefox 47,103,2016-11-30 +session,942,1,Firefox 44,10,2017-05-05 +session,942,2,Firefox 6,90,2018-02-06 +user,943,Giuseppe,Chana,66 +session,943,0,Chrome 19,82,2017-08-14 +session,943,1,Chrome 32,13,2016-08-31 +session,943,2,Safari 6,61,2018-09-29 +user,944,Stephani,Denyse,83 +session,944,0,Firefox 41,33,2017-10-24 +session,944,1,Internet Explorer 42,79,2018-01-22 +session,944,2,Firefox 3,78,2016-08-25 +session,944,3,Chrome 11,46,2016-08-25 +session,944,4,Safari 33,37,2016-08-25 +session,944,5,Firefox 36,113,2018-05-17 +session,944,6,Firefox 49,55,2017-09-12 +session,944,7,Chrome 10,2,2017-12-08 +session,944,8,Safari 22,115,2018-03-31 +user,945,Latisha,Malia,21 +session,945,0,Internet Explorer 17,50,2018-06-16 +session,945,1,Internet Explorer 13,33,2018-05-28 +session,945,2,Safari 30,70,2016-09-10 +session,945,3,Safari 16,4,2016-12-17 +session,945,4,Firefox 46,111,2017-09-16 +session,945,5,Internet Explorer 49,0,2016-10-03 +session,945,6,Firefox 2,50,2018-08-10 +session,945,7,Chrome 26,31,2018-11-16 +session,945,8,Internet Explorer 35,116,2018-12-07 +session,945,9,Safari 12,109,2016-11-26 +user,946,Kurt,Vashti,24 +session,946,0,Safari 26,5,2018-07-05 +session,946,1,Chrome 1,95,2017-12-13 +session,946,2,Safari 10,108,2017-03-31 +session,946,3,Internet Explorer 45,73,2018-02-28 +user,947,Mimi,Asuncion,34 +session,947,0,Safari 35,109,2018-02-10 +session,947,1,Internet Explorer 3,78,2018-12-24 +session,947,2,Safari 50,94,2016-09-16 +session,947,3,Internet Explorer 10,119,2018-12-24 +session,947,4,Chrome 5,52,2017-09-30 +session,947,5,Safari 47,4,2017-09-05 +session,947,6,Internet Explorer 23,43,2018-07-11 +user,948,Sterling,Genevive,72 +session,948,0,Internet Explorer 39,99,2017-02-12 +session,948,1,Chrome 46,10,2018-01-28 +session,948,2,Safari 27,63,2019-01-13 +session,948,3,Internet Explorer 7,57,2017-04-09 +user,949,Loyd,Palmer,89 +session,949,0,Safari 39,27,2016-07-12 +session,949,1,Firefox 39,89,2017-05-24 +session,949,2,Internet Explorer 49,68,2017-01-02 +session,949,3,Firefox 34,49,2017-10-18 +session,949,4,Chrome 6,115,2017-06-03 +session,949,5,Chrome 46,27,2016-10-07 +session,949,6,Safari 39,87,2017-07-24 +session,949,7,Firefox 8,55,2018-09-26 +session,949,8,Chrome 18,11,2016-05-29 +session,949,9,Internet Explorer 6,46,2018-08-14 +user,950,Emmett,Charles,24 +session,950,0,Firefox 32,18,2018-10-27 +session,950,1,Internet Explorer 48,114,2016-08-13 +session,950,2,Internet Explorer 6,66,2017-09-23 +user,951,Teodora,Bruce,76 +session,951,0,Chrome 13,66,2018-11-29 +session,951,1,Firefox 10,100,2018-08-06 +session,951,2,Chrome 2,7,2018-03-20 +session,951,3,Firefox 30,45,2017-11-07 +session,951,4,Firefox 6,59,2018-08-13 +session,951,5,Internet Explorer 50,59,2017-01-14 +session,951,6,Safari 43,91,2018-03-28 +session,951,7,Internet Explorer 26,81,2019-01-12 +session,951,8,Chrome 42,111,2017-07-09 +session,951,9,Firefox 30,41,2018-02-01 +user,952,Micki,Ena,77 +session,952,0,Internet Explorer 30,15,2017-12-15 +user,953,Noble,Brigitte,63 +session,953,0,Safari 28,43,2018-10-07 +session,953,1,Internet Explorer 36,20,2017-08-26 +user,954,Walter,Coralee,53 +session,954,0,Internet Explorer 25,97,2016-08-25 +session,954,1,Internet Explorer 22,13,2017-08-08 +session,954,2,Firefox 43,90,2017-10-28 +user,955,Dannie,Shaneka,74 +session,955,0,Safari 10,62,2016-05-29 +session,955,1,Firefox 50,94,2016-12-19 +session,955,2,Internet Explorer 34,2,2017-05-07 +session,955,3,Chrome 39,62,2018-10-25 +session,955,4,Chrome 30,73,2017-11-08 +session,955,5,Internet Explorer 34,82,2018-12-05 +session,955,6,Firefox 49,32,2016-08-01 +session,955,7,Safari 32,31,2019-02-07 +user,956,Pauline,Lorrie,42 +session,956,0,Firefox 14,28,2017-08-03 +session,956,1,Chrome 9,33,2017-05-03 +session,956,2,Internet Explorer 3,112,2017-07-26 +session,956,3,Chrome 41,32,2017-04-29 +session,956,4,Chrome 44,53,2018-10-15 +session,956,5,Chrome 49,22,2017-09-06 +session,956,6,Chrome 13,92,2016-09-10 +user,957,Carly,Gertrudis,24 +session,957,0,Chrome 6,8,2018-11-08 +user,958,Earle,Tobi,63 +session,958,0,Safari 3,14,2018-11-27 +user,959,Luther,Olive,42 +session,959,0,Firefox 23,42,2018-11-03 +session,959,1,Internet Explorer 14,16,2017-05-07 +session,959,2,Internet Explorer 45,119,2018-01-26 +session,959,3,Safari 14,14,2017-04-28 +session,959,4,Safari 50,89,2017-07-03 +session,959,5,Safari 14,99,2018-01-17 +user,960,Barney,Carolyne,67 +session,960,0,Safari 30,34,2016-10-13 +session,960,1,Chrome 31,46,2018-04-24 +session,960,2,Chrome 23,98,2017-08-22 +session,960,3,Safari 41,99,2018-08-14 +session,960,4,Chrome 29,57,2018-09-18 +session,960,5,Safari 18,10,2018-02-12 +session,960,6,Safari 8,68,2016-10-14 +user,961,Fred,Kenna,98 +session,961,0,Safari 30,35,2017-10-03 +session,961,1,Chrome 24,29,2017-09-17 +session,961,2,Safari 50,30,2017-06-28 +user,962,Boyd,Hyacinth,62 +session,962,0,Safari 31,100,2016-06-10 +session,962,1,Safari 15,23,2018-06-27 +session,962,2,Firefox 46,37,2018-05-30 +session,962,3,Safari 23,45,2018-10-26 +session,962,4,Internet Explorer 35,90,2017-11-01 +session,962,5,Internet Explorer 9,117,2017-06-20 +session,962,6,Safari 19,25,2016-11-08 +session,962,7,Safari 23,76,2018-04-24 +session,962,8,Safari 47,55,2018-02-19 +user,963,Grover,Lelia,46 +session,963,0,Chrome 44,80,2017-06-27 +session,963,1,Internet Explorer 18,57,2017-12-16 +session,963,2,Firefox 6,118,2016-10-13 +session,963,3,Firefox 46,74,2019-01-14 +session,963,4,Chrome 25,98,2018-12-25 +session,963,5,Safari 4,26,2018-12-16 +session,963,6,Chrome 32,71,2018-10-13 +user,964,Kisha,Sabine,54 +session,964,0,Safari 7,69,2018-10-08 +session,964,1,Internet Explorer 4,105,2018-08-15 +session,964,2,Safari 43,64,2016-10-05 +user,965,Lissette,Lakendra,41 +session,965,0,Chrome 38,98,2018-11-10 +user,966,Adolfo,Evita,30 +session,966,0,Internet Explorer 36,80,2018-02-11 +session,966,1,Chrome 26,45,2016-08-07 +session,966,2,Internet Explorer 23,3,2019-01-24 +session,966,3,Firefox 43,24,2018-04-23 +session,966,4,Chrome 28,90,2016-12-29 +session,966,5,Chrome 11,18,2017-01-18 +session,966,6,Firefox 38,74,2016-09-28 +session,966,7,Internet Explorer 8,28,2018-11-02 +session,966,8,Safari 8,51,2017-04-03 +session,966,9,Safari 24,101,2018-08-27 +user,967,Belia,Lilly,18 +session,967,0,Safari 33,66,2016-06-19 +session,967,1,Firefox 42,44,2016-12-09 +session,967,2,Firefox 10,73,2018-03-11 +session,967,3,Chrome 12,47,2019-02-12 +session,967,4,Safari 35,98,2016-09-12 +session,967,5,Safari 41,61,2016-06-18 +session,967,6,Chrome 11,82,2017-11-19 +session,967,7,Internet Explorer 10,43,2017-11-15 +user,968,Pandora,Marlena,36 +session,968,0,Safari 16,5,2018-03-06 +session,968,1,Chrome 39,37,2018-09-19 +session,968,2,Internet Explorer 11,70,2017-10-14 +session,968,3,Safari 1,23,2018-03-21 +session,968,4,Firefox 22,112,2017-03-16 +user,969,Marlin,Pedro,10 +session,969,0,Internet Explorer 42,54,2017-04-21 +session,969,1,Firefox 7,78,2018-11-27 +session,969,2,Firefox 48,36,2017-06-24 +session,969,3,Internet Explorer 23,114,2018-08-27 +user,970,Adaline,Vilma,27 +session,970,0,Internet Explorer 41,3,2016-11-22 +session,970,1,Chrome 9,5,2017-09-08 +session,970,2,Safari 36,11,2018-03-12 +session,970,3,Firefox 2,17,2018-05-07 +session,970,4,Internet Explorer 33,8,2018-05-17 +session,970,5,Internet Explorer 46,49,2018-02-18 +session,970,6,Chrome 50,3,2016-06-29 +session,970,7,Chrome 37,12,2016-12-30 +user,971,Wilfred,Reatha,93 +session,971,0,Firefox 39,80,2016-06-29 +session,971,1,Firefox 34,82,2019-02-04 +session,971,2,Firefox 47,32,2018-06-23 +session,971,3,Internet Explorer 49,48,2017-09-22 +session,971,4,Chrome 37,67,2018-03-09 +session,971,5,Safari 47,83,2016-11-10 +session,971,6,Safari 17,66,2017-12-16 +session,971,7,Chrome 8,29,2017-02-24 +user,972,Connie,Norine,2 +session,972,0,Safari 9,22,2018-03-23 +session,972,1,Safari 42,9,2016-08-21 +user,973,Hank,Zetta,62 +session,973,0,Internet Explorer 16,40,2019-02-06 +user,974,Malcolm,Georgianne,21 +session,974,0,Chrome 35,58,2016-05-28 +session,974,1,Safari 44,118,2017-06-29 +session,974,2,Safari 46,96,2019-02-06 +session,974,3,Firefox 29,26,2018-04-05 +session,974,4,Internet Explorer 43,92,2017-04-30 +session,974,5,Internet Explorer 27,2,2016-08-12 +session,974,6,Internet Explorer 13,80,2016-06-14 +session,974,7,Chrome 12,61,2018-02-21 +session,974,8,Firefox 39,101,2017-01-08 +user,975,Toby,Angelina,88 +session,975,0,Firefox 27,56,2018-09-20 +session,975,1,Firefox 31,4,2016-06-23 +session,975,2,Internet Explorer 34,65,2018-03-18 +session,975,3,Firefox 33,17,2017-09-09 +session,975,4,Internet Explorer 2,89,2018-06-16 +user,976,Ellamae,Nereida,44 +session,976,0,Firefox 4,3,2017-08-30 +session,976,1,Firefox 46,56,2016-12-17 +session,976,2,Firefox 19,84,2017-04-07 +session,976,3,Safari 39,113,2018-12-21 +session,976,4,Firefox 22,71,2017-09-10 +session,976,5,Chrome 32,100,2018-11-02 +session,976,6,Internet Explorer 9,35,2018-10-21 +session,976,7,Internet Explorer 38,1,2017-07-08 +session,976,8,Chrome 2,3,2019-02-02 +session,976,9,Firefox 38,60,2018-02-14 +user,977,Frank,Shu,71 +session,977,0,Safari 49,81,2018-08-10 +session,977,1,Safari 28,96,2016-06-25 +session,977,2,Internet Explorer 41,22,2016-12-29 +session,977,3,Chrome 15,9,2018-02-28 +session,977,4,Firefox 8,53,2019-01-15 +session,977,5,Internet Explorer 36,82,2017-04-21 +user,978,Lettie,Dani,46 +session,978,0,Firefox 47,93,2017-12-06 +session,978,1,Safari 4,36,2018-10-15 +session,978,2,Internet Explorer 3,5,2018-03-03 +session,978,3,Safari 7,15,2018-06-11 +user,979,Juliette,Thanh,71 +session,979,0,Internet Explorer 11,83,2017-12-15 +session,979,1,Internet Explorer 35,2,2017-11-06 +session,979,2,Internet Explorer 44,112,2016-07-19 +session,979,3,Internet Explorer 11,5,2018-02-05 +user,980,Major,Felisa,27 +session,980,0,Firefox 48,81,2018-10-23 +session,980,1,Chrome 22,16,2019-01-02 +session,980,2,Safari 16,21,2017-03-03 +session,980,3,Firefox 43,97,2018-03-31 +session,980,4,Chrome 10,77,2018-01-24 +session,980,5,Chrome 47,33,2018-07-16 +session,980,6,Chrome 33,119,2019-01-27 +user,981,Alva,Audie,29 +session,981,0,Safari 36,83,2018-05-30 +session,981,1,Safari 33,33,2017-01-28 +session,981,2,Firefox 3,66,2017-11-17 +session,981,3,Safari 19,43,2017-10-06 +session,981,4,Internet Explorer 23,84,2016-10-25 +session,981,5,Safari 28,26,2016-11-19 +session,981,6,Internet Explorer 44,22,2018-07-16 +user,982,Jere,Lashanda,46 +session,982,0,Firefox 1,82,2018-12-07 +session,982,1,Chrome 15,74,2018-07-22 +session,982,2,Firefox 24,83,2016-10-08 +session,982,3,Internet Explorer 49,5,2018-02-05 +session,982,4,Safari 40,66,2017-01-05 +session,982,5,Safari 12,39,2018-11-30 +session,982,6,Safari 45,79,2017-01-20 +session,982,7,Safari 23,76,2016-07-22 +session,982,8,Chrome 37,1,2016-12-27 +user,983,Elliot,Sylvia,33 +session,983,0,Chrome 22,104,2017-03-21 +session,983,1,Firefox 23,9,2018-07-29 +session,983,2,Chrome 28,98,2017-08-10 +session,983,3,Safari 42,86,2018-02-27 +session,983,4,Firefox 32,28,2017-09-26 +session,983,5,Chrome 5,73,2017-05-04 +session,983,6,Chrome 6,65,2019-01-19 +user,984,Leopoldo,Alvaro,55 +session,984,0,Chrome 16,7,2018-06-23 +session,984,1,Firefox 8,101,2017-09-18 +session,984,2,Internet Explorer 9,98,2018-10-26 +user,985,Ronald,Berniece,70 +session,985,0,Chrome 21,116,2017-07-05 +session,985,1,Chrome 6,1,2019-01-17 +session,985,2,Safari 19,20,2016-07-19 +session,985,3,Firefox 12,87,2018-08-28 +session,985,4,Internet Explorer 10,94,2017-03-15 +session,985,5,Firefox 2,45,2018-12-15 +session,985,6,Firefox 10,100,2018-09-22 +session,985,7,Internet Explorer 25,78,2017-07-26 +user,986,Luigi,Lakisha,40 +session,986,0,Chrome 17,10,2017-07-18 +session,986,1,Internet Explorer 29,31,2016-10-02 +session,986,2,Safari 28,65,2016-08-04 +session,986,3,Firefox 38,118,2016-09-25 +session,986,4,Safari 44,53,2018-05-28 +session,986,5,Firefox 14,45,2018-08-09 +session,986,6,Firefox 35,68,2018-09-17 +session,986,7,Chrome 4,79,2018-09-29 +user,987,Kanisha,Karyl,69 +session,987,0,Chrome 39,79,2017-12-24 +session,987,1,Safari 12,114,2016-10-04 +session,987,2,Firefox 13,62,2016-06-17 +session,987,3,Internet Explorer 33,23,2018-01-27 +session,987,4,Firefox 18,2,2018-06-29 +session,987,5,Internet Explorer 48,101,2018-03-22 +user,988,Marvin,Ebony,34 +session,988,0,Firefox 42,81,2018-12-02 +session,988,1,Internet Explorer 39,32,2019-01-04 +session,988,2,Internet Explorer 44,64,2017-12-04 +session,988,3,Safari 2,2,2017-01-11 +session,988,4,Firefox 15,119,2017-06-14 +user,989,Casimira,Terina,82 +session,989,0,Firefox 1,46,2016-07-06 +session,989,1,Internet Explorer 8,47,2016-06-17 +session,989,2,Chrome 32,1,2018-01-09 +session,989,3,Safari 40,119,2018-01-04 +session,989,4,Internet Explorer 17,59,2018-10-01 +session,989,5,Firefox 29,106,2017-04-19 +session,989,6,Chrome 37,72,2017-09-09 +session,989,7,Safari 13,8,2016-08-08 +session,989,8,Firefox 43,39,2018-07-01 +user,990,Tory,Ashlyn,52 +session,990,0,Safari 5,111,2018-08-31 +user,991,Zane,Love,42 +session,991,0,Safari 12,42,2017-01-24 +session,991,1,Internet Explorer 27,9,2017-09-27 +session,991,2,Firefox 41,112,2018-05-31 +session,991,3,Internet Explorer 4,57,2018-05-28 +user,992,Ron,Terrence,20 +session,992,0,Chrome 1,7,2018-01-21 +session,992,1,Chrome 42,60,2018-09-27 +session,992,2,Safari 46,0,2018-05-27 +session,992,3,Safari 42,99,2016-06-19 +session,992,4,Internet Explorer 31,81,2018-06-20 +session,992,5,Safari 19,109,2018-10-15 +session,992,6,Internet Explorer 38,26,2017-11-05 +session,992,7,Chrome 5,16,2016-08-05 +session,992,8,Safari 40,84,2017-10-24 +session,992,9,Chrome 19,20,2016-08-09 +user,993,Tawana,Tula,86 +session,993,0,Safari 44,92,2018-12-20 +session,993,1,Safari 36,29,2017-05-19 +session,993,2,Chrome 35,74,2018-07-28 +session,993,3,Internet Explorer 41,69,2018-12-31 +session,993,4,Chrome 22,30,2017-05-06 +session,993,5,Internet Explorer 4,104,2018-12-31 +session,993,6,Internet Explorer 24,54,2017-02-12 +session,993,7,Firefox 33,42,2017-07-14 +user,994,Lorna,Matthew,39 +session,994,0,Firefox 47,87,2016-10-27 +session,994,1,Firefox 11,95,2018-03-14 +session,994,2,Internet Explorer 34,46,2016-08-30 +user,995,Emeline,Lia,10 +session,995,0,Internet Explorer 49,61,2018-12-22 +session,995,1,Chrome 36,18,2017-10-29 +session,995,2,Internet Explorer 11,5,2018-06-18 +session,995,3,Safari 5,105,2016-12-17 +session,995,4,Firefox 27,119,2016-12-10 +user,996,Nathaniel,Herb,71 +session,996,0,Chrome 11,13,2017-04-29 +session,996,1,Safari 37,107,2017-03-23 +session,996,2,Firefox 26,118,2018-03-31 +session,996,3,Firefox 15,113,2017-07-02 +session,996,4,Safari 27,4,2017-09-19 +session,996,5,Chrome 25,83,2016-07-16 +session,996,6,Firefox 44,40,2018-10-23 +user,997,Domingo,Tracey,4 +session,997,0,Safari 27,76,2018-08-10 +session,997,1,Firefox 8,26,2018-07-06 +user,998,Gayle,Nedra,82 +session,998,0,Chrome 16,52,2016-09-29 +session,998,1,Chrome 14,82,2017-06-27 +session,998,2,Safari 11,24,2016-12-28 +user,999,Shea,Latosha,46 +session,999,0,Internet Explorer 49,20,2016-10-20 +session,999,1,Chrome 45,94,2016-11-17 +session,999,2,Firefox 19,23,2016-08-06 +session,999,3,Safari 12,55,2016-07-25 +session,999,4,Internet Explorer 1,32,2018-06-11 +user,1000,Alline,Natividad,46 +session,1000,0,Internet Explorer 36,26,2017-08-20 +session,1000,1,Internet Explorer 32,29,2017-08-18 +user,1001,Parthenia,Travis,59 +session,1001,0,Firefox 46,45,2017-06-17 +session,1001,1,Internet Explorer 48,52,2018-11-13 +session,1001,2,Safari 27,15,2018-07-12 +user,1002,Troy,Shannon,71 +session,1002,0,Internet Explorer 28,100,2018-07-29 +session,1002,1,Internet Explorer 30,6,2018-07-23 +session,1002,2,Safari 35,93,2016-11-04 +session,1002,3,Safari 24,14,2016-07-16 +session,1002,4,Chrome 10,92,2016-07-11 +session,1002,5,Safari 44,3,2018-09-16 +session,1002,6,Chrome 20,14,2017-01-24 +session,1002,7,Chrome 4,11,2018-11-06 +session,1002,8,Firefox 29,21,2017-02-14 +session,1002,9,Chrome 29,27,2016-11-08 +user,1003,Hanna,Willis,91 +session,1003,0,Internet Explorer 46,85,2018-10-28 +session,1003,1,Safari 31,51,2016-10-07 +session,1003,2,Safari 19,60,2017-08-05 +session,1003,3,Firefox 34,90,2016-09-13 +session,1003,4,Firefox 8,54,2018-05-13 +session,1003,5,Safari 5,24,2017-05-08 +session,1003,6,Chrome 26,68,2018-11-15 +session,1003,7,Internet Explorer 40,82,2017-04-17 +session,1003,8,Safari 21,12,2017-08-22 +session,1003,9,Safari 13,45,2018-09-17 +user,1004,Timothy,Demetrius,5 +session,1004,0,Internet Explorer 20,105,2018-03-07 +session,1004,1,Chrome 5,61,2018-12-22 +session,1004,2,Safari 49,97,2017-11-22 +session,1004,3,Firefox 16,56,2017-09-28 +session,1004,4,Safari 17,60,2018-10-05 +session,1004,5,Safari 30,114,2016-08-08 +session,1004,6,Firefox 33,42,2018-01-01 +session,1004,7,Chrome 25,101,2017-03-08 +session,1004,8,Chrome 34,28,2017-10-03 +user,1005,Sanford,Deann,57 +session,1005,0,Safari 32,61,2018-02-12 +session,1005,1,Safari 33,48,2018-06-08 +session,1005,2,Safari 49,27,2018-07-23 +user,1006,Carisa,Cesar,76 +session,1006,0,Firefox 30,93,2018-03-28 +session,1006,1,Firefox 27,27,2016-09-04 +session,1006,2,Firefox 25,93,2017-11-10 +session,1006,3,Chrome 26,16,2017-06-19 +session,1006,4,Firefox 35,32,2018-05-11 +session,1006,5,Firefox 19,42,2018-02-16 +session,1006,6,Safari 31,66,2018-05-19 +user,1007,Jared,Svetlana,20 +session,1007,0,Internet Explorer 34,75,2016-07-28 +session,1007,1,Firefox 20,59,2018-06-20 +session,1007,2,Chrome 22,68,2017-10-16 +user,1008,Alton,Brigid,11 +session,1008,0,Chrome 28,94,2016-10-12 +session,1008,1,Internet Explorer 21,116,2018-05-19 +session,1008,2,Safari 26,65,2018-05-04 +session,1008,3,Internet Explorer 19,5,2017-08-05 +session,1008,4,Chrome 40,76,2018-08-17 +session,1008,5,Safari 26,76,2017-08-27 +session,1008,6,Internet Explorer 48,53,2017-07-21 +session,1008,7,Safari 20,112,2017-03-19 +session,1008,8,Safari 45,35,2018-06-21 +session,1008,9,Internet Explorer 50,38,2018-08-25 +user,1009,Rory,Landon,80 +session,1009,0,Firefox 30,64,2016-06-05 +session,1009,1,Internet Explorer 36,12,2017-06-23 +session,1009,2,Safari 44,24,2018-08-27 +session,1009,3,Internet Explorer 37,114,2017-03-10 +session,1009,4,Safari 38,77,2018-06-16 +session,1009,5,Safari 15,51,2018-09-14 +session,1009,6,Firefox 42,95,2017-03-05 +session,1009,7,Firefox 47,79,2016-11-02 +user,1010,Audrie,Annette,96 +session,1010,0,Safari 30,33,2018-04-15 +session,1010,1,Internet Explorer 31,9,2016-07-01 +session,1010,2,Chrome 46,60,2017-02-09 +session,1010,3,Safari 47,8,2018-06-25 +session,1010,4,Firefox 35,105,2019-02-02 +session,1010,5,Internet Explorer 31,44,2017-04-25 +user,1011,Edison,Mee,6 +session,1011,0,Internet Explorer 10,107,2016-10-01 +session,1011,1,Chrome 21,119,2016-12-22 +session,1011,2,Internet Explorer 41,91,2017-06-21 +session,1011,3,Chrome 33,113,2016-06-22 +session,1011,4,Chrome 27,27,2018-05-28 +session,1011,5,Safari 32,7,2018-02-27 +session,1011,6,Safari 40,66,2017-06-09 +session,1011,7,Internet Explorer 19,84,2017-02-11 +user,1012,Gordon,Eliseo,27 +session,1012,0,Firefox 41,29,2016-10-07 +session,1012,1,Chrome 20,50,2018-08-06 +session,1012,2,Safari 28,53,2017-01-31 +session,1012,3,Chrome 35,66,2018-03-13 +session,1012,4,Chrome 46,106,2017-06-15 +session,1012,5,Internet Explorer 24,25,2017-07-13 +user,1013,Mac,Barbar,3 +session,1013,0,Chrome 50,14,2017-06-22 +session,1013,1,Chrome 5,117,2017-04-09 +session,1013,2,Safari 15,6,2016-06-02 +session,1013,3,Chrome 47,33,2018-10-07 +session,1013,4,Safari 40,35,2017-12-27 +session,1013,5,Chrome 35,19,2017-10-15 +user,1014,Hugh,Leanne,54 +session,1014,0,Safari 7,99,2017-03-08 +session,1014,1,Internet Explorer 11,115,2016-09-17 +session,1014,2,Chrome 41,118,2018-01-06 +user,1015,Leif,Joni,38 +session,1015,0,Safari 16,93,2017-11-08 +session,1015,1,Firefox 7,34,2018-01-10 +session,1015,2,Safari 18,17,2017-06-02 +session,1015,3,Safari 26,95,2018-09-13 +session,1015,4,Internet Explorer 1,62,2017-09-05 +user,1016,Elliott,Jennifer,61 +session,1016,0,Firefox 48,64,2018-06-25 +user,1017,Alden,Oda,46 +session,1017,0,Firefox 24,102,2018-12-13 +user,1018,Cortney,Cornell,31 +session,1018,0,Chrome 12,21,2018-11-08 +session,1018,1,Safari 23,11,2017-12-28 +session,1018,2,Safari 39,41,2017-12-02 +session,1018,3,Safari 14,28,2017-12-08 +session,1018,4,Internet Explorer 37,65,2016-06-17 +session,1018,5,Internet Explorer 49,107,2018-04-27 +user,1019,Mara,Sammie,55 +session,1019,0,Firefox 42,22,2018-01-08 +user,1020,Keith,Shasta,28 +session,1020,0,Safari 40,117,2017-09-10 +session,1020,1,Chrome 45,83,2018-05-29 +user,1021,Long,Jacque,24 +session,1021,0,Safari 25,73,2016-11-25 +session,1021,1,Chrome 29,87,2017-11-01 +session,1021,2,Internet Explorer 47,19,2018-04-16 +session,1021,3,Internet Explorer 29,95,2016-07-19 +session,1021,4,Firefox 36,28,2018-11-18 +session,1021,5,Chrome 31,62,2017-11-02 +session,1021,6,Chrome 15,20,2018-12-08 +session,1021,7,Chrome 49,69,2018-03-07 +session,1021,8,Internet Explorer 23,77,2016-10-11 +user,1022,Whitney,Joi,45 +session,1022,0,Internet Explorer 16,79,2018-09-02 +user,1023,Hien,Mathilde,29 +session,1023,0,Firefox 8,91,2018-01-31 +session,1023,1,Internet Explorer 44,57,2017-09-15 +user,1024,Alica,Yee,62 +session,1024,0,Firefox 21,90,2017-08-26 +session,1024,1,Safari 26,67,2016-08-24 +session,1024,2,Chrome 2,34,2017-05-11 +session,1024,3,Firefox 15,69,2017-08-22 +session,1024,4,Firefox 46,5,2017-02-10 +session,1024,5,Internet Explorer 10,39,2017-07-21 +user,1025,Cole,Socorro,16 +session,1025,0,Chrome 17,64,2018-11-09 +session,1025,1,Internet Explorer 48,83,2017-11-08 +session,1025,2,Firefox 1,33,2018-03-03 +session,1025,3,Safari 17,97,2018-07-08 +user,1026,Leota,Ismael,12 +session,1026,0,Internet Explorer 6,106,2016-12-13 +session,1026,1,Firefox 36,102,2017-05-13 +session,1026,2,Internet Explorer 18,28,2019-02-07 +session,1026,3,Chrome 15,13,2018-06-07 +session,1026,4,Firefox 36,38,2018-09-09 +session,1026,5,Chrome 44,113,2016-08-11 +session,1026,6,Internet Explorer 50,56,2017-02-18 +user,1027,Reggie,Vallie,86 +session,1027,0,Safari 38,28,2016-06-25 +session,1027,1,Safari 29,39,2017-03-14 +session,1027,2,Safari 36,72,2017-06-24 +session,1027,3,Safari 34,86,2016-09-21 +user,1028,Raphael,Nancee,75 +session,1028,0,Chrome 16,38,2017-07-13 +session,1028,1,Safari 3,21,2017-05-24 +session,1028,2,Chrome 36,48,2017-04-14 +session,1028,3,Safari 19,7,2017-07-22 +session,1028,4,Safari 28,34,2016-11-20 +session,1028,5,Internet Explorer 17,1,2017-07-23 +session,1028,6,Chrome 17,97,2017-04-09 +session,1028,7,Safari 30,19,2018-05-02 +session,1028,8,Chrome 42,103,2017-08-11 +user,1029,Klara,Florine,60 +session,1029,0,Safari 31,11,2016-11-05 +user,1030,Douglass,Jasmine,30 +session,1030,0,Safari 10,44,2018-08-09 +session,1030,1,Firefox 18,20,2016-10-03 +session,1030,2,Safari 37,26,2017-01-07 +session,1030,3,Firefox 13,55,2018-10-03 +session,1030,4,Safari 11,113,2016-07-13 +session,1030,5,Chrome 41,7,2018-08-15 +session,1030,6,Chrome 14,107,2017-09-23 +session,1030,7,Internet Explorer 18,71,2018-12-21 +session,1030,8,Safari 12,112,2017-10-19 +session,1030,9,Firefox 37,41,2017-04-27 +user,1031,Sidney,Rebbecca,21 +session,1031,0,Chrome 10,109,2018-11-05 +session,1031,1,Chrome 49,21,2017-10-23 +session,1031,2,Safari 26,38,2016-09-30 +session,1031,3,Safari 18,59,2018-01-30 +session,1031,4,Firefox 5,53,2018-09-19 +user,1032,Alberto,Chantelle,62 +session,1032,0,Firefox 44,19,2017-01-21 +session,1032,1,Firefox 4,34,2018-09-21 +session,1032,2,Safari 36,42,2018-07-26 +session,1032,3,Chrome 30,76,2017-09-08 +session,1032,4,Chrome 19,5,2017-09-27 +user,1033,Jeramy,Aide,11 +session,1033,0,Safari 10,45,2017-10-13 +session,1033,1,Firefox 3,43,2017-06-23 +user,1034,Muoi,Lovetta,41 +session,1034,0,Safari 30,8,2016-09-13 +session,1034,1,Internet Explorer 21,112,2017-08-01 +session,1034,2,Internet Explorer 17,61,2017-12-29 +session,1034,3,Internet Explorer 35,65,2018-09-11 +session,1034,4,Firefox 44,103,2017-07-05 +session,1034,5,Internet Explorer 39,56,2018-11-04 +session,1034,6,Safari 3,116,2019-01-08 +session,1034,7,Chrome 50,44,2017-02-26 +user,1035,Odis,Bertie,23 +session,1035,0,Firefox 24,25,2016-10-05 +session,1035,1,Firefox 38,79,2016-07-15 +session,1035,2,Firefox 17,81,2017-04-14 +session,1035,3,Firefox 35,38,2017-06-17 +session,1035,4,Chrome 10,48,2017-06-03 +session,1035,5,Safari 7,84,2017-07-20 +session,1035,6,Safari 8,14,2018-03-04 +session,1035,7,Chrome 2,87,2017-03-15 +session,1035,8,Chrome 39,26,2016-09-27 +session,1035,9,Internet Explorer 12,45,2016-11-02 +user,1036,Albina,Eugenio,20 +session,1036,0,Internet Explorer 44,59,2018-05-31 +session,1036,1,Internet Explorer 2,11,2016-06-25 +session,1036,2,Internet Explorer 2,84,2016-08-16 +session,1036,3,Safari 27,58,2017-05-14 +session,1036,4,Internet Explorer 29,117,2018-10-15 +session,1036,5,Firefox 22,25,2018-01-22 +session,1036,6,Safari 16,48,2018-07-12 +session,1036,7,Chrome 25,116,2017-10-15 +session,1036,8,Chrome 34,5,2016-12-12 +session,1036,9,Chrome 13,15,2018-02-09 +user,1037,Therese,Lazaro,49 +session,1037,0,Safari 15,46,2016-12-15 +session,1037,1,Chrome 27,51,2018-02-05 +session,1037,2,Chrome 30,52,2016-09-27 +session,1037,3,Firefox 40,60,2018-06-23 +session,1037,4,Safari 16,60,2016-12-22 +session,1037,5,Firefox 13,72,2018-08-08 +session,1037,6,Firefox 3,75,2016-09-04 +session,1037,7,Chrome 47,49,2017-07-29 +session,1037,8,Chrome 10,15,2017-07-25 +user,1038,Emanuel,Aline,68 +session,1038,0,Internet Explorer 34,105,2017-05-06 +user,1039,Dian,Alla,26 +session,1039,0,Safari 8,58,2016-12-17 +session,1039,1,Safari 5,87,2018-11-02 +session,1039,2,Chrome 46,88,2017-03-17 +user,1040,Woodrow,Marcela,23 +session,1040,0,Chrome 26,100,2018-04-27 +session,1040,1,Safari 18,73,2018-10-30 +session,1040,2,Safari 34,39,2017-02-27 +session,1040,3,Safari 26,118,2018-10-26 +session,1040,4,Firefox 41,110,2018-07-24 +user,1041,Sharron,Sharri,87 +session,1041,0,Chrome 39,66,2018-03-25 +session,1041,1,Internet Explorer 11,20,2016-08-29 +session,1041,2,Safari 15,41,2016-10-23 +session,1041,3,Firefox 14,112,2016-08-03 +session,1041,4,Chrome 45,33,2017-07-19 +session,1041,5,Safari 32,24,2017-04-25 +user,1042,Carrol,Michaela,45 +session,1042,0,Internet Explorer 10,46,2018-12-14 +session,1042,1,Safari 3,36,2018-11-20 +session,1042,2,Firefox 31,45,2017-05-27 +session,1042,3,Chrome 40,33,2018-12-08 +user,1043,Daryl,Augusta,96 +session,1043,0,Safari 25,20,2016-05-21 +session,1043,1,Internet Explorer 42,19,2018-12-23 +user,1044,Brendan,Tosha,45 +session,1044,0,Safari 28,112,2018-05-25 +session,1044,1,Internet Explorer 7,83,2018-09-13 +session,1044,2,Safari 20,110,2018-11-05 +session,1044,3,Safari 37,23,2017-01-11 +session,1044,4,Safari 11,99,2017-01-29 +session,1044,5,Firefox 20,62,2017-09-13 +session,1044,6,Firefox 38,17,2018-11-27 +session,1044,7,Firefox 23,0,2017-09-17 +user,1045,Casimira,Edmond,96 +session,1045,0,Safari 7,37,2017-10-17 +session,1045,1,Safari 18,37,2016-05-28 +session,1045,2,Safari 39,26,2018-10-24 +session,1045,3,Safari 25,56,2017-10-21 +session,1045,4,Safari 34,57,2017-01-18 +session,1045,5,Internet Explorer 29,81,2017-05-13 +user,1046,Mirella,Shonda,4 +session,1046,0,Internet Explorer 9,41,2017-01-15 +session,1046,1,Firefox 44,8,2018-11-30 +session,1046,2,Internet Explorer 50,37,2016-08-20 +session,1046,3,Safari 27,59,2016-06-26 +session,1046,4,Firefox 7,36,2016-11-01 +user,1047,Leonore,Clelia,23 +session,1047,0,Firefox 31,81,2017-07-12 +user,1048,Hedy,Mammie,84 +session,1048,0,Firefox 21,99,2016-06-24 +session,1048,1,Firefox 5,91,2017-11-30 +session,1048,2,Chrome 11,117,2017-10-17 +session,1048,3,Chrome 13,17,2017-12-08 +session,1048,4,Internet Explorer 10,46,2017-04-16 +user,1049,Ramon,Jennine,67 +session,1049,0,Safari 26,46,2016-10-18 +session,1049,1,Chrome 17,45,2018-10-05 +session,1049,2,Firefox 21,101,2017-08-27 +session,1049,3,Internet Explorer 25,2,2017-02-27 +session,1049,4,Internet Explorer 17,72,2016-10-23 +session,1049,5,Chrome 20,17,2017-10-04 +session,1049,6,Safari 30,63,2017-07-08 +session,1049,7,Internet Explorer 6,68,2016-12-21 +session,1049,8,Chrome 36,31,2018-04-25 +user,1050,Leland,Chrissy,75 +session,1050,0,Internet Explorer 49,70,2017-08-17 +session,1050,1,Firefox 48,16,2018-06-03 +session,1050,2,Internet Explorer 41,58,2018-07-15 +session,1050,3,Firefox 34,71,2018-01-04 +session,1050,4,Internet Explorer 30,12,2017-08-13 +session,1050,5,Safari 43,27,2017-08-10 +user,1051,Tania,Leonore,44 +session,1051,0,Firefox 44,65,2016-07-13 +session,1051,1,Firefox 12,6,2016-08-05 +session,1051,2,Safari 17,1,2019-02-01 +session,1051,3,Internet Explorer 46,33,2018-02-13 +session,1051,4,Safari 46,77,2017-12-11 +session,1051,5,Firefox 13,57,2017-07-24 +session,1051,6,Internet Explorer 30,115,2018-06-01 +session,1051,7,Safari 22,21,2017-01-25 +user,1052,Madalyn,Pamelia,67 +session,1052,0,Safari 25,60,2017-03-06 +session,1052,1,Firefox 32,104,2017-10-28 +session,1052,2,Firefox 42,0,2018-09-14 +user,1053,Mitch,Iliana,81 +session,1053,0,Chrome 6,28,2018-07-01 +session,1053,1,Chrome 28,111,2017-12-30 +session,1053,2,Firefox 47,38,2018-10-10 +session,1053,3,Safari 33,29,2017-10-31 +session,1053,4,Chrome 7,59,2016-05-27 +session,1053,5,Firefox 31,53,2016-12-06 +session,1053,6,Firefox 28,119,2018-07-30 +session,1053,7,Safari 35,94,2018-09-22 +session,1053,8,Internet Explorer 20,90,2016-06-28 +user,1054,Tim,Danuta,50 +session,1054,0,Firefox 36,13,2016-08-25 +session,1054,1,Internet Explorer 37,76,2018-07-15 +session,1054,2,Internet Explorer 37,108,2017-04-11 +session,1054,3,Chrome 23,84,2018-04-11 +session,1054,4,Firefox 18,18,2017-06-14 +session,1054,5,Safari 28,71,2016-09-25 +session,1054,6,Firefox 36,41,2018-11-06 +session,1054,7,Safari 48,43,2016-07-26 +session,1054,8,Internet Explorer 10,24,2017-09-18 +session,1054,9,Chrome 22,111,2017-03-07 +user,1055,Britany,Celeste,70 +session,1055,0,Internet Explorer 48,39,2016-06-15 +session,1055,1,Chrome 35,20,2018-03-07 +session,1055,2,Safari 26,22,2017-08-19 +session,1055,3,Safari 34,87,2018-10-01 +session,1055,4,Firefox 1,113,2017-04-30 +session,1055,5,Safari 31,8,2017-08-12 +session,1055,6,Safari 31,103,2017-08-25 +session,1055,7,Chrome 49,81,2016-12-09 +session,1055,8,Firefox 31,66,2018-12-04 +user,1056,Sherise,Talia,40 +session,1056,0,Chrome 9,33,2017-04-21 +session,1056,1,Chrome 33,63,2016-11-06 +session,1056,2,Internet Explorer 16,82,2018-05-05 +user,1057,Mica,Dianna,0 +session,1057,0,Internet Explorer 26,86,2018-03-31 +session,1057,1,Safari 38,35,2017-07-04 +session,1057,2,Chrome 11,87,2017-12-28 +session,1057,3,Safari 41,71,2018-12-09 +user,1058,Dino,Gilberte,72 +session,1058,0,Internet Explorer 19,8,2017-01-03 +session,1058,1,Internet Explorer 2,83,2018-04-17 +session,1058,2,Firefox 3,5,2017-05-11 +session,1058,3,Firefox 47,31,2017-07-27 +session,1058,4,Internet Explorer 16,97,2016-10-09 +session,1058,5,Firefox 45,62,2018-01-06 +session,1058,6,Safari 33,23,2017-04-24 +session,1058,7,Chrome 12,47,2017-09-17 +user,1059,Leonardo,Nannette,51 +session,1059,0,Internet Explorer 35,23,2016-12-07 +session,1059,1,Internet Explorer 35,71,2018-05-23 +user,1060,Melanie,Paulina,6 +session,1060,0,Internet Explorer 3,5,2018-08-04 +session,1060,1,Firefox 12,13,2019-01-08 +session,1060,2,Internet Explorer 34,25,2017-03-18 +session,1060,3,Firefox 26,93,2019-02-09 +session,1060,4,Internet Explorer 4,103,2016-10-21 +session,1060,5,Internet Explorer 8,26,2017-07-18 +session,1060,6,Chrome 44,0,2019-01-23 +session,1060,7,Safari 32,92,2018-03-27 +session,1060,8,Firefox 14,1,2018-03-19 +user,1061,Leonie,Vonnie,79 +session,1061,0,Safari 29,46,2016-08-27 +session,1061,1,Safari 38,95,2017-03-11 +user,1062,Marylouise,Anja,36 +session,1062,0,Safari 13,56,2016-06-16 +session,1062,1,Firefox 22,11,2017-06-08 +session,1062,2,Internet Explorer 2,109,2018-01-16 +session,1062,3,Firefox 46,116,2018-09-18 +session,1062,4,Internet Explorer 37,32,2017-08-14 +session,1062,5,Safari 34,7,2018-09-23 +session,1062,6,Safari 35,119,2018-08-19 +session,1062,7,Safari 44,51,2018-01-17 +session,1062,8,Safari 25,105,2018-11-02 +user,1063,Loyd,Enrique,38 +session,1063,0,Firefox 21,106,2016-07-27 +session,1063,1,Firefox 11,102,2017-12-11 +session,1063,2,Firefox 43,119,2018-06-09 +session,1063,3,Internet Explorer 41,44,2018-02-06 +session,1063,4,Chrome 10,44,2017-11-04 +session,1063,5,Internet Explorer 45,21,2016-07-05 +session,1063,6,Firefox 46,60,2017-12-30 +session,1063,7,Firefox 50,16,2016-09-08 +session,1063,8,Chrome 30,101,2018-11-09 +session,1063,9,Internet Explorer 25,52,2016-08-21 +user,1064,Annamarie,Layla,18 +session,1064,0,Chrome 3,102,2018-02-09 +session,1064,1,Internet Explorer 39,25,2017-08-09 +session,1064,2,Internet Explorer 30,45,2018-04-20 +session,1064,3,Chrome 40,95,2018-11-15 +session,1064,4,Chrome 14,15,2018-04-25 +session,1064,5,Safari 2,19,2017-01-16 +session,1064,6,Firefox 34,36,2016-12-13 +user,1065,Neta,Rocio,7 +session,1065,0,Safari 10,114,2018-08-30 +user,1066,Weston,Lashawn,16 +session,1066,0,Chrome 4,43,2016-05-28 +session,1066,1,Safari 47,60,2016-10-27 +user,1067,Forest,Christene,81 +session,1067,0,Internet Explorer 41,36,2017-09-25 +session,1067,1,Firefox 45,113,2018-01-29 +session,1067,2,Safari 9,33,2016-10-10 +session,1067,3,Firefox 17,63,2017-02-02 +session,1067,4,Internet Explorer 36,63,2018-03-17 +session,1067,5,Firefox 21,96,2018-03-04 +user,1068,Luther,Granville,99 +session,1068,0,Firefox 47,14,2018-03-30 +session,1068,1,Safari 15,94,2016-09-04 +session,1068,2,Firefox 46,100,2018-01-12 +session,1068,3,Firefox 16,16,2018-01-28 +session,1068,4,Internet Explorer 29,87,2018-07-29 +session,1068,5,Chrome 11,3,2018-04-29 +user,1069,Gino,Amee,79 +session,1069,0,Safari 25,36,2017-06-09 +session,1069,1,Chrome 29,91,2019-02-11 +session,1069,2,Chrome 48,18,2017-11-09 +session,1069,3,Firefox 50,8,2018-01-13 +session,1069,4,Safari 36,71,2018-02-14 +user,1070,Jeffry,Amalia,92 +session,1070,0,Chrome 20,108,2017-02-21 +session,1070,1,Chrome 26,41,2016-11-25 +session,1070,2,Safari 19,66,2018-07-20 +session,1070,3,Firefox 42,26,2017-05-09 +session,1070,4,Firefox 48,13,2017-03-31 +session,1070,5,Firefox 41,74,2017-02-08 +session,1070,6,Safari 30,85,2017-11-21 +session,1070,7,Safari 46,60,2016-07-20 +user,1071,Dorinda,Michaela,76 +session,1071,0,Firefox 5,96,2017-09-26 +session,1071,1,Internet Explorer 10,56,2017-11-11 +user,1072,Stella,Aida,48 +session,1072,0,Internet Explorer 14,41,2018-04-20 +session,1072,1,Internet Explorer 45,4,2018-10-02 +session,1072,2,Internet Explorer 44,79,2018-09-24 +user,1073,Elena,Karena,72 +session,1073,0,Safari 17,74,2018-05-08 +session,1073,1,Safari 18,118,2017-12-29 +session,1073,2,Internet Explorer 4,73,2017-06-19 +session,1073,3,Internet Explorer 5,63,2016-11-23 +session,1073,4,Internet Explorer 5,74,2018-02-27 +session,1073,5,Safari 35,65,2018-09-03 +session,1073,6,Chrome 8,63,2018-09-08 +session,1073,7,Firefox 32,111,2017-09-01 +session,1073,8,Chrome 48,92,2018-03-30 +user,1074,Shaun,Miguelina,67 +session,1074,0,Firefox 14,79,2016-11-10 +session,1074,1,Safari 29,76,2018-04-23 +session,1074,2,Firefox 45,56,2019-02-11 +session,1074,3,Chrome 43,117,2018-05-24 +session,1074,4,Firefox 20,112,2017-12-05 +session,1074,5,Firefox 22,61,2016-11-28 +session,1074,6,Internet Explorer 14,48,2018-06-14 +session,1074,7,Safari 25,62,2016-08-31 +session,1074,8,Chrome 48,7,2018-08-11 +user,1075,Bella,Lance,62 +session,1075,0,Internet Explorer 34,106,2018-01-05 +session,1075,1,Chrome 44,100,2016-10-06 +session,1075,2,Firefox 21,38,2017-09-18 +session,1075,3,Safari 41,71,2016-08-25 +session,1075,4,Firefox 4,18,2018-01-03 +user,1076,Blair,Dave,44 +session,1076,0,Chrome 20,64,2018-01-05 +session,1076,1,Firefox 1,59,2018-10-07 +session,1076,2,Firefox 2,16,2017-08-21 +session,1076,3,Firefox 22,104,2017-04-23 +session,1076,4,Chrome 42,112,2017-11-06 +session,1076,5,Chrome 4,31,2018-03-04 +session,1076,6,Chrome 41,92,2016-07-07 +session,1076,7,Chrome 21,64,2018-02-21 +session,1076,8,Firefox 30,48,2018-06-06 +session,1076,9,Safari 18,19,2017-07-29 +user,1077,Fausto,Carlena,83 +session,1077,0,Safari 17,52,2018-08-20 +session,1077,1,Firefox 38,47,2017-09-24 +session,1077,2,Internet Explorer 13,54,2018-02-16 +user,1078,Zora,Latia,52 +session,1078,0,Internet Explorer 25,60,2017-10-02 +session,1078,1,Chrome 50,58,2018-09-15 +session,1078,2,Chrome 41,10,2017-09-11 +session,1078,3,Safari 50,76,2018-05-17 +session,1078,4,Firefox 7,114,2017-04-03 +session,1078,5,Safari 23,3,2018-02-14 +session,1078,6,Safari 22,73,2016-09-19 +session,1078,7,Firefox 23,85,2019-01-08 +user,1079,Abel,Tamiko,64 +session,1079,0,Safari 40,95,2016-10-29 +session,1079,1,Safari 46,8,2017-09-07 +session,1079,2,Chrome 17,46,2018-04-05 +session,1079,3,Safari 48,105,2017-05-10 +session,1079,4,Chrome 43,37,2016-05-30 +session,1079,5,Internet Explorer 37,62,2018-09-15 +session,1079,6,Internet Explorer 40,33,2016-12-31 +session,1079,7,Chrome 15,86,2017-05-16 +user,1080,Cornelia,Graig,6 +session,1080,0,Chrome 41,110,2018-03-05 +user,1081,Arnita,Lorina,55 +session,1081,0,Firefox 13,23,2017-12-04 +session,1081,1,Safari 50,37,2018-05-30 +session,1081,2,Safari 35,33,2018-05-30 +session,1081,3,Chrome 12,87,2016-06-21 +session,1081,4,Chrome 20,62,2018-06-01 +user,1082,Phillip,Buford,61 +session,1082,0,Firefox 41,94,2018-01-20 +session,1082,1,Safari 12,81,2017-01-30 +session,1082,2,Internet Explorer 8,98,2017-12-22 +session,1082,3,Chrome 48,22,2016-12-24 +session,1082,4,Internet Explorer 38,96,2017-11-08 +session,1082,5,Safari 17,16,2019-01-25 +session,1082,6,Internet Explorer 50,7,2017-09-05 +session,1082,7,Firefox 18,34,2017-05-29 +session,1082,8,Chrome 40,90,2018-02-08 +session,1082,9,Safari 33,75,2017-09-15 +user,1083,Nicolas,Shonna,74 +session,1083,0,Safari 10,28,2017-03-01 +session,1083,1,Safari 37,79,2018-01-17 +user,1084,Virginia,Fred,35 +session,1084,0,Chrome 42,41,2017-11-05 +session,1084,1,Safari 16,29,2017-07-12 +session,1084,2,Chrome 46,41,2017-05-11 +session,1084,3,Safari 44,53,2016-08-14 +session,1084,4,Internet Explorer 22,47,2016-11-07 +session,1084,5,Internet Explorer 30,85,2019-01-08 +session,1084,6,Chrome 3,50,2016-12-05 +session,1084,7,Safari 29,93,2018-12-15 +session,1084,8,Internet Explorer 12,101,2017-06-06 +session,1084,9,Firefox 7,75,2018-06-25 +user,1085,Retha,Sharan,44 +session,1085,0,Chrome 5,72,2017-08-04 +session,1085,1,Chrome 13,81,2016-11-08 +user,1086,Pat,Tenesha,86 +session,1086,0,Chrome 33,39,2016-06-07 +session,1086,1,Internet Explorer 40,52,2017-07-04 +session,1086,2,Safari 4,29,2018-06-05 +session,1086,3,Internet Explorer 19,57,2019-01-31 +session,1086,4,Firefox 18,42,2017-08-07 +session,1086,5,Internet Explorer 23,119,2018-12-09 +session,1086,6,Firefox 9,76,2017-06-08 +user,1087,Amos,Neva,94 +session,1087,0,Firefox 16,47,2019-01-01 +session,1087,1,Internet Explorer 7,56,2018-01-01 +session,1087,2,Chrome 39,82,2017-05-27 +session,1087,3,Internet Explorer 27,96,2017-10-23 +session,1087,4,Internet Explorer 6,13,2016-08-27 +session,1087,5,Safari 36,95,2018-01-23 +session,1087,6,Internet Explorer 45,44,2019-01-20 +session,1087,7,Firefox 10,72,2018-11-24 +session,1087,8,Firefox 46,98,2017-03-25 +user,1088,Antony,Cornelia,58 +session,1088,0,Safari 41,74,2016-12-15 +session,1088,1,Internet Explorer 38,29,2017-09-25 +session,1088,2,Safari 38,6,2018-01-20 +session,1088,3,Safari 8,18,2017-12-17 +session,1088,4,Internet Explorer 19,75,2018-12-03 +user,1089,Danial,Clair,83 +session,1089,0,Safari 26,34,2018-06-14 +session,1089,1,Safari 10,19,2017-03-17 +session,1089,2,Firefox 17,25,2018-11-20 +session,1089,3,Internet Explorer 32,70,2016-07-09 +session,1089,4,Firefox 33,11,2017-03-12 +session,1089,5,Safari 50,118,2016-05-24 +session,1089,6,Firefox 3,89,2018-09-25 +session,1089,7,Firefox 30,50,2017-11-21 +user,1090,Trey,Carmina,35 +session,1090,0,Internet Explorer 42,37,2018-08-02 +session,1090,1,Firefox 5,114,2018-01-13 +session,1090,2,Chrome 35,50,2017-12-12 +session,1090,3,Safari 34,21,2017-12-22 +session,1090,4,Firefox 36,115,2016-10-30 +session,1090,5,Firefox 42,117,2017-03-01 +session,1090,6,Chrome 34,15,2018-08-21 +session,1090,7,Safari 49,5,2016-08-25 +session,1090,8,Firefox 13,105,2017-11-03 +session,1090,9,Chrome 43,101,2018-03-02 +user,1091,Wilford,Gina,42 +session,1091,0,Chrome 46,19,2018-05-26 +session,1091,1,Safari 36,74,2016-06-22 +session,1091,2,Chrome 31,76,2016-06-01 +session,1091,3,Firefox 41,57,2017-01-27 +session,1091,4,Internet Explorer 26,39,2016-06-28 +session,1091,5,Safari 36,11,2019-01-15 +session,1091,6,Internet Explorer 6,5,2017-09-12 +user,1092,Abram,Fritz,10 +session,1092,0,Chrome 20,99,2016-11-27 +user,1093,Michal,Margareta,81 +session,1093,0,Firefox 31,91,2016-08-09 +user,1094,Lael,Paola,44 +session,1094,0,Firefox 46,19,2018-06-24 +session,1094,1,Chrome 35,108,2017-10-26 +session,1094,2,Chrome 21,83,2017-12-07 +session,1094,3,Internet Explorer 50,10,2018-06-05 +session,1094,4,Safari 40,93,2016-08-14 +session,1094,5,Firefox 5,80,2017-12-07 +session,1094,6,Safari 20,53,2017-11-25 +session,1094,7,Chrome 29,39,2018-08-20 +session,1094,8,Internet Explorer 6,44,2018-01-30 +session,1094,9,Chrome 4,111,2018-02-27 +user,1095,Joe,Helaine,44 +session,1095,0,Firefox 10,69,2019-02-10 +session,1095,1,Safari 38,45,2016-05-27 +session,1095,2,Internet Explorer 32,51,2016-08-05 +session,1095,3,Internet Explorer 7,80,2016-10-26 +session,1095,4,Chrome 5,65,2017-11-12 +session,1095,5,Chrome 31,93,2018-03-19 +session,1095,6,Firefox 48,100,2018-09-14 +session,1095,7,Firefox 34,43,2016-05-21 +user,1096,Cruz,Mercedes,85 +session,1096,0,Chrome 34,36,2016-07-01 +session,1096,1,Chrome 13,58,2018-01-04 +session,1096,2,Safari 27,34,2017-12-04 +session,1096,3,Safari 1,77,2018-10-01 +session,1096,4,Chrome 8,110,2017-04-19 +session,1096,5,Chrome 33,90,2018-03-08 +session,1096,6,Chrome 42,52,2019-01-20 +session,1096,7,Safari 43,39,2016-11-11 +session,1096,8,Chrome 14,86,2017-06-02 +user,1097,Vance,Roseanna,83 +session,1097,0,Internet Explorer 21,77,2016-06-09 +session,1097,1,Safari 22,4,2018-07-26 +session,1097,2,Chrome 15,92,2018-04-17 +session,1097,3,Internet Explorer 32,24,2017-03-23 +session,1097,4,Chrome 4,13,2018-12-27 +session,1097,5,Internet Explorer 8,89,2016-09-18 +session,1097,6,Chrome 10,98,2018-10-31 +session,1097,7,Firefox 23,74,2017-01-10 +session,1097,8,Internet Explorer 11,86,2017-08-05 +session,1097,9,Firefox 15,16,2016-09-10 +user,1098,Rosella,Danita,13 +session,1098,0,Safari 11,88,2017-08-29 +session,1098,1,Firefox 16,9,2017-03-06 +session,1098,2,Firefox 14,41,2016-12-30 +session,1098,3,Chrome 22,90,2017-06-06 +session,1098,4,Firefox 13,42,2018-04-23 +session,1098,5,Safari 45,38,2018-05-31 +session,1098,6,Internet Explorer 38,84,2016-05-24 +user,1099,Julian,Heather,12 +session,1099,0,Safari 10,45,2018-02-19 +session,1099,1,Internet Explorer 9,53,2018-02-16 +user,1100,Cira,Joanna,6 +session,1100,0,Firefox 14,57,2017-06-23 +session,1100,1,Chrome 34,98,2018-07-13 +session,1100,2,Internet Explorer 8,65,2018-11-13 +session,1100,3,Internet Explorer 27,80,2016-05-26 +session,1100,4,Safari 3,117,2016-08-27 +session,1100,5,Chrome 48,6,2018-01-28 +session,1100,6,Safari 26,25,2016-07-20 +session,1100,7,Firefox 12,68,2017-02-17 +session,1100,8,Safari 43,63,2018-04-01 +user,1101,Justin,Gilberto,9 +session,1101,0,Firefox 33,7,2017-07-03 +session,1101,1,Chrome 19,22,2018-07-28 +session,1101,2,Safari 9,25,2017-12-05 +session,1101,3,Safari 39,117,2018-12-13 +session,1101,4,Chrome 11,116,2018-06-01 +user,1102,Carley,Penny,45 +session,1102,0,Chrome 3,33,2018-09-25 +session,1102,1,Chrome 39,42,2016-08-16 +session,1102,2,Firefox 29,64,2018-08-22 +session,1102,3,Internet Explorer 48,100,2017-06-04 +session,1102,4,Internet Explorer 41,26,2017-02-06 +session,1102,5,Chrome 25,67,2016-08-09 +session,1102,6,Safari 3,10,2017-05-29 +user,1103,Johnnie,Kaleigh,95 +session,1103,0,Internet Explorer 40,85,2017-08-05 +session,1103,1,Chrome 42,53,2016-11-22 +session,1103,2,Chrome 45,110,2019-01-25 +session,1103,3,Internet Explorer 8,90,2018-08-27 +session,1103,4,Internet Explorer 2,80,2017-06-04 +session,1103,5,Chrome 27,19,2018-05-12 +session,1103,6,Chrome 12,86,2016-09-13 +user,1104,Gene,Jean,41 +session,1104,0,Firefox 30,119,2017-07-11 +session,1104,1,Firefox 45,104,2018-01-13 +session,1104,2,Internet Explorer 41,104,2018-12-07 +session,1104,3,Internet Explorer 39,79,2016-09-30 +session,1104,4,Internet Explorer 20,7,2017-08-27 +session,1104,5,Internet Explorer 17,119,2017-06-15 +session,1104,6,Internet Explorer 17,17,2016-08-20 +session,1104,7,Chrome 6,43,2018-07-27 +session,1104,8,Internet Explorer 5,17,2019-01-20 +session,1104,9,Safari 9,19,2016-07-13 +user,1105,Dorris,Isaura,81 +session,1105,0,Chrome 47,65,2017-01-16 +session,1105,1,Safari 22,61,2018-09-07 +session,1105,2,Chrome 25,49,2018-09-01 +session,1105,3,Chrome 38,92,2017-03-29 +user,1106,Janise,Rolf,54 +session,1106,0,Firefox 6,83,2016-11-24 +session,1106,1,Firefox 19,76,2018-02-28 +session,1106,2,Chrome 16,55,2018-06-14 +session,1106,3,Safari 19,109,2018-07-05 +session,1106,4,Internet Explorer 46,62,2016-07-31 +session,1106,5,Firefox 7,52,2018-03-22 +session,1106,6,Chrome 48,33,2017-04-17 +user,1107,Elda,Inger,55 +session,1107,0,Internet Explorer 19,6,2018-04-06 +session,1107,1,Internet Explorer 45,45,2017-05-11 +session,1107,2,Internet Explorer 26,5,2017-08-20 +session,1107,3,Chrome 43,70,2017-10-03 +session,1107,4,Safari 50,78,2017-01-07 +session,1107,5,Firefox 50,78,2017-01-08 +session,1107,6,Firefox 22,73,2016-08-21 +user,1108,Miquel,Diedra,94 +session,1108,0,Internet Explorer 42,38,2016-06-04 +session,1108,1,Chrome 27,112,2016-11-03 +session,1108,2,Firefox 34,8,2016-06-19 +session,1108,3,Chrome 47,83,2018-12-22 +session,1108,4,Internet Explorer 24,26,2017-03-22 +session,1108,5,Chrome 7,90,2017-03-20 +session,1108,6,Internet Explorer 6,30,2018-09-18 +session,1108,7,Chrome 7,70,2017-04-01 +user,1109,Georgianne,Bailey,56 +session,1109,0,Safari 4,30,2018-01-09 +session,1109,1,Firefox 36,64,2018-03-31 +session,1109,2,Chrome 17,111,2018-08-25 +session,1109,3,Firefox 33,89,2018-11-24 +user,1110,Alva,Dorthea,98 +session,1110,0,Chrome 28,14,2016-11-09 +user,1111,Kamala,Makeda,9 +session,1111,0,Safari 26,111,2016-06-11 +session,1111,1,Chrome 18,38,2018-08-18 +session,1111,2,Safari 25,10,2016-12-18 +session,1111,3,Safari 26,23,2018-04-11 +session,1111,4,Safari 17,84,2017-02-18 +session,1111,5,Firefox 48,71,2019-02-01 +user,1112,Glynis,Magnolia,12 +session,1112,0,Safari 31,117,2017-03-11 +session,1112,1,Safari 38,78,2018-02-16 +session,1112,2,Internet Explorer 10,2,2017-12-11 +user,1113,Rudy,Monique,35 +session,1113,0,Safari 31,86,2017-01-27 +session,1113,1,Chrome 27,49,2017-05-12 +session,1113,2,Firefox 21,41,2018-06-27 +session,1113,3,Chrome 6,105,2017-04-13 +user,1114,Zack,Daina,1 +session,1114,0,Chrome 29,115,2018-07-01 +session,1114,1,Internet Explorer 24,75,2018-09-24 +session,1114,2,Internet Explorer 11,70,2017-04-11 +user,1115,Lee,Kiara,62 +session,1115,0,Chrome 26,112,2017-11-19 +session,1115,1,Firefox 25,31,2016-06-27 +session,1115,2,Safari 40,8,2018-10-20 +session,1115,3,Chrome 2,6,2018-07-12 +session,1115,4,Firefox 3,49,2016-06-10 +session,1115,5,Firefox 42,42,2017-12-05 +session,1115,6,Firefox 22,38,2017-12-03 +session,1115,7,Internet Explorer 21,103,2019-02-06 +session,1115,8,Chrome 34,24,2017-08-09 +user,1116,Marilou,Carly,65 +session,1116,0,Safari 11,85,2016-06-05 +session,1116,1,Internet Explorer 38,46,2017-08-23 +session,1116,2,Chrome 11,53,2017-01-25 +session,1116,3,Safari 2,45,2017-03-02 +session,1116,4,Firefox 43,70,2016-08-27 +session,1116,5,Internet Explorer 27,10,2017-12-03 +session,1116,6,Internet Explorer 45,76,2017-11-06 +user,1117,Angelina,Oretha,64 +session,1117,0,Internet Explorer 21,112,2017-08-21 +session,1117,1,Internet Explorer 41,46,2018-04-08 +session,1117,2,Safari 37,59,2016-09-30 +session,1117,3,Firefox 15,117,2016-11-09 +user,1118,Jude,Preston,52 +session,1118,0,Safari 38,72,2018-05-03 +session,1118,1,Safari 46,118,2017-06-24 +user,1119,Homer,Teena,85 +session,1119,0,Internet Explorer 30,33,2016-07-30 +session,1119,1,Firefox 2,95,2017-12-30 +session,1119,2,Internet Explorer 43,11,2017-08-31 +session,1119,3,Internet Explorer 27,63,2016-06-10 +session,1119,4,Chrome 19,34,2017-10-22 +session,1119,5,Firefox 10,43,2017-05-18 +session,1119,6,Chrome 21,11,2018-05-21 +session,1119,7,Safari 6,31,2017-09-03 +session,1119,8,Internet Explorer 12,83,2018-12-24 +user,1120,Gregory,Sarita,19 +session,1120,0,Safari 50,82,2017-02-21 +session,1120,1,Firefox 22,96,2017-10-19 +session,1120,2,Firefox 20,54,2017-04-29 +session,1120,3,Chrome 27,19,2016-08-11 +session,1120,4,Internet Explorer 35,85,2017-06-01 +session,1120,5,Safari 6,91,2017-04-30 +session,1120,6,Chrome 9,101,2016-09-11 +session,1120,7,Firefox 3,13,2019-01-17 +session,1120,8,Chrome 35,44,2017-08-10 +user,1121,Rolande,Neil,25 +session,1121,0,Firefox 14,44,2017-06-30 +session,1121,1,Chrome 8,6,2016-12-27 +session,1121,2,Firefox 7,91,2016-08-29 +session,1121,3,Chrome 42,99,2017-10-06 +session,1121,4,Internet Explorer 49,86,2019-01-18 +session,1121,5,Internet Explorer 8,70,2016-12-26 +user,1122,Luna,Xavier,3 +session,1122,0,Chrome 47,11,2016-09-19 +session,1122,1,Internet Explorer 43,10,2016-11-29 +session,1122,2,Chrome 4,16,2018-06-02 +session,1122,3,Chrome 18,60,2017-12-12 +session,1122,4,Chrome 29,5,2016-05-25 +session,1122,5,Safari 30,105,2017-05-18 +session,1122,6,Internet Explorer 45,110,2018-04-11 +session,1122,7,Firefox 10,102,2017-03-15 +session,1122,8,Chrome 30,58,2017-06-06 +session,1122,9,Internet Explorer 24,40,2018-10-06 +user,1123,Elias,Yolanda,46 +session,1123,0,Internet Explorer 38,108,2017-10-21 +session,1123,1,Firefox 21,100,2016-07-25 +session,1123,2,Chrome 8,27,2017-06-11 +session,1123,3,Internet Explorer 9,98,2016-09-01 +session,1123,4,Chrome 25,116,2018-12-07 +user,1124,Sydney,Vallie,62 +session,1124,0,Safari 22,41,2018-01-19 +session,1124,1,Firefox 25,15,2018-04-27 +session,1124,2,Safari 9,119,2017-12-03 +session,1124,3,Chrome 1,12,2017-01-15 +session,1124,4,Internet Explorer 43,103,2017-06-30 +session,1124,5,Internet Explorer 5,68,2019-01-05 +session,1124,6,Firefox 10,80,2017-10-09 +session,1124,7,Safari 36,14,2018-11-17 +session,1124,8,Internet Explorer 34,105,2017-12-19 +session,1124,9,Chrome 19,91,2018-11-23 +user,1125,Jorge,Johnnie,23 +session,1125,0,Firefox 49,65,2017-04-05 +session,1125,1,Chrome 48,67,2019-01-10 +user,1126,Lesley,Stacy,47 +session,1126,0,Safari 2,66,2018-05-21 +session,1126,1,Internet Explorer 46,70,2017-07-12 +session,1126,2,Internet Explorer 3,54,2017-05-28 +session,1126,3,Safari 24,18,2018-12-10 +session,1126,4,Firefox 39,112,2017-04-07 +session,1126,5,Internet Explorer 9,0,2016-07-07 +session,1126,6,Chrome 30,4,2018-11-09 +session,1126,7,Chrome 34,9,2016-12-01 +user,1127,Belva,Pam,69 +session,1127,0,Chrome 11,10,2017-03-23 +session,1127,1,Firefox 19,108,2018-12-25 +session,1127,2,Safari 41,71,2016-12-07 +session,1127,3,Firefox 5,65,2017-12-05 +session,1127,4,Firefox 50,102,2017-02-09 +session,1127,5,Safari 9,88,2018-02-01 +session,1127,6,Safari 45,66,2017-03-01 +session,1127,7,Safari 31,0,2017-05-01 +user,1128,Usha,Charlie,89 +session,1128,0,Firefox 8,48,2016-10-08 +session,1128,1,Safari 35,71,2016-10-19 +session,1128,2,Safari 11,115,2018-11-10 +session,1128,3,Internet Explorer 21,67,2019-01-16 +session,1128,4,Chrome 12,21,2016-10-23 +session,1128,5,Internet Explorer 32,50,2017-03-25 +session,1128,6,Internet Explorer 4,55,2017-08-20 +user,1129,Glady,Curtis,50 +session,1129,0,Internet Explorer 44,114,2018-09-08 +session,1129,1,Chrome 47,7,2017-04-30 +session,1129,2,Firefox 31,99,2017-10-09 +session,1129,3,Internet Explorer 46,2,2016-11-17 +session,1129,4,Firefox 32,108,2016-05-19 +session,1129,5,Safari 1,69,2017-04-22 +session,1129,6,Safari 38,52,2018-08-10 +session,1129,7,Chrome 16,56,2016-07-30 +user,1130,Lanora,Leatrice,48 +session,1130,0,Firefox 2,77,2018-12-02 +session,1130,1,Chrome 43,18,2017-07-15 +session,1130,2,Internet Explorer 6,20,2018-07-18 +session,1130,3,Internet Explorer 28,51,2017-07-26 +user,1131,Cuc,Irving,81 +session,1131,0,Chrome 35,60,2016-11-17 +session,1131,1,Firefox 39,95,2016-11-16 +session,1131,2,Internet Explorer 2,43,2016-09-25 +session,1131,3,Firefox 30,31,2017-04-26 +user,1132,Ivory,Fredric,67 +session,1132,0,Safari 13,73,2016-12-27 +user,1133,Mercedez,Jarrett,65 +session,1133,0,Internet Explorer 8,32,2017-01-03 +session,1133,1,Safari 40,43,2017-07-04 +session,1133,2,Internet Explorer 48,96,2016-06-30 +session,1133,3,Internet Explorer 2,58,2019-01-04 +session,1133,4,Internet Explorer 41,71,2016-12-28 +session,1133,5,Chrome 12,47,2018-05-28 +session,1133,6,Chrome 49,81,2016-12-01 +user,1134,Sandie,Shelia,71 +session,1134,0,Internet Explorer 12,68,2019-01-03 +session,1134,1,Internet Explorer 21,63,2017-09-16 +session,1134,2,Firefox 15,54,2017-12-21 +session,1134,3,Firefox 43,83,2016-05-30 +session,1134,4,Chrome 1,57,2019-02-10 +session,1134,5,Safari 12,119,2018-12-26 +session,1134,6,Safari 28,107,2018-03-18 +session,1134,7,Chrome 27,91,2017-11-05 +session,1134,8,Internet Explorer 14,11,2017-10-19 +session,1134,9,Internet Explorer 39,0,2017-06-04 +user,1135,Martina,Shirl,0 +session,1135,0,Safari 44,47,2017-05-27 +session,1135,1,Chrome 4,27,2018-11-25 +session,1135,2,Internet Explorer 24,66,2018-12-15 +session,1135,3,Chrome 46,40,2018-01-20 +session,1135,4,Safari 1,33,2017-12-08 +session,1135,5,Firefox 12,12,2017-06-02 +session,1135,6,Safari 29,113,2017-06-26 +session,1135,7,Safari 30,46,2018-11-07 +user,1136,Rusty,Louanne,33 +session,1136,0,Chrome 1,29,2017-10-30 +user,1137,Corrina,Dominic,34 +session,1137,0,Internet Explorer 28,97,2019-01-31 +session,1137,1,Internet Explorer 16,39,2017-06-28 +session,1137,2,Internet Explorer 27,40,2017-02-20 +session,1137,3,Internet Explorer 35,108,2018-09-13 +session,1137,4,Safari 34,70,2016-10-05 +session,1137,5,Safari 48,48,2017-10-16 +session,1137,6,Firefox 25,36,2019-01-10 +session,1137,7,Internet Explorer 37,112,2019-01-29 +user,1138,Merrilee,Ladawn,3 +session,1138,0,Chrome 3,57,2016-06-17 +session,1138,1,Chrome 14,49,2016-08-19 +user,1139,Gaylord,Shelby,54 +session,1139,0,Safari 18,12,2016-11-08 +session,1139,1,Safari 35,57,2018-11-12 +session,1139,2,Chrome 48,115,2018-02-27 +session,1139,3,Chrome 39,83,2017-04-27 +session,1139,4,Safari 8,75,2017-07-14 +session,1139,5,Firefox 20,62,2018-02-21 +user,1140,Russ,Eldon,95 +session,1140,0,Firefox 50,1,2017-07-30 +session,1140,1,Internet Explorer 11,103,2018-07-06 +session,1140,2,Internet Explorer 7,86,2016-08-18 +session,1140,3,Chrome 21,23,2016-05-24 +session,1140,4,Firefox 27,50,2019-01-16 +user,1141,Zona,Ethelene,4 +session,1141,0,Internet Explorer 38,47,2017-02-26 +session,1141,1,Firefox 32,0,2016-09-04 +session,1141,2,Chrome 3,119,2016-08-18 +session,1141,3,Chrome 12,85,2016-05-24 +session,1141,4,Internet Explorer 46,105,2018-01-27 +session,1141,5,Safari 10,28,2017-02-13 +user,1142,Johnnie,Renea,14 +session,1142,0,Firefox 45,95,2018-12-07 +session,1142,1,Chrome 24,36,2018-07-11 +session,1142,2,Safari 4,105,2017-09-06 +session,1142,3,Firefox 35,15,2019-01-06 +session,1142,4,Safari 14,79,2018-08-27 +session,1142,5,Firefox 2,10,2017-01-07 +session,1142,6,Internet Explorer 40,10,2017-08-29 +session,1142,7,Internet Explorer 45,68,2018-12-28 +session,1142,8,Safari 22,67,2017-01-18 +user,1143,Antoine,Douglass,80 +session,1143,0,Internet Explorer 35,17,2017-11-29 +session,1143,1,Chrome 22,37,2018-07-18 +user,1144,Nina,Jimmie,18 +session,1144,0,Internet Explorer 5,114,2017-01-28 +session,1144,1,Firefox 42,59,2017-11-24 +session,1144,2,Chrome 9,32,2016-09-10 +session,1144,3,Safari 35,77,2017-03-04 +session,1144,4,Internet Explorer 47,100,2016-06-08 +session,1144,5,Internet Explorer 32,7,2018-09-07 +session,1144,6,Safari 23,91,2018-04-19 +session,1144,7,Firefox 10,42,2017-05-11 +session,1144,8,Firefox 13,90,2017-06-04 +user,1145,Ji,Fannie,94 +session,1145,0,Internet Explorer 48,90,2016-08-03 +session,1145,1,Internet Explorer 40,64,2016-08-20 +session,1145,2,Firefox 33,35,2017-03-03 +session,1145,3,Firefox 34,99,2016-10-23 +session,1145,4,Chrome 38,76,2018-10-31 +session,1145,5,Chrome 3,67,2016-12-13 +session,1145,6,Internet Explorer 29,68,2017-05-31 +user,1146,Marcel,Alana,79 +session,1146,0,Internet Explorer 24,71,2017-07-15 +session,1146,1,Internet Explorer 32,30,2016-12-22 +session,1146,2,Internet Explorer 43,41,2018-05-26 +session,1146,3,Internet Explorer 50,98,2017-05-23 +session,1146,4,Chrome 47,89,2018-09-20 +session,1146,5,Safari 43,39,2016-09-20 +user,1147,Chere,Damien,2 +session,1147,0,Safari 11,115,2018-01-18 +session,1147,1,Firefox 33,11,2017-01-10 +session,1147,2,Firefox 29,26,2019-01-24 +session,1147,3,Firefox 19,27,2018-01-11 +session,1147,4,Internet Explorer 30,34,2018-10-02 +session,1147,5,Safari 50,66,2017-12-19 +user,1148,Osvaldo,Nereida,27 +session,1148,0,Chrome 19,84,2018-07-14 +session,1148,1,Internet Explorer 9,34,2018-07-27 +session,1148,2,Internet Explorer 15,114,2017-01-07 +session,1148,3,Safari 50,10,2018-12-29 +session,1148,4,Safari 26,110,2017-01-18 +session,1148,5,Safari 50,15,2016-10-06 +session,1148,6,Safari 24,71,2017-08-03 +session,1148,7,Firefox 50,21,2017-10-16 +user,1149,Willy,Alix,1 +session,1149,0,Safari 48,39,2018-04-26 +session,1149,1,Internet Explorer 50,29,2017-07-31 +session,1149,2,Chrome 49,117,2017-11-05 +session,1149,3,Safari 37,88,2018-05-09 +session,1149,4,Internet Explorer 5,103,2017-12-28 +session,1149,5,Firefox 39,35,2018-03-09 +session,1149,6,Internet Explorer 27,88,2018-10-22 +session,1149,7,Internet Explorer 25,117,2016-05-23 +user,1150,Efren,Eric,96 +session,1150,0,Chrome 34,109,2016-12-21 +session,1150,1,Firefox 21,1,2016-09-24 +session,1150,2,Firefox 13,47,2018-06-11 +session,1150,3,Firefox 29,7,2016-06-16 +user,1151,Carlton,Carleen,78 +session,1151,0,Firefox 49,99,2017-11-20 +session,1151,1,Firefox 36,86,2019-01-19 +session,1151,2,Firefox 20,19,2016-12-01 +session,1151,3,Chrome 25,30,2018-11-08 +session,1151,4,Safari 49,30,2016-07-24 +session,1151,5,Chrome 47,26,2018-02-22 +session,1151,6,Chrome 33,8,2018-06-07 +session,1151,7,Internet Explorer 2,32,2017-11-22 +session,1151,8,Firefox 28,61,2017-07-20 +session,1151,9,Safari 11,89,2017-08-30 +user,1152,Rowena,Tim,18 +session,1152,0,Firefox 42,100,2018-07-02 +session,1152,1,Chrome 22,2,2018-09-16 +session,1152,2,Internet Explorer 29,118,2018-12-17 +session,1152,3,Safari 1,5,2018-09-12 +session,1152,4,Internet Explorer 19,94,2017-03-02 +user,1153,Jonnie,Shayne,24 +session,1153,0,Internet Explorer 6,94,2017-09-13 +session,1153,1,Safari 9,37,2016-06-12 +user,1154,Donnie,Newton,97 +session,1154,0,Safari 9,65,2018-04-19 +session,1154,1,Internet Explorer 7,114,2016-06-08 +session,1154,2,Firefox 36,62,2017-12-28 +session,1154,3,Chrome 31,99,2019-01-23 +user,1155,Celsa,Clifton,29 +session,1155,0,Safari 50,18,2017-07-19 +session,1155,1,Firefox 14,44,2017-06-29 +user,1156,Carlo,Basil,0 +session,1156,0,Firefox 47,51,2017-12-28 +user,1157,Loralee,Willow,35 +session,1157,0,Chrome 13,45,2017-01-05 +session,1157,1,Safari 37,10,2017-06-08 +session,1157,2,Safari 3,31,2016-12-07 +session,1157,3,Firefox 4,44,2016-06-09 +session,1157,4,Chrome 33,2,2018-03-12 +user,1158,Kurt,Robin,18 +session,1158,0,Internet Explorer 33,82,2018-01-04 +session,1158,1,Chrome 13,105,2017-01-03 +session,1158,2,Chrome 2,84,2017-02-14 +session,1158,3,Safari 13,49,2018-12-31 +session,1158,4,Internet Explorer 35,119,2018-03-31 +session,1158,5,Safari 32,59,2016-12-09 +session,1158,6,Chrome 23,4,2016-12-06 +session,1158,7,Safari 8,88,2017-08-26 +session,1158,8,Safari 44,69,2018-10-06 +session,1158,9,Chrome 42,19,2017-04-14 +user,1159,Merrill,Christina,89 +session,1159,0,Firefox 30,100,2018-05-08 +session,1159,1,Firefox 9,72,2016-07-11 +session,1159,2,Chrome 1,104,2016-08-22 +session,1159,3,Chrome 33,93,2018-08-13 +user,1160,Larry,Jeffery,34 +session,1160,0,Safari 45,80,2016-08-13 +session,1160,1,Internet Explorer 13,4,2016-10-28 +session,1160,2,Chrome 31,52,2016-08-15 +session,1160,3,Internet Explorer 10,5,2017-04-27 +session,1160,4,Safari 21,65,2017-11-05 +user,1161,Clemente,Jada,74 +session,1161,0,Internet Explorer 20,62,2016-06-20 +session,1161,1,Chrome 25,117,2016-06-30 +session,1161,2,Chrome 26,71,2018-12-08 +session,1161,3,Chrome 16,115,2017-04-19 +session,1161,4,Firefox 21,60,2016-09-10 +session,1161,5,Internet Explorer 21,3,2018-05-18 +user,1162,Brittany,Corrine,68 +session,1162,0,Firefox 30,1,2017-08-21 +session,1162,1,Chrome 9,76,2018-10-16 +session,1162,2,Firefox 48,75,2017-11-20 +session,1162,3,Chrome 15,71,2018-03-13 +session,1162,4,Safari 37,55,2018-12-02 +session,1162,5,Internet Explorer 8,52,2019-01-05 +session,1162,6,Firefox 37,80,2017-08-08 +session,1162,7,Firefox 11,109,2018-06-16 +user,1163,Osvaldo,Alissa,7 +session,1163,0,Chrome 40,70,2018-01-17 +session,1163,1,Safari 36,24,2016-07-22 +session,1163,2,Internet Explorer 43,7,2016-12-07 +session,1163,3,Safari 8,63,2018-02-06 +session,1163,4,Safari 15,77,2018-01-19 +session,1163,5,Internet Explorer 31,117,2017-09-30 +session,1163,6,Chrome 22,91,2018-07-17 +session,1163,7,Chrome 28,108,2018-11-03 +session,1163,8,Chrome 1,4,2017-08-24 +session,1163,9,Firefox 50,59,2016-09-09 +user,1164,Isobel,Viva,59 +session,1164,0,Chrome 38,74,2018-08-23 +session,1164,1,Chrome 16,44,2018-12-04 +user,1165,Bennie,Dong,49 +session,1165,0,Internet Explorer 38,90,2017-12-12 +session,1165,1,Firefox 19,83,2017-12-31 +session,1165,2,Firefox 47,77,2018-02-20 +session,1165,3,Firefox 11,26,2017-10-14 +session,1165,4,Safari 6,53,2018-01-22 +session,1165,5,Internet Explorer 38,101,2017-12-10 +session,1165,6,Chrome 30,42,2018-10-15 +session,1165,7,Chrome 8,74,2019-01-01 +user,1166,Regan,Nina,86 +session,1166,0,Chrome 35,31,2016-07-02 +session,1166,1,Safari 37,104,2018-12-28 +session,1166,2,Firefox 45,95,2018-09-20 +session,1166,3,Chrome 17,46,2016-11-17 +user,1167,Christoper,Rebekah,92 +session,1167,0,Internet Explorer 36,111,2018-12-19 +session,1167,1,Firefox 5,90,2018-08-31 +session,1167,2,Firefox 36,9,2018-02-10 +session,1167,3,Internet Explorer 27,114,2017-05-18 +session,1167,4,Firefox 15,111,2017-04-26 +session,1167,5,Internet Explorer 40,33,2016-09-15 +session,1167,6,Chrome 10,26,2016-07-08 +session,1167,7,Firefox 41,69,2017-06-23 +session,1167,8,Firefox 44,62,2017-10-30 +user,1168,Marcelle,Cordell,78 +session,1168,0,Chrome 36,111,2018-10-28 +session,1168,1,Internet Explorer 30,11,2018-11-11 +user,1169,Barabara,Julia,93 +session,1169,0,Chrome 6,108,2016-09-20 +session,1169,1,Firefox 11,52,2017-10-17 +session,1169,2,Safari 19,15,2017-09-09 +session,1169,3,Safari 10,42,2017-07-16 +session,1169,4,Safari 21,57,2017-08-04 +session,1169,5,Internet Explorer 36,35,2016-07-04 +session,1169,6,Firefox 34,95,2016-10-24 +user,1170,Irving,Genevive,12 +session,1170,0,Firefox 9,101,2018-12-08 +session,1170,1,Safari 11,102,2018-12-24 +session,1170,2,Firefox 49,42,2017-01-03 +session,1170,3,Safari 29,20,2017-09-23 +session,1170,4,Internet Explorer 39,9,2016-10-17 +session,1170,5,Internet Explorer 39,67,2017-06-28 +session,1170,6,Internet Explorer 10,10,2017-04-13 +session,1170,7,Chrome 25,69,2017-09-23 +session,1170,8,Internet Explorer 43,64,2017-09-09 +user,1171,Jordan,Ida,39 +session,1171,0,Safari 20,81,2018-10-12 +session,1171,1,Internet Explorer 42,15,2017-01-13 +session,1171,2,Chrome 1,37,2016-07-05 +session,1171,3,Internet Explorer 43,107,2016-11-04 +session,1171,4,Firefox 47,18,2017-07-03 +session,1171,5,Firefox 9,50,2016-10-24 +session,1171,6,Firefox 2,74,2016-06-12 +user,1172,Jody,Xiao,60 +session,1172,0,Internet Explorer 11,102,2018-10-18 +session,1172,1,Chrome 19,25,2018-06-03 +session,1172,2,Internet Explorer 35,20,2016-07-07 +user,1173,Foster,Evita,19 +session,1173,0,Internet Explorer 9,60,2017-08-18 +session,1173,1,Firefox 50,45,2017-10-11 +session,1173,2,Internet Explorer 21,105,2017-08-23 +session,1173,3,Internet Explorer 1,72,2017-06-10 +user,1174,Peg,Scot,41 +session,1174,0,Internet Explorer 36,69,2018-09-08 +session,1174,1,Chrome 4,103,2017-05-11 +session,1174,2,Internet Explorer 26,38,2017-01-22 +session,1174,3,Internet Explorer 6,39,2018-01-25 +session,1174,4,Safari 39,6,2017-07-03 +session,1174,5,Chrome 28,88,2018-01-21 +session,1174,6,Chrome 49,56,2017-11-07 +user,1175,Ramiro,Margarita,17 +session,1175,0,Safari 14,56,2018-05-18 +session,1175,1,Firefox 39,51,2018-01-09 +session,1175,2,Safari 24,75,2017-08-22 +session,1175,3,Safari 26,77,2017-11-28 +session,1175,4,Internet Explorer 16,66,2018-06-03 +user,1176,Jonathan,Mable,35 +session,1176,0,Safari 47,75,2018-11-23 +session,1176,1,Internet Explorer 23,70,2017-05-23 +user,1177,Jc,Minh,55 +session,1177,0,Safari 30,70,2018-05-15 +session,1177,1,Internet Explorer 28,4,2017-03-06 +session,1177,2,Safari 19,40,2017-09-16 +session,1177,3,Chrome 45,118,2018-12-16 +session,1177,4,Chrome 10,76,2017-11-27 +session,1177,5,Firefox 49,65,2018-08-10 +session,1177,6,Safari 4,111,2018-04-06 +session,1177,7,Firefox 21,3,2016-07-26 +user,1178,Leana,Carin,60 +session,1178,0,Firefox 33,99,2017-04-17 +session,1178,1,Safari 19,59,2018-01-21 +session,1178,2,Chrome 40,11,2016-12-30 +session,1178,3,Safari 2,16,2018-09-18 +session,1178,4,Internet Explorer 40,1,2016-12-01 +session,1178,5,Firefox 45,64,2017-12-14 +session,1178,6,Chrome 40,23,2016-06-22 +session,1178,7,Firefox 25,39,2017-08-16 +session,1178,8,Safari 28,111,2017-10-26 +session,1178,9,Internet Explorer 22,4,2017-07-18 +user,1179,Emmanuel,Leroy,4 +session,1179,0,Internet Explorer 9,31,2016-11-13 +session,1179,1,Safari 13,62,2016-10-20 +session,1179,2,Chrome 30,1,2016-07-04 +session,1179,3,Internet Explorer 35,26,2016-07-23 +session,1179,4,Internet Explorer 7,112,2016-07-18 +session,1179,5,Internet Explorer 10,84,2018-06-16 +session,1179,6,Chrome 5,28,2017-05-20 +session,1179,7,Safari 42,71,2018-11-23 +session,1179,8,Internet Explorer 23,8,2016-10-17 +user,1180,Cortez,Celestina,50 +session,1180,0,Firefox 41,116,2016-06-16 +session,1180,1,Chrome 32,30,2017-11-20 +session,1180,2,Internet Explorer 7,49,2016-05-28 +session,1180,3,Safari 43,19,2019-02-04 +session,1180,4,Safari 43,83,2019-01-11 +session,1180,5,Firefox 23,86,2017-01-05 +user,1181,Willie,Clinton,77 +session,1181,0,Chrome 36,25,2018-10-10 +session,1181,1,Safari 2,26,2018-10-09 +session,1181,2,Internet Explorer 46,84,2018-11-24 +session,1181,3,Firefox 50,19,2016-07-07 +session,1181,4,Internet Explorer 47,41,2017-04-09 +session,1181,5,Safari 27,102,2016-11-22 +session,1181,6,Internet Explorer 46,42,2016-11-02 +session,1181,7,Firefox 35,28,2016-12-01 +session,1181,8,Internet Explorer 5,67,2016-06-24 +session,1181,9,Firefox 49,119,2018-11-30 +user,1182,Julee,Isidro,95 +session,1182,0,Chrome 19,105,2017-07-29 +session,1182,1,Firefox 38,117,2018-11-12 +session,1182,2,Internet Explorer 1,18,2018-12-20 +session,1182,3,Chrome 11,24,2017-09-21 +session,1182,4,Firefox 28,119,2019-01-02 +session,1182,5,Chrome 25,95,2017-06-27 +session,1182,6,Firefox 46,13,2018-07-15 +user,1183,Garfield,Sona,42 +session,1183,0,Internet Explorer 45,52,2017-07-20 +session,1183,1,Chrome 17,9,2018-07-03 +user,1184,Candace,Brenda,55 +session,1184,0,Safari 12,94,2016-12-14 +session,1184,1,Firefox 49,66,2017-11-03 +session,1184,2,Internet Explorer 36,96,2018-08-25 +session,1184,3,Safari 29,73,2017-11-21 +session,1184,4,Safari 44,37,2018-10-18 +session,1184,5,Safari 39,7,2017-02-12 +user,1185,Oswaldo,Maire,47 +session,1185,0,Internet Explorer 16,1,2017-11-13 +session,1185,1,Safari 34,22,2018-10-09 +session,1185,2,Internet Explorer 47,57,2018-10-16 +user,1186,Magali,Ina,0 +session,1186,0,Safari 40,119,2017-11-16 +session,1186,1,Chrome 4,80,2018-07-12 +user,1187,Rossana,Roosevelt,77 +session,1187,0,Firefox 18,24,2017-06-05 +session,1187,1,Safari 24,56,2018-02-15 +session,1187,2,Firefox 10,84,2019-01-17 +session,1187,3,Internet Explorer 28,30,2018-06-02 +session,1187,4,Safari 30,91,2017-02-05 +session,1187,5,Internet Explorer 49,30,2016-09-05 +user,1188,Toya,Salome,8 +session,1188,0,Internet Explorer 2,112,2019-01-02 +session,1188,1,Chrome 35,41,2017-07-26 +session,1188,2,Chrome 28,75,2018-11-23 +session,1188,3,Internet Explorer 36,106,2018-04-29 +session,1188,4,Safari 34,0,2017-09-23 +session,1188,5,Internet Explorer 31,27,2018-02-12 +session,1188,6,Chrome 31,48,2017-08-11 +user,1189,Zaida,Rueben,72 +session,1189,0,Firefox 16,51,2017-03-20 +session,1189,1,Internet Explorer 2,90,2017-11-26 +session,1189,2,Safari 33,102,2018-02-08 +session,1189,3,Safari 6,112,2016-05-24 +session,1189,4,Firefox 38,18,2018-12-24 +session,1189,5,Chrome 17,98,2018-07-18 +session,1189,6,Chrome 19,18,2017-08-02 +session,1189,7,Internet Explorer 39,74,2017-11-18 +session,1189,8,Firefox 7,14,2016-06-21 +user,1190,Dante,Jammie,0 +session,1190,0,Internet Explorer 45,108,2017-08-17 +session,1190,1,Firefox 24,32,2016-09-27 +session,1190,2,Safari 32,114,2017-08-03 +session,1190,3,Firefox 48,77,2018-08-20 +session,1190,4,Firefox 30,58,2018-11-18 +session,1190,5,Firefox 27,67,2018-05-11 +session,1190,6,Chrome 41,74,2018-10-29 +session,1190,7,Chrome 36,2,2017-03-08 +session,1190,8,Internet Explorer 26,22,2016-08-23 +user,1191,Katia,Bethanie,12 +session,1191,0,Internet Explorer 22,57,2018-11-27 +session,1191,1,Internet Explorer 24,94,2018-02-16 +session,1191,2,Chrome 43,44,2016-10-30 +session,1191,3,Chrome 46,46,2017-01-21 +session,1191,4,Firefox 39,95,2017-02-23 +session,1191,5,Safari 10,83,2018-04-05 +session,1191,6,Firefox 33,48,2018-08-03 +session,1191,7,Safari 32,112,2017-10-10 +user,1192,Bud,Jeremy,13 +session,1192,0,Firefox 26,14,2018-08-27 +user,1193,Rolf,Conchita,22 +session,1193,0,Safari 27,38,2018-02-06 +user,1194,Basil,Leota,82 +session,1194,0,Internet Explorer 30,8,2017-05-21 +session,1194,1,Safari 45,75,2017-09-21 +session,1194,2,Firefox 21,40,2018-12-29 +session,1194,3,Safari 14,81,2018-07-16 +session,1194,4,Chrome 28,100,2017-04-15 +session,1194,5,Firefox 7,52,2017-02-22 +session,1194,6,Safari 19,1,2017-01-24 +session,1194,7,Safari 24,89,2017-05-29 +session,1194,8,Firefox 4,84,2018-05-03 +session,1194,9,Chrome 45,101,2018-12-09 +user,1195,Preston,Kaylee,94 +session,1195,0,Safari 35,6,2017-06-09 +session,1195,1,Safari 4,99,2018-03-19 +session,1195,2,Firefox 44,118,2017-10-30 +session,1195,3,Internet Explorer 40,119,2018-10-07 +user,1196,Marguerita,Breann,18 +session,1196,0,Safari 22,80,2017-07-23 +session,1196,1,Safari 31,48,2017-10-29 +session,1196,2,Internet Explorer 30,57,2018-01-09 +user,1197,Monika,Shelba,67 +session,1197,0,Chrome 24,53,2018-05-19 +session,1197,1,Firefox 16,88,2017-05-19 +session,1197,2,Safari 4,91,2016-07-30 +session,1197,3,Firefox 45,1,2018-09-18 +session,1197,4,Chrome 37,35,2018-01-20 +user,1198,Cleo,Erlene,8 +session,1198,0,Firefox 3,112,2019-01-20 +session,1198,1,Safari 13,13,2018-09-15 +session,1198,2,Chrome 47,104,2017-08-04 +user,1199,Mike,Heriberto,68 +session,1199,0,Firefox 50,117,2018-06-22 +session,1199,1,Chrome 34,17,2018-02-14 +session,1199,2,Internet Explorer 23,48,2017-06-16 +user,1200,Doreen,Marcene,8 +session,1200,0,Chrome 50,39,2018-03-13 +session,1200,1,Firefox 46,27,2017-09-28 +session,1200,2,Firefox 11,41,2018-02-13 +session,1200,3,Firefox 3,83,2017-11-22 +session,1200,4,Safari 28,2,2018-06-06 +session,1200,5,Safari 41,114,2017-01-13 +user,1201,Fidela,Gertha,9 +session,1201,0,Chrome 49,13,2017-03-28 +session,1201,1,Chrome 17,91,2016-12-04 +session,1201,2,Internet Explorer 11,96,2018-10-07 +session,1201,3,Safari 15,6,2018-07-11 +session,1201,4,Safari 40,58,2016-07-21 +session,1201,5,Firefox 40,12,2017-12-29 +session,1201,6,Chrome 25,38,2018-06-04 +session,1201,7,Chrome 12,14,2019-01-28 +session,1201,8,Chrome 39,106,2018-10-03 +user,1202,Normand,Jacques,34 +session,1202,0,Firefox 40,10,2016-12-01 +session,1202,1,Safari 43,13,2018-08-01 +session,1202,2,Chrome 44,30,2018-07-31 +session,1202,3,Firefox 32,43,2017-05-11 +session,1202,4,Chrome 8,80,2018-01-21 +session,1202,5,Safari 7,101,2018-03-26 +session,1202,6,Firefox 5,13,2018-01-31 +user,1203,Jefferson,Margaretta,16 +session,1203,0,Chrome 38,1,2017-01-03 +user,1204,Les,Lana,77 +session,1204,0,Internet Explorer 28,103,2018-09-08 +session,1204,1,Firefox 8,86,2017-07-19 +session,1204,2,Firefox 42,62,2017-03-19 +session,1204,3,Chrome 20,0,2017-03-03 +session,1204,4,Chrome 50,85,2017-12-02 +user,1205,Johnathan,Sacha,0 +session,1205,0,Internet Explorer 16,24,2018-01-29 +session,1205,1,Safari 20,31,2018-07-16 +session,1205,2,Firefox 43,19,2016-11-26 +session,1205,3,Safari 38,62,2016-12-20 +session,1205,4,Safari 1,92,2016-07-14 +session,1205,5,Safari 13,25,2016-07-23 +user,1206,Juliann,Concepcion,55 +session,1206,0,Internet Explorer 6,47,2016-11-23 +session,1206,1,Chrome 46,37,2017-12-03 +session,1206,2,Firefox 29,115,2017-05-04 +session,1206,3,Internet Explorer 31,98,2018-03-26 +session,1206,4,Safari 31,37,2018-02-07 +session,1206,5,Safari 18,20,2018-10-24 +session,1206,6,Firefox 15,104,2016-10-10 +user,1207,Mason,Araceli,4 +session,1207,0,Chrome 25,33,2017-06-18 +session,1207,1,Safari 14,4,2018-04-16 +session,1207,2,Internet Explorer 33,41,2017-06-26 +session,1207,3,Safari 16,7,2017-08-15 +session,1207,4,Internet Explorer 8,28,2018-07-03 +session,1207,5,Safari 42,7,2016-11-21 +session,1207,6,Chrome 38,54,2019-01-14 +session,1207,7,Internet Explorer 48,108,2019-01-24 +user,1208,Cleotilde,Elaina,65 +session,1208,0,Chrome 11,28,2018-05-20 +session,1208,1,Chrome 30,88,2018-03-17 +session,1208,2,Firefox 18,100,2016-09-19 +session,1208,3,Safari 32,34,2016-09-28 +session,1208,4,Internet Explorer 30,78,2017-10-15 +user,1209,Arlette,Neal,43 +session,1209,0,Safari 42,69,2016-08-25 +session,1209,1,Safari 30,75,2017-05-22 +session,1209,2,Internet Explorer 18,47,2018-10-11 +session,1209,3,Firefox 36,102,2018-07-07 +session,1209,4,Firefox 6,27,2017-12-07 +user,1210,Brice,Toni,27 +session,1210,0,Safari 6,11,2018-05-28 +session,1210,1,Firefox 30,115,2017-09-28 +session,1210,2,Internet Explorer 36,23,2017-09-20 +session,1210,3,Internet Explorer 18,106,2016-08-28 +session,1210,4,Chrome 30,30,2018-11-24 +user,1211,Zonia,Leoma,56 +session,1211,0,Internet Explorer 35,20,2018-06-10 +session,1211,1,Internet Explorer 13,5,2016-08-12 +session,1211,2,Firefox 11,79,2017-10-16 +user,1212,Fritz,Mertie,38 +session,1212,0,Safari 1,40,2018-02-24 +session,1212,1,Safari 8,100,2016-06-29 +session,1212,2,Safari 46,89,2018-05-30 +session,1212,3,Firefox 15,20,2017-08-04 +session,1212,4,Chrome 26,95,2016-07-12 +user,1213,Daine,Donnie,50 +session,1213,0,Safari 3,98,2017-01-09 +session,1213,1,Internet Explorer 28,59,2017-01-18 +session,1213,2,Internet Explorer 15,77,2018-02-26 +session,1213,3,Internet Explorer 19,84,2018-10-02 +user,1214,Joshua,Sherley,64 +session,1214,0,Chrome 41,22,2017-09-21 +session,1214,1,Internet Explorer 13,63,2018-04-23 +session,1214,2,Chrome 2,107,2017-05-10 +session,1214,3,Chrome 12,111,2016-05-27 +session,1214,4,Internet Explorer 25,32,2016-10-29 +session,1214,5,Safari 21,32,2017-02-22 +user,1215,Aleshia,Opal,2 +session,1215,0,Safari 48,87,2016-12-17 +session,1215,1,Firefox 41,21,2017-11-27 +session,1215,2,Chrome 15,48,2016-11-19 +session,1215,3,Internet Explorer 49,30,2017-09-26 +session,1215,4,Chrome 28,70,2017-05-25 +session,1215,5,Chrome 16,67,2016-10-21 +user,1216,Harris,Rhoda,98 +session,1216,0,Safari 33,110,2018-04-07 +session,1216,1,Firefox 41,68,2017-06-15 +session,1216,2,Safari 8,40,2016-09-16 +session,1216,3,Chrome 15,117,2018-05-15 +session,1216,4,Internet Explorer 11,59,2017-01-05 +session,1216,5,Safari 11,66,2018-07-20 +session,1216,6,Chrome 27,70,2017-06-24 +session,1216,7,Firefox 49,20,2019-01-09 +session,1216,8,Safari 9,30,2018-01-19 +session,1216,9,Firefox 19,93,2018-05-16 +user,1217,Penni,Jerica,34 +session,1217,0,Internet Explorer 27,61,2018-08-03 +session,1217,1,Internet Explorer 41,43,2017-09-01 +session,1217,2,Safari 34,43,2017-12-13 +session,1217,3,Safari 44,75,2018-01-23 +user,1218,Sol,Darin,0 +session,1218,0,Internet Explorer 49,54,2018-11-17 +session,1218,1,Safari 48,117,2016-12-14 +session,1218,2,Internet Explorer 10,99,2018-08-04 +user,1219,Tyson,Celia,94 +session,1219,0,Internet Explorer 44,42,2017-08-14 +session,1219,1,Internet Explorer 40,107,2017-08-15 +user,1220,Ellen,Toney,64 +session,1220,0,Internet Explorer 21,21,2017-10-20 +session,1220,1,Firefox 49,113,2018-01-18 +user,1221,Scott,Allen,86 +session,1221,0,Chrome 44,65,2017-05-13 +session,1221,1,Internet Explorer 17,6,2017-01-17 +session,1221,2,Chrome 25,76,2018-12-24 +user,1222,Marquis,Latoyia,85 +session,1222,0,Internet Explorer 34,53,2017-02-26 +session,1222,1,Safari 7,101,2018-01-04 +session,1222,2,Safari 4,47,2018-08-11 +session,1222,3,Internet Explorer 45,27,2018-07-17 +session,1222,4,Firefox 33,14,2017-06-05 +session,1222,5,Safari 49,42,2017-03-24 +session,1222,6,Chrome 45,58,2018-08-24 +user,1223,Alexander,Kecia,23 +session,1223,0,Firefox 25,52,2018-07-07 +session,1223,1,Safari 9,55,2016-05-19 +session,1223,2,Safari 30,53,2018-07-12 +session,1223,3,Safari 30,94,2017-08-01 +session,1223,4,Chrome 48,50,2018-09-09 +session,1223,5,Safari 12,13,2016-11-09 +session,1223,6,Firefox 22,57,2016-08-05 +session,1223,7,Internet Explorer 20,107,2016-12-29 +user,1224,Mitzi,Maya,9 +session,1224,0,Safari 36,75,2017-02-04 +session,1224,1,Internet Explorer 34,94,2017-01-15 +session,1224,2,Firefox 30,86,2018-08-29 +session,1224,3,Firefox 15,20,2018-08-09 +session,1224,4,Chrome 41,87,2017-11-17 +session,1224,5,Firefox 21,29,2019-01-24 +session,1224,6,Internet Explorer 30,80,2017-01-13 +user,1225,Aisha,Sulema,19 +session,1225,0,Firefox 10,72,2018-12-14 +session,1225,1,Internet Explorer 42,47,2016-09-29 +session,1225,2,Firefox 4,25,2016-09-22 +user,1226,Nova,Jade,4 +session,1226,0,Internet Explorer 8,67,2016-08-11 +session,1226,1,Internet Explorer 22,97,2018-11-06 +session,1226,2,Firefox 50,84,2016-05-24 +session,1226,3,Internet Explorer 33,34,2019-02-07 +session,1226,4,Firefox 37,101,2017-10-07 +session,1226,5,Safari 5,29,2017-02-05 +session,1226,6,Chrome 7,30,2017-12-24 +session,1226,7,Safari 7,81,2016-09-05 +session,1226,8,Firefox 13,79,2018-04-25 +user,1227,Jamie,Meg,52 +session,1227,0,Safari 40,118,2016-10-13 +session,1227,1,Chrome 6,97,2017-09-18 +session,1227,2,Internet Explorer 33,62,2016-08-10 +user,1228,Lulu,Lucio,26 +session,1228,0,Safari 47,112,2017-11-20 +session,1228,1,Internet Explorer 4,89,2017-03-04 +session,1228,2,Internet Explorer 44,61,2017-12-04 +session,1228,3,Safari 45,106,2018-06-04 +session,1228,4,Safari 47,86,2017-10-22 +session,1228,5,Chrome 28,69,2018-05-20 +session,1228,6,Chrome 15,113,2018-07-12 +user,1229,Jeffery,Cicely,65 +session,1229,0,Safari 1,53,2017-08-17 +session,1229,1,Safari 9,52,2016-11-17 +session,1229,2,Internet Explorer 46,52,2018-06-08 +session,1229,3,Internet Explorer 7,5,2018-07-02 +session,1229,4,Chrome 11,78,2018-04-16 +user,1230,Cherry,Hilma,92 +session,1230,0,Safari 38,54,2016-11-27 +user,1231,Rhona,Zona,33 +session,1231,0,Safari 48,51,2018-10-21 +session,1231,1,Safari 8,35,2018-11-08 +session,1231,2,Firefox 48,0,2018-06-13 +session,1231,3,Firefox 18,102,2019-01-20 +session,1231,4,Safari 16,36,2018-07-17 +session,1231,5,Firefox 32,36,2016-10-07 +session,1231,6,Chrome 50,57,2017-06-26 +session,1231,7,Chrome 20,87,2017-01-14 +user,1232,Shanta,Violet,77 +session,1232,0,Internet Explorer 12,26,2016-06-07 +session,1232,1,Firefox 14,24,2016-08-14 +session,1232,2,Internet Explorer 39,65,2018-05-31 +session,1232,3,Chrome 29,78,2018-10-27 +user,1233,Mikaela,Leonia,68 +session,1233,0,Safari 34,105,2017-01-27 +session,1233,1,Safari 21,73,2017-11-29 +session,1233,2,Internet Explorer 5,20,2017-06-22 +session,1233,3,Safari 6,8,2018-09-04 +session,1233,4,Safari 9,48,2019-01-19 +user,1234,Ike,Jenniffer,18 +session,1234,0,Internet Explorer 17,53,2016-11-26 +session,1234,1,Firefox 31,45,2018-10-18 +session,1234,2,Chrome 17,34,2018-12-17 +session,1234,3,Firefox 24,71,2019-01-25 +session,1234,4,Firefox 22,42,2016-12-11 +user,1235,Trudie,Vita,28 +session,1235,0,Chrome 35,31,2016-12-09 +session,1235,1,Chrome 22,29,2016-07-21 +session,1235,2,Internet Explorer 36,17,2016-08-31 +session,1235,3,Chrome 46,20,2017-09-19 +session,1235,4,Firefox 35,39,2019-02-09 +user,1236,Dannie,Wallace,33 +session,1236,0,Firefox 9,5,2018-06-15 +session,1236,1,Internet Explorer 4,27,2016-06-23 +session,1236,2,Internet Explorer 25,97,2018-10-18 +user,1237,Meggan,Mellie,63 +session,1237,0,Internet Explorer 10,24,2017-04-17 +session,1237,1,Chrome 34,110,2016-07-07 +session,1237,2,Firefox 45,77,2016-06-01 +session,1237,3,Safari 22,67,2018-02-26 +session,1237,4,Internet Explorer 38,24,2017-02-28 +user,1238,Nubia,Shavonda,54 +session,1238,0,Firefox 14,25,2018-11-07 +session,1238,1,Firefox 8,29,2017-07-19 +session,1238,2,Internet Explorer 36,42,2017-07-28 +user,1239,Adolfo,Lenora,14 +session,1239,0,Chrome 19,39,2016-09-17 +session,1239,1,Chrome 13,65,2018-03-28 +session,1239,2,Chrome 31,65,2018-03-18 +session,1239,3,Internet Explorer 27,85,2017-10-24 +session,1239,4,Chrome 23,108,2018-08-21 +user,1240,Frank,Corina,13 +session,1240,0,Internet Explorer 18,0,2017-10-31 +session,1240,1,Firefox 50,4,2018-11-09 +session,1240,2,Chrome 37,103,2016-12-28 +session,1240,3,Internet Explorer 7,108,2017-06-15 +session,1240,4,Internet Explorer 6,21,2018-08-21 +session,1240,5,Safari 29,73,2019-01-15 +session,1240,6,Internet Explorer 18,118,2019-02-09 +session,1240,7,Chrome 45,38,2018-11-18 +session,1240,8,Chrome 28,96,2018-03-10 +user,1241,Caroyln,Burma,44 +session,1241,0,Internet Explorer 49,17,2018-10-03 +session,1241,1,Internet Explorer 14,103,2017-11-28 +user,1242,Josefa,Bill,99 +session,1242,0,Chrome 33,8,2016-11-30 +session,1242,1,Safari 29,39,2017-07-08 +session,1242,2,Safari 10,24,2016-08-17 +session,1242,3,Firefox 10,6,2018-07-06 +session,1242,4,Chrome 26,7,2017-03-12 +session,1242,5,Firefox 10,59,2018-09-20 +session,1242,6,Safari 39,22,2018-05-17 +session,1242,7,Firefox 50,106,2017-05-30 +session,1242,8,Internet Explorer 3,45,2019-02-03 +user,1243,Ammie,Antione,43 +session,1243,0,Internet Explorer 35,52,2016-06-15 +session,1243,1,Safari 18,96,2016-12-02 +session,1243,2,Firefox 43,63,2018-05-20 +session,1243,3,Chrome 50,86,2017-09-11 +session,1243,4,Chrome 18,23,2017-05-27 +session,1243,5,Chrome 49,42,2017-01-15 +session,1243,6,Chrome 4,114,2018-08-04 +session,1243,7,Firefox 14,2,2019-02-07 +session,1243,8,Chrome 39,3,2016-11-23 +session,1243,9,Internet Explorer 41,14,2018-06-17 +user,1244,Ja,Lana,84 +session,1244,0,Internet Explorer 18,119,2017-04-04 +session,1244,1,Firefox 47,18,2018-12-12 +session,1244,2,Internet Explorer 47,55,2018-03-19 +session,1244,3,Firefox 43,113,2017-11-23 +session,1244,4,Internet Explorer 35,12,2018-05-06 +session,1244,5,Safari 22,0,2017-12-26 +session,1244,6,Internet Explorer 43,58,2016-09-01 +session,1244,7,Internet Explorer 44,39,2018-06-17 +session,1244,8,Internet Explorer 28,70,2017-09-10 +session,1244,9,Safari 9,27,2016-08-12 +user,1245,Tommy,Letha,72 +session,1245,0,Chrome 3,107,2016-11-07 +session,1245,1,Chrome 17,70,2017-09-07 +session,1245,2,Internet Explorer 21,69,2017-09-22 +session,1245,3,Chrome 20,110,2018-07-29 +session,1245,4,Safari 29,90,2016-11-07 +session,1245,5,Firefox 30,23,2016-06-28 +session,1245,6,Chrome 21,26,2016-09-09 +user,1246,Velvet,Verdie,4 +session,1246,0,Safari 24,79,2018-11-13 +session,1246,1,Firefox 9,31,2018-08-19 +session,1246,2,Internet Explorer 30,39,2017-10-08 +session,1246,3,Internet Explorer 1,27,2017-03-24 +session,1246,4,Firefox 36,33,2018-06-28 +session,1246,5,Firefox 40,33,2017-04-08 +session,1246,6,Internet Explorer 17,58,2017-12-23 +session,1246,7,Chrome 1,14,2017-10-07 +session,1246,8,Internet Explorer 24,91,2017-02-04 +session,1246,9,Safari 36,108,2017-09-27 +user,1247,Miles,Minda,98 +session,1247,0,Firefox 49,86,2018-03-26 +session,1247,1,Internet Explorer 43,65,2018-05-06 +session,1247,2,Chrome 28,102,2018-07-01 +session,1247,3,Chrome 45,44,2016-06-18 +session,1247,4,Firefox 17,116,2018-04-04 +session,1247,5,Chrome 50,88,2018-08-10 +session,1247,6,Chrome 44,76,2018-08-23 +session,1247,7,Firefox 11,19,2017-04-29 +user,1248,Boyd,Micki,57 +session,1248,0,Chrome 19,64,2016-11-18 +session,1248,1,Firefox 20,69,2017-04-22 +session,1248,2,Internet Explorer 8,8,2017-08-28 +user,1249,Lynsey,Doria,82 +session,1249,0,Firefox 40,77,2017-05-17 +session,1249,1,Firefox 21,59,2017-08-21 +user,1250,Samira,Andre,42 +session,1250,0,Chrome 17,1,2017-02-02 +session,1250,1,Firefox 45,93,2018-05-20 +session,1250,2,Internet Explorer 47,99,2018-12-24 +session,1250,3,Firefox 46,48,2018-12-15 +session,1250,4,Firefox 18,59,2018-06-04 +session,1250,5,Chrome 47,60,2017-04-30 +session,1250,6,Safari 1,29,2018-10-16 +session,1250,7,Chrome 15,93,2017-06-26 +session,1250,8,Internet Explorer 20,34,2016-06-21 +session,1250,9,Firefox 16,81,2016-12-09 +user,1251,Lawrence,Philip,95 +session,1251,0,Internet Explorer 15,48,2018-06-13 +user,1252,Rozanne,Phebe,78 +session,1252,0,Chrome 16,11,2017-01-31 +session,1252,1,Internet Explorer 23,13,2018-11-07 +session,1252,2,Chrome 11,24,2018-03-29 +session,1252,3,Safari 7,94,2016-07-14 +session,1252,4,Internet Explorer 47,49,2018-04-19 +session,1252,5,Internet Explorer 44,57,2018-09-18 +session,1252,6,Internet Explorer 24,55,2016-05-23 +session,1252,7,Safari 34,35,2018-01-24 +user,1253,Orville,Fredericka,93 +session,1253,0,Safari 44,44,2016-10-19 +session,1253,1,Safari 23,1,2017-06-09 +session,1253,2,Internet Explorer 30,87,2017-10-05 +session,1253,3,Safari 36,29,2018-11-08 +session,1253,4,Chrome 39,8,2016-08-18 +session,1253,5,Firefox 21,103,2016-09-22 +session,1253,6,Internet Explorer 1,13,2017-02-02 +session,1253,7,Internet Explorer 17,101,2018-05-29 +user,1254,Denny,Bea,17 +session,1254,0,Safari 20,66,2016-08-26 +session,1254,1,Safari 17,37,2018-12-18 +session,1254,2,Internet Explorer 42,96,2018-07-20 +user,1255,Garfield,Thora,17 +session,1255,0,Safari 7,87,2018-08-09 +session,1255,1,Internet Explorer 49,77,2017-12-14 +session,1255,2,Safari 4,75,2018-06-15 +session,1255,3,Safari 14,5,2017-10-16 +session,1255,4,Firefox 32,51,2018-07-31 +user,1256,Ula,Dennise,69 +session,1256,0,Chrome 9,71,2019-01-30 +session,1256,1,Chrome 50,46,2017-03-31 +session,1256,2,Firefox 12,71,2018-07-21 +session,1256,3,Internet Explorer 6,93,2016-09-26 +session,1256,4,Internet Explorer 20,18,2018-08-10 +session,1256,5,Firefox 18,81,2016-07-17 +session,1256,6,Chrome 29,36,2018-08-27 +session,1256,7,Firefox 50,89,2018-01-11 +user,1257,Domenic,Verlie,57 +session,1257,0,Internet Explorer 3,96,2017-04-11 +session,1257,1,Safari 21,18,2017-07-08 +session,1257,2,Chrome 14,76,2016-07-27 +session,1257,3,Chrome 33,58,2018-10-30 +session,1257,4,Safari 4,59,2017-02-10 +session,1257,5,Chrome 16,25,2018-10-23 +session,1257,6,Firefox 28,70,2017-01-19 +session,1257,7,Chrome 47,59,2017-11-29 +session,1257,8,Firefox 21,40,2017-06-24 +session,1257,9,Internet Explorer 15,119,2017-01-10 +user,1258,Vina,Cher,23 +session,1258,0,Firefox 30,65,2016-07-21 +session,1258,1,Firefox 8,8,2018-03-06 +user,1259,Shawnta,Keli,65 +session,1259,0,Safari 9,101,2018-08-30 +session,1259,1,Firefox 9,94,2017-09-05 +session,1259,2,Firefox 45,34,2018-06-24 +session,1259,3,Firefox 13,86,2018-09-30 +user,1260,Chassidy,Gabrielle,68 +session,1260,0,Internet Explorer 21,87,2017-07-04 +user,1261,Andy,Aleida,77 +session,1261,0,Safari 31,32,2017-07-02 +session,1261,1,Firefox 5,27,2017-02-25 +user,1262,Darryl,Ila,74 +session,1262,0,Chrome 20,99,2018-09-07 +session,1262,1,Chrome 19,102,2018-07-10 +session,1262,2,Chrome 29,35,2017-04-22 +session,1262,3,Chrome 42,68,2018-03-27 +session,1262,4,Internet Explorer 40,0,2017-09-21 +session,1262,5,Firefox 36,86,2018-01-06 +user,1263,Ollie,Donita,34 +session,1263,0,Firefox 36,8,2018-06-05 +session,1263,1,Firefox 22,22,2018-12-09 +session,1263,2,Chrome 29,31,2018-05-13 +session,1263,3,Firefox 13,54,2018-07-22 +user,1264,Florentino,Rheba,19 +session,1264,0,Firefox 8,71,2018-10-23 +session,1264,1,Chrome 7,103,2019-01-11 +session,1264,2,Chrome 17,8,2018-01-13 +session,1264,3,Internet Explorer 13,111,2018-06-02 +session,1264,4,Safari 30,38,2017-10-27 +session,1264,5,Firefox 24,26,2016-08-28 +user,1265,Otis,Agatha,79 +session,1265,0,Firefox 41,79,2017-02-12 +session,1265,1,Firefox 30,26,2018-02-04 +session,1265,2,Internet Explorer 31,68,2017-04-28 +session,1265,3,Firefox 15,22,2017-02-02 +session,1265,4,Chrome 18,21,2016-08-10 +session,1265,5,Internet Explorer 30,37,2018-08-19 +session,1265,6,Safari 27,52,2018-01-28 +session,1265,7,Safari 34,112,2017-02-24 +user,1266,Dakota,Luke,19 +session,1266,0,Safari 11,53,2017-07-01 +session,1266,1,Firefox 46,109,2018-03-13 +session,1266,2,Firefox 24,105,2018-06-01 +session,1266,3,Internet Explorer 9,7,2017-03-12 +session,1266,4,Firefox 9,59,2017-02-15 +session,1266,5,Safari 2,50,2017-02-21 +session,1266,6,Internet Explorer 49,19,2017-05-09 +session,1266,7,Internet Explorer 41,33,2017-03-27 +session,1266,8,Firefox 13,57,2017-12-18 +session,1266,9,Safari 18,12,2019-01-22 +user,1267,Kimber,Delana,47 +session,1267,0,Safari 35,117,2018-05-24 +session,1267,1,Safari 15,4,2018-08-20 +session,1267,2,Safari 47,107,2018-10-21 +session,1267,3,Safari 34,97,2017-02-10 +session,1267,4,Safari 25,30,2018-12-09 +session,1267,5,Internet Explorer 3,101,2018-03-31 +session,1267,6,Chrome 11,71,2018-01-11 +user,1268,Keneth,Clora,58 +session,1268,0,Safari 11,58,2016-10-09 +session,1268,1,Chrome 30,90,2016-08-07 +session,1268,2,Safari 16,38,2016-11-24 +session,1268,3,Internet Explorer 27,101,2016-09-10 +session,1268,4,Firefox 33,42,2017-08-17 +session,1268,5,Safari 45,58,2018-08-03 +session,1268,6,Internet Explorer 19,92,2018-12-08 +session,1268,7,Firefox 10,67,2017-05-06 +session,1268,8,Internet Explorer 40,32,2017-04-27 +user,1269,Vonda,Violet,87 +session,1269,0,Safari 30,9,2016-10-11 +session,1269,1,Internet Explorer 2,101,2016-05-28 +session,1269,2,Chrome 5,84,2018-05-29 +session,1269,3,Safari 7,117,2018-07-31 +session,1269,4,Chrome 30,30,2016-11-08 +session,1269,5,Internet Explorer 36,78,2018-10-31 +session,1269,6,Safari 20,17,2016-12-27 +session,1269,7,Safari 26,115,2018-11-05 +session,1269,8,Safari 20,75,2016-12-15 +user,1270,Kyung,Freddy,48 +session,1270,0,Firefox 25,53,2018-03-17 +session,1270,1,Firefox 11,5,2016-12-20 +session,1270,2,Firefox 2,117,2017-10-16 +session,1270,3,Chrome 33,12,2017-03-31 +session,1270,4,Safari 16,48,2017-01-15 +session,1270,5,Safari 45,105,2018-08-12 +session,1270,6,Safari 31,48,2017-01-04 +session,1270,7,Firefox 39,70,2018-03-18 +user,1271,Carlo,Ashely,78 +session,1271,0,Safari 8,115,2018-12-22 +session,1271,1,Safari 36,58,2016-09-22 +session,1271,2,Firefox 37,46,2017-05-29 +session,1271,3,Internet Explorer 12,94,2017-07-20 +session,1271,4,Safari 19,79,2018-06-05 +session,1271,5,Firefox 30,17,2019-02-07 +user,1272,Stacy,Lizbeth,48 +session,1272,0,Chrome 10,62,2016-11-12 +session,1272,1,Chrome 19,86,2018-05-02 +user,1273,Mack,Rivka,75 +session,1273,0,Chrome 6,114,2016-07-16 +session,1273,1,Chrome 48,25,2016-10-23 +session,1273,2,Chrome 26,33,2018-07-13 +session,1273,3,Firefox 47,8,2017-09-14 +session,1273,4,Internet Explorer 14,58,2018-10-18 +session,1273,5,Firefox 44,51,2018-02-26 +session,1273,6,Chrome 17,96,2017-06-20 +session,1273,7,Internet Explorer 16,9,2017-12-17 +session,1273,8,Chrome 31,90,2017-05-18 +session,1273,9,Safari 17,39,2017-03-30 +user,1274,Adolfo,Mickey,69 +session,1274,0,Safari 43,11,2018-09-02 +user,1275,Barabara,Noelia,64 +session,1275,0,Safari 46,66,2017-12-11 +session,1275,1,Internet Explorer 22,1,2018-06-04 +session,1275,2,Chrome 16,82,2017-07-19 +session,1275,3,Firefox 25,13,2017-10-06 +session,1275,4,Internet Explorer 21,36,2018-10-31 +session,1275,5,Chrome 27,59,2018-05-13 +session,1275,6,Safari 29,83,2017-02-12 +session,1275,7,Internet Explorer 26,113,2016-12-23 +session,1275,8,Chrome 20,116,2017-02-27 +user,1276,Misti,Jeromy,30 +session,1276,0,Chrome 26,26,2017-02-28 +session,1276,1,Chrome 47,84,2018-03-10 +session,1276,2,Safari 44,11,2018-02-17 +session,1276,3,Firefox 1,108,2017-01-05 +session,1276,4,Internet Explorer 21,60,2018-09-25 +session,1276,5,Safari 5,60,2018-11-22 +session,1276,6,Chrome 29,46,2017-12-22 +session,1276,7,Internet Explorer 4,94,2017-10-03 +session,1276,8,Chrome 38,2,2018-05-21 +session,1276,9,Firefox 30,73,2017-09-17 +user,1277,Elicia,Brittny,15 +session,1277,0,Internet Explorer 9,64,2017-08-24 +session,1277,1,Firefox 50,17,2017-12-18 +session,1277,2,Internet Explorer 41,51,2017-11-23 +session,1277,3,Chrome 41,33,2017-04-25 +session,1277,4,Firefox 25,104,2017-10-05 +session,1277,5,Chrome 48,46,2018-08-24 +user,1278,Alfredo,Ariel,10 +session,1278,0,Firefox 48,75,2017-10-09 +session,1278,1,Chrome 27,5,2017-10-16 +session,1278,2,Safari 26,8,2017-12-27 +session,1278,3,Firefox 33,10,2018-08-23 +session,1278,4,Safari 11,33,2016-12-25 +session,1278,5,Chrome 11,88,2018-09-24 +session,1278,6,Safari 26,18,2017-02-25 +user,1279,Chantal,Svetlana,28 +session,1279,0,Internet Explorer 33,24,2017-08-19 +session,1279,1,Firefox 8,5,2017-01-24 +session,1279,2,Safari 27,30,2018-02-28 +user,1280,Mason,Christie,40 +session,1280,0,Chrome 32,32,2018-06-06 +session,1280,1,Firefox 9,48,2017-12-11 +session,1280,2,Safari 24,27,2017-03-26 +session,1280,3,Internet Explorer 27,19,2019-01-16 +session,1280,4,Internet Explorer 26,40,2017-02-06 +session,1280,5,Chrome 48,27,2016-08-14 +session,1280,6,Internet Explorer 50,111,2017-07-24 +session,1280,7,Internet Explorer 37,47,2017-05-09 +user,1281,Earlene,Valene,9 +session,1281,0,Firefox 49,48,2018-01-26 +session,1281,1,Internet Explorer 15,51,2016-11-16 +user,1282,Jerrica,Hillary,39 +session,1282,0,Safari 30,63,2017-09-19 +session,1282,1,Safari 6,51,2018-07-30 +session,1282,2,Firefox 18,90,2018-11-29 +session,1282,3,Chrome 20,55,2017-06-19 +session,1282,4,Chrome 48,98,2017-02-10 +session,1282,5,Firefox 42,102,2017-08-11 +session,1282,6,Internet Explorer 18,79,2016-08-24 +session,1282,7,Internet Explorer 31,116,2016-10-13 +session,1282,8,Firefox 33,83,2018-04-28 +user,1283,Daryl,Hanna,61 +session,1283,0,Internet Explorer 24,116,2017-05-25 +session,1283,1,Internet Explorer 9,100,2017-12-28 +session,1283,2,Safari 45,109,2016-09-25 +user,1284,Linh,Marybelle,29 +session,1284,0,Firefox 36,110,2018-10-01 +session,1284,1,Internet Explorer 6,102,2016-07-06 +session,1284,2,Safari 35,74,2018-05-19 +session,1284,3,Firefox 22,27,2018-04-09 +session,1284,4,Safari 4,54,2017-07-26 +session,1284,5,Firefox 41,52,2017-11-26 +session,1284,6,Safari 11,36,2017-06-04 +session,1284,7,Chrome 17,11,2018-02-22 +user,1285,Chauncey,Shu,63 +session,1285,0,Safari 31,12,2016-09-02 +session,1285,1,Firefox 16,77,2017-06-01 +session,1285,2,Chrome 5,88,2018-08-11 +session,1285,3,Firefox 43,116,2018-06-18 +session,1285,4,Chrome 26,86,2017-04-18 +session,1285,5,Chrome 43,13,2016-08-28 +session,1285,6,Firefox 18,63,2018-05-21 +session,1285,7,Internet Explorer 40,104,2018-07-14 +user,1286,Elizebeth,Rutha,24 +session,1286,0,Internet Explorer 5,59,2018-04-16 +session,1286,1,Internet Explorer 49,15,2018-09-07 +user,1287,Amalia,Jarvis,68 +session,1287,0,Safari 16,86,2017-02-21 +session,1287,1,Chrome 37,30,2017-08-18 +session,1287,2,Firefox 7,58,2017-03-28 +user,1288,Chase,Holley,95 +session,1288,0,Chrome 1,9,2018-05-18 +session,1288,1,Chrome 23,0,2018-12-07 +session,1288,2,Internet Explorer 2,24,2018-03-19 +session,1288,3,Firefox 16,4,2017-03-31 +user,1289,Shonda,Steve,38 +session,1289,0,Safari 32,101,2016-06-22 +user,1290,Aleida,Willy,13 +session,1290,0,Safari 25,105,2017-08-02 +user,1291,Ma,Mariana,76 +session,1291,0,Firefox 5,5,2017-01-05 +session,1291,1,Internet Explorer 19,43,2017-10-19 +user,1292,Vicente,Jere,4 +session,1292,0,Safari 2,102,2016-07-22 +user,1293,Doreatha,Ann,54 +session,1293,0,Internet Explorer 41,47,2016-10-05 +session,1293,1,Internet Explorer 32,94,2016-09-28 +session,1293,2,Firefox 13,110,2016-09-13 +session,1293,3,Chrome 15,106,2018-08-12 +session,1293,4,Firefox 4,41,2016-08-30 +session,1293,5,Safari 34,104,2017-12-28 +session,1293,6,Chrome 33,106,2018-10-04 +session,1293,7,Firefox 1,115,2018-11-14 +session,1293,8,Safari 18,25,2018-01-05 +user,1294,Clair,Jenine,54 +session,1294,0,Chrome 14,76,2016-10-06 +user,1295,Myles,Chana,27 +session,1295,0,Chrome 26,104,2017-11-12 +session,1295,1,Internet Explorer 47,76,2016-06-19 +session,1295,2,Internet Explorer 29,104,2017-05-28 +session,1295,3,Internet Explorer 15,30,2017-12-01 +session,1295,4,Firefox 42,107,2017-11-15 +session,1295,5,Firefox 36,108,2017-12-10 +session,1295,6,Chrome 9,81,2017-04-04 +session,1295,7,Internet Explorer 38,21,2017-03-27 +session,1295,8,Firefox 19,107,2017-06-05 +user,1296,Jillian,Precious,61 +session,1296,0,Firefox 36,90,2018-05-15 +session,1296,1,Safari 48,13,2018-06-26 +session,1296,2,Internet Explorer 43,106,2018-09-19 +session,1296,3,Safari 4,11,2017-06-25 +session,1296,4,Safari 33,14,2018-10-23 +session,1296,5,Internet Explorer 32,56,2018-05-01 +session,1296,6,Internet Explorer 29,81,2017-10-26 +session,1296,7,Chrome 22,113,2017-10-25 +session,1296,8,Chrome 27,102,2018-05-23 +session,1296,9,Safari 27,114,2016-09-29 +user,1297,Dennis,Eliza,10 +session,1297,0,Safari 4,104,2018-07-31 +session,1297,1,Chrome 42,73,2017-07-02 +session,1297,2,Firefox 38,27,2017-04-13 +user,1298,Diego,Lelia,80 +session,1298,0,Safari 37,99,2018-10-20 +session,1298,1,Firefox 2,32,2018-07-01 +session,1298,2,Internet Explorer 22,65,2018-03-21 +session,1298,3,Safari 6,58,2016-08-16 +session,1298,4,Firefox 15,11,2018-02-18 +session,1298,5,Firefox 34,13,2017-11-06 +session,1298,6,Chrome 31,65,2017-07-22 +user,1299,Song,Keva,75 +session,1299,0,Firefox 49,113,2018-05-07 +session,1299,1,Chrome 47,104,2018-12-07 +session,1299,2,Firefox 23,58,2016-07-04 +session,1299,3,Firefox 44,114,2016-10-11 +session,1299,4,Chrome 20,103,2017-07-17 +session,1299,5,Internet Explorer 41,37,2018-08-17 +session,1299,6,Internet Explorer 7,24,2018-06-01 +session,1299,7,Chrome 40,4,2016-07-15 +user,1300,Renato,Halley,43 +session,1300,0,Safari 47,24,2017-07-26 +user,1301,Kelly,Guadalupe,53 +session,1301,0,Chrome 32,15,2019-01-02 +session,1301,1,Safari 8,50,2018-09-02 +session,1301,2,Safari 33,65,2018-06-27 +session,1301,3,Safari 19,112,2018-07-19 +session,1301,4,Internet Explorer 45,24,2018-03-29 +session,1301,5,Internet Explorer 3,62,2018-12-26 +session,1301,6,Internet Explorer 22,71,2018-06-05 +session,1301,7,Safari 14,107,2019-01-01 +session,1301,8,Firefox 33,40,2017-05-30 +user,1302,Chester,Jonah,62 +session,1302,0,Chrome 20,91,2018-04-19 +session,1302,1,Safari 32,62,2017-06-18 +session,1302,2,Firefox 7,45,2018-09-27 +user,1303,Marty,Lasandra,28 +session,1303,0,Safari 27,10,2018-03-10 +session,1303,1,Firefox 24,7,2018-10-07 +session,1303,2,Safari 16,61,2016-08-07 +session,1303,3,Chrome 11,0,2016-06-22 +session,1303,4,Safari 15,108,2017-09-28 +session,1303,5,Firefox 44,85,2018-06-20 +session,1303,6,Firefox 44,72,2018-06-23 +user,1304,Bernie,Lee,98 +session,1304,0,Safari 47,64,2018-09-21 +session,1304,1,Firefox 23,85,2017-04-22 +session,1304,2,Safari 1,96,2017-12-04 +session,1304,3,Firefox 33,82,2017-01-01 +session,1304,4,Internet Explorer 47,50,2019-02-04 +user,1305,Clair,Lourdes,75 +session,1305,0,Firefox 50,62,2017-06-19 +session,1305,1,Firefox 21,3,2018-12-28 +session,1305,2,Firefox 16,117,2018-12-13 +session,1305,3,Internet Explorer 13,106,2017-10-11 +session,1305,4,Chrome 39,81,2017-03-19 +session,1305,5,Firefox 39,46,2018-10-02 +session,1305,6,Firefox 40,117,2017-08-16 +session,1305,7,Internet Explorer 40,58,2017-10-25 +session,1305,8,Safari 42,12,2017-06-08 +user,1306,Carlos,Dahlia,25 +session,1306,0,Chrome 29,41,2017-07-30 +session,1306,1,Safari 47,46,2018-09-08 +session,1306,2,Safari 28,95,2017-08-24 +session,1306,3,Safari 8,39,2018-03-14 +session,1306,4,Firefox 43,59,2018-07-07 +session,1306,5,Chrome 16,60,2017-11-06 +session,1306,6,Safari 25,75,2017-11-26 +session,1306,7,Firefox 39,5,2017-08-10 +user,1307,Gerry,Sixta,43 +session,1307,0,Safari 22,37,2018-10-31 +session,1307,1,Chrome 11,22,2016-07-27 +session,1307,2,Safari 9,16,2017-05-08 +session,1307,3,Safari 38,90,2018-01-22 +session,1307,4,Firefox 34,19,2018-09-27 +session,1307,5,Chrome 36,0,2017-04-24 +session,1307,6,Safari 24,40,2016-12-10 +session,1307,7,Chrome 21,19,2016-10-28 +session,1307,8,Chrome 39,52,2018-02-01 +user,1308,Sharleen,Jacquetta,77 +session,1308,0,Firefox 30,40,2018-05-09 +session,1308,1,Safari 44,51,2017-11-10 +session,1308,2,Internet Explorer 21,99,2018-02-24 +session,1308,3,Firefox 48,107,2016-11-16 +session,1308,4,Firefox 40,47,2018-10-02 +session,1308,5,Safari 22,3,2017-12-02 +session,1308,6,Safari 4,118,2017-11-21 +session,1308,7,Firefox 8,42,2017-09-30 +user,1309,Roland,Rosalee,87 +session,1309,0,Firefox 48,72,2016-06-23 +session,1309,1,Firefox 31,89,2018-09-26 +session,1309,2,Safari 24,73,2017-08-11 +session,1309,3,Firefox 32,116,2018-10-30 +session,1309,4,Chrome 31,6,2018-12-09 +session,1309,5,Internet Explorer 5,78,2016-09-14 +session,1309,6,Safari 42,72,2018-04-08 +session,1309,7,Firefox 40,16,2017-02-27 +user,1310,Tad,Elvia,26 +session,1310,0,Internet Explorer 9,77,2017-11-12 +user,1311,Lowell,Kia,65 +session,1311,0,Safari 20,69,2017-07-11 +session,1311,1,Internet Explorer 43,22,2018-08-04 +session,1311,2,Firefox 32,59,2018-11-12 +session,1311,3,Firefox 16,28,2018-01-12 +session,1311,4,Chrome 4,15,2016-08-05 +user,1312,Loan,Joaquina,86 +session,1312,0,Safari 25,8,2018-12-26 +user,1313,Nelson,Dorothy,11 +session,1313,0,Internet Explorer 20,77,2017-03-10 +session,1313,1,Chrome 8,12,2018-10-23 +session,1313,2,Safari 37,34,2017-09-18 +session,1313,3,Safari 6,7,2016-07-20 +session,1313,4,Internet Explorer 40,64,2016-12-03 +user,1314,Tyler,Alicia,2 +session,1314,0,Safari 13,36,2016-08-03 +session,1314,1,Chrome 39,107,2016-10-31 +session,1314,2,Internet Explorer 37,49,2016-12-08 +session,1314,3,Chrome 7,67,2017-03-06 +session,1314,4,Safari 48,95,2018-12-15 +session,1314,5,Chrome 50,26,2017-07-04 +user,1315,Marvella,Addie,69 +session,1315,0,Internet Explorer 49,82,2017-04-08 +session,1315,1,Safari 19,99,2016-11-23 +session,1315,2,Internet Explorer 14,14,2016-08-06 +session,1315,3,Firefox 24,49,2017-04-10 +session,1315,4,Internet Explorer 25,36,2017-03-08 +session,1315,5,Chrome 11,111,2017-12-15 +session,1315,6,Chrome 38,105,2017-04-25 +session,1315,7,Chrome 21,71,2018-10-16 +user,1316,Tommy,Lawana,21 +session,1316,0,Safari 25,6,2017-12-21 +session,1316,1,Safari 42,103,2018-01-18 +session,1316,2,Safari 22,14,2016-11-04 +session,1316,3,Chrome 39,79,2019-01-14 +user,1317,Reita,Bennie,83 +session,1317,0,Firefox 29,16,2016-09-04 +session,1317,1,Internet Explorer 6,43,2016-11-05 +session,1317,2,Internet Explorer 23,84,2016-07-25 +session,1317,3,Safari 23,100,2017-12-10 +session,1317,4,Safari 31,56,2018-11-23 +session,1317,5,Chrome 26,110,2016-08-29 +session,1317,6,Chrome 13,92,2018-07-22 +user,1318,Gerry,Ken,99 +session,1318,0,Firefox 15,114,2018-01-01 +session,1318,1,Internet Explorer 14,13,2017-12-17 +session,1318,2,Internet Explorer 18,31,2016-08-18 +session,1318,3,Safari 26,90,2018-10-17 +session,1318,4,Internet Explorer 30,13,2016-06-19 +session,1318,5,Chrome 38,99,2017-10-11 +user,1319,Tom,Aurelio,28 +session,1319,0,Firefox 36,57,2017-08-07 +session,1319,1,Internet Explorer 48,63,2019-01-04 +session,1319,2,Internet Explorer 39,12,2016-08-09 +session,1319,3,Chrome 49,98,2016-08-21 +session,1319,4,Firefox 8,73,2017-10-03 +session,1319,5,Safari 15,71,2017-06-16 +session,1319,6,Firefox 50,8,2018-08-22 +session,1319,7,Safari 23,85,2017-06-03 +session,1319,8,Chrome 29,67,2019-02-10 +user,1320,Madelene,Roland,29 +session,1320,0,Chrome 49,36,2017-10-02 +session,1320,1,Safari 25,31,2018-11-05 +session,1320,2,Safari 18,72,2017-07-10 +session,1320,3,Safari 44,99,2016-11-24 +session,1320,4,Firefox 34,72,2016-09-14 +session,1320,5,Chrome 45,69,2018-01-18 +session,1320,6,Safari 19,63,2018-04-23 +session,1320,7,Chrome 2,86,2018-05-01 +session,1320,8,Chrome 18,100,2016-06-14 +user,1321,Lera,Dominica,63 +session,1321,0,Firefox 17,101,2016-05-28 +session,1321,1,Safari 38,92,2016-09-03 +session,1321,2,Safari 13,76,2016-08-21 +user,1322,Ezra,Peg,22 +session,1322,0,Internet Explorer 39,68,2016-07-31 +session,1322,1,Chrome 12,116,2016-06-23 +session,1322,2,Chrome 27,18,2018-07-17 +session,1322,3,Safari 2,63,2016-08-03 +session,1322,4,Firefox 32,66,2018-06-24 +session,1322,5,Safari 9,92,2018-04-10 +user,1323,Cody,Donnette,69 +session,1323,0,Safari 17,98,2017-04-04 +session,1323,1,Firefox 12,113,2018-03-02 +session,1323,2,Firefox 24,18,2017-06-26 +user,1324,Ehtel,Hettie,62 +session,1324,0,Safari 37,43,2017-07-28 +user,1325,Leilani,Del,70 +session,1325,0,Firefox 22,17,2018-09-10 +session,1325,1,Chrome 19,117,2018-03-20 +session,1325,2,Safari 35,96,2017-12-03 +session,1325,3,Chrome 9,15,2017-05-12 +session,1325,4,Internet Explorer 41,78,2017-01-05 +session,1325,5,Internet Explorer 13,8,2018-04-25 +session,1325,6,Chrome 41,78,2019-01-05 +session,1325,7,Internet Explorer 29,91,2016-11-23 +session,1325,8,Internet Explorer 39,60,2017-04-10 +session,1325,9,Safari 16,97,2017-10-08 +user,1326,Elvin,Lashell,43 +session,1326,0,Chrome 18,112,2017-03-12 +session,1326,1,Internet Explorer 17,107,2017-12-07 +session,1326,2,Internet Explorer 32,64,2018-11-05 +session,1326,3,Firefox 35,64,2018-04-13 +user,1327,Jenice,Winnifred,75 +session,1327,0,Chrome 33,87,2018-06-19 +session,1327,1,Safari 48,96,2017-11-04 +session,1327,2,Firefox 41,114,2016-07-25 +user,1328,Elissa,Antione,1 +session,1328,0,Safari 3,116,2017-01-06 +session,1328,1,Chrome 48,116,2017-11-27 +session,1328,2,Firefox 9,51,2017-07-28 +session,1328,3,Firefox 45,38,2017-08-14 +session,1328,4,Internet Explorer 27,78,2016-08-16 +session,1328,5,Chrome 36,85,2016-12-12 +session,1328,6,Internet Explorer 42,36,2017-09-19 +session,1328,7,Internet Explorer 38,94,2016-10-24 +session,1328,8,Firefox 7,72,2018-11-26 +session,1328,9,Safari 48,106,2018-01-28 +user,1329,Shani,Pamella,17 +session,1329,0,Firefox 39,44,2018-07-18 +session,1329,1,Chrome 4,84,2017-03-12 +session,1329,2,Safari 41,86,2017-05-09 +session,1329,3,Firefox 18,25,2016-07-27 +user,1330,Ivy,Toshia,57 +session,1330,0,Chrome 9,102,2018-03-16 +user,1331,Mac,Ardelle,28 +session,1331,0,Firefox 1,17,2018-01-04 +session,1331,1,Chrome 38,98,2017-09-14 +session,1331,2,Internet Explorer 28,29,2018-12-26 +user,1332,Allen,Chas,30 +session,1332,0,Safari 13,60,2016-07-22 +user,1333,Kasey,Lacy,74 +session,1333,0,Chrome 28,85,2017-09-29 +user,1334,Theron,Marylou,38 +session,1334,0,Internet Explorer 41,68,2016-08-16 +session,1334,1,Firefox 10,18,2016-06-22 +session,1334,2,Safari 46,48,2017-12-02 +session,1334,3,Internet Explorer 32,35,2016-12-10 +session,1334,4,Firefox 48,119,2018-07-27 +session,1334,5,Internet Explorer 6,41,2017-07-19 +session,1334,6,Internet Explorer 39,32,2016-09-28 +session,1334,7,Internet Explorer 11,63,2018-11-07 +session,1334,8,Internet Explorer 15,106,2019-02-07 +session,1334,9,Chrome 44,85,2018-06-18 +user,1335,Johnsie,Jewell,50 +session,1335,0,Safari 46,13,2017-02-17 +user,1336,Loura,Shanel,66 +session,1336,0,Firefox 42,12,2018-06-18 +user,1337,Tawna,Leann,99 +session,1337,0,Chrome 22,16,2017-11-05 +session,1337,1,Safari 47,16,2017-08-07 +session,1337,2,Firefox 46,41,2019-01-19 +session,1337,3,Internet Explorer 29,41,2017-03-25 +session,1337,4,Firefox 24,117,2016-06-09 +user,1338,Erwin,Lucile,10 +session,1338,0,Chrome 16,9,2018-06-14 +session,1338,1,Chrome 8,45,2016-12-06 +session,1338,2,Safari 4,88,2018-09-08 +session,1338,3,Firefox 10,29,2018-06-14 +session,1338,4,Chrome 10,46,2017-08-25 +session,1338,5,Safari 33,108,2016-09-13 +session,1338,6,Internet Explorer 48,38,2017-04-23 +session,1338,7,Firefox 37,52,2018-11-13 +user,1339,Angelyn,Lanora,68 +session,1339,0,Firefox 23,85,2018-08-29 +session,1339,1,Chrome 48,13,2016-05-24 +session,1339,2,Safari 36,26,2018-09-21 +session,1339,3,Firefox 49,89,2018-03-31 +session,1339,4,Firefox 31,80,2016-05-23 +user,1340,Buddy,Candida,41 +session,1340,0,Safari 47,79,2018-03-01 +session,1340,1,Chrome 7,91,2018-09-23 +session,1340,2,Internet Explorer 23,79,2016-12-16 +session,1340,3,Internet Explorer 26,68,2017-05-31 +session,1340,4,Safari 38,116,2018-02-01 +session,1340,5,Safari 42,44,2018-07-01 +session,1340,6,Safari 42,106,2018-07-23 +session,1340,7,Safari 14,46,2018-09-12 +session,1340,8,Chrome 24,41,2016-06-04 +session,1340,9,Firefox 48,56,2017-01-24 +user,1341,Carina,Rickie,27 +session,1341,0,Safari 49,38,2018-01-07 +user,1342,Hanh,Ethelene,7 +session,1342,0,Firefox 10,53,2019-02-06 +session,1342,1,Safari 10,47,2017-08-13 +session,1342,2,Internet Explorer 34,68,2017-02-02 +session,1342,3,Firefox 22,0,2017-06-09 +session,1342,4,Safari 17,107,2016-07-18 +session,1342,5,Chrome 14,21,2018-04-20 +session,1342,6,Firefox 5,89,2017-11-04 +session,1342,7,Internet Explorer 27,21,2018-11-10 +session,1342,8,Chrome 16,32,2018-08-02 +session,1342,9,Chrome 7,91,2017-04-16 +user,1343,Yadira,Debi,24 +session,1343,0,Internet Explorer 48,18,2019-01-13 +user,1344,Adelia,Edda,15 +session,1344,0,Firefox 22,33,2018-12-01 +session,1344,1,Chrome 16,119,2017-06-20 +session,1344,2,Safari 8,48,2017-02-18 +session,1344,3,Chrome 34,11,2018-02-15 +session,1344,4,Firefox 24,36,2016-12-05 +session,1344,5,Internet Explorer 46,100,2016-11-09 +session,1344,6,Chrome 24,72,2018-07-29 +session,1344,7,Chrome 25,108,2018-12-07 +user,1345,Theo,Gretchen,93 +session,1345,0,Safari 23,85,2018-07-28 +session,1345,1,Safari 41,33,2016-10-31 +session,1345,2,Internet Explorer 10,74,2016-11-07 +session,1345,3,Chrome 41,114,2017-02-21 +user,1346,Leif,Hertha,37 +session,1346,0,Firefox 1,72,2017-08-31 +session,1346,1,Firefox 29,79,2018-02-06 +session,1346,2,Internet Explorer 43,56,2018-06-15 +session,1346,3,Safari 3,7,2018-03-09 +session,1346,4,Internet Explorer 16,52,2017-03-16 +session,1346,5,Internet Explorer 22,56,2017-07-20 +session,1346,6,Chrome 34,102,2018-07-03 +session,1346,7,Chrome 44,63,2017-06-25 +user,1347,Jacqueline,Lavenia,40 +session,1347,0,Chrome 48,75,2018-06-17 +session,1347,1,Safari 6,96,2019-01-07 +session,1347,2,Internet Explorer 14,97,2018-07-18 +user,1348,Harland,Jed,24 +session,1348,0,Safari 13,47,2019-01-22 +session,1348,1,Chrome 19,106,2017-09-13 +user,1349,Jarvis,Lillie,45 +session,1349,0,Chrome 9,25,2016-09-27 +session,1349,1,Firefox 6,67,2017-07-01 +session,1349,2,Internet Explorer 7,83,2017-10-20 +session,1349,3,Internet Explorer 18,118,2018-06-21 +user,1350,Bambi,Fatimah,58 +session,1350,0,Chrome 18,65,2018-09-27 +session,1350,1,Safari 49,109,2018-09-14 +user,1351,Hassan,Rick,12 +session,1351,0,Internet Explorer 38,57,2018-06-27 +user,1352,Merrill,Ardelia,25 +session,1352,0,Safari 16,50,2018-01-15 +session,1352,1,Internet Explorer 48,17,2018-07-26 +session,1352,2,Firefox 22,118,2018-11-09 +session,1352,3,Firefox 47,19,2017-06-01 +session,1352,4,Firefox 5,32,2018-05-02 +user,1353,Trey,Latrice,45 +session,1353,0,Safari 32,71,2017-09-27 +session,1353,1,Firefox 13,12,2017-02-27 +session,1353,2,Chrome 23,43,2017-03-11 +session,1353,3,Internet Explorer 44,4,2017-02-22 +session,1353,4,Chrome 8,96,2016-08-05 +session,1353,5,Internet Explorer 26,66,2017-07-28 +session,1353,6,Internet Explorer 10,64,2018-05-03 +user,1354,Lonny,Laticia,33 +session,1354,0,Safari 29,13,2018-06-03 +session,1354,1,Chrome 35,22,2018-07-20 +session,1354,2,Safari 10,42,2019-01-23 +session,1354,3,Firefox 39,45,2017-12-13 +session,1354,4,Firefox 44,105,2017-06-20 +session,1354,5,Internet Explorer 2,80,2016-07-22 +session,1354,6,Firefox 6,4,2017-07-29 +session,1354,7,Chrome 16,110,2018-10-31 +session,1354,8,Chrome 42,110,2016-08-28 +user,1355,Devon,Sarita,4 +session,1355,0,Safari 8,88,2016-12-06 +session,1355,1,Safari 26,27,2018-02-08 +session,1355,2,Firefox 7,72,2017-10-04 +session,1355,3,Chrome 21,55,2017-03-02 +session,1355,4,Safari 50,0,2018-01-13 +session,1355,5,Chrome 42,40,2017-06-27 +session,1355,6,Safari 11,66,2018-12-05 +user,1356,Cyril,Hye,73 +session,1356,0,Firefox 10,30,2017-05-25 +session,1356,1,Firefox 21,82,2016-08-22 +session,1356,2,Internet Explorer 5,40,2018-11-14 +session,1356,3,Safari 42,14,2017-08-19 +session,1356,4,Chrome 17,50,2016-10-18 +session,1356,5,Firefox 4,55,2018-01-22 +session,1356,6,Chrome 50,70,2017-07-24 +session,1356,7,Firefox 9,46,2018-03-14 +session,1356,8,Firefox 44,18,2018-07-26 +user,1357,Lorilee,Signe,24 +session,1357,0,Chrome 17,106,2016-10-10 +session,1357,1,Safari 20,29,2018-06-04 +session,1357,2,Firefox 28,59,2017-11-22 +session,1357,3,Internet Explorer 17,119,2016-08-05 +session,1357,4,Chrome 25,118,2018-08-01 +user,1358,Merrilee,Ilona,51 +session,1358,0,Safari 1,97,2018-06-09 +session,1358,1,Safari 45,93,2017-11-08 +session,1358,2,Firefox 48,9,2016-09-04 +session,1358,3,Firefox 10,110,2017-04-15 +session,1358,4,Chrome 44,116,2018-12-15 +session,1358,5,Chrome 30,41,2018-12-25 +session,1358,6,Internet Explorer 50,39,2018-04-14 +session,1358,7,Firefox 35,20,2017-05-08 +session,1358,8,Firefox 28,21,2016-06-19 +session,1358,9,Safari 46,99,2017-09-27 +user,1359,Arnetta,Kandis,35 +session,1359,0,Internet Explorer 17,45,2017-05-15 +session,1359,1,Internet Explorer 22,25,2016-05-24 +session,1359,2,Internet Explorer 11,55,2017-03-30 +session,1359,3,Firefox 22,28,2018-06-02 +session,1359,4,Chrome 45,71,2017-05-13 +session,1359,5,Safari 50,60,2019-02-11 +session,1359,6,Internet Explorer 25,97,2018-10-29 +session,1359,7,Internet Explorer 39,84,2018-11-17 +session,1359,8,Internet Explorer 33,57,2018-03-24 +user,1360,Tod,Lance,95 +session,1360,0,Internet Explorer 4,37,2018-12-15 +session,1360,1,Chrome 16,72,2018-11-03 +user,1361,Derick,Aleshia,85 +session,1361,0,Firefox 45,11,2016-11-13 +session,1361,1,Internet Explorer 4,51,2016-08-17 +session,1361,2,Firefox 21,60,2018-05-05 +session,1361,3,Firefox 20,107,2017-07-15 +session,1361,4,Internet Explorer 15,77,2017-07-08 +session,1361,5,Chrome 43,7,2016-06-21 +user,1362,Louetta,Brenton,36 +session,1362,0,Safari 22,85,2018-03-12 +session,1362,1,Firefox 11,19,2017-03-01 +user,1363,Nguyet,Georgann,0 +session,1363,0,Internet Explorer 17,44,2016-09-17 +session,1363,1,Safari 44,116,2017-02-10 +session,1363,2,Internet Explorer 37,72,2018-04-04 +user,1364,Billy,Ella,43 +session,1364,0,Internet Explorer 17,91,2018-06-20 +session,1364,1,Chrome 31,39,2019-01-02 +session,1364,2,Internet Explorer 46,33,2017-06-22 +session,1364,3,Internet Explorer 8,60,2017-11-07 +session,1364,4,Chrome 49,74,2018-09-28 +session,1364,5,Safari 38,51,2018-01-20 +session,1364,6,Internet Explorer 19,66,2017-12-31 +session,1364,7,Internet Explorer 30,101,2018-08-06 +session,1364,8,Safari 45,10,2017-08-11 +session,1364,9,Internet Explorer 19,58,2016-10-10 +user,1365,Cleora,Valrie,41 +session,1365,0,Internet Explorer 10,117,2018-12-25 +user,1366,Oswaldo,Herta,26 +session,1366,0,Firefox 16,70,2017-09-29 +session,1366,1,Chrome 16,64,2018-05-11 +user,1367,Cesar,Corine,55 +session,1367,0,Internet Explorer 4,98,2017-04-01 +session,1367,1,Chrome 26,116,2017-06-16 +session,1367,2,Firefox 22,59,2017-11-16 +session,1367,3,Safari 31,83,2018-11-04 +session,1367,4,Internet Explorer 13,67,2016-11-05 +session,1367,5,Chrome 48,18,2016-12-08 +session,1367,6,Safari 25,5,2018-04-27 +user,1368,Malka,Salina,84 +session,1368,0,Chrome 33,25,2017-10-15 +session,1368,1,Firefox 11,1,2017-11-29 +session,1368,2,Chrome 3,72,2017-04-18 +session,1368,3,Chrome 31,29,2018-04-19 +session,1368,4,Internet Explorer 18,52,2017-11-27 +user,1369,Hilton,Detra,15 +session,1369,0,Firefox 9,59,2017-01-03 +session,1369,1,Safari 47,24,2018-08-11 +session,1369,2,Internet Explorer 10,35,2016-07-23 +session,1369,3,Internet Explorer 8,110,2018-07-01 +session,1369,4,Chrome 33,37,2017-02-12 +user,1370,Dan,Lashawn,4 +session,1370,0,Firefox 45,29,2017-01-09 +session,1370,1,Safari 48,81,2018-11-14 +session,1370,2,Chrome 43,20,2019-01-26 +session,1370,3,Firefox 29,66,2017-11-14 +session,1370,4,Firefox 28,115,2017-01-24 +session,1370,5,Safari 22,80,2017-04-08 +session,1370,6,Internet Explorer 23,64,2018-03-27 +user,1371,Remedios,Hoyt,23 +session,1371,0,Chrome 20,98,2017-12-20 +session,1371,1,Chrome 40,43,2016-09-29 +session,1371,2,Firefox 23,102,2017-04-05 +session,1371,3,Firefox 25,92,2016-10-26 +session,1371,4,Firefox 5,81,2017-09-16 +session,1371,5,Firefox 30,13,2018-05-20 +session,1371,6,Chrome 47,109,2018-12-11 +session,1371,7,Chrome 48,105,2016-12-29 +session,1371,8,Safari 42,95,2016-05-31 +user,1372,Wilmer,Kristin,55 +session,1372,0,Firefox 8,33,2018-02-18 +session,1372,1,Safari 29,27,2017-03-26 +session,1372,2,Internet Explorer 23,9,2017-10-12 +session,1372,3,Internet Explorer 4,3,2017-08-21 +session,1372,4,Firefox 22,83,2016-09-19 +session,1372,5,Internet Explorer 38,45,2017-10-21 +user,1373,Brock,Devon,64 +session,1373,0,Firefox 34,45,2017-05-21 +session,1373,1,Firefox 46,19,2017-06-20 +session,1373,2,Firefox 6,119,2017-02-03 +session,1373,3,Firefox 49,109,2018-06-24 +session,1373,4,Safari 4,91,2017-01-08 +session,1373,5,Chrome 9,10,2016-11-01 +session,1373,6,Chrome 33,87,2018-01-14 +session,1373,7,Chrome 35,57,2017-01-12 +session,1373,8,Safari 39,91,2018-12-10 +user,1374,Collette,Candy,45 +session,1374,0,Safari 47,100,2019-01-22 +session,1374,1,Firefox 2,64,2017-10-04 +session,1374,2,Internet Explorer 6,97,2018-01-12 +session,1374,3,Internet Explorer 6,87,2018-01-06 +session,1374,4,Chrome 31,78,2017-10-16 +user,1375,Emmie,Sybil,17 +session,1375,0,Chrome 37,83,2017-05-12 +session,1375,1,Safari 26,90,2016-10-16 +session,1375,2,Safari 10,108,2018-07-31 +session,1375,3,Safari 2,90,2016-10-07 +session,1375,4,Firefox 13,94,2017-04-25 +session,1375,5,Safari 44,75,2018-10-02 +user,1376,Avelina,Nu,68 +session,1376,0,Chrome 2,88,2018-12-17 +user,1377,Kristian,Jasper,69 +session,1377,0,Chrome 28,49,2017-12-23 +session,1377,1,Safari 48,23,2017-07-29 +session,1377,2,Safari 12,97,2017-01-14 +user,1378,Sandy,Leah,83 +session,1378,0,Chrome 8,119,2019-01-17 +session,1378,1,Internet Explorer 44,9,2018-03-25 +session,1378,2,Internet Explorer 15,61,2017-11-30 +session,1378,3,Firefox 20,28,2017-09-22 +session,1378,4,Firefox 25,21,2017-07-08 +session,1378,5,Firefox 35,92,2017-02-22 +user,1379,Ismael,Monika,76 +session,1379,0,Internet Explorer 37,56,2018-07-24 +session,1379,1,Internet Explorer 13,97,2018-05-12 +session,1379,2,Chrome 21,1,2017-06-28 +session,1379,3,Safari 20,64,2018-10-22 +session,1379,4,Chrome 41,0,2017-07-08 +session,1379,5,Safari 22,7,2018-12-07 +user,1380,Genny,Kaylene,59 +session,1380,0,Firefox 22,77,2018-02-16 +session,1380,1,Chrome 24,98,2017-10-29 +session,1380,2,Safari 37,63,2017-04-18 +session,1380,3,Chrome 26,110,2016-10-02 +session,1380,4,Firefox 50,36,2018-07-29 +session,1380,5,Safari 42,95,2017-09-20 +session,1380,6,Internet Explorer 15,18,2017-04-07 +user,1381,Agustin,Towanda,51 +session,1381,0,Firefox 7,67,2017-07-21 +session,1381,1,Chrome 8,42,2016-12-17 +user,1382,Sang,Edward,55 +session,1382,0,Internet Explorer 32,46,2017-08-24 +session,1382,1,Chrome 13,53,2017-01-22 +session,1382,2,Safari 18,103,2018-11-14 +session,1382,3,Internet Explorer 46,53,2018-10-04 +user,1383,Cristie,Sha,81 +session,1383,0,Safari 33,94,2016-05-23 +session,1383,1,Chrome 31,96,2017-09-08 +user,1384,Tam,Kasandra,47 +session,1384,0,Firefox 18,5,2018-01-27 +session,1384,1,Chrome 45,27,2016-09-20 +session,1384,2,Chrome 5,92,2017-03-23 +session,1384,3,Internet Explorer 28,102,2017-05-31 +session,1384,4,Safari 41,92,2018-12-31 +session,1384,5,Safari 47,9,2016-12-21 +session,1384,6,Chrome 5,40,2018-12-29 +session,1384,7,Firefox 49,92,2017-12-17 +session,1384,8,Firefox 3,26,2019-01-11 +session,1384,9,Safari 30,85,2017-06-24 +user,1385,Sammy,Celina,33 +session,1385,0,Chrome 48,9,2017-05-24 +session,1385,1,Internet Explorer 38,81,2018-04-18 +session,1385,2,Internet Explorer 2,3,2019-01-17 +session,1385,3,Chrome 12,115,2017-07-09 +session,1385,4,Chrome 48,29,2018-04-04 +session,1385,5,Chrome 4,68,2018-06-03 +session,1385,6,Chrome 9,11,2016-12-06 +session,1385,7,Firefox 40,82,2016-09-12 +user,1386,Natacha,Deandre,59 +session,1386,0,Firefox 11,23,2017-04-21 +session,1386,1,Chrome 47,33,2017-09-08 +session,1386,2,Safari 1,108,2017-10-27 +session,1386,3,Firefox 49,97,2016-06-14 +user,1387,Carma,Leone,37 +session,1387,0,Safari 1,109,2017-10-30 +session,1387,1,Firefox 6,43,2018-10-26 +session,1387,2,Safari 39,45,2016-05-24 +session,1387,3,Chrome 40,69,2018-11-13 +session,1387,4,Firefox 25,88,2016-12-18 +session,1387,5,Chrome 26,12,2017-09-30 +session,1387,6,Firefox 25,7,2018-02-09 +session,1387,7,Internet Explorer 32,93,2017-03-26 +session,1387,8,Firefox 6,49,2016-06-26 +session,1387,9,Firefox 37,2,2017-06-13 +user,1388,Joseph,Tomiko,1 +session,1388,0,Internet Explorer 44,101,2016-11-28 +session,1388,1,Internet Explorer 10,1,2018-05-22 +session,1388,2,Safari 14,4,2017-04-13 +session,1388,3,Chrome 40,81,2018-10-19 +session,1388,4,Internet Explorer 1,52,2017-09-30 +session,1388,5,Chrome 12,99,2016-07-19 +session,1388,6,Safari 22,35,2018-11-03 +session,1388,7,Firefox 36,28,2018-11-25 +user,1389,Bennie,Shela,61 +session,1389,0,Safari 20,18,2018-10-18 +session,1389,1,Safari 15,54,2018-03-04 +session,1389,2,Internet Explorer 7,45,2017-12-06 +session,1389,3,Firefox 42,112,2019-02-02 +session,1389,4,Firefox 26,43,2017-02-13 +user,1390,Dario,Louise,75 +session,1390,0,Chrome 23,87,2016-09-26 +session,1390,1,Chrome 26,58,2018-03-19 +session,1390,2,Chrome 22,63,2018-01-05 +session,1390,3,Internet Explorer 45,96,2017-07-17 +session,1390,4,Chrome 3,42,2018-05-05 +session,1390,5,Chrome 50,14,2016-12-04 +session,1390,6,Safari 29,7,2018-09-12 +user,1391,Darnell,Lonnie,74 +session,1391,0,Chrome 39,119,2018-12-06 +session,1391,1,Internet Explorer 28,18,2019-02-09 +user,1392,Maryanna,Hana,53 +session,1392,0,Internet Explorer 37,50,2016-08-11 +session,1392,1,Internet Explorer 15,78,2018-04-02 +session,1392,2,Internet Explorer 8,85,2017-08-09 +session,1392,3,Safari 30,119,2016-09-15 +session,1392,4,Safari 34,68,2017-10-27 +session,1392,5,Firefox 16,62,2018-07-23 +session,1392,6,Firefox 18,108,2016-09-06 +user,1393,Tomiko,Ione,8 +session,1393,0,Firefox 33,64,2016-08-25 +session,1393,1,Safari 5,56,2017-05-21 +session,1393,2,Internet Explorer 30,66,2016-05-23 +session,1393,3,Safari 38,44,2016-11-28 +session,1393,4,Chrome 7,95,2018-11-20 +session,1393,5,Firefox 28,70,2016-11-01 +user,1394,Hildred,Carley,72 +session,1394,0,Firefox 16,32,2016-12-19 +session,1394,1,Chrome 25,99,2018-11-06 +session,1394,2,Firefox 49,20,2016-06-07 +session,1394,3,Chrome 15,105,2016-07-28 +session,1394,4,Safari 31,31,2016-06-03 +session,1394,5,Safari 23,102,2018-02-14 +session,1394,6,Safari 50,109,2017-01-24 +user,1395,Darrell,Adelaide,40 +session,1395,0,Internet Explorer 13,68,2017-09-13 +session,1395,1,Safari 44,76,2018-02-17 +session,1395,2,Safari 18,53,2018-05-18 +session,1395,3,Chrome 49,7,2016-12-01 +user,1396,Dallas,Luanna,30 +session,1396,0,Internet Explorer 27,2,2017-03-30 +session,1396,1,Chrome 50,53,2018-03-25 +session,1396,2,Firefox 1,87,2017-05-30 +session,1396,3,Internet Explorer 25,102,2017-01-10 +session,1396,4,Safari 18,80,2017-06-15 +session,1396,5,Safari 50,113,2018-05-16 +session,1396,6,Safari 6,65,2016-12-24 +session,1396,7,Firefox 34,16,2017-03-04 +session,1396,8,Internet Explorer 30,37,2017-05-11 +user,1397,Matthew,Michal,22 +session,1397,0,Internet Explorer 43,72,2017-04-24 +session,1397,1,Chrome 38,87,2017-05-17 +user,1398,Nana,Kiesha,69 +session,1398,0,Firefox 6,21,2016-09-18 +user,1399,Xuan,Ginny,84 +session,1399,0,Safari 30,115,2018-10-15 +session,1399,1,Firefox 12,28,2017-11-13 +session,1399,2,Firefox 28,92,2016-05-26 +session,1399,3,Internet Explorer 13,81,2016-11-01 +session,1399,4,Internet Explorer 4,23,2018-11-14 +session,1399,5,Firefox 43,2,2016-09-10 +session,1399,6,Firefox 15,0,2016-08-04 +user,1400,Charlsie,Cassy,4 +session,1400,0,Internet Explorer 3,11,2016-07-28 +user,1401,Wesley,Letty,82 +session,1401,0,Firefox 7,54,2018-03-11 +session,1401,1,Firefox 21,8,2018-11-11 +session,1401,2,Firefox 22,119,2018-09-14 +session,1401,3,Safari 37,43,2018-05-30 +session,1401,4,Firefox 31,16,2016-08-02 +session,1401,5,Internet Explorer 43,59,2017-10-04 +session,1401,6,Safari 49,68,2017-07-21 +session,1401,7,Chrome 31,22,2018-12-14 +user,1402,Rosanne,Ann,9 +session,1402,0,Internet Explorer 7,110,2016-08-07 +session,1402,1,Internet Explorer 27,66,2017-05-23 +session,1402,2,Internet Explorer 49,36,2017-08-27 +session,1402,3,Safari 35,118,2018-08-05 +session,1402,4,Firefox 1,94,2018-06-01 +session,1402,5,Chrome 35,63,2017-05-11 +session,1402,6,Firefox 3,14,2016-08-05 +session,1402,7,Firefox 29,92,2018-10-07 +session,1402,8,Internet Explorer 11,9,2016-12-24 +user,1403,Gregoria,Branda,15 +session,1403,0,Firefox 27,51,2016-07-13 +session,1403,1,Firefox 37,88,2017-01-15 +session,1403,2,Safari 14,40,2017-10-24 +session,1403,3,Chrome 7,76,2017-12-17 +session,1403,4,Chrome 19,106,2016-08-10 +session,1403,5,Firefox 9,110,2016-10-27 +session,1403,6,Safari 3,102,2018-09-24 +session,1403,7,Firefox 23,115,2018-01-30 +session,1403,8,Firefox 22,115,2017-07-08 +session,1403,9,Safari 40,24,2017-05-05 +user,1404,Tana,Douglas,84 +session,1404,0,Safari 32,22,2016-07-21 +session,1404,1,Safari 24,25,2018-01-17 +session,1404,2,Safari 30,27,2016-05-24 +user,1405,Tommie,Norbert,6 +session,1405,0,Chrome 47,50,2017-09-18 +session,1405,1,Chrome 24,108,2018-06-14 +session,1405,2,Firefox 32,26,2018-11-09 +session,1405,3,Internet Explorer 23,78,2018-02-01 +session,1405,4,Chrome 27,55,2018-01-22 +user,1406,Sharmaine,Cami,97 +session,1406,0,Firefox 47,42,2016-08-05 +session,1406,1,Firefox 10,108,2017-09-03 +session,1406,2,Firefox 41,107,2016-10-17 +session,1406,3,Chrome 2,32,2017-06-11 +session,1406,4,Safari 31,76,2019-01-02 +session,1406,5,Firefox 35,1,2018-11-14 +session,1406,6,Firefox 19,59,2017-04-20 +session,1406,7,Firefox 32,35,2017-10-25 +user,1407,Karen,Phuong,35 +session,1407,0,Chrome 2,26,2017-06-15 +session,1407,1,Chrome 47,67,2017-02-12 +user,1408,Cameron,Anderson,83 +session,1408,0,Firefox 26,6,2018-09-14 +session,1408,1,Internet Explorer 42,73,2017-05-16 +user,1409,Jc,Parthenia,3 +session,1409,0,Safari 15,13,2018-12-14 +session,1409,1,Safari 13,13,2017-12-23 +user,1410,Tom,Lance,9 +session,1410,0,Firefox 36,44,2018-04-28 +user,1411,Candy,Tamisha,82 +session,1411,0,Firefox 6,35,2018-08-24 +session,1411,1,Safari 46,54,2018-02-08 +session,1411,2,Firefox 22,103,2017-07-30 +session,1411,3,Firefox 21,88,2016-12-31 +session,1411,4,Safari 36,114,2018-01-21 +session,1411,5,Internet Explorer 16,25,2018-04-16 +session,1411,6,Internet Explorer 31,50,2017-07-01 +session,1411,7,Chrome 41,87,2018-10-05 +user,1412,Sherman,Long,31 +session,1412,0,Internet Explorer 11,70,2018-10-15 +session,1412,1,Firefox 35,101,2018-09-11 +session,1412,2,Firefox 6,108,2016-08-19 +session,1412,3,Chrome 26,111,2018-09-09 +session,1412,4,Safari 33,84,2018-06-14 +session,1412,5,Safari 44,107,2018-07-14 +session,1412,6,Safari 32,9,2017-05-04 +session,1412,7,Safari 4,32,2017-10-03 +user,1413,Elvin,Florene,28 +session,1413,0,Firefox 17,44,2019-01-05 +user,1414,Amberly,Marilou,84 +session,1414,0,Safari 36,50,2018-07-15 +session,1414,1,Chrome 46,40,2016-11-29 +session,1414,2,Firefox 1,10,2016-07-21 +session,1414,3,Firefox 7,79,2018-09-01 +session,1414,4,Safari 23,26,2018-08-10 +session,1414,5,Safari 7,82,2016-11-06 +user,1415,Laurene,Reina,72 +session,1415,0,Internet Explorer 17,73,2018-12-29 +session,1415,1,Chrome 10,53,2018-05-10 +session,1415,2,Firefox 13,8,2018-06-28 +session,1415,3,Internet Explorer 2,101,2018-03-21 +session,1415,4,Firefox 25,108,2018-10-21 +session,1415,5,Chrome 22,38,2017-09-01 +session,1415,6,Chrome 41,110,2017-03-23 +user,1416,Armando,Kizzie,8 +session,1416,0,Safari 47,39,2018-01-12 +session,1416,1,Firefox 21,56,2018-09-23 +session,1416,2,Firefox 7,11,2016-07-14 +session,1416,3,Chrome 35,115,2018-07-19 +session,1416,4,Chrome 29,54,2018-02-10 +session,1416,5,Chrome 31,74,2017-10-20 +session,1416,6,Chrome 42,86,2016-08-26 +session,1416,7,Firefox 12,14,2018-03-11 +user,1417,Edie,Felicidad,43 +session,1417,0,Chrome 42,36,2016-12-11 +user,1418,Robert,Jutta,38 +session,1418,0,Safari 22,0,2018-11-02 +session,1418,1,Chrome 41,89,2017-04-26 +session,1418,2,Chrome 33,34,2017-08-09 +session,1418,3,Firefox 18,97,2018-08-11 +session,1418,4,Firefox 48,76,2017-08-03 +session,1418,5,Internet Explorer 21,104,2019-01-08 +session,1418,6,Firefox 1,3,2016-08-28 +session,1418,7,Firefox 29,36,2018-03-25 +session,1418,8,Internet Explorer 21,50,2016-05-29 +user,1419,Jeromy,Leslie,42 +session,1419,0,Chrome 16,100,2017-02-20 +session,1419,1,Safari 13,64,2017-09-06 +session,1419,2,Safari 3,107,2018-05-25 +session,1419,3,Internet Explorer 6,57,2018-06-10 +session,1419,4,Internet Explorer 17,49,2017-06-16 +user,1420,Pablo,Dane,47 +session,1420,0,Firefox 32,89,2019-02-03 +session,1420,1,Safari 49,58,2017-05-23 +session,1420,2,Chrome 16,42,2017-08-10 +session,1420,3,Internet Explorer 22,47,2016-09-30 +session,1420,4,Safari 29,116,2017-05-21 +session,1420,5,Firefox 41,104,2016-09-29 +session,1420,6,Safari 9,100,2018-04-13 +session,1420,7,Safari 39,50,2017-04-05 +user,1421,Ayesha,Angelo,12 +session,1421,0,Safari 4,101,2017-08-22 +session,1421,1,Safari 31,50,2018-06-27 +user,1422,Charley,Lorri,52 +session,1422,0,Internet Explorer 37,81,2017-09-25 +session,1422,1,Firefox 2,43,2018-11-14 +session,1422,2,Chrome 12,25,2017-06-11 +session,1422,3,Safari 3,96,2017-11-19 +session,1422,4,Chrome 47,95,2017-05-25 +session,1422,5,Safari 12,100,2019-01-20 +session,1422,6,Internet Explorer 33,14,2016-11-18 +session,1422,7,Firefox 21,82,2017-09-04 +session,1422,8,Firefox 11,3,2018-11-16 +session,1422,9,Chrome 20,110,2018-10-21 +user,1423,Aileen,Katharyn,69 +session,1423,0,Firefox 43,19,2017-07-23 +session,1423,1,Internet Explorer 33,119,2018-11-16 +session,1423,2,Chrome 50,119,2019-02-11 +session,1423,3,Firefox 16,74,2016-11-19 +session,1423,4,Firefox 44,14,2016-09-20 +session,1423,5,Firefox 31,32,2017-09-05 +user,1424,Pamila,Olive,55 +session,1424,0,Safari 41,64,2018-06-30 +session,1424,1,Firefox 18,76,2017-11-07 +session,1424,2,Firefox 3,48,2018-05-21 +session,1424,3,Internet Explorer 45,58,2016-09-15 +session,1424,4,Chrome 20,59,2018-02-11 +user,1425,Carmelita,Gilda,53 +session,1425,0,Firefox 17,113,2018-01-02 +session,1425,1,Internet Explorer 47,97,2017-09-20 +session,1425,2,Chrome 25,48,2018-07-13 +session,1425,3,Safari 31,110,2018-05-21 +session,1425,4,Chrome 33,34,2018-04-04 +session,1425,5,Internet Explorer 39,78,2017-10-30 +session,1425,6,Internet Explorer 4,72,2016-11-30 +session,1425,7,Safari 32,49,2017-09-07 +session,1425,8,Chrome 2,14,2018-09-12 +user,1426,Alena,Nickie,78 +session,1426,0,Firefox 3,52,2016-12-04 +session,1426,1,Internet Explorer 43,25,2018-01-13 +session,1426,2,Safari 16,93,2016-11-22 +user,1427,Patricia,Karine,99 +session,1427,0,Internet Explorer 44,47,2018-02-18 +session,1427,1,Safari 36,16,2018-04-06 +session,1427,2,Chrome 18,99,2018-05-21 +session,1427,3,Safari 45,79,2016-08-14 +session,1427,4,Chrome 1,58,2018-11-04 +session,1427,5,Firefox 31,56,2018-03-09 +session,1427,6,Chrome 2,71,2016-11-14 +session,1427,7,Safari 40,25,2017-04-07 +session,1427,8,Chrome 26,40,2018-12-18 +user,1428,Sarah,Shanda,3 +session,1428,0,Firefox 33,103,2017-08-06 +session,1428,1,Chrome 19,58,2019-02-04 +session,1428,2,Firefox 28,48,2017-04-08 +session,1428,3,Chrome 49,5,2016-12-05 +session,1428,4,Firefox 21,38,2017-01-06 +session,1428,5,Safari 45,65,2016-10-10 +session,1428,6,Chrome 49,22,2018-12-14 +session,1428,7,Internet Explorer 1,59,2016-08-03 +session,1428,8,Firefox 29,54,2016-06-26 +user,1429,Rolando,Kirk,29 +session,1429,0,Internet Explorer 47,55,2017-06-25 +user,1430,Charlotte,Janey,60 +session,1430,0,Chrome 47,11,2018-06-23 +session,1430,1,Firefox 30,52,2018-10-30 +session,1430,2,Chrome 13,48,2018-10-22 +session,1430,3,Firefox 33,94,2017-02-14 +session,1430,4,Firefox 6,73,2017-08-20 +session,1430,5,Firefox 9,67,2017-01-24 +session,1430,6,Chrome 9,20,2018-11-21 +session,1430,7,Internet Explorer 1,54,2016-07-22 +user,1431,Dayna,Jennette,26 +session,1431,0,Chrome 38,56,2018-08-30 +session,1431,1,Firefox 22,78,2018-12-03 +session,1431,2,Internet Explorer 15,7,2018-06-03 +session,1431,3,Internet Explorer 14,85,2018-06-17 +session,1431,4,Internet Explorer 15,35,2018-11-05 +session,1431,5,Chrome 4,115,2018-11-03 +session,1431,6,Chrome 21,102,2016-12-17 +session,1431,7,Safari 18,38,2017-03-02 +session,1431,8,Chrome 21,105,2016-11-23 +session,1431,9,Safari 26,99,2016-10-02 +user,1432,Lanelle,Abram,73 +session,1432,0,Chrome 4,36,2018-12-12 +session,1432,1,Safari 37,104,2016-09-01 +session,1432,2,Safari 48,18,2018-09-09 +session,1432,3,Internet Explorer 45,78,2017-11-09 +session,1432,4,Firefox 17,55,2018-08-25 +session,1432,5,Chrome 49,41,2017-02-18 +session,1432,6,Safari 14,16,2018-01-29 +session,1432,7,Safari 15,99,2018-06-09 +user,1433,Odis,Mee,12 +session,1433,0,Chrome 33,2,2018-01-06 +session,1433,1,Firefox 25,53,2017-05-17 +session,1433,2,Chrome 9,14,2018-06-15 +session,1433,3,Chrome 39,76,2018-11-10 +session,1433,4,Chrome 43,27,2018-02-02 +session,1433,5,Chrome 28,29,2016-09-22 +session,1433,6,Safari 43,63,2018-04-05 +session,1433,7,Internet Explorer 12,75,2018-08-14 +session,1433,8,Firefox 7,45,2018-10-17 +user,1434,Raymond,Glenn,14 +session,1434,0,Chrome 43,57,2017-07-16 +session,1434,1,Internet Explorer 33,61,2016-06-07 +session,1434,2,Chrome 46,39,2018-01-21 +session,1434,3,Safari 34,84,2018-08-29 +session,1434,4,Firefox 37,44,2017-07-31 +session,1434,5,Internet Explorer 11,80,2018-01-17 +session,1434,6,Firefox 31,105,2018-04-27 +session,1434,7,Chrome 22,28,2017-04-11 +user,1435,Effie,Ignacio,79 +session,1435,0,Firefox 1,40,2016-12-11 +session,1435,1,Internet Explorer 28,42,2016-09-13 +session,1435,2,Internet Explorer 1,116,2018-06-19 +user,1436,Moshe,Cecila,42 +session,1436,0,Firefox 42,23,2018-04-10 +session,1436,1,Chrome 17,42,2017-06-20 +session,1436,2,Firefox 24,103,2017-11-13 +session,1436,3,Safari 41,10,2018-03-06 +session,1436,4,Chrome 17,5,2017-06-14 +user,1437,Samantha,Barrett,11 +session,1437,0,Safari 10,119,2018-09-19 +session,1437,1,Firefox 28,81,2016-12-24 +session,1437,2,Internet Explorer 5,105,2016-11-24 +session,1437,3,Safari 32,114,2019-01-12 +session,1437,4,Firefox 21,38,2016-09-03 +user,1438,Leah,Cammy,30 +session,1438,0,Firefox 32,60,2017-01-16 +session,1438,1,Chrome 3,79,2018-01-15 +session,1438,2,Safari 5,70,2016-11-27 +user,1439,Sherlyn,Karyl,99 +session,1439,0,Internet Explorer 6,92,2017-08-10 +session,1439,1,Safari 1,21,2018-11-30 +session,1439,2,Chrome 20,81,2018-02-10 +session,1439,3,Internet Explorer 5,89,2018-11-27 +session,1439,4,Internet Explorer 28,108,2017-04-23 +session,1439,5,Chrome 46,35,2018-09-28 +session,1439,6,Firefox 33,21,2017-06-29 +session,1439,7,Internet Explorer 25,75,2017-09-20 +session,1439,8,Firefox 17,62,2017-12-22 +user,1440,Rolanda,Claire,85 +session,1440,0,Chrome 36,59,2018-04-07 +session,1440,1,Internet Explorer 6,106,2017-01-08 +session,1440,2,Chrome 46,99,2017-06-19 +session,1440,3,Firefox 14,29,2017-09-13 +session,1440,4,Chrome 27,90,2018-07-16 +session,1440,5,Firefox 40,51,2017-11-15 +session,1440,6,Safari 20,77,2016-11-14 +session,1440,7,Firefox 10,71,2017-03-20 +user,1441,Sherwood,Kaleigh,60 +session,1441,0,Internet Explorer 20,84,2017-06-06 +session,1441,1,Safari 7,64,2017-03-26 +session,1441,2,Chrome 33,0,2019-01-14 +session,1441,3,Firefox 49,14,2017-05-20 +session,1441,4,Firefox 37,62,2018-11-09 +user,1442,Robby,Fern,56 +session,1442,0,Safari 21,23,2016-05-24 +session,1442,1,Internet Explorer 31,3,2018-03-07 +user,1443,Jeannetta,Mallie,28 +session,1443,0,Safari 11,10,2016-10-24 +user,1444,Dante,Reyes,50 +session,1444,0,Firefox 28,22,2018-03-18 +session,1444,1,Chrome 3,93,2018-11-15 +session,1444,2,Firefox 15,94,2018-11-10 +session,1444,3,Chrome 10,71,2016-06-10 +session,1444,4,Firefox 14,20,2017-09-28 +session,1444,5,Chrome 3,89,2016-08-29 +session,1444,6,Chrome 16,100,2017-02-13 +session,1444,7,Firefox 3,82,2016-11-01 +session,1444,8,Firefox 46,104,2016-09-20 +user,1445,Valda,Haywood,9 +session,1445,0,Safari 27,90,2018-03-26 +user,1446,Beata,Jaimee,55 +session,1446,0,Chrome 13,36,2018-05-18 +session,1446,1,Firefox 29,0,2017-07-07 +session,1446,2,Internet Explorer 50,49,2017-10-07 +session,1446,3,Firefox 21,87,2017-08-03 +session,1446,4,Firefox 26,38,2017-09-28 +session,1446,5,Internet Explorer 1,30,2019-01-11 +session,1446,6,Safari 36,25,2016-08-05 +session,1446,7,Internet Explorer 20,0,2016-05-21 +session,1446,8,Internet Explorer 26,35,2017-08-24 +session,1446,9,Firefox 34,12,2018-07-03 +user,1447,Gala,Loreta,29 +session,1447,0,Chrome 45,108,2016-05-23 +session,1447,1,Firefox 21,88,2017-03-19 +session,1447,2,Firefox 12,111,2016-08-09 +session,1447,3,Safari 50,28,2016-10-11 +session,1447,4,Internet Explorer 3,27,2017-03-07 +session,1447,5,Firefox 47,12,2016-07-07 +session,1447,6,Chrome 28,28,2016-05-24 +session,1447,7,Internet Explorer 31,5,2017-03-04 +session,1447,8,Firefox 1,98,2017-02-09 +session,1447,9,Firefox 2,36,2017-02-18 +user,1448,August,Alida,85 +session,1448,0,Safari 14,36,2018-11-27 +session,1448,1,Safari 15,29,2019-01-12 +session,1448,2,Internet Explorer 32,19,2017-04-02 +session,1448,3,Chrome 8,27,2018-01-27 +session,1448,4,Internet Explorer 6,73,2018-11-02 +session,1448,5,Safari 33,57,2016-09-01 +session,1448,6,Internet Explorer 47,64,2017-04-18 +session,1448,7,Chrome 26,3,2016-10-27 +session,1448,8,Firefox 50,79,2018-11-22 +user,1449,Rickie,Emile,22 +session,1449,0,Chrome 8,102,2018-01-29 +session,1449,1,Safari 37,106,2017-10-20 +session,1449,2,Chrome 38,21,2018-08-10 +session,1449,3,Internet Explorer 28,42,2017-07-29 +user,1450,Kelley,Toi,24 +session,1450,0,Chrome 4,48,2017-07-30 +session,1450,1,Safari 50,28,2018-06-26 +session,1450,2,Firefox 49,84,2017-01-19 +session,1450,3,Firefox 30,13,2018-09-29 +session,1450,4,Internet Explorer 22,8,2017-03-03 +session,1450,5,Internet Explorer 32,100,2017-09-07 +session,1450,6,Safari 41,116,2017-03-22 +session,1450,7,Internet Explorer 16,50,2017-03-25 +session,1450,8,Firefox 46,43,2018-10-22 +session,1450,9,Firefox 10,42,2016-10-12 +user,1451,Burt,Aida,74 +session,1451,0,Firefox 12,65,2018-07-25 +session,1451,1,Internet Explorer 12,9,2019-01-07 +session,1451,2,Firefox 40,82,2018-03-16 +session,1451,3,Internet Explorer 21,84,2017-03-29 +user,1452,Debra,Shera,2 +session,1452,0,Safari 5,45,2017-12-26 +user,1453,Roselyn,Gertrude,66 +session,1453,0,Internet Explorer 16,25,2018-10-02 +session,1453,1,Safari 1,70,2019-01-26 +session,1453,2,Safari 46,38,2017-04-01 +session,1453,3,Internet Explorer 39,37,2017-08-04 +session,1453,4,Chrome 1,12,2018-08-24 +session,1453,5,Safari 13,101,2018-09-12 +user,1454,Felisha,Rodrigo,9 +session,1454,0,Firefox 3,92,2017-05-24 +session,1454,1,Chrome 21,6,2017-09-27 +session,1454,2,Chrome 4,104,2017-06-24 +user,1455,Hollis,Carylon,46 +session,1455,0,Firefox 19,24,2017-05-26 +session,1455,1,Chrome 12,40,2017-06-26 +session,1455,2,Safari 19,9,2016-05-28 +session,1455,3,Internet Explorer 29,36,2017-10-31 +session,1455,4,Firefox 44,55,2018-03-02 +session,1455,5,Firefox 39,97,2017-02-10 +session,1455,6,Chrome 19,14,2018-08-17 +session,1455,7,Internet Explorer 16,104,2018-09-06 +session,1455,8,Firefox 29,58,2018-03-31 +session,1455,9,Internet Explorer 6,79,2017-02-23 +user,1456,Hong,Yolande,63 +session,1456,0,Safari 25,13,2017-05-22 +session,1456,1,Chrome 3,93,2017-11-14 +session,1456,2,Firefox 22,32,2017-11-27 +session,1456,3,Safari 33,119,2017-05-05 +session,1456,4,Internet Explorer 2,2,2018-07-18 +session,1456,5,Safari 19,29,2016-06-25 +user,1457,Adolfo,Jarred,97 +session,1457,0,Safari 35,34,2018-09-24 +session,1457,1,Internet Explorer 8,54,2018-03-20 +session,1457,2,Chrome 46,60,2016-07-11 +session,1457,3,Chrome 34,31,2017-02-26 +session,1457,4,Firefox 21,57,2017-07-07 +session,1457,5,Firefox 43,36,2016-10-20 +session,1457,6,Internet Explorer 47,66,2016-06-22 +session,1457,7,Internet Explorer 23,89,2017-10-24 +session,1457,8,Chrome 40,119,2016-09-16 +user,1458,Shona,Maurita,8 +session,1458,0,Chrome 5,13,2018-04-07 +session,1458,1,Internet Explorer 32,82,2017-11-14 +session,1458,2,Safari 4,19,2017-04-13 +session,1458,3,Firefox 22,26,2018-07-25 +session,1458,4,Chrome 39,39,2016-08-23 +session,1458,5,Chrome 6,60,2018-11-02 +session,1458,6,Safari 1,55,2016-09-18 +session,1458,7,Safari 19,9,2018-01-29 +user,1459,Fernando,Andrea,1 +session,1459,0,Safari 12,12,2017-06-03 +session,1459,1,Firefox 13,68,2016-05-29 +session,1459,2,Chrome 33,32,2018-05-29 +session,1459,3,Internet Explorer 21,64,2017-05-31 +session,1459,4,Safari 19,89,2017-06-11 +session,1459,5,Safari 39,15,2017-05-08 +user,1460,Magaly,Loyce,90 +session,1460,0,Safari 42,100,2018-02-21 +session,1460,1,Internet Explorer 47,40,2018-06-22 +session,1460,2,Firefox 3,62,2016-08-22 +session,1460,3,Internet Explorer 42,26,2016-06-20 +user,1461,Matthew,Corie,19 +session,1461,0,Safari 40,63,2016-06-12 +session,1461,1,Chrome 16,87,2018-05-04 +session,1461,2,Chrome 36,8,2017-07-15 +session,1461,3,Safari 2,24,2017-07-18 +session,1461,4,Firefox 35,102,2017-02-27 +user,1462,Jody,Charlette,49 +session,1462,0,Firefox 38,1,2018-08-25 +session,1462,1,Chrome 26,73,2018-01-14 +session,1462,2,Chrome 7,11,2016-12-21 +session,1462,3,Chrome 29,101,2018-01-25 +session,1462,4,Chrome 50,17,2017-09-09 +session,1462,5,Safari 24,34,2017-02-21 +session,1462,6,Chrome 1,88,2018-09-04 +session,1462,7,Safari 10,112,2017-03-17 +user,1463,Bernie,Marivel,82 +session,1463,0,Firefox 47,16,2018-01-25 +session,1463,1,Firefox 37,69,2017-10-16 +user,1464,Ethel,Ahmed,33 +session,1464,0,Chrome 6,40,2017-08-19 +session,1464,1,Firefox 12,32,2017-06-11 +session,1464,2,Internet Explorer 12,56,2018-07-02 +session,1464,3,Firefox 31,49,2017-04-23 +session,1464,4,Safari 25,12,2016-10-08 +session,1464,5,Chrome 46,114,2018-04-08 +session,1464,6,Safari 37,17,2016-10-18 +session,1464,7,Chrome 48,98,2018-11-12 +session,1464,8,Safari 40,2,2017-12-03 +user,1465,Zane,Lawerence,19 +session,1465,0,Chrome 27,97,2017-12-29 +session,1465,1,Internet Explorer 42,76,2018-07-05 +session,1465,2,Chrome 9,77,2018-04-15 +session,1465,3,Chrome 2,98,2019-01-13 +session,1465,4,Chrome 48,34,2016-09-05 +session,1465,5,Firefox 5,33,2016-07-10 +user,1466,Berry,Dodie,20 +session,1466,0,Chrome 19,33,2018-06-09 +session,1466,1,Firefox 12,66,2016-06-08 +session,1466,2,Internet Explorer 28,18,2017-07-13 +session,1466,3,Firefox 5,78,2018-03-07 +session,1466,4,Internet Explorer 46,100,2016-10-24 +user,1467,Jimmy,Alphonse,73 +session,1467,0,Internet Explorer 45,50,2016-09-12 +session,1467,1,Firefox 15,1,2018-07-31 +session,1467,2,Chrome 38,64,2017-11-27 +session,1467,3,Safari 33,59,2017-09-08 +user,1468,Melania,Rachell,32 +session,1468,0,Safari 14,64,2019-01-11 +user,1469,Lakiesha,Lavone,35 +session,1469,0,Chrome 17,54,2016-07-22 +user,1470,Lottie,Eufemia,19 +session,1470,0,Internet Explorer 21,96,2017-12-05 +session,1470,1,Safari 19,8,2018-06-08 +session,1470,2,Chrome 27,119,2016-09-21 +session,1470,3,Chrome 37,96,2016-12-25 +session,1470,4,Internet Explorer 16,103,2016-12-16 +session,1470,5,Safari 15,3,2018-06-26 +session,1470,6,Safari 7,68,2018-07-12 +user,1471,Lynn,Horace,92 +session,1471,0,Safari 30,118,2016-06-30 +session,1471,1,Internet Explorer 27,77,2018-04-23 +session,1471,2,Safari 20,23,2016-06-16 +session,1471,3,Safari 30,101,2018-09-03 +session,1471,4,Internet Explorer 30,59,2018-01-24 +session,1471,5,Internet Explorer 48,89,2017-03-19 +session,1471,6,Chrome 45,10,2017-12-09 +session,1471,7,Firefox 32,68,2018-11-24 +session,1471,8,Chrome 30,27,2017-11-03 +user,1472,Aimee,Yasmine,95 +session,1472,0,Internet Explorer 33,17,2016-05-22 +session,1472,1,Safari 21,91,2018-04-24 +session,1472,2,Safari 26,91,2018-07-06 +session,1472,3,Safari 39,56,2017-09-10 +session,1472,4,Chrome 46,10,2018-12-03 +session,1472,5,Safari 10,113,2016-06-14 +session,1472,6,Internet Explorer 25,68,2017-08-05 +session,1472,7,Internet Explorer 25,51,2017-06-14 +session,1472,8,Safari 38,8,2017-07-05 +user,1473,Demarcus,Lavina,61 +session,1473,0,Internet Explorer 33,105,2017-11-16 +session,1473,1,Internet Explorer 38,117,2016-12-11 +session,1473,2,Chrome 30,97,2018-10-27 +user,1474,Shira,Guy,19 +session,1474,0,Safari 1,47,2018-08-01 +session,1474,1,Chrome 3,39,2018-10-23 +session,1474,2,Safari 32,113,2017-03-11 +session,1474,3,Firefox 36,38,2018-08-15 +session,1474,4,Chrome 11,3,2017-06-22 +session,1474,5,Firefox 1,32,2017-04-19 +session,1474,6,Internet Explorer 35,56,2018-07-25 +user,1475,Tiesha,Traci,51 +session,1475,0,Internet Explorer 16,49,2018-12-16 +session,1475,1,Safari 44,32,2019-02-08 +session,1475,2,Safari 39,116,2017-02-19 +session,1475,3,Internet Explorer 33,39,2017-04-29 +session,1475,4,Chrome 46,19,2017-12-10 +user,1476,Gavin,Jann,78 +session,1476,0,Safari 28,21,2016-11-28 +session,1476,1,Internet Explorer 35,67,2016-11-17 +session,1476,2,Safari 30,39,2018-11-27 +session,1476,3,Chrome 17,101,2017-12-17 +session,1476,4,Firefox 16,89,2018-11-22 +session,1476,5,Safari 4,4,2017-04-26 +session,1476,6,Safari 20,49,2018-10-16 +user,1477,Melodie,Krista,63 +session,1477,0,Internet Explorer 49,75,2018-04-01 +user,1478,Juliann,Emmaline,54 +session,1478,0,Internet Explorer 35,84,2016-06-20 +session,1478,1,Internet Explorer 40,79,2018-05-05 +session,1478,2,Firefox 22,92,2018-09-12 +session,1478,3,Safari 41,58,2019-01-17 +session,1478,4,Internet Explorer 31,82,2017-02-10 +session,1478,5,Safari 48,114,2017-07-24 +session,1478,6,Chrome 50,11,2018-06-12 +session,1478,7,Firefox 9,76,2018-01-16 +session,1478,8,Firefox 22,42,2018-03-29 +user,1479,Chia,Corey,18 +session,1479,0,Chrome 29,74,2016-06-05 +user,1480,Azalee,Lavern,45 +session,1480,0,Safari 7,17,2018-01-21 +session,1480,1,Chrome 23,86,2018-01-12 +session,1480,2,Internet Explorer 40,83,2016-08-25 +user,1481,Markus,Malinda,92 +session,1481,0,Chrome 12,37,2016-11-13 +user,1482,Lanny,Tuan,11 +session,1482,0,Firefox 9,58,2018-10-05 +user,1483,Dawna,Clinton,38 +session,1483,0,Firefox 36,93,2016-12-13 +session,1483,1,Chrome 9,48,2017-03-25 +session,1483,2,Chrome 17,109,2016-08-17 +session,1483,3,Safari 5,54,2016-05-21 +session,1483,4,Chrome 35,2,2017-08-11 +session,1483,5,Firefox 43,32,2017-10-22 +session,1483,6,Firefox 1,113,2018-11-13 +session,1483,7,Safari 32,85,2018-10-16 +session,1483,8,Chrome 30,41,2018-03-29 +user,1484,Jackson,Tyson,3 +session,1484,0,Safari 6,11,2017-12-09 +session,1484,1,Internet Explorer 42,102,2018-05-21 +session,1484,2,Chrome 5,119,2019-01-09 +user,1485,Caleb,Matthew,59 +session,1485,0,Internet Explorer 40,59,2016-09-25 +session,1485,1,Chrome 10,100,2016-05-29 +session,1485,2,Internet Explorer 47,25,2018-12-18 +session,1485,3,Safari 5,52,2017-10-21 +session,1485,4,Safari 6,91,2018-08-16 +session,1485,5,Safari 9,64,2016-09-05 +user,1486,Neil,Corina,56 +session,1486,0,Chrome 13,52,2018-01-04 +session,1486,1,Safari 20,93,2016-08-17 +session,1486,2,Chrome 27,30,2016-07-12 +session,1486,3,Firefox 29,63,2017-02-25 +session,1486,4,Internet Explorer 38,80,2017-09-15 +session,1486,5,Safari 50,28,2016-08-18 +user,1487,Elnora,Linwood,9 +session,1487,0,Chrome 35,32,2018-06-29 +session,1487,1,Internet Explorer 32,17,2017-07-15 +session,1487,2,Chrome 27,62,2018-10-18 +session,1487,3,Chrome 41,39,2017-08-26 +session,1487,4,Internet Explorer 49,31,2017-02-21 +session,1487,5,Internet Explorer 8,98,2016-11-22 +session,1487,6,Firefox 31,113,2016-05-20 +session,1487,7,Safari 3,53,2019-01-29 +user,1488,Theresa,Maximina,83 +session,1488,0,Chrome 20,2,2016-09-22 +session,1488,1,Chrome 1,22,2018-12-03 +session,1488,2,Safari 21,94,2018-03-03 +session,1488,3,Firefox 31,76,2018-06-13 +session,1488,4,Chrome 4,27,2018-10-13 +session,1488,5,Firefox 37,108,2016-08-25 +session,1488,6,Internet Explorer 25,57,2018-08-09 +user,1489,Leonila,Lola,58 +session,1489,0,Chrome 22,65,2019-01-16 +session,1489,1,Chrome 24,47,2018-12-06 +session,1489,2,Chrome 43,71,2016-07-18 +session,1489,3,Safari 3,23,2017-07-22 +session,1489,4,Firefox 2,102,2017-05-29 +user,1490,Tammy,Marianne,71 +session,1490,0,Chrome 9,11,2018-04-15 +session,1490,1,Safari 36,21,2017-05-25 +session,1490,2,Internet Explorer 41,109,2018-03-07 +session,1490,3,Internet Explorer 7,114,2016-06-04 +session,1490,4,Internet Explorer 2,48,2017-09-20 +session,1490,5,Firefox 49,119,2018-06-26 +session,1490,6,Safari 14,92,2017-09-24 +session,1490,7,Safari 43,50,2018-01-15 +session,1490,8,Firefox 46,43,2016-12-31 +user,1491,Merle,Victorina,31 +session,1491,0,Chrome 20,85,2017-07-10 +session,1491,1,Internet Explorer 43,61,2018-07-04 +session,1491,2,Chrome 49,100,2019-01-16 +user,1492,Louis,Lashanda,1 +session,1492,0,Firefox 17,110,2016-11-01 +session,1492,1,Safari 22,48,2016-11-24 +session,1492,2,Internet Explorer 39,44,2017-08-16 +session,1492,3,Internet Explorer 3,9,2018-07-01 +user,1493,Trent,Lilla,96 +session,1493,0,Safari 6,28,2017-10-01 +session,1493,1,Firefox 50,79,2016-12-13 +session,1493,2,Chrome 2,13,2017-07-25 +session,1493,3,Firefox 1,6,2017-12-03 +session,1493,4,Chrome 5,50,2016-05-19 +user,1494,Clement,Lael,64 +session,1494,0,Chrome 50,51,2016-12-28 +user,1495,Dennis,Carla,61 +session,1495,0,Chrome 28,77,2017-05-15 +session,1495,1,Firefox 45,44,2018-07-20 +session,1495,2,Internet Explorer 15,104,2016-10-01 +session,1495,3,Safari 24,0,2017-04-19 +session,1495,4,Chrome 1,115,2017-11-14 +session,1495,5,Internet Explorer 16,11,2018-11-03 +user,1496,Buddy,Brooks,76 +session,1496,0,Firefox 30,74,2016-09-29 +session,1496,1,Chrome 34,60,2018-04-10 +session,1496,2,Firefox 20,86,2017-09-29 +session,1496,3,Safari 7,95,2017-08-21 +session,1496,4,Firefox 27,115,2017-07-14 +session,1496,5,Firefox 12,26,2019-02-03 +user,1497,Nicholas,Edwina,61 +session,1497,0,Firefox 7,39,2018-06-07 +session,1497,1,Chrome 38,13,2018-04-12 +user,1498,Elinore,Heath,50 +session,1498,0,Safari 39,73,2018-02-22 +user,1499,Maureen,Terresa,52 +session,1499,0,Chrome 1,26,2017-03-07 +session,1499,1,Internet Explorer 24,62,2017-01-22 +session,1499,2,Chrome 22,54,2017-10-04 +session,1499,3,Firefox 9,46,2017-02-13 +session,1499,4,Internet Explorer 12,85,2017-04-11 +session,1499,5,Internet Explorer 32,20,2016-08-22 +user,1500,Carlos,Benita,93 +session,1500,0,Safari 14,58,2017-02-05 +session,1500,1,Safari 48,103,2018-05-18 +session,1500,2,Firefox 49,54,2018-01-19 +user,1501,Hayley,Janeen,26 +session,1501,0,Internet Explorer 8,76,2017-02-26 +session,1501,1,Chrome 33,77,2017-08-07 +session,1501,2,Firefox 42,81,2016-07-17 +session,1501,3,Firefox 43,34,2019-01-13 +session,1501,4,Firefox 31,65,2018-03-11 +session,1501,5,Chrome 14,98,2017-07-14 +session,1501,6,Internet Explorer 33,75,2016-09-25 +session,1501,7,Firefox 48,114,2016-08-31 +user,1502,Bess,Queen,90 +session,1502,0,Safari 20,22,2018-10-24 +session,1502,1,Firefox 19,58,2018-08-22 +user,1503,Danilo,Mirta,92 +session,1503,0,Safari 17,36,2018-09-26 +session,1503,1,Firefox 32,99,2019-01-14 +session,1503,2,Internet Explorer 17,78,2016-12-29 +session,1503,3,Safari 48,62,2017-04-26 +session,1503,4,Internet Explorer 17,116,2016-08-13 +session,1503,5,Internet Explorer 45,44,2017-10-04 +session,1503,6,Firefox 48,46,2019-02-01 +session,1503,7,Internet Explorer 18,55,2017-02-15 +session,1503,8,Internet Explorer 2,73,2017-05-29 +user,1504,Terri,Moshe,56 +session,1504,0,Internet Explorer 17,69,2017-07-24 +session,1504,1,Internet Explorer 22,7,2017-07-23 +session,1504,2,Internet Explorer 44,102,2018-04-16 +user,1505,Sammy,Samuel,62 +session,1505,0,Safari 43,43,2016-06-22 +user,1506,Vanesa,Lesia,87 +session,1506,0,Chrome 9,17,2018-04-19 +session,1506,1,Chrome 14,113,2017-03-08 +session,1506,2,Firefox 2,0,2018-08-17 +session,1506,3,Safari 31,63,2016-07-09 +session,1506,4,Firefox 41,95,2017-06-18 +session,1506,5,Internet Explorer 13,85,2018-06-11 +session,1506,6,Chrome 43,63,2018-03-19 +session,1506,7,Chrome 39,85,2018-04-01 +session,1506,8,Firefox 46,114,2016-09-20 +user,1507,Heike,Ozie,9 +session,1507,0,Internet Explorer 40,76,2018-04-30 +user,1508,Carroll,Jame,45 +session,1508,0,Safari 13,19,2018-11-25 +session,1508,1,Internet Explorer 49,67,2018-12-22 +session,1508,2,Chrome 4,20,2018-01-06 +session,1508,3,Internet Explorer 40,37,2018-07-25 +session,1508,4,Firefox 17,7,2017-02-19 +session,1508,5,Chrome 26,64,2018-07-19 +session,1508,6,Internet Explorer 5,26,2017-11-19 +user,1509,Greg,Rhona,43 +session,1509,0,Internet Explorer 33,117,2018-08-16 +session,1509,1,Internet Explorer 3,86,2017-04-06 +user,1510,Kevin,Clarissa,6 +session,1510,0,Internet Explorer 32,95,2018-11-14 +user,1511,Virginia,Stefania,84 +session,1511,0,Firefox 14,2,2017-01-02 +session,1511,1,Safari 38,6,2017-06-16 +session,1511,2,Chrome 39,52,2018-09-24 +session,1511,3,Internet Explorer 42,46,2017-12-08 +user,1512,Major,Sharyl,2 +session,1512,0,Internet Explorer 13,11,2017-05-17 +session,1512,1,Firefox 23,27,2017-10-10 +session,1512,2,Firefox 31,66,2018-03-18 +session,1512,3,Internet Explorer 26,107,2017-03-02 +user,1513,Jamey,Mayra,33 +session,1513,0,Internet Explorer 7,20,2018-12-08 +session,1513,1,Chrome 47,65,2017-10-12 +session,1513,2,Internet Explorer 46,112,2017-03-23 +session,1513,3,Internet Explorer 32,96,2018-04-11 +session,1513,4,Firefox 30,82,2016-10-03 +session,1513,5,Chrome 44,37,2018-07-20 +session,1513,6,Chrome 12,41,2016-11-24 +session,1513,7,Firefox 3,88,2017-03-04 +session,1513,8,Safari 26,108,2018-09-23 +session,1513,9,Firefox 27,28,2018-12-31 +user,1514,Saul,Queen,75 +session,1514,0,Firefox 50,37,2016-09-21 +session,1514,1,Firefox 12,117,2018-07-29 +session,1514,2,Safari 4,103,2018-12-15 +session,1514,3,Safari 7,63,2017-04-16 +user,1515,Carmine,Wilton,98 +session,1515,0,Safari 47,44,2017-06-24 +session,1515,1,Firefox 15,102,2019-01-17 +session,1515,2,Safari 47,96,2016-12-02 +session,1515,3,Safari 12,20,2017-01-22 +session,1515,4,Firefox 2,119,2017-05-21 +session,1515,5,Chrome 11,88,2018-01-21 +session,1515,6,Internet Explorer 34,117,2018-10-07 +session,1515,7,Safari 4,77,2017-10-11 +user,1516,Elanor,Loreen,6 +session,1516,0,Internet Explorer 48,92,2017-08-15 +session,1516,1,Chrome 3,9,2017-01-14 +session,1516,2,Firefox 33,39,2016-11-25 +session,1516,3,Safari 34,83,2018-06-17 +user,1517,Catrina,Jennefer,16 +session,1517,0,Internet Explorer 17,14,2017-01-01 +session,1517,1,Firefox 26,10,2017-11-17 +session,1517,2,Internet Explorer 33,89,2018-04-10 +session,1517,3,Internet Explorer 22,71,2018-10-23 +session,1517,4,Internet Explorer 42,56,2018-04-15 +session,1517,5,Internet Explorer 50,104,2017-07-25 +session,1517,6,Safari 43,3,2018-10-29 +user,1518,Sebastian,Robbi,32 +session,1518,0,Internet Explorer 19,37,2017-02-11 +session,1518,1,Chrome 1,91,2016-12-14 +session,1518,2,Chrome 31,50,2017-06-05 +session,1518,3,Chrome 12,74,2018-02-27 +session,1518,4,Safari 46,51,2018-12-06 +session,1518,5,Chrome 4,107,2016-11-22 +user,1519,Toya,Lavinia,86 +session,1519,0,Chrome 50,2,2017-08-01 +session,1519,1,Chrome 36,114,2018-11-15 +session,1519,2,Firefox 8,77,2017-07-21 +session,1519,3,Safari 15,43,2016-12-17 +session,1519,4,Internet Explorer 6,38,2017-02-16 +user,1520,Yolando,Ozell,66 +session,1520,0,Chrome 21,10,2018-10-09 +session,1520,1,Safari 39,38,2017-05-30 +session,1520,2,Internet Explorer 24,111,2016-06-03 +session,1520,3,Safari 17,117,2016-07-26 +session,1520,4,Internet Explorer 1,67,2017-11-03 +session,1520,5,Chrome 32,119,2016-07-24 +session,1520,6,Safari 13,10,2017-04-14 +session,1520,7,Internet Explorer 41,69,2018-02-04 +user,1521,Dean,Rhonda,87 +session,1521,0,Internet Explorer 11,106,2016-09-21 +session,1521,1,Firefox 32,27,2017-05-12 +session,1521,2,Firefox 11,102,2018-05-14 +session,1521,3,Chrome 1,33,2018-10-25 +user,1522,Estella,Piedad,31 +session,1522,0,Firefox 26,64,2018-06-24 +session,1522,1,Internet Explorer 41,63,2018-07-21 +session,1522,2,Internet Explorer 7,116,2018-06-29 +session,1522,3,Safari 19,72,2018-12-10 +session,1522,4,Internet Explorer 15,91,2016-11-20 +session,1522,5,Safari 1,22,2016-10-19 +session,1522,6,Firefox 47,86,2017-06-18 +session,1522,7,Firefox 23,98,2017-08-23 +session,1522,8,Firefox 47,60,2016-10-23 +user,1523,Laurence,Kiyoko,44 +session,1523,0,Safari 41,87,2019-01-10 +session,1523,1,Firefox 3,18,2018-11-01 +session,1523,2,Internet Explorer 15,114,2017-12-08 +session,1523,3,Firefox 40,115,2018-12-03 +session,1523,4,Internet Explorer 21,56,2017-01-19 +session,1523,5,Firefox 42,88,2018-07-31 +session,1523,6,Firefox 39,115,2017-06-03 +session,1523,7,Internet Explorer 41,83,2016-08-17 +session,1523,8,Firefox 49,74,2017-02-11 +session,1523,9,Safari 29,90,2018-05-12 +user,1524,Rosita,Theda,11 +session,1524,0,Safari 32,100,2016-10-13 +session,1524,1,Safari 16,49,2016-06-21 +session,1524,2,Safari 26,20,2018-01-16 +session,1524,3,Internet Explorer 16,87,2018-06-02 +session,1524,4,Chrome 41,43,2018-04-13 +session,1524,5,Chrome 46,3,2018-05-22 +session,1524,6,Safari 34,25,2018-07-02 +session,1524,7,Firefox 15,8,2017-10-13 +session,1524,8,Firefox 4,84,2016-10-23 +user,1525,Stevie,Alesha,83 +session,1525,0,Chrome 32,0,2019-01-31 +session,1525,1,Firefox 38,82,2017-07-30 +session,1525,2,Chrome 25,20,2018-01-24 +session,1525,3,Safari 8,37,2017-02-21 +session,1525,4,Internet Explorer 4,47,2018-12-10 +session,1525,5,Firefox 40,36,2017-06-04 +user,1526,Lizeth,Merissa,24 +session,1526,0,Firefox 16,22,2017-05-12 +session,1526,1,Safari 42,53,2017-02-12 +session,1526,2,Firefox 11,83,2017-10-19 +session,1526,3,Internet Explorer 33,19,2016-06-14 +user,1527,Anglea,Gayla,70 +session,1527,0,Safari 11,46,2018-10-06 +session,1527,1,Chrome 47,69,2017-05-21 +session,1527,2,Chrome 25,52,2016-09-07 +session,1527,3,Firefox 34,57,2018-06-14 +session,1527,4,Firefox 25,116,2018-09-02 +session,1527,5,Safari 13,119,2016-11-16 +session,1527,6,Safari 19,27,2017-03-16 +user,1528,Connie,Serita,29 +session,1528,0,Chrome 44,100,2017-07-01 +session,1528,1,Firefox 25,28,2017-12-25 +session,1528,2,Internet Explorer 2,29,2018-04-01 +session,1528,3,Firefox 23,44,2019-01-29 +session,1528,4,Safari 21,40,2019-01-23 +session,1528,5,Chrome 45,33,2017-01-06 +session,1528,6,Internet Explorer 50,72,2016-11-04 +session,1528,7,Firefox 43,47,2017-04-04 +session,1528,8,Internet Explorer 42,50,2018-06-09 +session,1528,9,Safari 20,78,2016-11-12 +user,1529,Bobby,Warren,59 +session,1529,0,Internet Explorer 17,104,2018-02-25 +session,1529,1,Safari 26,52,2016-08-07 +session,1529,2,Firefox 13,28,2016-10-23 +session,1529,3,Safari 42,118,2018-02-02 +session,1529,4,Safari 5,31,2017-07-25 +session,1529,5,Firefox 2,91,2018-05-28 +session,1529,6,Internet Explorer 32,19,2017-08-07 +session,1529,7,Chrome 28,43,2018-02-26 +session,1529,8,Chrome 4,117,2018-01-29 +user,1530,Emmitt,Anthony,32 +session,1530,0,Safari 28,41,2017-04-15 +session,1530,1,Chrome 15,53,2017-10-11 +session,1530,2,Safari 40,94,2016-11-22 +session,1530,3,Safari 4,28,2017-11-19 +session,1530,4,Internet Explorer 18,61,2016-10-26 +user,1531,Lois,Betsey,46 +session,1531,0,Safari 30,113,2018-07-30 +session,1531,1,Internet Explorer 19,86,2016-08-28 +session,1531,2,Firefox 24,86,2017-02-05 +session,1531,3,Chrome 8,38,2019-01-31 +session,1531,4,Safari 32,80,2018-10-08 +user,1532,Retha,Raymon,47 +session,1532,0,Internet Explorer 14,42,2016-11-01 +session,1532,1,Chrome 14,119,2017-09-30 +session,1532,2,Safari 7,1,2016-11-23 +session,1532,3,Chrome 21,89,2019-01-16 +session,1532,4,Firefox 43,69,2019-01-20 +session,1532,5,Chrome 19,27,2016-09-09 +session,1532,6,Firefox 6,79,2016-06-19 +session,1532,7,Internet Explorer 10,49,2017-11-28 +session,1532,8,Chrome 46,10,2016-12-24 +session,1532,9,Firefox 48,26,2017-09-26 +user,1533,Dorathy,Gertie,6 +session,1533,0,Chrome 48,6,2016-09-27 +user,1534,Maryland,Nigel,31 +session,1534,0,Safari 22,11,2017-09-25 +session,1534,1,Safari 37,46,2016-10-16 +session,1534,2,Safari 2,15,2018-10-08 +session,1534,3,Firefox 1,15,2018-11-27 +session,1534,4,Safari 49,67,2017-05-09 +session,1534,5,Safari 26,19,2018-08-29 +session,1534,6,Chrome 15,66,2016-11-15 +session,1534,7,Internet Explorer 48,16,2017-04-03 +session,1534,8,Firefox 9,105,2018-03-31 +session,1534,9,Safari 21,23,2018-12-04 +user,1535,Wiley,Sage,27 +session,1535,0,Firefox 34,94,2016-09-23 +session,1535,1,Internet Explorer 43,99,2017-03-07 +session,1535,2,Internet Explorer 26,83,2017-04-12 +session,1535,3,Chrome 35,21,2017-06-04 +session,1535,4,Firefox 50,27,2018-11-17 +session,1535,5,Internet Explorer 42,57,2018-05-25 +session,1535,6,Internet Explorer 22,113,2017-12-05 +session,1535,7,Chrome 16,6,2017-04-05 +session,1535,8,Safari 50,48,2017-06-04 +user,1536,Heath,Frank,52 +session,1536,0,Safari 46,66,2017-05-19 +session,1536,1,Internet Explorer 8,90,2017-11-16 +session,1536,2,Safari 41,42,2018-01-30 +session,1536,3,Safari 35,12,2017-03-15 +session,1536,4,Firefox 36,22,2019-01-13 +session,1536,5,Firefox 16,47,2017-12-16 +session,1536,6,Internet Explorer 43,24,2017-03-02 +user,1537,Monte,Aleshia,68 +session,1537,0,Safari 4,25,2018-12-04 +user,1538,Deeanna,Chi,89 +session,1538,0,Firefox 38,50,2018-06-11 +session,1538,1,Chrome 24,106,2016-11-14 +session,1538,2,Chrome 28,40,2016-08-27 +session,1538,3,Chrome 27,11,2017-03-31 +session,1538,4,Firefox 18,63,2018-10-15 +session,1538,5,Firefox 21,103,2017-02-12 +session,1538,6,Safari 21,53,2016-09-14 +session,1538,7,Safari 21,59,2017-03-06 +session,1538,8,Firefox 13,25,2016-06-14 +user,1539,Kimiko,Danny,30 +session,1539,0,Chrome 15,55,2019-01-29 +session,1539,1,Firefox 23,60,2017-12-05 +session,1539,2,Chrome 42,24,2016-05-31 +session,1539,3,Chrome 43,35,2017-10-05 +session,1539,4,Chrome 10,81,2018-03-21 +user,1540,Rod,Damon,93 +session,1540,0,Firefox 32,47,2018-07-05 +session,1540,1,Internet Explorer 21,93,2016-11-14 +user,1541,Ahmed,Parker,69 +session,1541,0,Safari 1,35,2017-06-18 +session,1541,1,Internet Explorer 1,79,2016-09-16 +session,1541,2,Safari 4,93,2017-10-29 +session,1541,3,Internet Explorer 36,89,2018-10-13 +session,1541,4,Chrome 19,62,2018-07-30 +session,1541,5,Firefox 38,24,2017-03-13 +session,1541,6,Internet Explorer 15,74,2018-06-05 +session,1541,7,Firefox 10,84,2016-12-27 +session,1541,8,Firefox 3,84,2018-03-26 +session,1541,9,Safari 48,45,2018-07-18 +user,1542,Sunday,Devon,98 +session,1542,0,Internet Explorer 11,81,2018-07-06 +session,1542,1,Firefox 49,10,2016-11-06 +session,1542,2,Internet Explorer 13,5,2016-08-01 +session,1542,3,Chrome 48,106,2019-01-23 +session,1542,4,Internet Explorer 24,119,2017-08-11 +session,1542,5,Chrome 15,103,2016-08-06 +session,1542,6,Chrome 13,79,2016-10-08 +session,1542,7,Firefox 35,29,2016-06-07 +session,1542,8,Firefox 38,19,2016-07-16 +session,1542,9,Internet Explorer 36,13,2019-02-05 +user,1543,Hester,Rachele,20 +session,1543,0,Safari 31,19,2016-11-05 +session,1543,1,Safari 16,103,2017-03-22 +session,1543,2,Safari 35,109,2017-08-23 +user,1544,Hipolito,Nicolas,8 +session,1544,0,Safari 27,15,2017-05-03 +session,1544,1,Chrome 34,107,2018-09-27 +session,1544,2,Internet Explorer 50,9,2017-11-01 +session,1544,3,Firefox 35,6,2018-07-23 +session,1544,4,Safari 28,119,2016-11-25 +user,1545,Barrie,Shay,69 +session,1545,0,Internet Explorer 50,98,2016-08-02 +session,1545,1,Chrome 40,67,2019-02-08 +session,1545,2,Firefox 15,74,2018-12-12 +user,1546,Kip,Jayne,1 +session,1546,0,Firefox 16,57,2017-06-23 +session,1546,1,Firefox 32,108,2018-05-01 +session,1546,2,Safari 43,102,2018-08-18 +session,1546,3,Firefox 6,106,2016-09-28 +session,1546,4,Chrome 41,54,2018-03-09 +session,1546,5,Firefox 42,104,2017-12-15 +session,1546,6,Internet Explorer 46,41,2017-08-21 +session,1546,7,Safari 11,103,2017-01-07 +session,1546,8,Firefox 23,1,2017-06-13 +session,1546,9,Safari 29,77,2016-11-12 +user,1547,Bill,Fidel,55 +session,1547,0,Firefox 24,58,2016-07-27 +session,1547,1,Chrome 49,11,2017-09-25 +session,1547,2,Internet Explorer 19,84,2017-02-23 +user,1548,Jae,Ryan,96 +session,1548,0,Internet Explorer 13,79,2016-11-11 +user,1549,Josie,Sharda,99 +session,1549,0,Safari 46,10,2017-07-18 +session,1549,1,Chrome 17,25,2017-01-20 +session,1549,2,Chrome 30,104,2018-12-22 +session,1549,3,Chrome 7,119,2016-12-02 +session,1549,4,Internet Explorer 16,53,2017-09-28 +session,1549,5,Chrome 19,53,2017-01-29 +user,1550,Noma,Augustine,93 +session,1550,0,Firefox 27,109,2016-10-30 +session,1550,1,Firefox 19,74,2016-12-10 +session,1550,2,Safari 6,82,2017-07-26 +session,1550,3,Internet Explorer 9,21,2017-07-19 +session,1550,4,Safari 19,108,2016-06-18 +session,1550,5,Chrome 44,111,2016-06-13 +user,1551,Alena,Brandy,21 +session,1551,0,Safari 18,9,2018-12-18 +session,1551,1,Safari 1,103,2018-12-07 +session,1551,2,Safari 41,68,2017-11-09 +session,1551,3,Internet Explorer 34,92,2016-06-27 +session,1551,4,Internet Explorer 34,17,2017-02-16 +session,1551,5,Firefox 32,38,2017-04-21 +session,1551,6,Chrome 21,75,2017-02-18 +session,1551,7,Chrome 33,104,2018-01-15 +user,1552,Claudio,Numbers,23 +session,1552,0,Safari 16,107,2017-01-29 +session,1552,1,Chrome 14,115,2018-02-03 +session,1552,2,Firefox 12,107,2018-06-30 +session,1552,3,Chrome 48,92,2017-04-15 +session,1552,4,Chrome 49,26,2017-10-31 +session,1552,5,Safari 12,105,2018-01-10 +session,1552,6,Chrome 39,18,2019-01-19 +user,1553,Marty,Joeann,35 +session,1553,0,Firefox 24,21,2017-08-01 +session,1553,1,Firefox 34,119,2018-04-24 +session,1553,2,Firefox 24,109,2017-06-01 +session,1553,3,Chrome 48,97,2018-04-06 +session,1553,4,Internet Explorer 33,26,2017-05-31 +session,1553,5,Internet Explorer 23,11,2017-05-25 +session,1553,6,Internet Explorer 31,0,2017-08-04 +session,1553,7,Internet Explorer 46,21,2017-05-25 +session,1553,8,Firefox 24,54,2018-02-08 +session,1553,9,Chrome 20,112,2018-04-16 +user,1554,Valentine,Lore,87 +session,1554,0,Safari 44,0,2018-07-10 +session,1554,1,Chrome 15,82,2018-06-16 +session,1554,2,Chrome 47,102,2018-05-21 +user,1555,Jody,Columbus,62 +session,1555,0,Chrome 14,10,2017-01-23 +session,1555,1,Chrome 38,79,2018-04-12 +user,1556,Dane,Philomena,87 +session,1556,0,Firefox 42,112,2019-01-18 +session,1556,1,Safari 9,73,2018-08-19 +session,1556,2,Firefox 9,76,2018-06-29 +session,1556,3,Chrome 17,34,2017-06-17 +session,1556,4,Firefox 6,2,2018-11-03 +session,1556,5,Internet Explorer 30,36,2017-09-09 +session,1556,6,Safari 41,27,2016-08-05 +session,1556,7,Chrome 40,43,2016-08-07 +session,1556,8,Internet Explorer 8,46,2017-08-21 +session,1556,9,Safari 23,76,2019-01-16 +user,1557,Kelley,Arlene,96 +session,1557,0,Chrome 28,101,2016-10-31 +session,1557,1,Chrome 4,76,2017-09-03 +user,1558,Tory,Zina,79 +session,1558,0,Internet Explorer 3,83,2016-06-29 +session,1558,1,Chrome 2,35,2017-10-16 +session,1558,2,Firefox 7,104,2018-05-25 +user,1559,Oscar,Destiny,15 +session,1559,0,Internet Explorer 43,28,2019-01-21 +user,1560,Harry,Karina,95 +session,1560,0,Safari 47,59,2018-12-10 +user,1561,Elmer,Lidia,39 +session,1561,0,Firefox 46,70,2016-12-02 +user,1562,Kennith,Annamaria,96 +session,1562,0,Safari 1,11,2016-12-19 +session,1562,1,Firefox 42,56,2016-08-13 +session,1562,2,Safari 44,58,2017-11-15 +session,1562,3,Chrome 16,75,2017-03-29 +session,1562,4,Firefox 34,38,2016-09-17 +user,1563,Tracy,Marvel,66 +session,1563,0,Internet Explorer 47,110,2018-12-31 +session,1563,1,Internet Explorer 7,111,2018-09-22 +session,1563,2,Chrome 29,5,2019-01-08 +user,1564,Tiera,Carolin,15 +session,1564,0,Firefox 8,55,2018-04-02 +session,1564,1,Chrome 39,89,2017-04-05 +session,1564,2,Chrome 1,79,2017-07-12 +session,1564,3,Internet Explorer 4,97,2018-11-02 +session,1564,4,Safari 26,45,2018-02-01 +session,1564,5,Firefox 6,51,2016-06-29 +session,1564,6,Internet Explorer 1,39,2018-01-16 +session,1564,7,Firefox 8,19,2017-07-27 +session,1564,8,Chrome 4,10,2018-02-24 +session,1564,9,Chrome 2,69,2017-07-12 +user,1565,Kaycee,Althea,38 +session,1565,0,Internet Explorer 49,20,2019-01-24 +session,1565,1,Safari 31,79,2019-02-07 +session,1565,2,Chrome 32,38,2018-08-11 +session,1565,3,Chrome 43,62,2018-10-07 +session,1565,4,Chrome 2,25,2018-06-19 +session,1565,5,Internet Explorer 45,37,2018-10-13 +session,1565,6,Firefox 14,67,2017-06-19 +user,1566,Katherine,Benito,16 +session,1566,0,Firefox 15,41,2016-11-03 +user,1567,Steven,Harrison,34 +session,1567,0,Internet Explorer 13,66,2017-03-02 +session,1567,1,Firefox 17,41,2018-07-26 +session,1567,2,Internet Explorer 25,92,2018-10-12 +session,1567,3,Safari 5,86,2018-09-28 +session,1567,4,Chrome 5,3,2016-07-21 +session,1567,5,Firefox 49,101,2018-10-02 +session,1567,6,Internet Explorer 45,92,2018-11-27 +user,1568,Ty,Ami,79 +session,1568,0,Safari 28,61,2018-04-26 +user,1569,Gregory,Wilson,86 +session,1569,0,Safari 11,2,2017-06-02 +session,1569,1,Internet Explorer 18,89,2018-10-26 +session,1569,2,Chrome 13,32,2017-03-22 +session,1569,3,Firefox 28,43,2018-10-04 +session,1569,4,Safari 6,47,2017-02-01 +session,1569,5,Internet Explorer 26,30,2019-01-28 +session,1569,6,Firefox 36,100,2017-12-20 +user,1570,Claudio,Kimberely,33 +session,1570,0,Safari 2,1,2017-02-10 +session,1570,1,Firefox 45,105,2016-07-10 +user,1571,Leana,Melania,47 +session,1571,0,Safari 24,8,2018-08-02 +session,1571,1,Firefox 41,115,2017-08-20 +session,1571,2,Firefox 43,94,2018-08-24 +session,1571,3,Internet Explorer 17,23,2016-12-18 +user,1572,Antonio,Catalina,32 +session,1572,0,Chrome 9,67,2018-04-05 +session,1572,1,Safari 17,96,2018-10-18 +session,1572,2,Firefox 42,1,2018-09-25 +session,1572,3,Safari 23,34,2017-05-12 +user,1573,Sid,Regan,27 +session,1573,0,Internet Explorer 41,0,2019-02-02 +session,1573,1,Chrome 4,100,2018-06-13 +session,1573,2,Firefox 41,117,2018-07-18 +session,1573,3,Chrome 2,51,2016-11-14 +session,1573,4,Safari 38,84,2019-01-03 +session,1573,5,Firefox 40,86,2018-05-01 +session,1573,6,Internet Explorer 7,75,2018-03-18 +session,1573,7,Firefox 32,46,2017-05-15 +user,1574,Ruben,Fallon,1 +session,1574,0,Safari 42,104,2017-08-20 +session,1574,1,Internet Explorer 33,74,2018-11-28 +session,1574,2,Safari 38,90,2018-11-13 +session,1574,3,Firefox 5,89,2018-10-22 +session,1574,4,Chrome 43,83,2018-02-11 +session,1574,5,Safari 39,76,2018-06-17 +session,1574,6,Chrome 16,109,2018-08-09 +session,1574,7,Firefox 14,119,2018-09-04 +session,1574,8,Chrome 38,56,2016-11-08 +session,1574,9,Safari 6,2,2016-08-28 +user,1575,Willard,Dessie,67 +session,1575,0,Firefox 30,72,2017-12-04 +session,1575,1,Internet Explorer 10,25,2017-01-04 +user,1576,Timothy,Lyn,95 +session,1576,0,Safari 34,77,2016-10-17 +session,1576,1,Internet Explorer 40,24,2018-01-23 +user,1577,Yanira,Charlena,56 +session,1577,0,Internet Explorer 7,36,2016-10-26 +user,1578,Meagan,Jack,14 +session,1578,0,Firefox 27,14,2016-08-27 +session,1578,1,Internet Explorer 24,28,2018-09-10 +session,1578,2,Firefox 44,96,2017-03-06 +session,1578,3,Chrome 28,22,2017-06-23 +session,1578,4,Internet Explorer 48,88,2017-12-06 +user,1579,Casey,Gaynelle,9 +session,1579,0,Chrome 19,65,2018-12-12 +session,1579,1,Firefox 45,29,2018-11-09 +session,1579,2,Chrome 49,3,2017-05-16 +session,1579,3,Chrome 7,71,2017-02-27 +session,1579,4,Firefox 37,118,2018-06-23 +user,1580,Maryjo,Zelda,44 +session,1580,0,Internet Explorer 12,34,2018-12-13 +session,1580,1,Safari 37,64,2018-02-04 +user,1581,Alphonso,Scotty,57 +session,1581,0,Internet Explorer 14,23,2016-08-10 +session,1581,1,Firefox 46,61,2019-01-04 +user,1582,Cliff,Tomi,28 +session,1582,0,Chrome 9,75,2018-06-24 +session,1582,1,Internet Explorer 32,59,2016-07-19 +session,1582,2,Firefox 15,10,2017-12-22 +session,1582,3,Internet Explorer 10,1,2016-06-25 +session,1582,4,Firefox 6,48,2018-09-07 +session,1582,5,Firefox 1,98,2017-01-14 +session,1582,6,Firefox 39,81,2018-10-02 +session,1582,7,Internet Explorer 50,82,2017-01-15 +session,1582,8,Firefox 2,37,2018-07-27 +user,1583,Jewel,Jessenia,83 +session,1583,0,Firefox 37,93,2018-04-27 +session,1583,1,Internet Explorer 27,3,2018-04-07 +session,1583,2,Firefox 1,44,2018-11-18 +session,1583,3,Chrome 12,12,2016-08-06 +session,1583,4,Firefox 22,14,2016-07-15 +session,1583,5,Firefox 1,106,2017-04-14 +session,1583,6,Internet Explorer 7,83,2016-08-26 +session,1583,7,Firefox 10,119,2017-05-03 +session,1583,8,Chrome 12,109,2019-01-15 +session,1583,9,Chrome 24,40,2018-11-10 +user,1584,Lucy,Maryam,61 +session,1584,0,Safari 29,76,2016-11-26 +session,1584,1,Safari 47,11,2017-02-26 +session,1584,2,Firefox 2,80,2017-02-10 +session,1584,3,Chrome 44,71,2018-07-12 +session,1584,4,Firefox 3,90,2017-04-16 +session,1584,5,Chrome 12,95,2016-06-16 +session,1584,6,Safari 1,62,2016-07-30 +session,1584,7,Firefox 5,33,2016-07-15 +session,1584,8,Internet Explorer 40,20,2017-12-10 +user,1585,Esperanza,Rosetta,55 +session,1585,0,Chrome 48,71,2018-07-20 +session,1585,1,Chrome 29,106,2018-12-19 +session,1585,2,Safari 22,108,2018-01-01 +session,1585,3,Safari 35,79,2018-09-16 +user,1586,Dora,Roxana,63 +session,1586,0,Safari 16,60,2016-06-22 +session,1586,1,Firefox 7,93,2016-07-15 +session,1586,2,Firefox 2,80,2016-06-21 +session,1586,3,Safari 13,95,2016-07-27 +session,1586,4,Internet Explorer 32,46,2017-09-08 +user,1587,Micheal,Carolyne,16 +session,1587,0,Safari 42,107,2018-09-27 +session,1587,1,Chrome 21,4,2018-02-16 +session,1587,2,Chrome 3,109,2016-07-31 +session,1587,3,Firefox 46,34,2018-06-13 +session,1587,4,Chrome 49,37,2018-08-06 +session,1587,5,Internet Explorer 5,107,2018-12-21 +session,1587,6,Firefox 6,114,2018-05-31 +session,1587,7,Safari 29,56,2017-03-20 +session,1587,8,Chrome 41,8,2016-08-26 +session,1587,9,Safari 28,2,2018-01-09 +user,1588,Theo,Osvaldo,9 +session,1588,0,Chrome 43,48,2018-03-30 +session,1588,1,Safari 17,43,2016-11-23 +session,1588,2,Firefox 42,69,2017-10-02 +session,1588,3,Safari 42,30,2018-01-15 +session,1588,4,Chrome 48,78,2017-07-21 +session,1588,5,Firefox 3,30,2016-06-11 +session,1588,6,Internet Explorer 45,75,2016-06-23 +session,1588,7,Chrome 17,4,2017-10-17 +user,1589,Terri,Aretha,18 +session,1589,0,Internet Explorer 32,101,2018-12-12 +session,1589,1,Chrome 39,101,2016-12-11 +session,1589,2,Safari 43,67,2017-04-02 +session,1589,3,Chrome 27,39,2017-06-06 +session,1589,4,Firefox 43,73,2018-03-17 +user,1590,Afton,Arminda,52 +session,1590,0,Safari 9,11,2017-09-09 +session,1590,1,Internet Explorer 22,26,2016-09-19 +session,1590,2,Firefox 32,6,2016-07-22 +session,1590,3,Internet Explorer 7,80,2018-10-11 +session,1590,4,Firefox 35,67,2017-03-31 +session,1590,5,Firefox 20,18,2016-11-12 +session,1590,6,Safari 7,79,2017-10-24 +session,1590,7,Chrome 22,8,2018-08-28 +session,1590,8,Safari 12,68,2018-01-05 +user,1591,Alexis,Broderick,92 +session,1591,0,Chrome 2,75,2017-03-31 +session,1591,1,Safari 23,25,2018-02-24 +session,1591,2,Chrome 2,17,2017-12-09 +session,1591,3,Safari 49,84,2016-11-04 +session,1591,4,Safari 22,71,2018-08-29 +session,1591,5,Safari 44,97,2018-03-14 +session,1591,6,Internet Explorer 33,72,2019-01-07 +session,1591,7,Firefox 40,103,2018-08-01 +session,1591,8,Safari 15,83,2016-10-08 +session,1591,9,Firefox 22,9,2017-02-08 +user,1592,Josh,Evelynn,6 +session,1592,0,Safari 50,70,2018-03-11 +session,1592,1,Internet Explorer 48,21,2018-03-28 +session,1592,2,Chrome 40,108,2018-11-18 +session,1592,3,Safari 1,21,2018-03-27 +session,1592,4,Firefox 22,95,2017-03-20 +session,1592,5,Firefox 38,71,2018-11-22 +session,1592,6,Chrome 21,113,2018-05-26 +session,1592,7,Internet Explorer 14,34,2016-06-09 +session,1592,8,Firefox 33,22,2017-02-07 +user,1593,Duane,Willene,8 +session,1593,0,Internet Explorer 27,101,2017-01-06 +session,1593,1,Internet Explorer 38,63,2018-05-16 +session,1593,2,Safari 1,38,2016-10-16 +session,1593,3,Firefox 8,50,2016-10-02 +session,1593,4,Internet Explorer 13,70,2018-01-21 +session,1593,5,Chrome 42,110,2016-10-02 +session,1593,6,Safari 34,5,2016-10-30 +session,1593,7,Firefox 43,104,2018-07-09 +session,1593,8,Safari 21,43,2016-06-18 +session,1593,9,Chrome 47,76,2017-03-13 +user,1594,Eusebio,Katheleen,40 +session,1594,0,Chrome 44,14,2017-04-20 +session,1594,1,Safari 24,87,2017-02-05 +session,1594,2,Chrome 36,99,2017-11-04 +user,1595,Vanita,Mendy,63 +session,1595,0,Firefox 18,1,2018-04-22 +session,1595,1,Firefox 46,113,2018-07-16 +session,1595,2,Firefox 42,26,2018-09-23 +session,1595,3,Safari 10,72,2018-08-09 +session,1595,4,Chrome 21,75,2017-02-24 +session,1595,5,Firefox 26,69,2018-06-21 +session,1595,6,Firefox 24,31,2018-07-31 +user,1596,Henrietta,Jonnie,77 +session,1596,0,Firefox 48,77,2017-03-23 +session,1596,1,Safari 22,48,2016-10-16 +session,1596,2,Firefox 48,48,2019-02-01 +session,1596,3,Firefox 3,113,2017-08-07 +session,1596,4,Internet Explorer 48,103,2018-01-02 +user,1597,Billie,Danika,19 +session,1597,0,Firefox 25,105,2018-12-03 +user,1598,Arnoldo,Ileen,70 +session,1598,0,Firefox 47,38,2019-02-12 +user,1599,Jonas,Loyce,16 +session,1599,0,Firefox 17,104,2017-11-30 +session,1599,1,Firefox 36,42,2018-08-12 +session,1599,2,Internet Explorer 15,102,2017-06-19 +session,1599,3,Firefox 47,59,2016-06-07 +session,1599,4,Chrome 48,80,2018-01-26 +session,1599,5,Firefox 48,71,2016-08-14 +session,1599,6,Safari 25,12,2016-06-04 +session,1599,7,Chrome 18,100,2018-12-05 +user,1600,Angelo,Delsie,31 +session,1600,0,Safari 50,118,2018-12-15 +session,1600,1,Firefox 31,108,2016-06-28 +session,1600,2,Safari 49,29,2016-10-11 +session,1600,3,Internet Explorer 19,114,2017-06-05 +session,1600,4,Internet Explorer 20,10,2017-01-21 +session,1600,5,Chrome 18,60,2018-09-02 +session,1600,6,Safari 2,111,2018-02-18 +session,1600,7,Firefox 17,112,2018-07-01 +session,1600,8,Internet Explorer 35,75,2016-08-06 +session,1600,9,Internet Explorer 10,100,2017-01-01 +user,1601,Logan,Kristopher,50 +session,1601,0,Chrome 50,62,2018-02-19 +session,1601,1,Firefox 39,53,2017-09-07 +session,1601,2,Firefox 3,32,2019-01-30 +user,1602,Andrew,Corrine,22 +session,1602,0,Safari 27,86,2018-03-07 +session,1602,1,Chrome 26,110,2017-11-20 +session,1602,2,Firefox 5,103,2018-09-05 +session,1602,3,Firefox 34,26,2017-09-03 +session,1602,4,Chrome 27,43,2016-10-28 +session,1602,5,Internet Explorer 7,56,2017-02-13 +session,1602,6,Internet Explorer 10,40,2019-02-11 +user,1603,Adrien,Tony,46 +session,1603,0,Safari 22,57,2018-01-22 +session,1603,1,Safari 27,4,2018-11-22 +session,1603,2,Internet Explorer 50,57,2018-02-25 +session,1603,3,Firefox 39,5,2018-10-08 +session,1603,4,Internet Explorer 44,113,2017-06-21 +user,1604,Wallace,Riva,14 +session,1604,0,Internet Explorer 31,52,2016-12-18 +session,1604,1,Safari 20,83,2017-03-02 +session,1604,2,Safari 33,76,2017-06-27 +session,1604,3,Internet Explorer 37,97,2017-09-19 +session,1604,4,Firefox 10,1,2018-05-31 +session,1604,5,Internet Explorer 5,8,2017-08-04 +session,1604,6,Chrome 4,102,2018-04-06 +session,1604,7,Chrome 41,46,2018-07-07 +session,1604,8,Internet Explorer 19,103,2018-04-17 +user,1605,Barbara,Bernetta,49 +session,1605,0,Internet Explorer 15,70,2017-11-22 +session,1605,1,Safari 32,77,2017-03-30 +session,1605,2,Safari 46,17,2016-10-22 +session,1605,3,Internet Explorer 12,119,2018-11-20 +user,1606,Wendell,Charlesetta,93 +session,1606,0,Chrome 28,87,2018-11-15 +session,1606,1,Firefox 26,85,2018-11-20 +session,1606,2,Safari 27,88,2018-09-14 +session,1606,3,Safari 39,64,2018-09-05 +session,1606,4,Safari 32,48,2016-08-26 +session,1606,5,Safari 43,119,2016-10-06 +session,1606,6,Safari 19,4,2018-03-18 +session,1606,7,Internet Explorer 8,41,2017-07-24 +session,1606,8,Safari 12,88,2018-11-28 +user,1607,Lorrie,Charissa,21 +session,1607,0,Internet Explorer 33,17,2018-07-30 +session,1607,1,Safari 18,51,2019-01-18 +session,1607,2,Firefox 3,76,2016-10-29 +session,1607,3,Firefox 13,94,2018-10-22 +session,1607,4,Firefox 22,25,2016-12-18 +session,1607,5,Internet Explorer 20,14,2017-04-07 +user,1608,Wilbur,Shay,61 +session,1608,0,Chrome 36,104,2016-07-22 +session,1608,1,Internet Explorer 7,58,2018-05-23 +session,1608,2,Internet Explorer 11,76,2019-02-12 +session,1608,3,Chrome 28,40,2017-02-10 +session,1608,4,Safari 35,40,2018-04-14 +session,1608,5,Internet Explorer 36,107,2019-01-20 +session,1608,6,Chrome 14,60,2017-02-25 +session,1608,7,Safari 50,98,2018-07-24 +user,1609,Shondra,Robbie,64 +session,1609,0,Chrome 20,107,2016-06-13 +session,1609,1,Internet Explorer 1,96,2017-02-17 +session,1609,2,Firefox 35,57,2016-12-16 +session,1609,3,Internet Explorer 6,62,2016-07-01 +session,1609,4,Internet Explorer 22,35,2017-01-14 +session,1609,5,Safari 11,34,2016-07-31 +session,1609,6,Chrome 12,42,2018-01-09 +session,1609,7,Firefox 50,59,2017-06-23 +session,1609,8,Safari 4,41,2016-07-20 +user,1610,Lamar,Bart,22 +session,1610,0,Internet Explorer 30,67,2018-02-01 +session,1610,1,Internet Explorer 5,105,2017-03-28 +session,1610,2,Firefox 21,5,2018-03-05 +session,1610,3,Safari 12,88,2017-10-31 +session,1610,4,Firefox 6,119,2017-08-10 +session,1610,5,Firefox 26,15,2019-02-07 +session,1610,6,Internet Explorer 43,78,2018-08-09 +session,1610,7,Safari 30,11,2018-08-31 +session,1610,8,Firefox 30,45,2017-04-17 +user,1611,Madelaine,Beverlee,75 +session,1611,0,Safari 34,104,2017-02-08 +session,1611,1,Firefox 7,11,2017-12-05 +session,1611,2,Safari 20,79,2018-11-22 +session,1611,3,Safari 1,114,2018-12-06 +session,1611,4,Chrome 45,108,2018-05-19 +session,1611,5,Internet Explorer 7,94,2018-01-09 +session,1611,6,Internet Explorer 3,47,2019-01-19 +session,1611,7,Firefox 32,108,2017-05-13 +user,1612,Donnie,Vernie,84 +session,1612,0,Internet Explorer 12,25,2017-08-31 +session,1612,1,Internet Explorer 18,15,2018-08-24 +user,1613,Christia,Viviana,13 +session,1613,0,Chrome 8,49,2017-07-21 +session,1613,1,Safari 33,70,2017-12-16 +session,1613,2,Internet Explorer 4,88,2016-10-05 +session,1613,3,Chrome 21,72,2018-11-13 +session,1613,4,Safari 32,0,2017-07-25 +user,1614,Ferdinand,Marinda,3 +session,1614,0,Chrome 24,55,2018-02-06 +session,1614,1,Safari 31,116,2016-10-28 +session,1614,2,Chrome 4,79,2016-07-20 +user,1615,Autumn,Nakia,7 +session,1615,0,Chrome 41,31,2016-10-20 +session,1615,1,Safari 15,52,2017-07-27 +session,1615,2,Safari 46,36,2017-08-04 +session,1615,3,Internet Explorer 9,26,2018-02-08 +user,1616,Werner,Thresa,96 +session,1616,0,Safari 12,110,2018-03-03 +user,1617,Dexter,Nicki,67 +session,1617,0,Chrome 8,116,2018-10-11 +session,1617,1,Internet Explorer 17,35,2018-09-26 +session,1617,2,Chrome 34,49,2018-05-08 +session,1617,3,Firefox 21,74,2018-12-10 +session,1617,4,Safari 38,87,2019-01-07 +session,1617,5,Chrome 31,40,2017-08-31 +session,1617,6,Chrome 5,58,2017-06-12 +user,1618,Desmond,Tomi,54 +session,1618,0,Safari 22,85,2016-11-16 +session,1618,1,Internet Explorer 6,47,2017-08-21 +session,1618,2,Safari 15,16,2017-06-29 +session,1618,3,Internet Explorer 16,44,2016-07-10 +session,1618,4,Internet Explorer 30,31,2018-11-21 +session,1618,5,Safari 15,28,2019-01-04 +user,1619,Oscar,Murray,69 +session,1619,0,Chrome 8,54,2018-07-29 +session,1619,1,Internet Explorer 50,28,2017-12-12 +session,1619,2,Chrome 50,16,2016-07-03 +user,1620,Edmundo,Lonnie,42 +session,1620,0,Chrome 12,86,2016-06-28 +session,1620,1,Safari 36,22,2016-08-31 +session,1620,2,Chrome 41,46,2016-09-28 +session,1620,3,Internet Explorer 35,71,2016-11-06 +session,1620,4,Firefox 13,96,2016-06-02 +user,1621,Myra,Augustina,81 +session,1621,0,Safari 39,47,2018-11-06 +session,1621,1,Firefox 26,87,2016-07-20 +session,1621,2,Firefox 21,32,2018-03-02 +session,1621,3,Firefox 46,63,2016-10-18 +session,1621,4,Chrome 8,107,2016-07-03 +session,1621,5,Chrome 6,85,2016-08-12 +session,1621,6,Chrome 28,105,2016-08-12 +session,1621,7,Internet Explorer 34,54,2017-01-28 +session,1621,8,Firefox 32,67,2019-01-29 +user,1622,Margart,Antonio,51 +session,1622,0,Safari 34,115,2017-09-16 +session,1622,1,Chrome 2,103,2016-10-13 +user,1623,Anette,Malinda,32 +session,1623,0,Chrome 17,77,2017-01-15 +session,1623,1,Firefox 3,4,2018-02-28 +session,1623,2,Firefox 39,61,2018-10-26 +session,1623,3,Internet Explorer 6,88,2017-12-23 +session,1623,4,Firefox 44,85,2017-05-26 +session,1623,5,Internet Explorer 35,98,2018-06-01 +session,1623,6,Firefox 41,23,2017-02-24 +session,1623,7,Safari 29,31,2016-11-14 +user,1624,Carlton,Shakita,5 +session,1624,0,Chrome 44,63,2016-11-21 +session,1624,1,Chrome 40,42,2017-07-12 +session,1624,2,Firefox 9,19,2017-04-12 +session,1624,3,Internet Explorer 14,89,2018-04-23 +session,1624,4,Internet Explorer 35,51,2016-06-13 +session,1624,5,Chrome 50,108,2018-09-04 +session,1624,6,Firefox 29,3,2018-04-10 +session,1624,7,Firefox 43,92,2018-05-30 +session,1624,8,Chrome 7,19,2017-09-15 +session,1624,9,Safari 39,118,2017-08-13 +user,1625,Jake,Hyacinth,47 +session,1625,0,Chrome 22,6,2017-10-09 +session,1625,1,Internet Explorer 37,20,2018-06-11 +session,1625,2,Firefox 10,19,2017-03-16 +session,1625,3,Internet Explorer 27,109,2016-12-06 +session,1625,4,Safari 50,14,2019-02-09 +session,1625,5,Chrome 38,20,2017-09-11 +session,1625,6,Firefox 22,45,2016-12-30 +session,1625,7,Internet Explorer 41,92,2016-11-02 +user,1626,Xuan,Ji,26 +session,1626,0,Firefox 46,52,2016-11-03 +session,1626,1,Chrome 28,99,2018-08-23 +session,1626,2,Chrome 17,30,2017-11-23 +session,1626,3,Internet Explorer 30,117,2016-06-13 +session,1626,4,Firefox 33,59,2017-01-03 +user,1627,Matthew,Kathryne,55 +session,1627,0,Safari 37,8,2017-09-27 +user,1628,Saul,Collette,62 +session,1628,0,Safari 34,39,2018-08-30 +session,1628,1,Firefox 36,21,2016-07-14 +session,1628,2,Chrome 12,57,2018-10-25 +session,1628,3,Safari 8,26,2017-06-03 +user,1629,Val,Zelma,42 +session,1629,0,Chrome 13,87,2018-06-12 +session,1629,1,Chrome 22,70,2018-04-08 +session,1629,2,Internet Explorer 28,84,2016-06-23 +user,1630,Harrison,Amparo,35 +session,1630,0,Safari 16,10,2018-06-04 +user,1631,Ladonna,Cassi,18 +session,1631,0,Firefox 1,114,2018-06-10 +session,1631,1,Internet Explorer 44,98,2018-10-06 +user,1632,Alden,Lakeesha,70 +session,1632,0,Internet Explorer 38,24,2017-09-09 +session,1632,1,Internet Explorer 4,34,2017-09-27 +user,1633,Lorilee,Marylee,32 +session,1633,0,Firefox 18,87,2017-05-02 +session,1633,1,Chrome 49,98,2018-12-13 +session,1633,2,Chrome 34,97,2017-09-14 +session,1633,3,Safari 46,42,2018-01-06 +session,1633,4,Internet Explorer 35,105,2019-02-07 +session,1633,5,Safari 10,16,2017-02-06 +session,1633,6,Firefox 31,72,2017-10-28 +user,1634,Willard,Dakota,57 +session,1634,0,Firefox 6,33,2017-09-15 +session,1634,1,Internet Explorer 26,114,2017-12-02 +session,1634,2,Firefox 29,7,2019-02-07 +session,1634,3,Chrome 19,66,2016-12-10 +session,1634,4,Firefox 36,42,2017-01-21 +session,1634,5,Safari 25,33,2018-11-19 +session,1634,6,Internet Explorer 47,14,2018-12-29 +session,1634,7,Safari 27,91,2018-07-14 +session,1634,8,Internet Explorer 31,55,2018-03-09 +user,1635,Jamal,Venita,57 +session,1635,0,Chrome 28,42,2018-12-18 +session,1635,1,Chrome 20,9,2017-11-27 +session,1635,2,Safari 18,86,2016-10-13 +user,1636,Katie,Leo,66 +session,1636,0,Internet Explorer 46,88,2016-11-05 +session,1636,1,Internet Explorer 45,90,2016-08-19 +session,1636,2,Safari 37,7,2016-12-05 +session,1636,3,Safari 28,103,2017-04-17 +user,1637,Sydney,Jonas,1 +session,1637,0,Firefox 46,18,2018-07-24 +user,1638,Vasiliki,Jonathon,64 +session,1638,0,Firefox 22,119,2016-05-25 +session,1638,1,Internet Explorer 48,118,2016-12-04 +user,1639,Jona,Wesley,40 +session,1639,0,Internet Explorer 9,89,2018-09-16 +session,1639,1,Safari 10,112,2017-07-18 +session,1639,2,Firefox 48,63,2018-04-06 +session,1639,3,Safari 32,110,2018-07-23 +session,1639,4,Firefox 5,60,2017-05-04 +session,1639,5,Safari 35,116,2016-10-30 +session,1639,6,Safari 7,64,2018-08-03 +session,1639,7,Firefox 15,48,2017-11-09 +session,1639,8,Safari 18,98,2016-08-05 +user,1640,Huong,Lamont,16 +session,1640,0,Internet Explorer 7,44,2017-02-13 +user,1641,Isaias,Nilsa,56 +session,1641,0,Internet Explorer 9,56,2018-01-05 +session,1641,1,Safari 20,94,2017-10-06 +user,1642,Kourtney,Ivonne,70 +session,1642,0,Internet Explorer 43,44,2019-01-13 +session,1642,1,Safari 38,87,2018-04-10 +session,1642,2,Firefox 16,41,2017-01-17 +session,1642,3,Firefox 40,65,2018-02-10 +session,1642,4,Safari 34,60,2016-07-17 +session,1642,5,Firefox 6,23,2016-10-05 +session,1642,6,Firefox 24,44,2017-10-08 +session,1642,7,Internet Explorer 40,6,2019-01-13 +session,1642,8,Safari 39,117,2016-10-22 +session,1642,9,Internet Explorer 38,20,2016-06-15 +user,1643,Dania,Gaylene,48 +session,1643,0,Internet Explorer 13,41,2018-12-03 +session,1643,1,Firefox 18,92,2018-08-10 +session,1643,2,Safari 28,85,2017-02-18 +session,1643,3,Chrome 47,76,2018-05-15 +session,1643,4,Chrome 25,38,2017-06-05 +user,1644,Hilario,Bailey,41 +session,1644,0,Firefox 36,40,2018-11-09 +session,1644,1,Chrome 38,116,2017-10-15 +session,1644,2,Chrome 28,14,2018-06-03 +session,1644,3,Firefox 38,14,2018-05-10 +user,1645,Kaycee,Nidia,8 +session,1645,0,Safari 18,8,2018-05-07 +session,1645,1,Chrome 41,117,2018-01-29 +session,1645,2,Chrome 50,25,2016-08-09 +session,1645,3,Internet Explorer 6,92,2017-07-02 +session,1645,4,Firefox 30,88,2017-04-06 +session,1645,5,Safari 41,20,2017-09-03 +session,1645,6,Internet Explorer 40,95,2019-02-10 +user,1646,Treva,Sandra,23 +session,1646,0,Safari 30,117,2018-06-05 +user,1647,Denny,Collin,20 +session,1647,0,Chrome 47,10,2019-01-13 +session,1647,1,Chrome 43,50,2018-03-07 +user,1648,Nicki,Ocie,81 +session,1648,0,Chrome 13,72,2019-01-04 +session,1648,1,Firefox 28,103,2018-08-11 +session,1648,2,Safari 19,11,2018-08-20 +session,1648,3,Chrome 17,58,2017-04-01 +session,1648,4,Safari 48,65,2018-12-08 +session,1648,5,Internet Explorer 17,66,2016-07-28 +session,1648,6,Internet Explorer 42,95,2018-01-07 +session,1648,7,Firefox 19,67,2017-09-14 +session,1648,8,Chrome 12,105,2016-12-19 +session,1648,9,Internet Explorer 5,48,2018-04-17 +user,1649,Marvin,Scot,97 +session,1649,0,Safari 41,98,2018-02-03 +session,1649,1,Firefox 19,34,2017-02-28 +session,1649,2,Safari 9,65,2018-06-08 +session,1649,3,Internet Explorer 8,97,2017-04-08 +session,1649,4,Firefox 32,37,2017-09-07 +session,1649,5,Internet Explorer 49,14,2018-06-14 +session,1649,6,Firefox 45,77,2016-11-17 +session,1649,7,Firefox 38,69,2017-08-18 +session,1649,8,Safari 10,68,2016-08-20 +user,1650,Freeman,Ryan,65 +session,1650,0,Safari 46,77,2018-01-20 +session,1650,1,Firefox 49,50,2018-08-16 +user,1651,Luciano,Francis,35 +session,1651,0,Chrome 10,63,2017-01-06 +session,1651,1,Safari 17,63,2018-09-12 +session,1651,2,Firefox 4,3,2018-12-10 +session,1651,3,Firefox 17,22,2017-01-16 +session,1651,4,Internet Explorer 29,87,2018-11-25 +session,1651,5,Chrome 19,19,2016-07-13 +session,1651,6,Safari 30,6,2017-12-21 +user,1652,Petrina,Adolfo,81 +session,1652,0,Safari 12,117,2017-05-23 +session,1652,1,Firefox 9,28,2017-06-09 +session,1652,2,Chrome 31,62,2018-05-19 +session,1652,3,Safari 25,115,2017-08-27 +session,1652,4,Internet Explorer 7,89,2016-08-22 +user,1653,Trudie,Jene,60 +session,1653,0,Firefox 35,43,2016-06-28 +session,1653,1,Chrome 3,45,2016-08-01 +user,1654,Tiffiny,Alberta,24 +session,1654,0,Safari 12,95,2018-12-11 +session,1654,1,Firefox 37,10,2019-01-08 +session,1654,2,Safari 29,56,2017-05-02 +session,1654,3,Safari 47,18,2016-11-05 +user,1655,Wynell,Maryanne,36 +session,1655,0,Internet Explorer 11,79,2018-04-18 +user,1656,Denis,Kim,55 +session,1656,0,Chrome 11,59,2016-07-18 +session,1656,1,Internet Explorer 49,37,2017-11-24 +session,1656,2,Internet Explorer 27,72,2017-03-08 +session,1656,3,Firefox 14,49,2017-12-07 +session,1656,4,Safari 6,73,2018-10-14 +user,1657,Benny,Mohammed,79 +session,1657,0,Firefox 4,101,2017-07-19 +session,1657,1,Safari 23,42,2016-11-06 +session,1657,2,Chrome 48,72,2018-08-08 +session,1657,3,Internet Explorer 44,46,2017-10-22 +session,1657,4,Chrome 18,8,2016-06-22 +session,1657,5,Firefox 31,107,2017-03-03 +session,1657,6,Chrome 6,70,2018-03-08 +user,1658,Lida,Dione,9 +session,1658,0,Safari 28,84,2018-01-21 +user,1659,Raymon,Lonnie,89 +session,1659,0,Chrome 29,113,2018-06-19 +session,1659,1,Firefox 20,111,2018-05-28 +session,1659,2,Firefox 5,91,2018-08-13 +session,1659,3,Internet Explorer 50,24,2016-11-07 +session,1659,4,Safari 24,25,2017-12-01 +user,1660,Guadalupe,Maira,93 +session,1660,0,Internet Explorer 40,14,2016-11-01 +session,1660,1,Firefox 43,13,2017-07-02 +session,1660,2,Internet Explorer 18,59,2016-12-21 +session,1660,3,Safari 1,54,2016-10-07 +session,1660,4,Safari 27,90,2017-01-30 +user,1661,Hiram,Daryl,48 +session,1661,0,Chrome 8,27,2016-11-11 +session,1661,1,Firefox 39,95,2016-09-17 +session,1661,2,Firefox 9,22,2016-06-02 +session,1661,3,Firefox 29,23,2017-08-30 +session,1661,4,Firefox 16,62,2018-03-24 +user,1662,Ute,Regine,4 +session,1662,0,Chrome 16,48,2016-11-17 +session,1662,1,Safari 3,37,2018-09-26 +session,1662,2,Internet Explorer 50,63,2018-05-23 +session,1662,3,Safari 50,19,2018-02-26 +user,1663,Dorine,Hui,85 +session,1663,0,Internet Explorer 30,27,2018-07-20 +session,1663,1,Safari 34,57,2017-07-31 +user,1664,Arron,Ethel,32 +session,1664,0,Safari 45,44,2017-07-24 +session,1664,1,Chrome 31,79,2018-08-24 +session,1664,2,Internet Explorer 10,90,2017-02-18 +session,1664,3,Internet Explorer 14,32,2017-09-24 +session,1664,4,Chrome 32,36,2017-02-17 +session,1664,5,Chrome 2,2,2017-01-13 +session,1664,6,Safari 12,16,2017-04-17 +session,1664,7,Safari 12,112,2016-08-11 +session,1664,8,Firefox 12,95,2017-01-26 +user,1665,Lucas,Mildred,5 +session,1665,0,Safari 14,104,2017-11-06 +session,1665,1,Firefox 22,37,2017-12-27 +session,1665,2,Firefox 10,109,2016-11-07 +user,1666,Malena,Jeromy,94 +session,1666,0,Chrome 39,95,2018-10-10 +session,1666,1,Safari 6,35,2018-07-27 +session,1666,2,Firefox 49,47,2017-09-05 +session,1666,3,Internet Explorer 5,85,2017-03-30 +session,1666,4,Chrome 44,112,2017-10-29 +session,1666,5,Internet Explorer 46,95,2017-07-16 +session,1666,6,Internet Explorer 31,53,2018-04-07 +session,1666,7,Chrome 39,110,2017-10-08 +user,1667,Coleman,Kristin,97 +session,1667,0,Internet Explorer 37,12,2017-06-10 +user,1668,Timmy,Jessika,99 +session,1668,0,Firefox 17,105,2016-06-06 +session,1668,1,Chrome 26,13,2018-03-14 +session,1668,2,Internet Explorer 15,92,2016-10-27 +user,1669,Danial,Theron,36 +session,1669,0,Safari 2,113,2017-03-13 +session,1669,1,Chrome 14,69,2017-05-17 +user,1670,Pilar,Gilma,30 +session,1670,0,Firefox 46,0,2018-08-08 +session,1670,1,Firefox 48,114,2018-06-03 +session,1670,2,Safari 35,88,2017-11-26 +session,1670,3,Internet Explorer 13,27,2018-03-08 +session,1670,4,Safari 45,119,2017-07-29 +session,1670,5,Firefox 43,38,2018-11-26 +session,1670,6,Firefox 23,66,2018-06-30 +session,1670,7,Safari 37,94,2017-06-08 +session,1670,8,Firefox 36,61,2016-12-19 +session,1670,9,Chrome 49,15,2017-07-28 +user,1671,Abby,Amalia,65 +session,1671,0,Firefox 12,56,2018-09-24 +session,1671,1,Internet Explorer 12,24,2018-10-04 +session,1671,2,Safari 8,43,2018-06-29 +session,1671,3,Chrome 18,15,2018-10-11 +session,1671,4,Firefox 12,10,2017-02-07 +session,1671,5,Chrome 12,46,2016-10-07 +session,1671,6,Chrome 19,76,2018-08-07 +session,1671,7,Firefox 47,35,2017-07-08 +user,1672,Kip,Felipe,4 +session,1672,0,Safari 35,18,2016-12-08 +session,1672,1,Safari 15,65,2018-09-26 +session,1672,2,Firefox 23,74,2017-12-05 +session,1672,3,Internet Explorer 5,93,2017-05-18 +session,1672,4,Safari 33,75,2018-08-02 +session,1672,5,Safari 35,66,2017-08-03 +user,1673,Ryan,Gregg,1 +session,1673,0,Firefox 10,71,2018-03-26 +user,1674,Masako,Ronald,29 +session,1674,0,Internet Explorer 6,113,2016-08-26 +session,1674,1,Internet Explorer 10,57,2016-10-17 +session,1674,2,Internet Explorer 32,9,2016-07-28 +session,1674,3,Internet Explorer 23,29,2017-07-11 +session,1674,4,Internet Explorer 23,44,2017-07-04 +session,1674,5,Firefox 5,116,2017-10-27 +user,1675,Graciela,Cherie,0 +session,1675,0,Chrome 14,75,2016-12-17 +session,1675,1,Firefox 6,19,2016-08-25 +session,1675,2,Internet Explorer 11,47,2016-08-27 +session,1675,3,Internet Explorer 26,100,2018-06-13 +session,1675,4,Chrome 11,61,2017-10-20 +session,1675,5,Internet Explorer 5,75,2016-06-17 +user,1676,Qiana,Rossana,72 +session,1676,0,Internet Explorer 15,21,2016-09-26 +session,1676,1,Safari 33,113,2018-10-11 +session,1676,2,Chrome 14,8,2017-12-31 +session,1676,3,Firefox 42,44,2018-05-14 +session,1676,4,Firefox 14,53,2018-01-10 +session,1676,5,Chrome 18,93,2017-10-04 +session,1676,6,Safari 46,74,2016-05-24 +session,1676,7,Internet Explorer 42,76,2017-02-02 +session,1676,8,Firefox 35,38,2017-05-25 +user,1677,Bryan,Andrea,69 +session,1677,0,Internet Explorer 7,26,2016-06-29 +session,1677,1,Safari 20,98,2017-03-14 +session,1677,2,Internet Explorer 42,108,2018-09-25 +session,1677,3,Chrome 45,34,2016-09-30 +session,1677,4,Internet Explorer 5,114,2018-08-18 +user,1678,Archie,Marylou,22 +session,1678,0,Chrome 34,40,2018-12-20 +session,1678,1,Chrome 27,100,2018-05-22 +session,1678,2,Internet Explorer 10,2,2017-03-07 +session,1678,3,Chrome 19,65,2016-08-30 +session,1678,4,Firefox 5,5,2018-11-26 +session,1678,5,Internet Explorer 34,22,2017-08-25 +session,1678,6,Firefox 8,97,2018-11-28 +session,1678,7,Safari 37,61,2018-10-24 +user,1679,Blake,Ron,82 +session,1679,0,Safari 22,9,2016-08-23 +session,1679,1,Internet Explorer 31,97,2017-07-08 +session,1679,2,Chrome 40,89,2017-05-14 +session,1679,3,Internet Explorer 28,103,2018-07-11 +session,1679,4,Chrome 13,45,2016-08-10 +session,1679,5,Safari 29,52,2018-05-29 +user,1680,Roselee,Christopher,10 +session,1680,0,Safari 29,88,2017-04-21 +session,1680,1,Firefox 21,1,2018-12-03 +session,1680,2,Chrome 20,96,2016-09-20 +session,1680,3,Safari 9,75,2016-07-19 +user,1681,Deanne,Betsey,55 +session,1681,0,Chrome 29,78,2017-07-21 +session,1681,1,Safari 43,81,2018-01-13 +session,1681,2,Firefox 45,9,2018-02-11 +user,1682,Alyse,Robbin,13 +session,1682,0,Internet Explorer 24,36,2018-08-29 +session,1682,1,Firefox 12,65,2017-02-09 +session,1682,2,Chrome 48,76,2017-08-29 +session,1682,3,Internet Explorer 1,24,2018-09-19 +session,1682,4,Internet Explorer 35,97,2016-06-07 +session,1682,5,Internet Explorer 36,1,2017-04-13 +session,1682,6,Firefox 38,36,2017-07-11 +session,1682,7,Safari 13,79,2018-02-12 +session,1682,8,Safari 31,113,2016-08-09 +session,1682,9,Firefox 13,93,2018-05-03 +user,1683,Marvel,Alisia,49 +session,1683,0,Internet Explorer 11,33,2018-09-01 +session,1683,1,Firefox 8,36,2017-12-28 +session,1683,2,Chrome 50,98,2017-08-29 +session,1683,3,Internet Explorer 40,110,2018-03-08 +session,1683,4,Chrome 8,71,2018-07-20 +session,1683,5,Safari 42,74,2017-01-20 +session,1683,6,Safari 21,40,2016-07-10 +session,1683,7,Firefox 25,85,2016-08-16 +session,1683,8,Firefox 17,0,2018-03-02 +user,1684,Raymond,Sherise,32 +session,1684,0,Chrome 13,52,2017-11-10 +session,1684,1,Safari 43,13,2017-01-01 +session,1684,2,Firefox 24,43,2018-06-05 +user,1685,Loralee,Man,73 +session,1685,0,Safari 6,35,2018-08-27 +session,1685,1,Firefox 40,85,2016-11-25 +session,1685,2,Safari 1,16,2018-02-17 +session,1685,3,Chrome 50,1,2016-09-17 +session,1685,4,Safari 4,6,2018-04-10 +session,1685,5,Safari 43,48,2018-05-20 +session,1685,6,Internet Explorer 50,107,2018-04-18 +session,1685,7,Firefox 42,60,2016-12-13 +session,1685,8,Safari 7,49,2018-08-10 +user,1686,Azalee,Therese,55 +session,1686,0,Internet Explorer 24,28,2018-03-05 +session,1686,1,Internet Explorer 2,71,2017-09-05 +session,1686,2,Firefox 44,51,2018-01-22 +session,1686,3,Chrome 11,52,2017-08-07 +user,1687,Bernardina,Dawna,66 +session,1687,0,Chrome 39,4,2018-08-20 +session,1687,1,Internet Explorer 21,96,2017-01-26 +user,1688,Brock,Micki,8 +session,1688,0,Safari 17,98,2018-03-30 +session,1688,1,Chrome 47,24,2017-04-11 +user,1689,Lovella,Garret,26 +session,1689,0,Firefox 24,62,2017-11-20 +session,1689,1,Chrome 26,107,2017-10-15 +session,1689,2,Chrome 14,28,2016-06-04 +session,1689,3,Safari 46,103,2017-05-24 +session,1689,4,Chrome 39,87,2017-04-08 +session,1689,5,Internet Explorer 29,57,2016-10-19 +session,1689,6,Chrome 20,50,2016-12-28 +session,1689,7,Chrome 4,0,2017-02-14 +user,1690,Sherly,Ellis,72 +session,1690,0,Safari 34,90,2017-06-08 +session,1690,1,Internet Explorer 17,101,2017-04-25 +session,1690,2,Firefox 49,27,2017-11-02 +user,1691,Rigoberto,Jess,82 +session,1691,0,Safari 50,79,2017-02-24 +session,1691,1,Internet Explorer 31,86,2018-07-13 +session,1691,2,Safari 30,11,2017-08-07 +session,1691,3,Chrome 41,5,2016-10-22 +session,1691,4,Internet Explorer 26,96,2016-10-11 +session,1691,5,Firefox 39,47,2018-07-27 +user,1692,Margarette,Tyree,49 +session,1692,0,Safari 35,17,2016-08-29 +session,1692,1,Internet Explorer 36,99,2016-05-22 +session,1692,2,Safari 7,67,2018-04-05 +session,1692,3,Firefox 32,104,2016-08-30 +session,1692,4,Internet Explorer 34,31,2017-02-16 +session,1692,5,Firefox 34,92,2016-11-28 +session,1692,6,Internet Explorer 42,103,2018-08-20 +session,1692,7,Chrome 15,91,2017-09-01 +session,1692,8,Internet Explorer 27,63,2017-10-26 +session,1692,9,Safari 48,12,2017-10-21 +user,1693,Bobby,Domonique,37 +session,1693,0,Chrome 7,38,2017-01-04 +session,1693,1,Firefox 15,5,2018-06-01 +session,1693,2,Internet Explorer 36,111,2018-10-09 +session,1693,3,Safari 9,12,2016-06-15 +session,1693,4,Internet Explorer 15,92,2017-05-01 +session,1693,5,Firefox 39,18,2018-09-11 +user,1694,Alec,Dion,29 +session,1694,0,Internet Explorer 27,100,2018-11-19 +session,1694,1,Chrome 11,46,2018-06-16 +session,1694,2,Internet Explorer 50,109,2018-12-31 +user,1695,Fabiola,Hester,95 +session,1695,0,Chrome 36,91,2017-03-26 +session,1695,1,Internet Explorer 18,49,2018-01-07 +session,1695,2,Internet Explorer 44,17,2017-10-09 +session,1695,3,Safari 22,100,2016-07-15 +session,1695,4,Safari 17,67,2018-05-23 +session,1695,5,Firefox 26,100,2019-02-12 +session,1695,6,Internet Explorer 42,101,2018-06-23 +session,1695,7,Safari 21,39,2017-12-19 +user,1696,Lamont,Roy,6 +session,1696,0,Firefox 4,117,2018-05-29 +session,1696,1,Internet Explorer 4,58,2017-06-08 +session,1696,2,Firefox 50,16,2018-08-07 +session,1696,3,Firefox 44,85,2019-01-16 +session,1696,4,Firefox 26,18,2018-10-15 +session,1696,5,Safari 22,110,2017-08-31 +user,1697,Stanton,Evangeline,83 +session,1697,0,Internet Explorer 27,61,2018-11-30 +session,1697,1,Internet Explorer 30,66,2018-01-18 +session,1697,2,Internet Explorer 21,0,2017-12-15 +session,1697,3,Internet Explorer 33,119,2016-05-20 +session,1697,4,Chrome 24,86,2016-10-26 +session,1697,5,Firefox 13,18,2018-10-13 +session,1697,6,Safari 48,15,2018-01-20 +session,1697,7,Internet Explorer 26,80,2017-09-01 +user,1698,Salvador,Suzann,89 +session,1698,0,Chrome 16,74,2018-12-27 +session,1698,1,Firefox 35,30,2017-07-13 +session,1698,2,Firefox 41,104,2018-01-13 +session,1698,3,Safari 44,68,2017-04-01 +session,1698,4,Internet Explorer 9,77,2018-09-13 +session,1698,5,Internet Explorer 12,39,2016-10-10 +session,1698,6,Firefox 8,32,2017-06-03 +session,1698,7,Internet Explorer 26,108,2018-03-08 +session,1698,8,Chrome 49,35,2017-05-17 +session,1698,9,Chrome 39,49,2016-08-18 +user,1699,Carmine,Marge,48 +session,1699,0,Chrome 31,1,2016-11-05 +session,1699,1,Firefox 21,59,2018-09-14 +session,1699,2,Internet Explorer 41,86,2017-11-03 +session,1699,3,Chrome 49,104,2018-06-10 +session,1699,4,Firefox 5,13,2017-09-27 +session,1699,5,Safari 49,60,2018-11-16 +session,1699,6,Chrome 25,114,2016-10-19 +session,1699,7,Chrome 21,92,2017-04-11 +session,1699,8,Firefox 10,46,2017-03-01 +session,1699,9,Internet Explorer 42,115,2016-06-09 +user,1700,Henry,Jeannine,48 +session,1700,0,Firefox 2,50,2017-02-26 +session,1700,1,Safari 33,43,2016-12-24 +session,1700,2,Internet Explorer 29,40,2017-10-04 +session,1700,3,Chrome 9,40,2016-05-25 +session,1700,4,Internet Explorer 15,112,2018-03-08 +session,1700,5,Firefox 23,3,2017-07-02 +session,1700,6,Internet Explorer 28,65,2017-03-19 +session,1700,7,Chrome 17,107,2018-01-06 +user,1701,Layne,Armandina,33 +session,1701,0,Firefox 44,102,2016-10-16 +session,1701,1,Firefox 19,69,2016-12-22 +session,1701,2,Safari 42,45,2018-11-11 +session,1701,3,Internet Explorer 50,83,2018-02-04 +session,1701,4,Firefox 18,67,2018-04-23 +session,1701,5,Firefox 25,88,2017-04-20 +session,1701,6,Internet Explorer 2,62,2018-09-21 +session,1701,7,Firefox 7,89,2017-02-05 +user,1702,Ellan,Anita,2 +session,1702,0,Chrome 37,12,2016-06-24 +session,1702,1,Firefox 37,58,2017-05-08 +session,1702,2,Chrome 43,99,2018-11-24 +session,1702,3,Chrome 34,42,2018-07-27 +session,1702,4,Safari 15,63,2016-09-21 +session,1702,5,Firefox 21,29,2018-12-07 +session,1702,6,Internet Explorer 46,52,2018-12-27 +session,1702,7,Chrome 27,108,2016-10-22 +user,1703,Bob,Shaun,63 +session,1703,0,Chrome 35,29,2017-04-01 +session,1703,1,Chrome 29,48,2017-03-29 +session,1703,2,Internet Explorer 33,101,2018-03-16 +session,1703,3,Internet Explorer 34,57,2018-02-10 +session,1703,4,Internet Explorer 31,113,2017-08-06 +session,1703,5,Firefox 47,118,2017-02-21 +user,1704,Brinda,Juanita,7 +session,1704,0,Firefox 25,18,2017-07-03 +session,1704,1,Internet Explorer 31,39,2017-01-19 +session,1704,2,Firefox 5,26,2016-12-27 +session,1704,3,Firefox 38,56,2017-12-03 +session,1704,4,Internet Explorer 19,70,2016-09-05 +session,1704,5,Safari 39,98,2018-06-26 +session,1704,6,Internet Explorer 32,92,2017-03-06 +user,1705,Earle,Pete,45 +session,1705,0,Safari 5,54,2018-08-07 +session,1705,1,Internet Explorer 2,81,2019-01-31 +user,1706,Gussie,Mei,47 +session,1706,0,Firefox 15,113,2017-07-10 +session,1706,1,Firefox 32,45,2017-06-30 +session,1706,2,Internet Explorer 39,0,2017-04-03 +user,1707,Chester,Haley,39 +session,1707,0,Internet Explorer 42,63,2018-01-02 +session,1707,1,Chrome 48,84,2017-06-22 +session,1707,2,Safari 44,44,2017-11-07 +user,1708,Sharda,Delila,5 +session,1708,0,Chrome 14,94,2016-07-21 +session,1708,1,Firefox 38,83,2016-06-26 +session,1708,2,Firefox 34,2,2018-12-02 +session,1708,3,Internet Explorer 26,108,2017-08-30 +session,1708,4,Safari 33,64,2016-09-29 +session,1708,5,Safari 17,36,2017-05-08 +session,1708,6,Chrome 37,70,2017-02-12 +session,1708,7,Firefox 30,80,2017-04-18 +session,1708,8,Safari 29,97,2017-01-15 +session,1708,9,Internet Explorer 2,33,2016-06-22 +user,1709,Eldridge,Treva,35 +session,1709,0,Firefox 30,96,2017-09-19 +user,1710,Dallas,Mary,54 +session,1710,0,Chrome 19,7,2016-12-18 +session,1710,1,Firefox 28,52,2018-04-09 +user,1711,Maximina,Zita,54 +session,1711,0,Internet Explorer 31,99,2018-09-03 +session,1711,1,Safari 38,68,2017-09-06 +session,1711,2,Chrome 33,44,2017-11-02 +user,1712,Florentino,Agustin,16 +session,1712,0,Safari 26,76,2017-08-30 +session,1712,1,Firefox 11,53,2017-02-06 +session,1712,2,Firefox 9,98,2017-07-26 +session,1712,3,Firefox 10,94,2017-05-26 +session,1712,4,Internet Explorer 8,108,2017-02-12 +session,1712,5,Firefox 36,38,2016-12-17 +user,1713,Sebastian,Samuel,49 +session,1713,0,Internet Explorer 20,1,2018-09-12 +session,1713,1,Safari 17,77,2018-02-14 +session,1713,2,Internet Explorer 35,118,2017-04-29 +session,1713,3,Safari 4,59,2017-07-22 +session,1713,4,Safari 38,117,2017-07-19 +session,1713,5,Firefox 22,54,2019-01-30 +session,1713,6,Firefox 11,105,2018-12-23 +user,1714,Gaylord,Chiquita,57 +session,1714,0,Safari 50,98,2018-11-05 +session,1714,1,Chrome 9,113,2017-02-01 +session,1714,2,Firefox 21,105,2016-06-09 +session,1714,3,Safari 34,87,2017-11-20 +session,1714,4,Internet Explorer 20,62,2016-06-26 +session,1714,5,Safari 11,11,2016-11-05 +session,1714,6,Chrome 49,95,2016-08-08 +session,1714,7,Firefox 2,117,2017-12-13 +session,1714,8,Safari 30,98,2016-10-29 +session,1714,9,Firefox 39,42,2017-08-08 +user,1715,Larraine,Vivien,19 +session,1715,0,Firefox 27,1,2019-01-31 +session,1715,1,Safari 11,95,2018-07-25 +session,1715,2,Safari 27,78,2016-09-09 +session,1715,3,Internet Explorer 36,94,2018-07-18 +session,1715,4,Safari 34,116,2018-12-31 +session,1715,5,Safari 38,27,2017-06-11 +session,1715,6,Firefox 21,15,2017-11-12 +session,1715,7,Firefox 49,11,2017-02-12 +session,1715,8,Firefox 10,110,2018-03-18 +user,1716,Adrian,Tawna,62 +session,1716,0,Chrome 11,96,2018-09-22 +session,1716,1,Firefox 12,37,2017-09-08 +session,1716,2,Safari 19,107,2016-08-30 +session,1716,3,Internet Explorer 22,9,2017-12-26 +session,1716,4,Chrome 25,12,2017-12-04 +user,1717,Napoleon,Alex,49 +session,1717,0,Safari 25,47,2017-12-13 +session,1717,1,Chrome 41,30,2016-09-11 +session,1717,2,Chrome 11,51,2016-12-29 +session,1717,3,Safari 11,117,2018-09-13 +session,1717,4,Firefox 12,38,2018-01-02 +session,1717,5,Chrome 6,35,2017-11-05 +user,1718,Robert,Azzie,17 +session,1718,0,Chrome 13,14,2018-08-14 +session,1718,1,Safari 12,114,2017-01-20 +session,1718,2,Firefox 19,61,2018-03-14 +session,1718,3,Safari 50,62,2016-09-11 +session,1718,4,Safari 48,24,2017-12-15 +session,1718,5,Chrome 45,29,2017-03-24 +session,1718,6,Safari 15,100,2016-06-10 +user,1719,Misha,Letha,78 +session,1719,0,Internet Explorer 13,86,2018-08-30 +session,1719,1,Firefox 41,41,2018-12-08 +session,1719,2,Internet Explorer 38,85,2016-12-19 +session,1719,3,Chrome 24,53,2017-10-31 +session,1719,4,Internet Explorer 48,68,2017-12-07 +user,1720,Cordell,Maire,40 +session,1720,0,Chrome 23,50,2018-01-31 +user,1721,Miles,Everette,94 +session,1721,0,Safari 18,16,2019-01-21 +session,1721,1,Firefox 30,22,2018-09-20 +user,1722,Joaquin,Merideth,67 +session,1722,0,Firefox 3,117,2018-02-24 +session,1722,1,Chrome 30,92,2017-05-02 +session,1722,2,Firefox 45,87,2017-05-03 +session,1722,3,Safari 30,45,2017-08-28 +session,1722,4,Safari 39,109,2016-07-29 +session,1722,5,Chrome 3,36,2017-09-01 +session,1722,6,Chrome 1,112,2016-09-08 +session,1722,7,Safari 35,30,2016-06-24 +session,1722,8,Internet Explorer 1,35,2018-11-06 +session,1722,9,Firefox 9,63,2018-01-26 +user,1723,Thaddeus,Carroll,17 +session,1723,0,Chrome 17,119,2017-02-15 +session,1723,1,Chrome 39,98,2018-10-24 +session,1723,2,Chrome 37,80,2017-02-21 +session,1723,3,Internet Explorer 22,78,2017-11-17 +session,1723,4,Chrome 12,77,2019-01-23 +session,1723,5,Chrome 18,1,2017-08-23 +session,1723,6,Chrome 10,20,2017-02-13 +user,1724,Elvira,Thi,82 +session,1724,0,Chrome 38,33,2017-01-28 +session,1724,1,Chrome 2,11,2017-03-11 +session,1724,2,Firefox 5,8,2018-10-22 +user,1725,Lasonya,Karyn,45 +session,1725,0,Internet Explorer 50,12,2017-07-07 +session,1725,1,Firefox 33,74,2017-12-16 +session,1725,2,Safari 20,84,2017-04-15 +session,1725,3,Internet Explorer 41,59,2018-10-06 +session,1725,4,Safari 41,117,2017-09-17 +session,1725,5,Safari 33,56,2017-02-15 +session,1725,6,Internet Explorer 44,77,2018-02-10 +user,1726,Synthia,Deanne,5 +session,1726,0,Chrome 43,80,2018-05-24 +session,1726,1,Internet Explorer 19,105,2017-12-23 +session,1726,2,Internet Explorer 15,118,2018-05-23 +user,1727,Duncan,Terra,63 +session,1727,0,Chrome 5,23,2018-06-03 +session,1727,1,Chrome 46,23,2018-09-25 +session,1727,2,Internet Explorer 17,40,2018-06-01 +session,1727,3,Internet Explorer 40,110,2016-12-20 +session,1727,4,Internet Explorer 11,68,2017-04-11 +session,1727,5,Internet Explorer 16,68,2018-09-24 +session,1727,6,Firefox 44,104,2016-12-14 +session,1727,7,Safari 11,43,2017-12-06 +user,1728,Norman,Terence,93 +session,1728,0,Safari 50,65,2017-01-31 +session,1728,1,Firefox 14,10,2016-07-31 +session,1728,2,Chrome 8,57,2016-11-14 +session,1728,3,Safari 45,55,2018-06-16 +session,1728,4,Firefox 8,63,2017-04-19 +session,1728,5,Internet Explorer 5,31,2017-03-12 +session,1728,6,Safari 32,57,2018-07-24 +session,1728,7,Firefox 6,71,2018-01-27 +user,1729,Lincoln,Monte,15 +session,1729,0,Firefox 39,29,2017-04-15 +user,1730,Ali,Laverne,76 +session,1730,0,Internet Explorer 7,97,2016-11-19 +session,1730,1,Internet Explorer 31,58,2017-02-08 +session,1730,2,Safari 3,84,2018-04-15 +session,1730,3,Internet Explorer 4,12,2016-10-21 +session,1730,4,Chrome 27,40,2017-08-23 +session,1730,5,Safari 39,44,2018-09-09 +session,1730,6,Firefox 7,27,2018-07-11 +session,1730,7,Chrome 32,86,2017-11-19 +user,1731,Derick,Cheree,72 +session,1731,0,Internet Explorer 38,30,2016-06-18 +session,1731,1,Safari 22,96,2017-04-19 +session,1731,2,Firefox 41,92,2017-02-03 +session,1731,3,Safari 12,37,2018-02-15 +session,1731,4,Firefox 32,67,2016-10-23 +session,1731,5,Chrome 1,78,2018-10-16 +session,1731,6,Internet Explorer 24,100,2019-01-10 +user,1732,Trey,Donnie,12 +session,1732,0,Chrome 30,110,2017-12-14 +session,1732,1,Safari 37,13,2018-12-30 +session,1732,2,Chrome 22,73,2017-01-12 +session,1732,3,Safari 3,77,2018-09-06 +session,1732,4,Firefox 39,109,2016-12-10 +session,1732,5,Internet Explorer 26,18,2016-08-18 +session,1732,6,Safari 17,109,2018-01-26 +user,1733,Cole,Darin,96 +session,1733,0,Chrome 7,45,2016-10-07 +session,1733,1,Internet Explorer 27,43,2017-02-07 +session,1733,2,Firefox 37,14,2016-12-18 +session,1733,3,Safari 21,70,2018-10-08 +session,1733,4,Chrome 5,28,2017-09-09 +user,1734,Adrian,Isaura,99 +session,1734,0,Chrome 11,41,2018-02-18 +session,1734,1,Safari 15,116,2018-09-28 +session,1734,2,Firefox 12,8,2018-10-22 +session,1734,3,Safari 34,58,2018-06-01 +session,1734,4,Internet Explorer 50,25,2018-09-23 +session,1734,5,Safari 44,4,2018-12-22 +user,1735,Neil,Fidel,86 +session,1735,0,Chrome 45,91,2018-06-02 +session,1735,1,Safari 18,38,2017-10-24 +session,1735,2,Internet Explorer 9,15,2018-11-01 +user,1736,Marcellus,Merle,96 +session,1736,0,Firefox 9,98,2018-02-22 +session,1736,1,Internet Explorer 12,34,2017-01-13 +session,1736,2,Internet Explorer 1,72,2016-10-22 +session,1736,3,Internet Explorer 42,31,2018-08-09 +session,1736,4,Safari 3,74,2016-08-29 +session,1736,5,Firefox 42,14,2018-05-27 +session,1736,6,Firefox 39,21,2018-10-25 +session,1736,7,Internet Explorer 4,95,2017-06-16 +user,1737,Carmine,Camila,6 +session,1737,0,Internet Explorer 2,99,2018-03-13 +session,1737,1,Chrome 8,4,2016-11-25 +session,1737,2,Firefox 28,49,2017-04-10 +session,1737,3,Internet Explorer 31,111,2017-11-12 +user,1738,Romelia,Demetrius,97 +session,1738,0,Internet Explorer 47,96,2017-01-31 +session,1738,1,Chrome 9,15,2018-07-30 +user,1739,Brandon,Bo,96 +session,1739,0,Chrome 17,114,2016-06-13 +user,1740,Herbert,Darcey,89 +session,1740,0,Internet Explorer 31,97,2017-11-07 +session,1740,1,Internet Explorer 11,31,2017-10-28 +session,1740,2,Safari 36,69,2018-05-14 +session,1740,3,Chrome 33,86,2018-11-22 +session,1740,4,Safari 33,71,2016-09-14 +session,1740,5,Firefox 41,20,2016-07-07 +session,1740,6,Firefox 43,105,2016-09-04 +session,1740,7,Internet Explorer 12,28,2016-07-28 +session,1740,8,Safari 6,55,2016-12-11 +user,1741,Val,Genoveva,88 +session,1741,0,Chrome 2,16,2017-01-21 +session,1741,1,Firefox 32,3,2017-05-14 +session,1741,2,Firefox 45,67,2017-12-04 +session,1741,3,Internet Explorer 15,23,2017-11-08 +user,1742,Courtney,Paul,51 +session,1742,0,Internet Explorer 12,53,2017-04-14 +session,1742,1,Safari 29,108,2017-03-10 +session,1742,2,Safari 41,97,2018-02-18 +session,1742,3,Chrome 29,36,2018-12-16 +session,1742,4,Chrome 22,99,2017-09-24 +session,1742,5,Firefox 12,45,2017-05-22 +user,1743,Isa,Makeda,24 +session,1743,0,Internet Explorer 33,0,2018-09-16 +session,1743,1,Internet Explorer 49,54,2018-05-05 +session,1743,2,Internet Explorer 28,85,2018-04-23 +session,1743,3,Safari 32,70,2017-02-22 +session,1743,4,Safari 12,100,2017-02-26 +session,1743,5,Safari 44,65,2016-11-22 +session,1743,6,Chrome 26,100,2018-07-23 +session,1743,7,Firefox 50,102,2016-07-05 +session,1743,8,Internet Explorer 14,85,2017-07-29 +user,1744,Jame,Claris,91 +session,1744,0,Firefox 33,74,2018-05-09 +session,1744,1,Internet Explorer 27,60,2016-11-10 +session,1744,2,Safari 15,96,2017-08-20 +session,1744,3,Chrome 42,45,2019-01-19 +session,1744,4,Chrome 2,50,2017-04-20 +user,1745,Jessia,Mikki,31 +session,1745,0,Firefox 40,19,2018-10-02 +session,1745,1,Safari 30,69,2017-12-05 +session,1745,2,Internet Explorer 18,61,2016-08-01 +session,1745,3,Safari 6,16,2017-11-16 +user,1746,Katharina,Darleen,70 +session,1746,0,Safari 24,31,2018-03-22 +session,1746,1,Firefox 50,1,2017-09-17 +session,1746,2,Safari 3,30,2018-10-21 +session,1746,3,Firefox 21,12,2019-01-23 +session,1746,4,Firefox 50,77,2018-12-16 +session,1746,5,Chrome 26,102,2018-11-11 +session,1746,6,Firefox 34,61,2018-05-19 +session,1746,7,Internet Explorer 25,10,2018-11-24 +session,1746,8,Internet Explorer 35,70,2017-04-08 +user,1747,Breana,Shannan,12 +session,1747,0,Internet Explorer 13,117,2016-12-25 +session,1747,1,Firefox 10,84,2018-01-23 +user,1748,Vina,Domonique,45 +session,1748,0,Firefox 34,16,2018-11-05 +user,1749,Jere,Flor,66 +session,1749,0,Safari 34,51,2018-03-13 +session,1749,1,Firefox 3,18,2018-12-01 +session,1749,2,Safari 45,65,2018-08-22 +session,1749,3,Safari 30,69,2016-09-04 +user,1750,Nora,Kyle,83 +session,1750,0,Safari 35,69,2016-09-08 +session,1750,1,Internet Explorer 6,49,2016-09-17 +user,1751,Petra,Renda,49 +session,1751,0,Internet Explorer 6,15,2018-03-14 +session,1751,1,Chrome 15,28,2018-11-23 +session,1751,2,Safari 46,71,2018-11-28 +session,1751,3,Chrome 37,1,2017-01-14 +session,1751,4,Internet Explorer 29,36,2017-11-18 +user,1752,Renate,Edwin,13 +session,1752,0,Firefox 10,68,2018-09-15 +session,1752,1,Chrome 38,54,2018-10-03 +session,1752,2,Safari 2,43,2019-02-10 +session,1752,3,Firefox 11,59,2017-09-06 +session,1752,4,Firefox 36,101,2016-08-19 +session,1752,5,Firefox 28,11,2017-11-14 +session,1752,6,Safari 1,9,2017-03-15 +user,1753,Samual,Althea,86 +session,1753,0,Safari 32,29,2017-04-10 +session,1753,1,Internet Explorer 13,46,2018-01-10 +session,1753,2,Firefox 47,116,2016-11-02 +session,1753,3,Internet Explorer 24,0,2017-09-26 +session,1753,4,Chrome 28,92,2016-07-10 +session,1753,5,Internet Explorer 19,83,2016-06-05 +session,1753,6,Safari 22,72,2017-12-05 +user,1754,Shelby,Olene,6 +session,1754,0,Internet Explorer 34,1,2016-12-03 +session,1754,1,Safari 8,57,2016-06-17 +session,1754,2,Safari 37,39,2017-08-22 +session,1754,3,Chrome 7,68,2018-10-04 +session,1754,4,Internet Explorer 23,68,2017-03-02 +user,1755,Margarito,Clemencia,5 +session,1755,0,Chrome 26,114,2016-07-23 +session,1755,1,Internet Explorer 35,2,2017-08-17 +session,1755,2,Firefox 35,44,2016-08-18 +session,1755,3,Safari 35,58,2017-09-12 +session,1755,4,Internet Explorer 48,97,2018-10-27 +session,1755,5,Firefox 16,107,2018-06-17 +user,1756,Millard,Sabra,74 +session,1756,0,Chrome 34,83,2017-12-12 +session,1756,1,Safari 30,22,2016-09-28 +session,1756,2,Chrome 43,95,2016-11-09 +session,1756,3,Chrome 35,25,2018-06-07 +session,1756,4,Firefox 32,72,2016-12-08 +session,1756,5,Chrome 12,92,2017-02-24 +session,1756,6,Internet Explorer 43,6,2018-02-24 +session,1756,7,Firefox 35,41,2019-01-18 +user,1757,Kasey,Glenna,60 +session,1757,0,Safari 31,45,2016-10-20 +session,1757,1,Chrome 14,1,2016-08-12 +session,1757,2,Chrome 47,80,2018-09-04 +session,1757,3,Safari 1,110,2018-07-12 +session,1757,4,Internet Explorer 45,95,2017-11-28 +session,1757,5,Internet Explorer 50,38,2018-01-02 +session,1757,6,Chrome 27,105,2017-06-07 +session,1757,7,Internet Explorer 21,11,2017-09-19 +session,1757,8,Chrome 6,76,2016-05-29 +session,1757,9,Safari 45,30,2017-07-01 +user,1758,Misty,Estelle,42 +session,1758,0,Internet Explorer 19,85,2018-02-25 +session,1758,1,Internet Explorer 12,16,2018-08-08 +session,1758,2,Chrome 10,51,2016-07-18 +session,1758,3,Safari 44,113,2017-06-25 +session,1758,4,Firefox 29,10,2017-08-02 +session,1758,5,Chrome 18,107,2016-08-17 +session,1758,6,Internet Explorer 38,18,2017-05-10 +user,1759,Sharen,Lesley,62 +session,1759,0,Internet Explorer 17,69,2016-12-04 +session,1759,1,Firefox 45,78,2018-08-19 +session,1759,2,Chrome 3,103,2018-07-13 +session,1759,3,Internet Explorer 19,64,2018-11-13 +session,1759,4,Firefox 29,26,2017-11-18 +session,1759,5,Safari 8,9,2017-12-16 +session,1759,6,Firefox 43,87,2016-12-30 +session,1759,7,Chrome 33,74,2017-03-13 +user,1760,January,Emelia,25 +session,1760,0,Chrome 3,34,2017-07-17 +session,1760,1,Safari 1,72,2017-12-25 +session,1760,2,Chrome 12,23,2016-12-06 +session,1760,3,Internet Explorer 33,49,2017-07-24 +user,1761,Bret,Carlita,49 +session,1761,0,Firefox 9,40,2016-08-22 +user,1762,Clifford,Reginald,42 +session,1762,0,Safari 38,5,2016-11-05 +session,1762,1,Chrome 13,52,2018-08-05 +session,1762,2,Firefox 12,39,2018-05-09 +session,1762,3,Safari 39,37,2017-11-06 +session,1762,4,Internet Explorer 46,36,2018-11-03 +user,1763,Bradley,Quyen,3 +session,1763,0,Safari 19,61,2018-04-07 +session,1763,1,Firefox 39,37,2018-12-23 +session,1763,2,Firefox 21,74,2018-07-15 +session,1763,3,Firefox 18,115,2017-02-15 +session,1763,4,Safari 15,31,2017-10-17 +session,1763,5,Internet Explorer 41,93,2018-03-30 +session,1763,6,Firefox 37,90,2018-12-28 +session,1763,7,Chrome 43,112,2017-12-25 +user,1764,Wes,Tammy,81 +session,1764,0,Firefox 22,91,2016-11-24 +session,1764,1,Internet Explorer 48,45,2016-12-22 +session,1764,2,Safari 41,53,2017-11-20 +session,1764,3,Chrome 21,87,2018-05-19 +session,1764,4,Firefox 24,71,2018-07-05 +session,1764,5,Internet Explorer 12,48,2018-05-21 +user,1765,Verline,Alisia,75 +session,1765,0,Firefox 48,47,2018-12-04 +session,1765,1,Chrome 21,54,2018-06-05 +session,1765,2,Safari 7,76,2018-06-14 +session,1765,3,Firefox 32,118,2017-06-09 +session,1765,4,Internet Explorer 20,103,2016-12-30 +user,1766,Joni,Josette,87 +session,1766,0,Chrome 44,46,2017-04-01 +session,1766,1,Safari 23,23,2017-04-13 +session,1766,2,Internet Explorer 33,83,2019-02-03 +session,1766,3,Firefox 10,19,2016-12-04 +session,1766,4,Firefox 36,116,2016-10-20 +session,1766,5,Chrome 48,64,2018-04-27 +session,1766,6,Internet Explorer 26,56,2017-10-25 +user,1767,Bess,Alana,47 +session,1767,0,Chrome 21,93,2017-02-10 +user,1768,Alan,Vinnie,12 +session,1768,0,Firefox 18,58,2018-03-30 +session,1768,1,Chrome 5,114,2016-09-03 +session,1768,2,Firefox 10,18,2017-06-19 +session,1768,3,Firefox 39,95,2018-03-11 +session,1768,4,Chrome 46,58,2018-03-24 +user,1769,Chang,Yanira,42 +session,1769,0,Chrome 45,25,2018-05-15 +session,1769,1,Chrome 23,7,2016-08-03 +user,1770,Stuart,Ula,50 +session,1770,0,Firefox 5,69,2016-06-11 +user,1771,Will,Maryln,20 +session,1771,0,Chrome 45,45,2017-03-03 +session,1771,1,Safari 48,52,2018-11-05 +user,1772,Juliana,Margery,35 +session,1772,0,Chrome 41,32,2017-08-24 +session,1772,1,Firefox 3,49,2018-08-17 +session,1772,2,Safari 38,70,2016-08-31 +session,1772,3,Internet Explorer 50,40,2016-08-18 +session,1772,4,Safari 40,56,2017-04-19 +session,1772,5,Chrome 39,96,2017-05-05 +user,1773,Agripina,Kelsie,12 +session,1773,0,Firefox 7,9,2016-06-18 +session,1773,1,Internet Explorer 47,68,2018-06-29 +session,1773,2,Safari 37,78,2018-03-21 +session,1773,3,Safari 37,65,2017-08-15 +session,1773,4,Chrome 49,104,2016-07-19 +session,1773,5,Firefox 23,14,2018-08-23 +session,1773,6,Internet Explorer 26,40,2018-07-21 +session,1773,7,Chrome 13,92,2018-06-23 +session,1773,8,Safari 12,25,2017-10-26 +user,1774,Myrna,Maple,80 +session,1774,0,Safari 42,99,2017-03-23 +session,1774,1,Firefox 49,37,2016-12-04 +session,1774,2,Internet Explorer 14,22,2018-05-16 +session,1774,3,Chrome 22,7,2018-09-01 +session,1774,4,Safari 35,27,2018-01-04 +user,1775,Hilde,Bill,74 +session,1775,0,Chrome 6,33,2018-05-21 +session,1775,1,Safari 38,21,2017-04-11 +session,1775,2,Chrome 42,68,2017-06-12 +session,1775,3,Firefox 47,53,2017-11-19 +session,1775,4,Chrome 40,79,2017-03-07 +session,1775,5,Internet Explorer 50,28,2017-10-23 +session,1775,6,Firefox 25,71,2016-11-09 +session,1775,7,Safari 6,31,2017-07-05 +session,1775,8,Chrome 12,30,2016-10-08 +session,1775,9,Safari 24,58,2017-07-03 +user,1776,Tricia,Tasia,89 +session,1776,0,Firefox 30,74,2017-03-08 +session,1776,1,Internet Explorer 43,74,2017-03-20 +session,1776,2,Safari 36,102,2017-04-23 +session,1776,3,Safari 29,2,2017-09-05 +session,1776,4,Firefox 24,21,2018-04-12 +session,1776,5,Internet Explorer 19,69,2018-10-28 +session,1776,6,Chrome 26,56,2016-05-19 +session,1776,7,Internet Explorer 10,115,2018-01-03 +session,1776,8,Firefox 10,1,2017-05-05 +user,1777,Fleta,Phoebe,77 +session,1777,0,Safari 5,79,2017-02-28 +session,1777,1,Chrome 34,7,2017-04-14 +session,1777,2,Internet Explorer 13,28,2019-01-29 +session,1777,3,Internet Explorer 1,23,2016-06-03 +session,1777,4,Firefox 13,66,2016-09-25 +user,1778,Janise,Joellen,39 +session,1778,0,Chrome 38,88,2018-12-01 +session,1778,1,Chrome 45,90,2017-03-04 +session,1778,2,Safari 30,60,2016-08-04 +session,1778,3,Internet Explorer 38,30,2018-06-11 +session,1778,4,Internet Explorer 27,47,2018-04-25 +user,1779,Winfred,Donnell,40 +session,1779,0,Firefox 9,116,2018-11-04 +session,1779,1,Firefox 28,91,2017-04-29 +session,1779,2,Firefox 22,114,2017-07-26 +session,1779,3,Firefox 11,46,2016-11-12 +session,1779,4,Chrome 35,16,2018-12-10 +session,1779,5,Internet Explorer 21,105,2017-07-30 +session,1779,6,Internet Explorer 49,51,2018-05-30 +session,1779,7,Internet Explorer 18,87,2017-04-28 +session,1779,8,Internet Explorer 25,35,2019-01-29 +user,1780,Keven,Sharice,31 +session,1780,0,Internet Explorer 44,36,2017-04-25 +session,1780,1,Firefox 3,62,2018-11-11 +session,1780,2,Firefox 11,56,2018-10-22 +session,1780,3,Safari 48,21,2017-08-17 +session,1780,4,Safari 23,69,2018-09-10 +session,1780,5,Safari 47,112,2017-05-22 +user,1781,Florance,Lasandra,77 +session,1781,0,Chrome 23,53,2018-06-07 +session,1781,1,Firefox 24,91,2018-08-20 +session,1781,2,Safari 39,105,2017-12-19 +user,1782,Merle,Reinaldo,22 +session,1782,0,Safari 15,23,2017-04-22 +session,1782,1,Chrome 29,40,2017-10-04 +session,1782,2,Safari 15,70,2016-07-20 +session,1782,3,Internet Explorer 27,112,2017-09-29 +session,1782,4,Internet Explorer 36,68,2017-04-22 +session,1782,5,Chrome 26,62,2017-10-10 +session,1782,6,Chrome 12,74,2017-01-06 +session,1782,7,Safari 46,2,2018-05-06 +session,1782,8,Internet Explorer 50,80,2018-04-16 +user,1783,Latarsha,Chloe,32 +session,1783,0,Chrome 25,30,2018-08-28 +session,1783,1,Internet Explorer 50,103,2017-05-19 +session,1783,2,Firefox 29,17,2018-09-25 +session,1783,3,Internet Explorer 11,93,2017-11-25 +session,1783,4,Safari 33,90,2018-09-23 +session,1783,5,Safari 9,117,2016-08-03 +user,1784,Curt,Tonda,49 +session,1784,0,Chrome 22,93,2017-10-30 +session,1784,1,Safari 39,4,2018-01-25 +session,1784,2,Chrome 28,12,2018-05-24 +session,1784,3,Firefox 29,7,2018-01-30 +session,1784,4,Internet Explorer 42,112,2016-08-31 +session,1784,5,Safari 21,77,2018-02-13 +session,1784,6,Safari 6,27,2017-12-31 +session,1784,7,Internet Explorer 48,117,2017-08-26 +session,1784,8,Chrome 9,45,2018-09-15 +user,1785,Arnette,Russ,25 +session,1785,0,Chrome 11,99,2016-07-07 +session,1785,1,Safari 19,11,2017-06-11 +session,1785,2,Firefox 30,53,2018-10-18 +session,1785,3,Firefox 10,56,2018-04-14 +session,1785,4,Internet Explorer 37,40,2016-06-30 +session,1785,5,Internet Explorer 27,107,2018-08-24 +session,1785,6,Firefox 47,110,2017-11-26 +session,1785,7,Internet Explorer 39,45,2017-01-08 +session,1785,8,Safari 48,74,2018-10-03 +user,1786,Olympia,Marion,85 +session,1786,0,Chrome 44,105,2016-10-27 +session,1786,1,Internet Explorer 27,95,2017-01-04 +session,1786,2,Internet Explorer 26,40,2019-01-30 +session,1786,3,Chrome 39,17,2017-05-30 +session,1786,4,Chrome 25,83,2018-09-16 +session,1786,5,Chrome 10,85,2018-08-07 +session,1786,6,Firefox 42,12,2016-05-27 +user,1787,Margaret,Lasonya,99 +session,1787,0,Chrome 25,61,2016-08-17 +session,1787,1,Safari 24,97,2017-06-01 +session,1787,2,Internet Explorer 12,70,2016-12-29 +session,1787,3,Safari 16,11,2018-05-08 +session,1787,4,Firefox 29,101,2018-06-27 +session,1787,5,Chrome 17,64,2018-07-18 +session,1787,6,Firefox 27,64,2017-08-27 +session,1787,7,Firefox 31,52,2017-08-03 +session,1787,8,Internet Explorer 23,94,2017-06-29 +session,1787,9,Firefox 6,82,2017-04-04 +user,1788,Loraine,Jaime,1 +session,1788,0,Chrome 22,21,2019-01-24 +session,1788,1,Firefox 28,12,2016-09-27 +session,1788,2,Firefox 19,69,2017-12-13 +session,1788,3,Firefox 34,99,2018-05-24 +session,1788,4,Safari 2,98,2016-10-10 +session,1788,5,Firefox 3,8,2017-08-08 +session,1788,6,Firefox 20,28,2017-05-08 +user,1789,Carey,Warner,35 +session,1789,0,Chrome 21,78,2018-06-13 +session,1789,1,Safari 18,115,2017-05-01 +session,1789,2,Safari 31,101,2016-12-15 +user,1790,Moses,Nicki,96 +session,1790,0,Firefox 24,73,2017-10-22 +session,1790,1,Firefox 13,43,2018-05-27 +session,1790,2,Firefox 7,113,2017-10-30 +user,1791,Corina,Dayna,33 +session,1791,0,Internet Explorer 47,62,2017-01-17 +session,1791,1,Chrome 19,8,2019-02-02 +user,1792,Mistie,George,72 +session,1792,0,Safari 22,18,2017-05-05 +session,1792,1,Firefox 27,39,2019-01-24 +session,1792,2,Safari 27,3,2018-08-16 +session,1792,3,Safari 19,109,2016-12-04 +session,1792,4,Internet Explorer 35,35,2017-05-06 +session,1792,5,Internet Explorer 5,75,2019-01-15 +session,1792,6,Chrome 4,42,2016-08-10 +session,1792,7,Firefox 4,115,2016-06-26 +session,1792,8,Internet Explorer 38,10,2017-04-27 +session,1792,9,Firefox 43,42,2017-04-23 +user,1793,Miquel,Pasquale,42 +session,1793,0,Safari 5,30,2018-11-12 +session,1793,1,Chrome 4,87,2018-08-29 +user,1794,Erik,Adele,39 +session,1794,0,Chrome 50,66,2016-08-21 +session,1794,1,Safari 26,35,2018-08-16 +session,1794,2,Firefox 26,4,2018-03-12 +session,1794,3,Safari 30,47,2017-06-12 +session,1794,4,Safari 22,82,2018-01-08 +session,1794,5,Chrome 22,106,2018-09-05 +session,1794,6,Safari 14,78,2018-06-27 +session,1794,7,Firefox 34,66,2018-11-19 +session,1794,8,Firefox 1,38,2017-09-06 +user,1795,Velma,Rosalva,67 +session,1795,0,Firefox 20,38,2017-03-01 +session,1795,1,Chrome 27,77,2016-10-09 +session,1795,2,Firefox 22,112,2017-04-24 +session,1795,3,Firefox 27,6,2016-06-29 +session,1795,4,Firefox 1,31,2018-12-04 +session,1795,5,Safari 10,109,2017-11-15 +session,1795,6,Chrome 10,75,2017-01-29 +session,1795,7,Safari 10,70,2017-12-16 +user,1796,Avery,Emily,75 +session,1796,0,Firefox 16,21,2016-05-23 +session,1796,1,Chrome 17,42,2016-11-21 +user,1797,Ahmed,Hortensia,98 +session,1797,0,Internet Explorer 7,71,2018-07-25 +session,1797,1,Firefox 38,47,2018-07-07 +session,1797,2,Chrome 37,91,2018-06-17 +session,1797,3,Internet Explorer 15,71,2018-12-22 +session,1797,4,Internet Explorer 28,58,2018-09-26 +session,1797,5,Safari 40,75,2016-07-01 +user,1798,Fidela,Lyla,8 +session,1798,0,Internet Explorer 37,64,2018-12-20 +session,1798,1,Safari 23,66,2017-03-13 +session,1798,2,Safari 7,86,2016-09-24 +user,1799,Weldon,Kimbery,99 +session,1799,0,Chrome 3,62,2017-12-15 +session,1799,1,Internet Explorer 29,47,2018-06-12 +session,1799,2,Firefox 26,103,2017-04-28 +session,1799,3,Internet Explorer 11,97,2017-01-21 +session,1799,4,Internet Explorer 27,32,2017-12-20 +session,1799,5,Safari 30,88,2016-08-06 +session,1799,6,Firefox 50,114,2017-04-25 +session,1799,7,Internet Explorer 14,11,2018-05-20 +session,1799,8,Firefox 33,64,2017-09-13 +user,1800,Dwayne,Larue,90 +session,1800,0,Internet Explorer 40,4,2017-02-28 +session,1800,1,Internet Explorer 14,15,2017-07-25 +session,1800,2,Chrome 35,26,2016-07-19 +session,1800,3,Firefox 10,73,2016-11-04 +session,1800,4,Firefox 25,118,2018-01-30 +user,1801,Elsa,Tien,89 +session,1801,0,Safari 27,77,2017-04-17 +session,1801,1,Firefox 19,89,2016-11-01 +session,1801,2,Firefox 21,4,2018-01-20 +session,1801,3,Safari 32,31,2017-10-15 +session,1801,4,Internet Explorer 30,84,2018-03-31 +session,1801,5,Firefox 16,75,2016-08-15 +user,1802,Jesus,Lucius,1 +session,1802,0,Internet Explorer 21,83,2017-02-25 +session,1802,1,Firefox 9,30,2016-10-03 +session,1802,2,Firefox 39,36,2017-05-06 +session,1802,3,Firefox 13,26,2018-07-21 +user,1803,Wyatt,Ok,50 +session,1803,0,Chrome 18,112,2018-09-28 +session,1803,1,Internet Explorer 39,7,2019-01-12 +session,1803,2,Firefox 9,95,2018-01-07 +session,1803,3,Firefox 12,73,2017-05-02 +session,1803,4,Firefox 25,26,2017-03-10 +session,1803,5,Firefox 34,1,2017-01-24 +session,1803,6,Chrome 1,86,2017-11-04 +session,1803,7,Internet Explorer 44,88,2019-02-07 +user,1804,Eldora,Delbert,66 +session,1804,0,Chrome 48,85,2016-12-26 +session,1804,1,Safari 14,9,2019-01-30 +session,1804,2,Firefox 8,63,2017-01-12 +user,1805,Eloy,Murray,12 +session,1805,0,Chrome 36,64,2018-03-27 +session,1805,1,Safari 36,20,2018-06-14 +session,1805,2,Firefox 3,105,2017-05-18 +session,1805,3,Firefox 16,91,2018-10-01 +session,1805,4,Chrome 22,10,2016-09-12 +session,1805,5,Safari 29,61,2017-06-04 +user,1806,Lindsay,Deanne,69 +session,1806,0,Chrome 22,62,2018-12-30 +session,1806,1,Firefox 29,38,2018-06-15 +session,1806,2,Chrome 35,63,2017-08-01 +user,1807,Brooks,Alphonso,47 +session,1807,0,Firefox 10,2,2017-12-18 +session,1807,1,Internet Explorer 17,13,2018-05-21 +user,1808,Norah,Libbie,5 +session,1808,0,Safari 28,97,2016-08-14 +session,1808,1,Safari 36,30,2018-05-22 +session,1808,2,Safari 21,115,2016-12-18 +session,1808,3,Firefox 6,99,2018-04-18 +user,1809,Carroll,Elton,7 +session,1809,0,Safari 34,108,2018-04-11 +session,1809,1,Safari 27,11,2017-06-01 +session,1809,2,Firefox 41,38,2017-01-20 +session,1809,3,Safari 50,115,2018-02-24 +session,1809,4,Firefox 8,45,2017-10-04 +session,1809,5,Safari 29,38,2017-01-09 +session,1809,6,Firefox 25,53,2017-05-06 +user,1810,Vashti,Kimber,45 +session,1810,0,Internet Explorer 32,27,2018-08-21 +session,1810,1,Internet Explorer 39,40,2018-12-14 +session,1810,2,Chrome 19,83,2017-10-23 +session,1810,3,Safari 39,105,2017-10-15 +session,1810,4,Firefox 44,97,2016-05-19 +session,1810,5,Internet Explorer 33,39,2016-12-02 +user,1811,Nona,Tonja,34 +session,1811,0,Chrome 14,94,2018-09-19 +session,1811,1,Internet Explorer 21,0,2018-07-23 +session,1811,2,Chrome 48,34,2018-01-31 +session,1811,3,Internet Explorer 42,55,2018-11-18 +session,1811,4,Firefox 24,55,2018-10-31 +session,1811,5,Safari 47,93,2016-11-08 +session,1811,6,Firefox 48,57,2018-01-07 +session,1811,7,Safari 31,119,2018-08-19 +session,1811,8,Internet Explorer 8,97,2017-11-15 +session,1811,9,Safari 25,99,2017-12-12 +user,1812,Sana,Ludivina,49 +session,1812,0,Safari 47,79,2017-05-01 +session,1812,1,Safari 30,83,2016-10-22 +session,1812,2,Firefox 9,57,2019-02-10 +session,1812,3,Chrome 16,44,2017-05-07 +user,1813,Son,Hettie,58 +session,1813,0,Safari 46,115,2017-05-09 +session,1813,1,Safari 8,40,2017-10-31 +user,1814,Bart,Spencer,95 +session,1814,0,Internet Explorer 48,11,2017-07-19 +session,1814,1,Safari 25,117,2018-05-28 +user,1815,Erin,Cristen,49 +session,1815,0,Chrome 47,20,2018-06-03 +session,1815,1,Firefox 15,64,2018-09-18 +session,1815,2,Internet Explorer 41,83,2018-11-09 +user,1816,Laurena,Herminia,27 +session,1816,0,Safari 4,112,2017-12-28 +session,1816,1,Firefox 23,19,2017-08-19 +session,1816,2,Chrome 22,39,2016-07-08 +session,1816,3,Firefox 4,92,2017-10-18 +session,1816,4,Safari 48,68,2017-12-27 +session,1816,5,Internet Explorer 9,88,2017-01-11 +session,1816,6,Internet Explorer 16,89,2017-11-17 +user,1817,Austin,Divina,3 +session,1817,0,Chrome 17,65,2018-10-24 +session,1817,1,Chrome 47,1,2018-04-01 +user,1818,Domenic,Anjelica,13 +session,1818,0,Internet Explorer 7,76,2017-03-22 +session,1818,1,Internet Explorer 34,70,2017-08-03 +session,1818,2,Firefox 36,42,2016-09-06 +user,1819,Lilliam,Huong,52 +session,1819,0,Safari 48,29,2018-07-07 +session,1819,1,Chrome 19,84,2017-03-08 +session,1819,2,Internet Explorer 39,29,2018-04-13 +session,1819,3,Firefox 40,80,2018-03-24 +session,1819,4,Chrome 7,50,2018-03-12 +session,1819,5,Internet Explorer 31,47,2018-07-09 +session,1819,6,Safari 7,59,2017-05-29 +session,1819,7,Chrome 33,56,2018-01-29 +user,1820,Leonel,Jules,58 +session,1820,0,Internet Explorer 6,65,2016-09-14 +session,1820,1,Chrome 19,7,2017-10-14 +session,1820,2,Internet Explorer 7,92,2017-03-07 +session,1820,3,Firefox 46,55,2017-08-07 +session,1820,4,Internet Explorer 22,97,2016-08-29 +session,1820,5,Safari 45,61,2017-07-04 +session,1820,6,Internet Explorer 4,14,2018-07-19 +session,1820,7,Safari 37,102,2018-05-26 +session,1820,8,Internet Explorer 42,103,2017-11-25 +session,1820,9,Chrome 32,101,2017-07-17 +user,1821,Kourtney,Veronika,38 +session,1821,0,Safari 50,46,2017-03-18 +session,1821,1,Chrome 36,115,2018-12-23 +session,1821,2,Chrome 3,52,2016-11-16 +session,1821,3,Firefox 17,48,2018-08-07 +session,1821,4,Chrome 5,0,2018-11-21 +session,1821,5,Chrome 33,113,2016-09-04 +user,1822,Phylis,Mai,87 +session,1822,0,Internet Explorer 32,63,2017-09-03 +session,1822,1,Chrome 15,46,2018-05-09 +session,1822,2,Internet Explorer 13,88,2017-04-11 +user,1823,Woodrow,Lakeisha,60 +session,1823,0,Chrome 7,116,2018-04-13 +session,1823,1,Chrome 13,112,2017-08-04 +session,1823,2,Firefox 31,26,2019-02-09 +session,1823,3,Firefox 33,32,2018-10-19 +session,1823,4,Internet Explorer 7,73,2017-01-03 +session,1823,5,Safari 21,96,2016-12-22 +user,1824,Mimi,Brant,20 +session,1824,0,Internet Explorer 21,101,2018-12-30 +session,1824,1,Chrome 1,57,2017-11-28 +session,1824,2,Firefox 36,108,2019-01-16 +session,1824,3,Firefox 19,77,2017-02-17 +user,1825,Russ,Kendall,72 +session,1825,0,Safari 5,33,2018-08-28 +session,1825,1,Safari 42,99,2017-10-13 +session,1825,2,Safari 44,115,2017-12-11 +session,1825,3,Firefox 27,101,2017-03-08 +session,1825,4,Safari 41,117,2017-04-27 +session,1825,5,Safari 28,46,2018-07-10 +session,1825,6,Safari 38,2,2017-02-28 +user,1826,Lisabeth,Jeneva,34 +session,1826,0,Chrome 3,53,2018-12-02 +session,1826,1,Chrome 35,41,2018-08-15 +session,1826,2,Chrome 8,16,2017-11-15 +session,1826,3,Internet Explorer 12,0,2017-06-17 +session,1826,4,Internet Explorer 45,43,2017-08-06 +session,1826,5,Internet Explorer 4,74,2017-02-27 +session,1826,6,Internet Explorer 9,66,2016-11-14 +session,1826,7,Firefox 44,98,2017-09-02 +session,1826,8,Firefox 41,64,2018-06-27 +user,1827,Norene,Ella,68 +session,1827,0,Internet Explorer 41,10,2018-09-30 +session,1827,1,Internet Explorer 10,116,2016-12-16 +session,1827,2,Safari 18,86,2016-07-16 +session,1827,3,Chrome 35,101,2018-07-13 +session,1827,4,Chrome 24,85,2017-10-16 +session,1827,5,Chrome 40,72,2017-11-07 +session,1827,6,Firefox 37,10,2017-06-03 +session,1827,7,Internet Explorer 21,17,2016-10-26 +session,1827,8,Internet Explorer 43,56,2018-05-26 +session,1827,9,Safari 6,31,2018-01-24 +user,1828,Carita,Krystyna,18 +session,1828,0,Internet Explorer 17,115,2017-07-08 +session,1828,1,Internet Explorer 38,32,2017-02-11 +session,1828,2,Firefox 25,83,2017-08-23 +session,1828,3,Chrome 42,59,2017-02-27 +session,1828,4,Internet Explorer 15,48,2016-09-21 +session,1828,5,Internet Explorer 22,35,2017-09-19 +session,1828,6,Firefox 9,74,2016-08-06 +user,1829,Raymonde,Karly,73 +session,1829,0,Safari 30,75,2019-02-03 +session,1829,1,Firefox 9,64,2016-09-01 +session,1829,2,Internet Explorer 34,39,2017-02-05 +session,1829,3,Chrome 12,21,2016-11-20 +session,1829,4,Chrome 29,109,2017-12-14 +session,1829,5,Firefox 23,116,2017-11-29 +session,1829,6,Internet Explorer 24,14,2018-04-12 +session,1829,7,Firefox 45,99,2019-01-22 +session,1829,8,Chrome 33,65,2018-10-20 +session,1829,9,Chrome 13,76,2019-01-10 +user,1830,Tommy,Corliss,56 +session,1830,0,Chrome 37,89,2017-03-12 +user,1831,Kirstin,Nancie,0 +session,1831,0,Chrome 15,47,2016-07-08 +session,1831,1,Firefox 25,17,2017-09-18 +session,1831,2,Safari 4,41,2016-06-12 +session,1831,3,Chrome 37,7,2018-02-12 +session,1831,4,Firefox 35,0,2017-09-15 +session,1831,5,Internet Explorer 32,101,2016-11-13 +session,1831,6,Firefox 48,8,2017-10-07 +session,1831,7,Internet Explorer 16,68,2018-06-03 +user,1832,Keneth,Sol,12 +session,1832,0,Chrome 49,112,2018-07-14 +session,1832,1,Firefox 43,118,2017-11-02 +session,1832,2,Chrome 32,40,2019-02-08 +user,1833,Nathanial,Brigette,89 +session,1833,0,Internet Explorer 21,94,2018-10-05 +session,1833,1,Safari 19,1,2017-08-26 +session,1833,2,Safari 44,38,2018-02-19 +session,1833,3,Firefox 14,86,2016-07-16 +session,1833,4,Internet Explorer 39,94,2016-08-24 +user,1834,Shayne,Rey,37 +session,1834,0,Chrome 43,56,2019-01-04 +user,1835,Luke,Lesia,22 +session,1835,0,Safari 46,37,2018-05-17 +session,1835,1,Internet Explorer 13,15,2018-08-26 +session,1835,2,Firefox 37,46,2017-05-14 +session,1835,3,Chrome 32,117,2018-12-03 +session,1835,4,Chrome 42,32,2018-12-10 +session,1835,5,Firefox 39,17,2017-11-09 +session,1835,6,Firefox 24,107,2018-04-22 +session,1835,7,Internet Explorer 29,115,2018-08-20 +session,1835,8,Chrome 22,15,2017-06-26 +user,1836,Joni,Nicki,83 +session,1836,0,Firefox 19,44,2018-09-24 +user,1837,Lauretta,Coralie,46 +session,1837,0,Internet Explorer 23,2,2017-02-14 +user,1838,Randell,Clair,1 +session,1838,0,Internet Explorer 47,43,2018-03-25 +user,1839,Sherrie,Hillary,11 +session,1839,0,Firefox 23,55,2017-05-12 +session,1839,1,Safari 47,84,2019-01-26 +session,1839,2,Internet Explorer 29,76,2017-01-02 +session,1839,3,Chrome 7,8,2017-08-23 +user,1840,Natosha,Roxana,29 +session,1840,0,Chrome 7,70,2017-06-25 +session,1840,1,Firefox 31,82,2018-10-26 +session,1840,2,Safari 10,39,2018-01-05 +session,1840,3,Internet Explorer 50,86,2017-07-08 +session,1840,4,Internet Explorer 34,94,2017-11-24 +session,1840,5,Firefox 38,0,2017-03-30 +session,1840,6,Chrome 10,30,2018-03-03 +session,1840,7,Chrome 11,1,2018-11-22 +session,1840,8,Chrome 9,75,2016-10-28 +session,1840,9,Internet Explorer 41,55,2018-05-30 +user,1841,Deonna,Albina,82 +session,1841,0,Firefox 19,77,2018-12-15 +session,1841,1,Chrome 28,25,2017-03-04 +user,1842,Alesia,Dottie,75 +session,1842,0,Chrome 38,13,2017-12-09 +session,1842,1,Internet Explorer 5,12,2016-11-25 +session,1842,2,Safari 45,16,2016-12-03 +session,1842,3,Firefox 48,43,2016-05-25 +session,1842,4,Safari 11,36,2016-10-04 +user,1843,Trevor,Yanira,89 +session,1843,0,Safari 17,85,2017-12-17 +session,1843,1,Chrome 39,95,2018-08-07 +session,1843,2,Firefox 8,40,2018-04-11 +session,1843,3,Safari 49,96,2016-12-31 +session,1843,4,Safari 31,83,2017-07-04 +session,1843,5,Firefox 19,111,2016-10-19 +user,1844,Evelia,Detra,12 +session,1844,0,Internet Explorer 21,100,2018-04-24 +session,1844,1,Internet Explorer 29,72,2018-12-28 +session,1844,2,Firefox 19,9,2018-06-18 +session,1844,3,Safari 30,61,2016-09-26 +session,1844,4,Safari 8,78,2018-10-27 +session,1844,5,Safari 1,34,2016-08-06 +user,1845,Stephen,Darci,19 +session,1845,0,Firefox 38,44,2016-07-05 +session,1845,1,Safari 48,0,2016-07-07 +session,1845,2,Safari 24,99,2016-10-03 +session,1845,3,Safari 48,70,2017-10-11 +session,1845,4,Safari 4,66,2017-01-31 +session,1845,5,Chrome 23,79,2017-02-19 +session,1845,6,Firefox 25,62,2018-03-14 +session,1845,7,Safari 48,14,2017-08-26 +session,1845,8,Internet Explorer 33,53,2017-02-26 +user,1846,Joslyn,Hayden,8 +session,1846,0,Internet Explorer 44,98,2018-09-20 +session,1846,1,Chrome 21,53,2017-07-14 +session,1846,2,Safari 29,32,2017-02-23 +user,1847,Felix,Sharolyn,98 +session,1847,0,Chrome 2,86,2019-01-03 +session,1847,1,Safari 50,11,2017-10-16 +session,1847,2,Internet Explorer 7,49,2016-11-17 +session,1847,3,Chrome 46,118,2018-07-08 +session,1847,4,Internet Explorer 19,38,2016-08-03 +session,1847,5,Firefox 43,3,2018-01-05 +session,1847,6,Chrome 31,3,2018-11-14 +session,1847,7,Safari 43,78,2017-07-12 +user,1848,Maybelle,Marivel,23 +session,1848,0,Firefox 34,29,2018-02-26 +session,1848,1,Chrome 37,25,2017-10-23 +session,1848,2,Chrome 19,102,2018-12-27 +session,1848,3,Firefox 34,83,2017-01-10 +user,1849,Yolando,Annis,14 +session,1849,0,Chrome 23,69,2016-07-10 +user,1850,Nick,Gabrielle,81 +session,1850,0,Internet Explorer 2,23,2018-11-26 +session,1850,1,Internet Explorer 46,35,2017-11-07 +session,1850,2,Internet Explorer 3,78,2017-10-10 +session,1850,3,Firefox 28,53,2016-10-30 +session,1850,4,Chrome 17,90,2018-05-21 +user,1851,Santo,Donya,46 +session,1851,0,Internet Explorer 38,104,2018-06-25 +session,1851,1,Safari 46,62,2016-12-17 +user,1852,Lavenia,Brigitte,65 +session,1852,0,Firefox 49,34,2017-08-25 +session,1852,1,Chrome 35,27,2018-05-23 +session,1852,2,Internet Explorer 46,87,2017-06-14 +session,1852,3,Chrome 19,92,2018-03-14 +session,1852,4,Chrome 16,79,2017-03-24 +session,1852,5,Chrome 29,112,2018-09-03 +user,1853,Frank,Charlyn,64 +session,1853,0,Internet Explorer 13,116,2016-12-05 +session,1853,1,Chrome 39,8,2017-08-24 +session,1853,2,Firefox 11,17,2018-05-27 +user,1854,Charise,Becki,32 +session,1854,0,Firefox 8,99,2017-05-21 +session,1854,1,Internet Explorer 11,17,2019-02-06 +session,1854,2,Safari 3,27,2018-02-11 +session,1854,3,Firefox 22,6,2018-10-28 +session,1854,4,Safari 49,119,2017-03-12 +session,1854,5,Chrome 12,100,2017-10-27 +session,1854,6,Firefox 38,53,2017-09-08 +session,1854,7,Chrome 44,65,2016-12-04 +session,1854,8,Internet Explorer 48,99,2019-01-01 +session,1854,9,Firefox 38,46,2018-07-31 +user,1855,Quentin,Mindi,32 +session,1855,0,Safari 28,56,2018-02-28 +session,1855,1,Safari 36,78,2016-07-05 +session,1855,2,Firefox 12,3,2017-05-02 +session,1855,3,Safari 45,103,2016-10-15 +session,1855,4,Firefox 2,48,2017-11-18 +user,1856,Katrina,Merri,15 +session,1856,0,Firefox 29,96,2018-04-25 +session,1856,1,Safari 32,78,2017-01-12 +user,1857,Norma,Rory,35 +session,1857,0,Safari 5,22,2016-08-25 +session,1857,1,Internet Explorer 2,36,2016-08-18 +session,1857,2,Internet Explorer 23,8,2018-08-29 +session,1857,3,Safari 27,103,2018-03-11 +session,1857,4,Chrome 24,91,2017-09-22 +session,1857,5,Safari 49,20,2016-09-20 +user,1858,Marco,Lamont,60 +session,1858,0,Firefox 4,117,2018-10-06 +session,1858,1,Chrome 48,105,2017-05-20 +session,1858,2,Chrome 36,40,2017-05-23 +session,1858,3,Chrome 4,4,2016-08-16 +session,1858,4,Firefox 35,26,2017-04-21 +session,1858,5,Safari 18,77,2018-02-18 +user,1859,Granville,Deloras,71 +session,1859,0,Internet Explorer 15,31,2018-02-23 +session,1859,1,Chrome 31,117,2018-05-23 +session,1859,2,Firefox 28,101,2018-09-19 +session,1859,3,Chrome 8,82,2016-09-27 +session,1859,4,Chrome 33,104,2017-10-04 +session,1859,5,Chrome 35,45,2017-08-03 +session,1859,6,Firefox 48,76,2017-07-19 +session,1859,7,Safari 45,8,2019-01-20 +session,1859,8,Safari 27,102,2018-07-18 +session,1859,9,Firefox 42,37,2016-08-08 +user,1860,Janae,Kathleen,10 +session,1860,0,Firefox 6,27,2018-08-17 +session,1860,1,Chrome 50,18,2017-12-10 +session,1860,2,Firefox 6,0,2017-02-17 +session,1860,3,Firefox 28,106,2018-12-07 +session,1860,4,Chrome 19,45,2018-06-19 +session,1860,5,Internet Explorer 45,103,2016-08-30 +session,1860,6,Safari 9,67,2018-03-09 +session,1860,7,Safari 41,11,2017-03-29 +session,1860,8,Firefox 8,36,2018-02-09 +user,1861,Trinidad,Sanjuana,24 +session,1861,0,Safari 23,104,2017-01-11 +session,1861,1,Safari 8,69,2016-10-08 +session,1861,2,Chrome 7,107,2018-12-06 +user,1862,Stephan,Cheyenne,59 +session,1862,0,Internet Explorer 32,46,2017-04-06 +session,1862,1,Internet Explorer 14,36,2018-03-11 +session,1862,2,Internet Explorer 29,21,2016-07-08 +session,1862,3,Chrome 20,44,2018-04-15 +session,1862,4,Safari 25,34,2016-12-28 +session,1862,5,Firefox 24,10,2017-03-13 +session,1862,6,Safari 15,105,2017-10-04 +session,1862,7,Safari 2,115,2017-01-31 +session,1862,8,Internet Explorer 34,67,2018-11-06 +session,1862,9,Internet Explorer 43,39,2016-09-02 +user,1863,Wilbert,Merlin,55 +session,1863,0,Safari 31,12,2018-02-07 +session,1863,1,Safari 30,111,2017-08-31 +session,1863,2,Internet Explorer 21,26,2017-05-25 +session,1863,3,Firefox 44,12,2017-09-10 +user,1864,Felix,Shavonda,86 +session,1864,0,Firefox 21,15,2017-11-12 +session,1864,1,Chrome 15,47,2017-09-03 +session,1864,2,Chrome 33,117,2018-06-06 +session,1864,3,Chrome 15,49,2017-04-15 +session,1864,4,Firefox 50,32,2017-05-09 +user,1865,Chase,Felicitas,31 +session,1865,0,Firefox 12,76,2017-02-16 +session,1865,1,Firefox 17,82,2018-04-01 +session,1865,2,Chrome 34,4,2018-12-22 +session,1865,3,Firefox 33,67,2017-12-22 +session,1865,4,Firefox 44,6,2017-08-02 +session,1865,5,Chrome 48,18,2018-12-08 +session,1865,6,Safari 30,79,2016-12-06 +session,1865,7,Firefox 14,117,2016-11-13 +user,1866,Carley,Pat,54 +session,1866,0,Safari 22,97,2017-08-24 +session,1866,1,Safari 21,14,2016-08-09 +user,1867,Lizbeth,Allene,54 +session,1867,0,Internet Explorer 17,99,2016-07-31 +user,1868,Jeanelle,Angela,21 +session,1868,0,Internet Explorer 3,69,2016-12-31 +session,1868,1,Chrome 37,109,2018-05-12 +session,1868,2,Safari 11,92,2017-03-24 +session,1868,3,Safari 7,116,2017-05-16 +user,1869,Mark,Alline,14 +session,1869,0,Chrome 17,87,2018-04-25 +session,1869,1,Firefox 15,94,2017-06-27 +user,1870,Randell,Jane,48 +session,1870,0,Safari 48,76,2017-10-11 +session,1870,1,Safari 12,108,2017-01-27 +session,1870,2,Chrome 35,67,2018-11-16 +session,1870,3,Firefox 26,107,2018-11-24 +session,1870,4,Internet Explorer 10,57,2017-11-03 +session,1870,5,Internet Explorer 42,86,2017-04-11 +session,1870,6,Chrome 32,50,2017-03-12 +user,1871,Shela,Viviana,97 +session,1871,0,Safari 5,39,2017-01-12 +session,1871,1,Internet Explorer 35,93,2017-03-25 +session,1871,2,Firefox 3,51,2017-05-05 +session,1871,3,Safari 50,109,2017-12-29 +session,1871,4,Internet Explorer 23,24,2017-03-21 +session,1871,5,Chrome 33,4,2018-08-08 +session,1871,6,Internet Explorer 35,77,2017-07-25 +session,1871,7,Internet Explorer 7,47,2017-05-25 +user,1872,Tova,Kayce,2 +session,1872,0,Safari 35,45,2016-09-28 +session,1872,1,Safari 39,62,2016-10-18 +session,1872,2,Safari 39,17,2018-09-13 +session,1872,3,Chrome 11,117,2018-07-01 +session,1872,4,Safari 48,26,2018-08-18 +session,1872,5,Chrome 32,15,2017-06-06 +user,1873,Bennie,Bennie,5 +session,1873,0,Chrome 43,61,2017-03-25 +session,1873,1,Firefox 9,116,2018-08-02 +user,1874,Eleni,Quentin,3 +session,1874,0,Safari 46,81,2018-01-17 +session,1874,1,Chrome 19,54,2018-05-15 +session,1874,2,Chrome 49,10,2017-06-01 +session,1874,3,Firefox 18,110,2016-11-24 +session,1874,4,Firefox 4,7,2018-12-27 +session,1874,5,Firefox 27,43,2017-06-30 +session,1874,6,Safari 35,66,2018-10-14 +session,1874,7,Chrome 40,23,2017-11-22 +session,1874,8,Safari 11,76,2018-02-25 +user,1875,Tandy,Sarah,80 +session,1875,0,Internet Explorer 12,102,2017-10-21 +session,1875,1,Internet Explorer 22,76,2016-12-18 +session,1875,2,Firefox 45,27,2017-07-03 +session,1875,3,Safari 20,114,2017-12-27 +session,1875,4,Firefox 45,79,2017-04-25 +session,1875,5,Firefox 18,48,2018-08-25 +session,1875,6,Firefox 5,15,2016-05-26 +session,1875,7,Internet Explorer 10,56,2016-10-02 +session,1875,8,Safari 1,82,2017-05-05 +session,1875,9,Firefox 7,70,2016-12-10 +user,1876,Augustus,Missy,6 +session,1876,0,Firefox 29,17,2017-07-05 +session,1876,1,Safari 43,77,2017-08-01 +session,1876,2,Safari 18,76,2019-01-30 +session,1876,3,Firefox 43,42,2018-06-25 +session,1876,4,Internet Explorer 31,29,2017-09-12 +user,1877,Chris,Olimpia,40 +session,1877,0,Firefox 10,53,2016-09-07 +session,1877,1,Safari 6,20,2018-05-19 +session,1877,2,Internet Explorer 13,93,2017-06-14 +session,1877,3,Internet Explorer 40,5,2017-11-22 +session,1877,4,Internet Explorer 1,118,2018-12-03 +session,1877,5,Firefox 42,4,2018-01-20 +session,1877,6,Chrome 24,50,2016-12-27 +session,1877,7,Chrome 50,91,2017-12-11 +session,1877,8,Firefox 14,79,2017-07-04 +session,1877,9,Internet Explorer 48,107,2018-01-10 +user,1878,Cleopatra,Kami,99 +session,1878,0,Safari 10,98,2017-04-21 +session,1878,1,Internet Explorer 27,103,2016-12-21 +user,1879,Davida,Lavera,83 +session,1879,0,Firefox 24,85,2018-02-06 +session,1879,1,Chrome 34,114,2016-12-06 +session,1879,2,Firefox 10,71,2018-05-22 +session,1879,3,Internet Explorer 9,30,2017-06-04 +session,1879,4,Firefox 19,47,2018-12-14 +session,1879,5,Firefox 21,117,2018-07-14 +session,1879,6,Firefox 43,71,2018-10-02 +session,1879,7,Chrome 12,105,2016-08-16 +session,1879,8,Internet Explorer 20,51,2016-07-05 +session,1879,9,Firefox 27,75,2017-12-18 +user,1880,Tad,Allen,32 +session,1880,0,Internet Explorer 33,39,2017-09-16 +session,1880,1,Safari 29,26,2018-04-24 +session,1880,2,Chrome 43,62,2017-10-12 +session,1880,3,Firefox 21,50,2017-03-12 +user,1881,Hai,Jacquelyne,86 +session,1881,0,Internet Explorer 7,67,2017-03-06 +session,1881,1,Chrome 26,45,2018-02-26 +session,1881,2,Firefox 44,116,2017-10-17 +session,1881,3,Internet Explorer 5,49,2017-07-14 +session,1881,4,Chrome 40,95,2018-04-14 +session,1881,5,Safari 9,14,2018-06-14 +user,1882,Carlyn,Christene,65 +session,1882,0,Safari 8,116,2017-04-16 +session,1882,1,Safari 27,48,2018-02-01 +session,1882,2,Internet Explorer 38,46,2017-11-07 +session,1882,3,Chrome 45,18,2018-09-08 +session,1882,4,Safari 32,43,2018-11-18 +session,1882,5,Firefox 23,20,2017-08-14 +session,1882,6,Internet Explorer 31,9,2018-03-22 +user,1883,Matthew,Tameika,44 +session,1883,0,Internet Explorer 25,87,2018-05-28 +session,1883,1,Firefox 40,113,2017-07-21 +session,1883,2,Safari 16,105,2018-04-04 +session,1883,3,Safari 16,37,2016-12-15 +user,1884,Inge,Myron,39 +session,1884,0,Firefox 25,99,2016-12-26 +session,1884,1,Safari 46,91,2019-01-04 +session,1884,2,Firefox 31,29,2016-10-02 +user,1885,Nancy,Nereida,2 +session,1885,0,Chrome 33,59,2018-12-09 +session,1885,1,Internet Explorer 13,94,2017-01-13 +user,1886,Marita,Marx,58 +session,1886,0,Internet Explorer 14,79,2018-12-19 +session,1886,1,Chrome 35,47,2017-12-02 +session,1886,2,Internet Explorer 35,23,2018-02-12 +session,1886,3,Chrome 36,9,2017-02-01 +session,1886,4,Chrome 12,21,2017-02-07 +session,1886,5,Firefox 20,11,2016-12-25 +session,1886,6,Firefox 36,30,2017-09-05 +session,1886,7,Internet Explorer 42,12,2018-08-12 +user,1887,Marc,Laverne,63 +session,1887,0,Internet Explorer 7,57,2017-09-23 +session,1887,1,Chrome 22,17,2018-02-13 +user,1888,Tina,Zack,19 +session,1888,0,Internet Explorer 31,60,2017-01-14 +session,1888,1,Firefox 49,10,2018-02-06 +user,1889,Debora,Tam,90 +session,1889,0,Safari 19,106,2017-02-24 +session,1889,1,Firefox 17,29,2017-07-18 +session,1889,2,Firefox 14,22,2017-11-29 +session,1889,3,Safari 45,7,2019-01-17 +session,1889,4,Internet Explorer 15,29,2017-12-13 +session,1889,5,Chrome 37,29,2018-07-11 +session,1889,6,Chrome 24,2,2018-04-09 +user,1890,Harland,Keren,41 +session,1890,0,Chrome 35,18,2016-09-23 +session,1890,1,Firefox 33,119,2018-10-31 +session,1890,2,Internet Explorer 40,19,2018-08-05 +session,1890,3,Firefox 47,101,2018-11-16 +session,1890,4,Safari 14,82,2017-04-18 +session,1890,5,Safari 25,51,2017-10-22 +session,1890,6,Internet Explorer 39,48,2017-05-26 +session,1890,7,Internet Explorer 15,110,2017-11-05 +session,1890,8,Internet Explorer 6,110,2018-10-16 +user,1891,Cheree,Shanae,14 +session,1891,0,Firefox 4,49,2017-07-20 +session,1891,1,Safari 44,7,2016-09-26 +session,1891,2,Chrome 28,67,2018-03-08 +session,1891,3,Internet Explorer 12,68,2017-05-03 +user,1892,Deeann,Zackary,2 +session,1892,0,Safari 20,35,2017-01-09 +session,1892,1,Safari 10,9,2017-07-25 +session,1892,2,Firefox 29,58,2018-04-27 +session,1892,3,Chrome 24,33,2017-07-29 +session,1892,4,Firefox 21,35,2018-10-25 +session,1892,5,Chrome 3,12,2017-09-07 +session,1892,6,Safari 47,97,2018-05-23 +session,1892,7,Chrome 29,89,2018-11-24 +session,1892,8,Chrome 24,37,2016-10-22 +session,1892,9,Internet Explorer 26,92,2017-05-24 +user,1893,Malcolm,Charleen,8 +session,1893,0,Chrome 44,101,2017-05-01 +user,1894,Grady,Ermelinda,2 +session,1894,0,Safari 6,10,2018-08-16 +session,1894,1,Chrome 6,119,2016-09-22 +session,1894,2,Firefox 16,113,2018-04-03 +user,1895,Tiffanie,Kenna,64 +session,1895,0,Firefox 22,50,2016-10-14 +session,1895,1,Firefox 13,56,2017-09-24 +session,1895,2,Chrome 38,65,2018-04-06 +session,1895,3,Safari 47,95,2017-12-05 +user,1896,Rolland,Vesta,48 +session,1896,0,Chrome 44,86,2018-07-07 +session,1896,1,Internet Explorer 1,68,2018-03-16 +session,1896,2,Chrome 34,65,2017-03-27 +session,1896,3,Firefox 5,51,2018-10-27 +user,1897,Fausto,Rosalinda,97 +session,1897,0,Safari 4,0,2018-03-14 +session,1897,1,Safari 30,16,2016-12-01 +session,1897,2,Firefox 3,97,2017-07-30 +user,1898,Reta,Gretta,5 +session,1898,0,Chrome 42,19,2017-02-10 +session,1898,1,Internet Explorer 13,47,2017-11-03 +session,1898,2,Firefox 27,62,2016-07-21 +session,1898,3,Internet Explorer 17,60,2016-12-03 +session,1898,4,Internet Explorer 18,7,2016-10-23 +session,1898,5,Firefox 21,89,2018-03-11 +session,1898,6,Internet Explorer 20,62,2018-02-15 +session,1898,7,Safari 41,79,2016-10-24 +session,1898,8,Safari 7,65,2018-10-16 +session,1898,9,Firefox 16,31,2016-08-26 +user,1899,Arnulfo,Hyun,55 +session,1899,0,Internet Explorer 5,97,2016-11-13 +session,1899,1,Firefox 35,36,2019-01-07 +session,1899,2,Internet Explorer 40,63,2016-10-06 +session,1899,3,Chrome 32,67,2016-06-07 +user,1900,Shayne,Jana,88 +session,1900,0,Safari 33,74,2018-01-17 +session,1900,1,Firefox 48,114,2018-07-26 +session,1900,2,Chrome 32,26,2017-05-14 +session,1900,3,Firefox 48,61,2017-12-16 +session,1900,4,Internet Explorer 12,4,2017-07-02 +session,1900,5,Firefox 49,1,2018-08-19 +session,1900,6,Internet Explorer 6,42,2018-07-17 +session,1900,7,Safari 32,4,2017-08-16 +session,1900,8,Chrome 36,74,2018-09-04 +user,1901,Avis,Vito,60 +session,1901,0,Firefox 24,74,2016-06-26 +session,1901,1,Internet Explorer 19,59,2018-05-22 +session,1901,2,Safari 37,90,2017-08-04 +session,1901,3,Firefox 26,119,2018-10-25 +session,1901,4,Chrome 32,5,2017-09-06 +session,1901,5,Safari 42,91,2016-12-22 +session,1901,6,Firefox 2,39,2017-07-30 +user,1902,Lucas,Ying,38 +session,1902,0,Firefox 14,53,2017-06-06 +session,1902,1,Internet Explorer 27,37,2017-09-13 +session,1902,2,Safari 45,67,2018-07-31 +session,1902,3,Chrome 20,103,2018-03-12 +session,1902,4,Internet Explorer 43,21,2017-12-19 +session,1902,5,Firefox 12,62,2017-07-01 +session,1902,6,Firefox 39,25,2018-02-17 +session,1902,7,Firefox 40,62,2018-11-12 +session,1902,8,Safari 8,34,2016-10-22 +user,1903,Tiffaney,Reta,49 +session,1903,0,Internet Explorer 6,8,2018-03-04 +session,1903,1,Internet Explorer 23,52,2016-07-02 +session,1903,2,Chrome 27,6,2017-11-09 +user,1904,Cody,Erwin,41 +session,1904,0,Chrome 13,59,2017-11-06 +session,1904,1,Internet Explorer 9,109,2016-12-02 +session,1904,2,Chrome 14,76,2016-09-06 +session,1904,3,Safari 1,97,2018-10-03 +session,1904,4,Internet Explorer 3,116,2017-04-09 +session,1904,5,Chrome 1,70,2018-07-18 +session,1904,6,Firefox 4,31,2016-05-28 +user,1905,Sherryl,Magda,20 +session,1905,0,Chrome 25,24,2018-06-27 +session,1905,1,Safari 8,111,2019-01-10 +session,1905,2,Safari 35,59,2019-01-09 +user,1906,Arthur,Theo,24 +session,1906,0,Internet Explorer 33,19,2017-07-07 +session,1906,1,Internet Explorer 16,78,2018-06-10 +session,1906,2,Safari 40,115,2018-08-02 +session,1906,3,Internet Explorer 20,107,2017-11-11 +session,1906,4,Safari 47,106,2018-02-15 +session,1906,5,Firefox 27,18,2017-06-19 +session,1906,6,Internet Explorer 36,31,2018-11-17 +user,1907,Brittanie,Jordan,75 +session,1907,0,Internet Explorer 48,60,2018-09-21 +user,1908,Zulma,Leoma,18 +session,1908,0,Internet Explorer 16,66,2016-09-09 +user,1909,Kevin,Anitra,57 +session,1909,0,Firefox 27,66,2018-05-14 +session,1909,1,Internet Explorer 14,4,2016-08-22 +session,1909,2,Internet Explorer 22,53,2018-11-27 +session,1909,3,Chrome 5,46,2018-07-08 +session,1909,4,Firefox 22,119,2017-03-23 +session,1909,5,Internet Explorer 38,54,2018-09-24 +session,1909,6,Safari 6,117,2018-05-06 +user,1910,Arturo,Tarra,25 +session,1910,0,Safari 36,9,2017-05-28 +session,1910,1,Internet Explorer 26,55,2018-11-13 +session,1910,2,Chrome 48,6,2018-08-22 +session,1910,3,Safari 11,110,2019-02-06 +session,1910,4,Internet Explorer 1,82,2017-05-07 +session,1910,5,Safari 18,117,2017-03-31 +session,1910,6,Firefox 12,91,2018-05-13 +user,1911,Lavonia,Adolph,67 +session,1911,0,Chrome 12,8,2018-01-25 +session,1911,1,Firefox 39,117,2017-11-07 +session,1911,2,Safari 29,112,2018-04-27 +session,1911,3,Chrome 14,53,2018-03-01 +session,1911,4,Chrome 6,2,2018-06-22 +session,1911,5,Internet Explorer 22,9,2018-01-27 +session,1911,6,Internet Explorer 39,4,2016-08-26 +session,1911,7,Safari 1,40,2018-10-27 +session,1911,8,Firefox 43,8,2019-02-04 +user,1912,Myrtie,Tomika,71 +session,1912,0,Firefox 23,108,2017-07-02 +session,1912,1,Internet Explorer 44,51,2016-09-26 +session,1912,2,Internet Explorer 42,75,2016-12-04 +session,1912,3,Internet Explorer 18,53,2019-02-05 +session,1912,4,Firefox 17,6,2018-01-09 +session,1912,5,Chrome 31,2,2017-02-14 +session,1912,6,Internet Explorer 3,1,2018-04-27 +session,1912,7,Chrome 21,66,2016-10-04 +session,1912,8,Chrome 22,92,2017-02-22 +user,1913,Harry,Trang,42 +session,1913,0,Firefox 30,17,2016-06-09 +session,1913,1,Internet Explorer 18,113,2018-06-20 +session,1913,2,Firefox 5,102,2017-12-16 +session,1913,3,Internet Explorer 50,67,2018-11-18 +user,1914,Deloris,Jared,96 +session,1914,0,Internet Explorer 26,79,2018-09-26 +session,1914,1,Firefox 31,94,2016-09-08 +session,1914,2,Internet Explorer 17,90,2017-11-12 +session,1914,3,Internet Explorer 18,2,2016-09-16 +session,1914,4,Internet Explorer 35,29,2017-12-31 +session,1914,5,Safari 36,108,2017-08-16 +session,1914,6,Chrome 23,33,2017-12-24 +session,1914,7,Internet Explorer 21,96,2017-04-24 +session,1914,8,Firefox 18,22,2018-10-10 +user,1915,Hae,Leland,1 +session,1915,0,Internet Explorer 41,13,2017-05-28 +session,1915,1,Safari 45,119,2018-10-09 +session,1915,2,Firefox 38,116,2018-10-04 +session,1915,3,Internet Explorer 36,75,2016-11-09 +session,1915,4,Chrome 28,15,2017-09-21 +session,1915,5,Chrome 41,92,2016-08-18 +session,1915,6,Safari 16,51,2017-03-17 +session,1915,7,Chrome 48,5,2018-09-07 +session,1915,8,Firefox 50,16,2018-05-06 +session,1915,9,Internet Explorer 11,88,2018-12-09 +user,1916,Dreama,Kip,38 +session,1916,0,Chrome 19,116,2018-11-12 +session,1916,1,Safari 2,73,2018-08-22 +session,1916,2,Chrome 41,5,2016-11-18 +session,1916,3,Firefox 50,69,2017-03-31 +session,1916,4,Safari 1,13,2017-05-14 +session,1916,5,Chrome 14,106,2017-11-14 +session,1916,6,Chrome 14,66,2019-01-19 +user,1917,Cyrus,Mariel,33 +session,1917,0,Safari 9,50,2018-04-10 +session,1917,1,Internet Explorer 12,46,2017-02-26 +session,1917,2,Firefox 13,79,2017-12-11 +user,1918,Daniell,King,43 +session,1918,0,Chrome 38,99,2018-12-09 +session,1918,1,Safari 1,108,2017-09-12 +session,1918,2,Safari 2,118,2019-01-18 +session,1918,3,Safari 39,89,2017-07-12 +session,1918,4,Firefox 28,96,2018-01-05 +user,1919,Claud,Sima,46 +session,1919,0,Internet Explorer 3,36,2017-05-25 +session,1919,1,Firefox 27,0,2017-01-08 +session,1919,2,Safari 16,84,2017-01-30 +user,1920,Loise,Concetta,34 +session,1920,0,Chrome 18,72,2018-08-30 +session,1920,1,Internet Explorer 27,100,2019-01-12 +session,1920,2,Safari 14,50,2017-05-02 +session,1920,3,Firefox 11,78,2017-08-13 +session,1920,4,Chrome 28,61,2018-11-10 +session,1920,5,Chrome 43,110,2018-12-22 +session,1920,6,Safari 32,70,2017-11-29 +session,1920,7,Firefox 41,69,2017-07-03 +user,1921,Bob,Dell,93 +session,1921,0,Safari 34,86,2017-04-09 +session,1921,1,Safari 29,26,2017-01-27 +session,1921,2,Firefox 19,44,2018-01-29 +session,1921,3,Chrome 5,92,2017-01-10 +session,1921,4,Chrome 37,42,2018-06-12 +session,1921,5,Internet Explorer 46,115,2018-05-20 +user,1922,Shayne,Twana,46 +session,1922,0,Internet Explorer 35,92,2018-12-12 +session,1922,1,Chrome 19,56,2017-09-29 +session,1922,2,Safari 25,52,2017-04-22 +session,1922,3,Chrome 3,88,2018-11-14 +session,1922,4,Safari 13,92,2017-08-31 +user,1923,Jeannine,Tonya,49 +session,1923,0,Safari 23,109,2016-05-29 +session,1923,1,Safari 9,13,2017-03-21 +session,1923,2,Firefox 12,61,2018-09-28 +session,1923,3,Firefox 49,70,2017-06-21 +session,1923,4,Internet Explorer 10,5,2018-08-29 +session,1923,5,Internet Explorer 40,82,2018-01-01 +session,1923,6,Firefox 29,51,2016-09-30 +session,1923,7,Chrome 8,76,2017-03-04 +user,1924,Brad,Jonie,67 +session,1924,0,Chrome 26,70,2016-12-31 +session,1924,1,Firefox 45,33,2017-01-23 +session,1924,2,Chrome 37,36,2018-01-16 +session,1924,3,Chrome 19,96,2018-03-22 +session,1924,4,Chrome 31,36,2018-01-29 +session,1924,5,Internet Explorer 10,93,2016-12-07 +session,1924,6,Safari 35,62,2016-11-04 +session,1924,7,Chrome 36,90,2016-08-27 +session,1924,8,Internet Explorer 28,40,2017-11-05 +session,1924,9,Safari 24,66,2019-01-05 +user,1925,Tarra,Lavonia,16 +session,1925,0,Firefox 37,51,2016-08-09 +session,1925,1,Internet Explorer 14,3,2018-04-25 +session,1925,2,Safari 4,14,2016-06-06 +session,1925,3,Internet Explorer 11,105,2017-11-09 +session,1925,4,Chrome 9,42,2016-08-03 +session,1925,5,Safari 28,34,2017-03-15 +session,1925,6,Firefox 8,67,2018-06-25 +session,1925,7,Internet Explorer 18,12,2019-01-24 +user,1926,Jeanna,Justa,74 +session,1926,0,Chrome 32,23,2018-03-30 +session,1926,1,Firefox 46,56,2018-07-01 +session,1926,2,Firefox 7,26,2017-02-23 +session,1926,3,Internet Explorer 50,68,2016-08-21 +session,1926,4,Safari 48,109,2017-10-15 +session,1926,5,Safari 18,67,2017-04-01 +session,1926,6,Firefox 48,43,2017-11-06 +user,1927,Tuyet,Katherin,24 +session,1927,0,Firefox 15,77,2018-09-10 +session,1927,1,Internet Explorer 38,65,2018-03-24 +session,1927,2,Firefox 7,16,2017-04-20 +session,1927,3,Safari 30,3,2016-12-02 +session,1927,4,Safari 1,6,2016-08-15 +session,1927,5,Firefox 6,90,2018-05-14 +session,1927,6,Firefox 25,43,2016-07-27 +session,1927,7,Safari 23,66,2018-04-24 +session,1927,8,Firefox 11,78,2016-09-17 +session,1927,9,Internet Explorer 15,54,2018-03-26 +user,1928,Loni,Simonne,91 +session,1928,0,Internet Explorer 27,98,2017-06-08 +session,1928,1,Firefox 50,7,2018-04-13 +session,1928,2,Safari 27,13,2017-07-06 +session,1928,3,Firefox 41,100,2017-04-01 +session,1928,4,Safari 18,72,2017-03-19 +user,1929,Anthony,Libbie,37 +session,1929,0,Firefox 35,44,2018-11-11 +session,1929,1,Firefox 45,30,2018-10-12 +session,1929,2,Internet Explorer 23,30,2016-10-01 +session,1929,3,Firefox 28,102,2016-12-10 +user,1930,Le,Gayle,49 +session,1930,0,Internet Explorer 5,57,2018-03-12 +session,1930,1,Internet Explorer 29,20,2016-10-16 +session,1930,2,Firefox 3,35,2017-12-04 +session,1930,3,Safari 32,36,2018-08-23 +user,1931,Myrtis,Trevor,24 +session,1931,0,Safari 8,30,2017-02-10 +session,1931,1,Firefox 6,86,2018-03-30 +session,1931,2,Firefox 29,52,2017-01-25 +user,1932,Eddy,Shavonne,32 +session,1932,0,Safari 14,99,2018-04-24 +session,1932,1,Safari 11,111,2018-01-31 +session,1932,2,Chrome 31,9,2017-05-22 +session,1932,3,Firefox 10,104,2018-11-26 +session,1932,4,Chrome 5,113,2016-09-10 +session,1932,5,Internet Explorer 15,76,2019-02-09 +session,1932,6,Internet Explorer 38,26,2017-06-19 +session,1932,7,Safari 34,61,2018-08-16 +user,1933,Sydney,Jen,42 +session,1933,0,Safari 34,3,2018-01-26 +session,1933,1,Safari 17,40,2017-06-16 +session,1933,2,Firefox 17,89,2018-07-20 +session,1933,3,Firefox 49,75,2017-04-08 +session,1933,4,Chrome 29,94,2017-09-30 +session,1933,5,Chrome 37,115,2017-11-05 +session,1933,6,Chrome 47,36,2017-06-19 +user,1934,Hertha,Sanford,86 +session,1934,0,Chrome 35,63,2018-01-24 +session,1934,1,Safari 42,29,2018-01-04 +session,1934,2,Internet Explorer 39,57,2017-07-25 +session,1934,3,Chrome 32,39,2018-09-25 +session,1934,4,Firefox 38,4,2018-07-06 +session,1934,5,Safari 49,3,2016-08-13 +session,1934,6,Firefox 4,113,2018-04-01 +session,1934,7,Internet Explorer 29,16,2018-08-25 +session,1934,8,Safari 18,106,2018-02-08 +user,1935,Pete,Noel,54 +session,1935,0,Internet Explorer 30,76,2018-06-20 +session,1935,1,Firefox 30,45,2018-04-02 +session,1935,2,Safari 27,26,2017-10-09 +session,1935,3,Firefox 28,78,2017-09-11 +session,1935,4,Firefox 13,68,2017-11-18 +session,1935,5,Firefox 18,85,2018-06-04 +session,1935,6,Internet Explorer 24,109,2017-05-10 +session,1935,7,Firefox 12,104,2018-01-01 +user,1936,Kip,Johnnie,85 +session,1936,0,Internet Explorer 42,59,2018-12-08 +session,1936,1,Chrome 42,104,2019-01-28 +session,1936,2,Firefox 39,44,2018-11-20 +session,1936,3,Chrome 28,100,2018-10-28 +session,1936,4,Internet Explorer 21,94,2017-09-07 +session,1936,5,Internet Explorer 27,22,2016-08-02 +session,1936,6,Safari 24,7,2019-01-29 +session,1936,7,Internet Explorer 42,116,2017-10-30 +session,1936,8,Chrome 49,0,2018-03-31 +session,1936,9,Safari 13,104,2016-12-20 +user,1937,Ophelia,Darren,88 +session,1937,0,Safari 11,48,2018-01-19 +session,1937,1,Internet Explorer 30,75,2018-06-08 +session,1937,2,Firefox 46,48,2017-03-02 +session,1937,3,Safari 48,25,2018-01-19 +user,1938,Tamra,Verline,70 +session,1938,0,Safari 27,69,2018-01-12 +session,1938,1,Chrome 17,107,2016-11-10 +user,1939,Otis,Carri,92 +session,1939,0,Safari 20,24,2018-11-20 +session,1939,1,Chrome 21,31,2016-07-04 +session,1939,2,Chrome 18,85,2018-12-15 +user,1940,Modesto,Georgia,53 +session,1940,0,Internet Explorer 43,70,2017-11-29 +session,1940,1,Safari 21,40,2016-12-01 +session,1940,2,Firefox 37,13,2017-09-01 +session,1940,3,Firefox 29,12,2018-07-12 +session,1940,4,Chrome 15,41,2018-01-05 +session,1940,5,Safari 34,116,2018-10-16 +session,1940,6,Chrome 46,90,2018-09-14 +session,1940,7,Firefox 26,98,2017-02-07 +session,1940,8,Chrome 8,46,2017-03-24 +user,1941,Pablo,Michel,0 +session,1941,0,Internet Explorer 4,67,2016-10-11 +session,1941,1,Internet Explorer 28,58,2016-08-15 +session,1941,2,Firefox 43,44,2018-03-25 +session,1941,3,Safari 33,25,2018-03-19 +session,1941,4,Firefox 45,104,2016-11-19 +user,1942,Golden,Mahalia,75 +session,1942,0,Safari 38,49,2017-02-18 +session,1942,1,Safari 40,47,2016-07-01 +session,1942,2,Internet Explorer 43,81,2016-10-14 +session,1942,3,Safari 17,109,2018-08-13 +session,1942,4,Chrome 30,66,2017-10-09 +session,1942,5,Internet Explorer 12,9,2018-09-27 +session,1942,6,Firefox 34,96,2017-06-23 +session,1942,7,Firefox 7,75,2017-01-20 +user,1943,Norberto,Craig,50 +session,1943,0,Internet Explorer 17,47,2018-05-22 +session,1943,1,Safari 25,116,2017-01-05 +session,1943,2,Internet Explorer 29,93,2018-07-14 +user,1944,Sunny,Carmelo,11 +session,1944,0,Internet Explorer 41,94,2018-08-24 +session,1944,1,Chrome 29,50,2016-08-26 +session,1944,2,Internet Explorer 6,101,2017-12-10 +session,1944,3,Firefox 2,22,2017-09-13 +session,1944,4,Internet Explorer 37,23,2017-03-01 +session,1944,5,Firefox 10,66,2017-08-16 +session,1944,6,Firefox 5,95,2017-02-24 +session,1944,7,Safari 26,42,2016-06-08 +user,1945,Blair,Dawn,99 +session,1945,0,Firefox 16,12,2018-07-25 +session,1945,1,Internet Explorer 35,105,2017-03-19 +session,1945,2,Internet Explorer 24,73,2018-09-05 +session,1945,3,Internet Explorer 6,95,2017-07-02 +session,1945,4,Chrome 4,107,2016-10-27 +session,1945,5,Chrome 23,10,2017-02-22 +user,1946,Rory,Darnell,82 +session,1946,0,Internet Explorer 25,2,2018-05-19 +session,1946,1,Internet Explorer 14,22,2016-06-27 +user,1947,Alfonzo,Stefanie,3 +session,1947,0,Internet Explorer 6,102,2018-04-20 +session,1947,1,Chrome 20,97,2018-10-31 +session,1947,2,Internet Explorer 48,28,2018-03-11 +session,1947,3,Internet Explorer 15,73,2017-01-08 +session,1947,4,Internet Explorer 41,20,2018-03-11 +session,1947,5,Safari 21,71,2017-01-03 +session,1947,6,Chrome 30,75,2016-10-11 +session,1947,7,Chrome 20,110,2018-09-14 +user,1948,Cristal,Aliza,76 +session,1948,0,Safari 28,50,2016-09-21 +session,1948,1,Chrome 17,66,2018-05-29 +session,1948,2,Chrome 14,7,2017-10-14 +session,1948,3,Firefox 2,14,2018-02-03 +session,1948,4,Chrome 26,87,2017-03-29 +session,1948,5,Internet Explorer 41,66,2017-04-29 +session,1948,6,Chrome 29,74,2018-08-26 +user,1949,Christian,Tamika,62 +session,1949,0,Chrome 34,97,2017-05-08 +session,1949,1,Internet Explorer 3,17,2019-01-29 +session,1949,2,Safari 24,68,2018-05-22 +session,1949,3,Safari 24,14,2018-07-03 +session,1949,4,Chrome 34,47,2016-12-20 +session,1949,5,Internet Explorer 29,108,2019-01-12 +session,1949,6,Internet Explorer 28,57,2016-10-15 +user,1950,Cary,Samuel,51 +session,1950,0,Chrome 13,92,2016-05-24 +session,1950,1,Firefox 49,62,2017-11-20 +session,1950,2,Firefox 29,116,2016-08-02 +session,1950,3,Firefox 2,93,2017-12-21 +session,1950,4,Firefox 42,110,2018-03-21 +user,1951,Noah,Vera,85 +session,1951,0,Safari 41,4,2019-01-06 +session,1951,1,Firefox 50,25,2019-01-08 +session,1951,2,Safari 19,71,2018-02-03 +user,1952,Ellis,Hermelinda,36 +session,1952,0,Safari 7,40,2018-01-07 +session,1952,1,Firefox 22,0,2016-06-14 +session,1952,2,Firefox 6,25,2016-10-27 +session,1952,3,Internet Explorer 48,7,2017-05-31 +session,1952,4,Internet Explorer 25,94,2017-09-10 +session,1952,5,Safari 14,28,2018-06-03 +session,1952,6,Firefox 23,32,2018-01-19 +session,1952,7,Safari 40,57,2018-03-25 +user,1953,Daine,Cedric,76 +session,1953,0,Safari 32,92,2018-11-28 +session,1953,1,Chrome 42,23,2017-09-21 +session,1953,2,Chrome 8,89,2016-06-28 +user,1954,Rowena,Charlotte,35 +session,1954,0,Safari 44,77,2016-07-16 +session,1954,1,Safari 1,45,2017-11-10 +session,1954,2,Firefox 37,78,2017-12-30 +session,1954,3,Safari 28,27,2016-07-01 +session,1954,4,Firefox 47,89,2017-05-14 +session,1954,5,Firefox 6,61,2018-03-31 +user,1955,Brandon,Avis,53 +session,1955,0,Chrome 35,80,2016-11-23 +session,1955,1,Chrome 23,23,2017-03-25 +session,1955,2,Internet Explorer 5,56,2016-06-11 +session,1955,3,Firefox 10,38,2016-09-23 +session,1955,4,Safari 1,63,2018-10-11 +session,1955,5,Safari 22,13,2018-09-21 +user,1956,Loni,Coleman,24 +session,1956,0,Internet Explorer 40,50,2018-06-11 +session,1956,1,Safari 1,117,2017-09-02 +session,1956,2,Safari 2,57,2019-02-12 +session,1956,3,Chrome 9,83,2017-09-17 +session,1956,4,Safari 48,110,2018-04-27 +session,1956,5,Internet Explorer 25,105,2018-01-18 +session,1956,6,Internet Explorer 13,91,2016-11-20 +session,1956,7,Safari 27,80,2017-10-08 +session,1956,8,Internet Explorer 48,53,2016-09-05 +user,1957,Roger,Gwenn,23 +session,1957,0,Safari 43,7,2017-10-31 +session,1957,1,Chrome 28,59,2016-12-02 +session,1957,2,Firefox 37,84,2016-10-23 +session,1957,3,Chrome 39,62,2016-08-07 +session,1957,4,Internet Explorer 4,47,2017-05-01 +session,1957,5,Firefox 8,99,2016-11-24 +session,1957,6,Chrome 15,59,2017-03-29 +session,1957,7,Internet Explorer 8,17,2016-09-12 +session,1957,8,Chrome 1,19,2016-10-12 +session,1957,9,Safari 47,35,2018-02-17 +user,1958,Fannie,Reginia,10 +session,1958,0,Safari 35,38,2017-10-19 +session,1958,1,Chrome 31,2,2018-08-15 +session,1958,2,Firefox 29,39,2017-01-28 +session,1958,3,Safari 17,31,2017-06-11 +user,1959,Rogelio,Alec,97 +session,1959,0,Internet Explorer 41,66,2016-10-17 +session,1959,1,Chrome 41,63,2017-02-26 +session,1959,2,Safari 2,66,2017-06-17 +session,1959,3,Safari 27,105,2017-04-14 +session,1959,4,Internet Explorer 7,118,2017-03-26 +session,1959,5,Firefox 48,6,2017-02-21 +session,1959,6,Safari 37,5,2018-02-12 +session,1959,7,Safari 24,49,2018-03-03 +session,1959,8,Firefox 35,71,2017-05-17 +session,1959,9,Safari 24,33,2016-12-17 +user,1960,Moshe,Larita,59 +session,1960,0,Firefox 2,102,2016-05-23 +session,1960,1,Internet Explorer 5,15,2016-10-29 +session,1960,2,Chrome 34,44,2017-07-09 +session,1960,3,Chrome 30,45,2017-08-23 +session,1960,4,Firefox 2,25,2019-02-06 +session,1960,5,Internet Explorer 37,109,2018-12-14 +user,1961,Lovie,Doretta,89 +session,1961,0,Internet Explorer 32,69,2017-08-20 +session,1961,1,Safari 33,99,2017-07-08 +session,1961,2,Internet Explorer 4,28,2018-02-09 +session,1961,3,Firefox 46,82,2017-03-17 +session,1961,4,Chrome 39,52,2016-10-27 +session,1961,5,Firefox 27,52,2016-10-16 +session,1961,6,Firefox 45,26,2018-02-13 +user,1962,Kraig,Lita,58 +session,1962,0,Firefox 30,44,2019-01-25 +session,1962,1,Internet Explorer 49,88,2017-02-01 +session,1962,2,Firefox 40,55,2017-12-19 +session,1962,3,Firefox 6,109,2018-01-05 +session,1962,4,Safari 25,109,2019-01-11 +session,1962,5,Safari 47,66,2018-06-04 +session,1962,6,Internet Explorer 25,91,2017-02-11 +user,1963,Joann,Somer,74 +session,1963,0,Chrome 7,4,2017-06-15 +session,1963,1,Chrome 16,57,2017-09-04 +session,1963,2,Chrome 20,66,2017-08-16 +session,1963,3,Safari 39,101,2017-07-29 +session,1963,4,Chrome 47,18,2017-05-03 +session,1963,5,Safari 28,87,2017-04-30 +session,1963,6,Internet Explorer 48,25,2017-05-11 +session,1963,7,Chrome 16,46,2018-04-25 +session,1963,8,Safari 31,10,2017-12-27 +user,1964,Sadye,Graham,2 +session,1964,0,Safari 16,63,2017-05-13 +session,1964,1,Firefox 42,58,2018-07-23 +user,1965,Jin,Raleigh,43 +session,1965,0,Chrome 13,106,2018-11-02 +session,1965,1,Internet Explorer 34,14,2017-02-23 +session,1965,2,Internet Explorer 33,42,2017-09-25 +session,1965,3,Safari 31,115,2016-07-18 +user,1966,Blanch,Melida,9 +session,1966,0,Chrome 37,52,2016-09-16 +session,1966,1,Chrome 6,23,2017-12-15 +session,1966,2,Safari 33,29,2018-12-09 +session,1966,3,Safari 5,113,2018-04-29 +session,1966,4,Chrome 25,26,2018-02-12 +session,1966,5,Internet Explorer 31,62,2017-01-15 +session,1966,6,Firefox 49,108,2017-07-17 +session,1966,7,Safari 50,13,2016-06-25 +session,1966,8,Safari 19,73,2018-12-11 +user,1967,Seymour,Jesus,76 +session,1967,0,Chrome 2,25,2018-09-07 +session,1967,1,Internet Explorer 27,10,2017-10-12 +session,1967,2,Safari 27,82,2016-11-19 +session,1967,3,Safari 28,6,2016-06-23 +session,1967,4,Internet Explorer 7,106,2017-03-24 +session,1967,5,Safari 44,38,2017-07-25 +session,1967,6,Internet Explorer 14,17,2017-06-18 +session,1967,7,Internet Explorer 22,44,2018-05-22 +session,1967,8,Internet Explorer 37,78,2016-06-03 +user,1968,Sebastian,Shay,37 +session,1968,0,Chrome 46,63,2017-09-04 +session,1968,1,Firefox 39,111,2018-06-09 +session,1968,2,Safari 2,50,2018-04-21 +session,1968,3,Chrome 40,25,2017-02-20 +session,1968,4,Internet Explorer 6,99,2019-01-14 +user,1969,Charla,Deena,19 +session,1969,0,Safari 25,8,2016-11-17 +session,1969,1,Firefox 37,119,2017-04-29 +session,1969,2,Firefox 14,75,2018-06-07 +session,1969,3,Internet Explorer 49,15,2016-07-24 +session,1969,4,Internet Explorer 19,69,2018-11-14 +session,1969,5,Firefox 20,22,2017-02-04 +session,1969,6,Internet Explorer 13,90,2017-11-29 +session,1969,7,Firefox 37,8,2018-09-04 +session,1969,8,Internet Explorer 40,6,2019-01-22 +session,1969,9,Chrome 13,100,2017-01-22 +user,1970,Tamica,Latisha,44 +session,1970,0,Internet Explorer 22,98,2017-11-03 +session,1970,1,Internet Explorer 21,67,2017-04-27 +session,1970,2,Chrome 16,30,2018-12-20 +session,1970,3,Safari 9,83,2016-07-29 +session,1970,4,Firefox 38,85,2017-02-24 +user,1971,Aldo,Harriett,36 +session,1971,0,Safari 34,105,2016-05-20 +session,1971,1,Firefox 45,23,2017-09-24 +user,1972,Elyse,Agustin,4 +session,1972,0,Chrome 38,52,2018-05-15 +session,1972,1,Firefox 44,27,2016-05-20 +user,1973,Garry,Madelene,82 +session,1973,0,Safari 38,70,2018-02-22 +session,1973,1,Firefox 33,1,2018-08-27 +session,1973,2,Chrome 2,6,2017-01-31 +session,1973,3,Internet Explorer 6,97,2017-10-22 +session,1973,4,Safari 8,91,2018-01-25 +session,1973,5,Firefox 11,99,2017-01-09 +user,1974,Breana,Leeanna,54 +session,1974,0,Chrome 10,104,2018-12-12 +session,1974,1,Chrome 5,108,2018-11-15 +session,1974,2,Chrome 1,106,2017-04-27 +session,1974,3,Internet Explorer 21,63,2016-09-04 +session,1974,4,Internet Explorer 12,81,2018-03-20 +session,1974,5,Safari 45,49,2018-12-16 +user,1975,Charley,Eleonore,10 +session,1975,0,Firefox 40,70,2017-09-20 +session,1975,1,Firefox 29,24,2017-11-07 +user,1976,Stanley,Lesia,96 +session,1976,0,Internet Explorer 37,36,2018-01-14 +session,1976,1,Firefox 34,34,2018-11-02 +session,1976,2,Safari 40,110,2016-10-10 +session,1976,3,Internet Explorer 48,22,2017-09-30 +session,1976,4,Internet Explorer 43,24,2018-06-23 +session,1976,5,Internet Explorer 12,74,2018-07-22 +session,1976,6,Internet Explorer 22,4,2016-06-24 +session,1976,7,Chrome 44,68,2017-05-01 +session,1976,8,Firefox 3,67,2017-07-10 +session,1976,9,Firefox 4,34,2017-01-19 +user,1977,Catrice,Charmaine,68 +session,1977,0,Safari 49,79,2017-03-13 +session,1977,1,Firefox 13,21,2017-02-23 +session,1977,2,Internet Explorer 17,110,2016-08-04 +session,1977,3,Internet Explorer 40,105,2017-06-17 +session,1977,4,Chrome 23,32,2018-05-13 +session,1977,5,Safari 1,0,2017-10-01 +user,1978,Bobby,Mee,62 +session,1978,0,Chrome 3,50,2017-08-10 +session,1978,1,Firefox 31,73,2016-07-22 +session,1978,2,Firefox 16,34,2017-05-19 +session,1978,3,Firefox 42,76,2018-05-05 +session,1978,4,Chrome 31,4,2018-01-14 +session,1978,5,Chrome 22,40,2018-02-10 +session,1978,6,Safari 41,14,2018-09-03 +session,1978,7,Firefox 42,26,2016-11-10 +session,1978,8,Firefox 11,89,2018-01-27 +session,1978,9,Chrome 13,20,2016-05-20 +user,1979,Damon,Tammera,98 +session,1979,0,Safari 8,92,2017-04-05 +user,1980,Alex,Shay,80 +session,1980,0,Firefox 35,119,2018-08-03 +session,1980,1,Firefox 39,115,2018-01-24 +session,1980,2,Firefox 49,100,2018-01-04 +user,1981,Alexander,Cyrus,82 +session,1981,0,Firefox 5,64,2016-06-01 +session,1981,1,Safari 14,84,2018-10-15 +session,1981,2,Chrome 48,93,2018-09-19 +session,1981,3,Safari 19,36,2017-01-19 +session,1981,4,Safari 45,100,2019-01-04 +session,1981,5,Chrome 12,15,2017-03-13 +session,1981,6,Chrome 12,33,2016-09-01 +session,1981,7,Chrome 18,70,2016-11-12 +user,1982,Christal,Bo,92 +session,1982,0,Firefox 21,111,2018-05-30 +session,1982,1,Internet Explorer 5,84,2017-05-28 +session,1982,2,Firefox 27,27,2017-01-05 +session,1982,3,Internet Explorer 45,106,2017-08-27 +session,1982,4,Safari 30,36,2016-06-28 +session,1982,5,Chrome 36,51,2016-12-25 +session,1982,6,Safari 50,10,2017-01-30 +session,1982,7,Chrome 18,81,2016-07-13 +session,1982,8,Safari 50,65,2017-12-31 +user,1983,Kasey,Michaela,45 +session,1983,0,Chrome 7,2,2018-06-28 +session,1983,1,Firefox 8,64,2017-07-19 +session,1983,2,Chrome 31,41,2017-06-24 +session,1983,3,Chrome 45,56,2017-05-17 +session,1983,4,Internet Explorer 27,77,2017-05-10 +session,1983,5,Firefox 41,92,2017-08-08 +user,1984,Florencia,Gretta,74 +session,1984,0,Internet Explorer 42,4,2016-06-21 +session,1984,1,Chrome 37,11,2018-09-15 +session,1984,2,Internet Explorer 4,42,2018-12-11 +session,1984,3,Firefox 33,17,2016-12-29 +session,1984,4,Internet Explorer 7,28,2018-03-11 +session,1984,5,Firefox 24,36,2016-10-12 +session,1984,6,Firefox 24,35,2017-08-15 +session,1984,7,Internet Explorer 19,1,2016-12-30 +user,1985,Zonia,Thomasena,78 +session,1985,0,Internet Explorer 29,95,2017-05-26 +session,1985,1,Safari 20,46,2018-05-01 +session,1985,2,Chrome 21,57,2018-10-29 +session,1985,3,Internet Explorer 19,45,2016-07-20 +session,1985,4,Internet Explorer 22,27,2017-03-11 +session,1985,5,Chrome 3,37,2016-12-19 +user,1986,Azzie,Jennifer,96 +session,1986,0,Chrome 22,57,2017-09-06 +session,1986,1,Chrome 42,106,2019-01-01 +session,1986,2,Safari 4,23,2016-12-03 +session,1986,3,Internet Explorer 42,42,2016-10-02 +session,1986,4,Chrome 46,74,2016-10-15 +session,1986,5,Firefox 11,62,2017-04-06 +session,1986,6,Internet Explorer 4,61,2016-08-10 +session,1986,7,Internet Explorer 10,3,2018-09-23 +user,1987,Adolfo,Alex,63 +session,1987,0,Firefox 12,29,2017-06-28 +session,1987,1,Chrome 31,37,2018-09-19 +session,1987,2,Chrome 10,34,2016-08-10 +session,1987,3,Firefox 6,7,2017-08-09 +session,1987,4,Firefox 43,27,2018-10-21 +session,1987,5,Firefox 15,64,2018-09-01 +session,1987,6,Safari 24,73,2017-08-07 +session,1987,7,Safari 32,47,2016-11-15 +session,1987,8,Internet Explorer 24,58,2018-05-19 +user,1988,Benton,Pa,41 +session,1988,0,Internet Explorer 19,33,2017-05-14 +session,1988,1,Firefox 43,90,2017-07-19 +session,1988,2,Safari 39,47,2017-12-29 +session,1988,3,Firefox 30,37,2016-08-04 +session,1988,4,Internet Explorer 32,54,2018-08-23 +session,1988,5,Safari 2,107,2016-08-15 +user,1989,Stephania,Alyse,49 +session,1989,0,Firefox 17,78,2016-10-07 +session,1989,1,Chrome 34,43,2017-01-29 +session,1989,2,Safari 46,42,2018-10-02 +user,1990,Alexander,Andree,7 +session,1990,0,Firefox 37,84,2018-06-21 +session,1990,1,Internet Explorer 34,90,2016-05-23 +session,1990,2,Chrome 33,24,2017-11-07 +session,1990,3,Safari 12,16,2017-06-08 +session,1990,4,Safari 9,114,2016-11-13 +session,1990,5,Internet Explorer 17,85,2017-10-11 +session,1990,6,Internet Explorer 47,100,2017-10-19 +user,1991,Mamie,Milo,82 +session,1991,0,Safari 11,5,2018-02-15 +session,1991,1,Firefox 40,81,2017-12-06 +user,1992,Trena,Bennie,0 +session,1992,0,Chrome 27,54,2017-09-25 +session,1992,1,Internet Explorer 27,69,2016-11-06 +session,1992,2,Internet Explorer 22,13,2018-06-28 +session,1992,3,Safari 7,65,2018-06-14 +session,1992,4,Firefox 49,36,2018-07-09 +session,1992,5,Safari 48,11,2017-05-02 +user,1993,Conception,Carmelia,42 +session,1993,0,Internet Explorer 7,48,2018-04-12 +session,1993,1,Internet Explorer 21,2,2016-07-29 +session,1993,2,Safari 2,66,2018-02-02 +session,1993,3,Internet Explorer 42,110,2018-01-11 +session,1993,4,Safari 5,111,2016-07-30 +session,1993,5,Firefox 13,72,2017-07-31 +session,1993,6,Firefox 47,106,2017-10-20 +session,1993,7,Chrome 43,18,2016-07-25 +session,1993,8,Internet Explorer 19,76,2017-01-30 +user,1994,Christian,Luvenia,8 +session,1994,0,Chrome 36,106,2016-06-09 +session,1994,1,Safari 11,29,2018-03-07 +user,1995,Margert,Kami,52 +session,1995,0,Chrome 40,30,2018-06-06 +session,1995,1,Chrome 26,113,2018-04-20 +session,1995,2,Chrome 40,21,2017-05-18 +session,1995,3,Firefox 18,19,2017-03-03 +session,1995,4,Chrome 49,90,2016-11-20 +session,1995,5,Chrome 30,97,2018-10-08 +session,1995,6,Internet Explorer 31,100,2017-08-24 +session,1995,7,Internet Explorer 25,51,2016-07-27 +user,1996,Vince,Cleo,8 +session,1996,0,Internet Explorer 10,29,2017-02-24 +session,1996,1,Safari 22,119,2017-04-26 +session,1996,2,Firefox 44,11,2019-01-03 +session,1996,3,Internet Explorer 43,26,2017-12-29 +session,1996,4,Internet Explorer 50,59,2017-10-21 +session,1996,5,Safari 50,79,2018-03-28 +session,1996,6,Firefox 16,33,2018-03-03 +session,1996,7,Safari 13,52,2017-05-06 +session,1996,8,Internet Explorer 31,99,2018-01-26 +user,1997,Lonny,Jonathon,45 +session,1997,0,Firefox 22,118,2016-07-31 +session,1997,1,Firefox 29,46,2016-08-19 +session,1997,2,Chrome 27,39,2017-01-10 +user,1998,Alex,Carmela,1 +session,1998,0,Chrome 46,70,2017-06-14 +session,1998,1,Chrome 43,51,2016-12-11 +session,1998,2,Safari 27,0,2017-07-22 +session,1998,3,Chrome 2,95,2016-12-29 +session,1998,4,Safari 37,51,2017-08-18 +session,1998,5,Safari 41,101,2017-08-01 +session,1998,6,Firefox 9,77,2016-09-01 +session,1998,7,Chrome 18,73,2019-02-08 +user,1999,Scottie,Wendell,99 +session,1999,0,Chrome 31,76,2016-09-04 +session,1999,1,Firefox 42,18,2017-06-19 +session,1999,2,Safari 27,79,2017-12-08 +session,1999,3,Chrome 27,31,2018-09-11 +user,2000,Andre,Lucius,14 +session,2000,0,Firefox 5,5,2016-12-26 +session,2000,1,Safari 43,47,2018-06-03 +session,2000,2,Firefox 12,79,2018-03-17 +session,2000,3,Safari 29,18,2018-10-11 +session,2000,4,Chrome 26,103,2019-01-12 +session,2000,5,Internet Explorer 8,74,2016-07-15 +session,2000,6,Internet Explorer 48,6,2016-10-05 +session,2000,7,Chrome 18,24,2018-04-08 +user,2001,Felipe,Erica,33 +session,2001,0,Internet Explorer 46,17,2018-11-13 +session,2001,1,Chrome 45,31,2018-01-13 +session,2001,2,Safari 38,77,2016-07-07 +session,2001,3,Internet Explorer 48,24,2016-08-16 +session,2001,4,Internet Explorer 42,6,2016-11-26 +session,2001,5,Firefox 12,56,2018-06-29 +session,2001,6,Firefox 47,11,2018-06-08 +session,2001,7,Firefox 50,47,2016-09-09 +session,2001,8,Chrome 4,51,2016-07-15 +session,2001,9,Internet Explorer 48,0,2017-01-27 +user,2002,China,Alexander,59 +session,2002,0,Internet Explorer 37,21,2017-07-20 +session,2002,1,Chrome 41,30,2017-11-02 +session,2002,2,Chrome 13,37,2016-12-15 +session,2002,3,Chrome 7,14,2017-10-27 +session,2002,4,Internet Explorer 28,8,2018-12-29 +session,2002,5,Chrome 1,114,2018-12-31 +session,2002,6,Safari 38,101,2017-12-19 +user,2003,Darron,Moses,93 +session,2003,0,Firefox 38,16,2018-12-11 +session,2003,1,Chrome 30,83,2018-08-30 +session,2003,2,Firefox 21,71,2018-07-07 +user,2004,Ivan,Laree,76 +session,2004,0,Internet Explorer 15,92,2017-04-22 +session,2004,1,Chrome 33,24,2017-11-19 +user,2005,Royal,Patsy,46 +session,2005,0,Internet Explorer 33,63,2017-02-16 +session,2005,1,Firefox 27,83,2018-01-10 +session,2005,2,Internet Explorer 12,114,2018-09-08 +user,2006,Jackson,Niesha,82 +session,2006,0,Chrome 3,108,2017-08-06 +session,2006,1,Safari 3,84,2017-03-25 +session,2006,2,Chrome 15,64,2017-09-16 +session,2006,3,Firefox 18,88,2018-08-02 +session,2006,4,Firefox 13,90,2016-09-09 +session,2006,5,Firefox 44,20,2018-03-16 +session,2006,6,Firefox 40,15,2017-07-09 +session,2006,7,Safari 39,93,2018-07-07 +session,2006,8,Safari 49,48,2018-01-29 +user,2007,Cristopher,Claudine,18 +session,2007,0,Safari 35,42,2017-07-04 +session,2007,1,Safari 1,74,2018-08-14 +session,2007,2,Firefox 29,75,2017-07-08 +session,2007,3,Safari 8,101,2016-07-16 +session,2007,4,Internet Explorer 21,41,2018-01-28 +session,2007,5,Chrome 20,51,2017-07-31 +session,2007,6,Internet Explorer 47,95,2018-11-12 +session,2007,7,Firefox 30,108,2018-03-11 +session,2007,8,Safari 8,112,2016-10-16 +user,2008,Quintin,Nancee,21 +session,2008,0,Internet Explorer 26,98,2017-08-12 +session,2008,1,Internet Explorer 24,110,2017-04-09 +session,2008,2,Internet Explorer 19,19,2018-07-30 +session,2008,3,Internet Explorer 30,18,2017-08-16 +user,2009,Nancie,Blythe,73 +session,2009,0,Firefox 40,58,2017-10-09 +session,2009,1,Chrome 18,108,2017-12-10 +session,2009,2,Internet Explorer 8,31,2018-07-05 +session,2009,3,Safari 12,5,2016-12-14 +session,2009,4,Safari 26,86,2018-03-29 +session,2009,5,Safari 47,117,2017-04-28 +session,2009,6,Internet Explorer 22,35,2017-07-11 +user,2010,Loralee,Bettina,37 +session,2010,0,Chrome 20,36,2018-04-14 +session,2010,1,Chrome 12,79,2018-10-16 +session,2010,2,Firefox 48,119,2018-10-24 +session,2010,3,Firefox 12,99,2018-01-17 +session,2010,4,Firefox 28,107,2018-10-25 +session,2010,5,Internet Explorer 2,28,2018-06-30 +session,2010,6,Safari 41,36,2016-09-17 +user,2011,Hyman,Winona,28 +session,2011,0,Firefox 40,83,2018-06-24 +session,2011,1,Safari 31,83,2017-05-22 +session,2011,2,Internet Explorer 7,77,2016-10-12 +session,2011,3,Firefox 43,68,2018-02-20 +session,2011,4,Firefox 41,45,2018-01-28 +session,2011,5,Safari 32,99,2016-11-21 +session,2011,6,Safari 17,35,2016-05-21 +session,2011,7,Firefox 32,111,2018-01-17 +session,2011,8,Internet Explorer 4,115,2017-06-11 +session,2011,9,Chrome 32,2,2019-01-28 +user,2012,Carolyn,Darrick,28 +session,2012,0,Safari 38,108,2018-07-30 +session,2012,1,Internet Explorer 28,94,2018-03-11 +session,2012,2,Internet Explorer 44,23,2016-10-04 +session,2012,3,Firefox 37,60,2016-06-13 +session,2012,4,Firefox 29,66,2016-06-26 +session,2012,5,Safari 46,32,2017-09-21 +session,2012,6,Chrome 47,77,2018-01-15 +session,2012,7,Chrome 6,14,2018-04-29 +session,2012,8,Chrome 16,29,2016-06-16 +session,2012,9,Chrome 7,42,2016-06-20 +user,2013,Bennie,Darcel,67 +session,2013,0,Safari 16,110,2016-08-21 +user,2014,Chang,Graham,92 +session,2014,0,Firefox 8,67,2017-09-03 +session,2014,1,Firefox 14,28,2018-08-27 +session,2014,2,Chrome 45,42,2018-02-06 +session,2014,3,Chrome 36,4,2018-10-27 +session,2014,4,Firefox 32,116,2018-11-20 +session,2014,5,Firefox 12,63,2018-01-27 +session,2014,6,Chrome 38,100,2016-12-18 +session,2014,7,Internet Explorer 10,85,2017-10-03 +session,2014,8,Internet Explorer 2,57,2017-10-27 +session,2014,9,Chrome 24,101,2019-01-11 +user,2015,Thurman,Judith,98 +session,2015,0,Safari 3,25,2016-07-16 +session,2015,1,Safari 8,29,2018-04-12 +session,2015,2,Firefox 24,29,2019-01-14 +session,2015,3,Firefox 41,38,2018-03-04 +session,2015,4,Safari 22,25,2018-07-06 +session,2015,5,Firefox 36,118,2018-07-24 +session,2015,6,Safari 40,78,2017-10-17 +session,2015,7,Chrome 5,83,2018-06-21 +session,2015,8,Chrome 2,115,2018-04-20 +session,2015,9,Firefox 39,44,2016-08-28 +user,2016,Edward,Aubrey,28 +session,2016,0,Safari 50,32,2016-07-25 +session,2016,1,Safari 7,78,2018-09-17 +session,2016,2,Internet Explorer 44,52,2018-04-06 +user,2017,Georgette,Georgianna,71 +session,2017,0,Firefox 11,92,2018-03-26 +session,2017,1,Safari 21,75,2018-11-09 +session,2017,2,Safari 33,88,2018-09-13 +session,2017,3,Firefox 3,115,2016-11-11 +session,2017,4,Safari 8,61,2016-09-20 +session,2017,5,Safari 22,62,2016-08-20 +user,2018,Herschel,Manda,62 +session,2018,0,Internet Explorer 11,113,2017-01-26 +session,2018,1,Firefox 9,77,2016-06-02 +session,2018,2,Internet Explorer 14,75,2017-11-05 +session,2018,3,Safari 43,11,2017-03-04 +session,2018,4,Chrome 18,43,2018-10-04 +session,2018,5,Safari 6,62,2017-06-01 +session,2018,6,Chrome 21,69,2017-07-26 +session,2018,7,Internet Explorer 20,35,2019-02-06 +session,2018,8,Chrome 45,56,2018-05-29 +session,2018,9,Internet Explorer 7,72,2018-05-08 +user,2019,Alonzo,Shelton,0 +session,2019,0,Safari 19,74,2016-11-29 +session,2019,1,Internet Explorer 22,112,2018-12-30 +session,2019,2,Safari 23,63,2018-12-08 +user,2020,Norbert,Elwanda,17 +session,2020,0,Safari 32,29,2016-11-30 +session,2020,1,Safari 39,32,2017-08-02 +user,2021,Huey,Tyrell,19 +session,2021,0,Chrome 11,39,2016-09-22 +user,2022,Jean,Hunter,28 +session,2022,0,Firefox 48,22,2018-12-09 +session,2022,1,Chrome 22,60,2017-12-23 +session,2022,2,Chrome 4,113,2016-05-30 +session,2022,3,Chrome 47,60,2018-08-13 +user,2023,Jenelle,Bernardo,37 +session,2023,0,Chrome 39,46,2016-07-12 +session,2023,1,Internet Explorer 3,16,2018-10-21 +session,2023,2,Chrome 26,68,2016-08-18 +session,2023,3,Internet Explorer 4,73,2018-11-17 +session,2023,4,Firefox 36,64,2018-07-11 +session,2023,5,Chrome 39,107,2016-09-15 +session,2023,6,Chrome 12,28,2017-07-28 +session,2023,7,Chrome 28,1,2017-05-24 +session,2023,8,Chrome 20,19,2017-06-03 +session,2023,9,Chrome 45,42,2018-05-14 +user,2024,Leontine,Maryam,92 +session,2024,0,Chrome 33,77,2018-06-15 +session,2024,1,Internet Explorer 9,27,2017-06-22 +user,2025,Carli,Tesha,45 +session,2025,0,Internet Explorer 50,97,2017-09-06 +session,2025,1,Internet Explorer 33,58,2017-05-03 +session,2025,2,Chrome 9,40,2017-01-23 +session,2025,3,Internet Explorer 9,87,2017-12-23 +session,2025,4,Internet Explorer 34,12,2017-11-09 +session,2025,5,Safari 13,15,2017-03-04 +session,2025,6,Chrome 47,23,2018-07-10 +session,2025,7,Safari 13,86,2017-01-28 +session,2025,8,Firefox 48,8,2019-01-09 +user,2026,Kerri,Jama,38 +session,2026,0,Safari 28,14,2018-05-29 +session,2026,1,Chrome 43,100,2017-02-21 +session,2026,2,Firefox 29,2,2018-04-12 +session,2026,3,Internet Explorer 27,29,2018-11-14 +session,2026,4,Firefox 47,86,2016-08-17 +session,2026,5,Internet Explorer 48,40,2018-10-21 +session,2026,6,Firefox 37,17,2018-02-04 +session,2026,7,Internet Explorer 45,117,2017-09-01 +session,2026,8,Safari 13,48,2016-07-20 +user,2027,Alec,Katelynn,52 +session,2027,0,Internet Explorer 35,58,2016-12-10 +session,2027,1,Safari 24,51,2018-03-09 +session,2027,2,Safari 35,72,2017-06-01 +session,2027,3,Internet Explorer 38,22,2019-02-02 +session,2027,4,Internet Explorer 7,112,2016-06-19 +session,2027,5,Safari 39,93,2017-10-16 +session,2027,6,Internet Explorer 2,81,2016-12-11 +session,2027,7,Chrome 49,50,2017-07-21 +session,2027,8,Firefox 28,19,2018-01-28 +session,2027,9,Internet Explorer 9,17,2017-07-12 +user,2028,Alona,Justin,25 +session,2028,0,Internet Explorer 30,40,2018-10-28 +session,2028,1,Firefox 26,78,2018-10-27 +session,2028,2,Internet Explorer 11,88,2016-08-13 +session,2028,3,Chrome 12,109,2017-10-20 +session,2028,4,Chrome 21,65,2017-11-14 +session,2028,5,Safari 24,49,2017-08-07 +user,2029,Tami,Scot,98 +session,2029,0,Firefox 36,98,2016-11-01 +session,2029,1,Firefox 16,89,2017-07-09 +session,2029,2,Firefox 17,71,2017-05-02 +session,2029,3,Internet Explorer 42,37,2017-07-04 +session,2029,4,Safari 38,30,2018-07-30 +session,2029,5,Chrome 6,75,2017-07-07 +session,2029,6,Chrome 25,38,2017-09-01 +session,2029,7,Chrome 30,37,2019-01-25 +session,2029,8,Firefox 8,8,2016-06-02 +session,2029,9,Chrome 6,76,2018-07-13 +user,2030,Gregg,Mabelle,48 +session,2030,0,Chrome 19,18,2017-07-11 +session,2030,1,Chrome 23,63,2017-05-23 +session,2030,2,Internet Explorer 18,30,2017-07-29 +session,2030,3,Internet Explorer 26,30,2016-08-23 +user,2031,Larhonda,Dung,78 +session,2031,0,Firefox 20,113,2016-08-11 +session,2031,1,Firefox 37,109,2016-07-03 +session,2031,2,Firefox 24,10,2016-12-30 +session,2031,3,Internet Explorer 41,107,2017-09-18 +session,2031,4,Internet Explorer 40,87,2018-10-25 +session,2031,5,Internet Explorer 18,75,2017-08-22 +session,2031,6,Internet Explorer 9,108,2016-06-15 +session,2031,7,Safari 3,89,2016-10-24 +session,2031,8,Internet Explorer 35,17,2017-09-13 +user,2032,Jami,Evelyne,10 +session,2032,0,Chrome 25,110,2017-07-06 +session,2032,1,Internet Explorer 43,78,2016-07-26 +user,2033,Hellen,Dorine,59 +session,2033,0,Firefox 2,29,2018-08-18 +session,2033,1,Internet Explorer 20,10,2017-02-03 +session,2033,2,Firefox 39,101,2016-11-25 +session,2033,3,Chrome 20,63,2018-12-29 +user,2034,Xochitl,Vernell,70 +session,2034,0,Firefox 46,46,2018-09-06 +user,2035,Xavier,Clotilde,75 +session,2035,0,Firefox 10,75,2017-01-18 +session,2035,1,Internet Explorer 23,6,2016-08-02 +session,2035,2,Firefox 34,68,2017-02-12 +session,2035,3,Safari 32,71,2017-02-16 +session,2035,4,Chrome 45,47,2016-06-03 +session,2035,5,Safari 20,46,2016-09-10 +session,2035,6,Firefox 30,17,2018-11-08 +session,2035,7,Firefox 17,98,2019-01-20 +session,2035,8,Safari 40,67,2016-06-02 +session,2035,9,Firefox 28,95,2018-05-29 +user,2036,Millard,Jackelyn,4 +session,2036,0,Firefox 45,25,2017-03-02 +session,2036,1,Firefox 43,63,2017-11-09 +session,2036,2,Chrome 7,3,2018-02-07 +session,2036,3,Firefox 25,94,2016-07-16 +session,2036,4,Safari 9,112,2017-12-29 +session,2036,5,Internet Explorer 20,109,2017-10-19 +session,2036,6,Chrome 31,40,2018-05-15 +session,2036,7,Firefox 43,110,2017-02-11 +session,2036,8,Internet Explorer 33,105,2017-10-22 +user,2037,Tresa,Maybelle,34 +session,2037,0,Safari 37,85,2016-12-05 +session,2037,1,Safari 32,30,2016-06-20 +session,2037,2,Chrome 23,13,2017-09-27 +session,2037,3,Chrome 4,6,2016-12-13 +session,2037,4,Chrome 6,57,2016-11-07 +session,2037,5,Safari 48,66,2016-08-31 +session,2037,6,Internet Explorer 37,37,2017-01-26 +session,2037,7,Chrome 6,67,2018-12-15 +session,2037,8,Chrome 9,107,2017-10-21 +user,2038,Joel,Kari,38 +session,2038,0,Chrome 43,44,2018-02-01 +session,2038,1,Firefox 46,32,2018-10-25 +user,2039,Evelia,Nelida,99 +session,2039,0,Firefox 41,102,2017-02-14 +session,2039,1,Internet Explorer 49,108,2018-11-24 +session,2039,2,Safari 14,109,2018-11-03 +session,2039,3,Firefox 22,46,2018-12-28 +session,2039,4,Firefox 13,61,2018-05-15 +session,2039,5,Firefox 39,38,2018-04-09 +user,2040,Misty,Quincy,95 +session,2040,0,Firefox 9,13,2017-11-16 +session,2040,1,Safari 7,112,2017-12-04 +session,2040,2,Firefox 3,88,2017-04-06 +session,2040,3,Firefox 20,115,2018-07-26 +session,2040,4,Safari 26,67,2016-05-22 +session,2040,5,Safari 9,30,2016-07-30 +user,2041,Mamie,Teri,46 +session,2041,0,Firefox 46,99,2017-02-03 +session,2041,1,Chrome 28,80,2018-11-17 +session,2041,2,Firefox 22,0,2018-12-28 +session,2041,3,Safari 49,20,2018-06-15 +session,2041,4,Safari 39,116,2018-01-28 +session,2041,5,Internet Explorer 35,43,2017-06-09 +session,2041,6,Internet Explorer 17,5,2018-06-28 +user,2042,Antone,Lashandra,8 +session,2042,0,Safari 38,33,2017-04-11 +session,2042,1,Internet Explorer 14,63,2017-01-14 +session,2042,2,Internet Explorer 7,119,2017-02-05 +session,2042,3,Firefox 13,69,2017-08-08 +user,2043,Jackeline,Emelina,62 +session,2043,0,Chrome 18,25,2017-05-28 +session,2043,1,Chrome 22,64,2018-12-01 +session,2043,2,Safari 39,1,2016-11-20 +session,2043,3,Firefox 33,32,2018-08-22 +session,2043,4,Firefox 24,11,2018-08-12 +session,2043,5,Internet Explorer 10,38,2018-12-06 +session,2043,6,Safari 25,96,2016-12-09 +user,2044,Bobbi,Johana,29 +session,2044,0,Internet Explorer 7,71,2017-07-07 +session,2044,1,Safari 47,17,2016-06-25 +session,2044,2,Chrome 3,11,2017-06-28 +session,2044,3,Firefox 31,27,2018-05-16 +session,2044,4,Chrome 18,6,2016-08-12 +user,2045,Shay,Marlena,91 +session,2045,0,Firefox 4,118,2016-05-19 +session,2045,1,Firefox 45,118,2016-07-11 +session,2045,2,Chrome 38,3,2018-02-27 +session,2045,3,Safari 21,96,2018-08-20 +session,2045,4,Firefox 25,43,2017-08-01 +session,2045,5,Chrome 19,74,2018-07-16 +user,2046,Garret,Luetta,21 +session,2046,0,Internet Explorer 10,91,2018-09-30 +session,2046,1,Internet Explorer 47,96,2018-07-20 +session,2046,2,Internet Explorer 24,39,2017-11-01 +session,2046,3,Chrome 20,109,2016-07-28 +session,2046,4,Chrome 49,92,2016-09-25 +session,2046,5,Chrome 46,0,2017-01-30 +session,2046,6,Firefox 13,16,2018-07-16 +session,2046,7,Firefox 19,94,2017-01-02 +session,2046,8,Chrome 13,11,2018-05-28 +user,2047,Herman,Laree,99 +session,2047,0,Internet Explorer 17,88,2018-04-06 +session,2047,1,Firefox 11,45,2018-03-24 +session,2047,2,Internet Explorer 12,115,2017-10-04 +session,2047,3,Safari 34,80,2017-06-15 +session,2047,4,Safari 18,2,2017-08-14 +user,2048,Claud,Larry,44 +session,2048,0,Safari 27,81,2017-07-20 +session,2048,1,Firefox 14,72,2018-03-05 +session,2048,2,Internet Explorer 10,119,2017-12-02 +user,2049,Lawanna,Shalonda,61 +session,2049,0,Internet Explorer 46,28,2018-12-06 +session,2049,1,Chrome 15,108,2017-12-09 +user,2050,Reggie,Shawnna,64 +session,2050,0,Chrome 6,75,2019-02-01 +session,2050,1,Chrome 11,59,2016-10-20 +session,2050,2,Chrome 48,52,2017-05-03 +session,2050,3,Chrome 44,73,2016-09-20 +session,2050,4,Firefox 15,36,2017-05-12 +user,2051,Raelene,Victor,5 +session,2051,0,Internet Explorer 24,28,2018-05-09 +session,2051,1,Internet Explorer 30,63,2017-05-25 +session,2051,2,Firefox 49,86,2017-04-14 +session,2051,3,Firefox 42,41,2017-08-16 +user,2052,Junko,Numbers,59 +session,2052,0,Internet Explorer 41,70,2018-06-06 +user,2053,Magaret,Edward,44 +session,2053,0,Firefox 11,46,2017-07-28 +session,2053,1,Firefox 12,89,2016-11-21 +session,2053,2,Safari 30,99,2018-06-13 +session,2053,3,Chrome 40,67,2016-07-27 +session,2053,4,Safari 47,103,2017-09-22 +user,2054,Adam,Tonia,45 +session,2054,0,Firefox 5,45,2016-09-25 +session,2054,1,Chrome 43,46,2018-04-10 +session,2054,2,Chrome 27,93,2017-09-29 +session,2054,3,Firefox 42,112,2016-12-21 +user,2055,Myra,Karly,59 +session,2055,0,Chrome 33,18,2018-08-28 +user,2056,Tori,Elizabet,86 +session,2056,0,Chrome 28,67,2017-09-10 +session,2056,1,Firefox 32,10,2017-06-13 +session,2056,2,Chrome 41,11,2019-01-03 +user,2057,Eileen,Jessie,95 +session,2057,0,Safari 13,30,2018-10-20 +session,2057,1,Internet Explorer 32,64,2018-07-23 +session,2057,2,Chrome 21,41,2017-10-07 +session,2057,3,Firefox 41,34,2016-06-17 +session,2057,4,Firefox 23,43,2017-07-28 +session,2057,5,Safari 44,100,2016-07-09 +session,2057,6,Safari 30,64,2019-02-04 +user,2058,Damion,Lenna,47 +session,2058,0,Firefox 30,48,2016-11-20 +session,2058,1,Chrome 25,46,2016-06-22 +session,2058,2,Chrome 27,90,2018-01-21 +session,2058,3,Safari 37,51,2017-02-01 +session,2058,4,Safari 3,79,2017-04-02 +session,2058,5,Internet Explorer 32,63,2016-12-14 +session,2058,6,Chrome 21,119,2018-03-25 +session,2058,7,Internet Explorer 9,66,2016-09-18 +session,2058,8,Chrome 35,113,2016-12-29 +session,2058,9,Firefox 16,26,2018-05-13 +user,2059,Luisa,Rosalinda,16 +session,2059,0,Safari 7,17,2016-10-18 +session,2059,1,Internet Explorer 44,97,2016-07-09 +user,2060,Susanna,Ashleigh,16 +session,2060,0,Internet Explorer 42,114,2017-10-28 +session,2060,1,Firefox 28,112,2016-12-29 +session,2060,2,Firefox 13,15,2016-07-20 +session,2060,3,Firefox 38,21,2016-11-17 +session,2060,4,Safari 49,0,2017-07-25 +session,2060,5,Safari 41,36,2018-05-22 +session,2060,6,Safari 32,13,2016-10-02 +user,2061,Marcos,Marin,30 +session,2061,0,Safari 30,12,2017-06-02 +session,2061,1,Chrome 31,78,2016-12-27 +user,2062,Tiffaney,Janene,90 +session,2062,0,Chrome 25,26,2017-08-04 +session,2062,1,Internet Explorer 10,41,2018-08-25 +session,2062,2,Internet Explorer 47,71,2016-09-04 +user,2063,Blake,Adam,77 +session,2063,0,Firefox 25,63,2019-01-12 +user,2064,Mable,Simon,60 +session,2064,0,Firefox 39,16,2018-08-23 +session,2064,1,Safari 5,113,2018-05-25 +session,2064,2,Internet Explorer 35,22,2016-12-14 +session,2064,3,Firefox 40,86,2016-10-19 +session,2064,4,Internet Explorer 48,87,2016-07-12 +session,2064,5,Internet Explorer 11,76,2018-11-23 +session,2064,6,Safari 38,23,2016-10-26 +session,2064,7,Internet Explorer 10,29,2017-09-10 +session,2064,8,Safari 46,115,2018-10-01 +session,2064,9,Firefox 13,38,2018-01-10 +user,2065,Ira,Jenell,58 +session,2065,0,Firefox 40,0,2019-01-06 +session,2065,1,Chrome 37,114,2017-04-23 +session,2065,2,Safari 23,23,2018-02-21 +session,2065,3,Internet Explorer 8,117,2016-05-19 +session,2065,4,Chrome 11,74,2016-11-25 +session,2065,5,Safari 6,18,2017-02-02 +user,2066,Selma,August,65 +session,2066,0,Chrome 33,2,2017-06-24 +session,2066,1,Internet Explorer 10,81,2016-05-25 +session,2066,2,Internet Explorer 3,70,2017-02-27 +user,2067,Aracely,Melynda,76 +session,2067,0,Firefox 10,34,2016-07-05 +session,2067,1,Safari 14,58,2018-09-12 +session,2067,2,Safari 21,95,2018-01-15 +session,2067,3,Internet Explorer 44,40,2018-11-17 +user,2068,Bobbie,Bryce,53 +session,2068,0,Chrome 17,67,2016-06-14 +session,2068,1,Chrome 30,30,2018-01-15 +user,2069,Whitney,Isaiah,81 +session,2069,0,Internet Explorer 7,84,2017-02-13 +session,2069,1,Safari 9,5,2017-09-11 +session,2069,2,Firefox 31,54,2018-08-02 +session,2069,3,Firefox 1,10,2017-06-07 +session,2069,4,Internet Explorer 30,14,2017-08-06 +session,2069,5,Chrome 23,87,2017-06-10 +session,2069,6,Internet Explorer 6,78,2016-11-03 +session,2069,7,Safari 35,99,2019-02-01 +session,2069,8,Safari 39,114,2017-07-01 +user,2070,Sang,Stacy,87 +session,2070,0,Safari 5,10,2017-07-24 +session,2070,1,Internet Explorer 3,110,2016-11-25 +session,2070,2,Firefox 1,21,2017-03-19 +session,2070,3,Chrome 49,114,2018-11-01 +session,2070,4,Chrome 23,40,2017-03-05 +session,2070,5,Internet Explorer 26,109,2018-07-18 +session,2070,6,Chrome 48,30,2017-02-18 +session,2070,7,Safari 15,106,2018-09-29 +user,2071,Adolph,Eusebio,7 +session,2071,0,Safari 32,35,2018-02-16 +session,2071,1,Chrome 33,72,2019-02-05 +session,2071,2,Safari 14,102,2017-05-29 +session,2071,3,Internet Explorer 49,2,2018-12-02 +session,2071,4,Chrome 22,50,2017-10-28 +session,2071,5,Internet Explorer 12,1,2018-02-13 +session,2071,6,Safari 23,48,2016-10-11 +session,2071,7,Firefox 50,67,2018-11-14 +session,2071,8,Chrome 9,64,2016-05-20 +session,2071,9,Firefox 17,21,2018-07-17 +user,2072,Huey,Regan,42 +session,2072,0,Firefox 14,60,2018-02-20 +session,2072,1,Internet Explorer 45,13,2018-04-30 +user,2073,Elmo,Jenifer,12 +session,2073,0,Firefox 47,35,2018-09-11 +session,2073,1,Internet Explorer 50,18,2018-05-22 +user,2074,Tommie,Paula,46 +session,2074,0,Safari 19,86,2018-03-17 +session,2074,1,Safari 14,11,2017-03-29 +session,2074,2,Internet Explorer 27,3,2016-11-18 +session,2074,3,Firefox 7,24,2017-07-20 +session,2074,4,Firefox 45,66,2016-08-28 +session,2074,5,Chrome 50,117,2018-08-02 +session,2074,6,Chrome 21,18,2018-09-25 +session,2074,7,Chrome 25,115,2018-12-12 +user,2075,Hans,Pat,44 +session,2075,0,Safari 30,113,2018-05-31 +session,2075,1,Safari 14,55,2017-03-03 +session,2075,2,Firefox 46,26,2017-01-13 +user,2076,Billy,Tinisha,51 +session,2076,0,Safari 4,45,2018-08-25 +session,2076,1,Firefox 39,15,2016-11-07 +session,2076,2,Safari 41,97,2017-02-13 +session,2076,3,Firefox 6,82,2019-01-02 +session,2076,4,Firefox 44,84,2018-10-11 +session,2076,5,Safari 14,38,2016-06-17 +session,2076,6,Chrome 9,3,2019-01-12 +session,2076,7,Chrome 17,94,2016-06-19 +session,2076,8,Firefox 5,9,2018-02-27 +user,2077,Ruthanne,Mikaela,16 +session,2077,0,Internet Explorer 40,95,2016-06-30 +session,2077,1,Firefox 22,68,2017-04-19 +session,2077,2,Firefox 39,38,2017-05-27 +session,2077,3,Firefox 4,43,2016-12-26 +session,2077,4,Internet Explorer 6,86,2018-08-04 +session,2077,5,Safari 45,102,2017-09-14 +session,2077,6,Safari 32,11,2017-11-05 +user,2078,Chase,Illa,35 +session,2078,0,Chrome 40,6,2017-01-14 +session,2078,1,Safari 7,2,2019-01-12 +session,2078,2,Chrome 26,84,2018-05-06 +session,2078,3,Firefox 45,86,2017-10-20 +session,2078,4,Firefox 35,71,2019-01-28 +session,2078,5,Internet Explorer 8,112,2017-09-14 +session,2078,6,Firefox 50,59,2016-07-17 +session,2078,7,Internet Explorer 24,100,2018-05-10 +session,2078,8,Chrome 45,91,2016-12-28 +session,2078,9,Chrome 24,1,2016-11-19 +user,2079,Emmy,Jacques,23 +session,2079,0,Chrome 8,71,2018-06-15 +session,2079,1,Chrome 10,84,2017-08-29 +session,2079,2,Firefox 37,111,2016-07-03 +session,2079,3,Firefox 35,67,2017-12-26 +session,2079,4,Firefox 13,59,2018-04-05 +session,2079,5,Safari 21,80,2018-01-16 +session,2079,6,Safari 28,8,2018-07-16 +session,2079,7,Safari 37,15,2017-06-24 +session,2079,8,Safari 42,31,2019-01-27 +session,2079,9,Chrome 42,117,2017-02-19 +user,2080,Ellsworth,Colton,57 +session,2080,0,Internet Explorer 46,79,2017-04-09 +user,2081,Aurelia,Lindsey,63 +session,2081,0,Safari 26,57,2017-05-21 +session,2081,1,Firefox 48,26,2018-05-01 +session,2081,2,Firefox 40,85,2017-08-19 +session,2081,3,Safari 17,25,2017-05-15 +session,2081,4,Internet Explorer 18,24,2018-11-18 +user,2082,Davina,Earnest,32 +session,2082,0,Firefox 29,94,2018-09-08 +session,2082,1,Safari 4,30,2017-04-22 +user,2083,Edith,Martina,6 +session,2083,0,Firefox 23,70,2016-12-08 +session,2083,1,Chrome 2,10,2017-03-19 +session,2083,2,Safari 45,78,2016-05-30 +session,2083,3,Internet Explorer 48,35,2017-01-11 +session,2083,4,Safari 10,61,2018-06-29 +session,2083,5,Internet Explorer 21,46,2018-03-16 +session,2083,6,Safari 38,94,2016-09-27 +session,2083,7,Firefox 22,14,2017-08-03 +session,2083,8,Chrome 18,32,2016-08-03 +session,2083,9,Safari 31,35,2016-05-27 +user,2084,Jules,Anthony,64 +session,2084,0,Safari 1,101,2016-06-15 +session,2084,1,Chrome 3,23,2018-01-12 +user,2085,Bruna,Lynetta,85 +session,2085,0,Firefox 50,50,2017-09-04 +session,2085,1,Internet Explorer 50,96,2017-09-23 +session,2085,2,Chrome 5,100,2018-11-29 +user,2086,Wenona,Loyd,17 +session,2086,0,Safari 5,79,2017-04-15 +session,2086,1,Safari 6,77,2016-11-16 +session,2086,2,Safari 7,64,2016-08-06 +session,2086,3,Firefox 21,45,2017-04-02 +user,2087,Jeff,Sage,52 +session,2087,0,Firefox 26,29,2019-01-22 +session,2087,1,Firefox 34,64,2018-02-05 +session,2087,2,Chrome 26,61,2017-12-09 +session,2087,3,Chrome 10,85,2017-08-06 +session,2087,4,Internet Explorer 39,57,2017-05-04 +session,2087,5,Safari 9,104,2016-06-22 +session,2087,6,Safari 28,108,2016-07-22 +user,2088,Lucius,Hollie,47 +session,2088,0,Firefox 14,15,2017-12-25 +session,2088,1,Internet Explorer 2,29,2016-09-10 +session,2088,2,Firefox 23,50,2018-05-27 +session,2088,3,Firefox 50,95,2016-10-02 +session,2088,4,Chrome 6,72,2016-08-24 +session,2088,5,Firefox 49,7,2017-09-06 +session,2088,6,Internet Explorer 11,75,2018-01-09 +session,2088,7,Safari 42,56,2017-05-05 +session,2088,8,Safari 33,2,2017-03-26 +user,2089,Janyce,Essie,46 +session,2089,0,Safari 23,55,2016-08-17 +session,2089,1,Internet Explorer 8,30,2016-07-30 +session,2089,2,Safari 47,117,2018-12-30 +session,2089,3,Firefox 24,35,2018-07-29 +session,2089,4,Internet Explorer 44,8,2017-05-19 +user,2090,Rey,Dortha,83 +session,2090,0,Internet Explorer 38,99,2017-02-08 +session,2090,1,Internet Explorer 13,48,2017-12-10 +session,2090,2,Chrome 32,83,2019-02-05 +session,2090,3,Chrome 36,64,2018-09-10 +session,2090,4,Chrome 3,64,2017-01-19 +user,2091,Augustus,Hollis,6 +session,2091,0,Chrome 32,0,2017-11-29 +session,2091,1,Internet Explorer 2,21,2017-03-29 +user,2092,Theron,Caroline,34 +session,2092,0,Internet Explorer 26,76,2018-07-15 +session,2092,1,Firefox 44,11,2017-07-13 +session,2092,2,Firefox 24,82,2018-10-21 +session,2092,3,Chrome 28,13,2016-10-14 +session,2092,4,Internet Explorer 2,119,2016-11-27 +user,2093,Lucina,Jaime,82 +session,2093,0,Chrome 18,21,2017-03-11 +user,2094,Rex,Elvie,87 +session,2094,0,Internet Explorer 26,1,2017-07-25 +user,2095,Shavon,Tayna,2 +session,2095,0,Internet Explorer 25,17,2018-10-28 +session,2095,1,Chrome 36,14,2017-01-12 +session,2095,2,Internet Explorer 19,93,2018-04-26 +session,2095,3,Safari 9,30,2017-05-23 +session,2095,4,Internet Explorer 35,13,2016-08-09 +session,2095,5,Internet Explorer 35,112,2018-12-20 +session,2095,6,Firefox 8,82,2017-08-18 +session,2095,7,Firefox 49,46,2016-08-28 +session,2095,8,Chrome 7,7,2018-05-19 +user,2096,Jamey,Maurice,60 +session,2096,0,Safari 2,103,2017-11-27 +session,2096,1,Safari 32,19,2017-07-23 +session,2096,2,Internet Explorer 4,78,2017-12-25 +session,2096,3,Chrome 48,3,2017-04-21 +session,2096,4,Firefox 9,75,2017-08-14 +session,2096,5,Firefox 15,24,2017-01-30 +session,2096,6,Safari 18,34,2016-09-24 +session,2096,7,Safari 47,30,2017-04-15 +session,2096,8,Internet Explorer 39,111,2017-03-29 +user,2097,Madge,Dominica,40 +session,2097,0,Safari 45,62,2018-12-18 +session,2097,1,Firefox 13,3,2017-05-04 +session,2097,2,Safari 44,40,2017-10-24 +session,2097,3,Chrome 28,32,2018-08-25 +session,2097,4,Internet Explorer 1,52,2018-12-05 +session,2097,5,Firefox 12,62,2018-06-01 +session,2097,6,Safari 45,97,2016-11-06 +session,2097,7,Chrome 35,110,2017-01-31 +session,2097,8,Safari 32,79,2016-07-03 +session,2097,9,Safari 13,9,2017-03-03 +user,2098,Glenn,Robbin,55 +session,2098,0,Firefox 24,73,2018-11-22 +session,2098,1,Firefox 1,67,2017-07-11 +session,2098,2,Internet Explorer 46,9,2016-05-30 +user,2099,Kevin,Kimberely,10 +session,2099,0,Chrome 17,97,2018-09-10 +session,2099,1,Chrome 26,60,2017-06-06 +session,2099,2,Internet Explorer 46,78,2017-04-02 +session,2099,3,Chrome 22,36,2016-07-07 +session,2099,4,Firefox 11,87,2017-04-05 +session,2099,5,Firefox 35,52,2018-08-06 +session,2099,6,Firefox 9,30,2016-07-08 +session,2099,7,Safari 17,43,2018-11-14 +session,2099,8,Safari 38,42,2016-05-20 +user,2100,Evita,Debbie,51 +session,2100,0,Firefox 18,97,2017-10-25 +session,2100,1,Firefox 34,18,2018-04-18 +session,2100,2,Firefox 49,16,2017-12-21 +session,2100,3,Chrome 50,84,2018-07-01 +session,2100,4,Internet Explorer 35,96,2018-01-13 +session,2100,5,Firefox 11,101,2018-02-19 +session,2100,6,Internet Explorer 25,16,2017-01-12 +session,2100,7,Safari 39,29,2016-09-30 +user,2101,Donita,Krystal,27 +session,2101,0,Safari 16,52,2016-11-03 +session,2101,1,Chrome 15,96,2017-06-08 +session,2101,2,Chrome 40,87,2017-06-28 +session,2101,3,Safari 39,69,2016-08-12 +session,2101,4,Internet Explorer 30,112,2017-04-08 +session,2101,5,Firefox 11,33,2018-01-11 +session,2101,6,Chrome 37,88,2018-04-14 +session,2101,7,Chrome 47,64,2017-04-16 +user,2102,Gordon,Kendall,40 +session,2102,0,Internet Explorer 27,23,2018-02-26 +session,2102,1,Internet Explorer 41,28,2017-03-18 +session,2102,2,Safari 7,25,2016-05-26 +session,2102,3,Chrome 36,71,2018-06-12 +session,2102,4,Internet Explorer 34,7,2018-05-30 +session,2102,5,Firefox 28,93,2017-05-01 +user,2103,Adolph,Ha,65 +session,2103,0,Internet Explorer 4,82,2017-05-23 +session,2103,1,Chrome 10,111,2017-02-07 +session,2103,2,Chrome 14,7,2018-08-07 +session,2103,3,Firefox 22,72,2016-10-19 +session,2103,4,Firefox 40,24,2017-12-13 +session,2103,5,Chrome 37,15,2017-08-29 +session,2103,6,Firefox 19,30,2017-11-05 +session,2103,7,Firefox 31,114,2017-05-13 +session,2103,8,Safari 41,62,2018-02-27 +user,2104,Sanora,Randa,15 +session,2104,0,Internet Explorer 41,26,2017-04-13 +session,2104,1,Chrome 9,100,2017-06-06 +session,2104,2,Internet Explorer 34,17,2017-08-18 +session,2104,3,Firefox 35,75,2018-06-30 +session,2104,4,Safari 21,114,2017-08-06 +user,2105,Corinna,Barbara,40 +session,2105,0,Internet Explorer 20,110,2016-05-23 +session,2105,1,Internet Explorer 25,74,2016-08-09 +session,2105,2,Internet Explorer 32,51,2016-06-01 +session,2105,3,Chrome 21,109,2016-10-27 +session,2105,4,Firefox 41,9,2018-10-04 +session,2105,5,Firefox 37,49,2017-12-08 +session,2105,6,Internet Explorer 21,75,2018-11-24 +session,2105,7,Firefox 8,89,2017-09-16 +user,2106,Randell,Merissa,92 +session,2106,0,Firefox 38,28,2018-02-28 +session,2106,1,Safari 21,23,2017-04-27 +session,2106,2,Chrome 13,111,2017-09-02 +session,2106,3,Safari 36,39,2017-02-21 +session,2106,4,Chrome 40,106,2018-06-03 +session,2106,5,Firefox 8,53,2016-12-06 +session,2106,6,Firefox 20,104,2017-04-13 +session,2106,7,Internet Explorer 34,63,2018-12-23 +user,2107,Tod,Assunta,35 +session,2107,0,Internet Explorer 50,78,2017-09-19 +user,2108,Catalina,Anisha,41 +session,2108,0,Internet Explorer 11,82,2018-11-30 +session,2108,1,Chrome 42,98,2018-09-20 +session,2108,2,Internet Explorer 13,104,2017-10-26 +session,2108,3,Firefox 42,0,2016-08-25 +session,2108,4,Chrome 23,43,2018-03-05 +session,2108,5,Firefox 5,67,2016-09-27 +session,2108,6,Chrome 46,82,2017-05-02 +user,2109,Johnna,Edgar,89 +session,2109,0,Internet Explorer 9,65,2017-02-08 +session,2109,1,Chrome 13,41,2018-07-11 +session,2109,2,Firefox 21,61,2017-08-23 +session,2109,3,Firefox 44,95,2017-06-21 +session,2109,4,Chrome 16,34,2016-06-04 +user,2110,Rocco,Matilde,31 +session,2110,0,Internet Explorer 17,56,2017-08-09 +session,2110,1,Chrome 16,79,2017-03-13 +session,2110,2,Internet Explorer 2,14,2018-10-05 +user,2111,Lana,Hellen,88 +session,2111,0,Internet Explorer 11,107,2017-03-20 +session,2111,1,Safari 26,108,2019-01-23 +session,2111,2,Internet Explorer 27,29,2017-12-26 +session,2111,3,Internet Explorer 39,81,2018-05-19 +user,2112,Willy,Delilah,97 +session,2112,0,Chrome 7,30,2017-11-21 +session,2112,1,Internet Explorer 26,15,2019-01-26 +session,2112,2,Firefox 42,26,2017-08-18 +session,2112,3,Internet Explorer 30,92,2018-08-15 +session,2112,4,Chrome 43,44,2017-01-23 +session,2112,5,Internet Explorer 13,88,2017-10-22 +session,2112,6,Internet Explorer 43,7,2016-09-08 +session,2112,7,Internet Explorer 37,35,2018-10-14 +user,2113,Loralee,Grace,79 +session,2113,0,Firefox 11,39,2018-09-27 +session,2113,1,Safari 5,2,2017-09-20 +session,2113,2,Internet Explorer 38,70,2017-10-15 +session,2113,3,Internet Explorer 31,12,2018-12-02 +session,2113,4,Chrome 37,119,2018-04-05 +user,2114,Sanora,Inge,53 +session,2114,0,Safari 36,29,2017-06-12 +session,2114,1,Safari 48,0,2017-09-25 +session,2114,2,Internet Explorer 43,49,2018-09-23 +session,2114,3,Internet Explorer 36,24,2018-06-20 +session,2114,4,Chrome 34,99,2017-08-25 +session,2114,5,Internet Explorer 27,49,2017-08-24 +session,2114,6,Chrome 15,115,2017-10-31 +session,2114,7,Firefox 19,59,2017-05-02 +session,2114,8,Internet Explorer 4,56,2016-11-12 +session,2114,9,Safari 19,22,2018-07-31 +user,2115,Danilo,Mirtha,14 +session,2115,0,Chrome 12,13,2016-10-12 +session,2115,1,Firefox 30,56,2016-08-21 +session,2115,2,Chrome 26,0,2017-03-15 +session,2115,3,Firefox 28,41,2016-12-11 +session,2115,4,Firefox 23,60,2017-04-28 +session,2115,5,Safari 36,40,2017-09-08 +session,2115,6,Chrome 1,90,2016-10-12 +user,2116,Buck,Yulanda,10 +session,2116,0,Safari 5,63,2018-12-21 +session,2116,1,Safari 37,28,2017-02-09 +session,2116,2,Internet Explorer 43,40,2017-02-14 +session,2116,3,Chrome 32,52,2017-02-05 +session,2116,4,Chrome 33,95,2018-08-14 +user,2117,Masako,Camie,40 +session,2117,0,Safari 21,35,2018-06-01 +user,2118,Noemi,Paul,95 +session,2118,0,Internet Explorer 6,29,2017-01-07 +session,2118,1,Firefox 44,97,2018-05-10 +session,2118,2,Safari 38,48,2016-11-21 +session,2118,3,Firefox 2,69,2018-06-27 +session,2118,4,Firefox 25,85,2018-10-19 +user,2119,Marva,Bertram,73 +session,2119,0,Chrome 23,99,2017-07-25 +session,2119,1,Safari 25,54,2017-03-26 +session,2119,2,Safari 32,99,2016-06-17 +session,2119,3,Chrome 40,77,2018-08-30 +session,2119,4,Chrome 12,44,2017-09-20 +session,2119,5,Firefox 45,49,2017-04-05 +session,2119,6,Internet Explorer 20,71,2019-01-28 +session,2119,7,Chrome 50,61,2019-02-02 +user,2120,Garry,Hilaria,81 +session,2120,0,Safari 18,96,2016-09-15 +session,2120,1,Firefox 26,67,2019-01-28 +session,2120,2,Safari 35,48,2018-04-30 +session,2120,3,Internet Explorer 14,55,2016-08-21 +session,2120,4,Firefox 44,97,2017-12-09 +session,2120,5,Chrome 5,117,2016-08-07 +session,2120,6,Firefox 11,85,2016-09-25 +session,2120,7,Internet Explorer 27,107,2016-08-08 +session,2120,8,Internet Explorer 12,48,2017-05-03 +session,2120,9,Firefox 22,73,2018-06-27 +user,2121,Ione,Thea,14 +session,2121,0,Chrome 36,109,2019-02-08 +session,2121,1,Safari 19,30,2017-07-31 +session,2121,2,Safari 42,42,2019-01-01 +session,2121,3,Safari 4,22,2019-02-03 +session,2121,4,Internet Explorer 46,80,2016-09-23 +user,2122,Zola,Cathey,70 +session,2122,0,Safari 9,84,2018-09-26 +session,2122,1,Internet Explorer 36,88,2018-03-28 +session,2122,2,Internet Explorer 33,21,2018-03-24 +user,2123,Carol,Noble,53 +session,2123,0,Internet Explorer 21,36,2016-10-26 +session,2123,1,Internet Explorer 31,86,2018-12-23 +session,2123,2,Internet Explorer 13,43,2017-01-09 +session,2123,3,Firefox 29,107,2019-01-12 +session,2123,4,Safari 23,102,2016-06-15 +session,2123,5,Safari 11,56,2017-06-26 +session,2123,6,Firefox 45,67,2017-05-07 +session,2123,7,Internet Explorer 31,75,2018-06-11 +user,2124,Charlotte,Jane,44 +session,2124,0,Firefox 35,1,2018-01-22 +user,2125,Fe,Leona,66 +session,2125,0,Internet Explorer 16,75,2017-02-17 +session,2125,1,Safari 13,3,2018-02-06 +session,2125,2,Internet Explorer 14,34,2016-07-04 +session,2125,3,Firefox 32,26,2016-06-23 +session,2125,4,Chrome 19,19,2016-06-05 +user,2126,Rosamond,Marla,75 +session,2126,0,Internet Explorer 7,89,2017-05-09 +session,2126,1,Firefox 44,23,2016-08-29 +session,2126,2,Firefox 18,69,2018-05-20 +session,2126,3,Chrome 48,46,2016-12-09 +user,2127,Meri,Marcelle,88 +session,2127,0,Internet Explorer 14,43,2016-08-08 +session,2127,1,Internet Explorer 21,114,2017-10-28 +session,2127,2,Firefox 41,98,2019-01-13 +session,2127,3,Internet Explorer 2,9,2017-08-28 +session,2127,4,Chrome 2,119,2018-09-27 +user,2128,Sharita,Audrey,37 +session,2128,0,Internet Explorer 6,61,2017-01-27 +session,2128,1,Internet Explorer 21,96,2016-12-09 +session,2128,2,Safari 8,95,2017-12-10 +session,2128,3,Internet Explorer 29,113,2017-02-10 +user,2129,Ken,Graciela,53 +session,2129,0,Safari 20,90,2017-10-30 +session,2129,1,Chrome 6,81,2018-06-26 +session,2129,2,Safari 6,105,2018-05-08 +session,2129,3,Firefox 5,87,2018-03-04 +session,2129,4,Chrome 32,107,2016-08-29 +session,2129,5,Safari 39,56,2018-10-20 +session,2129,6,Chrome 46,50,2017-03-15 +session,2129,7,Chrome 7,48,2018-08-07 +user,2130,Nikia,Sheridan,9 +session,2130,0,Safari 34,32,2019-01-03 +user,2131,Stewart,Aurelio,87 +session,2131,0,Internet Explorer 23,102,2017-09-05 +session,2131,1,Firefox 27,0,2018-02-09 +session,2131,2,Internet Explorer 41,0,2018-01-29 +session,2131,3,Firefox 22,42,2016-06-19 +session,2131,4,Internet Explorer 27,14,2018-09-17 +session,2131,5,Internet Explorer 50,82,2018-06-07 +session,2131,6,Chrome 26,48,2016-05-31 +session,2131,7,Chrome 27,63,2018-06-27 +user,2132,Gidget,Jamey,80 +session,2132,0,Internet Explorer 47,40,2018-04-11 +user,2133,Cherlyn,Paola,63 +session,2133,0,Safari 8,42,2018-01-07 +session,2133,1,Chrome 31,14,2018-12-31 +user,2134,Giovanni,Brigid,66 +session,2134,0,Internet Explorer 1,32,2018-05-03 +session,2134,1,Firefox 19,105,2017-11-11 +session,2134,2,Chrome 37,9,2018-04-12 +session,2134,3,Chrome 26,0,2016-06-27 +session,2134,4,Firefox 28,27,2017-10-26 +user,2135,Stanton,Efren,71 +session,2135,0,Chrome 6,2,2017-03-13 +user,2136,Jarrod,Stephany,42 +session,2136,0,Safari 13,113,2017-12-04 +session,2136,1,Safari 20,118,2016-07-21 +session,2136,2,Safari 25,27,2016-09-08 +session,2136,3,Safari 19,62,2016-08-03 +session,2136,4,Firefox 31,12,2017-08-08 +session,2136,5,Safari 37,32,2017-09-04 +session,2136,6,Firefox 37,26,2018-05-23 +session,2136,7,Firefox 30,112,2017-02-13 +session,2136,8,Safari 36,103,2018-11-07 +user,2137,Louie,Jefferson,92 +session,2137,0,Firefox 8,99,2019-01-20 +session,2137,1,Safari 15,31,2018-10-13 +session,2137,2,Safari 10,57,2018-12-27 +session,2137,3,Firefox 6,13,2018-07-06 +user,2138,Yukiko,Cornell,81 +session,2138,0,Internet Explorer 7,56,2019-01-29 +session,2138,1,Chrome 26,84,2017-05-08 +session,2138,2,Safari 4,17,2018-03-25 +session,2138,3,Safari 5,38,2017-08-15 +session,2138,4,Internet Explorer 2,26,2018-08-30 +session,2138,5,Safari 4,84,2017-05-04 +session,2138,6,Internet Explorer 25,29,2018-08-19 +session,2138,7,Safari 42,90,2017-07-23 +user,2139,Titus,Dorcas,78 +session,2139,0,Chrome 33,61,2018-08-03 +session,2139,1,Internet Explorer 42,24,2016-10-27 +session,2139,2,Safari 35,47,2016-08-10 +session,2139,3,Internet Explorer 25,49,2017-09-30 +session,2139,4,Internet Explorer 45,9,2018-01-02 +user,2140,Teodoro,Darren,36 +session,2140,0,Firefox 8,24,2017-03-04 +session,2140,1,Chrome 8,107,2018-12-24 +session,2140,2,Internet Explorer 10,86,2017-06-09 +session,2140,3,Firefox 12,81,2017-04-12 +session,2140,4,Internet Explorer 19,39,2018-01-17 +user,2141,Luis,Hedy,74 +session,2141,0,Internet Explorer 39,92,2017-11-17 +session,2141,1,Internet Explorer 9,30,2018-07-27 +session,2141,2,Safari 3,18,2018-08-24 +session,2141,3,Chrome 38,62,2017-05-03 +session,2141,4,Chrome 49,52,2018-03-28 +session,2141,5,Internet Explorer 37,1,2018-06-09 +session,2141,6,Firefox 14,95,2018-01-14 +session,2141,7,Internet Explorer 36,27,2018-09-18 +session,2141,8,Internet Explorer 38,90,2016-12-22 +session,2141,9,Internet Explorer 40,15,2017-03-07 +user,2142,Damian,Drusilla,59 +session,2142,0,Firefox 26,106,2016-12-29 +session,2142,1,Chrome 15,22,2017-02-15 +session,2142,2,Safari 47,46,2018-03-28 +session,2142,3,Chrome 21,87,2017-09-16 +session,2142,4,Chrome 50,38,2018-01-17 +session,2142,5,Internet Explorer 7,55,2017-08-30 +user,2143,Lawana,Wonda,96 +session,2143,0,Internet Explorer 20,7,2017-12-05 +session,2143,1,Safari 40,7,2017-09-09 +session,2143,2,Internet Explorer 42,64,2017-01-04 +session,2143,3,Safari 35,29,2017-03-06 +user,2144,Brain,Bethel,51 +session,2144,0,Firefox 15,44,2018-01-23 +session,2144,1,Chrome 31,103,2018-05-27 +session,2144,2,Chrome 9,93,2018-03-13 +session,2144,3,Safari 17,50,2017-10-29 +session,2144,4,Chrome 17,22,2018-08-23 +user,2145,Willene,Renna,62 +session,2145,0,Internet Explorer 1,74,2018-05-12 +session,2145,1,Chrome 48,30,2018-12-20 +session,2145,2,Firefox 1,56,2016-10-11 +user,2146,Suzann,Hye,97 +session,2146,0,Chrome 45,97,2018-05-27 +session,2146,1,Internet Explorer 35,105,2017-09-05 +session,2146,2,Chrome 36,94,2018-10-08 +session,2146,3,Internet Explorer 37,52,2018-11-10 +user,2147,Virgil,Glenn,64 +session,2147,0,Internet Explorer 9,47,2016-12-26 +session,2147,1,Chrome 40,70,2018-08-24 +session,2147,2,Internet Explorer 40,43,2018-10-05 +session,2147,3,Firefox 12,22,2017-01-03 +session,2147,4,Internet Explorer 41,99,2016-12-12 +session,2147,5,Safari 34,48,2017-08-05 +session,2147,6,Chrome 14,72,2018-05-31 +session,2147,7,Chrome 22,45,2017-07-30 +session,2147,8,Safari 1,73,2018-03-20 +session,2147,9,Firefox 41,6,2016-08-10 +user,2148,Edmundo,Romelia,35 +session,2148,0,Safari 29,0,2018-09-28 +session,2148,1,Internet Explorer 17,25,2017-10-18 +session,2148,2,Chrome 41,104,2018-07-03 +session,2148,3,Safari 11,8,2018-07-25 +session,2148,4,Safari 23,27,2019-01-03 +session,2148,5,Firefox 43,83,2019-01-13 +user,2149,Sina,Meghan,12 +session,2149,0,Chrome 11,108,2017-08-26 +session,2149,1,Internet Explorer 34,70,2016-12-04 +session,2149,2,Safari 43,32,2018-03-03 +session,2149,3,Safari 19,4,2016-10-21 +session,2149,4,Firefox 19,51,2016-12-07 +session,2149,5,Safari 35,50,2016-06-23 +user,2150,Katerine,Dale,7 +session,2150,0,Chrome 49,18,2018-10-21 +session,2150,1,Internet Explorer 11,57,2018-01-26 +session,2150,2,Chrome 30,97,2016-11-12 +session,2150,3,Firefox 17,36,2018-11-13 +session,2150,4,Firefox 42,111,2018-03-17 +session,2150,5,Internet Explorer 30,34,2018-05-10 +session,2150,6,Safari 3,86,2019-02-12 +session,2150,7,Firefox 46,51,2016-06-25 +session,2150,8,Safari 21,2,2016-07-18 +session,2150,9,Internet Explorer 39,10,2018-06-29 +user,2151,Barbar,Jordon,27 +session,2151,0,Firefox 23,79,2016-08-01 +session,2151,1,Internet Explorer 39,64,2016-11-11 +session,2151,2,Firefox 32,110,2018-10-27 +user,2152,Shaneka,Cindy,35 +session,2152,0,Chrome 28,12,2017-05-12 +session,2152,1,Safari 31,24,2017-06-16 +session,2152,2,Chrome 5,105,2018-02-05 +session,2152,3,Internet Explorer 10,30,2016-07-17 +session,2152,4,Chrome 42,74,2018-11-11 +session,2152,5,Internet Explorer 6,64,2017-12-02 +session,2152,6,Chrome 10,2,2017-03-21 +session,2152,7,Internet Explorer 39,113,2018-12-04 +session,2152,8,Internet Explorer 31,43,2017-02-13 +session,2152,9,Safari 24,82,2017-01-20 +user,2153,Donny,Lee,91 +session,2153,0,Internet Explorer 45,94,2017-05-02 +session,2153,1,Safari 49,23,2017-05-13 +session,2153,2,Internet Explorer 20,92,2018-03-29 +session,2153,3,Chrome 37,18,2017-07-11 +session,2153,4,Chrome 1,106,2018-01-30 +session,2153,5,Internet Explorer 26,12,2017-12-20 +session,2153,6,Safari 6,24,2018-10-31 +user,2154,Merrill,Carolin,46 +session,2154,0,Internet Explorer 47,28,2016-10-08 +session,2154,1,Safari 6,31,2016-07-19 +session,2154,2,Firefox 15,101,2016-08-30 +session,2154,3,Internet Explorer 5,116,2017-12-23 +session,2154,4,Safari 50,8,2016-06-13 +session,2154,5,Firefox 36,114,2018-01-14 +session,2154,6,Safari 41,35,2018-06-13 +session,2154,7,Safari 12,37,2016-07-14 +session,2154,8,Chrome 10,0,2017-11-14 +session,2154,9,Internet Explorer 42,101,2018-03-24 +user,2155,Cordell,Natosha,31 +session,2155,0,Safari 27,31,2017-02-09 +session,2155,1,Internet Explorer 45,103,2017-01-20 +session,2155,2,Internet Explorer 38,22,2017-05-23 +session,2155,3,Firefox 48,17,2017-06-08 +session,2155,4,Safari 12,100,2019-01-05 +user,2156,Haywood,Asley,67 +session,2156,0,Firefox 18,65,2019-01-07 +session,2156,1,Safari 49,92,2017-07-08 +session,2156,2,Internet Explorer 37,34,2016-09-05 +session,2156,3,Firefox 26,83,2016-06-18 +session,2156,4,Firefox 40,47,2016-08-25 +session,2156,5,Internet Explorer 16,11,2018-06-07 +session,2156,6,Safari 8,97,2016-06-03 +session,2156,7,Safari 47,32,2018-01-13 +session,2156,8,Safari 28,100,2017-11-07 +session,2156,9,Chrome 3,113,2017-03-25 +user,2157,Clifford,Matha,31 +session,2157,0,Safari 48,23,2017-04-04 +session,2157,1,Firefox 14,51,2018-08-07 +session,2157,2,Chrome 17,97,2018-08-13 +session,2157,3,Chrome 35,99,2017-06-26 +session,2157,4,Firefox 9,51,2017-09-28 +session,2157,5,Chrome 46,59,2017-01-08 +session,2157,6,Internet Explorer 35,43,2018-04-21 +session,2157,7,Chrome 1,104,2018-11-30 +user,2158,Chung,Tameka,88 +session,2158,0,Firefox 3,103,2017-10-20 +session,2158,1,Internet Explorer 28,50,2016-09-13 +session,2158,2,Internet Explorer 39,10,2018-03-07 +session,2158,3,Safari 45,40,2016-11-02 +session,2158,4,Internet Explorer 7,116,2016-06-19 +session,2158,5,Internet Explorer 16,106,2017-10-02 +session,2158,6,Chrome 15,96,2017-09-20 +session,2158,7,Chrome 35,15,2017-10-28 +session,2158,8,Chrome 32,30,2018-09-07 +session,2158,9,Chrome 24,6,2017-05-21 +user,2159,Ivory,Scarlet,21 +session,2159,0,Internet Explorer 41,0,2017-10-23 +session,2159,1,Safari 48,100,2018-03-09 +session,2159,2,Internet Explorer 11,102,2016-12-22 +session,2159,3,Safari 47,11,2018-12-16 +session,2159,4,Internet Explorer 24,86,2017-11-14 +user,2160,Kathy,Christina,83 +session,2160,0,Firefox 41,17,2018-12-18 +session,2160,1,Safari 42,119,2017-04-12 +session,2160,2,Firefox 19,35,2018-03-03 +session,2160,3,Firefox 32,6,2018-04-09 +user,2161,Mi,Kelsi,3 +session,2161,0,Safari 26,7,2017-02-01 +session,2161,1,Internet Explorer 44,30,2017-04-14 +session,2161,2,Firefox 25,77,2018-08-05 +session,2161,3,Internet Explorer 14,81,2017-01-14 +session,2161,4,Safari 5,52,2017-01-17 +session,2161,5,Firefox 32,38,2017-06-17 +user,2162,Dianna,Francisco,9 +session,2162,0,Safari 15,2,2018-04-17 +session,2162,1,Safari 22,3,2018-09-16 +user,2163,Carma,Soraya,73 +session,2163,0,Internet Explorer 7,4,2018-06-01 +session,2163,1,Chrome 21,99,2018-10-04 +session,2163,2,Safari 45,103,2018-02-22 +session,2163,3,Firefox 23,3,2018-11-21 +session,2163,4,Internet Explorer 35,22,2018-06-24 +session,2163,5,Internet Explorer 37,106,2017-06-15 +session,2163,6,Internet Explorer 12,108,2017-05-03 +session,2163,7,Safari 27,96,2018-01-02 +session,2163,8,Internet Explorer 34,18,2018-09-17 +user,2164,Chung,Maricela,70 +session,2164,0,Internet Explorer 29,97,2018-07-04 +session,2164,1,Chrome 34,30,2018-01-09 +session,2164,2,Firefox 25,85,2018-02-12 +session,2164,3,Safari 2,116,2017-01-24 +session,2164,4,Chrome 35,17,2018-07-30 +session,2164,5,Firefox 39,21,2017-03-26 +session,2164,6,Internet Explorer 38,99,2017-03-08 +user,2165,Florentino,Eusebia,9 +session,2165,0,Internet Explorer 17,62,2017-06-08 +session,2165,1,Internet Explorer 44,37,2018-09-14 +session,2165,2,Chrome 42,93,2016-10-10 +session,2165,3,Safari 23,99,2018-03-19 +session,2165,4,Chrome 12,113,2018-09-12 +session,2165,5,Chrome 27,81,2018-12-21 +session,2165,6,Safari 30,8,2017-03-09 +user,2166,Karol,Kiara,76 +session,2166,0,Firefox 42,101,2018-03-26 +session,2166,1,Firefox 3,69,2016-12-06 +session,2166,2,Internet Explorer 32,39,2019-01-28 +session,2166,3,Internet Explorer 38,36,2017-10-31 +session,2166,4,Safari 26,73,2019-01-23 +session,2166,5,Safari 28,83,2016-12-08 +session,2166,6,Internet Explorer 26,40,2018-01-02 +session,2166,7,Internet Explorer 30,99,2018-03-22 +session,2166,8,Firefox 8,26,2017-02-27 +user,2167,Fidel,Malisa,53 +session,2167,0,Firefox 2,56,2017-09-06 +session,2167,1,Internet Explorer 42,32,2016-08-29 +session,2167,2,Safari 49,27,2017-01-02 +session,2167,3,Chrome 19,3,2018-04-10 +session,2167,4,Chrome 19,68,2018-11-25 +session,2167,5,Firefox 33,60,2018-09-09 +session,2167,6,Chrome 39,2,2018-03-03 +session,2167,7,Chrome 41,51,2018-12-08 +session,2167,8,Internet Explorer 5,57,2017-12-30 +user,2168,Fatimah,Noel,69 +session,2168,0,Firefox 3,110,2017-08-31 +session,2168,1,Internet Explorer 24,34,2016-10-09 +session,2168,2,Chrome 23,20,2018-03-20 +session,2168,3,Internet Explorer 6,104,2018-12-20 +session,2168,4,Chrome 5,36,2018-11-20 +session,2168,5,Internet Explorer 47,82,2016-11-24 +session,2168,6,Safari 27,44,2018-02-03 +user,2169,Antwan,Omega,38 +session,2169,0,Safari 21,69,2017-02-17 +session,2169,1,Chrome 49,75,2017-07-26 +session,2169,2,Safari 10,85,2018-10-16 +session,2169,3,Safari 4,97,2017-01-28 +session,2169,4,Chrome 50,82,2017-12-05 +session,2169,5,Firefox 16,92,2018-06-08 +session,2169,6,Internet Explorer 43,56,2017-05-05 +session,2169,7,Safari 17,24,2017-08-02 +user,2170,Jefferey,Amee,51 +session,2170,0,Chrome 17,10,2018-12-12 +session,2170,1,Safari 16,27,2017-02-07 +session,2170,2,Chrome 45,41,2017-05-11 +session,2170,3,Internet Explorer 45,102,2018-10-02 +session,2170,4,Safari 34,93,2018-12-04 +session,2170,5,Internet Explorer 23,88,2016-08-08 +session,2170,6,Firefox 9,51,2018-11-07 +session,2170,7,Firefox 15,14,2017-02-28 +session,2170,8,Firefox 21,58,2017-08-04 +user,2171,Mahalia,Desiree,97 +session,2171,0,Firefox 47,45,2017-02-06 +session,2171,1,Firefox 22,12,2018-05-05 +session,2171,2,Safari 36,100,2018-04-26 +user,2172,Gertrude,Autumn,20 +session,2172,0,Chrome 46,91,2019-02-06 +session,2172,1,Firefox 35,115,2018-08-10 +session,2172,2,Internet Explorer 34,95,2016-05-22 +session,2172,3,Chrome 30,75,2017-03-15 +session,2172,4,Chrome 9,114,2018-03-06 +session,2172,5,Chrome 18,82,2018-07-31 +session,2172,6,Chrome 22,35,2016-06-22 +session,2172,7,Safari 31,19,2017-07-16 +session,2172,8,Chrome 14,87,2018-06-07 +user,2173,Douglass,Frederick,24 +session,2173,0,Chrome 26,16,2018-07-08 +session,2173,1,Safari 13,88,2017-08-16 +session,2173,2,Firefox 2,101,2017-12-13 +session,2173,3,Safari 33,88,2017-02-25 +user,2174,Lavern,Whitney,1 +session,2174,0,Chrome 20,71,2016-06-12 +session,2174,1,Chrome 18,116,2016-10-02 +user,2175,Gwenn,Zane,39 +session,2175,0,Chrome 22,21,2017-02-27 +session,2175,1,Safari 47,69,2017-04-12 +session,2175,2,Internet Explorer 3,48,2017-02-22 +session,2175,3,Safari 25,65,2018-05-16 +session,2175,4,Internet Explorer 2,89,2016-08-12 +session,2175,5,Safari 34,101,2016-08-17 +session,2175,6,Chrome 26,73,2016-08-27 +session,2175,7,Internet Explorer 48,90,2017-01-31 +session,2175,8,Chrome 19,39,2017-08-25 +user,2176,William,Kirby,51 +session,2176,0,Internet Explorer 46,116,2016-06-25 +session,2176,1,Safari 34,50,2016-11-01 +session,2176,2,Internet Explorer 39,77,2018-03-06 +session,2176,3,Firefox 10,33,2018-03-30 +session,2176,4,Firefox 40,53,2016-12-18 +user,2177,Edmond,Eleonora,61 +session,2177,0,Internet Explorer 30,51,2016-12-03 +session,2177,1,Firefox 17,69,2018-05-23 +session,2177,2,Chrome 35,89,2017-05-08 +session,2177,3,Firefox 16,92,2017-08-05 +session,2177,4,Internet Explorer 36,78,2017-05-29 +user,2178,Bennie,Nilsa,86 +session,2178,0,Firefox 21,51,2016-11-21 +session,2178,1,Chrome 33,22,2018-04-30 +session,2178,2,Firefox 19,21,2018-05-10 +session,2178,3,Firefox 35,2,2017-10-19 +session,2178,4,Firefox 20,19,2017-10-28 +session,2178,5,Internet Explorer 41,1,2017-09-09 +session,2178,6,Safari 5,55,2016-07-13 +user,2179,Oliver,Raisa,68 +session,2179,0,Safari 30,82,2018-03-09 +session,2179,1,Safari 12,11,2017-09-25 +session,2179,2,Safari 40,21,2017-01-31 +session,2179,3,Safari 34,13,2019-01-13 +user,2180,Reynaldo,Cherise,68 +session,2180,0,Safari 31,28,2018-08-09 +session,2180,1,Safari 21,71,2018-08-05 +session,2180,2,Safari 18,3,2018-08-24 +session,2180,3,Internet Explorer 15,90,2017-08-24 +session,2180,4,Safari 10,46,2018-01-11 +session,2180,5,Chrome 39,104,2018-05-25 +session,2180,6,Safari 7,78,2017-10-25 +session,2180,7,Chrome 49,21,2017-09-14 +session,2180,8,Firefox 13,101,2016-06-17 +user,2181,Elvie,Roosevelt,89 +session,2181,0,Chrome 42,61,2018-12-01 +session,2181,1,Safari 45,19,2018-12-14 +session,2181,2,Internet Explorer 17,58,2017-06-10 +session,2181,3,Firefox 47,22,2017-09-17 +session,2181,4,Chrome 46,6,2017-06-12 +session,2181,5,Firefox 42,62,2018-10-09 +session,2181,6,Safari 40,27,2016-12-21 +session,2181,7,Chrome 30,69,2017-07-13 +session,2181,8,Firefox 40,41,2018-10-03 +user,2182,Rayna,Nila,17 +session,2182,0,Chrome 39,98,2017-10-24 +session,2182,1,Firefox 23,48,2017-06-23 +session,2182,2,Firefox 8,113,2018-06-25 +session,2182,3,Internet Explorer 24,29,2017-06-30 +session,2182,4,Safari 32,44,2017-01-28 +session,2182,5,Firefox 14,55,2016-06-03 +user,2183,Glayds,Tonie,87 +session,2183,0,Safari 42,105,2018-02-22 +session,2183,1,Internet Explorer 44,69,2017-06-09 +session,2183,2,Safari 47,16,2018-09-18 +session,2183,3,Safari 24,13,2016-08-24 +user,2184,Ivey,Shavonne,73 +session,2184,0,Firefox 28,13,2018-11-26 +session,2184,1,Firefox 22,5,2018-10-20 +session,2184,2,Internet Explorer 30,91,2018-01-14 +session,2184,3,Safari 24,95,2016-10-04 +session,2184,4,Firefox 24,78,2016-06-12 +session,2184,5,Chrome 41,31,2016-11-04 +user,2185,Hal,Ahmed,51 +session,2185,0,Safari 11,26,2017-08-10 +session,2185,1,Chrome 5,9,2019-01-17 +session,2185,2,Internet Explorer 14,8,2018-04-20 +session,2185,3,Firefox 34,100,2018-10-04 +session,2185,4,Chrome 16,27,2018-07-14 +session,2185,5,Chrome 20,63,2017-07-21 +user,2186,Isobel,Cesar,37 +session,2186,0,Internet Explorer 16,58,2018-07-05 +session,2186,1,Internet Explorer 12,41,2018-11-19 +session,2186,2,Internet Explorer 34,117,2017-01-04 +session,2186,3,Firefox 5,114,2018-07-16 +session,2186,4,Firefox 46,16,2019-01-18 +session,2186,5,Internet Explorer 11,119,2017-09-15 +user,2187,Guy,Guadalupe,19 +session,2187,0,Internet Explorer 44,56,2017-11-26 +session,2187,1,Chrome 45,31,2018-05-14 +session,2187,2,Safari 20,112,2017-11-05 +user,2188,Agatha,Leon,86 +session,2188,0,Chrome 30,113,2017-09-09 +session,2188,1,Internet Explorer 44,5,2017-05-24 +session,2188,2,Internet Explorer 4,56,2017-07-17 +session,2188,3,Firefox 16,67,2018-03-30 +user,2189,Marion,Kemberly,74 +session,2189,0,Chrome 6,86,2018-12-10 +session,2189,1,Safari 9,96,2016-10-01 +session,2189,2,Chrome 44,97,2017-07-02 +user,2190,Moon,Connie,83 +session,2190,0,Chrome 42,39,2018-09-05 +session,2190,1,Safari 26,75,2017-01-02 +session,2190,2,Safari 23,37,2018-04-11 +session,2190,3,Firefox 9,77,2018-12-16 +session,2190,4,Chrome 3,66,2018-07-03 +session,2190,5,Chrome 21,32,2017-05-08 +session,2190,6,Chrome 24,91,2017-12-10 +session,2190,7,Firefox 15,50,2017-08-25 +session,2190,8,Chrome 32,91,2018-08-27 +user,2191,Garrett,Corazon,64 +session,2191,0,Chrome 35,49,2017-09-26 +session,2191,1,Chrome 28,71,2016-07-21 +session,2191,2,Chrome 24,7,2018-03-24 +session,2191,3,Safari 41,39,2018-08-27 +session,2191,4,Safari 27,33,2017-01-13 +session,2191,5,Firefox 33,92,2016-06-22 +user,2192,Jacquelin,Candis,32 +session,2192,0,Firefox 23,41,2017-07-20 +session,2192,1,Chrome 21,111,2017-02-14 +session,2192,2,Firefox 25,2,2019-01-08 +user,2193,Johnnie,Twanda,3 +session,2193,0,Firefox 5,36,2018-11-19 +session,2193,1,Safari 41,40,2018-12-27 +session,2193,2,Firefox 27,33,2018-05-10 +session,2193,3,Safari 45,57,2016-08-17 +session,2193,4,Internet Explorer 1,60,2018-08-21 +session,2193,5,Chrome 10,8,2017-03-09 +user,2194,Felipe,Louis,21 +session,2194,0,Safari 42,91,2016-07-03 +user,2195,Rudy,Yvone,53 +session,2195,0,Internet Explorer 44,3,2016-12-21 +session,2195,1,Firefox 36,26,2018-01-10 +session,2195,2,Safari 42,69,2016-12-28 +session,2195,3,Chrome 48,12,2017-12-06 +session,2195,4,Safari 30,67,2017-05-14 +session,2195,5,Firefox 48,34,2017-06-22 +session,2195,6,Chrome 34,62,2016-09-12 +user,2196,Abdul,Jim,78 +session,2196,0,Chrome 7,62,2017-10-01 +session,2196,1,Internet Explorer 41,112,2017-06-21 +session,2196,2,Chrome 17,88,2018-10-15 +session,2196,3,Firefox 34,61,2018-10-24 +session,2196,4,Chrome 36,111,2019-01-06 +session,2196,5,Chrome 12,66,2016-08-31 +session,2196,6,Internet Explorer 50,53,2017-07-26 +session,2196,7,Firefox 19,17,2019-01-23 +session,2196,8,Firefox 8,80,2018-08-19 +user,2197,Chauncey,Burton,69 +session,2197,0,Internet Explorer 19,18,2017-03-19 +session,2197,1,Firefox 14,38,2019-01-20 +session,2197,2,Chrome 24,63,2017-02-09 +session,2197,3,Chrome 37,58,2017-04-19 +session,2197,4,Firefox 48,72,2019-01-10 +session,2197,5,Firefox 2,104,2016-10-23 +session,2197,6,Firefox 45,53,2018-01-01 +session,2197,7,Internet Explorer 22,37,2018-06-15 +session,2197,8,Chrome 42,57,2017-08-26 +session,2197,9,Internet Explorer 34,19,2016-11-28 +user,2198,Seth,Rhett,81 +session,2198,0,Firefox 29,44,2017-01-23 +session,2198,1,Internet Explorer 9,87,2018-04-14 +session,2198,2,Firefox 4,16,2017-10-14 +session,2198,3,Chrome 29,23,2018-08-24 +session,2198,4,Chrome 34,70,2018-07-03 +session,2198,5,Internet Explorer 38,71,2018-09-28 +session,2198,6,Internet Explorer 25,96,2018-06-01 +user,2199,Erica,Isidra,23 +session,2199,0,Internet Explorer 45,71,2016-06-04 +session,2199,1,Chrome 37,1,2017-12-01 +session,2199,2,Internet Explorer 6,58,2016-09-01 +session,2199,3,Safari 21,60,2018-04-23 +session,2199,4,Chrome 11,19,2018-04-21 +session,2199,5,Chrome 44,26,2016-09-24 +session,2199,6,Internet Explorer 48,67,2016-08-22 +session,2199,7,Chrome 2,70,2018-11-14 +session,2199,8,Internet Explorer 50,49,2016-06-14 +session,2199,9,Chrome 23,104,2016-11-16 +user,2200,Laurence,Rebeca,83 +session,2200,0,Safari 26,14,2018-02-27 +session,2200,1,Safari 21,8,2017-04-16 +session,2200,2,Chrome 7,12,2017-12-11 +session,2200,3,Internet Explorer 5,77,2017-05-13 +session,2200,4,Safari 8,78,2017-03-19 +user,2201,Ty,Joey,76 +session,2201,0,Safari 5,35,2018-05-19 +session,2201,1,Safari 40,44,2016-09-13 +session,2201,2,Safari 9,89,2018-12-19 +session,2201,3,Internet Explorer 48,74,2019-01-04 +user,2202,Jacquetta,Nathanael,7 +session,2202,0,Safari 20,106,2018-09-18 +session,2202,1,Internet Explorer 11,110,2016-10-21 +session,2202,2,Internet Explorer 28,116,2018-10-26 +session,2202,3,Safari 22,25,2017-09-02 +session,2202,4,Firefox 2,6,2017-02-07 +session,2202,5,Internet Explorer 16,91,2017-08-10 +session,2202,6,Safari 6,23,2018-05-23 +session,2202,7,Internet Explorer 33,33,2016-11-06 +session,2202,8,Safari 19,4,2017-01-17 +user,2203,Bernadine,Vernon,84 +session,2203,0,Firefox 11,119,2017-07-03 +session,2203,1,Internet Explorer 48,23,2018-10-17 +session,2203,2,Internet Explorer 49,118,2019-01-14 +session,2203,3,Chrome 29,49,2017-03-24 +user,2204,Refugio,Keshia,50 +session,2204,0,Safari 15,11,2017-05-03 +session,2204,1,Firefox 9,100,2017-09-20 +session,2204,2,Firefox 25,15,2018-12-22 +session,2204,3,Safari 20,40,2018-03-11 +session,2204,4,Chrome 47,101,2016-05-21 +session,2204,5,Chrome 49,45,2016-10-06 +user,2205,Wilson,Francoise,6 +session,2205,0,Firefox 3,27,2017-09-18 +session,2205,1,Firefox 24,78,2019-01-16 +session,2205,2,Internet Explorer 36,108,2018-07-29 +session,2205,3,Internet Explorer 31,60,2017-02-05 +session,2205,4,Internet Explorer 8,82,2018-06-04 +session,2205,5,Internet Explorer 49,30,2016-10-11 +session,2205,6,Internet Explorer 30,53,2018-09-26 +user,2206,Kina,Amee,61 +session,2206,0,Firefox 19,108,2017-04-06 +session,2206,1,Firefox 45,74,2016-12-07 +session,2206,2,Internet Explorer 28,61,2018-03-17 +session,2206,3,Firefox 44,43,2017-07-09 +session,2206,4,Internet Explorer 27,82,2018-03-03 +user,2207,Joaquin,Bibi,99 +session,2207,0,Chrome 17,37,2017-02-14 +session,2207,1,Chrome 14,44,2016-07-06 +session,2207,2,Firefox 4,24,2017-01-13 +user,2208,Wilmer,Hwa,84 +session,2208,0,Firefox 37,36,2017-07-06 +session,2208,1,Firefox 31,80,2018-08-16 +user,2209,Lyle,Twanna,27 +session,2209,0,Chrome 23,69,2016-08-16 +session,2209,1,Internet Explorer 47,51,2019-01-13 +session,2209,2,Internet Explorer 46,30,2017-07-20 +session,2209,3,Safari 45,0,2017-04-03 +session,2209,4,Firefox 32,1,2016-06-21 +session,2209,5,Internet Explorer 9,26,2016-07-26 +session,2209,6,Firefox 38,17,2017-11-10 +session,2209,7,Chrome 18,99,2018-09-03 +session,2209,8,Internet Explorer 50,33,2017-10-16 +session,2209,9,Chrome 8,93,2018-07-29 +user,2210,Leeann,Stephen,36 +session,2210,0,Firefox 11,77,2017-12-07 +session,2210,1,Chrome 2,57,2017-02-17 +user,2211,Isreal,Chanelle,71 +session,2211,0,Chrome 8,11,2017-02-24 +user,2212,Anita,Shelby,56 +session,2212,0,Internet Explorer 33,94,2016-09-29 +session,2212,1,Internet Explorer 33,31,2018-12-19 +session,2212,2,Firefox 48,91,2018-11-20 +session,2212,3,Firefox 34,54,2018-04-30 +session,2212,4,Safari 25,71,2017-04-22 +session,2212,5,Internet Explorer 12,119,2018-04-16 +session,2212,6,Firefox 42,39,2017-02-21 +session,2212,7,Internet Explorer 23,54,2017-12-14 +session,2212,8,Internet Explorer 46,3,2018-09-04 +user,2213,Catrina,Vivian,98 +session,2213,0,Internet Explorer 5,17,2019-01-16 +session,2213,1,Internet Explorer 11,100,2018-06-01 +session,2213,2,Internet Explorer 24,35,2017-04-13 +session,2213,3,Firefox 38,55,2016-05-21 +session,2213,4,Firefox 6,32,2017-12-12 +session,2213,5,Chrome 47,66,2017-09-22 +session,2213,6,Chrome 41,28,2017-04-12 +user,2214,Jonie,Sylvester,62 +session,2214,0,Firefox 5,31,2018-10-02 +session,2214,1,Internet Explorer 18,8,2018-10-09 +session,2214,2,Internet Explorer 19,69,2018-08-30 +user,2215,Trent,Simonne,69 +session,2215,0,Safari 2,74,2018-09-21 +session,2215,1,Firefox 30,38,2016-10-26 +session,2215,2,Safari 7,91,2016-05-19 +session,2215,3,Chrome 32,16,2017-06-18 +session,2215,4,Chrome 42,108,2018-08-30 +session,2215,5,Internet Explorer 17,46,2016-09-08 +session,2215,6,Internet Explorer 10,51,2017-03-01 +session,2215,7,Firefox 21,86,2017-10-10 +session,2215,8,Internet Explorer 8,83,2016-12-05 +user,2216,Tawanna,Clement,26 +session,2216,0,Safari 25,119,2016-09-04 +session,2216,1,Internet Explorer 15,24,2017-11-17 +session,2216,2,Safari 10,96,2019-01-19 +session,2216,3,Safari 44,99,2016-09-12 +user,2217,Brendan,Sheri,22 +session,2217,0,Safari 21,92,2018-09-19 +session,2217,1,Internet Explorer 30,60,2017-08-19 +session,2217,2,Firefox 37,62,2017-11-10 +session,2217,3,Internet Explorer 13,22,2017-11-20 +session,2217,4,Firefox 50,51,2018-06-12 +session,2217,5,Internet Explorer 36,91,2017-02-24 +session,2217,6,Safari 32,101,2018-06-20 +session,2217,7,Safari 49,37,2016-12-06 +user,2218,Carl,Natashia,62 +session,2218,0,Safari 2,49,2017-05-23 +session,2218,1,Internet Explorer 6,27,2017-02-27 +user,2219,Tawanna,Birgit,62 +session,2219,0,Chrome 1,13,2018-12-17 +session,2219,1,Firefox 43,32,2018-09-18 +session,2219,2,Chrome 8,10,2017-02-10 +session,2219,3,Firefox 30,11,2017-04-05 +session,2219,4,Internet Explorer 16,12,2017-02-17 +session,2219,5,Firefox 34,81,2017-09-29 +session,2219,6,Chrome 28,96,2016-12-07 +session,2219,7,Chrome 35,71,2017-03-07 +user,2220,Gabrielle,Yang,77 +session,2220,0,Internet Explorer 33,95,2018-09-09 +session,2220,1,Internet Explorer 45,117,2017-04-16 +session,2220,2,Chrome 33,25,2017-07-29 +session,2220,3,Firefox 46,44,2016-09-20 +session,2220,4,Internet Explorer 43,90,2018-06-09 +session,2220,5,Internet Explorer 48,24,2018-09-28 +session,2220,6,Firefox 48,103,2018-08-13 +session,2220,7,Firefox 50,52,2016-09-30 +user,2221,Collene,Douglas,56 +session,2221,0,Safari 5,39,2017-08-17 +session,2221,1,Safari 4,69,2016-09-04 +session,2221,2,Safari 43,24,2017-01-18 +session,2221,3,Safari 42,113,2016-07-02 +session,2221,4,Firefox 13,54,2017-11-11 +session,2221,5,Internet Explorer 2,103,2016-08-17 +session,2221,6,Firefox 36,43,2017-10-12 +user,2222,Buford,Suzanna,82 +session,2222,0,Internet Explorer 16,20,2017-08-24 +session,2222,1,Chrome 42,118,2018-08-14 +user,2223,Thaddeus,Kayce,22 +session,2223,0,Firefox 19,118,2016-12-26 +session,2223,1,Chrome 47,5,2017-08-28 +session,2223,2,Safari 38,115,2016-12-22 +user,2224,Matthew,Soon,83 +session,2224,0,Firefox 31,3,2017-12-18 +session,2224,1,Firefox 26,57,2017-01-26 +session,2224,2,Internet Explorer 29,86,2016-08-18 +session,2224,3,Internet Explorer 25,64,2016-11-22 +session,2224,4,Internet Explorer 7,55,2017-01-31 +user,2225,Kali,Analisa,82 +session,2225,0,Internet Explorer 4,98,2018-09-23 +session,2225,1,Chrome 3,26,2017-07-27 +session,2225,2,Safari 34,73,2017-11-16 +session,2225,3,Chrome 20,30,2016-06-26 +session,2225,4,Internet Explorer 15,16,2018-06-16 +session,2225,5,Internet Explorer 50,13,2018-03-09 +user,2226,Darwin,Joellen,17 +session,2226,0,Internet Explorer 12,5,2018-07-23 +session,2226,1,Safari 19,97,2018-08-25 +session,2226,2,Firefox 13,119,2018-10-01 +session,2226,3,Chrome 8,78,2018-10-26 +session,2226,4,Internet Explorer 17,35,2016-06-08 +user,2227,Dannie,So,56 +session,2227,0,Firefox 44,108,2017-01-02 +session,2227,1,Firefox 39,79,2016-08-02 +session,2227,2,Firefox 46,27,2017-08-23 +user,2228,Monica,Harriett,19 +session,2228,0,Firefox 7,50,2018-03-15 +session,2228,1,Safari 6,76,2017-04-22 +session,2228,2,Internet Explorer 39,18,2018-07-19 +session,2228,3,Internet Explorer 17,104,2018-02-27 +session,2228,4,Chrome 18,24,2017-10-20 +user,2229,Ladawn,Deneen,4 +session,2229,0,Firefox 29,70,2017-09-26 +session,2229,1,Internet Explorer 45,96,2017-02-17 +user,2230,Agustin,Stevie,40 +session,2230,0,Firefox 2,48,2018-10-19 +session,2230,1,Internet Explorer 26,49,2016-06-08 +session,2230,2,Internet Explorer 40,1,2018-09-03 +session,2230,3,Chrome 42,72,2019-01-23 +session,2230,4,Safari 25,85,2017-05-07 +session,2230,5,Firefox 16,100,2019-01-04 +user,2231,Maribeth,Richard,10 +session,2231,0,Safari 34,77,2016-08-29 +session,2231,1,Internet Explorer 27,95,2016-08-23 +session,2231,2,Internet Explorer 46,26,2016-10-09 +session,2231,3,Chrome 5,56,2017-07-11 +session,2231,4,Chrome 33,95,2018-06-05 +session,2231,5,Internet Explorer 29,47,2017-09-20 +session,2231,6,Safari 22,17,2019-01-06 +session,2231,7,Safari 21,70,2017-10-31 +user,2232,Shery,Petrina,57 +session,2232,0,Internet Explorer 30,111,2018-10-24 +session,2232,1,Chrome 15,20,2018-01-17 +session,2232,2,Internet Explorer 30,114,2018-10-22 +session,2232,3,Safari 5,53,2016-09-22 +user,2233,Christen,Suzann,83 +session,2233,0,Chrome 33,108,2016-06-02 +session,2233,1,Chrome 27,103,2016-10-01 +session,2233,2,Internet Explorer 4,33,2017-11-27 +session,2233,3,Internet Explorer 37,112,2018-07-21 +session,2233,4,Safari 33,97,2016-09-22 +session,2233,5,Internet Explorer 8,73,2018-02-27 +session,2233,6,Chrome 4,24,2018-04-22 +user,2234,Laverne,Tam,41 +session,2234,0,Firefox 27,16,2016-07-20 +session,2234,1,Firefox 39,91,2018-01-26 +session,2234,2,Internet Explorer 12,119,2017-10-19 +session,2234,3,Safari 29,97,2017-10-20 +session,2234,4,Internet Explorer 24,60,2016-12-16 +session,2234,5,Chrome 32,57,2017-03-17 +session,2234,6,Chrome 22,23,2017-05-29 +session,2234,7,Chrome 44,31,2017-02-22 +session,2234,8,Firefox 20,100,2017-02-24 +session,2234,9,Safari 35,79,2018-03-23 +user,2235,Fredrick,Elizbeth,52 +session,2235,0,Chrome 29,0,2017-04-07 +session,2235,1,Internet Explorer 29,50,2017-08-15 +session,2235,2,Internet Explorer 32,42,2017-07-19 +session,2235,3,Firefox 40,64,2018-08-14 +session,2235,4,Chrome 36,63,2018-07-27 +session,2235,5,Firefox 22,95,2017-04-08 +session,2235,6,Firefox 25,39,2017-02-20 +user,2236,Wilford,Daphne,37 +session,2236,0,Chrome 17,7,2017-07-18 +session,2236,1,Firefox 40,36,2018-11-28 +session,2236,2,Safari 19,8,2017-04-08 +session,2236,3,Firefox 38,61,2017-08-07 +session,2236,4,Firefox 1,112,2017-06-25 +session,2236,5,Safari 42,98,2017-02-27 +user,2237,Kindra,Tobias,52 +session,2237,0,Firefox 12,21,2018-02-19 +session,2237,1,Internet Explorer 3,116,2017-04-23 +session,2237,2,Firefox 49,93,2017-08-19 +session,2237,3,Chrome 18,87,2018-10-16 +session,2237,4,Safari 23,8,2016-06-20 +session,2237,5,Safari 16,0,2018-02-22 +session,2237,6,Safari 18,82,2018-04-16 +user,2238,Denisse,Eartha,79 +session,2238,0,Safari 4,45,2016-11-17 +session,2238,1,Firefox 50,75,2016-12-23 +session,2238,2,Chrome 12,67,2016-11-09 +session,2238,3,Chrome 3,98,2016-06-11 +session,2238,4,Internet Explorer 43,87,2018-09-11 +session,2238,5,Chrome 26,27,2017-04-19 +session,2238,6,Chrome 25,83,2017-01-24 +user,2239,Renee,Clyde,71 +session,2239,0,Safari 1,28,2018-07-19 +session,2239,1,Chrome 24,66,2016-09-30 +session,2239,2,Chrome 2,17,2017-06-21 +session,2239,3,Safari 1,50,2018-09-12 +user,2240,Silva,Ruben,49 +session,2240,0,Firefox 8,33,2017-06-03 +session,2240,1,Firefox 29,47,2016-07-22 +session,2240,2,Internet Explorer 19,97,2017-11-10 +session,2240,3,Chrome 36,59,2017-01-04 +session,2240,4,Internet Explorer 19,77,2018-05-04 +session,2240,5,Safari 10,22,2016-07-28 +session,2240,6,Internet Explorer 18,37,2017-12-22 +user,2241,Robbyn,Synthia,63 +session,2241,0,Internet Explorer 2,92,2018-02-27 +session,2241,1,Chrome 50,91,2017-06-01 +session,2241,2,Firefox 12,58,2017-06-25 +session,2241,3,Internet Explorer 21,112,2017-03-13 +session,2241,4,Safari 48,9,2018-05-03 +session,2241,5,Firefox 15,66,2017-06-21 +session,2241,6,Safari 27,76,2018-06-13 +session,2241,7,Safari 47,112,2016-08-17 +session,2241,8,Chrome 5,9,2017-12-04 +user,2242,Tanisha,Dorie,94 +session,2242,0,Safari 40,0,2018-08-15 +session,2242,1,Internet Explorer 49,56,2016-05-26 +session,2242,2,Safari 13,83,2017-03-05 +session,2242,3,Safari 39,31,2017-05-02 +session,2242,4,Internet Explorer 39,69,2018-05-13 +session,2242,5,Chrome 49,47,2016-08-14 +session,2242,6,Firefox 17,49,2018-09-19 +session,2242,7,Firefox 33,51,2017-08-25 +session,2242,8,Internet Explorer 34,84,2018-10-08 +user,2243,Anton,Josefa,97 +session,2243,0,Firefox 9,49,2016-05-27 +user,2244,Caron,Doretta,68 +session,2244,0,Safari 12,32,2016-08-27 +session,2244,1,Chrome 6,1,2017-01-23 +session,2244,2,Chrome 29,113,2018-08-16 +session,2244,3,Firefox 11,7,2016-07-05 +session,2244,4,Chrome 24,104,2017-09-18 +session,2244,5,Safari 1,109,2018-08-20 +user,2245,Earlie,Anjanette,16 +session,2245,0,Safari 24,74,2017-01-13 +session,2245,1,Firefox 40,117,2016-06-08 +session,2245,2,Firefox 17,84,2019-01-03 +session,2245,3,Internet Explorer 9,8,2018-06-14 +session,2245,4,Firefox 49,36,2017-03-27 +user,2246,Gerry,Aide,41 +session,2246,0,Firefox 17,8,2017-05-20 +session,2246,1,Chrome 18,7,2016-08-29 +session,2246,2,Safari 13,110,2018-04-20 +session,2246,3,Safari 37,101,2018-12-31 +session,2246,4,Internet Explorer 5,88,2017-06-20 +session,2246,5,Firefox 25,58,2018-05-25 +session,2246,6,Firefox 16,2,2017-06-12 +session,2246,7,Internet Explorer 31,17,2017-08-24 +user,2247,Shona,Keli,95 +session,2247,0,Chrome 5,109,2017-12-26 +session,2247,1,Firefox 27,65,2018-11-17 +session,2247,2,Internet Explorer 3,40,2018-09-05 +session,2247,3,Chrome 17,117,2016-06-04 +session,2247,4,Safari 43,70,2016-09-20 +session,2247,5,Internet Explorer 47,26,2016-08-19 +user,2248,Erinn,Fredia,38 +session,2248,0,Firefox 32,49,2018-09-06 +session,2248,1,Chrome 46,40,2018-10-14 +session,2248,2,Chrome 2,113,2018-02-21 +session,2248,3,Firefox 23,68,2018-01-31 +user,2249,Caryl,Ruthie,93 +session,2249,0,Internet Explorer 27,29,2018-09-22 +session,2249,1,Firefox 50,105,2018-10-20 +user,2250,Leontine,Chante,25 +session,2250,0,Internet Explorer 21,107,2016-12-31 +session,2250,1,Chrome 19,1,2016-11-28 +session,2250,2,Chrome 21,22,2018-10-28 +session,2250,3,Firefox 29,116,2016-12-17 +session,2250,4,Firefox 21,108,2017-08-21 +session,2250,5,Firefox 50,108,2017-01-07 +user,2251,Andrew,Rico,29 +session,2251,0,Safari 43,34,2018-08-15 +session,2251,1,Internet Explorer 12,23,2018-11-06 +session,2251,2,Internet Explorer 10,101,2017-10-22 +user,2252,Sol,Foster,51 +session,2252,0,Chrome 20,34,2017-03-28 +session,2252,1,Firefox 40,111,2018-03-01 +session,2252,2,Safari 32,86,2016-11-27 +user,2253,Arthur,Violeta,44 +session,2253,0,Firefox 43,46,2017-09-03 +user,2254,Oliver,Arnulfo,65 +session,2254,0,Chrome 43,76,2018-02-27 +session,2254,1,Chrome 38,41,2016-12-31 +session,2254,2,Firefox 9,44,2017-05-22 +session,2254,3,Internet Explorer 34,100,2017-02-19 +session,2254,4,Safari 50,22,2018-08-31 +session,2254,5,Internet Explorer 2,57,2017-01-21 +session,2254,6,Safari 44,109,2018-01-06 +user,2255,Ashlyn,Arla,69 +session,2255,0,Firefox 17,114,2017-03-21 +session,2255,1,Internet Explorer 21,27,2018-12-29 +session,2255,2,Chrome 21,69,2018-11-22 +session,2255,3,Firefox 19,117,2017-05-26 +session,2255,4,Internet Explorer 18,41,2019-01-07 +session,2255,5,Internet Explorer 3,12,2018-12-27 +session,2255,6,Safari 31,50,2016-12-06 +user,2256,Dana,Joi,7 +session,2256,0,Chrome 33,106,2017-02-16 +session,2256,1,Firefox 15,40,2017-08-18 +session,2256,2,Safari 16,64,2017-06-29 +session,2256,3,Internet Explorer 47,83,2017-03-08 +session,2256,4,Safari 22,14,2016-09-21 +session,2256,5,Internet Explorer 5,52,2019-02-07 +session,2256,6,Chrome 47,64,2016-07-13 +session,2256,7,Chrome 17,85,2018-10-15 +user,2257,Amira,Dale,12 +session,2257,0,Internet Explorer 38,63,2016-10-19 +session,2257,1,Firefox 42,93,2017-08-05 +session,2257,2,Internet Explorer 6,81,2018-07-20 +session,2257,3,Safari 48,112,2017-10-19 +user,2258,Minh,Dorsey,12 +session,2258,0,Internet Explorer 38,36,2017-02-09 +session,2258,1,Internet Explorer 48,59,2017-12-10 +session,2258,2,Chrome 47,80,2016-12-03 +session,2258,3,Firefox 20,70,2017-12-25 +session,2258,4,Internet Explorer 32,87,2018-02-02 +session,2258,5,Chrome 35,71,2018-10-22 +session,2258,6,Chrome 42,21,2017-05-30 +session,2258,7,Firefox 36,43,2018-03-25 +user,2259,Justin,Donette,50 +session,2259,0,Safari 15,17,2016-11-15 +session,2259,1,Internet Explorer 20,86,2016-06-02 +session,2259,2,Chrome 22,94,2018-04-19 +session,2259,3,Safari 23,10,2017-10-13 +session,2259,4,Chrome 20,38,2017-11-08 +user,2260,Dwight,Tamekia,61 +session,2260,0,Chrome 11,64,2018-05-10 +session,2260,1,Chrome 47,5,2017-10-08 +session,2260,2,Firefox 26,17,2018-07-02 +session,2260,3,Chrome 17,76,2018-10-10 +session,2260,4,Firefox 50,48,2017-12-23 +session,2260,5,Safari 12,77,2017-04-27 +session,2260,6,Firefox 30,12,2018-03-28 +user,2261,Sunshine,Tristan,0 +session,2261,0,Safari 48,31,2016-10-02 +session,2261,1,Chrome 45,62,2018-05-05 +session,2261,2,Firefox 19,28,2017-08-15 +session,2261,3,Internet Explorer 44,74,2017-11-18 +session,2261,4,Safari 49,8,2018-05-14 +user,2262,Catina,Mei,46 +session,2262,0,Internet Explorer 17,49,2018-10-13 +session,2262,1,Chrome 21,11,2017-12-20 +session,2262,2,Safari 44,78,2018-06-25 +session,2262,3,Firefox 10,89,2016-09-18 +session,2262,4,Chrome 3,108,2017-08-29 +session,2262,5,Chrome 9,48,2016-11-13 +session,2262,6,Chrome 35,106,2016-07-19 +session,2262,7,Internet Explorer 13,60,2018-08-23 +user,2263,Adam,Dot,38 +session,2263,0,Chrome 50,92,2017-03-09 +session,2263,1,Chrome 44,65,2018-02-19 +session,2263,2,Chrome 16,27,2018-11-21 +session,2263,3,Chrome 1,83,2018-12-06 +session,2263,4,Safari 31,25,2017-07-28 +session,2263,5,Internet Explorer 18,39,2018-10-12 +session,2263,6,Chrome 24,112,2018-05-17 +session,2263,7,Chrome 13,29,2018-11-12 +user,2264,Monte,Gaynelle,78 +session,2264,0,Safari 28,33,2016-08-02 +session,2264,1,Internet Explorer 27,11,2016-08-12 +session,2264,2,Internet Explorer 39,35,2018-01-24 +session,2264,3,Firefox 7,31,2017-11-19 +session,2264,4,Chrome 17,9,2017-11-25 +session,2264,5,Firefox 29,30,2017-02-27 +session,2264,6,Chrome 31,5,2018-07-26 +user,2265,Thanh,Sue,44 +session,2265,0,Internet Explorer 12,104,2018-11-03 +session,2265,1,Chrome 1,42,2016-12-27 +session,2265,2,Safari 30,42,2016-08-11 +session,2265,3,Chrome 50,31,2018-06-28 +session,2265,4,Internet Explorer 8,113,2016-11-15 +session,2265,5,Firefox 18,98,2019-02-08 +session,2265,6,Internet Explorer 43,62,2018-10-05 +session,2265,7,Safari 28,93,2017-07-29 +session,2265,8,Chrome 20,108,2018-05-19 +user,2266,Jacques,Luella,39 +session,2266,0,Internet Explorer 31,20,2016-12-16 +session,2266,1,Firefox 7,107,2018-02-19 +session,2266,2,Chrome 17,119,2018-05-01 +session,2266,3,Chrome 21,50,2018-09-19 +session,2266,4,Firefox 1,28,2016-09-18 +session,2266,5,Safari 10,81,2018-05-10 +session,2266,6,Internet Explorer 2,67,2016-12-05 +session,2266,7,Firefox 47,46,2016-05-25 +session,2266,8,Firefox 34,110,2017-12-10 +user,2267,Johnnie,Weldon,8 +session,2267,0,Internet Explorer 31,53,2018-06-23 +session,2267,1,Chrome 4,119,2018-08-04 +session,2267,2,Chrome 23,43,2016-07-09 +session,2267,3,Chrome 28,39,2017-05-07 +session,2267,4,Safari 18,89,2016-09-01 +user,2268,Wanda,Deloris,83 +session,2268,0,Internet Explorer 39,28,2018-04-02 +session,2268,1,Internet Explorer 43,74,2017-07-05 +session,2268,2,Internet Explorer 4,113,2017-03-27 +user,2269,Christin,Arlene,0 +session,2269,0,Internet Explorer 2,33,2016-07-04 +user,2270,Lino,Reinaldo,79 +session,2270,0,Firefox 31,30,2016-12-02 +session,2270,1,Safari 50,4,2017-03-08 +session,2270,2,Safari 15,98,2016-09-28 +user,2271,Conrad,Ka,99 +session,2271,0,Safari 1,98,2016-09-17 +session,2271,1,Safari 16,91,2018-05-31 +session,2271,2,Firefox 34,95,2017-09-23 +session,2271,3,Firefox 2,3,2017-01-08 +session,2271,4,Safari 8,54,2017-04-29 +session,2271,5,Internet Explorer 49,59,2017-10-12 +session,2271,6,Safari 27,102,2017-08-29 +session,2271,7,Internet Explorer 4,1,2017-12-05 +session,2271,8,Firefox 44,70,2017-06-02 +session,2271,9,Safari 15,105,2017-03-27 +user,2272,Sid,Madalene,96 +session,2272,0,Chrome 49,108,2017-05-02 +session,2272,1,Firefox 45,42,2016-05-28 +session,2272,2,Internet Explorer 45,75,2017-11-05 +session,2272,3,Safari 17,70,2017-02-15 +session,2272,4,Chrome 32,92,2017-12-12 +session,2272,5,Internet Explorer 47,22,2017-07-04 +session,2272,6,Internet Explorer 37,116,2018-01-06 +session,2272,7,Firefox 48,21,2016-11-02 +user,2273,Rosa,Dalia,65 +session,2273,0,Safari 23,38,2016-07-13 +user,2274,Ella,Gidget,65 +session,2274,0,Internet Explorer 24,11,2017-08-16 +session,2274,1,Chrome 42,74,2018-09-11 +session,2274,2,Chrome 40,118,2016-11-06 +session,2274,3,Safari 23,5,2018-08-12 +session,2274,4,Internet Explorer 45,87,2017-08-26 +session,2274,5,Chrome 7,100,2016-11-16 +session,2274,6,Firefox 18,23,2017-08-30 +user,2275,Randolph,Natividad,83 +session,2275,0,Chrome 49,81,2018-01-26 +session,2275,1,Chrome 12,61,2017-01-12 +session,2275,2,Internet Explorer 20,3,2018-06-26 +session,2275,3,Internet Explorer 49,103,2017-04-14 +session,2275,4,Firefox 27,2,2016-06-01 +session,2275,5,Safari 9,72,2017-04-30 +session,2275,6,Internet Explorer 1,40,2016-11-22 +session,2275,7,Safari 36,92,2018-04-14 +user,2276,Ronni,Becky,77 +session,2276,0,Internet Explorer 50,26,2016-07-11 +session,2276,1,Internet Explorer 29,1,2019-01-05 +user,2277,Carleen,Racquel,35 +session,2277,0,Internet Explorer 28,96,2016-12-12 +user,2278,Chi,Judi,68 +session,2278,0,Firefox 11,42,2018-11-03 +session,2278,1,Chrome 33,96,2017-06-14 +session,2278,2,Safari 17,70,2017-07-13 +session,2278,3,Chrome 16,95,2017-12-21 +user,2279,Dwain,Corina,91 +session,2279,0,Safari 34,64,2018-10-06 +session,2279,1,Safari 19,1,2017-04-22 +session,2279,2,Firefox 4,62,2018-07-26 +session,2279,3,Internet Explorer 26,68,2017-02-04 +session,2279,4,Internet Explorer 46,108,2017-07-05 +session,2279,5,Safari 24,117,2016-07-18 +session,2279,6,Chrome 43,117,2017-07-27 +session,2279,7,Chrome 28,86,2017-02-09 +session,2279,8,Firefox 28,47,2017-02-10 +session,2279,9,Chrome 34,33,2016-06-04 +user,2280,Cinderella,Dinorah,66 +session,2280,0,Firefox 4,68,2016-09-16 +session,2280,1,Internet Explorer 41,95,2016-08-20 +session,2280,2,Safari 14,74,2016-08-05 +session,2280,3,Chrome 49,84,2018-01-29 +session,2280,4,Firefox 11,70,2017-09-09 +session,2280,5,Safari 4,71,2018-11-24 +session,2280,6,Chrome 35,28,2017-09-26 +session,2280,7,Internet Explorer 36,55,2018-08-20 +user,2281,Chadwick,Lean,11 +session,2281,0,Firefox 10,98,2018-09-11 +session,2281,1,Chrome 30,7,2016-11-26 +session,2281,2,Firefox 44,63,2018-11-12 +session,2281,3,Safari 17,67,2018-05-16 +session,2281,4,Internet Explorer 30,66,2017-05-22 +user,2282,Deena,Lina,29 +session,2282,0,Safari 18,90,2016-09-25 +session,2282,1,Firefox 5,60,2018-05-04 +session,2282,2,Internet Explorer 34,50,2017-04-10 +session,2282,3,Safari 46,60,2018-05-04 +session,2282,4,Internet Explorer 44,78,2016-11-07 +session,2282,5,Firefox 11,116,2019-01-25 +session,2282,6,Safari 30,60,2017-03-14 +session,2282,7,Internet Explorer 9,65,2018-10-29 +session,2282,8,Chrome 46,85,2016-08-02 +session,2282,9,Internet Explorer 47,92,2018-03-04 +user,2283,Eleanore,Chong,80 +session,2283,0,Firefox 46,31,2017-09-23 +session,2283,1,Safari 19,98,2018-01-27 +session,2283,2,Internet Explorer 43,88,2018-11-14 +session,2283,3,Chrome 23,21,2018-06-19 +user,2284,Pattie,Dominique,68 +session,2284,0,Firefox 12,68,2017-12-05 +session,2284,1,Internet Explorer 5,75,2017-12-29 +session,2284,2,Chrome 17,117,2018-12-10 +session,2284,3,Chrome 19,78,2017-04-21 +session,2284,4,Firefox 23,84,2017-01-02 +session,2284,5,Safari 44,15,2016-10-17 +session,2284,6,Chrome 23,89,2018-09-29 +session,2284,7,Chrome 48,50,2018-07-13 +user,2285,Leontine,Izola,18 +session,2285,0,Firefox 27,110,2018-09-30 +session,2285,1,Firefox 49,25,2018-03-25 +session,2285,2,Internet Explorer 26,16,2018-04-13 +session,2285,3,Internet Explorer 37,24,2017-05-09 +session,2285,4,Firefox 23,76,2017-03-11 +session,2285,5,Safari 20,1,2017-12-01 +session,2285,6,Internet Explorer 43,5,2016-10-05 +user,2286,Carlton,Telma,37 +session,2286,0,Safari 32,66,2016-12-28 +session,2286,1,Safari 29,77,2017-11-27 +session,2286,2,Firefox 11,2,2017-11-14 +session,2286,3,Firefox 19,112,2017-06-07 +session,2286,4,Safari 15,108,2018-05-20 +user,2287,Scottie,Lorelei,68 +session,2287,0,Internet Explorer 28,102,2018-01-02 +session,2287,1,Firefox 45,86,2016-06-03 +session,2287,2,Chrome 29,46,2017-08-15 +session,2287,3,Internet Explorer 28,30,2016-09-25 +session,2287,4,Internet Explorer 43,35,2017-12-18 +session,2287,5,Chrome 16,13,2017-08-08 +session,2287,6,Firefox 37,97,2017-07-18 +session,2287,7,Firefox 16,71,2017-12-02 +user,2288,Blake,Mattie,95 +session,2288,0,Safari 8,29,2016-10-01 +user,2289,Tabitha,Celsa,91 +session,2289,0,Safari 25,33,2018-11-18 +session,2289,1,Safari 32,1,2018-07-07 +session,2289,2,Chrome 45,113,2017-09-11 +user,2290,Jone,Verdie,6 +session,2290,0,Chrome 16,34,2017-04-19 +session,2290,1,Chrome 9,78,2017-10-22 +session,2290,2,Chrome 27,3,2017-01-10 +session,2290,3,Firefox 25,16,2018-08-14 +session,2290,4,Firefox 28,7,2017-07-26 +session,2290,5,Safari 23,44,2018-06-10 +session,2290,6,Chrome 14,78,2018-01-05 +session,2290,7,Chrome 11,28,2017-11-19 +session,2290,8,Chrome 42,81,2018-08-12 +session,2290,9,Firefox 12,52,2016-12-03 +user,2291,Saul,Mickey,72 +session,2291,0,Firefox 46,22,2016-10-29 +session,2291,1,Internet Explorer 19,76,2018-05-28 +session,2291,2,Safari 25,17,2018-10-10 +user,2292,Ciara,Gerard,64 +session,2292,0,Internet Explorer 1,19,2017-07-26 +session,2292,1,Firefox 47,59,2018-11-28 +session,2292,2,Safari 34,67,2017-09-10 +session,2292,3,Internet Explorer 3,112,2018-11-13 +session,2292,4,Chrome 37,27,2018-06-01 +session,2292,5,Internet Explorer 50,80,2016-07-05 +session,2292,6,Internet Explorer 29,116,2016-12-31 +session,2292,7,Internet Explorer 28,40,2016-07-02 +user,2293,Ezequiel,Karoline,65 +session,2293,0,Internet Explorer 5,82,2018-01-07 +session,2293,1,Chrome 47,73,2017-07-29 +session,2293,2,Firefox 28,35,2017-02-05 +session,2293,3,Chrome 21,103,2017-10-20 +session,2293,4,Internet Explorer 27,12,2018-01-19 +user,2294,Sandee,Genaro,45 +session,2294,0,Internet Explorer 35,30,2017-11-26 +user,2295,Hassie,Esmeralda,2 +session,2295,0,Internet Explorer 39,81,2018-04-01 +session,2295,1,Internet Explorer 6,91,2016-05-23 +user,2296,Hollis,Annis,97 +session,2296,0,Firefox 6,48,2018-02-16 +session,2296,1,Safari 47,66,2019-01-16 +session,2296,2,Chrome 34,18,2017-09-10 +user,2297,Hugh,Raye,79 +session,2297,0,Safari 38,25,2018-09-01 +session,2297,1,Internet Explorer 33,23,2018-09-26 +session,2297,2,Chrome 3,86,2017-12-17 +session,2297,3,Firefox 10,33,2016-10-18 +session,2297,4,Chrome 40,69,2018-02-21 +user,2298,Viola,Russel,60 +session,2298,0,Internet Explorer 34,93,2018-06-01 +session,2298,1,Safari 30,28,2017-07-04 +session,2298,2,Chrome 23,88,2017-06-18 +session,2298,3,Safari 4,95,2018-07-03 +session,2298,4,Internet Explorer 19,87,2018-02-13 +session,2298,5,Chrome 8,52,2019-01-28 +session,2298,6,Internet Explorer 43,49,2018-03-03 +session,2298,7,Safari 29,53,2017-07-05 +user,2299,Mathilda,Lucretia,56 +session,2299,0,Chrome 24,55,2018-06-04 +session,2299,1,Firefox 46,97,2017-12-11 +session,2299,2,Internet Explorer 5,82,2016-10-15 +session,2299,3,Internet Explorer 7,69,2018-08-30 +session,2299,4,Internet Explorer 42,42,2016-07-01 +session,2299,5,Safari 13,83,2017-09-12 +session,2299,6,Chrome 3,118,2018-03-20 +session,2299,7,Internet Explorer 27,72,2016-09-07 +session,2299,8,Firefox 40,37,2016-10-11 +session,2299,9,Firefox 14,59,2016-08-24 +user,2300,Diamond,Janyce,10 +session,2300,0,Internet Explorer 32,7,2018-10-11 +session,2300,1,Chrome 32,75,2017-06-15 +session,2300,2,Chrome 2,67,2017-04-29 +session,2300,3,Firefox 37,54,2016-08-03 +user,2301,Myron,Marti,10 +session,2301,0,Firefox 17,66,2017-01-18 +session,2301,1,Internet Explorer 19,99,2016-06-01 +session,2301,2,Firefox 34,86,2017-06-22 +session,2301,3,Internet Explorer 37,38,2018-11-08 +session,2301,4,Firefox 27,103,2018-10-11 +session,2301,5,Chrome 15,49,2017-08-03 +session,2301,6,Internet Explorer 14,108,2016-09-05 +session,2301,7,Safari 1,99,2018-07-29 +session,2301,8,Internet Explorer 40,35,2018-09-12 +user,2302,Dede,Cara,68 +session,2302,0,Firefox 18,119,2017-06-04 +session,2302,1,Chrome 5,12,2016-10-02 +session,2302,2,Firefox 11,55,2017-02-07 +session,2302,3,Safari 48,27,2018-12-05 +session,2302,4,Chrome 40,45,2017-12-25 +session,2302,5,Safari 15,113,2016-07-12 +session,2302,6,Chrome 27,110,2018-09-28 +session,2302,7,Chrome 5,90,2018-08-18 +user,2303,Anton,Sharleen,95 +session,2303,0,Firefox 46,117,2017-12-06 +session,2303,1,Firefox 50,91,2017-04-24 +session,2303,2,Safari 50,57,2018-10-10 +session,2303,3,Internet Explorer 33,30,2016-08-30 +session,2303,4,Firefox 21,41,2017-12-15 +session,2303,5,Internet Explorer 36,82,2016-07-04 +user,2304,Ying,Bernarda,44 +session,2304,0,Firefox 46,48,2017-11-28 +session,2304,1,Internet Explorer 16,88,2017-03-23 +session,2304,2,Safari 38,38,2016-09-28 +session,2304,3,Internet Explorer 33,83,2018-09-28 +session,2304,4,Safari 2,47,2018-10-02 +session,2304,5,Internet Explorer 24,18,2017-10-10 +session,2304,6,Firefox 18,100,2018-01-07 +session,2304,7,Internet Explorer 27,107,2018-09-14 +user,2305,Rene,Percy,13 +session,2305,0,Internet Explorer 44,12,2017-07-17 +session,2305,1,Firefox 7,111,2018-09-04 +session,2305,2,Chrome 20,35,2018-05-22 +session,2305,3,Chrome 35,110,2017-08-15 +user,2306,Mohamed,Marylouise,16 +session,2306,0,Internet Explorer 15,15,2018-10-20 +session,2306,1,Internet Explorer 31,1,2018-07-01 +session,2306,2,Chrome 13,39,2018-08-22 +session,2306,3,Firefox 7,72,2017-10-14 +session,2306,4,Chrome 13,27,2017-02-07 +session,2306,5,Firefox 20,84,2019-01-30 +session,2306,6,Internet Explorer 32,102,2018-10-18 +session,2306,7,Internet Explorer 15,30,2016-10-08 +user,2307,Myrtice,Chere,36 +session,2307,0,Firefox 3,28,2018-10-14 +session,2307,1,Internet Explorer 38,5,2018-02-27 +user,2308,Yelena,Stormy,24 +session,2308,0,Safari 19,17,2018-11-12 +session,2308,1,Safari 37,53,2017-10-11 +session,2308,2,Firefox 10,52,2017-11-01 +session,2308,3,Safari 14,12,2017-01-10 +session,2308,4,Chrome 36,115,2017-09-07 +session,2308,5,Safari 25,98,2018-08-25 +session,2308,6,Firefox 47,29,2017-11-12 +user,2309,Ron,Cammie,54 +session,2309,0,Chrome 25,107,2017-12-16 +session,2309,1,Firefox 42,35,2016-09-07 +session,2309,2,Internet Explorer 18,10,2016-06-27 +session,2309,3,Firefox 46,119,2016-09-21 +session,2309,4,Firefox 25,6,2018-07-23 +session,2309,5,Chrome 41,50,2019-01-14 +session,2309,6,Chrome 7,49,2017-07-13 +session,2309,7,Firefox 2,81,2017-09-08 +session,2309,8,Chrome 43,2,2017-09-29 +user,2310,Vita,Augustine,21 +session,2310,0,Safari 29,89,2018-02-27 +session,2310,1,Chrome 25,35,2018-04-10 +session,2310,2,Chrome 15,100,2016-11-24 +session,2310,3,Firefox 18,61,2016-10-03 +session,2310,4,Firefox 2,72,2017-12-21 +session,2310,5,Internet Explorer 50,62,2017-04-25 +session,2310,6,Internet Explorer 48,41,2018-09-03 +session,2310,7,Internet Explorer 13,112,2019-01-19 +session,2310,8,Chrome 20,33,2016-12-23 +user,2311,Bobby,Shantae,38 +session,2311,0,Chrome 41,109,2018-02-24 +session,2311,1,Safari 22,88,2018-05-04 +session,2311,2,Firefox 6,18,2016-12-24 +session,2311,3,Internet Explorer 20,98,2016-12-23 +session,2311,4,Chrome 17,105,2018-11-27 +session,2311,5,Internet Explorer 47,8,2016-10-18 +user,2312,Guadalupe,Leigha,45 +session,2312,0,Firefox 30,112,2017-11-05 +user,2313,Jude,Dorsey,27 +session,2313,0,Chrome 18,24,2016-05-29 +session,2313,1,Firefox 24,106,2017-03-15 +session,2313,2,Chrome 6,10,2017-05-21 +session,2313,3,Chrome 48,75,2016-06-24 +session,2313,4,Chrome 45,76,2017-08-12 +session,2313,5,Safari 1,115,2017-12-18 +user,2314,Lakisha,Santa,76 +session,2314,0,Internet Explorer 42,27,2017-01-08 +session,2314,1,Chrome 14,77,2016-12-17 +session,2314,2,Safari 50,108,2017-03-15 +session,2314,3,Chrome 20,75,2017-06-23 +session,2314,4,Chrome 35,13,2018-03-11 +session,2314,5,Firefox 22,112,2018-05-23 +session,2314,6,Firefox 32,39,2018-04-04 +session,2314,7,Internet Explorer 19,1,2018-06-21 +session,2314,8,Safari 44,116,2018-09-05 +session,2314,9,Internet Explorer 8,57,2018-03-23 +user,2315,Casandra,Bertha,52 +session,2315,0,Safari 26,110,2016-08-22 +session,2315,1,Internet Explorer 6,97,2016-11-07 +session,2315,2,Firefox 11,96,2017-12-18 +session,2315,3,Internet Explorer 26,4,2017-07-20 +session,2315,4,Chrome 4,43,2017-11-24 +user,2316,Felicidad,Sierra,58 +session,2316,0,Internet Explorer 22,115,2018-05-05 +session,2316,1,Safari 11,105,2016-07-12 +session,2316,2,Firefox 3,78,2017-05-12 +session,2316,3,Firefox 30,84,2017-04-17 +session,2316,4,Safari 9,106,2016-07-26 +session,2316,5,Chrome 12,58,2016-11-02 +user,2317,Darleen,Marta,63 +session,2317,0,Firefox 50,29,2018-01-06 +session,2317,1,Chrome 22,37,2018-04-30 +session,2317,2,Safari 49,62,2019-02-06 +user,2318,Jerrell,Granville,49 +session,2318,0,Chrome 50,99,2016-10-06 +user,2319,Devin,Lou,60 +session,2319,0,Internet Explorer 35,55,2017-04-26 +session,2319,1,Chrome 1,41,2017-07-12 +session,2319,2,Internet Explorer 50,71,2018-07-09 +session,2319,3,Internet Explorer 12,99,2016-12-25 +session,2319,4,Chrome 15,47,2017-07-02 +session,2319,5,Safari 3,115,2017-11-08 +session,2319,6,Internet Explorer 15,63,2016-12-02 +session,2319,7,Internet Explorer 34,29,2017-09-11 +user,2320,Edmond,Melda,11 +session,2320,0,Firefox 27,67,2018-06-14 +user,2321,Saul,Leann,38 +session,2321,0,Chrome 13,61,2016-06-07 +session,2321,1,Safari 41,50,2017-08-17 +session,2321,2,Chrome 2,84,2018-10-31 +session,2321,3,Internet Explorer 16,90,2017-01-04 +session,2321,4,Firefox 11,65,2016-12-12 +session,2321,5,Firefox 7,16,2017-11-15 +session,2321,6,Safari 29,40,2017-07-21 +session,2321,7,Internet Explorer 3,82,2017-05-29 +session,2321,8,Firefox 25,18,2018-11-14 +session,2321,9,Internet Explorer 16,61,2016-05-31 +user,2322,Rina,Beula,46 +session,2322,0,Firefox 12,117,2018-01-30 +session,2322,1,Internet Explorer 40,90,2018-10-13 +session,2322,2,Safari 40,29,2017-09-06 +session,2322,3,Internet Explorer 38,43,2016-06-26 +session,2322,4,Internet Explorer 15,84,2018-06-15 +user,2323,Guillermo,Spencer,60 +session,2323,0,Internet Explorer 9,46,2018-03-26 +session,2323,1,Chrome 35,42,2017-05-06 +session,2323,2,Chrome 9,36,2018-08-29 +session,2323,3,Internet Explorer 19,59,2017-11-02 +session,2323,4,Firefox 21,36,2017-03-17 +session,2323,5,Chrome 43,31,2017-11-04 +session,2323,6,Firefox 10,33,2017-02-20 +session,2323,7,Firefox 9,101,2017-09-26 +user,2324,Andrea,Bryce,32 +session,2324,0,Firefox 33,79,2016-09-04 +session,2324,1,Firefox 10,93,2017-10-05 +user,2325,Leida,Suzan,96 +session,2325,0,Chrome 29,113,2017-09-29 +session,2325,1,Chrome 23,3,2018-09-27 +session,2325,2,Internet Explorer 31,39,2018-12-04 +session,2325,3,Chrome 12,24,2016-07-11 +session,2325,4,Internet Explorer 44,25,2018-08-21 +user,2326,Oma,Jonah,55 +session,2326,0,Internet Explorer 34,80,2018-09-21 +user,2327,Blair,Arlie,86 +session,2327,0,Safari 8,66,2017-04-24 +session,2327,1,Firefox 46,60,2018-05-03 +session,2327,2,Chrome 2,114,2017-10-21 +session,2327,3,Internet Explorer 33,114,2017-11-15 +session,2327,4,Internet Explorer 30,87,2017-08-09 +user,2328,Ted,Waneta,31 +session,2328,0,Safari 10,29,2018-06-14 +session,2328,1,Chrome 11,63,2016-08-15 +session,2328,2,Firefox 18,105,2018-01-17 +session,2328,3,Chrome 21,58,2016-07-19 +session,2328,4,Safari 14,71,2017-11-29 +user,2329,Timmy,Otto,46 +session,2329,0,Firefox 3,11,2017-12-02 +session,2329,1,Chrome 14,113,2018-05-14 +session,2329,2,Chrome 17,56,2018-05-26 +session,2329,3,Internet Explorer 47,104,2017-05-23 +user,2330,Xiao,Harold,68 +session,2330,0,Chrome 6,114,2018-10-08 +session,2330,1,Chrome 12,68,2019-01-08 +session,2330,2,Firefox 30,72,2017-06-26 +session,2330,3,Safari 31,114,2017-02-04 +session,2330,4,Safari 24,117,2018-01-07 +session,2330,5,Safari 46,57,2018-05-01 +user,2331,Quinton,Dung,12 +session,2331,0,Firefox 29,78,2017-04-15 +session,2331,1,Safari 5,78,2017-06-24 +session,2331,2,Safari 40,29,2016-06-25 +session,2331,3,Firefox 35,100,2017-02-16 +session,2331,4,Firefox 50,44,2018-03-27 +session,2331,5,Internet Explorer 13,54,2016-12-29 +session,2331,6,Internet Explorer 23,15,2019-01-19 +session,2331,7,Safari 8,38,2017-03-14 +user,2332,Rhiannon,Heidy,94 +session,2332,0,Safari 42,22,2016-10-02 +session,2332,1,Safari 11,74,2017-03-30 +session,2332,2,Firefox 49,68,2018-08-02 +session,2332,3,Firefox 13,36,2016-07-19 +session,2332,4,Firefox 24,49,2017-09-29 +session,2332,5,Internet Explorer 19,52,2016-08-24 +session,2332,6,Internet Explorer 44,43,2018-07-15 +session,2332,7,Firefox 38,92,2018-10-22 +session,2332,8,Firefox 42,113,2016-06-21 +user,2333,Pasquale,Kelsey,2 +session,2333,0,Safari 13,21,2018-01-01 +session,2333,1,Chrome 48,90,2019-02-09 +session,2333,2,Internet Explorer 44,108,2018-12-10 +session,2333,3,Firefox 38,68,2018-01-08 +session,2333,4,Safari 48,53,2017-06-15 +session,2333,5,Chrome 44,71,2018-12-06 +session,2333,6,Chrome 45,51,2018-09-29 +session,2333,7,Chrome 43,118,2017-10-10 +user,2334,Margery,Chanel,49 +session,2334,0,Chrome 26,30,2016-07-03 +user,2335,Rudolph,Alyse,51 +session,2335,0,Internet Explorer 48,0,2018-10-14 +session,2335,1,Chrome 9,14,2016-07-02 +session,2335,2,Safari 16,12,2016-12-02 +user,2336,Pat,Constance,52 +session,2336,0,Safari 50,106,2018-08-09 +session,2336,1,Chrome 38,13,2018-12-21 +session,2336,2,Safari 11,79,2017-05-13 +session,2336,3,Safari 17,55,2017-10-07 +session,2336,4,Safari 41,108,2018-10-29 +session,2336,5,Chrome 40,99,2017-08-10 +session,2336,6,Safari 32,70,2017-10-10 +session,2336,7,Chrome 16,30,2018-12-31 +user,2337,Mose,Anderson,62 +session,2337,0,Internet Explorer 5,93,2018-05-08 +session,2337,1,Chrome 4,11,2018-03-12 +session,2337,2,Safari 23,95,2018-12-11 +session,2337,3,Chrome 37,73,2018-11-21 +session,2337,4,Internet Explorer 42,27,2017-03-24 +session,2337,5,Chrome 4,99,2018-03-20 +user,2338,Wendie,Jesse,51 +session,2338,0,Chrome 4,81,2018-12-30 +session,2338,1,Firefox 1,110,2017-04-01 +session,2338,2,Internet Explorer 19,60,2018-03-10 +session,2338,3,Internet Explorer 33,49,2019-01-07 +session,2338,4,Safari 49,51,2017-06-10 +session,2338,5,Firefox 35,24,2018-12-18 +user,2339,Lin,Loralee,79 +session,2339,0,Firefox 21,113,2017-04-01 +session,2339,1,Chrome 8,40,2016-11-25 +session,2339,2,Firefox 22,104,2017-04-10 +user,2340,Mitch,Elza,24 +session,2340,0,Firefox 34,92,2018-11-30 +session,2340,1,Safari 23,91,2018-12-01 +user,2341,Stephan,Jina,59 +session,2341,0,Chrome 38,101,2018-05-15 +session,2341,1,Firefox 33,20,2016-06-16 +session,2341,2,Chrome 50,47,2017-11-18 +session,2341,3,Firefox 4,1,2017-10-06 +session,2341,4,Internet Explorer 47,74,2017-08-14 +user,2342,Gavin,Tracy,33 +session,2342,0,Safari 23,56,2018-04-12 +session,2342,1,Internet Explorer 42,105,2019-01-30 +session,2342,2,Internet Explorer 10,35,2017-08-08 +session,2342,3,Internet Explorer 46,10,2016-07-31 +session,2342,4,Firefox 4,53,2016-09-01 +session,2342,5,Firefox 21,52,2016-08-10 +session,2342,6,Firefox 14,104,2017-12-20 +session,2342,7,Chrome 37,25,2019-02-05 +session,2342,8,Chrome 8,78,2018-12-16 +session,2342,9,Chrome 25,64,2018-12-14 +user,2343,Arletta,Christie,95 +session,2343,0,Firefox 14,47,2018-11-10 +session,2343,1,Safari 23,80,2019-01-14 +user,2344,Burl,Shaniqua,91 +session,2344,0,Safari 24,101,2018-08-14 +session,2344,1,Firefox 5,113,2017-03-04 +session,2344,2,Firefox 7,99,2018-04-28 +session,2344,3,Safari 44,57,2019-02-10 +session,2344,4,Internet Explorer 42,73,2018-10-01 +session,2344,5,Safari 31,31,2017-07-10 +session,2344,6,Internet Explorer 46,55,2018-10-24 +session,2344,7,Chrome 20,50,2017-05-26 +session,2344,8,Internet Explorer 27,54,2018-10-19 +user,2345,Rene,Tammara,82 +session,2345,0,Safari 24,52,2017-06-11 +session,2345,1,Chrome 34,94,2018-08-12 +session,2345,2,Firefox 38,112,2016-10-29 +session,2345,3,Safari 33,21,2016-06-25 +user,2346,Matthew,Mae,45 +session,2346,0,Safari 29,18,2016-07-12 +session,2346,1,Safari 36,117,2017-06-07 +session,2346,2,Internet Explorer 22,5,2018-03-01 +session,2346,3,Chrome 7,73,2017-09-13 +session,2346,4,Safari 37,66,2017-02-26 +session,2346,5,Internet Explorer 7,21,2017-05-06 +session,2346,6,Firefox 48,49,2018-12-11 +session,2346,7,Safari 24,97,2018-01-04 +user,2347,Enrique,James,87 +session,2347,0,Internet Explorer 22,6,2017-05-05 +session,2347,1,Safari 46,33,2018-06-14 +session,2347,2,Internet Explorer 14,72,2017-06-05 +session,2347,3,Chrome 40,10,2017-07-07 +session,2347,4,Firefox 11,16,2017-07-05 +session,2347,5,Firefox 33,83,2018-04-21 +session,2347,6,Safari 30,33,2017-11-21 +user,2348,Ronni,Neda,41 +session,2348,0,Safari 43,36,2017-09-09 +session,2348,1,Chrome 14,111,2017-10-25 +session,2348,2,Safari 36,74,2017-08-15 +session,2348,3,Safari 38,40,2018-07-06 +session,2348,4,Firefox 36,87,2018-05-15 +session,2348,5,Chrome 41,69,2018-06-06 +session,2348,6,Safari 35,114,2017-04-08 +session,2348,7,Internet Explorer 36,91,2017-10-29 +session,2348,8,Safari 6,114,2017-12-25 +session,2348,9,Internet Explorer 17,107,2016-12-01 +user,2349,Luna,Carrol,19 +session,2349,0,Internet Explorer 28,33,2017-01-19 +session,2349,1,Firefox 1,9,2017-05-27 +session,2349,2,Firefox 49,50,2018-08-18 +session,2349,3,Chrome 10,78,2017-04-22 +session,2349,4,Safari 29,75,2017-07-03 +user,2350,Jarrod,Teri,94 +session,2350,0,Firefox 44,59,2017-04-18 +session,2350,1,Internet Explorer 12,119,2016-12-27 +session,2350,2,Safari 12,0,2018-06-26 +session,2350,3,Firefox 44,38,2017-04-30 +session,2350,4,Chrome 13,72,2019-02-07 +session,2350,5,Chrome 25,22,2018-06-11 +session,2350,6,Internet Explorer 27,76,2017-09-05 +user,2351,Dee,Ferdinand,41 +session,2351,0,Firefox 18,36,2016-06-18 +session,2351,1,Internet Explorer 34,53,2017-08-22 +session,2351,2,Safari 42,63,2018-04-05 +session,2351,3,Safari 27,79,2016-11-07 +user,2352,Lisa,Nikki,57 +session,2352,0,Internet Explorer 25,81,2017-12-14 +session,2352,1,Internet Explorer 29,26,2018-03-04 +session,2352,2,Safari 4,57,2017-11-12 +session,2352,3,Firefox 10,29,2017-08-03 +session,2352,4,Safari 22,14,2017-05-24 +session,2352,5,Chrome 5,101,2016-11-08 +user,2353,Robbie,Somer,72 +session,2353,0,Internet Explorer 42,7,2016-05-31 +session,2353,1,Safari 25,71,2016-10-21 +session,2353,2,Safari 2,101,2016-08-25 +session,2353,3,Chrome 22,53,2018-04-13 +session,2353,4,Firefox 44,42,2017-12-28 +user,2354,Thurman,Denice,72 +session,2354,0,Internet Explorer 35,14,2018-02-18 +session,2354,1,Safari 13,41,2018-03-20 +session,2354,2,Firefox 20,113,2019-01-26 +session,2354,3,Firefox 15,42,2016-10-22 +session,2354,4,Firefox 12,106,2017-04-08 +session,2354,5,Safari 32,93,2017-01-31 +session,2354,6,Safari 20,37,2017-06-08 +session,2354,7,Chrome 48,44,2018-04-30 +session,2354,8,Firefox 4,40,2018-01-18 +user,2355,Gino,Marcos,20 +session,2355,0,Safari 15,14,2017-01-04 +session,2355,1,Internet Explorer 23,3,2017-11-10 +session,2355,2,Safari 29,63,2018-10-12 +session,2355,3,Safari 23,101,2016-07-13 +session,2355,4,Safari 20,85,2018-09-25 +session,2355,5,Safari 6,26,2018-09-12 +session,2355,6,Chrome 38,57,2018-05-29 +user,2356,Min,Christeen,17 +session,2356,0,Firefox 14,93,2017-12-27 +session,2356,1,Safari 27,86,2017-08-09 +session,2356,2,Chrome 39,108,2016-11-01 +session,2356,3,Internet Explorer 10,79,2016-05-25 +session,2356,4,Firefox 47,46,2017-12-18 +session,2356,5,Firefox 27,37,2017-11-12 +user,2357,Jody,Claire,55 +session,2357,0,Chrome 12,6,2017-07-09 +session,2357,1,Firefox 40,73,2018-04-07 +session,2357,2,Firefox 48,63,2017-11-08 +session,2357,3,Firefox 11,74,2016-08-02 +session,2357,4,Safari 18,2,2016-10-05 +session,2357,5,Safari 48,93,2017-08-19 +session,2357,6,Safari 35,23,2018-01-21 +session,2357,7,Firefox 50,59,2016-09-11 +session,2357,8,Internet Explorer 4,0,2019-01-02 +session,2357,9,Internet Explorer 1,65,2016-10-27 +user,2358,Elmer,Jeffry,3 +session,2358,0,Internet Explorer 15,96,2018-01-29 +session,2358,1,Safari 43,13,2018-09-29 +session,2358,2,Safari 20,101,2017-07-24 +user,2359,Fernando,Carmel,75 +session,2359,0,Safari 19,49,2017-11-20 +session,2359,1,Safari 38,61,2018-01-07 +session,2359,2,Chrome 47,76,2018-11-17 +user,2360,Alita,Nadene,14 +session,2360,0,Safari 27,1,2017-03-05 +session,2360,1,Internet Explorer 31,7,2016-10-22 +session,2360,2,Chrome 27,5,2016-09-07 +session,2360,3,Firefox 27,108,2018-05-21 +session,2360,4,Safari 8,30,2016-10-03 +session,2360,5,Chrome 10,58,2018-02-11 +session,2360,6,Safari 33,60,2017-11-05 +session,2360,7,Internet Explorer 30,73,2017-02-14 +user,2361,Alexis,Gena,27 +session,2361,0,Internet Explorer 31,25,2016-11-17 +session,2361,1,Safari 48,57,2017-02-24 +session,2361,2,Firefox 50,80,2018-07-06 +session,2361,3,Safari 22,14,2018-09-26 +user,2362,Cristine,Rosaria,65 +session,2362,0,Chrome 22,104,2018-12-22 +session,2362,1,Safari 18,81,2016-11-20 +session,2362,2,Internet Explorer 36,20,2017-03-22 +session,2362,3,Firefox 31,22,2018-09-10 +session,2362,4,Firefox 36,114,2019-02-04 +session,2362,5,Chrome 24,7,2017-09-11 +session,2362,6,Internet Explorer 42,82,2018-05-11 +session,2362,7,Safari 9,43,2018-05-18 +session,2362,8,Internet Explorer 22,25,2018-08-21 +user,2363,Ned,Tran,13 +session,2363,0,Safari 41,21,2016-08-06 +session,2363,1,Firefox 28,101,2018-01-16 +session,2363,2,Safari 20,102,2017-03-29 +session,2363,3,Firefox 27,90,2017-05-09 +session,2363,4,Safari 40,33,2016-09-07 +session,2363,5,Internet Explorer 3,55,2018-08-11 +session,2363,6,Internet Explorer 36,43,2016-12-18 +session,2363,7,Chrome 3,111,2017-01-05 +session,2363,8,Firefox 21,29,2016-08-07 +session,2363,9,Internet Explorer 41,72,2016-08-01 +user,2364,Domingo,Audie,44 +session,2364,0,Internet Explorer 2,45,2017-11-22 +session,2364,1,Firefox 15,26,2016-11-14 +session,2364,2,Safari 26,45,2018-12-16 +session,2364,3,Firefox 43,100,2017-09-21 +session,2364,4,Chrome 39,101,2018-08-06 +session,2364,5,Internet Explorer 29,12,2018-01-11 +user,2365,Karl,Neida,42 +session,2365,0,Safari 27,68,2016-12-18 +session,2365,1,Firefox 4,42,2017-10-29 +session,2365,2,Firefox 49,23,2018-01-03 +session,2365,3,Internet Explorer 1,20,2016-06-16 +user,2366,Kecia,Norah,14 +session,2366,0,Firefox 32,112,2016-10-14 +session,2366,1,Safari 32,50,2016-10-11 +session,2366,2,Safari 17,96,2016-07-07 +user,2367,Morgan,Rossana,71 +session,2367,0,Chrome 31,70,2017-08-18 +session,2367,1,Safari 23,1,2018-06-09 +session,2367,2,Chrome 39,111,2017-04-13 +session,2367,3,Chrome 12,0,2018-04-11 +session,2367,4,Chrome 38,79,2018-04-17 +session,2367,5,Internet Explorer 39,115,2017-08-07 +user,2368,Ethyl,Denae,12 +session,2368,0,Chrome 26,23,2017-08-11 +session,2368,1,Safari 14,86,2016-11-09 +session,2368,2,Firefox 32,21,2019-01-26 +user,2369,Lenny,James,25 +session,2369,0,Internet Explorer 16,0,2017-12-12 +session,2369,1,Safari 41,33,2018-09-24 +session,2369,2,Chrome 36,86,2016-08-24 +session,2369,3,Safari 9,56,2017-06-11 +session,2369,4,Firefox 44,115,2018-12-04 +session,2369,5,Internet Explorer 38,63,2016-12-10 +session,2369,6,Firefox 26,24,2016-11-02 +user,2370,Shelli,Karina,78 +session,2370,0,Safari 37,65,2017-03-30 +user,2371,Sophie,Eloisa,47 +session,2371,0,Firefox 39,50,2018-03-04 +session,2371,1,Firefox 4,55,2017-10-01 +session,2371,2,Internet Explorer 9,67,2019-02-07 +session,2371,3,Internet Explorer 27,43,2018-11-17 +session,2371,4,Chrome 37,119,2018-02-17 +session,2371,5,Safari 37,45,2018-08-02 +session,2371,6,Chrome 2,38,2018-09-24 +session,2371,7,Chrome 29,8,2018-05-07 +session,2371,8,Safari 25,114,2018-04-18 +session,2371,9,Internet Explorer 29,6,2017-03-11 +user,2372,Harley,Barbie,85 +session,2372,0,Firefox 28,84,2017-03-15 +session,2372,1,Internet Explorer 32,47,2016-11-16 +session,2372,2,Internet Explorer 11,105,2019-02-12 +session,2372,3,Chrome 21,93,2017-10-11 +session,2372,4,Firefox 32,92,2017-05-26 +session,2372,5,Internet Explorer 16,27,2017-02-12 +session,2372,6,Safari 13,102,2017-05-18 +session,2372,7,Chrome 7,30,2016-07-09 +user,2373,Adena,Lilla,24 +session,2373,0,Safari 13,63,2018-06-10 +session,2373,1,Safari 6,24,2018-05-25 +session,2373,2,Chrome 17,32,2016-10-15 +session,2373,3,Firefox 43,51,2017-07-04 +session,2373,4,Safari 38,108,2016-09-14 +session,2373,5,Chrome 12,48,2019-01-24 +session,2373,6,Chrome 6,58,2019-02-01 +session,2373,7,Chrome 38,67,2018-05-20 +session,2373,8,Internet Explorer 17,117,2017-12-23 +user,2374,Gay,Danyelle,22 +session,2374,0,Internet Explorer 15,32,2016-09-10 +session,2374,1,Firefox 15,28,2016-09-05 +session,2374,2,Firefox 7,50,2017-08-20 +session,2374,3,Chrome 40,98,2016-10-03 +session,2374,4,Safari 27,30,2018-08-23 +session,2374,5,Internet Explorer 42,49,2016-08-02 +session,2374,6,Firefox 34,36,2017-05-31 +session,2374,7,Firefox 45,5,2018-10-07 +user,2375,Lupe,Lacy,38 +session,2375,0,Internet Explorer 28,2,2018-10-09 +user,2376,Ellsworth,Fabian,42 +session,2376,0,Firefox 2,107,2018-09-23 +session,2376,1,Internet Explorer 12,60,2017-02-10 +session,2376,2,Safari 44,44,2019-02-01 +session,2376,3,Firefox 21,81,2017-04-01 +session,2376,4,Firefox 12,98,2018-11-23 +user,2377,Kathleen,Sean,89 +session,2377,0,Internet Explorer 16,84,2018-11-02 +session,2377,1,Safari 50,59,2018-12-15 +user,2378,Taylor,Latonya,79 +session,2378,0,Internet Explorer 11,79,2017-09-29 +session,2378,1,Firefox 44,30,2017-09-30 +session,2378,2,Internet Explorer 4,57,2017-04-12 +session,2378,3,Internet Explorer 13,5,2018-06-08 +session,2378,4,Internet Explorer 24,69,2017-01-24 +session,2378,5,Chrome 43,57,2017-01-01 +user,2379,Coy,Maragaret,17 +session,2379,0,Firefox 2,93,2018-05-30 +session,2379,1,Safari 33,59,2018-07-21 +session,2379,2,Safari 1,89,2016-12-26 +session,2379,3,Internet Explorer 44,36,2017-07-30 +session,2379,4,Safari 46,92,2018-10-31 +session,2379,5,Safari 10,64,2018-05-30 +session,2379,6,Internet Explorer 37,19,2018-11-21 +user,2380,Lannie,Augustine,73 +session,2380,0,Safari 33,80,2017-01-22 +session,2380,1,Chrome 48,66,2018-06-26 +session,2380,2,Internet Explorer 10,78,2017-04-26 +session,2380,3,Safari 21,96,2017-03-01 +session,2380,4,Safari 41,103,2018-05-20 +session,2380,5,Chrome 27,60,2017-06-30 +session,2380,6,Safari 42,29,2018-03-12 +session,2380,7,Firefox 8,79,2016-09-21 +user,2381,Iluminada,Lanette,55 +session,2381,0,Firefox 26,67,2018-01-24 +session,2381,1,Firefox 3,87,2018-01-19 +session,2381,2,Safari 46,95,2018-10-31 +session,2381,3,Chrome 29,50,2018-09-12 +session,2381,4,Internet Explorer 11,19,2016-09-09 +session,2381,5,Firefox 1,94,2018-01-06 +session,2381,6,Chrome 3,53,2018-06-11 +session,2381,7,Safari 47,49,2017-12-27 +user,2382,Bok,Hong,14 +session,2382,0,Safari 2,98,2016-05-23 +session,2382,1,Internet Explorer 4,78,2016-06-30 +session,2382,2,Chrome 47,98,2018-12-26 +session,2382,3,Firefox 41,3,2016-10-15 +user,2383,Sergio,Thomas,53 +session,2383,0,Firefox 47,33,2017-10-04 +session,2383,1,Chrome 3,0,2018-07-29 +session,2383,2,Safari 50,11,2016-06-18 +session,2383,3,Chrome 9,108,2016-12-06 +session,2383,4,Firefox 35,115,2016-10-01 +session,2383,5,Chrome 37,99,2018-01-10 +session,2383,6,Firefox 25,47,2017-03-29 +session,2383,7,Chrome 23,39,2018-11-01 +session,2383,8,Firefox 39,2,2016-08-15 +session,2383,9,Internet Explorer 45,30,2017-08-14 +user,2384,Cris,Leta,36 +session,2384,0,Internet Explorer 45,108,2019-02-07 +session,2384,1,Internet Explorer 1,50,2017-06-25 +session,2384,2,Firefox 41,42,2017-08-25 +user,2385,Janean,Audrea,17 +session,2385,0,Safari 48,87,2017-06-18 +session,2385,1,Chrome 48,16,2018-10-14 +session,2385,2,Internet Explorer 29,59,2017-06-05 +session,2385,3,Internet Explorer 36,101,2017-10-20 +session,2385,4,Internet Explorer 48,95,2017-05-08 +session,2385,5,Internet Explorer 45,69,2016-11-19 +session,2385,6,Chrome 45,98,2018-04-30 +session,2385,7,Safari 13,43,2016-08-02 +session,2385,8,Internet Explorer 25,90,2016-12-25 +session,2385,9,Chrome 5,52,2017-09-05 +user,2386,Jill,Tarah,55 +session,2386,0,Firefox 19,18,2017-12-29 +session,2386,1,Firefox 48,112,2017-06-30 +session,2386,2,Chrome 20,86,2018-11-29 +session,2386,3,Chrome 48,85,2018-02-11 +session,2386,4,Safari 43,62,2017-12-22 +session,2386,5,Chrome 3,7,2017-10-14 +session,2386,6,Chrome 41,75,2017-03-23 +session,2386,7,Chrome 19,107,2018-09-28 +user,2387,Samira,Mason,43 +session,2387,0,Internet Explorer 38,6,2018-06-12 +session,2387,1,Safari 3,52,2018-09-24 +session,2387,2,Firefox 48,69,2018-10-29 +session,2387,3,Chrome 50,46,2017-03-02 +session,2387,4,Chrome 9,111,2016-10-08 +session,2387,5,Safari 26,82,2017-10-21 +session,2387,6,Firefox 47,51,2018-01-25 +session,2387,7,Safari 20,14,2019-01-23 +user,2388,Cherish,Lynette,58 +session,2388,0,Firefox 32,9,2017-10-21 +session,2388,1,Internet Explorer 37,54,2017-03-15 +session,2388,2,Safari 17,65,2017-12-22 +session,2388,3,Internet Explorer 30,6,2017-03-10 +session,2388,4,Safari 1,105,2018-09-05 +session,2388,5,Safari 18,117,2017-08-13 +session,2388,6,Internet Explorer 2,106,2016-11-21 +session,2388,7,Chrome 42,60,2018-08-25 +user,2389,Deloise,Felisa,49 +session,2389,0,Chrome 10,97,2016-06-18 +session,2389,1,Safari 12,61,2017-11-17 +session,2389,2,Internet Explorer 6,86,2016-08-30 +session,2389,3,Internet Explorer 30,87,2016-10-21 +session,2389,4,Chrome 20,57,2017-09-24 +session,2389,5,Safari 3,12,2018-09-05 +session,2389,6,Internet Explorer 37,116,2016-05-26 +user,2390,Doyle,Ginger,78 +session,2390,0,Firefox 27,93,2018-11-12 +session,2390,1,Firefox 2,112,2018-05-02 +user,2391,Rachell,Adriana,2 +session,2391,0,Firefox 49,36,2017-03-28 +session,2391,1,Safari 22,32,2017-01-18 +session,2391,2,Internet Explorer 44,83,2019-01-07 +session,2391,3,Chrome 20,41,2018-01-08 +session,2391,4,Chrome 6,91,2018-07-12 +session,2391,5,Chrome 15,113,2017-12-23 +user,2392,Mabel,Trisha,41 +session,2392,0,Internet Explorer 32,104,2017-03-01 +session,2392,1,Firefox 34,41,2016-12-27 +session,2392,2,Internet Explorer 9,20,2018-03-16 +session,2392,3,Chrome 40,18,2017-03-23 +user,2393,Jamaal,Joesph,5 +session,2393,0,Chrome 20,6,2018-09-01 +session,2393,1,Firefox 37,38,2017-11-11 +session,2393,2,Chrome 29,20,2018-06-21 +session,2393,3,Chrome 27,29,2018-04-03 +session,2393,4,Safari 4,93,2016-12-07 +session,2393,5,Firefox 29,26,2016-07-24 +session,2393,6,Internet Explorer 22,82,2018-11-24 +session,2393,7,Internet Explorer 7,9,2018-11-30 +user,2394,Jack,Corazon,34 +session,2394,0,Chrome 38,100,2017-04-17 +session,2394,1,Safari 29,110,2018-02-01 +session,2394,2,Chrome 41,119,2017-12-14 +session,2394,3,Firefox 44,9,2018-08-01 +session,2394,4,Safari 48,82,2016-11-30 +session,2394,5,Chrome 24,37,2017-01-23 +session,2394,6,Safari 17,119,2018-04-26 +session,2394,7,Firefox 34,95,2018-07-30 +session,2394,8,Internet Explorer 39,99,2017-03-31 +user,2395,Felipe,Donn,32 +session,2395,0,Chrome 30,115,2017-11-30 +session,2395,1,Safari 44,88,2019-02-06 +session,2395,2,Safari 8,45,2016-07-07 +session,2395,3,Firefox 43,114,2017-01-22 +user,2396,Marco,Treena,21 +session,2396,0,Chrome 18,9,2017-05-04 +user,2397,Monroe,Nakesha,14 +session,2397,0,Chrome 14,21,2019-01-02 +session,2397,1,Firefox 42,35,2018-11-07 +session,2397,2,Internet Explorer 25,26,2016-06-03 +session,2397,3,Firefox 29,1,2018-10-14 +session,2397,4,Safari 31,113,2017-08-15 +user,2398,Bertram,Nyla,55 +session,2398,0,Chrome 43,28,2016-12-21 +session,2398,1,Internet Explorer 22,58,2017-11-18 +session,2398,2,Chrome 49,97,2016-06-16 +session,2398,3,Chrome 39,32,2018-11-06 +user,2399,Roosevelt,Francene,53 +session,2399,0,Chrome 22,96,2016-06-16 +user,2400,Gale,Jerica,0 +session,2400,0,Firefox 44,106,2019-02-12 +session,2400,1,Chrome 13,106,2018-03-06 +session,2400,2,Firefox 42,24,2018-12-06 +session,2400,3,Firefox 34,77,2016-08-31 +session,2400,4,Chrome 22,19,2018-09-09 +session,2400,5,Safari 1,96,2016-09-03 +user,2401,Rana,Vernell,89 +session,2401,0,Firefox 45,88,2018-02-18 +session,2401,1,Chrome 38,113,2017-07-23 +session,2401,2,Chrome 8,51,2017-02-16 +session,2401,3,Firefox 42,108,2017-10-17 +user,2402,Billi,Theo,9 +session,2402,0,Firefox 3,118,2018-12-22 +session,2402,1,Chrome 33,108,2016-11-26 +session,2402,2,Safari 10,106,2017-10-05 +session,2402,3,Internet Explorer 5,77,2017-02-01 +session,2402,4,Safari 35,62,2016-07-02 +session,2402,5,Safari 8,79,2017-06-27 +user,2403,Vannesa,Louis,27 +session,2403,0,Chrome 15,73,2016-05-29 +session,2403,1,Safari 35,53,2018-01-01 +session,2403,2,Internet Explorer 18,64,2016-09-28 +session,2403,3,Chrome 8,112,2016-07-12 +session,2403,4,Firefox 35,14,2017-12-10 +session,2403,5,Internet Explorer 24,56,2017-10-20 +session,2403,6,Safari 47,65,2016-07-02 +user,2404,Jaclyn,Kori,66 +session,2404,0,Internet Explorer 29,104,2018-08-26 +session,2404,1,Safari 38,77,2018-11-07 +session,2404,2,Safari 43,18,2016-08-11 +session,2404,3,Chrome 6,52,2016-12-05 +session,2404,4,Safari 37,74,2016-11-06 +user,2405,Federico,Dion,9 +session,2405,0,Firefox 42,87,2016-05-22 +session,2405,1,Firefox 29,99,2018-05-03 +session,2405,2,Firefox 46,118,2018-12-05 +session,2405,3,Internet Explorer 7,67,2018-03-16 +session,2405,4,Chrome 19,12,2017-09-19 +session,2405,5,Firefox 39,40,2017-05-04 +session,2405,6,Chrome 3,20,2017-12-18 +session,2405,7,Chrome 6,34,2018-05-15 +session,2405,8,Chrome 10,30,2016-06-09 +session,2405,9,Chrome 4,89,2018-08-11 +user,2406,Janene,Jacki,88 +session,2406,0,Internet Explorer 6,119,2016-12-30 +session,2406,1,Chrome 3,29,2017-12-23 +session,2406,2,Firefox 4,102,2017-02-04 +session,2406,3,Safari 49,30,2018-06-24 +session,2406,4,Chrome 30,19,2018-02-16 +session,2406,5,Firefox 20,89,2018-01-04 +session,2406,6,Chrome 29,113,2018-01-05 +session,2406,7,Firefox 22,74,2018-04-03 +user,2407,Rosa,Jeanne,46 +session,2407,0,Chrome 12,63,2016-07-01 +session,2407,1,Internet Explorer 49,100,2018-06-25 +user,2408,Deshawn,Ellyn,18 +session,2408,0,Internet Explorer 35,28,2018-12-25 +session,2408,1,Safari 39,44,2016-12-29 +session,2408,2,Safari 21,83,2016-10-15 +session,2408,3,Chrome 22,34,2017-02-20 +session,2408,4,Safari 45,65,2018-08-28 +session,2408,5,Internet Explorer 12,84,2017-05-26 +session,2408,6,Internet Explorer 39,55,2017-09-23 +session,2408,7,Internet Explorer 3,84,2017-04-18 +session,2408,8,Internet Explorer 50,17,2017-02-25 +user,2409,Ollie,Miguelina,49 +session,2409,0,Internet Explorer 16,78,2017-07-04 +session,2409,1,Internet Explorer 7,94,2017-09-26 +session,2409,2,Safari 5,51,2017-09-19 +session,2409,3,Safari 6,49,2016-12-27 +session,2409,4,Firefox 13,100,2016-06-18 +session,2409,5,Internet Explorer 29,74,2017-11-26 +session,2409,6,Chrome 47,48,2016-07-23 +session,2409,7,Chrome 47,116,2018-12-25 +user,2410,Muoi,Earle,81 +session,2410,0,Chrome 47,101,2017-01-01 +session,2410,1,Internet Explorer 10,29,2017-10-25 +session,2410,2,Chrome 40,32,2019-01-07 +session,2410,3,Firefox 30,100,2017-04-21 +user,2411,Shelton,Malka,49 +session,2411,0,Safari 29,73,2017-11-06 +session,2411,1,Firefox 16,21,2017-03-14 +session,2411,2,Chrome 4,15,2018-08-05 +session,2411,3,Internet Explorer 19,116,2019-01-18 +session,2411,4,Firefox 9,96,2016-07-26 +session,2411,5,Chrome 40,80,2016-10-28 +session,2411,6,Firefox 47,82,2018-08-04 +session,2411,7,Internet Explorer 31,34,2018-07-11 +session,2411,8,Firefox 38,114,2017-12-21 +session,2411,9,Safari 23,78,2017-02-19 +user,2412,Suanne,Yolande,96 +session,2412,0,Firefox 9,73,2017-12-02 +session,2412,1,Chrome 35,72,2016-09-21 +session,2412,2,Safari 40,49,2018-05-10 +session,2412,3,Internet Explorer 45,20,2017-06-03 +session,2412,4,Firefox 4,83,2019-01-31 +session,2412,5,Safari 43,79,2018-01-06 +session,2412,6,Chrome 29,111,2017-09-02 +session,2412,7,Chrome 2,14,2016-11-10 +session,2412,8,Internet Explorer 21,89,2018-04-30 +session,2412,9,Chrome 34,14,2016-09-14 +user,2413,Davis,Ginger,35 +session,2413,0,Internet Explorer 28,36,2018-09-15 +session,2413,1,Safari 27,7,2017-02-19 +session,2413,2,Safari 10,46,2018-09-24 +session,2413,3,Internet Explorer 17,86,2017-01-27 +session,2413,4,Internet Explorer 50,12,2018-04-21 +session,2413,5,Firefox 40,89,2017-06-17 +session,2413,6,Chrome 42,112,2017-05-29 +user,2414,Reuben,Manie,39 +session,2414,0,Chrome 8,16,2018-01-26 +session,2414,1,Internet Explorer 10,81,2017-08-31 +session,2414,2,Firefox 2,64,2018-02-05 +session,2414,3,Internet Explorer 25,61,2017-05-20 +session,2414,4,Safari 48,83,2016-06-08 +session,2414,5,Firefox 32,78,2017-07-01 +session,2414,6,Safari 32,109,2018-05-13 +session,2414,7,Chrome 45,21,2016-09-07 +user,2415,Lynwood,Lise,70 +session,2415,0,Internet Explorer 9,100,2018-09-25 +session,2415,1,Internet Explorer 33,7,2016-10-19 +session,2415,2,Chrome 33,15,2017-11-14 +session,2415,3,Safari 6,68,2016-08-01 +session,2415,4,Firefox 38,63,2016-10-16 +session,2415,5,Chrome 31,8,2017-11-07 +session,2415,6,Safari 12,86,2018-02-20 +user,2416,Letty,Deloras,91 +session,2416,0,Internet Explorer 36,106,2017-04-27 +session,2416,1,Firefox 28,34,2017-01-12 +session,2416,2,Firefox 2,35,2018-07-10 +session,2416,3,Internet Explorer 50,118,2016-07-31 +session,2416,4,Internet Explorer 16,91,2017-07-01 +session,2416,5,Safari 35,26,2018-12-20 +session,2416,6,Internet Explorer 45,77,2017-12-11 +user,2417,Jenette,Eugena,89 +session,2417,0,Safari 39,107,2016-07-24 +session,2417,1,Internet Explorer 29,37,2018-08-04 +session,2417,2,Chrome 8,59,2017-08-09 +session,2417,3,Chrome 34,61,2018-09-11 +session,2417,4,Internet Explorer 24,1,2018-12-24 +user,2418,Chae,Alysa,18 +session,2418,0,Internet Explorer 22,43,2017-10-25 +session,2418,1,Chrome 18,55,2017-04-19 +session,2418,2,Internet Explorer 33,8,2018-04-06 +session,2418,3,Firefox 12,23,2018-12-12 +session,2418,4,Firefox 4,13,2018-08-25 +session,2418,5,Chrome 19,39,2018-01-13 +user,2419,Bronwyn,Ila,0 +session,2419,0,Safari 48,45,2017-12-06 +session,2419,1,Safari 42,66,2018-03-02 +session,2419,2,Chrome 25,7,2017-09-23 +user,2420,Lynna,Inell,62 +session,2420,0,Chrome 29,47,2018-09-05 +session,2420,1,Firefox 12,88,2016-05-21 +session,2420,2,Internet Explorer 19,68,2018-01-11 +session,2420,3,Firefox 39,119,2016-11-13 +session,2420,4,Internet Explorer 19,43,2017-06-25 +session,2420,5,Firefox 36,26,2017-04-10 +session,2420,6,Firefox 16,117,2017-09-10 +session,2420,7,Chrome 5,36,2018-02-21 +user,2421,Vernice,Eleonora,81 +session,2421,0,Chrome 26,101,2016-11-04 +user,2422,Alvin,Sadye,34 +session,2422,0,Internet Explorer 33,76,2016-09-29 +session,2422,1,Firefox 20,62,2016-10-27 +session,2422,2,Safari 13,9,2019-01-26 +session,2422,3,Internet Explorer 43,30,2018-09-26 +session,2422,4,Firefox 13,101,2019-01-22 +session,2422,5,Safari 24,19,2017-09-13 +session,2422,6,Firefox 10,19,2018-01-04 +session,2422,7,Chrome 45,78,2018-05-21 +session,2422,8,Chrome 5,75,2017-03-08 +user,2423,Alejandro,Chauncey,31 +session,2423,0,Safari 24,8,2017-10-20 +session,2423,1,Safari 39,44,2016-08-24 +session,2423,2,Firefox 48,27,2019-01-22 +session,2423,3,Safari 9,10,2018-12-14 +user,2424,Edwin,Coletta,35 +session,2424,0,Internet Explorer 38,36,2017-11-08 +user,2425,Dannie,Tiffaney,80 +session,2425,0,Firefox 26,15,2018-01-27 +session,2425,1,Internet Explorer 32,40,2018-03-14 +session,2425,2,Chrome 44,63,2018-08-03 +session,2425,3,Internet Explorer 23,54,2019-02-06 +session,2425,4,Internet Explorer 16,56,2018-01-23 +session,2425,5,Safari 16,24,2018-05-02 +session,2425,6,Chrome 33,114,2018-07-29 +session,2425,7,Safari 15,37,2016-12-08 +session,2425,8,Chrome 40,5,2017-05-24 +user,2426,Buster,Rolf,93 +session,2426,0,Safari 15,11,2018-12-30 +session,2426,1,Firefox 38,110,2018-06-18 +user,2427,Scott,Tess,71 +session,2427,0,Firefox 1,0,2017-12-15 +session,2427,1,Safari 7,26,2018-09-24 +session,2427,2,Firefox 45,80,2016-12-09 +session,2427,3,Safari 10,42,2017-02-27 +session,2427,4,Firefox 48,104,2016-06-21 +session,2427,5,Chrome 50,0,2017-05-12 +session,2427,6,Firefox 6,118,2017-08-08 +session,2427,7,Firefox 20,11,2017-11-15 +user,2428,Noel,Reggie,57 +session,2428,0,Safari 27,44,2017-03-20 +user,2429,Antonia,Laurence,79 +session,2429,0,Internet Explorer 39,94,2017-02-27 +session,2429,1,Firefox 41,44,2018-12-03 +session,2429,2,Safari 7,99,2018-08-16 +session,2429,3,Safari 33,104,2019-01-18 +session,2429,4,Chrome 20,55,2017-09-30 +session,2429,5,Safari 38,22,2018-11-28 +session,2429,6,Chrome 43,3,2018-02-25 +session,2429,7,Internet Explorer 15,5,2016-11-03 +user,2430,Babette,Shamika,80 +session,2430,0,Internet Explorer 33,77,2018-02-24 +session,2430,1,Safari 19,35,2018-08-27 +session,2430,2,Internet Explorer 7,65,2018-10-30 +session,2430,3,Internet Explorer 40,94,2017-12-12 +session,2430,4,Safari 27,111,2016-07-06 +session,2430,5,Internet Explorer 43,5,2018-01-20 +user,2431,Kena,Sanjuana,45 +session,2431,0,Firefox 3,10,2019-01-06 +session,2431,1,Safari 42,73,2018-01-03 +session,2431,2,Internet Explorer 33,31,2017-07-23 +session,2431,3,Safari 28,21,2017-08-07 +user,2432,Graciela,Danette,20 +session,2432,0,Firefox 45,60,2017-06-22 +user,2433,Dannie,Jacquiline,56 +session,2433,0,Internet Explorer 31,25,2017-12-30 +session,2433,1,Internet Explorer 9,9,2017-10-04 +session,2433,2,Internet Explorer 20,90,2016-07-01 +session,2433,3,Safari 34,28,2017-01-18 +user,2434,Cordia,Isela,2 +session,2434,0,Chrome 39,98,2017-05-28 +session,2434,1,Internet Explorer 32,30,2017-10-20 +session,2434,2,Safari 48,94,2017-09-23 +session,2434,3,Safari 33,20,2017-05-27 +session,2434,4,Safari 6,57,2019-01-09 +session,2434,5,Firefox 42,34,2018-03-26 +session,2434,6,Chrome 30,75,2016-07-08 +user,2435,Nona,Tyisha,43 +session,2435,0,Safari 48,1,2018-11-27 +session,2435,1,Firefox 49,90,2016-12-20 +session,2435,2,Firefox 50,67,2017-04-11 +session,2435,3,Firefox 13,77,2018-08-18 +session,2435,4,Internet Explorer 28,47,2018-07-12 +session,2435,5,Firefox 10,51,2018-12-22 +session,2435,6,Chrome 18,83,2019-01-11 +user,2436,Stevie,Antonia,49 +session,2436,0,Chrome 32,55,2017-03-05 +session,2436,1,Internet Explorer 17,9,2018-03-28 +session,2436,2,Firefox 9,91,2017-11-22 +session,2436,3,Chrome 14,57,2017-07-05 +session,2436,4,Firefox 23,3,2017-07-16 +session,2436,5,Firefox 35,30,2017-05-13 +session,2436,6,Internet Explorer 35,100,2016-07-12 +user,2437,Kirsten,Aundrea,16 +session,2437,0,Chrome 20,82,2017-04-10 +session,2437,1,Chrome 14,84,2017-12-18 +session,2437,2,Firefox 41,8,2017-10-10 +user,2438,Malinda,Alita,32 +session,2438,0,Internet Explorer 23,68,2016-07-15 +session,2438,1,Safari 36,16,2016-11-23 +user,2439,Theodora,Shamika,20 +session,2439,0,Safari 46,118,2017-02-11 +session,2439,1,Chrome 3,88,2017-12-10 +session,2439,2,Chrome 37,28,2017-02-25 +session,2439,3,Chrome 23,6,2019-01-26 +session,2439,4,Internet Explorer 29,14,2016-08-12 +session,2439,5,Safari 17,113,2017-10-09 +user,2440,Annett,Fidela,23 +session,2440,0,Internet Explorer 11,42,2017-03-24 +session,2440,1,Safari 14,49,2017-11-30 +session,2440,2,Chrome 17,25,2016-08-03 +session,2440,3,Firefox 41,9,2017-04-28 +session,2440,4,Firefox 33,30,2016-11-29 +session,2440,5,Safari 6,104,2017-07-09 +user,2441,Angie,Morgan,19 +session,2441,0,Chrome 45,16,2018-12-11 +session,2441,1,Safari 45,76,2019-02-04 +session,2441,2,Firefox 8,71,2017-01-22 +session,2441,3,Safari 43,95,2019-02-02 +session,2441,4,Chrome 46,82,2018-04-10 +session,2441,5,Safari 1,115,2018-04-15 +session,2441,6,Safari 45,75,2018-06-10 +session,2441,7,Firefox 32,59,2018-05-09 +user,2442,Bret,Paul,42 +session,2442,0,Firefox 12,33,2017-06-24 +session,2442,1,Firefox 32,118,2017-07-30 +session,2442,2,Internet Explorer 1,25,2016-06-21 +session,2442,3,Chrome 7,19,2018-01-10 +session,2442,4,Firefox 36,47,2016-07-29 +session,2442,5,Internet Explorer 25,63,2017-09-27 +session,2442,6,Safari 34,19,2017-12-15 +session,2442,7,Internet Explorer 20,9,2017-11-29 +session,2442,8,Internet Explorer 23,111,2018-02-12 +user,2443,Elda,Lindsay,48 +session,2443,0,Firefox 48,18,2018-02-21 +session,2443,1,Firefox 31,54,2016-12-02 +session,2443,2,Chrome 41,60,2016-10-28 +session,2443,3,Internet Explorer 12,83,2017-08-04 +session,2443,4,Chrome 37,60,2017-04-01 +session,2443,5,Chrome 45,104,2017-09-15 +session,2443,6,Firefox 33,28,2019-01-24 +session,2443,7,Safari 38,97,2018-01-02 +session,2443,8,Firefox 47,72,2018-07-26 +user,2444,Dudley,Sumiko,62 +session,2444,0,Chrome 46,50,2018-04-23 +session,2444,1,Safari 18,49,2018-12-12 +session,2444,2,Internet Explorer 3,87,2018-04-05 +session,2444,3,Safari 46,98,2017-06-16 +session,2444,4,Chrome 10,77,2017-02-11 +session,2444,5,Chrome 29,21,2019-01-24 +session,2444,6,Safari 3,110,2017-10-22 +session,2444,7,Chrome 14,26,2017-11-01 +user,2445,Kaye,Sarita,97 +session,2445,0,Firefox 38,65,2017-01-04 +session,2445,1,Safari 42,3,2017-08-05 +session,2445,2,Safari 26,57,2018-05-09 +session,2445,3,Firefox 17,32,2018-05-20 +session,2445,4,Chrome 24,39,2017-09-27 +session,2445,5,Chrome 50,33,2018-06-12 +session,2445,6,Chrome 44,23,2016-08-19 +session,2445,7,Safari 30,71,2017-10-20 +session,2445,8,Internet Explorer 28,68,2017-03-19 +session,2445,9,Firefox 4,88,2017-04-12 +user,2446,Darnell,Tania,59 +session,2446,0,Chrome 35,96,2017-03-19 +session,2446,1,Chrome 36,71,2016-11-12 +session,2446,2,Internet Explorer 10,71,2018-09-05 +user,2447,Karissa,Conchita,22 +session,2447,0,Firefox 25,84,2017-07-17 +session,2447,1,Chrome 17,18,2017-07-22 +session,2447,2,Firefox 10,58,2016-07-26 +session,2447,3,Firefox 32,57,2017-03-18 +session,2447,4,Safari 39,3,2017-03-03 +session,2447,5,Internet Explorer 48,89,2018-05-01 +session,2447,6,Internet Explorer 31,93,2016-08-03 +session,2447,7,Safari 28,1,2018-12-09 +user,2448,Zachery,Gearldine,81 +session,2448,0,Internet Explorer 6,57,2018-11-02 +session,2448,1,Chrome 41,88,2017-06-05 +session,2448,2,Internet Explorer 30,30,2018-09-04 +session,2448,3,Safari 8,81,2017-01-15 +session,2448,4,Firefox 19,86,2017-04-30 +session,2448,5,Safari 29,110,2016-12-26 +session,2448,6,Safari 4,44,2018-02-17 +session,2448,7,Firefox 33,34,2016-12-17 +user,2449,Melania,Doria,67 +session,2449,0,Safari 43,81,2017-01-22 +session,2449,1,Safari 8,3,2018-02-13 +session,2449,2,Firefox 16,85,2017-01-10 +session,2449,3,Safari 2,92,2018-02-21 +session,2449,4,Firefox 29,75,2017-07-31 +session,2449,5,Safari 32,26,2017-04-25 +session,2449,6,Safari 23,5,2016-06-11 +session,2449,7,Firefox 26,84,2016-07-22 +user,2450,Calvin,Leopoldo,30 +session,2450,0,Internet Explorer 35,75,2018-05-06 +session,2450,1,Safari 20,54,2018-08-03 +session,2450,2,Internet Explorer 29,111,2017-05-10 +session,2450,3,Chrome 11,100,2019-01-28 +session,2450,4,Internet Explorer 50,73,2017-09-22 +session,2450,5,Safari 12,54,2017-02-22 +session,2450,6,Internet Explorer 32,97,2017-12-21 +session,2450,7,Chrome 41,69,2016-10-10 +session,2450,8,Internet Explorer 3,60,2017-03-07 +session,2450,9,Firefox 10,68,2017-06-12 +user,2451,Cleotilde,Tequila,40 +session,2451,0,Safari 37,27,2017-11-15 +session,2451,1,Firefox 39,32,2017-11-13 +session,2451,2,Internet Explorer 18,72,2016-09-24 +session,2451,3,Chrome 13,100,2017-09-06 +session,2451,4,Firefox 2,52,2017-04-01 +user,2452,Erik,My,22 +session,2452,0,Chrome 23,99,2017-03-15 +session,2452,1,Internet Explorer 41,105,2017-05-05 +session,2452,2,Firefox 42,74,2018-04-03 +session,2452,3,Chrome 49,27,2017-06-28 +session,2452,4,Safari 19,51,2018-01-13 +session,2452,5,Internet Explorer 25,96,2018-05-15 +session,2452,6,Internet Explorer 24,45,2017-11-30 +session,2452,7,Firefox 46,50,2018-09-04 +session,2452,8,Chrome 27,81,2017-03-21 +user,2453,Yer,Yessenia,84 +session,2453,0,Safari 12,20,2019-02-09 +session,2453,1,Firefox 29,114,2018-01-03 +session,2453,2,Safari 6,12,2017-03-26 +session,2453,3,Firefox 30,100,2018-08-15 +session,2453,4,Safari 42,61,2018-07-05 +session,2453,5,Chrome 11,4,2017-08-08 +session,2453,6,Safari 17,119,2017-01-02 +session,2453,7,Safari 45,84,2017-05-15 +user,2454,Pearl,Delmy,57 +session,2454,0,Chrome 39,78,2018-07-12 +session,2454,1,Chrome 17,97,2017-02-28 +session,2454,2,Chrome 28,119,2016-08-19 +session,2454,3,Safari 16,6,2017-06-16 +session,2454,4,Safari 40,12,2016-12-04 +session,2454,5,Firefox 39,6,2017-08-20 +session,2454,6,Internet Explorer 21,114,2016-06-01 +session,2454,7,Firefox 7,2,2016-10-10 +user,2455,Harry,Deedra,9 +session,2455,0,Firefox 21,17,2017-08-13 +session,2455,1,Safari 39,52,2017-01-19 +session,2455,2,Safari 15,107,2016-09-08 +session,2455,3,Safari 28,4,2018-12-22 +session,2455,4,Internet Explorer 39,21,2018-07-30 +session,2455,5,Firefox 28,2,2016-11-03 +session,2455,6,Firefox 27,72,2017-06-27 +session,2455,7,Chrome 48,0,2018-03-21 +user,2456,Loria,Cornell,61 +session,2456,0,Safari 41,72,2018-10-10 +session,2456,1,Chrome 5,34,2017-04-26 +session,2456,2,Internet Explorer 9,119,2017-11-04 +session,2456,3,Internet Explorer 15,72,2017-11-05 +session,2456,4,Internet Explorer 17,108,2017-12-17 +session,2456,5,Firefox 18,73,2016-11-06 +session,2456,6,Safari 47,51,2017-12-05 +session,2456,7,Safari 25,78,2017-07-09 +user,2457,Delora,Penni,75 +session,2457,0,Internet Explorer 34,42,2016-12-20 +session,2457,1,Chrome 23,116,2018-08-11 +session,2457,2,Firefox 50,76,2018-04-30 +session,2457,3,Firefox 15,101,2019-01-11 +session,2457,4,Chrome 6,24,2018-12-21 +session,2457,5,Internet Explorer 7,48,2016-06-30 +user,2458,Michaela,Marcelene,51 +session,2458,0,Firefox 14,76,2018-10-07 +session,2458,1,Firefox 14,106,2018-01-23 +session,2458,2,Firefox 32,57,2018-03-12 +session,2458,3,Internet Explorer 1,62,2018-06-03 +session,2458,4,Internet Explorer 37,69,2018-06-05 +session,2458,5,Safari 41,55,2016-11-27 +session,2458,6,Firefox 7,1,2018-02-04 +session,2458,7,Safari 41,75,2017-07-09 +user,2459,Barbera,Azalee,43 +session,2459,0,Internet Explorer 11,41,2017-08-20 +session,2459,1,Safari 5,108,2018-03-19 +session,2459,2,Firefox 1,96,2017-04-17 +session,2459,3,Firefox 4,104,2016-10-25 +session,2459,4,Chrome 22,74,2018-02-15 +session,2459,5,Firefox 24,43,2017-02-19 +session,2459,6,Firefox 19,17,2017-06-02 +user,2460,Herschel,Gala,63 +session,2460,0,Firefox 15,112,2017-05-17 +session,2460,1,Chrome 36,11,2016-08-26 +user,2461,Teisha,Cathy,29 +session,2461,0,Internet Explorer 6,21,2018-07-25 +session,2461,1,Internet Explorer 44,99,2017-03-04 +session,2461,2,Safari 14,65,2017-06-16 +session,2461,3,Internet Explorer 36,30,2018-02-24 +session,2461,4,Internet Explorer 13,98,2017-12-25 +session,2461,5,Firefox 23,80,2017-11-22 +session,2461,6,Chrome 18,16,2018-05-21 +session,2461,7,Firefox 40,65,2018-05-25 +session,2461,8,Chrome 35,103,2018-07-25 +user,2462,Dominick,Ping,8 +session,2462,0,Chrome 42,5,2018-04-26 +session,2462,1,Safari 47,23,2016-10-26 +session,2462,2,Chrome 38,86,2018-01-19 +session,2462,3,Chrome 5,88,2016-05-24 +session,2462,4,Firefox 22,38,2017-10-01 +session,2462,5,Firefox 38,69,2016-06-26 +session,2462,6,Chrome 16,9,2016-06-12 +user,2463,Tarra,Grover,3 +session,2463,0,Chrome 23,103,2017-12-02 +session,2463,1,Safari 37,115,2017-01-18 +session,2463,2,Safari 36,13,2017-10-17 +user,2464,Enda,Rueben,72 +session,2464,0,Safari 38,96,2018-09-23 +user,2465,Russell,Jacque,44 +session,2465,0,Chrome 25,61,2016-07-23 +session,2465,1,Firefox 3,49,2017-01-27 +session,2465,2,Firefox 26,7,2018-05-06 +session,2465,3,Firefox 27,60,2018-05-09 +session,2465,4,Internet Explorer 27,98,2017-06-15 +session,2465,5,Firefox 27,32,2017-02-14 +user,2466,Josiah,Lashay,45 +session,2466,0,Safari 11,52,2018-01-22 +session,2466,1,Firefox 30,59,2018-04-14 +session,2466,2,Internet Explorer 45,2,2017-12-06 +session,2466,3,Chrome 45,108,2018-03-10 +session,2466,4,Chrome 38,40,2018-01-26 +session,2466,5,Chrome 9,79,2017-05-12 +session,2466,6,Firefox 8,69,2018-05-01 +user,2467,Domenica,Nubia,16 +session,2467,0,Safari 16,10,2018-03-08 +session,2467,1,Chrome 23,97,2016-11-18 +session,2467,2,Internet Explorer 32,46,2017-01-10 +session,2467,3,Chrome 18,58,2019-01-16 +session,2467,4,Chrome 32,48,2017-02-13 +session,2467,5,Internet Explorer 8,110,2016-08-04 +session,2467,6,Firefox 38,1,2018-02-16 +session,2467,7,Firefox 39,101,2016-11-20 +session,2467,8,Chrome 34,46,2019-01-14 +session,2467,9,Chrome 39,108,2016-12-07 +user,2468,Harvey,Jae,6 +session,2468,0,Chrome 44,31,2017-03-03 +user,2469,Alphonse,Geneva,40 +session,2469,0,Chrome 24,119,2017-02-25 +session,2469,1,Safari 32,119,2017-12-02 +session,2469,2,Firefox 38,31,2018-09-12 +session,2469,3,Chrome 27,20,2018-01-03 +session,2469,4,Safari 9,66,2018-01-22 +session,2469,5,Chrome 16,3,2017-07-06 +user,2470,Lou,Leena,16 +session,2470,0,Internet Explorer 13,6,2018-05-15 +session,2470,1,Internet Explorer 24,19,2018-05-27 +session,2470,2,Chrome 17,71,2018-06-30 +user,2471,Belkis,Venus,37 +session,2471,0,Chrome 3,96,2018-11-16 +session,2471,1,Internet Explorer 1,31,2017-11-03 +session,2471,2,Firefox 42,85,2018-01-27 +session,2471,3,Internet Explorer 18,112,2017-02-17 +session,2471,4,Internet Explorer 34,58,2017-09-15 +session,2471,5,Firefox 20,91,2016-08-02 +session,2471,6,Chrome 3,70,2018-05-12 +session,2471,7,Firefox 50,79,2018-11-17 +user,2472,Tommy,David,85 +session,2472,0,Safari 4,88,2019-01-26 +session,2472,1,Firefox 49,9,2018-07-05 +session,2472,2,Firefox 4,114,2017-02-27 +session,2472,3,Firefox 46,55,2018-05-12 +user,2473,Mitzi,Sachiko,35 +session,2473,0,Chrome 12,24,2018-12-13 +session,2473,1,Safari 45,70,2018-08-16 +session,2473,2,Chrome 10,5,2016-08-23 +session,2473,3,Chrome 32,73,2018-11-26 +session,2473,4,Chrome 31,31,2019-01-16 +session,2473,5,Firefox 18,21,2018-07-04 +session,2473,6,Safari 14,108,2018-12-15 +session,2473,7,Chrome 45,65,2017-06-13 +session,2473,8,Firefox 29,48,2017-09-27 +user,2474,Silas,Felisa,64 +session,2474,0,Firefox 22,21,2018-04-23 +session,2474,1,Internet Explorer 20,66,2017-10-25 +session,2474,2,Internet Explorer 47,31,2018-10-29 +session,2474,3,Firefox 36,70,2018-11-19 +user,2475,Jess,Olga,84 +session,2475,0,Safari 43,86,2017-07-23 +session,2475,1,Safari 26,7,2017-03-02 +session,2475,2,Safari 18,17,2018-09-25 +session,2475,3,Chrome 44,87,2016-08-16 +session,2475,4,Firefox 26,49,2016-07-30 +user,2476,Steven,Alison,34 +session,2476,0,Safari 9,39,2017-03-31 +session,2476,1,Internet Explorer 28,103,2017-12-21 +session,2476,2,Safari 49,115,2018-08-13 +user,2477,Bo,Cole,55 +session,2477,0,Chrome 15,104,2016-11-26 +session,2477,1,Firefox 44,87,2018-12-27 +session,2477,2,Safari 46,16,2017-04-20 +session,2477,3,Internet Explorer 3,65,2017-09-22 +session,2477,4,Firefox 33,35,2016-07-25 +session,2477,5,Firefox 19,69,2018-10-25 +session,2477,6,Firefox 7,19,2018-09-04 +session,2477,7,Firefox 41,116,2018-07-11 +user,2478,Leila,Ross,32 +session,2478,0,Safari 11,99,2016-07-07 +session,2478,1,Internet Explorer 42,72,2018-09-03 +session,2478,2,Safari 34,55,2017-01-11 +session,2478,3,Safari 18,21,2018-07-20 +session,2478,4,Chrome 37,68,2017-12-13 +user,2479,Rubin,Lorelei,14 +session,2479,0,Chrome 49,25,2017-12-20 +session,2479,1,Safari 7,13,2019-01-13 +session,2479,2,Chrome 44,85,2018-05-28 +user,2480,Sergio,Paris,63 +session,2480,0,Safari 42,10,2017-10-08 +session,2480,1,Chrome 35,74,2017-09-28 +session,2480,2,Firefox 37,21,2018-04-11 +session,2480,3,Firefox 2,116,2017-07-08 +session,2480,4,Firefox 8,61,2018-10-19 +session,2480,5,Internet Explorer 26,10,2016-11-26 +session,2480,6,Chrome 41,3,2017-12-28 +session,2480,7,Chrome 46,53,2017-10-06 +session,2480,8,Safari 12,73,2018-12-26 +user,2481,Alesia,Romaine,21 +session,2481,0,Safari 8,57,2018-04-09 +user,2482,Renaldo,Robbyn,4 +session,2482,0,Safari 18,91,2017-05-02 +session,2482,1,Chrome 2,14,2018-06-27 +session,2482,2,Internet Explorer 39,40,2018-07-21 +user,2483,Ike,Janeth,43 +session,2483,0,Firefox 32,60,2016-07-01 +session,2483,1,Safari 40,36,2017-04-20 +session,2483,2,Internet Explorer 29,114,2017-08-02 +session,2483,3,Chrome 4,114,2018-02-17 +session,2483,4,Internet Explorer 1,36,2018-09-10 +session,2483,5,Internet Explorer 20,97,2018-12-27 +session,2483,6,Internet Explorer 41,40,2017-09-24 +session,2483,7,Internet Explorer 20,43,2017-09-16 +session,2483,8,Firefox 14,91,2017-09-12 +user,2484,Deadra,Marx,12 +session,2484,0,Chrome 47,68,2017-10-17 +session,2484,1,Chrome 17,25,2019-01-15 +session,2484,2,Firefox 48,20,2016-05-22 +session,2484,3,Internet Explorer 25,70,2017-10-18 +session,2484,4,Internet Explorer 39,0,2018-08-25 +session,2484,5,Safari 33,33,2017-11-17 +session,2484,6,Firefox 29,109,2016-12-18 +user,2485,Hollis,Tyisha,13 +session,2485,0,Safari 12,110,2017-06-01 +user,2486,Chadwick,Zofia,44 +session,2486,0,Firefox 9,8,2019-01-09 +session,2486,1,Safari 12,51,2018-12-13 +session,2486,2,Safari 29,87,2018-06-12 +session,2486,3,Safari 29,93,2018-12-07 +session,2486,4,Safari 14,46,2018-09-29 +session,2486,5,Chrome 38,63,2018-10-16 +session,2486,6,Firefox 23,99,2016-06-05 +session,2486,7,Internet Explorer 32,116,2016-12-24 +user,2487,Ryan,Rose,29 +session,2487,0,Firefox 18,108,2018-09-20 +session,2487,1,Internet Explorer 16,74,2017-12-24 +session,2487,2,Firefox 45,69,2018-06-02 +session,2487,3,Internet Explorer 44,31,2018-05-25 +session,2487,4,Chrome 13,94,2017-02-20 +session,2487,5,Safari 29,107,2017-12-13 +session,2487,6,Firefox 5,44,2016-08-28 +session,2487,7,Firefox 2,114,2018-12-28 +session,2487,8,Safari 36,82,2017-06-10 +session,2487,9,Safari 8,26,2016-10-30 +user,2488,Zelma,Elinore,47 +session,2488,0,Safari 43,92,2017-09-13 +session,2488,1,Firefox 10,106,2018-11-29 +session,2488,2,Chrome 19,17,2018-09-12 +session,2488,3,Firefox 12,79,2017-12-31 +session,2488,4,Safari 44,105,2018-10-26 +session,2488,5,Safari 8,43,2017-10-15 +session,2488,6,Safari 20,52,2018-05-18 +session,2488,7,Safari 4,24,2016-07-07 +session,2488,8,Chrome 42,118,2018-01-09 +session,2488,9,Safari 21,43,2019-02-01 +user,2489,Amy,Renee,38 +session,2489,0,Firefox 32,47,2016-08-14 +session,2489,1,Chrome 32,13,2016-05-29 +session,2489,2,Internet Explorer 41,10,2018-07-28 +user,2490,Maryrose,Francina,34 +session,2490,0,Firefox 34,95,2018-06-04 +session,2490,1,Firefox 4,101,2018-01-05 +session,2490,2,Safari 49,46,2018-10-26 +session,2490,3,Internet Explorer 40,61,2018-11-08 +user,2491,Tyrone,Eldon,30 +session,2491,0,Firefox 24,117,2016-11-20 +session,2491,1,Firefox 4,17,2016-06-26 +session,2491,2,Safari 19,40,2018-08-14 +user,2492,Martha,Erlinda,56 +session,2492,0,Firefox 21,54,2018-07-06 +session,2492,1,Firefox 24,2,2017-12-14 +session,2492,2,Internet Explorer 37,85,2016-11-25 +session,2492,3,Internet Explorer 33,89,2018-08-24 +user,2493,Jarod,Alaine,64 +session,2493,0,Firefox 7,53,2018-01-03 +user,2494,Elias,Robena,9 +session,2494,0,Safari 13,25,2017-09-25 +session,2494,1,Firefox 9,98,2018-10-24 +session,2494,2,Firefox 42,39,2017-10-12 +session,2494,3,Safari 50,0,2016-09-05 +session,2494,4,Firefox 32,88,2018-05-21 +session,2494,5,Safari 37,94,2019-01-21 +session,2494,6,Chrome 20,48,2017-08-01 +session,2494,7,Firefox 32,23,2018-05-10 +user,2495,Melvin,Rogelio,69 +session,2495,0,Firefox 2,13,2017-01-29 +session,2495,1,Safari 31,66,2018-08-27 +session,2495,2,Internet Explorer 29,44,2016-12-15 +user,2496,Wayne,Steven,53 +session,2496,0,Chrome 31,111,2017-04-28 +session,2496,1,Internet Explorer 33,34,2018-10-20 +session,2496,2,Internet Explorer 3,19,2017-11-29 +user,2497,Alberto,Lorriane,50 +session,2497,0,Safari 41,35,2017-04-09 +user,2498,Rosena,Karly,93 +session,2498,0,Chrome 9,44,2018-02-03 +session,2498,1,Internet Explorer 35,89,2017-11-18 +session,2498,2,Safari 22,108,2016-08-22 +session,2498,3,Chrome 39,8,2016-10-01 +session,2498,4,Firefox 15,72,2018-08-22 +session,2498,5,Chrome 48,37,2018-04-29 +session,2498,6,Chrome 9,42,2018-02-08 +session,2498,7,Safari 42,80,2019-02-12 +session,2498,8,Firefox 28,119,2019-02-11 +user,2499,Darryl,Rosemary,31 +session,2499,0,Firefox 33,32,2018-05-17 +session,2499,1,Chrome 50,55,2017-10-25 +session,2499,2,Chrome 13,111,2019-01-30 +session,2499,3,Internet Explorer 49,107,2016-11-05 +session,2499,4,Chrome 2,97,2017-06-22 +session,2499,5,Firefox 25,118,2017-07-25 +session,2499,6,Chrome 2,85,2018-03-12 +session,2499,7,Firefox 34,14,2016-12-05 +session,2499,8,Chrome 30,81,2016-10-23 +user,2500,Brad,Lynna,49 +session,2500,0,Chrome 37,104,2018-10-30 +session,2500,1,Safari 22,96,2016-07-13 +session,2500,2,Internet Explorer 49,14,2018-11-23 +session,2500,3,Safari 8,74,2017-09-05 +session,2500,4,Internet Explorer 1,15,2017-04-17 +session,2500,5,Firefox 30,25,2018-01-30 +session,2500,6,Internet Explorer 22,21,2017-09-01 +session,2500,7,Safari 6,44,2016-07-17 +user,2501,Ai,Lashonda,58 +session,2501,0,Internet Explorer 35,54,2018-11-13 +session,2501,1,Chrome 14,94,2017-02-20 +session,2501,2,Chrome 34,104,2017-02-14 +session,2501,3,Firefox 45,48,2018-09-03 +session,2501,4,Safari 31,94,2016-11-07 +user,2502,Harold,Marilee,71 +session,2502,0,Firefox 14,78,2017-04-06 +user,2503,Harlan,Mike,56 +session,2503,0,Safari 21,27,2019-01-23 +session,2503,1,Safari 2,36,2018-07-02 +session,2503,2,Firefox 44,84,2017-08-01 +session,2503,3,Internet Explorer 4,88,2017-06-21 +session,2503,4,Chrome 46,38,2017-03-25 +user,2504,Joline,Ila,52 +session,2504,0,Firefox 12,105,2017-09-09 +session,2504,1,Internet Explorer 36,14,2018-03-17 +session,2504,2,Internet Explorer 37,25,2017-04-22 +session,2504,3,Internet Explorer 23,81,2018-05-03 +session,2504,4,Firefox 21,45,2017-04-05 +session,2504,5,Firefox 45,24,2018-08-20 +session,2504,6,Safari 42,58,2017-08-22 +user,2505,Shad,Eliseo,95 +session,2505,0,Chrome 20,44,2018-03-02 +session,2505,1,Safari 41,97,2017-09-06 +session,2505,2,Safari 10,92,2017-01-21 +session,2505,3,Safari 37,70,2017-03-22 +user,2506,Lavona,Lin,44 +session,2506,0,Chrome 15,13,2017-08-01 +session,2506,1,Chrome 38,59,2016-08-23 +session,2506,2,Firefox 42,115,2017-05-30 +session,2506,3,Internet Explorer 8,25,2018-08-30 +session,2506,4,Safari 1,93,2018-02-03 +session,2506,5,Chrome 11,113,2017-10-16 +user,2507,Keneth,Shin,25 +session,2507,0,Safari 41,106,2018-12-20 +user,2508,Theodore,Mozella,95 +session,2508,0,Internet Explorer 46,59,2018-06-20 +session,2508,1,Internet Explorer 4,82,2016-08-10 +session,2508,2,Chrome 3,59,2017-10-18 +session,2508,3,Internet Explorer 32,102,2016-12-01 +user,2509,Dong,Babette,99 +session,2509,0,Safari 23,19,2017-01-07 +session,2509,1,Firefox 35,37,2017-06-28 +session,2509,2,Chrome 42,89,2018-07-15 +session,2509,3,Internet Explorer 48,102,2016-11-15 +session,2509,4,Firefox 26,97,2016-11-25 +session,2509,5,Internet Explorer 15,16,2016-09-29 +session,2509,6,Firefox 8,99,2018-05-30 +session,2509,7,Safari 18,71,2018-03-05 +session,2509,8,Internet Explorer 46,30,2018-02-17 +user,2510,Lilly,Mellie,29 +session,2510,0,Chrome 41,69,2017-04-21 +session,2510,1,Internet Explorer 38,102,2018-11-02 +session,2510,2,Safari 39,6,2017-07-13 +session,2510,3,Chrome 36,59,2016-12-17 +session,2510,4,Firefox 24,90,2016-08-28 +session,2510,5,Internet Explorer 37,83,2016-08-11 +session,2510,6,Firefox 42,97,2019-01-24 +session,2510,7,Firefox 35,21,2017-01-02 +session,2510,8,Internet Explorer 43,88,2018-07-17 +user,2511,Kraig,Klara,81 +session,2511,0,Firefox 12,8,2017-06-13 +user,2512,Rob,Lynn,64 +session,2512,0,Safari 24,23,2018-11-17 +session,2512,1,Firefox 39,79,2017-11-28 +session,2512,2,Safari 6,66,2018-05-22 +user,2513,Brock,Paul,20 +session,2513,0,Internet Explorer 42,79,2017-02-26 +session,2513,1,Chrome 14,13,2016-09-30 +user,2514,Dorothea,Adrian,57 +session,2514,0,Safari 32,106,2018-06-21 +session,2514,1,Firefox 1,78,2018-11-25 +session,2514,2,Safari 17,5,2017-01-10 +session,2514,3,Internet Explorer 34,37,2018-07-03 +user,2515,Gloria,Cory,25 +session,2515,0,Firefox 36,43,2019-02-02 +session,2515,1,Chrome 6,37,2016-09-18 +session,2515,2,Safari 7,25,2018-05-30 +session,2515,3,Internet Explorer 23,55,2017-03-06 +session,2515,4,Chrome 6,61,2018-05-11 +session,2515,5,Chrome 30,31,2017-05-24 +session,2515,6,Safari 23,63,2017-08-12 +session,2515,7,Internet Explorer 20,39,2018-09-12 +user,2516,Hans,Katherin,61 +session,2516,0,Safari 1,61,2019-01-06 +session,2516,1,Internet Explorer 30,13,2016-12-06 +user,2517,Rueben,Takisha,19 +session,2517,0,Internet Explorer 20,21,2018-05-18 +session,2517,1,Chrome 40,86,2017-10-13 +session,2517,2,Firefox 4,61,2018-07-09 +session,2517,3,Internet Explorer 36,89,2017-06-16 +session,2517,4,Internet Explorer 39,45,2017-02-08 +user,2518,Raelene,Ivan,32 +session,2518,0,Safari 12,44,2018-03-18 +session,2518,1,Firefox 21,85,2016-07-11 +session,2518,2,Safari 46,37,2017-07-10 +user,2519,Pamala,Selene,8 +session,2519,0,Firefox 6,65,2017-10-19 +session,2519,1,Safari 27,31,2016-09-20 +session,2519,2,Firefox 11,62,2018-08-22 +session,2519,3,Firefox 44,86,2017-04-02 +user,2520,Seymour,Elza,92 +session,2520,0,Safari 12,51,2017-01-03 +session,2520,1,Chrome 25,32,2017-04-11 +session,2520,2,Chrome 44,57,2018-07-11 +session,2520,3,Chrome 33,5,2017-04-29 +session,2520,4,Internet Explorer 19,74,2018-10-02 +session,2520,5,Firefox 23,99,2018-01-10 +session,2520,6,Safari 43,78,2017-04-08 +session,2520,7,Chrome 1,2,2018-08-09 +user,2521,Charla,Myra,4 +session,2521,0,Firefox 31,103,2017-05-30 +session,2521,1,Firefox 21,23,2018-07-21 +session,2521,2,Firefox 18,28,2018-12-20 +session,2521,3,Safari 37,95,2017-02-08 +session,2521,4,Firefox 11,71,2017-09-25 +session,2521,5,Chrome 2,4,2018-02-23 +session,2521,6,Chrome 20,37,2016-09-29 +session,2521,7,Safari 14,32,2018-04-30 +session,2521,8,Chrome 16,12,2017-01-11 +user,2522,Antwan,Denyse,15 +session,2522,0,Firefox 1,71,2019-01-19 +session,2522,1,Internet Explorer 17,56,2019-01-19 +session,2522,2,Safari 28,112,2017-05-01 +session,2522,3,Firefox 30,83,2016-08-23 +session,2522,4,Firefox 44,91,2017-12-09 +session,2522,5,Internet Explorer 50,13,2018-03-22 +session,2522,6,Internet Explorer 31,61,2016-09-08 +user,2523,Peter,Donald,27 +session,2523,0,Internet Explorer 15,96,2018-11-21 +session,2523,1,Internet Explorer 41,105,2017-09-27 +session,2523,2,Safari 37,80,2016-06-11 +session,2523,3,Firefox 19,101,2017-12-27 +session,2523,4,Safari 31,115,2017-12-28 +session,2523,5,Safari 29,57,2017-05-30 +session,2523,6,Safari 4,87,2016-09-12 +session,2523,7,Chrome 29,30,2017-08-20 +user,2524,Natasha,Sherwood,54 +session,2524,0,Safari 7,12,2018-05-24 +session,2524,1,Firefox 13,108,2016-10-06 +user,2525,Murray,Roxanna,41 +session,2525,0,Chrome 25,83,2017-12-16 +session,2525,1,Firefox 16,73,2017-03-06 +session,2525,2,Firefox 47,52,2016-12-01 +session,2525,3,Chrome 6,23,2018-02-22 +session,2525,4,Safari 37,77,2017-09-16 +session,2525,5,Internet Explorer 42,49,2016-12-30 +session,2525,6,Chrome 31,87,2018-09-29 +session,2525,7,Firefox 50,65,2017-01-12 +session,2525,8,Internet Explorer 16,82,2016-08-10 +user,2526,Harrison,Marline,78 +session,2526,0,Firefox 16,65,2017-11-21 +session,2526,1,Firefox 30,23,2018-10-25 +session,2526,2,Safari 28,35,2016-11-08 +session,2526,3,Safari 1,33,2016-11-21 +session,2526,4,Safari 45,76,2019-01-06 +session,2526,5,Chrome 45,118,2018-03-20 +user,2527,Raymonde,Imelda,85 +session,2527,0,Safari 11,59,2018-01-20 +session,2527,1,Internet Explorer 24,71,2018-10-28 +session,2527,2,Safari 32,13,2018-07-01 +session,2527,3,Internet Explorer 18,79,2016-07-17 +session,2527,4,Safari 2,40,2016-09-02 +session,2527,5,Firefox 37,34,2018-04-27 +session,2527,6,Chrome 20,51,2016-12-14 +session,2527,7,Internet Explorer 44,47,2018-08-18 +session,2527,8,Chrome 11,70,2019-01-16 +user,2528,Jerald,Lisha,22 +session,2528,0,Safari 43,27,2018-10-26 +session,2528,1,Chrome 41,37,2018-11-23 +session,2528,2,Internet Explorer 21,49,2018-09-12 +session,2528,3,Safari 43,9,2017-08-20 +session,2528,4,Safari 26,25,2017-05-08 +user,2529,Carmelo,Ming,94 +session,2529,0,Chrome 46,111,2018-09-04 +session,2529,1,Safari 16,45,2018-01-06 +session,2529,2,Firefox 22,70,2017-06-07 +session,2529,3,Firefox 3,34,2016-07-20 +session,2529,4,Chrome 32,89,2018-05-18 +session,2529,5,Internet Explorer 12,26,2016-06-13 +session,2529,6,Firefox 35,87,2018-07-06 +session,2529,7,Safari 36,35,2017-07-15 +session,2529,8,Firefox 24,3,2016-05-20 +user,2530,Ernest,Deangelo,50 +session,2530,0,Chrome 13,74,2018-10-13 +session,2530,1,Firefox 49,62,2016-11-29 +user,2531,Yasuko,Jody,61 +session,2531,0,Safari 35,119,2016-06-19 +session,2531,1,Internet Explorer 47,95,2017-12-29 +session,2531,2,Safari 17,77,2017-07-04 +session,2531,3,Chrome 43,111,2018-12-17 +session,2531,4,Chrome 12,24,2016-08-04 +session,2531,5,Chrome 43,101,2018-04-04 +user,2532,Trinidad,Na,69 +session,2532,0,Internet Explorer 49,93,2018-08-24 +session,2532,1,Internet Explorer 29,105,2016-10-16 +session,2532,2,Internet Explorer 24,42,2016-11-23 +user,2533,Shawn,Jaqueline,6 +session,2533,0,Chrome 14,23,2018-02-14 +session,2533,1,Firefox 35,6,2018-11-02 +session,2533,2,Firefox 46,74,2018-03-15 +session,2533,3,Chrome 11,104,2017-11-12 +session,2533,4,Chrome 9,10,2018-06-08 +session,2533,5,Firefox 6,98,2018-07-28 +session,2533,6,Internet Explorer 3,49,2016-06-17 +session,2533,7,Firefox 13,27,2016-12-09 +session,2533,8,Chrome 20,66,2018-12-25 +session,2533,9,Safari 42,90,2017-04-20 +user,2534,Rossana,Jaqueline,50 +session,2534,0,Internet Explorer 29,95,2018-06-12 +session,2534,1,Firefox 39,0,2016-12-21 +user,2535,Dylan,Ashlyn,51 +session,2535,0,Chrome 4,54,2018-04-05 +session,2535,1,Safari 9,68,2018-02-11 +user,2536,Florencia,Jamison,53 +session,2536,0,Internet Explorer 12,47,2018-02-27 +session,2536,1,Internet Explorer 27,24,2017-01-15 +session,2536,2,Chrome 6,53,2018-08-02 +session,2536,3,Firefox 46,79,2018-12-30 +session,2536,4,Chrome 43,27,2018-07-12 +session,2536,5,Chrome 10,99,2016-09-15 +session,2536,6,Safari 29,108,2018-06-14 +session,2536,7,Chrome 39,5,2017-02-10 +session,2536,8,Chrome 45,94,2018-09-02 +user,2537,Byron,Dorotha,79 +session,2537,0,Chrome 41,29,2019-02-11 +user,2538,Shonna,Skye,31 +session,2538,0,Firefox 44,6,2018-10-21 +session,2538,1,Firefox 23,111,2017-10-08 +session,2538,2,Firefox 28,31,2016-06-15 +user,2539,Cathie,Raymond,61 +session,2539,0,Safari 26,54,2018-03-23 +session,2539,1,Firefox 14,117,2017-02-17 +session,2539,2,Chrome 24,58,2018-07-26 +session,2539,3,Internet Explorer 9,95,2019-01-31 +session,2539,4,Chrome 49,55,2017-07-02 +session,2539,5,Chrome 20,2,2017-08-02 +session,2539,6,Safari 9,55,2017-02-14 +session,2539,7,Safari 47,45,2016-12-28 +session,2539,8,Safari 27,113,2018-02-01 +session,2539,9,Internet Explorer 36,10,2016-06-01 +user,2540,Eugenio,Lester,26 +session,2540,0,Chrome 43,115,2018-11-09 +session,2540,1,Firefox 13,5,2018-01-31 +session,2540,2,Internet Explorer 32,3,2016-07-05 +session,2540,3,Chrome 26,98,2018-08-08 +session,2540,4,Safari 26,65,2018-10-19 +session,2540,5,Safari 43,97,2017-02-20 +session,2540,6,Chrome 34,34,2017-10-15 +user,2541,Spencer,Earlene,96 +session,2541,0,Chrome 47,38,2017-08-17 +session,2541,1,Internet Explorer 17,106,2018-06-15 +session,2541,2,Firefox 33,80,2018-11-15 +session,2541,3,Safari 20,41,2017-11-22 +session,2541,4,Chrome 48,18,2017-12-14 +user,2542,Terri,Elizbeth,30 +session,2542,0,Internet Explorer 47,26,2017-03-24 +session,2542,1,Internet Explorer 39,53,2017-05-08 +session,2542,2,Safari 40,73,2017-11-13 +session,2542,3,Firefox 11,43,2016-06-18 +session,2542,4,Chrome 33,44,2016-06-30 +user,2543,Ligia,Antonia,61 +session,2543,0,Chrome 27,46,2018-06-24 +session,2543,1,Internet Explorer 21,12,2017-01-24 +session,2543,2,Chrome 33,65,2016-11-12 +session,2543,3,Firefox 18,115,2017-07-04 +session,2543,4,Firefox 24,48,2017-02-10 +user,2544,Emanuel,Katheleen,14 +session,2544,0,Internet Explorer 8,118,2017-12-02 +session,2544,1,Safari 45,42,2016-10-17 +session,2544,2,Internet Explorer 48,97,2017-08-14 +session,2544,3,Internet Explorer 46,70,2017-02-26 +user,2545,Phil,Rolf,66 +session,2545,0,Firefox 11,90,2017-04-12 +user,2546,Vita,Mei,44 +session,2546,0,Chrome 33,22,2016-05-20 +session,2546,1,Safari 30,45,2017-09-20 +session,2546,2,Safari 47,16,2018-10-19 +session,2546,3,Safari 50,44,2017-10-07 +session,2546,4,Safari 17,17,2018-07-08 +session,2546,5,Safari 37,78,2017-11-13 +session,2546,6,Chrome 49,87,2018-10-24 +session,2546,7,Safari 26,71,2016-06-04 +user,2547,Deirdre,Micaela,76 +session,2547,0,Safari 28,100,2016-05-27 +session,2547,1,Safari 31,67,2018-09-14 +session,2547,2,Firefox 45,67,2016-10-20 +session,2547,3,Internet Explorer 16,11,2017-08-24 +session,2547,4,Firefox 7,25,2016-06-14 +session,2547,5,Firefox 42,89,2018-07-04 +session,2547,6,Safari 6,95,2017-12-29 +session,2547,7,Internet Explorer 17,47,2018-12-18 +session,2547,8,Safari 28,22,2019-01-06 +user,2548,Gwyn,Nolan,74 +session,2548,0,Chrome 41,59,2016-11-24 +session,2548,1,Chrome 25,79,2017-08-24 +session,2548,2,Chrome 7,0,2018-05-21 +session,2548,3,Safari 18,18,2016-11-25 +session,2548,4,Internet Explorer 32,48,2016-09-22 +session,2548,5,Chrome 9,3,2017-11-25 +user,2549,Darnell,Nicky,76 +session,2549,0,Safari 47,3,2017-01-08 +session,2549,1,Safari 27,98,2016-07-17 +session,2549,2,Chrome 18,13,2019-01-01 +session,2549,3,Firefox 33,31,2018-07-04 +session,2549,4,Internet Explorer 50,35,2018-03-22 +session,2549,5,Internet Explorer 14,88,2017-10-28 +session,2549,6,Chrome 2,117,2017-12-16 +session,2549,7,Chrome 26,2,2016-11-05 +session,2549,8,Firefox 25,5,2018-09-11 +session,2549,9,Internet Explorer 2,88,2016-06-03 +user,2550,Leopoldo,Pete,23 +session,2550,0,Firefox 45,115,2016-08-15 +user,2551,Corey,Elsa,64 +session,2551,0,Internet Explorer 12,89,2019-01-10 +session,2551,1,Firefox 1,100,2018-09-20 +session,2551,2,Safari 7,21,2017-04-25 +session,2551,3,Chrome 4,68,2017-07-24 +session,2551,4,Chrome 42,63,2016-11-11 +session,2551,5,Internet Explorer 19,116,2016-08-24 +session,2551,6,Chrome 37,75,2017-02-03 +session,2551,7,Safari 49,60,2018-04-29 +session,2551,8,Chrome 12,92,2018-02-14 +session,2551,9,Internet Explorer 50,53,2018-11-05 +user,2552,Cleveland,Carlita,98 +session,2552,0,Internet Explorer 36,12,2017-03-19 +session,2552,1,Internet Explorer 9,22,2018-05-06 +session,2552,2,Firefox 3,55,2018-09-14 +session,2552,3,Safari 19,39,2017-05-04 +session,2552,4,Firefox 11,55,2019-02-04 +session,2552,5,Firefox 37,117,2018-12-05 +session,2552,6,Chrome 17,18,2018-05-05 +user,2553,Jose,Emile,94 +session,2553,0,Safari 41,63,2018-05-28 +session,2553,1,Internet Explorer 36,30,2019-01-08 +session,2553,2,Chrome 1,14,2018-07-16 +session,2553,3,Safari 29,95,2018-01-31 +session,2553,4,Chrome 9,28,2018-07-08 +session,2553,5,Chrome 48,69,2018-08-04 +session,2553,6,Chrome 41,38,2018-12-27 +user,2554,Azalee,Annamarie,3 +session,2554,0,Firefox 48,32,2016-09-14 +session,2554,1,Chrome 2,15,2018-08-21 +session,2554,2,Chrome 49,96,2018-04-07 +session,2554,3,Chrome 28,8,2017-02-03 +session,2554,4,Safari 35,115,2018-05-03 +user,2555,Eliseo,Pauline,33 +session,2555,0,Firefox 48,97,2016-05-29 +session,2555,1,Chrome 41,114,2016-12-18 +session,2555,2,Safari 10,0,2019-01-07 +session,2555,3,Safari 32,33,2018-08-03 +session,2555,4,Internet Explorer 5,3,2019-01-26 +session,2555,5,Internet Explorer 17,79,2016-08-23 +session,2555,6,Safari 48,77,2017-02-02 +session,2555,7,Chrome 7,5,2019-01-09 +user,2556,Quinn,Shavon,59 +session,2556,0,Internet Explorer 46,115,2017-07-12 +session,2556,1,Internet Explorer 9,40,2018-06-03 +session,2556,2,Firefox 34,1,2018-07-06 +user,2557,Nelda,Danae,64 +session,2557,0,Safari 44,13,2018-03-19 +session,2557,1,Chrome 29,85,2017-05-15 +session,2557,2,Internet Explorer 14,44,2016-05-19 +session,2557,3,Chrome 17,71,2016-07-25 +session,2557,4,Safari 28,74,2019-01-29 +session,2557,5,Chrome 26,56,2016-12-13 +user,2558,Junior,Mikaela,71 +session,2558,0,Firefox 1,49,2019-01-01 +session,2558,1,Firefox 24,105,2019-01-05 +session,2558,2,Firefox 36,94,2017-09-01 +session,2558,3,Safari 49,6,2018-12-08 +session,2558,4,Chrome 3,116,2018-05-02 +session,2558,5,Firefox 3,100,2018-05-30 +user,2559,Breanna,Allison,44 +session,2559,0,Safari 15,105,2017-05-29 +session,2559,1,Internet Explorer 31,36,2017-02-09 +session,2559,2,Internet Explorer 27,59,2018-07-28 +session,2559,3,Firefox 30,111,2018-08-12 +session,2559,4,Firefox 26,12,2018-11-24 +session,2559,5,Safari 19,80,2016-10-06 +session,2559,6,Safari 48,93,2016-06-01 +session,2559,7,Internet Explorer 25,80,2019-01-19 +user,2560,Tommie,Howard,31 +session,2560,0,Firefox 49,109,2018-01-11 +session,2560,1,Internet Explorer 22,45,2016-12-05 +session,2560,2,Internet Explorer 48,51,2017-11-10 +session,2560,3,Firefox 33,61,2017-08-09 +session,2560,4,Safari 21,61,2019-01-27 +session,2560,5,Chrome 39,14,2017-10-23 +session,2560,6,Safari 3,6,2018-04-06 +session,2560,7,Internet Explorer 45,54,2018-12-03 +session,2560,8,Internet Explorer 36,54,2017-01-16 +user,2561,Carlene,Everette,13 +session,2561,0,Internet Explorer 36,69,2016-10-27 +session,2561,1,Safari 34,63,2016-05-27 +session,2561,2,Safari 42,84,2016-08-24 +session,2561,3,Firefox 12,92,2017-06-20 +session,2561,4,Internet Explorer 9,77,2016-09-13 +session,2561,5,Safari 14,107,2017-03-01 +session,2561,6,Internet Explorer 25,57,2018-01-11 +session,2561,7,Firefox 41,119,2017-05-08 +user,2562,Jennell,Onita,44 +session,2562,0,Firefox 48,24,2016-12-28 +session,2562,1,Firefox 12,119,2019-02-04 +session,2562,2,Internet Explorer 10,68,2016-08-20 +session,2562,3,Chrome 18,116,2018-04-11 +session,2562,4,Chrome 11,83,2017-08-13 +session,2562,5,Firefox 33,15,2017-10-26 +session,2562,6,Internet Explorer 14,38,2017-05-30 +user,2563,Agustin,Ellamae,15 +session,2563,0,Firefox 47,118,2018-10-17 +session,2563,1,Firefox 48,34,2018-04-30 +session,2563,2,Chrome 31,74,2016-11-03 +session,2563,3,Safari 37,44,2016-11-19 +session,2563,4,Firefox 30,4,2018-03-27 +session,2563,5,Safari 26,45,2016-07-30 +user,2564,Latonia,Chantay,40 +session,2564,0,Chrome 45,91,2018-01-30 +session,2564,1,Firefox 3,21,2018-12-14 +session,2564,2,Firefox 19,53,2018-05-02 +session,2564,3,Internet Explorer 27,83,2018-05-22 +user,2565,Iluminada,Pamula,81 +session,2565,0,Chrome 3,52,2018-07-18 +session,2565,1,Internet Explorer 36,101,2017-09-28 +session,2565,2,Firefox 28,33,2018-04-25 +session,2565,3,Internet Explorer 15,28,2016-12-06 +session,2565,4,Firefox 28,119,2016-09-04 +session,2565,5,Safari 31,63,2016-09-03 +user,2566,Ligia,Vilma,5 +session,2566,0,Chrome 28,1,2018-11-23 +session,2566,1,Safari 41,66,2018-03-12 +session,2566,2,Safari 1,114,2016-06-27 +session,2566,3,Firefox 39,3,2018-02-08 +session,2566,4,Chrome 43,12,2018-01-09 +session,2566,5,Firefox 25,12,2018-08-06 +session,2566,6,Internet Explorer 40,94,2018-01-08 +session,2566,7,Internet Explorer 30,110,2016-11-09 +user,2567,Margarita,Caren,19 +session,2567,0,Chrome 16,4,2017-09-14 +user,2568,Ardath,Kendrick,13 +session,2568,0,Safari 23,26,2018-12-07 +session,2568,1,Safari 27,67,2017-09-08 +session,2568,2,Internet Explorer 22,69,2017-03-13 +session,2568,3,Chrome 50,40,2019-02-04 +session,2568,4,Safari 43,25,2016-12-23 +session,2568,5,Safari 18,71,2018-04-08 +session,2568,6,Firefox 22,26,2017-02-19 +user,2569,Irving,Agnes,11 +session,2569,0,Safari 36,46,2016-06-22 +session,2569,1,Firefox 46,94,2016-05-29 +session,2569,2,Chrome 39,99,2018-10-30 +session,2569,3,Firefox 49,94,2017-05-19 +session,2569,4,Firefox 26,2,2016-10-02 +session,2569,5,Safari 43,44,2018-05-05 +session,2569,6,Internet Explorer 22,97,2018-06-30 +user,2570,Danika,Domingo,1 +session,2570,0,Safari 26,61,2017-09-24 +session,2570,1,Chrome 8,77,2017-11-02 +session,2570,2,Chrome 49,32,2016-10-27 +session,2570,3,Safari 4,103,2016-06-21 +session,2570,4,Firefox 11,91,2017-10-28 +user,2571,Stephine,Willy,18 +session,2571,0,Chrome 37,27,2016-11-27 +session,2571,1,Internet Explorer 46,75,2017-11-29 +session,2571,2,Firefox 49,78,2017-09-02 +user,2572,Deborah,Lynna,0 +session,2572,0,Chrome 38,77,2018-11-15 +session,2572,1,Safari 47,112,2018-03-04 +session,2572,2,Internet Explorer 5,111,2017-08-25 +session,2572,3,Internet Explorer 15,44,2016-07-21 +session,2572,4,Internet Explorer 31,7,2018-04-27 +session,2572,5,Internet Explorer 37,21,2017-12-07 +session,2572,6,Chrome 43,82,2018-01-20 +session,2572,7,Internet Explorer 8,19,2019-01-28 +session,2572,8,Internet Explorer 14,61,2018-11-22 +user,2573,Darrel,Jarrett,20 +session,2573,0,Firefox 34,82,2017-10-24 +session,2573,1,Internet Explorer 40,51,2019-01-28 +session,2573,2,Internet Explorer 19,19,2018-05-28 +session,2573,3,Firefox 26,44,2017-01-06 +session,2573,4,Internet Explorer 43,69,2017-07-30 +session,2573,5,Firefox 23,91,2017-12-09 +user,2574,Hank,Dorian,80 +session,2574,0,Safari 36,2,2017-09-13 +session,2574,1,Firefox 29,58,2017-12-20 +session,2574,2,Chrome 26,108,2016-05-30 +session,2574,3,Internet Explorer 31,19,2017-12-06 +session,2574,4,Chrome 44,15,2017-11-20 +session,2574,5,Firefox 6,89,2018-11-23 +session,2574,6,Safari 26,43,2018-01-31 +session,2574,7,Safari 21,117,2018-08-15 +session,2574,8,Chrome 33,81,2016-06-23 +user,2575,Devin,Ashely,55 +session,2575,0,Firefox 46,29,2018-09-21 +session,2575,1,Safari 1,51,2018-02-09 +session,2575,2,Safari 30,51,2016-12-01 +session,2575,3,Internet Explorer 21,60,2018-02-09 +user,2576,Zelda,Duane,64 +session,2576,0,Safari 44,93,2018-07-03 +session,2576,1,Chrome 4,59,2017-03-17 +session,2576,2,Safari 36,98,2017-02-15 +session,2576,3,Internet Explorer 41,3,2018-05-08 +session,2576,4,Internet Explorer 11,75,2018-11-21 +session,2576,5,Firefox 19,21,2018-11-17 +session,2576,6,Chrome 41,4,2017-09-11 +session,2576,7,Chrome 50,65,2017-04-19 +session,2576,8,Chrome 29,74,2018-11-18 +session,2576,9,Internet Explorer 40,8,2016-10-30 +user,2577,Maximo,Madie,48 +session,2577,0,Internet Explorer 37,58,2017-12-01 +session,2577,1,Firefox 9,20,2016-11-21 +session,2577,2,Firefox 20,10,2019-01-27 +session,2577,3,Safari 31,14,2017-10-17 +session,2577,4,Safari 14,91,2017-11-18 +session,2577,5,Firefox 8,92,2017-10-16 +session,2577,6,Safari 11,104,2018-04-24 +session,2577,7,Firefox 32,52,2017-09-07 +session,2577,8,Chrome 39,90,2017-02-23 +user,2578,Man,Dean,39 +session,2578,0,Safari 40,8,2016-10-15 +session,2578,1,Firefox 31,60,2017-06-07 +session,2578,2,Chrome 34,39,2017-01-13 +session,2578,3,Internet Explorer 32,57,2017-10-18 +user,2579,Jesus,Jasmine,98 +session,2579,0,Chrome 23,29,2017-06-15 +user,2580,Frances,Jonelle,91 +session,2580,0,Chrome 43,96,2017-10-19 +session,2580,1,Safari 23,61,2018-07-09 +session,2580,2,Internet Explorer 3,13,2018-07-16 +session,2580,3,Safari 3,78,2016-07-30 +session,2580,4,Chrome 2,102,2018-12-24 +session,2580,5,Chrome 13,112,2018-08-01 +session,2580,6,Internet Explorer 12,48,2016-08-09 +session,2580,7,Firefox 13,8,2017-06-05 +user,2581,Harold,Alton,20 +session,2581,0,Safari 21,39,2017-05-14 +session,2581,1,Safari 3,72,2018-01-07 +session,2581,2,Safari 37,103,2017-01-07 +user,2582,Monroe,Dawne,2 +session,2582,0,Internet Explorer 26,82,2017-05-29 +session,2582,1,Safari 9,3,2016-05-30 +session,2582,2,Chrome 46,61,2016-10-29 +session,2582,3,Safari 6,43,2016-07-25 +session,2582,4,Internet Explorer 2,33,2017-11-09 +session,2582,5,Internet Explorer 42,116,2018-12-28 +session,2582,6,Chrome 49,19,2017-03-29 +user,2583,Jan,Roni,87 +session,2583,0,Chrome 30,28,2016-09-30 +session,2583,1,Safari 31,37,2016-09-13 +session,2583,2,Firefox 49,106,2017-12-27 +session,2583,3,Firefox 47,58,2016-07-07 +user,2584,Dee,Ofelia,23 +session,2584,0,Chrome 1,119,2017-01-20 +session,2584,1,Chrome 22,85,2018-09-03 +session,2584,2,Chrome 26,62,2016-09-10 +session,2584,3,Chrome 21,72,2017-11-23 +session,2584,4,Firefox 19,61,2016-07-21 +user,2585,Dionna,Emmie,73 +session,2585,0,Internet Explorer 6,31,2018-12-01 +session,2585,1,Internet Explorer 20,116,2018-02-13 +session,2585,2,Safari 40,104,2018-02-25 +user,2586,Teresia,Tequila,25 +session,2586,0,Internet Explorer 22,68,2016-08-24 +session,2586,1,Safari 15,98,2018-08-31 +session,2586,2,Chrome 11,105,2016-06-02 +session,2586,3,Firefox 4,119,2018-04-25 +session,2586,4,Internet Explorer 23,102,2016-09-30 +user,2587,Ike,Reva,75 +session,2587,0,Internet Explorer 29,25,2019-02-01 +session,2587,1,Chrome 37,20,2017-09-16 +session,2587,2,Firefox 25,81,2017-09-11 +session,2587,3,Internet Explorer 18,44,2016-10-10 +session,2587,4,Chrome 15,1,2018-02-25 +session,2587,5,Internet Explorer 37,11,2017-11-01 +user,2588,Trula,Dewitt,25 +session,2588,0,Chrome 34,96,2016-11-17 +session,2588,1,Firefox 11,39,2017-11-19 +session,2588,2,Chrome 12,91,2016-05-29 +session,2588,3,Firefox 45,115,2017-10-11 +session,2588,4,Chrome 27,91,2017-11-28 +session,2588,5,Internet Explorer 11,114,2019-01-25 +session,2588,6,Safari 45,75,2018-02-27 +session,2588,7,Chrome 8,6,2017-02-11 +user,2589,Franklin,Ernesto,61 +session,2589,0,Safari 49,31,2018-06-18 +session,2589,1,Internet Explorer 45,38,2016-10-31 +session,2589,2,Safari 30,47,2018-03-15 +session,2589,3,Chrome 26,82,2017-08-13 +session,2589,4,Safari 5,19,2018-01-25 +session,2589,5,Firefox 27,108,2017-05-13 +user,2590,Mariah,Cherilyn,74 +session,2590,0,Chrome 26,20,2017-07-19 +session,2590,1,Internet Explorer 27,52,2018-08-17 +user,2591,Yahaira,Jerrica,92 +session,2591,0,Internet Explorer 23,23,2016-12-03 +session,2591,1,Internet Explorer 40,29,2018-09-08 +session,2591,2,Chrome 47,42,2017-10-12 +session,2591,3,Chrome 19,10,2016-09-09 +session,2591,4,Firefox 11,1,2017-04-03 +session,2591,5,Safari 5,1,2019-01-01 +user,2592,Joseph,Reda,40 +session,2592,0,Internet Explorer 25,24,2018-12-12 +session,2592,1,Internet Explorer 26,65,2016-08-04 +session,2592,2,Firefox 39,36,2019-02-02 +session,2592,3,Internet Explorer 27,19,2018-05-26 +session,2592,4,Chrome 32,112,2017-11-21 +session,2592,5,Internet Explorer 44,105,2017-07-28 +session,2592,6,Chrome 44,73,2018-09-29 +session,2592,7,Chrome 20,29,2017-08-13 +session,2592,8,Chrome 35,2,2018-11-13 +session,2592,9,Safari 38,36,2017-11-12 +user,2593,Clair,Tyree,89 +session,2593,0,Internet Explorer 9,63,2018-04-08 +session,2593,1,Safari 22,23,2017-02-14 +session,2593,2,Chrome 7,4,2016-09-14 +session,2593,3,Chrome 39,35,2017-08-04 +session,2593,4,Firefox 21,17,2019-01-24 +session,2593,5,Firefox 23,6,2016-09-17 +user,2594,Alma,Israel,97 +session,2594,0,Chrome 37,41,2018-08-12 +session,2594,1,Safari 31,69,2016-05-26 +session,2594,2,Chrome 18,55,2018-02-14 +session,2594,3,Internet Explorer 4,99,2016-08-25 +session,2594,4,Internet Explorer 9,74,2018-05-07 +session,2594,5,Chrome 39,6,2017-07-02 +session,2594,6,Chrome 44,62,2017-01-11 +session,2594,7,Internet Explorer 40,44,2016-09-01 +session,2594,8,Chrome 6,2,2016-12-08 +user,2595,Talia,Bertram,79 +session,2595,0,Chrome 2,111,2017-11-19 +session,2595,1,Internet Explorer 44,72,2018-08-23 +session,2595,2,Firefox 49,13,2017-02-14 +session,2595,3,Safari 9,59,2018-04-07 +session,2595,4,Firefox 17,88,2017-09-23 +session,2595,5,Firefox 48,100,2017-11-09 +user,2596,Arturo,Shay,68 +session,2596,0,Safari 21,84,2018-09-25 +session,2596,1,Safari 44,26,2016-08-25 +session,2596,2,Internet Explorer 8,109,2017-07-26 +session,2596,3,Safari 26,96,2017-08-17 +session,2596,4,Internet Explorer 36,23,2016-09-29 +user,2597,Alphonso,Margrett,15 +session,2597,0,Firefox 49,55,2019-02-02 +user,2598,Allan,Arlen,85 +session,2598,0,Safari 19,92,2016-11-30 +session,2598,1,Internet Explorer 50,106,2017-06-05 +session,2598,2,Chrome 25,79,2016-11-01 +session,2598,3,Chrome 23,58,2016-11-27 +session,2598,4,Chrome 14,52,2018-09-11 +session,2598,5,Firefox 31,71,2018-08-20 +user,2599,Vince,Shan,47 +session,2599,0,Firefox 16,100,2018-08-31 +session,2599,1,Safari 2,23,2018-02-19 +session,2599,2,Safari 18,19,2016-10-03 +session,2599,3,Firefox 14,84,2017-01-20 +session,2599,4,Firefox 6,34,2017-03-01 +session,2599,5,Safari 43,24,2019-01-01 +session,2599,6,Safari 19,68,2016-11-28 +session,2599,7,Chrome 4,56,2018-09-08 +user,2600,Rosanna,Elease,97 +session,2600,0,Chrome 14,72,2017-03-26 +session,2600,1,Safari 32,47,2018-02-11 +session,2600,2,Firefox 9,40,2018-05-29 +session,2600,3,Safari 45,114,2017-04-19 +session,2600,4,Firefox 3,57,2018-01-16 +session,2600,5,Firefox 24,92,2019-01-06 +session,2600,6,Internet Explorer 42,114,2017-05-04 +session,2600,7,Chrome 49,96,2017-01-24 +user,2601,Brunilda,Lakia,67 +session,2601,0,Chrome 1,95,2017-03-01 +session,2601,1,Chrome 17,23,2017-03-20 +session,2601,2,Internet Explorer 31,103,2018-07-20 +session,2601,3,Safari 25,92,2017-01-08 +session,2601,4,Internet Explorer 38,75,2019-01-29 +session,2601,5,Chrome 1,104,2018-02-17 +user,2602,Ricardo,Margarett,69 +session,2602,0,Internet Explorer 35,14,2016-12-02 +session,2602,1,Firefox 6,41,2018-11-05 +session,2602,2,Safari 3,2,2018-11-28 +session,2602,3,Chrome 5,22,2019-01-25 +user,2603,Lashon,Shirely,49 +session,2603,0,Chrome 22,13,2017-06-14 +session,2603,1,Safari 6,30,2016-05-25 +session,2603,2,Safari 16,84,2016-06-13 +user,2604,Darrin,Lenora,39 +session,2604,0,Firefox 23,36,2016-08-09 +session,2604,1,Chrome 46,74,2018-06-04 +session,2604,2,Chrome 22,84,2017-08-07 +session,2604,3,Internet Explorer 35,84,2017-12-28 +session,2604,4,Internet Explorer 42,56,2018-10-28 +session,2604,5,Firefox 45,90,2016-11-09 +session,2604,6,Chrome 49,31,2017-07-22 +session,2604,7,Internet Explorer 1,95,2018-01-15 +session,2604,8,Chrome 37,55,2018-12-27 +user,2605,Jacqueline,Ezra,34 +session,2605,0,Safari 21,25,2016-06-11 +session,2605,1,Safari 20,63,2018-12-16 +session,2605,2,Safari 8,23,2019-01-07 +user,2606,Jay,Jenelle,49 +session,2606,0,Firefox 23,31,2018-07-22 +session,2606,1,Safari 35,86,2018-04-07 +session,2606,2,Chrome 12,81,2018-10-18 +user,2607,Cleo,Sharyl,56 +session,2607,0,Safari 5,55,2018-12-30 +session,2607,1,Firefox 39,112,2016-11-09 +user,2608,Lucinda,Darnell,26 +session,2608,0,Internet Explorer 7,67,2016-10-11 +session,2608,1,Chrome 42,109,2016-07-27 +session,2608,2,Safari 23,39,2017-04-29 +session,2608,3,Safari 17,7,2016-06-04 +session,2608,4,Safari 34,108,2018-06-03 +session,2608,5,Chrome 40,0,2017-02-22 +session,2608,6,Safari 38,110,2018-04-03 +user,2609,Wilson,Bernie,12 +session,2609,0,Internet Explorer 26,17,2017-10-06 +session,2609,1,Chrome 7,103,2018-08-04 +session,2609,2,Firefox 49,91,2017-11-16 +session,2609,3,Internet Explorer 43,86,2017-06-16 +session,2609,4,Firefox 8,84,2017-07-20 +session,2609,5,Chrome 28,50,2016-11-23 +user,2610,Kermit,Nelida,20 +session,2610,0,Firefox 9,56,2019-02-09 +session,2610,1,Chrome 25,6,2016-12-05 +user,2611,Landon,Morris,58 +session,2611,0,Chrome 3,30,2016-09-16 +session,2611,1,Safari 16,17,2018-05-30 +session,2611,2,Internet Explorer 46,45,2018-05-15 +session,2611,3,Internet Explorer 17,74,2016-10-12 +session,2611,4,Chrome 7,78,2017-08-27 +session,2611,5,Safari 40,57,2017-12-24 +session,2611,6,Firefox 1,26,2017-01-14 +user,2612,Lance,Reynalda,92 +session,2612,0,Chrome 5,72,2016-10-12 +session,2612,1,Internet Explorer 15,94,2016-10-26 +session,2612,2,Firefox 31,52,2017-01-17 +session,2612,3,Chrome 20,44,2018-03-18 +session,2612,4,Firefox 6,66,2016-10-20 +session,2612,5,Internet Explorer 43,77,2017-05-22 +session,2612,6,Firefox 50,79,2016-07-28 +session,2612,7,Safari 15,16,2018-04-17 +session,2612,8,Safari 25,48,2016-07-11 +session,2612,9,Safari 22,4,2017-03-16 +user,2613,Vivian,Lizzie,95 +session,2613,0,Chrome 39,18,2017-11-22 +session,2613,1,Chrome 41,17,2017-07-17 +session,2613,2,Safari 12,46,2017-05-09 +session,2613,3,Safari 33,109,2016-10-27 +session,2613,4,Internet Explorer 14,39,2019-02-04 +session,2613,5,Firefox 43,58,2018-03-12 +session,2613,6,Firefox 43,35,2017-10-05 +session,2613,7,Safari 18,21,2018-03-08 +session,2613,8,Firefox 43,111,2017-02-26 +user,2614,Coleman,Gilberto,59 +session,2614,0,Internet Explorer 3,46,2016-07-28 +session,2614,1,Internet Explorer 27,59,2016-08-14 +user,2615,Heike,Verla,38 +session,2615,0,Safari 48,40,2016-06-05 +session,2615,1,Firefox 31,89,2019-01-20 +session,2615,2,Safari 50,80,2017-08-18 +user,2616,Gino,Josiah,20 +session,2616,0,Chrome 4,70,2018-09-07 +session,2616,1,Firefox 2,44,2016-09-03 +session,2616,2,Safari 45,101,2017-12-13 +session,2616,3,Safari 43,15,2018-11-13 +session,2616,4,Firefox 29,3,2017-06-21 +session,2616,5,Firefox 39,33,2017-03-11 +user,2617,Rickie,Ola,66 +session,2617,0,Firefox 29,79,2018-07-28 +session,2617,1,Firefox 7,2,2017-12-19 +session,2617,2,Internet Explorer 22,25,2018-09-13 +user,2618,Olive,Toney,74 +session,2618,0,Firefox 4,22,2017-02-13 +session,2618,1,Chrome 24,78,2017-03-18 +session,2618,2,Internet Explorer 48,99,2017-06-14 +session,2618,3,Chrome 30,2,2017-11-29 +session,2618,4,Firefox 49,24,2016-08-31 +session,2618,5,Internet Explorer 12,80,2016-12-13 +session,2618,6,Safari 37,30,2016-08-06 +user,2619,Andres,Janis,72 +session,2619,0,Safari 42,88,2017-06-15 +session,2619,1,Safari 37,59,2016-11-27 +session,2619,2,Internet Explorer 35,5,2018-06-11 +session,2619,3,Chrome 50,98,2018-09-05 +session,2619,4,Chrome 29,92,2016-08-06 +session,2619,5,Firefox 37,20,2018-09-03 +session,2619,6,Chrome 45,19,2018-04-23 +session,2619,7,Safari 26,47,2018-09-22 +session,2619,8,Firefox 15,20,2017-11-03 +user,2620,Vickey,Dotty,43 +session,2620,0,Safari 22,35,2018-05-30 +session,2620,1,Internet Explorer 14,1,2016-12-16 +session,2620,2,Chrome 26,64,2017-12-25 +session,2620,3,Firefox 36,90,2018-01-17 +session,2620,4,Safari 36,35,2017-05-29 +user,2621,Nida,Rae,31 +session,2621,0,Firefox 47,113,2018-10-23 +user,2622,Lupita,Hester,90 +session,2622,0,Internet Explorer 29,14,2017-05-14 +session,2622,1,Firefox 34,84,2016-10-01 +session,2622,2,Chrome 45,29,2018-08-17 +session,2622,3,Internet Explorer 15,35,2017-07-26 +session,2622,4,Chrome 26,74,2018-03-29 +session,2622,5,Safari 43,86,2018-12-10 +session,2622,6,Safari 5,58,2018-04-14 +session,2622,7,Safari 1,89,2018-06-26 +session,2622,8,Chrome 15,114,2018-01-12 +session,2622,9,Chrome 37,43,2017-12-24 +user,2623,Britney,Weston,71 +session,2623,0,Firefox 26,23,2018-06-28 +session,2623,1,Safari 26,14,2018-07-28 +session,2623,2,Internet Explorer 46,32,2018-03-19 +session,2623,3,Firefox 27,0,2016-09-01 +session,2623,4,Firefox 48,102,2016-12-29 +session,2623,5,Chrome 50,8,2017-02-06 +session,2623,6,Firefox 3,72,2019-01-07 +session,2623,7,Firefox 16,93,2017-11-21 +session,2623,8,Firefox 38,73,2018-12-08 +session,2623,9,Chrome 13,113,2017-08-21 +user,2624,Octavio,Joye,88 +session,2624,0,Chrome 46,25,2018-07-31 +session,2624,1,Chrome 9,61,2017-08-01 +session,2624,2,Internet Explorer 11,67,2016-07-22 +session,2624,3,Chrome 9,66,2017-02-27 +session,2624,4,Firefox 48,107,2017-09-29 +session,2624,5,Chrome 4,106,2017-06-07 +session,2624,6,Chrome 34,82,2018-11-22 +session,2624,7,Chrome 3,66,2019-01-16 +user,2625,Sidney,Carolann,71 +session,2625,0,Firefox 10,111,2017-03-09 +session,2625,1,Firefox 26,36,2016-09-10 +session,2625,2,Internet Explorer 37,36,2018-11-24 +session,2625,3,Safari 20,2,2017-09-12 +session,2625,4,Internet Explorer 10,114,2017-04-12 +session,2625,5,Safari 34,15,2018-04-23 +session,2625,6,Safari 11,90,2017-02-27 +session,2625,7,Internet Explorer 27,24,2016-12-21 +session,2625,8,Firefox 28,13,2016-08-01 +user,2626,Jarrod,Orval,93 +session,2626,0,Firefox 24,52,2017-04-06 +session,2626,1,Chrome 23,23,2017-06-25 +session,2626,2,Internet Explorer 31,12,2018-10-25 +session,2626,3,Firefox 34,54,2016-07-06 +session,2626,4,Safari 45,54,2017-07-21 +user,2627,Marco,Rudy,7 +session,2627,0,Chrome 1,37,2019-01-31 +session,2627,1,Chrome 29,42,2017-04-01 +session,2627,2,Safari 17,110,2016-11-09 +session,2627,3,Chrome 45,116,2018-11-10 +session,2627,4,Internet Explorer 39,3,2017-01-29 +session,2627,5,Safari 46,91,2018-03-19 +session,2627,6,Safari 8,38,2017-03-03 +session,2627,7,Safari 46,69,2016-12-27 +session,2627,8,Chrome 17,24,2017-09-01 +user,2628,Nikia,Tijuana,12 +session,2628,0,Firefox 8,31,2017-08-26 +session,2628,1,Safari 12,17,2017-02-16 +session,2628,2,Safari 50,22,2016-11-01 +session,2628,3,Chrome 23,114,2018-03-28 +session,2628,4,Internet Explorer 49,113,2018-11-19 +session,2628,5,Firefox 37,63,2017-03-30 +session,2628,6,Firefox 18,14,2016-06-16 +session,2628,7,Chrome 41,33,2016-09-13 +user,2629,Warner,Ghislaine,29 +session,2629,0,Chrome 50,76,2018-09-18 +session,2629,1,Firefox 7,28,2016-06-03 +session,2629,2,Firefox 41,44,2016-10-11 +session,2629,3,Safari 26,25,2017-02-12 +user,2630,Winifred,Dina,87 +session,2630,0,Safari 35,114,2016-07-16 +user,2631,Orlando,Yanira,94 +session,2631,0,Chrome 43,78,2018-06-29 +session,2631,1,Chrome 12,102,2017-08-05 +session,2631,2,Chrome 17,32,2018-05-24 +session,2631,3,Firefox 27,36,2017-12-19 +session,2631,4,Chrome 28,23,2018-02-22 +user,2632,Lavonna,Hallie,6 +session,2632,0,Safari 37,99,2018-12-21 +user,2633,Mohammed,Carlota,9 +session,2633,0,Safari 5,26,2016-06-07 +session,2633,1,Internet Explorer 44,102,2017-01-23 +session,2633,2,Internet Explorer 21,25,2018-01-06 +user,2634,Juliana,Lenita,4 +session,2634,0,Internet Explorer 35,20,2018-05-26 +session,2634,1,Internet Explorer 31,84,2017-12-18 +session,2634,2,Chrome 12,90,2018-01-09 +session,2634,3,Internet Explorer 46,110,2016-08-28 +session,2634,4,Firefox 27,47,2017-02-21 +session,2634,5,Chrome 8,106,2017-09-10 +session,2634,6,Chrome 42,30,2016-08-05 +session,2634,7,Safari 31,39,2017-01-13 +user,2635,David,Halley,1 +session,2635,0,Firefox 38,113,2018-08-19 +session,2635,1,Chrome 17,24,2017-06-08 +session,2635,2,Firefox 29,92,2017-03-09 +session,2635,3,Firefox 27,28,2017-02-22 +session,2635,4,Firefox 30,77,2018-11-29 +session,2635,5,Chrome 10,6,2018-04-09 +session,2635,6,Safari 35,64,2018-02-17 +session,2635,7,Internet Explorer 2,73,2016-08-17 +session,2635,8,Chrome 15,23,2016-09-23 +user,2636,Quiana,Junior,66 +session,2636,0,Chrome 4,2,2016-10-10 +user,2637,Antony,Trenton,20 +session,2637,0,Chrome 6,69,2018-09-29 +session,2637,1,Firefox 10,7,2016-10-15 +session,2637,2,Safari 35,32,2018-11-27 +session,2637,3,Safari 26,23,2017-04-11 +session,2637,4,Firefox 38,45,2018-12-02 +session,2637,5,Chrome 38,89,2018-04-21 +session,2637,6,Internet Explorer 44,55,2018-11-28 +user,2638,Milton,Bettie,80 +session,2638,0,Firefox 14,42,2017-01-18 +session,2638,1,Internet Explorer 21,10,2018-01-09 +session,2638,2,Chrome 46,72,2018-06-26 +session,2638,3,Firefox 45,70,2017-08-10 +session,2638,4,Safari 19,89,2018-04-27 +session,2638,5,Internet Explorer 11,21,2018-09-06 +user,2639,Alvina,Porter,41 +session,2639,0,Firefox 40,7,2016-10-04 +session,2639,1,Safari 29,61,2018-10-04 +session,2639,2,Internet Explorer 3,94,2017-06-04 +session,2639,3,Firefox 50,46,2017-04-03 +session,2639,4,Firefox 49,56,2016-08-31 +session,2639,5,Internet Explorer 3,102,2017-09-29 +session,2639,6,Safari 30,34,2017-03-10 +session,2639,7,Firefox 16,99,2018-06-24 +user,2640,Darline,Adelaida,9 +session,2640,0,Internet Explorer 22,111,2016-07-09 +session,2640,1,Firefox 48,104,2017-12-09 +session,2640,2,Internet Explorer 10,8,2016-12-28 +session,2640,3,Chrome 2,79,2017-09-24 +session,2640,4,Safari 28,58,2018-12-06 +user,2641,Enrique,Austin,81 +session,2641,0,Safari 17,100,2017-01-30 +session,2641,1,Firefox 39,16,2018-10-31 +session,2641,2,Firefox 37,17,2018-10-30 +session,2641,3,Chrome 10,90,2017-01-18 +session,2641,4,Firefox 23,66,2018-07-10 +session,2641,5,Firefox 5,12,2019-02-09 +session,2641,6,Chrome 41,27,2017-08-24 +session,2641,7,Safari 38,55,2016-11-03 +session,2641,8,Internet Explorer 15,42,2018-04-06 +session,2641,9,Internet Explorer 12,114,2016-05-23 +user,2642,Brandi,Melva,15 +session,2642,0,Chrome 33,93,2016-12-10 +session,2642,1,Firefox 48,70,2018-04-17 +session,2642,2,Chrome 37,48,2018-03-04 +session,2642,3,Firefox 13,76,2017-08-13 +session,2642,4,Safari 41,25,2016-06-28 +session,2642,5,Chrome 10,43,2016-07-05 +session,2642,6,Internet Explorer 49,86,2018-07-02 +session,2642,7,Firefox 50,23,2018-09-27 +session,2642,8,Firefox 44,17,2018-04-15 +user,2643,Loriann,Kiley,47 +session,2643,0,Internet Explorer 32,114,2018-09-29 +session,2643,1,Safari 50,36,2016-12-14 +session,2643,2,Safari 9,15,2018-07-07 +session,2643,3,Safari 48,90,2018-08-06 +session,2643,4,Safari 35,99,2019-02-06 +user,2644,Shane,Anna,63 +session,2644,0,Chrome 30,33,2017-11-14 +session,2644,1,Chrome 46,39,2016-12-23 +session,2644,2,Internet Explorer 40,72,2018-10-23 +session,2644,3,Firefox 43,90,2018-03-17 +session,2644,4,Firefox 33,5,2018-02-09 +session,2644,5,Internet Explorer 34,89,2016-09-15 +session,2644,6,Chrome 27,57,2018-02-23 +session,2644,7,Safari 27,109,2018-10-02 +session,2644,8,Firefox 3,94,2018-01-10 +session,2644,9,Firefox 7,12,2019-01-13 +user,2645,Fay,Carolina,42 +session,2645,0,Internet Explorer 32,75,2016-07-24 +session,2645,1,Safari 19,28,2016-09-10 +session,2645,2,Safari 41,115,2017-06-27 +session,2645,3,Firefox 4,110,2017-02-21 +user,2646,Kenton,Anderson,43 +session,2646,0,Firefox 39,50,2017-06-11 +session,2646,1,Safari 27,8,2017-03-03 +session,2646,2,Internet Explorer 12,65,2018-10-14 +session,2646,3,Chrome 49,39,2017-04-15 +user,2647,Lisbeth,Terry,31 +session,2647,0,Internet Explorer 45,17,2016-10-23 +session,2647,1,Internet Explorer 33,34,2017-03-18 +session,2647,2,Firefox 4,72,2017-09-09 +session,2647,3,Chrome 22,9,2019-01-17 +session,2647,4,Firefox 35,29,2017-03-16 +session,2647,5,Internet Explorer 5,65,2017-07-02 +user,2648,Kennith,Norah,92 +session,2648,0,Safari 5,103,2017-06-16 +session,2648,1,Chrome 6,91,2017-11-10 +session,2648,2,Safari 23,31,2017-10-05 +session,2648,3,Internet Explorer 13,56,2016-10-13 +user,2649,Estefana,Lucilla,77 +session,2649,0,Internet Explorer 41,106,2018-08-20 +session,2649,1,Internet Explorer 25,83,2018-01-10 +session,2649,2,Internet Explorer 30,46,2016-09-16 +session,2649,3,Internet Explorer 33,3,2016-08-03 +session,2649,4,Firefox 42,21,2016-09-29 +user,2650,Newton,Melodie,47 +session,2650,0,Internet Explorer 47,41,2016-10-16 +user,2651,Jody,Evia,11 +session,2651,0,Internet Explorer 43,109,2016-11-12 +session,2651,1,Safari 23,24,2018-12-11 +session,2651,2,Chrome 24,28,2017-10-18 +session,2651,3,Safari 15,63,2016-08-30 +session,2651,4,Internet Explorer 38,50,2017-05-05 +session,2651,5,Internet Explorer 50,87,2018-01-29 +session,2651,6,Firefox 34,72,2017-05-09 +session,2651,7,Internet Explorer 5,73,2018-04-02 +session,2651,8,Safari 48,67,2017-08-24 +session,2651,9,Firefox 28,60,2018-08-21 +user,2652,Hilda,Wendi,64 +session,2652,0,Chrome 7,95,2017-01-27 +user,2653,Bernard,Rosalee,64 +session,2653,0,Safari 32,3,2018-03-11 +session,2653,1,Internet Explorer 33,8,2018-05-24 +session,2653,2,Firefox 32,56,2017-02-23 +session,2653,3,Internet Explorer 26,104,2017-08-05 +session,2653,4,Firefox 41,71,2017-11-02 +session,2653,5,Internet Explorer 30,17,2018-05-15 +session,2653,6,Firefox 3,8,2017-10-22 +user,2654,Dianne,Shakia,26 +session,2654,0,Chrome 45,114,2018-12-20 +user,2655,Ocie,Keven,5 +session,2655,0,Internet Explorer 29,63,2017-12-06 +session,2655,1,Internet Explorer 44,44,2017-09-07 +session,2655,2,Internet Explorer 30,66,2018-11-24 +session,2655,3,Chrome 46,57,2016-07-27 +session,2655,4,Internet Explorer 43,68,2018-02-09 +session,2655,5,Chrome 26,36,2018-10-03 +session,2655,6,Firefox 17,101,2019-02-05 +session,2655,7,Chrome 47,17,2017-05-08 +session,2655,8,Safari 1,87,2017-01-11 +user,2656,Patience,Fredrick,47 +session,2656,0,Firefox 25,28,2017-11-12 +session,2656,1,Internet Explorer 30,74,2018-09-28 +session,2656,2,Firefox 13,31,2016-10-14 +session,2656,3,Chrome 10,117,2016-06-28 +session,2656,4,Firefox 41,111,2018-07-12 +user,2657,Mason,Rafael,98 +session,2657,0,Internet Explorer 28,71,2017-03-26 +session,2657,1,Internet Explorer 49,60,2018-04-20 +session,2657,2,Firefox 26,56,2017-09-20 +session,2657,3,Firefox 6,64,2018-05-15 +session,2657,4,Internet Explorer 48,63,2016-11-28 +session,2657,5,Firefox 36,50,2017-08-31 +session,2657,6,Firefox 13,91,2016-08-28 +user,2658,Garnett,Gerard,85 +session,2658,0,Chrome 44,44,2019-01-10 +session,2658,1,Firefox 25,78,2016-09-12 +session,2658,2,Firefox 4,24,2016-09-02 +session,2658,3,Internet Explorer 33,116,2016-06-24 +session,2658,4,Firefox 15,53,2018-11-12 +session,2658,5,Chrome 11,58,2018-11-12 +user,2659,Otto,Laurinda,74 +session,2659,0,Chrome 37,56,2018-11-25 +session,2659,1,Firefox 23,91,2017-03-30 +session,2659,2,Safari 25,42,2017-09-24 +session,2659,3,Safari 29,2,2018-03-10 +session,2659,4,Safari 13,44,2017-12-08 +user,2660,Casey,Thanh,76 +session,2660,0,Safari 27,100,2017-01-01 +session,2660,1,Internet Explorer 29,72,2017-12-07 +session,2660,2,Chrome 3,1,2016-10-28 +session,2660,3,Internet Explorer 18,100,2019-01-31 +session,2660,4,Internet Explorer 37,101,2016-10-20 +session,2660,5,Firefox 29,35,2018-03-15 +user,2661,Denny,Rhona,62 +session,2661,0,Firefox 8,53,2017-10-02 +session,2661,1,Safari 50,69,2016-07-25 +user,2662,Seema,Lorretta,94 +session,2662,0,Internet Explorer 34,24,2016-05-30 +session,2662,1,Chrome 5,1,2017-01-17 +session,2662,2,Firefox 6,104,2017-03-21 +session,2662,3,Internet Explorer 47,107,2017-11-07 +session,2662,4,Safari 4,35,2017-09-10 +session,2662,5,Firefox 47,38,2018-10-16 +session,2662,6,Safari 9,7,2018-11-21 +session,2662,7,Internet Explorer 1,26,2017-12-04 +session,2662,8,Safari 29,105,2017-01-22 +session,2662,9,Internet Explorer 2,35,2018-11-23 +user,2663,Len,Joan,46 +session,2663,0,Safari 22,67,2018-03-10 +session,2663,1,Internet Explorer 21,95,2018-08-04 +session,2663,2,Chrome 15,21,2018-11-22 +session,2663,3,Internet Explorer 26,15,2018-02-24 +session,2663,4,Chrome 41,71,2017-02-22 +session,2663,5,Internet Explorer 47,102,2018-05-25 +session,2663,6,Safari 36,100,2018-03-09 +session,2663,7,Chrome 7,52,2018-06-16 +session,2663,8,Safari 39,96,2017-10-09 +user,2664,Parker,Daniele,91 +session,2664,0,Chrome 18,116,2016-10-29 +session,2664,1,Firefox 32,17,2017-07-12 +session,2664,2,Internet Explorer 29,80,2018-03-24 +session,2664,3,Firefox 30,91,2018-01-17 +session,2664,4,Chrome 29,21,2017-01-28 +session,2664,5,Chrome 31,107,2018-07-21 +session,2664,6,Safari 31,73,2018-04-30 +session,2664,7,Internet Explorer 19,7,2018-08-10 +session,2664,8,Internet Explorer 16,14,2017-04-07 +user,2665,Rico,Jae,42 +session,2665,0,Chrome 31,97,2017-02-04 +session,2665,1,Chrome 2,49,2017-06-24 +session,2665,2,Safari 16,109,2017-12-21 +session,2665,3,Internet Explorer 36,82,2016-12-18 +session,2665,4,Safari 41,86,2018-01-24 +session,2665,5,Chrome 6,108,2018-11-06 +session,2665,6,Safari 11,75,2017-01-17 +session,2665,7,Safari 19,51,2017-05-17 +user,2666,Buford,Jessi,20 +session,2666,0,Firefox 38,16,2016-07-21 +session,2666,1,Internet Explorer 5,109,2017-01-16 +session,2666,2,Firefox 50,69,2016-06-30 +session,2666,3,Internet Explorer 23,13,2017-10-25 +session,2666,4,Firefox 31,45,2018-10-14 +session,2666,5,Chrome 3,50,2018-01-17 +session,2666,6,Chrome 30,18,2019-01-11 +user,2667,Cathern,Libbie,14 +session,2667,0,Firefox 42,88,2018-06-10 +session,2667,1,Internet Explorer 10,111,2017-08-23 +session,2667,2,Internet Explorer 19,101,2018-07-25 +session,2667,3,Safari 50,19,2019-01-29 +user,2668,Ivan,Wallace,33 +session,2668,0,Chrome 7,109,2018-12-14 +user,2669,Emanuel,Shera,69 +session,2669,0,Internet Explorer 50,99,2016-12-11 +user,2670,Winnie,Frank,15 +session,2670,0,Safari 6,57,2017-10-15 +session,2670,1,Internet Explorer 19,97,2017-09-26 +session,2670,2,Chrome 7,52,2016-09-28 +session,2670,3,Internet Explorer 35,35,2016-06-24 +session,2670,4,Safari 38,109,2018-10-15 +session,2670,5,Safari 4,45,2018-06-05 +session,2670,6,Safari 33,108,2019-01-02 +user,2671,Kasey,Matilda,62 +session,2671,0,Firefox 22,115,2016-10-17 +session,2671,1,Firefox 18,67,2016-07-18 +session,2671,2,Firefox 9,30,2019-01-05 +session,2671,3,Internet Explorer 42,46,2016-07-08 +session,2671,4,Firefox 25,49,2018-03-30 +session,2671,5,Safari 23,68,2016-12-04 +session,2671,6,Firefox 13,20,2018-04-05 +session,2671,7,Firefox 19,34,2018-07-11 +user,2672,Jesus,Anneliese,79 +session,2672,0,Firefox 21,84,2018-07-31 +session,2672,1,Internet Explorer 31,66,2017-02-01 +session,2672,2,Chrome 37,99,2017-01-02 +session,2672,3,Chrome 7,28,2018-03-15 +user,2673,Pete,Dung,9 +session,2673,0,Internet Explorer 46,44,2018-12-18 +session,2673,1,Internet Explorer 29,95,2017-10-03 +user,2674,Kyle,Delila,34 +session,2674,0,Chrome 2,26,2017-04-10 +session,2674,1,Safari 28,13,2016-09-18 +session,2674,2,Safari 34,83,2019-02-09 +session,2674,3,Internet Explorer 34,93,2018-09-05 +session,2674,4,Safari 21,7,2017-02-28 +user,2675,Jay,Leana,9 +session,2675,0,Chrome 40,3,2016-08-08 +session,2675,1,Safari 38,76,2018-04-15 +user,2676,Terrell,Keesha,43 +session,2676,0,Internet Explorer 43,14,2018-06-19 +session,2676,1,Chrome 21,103,2017-07-12 +session,2676,2,Chrome 37,108,2019-01-05 +session,2676,3,Internet Explorer 35,80,2018-02-20 +session,2676,4,Chrome 14,53,2017-12-07 +session,2676,5,Safari 29,2,2016-09-01 +session,2676,6,Safari 46,64,2016-08-06 +session,2676,7,Safari 44,52,2018-04-22 +user,2677,Krystle,Gisela,96 +session,2677,0,Safari 47,13,2018-07-31 +user,2678,Adam,Anthony,4 +session,2678,0,Chrome 47,48,2018-12-18 +session,2678,1,Safari 49,45,2018-02-07 +user,2679,Olive,Carlota,73 +session,2679,0,Firefox 16,74,2018-12-10 +session,2679,1,Chrome 25,42,2018-12-28 +session,2679,2,Internet Explorer 46,96,2018-08-29 +session,2679,3,Chrome 41,72,2018-01-31 +session,2679,4,Chrome 4,40,2018-09-06 +session,2679,5,Safari 6,85,2017-06-22 +user,2680,Dustin,Lynsey,10 +session,2680,0,Firefox 46,67,2017-05-29 +session,2680,1,Chrome 29,89,2017-06-26 +session,2680,2,Firefox 18,9,2017-08-20 +session,2680,3,Firefox 23,55,2017-04-30 +session,2680,4,Safari 15,45,2018-08-24 +session,2680,5,Internet Explorer 2,65,2018-11-19 +session,2680,6,Safari 43,5,2018-03-27 +session,2680,7,Internet Explorer 32,73,2017-04-24 +session,2680,8,Firefox 15,52,2017-08-06 +session,2680,9,Chrome 10,96,2017-07-24 +user,2681,Ferdinand,Davina,33 +session,2681,0,Chrome 24,84,2019-02-08 +user,2682,Joesph,Kacie,96 +session,2682,0,Internet Explorer 29,41,2017-05-25 +session,2682,1,Safari 36,5,2019-01-07 +session,2682,2,Safari 31,56,2016-08-04 +session,2682,3,Internet Explorer 31,12,2018-12-06 +session,2682,4,Safari 23,10,2016-08-19 +user,2683,Spencer,Rosenda,45 +session,2683,0,Chrome 44,43,2017-08-14 +user,2684,Norah,Alla,99 +session,2684,0,Chrome 12,97,2016-10-27 +session,2684,1,Internet Explorer 24,45,2018-01-06 +session,2684,2,Chrome 10,102,2018-05-23 +session,2684,3,Chrome 35,3,2016-09-08 +session,2684,4,Internet Explorer 13,39,2018-05-08 +session,2684,5,Internet Explorer 14,41,2017-12-29 +session,2684,6,Safari 8,89,2016-08-11 +session,2684,7,Chrome 16,19,2016-06-09 +session,2684,8,Internet Explorer 14,100,2016-07-10 +session,2684,9,Chrome 21,12,2017-06-21 +user,2685,Danille,Solange,60 +session,2685,0,Firefox 13,9,2019-02-03 +session,2685,1,Safari 12,45,2016-06-16 +user,2686,Kiley,Candra,36 +session,2686,0,Safari 37,58,2018-03-09 +session,2686,1,Firefox 27,51,2017-12-14 +session,2686,2,Chrome 40,105,2018-11-29 +session,2686,3,Internet Explorer 43,69,2016-08-29 +session,2686,4,Chrome 41,43,2016-08-19 +user,2687,Shon,Khadijah,20 +session,2687,0,Firefox 47,64,2018-06-23 +session,2687,1,Chrome 39,101,2017-08-21 +session,2687,2,Internet Explorer 18,12,2019-02-01 +session,2687,3,Safari 33,108,2018-05-28 +session,2687,4,Chrome 5,62,2017-10-14 +session,2687,5,Internet Explorer 38,94,2017-01-22 +session,2687,6,Firefox 26,8,2017-11-09 +session,2687,7,Internet Explorer 33,26,2018-11-21 +user,2688,Cody,Tabatha,7 +session,2688,0,Chrome 29,62,2017-03-16 +session,2688,1,Chrome 23,54,2018-08-26 +session,2688,2,Internet Explorer 36,110,2016-07-08 +session,2688,3,Firefox 48,69,2016-06-02 +session,2688,4,Firefox 44,4,2017-05-06 +user,2689,Mariah,Markita,0 +session,2689,0,Internet Explorer 24,115,2018-10-25 +session,2689,1,Safari 11,62,2016-08-29 +session,2689,2,Internet Explorer 30,110,2018-10-31 +session,2689,3,Internet Explorer 43,8,2016-06-08 +user,2690,Hiedi,Wade,93 +session,2690,0,Chrome 10,48,2016-06-28 +session,2690,1,Chrome 6,87,2019-02-05 +session,2690,2,Safari 10,52,2016-09-13 +session,2690,3,Internet Explorer 47,61,2017-05-28 +user,2691,Collin,Brynn,87 +session,2691,0,Chrome 10,63,2019-01-28 +user,2692,Iona,Marylin,0 +session,2692,0,Chrome 31,34,2017-02-25 +session,2692,1,Internet Explorer 48,65,2017-05-06 +user,2693,Helene,Joelle,17 +session,2693,0,Internet Explorer 33,27,2016-12-28 +session,2693,1,Firefox 33,117,2016-11-09 +session,2693,2,Internet Explorer 10,41,2016-08-16 +session,2693,3,Safari 31,64,2016-08-28 +session,2693,4,Chrome 9,20,2017-08-30 +session,2693,5,Internet Explorer 11,55,2017-12-31 +session,2693,6,Internet Explorer 47,2,2017-07-01 +user,2694,Herma,Denny,20 +session,2694,0,Safari 6,105,2018-11-04 +session,2694,1,Internet Explorer 31,90,2017-05-15 +session,2694,2,Chrome 49,92,2018-06-03 +session,2694,3,Chrome 12,43,2017-09-09 +user,2695,Mirian,Ezekiel,9 +session,2695,0,Firefox 42,61,2017-02-20 +session,2695,1,Firefox 25,20,2018-11-08 +session,2695,2,Chrome 43,18,2017-03-21 +session,2695,3,Safari 11,13,2017-07-03 +session,2695,4,Internet Explorer 6,104,2017-09-22 +session,2695,5,Safari 32,21,2016-12-26 +session,2695,6,Firefox 22,22,2019-01-07 +user,2696,Estefana,Carmina,18 +session,2696,0,Internet Explorer 5,30,2016-05-21 +session,2696,1,Firefox 17,14,2018-02-06 +session,2696,2,Internet Explorer 30,51,2017-03-20 +user,2697,Merrill,Rikki,16 +session,2697,0,Firefox 23,91,2019-01-13 +session,2697,1,Chrome 5,19,2017-04-03 +session,2697,2,Chrome 37,101,2017-01-11 +session,2697,3,Internet Explorer 20,26,2018-09-14 +session,2697,4,Firefox 30,13,2016-07-29 +session,2697,5,Internet Explorer 29,36,2016-10-30 +user,2698,Paz,Willard,76 +session,2698,0,Firefox 42,34,2017-05-20 +session,2698,1,Firefox 27,9,2018-01-17 +session,2698,2,Safari 14,31,2017-08-01 +session,2698,3,Firefox 16,113,2016-06-28 +session,2698,4,Chrome 22,36,2018-02-24 +session,2698,5,Safari 41,110,2018-12-03 +session,2698,6,Chrome 7,83,2018-07-20 +user,2699,Eduardo,Elfriede,31 +session,2699,0,Safari 45,1,2016-09-26 +user,2700,Angelika,Elmer,63 +session,2700,0,Chrome 36,44,2018-10-21 +session,2700,1,Safari 46,100,2016-09-24 +session,2700,2,Internet Explorer 39,20,2018-11-27 +session,2700,3,Internet Explorer 14,30,2017-05-08 +session,2700,4,Internet Explorer 12,33,2018-05-28 +session,2700,5,Firefox 16,1,2017-03-15 +session,2700,6,Internet Explorer 3,27,2018-12-29 +session,2700,7,Chrome 34,13,2018-08-12 +user,2701,Lucy,Robin,48 +session,2701,0,Firefox 16,80,2016-10-02 +session,2701,1,Safari 10,30,2016-06-19 +session,2701,2,Chrome 43,117,2017-10-01 +session,2701,3,Safari 33,57,2017-11-07 +session,2701,4,Internet Explorer 32,31,2018-09-18 +session,2701,5,Safari 47,117,2018-08-05 +session,2701,6,Firefox 48,101,2018-09-23 +session,2701,7,Firefox 33,88,2016-09-22 +session,2701,8,Chrome 22,90,2016-07-27 +session,2701,9,Safari 50,38,2017-03-25 +user,2702,Kimbery,Katelyn,74 +session,2702,0,Firefox 46,84,2017-01-19 +session,2702,1,Chrome 8,84,2018-12-03 +session,2702,2,Firefox 32,33,2018-03-08 +session,2702,3,Firefox 9,115,2018-02-26 +session,2702,4,Safari 12,111,2016-08-01 +session,2702,5,Safari 45,105,2017-10-08 +user,2703,Sammy,Lincoln,2 +session,2703,0,Firefox 46,62,2016-12-21 +session,2703,1,Safari 22,1,2016-09-21 +session,2703,2,Firefox 50,48,2017-08-07 +user,2704,Laurette,Kerry,75 +session,2704,0,Firefox 11,14,2017-01-01 +session,2704,1,Chrome 30,67,2018-12-15 +session,2704,2,Chrome 6,105,2016-11-20 +user,2705,Richard,Anisha,29 +session,2705,0,Internet Explorer 31,94,2017-12-26 +session,2705,1,Chrome 49,102,2016-11-09 +session,2705,2,Chrome 49,66,2018-08-02 +session,2705,3,Safari 18,6,2017-03-02 +session,2705,4,Chrome 39,66,2018-10-22 +session,2705,5,Chrome 41,41,2017-08-05 +user,2706,Kristofer,Lynnette,37 +session,2706,0,Chrome 39,100,2018-06-25 +session,2706,1,Firefox 42,52,2018-10-16 +session,2706,2,Firefox 9,118,2018-11-19 +session,2706,3,Chrome 24,16,2017-02-04 +session,2706,4,Internet Explorer 47,44,2018-12-10 +session,2706,5,Firefox 31,105,2016-12-09 +session,2706,6,Firefox 7,6,2017-08-26 +session,2706,7,Chrome 22,102,2018-10-20 +session,2706,8,Chrome 24,12,2018-01-17 +session,2706,9,Safari 48,39,2018-10-20 +user,2707,Wiley,Jeanie,82 +session,2707,0,Firefox 5,27,2016-10-20 +session,2707,1,Safari 33,84,2017-05-07 +session,2707,2,Firefox 26,1,2017-10-06 +user,2708,Frances,Lashaunda,52 +session,2708,0,Safari 19,100,2016-08-13 +session,2708,1,Firefox 3,68,2017-12-29 +user,2709,Orval,Asley,48 +session,2709,0,Safari 8,114,2019-01-28 +session,2709,1,Internet Explorer 46,48,2017-01-17 +session,2709,2,Internet Explorer 41,77,2017-03-20 +session,2709,3,Safari 6,60,2017-04-12 +session,2709,4,Internet Explorer 35,108,2019-02-05 +session,2709,5,Safari 31,10,2017-07-07 +session,2709,6,Internet Explorer 24,75,2017-08-10 +session,2709,7,Internet Explorer 35,85,2018-08-31 +session,2709,8,Internet Explorer 19,105,2018-07-24 +session,2709,9,Firefox 13,67,2017-08-29 +user,2710,Emmanuel,Chang,18 +session,2710,0,Firefox 8,119,2018-06-17 +session,2710,1,Chrome 14,18,2017-10-25 +user,2711,Luis,Dorthy,26 +session,2711,0,Safari 15,114,2017-01-12 +session,2711,1,Internet Explorer 11,22,2017-12-13 +session,2711,2,Internet Explorer 39,31,2017-02-11 +session,2711,3,Internet Explorer 38,19,2017-11-10 +session,2711,4,Safari 27,48,2018-04-22 +session,2711,5,Chrome 49,18,2019-01-23 +session,2711,6,Chrome 3,106,2017-01-24 +session,2711,7,Firefox 11,84,2018-05-04 +session,2711,8,Firefox 6,82,2016-07-10 +user,2712,Marlin,Joette,85 +session,2712,0,Safari 5,7,2017-01-17 +session,2712,1,Chrome 19,18,2017-03-09 +session,2712,2,Safari 46,66,2016-06-11 +session,2712,3,Firefox 46,10,2018-06-25 +session,2712,4,Internet Explorer 22,95,2016-11-04 +session,2712,5,Safari 1,27,2018-08-30 +session,2712,6,Internet Explorer 16,110,2017-03-15 +session,2712,7,Internet Explorer 7,32,2018-10-22 +session,2712,8,Chrome 2,114,2018-12-09 +session,2712,9,Chrome 47,43,2017-06-09 +user,2713,Venetta,Dolores,45 +session,2713,0,Chrome 46,65,2017-05-05 +user,2714,Shella,Lizeth,82 +session,2714,0,Firefox 4,67,2017-08-08 +user,2715,Timika,Ilse,95 +session,2715,0,Safari 36,52,2017-03-06 +session,2715,1,Chrome 28,95,2016-09-23 +session,2715,2,Internet Explorer 49,20,2018-08-20 +session,2715,3,Safari 30,12,2016-12-01 +session,2715,4,Chrome 4,110,2017-04-01 +session,2715,5,Chrome 17,8,2016-08-29 +user,2716,Michael,Ann,84 +session,2716,0,Internet Explorer 43,94,2016-10-04 +session,2716,1,Chrome 31,41,2018-05-29 +session,2716,2,Chrome 41,76,2017-12-19 +session,2716,3,Safari 11,103,2019-01-03 +session,2716,4,Firefox 41,73,2018-01-24 +session,2716,5,Safari 31,21,2016-06-21 +session,2716,6,Safari 16,18,2016-11-13 +user,2717,Len,Leroy,90 +session,2717,0,Firefox 9,118,2018-07-03 +session,2717,1,Chrome 12,12,2019-01-10 +session,2717,2,Internet Explorer 14,37,2017-11-26 +session,2717,3,Internet Explorer 5,20,2018-11-26 +session,2717,4,Chrome 6,64,2017-07-18 +session,2717,5,Chrome 18,34,2017-01-21 +session,2717,6,Chrome 21,104,2018-02-24 +session,2717,7,Firefox 28,19,2018-09-27 +session,2717,8,Internet Explorer 11,22,2016-08-18 +session,2717,9,Internet Explorer 37,16,2018-07-07 +user,2718,Rueben,Celsa,43 +session,2718,0,Safari 43,61,2017-08-20 +session,2718,1,Firefox 25,94,2017-06-07 +session,2718,2,Chrome 49,27,2019-01-17 +session,2718,3,Safari 23,33,2016-12-06 +session,2718,4,Internet Explorer 11,119,2016-05-23 +user,2719,Anika,Jada,86 +session,2719,0,Safari 23,95,2018-11-15 +session,2719,1,Safari 42,81,2016-11-02 +session,2719,2,Chrome 8,76,2019-01-12 +session,2719,3,Firefox 24,40,2016-09-13 +session,2719,4,Firefox 42,92,2017-10-16 +user,2720,Eugenio,Trina,16 +session,2720,0,Firefox 43,34,2018-12-16 +session,2720,1,Internet Explorer 22,4,2018-11-20 +session,2720,2,Chrome 17,1,2019-01-28 +user,2721,Jacob,Bambi,8 +session,2721,0,Chrome 33,71,2018-01-16 +session,2721,1,Internet Explorer 6,5,2017-07-23 +session,2721,2,Chrome 33,32,2018-11-08 +session,2721,3,Firefox 46,99,2018-07-09 +session,2721,4,Internet Explorer 38,13,2017-03-07 +session,2721,5,Chrome 12,22,2018-11-19 +session,2721,6,Chrome 13,53,2017-09-15 +user,2722,Colton,Timika,92 +session,2722,0,Safari 7,17,2017-03-22 +session,2722,1,Safari 2,111,2017-03-03 +session,2722,2,Chrome 1,16,2017-03-15 +user,2723,Thomas,Christel,98 +session,2723,0,Safari 14,46,2017-03-10 +session,2723,1,Safari 10,91,2017-05-18 +session,2723,2,Internet Explorer 49,98,2017-12-25 +session,2723,3,Firefox 33,44,2016-10-06 +user,2724,Romeo,Ronald,53 +session,2724,0,Firefox 10,36,2016-09-13 +session,2724,1,Safari 6,65,2016-08-15 +user,2725,Kristen,Harmony,91 +session,2725,0,Firefox 47,111,2018-09-06 +session,2725,1,Chrome 34,63,2017-10-21 +session,2725,2,Chrome 49,57,2017-10-23 +session,2725,3,Internet Explorer 34,109,2017-06-29 +session,2725,4,Chrome 27,38,2018-09-12 +user,2726,Ferdinand,Siobhan,81 +session,2726,0,Firefox 43,113,2016-12-12 +session,2726,1,Firefox 40,119,2017-02-04 +session,2726,2,Firefox 8,20,2018-02-25 +session,2726,3,Internet Explorer 23,84,2017-05-15 +session,2726,4,Internet Explorer 13,15,2016-07-20 +session,2726,5,Firefox 39,37,2018-10-19 +session,2726,6,Firefox 9,47,2016-06-06 +session,2726,7,Internet Explorer 34,72,2017-11-19 +session,2726,8,Chrome 32,24,2016-10-20 +session,2726,9,Firefox 31,53,2017-04-01 +user,2727,Krishna,Ali,47 +session,2727,0,Safari 21,49,2018-07-01 +session,2727,1,Firefox 23,69,2018-05-29 +session,2727,2,Chrome 43,98,2017-11-18 +user,2728,Orval,Elizabet,90 +session,2728,0,Internet Explorer 8,78,2018-10-01 +session,2728,1,Safari 49,116,2016-07-24 +session,2728,2,Chrome 28,61,2017-07-08 +session,2728,3,Internet Explorer 38,78,2018-03-18 +session,2728,4,Safari 29,13,2018-04-17 +session,2728,5,Chrome 1,89,2018-08-19 +user,2729,Reagan,Susanna,38 +session,2729,0,Internet Explorer 44,90,2018-09-02 +session,2729,1,Chrome 10,61,2018-08-08 +session,2729,2,Firefox 40,75,2017-01-25 +session,2729,3,Safari 17,37,2016-10-04 +session,2729,4,Safari 40,81,2017-12-05 +session,2729,5,Firefox 22,37,2016-10-16 +session,2729,6,Firefox 50,31,2017-09-14 +session,2729,7,Chrome 17,79,2016-07-08 +session,2729,8,Safari 32,26,2017-12-17 +session,2729,9,Safari 29,66,2018-12-10 +user,2730,Roni,Gil,91 +session,2730,0,Chrome 9,57,2017-01-20 +session,2730,1,Chrome 25,19,2016-12-24 +session,2730,2,Safari 17,83,2018-06-07 +session,2730,3,Chrome 45,40,2017-03-27 +session,2730,4,Chrome 40,12,2018-09-21 +session,2730,5,Chrome 13,31,2017-12-03 +session,2730,6,Chrome 33,74,2018-07-24 +session,2730,7,Safari 41,64,2016-05-27 +session,2730,8,Firefox 24,58,2018-01-05 +user,2731,Gita,Indira,96 +session,2731,0,Internet Explorer 1,105,2017-01-02 +session,2731,1,Chrome 5,50,2016-10-04 +session,2731,2,Firefox 38,19,2018-02-21 +session,2731,3,Internet Explorer 17,55,2017-10-01 +session,2731,4,Firefox 8,99,2016-12-30 +user,2732,Jamal,Elza,69 +session,2732,0,Internet Explorer 43,1,2016-09-01 +user,2733,Ollie,Valene,97 +session,2733,0,Safari 6,5,2016-11-13 +session,2733,1,Chrome 31,40,2018-08-11 +user,2734,Phebe,Jesusa,23 +session,2734,0,Safari 27,52,2018-08-12 +session,2734,1,Internet Explorer 39,41,2018-12-23 +session,2734,2,Safari 31,78,2017-11-18 +session,2734,3,Internet Explorer 12,54,2017-02-13 +session,2734,4,Safari 29,57,2016-12-01 +session,2734,5,Safari 11,103,2017-02-26 +session,2734,6,Chrome 6,118,2017-07-03 +session,2734,7,Chrome 49,119,2018-04-24 +session,2734,8,Safari 26,50,2017-06-11 +session,2734,9,Internet Explorer 22,43,2018-06-05 +user,2735,Jonathan,Deloris,70 +session,2735,0,Chrome 45,60,2017-12-05 +session,2735,1,Firefox 41,22,2018-08-30 +session,2735,2,Firefox 38,93,2018-05-05 +session,2735,3,Internet Explorer 7,86,2018-03-01 +user,2736,Mikki,Adell,70 +session,2736,0,Firefox 29,81,2016-08-19 +session,2736,1,Chrome 19,30,2017-09-10 +session,2736,2,Firefox 43,2,2016-07-25 +session,2736,3,Internet Explorer 47,88,2016-06-21 +session,2736,4,Internet Explorer 12,110,2018-11-20 +session,2736,5,Internet Explorer 37,35,2018-07-07 +session,2736,6,Chrome 36,5,2017-07-11 +session,2736,7,Safari 7,75,2017-07-27 +session,2736,8,Internet Explorer 1,101,2016-08-09 +user,2737,Romelia,Layla,72 +session,2737,0,Chrome 8,94,2018-08-24 +session,2737,1,Internet Explorer 26,64,2018-05-19 +session,2737,2,Internet Explorer 43,98,2017-09-05 +session,2737,3,Firefox 39,16,2018-04-15 +session,2737,4,Firefox 50,80,2018-10-13 +session,2737,5,Safari 17,68,2017-06-23 +user,2738,Allena,Darleen,46 +session,2738,0,Safari 15,93,2016-10-13 +session,2738,1,Internet Explorer 34,32,2016-06-26 +session,2738,2,Firefox 22,77,2017-01-08 +session,2738,3,Safari 45,109,2019-02-10 +session,2738,4,Internet Explorer 2,39,2018-07-31 +user,2739,Agueda,Javier,27 +session,2739,0,Chrome 29,23,2018-03-15 +session,2739,1,Firefox 6,17,2017-07-04 +session,2739,2,Safari 49,118,2017-09-14 +session,2739,3,Firefox 32,87,2017-05-06 +session,2739,4,Firefox 35,34,2017-11-02 +session,2739,5,Safari 44,112,2017-01-20 +session,2739,6,Chrome 7,88,2018-07-31 +session,2739,7,Chrome 17,16,2016-08-19 +user,2740,Marvel,Parthenia,96 +session,2740,0,Chrome 15,109,2018-04-21 +session,2740,1,Internet Explorer 28,56,2018-12-26 +session,2740,2,Safari 1,31,2017-03-03 +session,2740,3,Firefox 36,115,2016-11-20 +session,2740,4,Safari 50,6,2017-03-06 +session,2740,5,Safari 37,94,2016-06-04 +session,2740,6,Internet Explorer 14,80,2017-02-10 +session,2740,7,Internet Explorer 12,76,2018-12-19 +session,2740,8,Firefox 43,112,2018-10-20 +session,2740,9,Chrome 19,19,2017-09-08 +user,2741,Gia,Hassie,91 +session,2741,0,Firefox 27,114,2017-06-05 +session,2741,1,Internet Explorer 5,40,2017-02-12 +session,2741,2,Internet Explorer 35,1,2018-05-09 +session,2741,3,Safari 3,51,2017-02-11 +session,2741,4,Firefox 35,115,2018-02-06 +user,2742,Genaro,Marin,72 +session,2742,0,Firefox 27,3,2017-11-24 +session,2742,1,Safari 42,8,2017-04-24 +session,2742,2,Firefox 32,1,2017-02-06 +session,2742,3,Firefox 18,100,2019-01-11 +session,2742,4,Chrome 37,20,2016-06-01 +session,2742,5,Internet Explorer 32,16,2017-03-15 +session,2742,6,Internet Explorer 28,52,2017-06-24 +user,2743,Xiomara,Seymour,65 +session,2743,0,Firefox 38,65,2017-10-15 +session,2743,1,Firefox 11,116,2018-07-03 +user,2744,Chas,Brendan,81 +session,2744,0,Internet Explorer 5,100,2016-06-05 +session,2744,1,Firefox 31,94,2017-07-05 +user,2745,Mandy,Bao,83 +session,2745,0,Chrome 37,97,2018-07-26 +session,2745,1,Internet Explorer 29,97,2017-09-27 +session,2745,2,Chrome 35,62,2017-07-21 +session,2745,3,Chrome 40,0,2017-12-15 +session,2745,4,Chrome 7,57,2016-07-22 +session,2745,5,Safari 11,33,2017-08-31 +session,2745,6,Chrome 26,9,2017-09-16 +session,2745,7,Firefox 1,113,2018-08-18 +user,2746,Tawny,Len,38 +session,2746,0,Chrome 11,55,2017-09-22 +session,2746,1,Safari 11,43,2018-10-25 +session,2746,2,Chrome 2,57,2016-10-15 +session,2746,3,Internet Explorer 35,115,2016-10-23 +session,2746,4,Firefox 47,37,2016-09-25 +session,2746,5,Internet Explorer 34,97,2017-03-22 +user,2747,Zachery,Xiomara,69 +session,2747,0,Chrome 23,98,2018-11-12 +session,2747,1,Internet Explorer 14,86,2018-03-17 +user,2748,Adelaide,Nick,7 +session,2748,0,Safari 13,71,2018-10-04 +session,2748,1,Firefox 48,76,2018-10-15 +user,2749,Lucinda,Merideth,96 +session,2749,0,Chrome 43,3,2018-03-30 +session,2749,1,Firefox 2,32,2016-07-29 +session,2749,2,Firefox 43,16,2018-05-31 +session,2749,3,Safari 19,61,2017-06-17 +session,2749,4,Internet Explorer 45,105,2017-02-20 +session,2749,5,Internet Explorer 28,47,2016-07-26 +session,2749,6,Internet Explorer 13,44,2018-07-19 +user,2750,Rubi,Huey,82 +session,2750,0,Firefox 5,101,2017-05-07 +session,2750,1,Chrome 2,38,2019-01-07 +session,2750,2,Safari 5,52,2017-04-01 +session,2750,3,Internet Explorer 10,97,2016-05-29 +session,2750,4,Chrome 44,38,2017-07-22 +session,2750,5,Firefox 47,101,2017-05-30 +session,2750,6,Firefox 1,13,2018-04-04 +session,2750,7,Chrome 40,115,2018-11-02 +user,2751,Jason,Lisette,87 +session,2751,0,Internet Explorer 48,9,2017-11-10 +session,2751,1,Safari 35,34,2017-12-22 +session,2751,2,Firefox 27,71,2017-03-05 +session,2751,3,Internet Explorer 33,39,2017-04-07 +session,2751,4,Chrome 25,19,2018-09-18 +session,2751,5,Internet Explorer 14,43,2018-12-25 +session,2751,6,Internet Explorer 24,108,2018-04-09 +session,2751,7,Internet Explorer 17,86,2017-01-24 +session,2751,8,Safari 34,44,2018-07-15 +session,2751,9,Safari 2,98,2017-03-19 +user,2752,Lyle,Leonie,83 +session,2752,0,Firefox 33,25,2016-05-30 +user,2753,Regan,Eve,80 +session,2753,0,Internet Explorer 41,83,2018-06-07 +session,2753,1,Firefox 1,33,2018-11-18 +session,2753,2,Chrome 27,21,2018-05-31 +session,2753,3,Firefox 8,58,2019-02-12 +session,2753,4,Internet Explorer 1,118,2017-08-08 +session,2753,5,Firefox 34,37,2018-10-16 +user,2754,Kelvin,Jettie,78 +session,2754,0,Chrome 40,42,2016-12-01 +session,2754,1,Firefox 37,54,2017-12-27 +session,2754,2,Safari 42,118,2016-09-04 +session,2754,3,Internet Explorer 13,62,2017-04-27 +session,2754,4,Chrome 32,31,2017-06-21 +session,2754,5,Chrome 9,63,2016-11-02 +session,2754,6,Firefox 9,119,2016-06-14 +user,2755,Krista,Miyoko,16 +session,2755,0,Firefox 7,45,2018-01-09 +session,2755,1,Safari 43,6,2016-06-10 +user,2756,Soila,Jesse,75 +session,2756,0,Chrome 24,97,2018-08-17 +session,2756,1,Firefox 41,55,2017-09-13 +session,2756,2,Safari 8,101,2017-01-31 +session,2756,3,Safari 3,6,2017-11-16 +session,2756,4,Internet Explorer 25,76,2019-01-15 +user,2757,Tristan,Carmina,27 +session,2757,0,Safari 10,42,2018-01-09 +session,2757,1,Safari 41,106,2018-06-17 +session,2757,2,Safari 39,72,2017-05-17 +session,2757,3,Internet Explorer 50,88,2018-11-16 +session,2757,4,Firefox 31,102,2017-08-31 +user,2758,Herta,Jude,20 +session,2758,0,Safari 3,51,2017-10-05 +session,2758,1,Safari 8,88,2017-12-21 +session,2758,2,Internet Explorer 40,37,2018-09-05 +session,2758,3,Safari 46,98,2016-12-05 +session,2758,4,Internet Explorer 31,56,2017-07-30 +session,2758,5,Chrome 30,64,2017-06-16 +session,2758,6,Firefox 49,44,2016-10-08 +session,2758,7,Internet Explorer 15,108,2016-06-21 +user,2759,Sean,Mariella,34 +session,2759,0,Firefox 3,99,2017-02-04 +session,2759,1,Internet Explorer 29,16,2017-12-31 +session,2759,2,Chrome 3,105,2018-10-16 +session,2759,3,Chrome 48,21,2017-07-24 +session,2759,4,Firefox 46,61,2018-06-13 +session,2759,5,Safari 6,30,2018-03-09 +session,2759,6,Safari 26,59,2017-08-01 +session,2759,7,Firefox 17,27,2017-03-15 +user,2760,Dong,Clara,38 +session,2760,0,Firefox 25,83,2017-10-21 +session,2760,1,Safari 43,90,2016-10-11 +session,2760,2,Internet Explorer 6,81,2018-05-26 +session,2760,3,Internet Explorer 18,101,2016-10-28 +session,2760,4,Firefox 41,37,2017-04-27 +session,2760,5,Safari 16,9,2017-02-03 +user,2761,Magnolia,Bok,58 +session,2761,0,Firefox 30,23,2017-11-29 +session,2761,1,Chrome 5,9,2018-12-18 +session,2761,2,Internet Explorer 23,65,2018-09-30 +session,2761,3,Internet Explorer 19,69,2018-02-26 +session,2761,4,Firefox 37,86,2016-09-11 +session,2761,5,Safari 6,107,2018-11-09 +user,2762,Ralph,Lashunda,13 +session,2762,0,Chrome 49,6,2017-04-30 +session,2762,1,Internet Explorer 24,45,2016-05-31 +session,2762,2,Firefox 12,97,2018-01-27 +session,2762,3,Chrome 30,63,2018-06-01 +session,2762,4,Safari 12,19,2016-12-11 +session,2762,5,Internet Explorer 18,68,2018-03-24 +session,2762,6,Chrome 2,118,2017-02-03 +user,2763,Bertie,Temeka,33 +session,2763,0,Chrome 32,3,2017-02-15 +session,2763,1,Safari 16,71,2018-08-17 +session,2763,2,Internet Explorer 11,25,2016-12-04 +session,2763,3,Chrome 21,99,2016-11-25 +session,2763,4,Firefox 5,100,2016-11-15 +session,2763,5,Firefox 21,75,2017-12-13 +session,2763,6,Firefox 4,18,2017-12-26 +user,2764,Andrew,Hilda,83 +session,2764,0,Chrome 18,64,2018-08-26 +session,2764,1,Chrome 15,59,2017-02-24 +user,2765,Angel,Estefana,16 +session,2765,0,Internet Explorer 2,87,2017-04-17 +session,2765,1,Internet Explorer 43,109,2018-02-14 +session,2765,2,Safari 12,50,2019-02-08 +session,2765,3,Firefox 38,86,2016-06-12 +session,2765,4,Chrome 46,53,2017-09-18 +user,2766,Miles,Chin,46 +session,2766,0,Safari 12,20,2017-11-29 +session,2766,1,Internet Explorer 31,75,2017-06-28 +session,2766,2,Chrome 41,84,2017-09-09 +user,2767,Juliet,Reinaldo,25 +session,2767,0,Internet Explorer 19,96,2018-09-10 +session,2767,1,Safari 21,53,2017-10-30 +session,2767,2,Internet Explorer 31,46,2017-08-08 +session,2767,3,Internet Explorer 30,76,2017-09-28 +session,2767,4,Firefox 20,38,2016-07-11 +session,2767,5,Firefox 30,58,2017-12-02 +session,2767,6,Firefox 29,108,2017-09-20 +session,2767,7,Internet Explorer 39,82,2016-07-07 +session,2767,8,Chrome 49,87,2018-09-16 +user,2768,Justine,Joan,38 +session,2768,0,Internet Explorer 10,113,2018-04-10 +session,2768,1,Safari 3,98,2017-12-05 +user,2769,Demarcus,Ted,50 +session,2769,0,Firefox 42,102,2016-09-15 +user,2770,Weston,Shawnee,96 +session,2770,0,Safari 35,34,2016-07-02 +session,2770,1,Chrome 2,118,2016-11-03 +session,2770,2,Firefox 6,46,2016-05-23 +session,2770,3,Safari 1,76,2016-10-11 +session,2770,4,Safari 33,91,2017-02-21 +session,2770,5,Firefox 22,29,2018-12-19 +user,2771,Antoine,Terrilyn,12 +session,2771,0,Internet Explorer 8,62,2018-01-29 +session,2771,1,Chrome 41,106,2016-07-22 +session,2771,2,Chrome 7,115,2017-03-23 +session,2771,3,Chrome 46,27,2016-09-12 +session,2771,4,Chrome 3,58,2017-03-23 +session,2771,5,Internet Explorer 49,1,2019-01-25 +user,2772,Scotty,Jonah,10 +session,2772,0,Safari 16,65,2017-01-25 +session,2772,1,Chrome 46,89,2017-02-19 +session,2772,2,Safari 31,10,2016-06-12 +session,2772,3,Internet Explorer 40,33,2016-12-10 +session,2772,4,Firefox 25,10,2017-07-25 +session,2772,5,Safari 24,5,2017-07-16 +session,2772,6,Safari 14,95,2017-05-07 +session,2772,7,Chrome 6,55,2017-11-11 +session,2772,8,Firefox 16,14,2017-01-19 +user,2773,Goldie,Evie,55 +session,2773,0,Internet Explorer 7,12,2016-08-31 +session,2773,1,Chrome 38,17,2018-07-21 +session,2773,2,Internet Explorer 36,19,2017-02-26 +session,2773,3,Safari 15,43,2018-10-28 +session,2773,4,Firefox 32,97,2018-03-11 +session,2773,5,Safari 29,75,2017-02-02 +session,2773,6,Safari 32,4,2018-12-09 +user,2774,Isaiah,Doyle,88 +session,2774,0,Firefox 11,82,2018-10-03 +session,2774,1,Chrome 15,20,2017-05-25 +session,2774,2,Chrome 32,65,2016-10-22 +session,2774,3,Safari 19,103,2018-09-14 +session,2774,4,Firefox 50,95,2017-01-14 +session,2774,5,Chrome 39,50,2018-10-28 +session,2774,6,Firefox 30,6,2017-09-10 +session,2774,7,Safari 4,105,2018-08-05 +session,2774,8,Internet Explorer 34,29,2016-07-21 +session,2774,9,Safari 44,32,2016-07-06 +user,2775,Debby,Alexa,32 +session,2775,0,Internet Explorer 19,93,2018-08-04 +session,2775,1,Safari 40,40,2018-02-06 +session,2775,2,Internet Explorer 16,48,2017-09-23 +user,2776,Cyrus,Evie,8 +session,2776,0,Firefox 17,11,2016-06-26 +session,2776,1,Internet Explorer 19,65,2017-10-20 +session,2776,2,Chrome 35,93,2018-10-14 +session,2776,3,Internet Explorer 50,34,2018-05-26 +session,2776,4,Chrome 27,65,2017-12-18 +user,2777,Saundra,Lauryn,29 +session,2777,0,Firefox 27,73,2019-01-04 +session,2777,1,Chrome 12,71,2017-05-03 +session,2777,2,Safari 8,38,2016-07-18 +session,2777,3,Internet Explorer 24,8,2016-06-10 +session,2777,4,Chrome 15,59,2017-02-07 +session,2777,5,Firefox 45,58,2018-01-27 +session,2777,6,Firefox 3,104,2018-02-18 +session,2777,7,Chrome 25,96,2017-09-11 +session,2777,8,Internet Explorer 11,97,2016-10-29 +session,2777,9,Firefox 6,40,2018-04-22 +user,2778,Theo,Pattie,47 +session,2778,0,Internet Explorer 24,64,2018-09-13 +session,2778,1,Internet Explorer 34,37,2017-10-07 +session,2778,2,Chrome 47,12,2016-12-06 +session,2778,3,Firefox 21,50,2017-09-30 +user,2779,Dona,Lon,85 +session,2779,0,Chrome 29,67,2018-06-15 +session,2779,1,Firefox 45,76,2018-04-12 +session,2779,2,Firefox 22,114,2017-10-30 +session,2779,3,Chrome 31,16,2017-07-16 +session,2779,4,Internet Explorer 26,93,2019-01-24 +session,2779,5,Chrome 47,98,2018-07-07 +session,2779,6,Chrome 36,31,2017-01-05 +session,2779,7,Chrome 26,98,2017-07-06 +session,2779,8,Chrome 41,111,2016-12-15 +user,2780,Madeleine,Elli,42 +session,2780,0,Internet Explorer 4,72,2018-03-24 +session,2780,1,Internet Explorer 50,91,2017-04-10 +session,2780,2,Chrome 33,106,2017-07-12 +user,2781,Bradly,Elvie,45 +session,2781,0,Firefox 7,56,2018-05-20 +session,2781,1,Chrome 39,74,2018-08-05 +session,2781,2,Safari 26,26,2016-06-25 +session,2781,3,Safari 44,30,2017-08-12 +session,2781,4,Internet Explorer 32,45,2016-08-11 +user,2782,Byron,Marcelle,30 +session,2782,0,Chrome 21,24,2018-12-29 +session,2782,1,Safari 38,10,2017-02-22 +user,2783,Odis,Angelia,15 +session,2783,0,Chrome 16,98,2017-02-26 +session,2783,1,Internet Explorer 25,62,2016-10-31 +session,2783,2,Internet Explorer 37,89,2018-07-18 +session,2783,3,Firefox 1,100,2017-01-02 +session,2783,4,Safari 20,53,2017-04-08 +session,2783,5,Safari 47,100,2016-06-28 +session,2783,6,Internet Explorer 36,95,2016-11-24 +session,2783,7,Internet Explorer 11,102,2018-07-28 +session,2783,8,Firefox 20,73,2016-05-26 +session,2783,9,Safari 13,38,2018-07-17 +user,2784,Roosevelt,Stacia,95 +session,2784,0,Internet Explorer 12,86,2017-12-24 +session,2784,1,Internet Explorer 15,0,2018-09-29 +session,2784,2,Chrome 36,84,2016-06-15 +session,2784,3,Firefox 47,84,2018-05-10 +session,2784,4,Internet Explorer 49,64,2018-10-27 +session,2784,5,Safari 20,20,2016-10-24 +session,2784,6,Safari 47,95,2017-11-24 +session,2784,7,Chrome 11,22,2019-02-08 +session,2784,8,Internet Explorer 45,43,2018-05-18 +session,2784,9,Internet Explorer 29,5,2018-07-04 +user,2785,Nikki,Merrill,64 +session,2785,0,Safari 7,96,2018-05-17 +user,2786,Guillermina,Maryjane,97 +session,2786,0,Firefox 17,77,2018-08-13 +session,2786,1,Safari 26,19,2018-09-23 +session,2786,2,Safari 32,24,2017-05-19 +session,2786,3,Internet Explorer 8,47,2019-02-10 +session,2786,4,Internet Explorer 29,18,2017-10-25 +session,2786,5,Safari 11,14,2016-11-02 +session,2786,6,Internet Explorer 40,3,2016-08-25 +session,2786,7,Safari 7,51,2018-08-29 +session,2786,8,Chrome 44,38,2018-12-30 +user,2787,Soo,Dollie,70 +session,2787,0,Chrome 48,78,2016-08-06 +session,2787,1,Chrome 3,65,2017-07-08 +session,2787,2,Safari 32,71,2017-06-20 +session,2787,3,Safari 45,36,2018-05-22 +session,2787,4,Safari 40,96,2018-05-04 +user,2788,Carlton,Carlyn,12 +session,2788,0,Firefox 13,7,2017-07-11 +session,2788,1,Internet Explorer 18,109,2018-03-13 +session,2788,2,Firefox 9,51,2016-06-15 +session,2788,3,Safari 48,38,2018-02-15 +session,2788,4,Safari 5,107,2017-02-09 +user,2789,Sage,Kevin,54 +session,2789,0,Internet Explorer 29,68,2017-07-31 +session,2789,1,Internet Explorer 11,41,2017-01-10 +session,2789,2,Safari 5,92,2018-01-02 +session,2789,3,Firefox 24,81,2018-10-20 +session,2789,4,Chrome 43,16,2016-11-13 +session,2789,5,Internet Explorer 20,33,2017-06-10 +session,2789,6,Internet Explorer 15,107,2018-02-21 +user,2790,Natacha,Ellie,95 +session,2790,0,Internet Explorer 39,3,2019-02-12 +session,2790,1,Safari 49,57,2017-02-03 +session,2790,2,Safari 2,83,2017-06-05 +session,2790,3,Firefox 12,23,2016-05-22 +session,2790,4,Chrome 49,104,2018-10-22 +session,2790,5,Firefox 34,115,2017-08-20 +session,2790,6,Firefox 27,33,2018-06-06 +session,2790,7,Internet Explorer 15,106,2018-04-09 +session,2790,8,Safari 34,96,2017-03-22 +session,2790,9,Internet Explorer 30,50,2018-02-05 +user,2791,Lazaro,Deena,89 +session,2791,0,Internet Explorer 43,95,2018-04-16 +session,2791,1,Safari 43,89,2016-07-20 +session,2791,2,Chrome 45,58,2018-08-12 +session,2791,3,Internet Explorer 3,45,2016-11-08 +session,2791,4,Firefox 20,35,2019-01-26 +session,2791,5,Chrome 50,37,2017-11-02 +session,2791,6,Internet Explorer 39,109,2016-11-21 +user,2792,Dana,Christine,58 +session,2792,0,Chrome 19,62,2017-03-16 +user,2793,Maximina,Alfred,12 +session,2793,0,Safari 38,87,2018-05-06 +session,2793,1,Internet Explorer 20,14,2016-12-28 +user,2794,Chuck,Clemencia,14 +session,2794,0,Firefox 49,104,2017-11-17 +session,2794,1,Chrome 42,113,2017-01-09 +session,2794,2,Firefox 8,69,2017-11-25 +user,2795,Timothy,Patrice,68 +session,2795,0,Chrome 41,62,2016-05-28 +session,2795,1,Firefox 49,96,2018-06-30 +session,2795,2,Safari 36,97,2017-02-25 +session,2795,3,Internet Explorer 37,94,2017-05-06 +user,2796,Herb,Eddy,67 +session,2796,0,Safari 34,13,2016-12-23 +session,2796,1,Internet Explorer 18,17,2017-05-13 +session,2796,2,Safari 25,82,2018-09-09 +session,2796,3,Internet Explorer 29,45,2017-01-08 +session,2796,4,Safari 3,34,2018-08-10 +session,2796,5,Internet Explorer 10,94,2018-10-07 +session,2796,6,Firefox 32,75,2016-09-02 +session,2796,7,Firefox 15,72,2017-08-11 +user,2797,Maryland,Vanita,23 +session,2797,0,Firefox 38,85,2018-01-17 +session,2797,1,Firefox 33,101,2018-06-04 +session,2797,2,Chrome 45,53,2017-04-28 +session,2797,3,Internet Explorer 48,35,2017-05-05 +user,2798,Sharice,Bari,31 +session,2798,0,Firefox 47,77,2018-07-30 +session,2798,1,Internet Explorer 27,87,2017-09-20 +session,2798,2,Internet Explorer 19,37,2019-01-29 +user,2799,Lettie,Kira,99 +session,2799,0,Safari 26,40,2018-12-24 +session,2799,1,Firefox 40,109,2016-06-14 +session,2799,2,Chrome 50,91,2017-02-08 +session,2799,3,Safari 17,39,2017-11-15 +session,2799,4,Chrome 4,18,2017-09-26 +session,2799,5,Firefox 28,0,2017-11-03 +session,2799,6,Internet Explorer 11,85,2017-05-27 +user,2800,Candida,Lavada,0 +session,2800,0,Chrome 14,119,2018-06-09 +session,2800,1,Chrome 27,36,2016-11-09 +user,2801,Sau,Donella,28 +session,2801,0,Safari 4,105,2018-06-23 +session,2801,1,Safari 47,9,2017-04-21 +session,2801,2,Internet Explorer 12,114,2018-12-17 +session,2801,3,Internet Explorer 25,36,2018-03-31 +session,2801,4,Safari 30,73,2018-11-15 +session,2801,5,Internet Explorer 20,50,2016-06-15 +session,2801,6,Chrome 34,81,2017-11-19 +session,2801,7,Firefox 28,41,2017-06-02 +session,2801,8,Safari 15,76,2018-11-03 +session,2801,9,Chrome 39,3,2018-03-12 +user,2802,Stephine,Deandrea,79 +session,2802,0,Internet Explorer 20,55,2016-11-06 +session,2802,1,Internet Explorer 25,106,2017-05-03 +session,2802,2,Chrome 8,20,2018-02-13 +session,2802,3,Internet Explorer 34,4,2018-03-20 +session,2802,4,Safari 50,62,2017-07-01 +session,2802,5,Firefox 35,59,2016-05-24 +user,2803,Shelton,Mason,44 +session,2803,0,Safari 46,93,2016-08-11 +user,2804,Evan,Vito,89 +session,2804,0,Safari 11,10,2017-06-05 +session,2804,1,Safari 24,17,2018-12-19 +session,2804,2,Internet Explorer 28,25,2017-08-05 +session,2804,3,Safari 26,9,2017-01-29 +session,2804,4,Firefox 2,25,2016-09-16 +session,2804,5,Firefox 45,51,2017-10-16 +user,2805,Enrique,Cedric,97 +session,2805,0,Chrome 42,18,2017-03-06 +session,2805,1,Firefox 25,25,2016-09-30 +session,2805,2,Chrome 16,67,2016-10-24 +session,2805,3,Chrome 43,23,2018-02-07 +session,2805,4,Internet Explorer 18,48,2017-01-21 +session,2805,5,Safari 39,40,2016-07-10 +session,2805,6,Safari 50,61,2016-10-02 +session,2805,7,Safari 25,42,2018-07-13 +session,2805,8,Firefox 15,80,2016-09-02 +session,2805,9,Safari 31,26,2018-06-13 +user,2806,Woodrow,Daphne,56 +session,2806,0,Internet Explorer 10,102,2016-07-19 +user,2807,Renaldo,Issac,56 +session,2807,0,Firefox 15,116,2016-05-27 +session,2807,1,Internet Explorer 6,24,2018-06-19 +user,2808,Newton,Mitch,47 +session,2808,0,Chrome 33,89,2017-06-20 +session,2808,1,Internet Explorer 4,24,2018-02-19 +session,2808,2,Chrome 33,70,2017-04-18 +session,2808,3,Safari 42,11,2017-11-12 +session,2808,4,Chrome 22,44,2017-02-23 +session,2808,5,Safari 30,100,2018-07-09 +session,2808,6,Internet Explorer 1,94,2017-09-27 +user,2809,Tijuana,Santos,81 +session,2809,0,Internet Explorer 45,38,2017-02-07 +session,2809,1,Chrome 12,9,2016-06-04 +session,2809,2,Safari 32,16,2018-08-20 +session,2809,3,Chrome 42,95,2017-05-09 +user,2810,Jarred,Jerica,88 +session,2810,0,Safari 29,69,2017-08-22 +session,2810,1,Firefox 6,62,2017-01-14 +session,2810,2,Chrome 41,68,2018-02-21 +session,2810,3,Internet Explorer 16,103,2017-11-18 +session,2810,4,Internet Explorer 33,71,2017-10-20 +user,2811,Robin,Vella,9 +session,2811,0,Chrome 32,35,2016-05-21 +user,2812,Sydney,Eva,61 +session,2812,0,Internet Explorer 50,76,2018-02-07 +session,2812,1,Chrome 20,50,2016-09-14 +session,2812,2,Internet Explorer 10,6,2017-03-24 +session,2812,3,Internet Explorer 8,37,2019-02-07 +session,2812,4,Firefox 10,106,2017-06-19 +session,2812,5,Internet Explorer 41,84,2018-04-10 +session,2812,6,Safari 34,36,2017-02-04 +session,2812,7,Firefox 50,61,2017-12-11 +user,2813,Bennie,Lourdes,55 +session,2813,0,Firefox 1,59,2017-11-17 +session,2813,1,Internet Explorer 30,112,2017-07-23 +session,2813,2,Safari 43,13,2016-08-04 +session,2813,3,Safari 1,88,2017-04-23 +user,2814,Glen,Eboni,15 +session,2814,0,Firefox 15,100,2018-02-03 +session,2814,1,Internet Explorer 10,15,2016-11-16 +session,2814,2,Safari 39,3,2018-12-31 +session,2814,3,Safari 22,95,2017-02-05 +session,2814,4,Internet Explorer 23,28,2018-04-28 +user,2815,Lacey,Linn,17 +session,2815,0,Internet Explorer 18,24,2017-07-15 +session,2815,1,Internet Explorer 6,1,2018-03-24 +session,2815,2,Firefox 10,116,2018-03-29 +session,2815,3,Firefox 38,30,2017-01-06 +session,2815,4,Safari 23,54,2017-11-29 +session,2815,5,Chrome 28,41,2018-10-22 +session,2815,6,Internet Explorer 24,60,2016-07-11 +session,2815,7,Safari 7,78,2018-08-25 +session,2815,8,Internet Explorer 6,63,2018-04-05 +user,2816,Erasmo,Guillermina,24 +session,2816,0,Internet Explorer 14,24,2018-03-01 +session,2816,1,Firefox 6,66,2018-10-25 +session,2816,2,Firefox 36,54,2017-10-03 +session,2816,3,Safari 29,99,2016-06-21 +session,2816,4,Safari 11,16,2018-10-24 +session,2816,5,Firefox 22,51,2017-02-17 +session,2816,6,Safari 42,77,2016-07-09 +session,2816,7,Internet Explorer 36,29,2018-01-18 +session,2816,8,Chrome 14,77,2017-10-20 +user,2817,Corey,Andrea,75 +session,2817,0,Internet Explorer 29,99,2019-01-09 +session,2817,1,Safari 13,101,2018-10-27 +session,2817,2,Chrome 36,39,2019-01-09 +session,2817,3,Internet Explorer 11,36,2017-12-10 +session,2817,4,Chrome 16,95,2016-11-15 +session,2817,5,Chrome 21,69,2018-09-15 +session,2817,6,Safari 25,117,2016-08-17 +session,2817,7,Firefox 30,66,2018-02-05 +session,2817,8,Internet Explorer 48,94,2017-10-03 +user,2818,Jeanice,Elizabet,79 +session,2818,0,Safari 16,105,2017-09-19 +session,2818,1,Internet Explorer 15,7,2016-10-10 +session,2818,2,Safari 48,97,2017-06-27 +session,2818,3,Firefox 50,95,2017-10-01 +session,2818,4,Internet Explorer 45,92,2018-02-20 +session,2818,5,Safari 3,37,2018-09-04 +session,2818,6,Safari 5,38,2016-06-17 +session,2818,7,Firefox 46,7,2016-05-24 +user,2819,Ena,Serafina,97 +session,2819,0,Chrome 46,7,2017-03-26 +session,2819,1,Chrome 4,35,2016-11-21 +session,2819,2,Firefox 19,64,2016-05-26 +user,2820,Vonnie,Rodney,7 +session,2820,0,Firefox 29,41,2018-03-24 +session,2820,1,Internet Explorer 31,106,2017-06-17 +session,2820,2,Safari 44,27,2017-10-20 +session,2820,3,Internet Explorer 50,114,2017-12-02 +session,2820,4,Chrome 41,5,2016-09-18 +session,2820,5,Internet Explorer 43,97,2016-08-25 +session,2820,6,Chrome 44,118,2017-12-18 +session,2820,7,Firefox 22,49,2018-03-31 +user,2821,Fredericka,Chloe,98 +session,2821,0,Chrome 46,13,2016-12-18 +user,2822,Chadwick,Hazel,75 +session,2822,0,Internet Explorer 35,117,2017-04-14 +session,2822,1,Firefox 50,70,2016-12-13 +session,2822,2,Safari 3,12,2017-06-20 +session,2822,3,Safari 28,33,2016-06-14 +session,2822,4,Safari 7,56,2016-07-12 +session,2822,5,Safari 29,87,2017-07-06 +session,2822,6,Internet Explorer 37,29,2018-06-27 +session,2822,7,Safari 2,16,2017-01-28 +session,2822,8,Firefox 3,60,2017-05-19 +user,2823,Markus,Lorinda,62 +session,2823,0,Chrome 42,104,2018-03-11 +session,2823,1,Chrome 4,80,2017-08-17 +session,2823,2,Chrome 21,6,2019-01-20 +user,2824,Alicia,Denese,17 +session,2824,0,Chrome 7,82,2018-07-23 +session,2824,1,Safari 45,28,2017-09-27 +session,2824,2,Safari 8,106,2016-10-09 +user,2825,Tomoko,Lynetta,61 +session,2825,0,Firefox 9,61,2018-08-15 +session,2825,1,Firefox 50,61,2017-06-26 +session,2825,2,Chrome 32,34,2018-04-10 +session,2825,3,Firefox 39,32,2018-03-08 +session,2825,4,Internet Explorer 1,12,2018-03-28 +session,2825,5,Firefox 34,48,2016-07-15 +session,2825,6,Chrome 1,61,2017-07-02 +session,2825,7,Chrome 21,0,2016-07-05 +session,2825,8,Firefox 35,11,2017-02-06 +session,2825,9,Firefox 9,60,2017-04-10 +user,2826,Kristen,Tommy,44 +session,2826,0,Internet Explorer 23,106,2018-02-10 +session,2826,1,Firefox 42,4,2017-09-23 +session,2826,2,Internet Explorer 26,100,2018-07-09 +session,2826,3,Safari 16,83,2016-06-28 +session,2826,4,Chrome 44,96,2017-11-16 +session,2826,5,Chrome 2,23,2017-10-26 +session,2826,6,Internet Explorer 5,13,2016-11-13 +user,2827,Muoi,Kaylene,57 +session,2827,0,Internet Explorer 44,32,2018-07-15 +session,2827,1,Chrome 9,81,2017-10-15 +session,2827,2,Internet Explorer 3,45,2017-12-26 +session,2827,3,Internet Explorer 37,79,2018-08-20 +session,2827,4,Firefox 21,99,2017-06-22 +session,2827,5,Safari 32,34,2017-11-21 +session,2827,6,Internet Explorer 43,104,2017-02-10 +user,2828,Ryan,Rasheeda,66 +session,2828,0,Chrome 13,117,2017-06-16 +session,2828,1,Firefox 12,101,2017-06-01 +user,2829,Eartha,Latonia,93 +session,2829,0,Internet Explorer 18,5,2017-12-20 +session,2829,1,Firefox 44,103,2018-07-24 +session,2829,2,Internet Explorer 11,18,2016-06-27 +session,2829,3,Safari 37,23,2018-12-22 +session,2829,4,Chrome 30,113,2016-10-29 +session,2829,5,Safari 49,55,2017-10-26 +session,2829,6,Safari 35,71,2018-01-20 +session,2829,7,Chrome 40,54,2018-12-16 +session,2829,8,Firefox 40,49,2016-07-02 +user,2830,Soraya,Belinda,24 +session,2830,0,Internet Explorer 13,3,2016-05-25 +session,2830,1,Safari 9,96,2017-09-25 +user,2831,Enrique,Elwanda,73 +session,2831,0,Safari 21,50,2016-06-14 +session,2831,1,Firefox 27,62,2018-02-24 +session,2831,2,Firefox 15,116,2016-06-05 +user,2832,Dalton,Vania,61 +session,2832,0,Safari 41,101,2018-08-24 +session,2832,1,Firefox 1,21,2018-07-19 +session,2832,2,Safari 14,64,2018-10-26 +session,2832,3,Internet Explorer 49,69,2017-04-12 +session,2832,4,Firefox 41,33,2016-10-10 +session,2832,5,Firefox 9,29,2016-12-04 +session,2832,6,Internet Explorer 10,76,2018-09-10 +user,2833,Sheridan,Paris,87 +session,2833,0,Chrome 48,105,2017-10-26 +session,2833,1,Chrome 1,9,2017-04-16 +session,2833,2,Chrome 11,48,2016-12-15 +session,2833,3,Safari 19,53,2017-08-03 +session,2833,4,Safari 43,90,2018-01-23 +user,2834,Avery,Angel,54 +session,2834,0,Chrome 13,80,2018-11-07 +session,2834,1,Chrome 9,8,2016-08-15 +session,2834,2,Safari 38,91,2018-08-12 +session,2834,3,Safari 26,42,2016-07-09 +session,2834,4,Safari 16,101,2018-11-27 +session,2834,5,Safari 32,73,2018-06-26 +session,2834,6,Internet Explorer 21,11,2016-07-05 +session,2834,7,Firefox 23,16,2016-09-21 +session,2834,8,Internet Explorer 18,23,2017-01-19 +session,2834,9,Safari 25,19,2016-12-11 +user,2835,Clint,Corinne,70 +session,2835,0,Firefox 32,113,2016-11-20 +session,2835,1,Chrome 4,78,2018-11-18 +session,2835,2,Chrome 46,42,2016-05-19 +user,2836,Martha,Genny,4 +session,2836,0,Internet Explorer 16,105,2018-09-11 +session,2836,1,Internet Explorer 41,18,2017-11-18 +session,2836,2,Internet Explorer 43,113,2017-07-27 +session,2836,3,Safari 45,55,2017-04-13 +session,2836,4,Safari 33,3,2017-02-17 +session,2836,5,Safari 1,55,2016-06-17 +session,2836,6,Internet Explorer 4,114,2017-08-16 +user,2837,Latanya,Timmy,18 +session,2837,0,Chrome 45,14,2019-01-23 +session,2837,1,Chrome 13,0,2016-07-11 +session,2837,2,Safari 36,16,2018-02-26 +session,2837,3,Internet Explorer 26,98,2016-08-30 +user,2838,Dusty,Vanetta,24 +session,2838,0,Chrome 33,35,2016-11-06 +session,2838,1,Safari 38,0,2018-09-12 +session,2838,2,Safari 49,91,2017-06-18 +session,2838,3,Safari 20,37,2018-01-08 +user,2839,Iesha,Jennie,11 +session,2839,0,Safari 19,117,2018-01-11 +session,2839,1,Chrome 32,98,2018-11-18 +session,2839,2,Firefox 31,102,2018-04-26 +session,2839,3,Chrome 46,36,2017-01-30 +session,2839,4,Internet Explorer 38,90,2018-09-03 +session,2839,5,Firefox 50,74,2018-09-28 +session,2839,6,Chrome 41,67,2018-07-12 +user,2840,Nicolle,Simone,22 +session,2840,0,Chrome 10,117,2018-03-21 +session,2840,1,Firefox 13,5,2017-09-08 +session,2840,2,Safari 43,58,2016-11-19 +session,2840,3,Firefox 44,90,2016-09-10 +session,2840,4,Firefox 24,78,2016-12-15 +user,2841,Leroy,Susanna,86 +session,2841,0,Chrome 14,23,2017-05-16 +user,2842,Bo,Ashton,25 +session,2842,0,Internet Explorer 14,5,2017-05-06 +session,2842,1,Internet Explorer 12,40,2018-01-01 +session,2842,2,Firefox 43,41,2017-07-02 +session,2842,3,Internet Explorer 47,4,2018-12-06 +session,2842,4,Safari 46,99,2017-10-08 +session,2842,5,Safari 24,40,2016-10-26 +user,2843,Deidre,Marta,34 +session,2843,0,Firefox 23,46,2017-02-10 +session,2843,1,Firefox 35,41,2017-10-28 +session,2843,2,Internet Explorer 43,3,2017-07-01 +session,2843,3,Chrome 3,41,2016-09-26 +user,2844,Art,Jan,13 +session,2844,0,Firefox 23,109,2018-02-21 +session,2844,1,Firefox 7,105,2018-09-30 +session,2844,2,Firefox 33,54,2017-03-26 +session,2844,3,Chrome 11,27,2018-05-26 +session,2844,4,Firefox 26,17,2018-04-11 +session,2844,5,Chrome 30,69,2016-12-27 +session,2844,6,Internet Explorer 33,76,2016-12-19 +session,2844,7,Safari 18,78,2017-07-21 +user,2845,Lloyd,Paulene,68 +session,2845,0,Firefox 39,35,2016-10-04 +session,2845,1,Chrome 7,74,2017-09-15 +session,2845,2,Internet Explorer 50,1,2017-07-30 +session,2845,3,Firefox 19,49,2018-04-01 +session,2845,4,Firefox 9,39,2018-06-08 +session,2845,5,Safari 26,51,2016-10-28 +session,2845,6,Safari 7,18,2017-06-29 +session,2845,7,Chrome 27,37,2017-09-12 +session,2845,8,Internet Explorer 39,7,2016-06-07 +user,2846,Tiana,Eula,13 +session,2846,0,Firefox 13,8,2018-06-20 +session,2846,1,Chrome 35,53,2017-08-11 +session,2846,2,Safari 34,14,2017-03-27 +session,2846,3,Safari 33,90,2016-06-14 +user,2847,Gretta,Ray,27 +session,2847,0,Chrome 26,70,2018-09-04 +session,2847,1,Internet Explorer 6,30,2017-01-17 +session,2847,2,Internet Explorer 5,90,2016-12-13 +session,2847,3,Firefox 9,37,2019-01-04 +session,2847,4,Firefox 35,97,2016-05-26 +user,2848,Raphael,Rima,21 +session,2848,0,Firefox 49,117,2016-09-11 +session,2848,1,Chrome 29,85,2018-08-16 +session,2848,2,Safari 35,34,2018-05-09 +session,2848,3,Safari 25,47,2017-05-24 +session,2848,4,Safari 34,35,2018-08-28 +session,2848,5,Safari 37,45,2016-12-07 +session,2848,6,Firefox 31,23,2017-04-11 +session,2848,7,Firefox 9,114,2016-12-11 +session,2848,8,Firefox 22,0,2018-04-26 +session,2848,9,Internet Explorer 26,68,2017-10-19 +user,2849,Sherman,Emily,89 +session,2849,0,Chrome 43,16,2018-04-02 +session,2849,1,Internet Explorer 48,62,2018-09-08 +session,2849,2,Firefox 27,4,2017-03-24 +session,2849,3,Firefox 2,29,2016-06-14 +session,2849,4,Firefox 49,25,2017-10-16 +session,2849,5,Safari 8,63,2017-07-04 +session,2849,6,Firefox 41,107,2017-05-22 +session,2849,7,Safari 35,27,2016-05-27 +session,2849,8,Safari 4,89,2017-03-20 +session,2849,9,Internet Explorer 27,61,2018-11-02 +user,2850,Lester,Jaime,45 +session,2850,0,Internet Explorer 30,118,2017-11-25 +session,2850,1,Firefox 10,51,2018-04-17 +session,2850,2,Internet Explorer 43,0,2018-07-05 +session,2850,3,Internet Explorer 38,5,2018-07-24 +session,2850,4,Firefox 47,70,2017-09-16 +user,2851,Carolin,Josh,34 +session,2851,0,Firefox 16,42,2018-06-02 +session,2851,1,Internet Explorer 14,51,2017-06-20 +session,2851,2,Chrome 25,88,2017-01-16 +session,2851,3,Chrome 43,53,2017-07-17 +session,2851,4,Firefox 47,75,2017-02-02 +user,2852,Barry,Alvina,48 +session,2852,0,Internet Explorer 19,52,2018-12-09 +session,2852,1,Chrome 43,56,2017-09-02 +session,2852,2,Chrome 25,101,2018-11-26 +session,2852,3,Chrome 29,115,2017-12-23 +session,2852,4,Internet Explorer 1,5,2018-07-26 +session,2852,5,Chrome 23,83,2018-10-06 +session,2852,6,Chrome 3,108,2016-10-20 +session,2852,7,Safari 25,3,2017-04-24 +user,2853,Berry,Sue,86 +session,2853,0,Safari 47,83,2017-01-08 +session,2853,1,Internet Explorer 34,12,2017-02-08 +session,2853,2,Internet Explorer 36,26,2016-08-25 +session,2853,3,Chrome 50,12,2017-04-07 +session,2853,4,Safari 21,38,2018-09-17 +session,2853,5,Internet Explorer 28,99,2018-04-06 +session,2853,6,Safari 16,53,2016-10-06 +session,2853,7,Chrome 16,69,2016-06-21 +session,2853,8,Chrome 28,34,2018-03-03 +session,2853,9,Internet Explorer 43,73,2016-09-05 +user,2854,Kenny,Lanie,76 +session,2854,0,Safari 23,114,2018-09-12 +session,2854,1,Safari 32,98,2017-08-08 +user,2855,Humberto,Waltraud,48 +session,2855,0,Safari 39,83,2016-07-24 +user,2856,Sherilyn,Rory,25 +session,2856,0,Internet Explorer 34,34,2016-12-24 +session,2856,1,Chrome 16,91,2018-11-19 +session,2856,2,Firefox 15,31,2018-07-22 +session,2856,3,Safari 25,61,2019-01-27 +session,2856,4,Chrome 28,22,2017-07-31 +session,2856,5,Safari 25,101,2016-12-01 +session,2856,6,Firefox 43,10,2016-11-28 +user,2857,Setsuko,Cyrstal,13 +session,2857,0,Safari 15,104,2018-06-05 +session,2857,1,Safari 40,39,2017-04-01 +session,2857,2,Internet Explorer 10,95,2016-11-24 +session,2857,3,Internet Explorer 16,8,2017-11-08 +session,2857,4,Internet Explorer 24,1,2016-06-10 +session,2857,5,Safari 5,62,2017-03-17 +user,2858,Garry,Dee,1 +session,2858,0,Chrome 48,62,2017-07-01 +session,2858,1,Chrome 44,71,2016-06-02 +session,2858,2,Firefox 17,71,2018-11-23 +session,2858,3,Internet Explorer 36,23,2016-08-27 +user,2859,Althea,Setsuko,43 +session,2859,0,Chrome 39,34,2016-07-31 +session,2859,1,Chrome 49,85,2016-06-15 +session,2859,2,Internet Explorer 20,45,2019-01-22 +user,2860,Sterling,Lena,27 +session,2860,0,Internet Explorer 2,83,2018-10-15 +session,2860,1,Safari 13,38,2016-05-25 +session,2860,2,Safari 13,87,2018-09-11 +session,2860,3,Firefox 45,66,2017-09-15 +user,2861,Don,Donette,59 +session,2861,0,Internet Explorer 8,117,2016-11-14 +session,2861,1,Internet Explorer 37,103,2016-07-15 +session,2861,2,Safari 49,119,2018-05-07 +session,2861,3,Firefox 6,11,2017-05-03 +user,2862,Virgil,Meryl,50 +session,2862,0,Chrome 10,4,2016-11-12 +session,2862,1,Internet Explorer 42,51,2017-06-17 +session,2862,2,Internet Explorer 46,84,2016-10-26 +session,2862,3,Chrome 23,110,2018-01-21 +session,2862,4,Firefox 35,17,2019-01-24 +user,2863,Perry,Debera,74 +session,2863,0,Chrome 30,23,2018-10-17 +session,2863,1,Chrome 33,77,2018-06-09 +session,2863,2,Firefox 11,66,2018-08-05 +session,2863,3,Chrome 12,29,2017-10-04 +session,2863,4,Safari 15,36,2018-02-13 +session,2863,5,Chrome 34,67,2017-10-04 +session,2863,6,Firefox 6,42,2017-01-14 +session,2863,7,Internet Explorer 40,80,2018-01-15 +user,2864,Brandy,Pricilla,7 +session,2864,0,Internet Explorer 26,65,2016-09-27 +session,2864,1,Firefox 6,28,2018-09-10 +session,2864,2,Chrome 21,87,2017-04-04 +user,2865,Barbar,Kayleigh,37 +session,2865,0,Chrome 9,41,2018-02-11 +session,2865,1,Safari 41,113,2016-12-15 +session,2865,2,Firefox 46,35,2018-02-26 +session,2865,3,Chrome 22,47,2016-08-27 +session,2865,4,Internet Explorer 43,4,2017-06-30 +session,2865,5,Safari 3,57,2018-07-06 +session,2865,6,Internet Explorer 30,93,2018-07-05 +user,2866,Chase,Myesha,30 +session,2866,0,Chrome 45,77,2017-03-17 +session,2866,1,Firefox 10,4,2017-01-09 +user,2867,Desmond,Shane,84 +session,2867,0,Internet Explorer 7,95,2018-05-02 +session,2867,1,Safari 17,37,2017-08-20 +session,2867,2,Safari 44,65,2016-09-23 +session,2867,3,Internet Explorer 5,93,2017-09-15 +user,2868,Eleonor,Eulah,84 +session,2868,0,Chrome 18,23,2018-07-15 +session,2868,1,Firefox 24,44,2016-10-22 +user,2869,Debera,Mallory,87 +session,2869,0,Firefox 3,95,2019-01-21 +session,2869,1,Internet Explorer 23,42,2018-03-21 +session,2869,2,Safari 16,40,2018-01-28 +session,2869,3,Safari 21,24,2017-04-30 +session,2869,4,Safari 29,36,2017-09-02 +session,2869,5,Safari 2,39,2018-08-24 +user,2870,Lasandra,Spring,47 +session,2870,0,Internet Explorer 48,102,2017-12-03 +session,2870,1,Safari 48,91,2017-01-31 +user,2871,Leopoldo,Karolyn,78 +session,2871,0,Firefox 6,2,2018-03-05 +session,2871,1,Safari 9,78,2016-12-31 +session,2871,2,Chrome 10,32,2017-06-19 +user,2872,Kathy,Reina,38 +session,2872,0,Chrome 12,54,2017-05-05 +user,2873,Nigel,Andrea,38 +session,2873,0,Firefox 40,47,2018-10-18 +session,2873,1,Internet Explorer 29,56,2017-03-07 +user,2874,Dannette,Sindy,27 +session,2874,0,Chrome 14,19,2016-07-15 +session,2874,1,Internet Explorer 3,41,2016-12-15 +session,2874,2,Safari 30,66,2018-07-14 +user,2875,Shayla,Amee,18 +session,2875,0,Internet Explorer 14,44,2018-01-17 +session,2875,1,Chrome 48,2,2018-06-10 +session,2875,2,Firefox 34,56,2017-06-17 +user,2876,Felicitas,Cassondra,22 +session,2876,0,Firefox 2,0,2018-05-30 +session,2876,1,Internet Explorer 26,78,2018-07-14 +session,2876,2,Firefox 50,83,2018-07-21 +session,2876,3,Firefox 49,118,2017-07-18 +session,2876,4,Chrome 32,87,2017-01-09 +session,2876,5,Chrome 14,99,2017-07-02 +session,2876,6,Firefox 13,106,2017-09-28 +session,2876,7,Safari 1,119,2018-01-01 +session,2876,8,Firefox 48,64,2018-01-11 +user,2877,Michaela,Jacqualine,91 +session,2877,0,Safari 26,109,2016-08-23 +session,2877,1,Safari 26,67,2018-08-13 +session,2877,2,Firefox 38,74,2017-05-11 +session,2877,3,Safari 27,92,2017-11-04 +session,2877,4,Safari 46,11,2018-10-28 +session,2877,5,Firefox 20,116,2017-06-28 +session,2877,6,Safari 27,42,2017-07-18 +session,2877,7,Firefox 11,115,2018-10-06 +session,2877,8,Chrome 7,18,2017-05-21 +user,2878,Vito,Annika,45 +session,2878,0,Chrome 7,17,2018-06-29 +session,2878,1,Internet Explorer 37,96,2017-08-16 +session,2878,2,Internet Explorer 11,17,2017-06-24 +session,2878,3,Safari 14,113,2016-09-02 +session,2878,4,Internet Explorer 41,91,2018-08-29 +session,2878,5,Internet Explorer 3,2,2018-01-11 +session,2878,6,Safari 49,114,2018-01-15 +session,2878,7,Safari 32,1,2016-05-30 +session,2878,8,Safari 28,104,2017-01-02 +session,2878,9,Chrome 2,44,2017-08-29 +user,2879,Harriet,Nickie,33 +session,2879,0,Safari 32,45,2017-08-17 +session,2879,1,Internet Explorer 21,91,2017-08-14 +session,2879,2,Safari 49,85,2017-12-31 +session,2879,3,Chrome 8,89,2018-11-23 +session,2879,4,Safari 33,55,2018-12-19 +session,2879,5,Safari 13,3,2017-11-23 +user,2880,Donte,Charolette,25 +session,2880,0,Internet Explorer 15,7,2016-06-19 +session,2880,1,Internet Explorer 14,85,2017-05-14 +session,2880,2,Chrome 10,44,2018-01-24 +session,2880,3,Safari 5,7,2017-07-01 +session,2880,4,Chrome 29,117,2018-07-17 +session,2880,5,Chrome 10,70,2017-05-14 +user,2881,Johana,Ardelia,60 +session,2881,0,Firefox 41,117,2016-12-13 +session,2881,1,Firefox 43,88,2018-07-29 +session,2881,2,Safari 31,67,2018-12-02 +session,2881,3,Firefox 43,89,2016-06-04 +session,2881,4,Safari 14,113,2018-05-09 +session,2881,5,Safari 20,55,2017-04-28 +user,2882,Deandre,Troy,37 +session,2882,0,Internet Explorer 25,78,2016-07-06 +session,2882,1,Chrome 14,85,2016-09-05 +user,2883,Robin,Tasia,22 +session,2883,0,Firefox 34,52,2018-03-01 +session,2883,1,Safari 20,101,2018-07-21 +session,2883,2,Firefox 35,66,2017-10-21 +session,2883,3,Internet Explorer 6,55,2018-02-26 +session,2883,4,Firefox 42,1,2016-07-29 +user,2884,Mallie,Palma,50 +session,2884,0,Chrome 45,16,2016-07-20 +user,2885,Cammie,Tilda,45 +session,2885,0,Firefox 36,84,2018-04-18 +session,2885,1,Chrome 22,46,2017-10-16 +session,2885,2,Safari 31,58,2016-10-07 +user,2886,Javier,Gregory,1 +session,2886,0,Internet Explorer 27,117,2017-04-19 +session,2886,1,Safari 5,13,2018-08-16 +session,2886,2,Chrome 4,34,2017-05-17 +session,2886,3,Internet Explorer 38,4,2017-04-26 +session,2886,4,Internet Explorer 28,103,2016-08-06 +user,2887,Jamal,Johnny,86 +session,2887,0,Firefox 34,39,2017-04-28 +session,2887,1,Safari 24,53,2016-12-18 +session,2887,2,Internet Explorer 6,19,2017-12-23 +session,2887,3,Firefox 43,65,2018-09-01 +session,2887,4,Safari 15,114,2017-12-07 +session,2887,5,Safari 31,88,2018-05-14 +session,2887,6,Internet Explorer 35,20,2017-05-20 +session,2887,7,Safari 22,82,2017-10-15 +session,2887,8,Safari 45,116,2018-07-06 +session,2887,9,Safari 5,30,2018-03-18 +user,2888,Adrianne,Rosemary,67 +session,2888,0,Chrome 18,23,2018-10-01 +session,2888,1,Firefox 4,60,2018-05-01 +user,2889,Jerrell,Marc,59 +session,2889,0,Chrome 31,47,2017-01-18 +user,2890,Herschel,Jules,62 +session,2890,0,Internet Explorer 21,112,2018-04-29 +session,2890,1,Safari 16,32,2017-06-11 +user,2891,Vito,Neal,90 +session,2891,0,Internet Explorer 23,81,2017-12-11 +user,2892,Boyd,Kimberly,72 +session,2892,0,Safari 31,77,2017-03-16 +session,2892,1,Firefox 1,94,2017-05-07 +session,2892,2,Firefox 12,41,2017-06-09 +session,2892,3,Internet Explorer 2,40,2018-01-20 +session,2892,4,Chrome 44,107,2018-08-27 +session,2892,5,Internet Explorer 24,117,2017-10-26 +session,2892,6,Safari 49,32,2018-09-18 +session,2892,7,Chrome 20,91,2018-10-18 +user,2893,Jarrod,Wilbert,74 +session,2893,0,Chrome 14,63,2018-02-21 +session,2893,1,Chrome 39,32,2018-07-02 +session,2893,2,Safari 46,45,2018-08-07 +session,2893,3,Chrome 23,100,2018-08-08 +session,2893,4,Chrome 11,118,2018-07-10 +session,2893,5,Firefox 1,81,2018-07-29 +user,2894,Francis,Florrie,30 +session,2894,0,Safari 4,72,2018-12-21 +user,2895,King,Kareem,30 +session,2895,0,Chrome 7,82,2016-09-10 +session,2895,1,Safari 15,40,2017-09-08 +session,2895,2,Firefox 4,103,2018-10-16 +user,2896,Savannah,Susy,76 +session,2896,0,Chrome 24,15,2018-03-07 +session,2896,1,Chrome 9,53,2016-12-09 +user,2897,Frank,Rachal,25 +session,2897,0,Chrome 12,50,2017-08-29 +session,2897,1,Firefox 23,97,2016-11-07 +session,2897,2,Firefox 23,84,2016-06-07 +session,2897,3,Firefox 35,104,2018-08-25 +user,2898,Carlotta,Nigel,52 +session,2898,0,Safari 50,24,2017-02-13 +session,2898,1,Chrome 40,58,2019-01-31 +session,2898,2,Firefox 36,46,2017-12-27 +session,2898,3,Firefox 34,75,2016-08-23 +user,2899,Mariano,Doloris,3 +session,2899,0,Firefox 27,53,2018-02-22 +session,2899,1,Chrome 44,35,2018-07-06 +session,2899,2,Chrome 34,110,2016-08-31 +session,2899,3,Firefox 21,44,2017-02-25 +session,2899,4,Safari 17,56,2016-09-25 +session,2899,5,Internet Explorer 32,44,2016-07-22 +session,2899,6,Safari 5,83,2017-03-22 +user,2900,Lorrine,Retha,32 +session,2900,0,Chrome 11,19,2016-07-08 +user,2901,Burt,Matilde,37 +session,2901,0,Chrome 1,87,2016-10-29 +session,2901,1,Internet Explorer 39,118,2016-06-09 +session,2901,2,Chrome 38,41,2019-01-24 +session,2901,3,Firefox 29,82,2018-10-23 +session,2901,4,Safari 30,67,2018-02-12 +user,2902,Kathi,Glennie,46 +session,2902,0,Firefox 49,38,2017-11-28 +session,2902,1,Internet Explorer 33,97,2017-06-10 +session,2902,2,Internet Explorer 34,0,2017-08-24 +session,2902,3,Firefox 3,53,2018-07-19 +session,2902,4,Internet Explorer 34,73,2017-06-22 +user,2903,Leslie,Ingeborg,94 +session,2903,0,Internet Explorer 38,72,2016-11-08 +session,2903,1,Internet Explorer 50,116,2018-04-20 +session,2903,2,Firefox 24,89,2018-12-05 +session,2903,3,Chrome 48,96,2017-02-25 +session,2903,4,Chrome 39,36,2017-01-02 +session,2903,5,Firefox 20,70,2018-10-29 +session,2903,6,Safari 16,107,2019-02-06 +session,2903,7,Safari 2,89,2018-06-30 +user,2904,Alvin,Lacey,73 +session,2904,0,Safari 47,38,2018-03-28 +session,2904,1,Safari 36,95,2018-01-20 +session,2904,2,Safari 7,82,2018-11-08 +session,2904,3,Firefox 17,117,2018-10-25 +session,2904,4,Safari 34,80,2017-09-04 +user,2905,Alexander,Amiee,68 +session,2905,0,Safari 4,33,2018-11-29 +session,2905,1,Chrome 30,98,2017-11-14 +session,2905,2,Firefox 7,67,2017-10-20 +session,2905,3,Chrome 27,80,2017-01-02 +session,2905,4,Firefox 16,25,2018-02-28 +session,2905,5,Firefox 29,68,2017-05-28 +session,2905,6,Internet Explorer 37,39,2017-06-05 +session,2905,7,Firefox 30,117,2017-12-16 +user,2906,Rich,Eartha,60 +session,2906,0,Firefox 48,119,2017-10-28 +session,2906,1,Internet Explorer 4,36,2018-02-24 +session,2906,2,Firefox 21,33,2016-11-21 +session,2906,3,Chrome 6,54,2017-10-20 +session,2906,4,Firefox 17,32,2018-08-21 +session,2906,5,Firefox 27,87,2019-02-08 +user,2907,Leopoldo,Alisa,32 +session,2907,0,Internet Explorer 7,63,2016-10-06 +session,2907,1,Chrome 10,19,2018-02-21 +session,2907,2,Chrome 40,73,2016-08-25 +user,2908,Kelley,Felipe,75 +session,2908,0,Firefox 24,76,2018-01-02 +session,2908,1,Chrome 38,97,2017-05-13 +session,2908,2,Safari 22,92,2016-07-12 +session,2908,3,Safari 28,71,2018-06-21 +user,2909,Lucrecia,Tiffiny,38 +session,2909,0,Chrome 11,69,2017-06-14 +session,2909,1,Firefox 45,13,2018-05-09 +user,2910,Hal,Valeri,91 +session,2910,0,Safari 8,6,2017-03-14 +session,2910,1,Safari 14,86,2018-07-29 +session,2910,2,Firefox 17,108,2016-09-15 +session,2910,3,Safari 15,94,2017-10-29 +session,2910,4,Internet Explorer 22,111,2018-09-25 +session,2910,5,Safari 44,108,2018-07-24 +user,2911,Elana,Melynda,88 +session,2911,0,Safari 40,64,2017-07-02 +session,2911,1,Safari 39,56,2019-01-14 +session,2911,2,Internet Explorer 44,91,2018-05-01 +session,2911,3,Firefox 28,85,2018-03-01 +session,2911,4,Chrome 2,97,2017-05-14 +session,2911,5,Safari 37,75,2018-02-21 +session,2911,6,Chrome 9,110,2017-09-08 +session,2911,7,Chrome 40,85,2018-12-27 +session,2911,8,Internet Explorer 41,105,2016-07-31 +session,2911,9,Internet Explorer 23,2,2017-08-01 +user,2912,Brooks,Maryrose,36 +session,2912,0,Chrome 27,29,2017-02-20 +session,2912,1,Safari 15,76,2016-06-19 +session,2912,2,Safari 34,1,2017-07-05 +session,2912,3,Firefox 42,4,2016-11-02 +session,2912,4,Internet Explorer 7,14,2018-12-18 +session,2912,5,Internet Explorer 13,23,2018-09-15 +user,2913,Rex,Emmaline,66 +session,2913,0,Chrome 48,75,2016-10-27 +session,2913,1,Internet Explorer 41,94,2018-11-29 +session,2913,2,Chrome 25,25,2018-09-22 +session,2913,3,Internet Explorer 1,89,2017-04-01 +session,2913,4,Firefox 46,65,2018-05-10 +session,2913,5,Firefox 38,119,2016-12-30 +session,2913,6,Internet Explorer 35,1,2018-05-03 +session,2913,7,Firefox 7,104,2018-09-18 +session,2913,8,Chrome 37,85,2016-08-27 +user,2914,Jann,Mason,75 +session,2914,0,Firefox 17,96,2017-01-04 +session,2914,1,Chrome 36,32,2018-04-19 +session,2914,2,Firefox 12,80,2017-01-26 +session,2914,3,Chrome 7,78,2018-11-28 +session,2914,4,Chrome 15,72,2017-10-24 +session,2914,5,Safari 11,24,2017-11-18 +session,2914,6,Internet Explorer 29,33,2018-05-24 +session,2914,7,Safari 39,9,2017-03-05 +session,2914,8,Safari 29,79,2017-06-07 +session,2914,9,Firefox 5,82,2018-06-12 +user,2915,Kyle,Sol,30 +session,2915,0,Safari 3,63,2017-08-03 +user,2916,Audie,Suzi,49 +session,2916,0,Chrome 35,71,2017-01-08 +session,2916,1,Safari 7,12,2017-11-02 +session,2916,2,Safari 22,81,2016-06-02 +session,2916,3,Firefox 34,74,2018-01-01 +session,2916,4,Safari 15,110,2019-01-24 +session,2916,5,Safari 5,71,2017-08-06 +session,2916,6,Internet Explorer 24,17,2019-02-08 +user,2917,Marceline,Odell,70 +session,2917,0,Chrome 20,27,2018-08-11 +session,2917,1,Internet Explorer 12,25,2016-06-25 +session,2917,2,Safari 34,98,2016-09-17 +session,2917,3,Chrome 6,17,2018-01-13 +session,2917,4,Chrome 50,37,2016-10-23 +user,2918,Jaye,Faviola,58 +session,2918,0,Firefox 35,115,2018-05-24 +session,2918,1,Safari 15,57,2018-11-24 +session,2918,2,Firefox 45,26,2019-01-26 +user,2919,Laurence,Heriberto,14 +session,2919,0,Chrome 47,119,2018-08-31 +user,2920,Mitchell,Micha,5 +session,2920,0,Chrome 20,115,2018-02-26 +session,2920,1,Chrome 7,16,2016-11-09 +session,2920,2,Safari 37,117,2018-12-03 +session,2920,3,Safari 7,92,2018-03-31 +session,2920,4,Internet Explorer 22,7,2019-01-04 +user,2921,Bebe,Dwayne,55 +session,2921,0,Safari 3,11,2017-10-27 +user,2922,Leora,Ruthann,66 +session,2922,0,Safari 45,106,2017-06-09 +session,2922,1,Internet Explorer 3,66,2017-05-18 +session,2922,2,Internet Explorer 26,14,2017-04-22 +session,2922,3,Firefox 41,35,2017-07-08 +session,2922,4,Chrome 46,2,2016-08-03 +session,2922,5,Firefox 20,102,2017-06-08 +session,2922,6,Internet Explorer 19,8,2019-01-01 +session,2922,7,Safari 28,60,2017-04-16 +session,2922,8,Chrome 5,11,2018-06-12 +session,2922,9,Internet Explorer 41,113,2017-03-23 +user,2923,Orlando,Max,52 +session,2923,0,Safari 10,28,2017-09-10 +session,2923,1,Safari 35,42,2018-07-26 +session,2923,2,Firefox 17,109,2018-09-25 +session,2923,3,Chrome 5,28,2017-09-27 +session,2923,4,Firefox 19,119,2018-01-05 +session,2923,5,Internet Explorer 11,0,2018-12-21 +session,2923,6,Chrome 28,86,2018-04-29 +user,2924,Junko,Mathilde,77 +session,2924,0,Internet Explorer 40,82,2017-03-13 +session,2924,1,Internet Explorer 6,22,2017-04-09 +user,2925,Jarrod,Melinda,6 +session,2925,0,Safari 10,53,2017-05-17 +session,2925,1,Safari 29,3,2018-11-28 +session,2925,2,Firefox 47,88,2018-10-15 +session,2925,3,Internet Explorer 38,4,2018-04-28 +session,2925,4,Internet Explorer 21,13,2016-09-16 +session,2925,5,Firefox 7,22,2018-12-08 +session,2925,6,Firefox 36,87,2017-10-10 +session,2925,7,Safari 38,100,2018-11-22 +user,2926,Louann,Duncan,17 +session,2926,0,Internet Explorer 29,63,2018-08-06 +session,2926,1,Internet Explorer 10,118,2017-06-05 +session,2926,2,Internet Explorer 36,20,2016-08-16 +session,2926,3,Internet Explorer 28,65,2017-05-21 +session,2926,4,Chrome 15,98,2017-10-29 +user,2927,Keenan,Ellyn,80 +session,2927,0,Safari 27,82,2017-02-12 +session,2927,1,Chrome 16,33,2019-01-14 +session,2927,2,Firefox 25,36,2017-10-14 +user,2928,Moshe,Janita,92 +session,2928,0,Firefox 12,27,2017-08-11 +session,2928,1,Safari 4,112,2018-03-10 +session,2928,2,Safari 20,118,2016-10-01 +session,2928,3,Chrome 21,75,2017-10-19 +session,2928,4,Safari 25,68,2018-08-06 +session,2928,5,Safari 6,96,2016-10-12 +session,2928,6,Safari 34,21,2018-11-23 +user,2929,Ceola,Jacquie,63 +session,2929,0,Chrome 10,45,2017-09-05 +session,2929,1,Firefox 10,111,2019-02-02 +user,2930,Benedict,Laurette,20 +session,2930,0,Chrome 5,46,2017-08-31 +session,2930,1,Chrome 8,86,2016-12-24 +session,2930,2,Firefox 33,41,2017-01-09 +session,2930,3,Firefox 32,16,2017-01-05 +session,2930,4,Firefox 50,50,2018-03-15 +session,2930,5,Firefox 30,68,2017-02-20 +session,2930,6,Firefox 39,82,2017-07-04 +session,2930,7,Firefox 18,4,2016-05-28 +user,2931,Jefferey,Astrid,18 +session,2931,0,Safari 4,90,2017-04-13 +session,2931,1,Chrome 36,49,2017-05-09 +session,2931,2,Safari 35,14,2016-08-06 +user,2932,Lachelle,Gayle,64 +session,2932,0,Internet Explorer 49,91,2019-01-13 +session,2932,1,Chrome 38,68,2016-11-03 +session,2932,2,Internet Explorer 35,16,2018-12-24 +user,2933,Corrinne,Staci,67 +session,2933,0,Internet Explorer 36,10,2017-07-20 +session,2933,1,Firefox 44,109,2016-08-11 +session,2933,2,Safari 40,84,2018-01-25 +user,2934,Corinne,Sherly,70 +session,2934,0,Chrome 40,17,2017-04-27 +session,2934,1,Safari 11,21,2019-01-22 +session,2934,2,Chrome 30,87,2018-04-30 +session,2934,3,Chrome 41,68,2018-05-22 +session,2934,4,Internet Explorer 32,27,2017-08-27 +user,2935,Brandee,Delcie,68 +session,2935,0,Safari 33,47,2018-12-08 +session,2935,1,Chrome 23,59,2017-12-26 +session,2935,2,Firefox 47,87,2018-11-23 +session,2935,3,Firefox 26,95,2019-02-01 +session,2935,4,Internet Explorer 4,16,2018-03-18 +session,2935,5,Safari 24,24,2016-09-17 +session,2935,6,Internet Explorer 19,110,2017-08-25 +user,2936,Millard,Charlesetta,15 +session,2936,0,Safari 5,29,2016-10-12 +session,2936,1,Firefox 50,56,2017-05-07 +session,2936,2,Internet Explorer 40,48,2017-06-06 +session,2936,3,Internet Explorer 18,65,2016-07-28 +session,2936,4,Safari 29,108,2017-10-03 +session,2936,5,Firefox 3,40,2017-05-26 +session,2936,6,Internet Explorer 19,78,2017-07-23 +session,2936,7,Safari 22,66,2019-02-11 +user,2937,Dong,Kristyn,12 +session,2937,0,Safari 44,12,2017-07-13 +session,2937,1,Safari 1,60,2018-04-18 +session,2937,2,Internet Explorer 45,54,2018-03-05 +session,2937,3,Safari 46,11,2017-04-23 +session,2937,4,Safari 44,90,2019-01-11 +session,2937,5,Firefox 20,58,2017-06-04 +session,2937,6,Safari 6,66,2017-09-20 +session,2937,7,Internet Explorer 26,58,2017-12-28 +session,2937,8,Chrome 34,46,2018-10-31 +user,2938,Elanor,Patricia,91 +session,2938,0,Safari 7,56,2018-10-04 +session,2938,1,Safari 34,92,2016-09-26 +session,2938,2,Firefox 9,85,2017-11-06 +session,2938,3,Internet Explorer 7,60,2018-07-28 +session,2938,4,Firefox 15,61,2016-05-25 +session,2938,5,Internet Explorer 14,116,2018-06-06 +session,2938,6,Firefox 7,79,2017-03-07 +session,2938,7,Internet Explorer 45,36,2018-04-20 +user,2939,Clayton,Perry,67 +session,2939,0,Firefox 42,46,2017-09-03 +session,2939,1,Internet Explorer 7,109,2018-02-28 +session,2939,2,Chrome 11,19,2017-06-19 +session,2939,3,Safari 35,23,2016-08-03 +session,2939,4,Internet Explorer 37,118,2016-06-24 +session,2939,5,Chrome 3,102,2016-12-23 +session,2939,6,Firefox 29,6,2018-05-22 +session,2939,7,Internet Explorer 4,75,2016-12-03 +session,2939,8,Internet Explorer 1,31,2017-03-12 +session,2939,9,Chrome 13,100,2018-11-08 +user,2940,Henry,Arlyne,34 +session,2940,0,Chrome 46,111,2018-06-03 +session,2940,1,Internet Explorer 8,61,2019-02-05 +session,2940,2,Chrome 46,7,2018-01-06 +session,2940,3,Firefox 38,36,2017-03-06 +session,2940,4,Chrome 19,92,2018-11-07 +session,2940,5,Chrome 14,7,2018-06-25 +session,2940,6,Chrome 46,114,2016-11-17 +session,2940,7,Safari 35,52,2018-09-17 +session,2940,8,Chrome 25,7,2017-04-12 +user,2941,Franklin,Rodrigo,61 +session,2941,0,Safari 43,19,2017-09-05 +session,2941,1,Firefox 26,61,2018-06-07 +session,2941,2,Chrome 9,93,2017-01-09 +user,2942,Chi,Carmon,87 +session,2942,0,Firefox 4,101,2018-11-02 +session,2942,1,Internet Explorer 2,116,2019-01-27 +session,2942,2,Safari 32,45,2018-11-13 +session,2942,3,Chrome 1,33,2018-12-04 +session,2942,4,Chrome 16,20,2018-12-26 +user,2943,Milo,Particia,59 +session,2943,0,Safari 18,11,2018-07-21 +session,2943,1,Chrome 42,3,2017-05-26 +session,2943,2,Safari 37,84,2017-10-27 +session,2943,3,Safari 47,55,2016-06-13 +session,2943,4,Firefox 43,92,2018-12-27 +user,2944,Perla,Adell,73 +session,2944,0,Firefox 49,66,2018-11-05 +session,2944,1,Safari 13,108,2016-08-28 +session,2944,2,Internet Explorer 4,75,2016-10-29 +user,2945,Tommie,Caryn,26 +session,2945,0,Safari 14,60,2017-09-04 +session,2945,1,Firefox 42,102,2016-12-27 +session,2945,2,Firefox 6,7,2018-09-17 +session,2945,3,Chrome 42,28,2018-07-28 +session,2945,4,Safari 29,75,2017-06-20 +session,2945,5,Internet Explorer 6,18,2018-06-07 +user,2946,Etha,Pearlie,80 +session,2946,0,Internet Explorer 19,113,2016-05-30 +session,2946,1,Internet Explorer 16,42,2016-06-10 +session,2946,2,Chrome 30,74,2017-12-29 +session,2946,3,Firefox 43,91,2016-12-07 +session,2946,4,Firefox 33,91,2017-09-22 +session,2946,5,Safari 16,27,2019-02-06 +session,2946,6,Safari 23,48,2018-08-25 +session,2946,7,Chrome 6,51,2017-09-26 +user,2947,Evelyne,Desire,20 +session,2947,0,Internet Explorer 40,83,2019-01-21 +session,2947,1,Firefox 4,76,2017-12-11 +session,2947,2,Internet Explorer 12,117,2018-06-06 +session,2947,3,Safari 44,47,2016-06-16 +session,2947,4,Safari 41,43,2018-08-14 +session,2947,5,Firefox 43,1,2016-12-05 +session,2947,6,Internet Explorer 47,20,2017-12-09 +session,2947,7,Firefox 32,102,2018-02-02 +session,2947,8,Internet Explorer 24,98,2016-09-19 +session,2947,9,Internet Explorer 17,57,2018-01-28 +user,2948,Lyndsay,Art,54 +session,2948,0,Internet Explorer 1,11,2016-07-15 +session,2948,1,Safari 22,43,2018-10-12 +session,2948,2,Chrome 17,87,2016-10-25 +session,2948,3,Firefox 17,83,2017-10-31 +session,2948,4,Chrome 7,4,2017-08-11 +session,2948,5,Firefox 4,69,2018-12-12 +session,2948,6,Safari 21,66,2017-10-10 +session,2948,7,Internet Explorer 38,21,2017-08-22 +session,2948,8,Internet Explorer 14,61,2018-10-17 +user,2949,Rodolfo,Becki,41 +session,2949,0,Firefox 15,47,2018-10-11 +session,2949,1,Firefox 38,75,2017-02-22 +session,2949,2,Firefox 45,47,2017-05-19 +session,2949,3,Safari 1,9,2017-07-24 +session,2949,4,Chrome 49,58,2016-08-16 +session,2949,5,Internet Explorer 34,102,2016-09-12 +session,2949,6,Internet Explorer 39,112,2018-08-14 +session,2949,7,Safari 47,91,2018-02-08 +session,2949,8,Internet Explorer 46,10,2017-11-02 +user,2950,Leida,Sammy,66 +session,2950,0,Safari 47,95,2017-12-17 +session,2950,1,Firefox 38,119,2018-03-11 +session,2950,2,Safari 36,58,2018-05-25 +session,2950,3,Chrome 9,108,2017-04-13 +session,2950,4,Chrome 32,68,2017-06-15 +session,2950,5,Internet Explorer 44,78,2016-06-28 +session,2950,6,Safari 19,18,2017-02-14 +session,2950,7,Firefox 31,93,2017-12-11 +session,2950,8,Chrome 15,82,2017-02-22 +user,2951,Ezequiel,Adele,81 +session,2951,0,Safari 24,87,2018-02-05 +session,2951,1,Internet Explorer 37,77,2017-09-29 +session,2951,2,Internet Explorer 40,99,2018-01-18 +session,2951,3,Firefox 30,93,2016-09-09 +session,2951,4,Firefox 16,9,2017-08-05 +session,2951,5,Firefox 23,28,2017-05-22 +user,2952,Taylor,Linh,15 +session,2952,0,Internet Explorer 18,73,2017-11-25 +session,2952,1,Internet Explorer 4,64,2017-10-19 +session,2952,2,Safari 7,80,2017-08-08 +session,2952,3,Firefox 19,103,2016-11-20 +session,2952,4,Firefox 47,70,2016-07-26 +user,2953,Clemente,Elmira,78 +session,2953,0,Internet Explorer 1,113,2016-12-12 +session,2953,1,Internet Explorer 39,3,2016-11-07 +user,2954,Delcie,Sheri,87 +session,2954,0,Chrome 20,8,2018-03-13 +session,2954,1,Chrome 29,112,2017-01-30 +session,2954,2,Internet Explorer 40,80,2017-10-26 +session,2954,3,Safari 26,1,2017-04-24 +session,2954,4,Internet Explorer 44,108,2016-10-14 +session,2954,5,Internet Explorer 47,38,2016-11-05 +session,2954,6,Safari 21,110,2017-03-24 +session,2954,7,Firefox 21,49,2016-09-19 +user,2955,Amos,Kraig,86 +session,2955,0,Chrome 40,15,2018-02-01 +session,2955,1,Chrome 24,53,2018-08-19 +session,2955,2,Chrome 34,46,2018-10-09 +session,2955,3,Safari 19,48,2018-04-06 +session,2955,4,Safari 11,32,2018-09-22 +user,2956,Carleen,Kandy,87 +session,2956,0,Firefox 44,102,2018-08-16 +user,2957,Lorenza,Lakita,12 +session,2957,0,Firefox 46,112,2018-09-19 +session,2957,1,Internet Explorer 27,16,2016-08-03 +session,2957,2,Chrome 50,28,2017-12-11 +session,2957,3,Firefox 46,57,2016-10-01 +session,2957,4,Safari 35,1,2018-10-16 +session,2957,5,Firefox 43,16,2016-12-31 +session,2957,6,Safari 25,6,2017-05-31 +session,2957,7,Firefox 14,108,2018-08-29 +session,2957,8,Firefox 41,51,2018-02-12 +user,2958,Delinda,Jolynn,90 +session,2958,0,Internet Explorer 19,83,2017-01-22 +session,2958,1,Firefox 19,16,2018-05-19 +session,2958,2,Firefox 15,73,2018-06-19 +session,2958,3,Safari 8,116,2018-10-10 +session,2958,4,Internet Explorer 40,50,2017-04-26 +user,2959,Salvador,Virgil,54 +session,2959,0,Chrome 15,20,2018-05-16 +session,2959,1,Internet Explorer 18,79,2017-02-27 +session,2959,2,Safari 35,48,2017-12-18 +session,2959,3,Firefox 3,49,2017-12-30 +session,2959,4,Safari 23,56,2017-07-11 +session,2959,5,Safari 45,114,2017-02-05 +session,2959,6,Firefox 18,23,2016-12-05 +session,2959,7,Internet Explorer 5,14,2017-12-07 +session,2959,8,Safari 18,115,2017-12-15 +session,2959,9,Firefox 50,46,2016-12-02 +user,2960,Latarsha,Jayson,73 +session,2960,0,Firefox 4,68,2017-07-12 +session,2960,1,Chrome 6,91,2018-11-25 +session,2960,2,Chrome 12,106,2017-06-27 +user,2961,Fonda,Peter,68 +session,2961,0,Safari 4,42,2018-01-01 +session,2961,1,Safari 18,65,2018-11-02 +session,2961,2,Internet Explorer 31,37,2017-05-09 +session,2961,3,Firefox 18,74,2018-02-20 +session,2961,4,Chrome 4,1,2016-06-27 +session,2961,5,Chrome 13,67,2017-12-01 +session,2961,6,Internet Explorer 41,69,2017-03-25 +session,2961,7,Internet Explorer 27,56,2018-06-01 +session,2961,8,Firefox 21,26,2016-10-04 +session,2961,9,Chrome 34,103,2017-03-14 +user,2962,Adolph,Evonne,33 +session,2962,0,Safari 10,74,2016-10-03 +session,2962,1,Internet Explorer 30,16,2016-11-03 +session,2962,2,Firefox 1,24,2017-05-02 +session,2962,3,Internet Explorer 46,83,2018-04-21 +session,2962,4,Firefox 11,79,2017-12-27 +session,2962,5,Internet Explorer 5,91,2017-02-22 +session,2962,6,Internet Explorer 30,119,2017-04-04 +session,2962,7,Internet Explorer 22,50,2018-01-21 +session,2962,8,Chrome 1,89,2019-01-18 +session,2962,9,Chrome 24,46,2016-07-25 +user,2963,Brock,Clayton,55 +session,2963,0,Chrome 12,39,2017-05-14 +session,2963,1,Firefox 33,26,2017-03-27 +user,2964,Elisha,Carmelo,52 +session,2964,0,Firefox 43,110,2017-02-08 +session,2964,1,Firefox 15,103,2019-02-05 +session,2964,2,Chrome 37,23,2016-07-07 +user,2965,Yvette,Ayana,88 +session,2965,0,Safari 32,25,2018-11-21 +session,2965,1,Safari 43,48,2017-09-13 +session,2965,2,Safari 38,110,2018-11-04 +session,2965,3,Internet Explorer 1,118,2018-02-10 +session,2965,4,Safari 42,37,2017-03-05 +session,2965,5,Safari 47,98,2016-11-15 +session,2965,6,Internet Explorer 28,20,2019-01-06 +session,2965,7,Safari 46,19,2017-12-05 +user,2966,Lizette,Yolande,57 +session,2966,0,Safari 31,89,2017-11-10 +session,2966,1,Safari 4,97,2018-12-03 +session,2966,2,Safari 14,44,2018-12-14 +session,2966,3,Firefox 4,67,2016-10-14 +session,2966,4,Internet Explorer 20,21,2018-03-11 +session,2966,5,Internet Explorer 44,32,2016-12-16 +session,2966,6,Chrome 1,105,2018-07-17 +user,2967,Meghann,Ayesha,82 +session,2967,0,Firefox 24,111,2017-06-20 +user,2968,Jamaal,Kasey,48 +session,2968,0,Internet Explorer 18,12,2016-09-29 +session,2968,1,Firefox 5,11,2018-12-15 +session,2968,2,Chrome 4,42,2016-09-26 +session,2968,3,Internet Explorer 19,74,2016-08-22 +session,2968,4,Safari 18,3,2017-09-10 +session,2968,5,Safari 37,4,2018-01-24 +user,2969,Zachary,June,12 +session,2969,0,Chrome 38,0,2017-12-16 +session,2969,1,Chrome 45,33,2017-11-20 +session,2969,2,Safari 2,57,2016-11-17 +session,2969,3,Firefox 17,4,2018-11-09 +session,2969,4,Chrome 8,85,2017-06-04 +session,2969,5,Firefox 3,83,2016-12-21 +session,2969,6,Chrome 48,101,2019-01-08 +session,2969,7,Firefox 18,88,2018-05-11 +session,2969,8,Internet Explorer 44,11,2016-09-12 +user,2970,Buddy,Shaunda,21 +session,2970,0,Firefox 5,111,2017-04-19 +session,2970,1,Safari 24,118,2017-04-24 +session,2970,2,Internet Explorer 10,53,2016-09-21 +user,2971,Luke,Gwen,81 +session,2971,0,Chrome 34,110,2018-12-04 +session,2971,1,Internet Explorer 4,99,2017-05-18 +session,2971,2,Chrome 9,49,2016-08-13 +user,2972,Erin,Armanda,58 +session,2972,0,Safari 10,70,2017-01-25 +session,2972,1,Safari 13,94,2017-02-09 +session,2972,2,Firefox 20,61,2018-03-29 +session,2972,3,Internet Explorer 8,39,2017-07-25 +session,2972,4,Firefox 5,55,2017-01-17 +session,2972,5,Firefox 12,48,2018-12-25 +session,2972,6,Safari 37,116,2016-10-01 +session,2972,7,Chrome 3,112,2017-07-09 +user,2973,Marti,Tifany,53 +session,2973,0,Firefox 5,32,2018-05-03 +session,2973,1,Chrome 43,73,2018-08-17 +session,2973,2,Chrome 39,24,2018-04-25 +session,2973,3,Firefox 5,101,2017-12-01 +session,2973,4,Internet Explorer 45,59,2018-06-01 +session,2973,5,Internet Explorer 8,64,2019-01-01 +session,2973,6,Firefox 16,60,2016-12-22 +session,2973,7,Chrome 21,26,2017-03-25 +user,2974,Kit,Keeley,24 +session,2974,0,Firefox 11,110,2016-12-15 +session,2974,1,Chrome 30,101,2018-09-16 +user,2975,Garland,Samira,13 +session,2975,0,Internet Explorer 15,64,2018-12-13 +session,2975,1,Internet Explorer 46,43,2017-12-10 +session,2975,2,Safari 30,65,2017-01-09 +session,2975,3,Chrome 37,113,2016-11-18 +session,2975,4,Chrome 7,51,2017-05-12 +session,2975,5,Internet Explorer 19,24,2018-11-27 +user,2976,Lauren,Belinda,61 +session,2976,0,Chrome 24,48,2018-02-22 +session,2976,1,Internet Explorer 12,114,2018-03-25 +session,2976,2,Chrome 6,37,2017-05-08 +session,2976,3,Firefox 29,5,2019-02-08 +session,2976,4,Firefox 8,51,2018-12-30 +session,2976,5,Safari 12,86,2017-11-24 +user,2977,Charita,Kermit,68 +session,2977,0,Safari 1,34,2016-11-10 +user,2978,Emmy,Enola,93 +session,2978,0,Internet Explorer 11,47,2017-12-23 +session,2978,1,Chrome 28,1,2019-01-28 +session,2978,2,Chrome 17,42,2017-01-10 +session,2978,3,Safari 25,85,2016-07-14 +user,2979,Ginny,Alyse,51 +session,2979,0,Safari 21,18,2019-01-25 +session,2979,1,Safari 33,64,2017-06-04 +session,2979,2,Internet Explorer 13,9,2018-11-24 +session,2979,3,Safari 46,5,2017-09-27 +session,2979,4,Chrome 23,45,2018-08-05 +session,2979,5,Safari 1,59,2017-12-29 +user,2980,Twila,Thaddeus,3 +session,2980,0,Firefox 2,13,2017-04-10 +session,2980,1,Safari 33,9,2018-07-23 +session,2980,2,Internet Explorer 9,99,2017-05-31 +session,2980,3,Firefox 29,78,2017-07-05 +session,2980,4,Safari 18,24,2019-02-01 +session,2980,5,Firefox 39,26,2017-09-17 +session,2980,6,Chrome 43,46,2018-07-14 +session,2980,7,Firefox 21,116,2016-07-26 +session,2980,8,Safari 4,8,2016-10-25 +user,2981,Jacqulyn,Lenora,16 +session,2981,0,Chrome 48,93,2017-03-21 +session,2981,1,Safari 5,118,2018-12-22 +session,2981,2,Chrome 11,104,2016-06-14 +session,2981,3,Firefox 1,74,2018-02-13 +session,2981,4,Safari 7,79,2016-08-26 +session,2981,5,Internet Explorer 6,69,2018-02-08 +session,2981,6,Internet Explorer 14,76,2018-08-27 +session,2981,7,Firefox 38,61,2017-10-25 +session,2981,8,Chrome 32,61,2017-10-09 +session,2981,9,Safari 7,96,2016-09-02 +user,2982,Benita,Antony,30 +session,2982,0,Safari 19,52,2017-09-17 +session,2982,1,Internet Explorer 11,106,2017-09-16 +session,2982,2,Firefox 5,75,2017-10-19 +session,2982,3,Firefox 26,92,2017-06-07 +session,2982,4,Firefox 28,96,2018-03-07 +session,2982,5,Internet Explorer 15,52,2016-09-10 +session,2982,6,Firefox 32,94,2018-02-21 +session,2982,7,Internet Explorer 15,6,2017-12-26 +session,2982,8,Internet Explorer 18,57,2018-06-26 +user,2983,Rufus,Tatyana,9 +session,2983,0,Internet Explorer 3,83,2016-12-26 +session,2983,1,Chrome 49,58,2017-05-17 +session,2983,2,Internet Explorer 42,64,2016-12-24 +session,2983,3,Safari 21,10,2018-11-18 +session,2983,4,Chrome 2,60,2017-08-13 +user,2984,Lana,Calista,71 +session,2984,0,Chrome 27,20,2017-01-28 +session,2984,1,Firefox 8,6,2016-12-02 +session,2984,2,Internet Explorer 1,9,2019-01-16 +user,2985,Jacki,Timika,85 +session,2985,0,Firefox 40,3,2018-10-30 +session,2985,1,Internet Explorer 30,8,2018-12-29 +session,2985,2,Safari 40,2,2018-01-14 +session,2985,3,Safari 18,76,2018-01-25 +user,2986,Daisy,Christoper,56 +session,2986,0,Firefox 33,22,2016-12-08 +session,2986,1,Firefox 43,62,2016-10-28 +session,2986,2,Chrome 45,13,2016-06-13 +session,2986,3,Safari 40,65,2017-03-25 +session,2986,4,Chrome 46,29,2017-11-16 +session,2986,5,Internet Explorer 7,12,2017-02-22 +user,2987,Burton,Dong,84 +session,2987,0,Chrome 16,85,2016-11-25 +session,2987,1,Chrome 17,20,2018-09-12 +session,2987,2,Internet Explorer 35,56,2017-04-27 +session,2987,3,Firefox 29,18,2017-12-24 +session,2987,4,Firefox 48,58,2018-04-18 +session,2987,5,Firefox 42,51,2017-12-29 +session,2987,6,Firefox 26,36,2017-09-04 +session,2987,7,Firefox 44,81,2018-12-27 +session,2987,8,Safari 33,67,2017-12-20 +user,2988,Leopoldo,Lane,29 +session,2988,0,Safari 37,57,2017-09-11 +session,2988,1,Safari 32,108,2016-05-20 +session,2988,2,Safari 46,109,2018-09-12 +session,2988,3,Chrome 34,42,2016-10-05 +session,2988,4,Chrome 23,90,2018-10-09 +session,2988,5,Firefox 9,28,2016-07-05 +session,2988,6,Safari 29,40,2018-01-01 +user,2989,Jamey,Birgit,56 +session,2989,0,Firefox 18,93,2017-10-10 +user,2990,Marvis,Joshua,36 +session,2990,0,Firefox 14,62,2018-11-11 +session,2990,1,Safari 37,28,2017-09-19 +session,2990,2,Chrome 47,41,2016-12-21 +user,2991,Carey,Phylicia,33 +session,2991,0,Safari 15,101,2016-08-29 +user,2992,Lazaro,Erik,15 +session,2992,0,Firefox 12,50,2017-09-22 +session,2992,1,Chrome 9,112,2018-05-23 +session,2992,2,Internet Explorer 6,40,2016-08-29 +session,2992,3,Chrome 11,118,2017-01-14 +session,2992,4,Chrome 50,44,2016-11-09 +session,2992,5,Chrome 48,61,2016-07-17 +session,2992,6,Firefox 4,116,2018-02-26 +session,2992,7,Chrome 37,68,2018-01-17 +session,2992,8,Safari 34,52,2017-06-06 +user,2993,Kum,Melaine,4 +session,2993,0,Internet Explorer 39,60,2017-06-04 +session,2993,1,Firefox 28,3,2017-04-12 +session,2993,2,Chrome 49,93,2016-10-22 +session,2993,3,Safari 47,22,2017-12-05 +session,2993,4,Internet Explorer 14,37,2018-12-20 +session,2993,5,Firefox 39,29,2018-10-09 +session,2993,6,Chrome 8,90,2018-06-11 +session,2993,7,Firefox 5,77,2018-11-03 +session,2993,8,Internet Explorer 16,63,2017-01-15 +session,2993,9,Firefox 45,25,2017-11-16 +user,2994,Denna,Elenor,91 +session,2994,0,Internet Explorer 9,72,2017-07-31 +session,2994,1,Internet Explorer 5,77,2018-03-23 +session,2994,2,Chrome 42,100,2019-02-05 +session,2994,3,Internet Explorer 20,119,2018-02-26 +session,2994,4,Firefox 1,103,2018-06-21 +user,2995,Phylis,Emerald,27 +session,2995,0,Internet Explorer 49,101,2016-10-06 +session,2995,1,Firefox 29,83,2016-05-19 +session,2995,2,Safari 32,105,2018-11-07 +session,2995,3,Chrome 42,49,2018-01-18 +session,2995,4,Safari 12,61,2017-03-19 +session,2995,5,Internet Explorer 4,69,2018-06-01 +session,2995,6,Firefox 24,45,2016-10-27 +session,2995,7,Internet Explorer 26,81,2018-11-11 +user,2996,Lauren,Erma,45 +session,2996,0,Chrome 2,83,2018-03-11 +session,2996,1,Firefox 37,58,2017-09-26 +session,2996,2,Safari 26,73,2017-06-07 +session,2996,3,Chrome 38,107,2018-04-16 +session,2996,4,Firefox 33,47,2017-09-03 +session,2996,5,Firefox 31,94,2016-12-16 +session,2996,6,Safari 40,12,2017-12-18 +session,2996,7,Internet Explorer 18,98,2016-07-28 +session,2996,8,Firefox 3,39,2018-08-19 +user,2997,Kesha,Omer,81 +session,2997,0,Firefox 30,25,2019-01-05 +session,2997,1,Internet Explorer 48,29,2017-07-20 +session,2997,2,Chrome 29,42,2019-02-03 +session,2997,3,Firefox 15,85,2017-04-15 +session,2997,4,Safari 10,102,2017-01-30 +session,2997,5,Chrome 43,93,2018-04-13 +user,2998,Risa,Carlena,57 +session,2998,0,Internet Explorer 49,35,2016-09-16 +session,2998,1,Internet Explorer 9,94,2019-02-12 +session,2998,2,Internet Explorer 47,94,2017-07-28 +session,2998,3,Safari 27,23,2018-03-24 +session,2998,4,Internet Explorer 31,21,2017-09-21 +session,2998,5,Internet Explorer 20,76,2018-03-26 +session,2998,6,Chrome 7,116,2017-02-17 +session,2998,7,Chrome 24,116,2017-02-26 +user,2999,Caryl,Theresa,73 +session,2999,0,Internet Explorer 33,37,2017-08-26 +session,2999,1,Internet Explorer 35,36,2017-05-22 +session,2999,2,Internet Explorer 17,44,2018-08-21 +session,2999,3,Chrome 13,116,2016-12-07 +session,2999,4,Safari 40,113,2017-10-28 +session,2999,5,Firefox 17,30,2016-09-14 +session,2999,6,Firefox 9,115,2017-04-29 +session,2999,7,Internet Explorer 10,59,2018-05-15 +user,3000,Vance,Dung,55 +session,3000,0,Safari 33,33,2018-09-12 +session,3000,1,Safari 3,40,2018-01-21 +session,3000,2,Chrome 49,110,2018-01-16 +session,3000,3,Chrome 5,82,2017-09-26 +session,3000,4,Chrome 41,7,2018-03-17 +session,3000,5,Firefox 26,39,2017-09-27 +session,3000,6,Firefox 19,13,2016-08-24 +user,3001,Corine,Jenee,43 +session,3001,0,Safari 32,17,2018-07-17 +session,3001,1,Firefox 21,38,2017-09-07 +session,3001,2,Firefox 13,115,2018-01-18 +session,3001,3,Firefox 46,59,2018-01-01 +user,3002,Valeria,Dominick,37 +session,3002,0,Internet Explorer 35,20,2018-06-14 +user,3003,Hosea,Lois,77 +session,3003,0,Firefox 32,44,2017-01-20 +session,3003,1,Firefox 33,77,2017-05-28 +session,3003,2,Safari 7,39,2018-05-30 +user,3004,Trista,Letitia,67 +session,3004,0,Chrome 44,117,2017-03-05 +session,3004,1,Safari 32,31,2016-11-22 +session,3004,2,Firefox 39,1,2017-01-06 +session,3004,3,Internet Explorer 1,96,2018-05-28 +user,3005,Aide,Ebonie,91 +session,3005,0,Safari 9,19,2018-05-18 +session,3005,1,Firefox 3,37,2018-11-18 +session,3005,2,Safari 6,108,2018-11-14 +session,3005,3,Chrome 18,65,2018-04-29 +session,3005,4,Firefox 39,106,2018-07-20 +session,3005,5,Firefox 11,14,2016-09-20 +session,3005,6,Safari 18,62,2018-04-21 +user,3006,Alla,Lynne,63 +session,3006,0,Chrome 3,11,2016-06-12 +session,3006,1,Firefox 46,26,2017-07-19 +session,3006,2,Chrome 1,100,2017-10-15 +session,3006,3,Internet Explorer 44,58,2018-11-27 +session,3006,4,Chrome 22,6,2016-08-11 +session,3006,5,Internet Explorer 42,61,2018-09-29 +session,3006,6,Chrome 15,1,2018-10-01 +user,3007,Kanisha,Tom,41 +session,3007,0,Chrome 2,4,2016-06-01 +session,3007,1,Safari 29,68,2016-12-28 +session,3007,2,Safari 15,25,2016-12-07 +session,3007,3,Chrome 1,59,2016-10-10 +session,3007,4,Safari 12,112,2018-07-12 +session,3007,5,Safari 1,23,2019-01-10 +session,3007,6,Internet Explorer 31,78,2017-12-10 +session,3007,7,Firefox 23,112,2017-03-18 +user,3008,Gilberto,Charlesetta,94 +session,3008,0,Internet Explorer 45,80,2017-07-07 +session,3008,1,Internet Explorer 47,63,2018-07-25 +session,3008,2,Firefox 22,101,2017-09-23 +session,3008,3,Firefox 37,96,2016-08-25 +user,3009,Lupita,Maile,25 +session,3009,0,Safari 34,100,2018-03-10 +session,3009,1,Internet Explorer 14,61,2018-01-20 +session,3009,2,Firefox 29,68,2017-03-08 +session,3009,3,Internet Explorer 36,106,2016-05-25 +session,3009,4,Safari 7,38,2018-03-23 +session,3009,5,Safari 50,3,2017-09-09 +session,3009,6,Firefox 16,39,2018-06-01 +session,3009,7,Firefox 4,93,2018-10-15 +session,3009,8,Firefox 5,34,2018-07-11 +session,3009,9,Firefox 19,44,2017-08-25 +user,3010,Porfirio,Cristina,28 +session,3010,0,Safari 14,41,2017-12-11 +session,3010,1,Firefox 4,33,2017-04-30 +session,3010,2,Internet Explorer 8,56,2018-11-13 +session,3010,3,Internet Explorer 23,80,2017-02-26 +session,3010,4,Firefox 34,62,2017-11-03 +session,3010,5,Chrome 23,45,2018-05-31 +session,3010,6,Chrome 38,39,2018-12-03 +session,3010,7,Firefox 26,65,2016-11-14 +session,3010,8,Internet Explorer 16,8,2018-11-30 +user,3011,Lavera,Jeffie,75 +session,3011,0,Chrome 47,39,2018-10-05 +session,3011,1,Safari 30,32,2016-10-20 +session,3011,2,Chrome 40,69,2017-11-21 +session,3011,3,Internet Explorer 26,42,2018-07-06 +user,3012,Hosea,Lennie,30 +session,3012,0,Chrome 48,50,2017-12-30 +session,3012,1,Safari 39,6,2017-07-26 +session,3012,2,Chrome 17,6,2017-03-06 +user,3013,Hosea,Margorie,99 +session,3013,0,Safari 10,49,2019-01-20 +session,3013,1,Firefox 46,6,2016-09-18 +session,3013,2,Firefox 48,56,2019-01-08 +session,3013,3,Chrome 50,32,2018-07-22 +session,3013,4,Chrome 12,113,2018-08-05 +session,3013,5,Internet Explorer 40,65,2018-04-12 +session,3013,6,Chrome 42,30,2018-10-03 +session,3013,7,Chrome 37,82,2018-03-06 +session,3013,8,Internet Explorer 17,22,2019-01-07 +session,3013,9,Firefox 37,88,2017-03-06 +user,3014,Rodrigo,Clemente,2 +session,3014,0,Firefox 28,28,2018-04-24 +session,3014,1,Chrome 33,117,2016-08-28 +user,3015,Ellsworth,Margit,45 +session,3015,0,Firefox 37,61,2018-06-02 +session,3015,1,Safari 35,43,2017-07-01 +session,3015,2,Firefox 40,85,2018-08-21 +session,3015,3,Safari 46,54,2017-02-16 +session,3015,4,Safari 2,105,2018-07-29 +session,3015,5,Safari 4,90,2016-06-30 +session,3015,6,Firefox 28,90,2018-12-16 +session,3015,7,Internet Explorer 25,46,2018-08-22 +user,3016,Hung,Curt,1 +session,3016,0,Firefox 6,74,2018-02-11 +session,3016,1,Safari 38,116,2017-09-15 +session,3016,2,Chrome 35,27,2017-12-01 +session,3016,3,Internet Explorer 21,27,2018-12-14 +session,3016,4,Internet Explorer 34,115,2016-10-02 +session,3016,5,Safari 17,69,2018-12-22 +session,3016,6,Firefox 47,19,2017-10-03 +session,3016,7,Internet Explorer 4,103,2016-11-30 +user,3017,Vannessa,Josefine,42 +session,3017,0,Safari 9,103,2018-02-24 +session,3017,1,Chrome 10,6,2017-08-07 +session,3017,2,Firefox 12,108,2017-07-14 +session,3017,3,Internet Explorer 47,75,2018-09-09 +session,3017,4,Internet Explorer 28,87,2018-06-08 +session,3017,5,Internet Explorer 34,108,2018-02-17 +user,3018,Harris,Kristine,15 +session,3018,0,Safari 11,103,2018-01-05 +user,3019,Krystina,Evia,41 +session,3019,0,Firefox 17,41,2018-01-08 +session,3019,1,Firefox 31,68,2018-04-18 +session,3019,2,Firefox 19,41,2017-02-13 +session,3019,3,Chrome 37,114,2018-01-08 +session,3019,4,Internet Explorer 45,70,2017-06-13 +session,3019,5,Firefox 2,62,2018-07-15 +session,3019,6,Internet Explorer 38,99,2017-12-29 +user,3020,Violeta,Willia,14 +session,3020,0,Firefox 23,34,2016-06-17 +session,3020,1,Chrome 15,108,2017-09-24 +session,3020,2,Chrome 31,58,2018-12-02 +session,3020,3,Internet Explorer 11,17,2018-02-05 +session,3020,4,Firefox 11,64,2018-02-12 +user,3021,Rene,Zofia,49 +session,3021,0,Chrome 2,28,2018-02-05 +session,3021,1,Safari 45,81,2016-10-02 +session,3021,2,Firefox 43,33,2017-11-28 +session,3021,3,Internet Explorer 12,12,2018-02-26 +user,3022,Felton,Codi,7 +session,3022,0,Firefox 15,79,2016-09-17 +session,3022,1,Chrome 20,18,2016-05-28 +session,3022,2,Safari 48,88,2017-06-19 +session,3022,3,Safari 12,60,2016-07-07 +session,3022,4,Safari 31,99,2018-04-17 +session,3022,5,Firefox 5,86,2016-07-25 +session,3022,6,Firefox 20,21,2016-11-23 +session,3022,7,Chrome 15,96,2018-07-29 +session,3022,8,Internet Explorer 2,26,2018-12-27 +session,3022,9,Internet Explorer 48,109,2017-04-05 +user,3023,Laurice,Jerilyn,13 +session,3023,0,Internet Explorer 32,116,2018-12-25 +session,3023,1,Chrome 18,65,2016-07-25 +session,3023,2,Chrome 47,86,2016-11-24 +session,3023,3,Firefox 2,15,2016-08-19 +session,3023,4,Chrome 45,68,2019-01-10 +session,3023,5,Chrome 9,88,2017-02-16 +session,3023,6,Chrome 39,57,2018-04-22 +session,3023,7,Chrome 24,103,2017-06-27 +session,3023,8,Safari 11,53,2018-09-04 +session,3023,9,Internet Explorer 47,14,2018-07-17 +user,3024,Marion,Jerald,64 +session,3024,0,Internet Explorer 38,89,2017-08-03 +session,3024,1,Safari 44,82,2017-03-17 +session,3024,2,Chrome 34,29,2017-03-18 +session,3024,3,Safari 11,3,2017-10-06 +session,3024,4,Firefox 19,25,2018-07-09 +session,3024,5,Safari 27,36,2017-05-23 +session,3024,6,Internet Explorer 30,6,2018-09-15 +session,3024,7,Internet Explorer 25,114,2017-10-20 +session,3024,8,Chrome 17,45,2018-04-27 +session,3024,9,Firefox 31,22,2018-02-05 +user,3025,Thurman,Annalisa,86 +session,3025,0,Safari 45,57,2017-09-11 +user,3026,Simonne,Loura,38 +session,3026,0,Firefox 38,73,2016-10-15 +session,3026,1,Safari 27,44,2018-07-23 +session,3026,2,Internet Explorer 50,100,2017-04-01 +session,3026,3,Firefox 45,33,2017-04-07 +session,3026,4,Internet Explorer 23,68,2019-01-11 +session,3026,5,Safari 10,57,2017-03-10 +session,3026,6,Safari 11,53,2018-11-26 +session,3026,7,Internet Explorer 34,1,2017-01-15 +user,3027,Norberto,Katie,51 +session,3027,0,Chrome 44,4,2018-07-05 +session,3027,1,Chrome 24,66,2017-07-27 +session,3027,2,Chrome 41,64,2018-02-20 +session,3027,3,Firefox 46,115,2018-03-30 +user,3028,Demarcus,Timothy,92 +session,3028,0,Internet Explorer 45,18,2017-09-24 +session,3028,1,Firefox 8,75,2018-11-13 +session,3028,2,Internet Explorer 33,33,2017-04-03 +session,3028,3,Internet Explorer 39,35,2018-06-05 +session,3028,4,Safari 14,13,2017-05-10 +user,3029,Sol,Loree,18 +session,3029,0,Firefox 11,58,2018-10-06 +session,3029,1,Firefox 32,42,2017-08-06 +session,3029,2,Firefox 27,85,2018-09-04 +user,3030,Chang,Corinne,33 +session,3030,0,Firefox 23,113,2017-10-22 +session,3030,1,Firefox 13,109,2016-05-22 +user,3031,Eugenio,Nannie,91 +session,3031,0,Chrome 19,75,2017-10-21 +user,3032,Iva,Helga,37 +session,3032,0,Chrome 42,92,2017-09-15 +session,3032,1,Firefox 8,1,2018-06-08 +session,3032,2,Firefox 9,38,2018-11-04 +user,3033,Corie,Donald,61 +session,3033,0,Firefox 9,12,2017-07-15 +session,3033,1,Chrome 47,111,2018-04-06 +session,3033,2,Internet Explorer 38,4,2018-01-18 +user,3034,Adell,Adelina,11 +session,3034,0,Safari 21,23,2018-02-05 +session,3034,1,Chrome 24,82,2018-12-09 +session,3034,2,Safari 42,22,2017-11-12 +session,3034,3,Internet Explorer 27,90,2017-10-16 +session,3034,4,Safari 3,77,2018-10-05 +session,3034,5,Chrome 25,46,2018-07-31 +session,3034,6,Firefox 7,93,2018-06-14 +session,3034,7,Safari 5,8,2018-06-24 +session,3034,8,Internet Explorer 10,28,2017-01-20 +user,3035,Raylene,Bibi,4 +session,3035,0,Chrome 22,37,2017-07-14 +session,3035,1,Safari 10,45,2019-01-29 +session,3035,2,Chrome 13,79,2016-09-17 +user,3036,Holley,Sanjuanita,61 +session,3036,0,Chrome 24,3,2018-04-29 +session,3036,1,Firefox 36,75,2017-11-10 +session,3036,2,Firefox 42,10,2018-06-14 +session,3036,3,Firefox 47,57,2017-11-07 +session,3036,4,Internet Explorer 39,99,2017-07-29 +session,3036,5,Internet Explorer 34,41,2017-06-06 +session,3036,6,Safari 13,30,2016-07-27 +session,3036,7,Safari 40,54,2017-02-01 +session,3036,8,Safari 45,112,2016-06-12 +session,3036,9,Internet Explorer 11,23,2017-03-28 +user,3037,Jarrod,Nicholle,56 +session,3037,0,Internet Explorer 2,66,2018-04-06 +session,3037,1,Chrome 46,69,2016-05-28 +session,3037,2,Chrome 19,93,2016-09-27 +session,3037,3,Chrome 17,44,2017-05-19 +session,3037,4,Firefox 26,43,2016-06-30 +session,3037,5,Firefox 38,97,2017-05-13 +user,3038,Enola,Tobias,36 +session,3038,0,Safari 31,10,2016-08-20 +session,3038,1,Safari 17,48,2017-06-25 +session,3038,2,Internet Explorer 32,71,2017-06-22 +session,3038,3,Chrome 26,87,2017-09-07 +session,3038,4,Firefox 40,12,2016-08-10 +session,3038,5,Internet Explorer 7,107,2017-11-02 +session,3038,6,Firefox 17,75,2018-07-18 +user,3039,Buddy,Yajaira,90 +session,3039,0,Internet Explorer 45,102,2018-11-04 +session,3039,1,Safari 35,49,2017-11-24 +session,3039,2,Safari 18,106,2017-07-16 +session,3039,3,Firefox 15,61,2016-07-28 +session,3039,4,Chrome 25,23,2018-01-22 +user,3040,Ronald,Margareta,76 +session,3040,0,Chrome 33,59,2018-09-01 +user,3041,Norbert,Shonna,7 +session,3041,0,Safari 39,119,2017-12-09 +session,3041,1,Chrome 12,34,2018-03-31 +session,3041,2,Safari 9,101,2017-11-08 +session,3041,3,Safari 3,49,2017-02-22 +user,3042,Chi,Frieda,11 +session,3042,0,Chrome 18,47,2016-05-30 +session,3042,1,Safari 31,88,2016-09-03 +session,3042,2,Internet Explorer 37,111,2017-07-16 +session,3042,3,Internet Explorer 47,55,2017-10-26 +session,3042,4,Chrome 8,57,2016-10-16 +session,3042,5,Safari 32,103,2017-09-13 +session,3042,6,Chrome 43,70,2018-05-20 +session,3042,7,Chrome 12,2,2018-05-28 +user,3043,Stan,Laurine,33 +session,3043,0,Firefox 34,54,2016-06-11 +session,3043,1,Safari 15,85,2017-12-23 +session,3043,2,Internet Explorer 22,74,2018-09-28 +session,3043,3,Firefox 42,81,2018-08-01 +session,3043,4,Chrome 26,87,2017-04-02 +user,3044,Joana,Jolie,55 +session,3044,0,Internet Explorer 19,8,2017-07-31 +session,3044,1,Internet Explorer 23,88,2018-08-17 +session,3044,2,Safari 5,48,2016-12-20 +session,3044,3,Firefox 9,60,2018-12-13 +session,3044,4,Firefox 40,7,2016-07-19 +session,3044,5,Internet Explorer 32,89,2016-07-01 +session,3044,6,Internet Explorer 38,103,2016-09-09 +session,3044,7,Chrome 2,93,2017-08-26 +user,3045,Chrystal,Dann,80 +session,3045,0,Internet Explorer 37,59,2018-12-31 +session,3045,1,Safari 11,58,2018-05-19 +session,3045,2,Safari 42,71,2018-04-09 +session,3045,3,Internet Explorer 47,28,2016-06-22 +session,3045,4,Firefox 33,99,2018-01-03 +session,3045,5,Firefox 44,103,2018-09-23 +session,3045,6,Safari 13,117,2018-07-28 +user,3046,Freddie,Zachery,20 +session,3046,0,Internet Explorer 20,103,2018-03-31 +session,3046,1,Firefox 19,41,2018-09-14 +session,3046,2,Chrome 46,37,2018-08-03 +session,3046,3,Firefox 30,31,2018-10-16 +session,3046,4,Chrome 5,73,2018-01-19 +session,3046,5,Internet Explorer 32,15,2017-05-13 +session,3046,6,Safari 43,117,2017-06-20 +session,3046,7,Internet Explorer 32,58,2017-08-14 +session,3046,8,Internet Explorer 34,93,2017-07-10 +session,3046,9,Firefox 5,98,2018-09-20 +user,3047,Allen,Shakira,92 +session,3047,0,Firefox 39,90,2018-06-16 +session,3047,1,Chrome 12,50,2017-09-22 +session,3047,2,Chrome 37,5,2017-10-18 +session,3047,3,Safari 15,29,2017-08-24 +session,3047,4,Chrome 35,12,2018-04-07 +session,3047,5,Safari 41,89,2018-06-04 +session,3047,6,Chrome 17,81,2017-04-15 +session,3047,7,Internet Explorer 35,19,2016-08-31 +session,3047,8,Safari 38,110,2016-12-09 +session,3047,9,Chrome 11,68,2016-06-09 +user,3048,Teddy,Jeremy,47 +session,3048,0,Chrome 7,101,2016-07-17 +session,3048,1,Chrome 43,118,2017-02-03 +user,3049,Boyce,Lesa,26 +session,3049,0,Chrome 5,84,2017-12-17 +session,3049,1,Internet Explorer 46,24,2018-12-29 +session,3049,2,Chrome 3,72,2016-10-14 +user,3050,Ed,Tomika,26 +session,3050,0,Chrome 1,48,2018-07-03 +session,3050,1,Chrome 34,92,2018-04-04 +session,3050,2,Chrome 5,87,2019-02-04 +user,3051,Horace,Susann,30 +session,3051,0,Firefox 4,70,2017-09-20 +session,3051,1,Firefox 16,63,2018-08-16 +session,3051,2,Internet Explorer 31,85,2016-12-24 +session,3051,3,Chrome 31,15,2016-10-11 +session,3051,4,Firefox 24,114,2017-05-01 +session,3051,5,Safari 38,29,2017-12-15 +session,3051,6,Firefox 15,67,2018-03-09 +session,3051,7,Firefox 41,15,2017-07-15 +session,3051,8,Internet Explorer 28,46,2017-08-20 +user,3052,Sidney,Darnell,62 +session,3052,0,Internet Explorer 27,13,2017-08-06 +session,3052,1,Safari 47,109,2018-04-06 +session,3052,2,Chrome 41,34,2017-08-16 +session,3052,3,Safari 44,108,2018-11-03 +session,3052,4,Chrome 25,10,2018-03-11 +session,3052,5,Firefox 7,59,2017-09-29 +session,3052,6,Internet Explorer 33,5,2016-11-08 +session,3052,7,Safari 45,45,2017-02-16 +user,3053,Mariko,Arie,75 +session,3053,0,Chrome 41,22,2016-07-25 +session,3053,1,Safari 26,118,2018-07-11 +session,3053,2,Chrome 41,82,2017-10-13 +session,3053,3,Firefox 15,26,2018-06-12 +session,3053,4,Firefox 36,18,2018-10-26 +session,3053,5,Internet Explorer 3,4,2017-02-14 +session,3053,6,Internet Explorer 36,30,2017-01-08 +session,3053,7,Chrome 8,89,2019-01-28 +session,3053,8,Safari 38,4,2016-12-12 +session,3053,9,Internet Explorer 23,41,2017-08-03 +user,3054,Gene,Sunday,60 +session,3054,0,Internet Explorer 25,27,2017-06-14 +session,3054,1,Chrome 18,0,2017-10-19 +session,3054,2,Chrome 21,17,2016-07-26 +session,3054,3,Internet Explorer 29,74,2017-01-11 +session,3054,4,Internet Explorer 42,32,2016-10-09 +session,3054,5,Chrome 17,15,2017-02-06 +session,3054,6,Internet Explorer 8,98,2017-12-01 +session,3054,7,Firefox 43,103,2018-09-14 +user,3055,Elden,Lena,13 +session,3055,0,Internet Explorer 21,29,2017-05-16 +session,3055,1,Safari 12,53,2016-08-07 +session,3055,2,Firefox 35,76,2018-10-22 +session,3055,3,Chrome 23,37,2017-02-18 +session,3055,4,Internet Explorer 38,80,2016-10-26 +session,3055,5,Safari 46,17,2018-04-06 +session,3055,6,Safari 23,48,2018-03-06 +session,3055,7,Chrome 18,56,2017-06-09 +session,3055,8,Chrome 21,109,2018-11-30 +session,3055,9,Firefox 40,110,2016-08-28 +user,3056,Marisha,Karie,45 +session,3056,0,Firefox 50,30,2018-12-01 +session,3056,1,Firefox 29,95,2018-02-02 +session,3056,2,Chrome 49,33,2018-04-30 +user,3057,Dylan,Riva,32 +session,3057,0,Internet Explorer 25,101,2018-11-30 +session,3057,1,Internet Explorer 16,89,2018-04-21 +session,3057,2,Chrome 13,17,2016-06-19 +user,3058,Sheron,Tilda,71 +session,3058,0,Firefox 50,64,2018-02-27 +session,3058,1,Firefox 42,44,2017-01-30 +session,3058,2,Firefox 32,75,2017-09-08 +session,3058,3,Safari 13,5,2017-03-03 +session,3058,4,Chrome 3,106,2018-01-27 +session,3058,5,Internet Explorer 1,20,2019-02-06 +session,3058,6,Firefox 32,7,2016-10-02 +user,3059,Son,Lisette,61 +session,3059,0,Chrome 8,110,2018-10-05 +session,3059,1,Internet Explorer 5,44,2017-12-14 +session,3059,2,Chrome 43,103,2019-01-24 +session,3059,3,Safari 37,23,2019-01-30 +session,3059,4,Chrome 17,35,2018-04-24 +user,3060,Alfredo,Hanh,77 +session,3060,0,Safari 21,64,2016-12-24 +session,3060,1,Internet Explorer 48,60,2019-01-23 +session,3060,2,Internet Explorer 28,106,2019-01-02 +user,3061,Mechelle,Isaura,5 +session,3061,0,Chrome 41,26,2017-01-19 +session,3061,1,Internet Explorer 27,58,2018-06-15 +session,3061,2,Firefox 23,109,2016-11-02 +session,3061,3,Chrome 44,22,2017-06-24 +session,3061,4,Chrome 24,83,2016-09-20 +session,3061,5,Chrome 31,15,2017-01-03 +session,3061,6,Safari 50,100,2018-01-05 +session,3061,7,Internet Explorer 19,66,2017-06-01 +user,3062,Cordia,Maxine,35 +session,3062,0,Safari 11,35,2016-10-19 +session,3062,1,Firefox 41,3,2016-06-25 +session,3062,2,Safari 17,31,2018-05-07 +session,3062,3,Internet Explorer 9,71,2017-03-10 +session,3062,4,Chrome 37,24,2017-06-16 +user,3063,Julian,Letha,9 +session,3063,0,Firefox 9,64,2019-01-24 +session,3063,1,Firefox 39,81,2017-03-15 +session,3063,2,Safari 46,14,2018-01-19 +session,3063,3,Internet Explorer 25,91,2017-03-05 +session,3063,4,Chrome 12,42,2016-12-14 +user,3064,Lyndsay,Myrtis,21 +session,3064,0,Internet Explorer 21,8,2018-04-06 +session,3064,1,Chrome 48,79,2018-09-16 +user,3065,Petronila,Karol,42 +session,3065,0,Chrome 9,36,2018-08-28 +session,3065,1,Internet Explorer 16,1,2016-07-28 +session,3065,2,Firefox 38,53,2018-04-25 +session,3065,3,Chrome 11,90,2016-11-24 +session,3065,4,Safari 42,11,2018-01-04 +session,3065,5,Chrome 1,30,2016-12-26 +session,3065,6,Firefox 4,99,2018-10-24 +session,3065,7,Chrome 19,70,2016-09-03 +user,3066,Milo,Kyong,24 +session,3066,0,Internet Explorer 5,89,2018-11-30 +session,3066,1,Safari 11,0,2017-04-06 +session,3066,2,Firefox 31,49,2018-02-09 +session,3066,3,Internet Explorer 25,53,2017-03-27 +session,3066,4,Chrome 20,87,2018-08-29 +user,3067,Ozzie,Antwan,19 +session,3067,0,Internet Explorer 20,77,2018-05-03 +session,3067,1,Internet Explorer 25,37,2018-08-20 +session,3067,2,Internet Explorer 46,49,2017-04-24 +session,3067,3,Chrome 25,67,2016-08-06 +session,3067,4,Firefox 39,11,2018-08-23 +session,3067,5,Internet Explorer 32,109,2017-10-26 +session,3067,6,Chrome 45,71,2016-10-17 +session,3067,7,Chrome 13,84,2018-07-20 +session,3067,8,Safari 35,100,2016-12-13 +user,3068,Ruthann,Reagan,2 +session,3068,0,Safari 35,38,2018-11-23 +session,3068,1,Firefox 25,21,2016-05-24 +session,3068,2,Internet Explorer 4,14,2017-04-28 +session,3068,3,Internet Explorer 32,23,2016-10-04 +user,3069,Tamiko,Nila,87 +session,3069,0,Chrome 45,55,2018-07-17 +session,3069,1,Internet Explorer 37,8,2016-12-02 +session,3069,2,Internet Explorer 31,22,2017-09-26 +session,3069,3,Internet Explorer 7,3,2017-07-09 +session,3069,4,Chrome 3,93,2017-06-18 +session,3069,5,Chrome 30,61,2018-07-16 +session,3069,6,Internet Explorer 47,38,2018-02-05 +session,3069,7,Chrome 29,94,2017-10-21 +user,3070,Abe,Lindy,67 +session,3070,0,Firefox 29,49,2016-11-16 +session,3070,1,Chrome 2,35,2018-12-09 +session,3070,2,Safari 49,52,2017-06-06 +session,3070,3,Chrome 23,11,2016-07-25 +session,3070,4,Firefox 9,40,2018-03-28 +user,3071,Simon,Pearl,28 +session,3071,0,Internet Explorer 12,0,2018-10-25 +session,3071,1,Firefox 33,75,2016-11-02 +session,3071,2,Firefox 9,19,2017-04-03 +session,3071,3,Safari 4,109,2016-09-30 +session,3071,4,Safari 11,85,2018-11-22 +session,3071,5,Safari 46,78,2018-03-14 +session,3071,6,Internet Explorer 41,41,2017-01-21 +session,3071,7,Chrome 35,58,2018-03-21 +session,3071,8,Safari 45,115,2016-06-25 +session,3071,9,Firefox 5,92,2018-07-24 +user,3072,Li,Dave,96 +session,3072,0,Safari 15,84,2017-01-25 +session,3072,1,Chrome 19,55,2018-05-18 +session,3072,2,Chrome 50,84,2017-03-29 +session,3072,3,Firefox 50,97,2017-08-26 +session,3072,4,Safari 4,62,2016-08-18 +session,3072,5,Internet Explorer 15,94,2017-09-14 +session,3072,6,Firefox 45,14,2016-08-31 +session,3072,7,Firefox 2,76,2019-02-02 +user,3073,Christa,Marcel,33 +session,3073,0,Safari 38,17,2018-09-22 +session,3073,1,Firefox 18,43,2017-03-27 +session,3073,2,Safari 41,54,2018-02-28 +user,3074,Jaye,Chara,45 +session,3074,0,Firefox 10,36,2018-05-11 +session,3074,1,Chrome 14,14,2019-01-04 +user,3075,Elida,Lorean,87 +session,3075,0,Chrome 15,111,2016-08-12 +session,3075,1,Firefox 31,112,2016-12-07 +user,3076,Arnold,Nicolle,11 +session,3076,0,Internet Explorer 18,117,2018-08-27 +session,3076,1,Chrome 12,6,2017-12-17 +user,3077,Heather,Sang,28 +session,3077,0,Safari 43,76,2017-03-21 +session,3077,1,Safari 40,28,2018-06-16 +session,3077,2,Chrome 18,101,2019-01-21 +session,3077,3,Internet Explorer 43,84,2018-03-23 +session,3077,4,Safari 5,66,2017-11-23 +session,3077,5,Firefox 31,51,2018-11-21 +session,3077,6,Internet Explorer 11,95,2018-03-18 +session,3077,7,Internet Explorer 30,107,2017-09-17 +session,3077,8,Firefox 23,87,2018-04-06 +user,3078,Teofila,Aurore,15 +session,3078,0,Chrome 8,65,2017-01-16 +session,3078,1,Firefox 35,33,2017-03-24 +session,3078,2,Chrome 46,41,2016-10-18 +session,3078,3,Safari 26,61,2017-06-12 +session,3078,4,Chrome 21,114,2018-09-27 +session,3078,5,Chrome 34,63,2016-09-06 +session,3078,6,Internet Explorer 14,85,2018-06-08 +session,3078,7,Internet Explorer 45,109,2018-12-15 +session,3078,8,Internet Explorer 4,95,2016-08-13 +user,3079,Orlando,Elia,45 +session,3079,0,Internet Explorer 25,107,2017-11-04 +session,3079,1,Firefox 50,13,2016-09-01 +session,3079,2,Chrome 45,9,2016-08-25 +session,3079,3,Chrome 42,28,2018-09-20 +session,3079,4,Internet Explorer 4,20,2018-10-19 +session,3079,5,Safari 48,18,2017-03-11 +session,3079,6,Safari 5,64,2017-10-10 +user,3080,Oscar,Krystin,53 +session,3080,0,Firefox 28,80,2019-01-22 +session,3080,1,Firefox 2,61,2016-07-30 +session,3080,2,Firefox 28,89,2018-02-05 +session,3080,3,Chrome 35,55,2017-03-19 +user,3081,Tammi,Renaldo,2 +session,3081,0,Chrome 47,48,2018-06-21 +session,3081,1,Safari 41,42,2016-06-22 +session,3081,2,Chrome 20,91,2018-08-06 +session,3081,3,Firefox 43,54,2019-01-21 +session,3081,4,Firefox 24,36,2016-08-10 +user,3082,Clemente,Augustina,37 +session,3082,0,Chrome 4,82,2016-10-05 +session,3082,1,Chrome 45,90,2018-07-07 +session,3082,2,Firefox 2,115,2017-01-26 +session,3082,3,Chrome 14,108,2016-11-25 +user,3083,Tameika,Judy,99 +session,3083,0,Chrome 39,13,2018-06-23 +session,3083,1,Chrome 46,105,2016-11-21 +session,3083,2,Firefox 34,0,2018-06-27 +session,3083,3,Chrome 29,73,2016-11-17 +user,3084,Bennett,Barbie,76 +session,3084,0,Firefox 39,41,2016-08-19 +session,3084,1,Safari 18,53,2019-02-04 +session,3084,2,Chrome 48,98,2017-12-18 +session,3084,3,Internet Explorer 2,37,2018-07-31 +user,3085,Guy,Machelle,72 +session,3085,0,Chrome 13,52,2018-12-13 +session,3085,1,Chrome 40,114,2018-06-15 +session,3085,2,Chrome 16,55,2017-01-08 +user,3086,Robt,Jacalyn,37 +session,3086,0,Firefox 27,101,2018-04-28 +session,3086,1,Chrome 19,114,2016-08-30 +user,3087,Loree,Jolynn,54 +session,3087,0,Chrome 27,92,2017-09-23 +session,3087,1,Firefox 9,69,2016-06-13 +session,3087,2,Chrome 29,80,2017-08-19 +session,3087,3,Firefox 48,24,2017-08-07 +session,3087,4,Safari 15,81,2017-11-10 +user,3088,Mike,Marylou,58 +session,3088,0,Safari 35,114,2017-11-23 +session,3088,1,Safari 8,12,2018-09-14 +session,3088,2,Firefox 22,91,2017-04-23 +session,3088,3,Chrome 40,4,2017-05-18 +session,3088,4,Safari 5,16,2017-04-25 +session,3088,5,Chrome 38,81,2017-02-04 +session,3088,6,Safari 14,91,2018-02-01 +session,3088,7,Chrome 7,87,2017-09-16 +session,3088,8,Firefox 5,40,2016-09-26 +session,3088,9,Chrome 10,54,2017-12-23 +user,3089,Malisa,Odell,18 +session,3089,0,Firefox 14,45,2016-12-10 +session,3089,1,Internet Explorer 17,27,2018-06-26 +session,3089,2,Internet Explorer 48,48,2016-12-25 +session,3089,3,Chrome 24,5,2017-03-29 +session,3089,4,Safari 33,50,2017-11-07 +session,3089,5,Firefox 6,109,2017-10-18 +session,3089,6,Firefox 16,98,2017-12-31 +session,3089,7,Firefox 36,81,2016-07-26 +user,3090,Derrick,Dreama,2 +session,3090,0,Firefox 11,9,2017-09-08 +session,3090,1,Firefox 45,33,2017-01-17 +user,3091,Kassandra,Dan,96 +session,3091,0,Chrome 27,11,2018-05-03 +session,3091,1,Safari 48,103,2018-07-23 +session,3091,2,Firefox 47,67,2017-11-21 +session,3091,3,Internet Explorer 11,34,2018-02-03 +session,3091,4,Chrome 26,108,2017-04-05 +session,3091,5,Firefox 44,30,2017-06-30 +session,3091,6,Internet Explorer 2,5,2018-04-25 +session,3091,7,Chrome 41,76,2018-09-21 +session,3091,8,Safari 3,91,2016-09-18 +session,3091,9,Safari 30,108,2017-02-15 +user,3092,Wilson,Tarah,41 +session,3092,0,Firefox 5,55,2017-02-23 +session,3092,1,Firefox 49,48,2016-11-14 +session,3092,2,Internet Explorer 41,64,2016-12-06 +session,3092,3,Internet Explorer 25,8,2017-02-24 +user,3093,Alden,Agripina,43 +session,3093,0,Chrome 16,36,2016-10-09 +session,3093,1,Chrome 28,97,2018-03-25 +session,3093,2,Firefox 16,47,2017-07-19 +session,3093,3,Internet Explorer 12,91,2017-12-21 +session,3093,4,Internet Explorer 26,46,2018-11-13 +session,3093,5,Chrome 4,116,2018-04-18 +session,3093,6,Chrome 32,55,2019-01-14 +session,3093,7,Internet Explorer 28,65,2018-08-19 +session,3093,8,Safari 35,74,2016-09-27 +session,3093,9,Firefox 43,119,2018-01-30 +user,3094,Cary,Cara,87 +session,3094,0,Internet Explorer 26,46,2018-09-18 +session,3094,1,Chrome 24,32,2019-01-15 +session,3094,2,Chrome 20,95,2016-06-06 +user,3095,Vanessa,Donald,35 +session,3095,0,Chrome 23,34,2017-01-07 +session,3095,1,Internet Explorer 21,65,2018-02-01 +session,3095,2,Safari 38,97,2016-06-25 +session,3095,3,Internet Explorer 41,98,2018-01-09 +session,3095,4,Safari 23,18,2016-10-05 +session,3095,5,Chrome 43,117,2017-11-17 +user,3096,Eddy,Monika,19 +session,3096,0,Chrome 38,100,2018-07-13 +session,3096,1,Safari 24,0,2019-01-06 +session,3096,2,Safari 20,107,2016-11-21 +session,3096,3,Chrome 36,49,2016-05-26 +session,3096,4,Safari 50,2,2017-12-15 +session,3096,5,Internet Explorer 41,8,2018-12-22 +session,3096,6,Chrome 24,16,2018-12-23 +session,3096,7,Internet Explorer 22,108,2016-10-24 +session,3096,8,Chrome 20,9,2017-07-06 +session,3096,9,Internet Explorer 44,31,2018-03-24 +user,3097,Carey,Tracee,78 +session,3097,0,Internet Explorer 12,47,2016-12-07 +session,3097,1,Safari 32,78,2016-10-28 +session,3097,2,Firefox 31,25,2017-06-09 +session,3097,3,Safari 8,103,2018-08-19 +session,3097,4,Internet Explorer 10,55,2018-11-06 +session,3097,5,Chrome 27,53,2018-06-19 +session,3097,6,Chrome 3,44,2017-11-17 +session,3097,7,Firefox 33,80,2017-05-10 +session,3097,8,Safari 5,98,2017-06-25 +session,3097,9,Firefox 40,95,2017-04-29 +user,3098,Norris,Sunny,41 +session,3098,0,Chrome 15,106,2018-02-09 +session,3098,1,Firefox 25,102,2018-03-19 +session,3098,2,Safari 49,46,2017-10-16 +session,3098,3,Internet Explorer 48,59,2016-07-16 +session,3098,4,Safari 15,55,2018-10-18 +session,3098,5,Chrome 10,93,2016-08-14 +session,3098,6,Internet Explorer 8,100,2016-06-09 +session,3098,7,Firefox 49,30,2018-01-17 +user,3099,Luvenia,Inger,79 +session,3099,0,Safari 13,56,2016-08-08 +session,3099,1,Firefox 48,30,2017-03-31 +session,3099,2,Internet Explorer 19,113,2016-10-05 +session,3099,3,Internet Explorer 2,70,2017-07-04 +session,3099,4,Safari 45,38,2017-08-30 +session,3099,5,Chrome 40,17,2017-08-22 +session,3099,6,Internet Explorer 30,56,2016-07-20 +session,3099,7,Safari 10,58,2017-06-16 +session,3099,8,Firefox 30,73,2016-08-26 +user,3100,Barrett,Shani,81 +session,3100,0,Firefox 39,60,2016-12-09 +session,3100,1,Internet Explorer 35,73,2019-01-19 +session,3100,2,Firefox 11,2,2017-02-01 +session,3100,3,Safari 25,56,2019-01-05 +user,3101,Carmelita,Candie,3 +session,3101,0,Internet Explorer 33,105,2019-01-04 +user,3102,Ivory,Odette,48 +session,3102,0,Safari 32,70,2016-10-19 +session,3102,1,Safari 42,70,2016-12-15 +session,3102,2,Chrome 33,69,2017-05-29 +session,3102,3,Firefox 8,51,2018-04-06 +session,3102,4,Firefox 31,76,2017-12-20 +session,3102,5,Firefox 29,2,2016-10-12 +session,3102,6,Internet Explorer 50,48,2017-04-19 +session,3102,7,Chrome 37,8,2016-12-07 +user,3103,Jake,Domenic,29 +session,3103,0,Chrome 40,82,2017-11-29 +session,3103,1,Safari 50,32,2017-09-24 +session,3103,2,Firefox 30,88,2018-02-25 +session,3103,3,Safari 36,95,2017-01-17 +session,3103,4,Safari 33,67,2016-05-29 +user,3104,Israel,Malorie,53 +session,3104,0,Internet Explorer 34,118,2016-09-03 +session,3104,1,Chrome 13,72,2018-07-08 +session,3104,2,Safari 34,26,2018-09-08 +session,3104,3,Firefox 28,44,2017-07-17 +session,3104,4,Firefox 23,84,2017-01-08 +session,3104,5,Safari 22,87,2018-11-06 +user,3105,Alissa,Hollie,30 +session,3105,0,Safari 14,17,2017-03-30 +session,3105,1,Safari 13,117,2017-03-31 +session,3105,2,Firefox 23,72,2018-02-22 +session,3105,3,Firefox 15,105,2017-08-10 +session,3105,4,Internet Explorer 12,26,2016-08-18 +user,3106,Arla,Lashaunda,77 +session,3106,0,Chrome 28,54,2018-07-24 +session,3106,1,Safari 13,14,2017-10-20 +session,3106,2,Chrome 10,37,2017-04-01 +session,3106,3,Firefox 17,41,2018-04-09 +session,3106,4,Chrome 3,72,2016-10-19 +user,3107,Tomas,Holley,40 +session,3107,0,Firefox 43,66,2016-08-09 +user,3108,Ginger,Albertine,4 +session,3108,0,Safari 7,114,2016-07-21 +session,3108,1,Internet Explorer 9,87,2017-03-06 +session,3108,2,Firefox 20,15,2016-08-14 +session,3108,3,Safari 10,98,2016-09-12 +session,3108,4,Chrome 3,58,2017-01-18 +session,3108,5,Firefox 36,33,2017-03-18 +session,3108,6,Chrome 11,46,2016-10-09 +session,3108,7,Internet Explorer 41,43,2017-06-25 +session,3108,8,Safari 42,1,2016-12-19 +session,3108,9,Firefox 11,107,2017-11-16 +user,3109,Alline,Alessandra,26 +session,3109,0,Safari 13,85,2018-02-26 +session,3109,1,Chrome 39,7,2016-10-29 +session,3109,2,Safari 26,110,2017-02-20 +session,3109,3,Internet Explorer 21,5,2018-06-10 +session,3109,4,Safari 9,92,2016-11-15 +user,3110,Trista,Melodie,92 +session,3110,0,Firefox 40,70,2017-06-28 +session,3110,1,Chrome 11,113,2016-08-29 +session,3110,2,Safari 50,7,2017-01-13 +session,3110,3,Safari 39,69,2017-05-26 +session,3110,4,Internet Explorer 26,25,2018-05-05 +session,3110,5,Chrome 43,82,2018-01-17 +session,3110,6,Chrome 16,111,2017-10-06 +session,3110,7,Firefox 8,43,2017-07-20 +session,3110,8,Chrome 28,91,2018-09-11 +session,3110,9,Safari 37,100,2017-02-16 +user,3111,Reuben,Dustin,13 +session,3111,0,Safari 8,53,2018-03-19 +session,3111,1,Firefox 19,11,2019-01-06 +session,3111,2,Firefox 8,21,2016-10-19 +session,3111,3,Chrome 7,105,2017-09-22 +user,3112,Gregorio,Raymon,12 +session,3112,0,Chrome 47,60,2018-02-12 +session,3112,1,Chrome 46,20,2017-10-15 +session,3112,2,Chrome 6,7,2018-03-28 +session,3112,3,Chrome 30,17,2017-05-30 +session,3112,4,Firefox 40,94,2017-11-07 +user,3113,Marian,Walter,37 +session,3113,0,Internet Explorer 45,22,2018-11-22 +session,3113,1,Chrome 4,9,2018-07-10 +session,3113,2,Internet Explorer 25,41,2016-06-02 +session,3113,3,Chrome 37,7,2017-05-16 +session,3113,4,Safari 44,77,2018-01-13 +session,3113,5,Chrome 39,9,2018-08-23 +session,3113,6,Chrome 32,1,2017-10-21 +session,3113,7,Internet Explorer 26,43,2017-01-25 +user,3114,Magnolia,Cammy,91 +session,3114,0,Firefox 48,113,2018-02-11 +session,3114,1,Internet Explorer 1,28,2016-10-02 +session,3114,2,Firefox 12,107,2018-08-12 +session,3114,3,Internet Explorer 25,60,2018-08-22 +session,3114,4,Safari 30,114,2016-11-30 +user,3115,Dirk,Shanna,11 +session,3115,0,Internet Explorer 8,14,2017-06-27 +session,3115,1,Firefox 23,100,2019-01-11 +session,3115,2,Safari 39,2,2018-10-14 +session,3115,3,Safari 20,40,2017-03-29 +session,3115,4,Chrome 32,2,2017-05-14 +session,3115,5,Safari 12,50,2017-08-12 +session,3115,6,Firefox 26,34,2017-06-14 +session,3115,7,Internet Explorer 11,94,2018-08-06 +session,3115,8,Safari 10,5,2017-08-13 +user,3116,Vickey,Gregoria,7 +session,3116,0,Firefox 44,30,2018-10-27 +session,3116,1,Chrome 13,46,2017-02-04 +user,3117,Tanna,Rudy,15 +session,3117,0,Firefox 20,29,2018-12-25 +user,3118,Del,Staci,41 +session,3118,0,Chrome 5,71,2016-12-27 +session,3118,1,Firefox 38,118,2016-11-14 +session,3118,2,Chrome 14,82,2017-01-31 +session,3118,3,Firefox 6,2,2018-01-22 +session,3118,4,Safari 48,29,2017-09-24 +user,3119,Eufemia,Laure,91 +session,3119,0,Chrome 33,88,2018-04-05 +session,3119,1,Safari 1,10,2016-07-25 +user,3120,Page,Gertie,63 +session,3120,0,Safari 11,43,2018-05-06 +session,3120,1,Internet Explorer 38,57,2018-05-16 +user,3121,Selina,Kallie,49 +session,3121,0,Safari 6,113,2018-05-17 +session,3121,1,Chrome 38,46,2017-01-16 +session,3121,2,Internet Explorer 15,119,2017-03-17 +session,3121,3,Safari 2,98,2018-12-19 +session,3121,4,Internet Explorer 6,16,2016-08-04 +session,3121,5,Firefox 47,65,2017-07-31 +user,3122,Cleveland,Kimberlie,4 +session,3122,0,Chrome 25,82,2017-02-06 +session,3122,1,Chrome 25,1,2018-02-02 +session,3122,2,Firefox 49,28,2016-12-20 +session,3122,3,Firefox 44,43,2018-03-26 +session,3122,4,Firefox 42,72,2017-04-15 +session,3122,5,Chrome 18,79,2018-01-13 +user,3123,Hassan,Saran,83 +session,3123,0,Internet Explorer 49,20,2016-11-23 +session,3123,1,Internet Explorer 10,37,2017-11-19 +session,3123,2,Firefox 41,74,2016-08-04 +user,3124,Tanika,Zoila,66 +session,3124,0,Safari 46,44,2017-03-04 +session,3124,1,Safari 21,88,2016-07-01 +session,3124,2,Internet Explorer 2,43,2018-06-15 +session,3124,3,Firefox 44,30,2016-10-07 +session,3124,4,Chrome 6,62,2016-11-21 +session,3124,5,Internet Explorer 26,95,2019-01-02 +user,3125,Sammy,Larissa,67 +session,3125,0,Firefox 27,81,2018-08-27 +user,3126,Emilio,Oleta,33 +session,3126,0,Safari 16,18,2017-11-19 +session,3126,1,Safari 35,70,2017-04-25 +session,3126,2,Chrome 31,99,2017-11-26 +session,3126,3,Chrome 31,47,2017-11-27 +session,3126,4,Chrome 26,69,2017-09-18 +user,3127,Demetrius,Delaine,33 +session,3127,0,Chrome 21,10,2016-10-28 +session,3127,1,Chrome 15,64,2017-05-14 +session,3127,2,Firefox 28,53,2016-07-03 +session,3127,3,Chrome 30,102,2016-07-31 +session,3127,4,Firefox 14,32,2016-09-28 +session,3127,5,Firefox 45,111,2016-10-08 +session,3127,6,Chrome 34,113,2017-03-14 +user,3128,Glenn,Shaquita,46 +session,3128,0,Internet Explorer 10,26,2018-02-04 +session,3128,1,Firefox 3,20,2018-12-20 +session,3128,2,Firefox 50,108,2016-08-02 +session,3128,3,Chrome 37,64,2017-09-28 +session,3128,4,Chrome 22,77,2019-01-09 +session,3128,5,Firefox 1,109,2018-01-22 +session,3128,6,Chrome 27,9,2016-06-19 +session,3128,7,Internet Explorer 45,31,2018-10-24 +session,3128,8,Safari 27,15,2017-12-22 +user,3129,Kristyn,Clarence,49 +session,3129,0,Safari 22,99,2017-06-16 +session,3129,1,Firefox 25,77,2017-08-26 +session,3129,2,Firefox 30,11,2016-06-23 +session,3129,3,Firefox 12,31,2017-08-26 +session,3129,4,Firefox 11,70,2017-01-18 +session,3129,5,Internet Explorer 45,39,2016-07-20 +session,3129,6,Safari 26,101,2017-11-24 +session,3129,7,Chrome 5,31,2019-02-07 +session,3129,8,Safari 44,62,2017-07-31 +user,3130,Marvin,Fernande,82 +session,3130,0,Firefox 47,90,2018-12-30 +session,3130,1,Firefox 39,65,2017-08-22 +session,3130,2,Firefox 36,9,2018-07-04 +session,3130,3,Chrome 33,65,2016-12-05 +user,3131,Jeffrey,Mildred,79 +session,3131,0,Internet Explorer 34,58,2016-08-18 +user,3132,Wynona,Deanne,78 +session,3132,0,Safari 2,9,2018-11-28 +session,3132,1,Internet Explorer 28,0,2016-09-11 +session,3132,2,Internet Explorer 24,72,2017-08-25 +session,3132,3,Safari 19,89,2018-03-15 +session,3132,4,Firefox 4,21,2017-05-06 +session,3132,5,Safari 30,44,2017-11-16 +session,3132,6,Internet Explorer 49,74,2018-05-04 +session,3132,7,Firefox 43,86,2018-03-15 +user,3133,Lissette,Camille,91 +session,3133,0,Chrome 40,42,2018-03-22 +session,3133,1,Safari 28,36,2018-04-02 +session,3133,2,Firefox 24,20,2018-08-27 +session,3133,3,Safari 15,4,2017-09-09 +session,3133,4,Firefox 48,91,2018-04-24 +session,3133,5,Chrome 8,77,2018-08-19 +session,3133,6,Chrome 7,107,2017-04-14 +session,3133,7,Internet Explorer 8,90,2016-09-27 +session,3133,8,Safari 23,94,2017-01-01 +user,3134,Cathrine,Lenora,65 +session,3134,0,Safari 7,9,2016-11-18 +session,3134,1,Firefox 49,6,2017-10-08 +session,3134,2,Safari 47,27,2018-02-01 +user,3135,Young,Cherrie,92 +session,3135,0,Safari 11,87,2016-10-25 +session,3135,1,Chrome 4,27,2016-11-20 +session,3135,2,Chrome 31,50,2017-09-26 +session,3135,3,Safari 23,60,2018-10-11 +session,3135,4,Safari 25,17,2017-04-11 +session,3135,5,Firefox 48,9,2017-03-23 +session,3135,6,Internet Explorer 19,55,2018-10-14 +user,3136,Brett,Catrice,70 +session,3136,0,Internet Explorer 20,34,2018-07-23 +session,3136,1,Firefox 23,27,2017-10-08 +session,3136,2,Safari 7,67,2017-03-03 +session,3136,3,Internet Explorer 34,16,2016-08-09 +session,3136,4,Firefox 4,109,2017-03-15 +session,3136,5,Chrome 24,102,2016-10-21 +session,3136,6,Safari 16,4,2018-11-30 +session,3136,7,Firefox 14,81,2016-10-14 +session,3136,8,Chrome 37,57,2017-02-10 +user,3137,Rodrick,Pearle,74 +session,3137,0,Safari 40,89,2016-07-20 +session,3137,1,Firefox 33,69,2017-11-17 +user,3138,Xavier,Fritz,80 +session,3138,0,Chrome 46,85,2018-04-19 +session,3138,1,Safari 21,113,2018-09-15 +session,3138,2,Safari 33,79,2018-04-16 +session,3138,3,Safari 2,9,2018-08-21 +session,3138,4,Internet Explorer 19,81,2016-09-06 +session,3138,5,Chrome 13,118,2016-12-10 +session,3138,6,Safari 36,103,2018-05-24 +session,3138,7,Internet Explorer 9,16,2016-11-07 +session,3138,8,Firefox 21,56,2018-03-19 +session,3138,9,Internet Explorer 49,66,2018-04-21 +user,3139,Harrison,Charolette,57 +session,3139,0,Firefox 44,109,2016-12-23 +session,3139,1,Safari 34,72,2018-12-12 +session,3139,2,Internet Explorer 32,50,2017-08-01 +session,3139,3,Safari 1,118,2016-09-16 +session,3139,4,Safari 11,62,2018-07-10 +session,3139,5,Chrome 2,66,2016-10-06 +session,3139,6,Firefox 28,66,2016-11-02 +user,3140,Carol,Alfreda,97 +session,3140,0,Firefox 42,55,2019-01-15 +session,3140,1,Safari 18,5,2018-10-21 +session,3140,2,Firefox 4,112,2017-05-06 +session,3140,3,Safari 24,81,2018-01-24 +session,3140,4,Safari 4,60,2018-04-19 +session,3140,5,Safari 8,9,2018-11-01 +session,3140,6,Firefox 33,89,2017-06-13 +session,3140,7,Firefox 15,25,2016-09-09 +session,3140,8,Firefox 35,111,2017-11-07 +user,3141,Man,Rodrick,34 +session,3141,0,Chrome 1,41,2018-12-27 +user,3142,Tara,Roberta,26 +session,3142,0,Chrome 40,48,2016-06-06 +session,3142,1,Chrome 33,73,2018-05-22 +user,3143,Seth,Ute,70 +session,3143,0,Firefox 36,90,2018-07-19 +session,3143,1,Chrome 10,23,2018-07-07 +session,3143,2,Firefox 11,99,2018-03-27 +session,3143,3,Internet Explorer 39,74,2016-09-24 +session,3143,4,Safari 12,85,2018-05-30 +session,3143,5,Chrome 48,26,2017-04-01 +session,3143,6,Internet Explorer 35,99,2016-06-09 +session,3143,7,Firefox 11,66,2019-01-27 +session,3143,8,Safari 35,73,2017-06-11 +user,3144,Della,Kendall,13 +session,3144,0,Chrome 25,95,2018-11-26 +session,3144,1,Safari 2,56,2017-03-02 +session,3144,2,Safari 50,90,2018-02-20 +session,3144,3,Safari 7,16,2017-04-08 +session,3144,4,Firefox 34,97,2018-12-12 +session,3144,5,Firefox 1,72,2016-10-16 +session,3144,6,Internet Explorer 43,45,2017-11-17 +session,3144,7,Chrome 38,17,2018-11-19 +session,3144,8,Safari 47,16,2018-08-05 +session,3144,9,Chrome 7,98,2018-04-27 +user,3145,Thomas,Soraya,10 +session,3145,0,Internet Explorer 15,115,2016-12-23 +session,3145,1,Safari 36,14,2018-03-26 +session,3145,2,Firefox 28,108,2017-07-11 +session,3145,3,Internet Explorer 20,38,2016-10-31 +session,3145,4,Chrome 9,113,2017-07-17 +session,3145,5,Firefox 2,18,2016-12-15 +session,3145,6,Firefox 39,19,2016-09-29 +session,3145,7,Internet Explorer 24,64,2017-03-05 +session,3145,8,Firefox 24,110,2017-10-18 +session,3145,9,Firefox 24,22,2019-02-07 +user,3146,Emerita,Alexander,23 +session,3146,0,Chrome 46,28,2017-09-20 +user,3147,Ava,Phil,89 +session,3147,0,Firefox 33,116,2017-12-28 +session,3147,1,Firefox 44,38,2018-05-19 +session,3147,2,Chrome 25,74,2016-09-21 +session,3147,3,Internet Explorer 31,67,2018-02-03 +session,3147,4,Chrome 41,91,2017-02-14 +session,3147,5,Safari 29,22,2018-02-13 +user,3148,Lester,Sheena,51 +session,3148,0,Safari 6,119,2017-01-01 +user,3149,Raymond,Elodia,85 +session,3149,0,Safari 44,97,2017-11-14 +session,3149,1,Safari 31,66,2018-04-13 +session,3149,2,Safari 41,70,2018-11-27 +session,3149,3,Firefox 41,8,2017-01-16 +session,3149,4,Safari 13,10,2016-10-11 +session,3149,5,Firefox 17,112,2018-06-22 +session,3149,6,Internet Explorer 17,89,2017-01-31 +session,3149,7,Internet Explorer 11,91,2018-10-25 +session,3149,8,Firefox 19,25,2018-07-13 +session,3149,9,Internet Explorer 23,16,2017-01-22 +user,3150,Brock,Kimbery,50 +session,3150,0,Internet Explorer 32,119,2018-01-19 +session,3150,1,Safari 7,90,2017-12-01 +session,3150,2,Firefox 45,6,2019-01-30 +session,3150,3,Chrome 41,79,2018-02-14 +session,3150,4,Safari 40,89,2017-03-18 +session,3150,5,Firefox 35,2,2016-10-30 +user,3151,Steve,Nicholle,86 +session,3151,0,Internet Explorer 44,107,2017-04-09 +session,3151,1,Firefox 17,107,2016-10-04 +session,3151,2,Firefox 12,111,2018-04-03 +session,3151,3,Firefox 20,97,2018-04-16 +session,3151,4,Chrome 49,101,2017-05-26 +session,3151,5,Internet Explorer 47,40,2017-06-29 +session,3151,6,Internet Explorer 38,86,2017-04-22 +session,3151,7,Firefox 25,104,2017-12-16 +session,3151,8,Firefox 22,56,2019-01-28 +session,3151,9,Safari 29,82,2016-09-26 +user,3152,Brendan,Staci,60 +session,3152,0,Chrome 43,46,2017-06-15 +session,3152,1,Chrome 48,44,2018-01-18 +session,3152,2,Safari 10,97,2018-02-14 +session,3152,3,Chrome 39,62,2017-06-01 +session,3152,4,Safari 42,21,2018-11-15 +user,3153,Erich,Deidre,50 +session,3153,0,Safari 16,109,2018-02-13 +session,3153,1,Internet Explorer 25,46,2018-01-02 +session,3153,2,Firefox 37,114,2017-01-10 +session,3153,3,Chrome 22,111,2017-08-27 +user,3154,Donya,Pam,20 +session,3154,0,Chrome 9,14,2017-12-25 +session,3154,1,Safari 17,56,2016-09-23 +session,3154,2,Safari 40,20,2017-08-12 +session,3154,3,Chrome 26,10,2018-12-08 +user,3155,Arleen,Logan,46 +session,3155,0,Internet Explorer 31,70,2018-09-15 +session,3155,1,Safari 21,40,2018-02-14 +session,3155,2,Firefox 15,43,2018-11-14 +session,3155,3,Firefox 20,100,2017-12-22 +session,3155,4,Firefox 24,39,2018-07-06 +user,3156,Lajuana,Edwardo,6 +session,3156,0,Safari 3,45,2016-08-01 +session,3156,1,Firefox 8,3,2019-01-02 +user,3157,Chuck,Branda,16 +session,3157,0,Chrome 21,55,2016-06-08 +session,3157,1,Safari 3,90,2018-02-15 +session,3157,2,Internet Explorer 29,96,2016-08-23 +session,3157,3,Safari 35,60,2017-05-28 +session,3157,4,Firefox 45,97,2018-05-05 +session,3157,5,Internet Explorer 8,91,2016-10-29 +session,3157,6,Internet Explorer 35,104,2017-04-15 +session,3157,7,Firefox 31,21,2017-01-14 +user,3158,Marvin,Jeneva,59 +session,3158,0,Internet Explorer 4,53,2018-04-30 +session,3158,1,Safari 39,97,2016-11-25 +session,3158,2,Firefox 31,41,2017-06-15 +session,3158,3,Internet Explorer 34,56,2016-06-12 +session,3158,4,Chrome 48,78,2017-10-23 +session,3158,5,Firefox 30,28,2016-09-12 +session,3158,6,Safari 22,88,2016-07-30 +session,3158,7,Safari 39,115,2019-02-04 +user,3159,Sherryl,Delana,98 +session,3159,0,Safari 38,36,2017-07-22 +session,3159,1,Firefox 34,115,2018-10-09 +session,3159,2,Chrome 32,58,2016-11-05 +user,3160,Stephan,Miguelina,60 +session,3160,0,Chrome 16,48,2016-12-02 +session,3160,1,Chrome 32,117,2018-10-21 +session,3160,2,Chrome 32,53,2016-08-15 +session,3160,3,Chrome 12,76,2017-10-06 +session,3160,4,Internet Explorer 26,20,2018-10-03 +session,3160,5,Firefox 30,16,2017-03-06 +session,3160,6,Chrome 16,37,2017-11-17 +session,3160,7,Firefox 15,104,2018-02-25 +user,3161,Christopher,Leone,1 +session,3161,0,Internet Explorer 2,29,2019-01-18 +session,3161,1,Safari 38,0,2018-10-29 +user,3162,Robt,Fredricka,6 +session,3162,0,Safari 12,76,2017-12-14 +session,3162,1,Safari 28,33,2018-12-06 +session,3162,2,Firefox 3,17,2017-03-19 +session,3162,3,Safari 39,43,2018-04-30 +user,3163,Roy,Jeremy,76 +session,3163,0,Chrome 26,0,2018-11-12 +session,3163,1,Internet Explorer 6,0,2018-09-09 +session,3163,2,Firefox 50,57,2017-03-08 +session,3163,3,Firefox 35,25,2017-12-26 +session,3163,4,Chrome 23,29,2018-01-02 +session,3163,5,Firefox 27,86,2018-12-30 +session,3163,6,Safari 9,88,2017-11-21 +user,3164,Brendon,Lavonne,81 +session,3164,0,Safari 7,91,2018-09-11 +user,3165,Isiah,Ramonita,49 +session,3165,0,Chrome 33,62,2017-01-15 +session,3165,1,Firefox 34,101,2016-12-20 +session,3165,2,Safari 7,67,2017-04-03 +session,3165,3,Chrome 40,39,2017-03-08 +session,3165,4,Chrome 3,92,2016-10-27 +user,3166,Elina,Ida,71 +session,3166,0,Internet Explorer 3,100,2017-09-19 +session,3166,1,Safari 5,20,2016-10-20 +session,3166,2,Safari 30,78,2018-04-15 +session,3166,3,Chrome 29,50,2018-12-20 +session,3166,4,Chrome 30,7,2018-12-29 +session,3166,5,Chrome 41,29,2017-03-04 +session,3166,6,Firefox 8,52,2017-01-11 +session,3166,7,Internet Explorer 36,61,2017-03-17 +session,3166,8,Firefox 20,97,2016-12-01 +session,3166,9,Internet Explorer 35,112,2017-12-26 +user,3167,Annis,Thu,89 +session,3167,0,Chrome 13,88,2017-05-07 +user,3168,Tu,Terrie,97 +session,3168,0,Safari 41,108,2016-06-04 +session,3168,1,Internet Explorer 40,109,2018-01-11 +session,3168,2,Internet Explorer 34,101,2017-09-18 +session,3168,3,Safari 13,64,2017-08-26 +session,3168,4,Chrome 10,15,2016-05-23 +session,3168,5,Firefox 9,116,2018-10-07 +session,3168,6,Safari 3,72,2017-09-28 +user,3169,Graig,Simon,90 +session,3169,0,Chrome 27,80,2018-06-20 +user,3170,Aide,Dianna,18 +session,3170,0,Internet Explorer 38,81,2017-08-07 +session,3170,1,Internet Explorer 16,72,2017-03-06 +session,3170,2,Internet Explorer 42,8,2018-10-29 +session,3170,3,Chrome 28,109,2016-08-16 +session,3170,4,Chrome 47,27,2018-08-08 +user,3171,Miss,Zaida,21 +session,3171,0,Internet Explorer 22,11,2017-10-12 +user,3172,Paulette,Tressie,30 +session,3172,0,Safari 40,100,2018-07-17 +session,3172,1,Internet Explorer 28,81,2016-11-03 +session,3172,2,Chrome 2,6,2018-08-17 +session,3172,3,Internet Explorer 49,19,2017-05-10 +session,3172,4,Chrome 26,78,2018-02-17 +session,3172,5,Firefox 33,69,2018-09-15 +user,3173,Arthur,Milagro,87 +session,3173,0,Safari 21,22,2018-04-19 +session,3173,1,Chrome 43,109,2016-11-19 +session,3173,2,Firefox 46,25,2016-06-27 +session,3173,3,Internet Explorer 16,29,2017-03-23 +session,3173,4,Firefox 17,7,2019-01-26 +user,3174,Margot,Brett,66 +session,3174,0,Safari 5,36,2018-01-20 +session,3174,1,Safari 43,89,2017-12-14 +session,3174,2,Chrome 1,74,2018-09-24 +session,3174,3,Safari 7,65,2018-06-01 +session,3174,4,Chrome 20,100,2016-12-01 +session,3174,5,Internet Explorer 48,32,2017-07-19 +user,3175,Demetria,Loma,69 +session,3175,0,Safari 33,42,2017-05-16 +session,3175,1,Chrome 30,116,2017-03-24 +session,3175,2,Safari 25,23,2016-12-01 +session,3175,3,Internet Explorer 42,113,2018-05-03 +user,3176,Terence,Onita,93 +session,3176,0,Chrome 34,13,2017-10-03 +session,3176,1,Chrome 29,111,2018-05-10 +session,3176,2,Firefox 32,50,2017-10-11 +session,3176,3,Chrome 45,18,2016-12-05 +session,3176,4,Chrome 34,38,2017-05-04 +session,3176,5,Safari 32,47,2016-08-11 +session,3176,6,Safari 33,100,2018-03-16 +session,3176,7,Safari 26,34,2017-12-23 +session,3176,8,Safari 47,96,2017-11-06 +session,3176,9,Firefox 41,51,2017-09-21 +user,3177,Laci,Guadalupe,1 +session,3177,0,Firefox 45,91,2018-06-16 +session,3177,1,Safari 3,13,2016-11-25 +session,3177,2,Firefox 36,62,2018-08-03 +user,3178,Maryrose,Earl,33 +session,3178,0,Safari 48,64,2017-05-16 +session,3178,1,Internet Explorer 23,85,2017-11-26 +session,3178,2,Chrome 31,22,2016-12-07 +session,3178,3,Internet Explorer 10,43,2018-01-02 +session,3178,4,Safari 31,80,2016-06-03 +session,3178,5,Safari 1,83,2018-06-04 +session,3178,6,Firefox 27,19,2017-07-09 +session,3178,7,Chrome 28,97,2018-08-03 +session,3178,8,Internet Explorer 44,21,2017-04-18 +user,3179,Juan,Many,79 +session,3179,0,Chrome 9,3,2018-08-19 +session,3179,1,Internet Explorer 6,9,2019-01-08 +session,3179,2,Firefox 45,82,2017-02-11 +session,3179,3,Internet Explorer 20,83,2017-10-30 +session,3179,4,Firefox 25,81,2016-08-03 +session,3179,5,Firefox 35,40,2016-05-24 +session,3179,6,Internet Explorer 35,14,2019-01-24 +session,3179,7,Chrome 13,57,2018-02-06 +session,3179,8,Internet Explorer 25,12,2019-01-11 +session,3179,9,Safari 15,93,2017-09-30 +user,3180,Joel,Gudrun,65 +session,3180,0,Safari 32,63,2018-05-25 +session,3180,1,Firefox 24,94,2018-07-15 +session,3180,2,Firefox 17,24,2016-09-17 +user,3181,Rodrigo,Fernanda,37 +session,3181,0,Internet Explorer 33,37,2018-09-17 +user,3182,Evonne,Lorene,90 +session,3182,0,Firefox 13,42,2017-05-04 +session,3182,1,Internet Explorer 7,91,2016-07-19 +session,3182,2,Chrome 4,34,2018-04-20 +session,3182,3,Internet Explorer 7,101,2018-03-31 +session,3182,4,Internet Explorer 49,51,2018-06-25 +user,3183,Joseph,Margarette,22 +session,3183,0,Safari 50,108,2017-11-05 +session,3183,1,Chrome 41,105,2018-06-28 +session,3183,2,Internet Explorer 38,72,2018-08-11 +session,3183,3,Internet Explorer 10,96,2016-11-07 +user,3184,Sona,Maple,31 +session,3184,0,Safari 31,87,2017-09-20 +session,3184,1,Chrome 46,42,2017-08-22 +session,3184,2,Safari 32,61,2017-07-05 +session,3184,3,Internet Explorer 39,52,2019-02-11 +session,3184,4,Firefox 7,77,2018-07-05 +user,3185,Kasey,Willodean,70 +session,3185,0,Safari 21,115,2017-01-28 +user,3186,Emely,Felicia,84 +session,3186,0,Safari 4,32,2018-09-25 +session,3186,1,Safari 2,40,2018-01-23 +session,3186,2,Internet Explorer 26,115,2018-12-31 +session,3186,3,Chrome 24,96,2017-11-04 +session,3186,4,Chrome 34,83,2017-07-24 +session,3186,5,Chrome 12,119,2018-09-13 +session,3186,6,Firefox 13,58,2017-12-03 +session,3186,7,Chrome 15,8,2016-06-08 +user,3187,Eustolia,Maud,7 +session,3187,0,Safari 22,119,2016-12-14 +session,3187,1,Chrome 32,104,2017-07-25 +session,3187,2,Chrome 14,95,2017-05-16 +session,3187,3,Safari 25,3,2017-09-22 +session,3187,4,Internet Explorer 46,18,2017-07-24 +session,3187,5,Safari 46,99,2017-09-22 +user,3188,Marylynn,Leontine,7 +session,3188,0,Chrome 15,47,2017-10-17 +session,3188,1,Internet Explorer 17,76,2016-10-23 +session,3188,2,Internet Explorer 34,62,2017-12-09 +session,3188,3,Firefox 13,17,2017-07-01 +session,3188,4,Safari 29,81,2018-04-07 +session,3188,5,Safari 14,110,2017-09-17 +session,3188,6,Firefox 12,112,2017-12-28 +session,3188,7,Chrome 9,22,2018-10-09 +session,3188,8,Firefox 36,10,2017-04-11 +user,3189,Forest,Meg,67 +session,3189,0,Chrome 34,44,2017-06-05 +session,3189,1,Internet Explorer 38,50,2017-09-03 +session,3189,2,Chrome 9,72,2018-04-01 +session,3189,3,Chrome 3,106,2017-05-11 +user,3190,Bart,Loan,60 +session,3190,0,Chrome 5,42,2018-04-16 +session,3190,1,Firefox 43,102,2018-09-21 +session,3190,2,Safari 14,55,2018-10-25 +session,3190,3,Safari 29,71,2017-08-15 +session,3190,4,Firefox 12,76,2018-02-07 +session,3190,5,Firefox 48,16,2018-02-05 +session,3190,6,Internet Explorer 8,70,2017-09-17 +user,3191,Jacqueline,Ranae,0 +session,3191,0,Firefox 19,35,2018-09-06 +session,3191,1,Internet Explorer 38,92,2017-10-01 +session,3191,2,Internet Explorer 50,57,2017-08-07 +session,3191,3,Internet Explorer 17,63,2018-03-26 +user,3192,Pedro,Renae,92 +session,3192,0,Chrome 7,40,2017-08-22 +session,3192,1,Safari 12,113,2016-11-02 +session,3192,2,Firefox 48,110,2017-01-03 +session,3192,3,Internet Explorer 28,25,2016-09-18 +session,3192,4,Firefox 16,108,2017-12-27 +session,3192,5,Chrome 27,56,2017-10-27 +session,3192,6,Chrome 42,117,2016-05-19 +session,3192,7,Firefox 10,47,2017-02-03 +session,3192,8,Safari 7,97,2016-10-22 +session,3192,9,Chrome 4,3,2016-05-29 +user,3193,Logan,Elyse,5 +session,3193,0,Firefox 23,77,2019-02-09 +session,3193,1,Firefox 4,19,2017-02-14 +session,3193,2,Internet Explorer 25,50,2017-01-01 +session,3193,3,Chrome 15,66,2017-07-29 +session,3193,4,Safari 17,37,2017-06-15 +session,3193,5,Internet Explorer 20,104,2016-06-25 +session,3193,6,Safari 7,17,2018-01-30 +session,3193,7,Safari 49,79,2016-07-01 +user,3194,Minh,Rochell,37 +session,3194,0,Safari 27,111,2018-06-20 +session,3194,1,Firefox 6,77,2017-10-17 +session,3194,2,Internet Explorer 16,65,2016-10-23 +session,3194,3,Chrome 42,110,2016-07-20 +session,3194,4,Chrome 25,51,2017-12-04 +user,3195,Alane,Douglass,83 +session,3195,0,Firefox 1,12,2017-01-22 +session,3195,1,Internet Explorer 11,35,2016-07-10 +session,3195,2,Chrome 40,70,2016-10-16 +session,3195,3,Chrome 21,67,2017-12-25 +session,3195,4,Firefox 7,97,2016-12-14 +session,3195,5,Safari 44,65,2016-12-06 +session,3195,6,Firefox 34,65,2016-11-26 +session,3195,7,Internet Explorer 15,63,2017-11-20 +user,3196,Harvey,Emerson,39 +session,3196,0,Firefox 4,58,2017-06-27 +session,3196,1,Safari 39,35,2018-08-07 +session,3196,2,Internet Explorer 7,61,2017-09-06 +session,3196,3,Internet Explorer 17,76,2017-07-10 +session,3196,4,Chrome 44,113,2017-11-01 +session,3196,5,Chrome 9,23,2018-01-26 +session,3196,6,Chrome 12,25,2016-09-17 +user,3197,Joe,Clara,19 +session,3197,0,Internet Explorer 50,30,2016-11-02 +session,3197,1,Internet Explorer 6,109,2018-06-30 +user,3198,Elroy,Harrison,42 +session,3198,0,Chrome 24,20,2018-06-20 +session,3198,1,Internet Explorer 46,57,2016-10-07 +session,3198,2,Firefox 20,3,2016-06-04 +session,3198,3,Internet Explorer 10,33,2016-10-27 +session,3198,4,Internet Explorer 8,94,2018-09-06 +session,3198,5,Firefox 7,51,2016-07-29 +session,3198,6,Safari 41,67,2018-04-12 +session,3198,7,Firefox 12,81,2018-03-23 +user,3199,Woodrow,Devon,48 +session,3199,0,Safari 29,95,2017-11-20 +session,3199,1,Chrome 8,110,2016-09-17 +session,3199,2,Internet Explorer 38,84,2018-04-06 +session,3199,3,Firefox 21,42,2016-11-03 +session,3199,4,Safari 15,65,2016-09-19 +session,3199,5,Firefox 50,36,2017-01-26 +session,3199,6,Firefox 37,8,2019-01-07 +session,3199,7,Firefox 50,48,2018-01-09 +session,3199,8,Safari 13,77,2017-02-12 +user,3200,Martin,Maida,59 +session,3200,0,Internet Explorer 42,45,2018-10-13 +session,3200,1,Chrome 35,19,2016-12-28 +session,3200,2,Chrome 36,6,2017-03-16 +session,3200,3,Firefox 11,49,2016-08-19 +session,3200,4,Firefox 21,58,2016-06-01 +session,3200,5,Internet Explorer 8,6,2017-07-24 +session,3200,6,Chrome 49,29,2018-05-02 +user,3201,Shante,Dominga,90 +session,3201,0,Internet Explorer 12,77,2017-11-08 +session,3201,1,Safari 24,43,2019-01-17 +session,3201,2,Firefox 7,91,2018-09-30 +session,3201,3,Firefox 26,16,2017-12-30 +user,3202,Brigid,Venessa,1 +session,3202,0,Safari 13,17,2018-09-13 +session,3202,1,Safari 12,24,2017-10-18 +session,3202,2,Safari 18,119,2017-01-03 +session,3202,3,Internet Explorer 33,32,2018-04-11 +session,3202,4,Safari 49,31,2016-09-20 +user,3203,Jan,Berry,0 +session,3203,0,Chrome 22,86,2017-06-25 +session,3203,1,Safari 29,62,2016-11-29 +session,3203,2,Chrome 26,87,2016-11-16 +session,3203,3,Internet Explorer 48,4,2019-01-24 +session,3203,4,Chrome 41,1,2018-01-10 +session,3203,5,Internet Explorer 11,64,2017-10-14 +session,3203,6,Firefox 36,32,2016-06-06 +user,3204,Mariella,Wei,16 +session,3204,0,Safari 30,23,2017-10-01 +session,3204,1,Safari 8,66,2017-07-29 +session,3204,2,Chrome 22,36,2017-09-11 +session,3204,3,Safari 40,89,2017-01-12 +session,3204,4,Safari 38,20,2016-08-04 +session,3204,5,Safari 36,43,2017-11-23 +session,3204,6,Safari 13,43,2017-11-14 +session,3204,7,Internet Explorer 31,103,2016-07-09 +session,3204,8,Chrome 23,92,2018-07-05 +user,3205,Lyle,Shanice,22 +session,3205,0,Safari 7,110,2018-07-10 +session,3205,1,Internet Explorer 29,91,2018-09-26 +session,3205,2,Safari 31,95,2017-10-19 +session,3205,3,Internet Explorer 27,95,2016-07-21 +session,3205,4,Safari 43,44,2018-01-15 +session,3205,5,Internet Explorer 19,3,2017-10-13 +session,3205,6,Internet Explorer 33,106,2016-07-16 +session,3205,7,Safari 19,61,2019-01-22 +session,3205,8,Safari 1,117,2017-03-13 +session,3205,9,Chrome 41,44,2017-09-18 +user,3206,Glynis,Lonnie,16 +session,3206,0,Internet Explorer 36,61,2017-09-17 +session,3206,1,Firefox 16,63,2018-12-15 +session,3206,2,Chrome 38,108,2018-12-19 +session,3206,3,Internet Explorer 30,97,2017-12-22 +session,3206,4,Firefox 46,63,2018-08-12 +session,3206,5,Safari 35,99,2017-01-17 +user,3207,Lupe,Analisa,82 +session,3207,0,Internet Explorer 22,105,2018-05-07 +session,3207,1,Safari 13,50,2017-09-25 +session,3207,2,Safari 28,29,2017-11-01 +session,3207,3,Firefox 25,39,2016-08-04 +session,3207,4,Firefox 30,56,2019-02-07 +session,3207,5,Safari 41,90,2017-02-22 +session,3207,6,Internet Explorer 6,100,2017-08-07 +session,3207,7,Internet Explorer 13,60,2017-02-06 +session,3207,8,Firefox 3,63,2017-10-27 +user,3208,Treva,Harry,6 +session,3208,0,Internet Explorer 31,73,2018-12-12 +session,3208,1,Chrome 44,89,2017-10-01 +session,3208,2,Chrome 43,80,2016-12-18 +session,3208,3,Firefox 23,106,2017-09-05 +user,3209,Lee,Edwin,17 +session,3209,0,Internet Explorer 9,88,2017-11-05 +session,3209,1,Chrome 17,7,2018-08-18 +session,3209,2,Chrome 36,76,2016-12-30 +session,3209,3,Internet Explorer 30,3,2016-09-29 +session,3209,4,Firefox 24,96,2018-03-29 +user,3210,Tony,Sandie,14 +session,3210,0,Chrome 50,100,2018-03-24 +session,3210,1,Internet Explorer 38,89,2017-10-17 +session,3210,2,Chrome 49,92,2017-11-27 +session,3210,3,Chrome 19,12,2017-11-05 +user,3211,Chantelle,Siobhan,80 +session,3211,0,Firefox 15,2,2017-04-12 +session,3211,1,Internet Explorer 35,118,2017-01-29 +session,3211,2,Chrome 19,21,2018-11-01 +session,3211,3,Firefox 26,66,2017-03-09 +session,3211,4,Internet Explorer 32,25,2017-12-29 +session,3211,5,Chrome 13,93,2017-11-24 +session,3211,6,Safari 33,102,2017-01-03 +user,3212,Anita,Reggie,27 +session,3212,0,Chrome 30,65,2018-03-22 +session,3212,1,Chrome 11,53,2017-01-02 +session,3212,2,Chrome 18,114,2017-10-04 +session,3212,3,Safari 41,105,2018-01-06 +session,3212,4,Firefox 12,41,2018-03-25 +session,3212,5,Firefox 50,3,2018-08-02 +session,3212,6,Internet Explorer 6,78,2017-09-19 +session,3212,7,Internet Explorer 32,58,2018-06-01 +session,3212,8,Internet Explorer 44,5,2018-07-20 +user,3213,Erich,Tenisha,4 +session,3213,0,Safari 19,11,2017-12-10 +session,3213,1,Firefox 22,102,2017-05-06 +session,3213,2,Internet Explorer 47,87,2018-12-13 +session,3213,3,Safari 50,90,2017-07-21 +session,3213,4,Internet Explorer 11,34,2017-04-27 +session,3213,5,Safari 14,49,2018-04-21 +session,3213,6,Internet Explorer 38,5,2018-08-04 +session,3213,7,Safari 9,49,2017-09-15 +session,3213,8,Firefox 10,96,2018-04-20 +session,3213,9,Firefox 14,47,2017-03-15 +user,3214,Elton,Elaine,53 +session,3214,0,Internet Explorer 41,86,2017-04-03 +session,3214,1,Firefox 18,9,2016-09-07 +session,3214,2,Internet Explorer 24,119,2018-07-30 +session,3214,3,Internet Explorer 48,93,2018-11-18 +session,3214,4,Safari 23,14,2017-06-30 +session,3214,5,Internet Explorer 13,108,2018-01-05 +session,3214,6,Chrome 41,117,2016-11-23 +session,3214,7,Chrome 6,98,2018-01-06 +session,3214,8,Safari 25,114,2017-06-22 +session,3214,9,Safari 25,3,2016-12-30 +user,3215,Max,Annamaria,7 +session,3215,0,Safari 27,55,2016-08-17 +user,3216,Ethel,Karina,14 +session,3216,0,Safari 47,40,2016-07-18 +session,3216,1,Internet Explorer 25,79,2019-01-14 +user,3217,Michael,Carl,13 +session,3217,0,Safari 5,106,2017-10-01 +user,3218,Dean,Freida,70 +session,3218,0,Chrome 24,66,2016-08-10 +session,3218,1,Chrome 39,113,2016-10-09 +session,3218,2,Firefox 28,83,2017-02-18 +session,3218,3,Safari 12,32,2017-03-04 +session,3218,4,Chrome 30,11,2018-01-05 +session,3218,5,Chrome 11,95,2016-06-21 +session,3218,6,Internet Explorer 9,70,2016-08-17 +session,3218,7,Safari 40,21,2017-12-04 +session,3218,8,Firefox 3,117,2017-07-11 +session,3218,9,Firefox 30,56,2019-01-11 +user,3219,Claudio,Alvaro,71 +session,3219,0,Chrome 7,103,2017-09-27 +session,3219,1,Chrome 35,77,2018-03-18 +session,3219,2,Internet Explorer 34,87,2016-08-16 +session,3219,3,Chrome 19,102,2017-04-02 +user,3220,Gema,Denny,75 +session,3220,0,Chrome 9,11,2018-04-29 +session,3220,1,Internet Explorer 36,113,2018-12-23 +session,3220,2,Firefox 40,61,2016-12-04 +session,3220,3,Firefox 3,4,2018-02-04 +session,3220,4,Internet Explorer 46,67,2016-12-15 +session,3220,5,Firefox 18,76,2017-06-07 +session,3220,6,Firefox 1,116,2018-05-04 +session,3220,7,Firefox 8,76,2017-08-11 +session,3220,8,Safari 30,64,2017-10-04 +user,3221,Emeline,Lincoln,15 +session,3221,0,Safari 44,106,2016-09-21 +session,3221,1,Firefox 47,105,2018-12-17 +session,3221,2,Firefox 49,74,2018-07-19 +session,3221,3,Safari 49,118,2017-08-24 +user,3222,Corrie,Deann,50 +session,3222,0,Chrome 28,80,2018-11-09 +session,3222,1,Internet Explorer 50,97,2016-10-29 +session,3222,2,Chrome 39,20,2017-05-11 +user,3223,Temika,Bobette,74 +session,3223,0,Safari 28,72,2016-07-03 +session,3223,1,Internet Explorer 25,58,2017-04-19 +session,3223,2,Safari 15,95,2016-07-28 +session,3223,3,Chrome 40,21,2017-11-22 +session,3223,4,Chrome 42,6,2017-07-17 +session,3223,5,Safari 36,67,2016-05-26 +session,3223,6,Firefox 47,64,2016-12-06 +user,3224,Ike,Laveta,51 +session,3224,0,Chrome 21,16,2017-09-09 +session,3224,1,Chrome 12,60,2018-02-18 +session,3224,2,Safari 47,22,2017-04-13 +session,3224,3,Safari 1,113,2016-07-03 +session,3224,4,Firefox 48,43,2017-08-25 +session,3224,5,Safari 25,81,2018-04-24 +user,3225,Horace,Josephina,90 +session,3225,0,Internet Explorer 22,6,2016-06-17 +session,3225,1,Firefox 2,106,2016-08-22 +session,3225,2,Firefox 36,105,2016-06-13 +session,3225,3,Chrome 4,111,2016-12-06 +session,3225,4,Safari 26,107,2018-06-27 +session,3225,5,Internet Explorer 16,76,2018-05-06 +session,3225,6,Chrome 10,56,2018-09-13 +session,3225,7,Safari 15,5,2018-07-04 +session,3225,8,Firefox 43,9,2016-09-28 +user,3226,Miles,Berry,90 +session,3226,0,Chrome 20,62,2018-04-08 +session,3226,1,Safari 28,86,2016-10-09 +session,3226,2,Firefox 11,26,2017-05-18 +session,3226,3,Firefox 37,38,2016-12-22 +user,3227,Ricardo,Garfield,45 +session,3227,0,Safari 48,105,2017-02-15 +session,3227,1,Internet Explorer 46,64,2018-08-28 +user,3228,Werner,Ismael,77 +session,3228,0,Safari 42,24,2017-01-01 +session,3228,1,Chrome 34,99,2016-06-17 +session,3228,2,Firefox 26,77,2017-09-11 +session,3228,3,Firefox 35,84,2018-06-23 +user,3229,Jacalyn,Rosia,79 +session,3229,0,Internet Explorer 6,32,2018-06-12 +session,3229,1,Chrome 14,19,2018-07-31 +session,3229,2,Safari 37,96,2016-12-25 +session,3229,3,Firefox 8,2,2017-10-19 +session,3229,4,Internet Explorer 39,72,2016-12-18 +session,3229,5,Chrome 19,98,2018-09-17 +user,3230,Gail,Toccara,91 +session,3230,0,Chrome 30,73,2017-01-26 +session,3230,1,Safari 39,116,2016-07-07 +session,3230,2,Chrome 19,63,2018-06-17 +session,3230,3,Internet Explorer 50,16,2018-03-17 +session,3230,4,Safari 50,113,2016-08-03 +session,3230,5,Safari 23,92,2017-01-02 +session,3230,6,Internet Explorer 31,10,2017-03-12 +session,3230,7,Firefox 3,73,2017-09-17 +user,3231,Vernie,Rana,62 +session,3231,0,Chrome 19,10,2017-04-15 +session,3231,1,Internet Explorer 33,52,2018-03-17 +user,3232,Emile,Chasity,55 +session,3232,0,Internet Explorer 13,26,2016-11-30 +session,3232,1,Firefox 3,79,2017-09-24 +session,3232,2,Chrome 31,57,2019-01-22 +session,3232,3,Chrome 26,33,2016-06-21 +session,3232,4,Internet Explorer 6,16,2017-12-12 +session,3232,5,Internet Explorer 36,99,2016-06-17 +user,3233,Bettye,Portia,44 +session,3233,0,Chrome 13,32,2018-09-08 +session,3233,1,Safari 7,112,2017-02-10 +session,3233,2,Safari 21,81,2017-07-13 +session,3233,3,Firefox 13,8,2017-12-23 +user,3234,Shizuko,Manda,33 +session,3234,0,Internet Explorer 42,103,2017-02-28 +session,3234,1,Internet Explorer 47,43,2019-02-07 +user,3235,Cathey,Adrienne,28 +session,3235,0,Chrome 34,116,2018-07-30 +session,3235,1,Safari 29,1,2018-07-20 +session,3235,2,Internet Explorer 2,3,2016-06-07 +session,3235,3,Chrome 15,35,2017-06-20 +user,3236,Genevie,Jimmie,32 +session,3236,0,Firefox 14,88,2017-11-17 +session,3236,1,Internet Explorer 47,30,2017-12-17 +session,3236,2,Chrome 45,86,2018-03-05 +session,3236,3,Safari 44,101,2017-04-05 +user,3237,Olimpia,Homer,86 +session,3237,0,Safari 8,37,2016-11-17 +session,3237,1,Firefox 40,7,2016-08-20 +session,3237,2,Internet Explorer 4,48,2018-10-02 +session,3237,3,Firefox 9,110,2016-11-07 +session,3237,4,Chrome 7,31,2017-08-06 +session,3237,5,Chrome 29,119,2019-01-03 +user,3238,Miyoko,Merilyn,3 +session,3238,0,Firefox 31,29,2018-06-27 +session,3238,1,Firefox 24,11,2017-03-04 +session,3238,2,Internet Explorer 22,94,2016-05-26 +session,3238,3,Chrome 41,83,2018-07-17 +session,3238,4,Safari 15,18,2016-07-28 +user,3239,Pierre,Chantal,65 +session,3239,0,Internet Explorer 22,90,2018-03-28 +session,3239,1,Internet Explorer 33,76,2018-11-24 +session,3239,2,Firefox 28,0,2017-10-11 +session,3239,3,Chrome 11,39,2018-08-24 +user,3240,Eliza,Mireya,44 +session,3240,0,Internet Explorer 17,32,2016-11-10 +session,3240,1,Internet Explorer 45,15,2016-07-21 +session,3240,2,Safari 16,105,2016-10-25 +session,3240,3,Safari 32,10,2018-05-13 +session,3240,4,Internet Explorer 40,25,2017-06-16 +session,3240,5,Chrome 16,20,2017-01-10 +session,3240,6,Safari 9,94,2019-01-13 +user,3241,Sid,Maire,16 +session,3241,0,Chrome 23,29,2018-10-23 +session,3241,1,Safari 19,82,2017-11-30 +session,3241,2,Safari 15,108,2017-09-13 +session,3241,3,Internet Explorer 38,36,2019-01-23 +session,3241,4,Firefox 5,11,2017-09-11 +session,3241,5,Safari 27,98,2017-10-22 +session,3241,6,Firefox 33,115,2017-02-05 +session,3241,7,Safari 7,11,2017-08-24 +session,3241,8,Firefox 29,83,2018-02-27 +user,3242,Micaela,Fawn,72 +session,3242,0,Firefox 2,74,2017-06-29 +user,3243,Toney,Cory,0 +session,3243,0,Internet Explorer 36,103,2016-11-20 +session,3243,1,Internet Explorer 33,113,2018-10-20 +session,3243,2,Firefox 19,75,2017-03-27 +session,3243,3,Chrome 42,44,2017-01-21 +session,3243,4,Firefox 49,99,2017-02-28 +session,3243,5,Firefox 17,101,2018-02-28 +user,3244,Fidela,Jorge,34 +session,3244,0,Chrome 29,3,2018-04-11 +session,3244,1,Firefox 11,54,2018-08-11 +session,3244,2,Internet Explorer 13,49,2019-01-12 +session,3244,3,Safari 22,10,2017-03-03 +session,3244,4,Safari 46,32,2018-09-12 +session,3244,5,Internet Explorer 27,43,2018-04-24 +session,3244,6,Chrome 29,2,2018-09-21 +session,3244,7,Chrome 29,60,2016-06-27 +session,3244,8,Chrome 26,67,2016-10-23 +user,3245,Zachery,Yuonne,95 +session,3245,0,Internet Explorer 50,76,2018-07-16 +session,3245,1,Safari 4,8,2017-06-03 +session,3245,2,Safari 13,21,2016-07-31 +session,3245,3,Safari 44,18,2017-05-28 +session,3245,4,Chrome 35,69,2016-12-06 +session,3245,5,Safari 32,50,2019-02-07 +user,3246,Antony,Latisha,21 +session,3246,0,Firefox 45,85,2018-11-24 +session,3246,1,Internet Explorer 24,58,2018-09-28 +user,3247,Fernande,Yasmine,53 +session,3247,0,Firefox 34,71,2019-01-20 +session,3247,1,Internet Explorer 48,49,2017-10-19 +session,3247,2,Chrome 16,39,2017-12-02 +session,3247,3,Safari 46,90,2018-04-08 +session,3247,4,Chrome 32,33,2017-04-13 +session,3247,5,Safari 49,74,2017-02-24 +session,3247,6,Firefox 25,7,2018-07-14 +user,3248,Zoe,Florinda,95 +session,3248,0,Chrome 31,72,2018-02-26 +session,3248,1,Chrome 5,33,2018-08-01 +session,3248,2,Safari 25,46,2016-11-22 +session,3248,3,Safari 29,19,2017-07-27 +session,3248,4,Safari 10,84,2018-04-23 +session,3248,5,Firefox 24,15,2018-01-11 +session,3248,6,Safari 4,111,2017-05-31 +session,3248,7,Chrome 12,41,2017-04-19 +session,3248,8,Internet Explorer 17,11,2018-02-20 +user,3249,Antoine,Chong,32 +session,3249,0,Chrome 44,90,2018-09-22 +session,3249,1,Firefox 12,50,2016-08-24 +session,3249,2,Internet Explorer 15,41,2017-10-11 +session,3249,3,Internet Explorer 42,90,2016-06-14 +session,3249,4,Chrome 11,92,2018-06-16 +user,3250,Jaye,Kristy,49 +session,3250,0,Firefox 12,93,2018-08-18 +user,3251,Adina,Azucena,52 +session,3251,0,Chrome 35,91,2017-02-06 +session,3251,1,Firefox 25,82,2019-01-19 +session,3251,2,Chrome 49,70,2018-12-28 +user,3252,Caron,Rhett,10 +session,3252,0,Firefox 18,89,2016-06-17 +session,3252,1,Safari 21,103,2018-02-15 +session,3252,2,Safari 33,23,2018-09-20 +session,3252,3,Chrome 46,86,2018-12-01 +session,3252,4,Firefox 34,39,2017-01-25 +session,3252,5,Internet Explorer 16,71,2017-10-11 +session,3252,6,Safari 28,42,2016-12-31 +session,3252,7,Firefox 49,26,2019-01-10 +user,3253,Roslyn,Danae,50 +session,3253,0,Firefox 25,9,2017-02-18 +session,3253,1,Safari 6,14,2018-03-01 +session,3253,2,Firefox 32,45,2017-11-21 +session,3253,3,Chrome 9,95,2016-05-26 +session,3253,4,Safari 28,41,2018-05-06 +user,3254,Francisca,Georgette,32 +session,3254,0,Safari 15,69,2016-09-23 +session,3254,1,Chrome 16,35,2017-11-04 +session,3254,2,Firefox 24,12,2016-12-10 +session,3254,3,Internet Explorer 40,110,2017-08-05 +session,3254,4,Chrome 13,21,2017-04-25 +session,3254,5,Chrome 16,71,2018-02-11 +user,3255,Sarina,Camelia,39 +session,3255,0,Safari 49,37,2017-01-21 +session,3255,1,Internet Explorer 14,108,2018-10-17 +session,3255,2,Safari 40,118,2018-06-01 +session,3255,3,Safari 45,13,2018-06-11 +session,3255,4,Safari 23,28,2016-12-22 +session,3255,5,Safari 34,101,2016-06-21 +user,3256,Rupert,Elayne,12 +session,3256,0,Firefox 31,2,2018-02-22 +session,3256,1,Firefox 28,105,2017-05-26 +session,3256,2,Safari 50,0,2017-11-03 +session,3256,3,Internet Explorer 21,45,2017-10-18 +session,3256,4,Internet Explorer 34,110,2018-10-03 +session,3256,5,Internet Explorer 10,17,2018-02-18 +session,3256,6,Firefox 35,62,2019-01-31 +session,3256,7,Firefox 36,39,2018-08-04 +session,3256,8,Firefox 18,12,2017-05-04 +session,3256,9,Safari 12,3,2018-01-12 +user,3257,Ricky,Morris,24 +session,3257,0,Safari 37,2,2016-10-12 +session,3257,1,Safari 28,25,2017-01-13 +session,3257,2,Safari 28,51,2016-09-17 +session,3257,3,Chrome 37,25,2017-09-09 +session,3257,4,Internet Explorer 15,109,2017-12-26 +session,3257,5,Chrome 19,26,2018-10-17 +session,3257,6,Firefox 22,70,2017-03-14 +user,3258,Katheryn,Shirl,68 +session,3258,0,Safari 25,92,2017-11-13 +session,3258,1,Internet Explorer 40,49,2017-10-22 +session,3258,2,Firefox 1,38,2016-11-15 +session,3258,3,Chrome 14,16,2018-02-28 +session,3258,4,Safari 31,71,2016-07-17 +session,3258,5,Firefox 20,115,2017-07-28 +session,3258,6,Firefox 42,4,2017-07-05 +user,3259,Rashida,Cody,6 +session,3259,0,Internet Explorer 17,116,2016-10-12 +user,3260,Eleonore,Florida,90 +session,3260,0,Chrome 1,28,2016-06-27 +session,3260,1,Internet Explorer 23,111,2018-04-21 +session,3260,2,Firefox 23,77,2018-03-04 +session,3260,3,Chrome 44,46,2017-10-17 +session,3260,4,Safari 34,112,2017-03-12 +session,3260,5,Chrome 39,17,2017-04-22 +session,3260,6,Safari 21,69,2018-06-06 +user,3261,Gregory,Pearlie,6 +session,3261,0,Firefox 3,38,2017-02-25 +session,3261,1,Safari 37,67,2018-07-04 +session,3261,2,Safari 21,117,2017-11-21 +session,3261,3,Chrome 10,23,2017-10-31 +session,3261,4,Internet Explorer 6,21,2018-12-11 +session,3261,5,Firefox 43,83,2017-03-03 +session,3261,6,Firefox 32,34,2016-11-03 +session,3261,7,Safari 47,5,2017-07-21 +user,3262,September,Kimbra,84 +session,3262,0,Safari 35,61,2018-10-02 +session,3262,1,Safari 25,14,2018-10-18 +session,3262,2,Chrome 47,17,2017-02-26 +session,3262,3,Chrome 41,82,2016-08-18 +user,3263,Dwain,Tammi,47 +session,3263,0,Chrome 3,37,2018-10-29 +session,3263,1,Internet Explorer 31,48,2017-09-03 +user,3264,Lashunda,Remona,90 +session,3264,0,Chrome 30,16,2018-06-08 +session,3264,1,Internet Explorer 16,89,2016-08-03 +session,3264,2,Chrome 48,96,2016-11-07 +session,3264,3,Chrome 14,109,2017-06-10 +user,3265,Janita,Kamilah,8 +session,3265,0,Chrome 25,68,2018-02-24 +session,3265,1,Firefox 44,96,2017-01-02 +session,3265,2,Firefox 48,82,2016-09-04 +session,3265,3,Firefox 14,52,2018-07-23 +session,3265,4,Firefox 14,86,2017-07-19 +user,3266,Lorilee,Eve,63 +session,3266,0,Chrome 6,34,2019-01-12 +session,3266,1,Firefox 1,8,2018-08-24 +session,3266,2,Safari 3,111,2018-07-21 +session,3266,3,Chrome 1,51,2016-11-02 +session,3266,4,Chrome 41,0,2018-03-09 +session,3266,5,Firefox 48,5,2018-10-11 +session,3266,6,Safari 2,31,2016-12-10 +user,3267,Elijah,Parker,19 +session,3267,0,Internet Explorer 13,106,2018-09-10 +session,3267,1,Chrome 41,19,2017-03-13 +session,3267,2,Chrome 30,61,2016-09-26 +session,3267,3,Internet Explorer 46,8,2018-04-01 +session,3267,4,Firefox 47,98,2018-05-08 +session,3267,5,Chrome 36,54,2017-08-12 +user,3268,Wynona,Reita,48 +session,3268,0,Safari 41,25,2017-04-21 +session,3268,1,Firefox 43,44,2018-09-12 +session,3268,2,Chrome 40,108,2017-08-07 +session,3268,3,Safari 1,63,2017-08-04 +session,3268,4,Internet Explorer 24,113,2018-05-29 +session,3268,5,Safari 40,25,2016-10-29 +session,3268,6,Chrome 9,25,2016-11-01 +user,3269,Evelia,Daphine,23 +session,3269,0,Internet Explorer 16,90,2018-01-11 +session,3269,1,Firefox 22,104,2018-10-02 +session,3269,2,Internet Explorer 18,46,2016-11-05 +session,3269,3,Safari 3,27,2017-08-09 +user,3270,Arleen,Marva,38 +session,3270,0,Safari 10,6,2016-08-24 +session,3270,1,Internet Explorer 31,40,2018-10-26 +session,3270,2,Safari 24,91,2017-08-04 +session,3270,3,Safari 46,95,2018-12-15 +session,3270,4,Internet Explorer 23,39,2017-03-09 +user,3271,Barton,Jaimee,2 +session,3271,0,Firefox 6,8,2017-08-11 +user,3272,Kay,Felice,92 +session,3272,0,Chrome 49,42,2016-12-07 +session,3272,1,Chrome 15,78,2018-06-21 +session,3272,2,Chrome 3,96,2017-05-13 +user,3273,Blondell,Shanti,21 +session,3273,0,Chrome 28,12,2017-10-02 +session,3273,1,Chrome 35,31,2019-01-07 +session,3273,2,Firefox 49,87,2016-06-24 +session,3273,3,Firefox 20,72,2016-10-30 +session,3273,4,Firefox 34,53,2017-08-20 +session,3273,5,Chrome 37,98,2016-08-18 +session,3273,6,Firefox 46,54,2018-08-07 +session,3273,7,Internet Explorer 22,106,2016-06-14 +session,3273,8,Chrome 25,35,2018-05-09 +user,3274,Leandro,Tisha,40 +session,3274,0,Safari 5,59,2018-10-14 +session,3274,1,Firefox 21,38,2016-10-29 +session,3274,2,Safari 14,112,2018-01-16 +session,3274,3,Firefox 31,9,2018-06-01 +session,3274,4,Chrome 10,118,2018-08-25 +session,3274,5,Chrome 7,92,2017-10-02 +session,3274,6,Firefox 38,72,2017-12-15 +user,3275,Dann,Yuri,14 +session,3275,0,Safari 37,116,2017-03-21 +session,3275,1,Safari 24,115,2018-04-30 +session,3275,2,Safari 28,22,2017-06-21 +session,3275,3,Chrome 16,59,2018-12-20 +user,3276,Eugenio,Lillia,4 +session,3276,0,Chrome 22,20,2016-10-29 +session,3276,1,Internet Explorer 43,112,2017-07-01 +session,3276,2,Chrome 19,47,2018-11-05 +session,3276,3,Safari 11,59,2017-03-10 +session,3276,4,Safari 29,16,2019-01-04 +user,3277,Abbie,Hosea,43 +session,3277,0,Internet Explorer 3,89,2017-11-26 +session,3277,1,Safari 6,73,2017-05-14 +session,3277,2,Safari 36,78,2016-10-09 +session,3277,3,Chrome 5,42,2018-05-03 +session,3277,4,Chrome 28,1,2019-01-28 +session,3277,5,Safari 43,95,2017-08-26 +session,3277,6,Internet Explorer 19,23,2017-04-06 +session,3277,7,Internet Explorer 20,94,2019-01-09 +session,3277,8,Firefox 49,88,2018-07-02 +user,3278,Genny,Janeen,90 +session,3278,0,Safari 43,57,2017-07-24 +user,3279,Christina,Marcella,63 +session,3279,0,Firefox 11,7,2016-07-28 +session,3279,1,Firefox 23,68,2017-01-18 +session,3279,2,Firefox 24,109,2016-10-28 +session,3279,3,Safari 4,40,2018-04-14 +session,3279,4,Safari 49,33,2017-03-30 +session,3279,5,Internet Explorer 23,42,2016-11-07 +user,3280,Andre,Alline,7 +session,3280,0,Firefox 38,108,2018-05-14 +session,3280,1,Safari 11,50,2018-10-19 +session,3280,2,Internet Explorer 46,50,2018-03-18 +session,3280,3,Safari 33,40,2017-05-15 +session,3280,4,Safari 39,103,2018-09-01 +session,3280,5,Firefox 45,81,2017-07-25 +session,3280,6,Chrome 24,53,2016-08-08 +user,3281,Otis,Guillermina,53 +session,3281,0,Internet Explorer 36,25,2016-08-17 +session,3281,1,Safari 17,81,2018-07-17 +session,3281,2,Chrome 43,95,2018-12-21 +session,3281,3,Internet Explorer 29,48,2016-06-08 +session,3281,4,Chrome 24,0,2018-01-15 +user,3282,Samual,Floretta,66 +session,3282,0,Firefox 36,25,2017-07-17 +session,3282,1,Firefox 24,11,2016-06-14 +session,3282,2,Safari 30,66,2017-09-29 +session,3282,3,Firefox 16,90,2018-12-27 +session,3282,4,Firefox 21,34,2018-08-04 +session,3282,5,Firefox 16,15,2018-11-30 +session,3282,6,Internet Explorer 33,69,2017-11-15 +session,3282,7,Internet Explorer 34,72,2016-10-02 +session,3282,8,Chrome 50,3,2016-06-23 +session,3282,9,Safari 1,36,2018-01-03 +user,3283,Wayne,Carolynn,39 +session,3283,0,Safari 16,81,2018-07-19 +session,3283,1,Safari 41,90,2018-01-15 +user,3284,Tammie,Dagny,85 +session,3284,0,Internet Explorer 45,24,2016-08-31 +session,3284,1,Chrome 50,26,2018-03-23 +session,3284,2,Safari 41,44,2018-12-23 +session,3284,3,Firefox 27,66,2017-04-25 +session,3284,4,Safari 27,8,2017-12-26 +session,3284,5,Chrome 43,55,2017-11-27 +session,3284,6,Internet Explorer 35,30,2018-06-11 +user,3285,Brian,Maddie,2 +session,3285,0,Internet Explorer 18,7,2016-10-05 +session,3285,1,Safari 44,37,2018-04-25 +session,3285,2,Safari 15,14,2016-11-28 +user,3286,Sharyn,Yaeko,74 +session,3286,0,Chrome 28,77,2017-02-04 +session,3286,1,Firefox 10,70,2017-07-25 +session,3286,2,Safari 39,83,2018-04-07 +session,3286,3,Safari 35,77,2016-07-22 +session,3286,4,Chrome 38,77,2018-02-08 +session,3286,5,Safari 16,13,2016-09-05 +session,3286,6,Chrome 32,67,2017-06-04 +user,3287,Kevin,Rosanna,69 +session,3287,0,Firefox 35,101,2016-10-17 +session,3287,1,Chrome 8,19,2017-11-05 +session,3287,2,Internet Explorer 28,106,2018-05-03 +session,3287,3,Safari 1,4,2017-12-21 +user,3288,Ezekiel,Lynn,7 +session,3288,0,Firefox 9,83,2018-02-05 +session,3288,1,Internet Explorer 47,0,2017-05-29 +session,3288,2,Firefox 45,5,2016-11-21 +session,3288,3,Chrome 49,66,2017-07-10 +session,3288,4,Chrome 13,31,2017-08-19 +session,3288,5,Safari 5,17,2016-10-04 +session,3288,6,Internet Explorer 24,2,2016-11-07 +session,3288,7,Firefox 29,59,2016-07-31 +session,3288,8,Chrome 19,87,2016-11-30 +user,3289,Earlean,Beverlee,22 +session,3289,0,Internet Explorer 36,24,2018-07-02 +session,3289,1,Firefox 8,11,2017-04-28 +session,3289,2,Chrome 17,69,2017-09-22 +session,3289,3,Safari 40,70,2016-05-30 +user,3290,Minta,Billy,26 +session,3290,0,Safari 22,27,2017-07-01 +session,3290,1,Internet Explorer 10,41,2018-07-28 +session,3290,2,Chrome 21,52,2018-07-09 +session,3290,3,Firefox 45,118,2017-09-09 +session,3290,4,Internet Explorer 28,75,2017-09-20 +session,3290,5,Safari 11,49,2017-09-17 +session,3290,6,Internet Explorer 30,53,2016-11-21 +session,3290,7,Internet Explorer 21,28,2017-10-05 +user,3291,Nannie,Cherise,40 +session,3291,0,Chrome 42,75,2016-07-09 +session,3291,1,Internet Explorer 14,66,2017-10-29 +session,3291,2,Firefox 34,76,2018-10-24 +session,3291,3,Internet Explorer 42,87,2016-09-01 +user,3292,Humberto,Octavio,40 +session,3292,0,Internet Explorer 10,37,2017-11-27 +session,3292,1,Chrome 41,86,2018-06-16 +session,3292,2,Safari 38,36,2017-01-22 +session,3292,3,Firefox 18,86,2017-03-09 +user,3293,Valencia,Shakia,41 +session,3293,0,Chrome 17,12,2017-12-16 +user,3294,Kyoko,Jessi,56 +session,3294,0,Internet Explorer 40,66,2018-09-18 +session,3294,1,Firefox 36,51,2017-08-19 +session,3294,2,Chrome 23,46,2018-02-20 +session,3294,3,Safari 33,7,2017-11-08 +session,3294,4,Internet Explorer 11,60,2017-10-16 +session,3294,5,Internet Explorer 33,71,2018-12-15 +session,3294,6,Firefox 41,46,2016-06-24 +session,3294,7,Chrome 24,66,2019-02-01 +session,3294,8,Internet Explorer 5,22,2017-01-04 +session,3294,9,Safari 32,99,2016-06-05 +user,3295,Lea,Valrie,84 +session,3295,0,Internet Explorer 38,37,2016-08-26 +session,3295,1,Chrome 18,119,2018-06-08 +session,3295,2,Safari 22,2,2018-10-30 +session,3295,3,Safari 37,106,2017-05-03 +session,3295,4,Firefox 7,89,2017-07-21 +session,3295,5,Safari 28,70,2016-08-09 +user,3296,Martin,Delfina,22 +session,3296,0,Chrome 27,85,2018-09-05 +session,3296,1,Chrome 43,14,2018-08-04 +session,3296,2,Firefox 9,67,2017-08-04 +session,3296,3,Safari 9,49,2018-01-10 +session,3296,4,Chrome 5,27,2018-02-21 +session,3296,5,Firefox 5,60,2016-10-24 +session,3296,6,Firefox 43,74,2016-07-04 +session,3296,7,Chrome 11,70,2017-11-24 +user,3297,Marlon,Sunday,44 +session,3297,0,Firefox 23,13,2018-08-07 +session,3297,1,Firefox 48,64,2017-04-01 +session,3297,2,Firefox 30,59,2016-06-09 +session,3297,3,Safari 16,42,2016-12-23 +session,3297,4,Internet Explorer 26,57,2017-05-21 +session,3297,5,Safari 17,57,2018-05-12 +session,3297,6,Chrome 23,112,2017-05-29 +session,3297,7,Chrome 32,30,2016-06-03 +session,3297,8,Firefox 34,67,2018-01-11 +session,3297,9,Chrome 7,100,2018-03-14 +user,3298,Magda,Mica,31 +session,3298,0,Firefox 16,69,2017-02-17 +session,3298,1,Firefox 3,28,2016-08-03 +user,3299,Agustin,Janine,9 +session,3299,0,Chrome 41,11,2018-04-04 +session,3299,1,Chrome 43,96,2018-12-23 +session,3299,2,Safari 15,73,2019-01-21 +session,3299,3,Internet Explorer 9,118,2018-01-11 +session,3299,4,Safari 49,83,2017-01-06 +session,3299,5,Internet Explorer 20,29,2017-06-22 +session,3299,6,Safari 2,51,2016-06-20 +session,3299,7,Firefox 35,15,2016-10-06 +session,3299,8,Firefox 47,41,2017-10-25 +user,3300,Emile,Clarence,62 +session,3300,0,Firefox 49,90,2019-02-11 +session,3300,1,Firefox 27,49,2016-08-12 +session,3300,2,Chrome 46,25,2017-11-15 +session,3300,3,Chrome 9,74,2018-09-10 +session,3300,4,Safari 12,15,2019-01-18 +session,3300,5,Internet Explorer 18,57,2018-02-09 +session,3300,6,Firefox 9,21,2017-06-05 +session,3300,7,Internet Explorer 18,25,2017-07-07 +session,3300,8,Safari 37,113,2018-07-20 +session,3300,9,Chrome 18,12,2017-10-14 +user,3301,Layla,Elza,4 +session,3301,0,Firefox 40,117,2018-08-02 +session,3301,1,Internet Explorer 31,100,2018-07-06 +user,3302,Dirk,Florrie,57 +session,3302,0,Safari 8,118,2018-08-25 +session,3302,1,Chrome 18,96,2018-05-30 +session,3302,2,Safari 11,116,2016-12-02 +session,3302,3,Safari 1,104,2018-11-14 +user,3303,Emerson,Colton,14 +session,3303,0,Firefox 38,52,2016-12-04 +session,3303,1,Safari 1,114,2018-11-17 +session,3303,2,Firefox 2,68,2018-03-26 +session,3303,3,Internet Explorer 18,41,2018-08-25 +session,3303,4,Safari 47,72,2016-06-04 +session,3303,5,Safari 26,47,2017-10-23 +session,3303,6,Internet Explorer 7,39,2017-10-18 +session,3303,7,Chrome 41,36,2016-10-18 +session,3303,8,Safari 36,85,2017-12-29 +session,3303,9,Chrome 15,88,2016-10-10 +user,3304,Deandra,Isaias,8 +session,3304,0,Firefox 10,111,2016-09-09 +session,3304,1,Firefox 33,44,2018-10-19 +user,3305,Graig,Jan,79 +session,3305,0,Chrome 47,52,2018-05-21 +session,3305,1,Internet Explorer 15,92,2016-06-20 +session,3305,2,Safari 28,71,2018-03-03 +session,3305,3,Internet Explorer 26,70,2017-04-16 +session,3305,4,Chrome 32,76,2016-10-05 +session,3305,5,Firefox 30,4,2017-01-13 +user,3306,Sunni,Gilda,59 +session,3306,0,Safari 10,90,2017-07-08 +session,3306,1,Firefox 24,48,2017-10-19 +session,3306,2,Chrome 28,66,2016-09-06 +session,3306,3,Firefox 1,82,2016-07-23 +session,3306,4,Internet Explorer 34,73,2017-12-18 +session,3306,5,Safari 15,83,2016-06-11 +session,3306,6,Internet Explorer 33,17,2018-02-03 +session,3306,7,Safari 19,73,2018-11-16 +session,3306,8,Chrome 27,105,2017-12-21 +session,3306,9,Safari 26,39,2017-01-22 +user,3307,Juliana,Katelin,16 +session,3307,0,Firefox 18,46,2017-04-11 +session,3307,1,Firefox 4,112,2018-12-26 +session,3307,2,Firefox 50,84,2017-05-19 +session,3307,3,Internet Explorer 18,52,2016-06-09 +session,3307,4,Chrome 49,38,2018-07-05 +user,3308,Starla,Chung,38 +session,3308,0,Safari 25,80,2018-09-03 +session,3308,1,Internet Explorer 31,58,2016-07-13 +session,3308,2,Chrome 29,82,2019-02-09 +session,3308,3,Safari 3,30,2016-11-15 +session,3308,4,Safari 23,112,2017-02-09 +session,3308,5,Firefox 12,119,2018-05-05 +session,3308,6,Safari 47,118,2017-10-26 +user,3309,Stacey,Jamey,90 +session,3309,0,Chrome 16,101,2016-12-17 +session,3309,1,Safari 39,33,2017-02-08 +session,3309,2,Firefox 31,54,2017-08-30 +session,3309,3,Internet Explorer 47,109,2016-08-26 +session,3309,4,Safari 7,49,2016-08-11 +session,3309,5,Internet Explorer 10,13,2017-03-22 +session,3309,6,Internet Explorer 6,117,2016-06-10 +user,3310,Sabrina,Isabelle,23 +session,3310,0,Internet Explorer 38,62,2016-06-04 +session,3310,1,Firefox 45,1,2018-05-14 +session,3310,2,Internet Explorer 34,94,2018-08-22 +session,3310,3,Internet Explorer 44,79,2017-01-06 +session,3310,4,Internet Explorer 17,104,2018-04-06 +user,3311,Daron,Fallon,8 +session,3311,0,Chrome 21,33,2018-04-02 +session,3311,1,Internet Explorer 45,97,2018-06-16 +session,3311,2,Chrome 6,81,2018-07-31 +session,3311,3,Firefox 48,85,2017-09-09 +user,3312,Carson,Madlyn,70 +session,3312,0,Chrome 10,23,2018-08-25 +session,3312,1,Firefox 11,49,2018-01-12 +session,3312,2,Safari 28,85,2017-07-06 +session,3312,3,Safari 1,4,2016-07-12 +user,3313,Andres,Delena,21 +session,3313,0,Firefox 17,11,2017-04-14 +session,3313,1,Internet Explorer 33,43,2016-06-05 +session,3313,2,Firefox 35,40,2016-06-01 +session,3313,3,Firefox 37,72,2018-05-07 +session,3313,4,Firefox 18,86,2018-06-10 +session,3313,5,Safari 21,48,2016-10-15 +session,3313,6,Safari 34,40,2018-07-18 +user,3314,Fritz,Lorean,47 +session,3314,0,Internet Explorer 41,19,2017-03-20 +user,3315,Margherita,Kirstie,53 +session,3315,0,Safari 42,54,2019-01-14 +session,3315,1,Safari 43,87,2016-08-05 +session,3315,2,Chrome 22,89,2018-04-25 +session,3315,3,Internet Explorer 22,86,2017-03-08 +session,3315,4,Safari 10,35,2017-01-27 +session,3315,5,Firefox 18,97,2017-10-31 +session,3315,6,Internet Explorer 11,91,2019-02-01 +user,3316,Carl,Sharri,38 +session,3316,0,Firefox 40,53,2017-11-15 +session,3316,1,Chrome 30,31,2016-06-10 +session,3316,2,Internet Explorer 36,64,2019-01-21 +session,3316,3,Chrome 38,119,2017-04-12 +session,3316,4,Chrome 21,119,2016-08-19 +session,3316,5,Internet Explorer 20,49,2016-07-04 +session,3316,6,Internet Explorer 33,22,2018-11-10 +user,3317,Hubert,Mariana,20 +session,3317,0,Firefox 43,6,2018-04-24 +session,3317,1,Safari 34,98,2016-05-21 +session,3317,2,Safari 25,101,2018-11-24 +user,3318,Paris,Romona,4 +session,3318,0,Firefox 41,93,2017-07-16 +user,3319,Bradley,Carlota,82 +session,3319,0,Safari 38,40,2018-03-18 +session,3319,1,Internet Explorer 1,44,2018-02-15 +session,3319,2,Firefox 11,67,2017-12-18 +session,3319,3,Internet Explorer 36,36,2016-12-24 +session,3319,4,Safari 25,24,2016-09-09 +session,3319,5,Firefox 50,46,2017-12-22 +session,3319,6,Safari 48,95,2017-01-12 +session,3319,7,Firefox 45,66,2018-05-07 +session,3319,8,Firefox 25,104,2019-01-02 +user,3320,Loraine,Lurline,58 +session,3320,0,Safari 7,27,2018-05-28 +session,3320,1,Firefox 4,14,2016-12-17 +session,3320,2,Internet Explorer 6,62,2017-01-28 +session,3320,3,Chrome 14,39,2018-09-01 +session,3320,4,Firefox 3,111,2018-09-26 +session,3320,5,Safari 5,0,2016-06-03 +session,3320,6,Internet Explorer 36,64,2018-07-31 +session,3320,7,Internet Explorer 25,108,2017-06-14 +session,3320,8,Firefox 37,84,2019-01-31 +session,3320,9,Chrome 46,102,2019-01-01 +user,3321,Mammie,Foster,97 +session,3321,0,Internet Explorer 15,45,2016-12-25 +user,3322,Leonardo,Jeffry,5 +session,3322,0,Safari 35,38,2016-09-01 +session,3322,1,Chrome 35,89,2017-06-13 +session,3322,2,Chrome 45,20,2016-06-06 +session,3322,3,Chrome 27,82,2016-10-20 +session,3322,4,Internet Explorer 12,48,2016-05-28 +session,3322,5,Internet Explorer 26,41,2018-07-21 +session,3322,6,Internet Explorer 17,1,2017-12-14 +session,3322,7,Internet Explorer 33,71,2018-08-14 +user,3323,Walter,Mayola,33 +session,3323,0,Safari 37,57,2016-08-08 +session,3323,1,Firefox 48,90,2018-04-03 +session,3323,2,Safari 35,103,2018-10-25 +session,3323,3,Safari 3,44,2018-07-16 +session,3323,4,Chrome 40,51,2017-11-09 +session,3323,5,Chrome 10,55,2018-08-05 +session,3323,6,Safari 27,58,2018-10-19 +session,3323,7,Internet Explorer 14,68,2017-12-17 +session,3323,8,Safari 43,11,2017-06-23 +user,3324,Warner,Duane,3 +session,3324,0,Internet Explorer 33,19,2018-12-27 +session,3324,1,Internet Explorer 25,67,2017-05-17 +session,3324,2,Firefox 10,63,2017-01-01 +session,3324,3,Internet Explorer 34,8,2018-05-30 +session,3324,4,Firefox 11,6,2018-07-13 +session,3324,5,Firefox 1,11,2017-02-05 +session,3324,6,Internet Explorer 21,100,2016-05-28 +user,3325,Talitha,Delsie,70 +session,3325,0,Chrome 10,119,2017-09-15 +session,3325,1,Chrome 28,45,2018-03-03 +session,3325,2,Chrome 29,101,2018-04-01 +session,3325,3,Firefox 40,94,2018-09-22 +user,3326,Gary,Fanny,24 +session,3326,0,Safari 1,11,2018-03-03 +session,3326,1,Safari 16,21,2018-09-24 +session,3326,2,Firefox 26,79,2018-10-30 +user,3327,Robby,Valentin,42 +session,3327,0,Internet Explorer 26,93,2018-03-01 +session,3327,1,Internet Explorer 23,109,2018-04-09 +session,3327,2,Internet Explorer 42,19,2017-10-28 +session,3327,3,Internet Explorer 36,104,2016-06-02 +session,3327,4,Internet Explorer 8,39,2018-06-20 +session,3327,5,Internet Explorer 20,29,2017-11-28 +session,3327,6,Firefox 19,74,2018-04-27 +session,3327,7,Firefox 28,100,2017-09-26 +user,3328,Junior,Edmundo,15 +session,3328,0,Internet Explorer 41,2,2017-05-16 +session,3328,1,Firefox 34,65,2018-02-05 +user,3329,Zita,Tarsha,85 +session,3329,0,Chrome 31,114,2017-01-08 +session,3329,1,Internet Explorer 36,77,2016-09-03 +session,3329,2,Safari 40,83,2019-01-15 +session,3329,3,Safari 5,39,2017-08-22 +session,3329,4,Firefox 35,73,2017-02-22 +session,3329,5,Internet Explorer 18,86,2017-08-21 +session,3329,6,Chrome 12,56,2017-02-26 +session,3329,7,Chrome 4,18,2017-08-26 +session,3329,8,Firefox 21,92,2017-01-06 +user,3330,Tomika,Cecilia,70 +session,3330,0,Safari 35,70,2018-02-19 +session,3330,1,Chrome 13,74,2018-06-29 +session,3330,2,Internet Explorer 24,94,2016-10-28 +user,3331,Melinda,Chandra,85 +session,3331,0,Safari 4,27,2017-03-06 +session,3331,1,Chrome 48,56,2018-02-08 +session,3331,2,Safari 47,92,2017-08-01 +session,3331,3,Internet Explorer 12,31,2019-02-06 +user,3332,Donovan,Ward,66 +session,3332,0,Safari 43,59,2017-11-17 +session,3332,1,Safari 48,113,2018-10-14 +session,3332,2,Internet Explorer 36,34,2016-06-09 +session,3332,3,Chrome 16,21,2017-05-07 +user,3333,Sandi,Lindsey,76 +session,3333,0,Firefox 39,63,2018-11-08 +user,3334,Nguyet,Tressie,76 +session,3334,0,Firefox 20,116,2018-11-29 +session,3334,1,Safari 15,38,2016-08-06 +session,3334,2,Firefox 27,25,2017-02-15 +session,3334,3,Safari 45,67,2016-12-23 +session,3334,4,Safari 38,80,2017-08-31 +user,3335,Wanda,Elwood,74 +session,3335,0,Internet Explorer 19,32,2016-12-15 +session,3335,1,Internet Explorer 45,14,2018-12-16 +session,3335,2,Firefox 29,58,2017-11-27 +session,3335,3,Firefox 13,32,2017-04-06 +session,3335,4,Safari 17,70,2018-02-21 +session,3335,5,Internet Explorer 43,100,2016-11-24 +session,3335,6,Safari 15,111,2017-03-18 +user,3336,Antione,Lourdes,30 +session,3336,0,Chrome 14,80,2018-11-30 +user,3337,Donny,Eloise,76 +session,3337,0,Internet Explorer 16,16,2016-09-24 +session,3337,1,Firefox 38,20,2017-06-21 +session,3337,2,Firefox 36,80,2017-03-23 +session,3337,3,Chrome 42,113,2017-05-08 +session,3337,4,Chrome 29,63,2017-04-10 +session,3337,5,Chrome 47,71,2018-06-15 +user,3338,Magaret,Vesta,51 +session,3338,0,Safari 32,14,2017-06-27 +session,3338,1,Internet Explorer 19,8,2017-12-16 +session,3338,2,Internet Explorer 43,2,2017-08-27 +session,3338,3,Safari 12,78,2018-07-08 +session,3338,4,Safari 40,29,2018-11-21 +session,3338,5,Safari 15,43,2016-05-25 +session,3338,6,Chrome 18,43,2017-03-18 +session,3338,7,Chrome 41,90,2016-09-07 +session,3338,8,Internet Explorer 47,68,2016-07-30 +user,3339,Shoshana,Waltraud,83 +session,3339,0,Internet Explorer 19,63,2018-05-09 +user,3340,Chelsea,Joyce,72 +session,3340,0,Safari 18,40,2017-12-13 +user,3341,Ivelisse,Cherri,15 +session,3341,0,Chrome 10,109,2018-02-14 +session,3341,1,Internet Explorer 5,46,2018-04-11 +user,3342,Ambrose,Ranee,1 +session,3342,0,Chrome 31,94,2019-02-06 +session,3342,1,Internet Explorer 3,101,2016-06-29 +session,3342,2,Firefox 24,98,2016-10-04 +session,3342,3,Internet Explorer 45,46,2017-09-15 +session,3342,4,Safari 24,112,2018-08-09 +session,3342,5,Firefox 4,72,2017-08-19 +user,3343,Kenton,Galina,80 +session,3343,0,Safari 34,24,2017-01-06 +session,3343,1,Internet Explorer 9,28,2017-06-05 +session,3343,2,Safari 25,67,2017-11-25 +session,3343,3,Chrome 12,12,2017-09-13 +session,3343,4,Safari 14,114,2016-07-18 +session,3343,5,Chrome 19,73,2018-02-26 +session,3343,6,Internet Explorer 28,45,2019-01-08 +session,3343,7,Safari 1,96,2018-11-10 +session,3343,8,Internet Explorer 46,18,2017-09-22 +user,3344,Artie,Patsy,12 +session,3344,0,Internet Explorer 8,66,2019-01-01 +session,3344,1,Firefox 19,44,2017-04-28 +session,3344,2,Safari 31,58,2018-11-09 +session,3344,3,Safari 39,84,2019-01-16 +session,3344,4,Internet Explorer 7,34,2016-10-29 +session,3344,5,Firefox 23,88,2018-09-24 +session,3344,6,Internet Explorer 24,81,2018-07-26 +session,3344,7,Safari 47,23,2017-08-03 +session,3344,8,Chrome 49,54,2016-10-22 +user,3345,Emile,Ken,52 +session,3345,0,Firefox 38,109,2017-05-10 +session,3345,1,Chrome 48,99,2017-06-08 +session,3345,2,Internet Explorer 1,62,2017-06-21 +session,3345,3,Safari 3,89,2018-12-11 +user,3346,Billie,Bobbie,61 +session,3346,0,Chrome 38,33,2018-09-21 +session,3346,1,Internet Explorer 32,82,2017-10-20 +session,3346,2,Firefox 21,70,2018-02-16 +session,3346,3,Chrome 48,18,2017-07-01 +user,3347,Angel,Cristal,82 +session,3347,0,Chrome 48,49,2016-10-31 +session,3347,1,Firefox 33,51,2016-12-30 +user,3348,Georgianne,Mitzi,65 +session,3348,0,Firefox 31,38,2019-01-24 +session,3348,1,Internet Explorer 7,76,2018-06-24 +session,3348,2,Internet Explorer 40,26,2017-10-26 +session,3348,3,Chrome 23,34,2017-06-03 +session,3348,4,Safari 48,44,2017-06-28 +user,3349,Mac,Lieselotte,74 +session,3349,0,Firefox 31,27,2017-03-11 +session,3349,1,Safari 26,116,2017-12-10 +session,3349,2,Internet Explorer 23,75,2016-09-01 +session,3349,3,Firefox 21,115,2018-01-28 +session,3349,4,Safari 15,18,2017-09-10 +session,3349,5,Safari 3,11,2017-02-14 +session,3349,6,Chrome 15,24,2018-09-05 +session,3349,7,Safari 22,82,2016-09-09 +session,3349,8,Chrome 25,46,2017-08-22 +session,3349,9,Firefox 38,42,2018-09-26 +user,3350,Woodrow,Robena,23 +session,3350,0,Safari 34,30,2018-05-20 +session,3350,1,Safari 47,89,2018-11-16 +session,3350,2,Firefox 45,118,2018-07-11 +session,3350,3,Chrome 42,75,2018-10-21 +session,3350,4,Safari 14,85,2017-09-18 +session,3350,5,Firefox 30,13,2016-10-18 +session,3350,6,Chrome 11,97,2018-04-25 +user,3351,Willian,Sudie,9 +session,3351,0,Firefox 34,44,2018-04-09 +session,3351,1,Internet Explorer 43,116,2017-04-26 +session,3351,2,Firefox 11,10,2017-02-23 +user,3352,Angelic,Blanca,52 +session,3352,0,Chrome 46,117,2018-08-20 +session,3352,1,Chrome 17,2,2016-05-21 +user,3353,Dee,Adrienne,93 +session,3353,0,Internet Explorer 1,41,2017-07-01 +user,3354,Fleta,Bruce,34 +session,3354,0,Firefox 35,47,2017-08-03 +session,3354,1,Chrome 32,111,2017-09-09 +session,3354,2,Chrome 49,118,2016-05-22 +session,3354,3,Safari 13,89,2018-05-15 +user,3355,Laurence,Chantay,59 +session,3355,0,Chrome 46,104,2017-03-02 +session,3355,1,Safari 39,39,2017-02-22 +user,3356,Ahmad,Emile,62 +session,3356,0,Firefox 28,8,2017-10-23 +session,3356,1,Chrome 38,90,2018-08-06 +session,3356,2,Internet Explorer 32,15,2017-07-04 +session,3356,3,Safari 33,40,2018-03-29 +user,3357,Billy,Latanya,68 +session,3357,0,Firefox 26,73,2018-05-10 +session,3357,1,Chrome 22,61,2017-04-30 +session,3357,2,Internet Explorer 14,81,2016-08-10 +session,3357,3,Chrome 45,46,2017-11-15 +user,3358,Sigrid,Brittanie,30 +session,3358,0,Chrome 3,8,2017-11-23 +session,3358,1,Chrome 18,60,2016-10-05 +session,3358,2,Firefox 12,113,2018-09-11 +user,3359,Daniel,Dan,62 +session,3359,0,Safari 15,24,2017-10-08 +session,3359,1,Chrome 30,10,2018-09-23 +session,3359,2,Firefox 19,91,2016-06-30 +session,3359,3,Internet Explorer 25,22,2017-11-15 +user,3360,Carrie,Grover,80 +session,3360,0,Firefox 29,25,2018-01-22 +session,3360,1,Chrome 37,88,2017-11-05 +session,3360,2,Safari 8,77,2016-08-08 +session,3360,3,Firefox 29,33,2016-12-09 +session,3360,4,Chrome 27,96,2018-03-08 +session,3360,5,Chrome 35,64,2016-09-14 +session,3360,6,Safari 26,87,2016-09-23 +session,3360,7,Safari 2,103,2017-07-03 +session,3360,8,Firefox 17,53,2016-11-20 +session,3360,9,Safari 48,118,2018-11-16 +user,3361,Britt,Sid,66 +session,3361,0,Firefox 33,101,2018-07-08 +session,3361,1,Chrome 12,56,2017-10-02 +session,3361,2,Chrome 45,45,2017-07-16 +session,3361,3,Internet Explorer 15,13,2016-10-19 +session,3361,4,Firefox 30,44,2016-12-21 +user,3362,Karla,Tomiko,17 +session,3362,0,Internet Explorer 4,118,2017-12-23 +session,3362,1,Safari 2,23,2016-08-27 +session,3362,2,Chrome 34,10,2018-02-05 +user,3363,Enola,Dione,26 +session,3363,0,Chrome 14,57,2017-07-02 +session,3363,1,Internet Explorer 10,114,2018-02-19 +session,3363,2,Firefox 1,90,2017-12-17 +session,3363,3,Internet Explorer 48,99,2017-11-29 +session,3363,4,Firefox 41,117,2017-10-31 +session,3363,5,Safari 5,106,2019-02-10 +session,3363,6,Safari 7,70,2016-12-16 +session,3363,7,Internet Explorer 15,113,2018-10-26 +user,3364,Francis,Rickey,66 +session,3364,0,Firefox 22,91,2017-04-22 +session,3364,1,Firefox 13,11,2018-03-14 +session,3364,2,Chrome 17,106,2019-01-20 +session,3364,3,Internet Explorer 11,72,2017-04-26 +session,3364,4,Firefox 16,44,2016-05-26 +session,3364,5,Chrome 22,53,2018-11-09 +session,3364,6,Internet Explorer 22,102,2017-09-22 +session,3364,7,Internet Explorer 50,41,2017-12-20 +user,3365,Georgene,Rosalva,7 +session,3365,0,Firefox 1,6,2016-12-04 +session,3365,1,Firefox 33,12,2019-01-08 +session,3365,2,Safari 9,41,2017-09-29 +session,3365,3,Firefox 39,80,2018-04-11 +session,3365,4,Chrome 15,6,2018-07-25 +session,3365,5,Firefox 18,108,2018-11-17 +user,3366,Bob,Theola,87 +session,3366,0,Chrome 41,28,2018-09-22 +session,3366,1,Safari 14,5,2017-03-06 +session,3366,2,Internet Explorer 28,11,2018-12-12 +session,3366,3,Firefox 29,7,2017-08-09 +session,3366,4,Firefox 30,43,2018-10-20 +session,3366,5,Internet Explorer 46,9,2017-03-16 +session,3366,6,Firefox 46,68,2018-08-19 +session,3366,7,Internet Explorer 18,105,2018-04-03 +session,3366,8,Firefox 24,16,2018-12-23 +user,3367,Brant,Sierra,87 +session,3367,0,Safari 6,104,2017-08-11 +session,3367,1,Internet Explorer 12,25,2017-01-16 +session,3367,2,Firefox 44,64,2017-07-31 +user,3368,Olevia,Raven,6 +session,3368,0,Internet Explorer 29,43,2018-07-10 +session,3368,1,Safari 2,68,2016-11-14 +session,3368,2,Safari 49,65,2017-03-28 +user,3369,Arnulfo,Clifford,27 +session,3369,0,Chrome 32,103,2018-07-19 +session,3369,1,Internet Explorer 25,83,2018-01-02 +session,3369,2,Internet Explorer 10,56,2018-03-08 +session,3369,3,Chrome 50,77,2018-06-03 +session,3369,4,Chrome 46,66,2016-06-28 +session,3369,5,Internet Explorer 25,0,2017-11-07 +session,3369,6,Internet Explorer 30,33,2016-09-23 +session,3369,7,Firefox 30,15,2017-09-16 +user,3370,Bernetta,Irma,8 +session,3370,0,Internet Explorer 15,70,2017-03-22 +session,3370,1,Safari 29,104,2017-06-24 +session,3370,2,Chrome 36,91,2018-01-28 +session,3370,3,Safari 35,80,2017-09-28 +session,3370,4,Chrome 17,2,2018-06-21 +session,3370,5,Internet Explorer 44,0,2018-02-05 +session,3370,6,Chrome 20,113,2017-07-04 +session,3370,7,Safari 37,95,2016-05-24 +session,3370,8,Chrome 13,64,2019-01-27 +user,3371,Fallon,Shavonda,64 +session,3371,0,Safari 8,83,2018-07-30 +session,3371,1,Chrome 2,97,2016-07-17 +session,3371,2,Internet Explorer 8,1,2017-10-29 +session,3371,3,Firefox 35,113,2018-05-15 +user,3372,Erin,Codi,88 +session,3372,0,Firefox 34,66,2017-11-11 +session,3372,1,Chrome 38,42,2017-03-27 +session,3372,2,Chrome 48,31,2017-10-29 +session,3372,3,Chrome 22,23,2018-08-18 +session,3372,4,Internet Explorer 12,70,2016-10-15 +session,3372,5,Chrome 43,21,2018-12-17 +user,3373,Erinn,Tamika,47 +session,3373,0,Firefox 43,29,2018-06-30 +session,3373,1,Internet Explorer 22,64,2016-10-14 +session,3373,2,Chrome 15,87,2016-09-01 +session,3373,3,Firefox 39,66,2018-11-04 +session,3373,4,Internet Explorer 13,81,2017-09-03 +session,3373,5,Chrome 33,100,2018-02-20 +session,3373,6,Safari 17,9,2017-08-25 +session,3373,7,Internet Explorer 47,82,2017-09-30 +session,3373,8,Chrome 7,114,2017-09-08 +user,3374,Sherise,Verona,99 +session,3374,0,Internet Explorer 19,9,2017-09-26 +session,3374,1,Safari 18,107,2017-04-03 +session,3374,2,Chrome 50,93,2018-08-20 +session,3374,3,Safari 44,92,2016-06-18 +session,3374,4,Chrome 36,53,2018-07-14 +session,3374,5,Internet Explorer 24,67,2018-08-04 +session,3374,6,Internet Explorer 41,39,2018-02-11 +session,3374,7,Safari 7,100,2017-08-26 +session,3374,8,Firefox 43,42,2018-10-23 +user,3375,Charlotte,Jc,10 +session,3375,0,Internet Explorer 28,93,2018-08-11 +session,3375,1,Safari 39,48,2017-06-27 +session,3375,2,Internet Explorer 32,113,2016-12-19 +session,3375,3,Firefox 42,68,2018-06-08 +session,3375,4,Internet Explorer 49,112,2017-09-05 +session,3375,5,Safari 28,49,2018-01-07 +user,3376,Erma,Johanne,9 +session,3376,0,Internet Explorer 12,39,2017-07-10 +session,3376,1,Internet Explorer 5,45,2016-08-03 +session,3376,2,Internet Explorer 36,80,2018-05-16 +session,3376,3,Chrome 13,59,2018-04-06 +session,3376,4,Safari 11,7,2018-09-14 +session,3376,5,Safari 10,53,2018-12-07 +user,3377,Abram,Tomika,22 +session,3377,0,Safari 7,81,2018-08-01 +session,3377,1,Internet Explorer 23,20,2018-03-01 +session,3377,2,Firefox 7,43,2016-06-24 +session,3377,3,Firefox 23,25,2016-06-18 +session,3377,4,Chrome 5,24,2017-12-20 +user,3378,Merry,Laurette,90 +session,3378,0,Internet Explorer 12,48,2018-11-24 +session,3378,1,Safari 17,70,2017-02-25 +session,3378,2,Safari 28,55,2016-08-09 +session,3378,3,Safari 21,29,2018-09-28 +session,3378,4,Firefox 22,53,2017-08-28 +session,3378,5,Chrome 34,46,2017-07-19 +session,3378,6,Chrome 32,45,2017-07-13 +session,3378,7,Safari 7,68,2017-09-11 +user,3379,Clifford,Curtis,14 +session,3379,0,Internet Explorer 30,119,2016-11-27 +session,3379,1,Safari 14,63,2018-10-31 +session,3379,2,Firefox 31,59,2017-12-30 +session,3379,3,Internet Explorer 9,41,2017-01-16 +session,3379,4,Firefox 37,118,2017-08-11 +session,3379,5,Safari 50,29,2017-09-20 +session,3379,6,Firefox 41,73,2017-11-19 +session,3379,7,Chrome 25,109,2017-07-09 +session,3379,8,Internet Explorer 42,88,2016-07-03 +session,3379,9,Chrome 15,85,2017-03-28 +user,3380,Dorethea,Karoline,49 +session,3380,0,Safari 16,26,2019-01-14 +user,3381,Michal,Bambi,50 +session,3381,0,Internet Explorer 22,118,2017-07-16 +session,3381,1,Internet Explorer 1,78,2017-02-23 +session,3381,2,Internet Explorer 12,23,2016-12-20 +session,3381,3,Safari 4,35,2016-06-20 +user,3382,Paris,Alexia,69 +session,3382,0,Firefox 48,39,2017-08-29 +session,3382,1,Internet Explorer 29,93,2018-07-03 +session,3382,2,Chrome 6,81,2017-10-15 +session,3382,3,Internet Explorer 15,102,2018-10-28 +session,3382,4,Safari 33,62,2018-11-05 +session,3382,5,Firefox 45,5,2018-01-14 +user,3383,Tomeka,Nyla,82 +session,3383,0,Firefox 29,90,2016-09-03 +session,3383,1,Firefox 32,46,2017-09-14 +session,3383,2,Firefox 28,90,2018-04-10 +session,3383,3,Chrome 39,44,2018-08-30 +session,3383,4,Safari 22,28,2016-08-19 +user,3384,Al,Yetta,0 +session,3384,0,Safari 36,88,2016-07-20 +session,3384,1,Safari 42,98,2018-07-30 +session,3384,2,Chrome 5,33,2017-09-15 +session,3384,3,Safari 15,36,2016-10-18 +session,3384,4,Chrome 49,116,2018-06-06 +session,3384,5,Chrome 28,52,2017-05-24 +user,3385,Clyde,Diedra,89 +session,3385,0,Internet Explorer 16,84,2016-08-16 +session,3385,1,Internet Explorer 32,61,2016-07-18 +session,3385,2,Internet Explorer 41,110,2017-06-15 +session,3385,3,Chrome 5,34,2018-06-28 +session,3385,4,Firefox 35,118,2018-10-20 +session,3385,5,Chrome 26,111,2018-06-26 +user,3386,Bernard,Jamel,28 +session,3386,0,Safari 40,60,2018-03-23 +session,3386,1,Chrome 8,105,2017-10-26 +user,3387,Dell,Shayna,60 +session,3387,0,Safari 31,77,2018-12-16 +session,3387,1,Safari 35,83,2017-01-21 +session,3387,2,Chrome 42,31,2016-12-22 +session,3387,3,Internet Explorer 32,8,2016-07-08 +user,3388,Flor,Steven,39 +session,3388,0,Chrome 2,32,2017-06-30 +session,3388,1,Internet Explorer 35,20,2018-02-06 +session,3388,2,Safari 29,108,2018-12-30 +user,3389,Jeffry,Euna,56 +session,3389,0,Internet Explorer 46,55,2018-10-16 +session,3389,1,Safari 7,86,2018-08-25 +session,3389,2,Internet Explorer 43,1,2017-07-21 +session,3389,3,Firefox 40,25,2017-08-04 +session,3389,4,Internet Explorer 40,59,2018-09-20 +session,3389,5,Firefox 45,49,2018-09-24 +user,3390,Joshua,Deena,55 +session,3390,0,Firefox 16,92,2017-12-26 +session,3390,1,Internet Explorer 34,53,2016-07-29 +session,3390,2,Internet Explorer 33,96,2017-04-12 +session,3390,3,Safari 23,87,2017-05-04 +session,3390,4,Chrome 25,36,2017-06-24 +session,3390,5,Safari 13,38,2016-11-05 +session,3390,6,Chrome 2,25,2016-09-22 +session,3390,7,Chrome 24,81,2018-07-15 +session,3390,8,Safari 9,3,2018-05-27 +session,3390,9,Chrome 9,84,2018-01-17 +user,3391,Eva,Anderson,63 +session,3391,0,Firefox 4,67,2018-06-20 +session,3391,1,Chrome 38,83,2017-08-19 +session,3391,2,Firefox 29,11,2018-10-16 +session,3391,3,Internet Explorer 10,94,2017-01-28 +session,3391,4,Firefox 39,96,2018-05-17 +session,3391,5,Internet Explorer 28,24,2017-09-25 +session,3391,6,Internet Explorer 22,71,2016-11-08 +session,3391,7,Internet Explorer 30,3,2017-11-05 +session,3391,8,Chrome 33,53,2017-02-02 +user,3392,Steven,Delena,4 +session,3392,0,Chrome 3,84,2016-05-26 +session,3392,1,Chrome 44,20,2017-05-28 +user,3393,Moshe,Haydee,40 +session,3393,0,Firefox 36,5,2017-03-31 +session,3393,1,Safari 13,56,2017-08-18 +session,3393,2,Safari 44,58,2018-01-28 +session,3393,3,Internet Explorer 45,26,2018-04-03 +session,3393,4,Firefox 6,54,2018-06-24 +user,3394,Rosaline,Ignacia,12 +session,3394,0,Chrome 21,59,2017-07-29 +session,3394,1,Chrome 48,56,2016-10-19 +session,3394,2,Internet Explorer 9,23,2018-12-01 +session,3394,3,Firefox 30,116,2017-09-17 +session,3394,4,Internet Explorer 11,1,2018-05-01 +session,3394,5,Safari 35,91,2016-05-26 +session,3394,6,Chrome 34,77,2018-09-01 +session,3394,7,Chrome 6,116,2018-03-04 +session,3394,8,Chrome 48,107,2018-07-02 +session,3394,9,Firefox 3,33,2017-08-10 +user,3395,Eliseo,Chanel,1 +session,3395,0,Internet Explorer 22,62,2018-10-06 +session,3395,1,Safari 26,0,2019-01-12 +session,3395,2,Internet Explorer 26,99,2016-11-11 +session,3395,3,Internet Explorer 42,63,2017-02-06 +session,3395,4,Internet Explorer 4,104,2018-02-10 +session,3395,5,Firefox 35,27,2017-12-16 +user,3396,Bo,Linwood,52 +session,3396,0,Safari 31,118,2019-01-17 +session,3396,1,Internet Explorer 27,42,2016-06-30 +session,3396,2,Chrome 36,104,2018-03-13 +session,3396,3,Internet Explorer 17,66,2017-02-16 +session,3396,4,Internet Explorer 18,53,2017-04-26 +session,3396,5,Firefox 35,70,2018-11-19 +session,3396,6,Chrome 34,46,2016-10-28 +user,3397,Kandice,Louis,1 +session,3397,0,Firefox 8,71,2018-07-01 +session,3397,1,Chrome 6,36,2017-09-14 +session,3397,2,Safari 43,68,2018-01-05 +session,3397,3,Internet Explorer 8,59,2017-10-26 +user,3398,Magdalen,Shellie,77 +session,3398,0,Firefox 10,52,2018-12-28 +session,3398,1,Internet Explorer 15,10,2017-05-07 +session,3398,2,Internet Explorer 42,47,2017-01-25 +user,3399,Randolph,Fermin,22 +session,3399,0,Internet Explorer 1,24,2016-05-28 +session,3399,1,Firefox 25,108,2018-07-20 +session,3399,2,Safari 7,119,2016-07-23 +session,3399,3,Firefox 40,81,2018-04-07 +session,3399,4,Chrome 20,22,2018-01-03 +session,3399,5,Firefox 35,80,2016-08-02 +session,3399,6,Internet Explorer 34,82,2017-09-12 +session,3399,7,Firefox 32,88,2018-08-18 +user,3400,Derick,Jeniffer,33 +session,3400,0,Internet Explorer 32,64,2017-09-27 +session,3400,1,Chrome 50,38,2018-03-23 +session,3400,2,Firefox 48,116,2017-02-21 +session,3400,3,Safari 11,19,2017-03-25 +user,3401,Danika,Moira,68 +session,3401,0,Safari 22,81,2018-07-05 +session,3401,1,Safari 21,66,2017-05-03 +session,3401,2,Chrome 37,71,2016-10-28 +session,3401,3,Firefox 19,29,2018-01-18 +session,3401,4,Firefox 50,95,2018-03-30 +session,3401,5,Internet Explorer 22,108,2016-09-24 +session,3401,6,Chrome 17,107,2017-08-30 +session,3401,7,Internet Explorer 32,82,2018-09-20 +user,3402,Rickie,Fonda,51 +session,3402,0,Chrome 44,18,2016-10-25 +session,3402,1,Internet Explorer 4,14,2017-02-28 +session,3402,2,Internet Explorer 33,95,2017-05-23 +session,3402,3,Internet Explorer 6,39,2016-05-28 +session,3402,4,Internet Explorer 24,10,2016-06-07 +session,3402,5,Safari 40,114,2017-11-02 +session,3402,6,Firefox 35,96,2016-10-09 +session,3402,7,Internet Explorer 39,30,2016-12-15 +session,3402,8,Internet Explorer 31,21,2018-12-06 +session,3402,9,Internet Explorer 22,66,2018-05-18 +user,3403,Ruthann,Linda,58 +session,3403,0,Safari 26,34,2017-10-11 +session,3403,1,Safari 10,76,2018-04-05 +session,3403,2,Safari 22,14,2018-06-01 +session,3403,3,Firefox 1,0,2016-07-08 +session,3403,4,Firefox 42,11,2016-07-14 +session,3403,5,Firefox 21,93,2018-01-18 +user,3404,Rupert,Magnolia,36 +session,3404,0,Chrome 50,52,2018-01-14 +session,3404,1,Chrome 6,35,2017-12-11 +session,3404,2,Firefox 15,7,2017-11-02 +user,3405,Siu,Maxima,31 +session,3405,0,Chrome 22,8,2017-08-02 +session,3405,1,Chrome 6,62,2016-11-06 +session,3405,2,Firefox 1,23,2017-09-12 +session,3405,3,Chrome 25,44,2018-12-04 +session,3405,4,Internet Explorer 21,89,2017-01-05 +user,3406,Hugh,Melvin,80 +session,3406,0,Firefox 50,69,2018-05-20 +session,3406,1,Chrome 35,82,2018-08-03 +session,3406,2,Internet Explorer 16,102,2017-11-28 +user,3407,Harry,Augustine,98 +session,3407,0,Chrome 3,61,2017-04-15 +session,3407,1,Safari 2,8,2016-12-13 +session,3407,2,Internet Explorer 1,112,2018-09-13 +session,3407,3,Chrome 39,3,2016-09-01 +session,3407,4,Internet Explorer 10,61,2016-10-31 +user,3408,Steffanie,Josphine,11 +session,3408,0,Firefox 8,25,2018-06-25 +session,3408,1,Chrome 34,89,2016-08-13 +session,3408,2,Safari 42,100,2019-01-10 +user,3409,Sam,Charlie,58 +session,3409,0,Chrome 50,107,2016-06-16 +session,3409,1,Safari 5,108,2016-09-06 +session,3409,2,Chrome 4,69,2018-02-11 +session,3409,3,Internet Explorer 19,72,2019-02-03 +session,3409,4,Internet Explorer 39,18,2018-01-26 +session,3409,5,Firefox 46,101,2018-02-26 +session,3409,6,Safari 41,48,2018-10-05 +session,3409,7,Internet Explorer 6,29,2018-01-28 +session,3409,8,Firefox 32,87,2018-12-02 +session,3409,9,Safari 40,17,2017-08-02 +user,3410,Daren,Launa,15 +session,3410,0,Chrome 3,3,2017-08-16 +session,3410,1,Internet Explorer 32,0,2018-04-07 +session,3410,2,Chrome 22,49,2016-08-29 +session,3410,3,Chrome 13,23,2017-02-09 +session,3410,4,Chrome 11,10,2017-05-08 +session,3410,5,Internet Explorer 12,57,2017-11-13 +user,3411,Benton,Allen,41 +session,3411,0,Internet Explorer 12,26,2018-04-29 +session,3411,1,Internet Explorer 18,70,2017-09-22 +session,3411,2,Firefox 17,70,2018-04-20 +session,3411,3,Firefox 33,96,2018-03-25 +user,3412,Chae,Hana,32 +session,3412,0,Safari 15,0,2018-12-08 +session,3412,1,Safari 35,22,2016-08-20 +user,3413,Major,Easter,43 +session,3413,0,Internet Explorer 41,112,2018-03-02 +session,3413,1,Firefox 17,31,2016-12-08 +session,3413,2,Internet Explorer 37,117,2017-03-02 +session,3413,3,Internet Explorer 50,40,2018-03-12 +session,3413,4,Internet Explorer 39,98,2018-03-15 +session,3413,5,Internet Explorer 3,108,2018-06-01 +session,3413,6,Firefox 30,33,2017-09-14 +session,3413,7,Safari 49,104,2017-03-13 +user,3414,Laura,Ying,79 +session,3414,0,Chrome 33,117,2018-10-31 +session,3414,1,Internet Explorer 22,35,2017-12-08 +session,3414,2,Internet Explorer 3,73,2018-04-10 +session,3414,3,Internet Explorer 19,113,2017-08-06 +session,3414,4,Firefox 15,68,2018-06-10 +session,3414,5,Safari 38,13,2017-03-15 +session,3414,6,Chrome 15,106,2017-06-16 +session,3414,7,Chrome 27,44,2016-12-09 +session,3414,8,Internet Explorer 15,13,2018-11-04 +user,3415,Ty,Amalia,75 +session,3415,0,Internet Explorer 15,114,2018-04-29 +session,3415,1,Firefox 8,44,2017-08-12 +session,3415,2,Chrome 33,52,2018-05-17 +session,3415,3,Chrome 45,115,2016-10-04 +session,3415,4,Safari 2,25,2018-09-06 +user,3416,Hong,Dion,66 +session,3416,0,Chrome 2,83,2018-06-04 +session,3416,1,Safari 47,75,2017-09-03 +session,3416,2,Internet Explorer 47,20,2017-02-23 +session,3416,3,Chrome 38,83,2016-07-06 +user,3417,Verda,Alisha,98 +session,3417,0,Safari 48,98,2017-07-28 +session,3417,1,Firefox 33,99,2016-06-06 +session,3417,2,Internet Explorer 9,81,2016-10-06 +session,3417,3,Firefox 31,35,2018-02-05 +user,3418,Randa,Dee,57 +session,3418,0,Firefox 43,32,2017-07-13 +session,3418,1,Internet Explorer 12,93,2018-10-03 +session,3418,2,Firefox 21,9,2016-07-26 +session,3418,3,Chrome 47,96,2018-11-22 +session,3418,4,Chrome 44,23,2017-07-03 +session,3418,5,Chrome 3,38,2017-01-15 +session,3418,6,Internet Explorer 12,107,2017-08-22 +session,3418,7,Internet Explorer 5,116,2016-11-05 +user,3419,Merrill,Shaun,68 +session,3419,0,Firefox 43,89,2017-01-23 +user,3420,Dewitt,Nichelle,8 +session,3420,0,Firefox 33,118,2017-02-11 +session,3420,1,Internet Explorer 34,99,2017-02-06 +session,3420,2,Firefox 46,33,2018-11-19 +session,3420,3,Chrome 25,3,2017-09-12 +session,3420,4,Firefox 17,87,2016-05-29 +user,3421,Christel,Ariane,38 +session,3421,0,Internet Explorer 29,106,2018-03-05 +session,3421,1,Chrome 32,14,2018-12-03 +session,3421,2,Firefox 3,48,2018-05-30 +session,3421,3,Safari 20,15,2016-12-03 +user,3422,Lavera,Olinda,3 +session,3422,0,Chrome 24,101,2016-08-12 +session,3422,1,Chrome 9,99,2017-06-29 +session,3422,2,Chrome 19,12,2018-09-24 +session,3422,3,Firefox 47,85,2018-10-02 +session,3422,4,Safari 9,45,2017-01-29 +user,3423,Noah,Alysa,94 +session,3423,0,Firefox 18,108,2017-05-08 +session,3423,1,Chrome 19,84,2017-10-01 +session,3423,2,Internet Explorer 26,106,2016-08-01 +session,3423,3,Chrome 10,115,2018-12-07 +session,3423,4,Chrome 35,42,2016-06-30 +user,3424,Edmond,Laverne,71 +session,3424,0,Safari 32,12,2016-10-20 +session,3424,1,Internet Explorer 17,110,2016-11-08 +session,3424,2,Safari 48,62,2017-02-19 +session,3424,3,Chrome 40,26,2016-10-02 +user,3425,Jacob,Earnest,27 +session,3425,0,Firefox 43,51,2018-07-22 +session,3425,1,Internet Explorer 27,100,2017-09-06 +session,3425,2,Internet Explorer 6,64,2016-07-23 +session,3425,3,Firefox 37,11,2018-12-19 +session,3425,4,Internet Explorer 27,41,2018-07-14 +session,3425,5,Chrome 33,55,2017-07-17 +session,3425,6,Chrome 45,92,2018-02-10 +session,3425,7,Firefox 43,41,2017-08-28 +session,3425,8,Chrome 36,47,2017-01-08 +user,3426,Jena,Branda,33 +session,3426,0,Safari 10,89,2017-03-04 +session,3426,1,Chrome 40,12,2016-07-03 +session,3426,2,Chrome 27,65,2016-11-17 +session,3426,3,Firefox 50,72,2016-08-21 +session,3426,4,Firefox 45,10,2017-01-17 +session,3426,5,Safari 30,35,2017-08-20 +session,3426,6,Chrome 42,5,2019-01-30 +session,3426,7,Firefox 34,111,2019-02-07 +user,3427,Brady,Mel,85 +session,3427,0,Chrome 11,110,2017-06-08 +session,3427,1,Internet Explorer 37,88,2016-07-21 +session,3427,2,Internet Explorer 41,7,2017-07-11 +session,3427,3,Chrome 45,25,2018-04-11 +session,3427,4,Internet Explorer 48,32,2018-02-23 +user,3428,Joselyn,Gregory,13 +session,3428,0,Firefox 14,93,2016-10-15 +session,3428,1,Safari 21,119,2017-09-23 +session,3428,2,Firefox 21,104,2017-10-10 +session,3428,3,Safari 43,30,2018-01-02 +session,3428,4,Safari 25,29,2017-08-03 +session,3428,5,Firefox 3,7,2016-11-19 +session,3428,6,Firefox 44,45,2017-12-05 +session,3428,7,Firefox 11,105,2016-09-29 +session,3428,8,Chrome 21,74,2016-08-04 +session,3428,9,Chrome 42,97,2017-01-22 +user,3429,Bianca,Stacey,85 +session,3429,0,Chrome 12,98,2017-04-14 +session,3429,1,Firefox 25,30,2017-07-10 +session,3429,2,Safari 9,94,2018-02-06 +session,3429,3,Safari 27,67,2016-12-31 +session,3429,4,Firefox 38,45,2018-10-29 +session,3429,5,Safari 50,107,2018-12-20 +user,3430,Aracely,Carmina,87 +session,3430,0,Internet Explorer 45,79,2016-12-11 +session,3430,1,Chrome 23,33,2016-12-07 +session,3430,2,Safari 39,58,2017-04-15 +session,3430,3,Safari 44,116,2016-08-07 +session,3430,4,Internet Explorer 47,119,2018-06-02 +session,3430,5,Internet Explorer 11,11,2017-10-11 +session,3430,6,Internet Explorer 42,64,2017-04-23 +session,3430,7,Chrome 26,59,2017-01-22 +user,3431,Karey,Shandi,2 +session,3431,0,Firefox 1,44,2016-06-30 +session,3431,1,Internet Explorer 19,99,2018-03-09 +session,3431,2,Safari 14,23,2017-09-04 +session,3431,3,Safari 5,29,2018-01-01 +session,3431,4,Internet Explorer 16,15,2018-07-26 +user,3432,Major,Emelda,96 +session,3432,0,Chrome 12,100,2016-10-16 +session,3432,1,Safari 43,61,2016-11-26 +session,3432,2,Safari 27,29,2019-01-04 +session,3432,3,Safari 18,78,2018-07-21 +session,3432,4,Internet Explorer 41,70,2018-04-13 +user,3433,Gilbert,Delma,77 +session,3433,0,Safari 4,96,2017-11-26 +user,3434,Emerita,Laurena,44 +session,3434,0,Chrome 35,89,2017-10-31 +session,3434,1,Safari 4,105,2016-07-16 +session,3434,2,Safari 12,25,2018-08-19 +session,3434,3,Internet Explorer 10,82,2017-06-17 +session,3434,4,Chrome 43,29,2017-10-23 +session,3434,5,Firefox 49,73,2018-07-10 +session,3434,6,Safari 23,25,2016-06-09 +session,3434,7,Firefox 40,31,2018-10-07 +session,3434,8,Safari 30,49,2019-01-27 +user,3435,Corey,Danita,36 +session,3435,0,Firefox 39,55,2016-11-23 +session,3435,1,Firefox 28,82,2017-06-30 +session,3435,2,Firefox 36,71,2016-12-14 +session,3435,3,Firefox 18,79,2017-08-01 +session,3435,4,Firefox 10,94,2016-05-25 +session,3435,5,Chrome 38,98,2017-09-04 +session,3435,6,Firefox 9,28,2017-10-09 +session,3435,7,Firefox 30,6,2018-01-31 +user,3436,Dan,Emily,29 +session,3436,0,Safari 36,100,2017-08-16 +session,3436,1,Chrome 17,44,2018-10-26 +session,3436,2,Internet Explorer 30,18,2016-12-14 +session,3436,3,Chrome 12,54,2016-09-29 +session,3436,4,Internet Explorer 1,61,2018-04-12 +session,3436,5,Internet Explorer 2,3,2016-05-23 +session,3436,6,Safari 15,99,2017-08-22 +session,3436,7,Internet Explorer 29,51,2017-06-19 +user,3437,Kandice,Eliseo,77 +session,3437,0,Internet Explorer 38,114,2017-10-21 +session,3437,1,Firefox 9,104,2018-01-10 +session,3437,2,Safari 21,2,2018-12-10 +session,3437,3,Firefox 20,72,2019-01-09 +user,3438,Quinn,Tiesha,65 +session,3438,0,Safari 43,48,2018-09-12 +session,3438,1,Internet Explorer 10,102,2018-06-11 +session,3438,2,Safari 18,116,2017-07-14 +session,3438,3,Chrome 28,1,2018-10-20 +session,3438,4,Chrome 31,78,2017-10-15 +session,3438,5,Safari 19,118,2019-02-06 +user,3439,Annis,Mitzie,53 +session,3439,0,Firefox 33,92,2016-09-03 +user,3440,Flo,Valene,6 +session,3440,0,Chrome 43,74,2018-12-04 +session,3440,1,Internet Explorer 42,110,2018-03-03 +session,3440,2,Internet Explorer 46,106,2017-03-31 +session,3440,3,Firefox 23,49,2017-10-05 +session,3440,4,Safari 6,3,2017-03-08 +session,3440,5,Firefox 10,28,2018-12-28 +user,3441,Vinnie,Dennis,22 +session,3441,0,Safari 36,45,2016-07-08 +session,3441,1,Firefox 46,17,2018-08-30 +session,3441,2,Internet Explorer 3,90,2016-12-28 +session,3441,3,Firefox 37,66,2018-12-25 +user,3442,Corey,Sherrell,96 +session,3442,0,Chrome 47,15,2017-05-20 +session,3442,1,Chrome 34,0,2017-09-09 +user,3443,Mina,Malika,65 +session,3443,0,Internet Explorer 31,91,2018-07-28 +session,3443,1,Chrome 10,88,2018-08-25 +session,3443,2,Safari 7,113,2017-12-29 +session,3443,3,Internet Explorer 40,67,2018-04-29 +session,3443,4,Chrome 42,75,2016-12-12 +session,3443,5,Firefox 41,29,2016-07-07 +session,3443,6,Chrome 28,89,2017-03-07 +session,3443,7,Firefox 1,19,2017-02-18 +session,3443,8,Firefox 9,43,2016-07-29 +user,3444,Terence,Merry,73 +session,3444,0,Chrome 15,93,2018-10-29 +session,3444,1,Chrome 31,95,2018-07-18 +session,3444,2,Chrome 36,17,2017-07-02 +session,3444,3,Chrome 26,47,2018-08-27 +session,3444,4,Safari 42,83,2018-04-15 +user,3445,Aurelio,Carie,20 +session,3445,0,Internet Explorer 14,27,2017-12-16 +session,3445,1,Firefox 8,86,2016-11-28 +session,3445,2,Safari 9,47,2018-05-04 +session,3445,3,Firefox 5,21,2017-01-14 +session,3445,4,Firefox 50,16,2016-08-30 +session,3445,5,Safari 23,111,2018-11-08 +session,3445,6,Internet Explorer 43,40,2017-05-09 +session,3445,7,Chrome 14,28,2016-08-15 +session,3445,8,Firefox 4,17,2018-02-01 +session,3445,9,Safari 3,59,2016-08-09 +user,3446,Stewart,Hal,7 +session,3446,0,Internet Explorer 33,64,2017-03-29 +session,3446,1,Chrome 17,34,2018-12-12 +session,3446,2,Chrome 21,44,2016-10-24 +session,3446,3,Internet Explorer 6,111,2016-11-10 +user,3447,Keena,Laurena,89 +session,3447,0,Internet Explorer 36,21,2017-05-20 +session,3447,1,Internet Explorer 19,106,2017-01-05 +session,3447,2,Internet Explorer 41,59,2018-02-12 +session,3447,3,Internet Explorer 49,6,2018-12-16 +session,3447,4,Firefox 36,38,2017-09-19 +session,3447,5,Chrome 5,10,2018-02-20 +session,3447,6,Safari 6,53,2017-01-29 +session,3447,7,Firefox 7,75,2017-06-17 +user,3448,Cruz,Gloria,85 +session,3448,0,Internet Explorer 3,66,2017-02-17 +session,3448,1,Chrome 25,105,2017-06-14 +session,3448,2,Internet Explorer 14,95,2017-08-10 +session,3448,3,Safari 5,41,2017-10-05 +session,3448,4,Safari 41,40,2019-02-08 +session,3448,5,Internet Explorer 33,40,2018-07-26 +user,3449,Major,Larue,6 +session,3449,0,Safari 15,54,2016-10-30 +session,3449,1,Chrome 7,11,2016-11-02 +session,3449,2,Safari 38,75,2018-08-29 +session,3449,3,Firefox 25,91,2017-12-29 +session,3449,4,Safari 11,54,2019-02-11 +session,3449,5,Chrome 24,53,2019-02-05 +user,3450,Dianna,Lilly,50 +session,3450,0,Internet Explorer 12,72,2016-12-09 +session,3450,1,Chrome 19,73,2017-01-24 +session,3450,2,Chrome 6,33,2017-12-20 +session,3450,3,Safari 16,107,2017-09-17 +session,3450,4,Firefox 28,111,2017-12-11 +session,3450,5,Internet Explorer 9,33,2017-12-14 +session,3450,6,Internet Explorer 26,94,2018-01-27 +session,3450,7,Firefox 14,110,2016-06-07 +session,3450,8,Firefox 26,9,2017-04-15 +user,3451,Amelia,Brittanie,48 +session,3451,0,Internet Explorer 5,0,2017-01-24 +session,3451,1,Chrome 19,60,2018-08-18 +session,3451,2,Chrome 26,45,2018-04-13 +session,3451,3,Safari 17,117,2017-07-15 +user,3452,Janyce,Monique,75 +session,3452,0,Firefox 1,71,2018-08-18 +user,3453,Clair,Rachelle,46 +session,3453,0,Safari 6,95,2018-07-01 +session,3453,1,Internet Explorer 10,47,2017-09-13 +session,3453,2,Firefox 28,113,2017-06-14 +session,3453,3,Firefox 19,111,2017-10-27 +session,3453,4,Internet Explorer 23,16,2017-03-12 +session,3453,5,Safari 15,92,2018-02-16 +session,3453,6,Safari 41,116,2018-01-07 +session,3453,7,Chrome 2,52,2017-05-12 +session,3453,8,Firefox 20,68,2018-09-09 +session,3453,9,Chrome 39,51,2019-01-10 +user,3454,Dee,Micah,85 +session,3454,0,Chrome 38,73,2018-09-21 +session,3454,1,Safari 15,99,2017-06-21 +session,3454,2,Safari 8,92,2017-06-08 +session,3454,3,Firefox 17,52,2017-06-03 +session,3454,4,Safari 49,4,2016-07-28 +session,3454,5,Chrome 27,16,2016-10-12 +session,3454,6,Chrome 8,76,2018-09-11 +session,3454,7,Firefox 24,117,2017-08-18 +session,3454,8,Firefox 25,85,2017-03-13 +user,3455,Kymberly,Miquel,58 +session,3455,0,Firefox 41,46,2017-10-18 +session,3455,1,Chrome 11,11,2018-10-15 +session,3455,2,Internet Explorer 16,96,2017-01-06 +session,3455,3,Chrome 3,113,2016-11-02 +session,3455,4,Firefox 7,34,2018-10-07 +session,3455,5,Safari 38,93,2017-11-05 +session,3455,6,Safari 15,105,2016-05-24 +user,3456,Trinity,Carmina,33 +session,3456,0,Firefox 15,0,2018-10-17 +session,3456,1,Chrome 27,5,2017-11-04 +session,3456,2,Firefox 25,0,2016-09-21 +session,3456,3,Internet Explorer 38,3,2018-07-07 +session,3456,4,Safari 23,58,2018-05-30 +session,3456,5,Chrome 18,21,2016-12-12 +session,3456,6,Firefox 23,93,2018-02-18 +session,3456,7,Chrome 15,38,2017-03-03 +session,3456,8,Firefox 27,61,2018-08-11 +user,3457,Sherlene,Kelvin,68 +session,3457,0,Firefox 2,2,2017-12-04 +user,3458,Arminda,Lesli,7 +session,3458,0,Chrome 38,71,2018-03-09 +session,3458,1,Internet Explorer 10,12,2018-04-28 +session,3458,2,Internet Explorer 19,82,2018-10-11 +session,3458,3,Internet Explorer 7,117,2017-05-23 +session,3458,4,Firefox 35,91,2017-11-14 +session,3458,5,Safari 16,83,2018-05-10 +session,3458,6,Safari 11,38,2018-01-29 +session,3458,7,Chrome 19,40,2019-02-04 +session,3458,8,Chrome 41,33,2018-09-02 +session,3458,9,Safari 16,38,2018-07-06 +user,3459,Tai,Hailey,79 +session,3459,0,Chrome 18,52,2016-07-05 +session,3459,1,Internet Explorer 31,68,2017-04-12 +session,3459,2,Firefox 5,99,2018-02-24 +session,3459,3,Safari 47,37,2016-06-07 +session,3459,4,Chrome 37,101,2017-01-08 +session,3459,5,Chrome 35,107,2017-07-14 +session,3459,6,Safari 49,54,2016-06-21 +session,3459,7,Internet Explorer 8,54,2018-08-26 +session,3459,8,Safari 43,20,2017-11-21 +session,3459,9,Firefox 13,61,2017-08-22 +user,3460,Ruthann,Ervin,3 +session,3460,0,Internet Explorer 17,114,2017-12-15 +session,3460,1,Firefox 35,37,2017-05-01 +session,3460,2,Firefox 10,108,2017-10-11 +session,3460,3,Firefox 37,8,2018-06-09 +session,3460,4,Firefox 29,117,2016-12-22 +session,3460,5,Safari 36,28,2018-03-24 +user,3461,Sebastian,Dorotha,21 +session,3461,0,Chrome 25,39,2016-07-07 +session,3461,1,Firefox 8,109,2018-10-08 +session,3461,2,Safari 22,17,2016-09-01 +session,3461,3,Chrome 29,94,2018-08-06 +session,3461,4,Firefox 19,13,2017-04-02 +session,3461,5,Internet Explorer 4,21,2018-11-01 +session,3461,6,Firefox 26,112,2017-06-20 +session,3461,7,Chrome 26,41,2016-07-22 +session,3461,8,Internet Explorer 9,110,2016-07-19 +session,3461,9,Safari 23,37,2016-12-24 +user,3462,Kim,Omega,52 +session,3462,0,Safari 37,71,2018-11-10 +user,3463,Shakia,Elicia,88 +session,3463,0,Safari 22,93,2017-02-08 +session,3463,1,Firefox 45,77,2017-05-26 +session,3463,2,Firefox 45,37,2018-11-22 +session,3463,3,Chrome 24,110,2017-12-01 +session,3463,4,Chrome 1,63,2017-07-02 +session,3463,5,Safari 15,112,2017-09-16 +user,3464,Marcie,Tessie,86 +session,3464,0,Internet Explorer 34,81,2016-09-09 +user,3465,Danial,Dannette,2 +session,3465,0,Internet Explorer 43,3,2016-12-01 +session,3465,1,Chrome 48,26,2017-04-24 +session,3465,2,Firefox 5,48,2017-11-09 +user,3466,Elvina,Priscilla,15 +session,3466,0,Safari 40,14,2017-07-06 +session,3466,1,Internet Explorer 8,34,2016-06-25 +user,3467,Genevie,Rex,66 +session,3467,0,Safari 20,58,2018-01-24 +session,3467,1,Internet Explorer 48,68,2018-02-01 +user,3468,Winona,Barbra,87 +session,3468,0,Internet Explorer 26,27,2017-09-13 +session,3468,1,Chrome 45,44,2018-12-04 +session,3468,2,Firefox 1,25,2016-06-11 +session,3468,3,Chrome 17,71,2018-02-11 +session,3468,4,Chrome 45,47,2018-01-15 +session,3468,5,Firefox 3,5,2018-11-30 +session,3468,6,Firefox 15,47,2017-02-21 +session,3468,7,Internet Explorer 36,10,2017-12-08 +session,3468,8,Safari 30,49,2017-05-26 +session,3468,9,Chrome 27,96,2016-06-09 +user,3469,Clair,Vina,13 +session,3469,0,Firefox 21,80,2017-06-28 +session,3469,1,Chrome 45,90,2017-04-09 +session,3469,2,Firefox 3,68,2016-11-28 +session,3469,3,Firefox 44,30,2018-04-02 +session,3469,4,Safari 3,104,2018-05-06 +session,3469,5,Chrome 7,73,2016-10-19 +user,3470,Kevin,Sang,92 +session,3470,0,Chrome 24,75,2018-05-10 +session,3470,1,Firefox 43,82,2016-11-27 +session,3470,2,Chrome 43,88,2018-08-25 +session,3470,3,Chrome 26,6,2017-09-24 +session,3470,4,Safari 38,42,2017-07-17 +session,3470,5,Firefox 3,22,2017-11-03 +session,3470,6,Internet Explorer 45,104,2016-10-08 +session,3470,7,Safari 30,95,2017-08-17 +user,3471,Oscar,Edelmira,57 +session,3471,0,Safari 13,10,2017-09-30 +session,3471,1,Firefox 49,109,2017-09-20 +session,3471,2,Chrome 23,119,2018-07-02 +session,3471,3,Firefox 12,3,2017-02-01 +session,3471,4,Safari 17,85,2016-10-12 +session,3471,5,Internet Explorer 30,88,2017-08-18 +session,3471,6,Firefox 48,72,2019-01-30 +user,3472,Luann,Amos,94 +session,3472,0,Chrome 6,71,2016-06-15 +session,3472,1,Safari 29,116,2016-06-14 +session,3472,2,Internet Explorer 21,98,2018-08-16 +session,3472,3,Safari 21,70,2016-11-03 +user,3473,Garry,Wilda,72 +session,3473,0,Safari 8,108,2017-12-07 +session,3473,1,Chrome 44,74,2018-02-11 +session,3473,2,Internet Explorer 45,20,2017-11-06 +session,3473,3,Safari 32,82,2019-01-20 +session,3473,4,Chrome 35,61,2017-06-22 +session,3473,5,Chrome 43,28,2016-08-24 +user,3474,Claude,Francoise,13 +session,3474,0,Chrome 2,8,2017-02-01 +session,3474,1,Safari 50,78,2017-01-10 +user,3475,Chasity,August,91 +session,3475,0,Safari 15,1,2017-01-24 +session,3475,1,Chrome 50,70,2017-01-21 +user,3476,Jodie,Vickey,26 +session,3476,0,Firefox 20,6,2016-08-22 +session,3476,1,Safari 35,46,2017-04-08 +user,3477,Vannesa,Pamala,64 +session,3477,0,Internet Explorer 24,58,2016-08-02 +user,3478,Jewell,Bethann,39 +session,3478,0,Chrome 21,112,2016-06-02 +session,3478,1,Chrome 3,69,2017-08-17 +session,3478,2,Internet Explorer 8,50,2017-04-23 +session,3478,3,Safari 28,20,2016-05-24 +session,3478,4,Internet Explorer 48,5,2017-09-16 +session,3478,5,Chrome 25,23,2016-11-11 +session,3478,6,Internet Explorer 33,65,2016-08-26 +session,3478,7,Chrome 1,117,2018-03-05 +session,3478,8,Chrome 14,42,2016-08-01 +session,3478,9,Internet Explorer 10,101,2016-07-10 +user,3479,Eliz,Weldon,95 +session,3479,0,Chrome 5,43,2016-06-02 +session,3479,1,Chrome 26,76,2018-01-30 +session,3479,2,Safari 9,68,2016-06-01 +session,3479,3,Chrome 9,22,2018-05-06 +session,3479,4,Internet Explorer 6,36,2017-04-29 +session,3479,5,Firefox 43,23,2018-12-16 +session,3479,6,Chrome 46,111,2016-07-30 +session,3479,7,Chrome 2,96,2017-06-17 +user,3480,George,Micaela,54 +session,3480,0,Safari 9,100,2018-06-12 +session,3480,1,Safari 17,110,2018-03-20 +session,3480,2,Safari 28,25,2018-10-17 +session,3480,3,Chrome 36,77,2017-06-14 +session,3480,4,Safari 15,116,2019-02-05 +session,3480,5,Safari 44,78,2018-05-06 +session,3480,6,Firefox 25,41,2016-11-30 +user,3481,Shannon,Alisha,3 +session,3481,0,Internet Explorer 12,75,2017-06-07 +session,3481,1,Safari 31,82,2016-11-21 +session,3481,2,Safari 48,24,2018-01-08 +session,3481,3,Chrome 12,105,2017-04-16 +user,3482,Shanice,Myesha,27 +session,3482,0,Safari 9,109,2017-07-02 +session,3482,1,Firefox 26,17,2019-01-12 +session,3482,2,Safari 13,38,2018-04-02 +session,3482,3,Chrome 17,88,2018-04-21 +session,3482,4,Chrome 20,51,2017-07-25 +user,3483,Natalia,Mina,88 +session,3483,0,Safari 17,43,2018-06-20 +session,3483,1,Safari 29,100,2017-05-22 +session,3483,2,Internet Explorer 44,111,2016-06-08 +session,3483,3,Internet Explorer 45,18,2016-08-29 +session,3483,4,Firefox 42,21,2016-06-05 +session,3483,5,Safari 20,119,2018-12-08 +session,3483,6,Chrome 33,109,2018-01-25 +user,3484,Khalilah,Phyllis,16 +session,3484,0,Internet Explorer 1,92,2017-06-15 +session,3484,1,Chrome 45,45,2018-01-06 +session,3484,2,Safari 15,42,2017-05-18 +session,3484,3,Safari 9,58,2018-05-01 +session,3484,4,Firefox 38,98,2018-05-21 +session,3484,5,Internet Explorer 36,98,2018-08-28 +user,3485,Bruce,Ariel,17 +session,3485,0,Firefox 39,30,2018-03-29 +session,3485,1,Firefox 32,24,2018-06-14 +user,3486,Judie,Shanna,22 +session,3486,0,Safari 49,108,2018-10-08 +session,3486,1,Firefox 25,79,2018-07-21 +session,3486,2,Internet Explorer 39,15,2017-01-27 +session,3486,3,Chrome 44,116,2017-07-29 +session,3486,4,Firefox 19,113,2017-10-11 +session,3486,5,Chrome 41,66,2017-11-16 +session,3486,6,Firefox 13,88,2017-08-09 +session,3486,7,Firefox 25,97,2018-10-03 +session,3486,8,Safari 37,82,2018-11-17 +user,3487,Sueann,Rashad,96 +session,3487,0,Safari 5,76,2018-11-14 +session,3487,1,Firefox 24,104,2016-08-24 +session,3487,2,Safari 1,84,2016-09-28 +session,3487,3,Internet Explorer 13,109,2017-01-21 +session,3487,4,Internet Explorer 1,47,2018-04-01 +user,3488,Tai,Ligia,51 +session,3488,0,Internet Explorer 49,87,2016-09-29 +session,3488,1,Firefox 47,46,2016-05-23 +user,3489,Darren,Audria,23 +session,3489,0,Firefox 4,44,2016-10-28 +session,3489,1,Firefox 8,47,2016-11-13 +session,3489,2,Internet Explorer 13,10,2016-11-19 +user,3490,Lester,Aurelia,57 +session,3490,0,Firefox 20,39,2018-08-11 +session,3490,1,Safari 39,91,2017-04-07 +session,3490,2,Internet Explorer 4,116,2019-01-24 +session,3490,3,Internet Explorer 23,86,2017-01-22 +session,3490,4,Internet Explorer 28,7,2017-11-23 +session,3490,5,Chrome 18,104,2017-06-15 +session,3490,6,Internet Explorer 44,78,2017-06-19 +session,3490,7,Chrome 21,48,2018-12-03 +user,3491,Fritz,Gussie,28 +session,3491,0,Firefox 40,119,2018-11-06 +session,3491,1,Chrome 7,64,2018-09-17 +session,3491,2,Internet Explorer 36,96,2016-08-08 +user,3492,Ian,Hillary,68 +session,3492,0,Internet Explorer 43,41,2018-05-07 +session,3492,1,Chrome 15,102,2016-10-13 +user,3493,Alesia,Earlie,91 +session,3493,0,Safari 1,92,2017-07-18 +session,3493,1,Chrome 38,75,2016-11-01 +session,3493,2,Chrome 20,38,2017-04-16 +session,3493,3,Internet Explorer 41,40,2017-08-23 +session,3493,4,Firefox 8,78,2017-01-14 +session,3493,5,Firefox 22,19,2018-07-30 +session,3493,6,Chrome 22,64,2017-06-30 +session,3493,7,Chrome 31,90,2018-03-30 +session,3493,8,Firefox 28,67,2018-02-14 +session,3493,9,Safari 31,66,2018-07-28 +user,3494,Felipe,Kathyrn,86 +session,3494,0,Safari 36,112,2016-06-02 +session,3494,1,Internet Explorer 12,84,2018-06-22 +session,3494,2,Safari 40,61,2018-07-27 +session,3494,3,Firefox 32,26,2017-02-21 +session,3494,4,Internet Explorer 16,68,2017-01-05 +session,3494,5,Internet Explorer 29,115,2018-09-30 +session,3494,6,Firefox 5,118,2017-09-13 +session,3494,7,Safari 50,42,2017-10-29 +session,3494,8,Internet Explorer 29,36,2017-12-03 +user,3495,Bret,Mercedez,44 +session,3495,0,Internet Explorer 23,13,2017-04-19 +session,3495,1,Chrome 34,45,2016-10-02 +session,3495,2,Firefox 39,72,2017-05-03 +session,3495,3,Chrome 7,11,2017-01-07 +session,3495,4,Firefox 4,21,2018-01-12 +user,3496,Pansy,Evelin,2 +session,3496,0,Safari 27,96,2017-03-06 +user,3497,Kindra,Alexandria,87 +session,3497,0,Internet Explorer 38,95,2018-09-18 +session,3497,1,Internet Explorer 26,55,2018-06-06 +session,3497,2,Chrome 32,69,2017-11-30 +session,3497,3,Internet Explorer 11,75,2018-08-26 +session,3497,4,Safari 14,75,2017-09-27 +session,3497,5,Firefox 36,67,2019-02-04 +user,3498,Maynard,Gwenn,80 +session,3498,0,Chrome 2,107,2016-06-19 +session,3498,1,Firefox 34,4,2017-01-12 +session,3498,2,Chrome 12,108,2018-05-11 +session,3498,3,Firefox 5,67,2017-05-02 +user,3499,Samara,Elfreda,22 +session,3499,0,Safari 41,38,2016-08-14 +session,3499,1,Chrome 34,88,2017-10-18 +session,3499,2,Chrome 44,17,2016-05-28 +session,3499,3,Internet Explorer 50,109,2016-07-25 +session,3499,4,Firefox 23,31,2016-09-09 +session,3499,5,Chrome 47,56,2017-07-07 +session,3499,6,Chrome 4,20,2018-11-17 +session,3499,7,Firefox 21,58,2017-07-03 +user,3500,Clementina,Julee,38 +session,3500,0,Safari 11,34,2018-09-05 +user,3501,Raul,Iraida,46 +session,3501,0,Firefox 48,67,2018-03-20 +session,3501,1,Chrome 36,63,2018-05-30 +session,3501,2,Firefox 36,88,2017-12-30 +session,3501,3,Firefox 27,39,2017-11-05 +session,3501,4,Chrome 3,89,2018-03-09 +session,3501,5,Chrome 29,20,2016-07-25 +session,3501,6,Firefox 7,86,2017-12-07 +session,3501,7,Safari 28,5,2018-02-24 +user,3502,Mao,Donna,72 +session,3502,0,Safari 28,17,2017-06-06 +session,3502,1,Safari 27,40,2016-07-16 +session,3502,2,Safari 40,64,2016-08-29 +session,3502,3,Firefox 6,0,2016-07-11 +session,3502,4,Firefox 1,102,2018-03-22 +session,3502,5,Chrome 12,76,2016-08-31 +session,3502,6,Firefox 36,29,2018-06-06 +session,3502,7,Safari 18,52,2017-10-30 +session,3502,8,Internet Explorer 28,56,2017-07-17 +session,3502,9,Firefox 24,65,2018-05-12 +user,3503,Davina,Deena,12 +session,3503,0,Firefox 7,9,2016-11-27 +session,3503,1,Chrome 14,85,2018-04-07 +session,3503,2,Internet Explorer 48,62,2017-04-13 +session,3503,3,Chrome 2,9,2018-11-22 +session,3503,4,Safari 40,80,2019-02-06 +session,3503,5,Internet Explorer 11,98,2017-02-03 +session,3503,6,Internet Explorer 27,95,2018-09-03 +session,3503,7,Chrome 18,49,2016-05-30 +session,3503,8,Safari 6,84,2016-09-12 +session,3503,9,Firefox 41,78,2017-01-14 +user,3504,Jenelle,Geoffrey,80 +session,3504,0,Firefox 34,92,2018-12-22 +session,3504,1,Safari 24,61,2017-12-26 +session,3504,2,Internet Explorer 8,116,2018-01-12 +session,3504,3,Internet Explorer 23,4,2016-05-24 +session,3504,4,Internet Explorer 37,8,2018-11-29 +session,3504,5,Safari 7,54,2018-07-20 +session,3504,6,Internet Explorer 6,101,2018-12-22 +session,3504,7,Chrome 27,38,2018-01-08 +session,3504,8,Firefox 14,97,2018-08-31 +user,3505,Vania,Stevie,55 +session,3505,0,Safari 12,90,2016-09-22 +session,3505,1,Internet Explorer 2,68,2016-11-18 +session,3505,2,Safari 8,108,2018-11-29 +session,3505,3,Internet Explorer 16,98,2016-10-16 +session,3505,4,Chrome 2,40,2018-05-05 +user,3506,Anthony,Sigrid,78 +session,3506,0,Chrome 8,15,2018-06-14 +session,3506,1,Chrome 49,57,2017-11-09 +session,3506,2,Internet Explorer 42,76,2018-06-21 +session,3506,3,Firefox 16,84,2017-12-14 +session,3506,4,Firefox 42,43,2016-10-14 +session,3506,5,Firefox 35,0,2017-06-03 +session,3506,6,Safari 2,92,2016-09-17 +session,3506,7,Chrome 14,87,2016-10-10 +user,3507,Milford,Trudy,70 +session,3507,0,Chrome 32,2,2017-06-06 +session,3507,1,Safari 38,35,2017-10-05 +session,3507,2,Safari 35,8,2017-10-05 +session,3507,3,Chrome 3,92,2018-06-05 +session,3507,4,Firefox 9,29,2018-12-13 +session,3507,5,Firefox 40,118,2018-12-15 +session,3507,6,Safari 40,80,2018-12-31 +session,3507,7,Internet Explorer 33,0,2017-08-07 +session,3507,8,Safari 39,22,2018-06-07 +session,3507,9,Chrome 45,10,2016-11-10 +user,3508,Brooks,Marcellus,58 +session,3508,0,Chrome 33,6,2016-07-01 +session,3508,1,Chrome 3,57,2017-03-02 +session,3508,2,Chrome 48,14,2016-06-04 +session,3508,3,Firefox 16,35,2018-08-31 +session,3508,4,Firefox 6,56,2017-05-18 +session,3508,5,Internet Explorer 32,74,2017-05-07 +session,3508,6,Safari 8,116,2016-12-25 +user,3509,Nidia,Francie,74 +session,3509,0,Internet Explorer 31,46,2017-06-19 +session,3509,1,Internet Explorer 19,16,2017-01-28 +session,3509,2,Firefox 42,101,2016-11-20 +session,3509,3,Safari 33,0,2017-09-16 +session,3509,4,Safari 32,25,2016-10-04 +session,3509,5,Internet Explorer 32,20,2016-12-03 +session,3509,6,Safari 39,111,2017-06-03 +session,3509,7,Chrome 7,88,2017-02-13 +user,3510,Dorthey,Kelly,70 +session,3510,0,Chrome 14,53,2018-10-26 +user,3511,Lyle,Merle,69 +session,3511,0,Chrome 22,39,2017-08-27 +user,3512,Leanna,Maximina,86 +session,3512,0,Firefox 37,100,2017-06-12 +session,3512,1,Internet Explorer 14,55,2017-11-30 +session,3512,2,Firefox 46,51,2017-10-17 +session,3512,3,Firefox 46,5,2018-10-15 +session,3512,4,Chrome 3,61,2016-07-06 +session,3512,5,Chrome 13,61,2018-05-12 +user,3513,Omar,Lynna,18 +session,3513,0,Internet Explorer 12,19,2018-04-02 +session,3513,1,Firefox 36,103,2016-12-11 +session,3513,2,Chrome 7,74,2016-06-25 +session,3513,3,Safari 50,38,2018-10-02 +user,3514,Ngoc,Madison,71 +session,3514,0,Internet Explorer 33,105,2018-03-16 +user,3515,Debroah,Shera,10 +session,3515,0,Safari 8,14,2018-11-10 +session,3515,1,Safari 30,91,2017-06-01 +session,3515,2,Internet Explorer 31,32,2016-07-10 +session,3515,3,Safari 31,33,2017-07-04 +session,3515,4,Firefox 50,38,2016-11-02 +session,3515,5,Internet Explorer 19,5,2016-07-06 +session,3515,6,Internet Explorer 22,87,2018-07-13 +session,3515,7,Internet Explorer 23,42,2016-08-21 +session,3515,8,Safari 44,75,2017-04-11 +user,3516,Rosenda,Sharon,86 +session,3516,0,Safari 23,75,2016-11-03 +session,3516,1,Internet Explorer 1,50,2017-11-20 +session,3516,2,Internet Explorer 48,27,2017-05-22 +session,3516,3,Firefox 24,117,2018-01-19 +session,3516,4,Internet Explorer 20,91,2017-03-08 +session,3516,5,Chrome 26,91,2016-11-06 +user,3517,Graig,Hipolito,17 +session,3517,0,Firefox 16,77,2018-01-09 +session,3517,1,Safari 21,50,2017-06-24 +session,3517,2,Safari 9,80,2017-03-11 +session,3517,3,Safari 3,101,2018-03-09 +session,3517,4,Internet Explorer 27,21,2017-04-17 +session,3517,5,Safari 5,75,2017-07-21 +user,3518,Rocco,Augustine,49 +session,3518,0,Internet Explorer 12,63,2019-01-07 +session,3518,1,Safari 44,18,2019-01-16 +session,3518,2,Chrome 25,43,2016-07-30 +session,3518,3,Firefox 36,91,2018-12-19 +session,3518,4,Internet Explorer 10,17,2016-10-05 +session,3518,5,Chrome 1,96,2017-09-13 +session,3518,6,Firefox 14,20,2017-02-28 +user,3519,Cory,Lucius,60 +session,3519,0,Chrome 28,34,2017-03-24 +session,3519,1,Internet Explorer 21,14,2017-07-22 +session,3519,2,Chrome 31,75,2017-07-05 +user,3520,Danny,Rachelle,86 +session,3520,0,Chrome 49,13,2018-09-25 +session,3520,1,Internet Explorer 47,11,2018-07-09 +session,3520,2,Chrome 24,100,2017-07-14 +session,3520,3,Safari 10,40,2017-03-19 +user,3521,Florida,Ricarda,86 +session,3521,0,Safari 36,9,2017-09-04 +session,3521,1,Safari 21,27,2018-09-18 +session,3521,2,Internet Explorer 7,107,2016-05-31 +user,3522,Hien,Ka,43 +session,3522,0,Safari 38,40,2017-11-08 +user,3523,Malcom,Marcelina,20 +session,3523,0,Internet Explorer 18,32,2018-06-11 +session,3523,1,Firefox 19,40,2016-07-15 +session,3523,2,Firefox 22,61,2016-12-07 +session,3523,3,Safari 19,87,2016-08-30 +session,3523,4,Internet Explorer 23,73,2017-07-23 +session,3523,5,Firefox 29,62,2017-10-20 +session,3523,6,Chrome 26,70,2016-05-19 +session,3523,7,Internet Explorer 10,9,2017-02-03 +session,3523,8,Safari 8,65,2018-10-26 +user,3524,Jesica,Mireya,44 +session,3524,0,Firefox 18,34,2019-01-09 +session,3524,1,Chrome 26,61,2018-03-02 +user,3525,Giovanni,Magaly,13 +session,3525,0,Chrome 42,71,2018-04-16 +session,3525,1,Internet Explorer 1,54,2018-12-03 +session,3525,2,Chrome 37,75,2017-08-13 +session,3525,3,Chrome 6,106,2016-08-31 +session,3525,4,Chrome 16,81,2018-10-24 +user,3526,Wilford,Annamae,72 +session,3526,0,Safari 47,47,2018-09-07 +session,3526,1,Internet Explorer 16,4,2016-08-20 +session,3526,2,Safari 43,38,2016-09-29 +user,3527,Agnes,Corine,83 +session,3527,0,Chrome 7,16,2016-07-21 +session,3527,1,Internet Explorer 49,38,2017-12-07 +session,3527,2,Chrome 50,40,2019-01-03 +session,3527,3,Internet Explorer 19,119,2018-01-25 +session,3527,4,Internet Explorer 40,66,2017-02-23 +session,3527,5,Internet Explorer 5,119,2016-07-29 +session,3527,6,Internet Explorer 34,17,2016-09-09 +session,3527,7,Internet Explorer 7,108,2016-10-06 +user,3528,Harrison,Theodora,15 +session,3528,0,Chrome 27,31,2019-02-11 +user,3529,Danita,Mendy,45 +session,3529,0,Chrome 3,119,2018-01-22 +session,3529,1,Chrome 2,17,2016-10-29 +session,3529,2,Safari 4,57,2017-03-17 +session,3529,3,Chrome 36,103,2017-07-10 +session,3529,4,Internet Explorer 26,49,2016-10-25 +session,3529,5,Internet Explorer 42,11,2018-06-20 +session,3529,6,Internet Explorer 39,15,2016-05-21 +session,3529,7,Chrome 37,22,2017-05-15 +session,3529,8,Firefox 12,71,2018-03-09 +user,3530,Tommy,Synthia,56 +session,3530,0,Safari 24,11,2018-12-03 +session,3530,1,Internet Explorer 25,58,2016-12-31 +session,3530,2,Safari 35,112,2016-09-26 +session,3530,3,Chrome 2,95,2018-12-13 +session,3530,4,Safari 11,18,2018-01-19 +user,3531,Travis,Graciela,3 +session,3531,0,Chrome 26,23,2018-07-29 +session,3531,1,Safari 33,18,2017-07-14 +session,3531,2,Safari 39,100,2016-10-27 +session,3531,3,Chrome 22,11,2018-08-31 +user,3532,Fernanda,Rusty,26 +session,3532,0,Internet Explorer 17,90,2018-09-02 +session,3532,1,Internet Explorer 12,101,2018-07-13 +session,3532,2,Chrome 15,57,2018-02-27 +user,3533,Belia,Tracy,20 +session,3533,0,Chrome 32,52,2018-08-19 +session,3533,1,Internet Explorer 37,81,2019-01-17 +session,3533,2,Chrome 47,105,2016-07-26 +session,3533,3,Safari 24,1,2018-02-10 +session,3533,4,Firefox 15,109,2017-10-16 +session,3533,5,Firefox 28,107,2018-02-20 +session,3533,6,Internet Explorer 8,109,2018-11-06 +session,3533,7,Internet Explorer 8,109,2018-11-01 +session,3533,8,Safari 16,21,2017-01-29 +session,3533,9,Chrome 24,94,2016-11-10 +user,3534,Jolanda,Glynis,83 +session,3534,0,Chrome 36,101,2016-12-04 +session,3534,1,Chrome 20,9,2017-04-30 +session,3534,2,Internet Explorer 10,70,2017-11-17 +session,3534,3,Internet Explorer 24,52,2018-03-29 +session,3534,4,Chrome 10,112,2017-06-19 +session,3534,5,Firefox 12,117,2018-10-20 +session,3534,6,Firefox 29,101,2018-05-07 +session,3534,7,Chrome 15,12,2016-11-19 +session,3534,8,Safari 39,115,2017-09-10 +session,3534,9,Safari 17,56,2018-08-12 +user,3535,Marty,Taunya,50 +session,3535,0,Internet Explorer 18,96,2016-11-22 +session,3535,1,Chrome 28,16,2018-09-18 +user,3536,Towanda,Marilee,77 +session,3536,0,Chrome 3,75,2018-04-23 +session,3536,1,Internet Explorer 5,98,2017-10-19 +session,3536,2,Internet Explorer 31,19,2017-07-30 +session,3536,3,Safari 41,9,2017-04-15 +session,3536,4,Firefox 1,35,2017-01-24 +session,3536,5,Firefox 15,0,2017-03-06 +session,3536,6,Safari 32,80,2017-01-20 +session,3536,7,Safari 4,7,2017-07-24 +user,3537,Yong,Timothy,0 +session,3537,0,Chrome 39,119,2018-03-13 +session,3537,1,Internet Explorer 11,27,2018-10-14 +session,3537,2,Internet Explorer 6,109,2016-08-02 +session,3537,3,Internet Explorer 23,42,2018-04-12 +session,3537,4,Internet Explorer 22,97,2018-09-25 +session,3537,5,Safari 21,22,2017-04-13 +session,3537,6,Chrome 2,110,2018-02-02 +session,3537,7,Firefox 36,55,2016-07-06 +session,3537,8,Firefox 16,99,2018-10-10 +session,3537,9,Safari 1,94,2017-11-15 +user,3538,Gretchen,Effie,64 +session,3538,0,Safari 13,62,2017-01-23 +session,3538,1,Internet Explorer 17,41,2018-07-22 +session,3538,2,Firefox 21,32,2016-11-14 +session,3538,3,Safari 5,32,2019-01-05 +session,3538,4,Chrome 8,54,2018-07-07 +user,3539,Sammie,Miguelina,97 +session,3539,0,Internet Explorer 39,35,2016-06-04 +session,3539,1,Chrome 35,43,2016-06-23 +user,3540,Melony,Yukiko,2 +session,3540,0,Internet Explorer 41,5,2017-01-05 +session,3540,1,Safari 19,77,2017-04-13 +user,3541,Helen,Bertram,95 +session,3541,0,Firefox 44,118,2016-11-09 +session,3541,1,Safari 14,48,2018-04-22 +session,3541,2,Internet Explorer 42,55,2017-02-23 +session,3541,3,Safari 16,26,2016-09-03 +session,3541,4,Chrome 44,24,2018-08-23 +user,3542,Benny,Tomas,5 +session,3542,0,Safari 4,56,2017-12-20 +session,3542,1,Internet Explorer 17,33,2016-11-25 +session,3542,2,Safari 20,56,2018-09-07 +session,3542,3,Safari 28,116,2018-06-02 +session,3542,4,Firefox 23,88,2017-03-07 +session,3542,5,Internet Explorer 6,79,2016-07-10 +session,3542,6,Chrome 50,99,2018-07-29 +user,3543,Gilberto,Tangela,1 +session,3543,0,Chrome 5,108,2017-01-13 +session,3543,1,Safari 39,50,2016-09-03 +session,3543,2,Safari 30,54,2016-07-17 +session,3543,3,Firefox 10,57,2017-12-16 +session,3543,4,Safari 44,47,2018-05-28 +session,3543,5,Internet Explorer 44,102,2017-09-02 +session,3543,6,Chrome 24,93,2017-06-16 +session,3543,7,Firefox 38,72,2017-08-03 +session,3543,8,Chrome 41,51,2016-07-31 +session,3543,9,Internet Explorer 25,6,2017-07-23 +user,3544,Heath,Tressie,21 +session,3544,0,Firefox 13,100,2016-12-01 +session,3544,1,Chrome 38,104,2017-02-11 +session,3544,2,Safari 48,16,2018-12-30 +session,3544,3,Firefox 32,89,2018-09-15 +session,3544,4,Safari 43,102,2018-02-28 +user,3545,Concha,Albertina,73 +session,3545,0,Chrome 21,118,2016-05-20 +session,3545,1,Safari 13,55,2016-08-10 +user,3546,Jocelyn,Verda,78 +session,3546,0,Internet Explorer 31,1,2018-02-04 +session,3546,1,Safari 46,59,2019-02-06 +session,3546,2,Internet Explorer 23,60,2018-03-15 +session,3546,3,Chrome 27,96,2016-07-28 +session,3546,4,Firefox 47,91,2018-09-08 +user,3547,Roberto,Nedra,14 +session,3547,0,Chrome 37,88,2019-02-07 +session,3547,1,Firefox 26,104,2016-10-26 +session,3547,2,Firefox 29,56,2016-09-12 +session,3547,3,Chrome 40,26,2018-12-05 +session,3547,4,Safari 5,45,2018-08-31 +user,3548,Francesco,Taren,66 +session,3548,0,Safari 15,92,2018-07-04 +session,3548,1,Safari 1,81,2018-03-02 +session,3548,2,Chrome 34,113,2016-10-22 +session,3548,3,Chrome 31,27,2018-07-14 +user,3549,Ivory,Scotty,90 +session,3549,0,Firefox 11,112,2018-02-08 +session,3549,1,Firefox 32,27,2017-09-19 +session,3549,2,Safari 7,1,2017-09-18 +session,3549,3,Safari 2,22,2017-11-21 +session,3549,4,Safari 2,107,2018-09-11 +session,3549,5,Chrome 50,78,2018-07-30 +session,3549,6,Safari 4,80,2017-09-22 +user,3550,Sonya,Chantel,1 +session,3550,0,Internet Explorer 22,5,2016-09-04 +session,3550,1,Firefox 45,9,2017-12-04 +session,3550,2,Firefox 40,81,2016-09-01 +session,3550,3,Firefox 29,25,2018-09-25 +session,3550,4,Internet Explorer 28,52,2018-01-15 +session,3550,5,Internet Explorer 19,109,2017-04-20 +user,3551,Norbert,Armanda,22 +session,3551,0,Firefox 31,105,2017-08-20 +session,3551,1,Internet Explorer 2,85,2018-09-11 +session,3551,2,Firefox 38,70,2018-03-22 +session,3551,3,Internet Explorer 18,38,2018-01-02 +session,3551,4,Internet Explorer 17,109,2018-12-12 +session,3551,5,Safari 7,109,2017-04-20 +session,3551,6,Chrome 23,64,2018-02-16 +session,3551,7,Chrome 20,21,2018-02-18 +session,3551,8,Safari 33,112,2016-09-25 +user,3552,Lee,Gregorio,37 +session,3552,0,Safari 7,119,2017-09-04 +session,3552,1,Internet Explorer 30,46,2016-08-01 +session,3552,2,Chrome 7,79,2017-04-12 +session,3552,3,Safari 10,13,2017-10-10 +user,3553,Adam,Krissy,1 +session,3553,0,Chrome 10,105,2017-09-10 +session,3553,1,Chrome 16,15,2018-06-13 +session,3553,2,Firefox 17,53,2018-07-04 +session,3553,3,Safari 6,58,2017-03-22 +session,3553,4,Firefox 28,7,2018-03-03 +user,3554,Jocelyn,Vivan,5 +session,3554,0,Safari 31,117,2018-12-13 +session,3554,1,Internet Explorer 35,73,2016-12-30 +session,3554,2,Safari 47,72,2018-06-01 +user,3555,Rana,Angeline,75 +session,3555,0,Firefox 47,111,2018-05-08 +session,3555,1,Safari 1,49,2017-08-04 +user,3556,Marianela,Stefany,85 +session,3556,0,Chrome 32,6,2017-02-20 +session,3556,1,Firefox 28,59,2018-09-29 +session,3556,2,Safari 43,108,2018-10-23 +session,3556,3,Chrome 18,105,2017-01-21 +session,3556,4,Firefox 41,58,2016-12-20 +session,3556,5,Chrome 19,69,2018-08-18 +session,3556,6,Firefox 1,48,2017-01-31 +session,3556,7,Safari 25,99,2018-04-15 +session,3556,8,Safari 29,102,2018-06-14 +user,3557,Hertha,Siu,40 +session,3557,0,Safari 10,97,2016-11-08 +user,3558,Rey,Hyun,96 +session,3558,0,Internet Explorer 11,91,2016-09-06 +session,3558,1,Firefox 44,31,2017-08-25 +session,3558,2,Safari 6,7,2017-05-15 +user,3559,Raphael,Olympia,93 +session,3559,0,Chrome 17,57,2017-10-13 +session,3559,1,Safari 47,119,2018-04-20 +session,3559,2,Chrome 18,112,2016-12-04 +session,3559,3,Chrome 3,29,2018-05-27 +session,3559,4,Safari 24,20,2016-12-27 +session,3559,5,Chrome 49,60,2017-08-12 +session,3559,6,Internet Explorer 18,47,2018-03-02 +session,3559,7,Safari 3,66,2017-08-07 +session,3559,8,Safari 7,95,2016-08-27 +user,3560,Royce,Theo,75 +session,3560,0,Safari 5,70,2016-08-20 +session,3560,1,Safari 20,107,2017-04-06 +user,3561,Van,Berry,63 +session,3561,0,Chrome 43,14,2016-12-23 +session,3561,1,Safari 35,76,2018-09-03 +session,3561,2,Chrome 6,111,2016-08-29 +user,3562,Alexander,Humberto,31 +session,3562,0,Chrome 49,104,2016-12-29 +session,3562,1,Chrome 50,59,2019-01-20 +session,3562,2,Firefox 16,50,2017-08-30 +session,3562,3,Safari 45,0,2018-07-30 +session,3562,4,Safari 13,107,2019-01-14 +session,3562,5,Internet Explorer 22,97,2016-09-11 +session,3562,6,Chrome 45,1,2017-05-22 +session,3562,7,Firefox 18,96,2016-07-10 +session,3562,8,Chrome 6,51,2018-12-16 +user,3563,Tyrell,Eddie,59 +session,3563,0,Chrome 8,61,2016-07-25 +session,3563,1,Firefox 41,108,2018-12-26 +session,3563,2,Safari 27,96,2016-08-26 +session,3563,3,Firefox 28,8,2017-07-19 +session,3563,4,Firefox 9,35,2018-08-21 +user,3564,Raymon,Reanna,61 +session,3564,0,Firefox 22,6,2018-01-11 +user,3565,Jamel,Delpha,75 +session,3565,0,Chrome 36,4,2017-04-01 +session,3565,1,Chrome 16,90,2016-05-31 +session,3565,2,Chrome 34,95,2017-08-04 +session,3565,3,Safari 34,29,2018-09-21 +session,3565,4,Chrome 44,103,2018-08-06 +session,3565,5,Safari 4,31,2017-02-08 +session,3565,6,Internet Explorer 32,0,2017-07-11 +session,3565,7,Internet Explorer 36,78,2018-11-23 +user,3566,Fern,Alvera,22 +session,3566,0,Firefox 33,31,2016-09-26 +session,3566,1,Safari 28,97,2017-12-15 +session,3566,2,Chrome 20,54,2018-07-08 +session,3566,3,Internet Explorer 40,65,2019-02-04 +session,3566,4,Safari 16,71,2016-09-13 +session,3566,5,Chrome 26,50,2016-08-29 +user,3567,Logan,Liana,27 +session,3567,0,Safari 13,1,2017-10-21 +session,3567,1,Chrome 29,115,2017-04-23 +session,3567,2,Chrome 18,58,2017-07-10 +user,3568,Timika,Zulema,73 +session,3568,0,Internet Explorer 29,21,2016-09-02 +session,3568,1,Firefox 29,11,2018-09-22 +session,3568,2,Safari 10,13,2016-05-21 +session,3568,3,Firefox 21,90,2016-10-04 +session,3568,4,Internet Explorer 15,10,2017-11-10 +user,3569,Maile,Tiffani,84 +session,3569,0,Safari 50,84,2018-12-22 +session,3569,1,Firefox 17,55,2018-02-05 +session,3569,2,Chrome 33,76,2018-03-26 +session,3569,3,Chrome 12,41,2016-07-31 +session,3569,4,Chrome 1,108,2018-10-26 +session,3569,5,Chrome 49,63,2017-10-25 +session,3569,6,Safari 29,66,2016-12-02 +session,3569,7,Internet Explorer 12,65,2017-10-22 +user,3570,Paulita,Lieselotte,85 +session,3570,0,Safari 15,10,2018-09-13 +session,3570,1,Firefox 12,73,2017-12-06 +user,3571,Mary,Rachele,2 +session,3571,0,Chrome 24,106,2016-10-28 +session,3571,1,Firefox 34,83,2017-05-09 +user,3572,Mee,Pedro,67 +session,3572,0,Safari 32,46,2017-11-07 +session,3572,1,Safari 49,69,2017-10-27 +session,3572,2,Internet Explorer 5,89,2017-04-07 +session,3572,3,Chrome 17,72,2016-08-05 +user,3573,Miles,Evelynn,56 +session,3573,0,Firefox 28,17,2017-03-10 +session,3573,1,Chrome 35,47,2018-01-28 +session,3573,2,Safari 10,74,2018-09-27 +user,3574,Bryon,Cathleen,60 +session,3574,0,Safari 30,85,2018-02-06 +session,3574,1,Internet Explorer 24,92,2018-01-10 +session,3574,2,Firefox 19,23,2017-07-23 +session,3574,3,Firefox 33,70,2018-02-28 +session,3574,4,Firefox 23,37,2017-04-28 +session,3574,5,Firefox 21,42,2018-07-20 +session,3574,6,Firefox 13,119,2016-12-20 +session,3574,7,Internet Explorer 35,15,2017-01-22 +session,3574,8,Firefox 4,59,2018-05-08 +session,3574,9,Safari 40,77,2016-11-13 +user,3575,Benedict,Alina,31 +session,3575,0,Internet Explorer 46,117,2016-11-21 +session,3575,1,Safari 8,1,2017-03-24 +session,3575,2,Safari 40,78,2017-07-07 +session,3575,3,Chrome 46,24,2017-12-29 +session,3575,4,Firefox 50,84,2017-01-14 +session,3575,5,Chrome 17,57,2016-06-19 +session,3575,6,Chrome 41,114,2017-11-30 +session,3575,7,Chrome 1,116,2017-12-20 +session,3575,8,Safari 48,57,2018-06-25 +session,3575,9,Safari 38,107,2017-10-10 +user,3576,Darrin,Randee,81 +session,3576,0,Firefox 20,7,2016-09-13 +session,3576,1,Chrome 14,83,2016-06-12 +session,3576,2,Safari 30,58,2018-08-22 +session,3576,3,Internet Explorer 8,33,2016-11-06 +user,3577,Zenia,Thu,3 +session,3577,0,Chrome 41,118,2016-12-14 +session,3577,1,Chrome 15,40,2017-04-21 +session,3577,2,Firefox 32,111,2017-01-20 +session,3577,3,Safari 50,73,2017-09-26 +session,3577,4,Firefox 18,29,2018-07-18 +session,3577,5,Firefox 16,76,2017-02-01 +session,3577,6,Safari 43,33,2017-12-29 +session,3577,7,Safari 42,18,2016-12-26 +session,3577,8,Safari 41,114,2016-06-19 +session,3577,9,Chrome 29,45,2018-06-12 +user,3578,Alpha,Sarina,84 +session,3578,0,Firefox 45,5,2018-02-01 +session,3578,1,Firefox 35,44,2018-12-17 +session,3578,2,Chrome 2,66,2017-05-02 +session,3578,3,Safari 42,11,2017-02-26 +session,3578,4,Internet Explorer 22,87,2017-01-15 +user,3579,Genie,Phyllis,25 +session,3579,0,Chrome 21,13,2017-05-25 +session,3579,1,Safari 9,96,2016-05-30 +session,3579,2,Internet Explorer 50,24,2018-09-16 +session,3579,3,Chrome 41,88,2019-02-02 +user,3580,Annmarie,Shaina,32 +session,3580,0,Chrome 18,61,2018-10-29 +user,3581,Enedina,Herta,55 +session,3581,0,Safari 36,26,2017-09-29 +session,3581,1,Internet Explorer 37,15,2018-09-16 +session,3581,2,Internet Explorer 38,28,2017-11-11 +user,3582,Season,Carolynn,62 +session,3582,0,Internet Explorer 34,14,2017-01-12 +session,3582,1,Internet Explorer 34,36,2018-03-28 +session,3582,2,Safari 20,30,2017-10-20 +user,3583,Eric,Nola,66 +session,3583,0,Firefox 13,34,2017-08-07 +session,3583,1,Firefox 40,95,2017-10-18 +session,3583,2,Chrome 24,19,2018-10-07 +session,3583,3,Internet Explorer 5,82,2016-09-18 +session,3583,4,Internet Explorer 40,36,2018-06-11 +user,3584,Jennette,Donette,55 +session,3584,0,Internet Explorer 21,69,2018-08-03 +session,3584,1,Internet Explorer 4,34,2017-07-21 +session,3584,2,Chrome 30,66,2017-04-04 +session,3584,3,Safari 32,79,2018-02-24 +session,3584,4,Internet Explorer 38,59,2017-08-14 +session,3584,5,Chrome 49,73,2017-12-08 +user,3585,Sylvester,Samantha,75 +session,3585,0,Safari 29,61,2016-09-08 +session,3585,1,Chrome 9,59,2017-06-23 +session,3585,2,Chrome 50,72,2017-10-19 +session,3585,3,Safari 20,47,2016-06-01 +session,3585,4,Internet Explorer 14,52,2017-02-19 +session,3585,5,Internet Explorer 9,87,2018-11-22 +session,3585,6,Safari 31,54,2017-12-20 +session,3585,7,Internet Explorer 20,21,2017-06-03 +session,3585,8,Chrome 33,16,2018-04-21 +user,3586,Errol,Ciera,64 +session,3586,0,Chrome 44,74,2018-05-15 +session,3586,1,Chrome 44,77,2018-01-28 +session,3586,2,Internet Explorer 38,117,2017-03-12 +session,3586,3,Firefox 4,71,2017-07-20 +session,3586,4,Internet Explorer 29,36,2017-09-24 +session,3586,5,Chrome 3,43,2017-07-28 +user,3587,Millard,Samuel,30 +session,3587,0,Chrome 47,8,2016-11-22 +session,3587,1,Safari 2,58,2016-08-28 +session,3587,2,Firefox 29,59,2018-06-02 +session,3587,3,Firefox 3,56,2018-03-13 +session,3587,4,Firefox 5,118,2017-01-12 +session,3587,5,Chrome 48,109,2016-10-08 +user,3588,Dario,Pok,98 +session,3588,0,Internet Explorer 25,85,2018-11-28 +session,3588,1,Internet Explorer 10,93,2018-09-26 +user,3589,Christian,Deja,86 +session,3589,0,Chrome 10,67,2018-04-22 +session,3589,1,Internet Explorer 10,113,2017-03-30 +session,3589,2,Safari 3,18,2016-06-06 +session,3589,3,Internet Explorer 46,6,2018-06-16 +user,3590,Hollis,Kirk,62 +session,3590,0,Safari 36,52,2018-07-11 +session,3590,1,Safari 41,50,2017-10-14 +session,3590,2,Internet Explorer 27,44,2016-06-30 +session,3590,3,Chrome 24,61,2017-11-01 +session,3590,4,Firefox 43,51,2017-08-11 +session,3590,5,Chrome 11,63,2016-12-25 +session,3590,6,Firefox 27,57,2017-12-12 +session,3590,7,Chrome 39,115,2019-02-08 +session,3590,8,Chrome 16,84,2018-09-14 +session,3590,9,Internet Explorer 30,15,2018-08-05 +user,3591,Sheryll,Daniella,75 +session,3591,0,Safari 18,33,2019-01-09 +session,3591,1,Internet Explorer 16,2,2017-05-20 +session,3591,2,Safari 4,43,2017-01-24 +session,3591,3,Chrome 4,28,2017-07-20 +user,3592,Mauricio,Gaynell,13 +session,3592,0,Chrome 11,20,2017-10-31 +session,3592,1,Chrome 16,38,2018-06-17 +session,3592,2,Chrome 49,110,2016-12-22 +session,3592,3,Firefox 10,77,2016-08-14 +user,3593,Nathan,Ruthann,14 +session,3593,0,Firefox 26,19,2018-08-23 +session,3593,1,Firefox 38,86,2018-08-19 +session,3593,2,Chrome 20,41,2018-04-30 +session,3593,3,Safari 16,14,2018-06-07 +session,3593,4,Safari 1,107,2018-08-27 +session,3593,5,Firefox 45,79,2018-01-17 +session,3593,6,Safari 25,9,2016-06-11 +session,3593,7,Firefox 40,56,2016-12-20 +session,3593,8,Internet Explorer 36,70,2017-08-14 +user,3594,Thomasena,Pasty,7 +session,3594,0,Internet Explorer 47,70,2016-11-12 +session,3594,1,Safari 17,12,2018-04-28 +session,3594,2,Internet Explorer 7,98,2018-09-22 +session,3594,3,Chrome 46,110,2018-07-02 +session,3594,4,Internet Explorer 29,43,2017-09-06 +session,3594,5,Firefox 38,46,2019-01-28 +session,3594,6,Firefox 44,85,2017-07-21 +session,3594,7,Chrome 9,11,2018-02-17 +session,3594,8,Chrome 47,23,2018-01-08 +session,3594,9,Firefox 35,47,2018-08-31 +user,3595,Greg,Vera,16 +session,3595,0,Safari 21,10,2016-06-05 +session,3595,1,Firefox 40,108,2017-01-24 +session,3595,2,Internet Explorer 25,30,2017-01-30 +session,3595,3,Chrome 18,82,2017-03-29 +session,3595,4,Internet Explorer 40,37,2016-10-09 +session,3595,5,Internet Explorer 29,88,2016-12-13 +session,3595,6,Firefox 1,109,2017-04-27 +user,3596,Rodger,Audra,88 +session,3596,0,Firefox 8,57,2016-10-14 +session,3596,1,Internet Explorer 21,13,2016-11-02 +session,3596,2,Firefox 5,106,2018-12-28 +session,3596,3,Firefox 3,45,2017-06-23 +session,3596,4,Chrome 46,89,2016-06-20 +user,3597,Larraine,Layne,94 +session,3597,0,Chrome 29,56,2016-11-19 +session,3597,1,Safari 29,45,2019-01-06 +session,3597,2,Chrome 36,100,2017-12-27 +user,3598,Stanton,Nick,9 +session,3598,0,Firefox 39,16,2018-03-03 +session,3598,1,Firefox 4,66,2017-09-14 +session,3598,2,Chrome 43,0,2017-12-26 +session,3598,3,Firefox 22,62,2018-09-11 +session,3598,4,Chrome 14,77,2017-12-18 +session,3598,5,Safari 6,77,2017-01-08 +session,3598,6,Chrome 50,14,2017-06-14 +session,3598,7,Firefox 2,47,2017-01-10 +session,3598,8,Safari 40,32,2017-04-08 +user,3599,Omer,Tanja,72 +session,3599,0,Safari 3,6,2018-09-22 +session,3599,1,Chrome 16,97,2016-08-18 +session,3599,2,Internet Explorer 9,76,2019-02-10 +session,3599,3,Chrome 18,88,2017-12-17 +session,3599,4,Internet Explorer 16,8,2017-04-26 +session,3599,5,Firefox 33,89,2016-07-16 +session,3599,6,Safari 48,72,2018-05-12 +session,3599,7,Chrome 28,35,2016-09-11 +session,3599,8,Firefox 16,81,2017-10-07 +session,3599,9,Internet Explorer 31,81,2017-06-03 +user,3600,Horacio,Christian,95 +session,3600,0,Firefox 8,18,2017-11-14 +session,3600,1,Safari 48,56,2017-04-22 +session,3600,2,Internet Explorer 8,85,2018-06-12 +session,3600,3,Firefox 47,111,2019-01-04 +session,3600,4,Safari 40,71,2017-03-07 +session,3600,5,Firefox 17,66,2016-07-23 +session,3600,6,Safari 24,119,2016-07-27 +session,3600,7,Internet Explorer 38,3,2018-05-04 +user,3601,Evelyn,Gonzalo,27 +session,3601,0,Internet Explorer 21,107,2017-07-29 +session,3601,1,Internet Explorer 16,31,2017-04-08 +session,3601,2,Chrome 20,99,2018-06-29 +session,3601,3,Chrome 30,37,2017-11-11 +session,3601,4,Chrome 3,8,2018-12-26 +session,3601,5,Safari 30,39,2018-02-17 +user,3602,Sammie,Angelica,95 +session,3602,0,Internet Explorer 4,70,2017-09-18 +session,3602,1,Safari 24,80,2017-06-27 +session,3602,2,Internet Explorer 34,29,2018-10-08 +session,3602,3,Internet Explorer 16,119,2018-11-29 +session,3602,4,Safari 49,50,2017-11-24 +user,3603,Sharilyn,Shantel,70 +session,3603,0,Safari 34,89,2018-08-29 +session,3603,1,Firefox 31,95,2018-08-18 +session,3603,2,Firefox 18,54,2019-02-03 +user,3604,Lanora,Kristy,19 +session,3604,0,Chrome 16,18,2016-09-08 +session,3604,1,Firefox 19,78,2017-10-29 +session,3604,2,Internet Explorer 12,9,2018-03-20 +session,3604,3,Firefox 43,18,2017-12-23 +session,3604,4,Chrome 4,47,2018-06-07 +session,3604,5,Chrome 32,99,2016-06-26 +session,3604,6,Safari 33,45,2018-09-17 +session,3604,7,Safari 46,80,2018-03-28 +session,3604,8,Safari 3,37,2018-04-16 +session,3604,9,Internet Explorer 5,45,2018-08-16 +user,3605,Echo,Kristina,68 +session,3605,0,Chrome 33,95,2018-10-27 +user,3606,Jarrod,Tatum,77 +session,3606,0,Safari 5,107,2016-09-28 +session,3606,1,Internet Explorer 19,6,2019-02-09 +session,3606,2,Firefox 44,46,2018-08-18 +session,3606,3,Firefox 47,97,2017-10-23 +session,3606,4,Internet Explorer 49,111,2016-07-28 +session,3606,5,Firefox 44,66,2018-04-15 +session,3606,6,Chrome 40,103,2018-01-14 +session,3606,7,Firefox 4,83,2017-01-24 +user,3607,Shenita,Charles,90 +session,3607,0,Safari 33,116,2017-02-06 +session,3607,1,Internet Explorer 3,30,2017-07-08 +session,3607,2,Safari 41,98,2017-02-23 +session,3607,3,Firefox 22,107,2018-08-20 +session,3607,4,Internet Explorer 23,53,2016-07-27 +session,3607,5,Chrome 32,91,2016-08-25 +session,3607,6,Internet Explorer 13,59,2017-10-19 +user,3608,Columbus,Kandis,7 +session,3608,0,Firefox 18,61,2017-08-20 +session,3608,1,Chrome 49,71,2017-09-14 +session,3608,2,Chrome 37,84,2016-10-26 +session,3608,3,Chrome 11,3,2017-09-14 +session,3608,4,Firefox 12,43,2016-10-15 +session,3608,5,Firefox 24,101,2018-02-26 +session,3608,6,Internet Explorer 50,31,2016-07-12 +user,3609,Weston,Candis,83 +session,3609,0,Firefox 15,30,2018-12-02 +session,3609,1,Safari 19,98,2018-02-20 +session,3609,2,Firefox 16,61,2018-03-03 +session,3609,3,Firefox 22,70,2017-09-11 +session,3609,4,Chrome 18,21,2017-02-14 +session,3609,5,Internet Explorer 25,82,2018-11-12 +user,3610,Carlie,Joanie,32 +session,3610,0,Safari 19,9,2017-05-05 +user,3611,Shawn,Portia,51 +session,3611,0,Firefox 16,20,2017-03-31 +session,3611,1,Internet Explorer 28,84,2018-11-04 +session,3611,2,Chrome 8,11,2018-09-30 +session,3611,3,Firefox 38,73,2018-09-08 +session,3611,4,Firefox 37,22,2018-02-14 +session,3611,5,Chrome 12,59,2017-05-03 +session,3611,6,Internet Explorer 32,26,2018-12-26 +session,3611,7,Safari 31,21,2017-03-29 +session,3611,8,Safari 27,64,2018-09-03 +session,3611,9,Internet Explorer 26,46,2017-07-25 +user,3612,Orlando,Julee,73 +session,3612,0,Safari 17,58,2017-01-01 +session,3612,1,Firefox 7,7,2017-02-04 +session,3612,2,Internet Explorer 32,91,2018-06-24 +session,3612,3,Safari 39,37,2018-11-17 +session,3612,4,Firefox 33,63,2018-04-08 +session,3612,5,Chrome 45,66,2017-12-20 +session,3612,6,Firefox 13,102,2017-05-29 +session,3612,7,Safari 2,0,2016-06-12 +user,3613,Myrl,Markita,39 +session,3613,0,Firefox 39,115,2018-04-26 +session,3613,1,Firefox 19,42,2017-09-27 +session,3613,2,Firefox 21,87,2017-07-12 +user,3614,Belen,Luisa,97 +session,3614,0,Firefox 4,110,2018-03-16 +session,3614,1,Firefox 25,110,2018-09-13 +session,3614,2,Internet Explorer 34,101,2016-07-25 +session,3614,3,Firefox 16,12,2016-10-05 +user,3615,Arnold,Derick,37 +session,3615,0,Internet Explorer 31,103,2017-11-23 +session,3615,1,Firefox 47,104,2016-09-18 +session,3615,2,Safari 36,72,2017-02-18 +session,3615,3,Firefox 39,51,2016-08-13 +session,3615,4,Firefox 20,66,2018-03-31 +session,3615,5,Internet Explorer 25,18,2016-06-12 +user,3616,Shara,Lindsay,40 +session,3616,0,Safari 17,105,2016-06-26 +user,3617,Sulema,Dreama,33 +session,3617,0,Internet Explorer 39,113,2019-01-21 +session,3617,1,Firefox 41,24,2016-05-23 +session,3617,2,Safari 1,79,2018-10-31 +session,3617,3,Safari 37,74,2018-02-11 +session,3617,4,Internet Explorer 32,96,2017-03-03 +session,3617,5,Safari 42,54,2019-01-01 +session,3617,6,Chrome 4,22,2017-12-22 +session,3617,7,Firefox 45,70,2017-11-28 +session,3617,8,Firefox 2,93,2017-08-29 +user,3618,Lachelle,Rosita,33 +session,3618,0,Chrome 14,99,2018-01-21 +user,3619,Alethea,Gertrud,82 +session,3619,0,Safari 10,78,2017-08-05 +session,3619,1,Firefox 22,74,2016-11-04 +session,3619,2,Safari 39,51,2017-06-03 +user,3620,Corazon,Hollis,93 +session,3620,0,Firefox 9,40,2017-12-10 +session,3620,1,Firefox 9,42,2016-10-26 +session,3620,2,Chrome 7,94,2018-09-15 +session,3620,3,Firefox 21,59,2016-10-17 +session,3620,4,Safari 43,11,2017-08-26 +session,3620,5,Firefox 2,34,2018-09-13 +session,3620,6,Firefox 40,50,2017-08-03 +session,3620,7,Safari 8,57,2018-04-23 +user,3621,Josiah,Claretha,88 +session,3621,0,Firefox 25,60,2016-08-09 +user,3622,Quintin,Modesto,27 +session,3622,0,Firefox 42,2,2018-10-08 +user,3623,Nohemi,Edmund,57 +session,3623,0,Firefox 40,3,2018-09-16 +session,3623,1,Internet Explorer 42,94,2018-06-14 +session,3623,2,Internet Explorer 46,71,2017-11-06 +session,3623,3,Firefox 28,51,2017-04-04 +session,3623,4,Internet Explorer 20,85,2018-12-18 +session,3623,5,Chrome 36,103,2017-05-15 +session,3623,6,Safari 25,118,2016-11-05 +session,3623,7,Firefox 23,88,2018-01-21 +session,3623,8,Safari 4,111,2018-09-15 +session,3623,9,Internet Explorer 6,73,2018-01-15 +user,3624,Claudio,Betsey,40 +session,3624,0,Firefox 12,43,2016-07-20 +session,3624,1,Safari 24,93,2018-08-18 +session,3624,2,Firefox 15,20,2016-12-04 +session,3624,3,Internet Explorer 31,39,2018-10-31 +user,3625,Moshe,Otha,9 +session,3625,0,Internet Explorer 20,103,2017-07-10 +session,3625,1,Chrome 48,52,2019-01-10 +session,3625,2,Safari 18,71,2018-10-12 +session,3625,3,Internet Explorer 46,71,2018-12-27 +session,3625,4,Safari 23,44,2017-05-19 +user,3626,Omer,Andrea,82 +session,3626,0,Safari 31,19,2017-06-19 +session,3626,1,Internet Explorer 2,104,2018-05-23 +session,3626,2,Safari 15,2,2017-02-23 +session,3626,3,Firefox 39,95,2017-05-09 +user,3627,Harrison,Tanner,75 +session,3627,0,Safari 19,39,2016-08-27 +session,3627,1,Chrome 37,16,2016-11-10 +session,3627,2,Internet Explorer 29,7,2017-10-09 +session,3627,3,Internet Explorer 24,104,2017-04-21 +session,3627,4,Chrome 2,107,2016-09-11 +session,3627,5,Safari 49,29,2018-04-13 +session,3627,6,Chrome 19,60,2018-03-17 +session,3627,7,Internet Explorer 19,14,2018-06-13 +session,3627,8,Firefox 8,38,2017-06-02 +user,3628,Arron,Arielle,1 +session,3628,0,Safari 10,23,2017-06-13 +session,3628,1,Safari 23,49,2016-08-14 +session,3628,2,Internet Explorer 36,55,2018-03-08 +session,3628,3,Firefox 18,15,2017-09-12 +session,3628,4,Safari 22,63,2016-09-01 +session,3628,5,Chrome 39,103,2017-08-13 +session,3628,6,Chrome 41,101,2017-03-19 +session,3628,7,Chrome 26,49,2017-02-09 +session,3628,8,Firefox 12,64,2018-08-18 +session,3628,9,Internet Explorer 44,78,2017-02-20 +user,3629,Cole,Pearline,29 +session,3629,0,Chrome 38,13,2018-06-03 +session,3629,1,Safari 15,117,2016-07-16 +user,3630,Gene,Ewa,97 +session,3630,0,Chrome 21,62,2017-01-21 +session,3630,1,Safari 29,47,2017-10-30 +session,3630,2,Safari 30,76,2018-05-04 +session,3630,3,Safari 33,3,2016-07-18 +session,3630,4,Safari 37,107,2017-10-06 +session,3630,5,Chrome 17,39,2018-10-09 +session,3630,6,Safari 45,74,2017-03-22 +session,3630,7,Chrome 40,31,2016-05-20 +user,3631,Thurman,Alexia,23 +session,3631,0,Firefox 14,23,2017-07-29 +session,3631,1,Internet Explorer 26,5,2016-07-05 +session,3631,2,Internet Explorer 41,82,2018-10-11 +session,3631,3,Safari 29,91,2016-06-17 +session,3631,4,Firefox 1,78,2017-09-07 +session,3631,5,Chrome 29,54,2016-09-02 +session,3631,6,Chrome 10,86,2017-06-17 +session,3631,7,Safari 19,117,2017-06-28 +user,3632,Julius,Doris,71 +session,3632,0,Internet Explorer 5,75,2018-12-15 +session,3632,1,Chrome 22,27,2016-08-15 +user,3633,Samantha,Loni,4 +session,3633,0,Internet Explorer 1,40,2017-05-06 +session,3633,1,Safari 42,50,2016-10-12 +session,3633,2,Chrome 23,113,2018-09-16 +user,3634,Toby,Agueda,62 +session,3634,0,Firefox 9,97,2017-03-25 +session,3634,1,Firefox 29,8,2016-10-28 +session,3634,2,Chrome 36,35,2017-09-25 +user,3635,Johnnie,Shizuko,84 +session,3635,0,Chrome 22,106,2018-04-18 +session,3635,1,Internet Explorer 8,60,2018-10-30 +session,3635,2,Chrome 43,116,2018-06-17 +session,3635,3,Safari 34,69,2016-12-03 +user,3636,Mandie,Kylie,61 +session,3636,0,Safari 13,80,2016-07-23 +session,3636,1,Internet Explorer 27,42,2019-02-06 +session,3636,2,Chrome 48,10,2016-06-26 +session,3636,3,Chrome 3,43,2016-08-06 +session,3636,4,Chrome 14,3,2019-02-06 +user,3637,Elroy,Freddie,19 +session,3637,0,Firefox 43,8,2017-06-10 +session,3637,1,Chrome 37,83,2018-04-25 +session,3637,2,Chrome 18,40,2017-01-29 +session,3637,3,Chrome 39,7,2016-12-02 +session,3637,4,Chrome 31,66,2019-01-01 +session,3637,5,Firefox 29,6,2016-11-09 +session,3637,6,Safari 24,117,2017-07-22 +session,3637,7,Internet Explorer 34,72,2018-03-22 +user,3638,Goldie,Aubrey,66 +session,3638,0,Chrome 39,57,2017-06-29 +session,3638,1,Internet Explorer 4,65,2016-10-31 +session,3638,2,Safari 26,110,2018-02-17 +session,3638,3,Chrome 9,43,2018-12-30 +session,3638,4,Chrome 2,45,2018-02-04 +session,3638,5,Internet Explorer 35,61,2016-09-04 +session,3638,6,Safari 45,10,2018-06-10 +session,3638,7,Chrome 10,17,2017-02-10 +session,3638,8,Firefox 46,2,2018-09-17 +user,3639,Duane,Jodie,19 +session,3639,0,Internet Explorer 35,101,2018-03-10 +session,3639,1,Internet Explorer 30,85,2017-12-24 +session,3639,2,Firefox 27,30,2017-06-02 +user,3640,Kaylee,Maxine,21 +session,3640,0,Safari 36,12,2017-05-07 +user,3641,Karoline,Damaris,0 +session,3641,0,Safari 23,48,2018-07-07 +session,3641,1,Chrome 31,103,2016-09-09 +session,3641,2,Firefox 46,101,2017-01-03 +session,3641,3,Safari 23,35,2018-05-25 +session,3641,4,Safari 27,41,2018-07-16 +session,3641,5,Chrome 50,105,2016-09-18 +session,3641,6,Firefox 1,86,2018-12-15 +session,3641,7,Safari 20,73,2016-07-15 +user,3642,Rosaline,Dennise,23 +session,3642,0,Chrome 6,45,2018-01-03 +session,3642,1,Internet Explorer 7,48,2016-06-10 +session,3642,2,Safari 16,27,2018-03-05 +session,3642,3,Firefox 5,101,2018-01-02 +user,3643,Walton,Darron,36 +session,3643,0,Chrome 34,118,2018-06-12 +session,3643,1,Internet Explorer 29,75,2018-06-17 +session,3643,2,Safari 35,53,2017-04-10 +session,3643,3,Firefox 2,3,2017-02-22 +session,3643,4,Safari 37,22,2016-06-27 +session,3643,5,Internet Explorer 9,9,2017-02-26 +session,3643,6,Safari 45,38,2017-02-12 +session,3643,7,Internet Explorer 37,29,2017-12-09 +session,3643,8,Firefox 39,4,2017-01-06 +user,3644,Shila,Nickolas,4 +session,3644,0,Firefox 7,107,2017-05-04 +session,3644,1,Internet Explorer 21,86,2016-12-24 +session,3644,2,Safari 30,26,2019-01-05 +session,3644,3,Internet Explorer 21,53,2018-12-05 +user,3645,Zandra,Hobert,24 +session,3645,0,Internet Explorer 37,46,2017-09-01 +session,3645,1,Chrome 4,1,2018-04-07 +user,3646,Toby,Ivy,75 +session,3646,0,Chrome 31,33,2018-12-22 +session,3646,1,Safari 20,85,2018-07-28 +session,3646,2,Firefox 32,9,2019-01-29 +session,3646,3,Internet Explorer 4,13,2017-07-30 +session,3646,4,Internet Explorer 31,3,2017-05-10 +session,3646,5,Firefox 43,72,2016-06-06 +session,3646,6,Safari 1,87,2018-08-22 +session,3646,7,Chrome 17,96,2016-11-15 +session,3646,8,Safari 43,25,2018-02-03 +user,3647,Young,Emerald,43 +session,3647,0,Internet Explorer 6,118,2018-10-12 +session,3647,1,Firefox 11,93,2016-09-23 +user,3648,Shira,Denny,41 +session,3648,0,Safari 7,5,2018-01-19 +session,3648,1,Chrome 24,115,2018-08-30 +session,3648,2,Chrome 24,50,2018-04-14 +session,3648,3,Chrome 48,2,2018-01-15 +session,3648,4,Internet Explorer 3,42,2017-04-25 +session,3648,5,Firefox 9,28,2017-12-10 +session,3648,6,Safari 1,74,2017-07-31 +session,3648,7,Firefox 7,58,2018-06-08 +session,3648,8,Chrome 16,78,2018-05-25 +user,3649,Rachelle,Loan,84 +session,3649,0,Safari 21,9,2017-06-03 +session,3649,1,Internet Explorer 36,23,2016-12-06 +session,3649,2,Internet Explorer 27,60,2018-12-19 +session,3649,3,Firefox 16,112,2018-02-22 +session,3649,4,Chrome 11,75,2017-10-24 +session,3649,5,Safari 47,100,2017-07-14 +session,3649,6,Firefox 23,110,2017-02-18 +session,3649,7,Internet Explorer 28,100,2017-08-08 +session,3649,8,Firefox 50,99,2017-08-05 +session,3649,9,Firefox 20,53,2018-01-11 +user,3650,Charley,Gilberte,44 +session,3650,0,Safari 8,89,2018-01-10 +session,3650,1,Chrome 41,23,2017-01-05 +session,3650,2,Internet Explorer 11,80,2016-06-19 +session,3650,3,Internet Explorer 31,35,2016-07-12 +session,3650,4,Chrome 36,112,2016-08-09 +session,3650,5,Internet Explorer 49,40,2016-11-06 +session,3650,6,Chrome 50,26,2017-12-02 +user,3651,Bert,Keitha,37 +session,3651,0,Firefox 13,87,2017-04-05 +session,3651,1,Chrome 21,40,2019-01-22 +session,3651,2,Internet Explorer 4,88,2017-08-16 +user,3652,Sharyn,Simonne,55 +session,3652,0,Firefox 15,86,2018-03-24 +session,3652,1,Chrome 26,43,2018-01-25 +session,3652,2,Internet Explorer 16,107,2016-06-19 +session,3652,3,Internet Explorer 6,15,2016-12-30 +session,3652,4,Firefox 31,7,2017-11-17 +session,3652,5,Safari 3,78,2019-02-11 +session,3652,6,Internet Explorer 50,44,2018-06-09 +session,3652,7,Firefox 29,52,2018-01-21 +session,3652,8,Firefox 31,119,2018-04-09 +session,3652,9,Firefox 15,18,2017-08-07 +user,3653,Logan,Jeffrey,98 +session,3653,0,Internet Explorer 11,84,2018-02-24 +session,3653,1,Chrome 4,19,2017-04-29 +session,3653,2,Chrome 36,6,2018-10-25 +session,3653,3,Safari 25,117,2018-04-22 +session,3653,4,Chrome 40,36,2018-10-17 +user,3654,Santo,Elidia,17 +session,3654,0,Internet Explorer 9,83,2017-10-06 +session,3654,1,Firefox 46,35,2017-04-29 +session,3654,2,Safari 27,97,2017-08-22 +session,3654,3,Internet Explorer 19,38,2018-06-17 +session,3654,4,Internet Explorer 1,84,2016-12-27 +user,3655,Alexandria,Santiago,80 +session,3655,0,Internet Explorer 30,21,2016-09-29 +session,3655,1,Safari 12,51,2019-01-15 +session,3655,2,Internet Explorer 43,115,2016-12-18 +session,3655,3,Safari 22,108,2018-01-14 +session,3655,4,Firefox 9,51,2016-07-09 +session,3655,5,Firefox 33,56,2017-09-05 +session,3655,6,Safari 12,46,2017-08-04 +session,3655,7,Chrome 25,42,2017-07-27 +session,3655,8,Firefox 31,106,2018-05-11 +session,3655,9,Firefox 50,109,2016-06-18 +user,3656,Ed,Maddie,69 +session,3656,0,Firefox 33,25,2016-11-14 +session,3656,1,Safari 31,41,2017-04-01 +session,3656,2,Firefox 1,8,2016-11-26 +session,3656,3,Safari 19,32,2017-02-02 +session,3656,4,Internet Explorer 9,73,2018-09-02 +session,3656,5,Firefox 5,48,2018-08-04 +user,3657,Arcelia,Idalia,90 +session,3657,0,Chrome 13,27,2017-10-21 +session,3657,1,Internet Explorer 49,69,2018-10-15 +session,3657,2,Internet Explorer 21,32,2016-07-22 +session,3657,3,Chrome 13,101,2017-09-29 +user,3658,Elsy,Ginette,59 +session,3658,0,Chrome 9,12,2016-12-27 +session,3658,1,Internet Explorer 1,15,2018-03-26 +session,3658,2,Internet Explorer 33,90,2016-12-30 +session,3658,3,Chrome 50,78,2018-03-21 +session,3658,4,Chrome 26,117,2016-09-15 +session,3658,5,Internet Explorer 32,92,2016-10-09 +session,3658,6,Firefox 38,82,2018-08-29 +user,3659,Joan,Avery,66 +session,3659,0,Firefox 18,54,2018-10-07 +session,3659,1,Chrome 19,84,2016-09-02 +session,3659,2,Internet Explorer 38,40,2018-07-02 +session,3659,3,Internet Explorer 5,42,2018-09-09 +session,3659,4,Internet Explorer 32,38,2017-05-06 +session,3659,5,Firefox 9,39,2017-12-25 +session,3659,6,Chrome 36,87,2018-09-25 +session,3659,7,Chrome 9,5,2017-02-04 +user,3660,Howard,Tresa,3 +session,3660,0,Chrome 24,43,2017-06-21 +session,3660,1,Safari 15,90,2017-06-28 +session,3660,2,Chrome 31,45,2017-06-18 +session,3660,3,Safari 31,53,2018-01-28 +session,3660,4,Safari 39,2,2019-01-01 +session,3660,5,Safari 8,99,2018-03-07 +session,3660,6,Chrome 32,81,2017-03-19 +user,3661,Milda,Faustina,66 +session,3661,0,Chrome 50,68,2017-12-31 +session,3661,1,Firefox 4,109,2017-03-27 +session,3661,2,Internet Explorer 32,113,2018-03-12 +session,3661,3,Safari 10,79,2017-10-05 +session,3661,4,Internet Explorer 19,96,2016-11-29 +session,3661,5,Firefox 34,109,2018-11-22 +session,3661,6,Safari 43,22,2016-09-24 +session,3661,7,Firefox 26,53,2017-01-18 +session,3661,8,Chrome 33,77,2017-12-29 +session,3661,9,Firefox 27,70,2018-01-24 +user,3662,Jonah,Elois,13 +session,3662,0,Firefox 48,80,2017-04-21 +user,3663,Hilde,Afton,2 +session,3663,0,Firefox 13,42,2017-06-03 +user,3664,Jessie,Selina,10 +session,3664,0,Internet Explorer 37,42,2017-08-10 +session,3664,1,Internet Explorer 19,34,2017-07-22 +session,3664,2,Firefox 30,89,2018-08-05 +session,3664,3,Chrome 28,13,2016-11-13 +session,3664,4,Internet Explorer 35,33,2016-08-26 +session,3664,5,Firefox 29,55,2017-08-17 +user,3665,Walter,Shelia,1 +session,3665,0,Internet Explorer 30,48,2017-07-25 +session,3665,1,Chrome 41,94,2016-10-30 +session,3665,2,Internet Explorer 33,82,2016-05-22 +session,3665,3,Internet Explorer 48,8,2017-04-07 +session,3665,4,Internet Explorer 21,12,2018-08-22 +session,3665,5,Chrome 28,113,2018-02-27 +user,3666,Alan,Elmo,47 +session,3666,0,Safari 20,46,2018-02-25 +session,3666,1,Safari 38,20,2016-10-25 +session,3666,2,Internet Explorer 45,58,2018-07-18 +user,3667,Juan,Earlean,1 +session,3667,0,Safari 50,36,2017-09-05 +user,3668,Kattie,Virgilio,85 +session,3668,0,Firefox 29,13,2016-08-24 +session,3668,1,Firefox 4,93,2017-06-09 +session,3668,2,Firefox 49,20,2018-11-12 +session,3668,3,Internet Explorer 42,97,2017-04-23 +session,3668,4,Internet Explorer 19,62,2016-07-11 +session,3668,5,Internet Explorer 20,109,2018-02-06 +session,3668,6,Firefox 32,2,2016-07-25 +user,3669,Modesta,Reyes,99 +session,3669,0,Chrome 22,67,2016-09-12 +session,3669,1,Safari 30,66,2016-09-02 +session,3669,2,Firefox 6,40,2016-06-12 +session,3669,3,Internet Explorer 40,91,2016-06-19 +session,3669,4,Internet Explorer 45,103,2016-08-01 +session,3669,5,Internet Explorer 26,1,2018-01-05 +user,3670,Kraig,Isiah,45 +session,3670,0,Safari 22,50,2016-09-18 +session,3670,1,Internet Explorer 47,99,2018-07-30 +session,3670,2,Chrome 31,49,2018-06-27 +session,3670,3,Firefox 28,17,2018-08-28 +session,3670,4,Firefox 10,86,2016-09-20 +user,3671,Janay,Jaime,65 +session,3671,0,Internet Explorer 43,7,2017-02-14 +session,3671,1,Internet Explorer 36,53,2017-01-17 +session,3671,2,Internet Explorer 5,35,2017-07-01 +session,3671,3,Firefox 4,28,2017-04-14 +session,3671,4,Firefox 45,117,2018-01-22 +session,3671,5,Safari 28,40,2018-10-02 +session,3671,6,Firefox 14,28,2016-06-20 +session,3671,7,Firefox 37,59,2018-10-05 +user,3672,Irina,Santos,16 +session,3672,0,Safari 9,108,2016-07-04 +session,3672,1,Firefox 44,74,2018-07-30 +user,3673,Phyliss,Meri,12 +session,3673,0,Firefox 32,89,2018-07-04 +user,3674,Rupert,Kim,65 +session,3674,0,Chrome 26,89,2016-12-18 +session,3674,1,Firefox 20,90,2016-12-12 +session,3674,2,Chrome 46,87,2016-07-02 +user,3675,Chang,Fumiko,78 +session,3675,0,Chrome 20,101,2019-01-26 +session,3675,1,Safari 11,97,2018-09-20 +session,3675,2,Safari 44,59,2018-05-21 +session,3675,3,Firefox 42,41,2018-04-04 +session,3675,4,Firefox 47,55,2017-06-28 +session,3675,5,Internet Explorer 48,82,2019-01-01 +session,3675,6,Firefox 17,1,2017-09-08 +session,3675,7,Chrome 40,86,2017-06-22 +session,3675,8,Safari 31,13,2018-10-27 +session,3675,9,Safari 15,103,2017-04-13 +user,3676,Blythe,Leonarda,9 +session,3676,0,Chrome 3,30,2017-08-23 +session,3676,1,Internet Explorer 42,36,2018-11-26 +session,3676,2,Internet Explorer 21,112,2018-04-18 +session,3676,3,Firefox 47,48,2018-10-06 +session,3676,4,Firefox 47,41,2018-01-02 +session,3676,5,Safari 18,95,2016-06-16 +session,3676,6,Firefox 24,38,2018-10-03 +user,3677,Toni,Marx,6 +session,3677,0,Chrome 12,118,2018-07-07 +session,3677,1,Safari 43,77,2018-12-12 +session,3677,2,Internet Explorer 22,53,2018-03-17 +session,3677,3,Safari 39,28,2018-05-21 +session,3677,4,Chrome 35,108,2018-09-10 +session,3677,5,Internet Explorer 16,87,2017-06-24 +session,3677,6,Internet Explorer 39,55,2018-09-06 +session,3677,7,Firefox 17,108,2018-08-28 +session,3677,8,Firefox 32,52,2018-03-19 +user,3678,Tania,Wilson,77 +session,3678,0,Safari 4,36,2018-08-08 +session,3678,1,Safari 40,70,2016-06-10 +session,3678,2,Internet Explorer 21,119,2018-11-03 +user,3679,Leroy,Magali,9 +session,3679,0,Safari 10,50,2017-01-19 +user,3680,Linda,Tandy,84 +session,3680,0,Chrome 12,117,2016-09-16 +session,3680,1,Firefox 25,104,2018-11-03 +session,3680,2,Safari 36,93,2017-03-25 +session,3680,3,Safari 30,20,2018-08-14 +user,3681,Lakenya,Denis,43 +session,3681,0,Safari 14,60,2018-02-10 +user,3682,Scott,Jeffrey,62 +session,3682,0,Internet Explorer 37,51,2018-04-22 +session,3682,1,Internet Explorer 5,82,2017-09-29 +session,3682,2,Firefox 45,108,2018-06-11 +session,3682,3,Firefox 34,81,2018-10-14 +session,3682,4,Chrome 5,110,2018-02-09 +session,3682,5,Firefox 25,38,2018-07-16 +session,3682,6,Chrome 50,94,2018-11-30 +session,3682,7,Safari 4,9,2016-10-20 +user,3683,Dee,Sheree,96 +session,3683,0,Chrome 36,6,2018-09-11 +session,3683,1,Chrome 17,77,2016-12-26 +session,3683,2,Chrome 1,50,2018-05-20 +session,3683,3,Internet Explorer 24,59,2016-11-23 +user,3684,Jerald,Darcy,65 +session,3684,0,Chrome 35,100,2018-06-24 +user,3685,Odell,Valentin,36 +session,3685,0,Safari 30,7,2017-11-23 +session,3685,1,Chrome 27,15,2016-07-31 +session,3685,2,Chrome 19,59,2017-02-27 +session,3685,3,Internet Explorer 45,46,2016-06-11 +session,3685,4,Chrome 16,61,2017-05-09 +session,3685,5,Internet Explorer 22,62,2018-10-03 +session,3685,6,Internet Explorer 37,106,2017-04-05 +session,3685,7,Chrome 23,106,2018-06-30 +user,3686,Babara,Shemika,4 +session,3686,0,Safari 46,103,2017-08-28 +user,3687,Ardell,Chrystal,39 +session,3687,0,Safari 29,33,2017-11-01 +session,3687,1,Chrome 22,80,2018-12-25 +session,3687,2,Internet Explorer 32,55,2018-11-23 +session,3687,3,Safari 31,92,2016-07-28 +session,3687,4,Firefox 32,72,2017-05-05 +session,3687,5,Chrome 3,64,2018-04-09 +user,3688,Ricardo,Shakita,21 +session,3688,0,Firefox 10,21,2016-07-03 +session,3688,1,Internet Explorer 10,26,2018-06-21 +session,3688,2,Safari 11,18,2018-01-09 +session,3688,3,Firefox 48,112,2016-06-11 +session,3688,4,Firefox 2,11,2016-10-03 +user,3689,Gwen,Demetrice,28 +session,3689,0,Chrome 35,22,2017-05-14 +session,3689,1,Safari 26,21,2016-09-10 +session,3689,2,Safari 8,41,2016-12-31 +session,3689,3,Safari 33,46,2017-04-22 +session,3689,4,Chrome 41,61,2017-01-05 +user,3690,Reginald,Latoya,83 +session,3690,0,Internet Explorer 35,103,2016-09-02 +session,3690,1,Internet Explorer 10,43,2017-02-01 +user,3691,Darlene,Georgianna,29 +session,3691,0,Internet Explorer 19,55,2017-06-02 +session,3691,1,Internet Explorer 31,107,2018-03-05 +session,3691,2,Internet Explorer 32,105,2018-07-08 +session,3691,3,Chrome 45,11,2016-10-31 +session,3691,4,Safari 14,107,2019-01-29 +session,3691,5,Safari 8,83,2017-12-18 +user,3692,Royce,Bree,47 +session,3692,0,Chrome 35,104,2017-07-31 +session,3692,1,Safari 15,34,2016-09-14 +user,3693,Joette,Rosetta,60 +session,3693,0,Firefox 42,25,2016-12-09 +session,3693,1,Chrome 18,80,2017-02-27 +session,3693,2,Firefox 4,108,2017-01-27 +session,3693,3,Safari 19,33,2018-07-18 +user,3694,Ashli,Mickey,41 +session,3694,0,Safari 40,119,2018-07-09 +user,3695,Sade,Cleotilde,51 +session,3695,0,Safari 4,44,2016-12-15 +session,3695,1,Internet Explorer 40,28,2018-07-16 +user,3696,Inocencia,Glennis,75 +session,3696,0,Safari 14,112,2018-02-10 +session,3696,1,Safari 40,106,2016-07-07 +session,3696,2,Internet Explorer 35,58,2018-08-12 +session,3696,3,Chrome 25,41,2017-05-26 +session,3696,4,Safari 42,52,2018-03-15 +session,3696,5,Internet Explorer 30,97,2018-12-12 +session,3696,6,Firefox 31,85,2017-02-22 +user,3697,Derrick,Branda,13 +session,3697,0,Safari 8,80,2017-07-10 +session,3697,1,Safari 2,44,2018-04-17 +session,3697,2,Firefox 31,111,2018-07-11 +session,3697,3,Firefox 18,73,2017-12-12 +session,3697,4,Safari 25,60,2017-03-12 +user,3698,Blake,Chanell,91 +session,3698,0,Chrome 5,5,2018-12-08 +session,3698,1,Internet Explorer 29,7,2017-03-14 +session,3698,2,Firefox 47,1,2016-06-30 +session,3698,3,Internet Explorer 32,32,2018-04-03 +session,3698,4,Firefox 44,113,2018-12-10 +session,3698,5,Internet Explorer 35,49,2018-07-19 +session,3698,6,Internet Explorer 5,107,2019-01-23 +session,3698,7,Safari 9,97,2019-01-16 +session,3698,8,Internet Explorer 25,44,2017-04-28 +user,3699,Latia,Camille,2 +session,3699,0,Firefox 12,90,2016-10-31 +user,3700,Misty,Alyce,56 +session,3700,0,Firefox 25,104,2016-05-31 +session,3700,1,Chrome 49,95,2018-02-28 +session,3700,2,Firefox 46,10,2018-04-18 +session,3700,3,Chrome 19,38,2016-11-10 +session,3700,4,Safari 21,3,2018-02-18 +user,3701,Jewel,Chi,2 +session,3701,0,Internet Explorer 14,55,2018-06-19 +session,3701,1,Firefox 40,59,2018-12-22 +session,3701,2,Internet Explorer 42,4,2016-08-22 +session,3701,3,Internet Explorer 48,109,2016-10-01 +session,3701,4,Chrome 10,27,2016-08-30 +session,3701,5,Internet Explorer 36,104,2017-11-28 +session,3701,6,Safari 14,38,2018-05-04 +session,3701,7,Firefox 7,48,2018-01-31 +session,3701,8,Safari 27,90,2017-09-06 +user,3702,Lesley,Shanell,49 +session,3702,0,Firefox 2,14,2017-02-01 +session,3702,1,Chrome 15,21,2019-01-04 +session,3702,2,Safari 43,58,2018-04-08 +user,3703,Billy,Jeanna,34 +session,3703,0,Internet Explorer 44,9,2018-04-01 +session,3703,1,Internet Explorer 33,90,2016-11-05 +session,3703,2,Safari 20,107,2017-06-26 +user,3704,Hermelinda,Devon,60 +session,3704,0,Safari 32,90,2017-12-02 +session,3704,1,Safari 29,114,2018-07-18 +session,3704,2,Firefox 34,25,2018-06-28 +session,3704,3,Internet Explorer 16,30,2018-02-25 +session,3704,4,Firefox 23,64,2017-11-04 +session,3704,5,Firefox 27,108,2017-05-24 +session,3704,6,Internet Explorer 39,95,2016-06-03 +session,3704,7,Safari 45,69,2018-08-11 +session,3704,8,Chrome 50,8,2017-05-30 +session,3704,9,Internet Explorer 31,61,2019-01-09 +user,3705,Thomas,Soledad,52 +session,3705,0,Chrome 11,22,2018-06-24 +session,3705,1,Firefox 10,18,2018-05-23 +session,3705,2,Firefox 45,103,2018-06-11 +session,3705,3,Internet Explorer 36,44,2019-01-29 +session,3705,4,Chrome 24,94,2016-10-12 +session,3705,5,Safari 18,10,2016-06-13 +session,3705,6,Internet Explorer 17,5,2016-05-28 +user,3706,Elva,Loria,91 +session,3706,0,Firefox 46,91,2018-02-28 +session,3706,1,Firefox 12,53,2016-06-17 +session,3706,2,Firefox 20,110,2018-04-01 +session,3706,3,Safari 42,43,2017-04-24 +session,3706,4,Internet Explorer 31,10,2016-06-29 +user,3707,Ashley,Jenniffer,77 +session,3707,0,Firefox 21,31,2019-01-28 +session,3707,1,Internet Explorer 48,23,2017-01-08 +session,3707,2,Firefox 25,9,2016-09-11 +user,3708,Ashley,Tomi,40 +session,3708,0,Chrome 31,92,2017-07-02 +session,3708,1,Safari 7,78,2017-10-18 +session,3708,2,Chrome 46,89,2017-09-11 +session,3708,3,Internet Explorer 22,112,2016-08-06 +session,3708,4,Safari 36,33,2017-05-03 +session,3708,5,Firefox 27,104,2018-08-22 +session,3708,6,Safari 45,49,2018-12-14 +session,3708,7,Firefox 16,95,2017-07-11 +session,3708,8,Internet Explorer 16,57,2016-10-07 +user,3709,Michale,Patsy,71 +session,3709,0,Chrome 8,49,2018-06-20 +user,3710,Holly,Bev,98 +session,3710,0,Safari 30,54,2017-12-28 +session,3710,1,Safari 17,20,2018-11-27 +session,3710,2,Safari 1,7,2016-09-14 +session,3710,3,Internet Explorer 23,46,2018-01-25 +session,3710,4,Internet Explorer 4,6,2016-12-05 +session,3710,5,Chrome 10,16,2017-07-31 +session,3710,6,Firefox 27,93,2018-05-03 +session,3710,7,Internet Explorer 44,49,2018-05-03 +session,3710,8,Chrome 15,100,2018-01-01 +session,3710,9,Firefox 21,35,2017-08-16 +user,3711,Mirian,Stephine,25 +session,3711,0,Firefox 25,114,2018-04-04 +session,3711,1,Safari 27,88,2017-11-22 +session,3711,2,Chrome 23,119,2017-03-08 +session,3711,3,Safari 29,68,2018-04-06 +session,3711,4,Safari 11,45,2018-10-16 +session,3711,5,Firefox 20,11,2017-11-16 +session,3711,6,Firefox 14,77,2017-05-17 +session,3711,7,Internet Explorer 3,99,2019-01-27 +session,3711,8,Safari 36,74,2018-04-26 +user,3712,Renaldo,Kandice,80 +session,3712,0,Chrome 46,116,2018-09-08 +session,3712,1,Chrome 6,35,2017-05-17 +session,3712,2,Internet Explorer 46,28,2018-08-28 +session,3712,3,Safari 11,84,2018-08-16 +session,3712,4,Chrome 40,26,2018-07-28 +user,3713,Asuncion,Lorie,79 +session,3713,0,Firefox 19,3,2018-07-16 +session,3713,1,Internet Explorer 34,38,2017-03-16 +session,3713,2,Chrome 18,75,2018-02-07 +session,3713,3,Firefox 16,101,2019-01-28 +session,3713,4,Safari 23,49,2018-01-23 +session,3713,5,Safari 31,101,2018-02-07 +session,3713,6,Firefox 35,14,2018-07-27 +session,3713,7,Chrome 6,118,2018-09-21 +session,3713,8,Firefox 48,17,2017-07-08 +user,3714,Gerard,Arianna,72 +session,3714,0,Internet Explorer 7,66,2016-07-12 +session,3714,1,Internet Explorer 48,36,2016-07-17 +session,3714,2,Safari 32,20,2018-02-09 +session,3714,3,Chrome 5,10,2017-01-19 +user,3715,Asa,Marva,62 +session,3715,0,Firefox 16,78,2016-08-29 +session,3715,1,Chrome 49,58,2016-10-09 +session,3715,2,Safari 3,73,2017-04-19 +session,3715,3,Firefox 50,119,2016-10-07 +session,3715,4,Safari 45,79,2016-08-10 +session,3715,5,Chrome 8,61,2016-05-26 +session,3715,6,Safari 17,42,2018-10-19 +user,3716,Art,Annette,85 +session,3716,0,Chrome 35,108,2018-08-16 +session,3716,1,Internet Explorer 49,27,2019-01-08 +session,3716,2,Safari 15,32,2017-02-07 +session,3716,3,Chrome 37,3,2017-07-31 +session,3716,4,Internet Explorer 42,87,2017-04-12 +session,3716,5,Chrome 43,24,2018-12-31 +session,3716,6,Firefox 27,113,2017-01-05 +session,3716,7,Safari 15,114,2018-02-20 +session,3716,8,Chrome 18,50,2017-01-11 +session,3716,9,Firefox 7,108,2018-04-26 +user,3717,Indira,Queenie,51 +session,3717,0,Safari 36,64,2016-09-19 +session,3717,1,Firefox 23,69,2018-03-20 +session,3717,2,Safari 35,1,2016-12-18 +session,3717,3,Safari 15,13,2018-01-27 +session,3717,4,Safari 25,4,2018-04-28 +user,3718,Jessie,Santa,37 +session,3718,0,Chrome 50,52,2016-09-02 +user,3719,Moses,Coral,76 +session,3719,0,Safari 3,105,2016-11-11 +session,3719,1,Internet Explorer 38,36,2018-04-03 +user,3720,Jimmie,Beatrice,27 +session,3720,0,Firefox 12,43,2018-02-16 +user,3721,Pam,Elois,35 +session,3721,0,Safari 15,118,2018-10-12 +session,3721,1,Chrome 45,57,2018-11-28 +session,3721,2,Firefox 41,21,2016-11-11 +session,3721,3,Chrome 48,113,2016-12-14 +session,3721,4,Safari 38,27,2017-06-06 +session,3721,5,Internet Explorer 1,84,2017-04-06 +session,3721,6,Safari 40,64,2016-12-05 +session,3721,7,Chrome 41,100,2017-11-03 +user,3722,Gaston,Belinda,72 +session,3722,0,Firefox 34,96,2018-01-16 +session,3722,1,Internet Explorer 50,41,2018-03-25 +session,3722,2,Chrome 22,71,2018-06-24 +session,3722,3,Safari 21,116,2017-12-15 +session,3722,4,Safari 25,55,2018-02-12 +session,3722,5,Firefox 43,108,2016-06-03 +session,3722,6,Firefox 36,111,2017-06-08 +session,3722,7,Internet Explorer 27,42,2016-05-21 +user,3723,Gussie,Rickie,14 +session,3723,0,Internet Explorer 2,53,2018-05-21 +session,3723,1,Firefox 49,82,2018-11-26 +session,3723,2,Internet Explorer 20,56,2017-02-24 +session,3723,3,Internet Explorer 45,101,2017-09-13 +session,3723,4,Firefox 15,71,2017-02-17 +session,3723,5,Chrome 21,85,2018-05-10 +user,3724,Kory,Henrietta,96 +session,3724,0,Internet Explorer 5,89,2016-12-17 +session,3724,1,Chrome 10,75,2017-12-14 +session,3724,2,Internet Explorer 15,69,2017-05-08 +session,3724,3,Firefox 2,4,2018-01-23 +session,3724,4,Safari 36,104,2017-05-24 +session,3724,5,Chrome 11,51,2017-11-16 +session,3724,6,Firefox 39,11,2018-07-08 +session,3724,7,Chrome 32,93,2018-02-17 +session,3724,8,Internet Explorer 33,65,2016-11-17 +session,3724,9,Internet Explorer 27,89,2016-08-02 +user,3725,Octavia,Eula,16 +session,3725,0,Safari 35,37,2017-08-21 +session,3725,1,Chrome 39,75,2019-01-27 +session,3725,2,Safari 9,87,2018-08-02 +session,3725,3,Internet Explorer 23,111,2018-12-28 +session,3725,4,Safari 26,49,2018-07-05 +session,3725,5,Internet Explorer 14,52,2017-02-24 +session,3725,6,Firefox 41,95,2016-12-08 +session,3725,7,Internet Explorer 14,73,2018-01-25 +session,3725,8,Chrome 44,77,2017-11-12 +session,3725,9,Firefox 41,3,2019-01-20 +user,3726,Luke,Omer,65 +session,3726,0,Safari 33,48,2018-06-14 +session,3726,1,Internet Explorer 5,31,2018-02-07 +session,3726,2,Firefox 28,95,2016-10-14 +user,3727,Bethany,Ahmad,68 +session,3727,0,Chrome 33,23,2018-12-13 +session,3727,1,Firefox 5,81,2019-01-07 +session,3727,2,Chrome 1,22,2016-09-21 +session,3727,3,Firefox 35,52,2017-06-10 +session,3727,4,Safari 20,28,2018-04-04 +session,3727,5,Firefox 43,81,2018-01-01 +session,3727,6,Safari 37,13,2018-11-13 +user,3728,Hosea,Deeann,72 +session,3728,0,Firefox 22,9,2018-03-01 +session,3728,1,Chrome 23,97,2018-06-18 +user,3729,Alita,Willy,57 +session,3729,0,Internet Explorer 19,103,2017-09-02 +user,3730,Cristopher,Selene,23 +session,3730,0,Safari 8,105,2017-05-14 +user,3731,Tenesha,Rex,32 +session,3731,0,Chrome 24,0,2018-02-28 +user,3732,Garland,Niki,36 +session,3732,0,Safari 2,36,2018-02-08 +session,3732,1,Internet Explorer 47,31,2017-10-11 +session,3732,2,Firefox 49,30,2018-06-15 +session,3732,3,Internet Explorer 28,9,2018-04-19 +session,3732,4,Safari 29,113,2016-10-18 +session,3732,5,Safari 43,26,2018-03-25 +session,3732,6,Internet Explorer 24,23,2017-02-08 +session,3732,7,Safari 9,45,2016-09-24 +user,3733,Anh,Augustine,23 +session,3733,0,Chrome 33,67,2018-07-02 +session,3733,1,Firefox 13,56,2016-07-31 +session,3733,2,Firefox 12,29,2017-09-17 +user,3734,Yvonne,Hiram,2 +session,3734,0,Chrome 39,19,2018-07-21 +session,3734,1,Chrome 50,72,2018-10-21 +session,3734,2,Internet Explorer 5,70,2018-07-27 +session,3734,3,Firefox 29,111,2018-09-02 +session,3734,4,Safari 4,2,2017-10-23 +user,3735,Kayce,Jerica,69 +session,3735,0,Internet Explorer 15,74,2018-06-08 +session,3735,1,Safari 17,111,2018-12-26 +session,3735,2,Safari 34,57,2017-02-25 +session,3735,3,Internet Explorer 14,48,2018-10-24 +session,3735,4,Safari 37,115,2017-09-14 +session,3735,5,Firefox 27,86,2018-02-19 +user,3736,Buena,Debbi,12 +session,3736,0,Internet Explorer 34,17,2017-02-20 +session,3736,1,Internet Explorer 27,36,2018-12-19 +session,3736,2,Safari 14,24,2018-04-06 +user,3737,Mckenzie,Jeraldine,61 +session,3737,0,Chrome 17,78,2016-12-12 +session,3737,1,Internet Explorer 45,88,2016-10-18 +session,3737,2,Internet Explorer 9,65,2017-12-17 +session,3737,3,Chrome 30,10,2017-06-08 +session,3737,4,Chrome 8,106,2018-07-23 +session,3737,5,Safari 19,57,2017-03-21 +session,3737,6,Internet Explorer 45,17,2016-10-07 +session,3737,7,Internet Explorer 21,18,2018-02-12 +user,3738,Noel,Hue,95 +session,3738,0,Firefox 29,103,2019-02-04 +session,3738,1,Firefox 26,66,2017-05-16 +session,3738,2,Safari 45,41,2018-04-20 +user,3739,Delia,Donette,74 +session,3739,0,Safari 33,72,2016-11-05 +session,3739,1,Internet Explorer 29,114,2017-02-07 +session,3739,2,Internet Explorer 39,35,2016-09-08 +session,3739,3,Safari 3,107,2017-09-14 +session,3739,4,Internet Explorer 33,81,2017-07-02 +session,3739,5,Internet Explorer 25,42,2017-08-22 +session,3739,6,Safari 14,13,2018-12-17 +session,3739,7,Safari 39,84,2017-06-20 +user,3740,Zetta,Robena,17 +session,3740,0,Safari 8,2,2016-12-24 +session,3740,1,Firefox 34,51,2017-02-04 +user,3741,Hoyt,Janet,78 +session,3741,0,Firefox 27,108,2018-05-01 +session,3741,1,Firefox 20,79,2018-01-25 +session,3741,2,Chrome 43,68,2018-06-24 +session,3741,3,Firefox 49,101,2017-05-30 +session,3741,4,Safari 43,39,2016-12-18 +session,3741,5,Chrome 26,51,2019-02-08 +session,3741,6,Chrome 35,95,2017-02-21 +user,3742,Wilford,Kathie,27 +session,3742,0,Internet Explorer 34,57,2018-01-20 +session,3742,1,Safari 10,117,2017-04-19 +session,3742,2,Internet Explorer 43,69,2018-07-06 +user,3743,Denyse,Addie,10 +session,3743,0,Internet Explorer 41,54,2018-02-11 +session,3743,1,Safari 31,83,2018-02-28 +session,3743,2,Chrome 28,113,2018-02-12 +session,3743,3,Safari 35,13,2018-04-07 +session,3743,4,Internet Explorer 45,53,2017-03-03 +session,3743,5,Safari 45,29,2017-05-08 +session,3743,6,Safari 22,87,2017-05-01 +session,3743,7,Firefox 24,82,2017-07-08 +session,3743,8,Firefox 49,56,2017-01-15 +user,3744,Bernard,Kiesha,77 +session,3744,0,Internet Explorer 17,34,2016-11-19 +session,3744,1,Safari 7,60,2016-09-08 +session,3744,2,Safari 41,98,2019-01-08 +session,3744,3,Internet Explorer 27,79,2017-04-18 +user,3745,Malik,Kathlyn,44 +session,3745,0,Firefox 16,111,2017-03-09 +user,3746,Belle,Qiana,85 +session,3746,0,Internet Explorer 36,74,2017-10-29 +session,3746,1,Chrome 29,63,2017-10-24 +session,3746,2,Internet Explorer 1,24,2017-11-30 +session,3746,3,Firefox 49,23,2018-08-19 +session,3746,4,Chrome 46,31,2018-01-11 +user,3747,Forrest,Ardelia,68 +session,3747,0,Firefox 27,102,2018-01-01 +session,3747,1,Safari 15,89,2018-04-22 +user,3748,Buddy,Vance,78 +session,3748,0,Firefox 48,102,2017-12-14 +session,3748,1,Safari 47,65,2016-09-09 +session,3748,2,Safari 37,59,2019-01-24 +user,3749,Linwood,Monroe,71 +session,3749,0,Internet Explorer 50,72,2016-09-12 +session,3749,1,Safari 18,111,2017-10-03 +session,3749,2,Safari 40,17,2019-02-05 +session,3749,3,Safari 46,40,2019-02-05 +session,3749,4,Firefox 39,29,2018-02-06 +session,3749,5,Firefox 10,58,2017-01-26 +session,3749,6,Firefox 38,95,2018-05-21 +session,3749,7,Internet Explorer 26,14,2017-10-03 +user,3750,Leslie,Li,83 +session,3750,0,Safari 41,34,2017-03-24 +session,3750,1,Safari 13,95,2016-06-09 +session,3750,2,Internet Explorer 11,10,2017-02-17 +session,3750,3,Firefox 2,83,2016-08-25 +session,3750,4,Safari 23,9,2016-07-29 +session,3750,5,Firefox 44,107,2018-02-25 +session,3750,6,Chrome 38,54,2017-01-01 +session,3750,7,Internet Explorer 45,0,2017-02-14 +session,3750,8,Chrome 47,108,2016-11-25 +session,3750,9,Firefox 38,51,2019-02-07 +user,3751,Ruth,Clara,83 +session,3751,0,Firefox 1,84,2017-10-25 +session,3751,1,Safari 47,119,2019-02-04 +session,3751,2,Chrome 11,22,2016-12-25 +session,3751,3,Internet Explorer 19,35,2018-09-08 +session,3751,4,Chrome 23,22,2017-11-15 +session,3751,5,Safari 18,48,2016-06-22 +session,3751,6,Chrome 35,119,2018-06-03 +user,3752,Jaclyn,Joni,41 +session,3752,0,Safari 8,11,2018-04-12 +session,3752,1,Firefox 25,14,2016-07-16 +session,3752,2,Safari 34,91,2017-12-28 +session,3752,3,Chrome 8,24,2017-07-19 +session,3752,4,Safari 19,27,2018-01-12 +session,3752,5,Safari 28,26,2018-07-03 +session,3752,6,Safari 42,84,2017-10-31 +session,3752,7,Internet Explorer 47,44,2018-03-17 +session,3752,8,Chrome 44,51,2017-08-01 +user,3753,Santos,Ciera,62 +session,3753,0,Chrome 44,1,2018-01-25 +session,3753,1,Chrome 33,26,2019-01-18 +session,3753,2,Firefox 20,101,2019-01-09 +session,3753,3,Internet Explorer 50,6,2017-06-02 +session,3753,4,Firefox 31,31,2018-06-22 +session,3753,5,Firefox 25,102,2017-01-10 +session,3753,6,Firefox 40,62,2016-09-19 +session,3753,7,Safari 31,31,2016-05-30 +session,3753,8,Internet Explorer 26,40,2017-03-25 +user,3754,Mohammad,Lennie,36 +session,3754,0,Internet Explorer 32,109,2016-11-18 +session,3754,1,Internet Explorer 35,60,2017-03-03 +session,3754,2,Internet Explorer 32,72,2019-01-14 +session,3754,3,Safari 49,105,2018-12-05 +session,3754,4,Chrome 19,51,2017-04-07 +session,3754,5,Safari 12,47,2017-07-23 +session,3754,6,Internet Explorer 31,35,2016-07-20 +user,3755,Dave,Shira,4 +session,3755,0,Chrome 14,81,2018-03-22 +session,3755,1,Safari 45,27,2017-10-02 +session,3755,2,Firefox 2,112,2017-06-25 +session,3755,3,Safari 16,56,2017-11-24 +session,3755,4,Safari 25,56,2018-11-11 +session,3755,5,Firefox 2,93,2016-10-26 +session,3755,6,Safari 23,32,2017-10-01 +session,3755,7,Internet Explorer 42,71,2018-05-30 +session,3755,8,Internet Explorer 7,115,2017-05-22 +user,3756,Denice,Trevor,21 +session,3756,0,Firefox 8,105,2017-12-16 +session,3756,1,Internet Explorer 47,18,2017-05-10 +session,3756,2,Safari 45,82,2017-04-18 +session,3756,3,Firefox 50,64,2017-05-18 +user,3757,Xavier,Hui,86 +session,3757,0,Firefox 37,27,2018-12-22 +session,3757,1,Safari 17,98,2017-12-06 +session,3757,2,Chrome 46,24,2018-08-07 +session,3757,3,Internet Explorer 8,26,2017-11-14 +user,3758,Conrad,Toya,64 +session,3758,0,Safari 21,90,2017-12-29 +session,3758,1,Safari 20,29,2016-08-09 +session,3758,2,Chrome 33,93,2019-02-03 +session,3758,3,Internet Explorer 49,59,2018-03-04 +user,3759,Aurore,Marshall,37 +session,3759,0,Safari 41,99,2016-07-07 +session,3759,1,Firefox 23,14,2017-11-06 +session,3759,2,Internet Explorer 1,70,2017-10-01 +session,3759,3,Internet Explorer 29,24,2018-05-03 +session,3759,4,Internet Explorer 44,42,2017-06-10 +user,3760,Tad,Margo,19 +session,3760,0,Internet Explorer 23,27,2017-01-19 +session,3760,1,Firefox 34,90,2016-06-27 +session,3760,2,Firefox 9,87,2017-07-04 +user,3761,Sonny,Hiedi,6 +session,3761,0,Firefox 48,116,2017-10-28 +session,3761,1,Chrome 25,8,2017-10-19 +user,3762,Caryn,Claude,97 +session,3762,0,Chrome 39,75,2018-02-22 +session,3762,1,Internet Explorer 18,61,2017-05-03 +session,3762,2,Chrome 1,108,2017-09-02 +session,3762,3,Firefox 5,86,2016-10-21 +session,3762,4,Internet Explorer 28,82,2016-10-31 +session,3762,5,Firefox 38,69,2018-11-06 +session,3762,6,Firefox 34,74,2018-07-15 +session,3762,7,Safari 9,5,2019-01-19 +session,3762,8,Safari 36,69,2018-04-24 +session,3762,9,Firefox 3,62,2016-09-26 +user,3763,Star,Lilli,20 +session,3763,0,Internet Explorer 43,115,2017-01-26 +session,3763,1,Firefox 31,81,2017-08-30 +session,3763,2,Chrome 46,45,2017-11-02 +session,3763,3,Internet Explorer 32,47,2018-12-13 +session,3763,4,Firefox 18,91,2018-07-15 +session,3763,5,Internet Explorer 17,97,2018-04-17 +session,3763,6,Safari 26,109,2018-03-01 +session,3763,7,Internet Explorer 29,36,2016-11-20 +session,3763,8,Firefox 4,35,2017-12-27 +user,3764,Lester,Emil,71 +session,3764,0,Firefox 45,86,2016-06-10 +user,3765,Toney,Osvaldo,89 +session,3765,0,Safari 26,96,2018-04-30 +session,3765,1,Chrome 21,72,2018-05-15 +user,3766,Desmond,Enrique,52 +session,3766,0,Firefox 33,104,2018-08-05 +session,3766,1,Internet Explorer 11,18,2018-06-04 +session,3766,2,Chrome 2,78,2016-06-25 +user,3767,Garfield,Harlan,93 +session,3767,0,Firefox 35,30,2016-06-05 +session,3767,1,Internet Explorer 18,26,2017-03-12 +session,3767,2,Safari 42,103,2018-08-16 +session,3767,3,Firefox 33,51,2018-02-06 +user,3768,Scottie,Kamala,89 +session,3768,0,Chrome 39,23,2017-12-03 +session,3768,1,Safari 18,119,2018-08-09 +session,3768,2,Firefox 35,107,2017-04-27 +session,3768,3,Safari 43,14,2017-10-07 +session,3768,4,Internet Explorer 22,81,2017-11-07 +session,3768,5,Firefox 50,70,2019-02-11 +session,3768,6,Firefox 35,113,2016-09-15 +session,3768,7,Chrome 45,56,2016-09-04 +user,3769,Tiny,Keith,97 +session,3769,0,Firefox 18,61,2018-07-29 +user,3770,Ranae,Katherina,23 +session,3770,0,Firefox 42,115,2017-03-11 +session,3770,1,Internet Explorer 37,65,2016-10-16 +session,3770,2,Firefox 1,32,2018-05-20 +session,3770,3,Chrome 36,96,2018-03-01 +session,3770,4,Firefox 37,67,2018-04-01 +session,3770,5,Firefox 20,119,2016-07-24 +session,3770,6,Chrome 13,91,2017-03-22 +session,3770,7,Safari 37,67,2016-09-18 +session,3770,8,Chrome 36,38,2018-07-09 +user,3771,Kermit,Rayford,94 +session,3771,0,Safari 37,8,2017-11-09 +session,3771,1,Firefox 16,103,2018-11-20 +session,3771,2,Chrome 41,90,2017-09-01 +session,3771,3,Chrome 47,40,2018-05-05 +session,3771,4,Firefox 16,73,2018-08-08 +session,3771,5,Firefox 40,118,2017-07-22 +session,3771,6,Chrome 18,37,2017-06-06 +session,3771,7,Internet Explorer 9,0,2016-07-16 +session,3771,8,Internet Explorer 28,51,2016-08-11 +user,3772,Curtis,Ernie,85 +session,3772,0,Firefox 33,114,2016-07-28 +session,3772,1,Safari 30,1,2016-08-26 +session,3772,2,Chrome 8,90,2017-03-06 +session,3772,3,Safari 13,62,2018-12-25 +session,3772,4,Safari 12,63,2017-08-29 +session,3772,5,Safari 21,90,2016-08-08 +session,3772,6,Chrome 34,117,2016-10-23 +session,3772,7,Internet Explorer 18,77,2017-09-07 +session,3772,8,Safari 48,85,2018-03-21 +session,3772,9,Chrome 32,54,2017-12-05 +user,3773,Madalyn,Shawanda,17 +session,3773,0,Internet Explorer 4,99,2016-06-14 +session,3773,1,Chrome 20,92,2018-09-03 +session,3773,2,Chrome 47,114,2017-11-15 +user,3774,Cherrie,Mercy,33 +session,3774,0,Safari 7,55,2017-01-23 +session,3774,1,Safari 39,83,2018-12-24 +session,3774,2,Chrome 5,59,2017-02-07 +session,3774,3,Safari 34,43,2019-01-20 +session,3774,4,Chrome 20,105,2016-05-24 +session,3774,5,Firefox 23,58,2017-03-27 +session,3774,6,Internet Explorer 17,11,2018-12-26 +session,3774,7,Safari 36,43,2018-11-01 +session,3774,8,Internet Explorer 49,40,2017-06-22 +user,3775,Kisha,Eddie,71 +session,3775,0,Chrome 9,86,2016-11-21 +session,3775,1,Chrome 29,63,2016-12-18 +session,3775,2,Internet Explorer 37,39,2017-08-07 +session,3775,3,Safari 7,99,2017-11-08 +session,3775,4,Chrome 32,116,2017-12-31 +session,3775,5,Chrome 32,26,2018-07-26 +session,3775,6,Internet Explorer 13,73,2018-04-22 +session,3775,7,Safari 5,14,2018-11-22 +session,3775,8,Internet Explorer 37,9,2017-02-20 +user,3776,Hong,Mattie,42 +session,3776,0,Internet Explorer 3,5,2018-12-07 +session,3776,1,Chrome 6,31,2016-11-26 +session,3776,2,Internet Explorer 6,34,2018-01-28 +session,3776,3,Internet Explorer 21,89,2017-03-01 +user,3777,Dillon,Elanor,93 +session,3777,0,Internet Explorer 37,61,2018-05-01 +session,3777,1,Safari 19,75,2019-01-16 +session,3777,2,Chrome 3,12,2017-07-16 +session,3777,3,Safari 8,112,2016-08-29 +session,3777,4,Internet Explorer 14,92,2017-04-11 +session,3777,5,Internet Explorer 6,105,2017-06-04 +session,3777,6,Safari 18,118,2016-08-07 +session,3777,7,Firefox 36,87,2018-12-28 +session,3777,8,Chrome 11,50,2017-11-09 +user,3778,Geraldo,Madelyn,2 +session,3778,0,Internet Explorer 47,42,2018-09-11 +session,3778,1,Firefox 17,48,2016-12-30 +session,3778,2,Firefox 47,46,2018-01-25 +session,3778,3,Safari 26,24,2018-12-30 +session,3778,4,Firefox 25,29,2017-01-30 +session,3778,5,Internet Explorer 36,91,2018-05-07 +session,3778,6,Internet Explorer 30,17,2018-05-06 +session,3778,7,Safari 1,66,2018-01-09 +session,3778,8,Internet Explorer 32,64,2018-11-22 +session,3778,9,Chrome 42,92,2016-06-25 +user,3779,Judi,Marna,63 +session,3779,0,Firefox 19,90,2016-12-01 +session,3779,1,Safari 1,66,2018-08-08 +session,3779,2,Internet Explorer 48,11,2018-07-17 +session,3779,3,Firefox 23,41,2017-12-22 +session,3779,4,Safari 40,70,2017-11-05 +session,3779,5,Chrome 2,118,2017-03-21 +session,3779,6,Safari 2,14,2018-12-01 +session,3779,7,Firefox 10,58,2019-02-06 +session,3779,8,Internet Explorer 4,40,2016-10-12 +session,3779,9,Internet Explorer 18,69,2017-03-29 +user,3780,Goldie,Alethia,26 +session,3780,0,Safari 11,100,2016-10-17 +session,3780,1,Chrome 15,95,2016-08-22 +session,3780,2,Chrome 8,54,2017-09-09 +session,3780,3,Internet Explorer 37,80,2017-06-03 +session,3780,4,Internet Explorer 2,46,2019-01-11 +session,3780,5,Safari 25,102,2018-10-11 +session,3780,6,Internet Explorer 27,30,2016-10-31 +user,3781,Alvera,Leandra,45 +session,3781,0,Safari 22,5,2016-11-03 +session,3781,1,Safari 34,75,2016-06-11 +session,3781,2,Firefox 11,18,2018-06-17 +session,3781,3,Chrome 33,35,2018-10-27 +session,3781,4,Chrome 39,20,2017-05-31 +session,3781,5,Firefox 39,70,2016-07-15 +session,3781,6,Chrome 40,115,2017-12-14 +session,3781,7,Safari 41,42,2019-01-24 +session,3781,8,Firefox 30,70,2016-09-19 +session,3781,9,Internet Explorer 1,25,2017-05-10 +user,3782,Karren,Carletta,52 +session,3782,0,Chrome 4,82,2018-06-01 +session,3782,1,Firefox 50,34,2016-12-11 +session,3782,2,Internet Explorer 7,68,2016-07-26 +user,3783,Dayna,Hank,78 +session,3783,0,Firefox 13,113,2017-05-12 +session,3783,1,Firefox 24,112,2017-01-06 +session,3783,2,Internet Explorer 7,20,2019-01-08 +session,3783,3,Internet Explorer 22,12,2017-01-24 +session,3783,4,Firefox 48,81,2017-07-03 +session,3783,5,Chrome 24,107,2017-03-07 +session,3783,6,Internet Explorer 23,104,2017-10-05 +session,3783,7,Chrome 34,119,2018-12-30 +session,3783,8,Chrome 50,72,2018-04-30 +user,3784,Curtis,Lorene,25 +session,3784,0,Chrome 50,54,2017-04-05 +session,3784,1,Firefox 8,43,2016-08-28 +session,3784,2,Firefox 1,96,2018-07-19 +user,3785,Ashly,Maynard,40 +session,3785,0,Safari 11,17,2017-12-27 +session,3785,1,Safari 33,4,2017-10-28 +session,3785,2,Safari 12,12,2018-01-08 +session,3785,3,Internet Explorer 49,95,2018-01-03 +session,3785,4,Chrome 24,19,2018-07-30 +session,3785,5,Internet Explorer 39,23,2017-06-07 +session,3785,6,Internet Explorer 43,45,2018-07-27 +session,3785,7,Safari 15,109,2018-04-03 +user,3786,Gregg,Margarett,74 +session,3786,0,Firefox 47,41,2018-11-12 +session,3786,1,Internet Explorer 14,32,2017-06-30 +session,3786,2,Safari 44,15,2017-06-05 +session,3786,3,Internet Explorer 12,74,2016-09-09 +session,3786,4,Safari 27,97,2018-05-08 +session,3786,5,Firefox 36,38,2016-09-04 +session,3786,6,Safari 49,78,2018-06-28 +session,3786,7,Internet Explorer 25,114,2018-01-31 +session,3786,8,Internet Explorer 14,45,2017-02-09 +session,3786,9,Firefox 5,55,2016-12-07 +user,3787,Denver,Jessie,32 +session,3787,0,Safari 8,93,2018-06-02 +session,3787,1,Firefox 28,57,2016-07-18 +session,3787,2,Internet Explorer 50,61,2016-12-17 +session,3787,3,Chrome 4,90,2018-05-07 +session,3787,4,Internet Explorer 7,57,2018-01-06 +session,3787,5,Chrome 35,101,2017-03-22 +session,3787,6,Safari 27,109,2019-02-05 +session,3787,7,Chrome 30,68,2017-09-13 +session,3787,8,Firefox 22,57,2017-11-18 +session,3787,9,Chrome 1,69,2016-12-12 +user,3788,Rosario,Filiberto,33 +session,3788,0,Internet Explorer 11,114,2017-01-02 +session,3788,1,Internet Explorer 27,88,2018-02-12 +session,3788,2,Internet Explorer 31,3,2018-09-21 +session,3788,3,Internet Explorer 35,60,2018-06-23 +session,3788,4,Safari 3,34,2018-01-15 +session,3788,5,Safari 12,112,2016-06-15 +session,3788,6,Internet Explorer 36,52,2018-06-19 +session,3788,7,Internet Explorer 22,37,2018-06-18 +session,3788,8,Safari 28,60,2016-11-12 +user,3789,Manuel,Emelina,29 +session,3789,0,Chrome 20,44,2018-12-08 +session,3789,1,Chrome 45,32,2016-12-27 +user,3790,Nelly,Georgianne,53 +session,3790,0,Safari 1,14,2018-05-25 +session,3790,1,Internet Explorer 16,16,2016-10-30 +session,3790,2,Safari 19,77,2017-04-23 +user,3791,Lowell,Javier,28 +session,3791,0,Safari 23,32,2018-09-01 +session,3791,1,Internet Explorer 38,28,2018-05-21 +session,3791,2,Safari 3,14,2016-08-12 +session,3791,3,Chrome 22,62,2019-01-31 +session,3791,4,Chrome 8,86,2017-07-04 +session,3791,5,Chrome 14,51,2018-05-08 +session,3791,6,Firefox 23,14,2018-06-21 +user,3792,Demarcus,Macie,92 +session,3792,0,Safari 38,54,2017-04-22 +session,3792,1,Internet Explorer 14,105,2018-05-11 +session,3792,2,Safari 50,82,2017-11-11 +session,3792,3,Safari 18,89,2018-11-16 +session,3792,4,Chrome 25,38,2018-12-26 +session,3792,5,Internet Explorer 45,2,2018-06-17 +session,3792,6,Chrome 46,104,2017-04-25 +session,3792,7,Internet Explorer 17,89,2016-08-07 +session,3792,8,Chrome 31,62,2017-08-17 +user,3793,Brant,Magaly,66 +session,3793,0,Chrome 7,2,2016-06-01 +session,3793,1,Chrome 24,62,2017-05-11 +session,3793,2,Internet Explorer 14,79,2017-03-14 +session,3793,3,Firefox 28,10,2017-04-18 +session,3793,4,Internet Explorer 33,92,2018-08-18 +session,3793,5,Chrome 29,100,2016-06-30 +session,3793,6,Firefox 33,102,2017-07-18 +user,3794,Jeremiah,Almeta,89 +session,3794,0,Firefox 48,71,2017-05-09 +session,3794,1,Chrome 36,19,2017-07-11 +session,3794,2,Chrome 46,64,2017-08-04 +session,3794,3,Safari 28,35,2017-10-25 +session,3794,4,Firefox 28,35,2018-12-17 +session,3794,5,Internet Explorer 33,71,2017-06-13 +session,3794,6,Safari 44,119,2018-03-16 +session,3794,7,Firefox 1,103,2018-08-21 +session,3794,8,Safari 50,97,2016-06-07 +user,3795,Isaiah,Sung,19 +session,3795,0,Internet Explorer 25,16,2016-09-23 +session,3795,1,Firefox 22,59,2018-11-26 +session,3795,2,Firefox 26,114,2018-02-21 +user,3796,Dee,Leona,25 +session,3796,0,Safari 26,58,2018-09-03 +session,3796,1,Safari 17,86,2017-01-03 +session,3796,2,Safari 43,114,2018-01-05 +session,3796,3,Firefox 17,29,2016-10-09 +session,3796,4,Safari 14,109,2018-07-03 +user,3797,Cory,Ardath,39 +session,3797,0,Internet Explorer 36,45,2018-11-08 +session,3797,1,Chrome 6,25,2017-12-06 +session,3797,2,Firefox 48,54,2018-01-15 +session,3797,3,Firefox 35,76,2018-02-04 +session,3797,4,Firefox 33,46,2017-09-22 +session,3797,5,Internet Explorer 11,71,2018-02-14 +session,3797,6,Chrome 3,82,2018-04-22 +session,3797,7,Internet Explorer 36,53,2016-09-23 +session,3797,8,Firefox 24,1,2018-04-09 +user,3798,Chantel,Collen,7 +session,3798,0,Internet Explorer 26,67,2017-06-07 +session,3798,1,Internet Explorer 42,41,2016-10-02 +session,3798,2,Chrome 4,41,2018-10-27 +session,3798,3,Internet Explorer 10,6,2017-06-07 +session,3798,4,Firefox 36,70,2017-05-16 +user,3799,Loris,Asuncion,10 +session,3799,0,Internet Explorer 4,82,2018-03-27 +user,3800,Harrison,Robin,94 +session,3800,0,Safari 45,97,2018-03-27 +user,3801,Toshiko,Sol,97 +session,3801,0,Safari 26,112,2016-10-28 +session,3801,1,Chrome 21,26,2017-07-05 +session,3801,2,Chrome 38,101,2016-12-20 +user,3802,Ebonie,Emilia,51 +session,3802,0,Safari 4,58,2018-06-29 +session,3802,1,Chrome 40,7,2019-01-25 +session,3802,2,Internet Explorer 39,71,2018-10-27 +session,3802,3,Firefox 11,12,2017-08-15 +session,3802,4,Safari 6,11,2018-05-19 +session,3802,5,Internet Explorer 47,16,2017-10-16 +session,3802,6,Safari 8,22,2018-06-08 +session,3802,7,Internet Explorer 5,51,2018-04-23 +session,3802,8,Internet Explorer 7,51,2019-01-10 +session,3802,9,Chrome 45,101,2016-12-24 +user,3803,Alexis,Colene,10 +session,3803,0,Internet Explorer 14,104,2016-08-04 +session,3803,1,Firefox 46,52,2017-05-31 +session,3803,2,Chrome 47,8,2016-09-19 +session,3803,3,Internet Explorer 19,69,2018-05-26 +session,3803,4,Internet Explorer 32,98,2018-07-19 +session,3803,5,Chrome 24,32,2017-05-16 +session,3803,6,Chrome 29,78,2016-09-18 +user,3804,Hiroko,Sharan,75 +session,3804,0,Chrome 11,67,2018-05-17 +user,3805,Adelle,Penelope,28 +session,3805,0,Firefox 16,75,2017-02-06 +session,3805,1,Internet Explorer 31,15,2016-09-10 +user,3806,Rosetta,Jeanelle,80 +session,3806,0,Safari 38,14,2016-10-06 +session,3806,1,Chrome 10,30,2017-07-16 +user,3807,Mariano,Alita,11 +session,3807,0,Chrome 3,106,2017-01-13 +session,3807,1,Safari 33,15,2017-01-01 +session,3807,2,Chrome 8,27,2017-10-11 +session,3807,3,Chrome 38,100,2017-10-16 +session,3807,4,Firefox 27,0,2018-05-23 +session,3807,5,Safari 11,110,2017-12-17 +session,3807,6,Safari 37,97,2017-05-14 +session,3807,7,Chrome 18,97,2018-06-05 +session,3807,8,Firefox 32,27,2016-11-06 +user,3808,Thelma,Luvenia,70 +session,3808,0,Firefox 41,32,2016-07-19 +session,3808,1,Internet Explorer 44,71,2016-06-18 +session,3808,2,Internet Explorer 40,82,2018-06-01 +session,3808,3,Internet Explorer 15,42,2019-01-08 +session,3808,4,Internet Explorer 46,22,2016-06-02 +session,3808,5,Safari 22,80,2018-11-13 +session,3808,6,Internet Explorer 4,102,2018-01-10 +session,3808,7,Internet Explorer 9,66,2018-02-20 +session,3808,8,Internet Explorer 16,46,2017-06-28 +user,3809,Shin,Chau,5 +session,3809,0,Internet Explorer 8,21,2018-03-20 +user,3810,Lynn,Rudy,43 +session,3810,0,Firefox 30,29,2019-01-29 +user,3811,Elias,Mellisa,22 +session,3811,0,Chrome 39,50,2018-05-03 +session,3811,1,Firefox 14,13,2016-07-29 +session,3811,2,Chrome 31,1,2018-03-16 +session,3811,3,Safari 22,15,2016-07-12 +session,3811,4,Chrome 2,71,2018-03-30 +session,3811,5,Internet Explorer 48,114,2017-08-24 +session,3811,6,Firefox 23,101,2018-07-22 +session,3811,7,Internet Explorer 33,41,2018-10-13 +session,3811,8,Firefox 30,31,2016-05-24 +session,3811,9,Firefox 32,87,2019-01-16 +user,3812,Tad,Missy,97 +session,3812,0,Internet Explorer 26,93,2016-06-27 +session,3812,1,Safari 28,102,2018-07-01 +session,3812,2,Chrome 16,81,2018-01-25 +session,3812,3,Safari 31,95,2018-01-09 +session,3812,4,Safari 48,16,2018-08-29 +session,3812,5,Internet Explorer 25,20,2018-09-30 +session,3812,6,Safari 38,109,2018-03-13 +session,3812,7,Safari 23,92,2016-07-26 +session,3812,8,Firefox 35,31,2018-11-03 +user,3813,Israel,Jeane,28 +session,3813,0,Chrome 32,41,2018-05-14 +session,3813,1,Internet Explorer 8,11,2017-01-18 +session,3813,2,Chrome 35,11,2017-05-30 +session,3813,3,Safari 7,46,2017-10-03 +session,3813,4,Safari 19,96,2017-02-21 +session,3813,5,Chrome 4,75,2016-08-10 +user,3814,Noble,Jayme,34 +session,3814,0,Safari 36,2,2018-09-27 +user,3815,Danilo,Sammie,38 +session,3815,0,Internet Explorer 4,63,2016-09-27 +session,3815,1,Firefox 11,53,2018-07-27 +session,3815,2,Chrome 30,67,2017-03-27 +session,3815,3,Firefox 22,59,2016-07-23 +user,3816,Dominique,Karrie,59 +session,3816,0,Safari 31,63,2016-08-05 +user,3817,Faviola,Elvina,10 +session,3817,0,Chrome 29,83,2017-04-26 +session,3817,1,Internet Explorer 34,44,2018-01-18 +session,3817,2,Safari 8,119,2018-03-26 +session,3817,3,Safari 4,93,2018-03-13 +session,3817,4,Safari 16,25,2018-03-17 +session,3817,5,Internet Explorer 29,37,2018-04-25 +user,3818,Oliver,Theresa,28 +session,3818,0,Safari 28,26,2016-08-13 +session,3818,1,Safari 17,99,2016-06-24 +user,3819,Kattie,Florine,22 +session,3819,0,Chrome 4,94,2016-12-24 +session,3819,1,Internet Explorer 16,5,2018-03-23 +session,3819,2,Internet Explorer 19,37,2016-12-13 +session,3819,3,Chrome 24,100,2017-05-15 +user,3820,Edyth,Donte,87 +session,3820,0,Safari 29,35,2016-12-17 +user,3821,Shane,Gus,36 +session,3821,0,Safari 24,17,2017-11-05 +session,3821,1,Chrome 20,46,2017-06-03 +session,3821,2,Internet Explorer 27,55,2016-11-11 +session,3821,3,Chrome 3,105,2018-05-22 +session,3821,4,Internet Explorer 14,24,2016-10-03 +session,3821,5,Internet Explorer 35,39,2018-06-06 +session,3821,6,Safari 4,83,2018-04-16 +user,3822,Lorenzo,Elmer,79 +session,3822,0,Internet Explorer 40,89,2018-10-11 +session,3822,1,Internet Explorer 33,24,2018-07-29 +session,3822,2,Chrome 15,84,2016-11-14 +session,3822,3,Firefox 46,68,2019-02-01 +user,3823,Ilda,Norbert,62 +session,3823,0,Internet Explorer 20,69,2018-07-27 +session,3823,1,Safari 13,91,2017-04-13 +session,3823,2,Internet Explorer 3,51,2018-04-06 +session,3823,3,Firefox 19,116,2017-12-31 +session,3823,4,Internet Explorer 48,68,2018-10-09 +session,3823,5,Safari 20,36,2018-09-02 +session,3823,6,Firefox 49,15,2018-07-21 +session,3823,7,Chrome 36,81,2017-12-03 +session,3823,8,Internet Explorer 4,50,2017-10-25 +user,3824,Dean,Elenore,7 +session,3824,0,Chrome 14,21,2016-09-15 +session,3824,1,Chrome 37,31,2016-07-10 +session,3824,2,Safari 19,116,2017-12-09 +session,3824,3,Chrome 33,82,2018-11-16 +session,3824,4,Chrome 48,111,2017-04-03 +session,3824,5,Internet Explorer 19,118,2017-04-12 +session,3824,6,Chrome 29,39,2019-02-08 +session,3824,7,Internet Explorer 31,117,2018-04-12 +user,3825,Tommy,Palmer,13 +session,3825,0,Safari 6,26,2018-09-11 +session,3825,1,Safari 37,119,2018-09-13 +session,3825,2,Internet Explorer 41,13,2018-10-25 +session,3825,3,Chrome 33,111,2017-06-30 +session,3825,4,Firefox 2,59,2018-08-29 +user,3826,Kenton,Pearlie,45 +session,3826,0,Firefox 49,17,2018-11-24 +session,3826,1,Chrome 2,17,2017-06-28 +session,3826,2,Safari 10,55,2018-10-29 +session,3826,3,Firefox 3,27,2017-02-11 +session,3826,4,Internet Explorer 27,20,2018-03-02 +user,3827,Kathrine,Vennie,45 +session,3827,0,Internet Explorer 43,39,2016-07-18 +session,3827,1,Chrome 15,7,2016-07-18 +session,3827,2,Firefox 17,19,2018-09-26 +session,3827,3,Firefox 6,112,2017-01-03 +session,3827,4,Internet Explorer 35,109,2018-08-07 +session,3827,5,Safari 34,0,2016-10-05 +session,3827,6,Safari 7,99,2017-03-28 +user,3828,Santo,Mona,10 +session,3828,0,Safari 46,10,2017-05-29 +session,3828,1,Internet Explorer 38,29,2018-07-16 +session,3828,2,Firefox 15,78,2018-07-25 +session,3828,3,Chrome 40,23,2016-09-11 +session,3828,4,Safari 37,48,2018-02-10 +session,3828,5,Safari 8,77,2019-01-02 +session,3828,6,Internet Explorer 26,68,2017-05-28 +session,3828,7,Chrome 44,78,2018-11-17 +session,3828,8,Firefox 6,18,2018-06-18 +user,3829,Madelene,Manie,35 +session,3829,0,Internet Explorer 34,48,2018-05-02 +session,3829,1,Internet Explorer 44,14,2018-08-15 +session,3829,2,Internet Explorer 7,50,2017-10-18 +session,3829,3,Safari 10,115,2017-02-16 +session,3829,4,Safari 14,43,2017-08-02 +session,3829,5,Firefox 43,42,2018-08-27 +session,3829,6,Internet Explorer 4,88,2016-08-30 +session,3829,7,Safari 22,22,2018-03-06 +session,3829,8,Internet Explorer 15,41,2017-11-07 +session,3829,9,Safari 28,38,2017-03-11 +user,3830,Jacob,Krystle,91 +session,3830,0,Internet Explorer 35,97,2017-02-15 +session,3830,1,Safari 21,96,2018-11-01 +session,3830,2,Safari 31,5,2016-07-01 +session,3830,3,Internet Explorer 42,115,2017-04-26 +session,3830,4,Internet Explorer 20,58,2017-02-15 +session,3830,5,Chrome 5,3,2018-02-03 +session,3830,6,Internet Explorer 15,35,2017-10-27 +user,3831,Marget,Gena,73 +session,3831,0,Safari 10,97,2016-11-25 +session,3831,1,Firefox 22,42,2019-01-29 +session,3831,2,Firefox 2,101,2016-08-29 +session,3831,3,Internet Explorer 41,35,2017-08-20 +user,3832,Ezequiel,Raleigh,67 +session,3832,0,Internet Explorer 49,18,2018-04-01 +session,3832,1,Internet Explorer 36,72,2017-02-23 +session,3832,2,Internet Explorer 16,0,2017-09-06 +user,3833,Jamaal,Harmony,16 +session,3833,0,Safari 44,42,2018-01-29 +user,3834,Classie,Silvia,98 +session,3834,0,Internet Explorer 30,49,2017-01-20 +session,3834,1,Safari 27,50,2017-07-07 +session,3834,2,Internet Explorer 2,96,2018-04-20 +session,3834,3,Internet Explorer 12,26,2017-05-27 +session,3834,4,Internet Explorer 23,96,2017-12-18 +session,3834,5,Firefox 44,15,2016-06-06 +session,3834,6,Safari 29,39,2017-04-11 +user,3835,Merry,Manuel,62 +session,3835,0,Internet Explorer 50,73,2017-06-30 +user,3836,Evelin,Hilaria,64 +session,3836,0,Firefox 35,55,2017-04-08 +session,3836,1,Firefox 16,3,2017-03-20 +session,3836,2,Chrome 14,52,2018-03-21 +user,3837,Cira,Fae,94 +session,3837,0,Internet Explorer 42,105,2017-09-22 +session,3837,1,Chrome 36,64,2016-10-27 +session,3837,2,Firefox 5,2,2017-08-20 +session,3837,3,Firefox 23,47,2017-03-31 +session,3837,4,Chrome 47,5,2017-11-24 +session,3837,5,Safari 21,11,2017-10-01 +session,3837,6,Firefox 46,29,2018-11-08 +user,3838,Emmitt,Lemuel,21 +session,3838,0,Chrome 50,56,2018-12-15 +session,3838,1,Firefox 1,65,2018-06-23 +session,3838,2,Safari 21,74,2018-09-21 +user,3839,Arianne,Rick,92 +session,3839,0,Internet Explorer 37,79,2018-07-30 +session,3839,1,Internet Explorer 32,70,2018-07-04 +session,3839,2,Chrome 28,99,2019-01-20 +session,3839,3,Firefox 49,22,2016-07-04 +session,3839,4,Chrome 31,41,2017-11-20 +session,3839,5,Safari 14,109,2017-10-03 +user,3840,Marry,Shiloh,75 +session,3840,0,Firefox 45,11,2017-06-04 +session,3840,1,Safari 48,103,2017-04-02 +session,3840,2,Internet Explorer 16,97,2018-03-26 +session,3840,3,Internet Explorer 6,11,2018-08-30 +session,3840,4,Chrome 33,40,2016-11-29 +user,3841,Leonarda,Gay,70 +session,3841,0,Internet Explorer 44,81,2017-08-24 +session,3841,1,Firefox 17,98,2018-12-22 +session,3841,2,Safari 8,84,2016-12-26 +session,3841,3,Safari 35,55,2016-09-19 +session,3841,4,Safari 46,113,2016-12-05 +session,3841,5,Chrome 33,107,2016-06-25 +user,3842,Isaac,Obdulia,69 +session,3842,0,Safari 49,10,2017-06-06 +session,3842,1,Safari 13,21,2019-01-22 +session,3842,2,Safari 10,84,2016-07-18 +session,3842,3,Firefox 15,105,2018-11-20 +session,3842,4,Chrome 13,89,2017-05-24 +session,3842,5,Safari 18,60,2018-04-17 +session,3842,6,Internet Explorer 36,33,2016-09-11 +session,3842,7,Internet Explorer 17,19,2018-03-20 +session,3842,8,Firefox 15,119,2017-05-28 +session,3842,9,Chrome 23,101,2017-10-23 +user,3843,Marty,Terra,35 +session,3843,0,Safari 14,84,2016-10-27 +session,3843,1,Chrome 21,68,2019-01-12 +session,3843,2,Safari 43,38,2017-07-19 +user,3844,Herschel,Kina,82 +session,3844,0,Internet Explorer 3,21,2017-06-24 +session,3844,1,Safari 3,112,2016-11-29 +session,3844,2,Safari 22,78,2018-10-28 +session,3844,3,Firefox 18,100,2017-09-11 +session,3844,4,Internet Explorer 43,21,2018-05-31 +session,3844,5,Internet Explorer 28,83,2018-06-23 +session,3844,6,Safari 30,24,2017-03-08 +session,3844,7,Chrome 42,10,2017-08-25 +user,3845,Bruce,Cira,5 +session,3845,0,Internet Explorer 18,67,2017-06-28 +session,3845,1,Internet Explorer 21,92,2018-04-22 +session,3845,2,Chrome 26,4,2017-03-26 +session,3845,3,Safari 20,96,2017-11-01 +session,3845,4,Firefox 2,17,2019-02-12 +session,3845,5,Firefox 17,13,2018-01-21 +session,3845,6,Safari 8,86,2016-06-21 +session,3845,7,Safari 7,64,2018-12-28 +user,3846,Val,Valorie,43 +session,3846,0,Internet Explorer 49,46,2018-10-20 +user,3847,Kenisha,Marylyn,90 +session,3847,0,Chrome 3,46,2017-09-29 +session,3847,1,Safari 5,41,2018-05-14 +session,3847,2,Firefox 7,88,2017-06-22 +session,3847,3,Firefox 34,28,2016-07-25 +user,3848,Maribel,Kiley,12 +session,3848,0,Internet Explorer 32,40,2017-03-12 +session,3848,1,Chrome 4,28,2016-09-04 +session,3848,2,Firefox 28,79,2018-11-14 +session,3848,3,Firefox 1,55,2018-07-14 +session,3848,4,Internet Explorer 1,110,2018-01-12 +session,3848,5,Safari 29,76,2016-09-12 +session,3848,6,Internet Explorer 33,86,2016-11-24 +session,3848,7,Internet Explorer 32,55,2017-09-26 +session,3848,8,Internet Explorer 48,72,2017-01-31 +session,3848,9,Internet Explorer 29,15,2017-02-16 +user,3849,Katrice,Maegan,34 +session,3849,0,Chrome 47,85,2016-09-24 +session,3849,1,Internet Explorer 24,109,2018-05-26 +session,3849,2,Safari 45,73,2018-09-29 +session,3849,3,Safari 37,88,2018-03-23 +session,3849,4,Firefox 20,104,2017-06-14 +session,3849,5,Safari 27,52,2016-11-08 +session,3849,6,Firefox 29,85,2018-11-19 +session,3849,7,Chrome 17,19,2018-05-11 +session,3849,8,Internet Explorer 31,59,2018-05-09 +session,3849,9,Firefox 30,94,2016-08-31 +user,3850,Rocky,Kate,22 +session,3850,0,Firefox 40,97,2016-09-08 +user,3851,Sandy,Ronald,98 +session,3851,0,Internet Explorer 8,10,2016-07-29 +session,3851,1,Chrome 24,86,2019-02-03 +session,3851,2,Firefox 30,9,2018-01-02 +session,3851,3,Firefox 15,2,2018-02-26 +session,3851,4,Internet Explorer 31,64,2017-05-12 +session,3851,5,Internet Explorer 32,102,2018-10-08 +session,3851,6,Chrome 5,80,2018-12-08 +session,3851,7,Chrome 39,13,2017-10-20 +user,3852,Lanny,Marta,84 +session,3852,0,Safari 18,112,2017-06-09 +user,3853,Ivan,Haywood,79 +session,3853,0,Firefox 32,81,2016-11-01 +session,3853,1,Firefox 3,25,2017-04-17 +session,3853,2,Chrome 36,93,2016-11-23 +user,3854,Stephen,Sonny,97 +session,3854,0,Internet Explorer 37,68,2017-09-23 +session,3854,1,Chrome 24,8,2017-11-24 +session,3854,2,Firefox 50,87,2018-08-29 +session,3854,3,Internet Explorer 29,64,2017-04-23 +session,3854,4,Firefox 11,107,2018-09-21 +user,3855,Britany,Roxie,65 +session,3855,0,Firefox 38,90,2018-05-21 +user,3856,Taylor,Lauren,11 +session,3856,0,Safari 4,97,2018-09-02 +session,3856,1,Chrome 32,87,2017-12-21 +session,3856,2,Internet Explorer 24,13,2017-09-05 +session,3856,3,Firefox 13,117,2018-03-30 +session,3856,4,Chrome 13,97,2017-12-30 +user,3857,Jesusita,Marnie,20 +session,3857,0,Safari 40,69,2018-03-12 +session,3857,1,Firefox 1,119,2018-12-28 +session,3857,2,Safari 40,4,2018-02-28 +user,3858,Loreen,Kevin,94 +session,3858,0,Firefox 5,45,2017-01-15 +user,3859,Florencio,Jenine,83 +session,3859,0,Safari 27,41,2017-12-31 +user,3860,Lorenzo,George,30 +session,3860,0,Internet Explorer 42,57,2016-08-11 +session,3860,1,Safari 48,15,2018-04-22 +session,3860,2,Internet Explorer 37,39,2016-10-22 +session,3860,3,Chrome 49,44,2018-12-20 +user,3861,Kassandra,Alayna,9 +session,3861,0,Chrome 37,105,2018-03-28 +session,3861,1,Safari 1,59,2018-07-15 +session,3861,2,Chrome 37,82,2017-03-10 +session,3861,3,Chrome 23,6,2018-09-12 +session,3861,4,Internet Explorer 48,45,2018-03-10 +session,3861,5,Safari 39,9,2016-12-01 +session,3861,6,Safari 15,80,2018-07-06 +session,3861,7,Safari 14,65,2016-11-16 +user,3862,Vicente,Adalberto,3 +session,3862,0,Firefox 27,52,2018-07-06 +user,3863,Blake,Harris,27 +session,3863,0,Safari 22,91,2017-04-10 +session,3863,1,Internet Explorer 34,69,2017-10-15 +session,3863,2,Internet Explorer 38,9,2016-08-29 +session,3863,3,Internet Explorer 31,88,2017-06-24 +session,3863,4,Safari 49,61,2018-05-21 +session,3863,5,Firefox 22,29,2019-01-22 +session,3863,6,Firefox 38,19,2019-01-13 +session,3863,7,Safari 6,35,2017-10-11 +session,3863,8,Internet Explorer 17,16,2018-12-02 +user,3864,Dianna,Karyl,63 +session,3864,0,Safari 5,114,2018-12-03 +session,3864,1,Firefox 37,78,2018-02-09 +session,3864,2,Internet Explorer 50,53,2016-11-12 +session,3864,3,Chrome 34,67,2018-12-07 +session,3864,4,Chrome 13,45,2017-10-30 +session,3864,5,Firefox 20,10,2017-11-14 +session,3864,6,Internet Explorer 45,111,2016-08-26 +session,3864,7,Safari 9,111,2017-10-16 +session,3864,8,Internet Explorer 27,93,2017-06-06 +user,3865,Justin,Janette,32 +session,3865,0,Chrome 21,81,2017-01-29 +session,3865,1,Internet Explorer 24,38,2016-10-09 +session,3865,2,Chrome 20,25,2016-11-10 +session,3865,3,Internet Explorer 6,22,2018-11-27 +user,3866,Ramona,Madison,98 +session,3866,0,Chrome 16,3,2018-01-19 +session,3866,1,Safari 7,119,2018-02-17 +session,3866,2,Internet Explorer 6,1,2017-02-17 +session,3866,3,Internet Explorer 47,84,2018-06-15 +session,3866,4,Chrome 35,36,2018-09-01 +session,3866,5,Chrome 30,17,2016-06-23 +session,3866,6,Safari 10,44,2016-11-22 +session,3866,7,Internet Explorer 34,35,2017-07-24 +session,3866,8,Internet Explorer 9,50,2017-11-18 +user,3867,Dennis,Margarito,16 +session,3867,0,Safari 41,91,2017-01-26 +session,3867,1,Internet Explorer 1,50,2018-04-16 +session,3867,2,Firefox 23,69,2017-08-31 +user,3868,Angel,Maribeth,79 +session,3868,0,Internet Explorer 46,29,2016-11-16 +session,3868,1,Chrome 26,51,2018-04-17 +session,3868,2,Internet Explorer 30,42,2018-03-17 +session,3868,3,Internet Explorer 39,92,2018-06-17 +session,3868,4,Firefox 42,33,2016-11-02 +session,3868,5,Safari 5,37,2017-04-25 +session,3868,6,Firefox 16,70,2017-08-03 +session,3868,7,Internet Explorer 16,39,2016-11-04 +session,3868,8,Safari 27,21,2018-05-25 +session,3868,9,Chrome 7,98,2018-11-03 +user,3869,Wilford,Babette,61 +session,3869,0,Internet Explorer 35,73,2017-04-23 +session,3869,1,Chrome 27,55,2017-07-26 +session,3869,2,Safari 17,86,2018-11-25 +session,3869,3,Firefox 8,110,2018-09-03 +session,3869,4,Firefox 17,18,2016-08-30 +user,3870,Elvin,Ladawn,90 +session,3870,0,Safari 38,54,2018-11-25 +session,3870,1,Internet Explorer 17,89,2017-05-18 +session,3870,2,Safari 9,43,2016-09-08 +session,3870,3,Internet Explorer 33,65,2019-01-15 +user,3871,Adolph,Gay,61 +session,3871,0,Chrome 47,37,2017-08-04 +session,3871,1,Internet Explorer 17,14,2017-12-11 +session,3871,2,Internet Explorer 39,35,2016-11-17 +session,3871,3,Firefox 44,5,2017-11-21 +session,3871,4,Safari 50,84,2018-07-14 +session,3871,5,Firefox 48,16,2019-01-21 +session,3871,6,Internet Explorer 31,108,2018-06-12 +user,3872,Shelby,Arnette,14 +session,3872,0,Internet Explorer 36,7,2017-01-25 +session,3872,1,Safari 7,66,2016-10-19 +session,3872,2,Firefox 1,14,2017-09-10 +session,3872,3,Internet Explorer 18,114,2017-11-26 +session,3872,4,Firefox 10,4,2016-08-26 +session,3872,5,Safari 44,77,2017-06-14 +session,3872,6,Internet Explorer 21,115,2017-06-08 +session,3872,7,Firefox 46,15,2018-12-14 +session,3872,8,Chrome 12,11,2016-05-25 +session,3872,9,Chrome 21,42,2016-08-01 +user,3873,Mazie,Hilda,88 +session,3873,0,Internet Explorer 50,7,2017-07-02 +session,3873,1,Safari 48,29,2018-12-04 +session,3873,2,Chrome 28,110,2016-10-27 +user,3874,Christiane,Laverne,88 +session,3874,0,Chrome 41,48,2018-07-30 +session,3874,1,Chrome 47,57,2016-08-30 +session,3874,2,Internet Explorer 48,61,2018-04-21 +session,3874,3,Internet Explorer 19,36,2017-07-02 +session,3874,4,Safari 44,66,2018-02-19 +session,3874,5,Firefox 3,6,2017-02-03 +session,3874,6,Chrome 40,53,2016-12-08 +session,3874,7,Firefox 10,102,2018-02-07 +session,3874,8,Firefox 14,72,2018-11-19 +user,3875,Jasmine,Ozie,87 +session,3875,0,Firefox 42,55,2016-07-05 +session,3875,1,Chrome 35,109,2018-06-14 +session,3875,2,Firefox 48,16,2016-10-25 +session,3875,3,Safari 11,94,2017-09-12 +user,3876,Rocco,Josue,77 +session,3876,0,Internet Explorer 49,60,2018-05-07 +session,3876,1,Firefox 20,62,2018-03-20 +session,3876,2,Chrome 42,45,2017-05-16 +session,3876,3,Safari 47,32,2017-02-21 +user,3877,Rolf,Angella,23 +session,3877,0,Firefox 44,45,2017-01-04 +session,3877,1,Chrome 25,60,2016-12-14 +session,3877,2,Chrome 36,62,2017-10-18 +session,3877,3,Internet Explorer 26,113,2016-08-31 +session,3877,4,Internet Explorer 50,91,2018-03-27 +session,3877,5,Chrome 30,74,2016-11-01 +session,3877,6,Safari 47,61,2016-11-01 +session,3877,7,Internet Explorer 23,72,2019-01-01 +session,3877,8,Chrome 23,90,2016-10-09 +user,3878,Christie,Lisha,2 +session,3878,0,Chrome 18,8,2017-08-11 +user,3879,Carolyn,Harley,38 +session,3879,0,Firefox 15,19,2017-07-17 +user,3880,Donnie,Lamonica,54 +session,3880,0,Internet Explorer 30,2,2018-09-05 +session,3880,1,Firefox 10,41,2018-12-25 +session,3880,2,Firefox 35,5,2017-05-23 +session,3880,3,Safari 1,46,2018-06-11 +session,3880,4,Safari 3,85,2016-06-11 +session,3880,5,Chrome 1,5,2016-06-24 +session,3880,6,Internet Explorer 40,119,2019-01-20 +session,3880,7,Internet Explorer 43,64,2016-12-03 +user,3881,Donny,Tena,94 +session,3881,0,Internet Explorer 46,19,2018-05-07 +session,3881,1,Internet Explorer 30,75,2018-10-10 +session,3881,2,Safari 16,64,2016-12-14 +session,3881,3,Firefox 39,67,2016-09-12 +session,3881,4,Chrome 4,1,2018-05-27 +session,3881,5,Chrome 36,118,2018-04-03 +session,3881,6,Firefox 24,58,2017-04-21 +session,3881,7,Chrome 26,75,2018-06-10 +user,3882,Julianne,Xenia,70 +session,3882,0,Internet Explorer 3,64,2018-06-14 +session,3882,1,Safari 44,6,2019-01-05 +session,3882,2,Safari 41,88,2018-07-11 +session,3882,3,Safari 4,38,2016-09-14 +session,3882,4,Firefox 30,53,2018-12-19 +session,3882,5,Safari 46,53,2018-12-20 +user,3883,Dominica,Gilbert,95 +session,3883,0,Chrome 20,50,2017-05-17 +session,3883,1,Firefox 46,86,2019-02-06 +user,3884,Rufus,Nicki,82 +session,3884,0,Firefox 43,94,2017-10-28 diff --git a/spec/support/data_250kb.txt b/spec/support/data_250kb.txt new file mode 100644 index 0000000..d0c409e --- /dev/null +++ b/spec/support/data_250kb.txt @@ -0,0 +1,6516 @@ +user,0,Hazel,Margarete,19 +session,0,0,Internet Explorer 50,81,2018-02-01 +session,0,1,Safari 27,88,2017-10-28 +session,0,2,Firefox 13,92,2016-11-02 +session,0,3,Internet Explorer 40,37,2017-05-31 +session,0,4,Internet Explorer 16,37,2017-11-21 +session,0,5,Safari 19,22,2017-11-30 +session,0,6,Chrome 31,74,2016-08-22 +session,0,7,Firefox 46,76,2019-02-04 +user,1,Wilfredo,Louetta,40 +session,1,0,Firefox 38,68,2018-04-24 +session,1,1,Internet Explorer 41,27,2016-09-06 +session,1,2,Internet Explorer 1,74,2017-01-05 +session,1,3,Firefox 47,28,2017-06-09 +session,1,4,Internet Explorer 22,98,2016-11-03 +user,2,Cecil,Rosalba,44 +session,2,0,Safari 26,96,2018-08-20 +session,2,1,Internet Explorer 10,3,2019-01-03 +session,2,2,Internet Explorer 47,52,2016-07-31 +session,2,3,Safari 34,37,2017-09-14 +session,2,4,Internet Explorer 17,22,2016-07-10 +session,2,5,Firefox 26,76,2017-02-06 +session,2,6,Chrome 14,88,2017-02-19 +session,2,7,Safari 31,113,2018-04-12 +session,2,8,Chrome 20,72,2016-09-04 +session,2,9,Safari 13,14,2017-07-26 +user,3,Kieth,Noble,20 +session,3,0,Safari 23,1,2018-02-19 +session,3,1,Internet Explorer 24,92,2018-05-15 +session,3,2,Chrome 6,91,2017-01-06 +session,3,3,Internet Explorer 47,7,2016-09-01 +session,3,4,Firefox 4,20,2017-03-22 +session,3,5,Internet Explorer 23,17,2016-12-02 +session,3,6,Internet Explorer 5,91,2017-12-29 +session,3,7,Internet Explorer 23,2,2017-03-17 +user,4,Corie,Erika,32 +session,4,0,Chrome 11,49,2019-02-05 +session,4,1,Safari 44,18,2017-09-01 +session,4,2,Firefox 32,88,2017-06-01 +session,4,3,Chrome 28,82,2018-03-18 +session,4,4,Firefox 38,36,2018-06-11 +session,4,5,Safari 14,11,2017-04-06 +session,4,6,Safari 27,116,2017-05-30 +session,4,7,Safari 24,36,2018-06-12 +session,4,8,Firefox 3,28,2018-01-05 +user,5,Lou,Lean,39 +session,5,0,Internet Explorer 42,74,2017-08-20 +session,5,1,Internet Explorer 1,80,2018-11-22 +session,5,2,Chrome 18,105,2018-01-17 +user,6,Deedra,Minta,44 +session,6,0,Firefox 32,27,2017-07-07 +session,6,1,Firefox 45,48,2017-07-22 +session,6,2,Safari 33,55,2018-07-09 +session,6,3,Safari 1,14,2016-11-08 +session,6,4,Firefox 39,18,2017-02-06 +session,6,5,Safari 12,52,2016-07-18 +session,6,6,Firefox 18,84,2016-08-16 +session,6,7,Chrome 2,114,2016-10-18 +user,7,Loria,Vernetta,68 +session,7,0,Safari 14,51,2019-01-25 +session,7,1,Internet Explorer 29,88,2016-10-12 +session,7,2,Firefox 32,55,2016-11-15 +session,7,3,Safari 4,20,2016-11-19 +session,7,4,Chrome 42,95,2018-02-10 +session,7,5,Safari 36,88,2018-03-30 +session,7,6,Safari 7,74,2017-05-27 +session,7,7,Safari 18,67,2017-02-22 +session,7,8,Chrome 24,26,2018-11-01 +user,8,Abdul,Venessa,55 +session,8,0,Internet Explorer 1,60,2018-12-02 +session,8,1,Chrome 3,63,2016-10-02 +session,8,2,Safari 41,99,2017-01-12 +session,8,3,Firefox 13,69,2017-04-17 +session,8,4,Safari 31,115,2018-04-08 +session,8,5,Chrome 30,77,2019-01-28 +session,8,6,Safari 43,56,2017-05-07 +user,9,Brooks,Janae,6 +session,9,0,Internet Explorer 36,11,2018-08-11 +user,10,Rey,Coy,95 +session,10,0,Internet Explorer 27,115,2017-08-05 +session,10,1,Internet Explorer 21,119,2018-11-15 +session,10,2,Internet Explorer 2,0,2016-06-10 +session,10,3,Safari 13,44,2018-04-07 +session,10,4,Firefox 37,26,2018-05-04 +user,11,Cyrus,Danyel,41 +session,11,0,Firefox 34,118,2016-10-14 +session,11,1,Internet Explorer 34,45,2017-10-10 +session,11,2,Internet Explorer 38,70,2017-07-10 +user,12,Valentin,Emilio,21 +session,12,0,Chrome 13,28,2018-04-23 +session,12,1,Firefox 35,17,2018-11-29 +session,12,2,Firefox 19,68,2018-05-03 +session,12,3,Internet Explorer 14,2,2016-09-18 +session,12,4,Firefox 15,97,2018-04-15 +session,12,5,Safari 26,40,2016-06-13 +user,13,Mitchell,Hobert,78 +session,13,0,Internet Explorer 32,89,2019-02-07 +session,13,1,Firefox 17,0,2017-11-05 +session,13,2,Chrome 17,117,2018-12-12 +session,13,3,Firefox 28,3,2016-12-01 +session,13,4,Firefox 9,26,2018-08-05 +session,13,5,Safari 27,113,2017-09-02 +session,13,6,Internet Explorer 20,92,2018-08-17 +session,13,7,Safari 11,103,2016-11-11 +session,13,8,Safari 36,26,2018-06-18 +session,13,9,Internet Explorer 22,33,2018-07-15 +user,14,Yuonne,Nicholle,52 +session,14,0,Safari 45,112,2018-01-23 +session,14,1,Firefox 50,54,2017-08-13 +session,14,2,Chrome 21,53,2018-10-08 +session,14,3,Firefox 24,30,2018-12-25 +session,14,4,Chrome 26,117,2017-09-09 +session,14,5,Chrome 16,38,2019-01-29 +session,14,6,Chrome 48,72,2016-08-12 +session,14,7,Safari 23,36,2016-10-05 +session,14,8,Firefox 12,45,2018-05-17 +user,15,Marlene,Ling,76 +session,15,0,Chrome 50,60,2018-06-29 +user,16,Salina,Eddie,27 +session,16,0,Internet Explorer 26,10,2018-01-10 +session,16,1,Chrome 23,13,2017-01-04 +user,17,Ernestine,Clifton,6 +session,17,0,Chrome 13,28,2016-12-05 +session,17,1,Chrome 10,97,2017-11-13 +session,17,2,Safari 34,39,2017-08-24 +session,17,3,Safari 48,27,2018-03-27 +session,17,4,Internet Explorer 32,76,2016-10-22 +session,17,5,Firefox 42,106,2016-12-23 +session,17,6,Chrome 13,72,2018-01-08 +session,17,7,Chrome 24,37,2017-12-21 +user,18,Homer,Odelia,62 +session,18,0,Safari 10,3,2018-01-19 +session,18,1,Internet Explorer 25,81,2017-11-21 +session,18,2,Firefox 4,110,2017-05-17 +session,18,3,Firefox 12,92,2018-01-15 +session,18,4,Safari 43,88,2017-02-04 +session,18,5,Internet Explorer 42,19,2018-06-30 +session,18,6,Firefox 17,47,2016-09-10 +user,19,Jean,Gregg,96 +session,19,0,Internet Explorer 49,12,2016-10-19 +session,19,1,Firefox 36,56,2018-04-20 +session,19,2,Internet Explorer 32,3,2018-01-02 +session,19,3,Internet Explorer 20,85,2018-03-12 +session,19,4,Internet Explorer 21,21,2017-01-10 +session,19,5,Firefox 46,99,2017-08-19 +user,20,Jacinta,Erinn,34 +session,20,0,Chrome 44,49,2018-01-29 +session,20,1,Internet Explorer 33,90,2017-11-02 +session,20,2,Safari 22,44,2018-10-14 +session,20,3,Firefox 39,32,2019-01-07 +user,21,Melita,Mika,45 +session,21,0,Firefox 30,1,2016-08-03 +session,21,1,Safari 48,64,2017-05-10 +session,21,2,Chrome 40,61,2018-10-07 +session,21,3,Safari 37,0,2018-05-09 +session,21,4,Chrome 12,98,2017-02-24 +user,22,Matthew,Lucretia,23 +session,22,0,Internet Explorer 23,86,2017-08-02 +user,23,Maurice,Paz,38 +session,23,0,Internet Explorer 2,51,2017-09-28 +session,23,1,Internet Explorer 11,60,2016-08-02 +session,23,2,Firefox 31,32,2017-04-30 +user,24,Jessica,Brandi,8 +session,24,0,Chrome 12,111,2017-09-18 +user,25,Marget,Ming,58 +session,25,0,Chrome 31,51,2018-05-18 +session,25,1,Safari 9,63,2016-12-20 +session,25,2,Firefox 48,75,2018-03-26 +session,25,3,Firefox 16,51,2017-09-02 +user,26,Audria,Roselyn,85 +session,26,0,Firefox 22,84,2018-02-13 +session,26,1,Safari 14,52,2017-03-17 +session,26,2,Firefox 36,96,2016-11-12 +session,26,3,Firefox 6,16,2017-12-08 +user,27,Leilani,Ines,86 +session,27,0,Firefox 29,91,2016-10-03 +session,27,1,Chrome 44,66,2016-05-27 +session,27,2,Safari 9,90,2017-08-28 +user,28,Philip,Daysi,2 +session,28,0,Internet Explorer 23,27,2018-09-21 +session,28,1,Safari 4,116,2018-09-19 +user,29,Delmar,Otilia,44 +session,29,0,Safari 17,0,2016-08-02 +session,29,1,Internet Explorer 39,101,2017-04-21 +session,29,2,Internet Explorer 8,0,2016-10-19 +session,29,3,Internet Explorer 20,36,2017-02-05 +session,29,4,Internet Explorer 25,73,2018-07-31 +session,29,5,Chrome 18,49,2017-12-14 +session,29,6,Firefox 24,81,2018-09-06 +user,30,Newton,Brianna,34 +session,30,0,Chrome 38,110,2016-11-21 +session,30,1,Firefox 34,47,2017-08-27 +session,30,2,Internet Explorer 27,74,2017-07-13 +session,30,3,Internet Explorer 29,118,2018-03-14 +session,30,4,Chrome 16,24,2017-02-11 +session,30,5,Firefox 37,85,2019-01-26 +session,30,6,Firefox 34,22,2016-10-19 +session,30,7,Firefox 14,14,2018-04-11 +session,30,8,Firefox 27,33,2017-12-07 +user,31,Sherman,Pearly,65 +session,31,0,Firefox 5,113,2016-05-22 +session,31,1,Safari 1,50,2018-08-06 +session,31,2,Internet Explorer 6,29,2016-06-13 +session,31,3,Internet Explorer 48,103,2017-12-15 +session,31,4,Firefox 32,106,2018-07-26 +session,31,5,Safari 27,105,2016-12-08 +session,31,6,Safari 5,44,2016-09-19 +session,31,7,Safari 41,21,2017-02-19 +session,31,8,Firefox 22,66,2017-11-17 +user,32,Steve,Esmeralda,73 +session,32,0,Chrome 41,64,2018-07-13 +session,32,1,Firefox 11,50,2016-12-18 +session,32,2,Firefox 38,90,2018-12-26 +session,32,3,Firefox 41,114,2018-04-01 +session,32,4,Safari 49,22,2018-05-28 +session,32,5,Firefox 12,72,2017-09-12 +user,33,Young,Todd,59 +session,33,0,Chrome 10,59,2016-12-28 +session,33,1,Internet Explorer 28,92,2018-06-14 +session,33,2,Chrome 28,29,2017-04-28 +session,33,3,Firefox 1,52,2018-04-25 +session,33,4,Safari 46,25,2017-09-20 +session,33,5,Safari 32,57,2016-10-07 +user,34,Wen,Sherill,39 +session,34,0,Internet Explorer 18,92,2016-09-05 +session,34,1,Firefox 16,95,2017-08-27 +user,35,Margarita,Aileen,78 +session,35,0,Chrome 9,72,2018-02-27 +session,35,1,Firefox 27,18,2018-05-23 +session,35,2,Firefox 42,113,2016-07-22 +session,35,3,Safari 5,27,2018-09-14 +session,35,4,Chrome 49,17,2018-10-24 +session,35,5,Internet Explorer 17,75,2017-08-27 +session,35,6,Internet Explorer 46,49,2016-09-12 +user,36,Rich,Maddie,58 +session,36,0,Chrome 37,36,2016-08-22 +session,36,1,Chrome 21,81,2016-05-31 +session,36,2,Safari 38,71,2018-10-04 +user,37,Marcie,Modesto,76 +session,37,0,Internet Explorer 37,45,2017-01-06 +session,37,1,Chrome 27,58,2018-04-14 +session,37,2,Safari 43,108,2018-04-05 +session,37,3,Firefox 29,67,2016-12-09 +session,37,4,Firefox 43,90,2016-10-24 +session,37,5,Firefox 24,90,2017-04-30 +session,37,6,Chrome 3,104,2016-12-20 +session,37,7,Firefox 47,106,2017-06-15 +user,38,Amparo,Elvis,71 +session,38,0,Safari 9,74,2017-12-08 +session,38,1,Chrome 50,103,2016-05-30 +session,38,2,Internet Explorer 23,84,2018-06-21 +session,38,3,Chrome 6,67,2018-04-15 +session,38,4,Chrome 26,99,2017-10-19 +session,38,5,Chrome 36,73,2016-11-20 +session,38,6,Chrome 28,1,2018-01-26 +session,38,7,Chrome 38,21,2017-02-26 +user,39,Bailey,Brittanie,58 +session,39,0,Firefox 31,52,2018-12-19 +session,39,1,Safari 12,15,2017-10-16 +session,39,2,Safari 28,14,2016-11-08 +session,39,3,Chrome 50,60,2017-07-02 +user,40,Tawanda,Georgeann,70 +session,40,0,Safari 21,51,2018-05-02 +session,40,1,Firefox 34,85,2017-11-25 +session,40,2,Firefox 31,0,2017-08-11 +session,40,3,Internet Explorer 31,88,2018-01-06 +user,41,Jonnie,Louise,57 +session,41,0,Internet Explorer 16,7,2018-12-07 +session,41,1,Chrome 41,74,2019-02-03 +session,41,2,Safari 11,98,2018-11-28 +session,41,3,Firefox 16,7,2018-03-17 +session,41,4,Chrome 49,99,2018-10-10 +session,41,5,Firefox 46,18,2018-01-04 +session,41,6,Safari 6,54,2017-03-02 +session,41,7,Chrome 2,113,2016-08-18 +session,41,8,Safari 6,54,2019-02-11 +session,41,9,Firefox 46,40,2016-05-22 +user,42,Jamar,Annita,17 +session,42,0,Safari 8,82,2018-04-28 +session,42,1,Chrome 41,82,2016-05-28 +session,42,2,Firefox 47,35,2018-08-09 +user,43,Kurt,Camie,33 +session,43,0,Internet Explorer 16,90,2018-07-22 +session,43,1,Firefox 46,16,2017-07-23 +session,43,2,Safari 47,19,2016-09-26 +user,44,Gail,Morgan,79 +session,44,0,Safari 46,101,2018-10-31 +session,44,1,Firefox 49,42,2017-05-31 +session,44,2,Safari 50,61,2018-10-24 +session,44,3,Chrome 23,89,2016-07-29 +user,45,Trenton,Carlee,6 +session,45,0,Internet Explorer 27,70,2017-06-05 +session,45,1,Chrome 1,36,2017-05-04 +session,45,2,Firefox 5,29,2018-08-30 +session,45,3,Internet Explorer 38,81,2018-08-27 +session,45,4,Chrome 50,21,2017-01-21 +session,45,5,Internet Explorer 5,29,2017-12-14 +session,45,6,Firefox 42,102,2017-05-16 +session,45,7,Chrome 44,101,2017-12-31 +session,45,8,Internet Explorer 45,17,2019-02-08 +user,46,Ailene,Melba,3 +session,46,0,Chrome 8,73,2019-01-27 +session,46,1,Safari 43,6,2016-10-21 +session,46,2,Firefox 35,22,2018-09-01 +session,46,3,Firefox 29,19,2016-09-26 +session,46,4,Firefox 45,118,2017-01-11 +session,46,5,Chrome 38,47,2017-04-18 +session,46,6,Safari 40,100,2016-10-28 +user,47,Mohamed,Lorina,58 +session,47,0,Safari 48,75,2016-08-03 +session,47,1,Internet Explorer 27,18,2018-12-10 +session,47,2,Internet Explorer 39,117,2017-01-30 +session,47,3,Internet Explorer 42,90,2017-02-21 +session,47,4,Safari 47,15,2016-12-24 +session,47,5,Internet Explorer 38,59,2018-09-27 +session,47,6,Safari 6,4,2016-10-13 +user,48,Abbie,Young,83 +session,48,0,Safari 1,46,2017-08-17 +session,48,1,Firefox 8,4,2017-01-15 +session,48,2,Firefox 15,1,2018-09-06 +session,48,3,Chrome 4,46,2018-11-27 +session,48,4,Firefox 11,36,2016-11-29 +session,48,5,Chrome 34,67,2018-08-28 +session,48,6,Internet Explorer 50,27,2016-09-23 +user,49,Coleman,Mardell,78 +session,49,0,Chrome 32,46,2018-08-03 +session,49,1,Firefox 15,73,2018-10-24 +session,49,2,Safari 34,67,2016-07-16 +session,49,3,Safari 39,6,2019-02-04 +session,49,4,Firefox 37,31,2018-08-28 +session,49,5,Firefox 33,103,2016-09-25 +session,49,6,Chrome 12,68,2016-06-15 +user,50,Edwin,Joseph,20 +session,50,0,Safari 37,55,2017-10-04 +session,50,1,Safari 21,111,2018-04-27 +user,51,Sonya,Gay,42 +session,51,0,Chrome 34,107,2017-05-31 +session,51,1,Internet Explorer 32,1,2016-11-07 +session,51,2,Chrome 38,109,2018-07-02 +session,51,3,Internet Explorer 41,86,2017-08-08 +session,51,4,Internet Explorer 32,26,2016-09-17 +session,51,5,Firefox 10,52,2016-05-24 +session,51,6,Safari 5,9,2018-03-19 +session,51,7,Chrome 28,44,2017-01-28 +user,52,Aaron,Debbra,66 +session,52,0,Firefox 10,35,2016-10-24 +session,52,1,Safari 29,16,2016-09-17 +session,52,2,Chrome 27,66,2016-12-27 +session,52,3,Firefox 36,1,2018-06-20 +session,52,4,Internet Explorer 9,25,2017-05-07 +session,52,5,Internet Explorer 31,62,2016-06-19 +session,52,6,Firefox 44,63,2018-06-29 +session,52,7,Safari 11,56,2017-07-25 +user,53,Markus,Shyla,36 +session,53,0,Chrome 48,94,2018-05-24 +session,53,1,Chrome 6,72,2017-07-10 +session,53,2,Safari 1,21,2017-03-20 +session,53,3,Safari 6,107,2017-08-28 +session,53,4,Internet Explorer 17,67,2017-09-28 +session,53,5,Chrome 43,117,2017-10-15 +user,54,Velia,Corrine,63 +session,54,0,Firefox 27,92,2018-03-16 +user,55,Percy,Tarra,30 +session,55,0,Safari 27,14,2017-04-27 +session,55,1,Safari 45,15,2017-02-03 +session,55,2,Chrome 1,40,2016-06-26 +session,55,3,Internet Explorer 27,3,2017-09-12 +session,55,4,Internet Explorer 45,18,2017-09-27 +user,56,Laure,Lee,53 +session,56,0,Chrome 18,89,2018-04-30 +session,56,1,Firefox 23,97,2018-02-28 +session,56,2,Firefox 49,95,2018-05-03 +session,56,3,Firefox 42,84,2017-06-18 +user,57,Claude,Lauren,57 +session,57,0,Internet Explorer 31,20,2018-06-25 +session,57,1,Internet Explorer 29,37,2017-05-04 +session,57,2,Firefox 6,81,2018-06-10 +session,57,3,Internet Explorer 23,53,2018-10-14 +session,57,4,Firefox 15,54,2016-05-24 +session,57,5,Chrome 22,51,2017-02-07 +session,57,6,Chrome 44,0,2018-08-02 +session,57,7,Firefox 17,58,2016-10-02 +session,57,8,Internet Explorer 40,119,2018-07-24 +user,58,Timmy,Monica,41 +session,58,0,Internet Explorer 7,5,2017-05-07 +session,58,1,Firefox 16,82,2018-09-10 +session,58,2,Safari 26,99,2016-08-27 +session,58,3,Firefox 6,119,2018-10-31 +session,58,4,Firefox 29,42,2018-06-13 +session,58,5,Firefox 19,92,2016-08-25 +user,59,Mark,Shasta,95 +session,59,0,Chrome 50,102,2017-05-25 +session,59,1,Safari 39,25,2017-05-31 +session,59,2,Firefox 33,60,2016-06-25 +session,59,3,Safari 12,54,2018-05-09 +session,59,4,Internet Explorer 16,84,2018-10-13 +session,59,5,Chrome 39,27,2018-10-31 +session,59,6,Chrome 38,113,2018-07-05 +session,59,7,Firefox 45,109,2017-06-12 +user,60,Rhona,Alline,14 +session,60,0,Internet Explorer 2,35,2017-10-21 +session,60,1,Chrome 11,61,2016-09-01 +session,60,2,Firefox 13,42,2019-02-11 +session,60,3,Chrome 5,48,2017-02-11 +session,60,4,Safari 24,35,2018-09-05 +session,60,5,Firefox 44,115,2016-06-07 +user,61,Lester,Margaret,34 +session,61,0,Internet Explorer 18,98,2018-08-23 +session,61,1,Chrome 5,86,2018-12-03 +user,62,Renna,Sam,59 +session,62,0,Internet Explorer 27,73,2018-12-14 +session,62,1,Internet Explorer 49,73,2018-11-30 +session,62,2,Internet Explorer 5,113,2016-11-14 +user,63,Jacquline,Marth,98 +session,63,0,Firefox 43,77,2018-12-16 +session,63,1,Safari 18,84,2016-12-11 +user,64,Alia,Mary,74 +session,64,0,Internet Explorer 46,37,2016-11-26 +session,64,1,Safari 15,53,2016-12-06 +session,64,2,Internet Explorer 31,18,2017-01-01 +session,64,3,Safari 43,112,2016-10-05 +session,64,4,Firefox 35,76,2017-03-16 +session,64,5,Chrome 17,61,2018-03-25 +session,64,6,Internet Explorer 37,26,2018-07-31 +session,64,7,Chrome 36,55,2016-12-13 +session,64,8,Safari 4,66,2017-05-27 +user,65,Patricia,Winston,65 +session,65,0,Internet Explorer 35,118,2018-09-29 +session,65,1,Firefox 14,27,2017-05-28 +session,65,2,Chrome 18,15,2017-06-10 +session,65,3,Firefox 26,82,2016-11-23 +session,65,4,Safari 32,114,2016-09-05 +session,65,5,Internet Explorer 17,52,2016-11-05 +session,65,6,Chrome 44,107,2018-03-26 +session,65,7,Firefox 4,42,2017-05-15 +session,65,8,Internet Explorer 50,47,2017-10-13 +user,66,Jerry,Nicolasa,83 +session,66,0,Firefox 20,80,2017-07-23 +user,67,Randal,Pamella,16 +session,67,0,Chrome 37,10,2018-01-07 +session,67,1,Chrome 42,6,2017-01-26 +session,67,2,Firefox 34,14,2018-07-21 +user,68,Olen,Leia,88 +session,68,0,Chrome 35,47,2016-08-04 +session,68,1,Firefox 10,3,2018-09-15 +user,69,Jarod,Terence,28 +session,69,0,Internet Explorer 16,100,2016-08-06 +user,70,Jamie,Jeremy,32 +session,70,0,Internet Explorer 41,102,2018-04-24 +session,70,1,Firefox 33,46,2017-11-19 +session,70,2,Firefox 20,106,2018-06-30 +session,70,3,Safari 43,106,2018-05-03 +session,70,4,Internet Explorer 35,29,2018-03-18 +session,70,5,Chrome 34,20,2018-08-31 +session,70,6,Safari 44,74,2017-03-31 +session,70,7,Firefox 23,78,2017-04-20 +session,70,8,Internet Explorer 14,29,2018-07-14 +session,70,9,Internet Explorer 18,34,2018-08-11 +user,71,Hung,Delfina,63 +session,71,0,Chrome 11,0,2018-12-21 +session,71,1,Chrome 13,73,2018-11-11 +session,71,2,Internet Explorer 39,103,2016-11-29 +session,71,3,Chrome 11,74,2017-08-04 +session,71,4,Safari 35,90,2019-02-09 +session,71,5,Chrome 34,67,2019-02-12 +session,71,6,Chrome 13,68,2018-01-23 +session,71,7,Chrome 24,59,2018-01-27 +user,72,Kenisha,Belle,16 +session,72,0,Internet Explorer 42,72,2018-04-25 +session,72,1,Safari 2,75,2018-04-24 +session,72,2,Chrome 10,24,2016-06-14 +session,72,3,Chrome 40,113,2017-03-18 +session,72,4,Safari 37,13,2016-12-11 +session,72,5,Chrome 44,31,2018-12-19 +session,72,6,Internet Explorer 18,83,2018-03-19 +session,72,7,Chrome 45,4,2016-11-07 +session,72,8,Internet Explorer 22,83,2017-12-08 +session,72,9,Firefox 37,25,2018-09-09 +user,73,Tien,Kenyetta,30 +session,73,0,Firefox 38,99,2017-06-25 +session,73,1,Internet Explorer 41,80,2018-06-18 +session,73,2,Firefox 1,6,2017-08-09 +session,73,3,Firefox 15,69,2016-12-27 +session,73,4,Internet Explorer 42,96,2016-09-28 +user,74,Samantha,Tama,72 +session,74,0,Safari 33,12,2016-06-23 +user,75,Tyler,Santa,21 +session,75,0,Internet Explorer 40,102,2018-07-04 +session,75,1,Firefox 13,5,2016-06-05 +session,75,2,Safari 46,0,2016-09-16 +session,75,3,Firefox 37,107,2018-11-24 +session,75,4,Chrome 3,15,2018-12-29 +user,76,Jerome,Corene,46 +session,76,0,Chrome 23,42,2017-05-03 +session,76,1,Internet Explorer 8,44,2017-07-31 +session,76,2,Safari 1,71,2017-03-08 +session,76,3,Chrome 43,3,2018-03-31 +session,76,4,Chrome 35,22,2017-04-26 +session,76,5,Firefox 37,21,2016-11-01 +user,77,Lazaro,Raven,33 +session,77,0,Internet Explorer 33,31,2018-12-24 +session,77,1,Safari 18,8,2018-09-11 +session,77,2,Safari 23,86,2016-06-30 +session,77,3,Safari 9,91,2016-11-03 +session,77,4,Safari 14,22,2017-10-29 +session,77,5,Safari 3,114,2019-01-15 +session,77,6,Chrome 2,9,2017-04-06 +session,77,7,Safari 42,73,2017-03-29 +user,78,Normand,Sergio,14 +session,78,0,Firefox 45,92,2016-05-31 +session,78,1,Internet Explorer 31,109,2018-03-05 +session,78,2,Safari 17,65,2017-10-05 +user,79,Delois,Evelynn,78 +session,79,0,Firefox 19,56,2016-08-05 +user,80,Leota,Iva,68 +session,80,0,Chrome 5,66,2017-07-15 +session,80,1,Chrome 26,113,2017-09-09 +user,81,Pa,Therese,5 +session,81,0,Safari 43,53,2018-11-03 +session,81,1,Internet Explorer 44,27,2016-10-08 +session,81,2,Safari 16,10,2018-10-29 +session,81,3,Safari 20,22,2017-03-25 +session,81,4,Firefox 44,37,2018-07-06 +session,81,5,Safari 14,8,2017-12-14 +user,82,Anastacia,Napoleon,16 +session,82,0,Chrome 23,46,2017-06-19 +session,82,1,Chrome 31,95,2018-07-14 +session,82,2,Safari 21,104,2016-12-14 +session,82,3,Internet Explorer 30,2,2017-04-03 +session,82,4,Chrome 9,29,2017-12-26 +user,83,Deetta,Dahlia,37 +session,83,0,Internet Explorer 32,114,2018-10-17 +session,83,1,Internet Explorer 23,53,2017-02-11 +session,83,2,Safari 7,41,2017-06-30 +session,83,3,Firefox 15,55,2017-12-17 +session,83,4,Safari 17,70,2017-02-26 +session,83,5,Firefox 19,22,2018-04-04 +session,83,6,Firefox 39,57,2018-02-03 +session,83,7,Internet Explorer 38,45,2017-03-18 +user,84,Lorraine,Abram,68 +session,84,0,Firefox 27,32,2018-01-27 +session,84,1,Internet Explorer 1,85,2018-04-14 +session,84,2,Internet Explorer 31,11,2016-08-29 +session,84,3,Firefox 26,115,2017-04-23 +user,85,Millard,Tashia,58 +session,85,0,Safari 13,40,2018-10-01 +session,85,1,Safari 11,21,2018-09-29 +session,85,2,Firefox 39,37,2017-06-01 +session,85,3,Internet Explorer 39,95,2019-01-15 +session,85,4,Safari 40,73,2016-10-18 +session,85,5,Chrome 33,16,2018-01-15 +session,85,6,Firefox 1,13,2018-03-03 +session,85,7,Internet Explorer 46,45,2017-02-28 +session,85,8,Safari 3,96,2018-09-01 +user,86,Floretta,Brandon,28 +session,86,0,Safari 21,20,2017-05-21 +session,86,1,Safari 25,1,2017-08-19 +session,86,2,Safari 49,95,2018-12-27 +session,86,3,Internet Explorer 16,59,2016-11-27 +session,86,4,Firefox 16,18,2016-07-19 +session,86,5,Chrome 34,92,2019-01-16 +session,86,6,Internet Explorer 14,5,2017-08-25 +session,86,7,Firefox 27,79,2018-09-03 +session,86,8,Firefox 20,77,2018-02-18 +user,87,Carlyn,Hyun,21 +session,87,0,Safari 42,11,2018-06-16 +session,87,1,Internet Explorer 50,98,2018-02-11 +session,87,2,Internet Explorer 35,37,2018-12-10 +session,87,3,Internet Explorer 20,51,2016-08-08 +session,87,4,Chrome 7,63,2017-01-10 +session,87,5,Internet Explorer 21,96,2017-07-06 +session,87,6,Safari 32,8,2016-08-03 +session,87,7,Chrome 9,14,2017-10-28 +session,87,8,Firefox 38,114,2017-03-29 +session,87,9,Internet Explorer 13,10,2017-12-21 +user,88,Bradly,Karlene,28 +session,88,0,Internet Explorer 27,118,2018-12-20 +session,88,1,Chrome 18,20,2016-11-10 +session,88,2,Internet Explorer 42,7,2018-06-03 +session,88,3,Chrome 21,69,2017-09-06 +session,88,4,Chrome 38,38,2017-04-27 +session,88,5,Firefox 33,111,2018-07-12 +user,89,Alonso,Angelic,13 +session,89,0,Internet Explorer 9,87,2017-07-07 +session,89,1,Safari 41,61,2018-07-25 +session,89,2,Internet Explorer 39,6,2016-08-06 +session,89,3,Firefox 25,71,2018-05-03 +session,89,4,Safari 13,100,2017-04-22 +session,89,5,Internet Explorer 27,72,2017-02-26 +session,89,6,Safari 16,3,2017-04-27 +session,89,7,Internet Explorer 42,94,2017-03-02 +user,90,Tyrone,Selina,7 +session,90,0,Safari 48,5,2016-09-24 +session,90,1,Internet Explorer 20,48,2019-01-15 +session,90,2,Firefox 18,70,2017-08-22 +session,90,3,Chrome 45,71,2017-12-13 +session,90,4,Safari 46,104,2017-02-06 +session,90,5,Internet Explorer 37,104,2018-07-20 +session,90,6,Internet Explorer 23,75,2018-09-24 +session,90,7,Internet Explorer 25,56,2017-07-26 +session,90,8,Internet Explorer 3,21,2018-09-18 +user,91,Eli,Karyl,81 +session,91,0,Internet Explorer 40,29,2017-02-17 +session,91,1,Internet Explorer 11,92,2018-08-19 +session,91,2,Firefox 8,6,2019-01-20 +user,92,Rosalia,Willie,50 +session,92,0,Firefox 9,47,2018-08-28 +session,92,1,Internet Explorer 37,12,2018-02-24 +session,92,2,Internet Explorer 37,8,2018-03-03 +user,93,Chauncey,Debby,36 +session,93,0,Safari 38,35,2017-06-25 +session,93,1,Safari 15,66,2017-02-19 +session,93,2,Chrome 35,40,2017-07-27 +session,93,3,Safari 30,57,2017-08-12 +session,93,4,Firefox 30,2,2018-04-20 +session,93,5,Safari 46,64,2017-09-16 +session,93,6,Firefox 17,106,2018-10-28 +session,93,7,Chrome 24,119,2018-01-06 +user,94,Malika,Susann,66 +session,94,0,Chrome 47,31,2018-03-15 +session,94,1,Chrome 10,109,2017-06-05 +session,94,2,Safari 9,2,2017-11-06 +session,94,3,Chrome 15,25,2018-01-05 +session,94,4,Internet Explorer 28,51,2018-02-06 +user,95,Jerrold,Janise,18 +session,95,0,Safari 30,105,2016-11-25 +session,95,1,Safari 33,97,2018-01-06 +session,95,2,Internet Explorer 45,86,2016-09-22 +session,95,3,Internet Explorer 35,94,2018-06-04 +session,95,4,Chrome 31,67,2017-08-11 +session,95,5,Internet Explorer 43,16,2018-12-19 +session,95,6,Safari 43,12,2017-04-30 +user,96,Raymond,Stephania,43 +session,96,0,Internet Explorer 3,46,2016-09-08 +user,97,Silvia,Kennith,52 +session,97,0,Safari 17,24,2018-07-23 +session,97,1,Firefox 2,13,2018-05-31 +session,97,2,Firefox 48,108,2018-09-27 +session,97,3,Internet Explorer 49,57,2017-02-01 +session,97,4,Safari 23,42,2016-05-21 +session,97,5,Chrome 40,45,2016-08-05 +session,97,6,Internet Explorer 28,29,2017-10-04 +user,98,Hong,Dorris,59 +session,98,0,Chrome 18,10,2017-03-15 +session,98,1,Chrome 15,67,2017-07-03 +session,98,2,Internet Explorer 47,104,2017-01-08 +session,98,3,Safari 19,108,2017-12-06 +session,98,4,Safari 18,101,2018-12-10 +session,98,5,Chrome 33,47,2018-06-24 +user,99,Iesha,Duane,16 +session,99,0,Chrome 40,46,2016-10-27 +session,99,1,Firefox 14,46,2018-02-11 +session,99,2,Chrome 1,89,2018-08-08 +session,99,3,Internet Explorer 46,17,2018-06-20 +session,99,4,Chrome 35,111,2016-08-02 +user,100,Ignacio,Emmie,0 +session,100,0,Chrome 16,81,2018-06-25 +session,100,1,Internet Explorer 48,22,2016-10-06 +user,101,Ossie,Reginia,77 +session,101,0,Internet Explorer 44,105,2019-01-04 +session,101,1,Chrome 17,70,2018-01-12 +user,102,Gerardo,Sharleen,8 +session,102,0,Safari 28,20,2017-06-30 +user,103,Earline,Shantay,53 +session,103,0,Internet Explorer 3,98,2017-11-11 +session,103,1,Chrome 32,9,2016-06-20 +session,103,2,Internet Explorer 37,12,2017-07-01 +session,103,3,Chrome 42,75,2018-05-09 +session,103,4,Chrome 1,23,2018-02-09 +session,103,5,Safari 32,44,2018-04-20 +session,103,6,Safari 5,29,2018-03-01 +session,103,7,Chrome 44,2,2016-12-09 +session,103,8,Safari 35,36,2016-06-04 +session,103,9,Safari 10,16,2016-07-10 +user,104,Santos,Pamelia,15 +session,104,0,Firefox 1,57,2016-12-25 +session,104,1,Chrome 49,18,2018-05-27 +session,104,2,Firefox 17,36,2018-04-23 +session,104,3,Internet Explorer 32,19,2017-09-21 +session,104,4,Safari 41,97,2018-02-16 +session,104,5,Internet Explorer 31,73,2017-04-06 +session,104,6,Safari 4,57,2017-06-06 +session,104,7,Firefox 10,36,2016-11-10 +user,105,Lola,Florentino,24 +session,105,0,Internet Explorer 14,60,2018-01-20 +session,105,1,Safari 31,105,2017-01-18 +session,105,2,Firefox 29,66,2016-12-14 +user,106,Bert,Orville,11 +session,106,0,Safari 17,89,2018-05-20 +session,106,1,Firefox 15,49,2018-02-15 +user,107,Antonio,Brinda,59 +session,107,0,Internet Explorer 7,35,2018-07-06 +session,107,1,Firefox 19,5,2016-09-23 +session,107,2,Firefox 9,44,2018-02-16 +session,107,3,Chrome 5,18,2016-10-03 +session,107,4,Firefox 38,85,2016-07-30 +user,108,Joaquin,Wilfredo,35 +session,108,0,Firefox 6,13,2016-07-04 +session,108,1,Internet Explorer 20,24,2017-08-28 +session,108,2,Chrome 39,16,2018-09-27 +user,109,Clifton,Allan,5 +session,109,0,Safari 41,63,2018-11-29 +session,109,1,Chrome 17,19,2017-05-30 +session,109,2,Firefox 14,94,2018-02-19 +user,110,Donald,Wenona,56 +session,110,0,Safari 44,14,2016-05-19 +session,110,1,Firefox 22,57,2017-08-11 +user,111,Millard,Mittie,17 +session,111,0,Safari 13,23,2019-01-24 +session,111,1,Firefox 20,96,2016-11-15 +session,111,2,Chrome 48,62,2017-11-08 +session,111,3,Firefox 31,98,2017-10-26 +session,111,4,Safari 38,13,2017-10-03 +session,111,5,Internet Explorer 17,116,2017-12-14 +user,112,Jenette,Bruce,68 +session,112,0,Chrome 18,113,2018-02-25 +session,112,1,Firefox 44,1,2016-09-09 +session,112,2,Firefox 30,66,2017-07-27 +session,112,3,Internet Explorer 46,31,2017-12-06 +user,113,Bryan,Clorinda,86 +session,113,0,Safari 50,61,2016-07-17 +session,113,1,Safari 20,37,2018-04-19 +session,113,2,Safari 37,41,2018-06-10 +session,113,3,Internet Explorer 47,33,2017-10-30 +session,113,4,Firefox 30,5,2017-04-07 +session,113,5,Safari 39,6,2016-07-25 +session,113,6,Internet Explorer 36,48,2018-05-15 +session,113,7,Chrome 50,119,2018-03-26 +session,113,8,Firefox 31,93,2017-12-26 +user,114,Jena,Melony,83 +session,114,0,Internet Explorer 10,52,2016-06-11 +user,115,Jerri,Long,20 +session,115,0,Internet Explorer 20,101,2017-09-03 +session,115,1,Chrome 50,107,2017-04-10 +session,115,2,Firefox 36,85,2018-03-07 +session,115,3,Chrome 22,89,2018-12-15 +session,115,4,Safari 14,26,2018-03-23 +session,115,5,Firefox 24,21,2016-06-23 +user,116,Monte,Angelo,35 +session,116,0,Internet Explorer 14,106,2017-06-28 +user,117,Saran,Nathalie,83 +session,117,0,Chrome 9,92,2016-05-30 +session,117,1,Chrome 3,117,2016-11-02 +session,117,2,Safari 35,94,2016-08-09 +session,117,3,Chrome 3,103,2016-07-20 +session,117,4,Chrome 40,97,2017-08-12 +session,117,5,Firefox 4,6,2018-01-11 +session,117,6,Internet Explorer 19,67,2017-05-13 +user,118,Jonna,Waneta,6 +session,118,0,Chrome 10,101,2017-03-28 +session,118,1,Firefox 24,69,2017-05-06 +session,118,2,Safari 25,97,2018-09-28 +session,118,3,Internet Explorer 16,61,2016-09-24 +session,118,4,Chrome 48,94,2016-06-29 +session,118,5,Internet Explorer 29,13,2016-12-19 +session,118,6,Safari 15,98,2019-01-29 +session,118,7,Chrome 23,18,2017-03-27 +session,118,8,Internet Explorer 25,62,2016-07-29 +session,118,9,Firefox 18,5,2018-05-26 +user,119,Valeria,Gigi,79 +session,119,0,Chrome 36,2,2018-12-02 +user,120,Caron,Hye,64 +session,120,0,Safari 33,103,2016-05-30 +session,120,1,Internet Explorer 4,18,2017-08-12 +session,120,2,Safari 36,114,2017-04-30 +session,120,3,Internet Explorer 30,110,2019-01-26 +session,120,4,Internet Explorer 48,28,2018-10-04 +session,120,5,Safari 13,77,2016-06-16 +session,120,6,Chrome 9,73,2017-03-29 +session,120,7,Chrome 7,33,2016-08-23 +user,121,Wilbur,Lilly,91 +session,121,0,Chrome 5,116,2018-11-20 +session,121,1,Firefox 22,81,2017-03-09 +session,121,2,Internet Explorer 20,86,2017-12-01 +session,121,3,Chrome 7,66,2017-10-30 +user,122,Theresa,Iesha,90 +session,122,0,Internet Explorer 34,21,2017-05-20 +session,122,1,Internet Explorer 16,53,2018-11-25 +session,122,2,Internet Explorer 28,81,2017-03-14 +session,122,3,Firefox 21,79,2018-01-26 +session,122,4,Chrome 10,7,2017-03-07 +user,123,Domingo,Paul,70 +session,123,0,Internet Explorer 3,95,2017-07-31 +session,123,1,Chrome 24,53,2017-02-11 +session,123,2,Safari 3,81,2016-10-22 +user,124,Ahmed,Joshua,99 +session,124,0,Firefox 21,19,2017-03-28 +session,124,1,Internet Explorer 49,54,2017-08-14 +session,124,2,Safari 34,31,2017-04-19 +session,124,3,Internet Explorer 37,98,2018-08-25 +session,124,4,Chrome 1,64,2017-07-19 +session,124,5,Safari 17,25,2017-07-13 +session,124,6,Chrome 23,35,2017-10-30 +session,124,7,Safari 50,84,2018-05-25 +session,124,8,Chrome 14,72,2018-05-10 +session,124,9,Chrome 50,50,2017-01-31 +user,125,Isobel,Elwanda,51 +session,125,0,Firefox 50,111,2017-06-22 +session,125,1,Firefox 29,64,2018-10-17 +session,125,2,Safari 45,113,2017-02-04 +session,125,3,Safari 11,17,2016-09-13 +session,125,4,Chrome 14,93,2017-08-19 +session,125,5,Safari 5,35,2016-11-24 +session,125,6,Internet Explorer 12,66,2017-06-03 +session,125,7,Chrome 47,30,2018-11-04 +user,126,Tuyet,Louie,78 +session,126,0,Chrome 41,3,2018-02-07 +session,126,1,Safari 4,64,2017-07-20 +session,126,2,Safari 10,108,2017-07-11 +session,126,3,Chrome 6,60,2018-04-17 +session,126,4,Safari 23,6,2018-04-04 +session,126,5,Firefox 47,44,2017-05-13 +session,126,6,Firefox 37,37,2018-04-18 +session,126,7,Safari 4,23,2016-06-23 +session,126,8,Firefox 23,1,2016-09-23 +session,126,9,Safari 21,63,2017-04-27 +user,127,Tanika,Rufus,94 +session,127,0,Safari 12,4,2018-01-08 +session,127,1,Firefox 43,35,2017-11-23 +session,127,2,Firefox 48,97,2018-11-30 +user,128,Adriene,Athena,26 +session,128,0,Internet Explorer 9,85,2017-08-10 +user,129,Marlon,Lyla,0 +session,129,0,Chrome 28,95,2017-11-13 +session,129,1,Firefox 23,1,2017-09-01 +session,129,2,Safari 42,26,2018-08-12 +session,129,3,Safari 12,89,2018-01-31 +session,129,4,Safari 11,44,2018-07-09 +session,129,5,Firefox 43,7,2019-01-19 +session,129,6,Safari 37,31,2016-08-03 +session,129,7,Chrome 24,60,2017-10-16 +user,130,Beaulah,Titus,85 +session,130,0,Internet Explorer 28,70,2017-07-04 +session,130,1,Internet Explorer 31,92,2017-07-20 +session,130,2,Firefox 29,64,2018-08-09 +session,130,3,Internet Explorer 30,114,2018-07-20 +session,130,4,Internet Explorer 15,67,2017-05-26 +session,130,5,Safari 35,95,2016-12-23 +session,130,6,Internet Explorer 40,49,2018-12-13 +session,130,7,Safari 46,98,2016-06-18 +session,130,8,Internet Explorer 21,97,2017-05-28 +session,130,9,Safari 10,66,2018-05-16 +user,131,Jerold,Giovanna,17 +session,131,0,Internet Explorer 45,77,2018-08-10 +session,131,1,Firefox 46,66,2019-01-27 +session,131,2,Safari 13,36,2017-02-13 +session,131,3,Chrome 41,8,2017-08-09 +session,131,4,Internet Explorer 48,106,2018-03-17 +session,131,5,Safari 20,39,2018-04-04 +session,131,6,Firefox 4,27,2016-05-24 +session,131,7,Internet Explorer 15,13,2017-02-05 +session,131,8,Internet Explorer 7,23,2018-10-31 +session,131,9,Firefox 11,53,2019-02-11 +user,132,Lesley,Asha,31 +session,132,0,Firefox 12,97,2018-06-18 +session,132,1,Safari 10,94,2018-04-23 +session,132,2,Chrome 37,65,2016-12-20 +session,132,3,Safari 11,103,2016-07-02 +session,132,4,Safari 39,89,2018-04-13 +session,132,5,Chrome 37,36,2019-01-13 +session,132,6,Safari 45,78,2018-06-08 +session,132,7,Firefox 2,55,2016-06-17 +user,133,Lavonne,Cathie,18 +session,133,0,Chrome 23,73,2017-11-24 +session,133,1,Internet Explorer 40,89,2018-02-17 +session,133,2,Chrome 41,50,2016-06-27 +session,133,3,Chrome 30,19,2017-03-22 +session,133,4,Chrome 42,2,2017-11-13 +user,134,Jan,Viki,56 +session,134,0,Internet Explorer 6,49,2018-10-17 +session,134,1,Internet Explorer 21,105,2017-03-08 +user,135,Aron,Fairy,70 +session,135,0,Chrome 10,28,2016-08-06 +session,135,1,Safari 9,77,2018-10-14 +session,135,2,Safari 11,47,2017-09-20 +session,135,3,Firefox 43,35,2016-07-25 +user,136,Ronnie,Sung,0 +session,136,0,Internet Explorer 41,81,2018-12-30 +session,136,1,Chrome 39,100,2017-04-07 +session,136,2,Internet Explorer 42,25,2018-05-14 +session,136,3,Internet Explorer 50,30,2016-10-25 +session,136,4,Chrome 5,62,2017-11-21 +session,136,5,Firefox 17,78,2019-01-08 +session,136,6,Safari 7,84,2016-09-13 +session,136,7,Internet Explorer 1,68,2017-01-08 +session,136,8,Safari 15,2,2016-07-15 +session,136,9,Safari 35,44,2018-04-19 +user,137,Lachelle,Rodrigo,69 +session,137,0,Safari 2,52,2018-01-05 +session,137,1,Chrome 33,108,2017-10-12 +session,137,2,Firefox 44,113,2018-02-17 +session,137,3,Safari 15,67,2018-07-24 +session,137,4,Safari 39,115,2018-03-18 +session,137,5,Safari 25,28,2016-09-07 +session,137,6,Firefox 40,53,2017-11-01 +user,138,Justin,Van,66 +session,138,0,Safari 49,4,2018-09-23 +session,138,1,Internet Explorer 21,56,2019-01-29 +session,138,2,Safari 49,25,2018-11-08 +session,138,3,Internet Explorer 12,7,2017-11-05 +session,138,4,Safari 23,50,2017-05-08 +session,138,5,Safari 2,96,2017-03-28 +session,138,6,Internet Explorer 44,82,2016-08-22 +user,139,Theola,Frederica,78 +session,139,0,Firefox 44,107,2017-06-26 +session,139,1,Firefox 3,14,2017-11-28 +session,139,2,Firefox 15,94,2018-07-13 +session,139,3,Safari 31,51,2017-04-05 +session,139,4,Internet Explorer 25,74,2018-12-22 +user,140,Love,Brandy,35 +session,140,0,Chrome 25,27,2018-04-20 +session,140,1,Safari 6,71,2018-03-02 +session,140,2,Chrome 30,16,2016-09-27 +session,140,3,Internet Explorer 38,112,2016-12-09 +session,140,4,Internet Explorer 38,38,2018-09-27 +session,140,5,Firefox 46,18,2018-07-30 +session,140,6,Internet Explorer 48,0,2018-11-14 +user,141,Eleni,Rusty,55 +session,141,0,Safari 21,46,2017-03-05 +user,142,Roland,Shelby,26 +session,142,0,Firefox 4,43,2017-10-22 +session,142,1,Firefox 24,58,2016-11-19 +session,142,2,Chrome 5,73,2016-10-12 +session,142,3,Internet Explorer 12,19,2016-09-28 +session,142,4,Firefox 35,22,2017-05-22 +session,142,5,Chrome 33,4,2017-11-18 +session,142,6,Safari 20,31,2018-05-04 +session,142,7,Safari 4,25,2016-06-10 +user,143,Margot,Rebecca,46 +session,143,0,Chrome 45,110,2017-08-16 +session,143,1,Chrome 46,30,2018-09-29 +session,143,2,Safari 50,62,2018-06-02 +session,143,3,Firefox 11,45,2016-09-07 +session,143,4,Firefox 23,85,2018-12-05 +session,143,5,Safari 34,38,2016-08-10 +session,143,6,Safari 34,5,2017-06-13 +session,143,7,Safari 18,79,2017-01-02 +session,143,8,Firefox 23,57,2018-02-20 +user,144,Sonny,Lulu,20 +session,144,0,Safari 39,54,2016-08-03 +session,144,1,Chrome 5,77,2018-04-07 +session,144,2,Firefox 43,19,2018-02-03 +session,144,3,Chrome 36,103,2018-03-03 +session,144,4,Safari 15,90,2017-07-03 +session,144,5,Safari 35,22,2018-10-31 +session,144,6,Internet Explorer 48,33,2018-12-27 +session,144,7,Internet Explorer 45,109,2018-05-27 +user,145,Dallas,Amy,61 +session,145,0,Chrome 40,19,2018-06-14 +session,145,1,Firefox 43,5,2019-01-18 +session,145,2,Internet Explorer 8,86,2016-06-27 +session,145,3,Safari 24,103,2016-10-30 +user,146,Jamal,Hanh,16 +session,146,0,Chrome 14,9,2018-04-23 +session,146,1,Internet Explorer 4,67,2017-10-25 +session,146,2,Safari 24,104,2017-12-11 +session,146,3,Firefox 17,104,2017-09-06 +session,146,4,Internet Explorer 15,92,2018-07-30 +session,146,5,Internet Explorer 5,61,2016-08-03 +session,146,6,Firefox 8,86,2018-07-05 +session,146,7,Firefox 25,41,2017-01-12 +user,147,Ervin,Gabriel,82 +session,147,0,Safari 4,6,2016-09-07 +user,148,Patsy,Edwardo,89 +session,148,0,Firefox 13,5,2016-11-22 +session,148,1,Chrome 10,64,2018-07-31 +session,148,2,Chrome 10,57,2016-06-25 +session,148,3,Internet Explorer 39,104,2017-11-11 +session,148,4,Firefox 3,115,2018-11-12 +session,148,5,Chrome 23,67,2016-12-05 +session,148,6,Chrome 50,3,2016-11-16 +session,148,7,Chrome 7,110,2016-12-07 +session,148,8,Firefox 12,46,2016-09-16 +user,149,Clay,Retha,42 +session,149,0,Chrome 28,114,2016-10-24 +session,149,1,Internet Explorer 31,115,2018-08-01 +session,149,2,Firefox 42,91,2018-07-08 +session,149,3,Chrome 4,80,2018-04-06 +session,149,4,Firefox 47,5,2017-03-26 +session,149,5,Firefox 1,71,2016-12-15 +session,149,6,Safari 25,14,2017-04-22 +session,149,7,Firefox 11,91,2018-09-10 +user,150,Lindsay,Gail,48 +session,150,0,Safari 26,109,2017-12-16 +session,150,1,Safari 47,91,2018-03-02 +session,150,2,Safari 18,113,2016-09-25 +user,151,Brian,Stella,65 +session,151,0,Firefox 47,26,2018-11-24 +session,151,1,Chrome 42,70,2018-07-11 +session,151,2,Internet Explorer 15,14,2017-10-16 +session,151,3,Chrome 5,69,2017-08-18 +user,152,Newton,Gilda,22 +session,152,0,Firefox 13,50,2018-08-09 +session,152,1,Firefox 23,114,2018-04-16 +session,152,2,Firefox 50,38,2019-01-20 +session,152,3,Chrome 32,93,2018-02-28 +session,152,4,Firefox 6,55,2018-02-20 +session,152,5,Firefox 43,55,2018-06-15 +user,153,Ignacio,Kira,39 +session,153,0,Internet Explorer 41,17,2017-02-13 +session,153,1,Chrome 49,87,2019-02-08 +user,154,Ned,Robbie,15 +session,154,0,Firefox 35,110,2018-05-31 +session,154,1,Safari 6,24,2018-09-30 +session,154,2,Firefox 26,83,2018-01-30 +user,155,Una,Freddy,22 +session,155,0,Chrome 14,81,2017-01-18 +session,155,1,Chrome 48,66,2018-08-25 +session,155,2,Chrome 39,51,2017-02-01 +session,155,3,Chrome 14,63,2019-02-08 +session,155,4,Internet Explorer 30,15,2016-06-26 +session,155,5,Safari 8,28,2016-07-17 +session,155,6,Internet Explorer 12,80,2018-02-16 +session,155,7,Chrome 3,78,2017-09-05 +user,156,Mabelle,Carylon,62 +session,156,0,Safari 15,33,2017-05-01 +user,157,Bo,Vanetta,7 +session,157,0,Safari 7,37,2017-11-10 +session,157,1,Safari 2,96,2017-01-26 +user,158,Stacey,Man,48 +session,158,0,Safari 35,14,2018-09-26 +user,159,Deloras,Sharron,56 +session,159,0,Chrome 12,54,2017-10-10 +session,159,1,Chrome 22,3,2018-03-30 +session,159,2,Safari 31,12,2016-09-03 +user,160,Kristan,Art,2 +session,160,0,Safari 29,108,2016-09-18 +session,160,1,Safari 26,52,2016-12-26 +session,160,2,Firefox 22,10,2017-03-07 +session,160,3,Internet Explorer 22,35,2016-08-20 +session,160,4,Internet Explorer 18,108,2017-01-31 +user,161,Sergio,Almeda,90 +session,161,0,Chrome 14,104,2017-03-22 +user,162,Vance,Heidy,3 +session,162,0,Firefox 25,25,2017-05-08 +session,162,1,Internet Explorer 27,5,2017-02-07 +session,162,2,Chrome 47,2,2016-05-20 +session,162,3,Firefox 14,67,2018-09-12 +session,162,4,Internet Explorer 23,86,2018-12-08 +session,162,5,Internet Explorer 3,53,2018-09-08 +user,163,Sulema,Georgene,22 +session,163,0,Internet Explorer 49,112,2016-10-16 +session,163,1,Safari 1,106,2018-03-13 +session,163,2,Safari 14,83,2018-12-28 +user,164,Verda,Lili,61 +session,164,0,Safari 16,103,2018-09-26 +session,164,1,Safari 36,78,2018-12-06 +session,164,2,Internet Explorer 26,25,2017-08-20 +session,164,3,Chrome 8,45,2017-08-16 +session,164,4,Firefox 30,118,2018-06-08 +session,164,5,Internet Explorer 38,35,2016-11-15 +user,165,Leonarda,Jame,18 +session,165,0,Safari 30,48,2018-01-19 +session,165,1,Internet Explorer 45,94,2017-07-11 +session,165,2,Safari 22,116,2018-03-06 +session,165,3,Internet Explorer 10,11,2018-07-15 +session,165,4,Firefox 7,88,2018-12-21 +session,165,5,Chrome 18,33,2018-05-08 +user,166,Matt,Adrien,89 +session,166,0,Safari 25,105,2016-07-16 +session,166,1,Internet Explorer 16,103,2018-01-19 +session,166,2,Chrome 12,28,2018-11-03 +session,166,3,Safari 3,65,2016-08-17 +user,167,Zetta,Dara,42 +session,167,0,Safari 3,29,2017-11-17 +user,168,Nova,Ollie,97 +session,168,0,Internet Explorer 50,7,2018-02-07 +session,168,1,Safari 42,41,2017-06-16 +session,168,2,Firefox 17,101,2016-05-21 +session,168,3,Safari 20,20,2017-05-02 +session,168,4,Safari 11,40,2016-07-07 +session,168,5,Firefox 41,17,2016-11-22 +session,168,6,Firefox 49,44,2017-10-13 +session,168,7,Chrome 22,101,2018-09-12 +user,169,Erin,Matt,62 +session,169,0,Safari 31,114,2018-10-01 +session,169,1,Chrome 7,3,2017-04-02 +user,170,Randal,Tiffiny,27 +session,170,0,Firefox 25,114,2017-11-09 +session,170,1,Firefox 19,8,2016-06-19 +session,170,2,Safari 9,73,2018-04-12 +session,170,3,Internet Explorer 34,63,2018-07-31 +user,171,Earnest,Gemma,2 +session,171,0,Chrome 32,76,2018-12-18 +session,171,1,Chrome 19,3,2018-03-04 +session,171,2,Safari 10,101,2017-03-16 +session,171,3,Chrome 16,76,2017-08-03 +user,172,Wei,Sharleen,16 +session,172,0,Chrome 5,9,2018-11-16 +session,172,1,Chrome 17,96,2017-01-16 +session,172,2,Safari 24,37,2018-07-13 +session,172,3,Firefox 34,19,2018-03-07 +user,173,Hector,Marin,56 +session,173,0,Firefox 24,94,2018-07-29 +user,174,Robin,Tyrone,54 +session,174,0,Internet Explorer 16,81,2017-04-12 +session,174,1,Chrome 23,36,2017-04-01 +session,174,2,Chrome 50,54,2017-08-30 +user,175,Rosalyn,Inell,34 +session,175,0,Internet Explorer 29,75,2017-11-01 +session,175,1,Internet Explorer 11,72,2018-05-12 +session,175,2,Chrome 46,42,2018-08-10 +session,175,3,Chrome 13,6,2016-12-21 +session,175,4,Firefox 9,55,2016-08-01 +session,175,5,Chrome 5,103,2018-12-02 +user,176,Cory,Maurine,26 +session,176,0,Chrome 34,16,2018-05-22 +session,176,1,Safari 5,31,2017-09-03 +session,176,2,Internet Explorer 22,55,2017-01-06 +session,176,3,Chrome 41,26,2017-04-14 +session,176,4,Internet Explorer 42,4,2017-07-28 +session,176,5,Chrome 45,115,2017-07-12 +session,176,6,Firefox 26,58,2017-03-04 +session,176,7,Safari 26,7,2018-03-06 +session,176,8,Safari 34,60,2016-11-18 +session,176,9,Chrome 10,12,2018-06-30 +user,177,Roxanna,Sina,42 +session,177,0,Internet Explorer 13,108,2017-03-01 +session,177,1,Firefox 13,15,2018-11-16 +session,177,2,Internet Explorer 37,2,2017-11-24 +session,177,3,Safari 5,108,2017-01-01 +session,177,4,Internet Explorer 20,99,2018-06-02 +session,177,5,Firefox 36,54,2018-12-07 +user,178,Marisha,Tijuana,75 +session,178,0,Safari 38,17,2016-11-06 +session,178,1,Internet Explorer 9,67,2016-11-28 +session,178,2,Safari 45,82,2018-05-14 +session,178,3,Firefox 30,85,2017-08-18 +user,179,Tena,Ena,80 +session,179,0,Safari 10,36,2018-08-18 +user,180,German,Florida,78 +session,180,0,Firefox 21,95,2018-04-28 +session,180,1,Chrome 16,91,2017-08-27 +user,181,Cinthia,Angila,10 +session,181,0,Chrome 8,96,2016-12-26 +session,181,1,Chrome 4,50,2016-12-07 +session,181,2,Firefox 8,88,2019-02-08 +session,181,3,Internet Explorer 41,52,2017-10-13 +session,181,4,Safari 29,113,2017-07-21 +session,181,5,Internet Explorer 24,47,2018-12-17 +session,181,6,Internet Explorer 29,82,2018-09-21 +session,181,7,Firefox 18,56,2018-10-20 +user,182,Libbie,Keiko,20 +session,182,0,Chrome 38,67,2016-10-27 +session,182,1,Firefox 31,44,2016-08-20 +session,182,2,Safari 36,27,2017-10-24 +session,182,3,Internet Explorer 45,53,2018-07-31 +session,182,4,Chrome 14,48,2017-06-08 +session,182,5,Firefox 26,82,2016-07-11 +session,182,6,Internet Explorer 24,38,2017-02-04 +user,183,Isobel,Dave,69 +session,183,0,Firefox 28,40,2017-03-13 +session,183,1,Internet Explorer 17,16,2016-10-06 +session,183,2,Safari 1,38,2017-01-20 +session,183,3,Internet Explorer 44,91,2017-06-03 +session,183,4,Internet Explorer 37,5,2016-12-30 +session,183,5,Firefox 36,20,2017-05-02 +session,183,6,Firefox 26,57,2016-08-17 +session,183,7,Safari 21,37,2017-08-12 +session,183,8,Chrome 28,7,2018-02-22 +user,184,Francesco,Fay,0 +session,184,0,Chrome 27,68,2017-08-03 +session,184,1,Safari 7,40,2017-05-10 +session,184,2,Safari 47,94,2018-03-01 +session,184,3,Safari 3,14,2016-09-02 +user,185,Edgar,Temple,53 +session,185,0,Chrome 22,70,2017-06-25 +session,185,1,Firefox 34,8,2018-05-14 +session,185,2,Safari 16,100,2017-11-02 +session,185,3,Safari 40,84,2017-02-24 +session,185,4,Chrome 5,60,2018-08-16 +session,185,5,Firefox 50,76,2018-03-18 +user,186,Mohammad,Lenny,46 +session,186,0,Chrome 28,116,2017-03-29 +session,186,1,Firefox 17,106,2017-09-19 +user,187,Vincenza,Latoya,37 +session,187,0,Firefox 2,52,2016-10-20 +session,187,1,Firefox 40,17,2016-06-27 +session,187,2,Internet Explorer 11,52,2018-10-05 +session,187,3,Safari 9,87,2018-11-04 +session,187,4,Safari 36,6,2016-10-21 +session,187,5,Chrome 16,110,2017-06-07 +session,187,6,Chrome 47,7,2016-08-26 +session,187,7,Safari 21,105,2016-07-08 +user,188,Brent,Kelly,33 +session,188,0,Firefox 17,88,2018-06-11 +session,188,1,Firefox 16,66,2017-11-04 +session,188,2,Safari 26,15,2016-07-03 +session,188,3,Internet Explorer 43,0,2017-11-17 +session,188,4,Chrome 40,23,2017-02-27 +session,188,5,Internet Explorer 16,50,2018-11-22 +user,189,Lincoln,Jillian,60 +session,189,0,Firefox 12,13,2017-08-01 +session,189,1,Firefox 21,109,2018-04-28 +user,190,Iluminada,Kenda,12 +session,190,0,Internet Explorer 20,0,2017-02-23 +session,190,1,Firefox 18,16,2019-01-02 +session,190,2,Chrome 1,29,2018-10-18 +session,190,3,Internet Explorer 32,117,2016-12-08 +session,190,4,Safari 3,104,2018-04-22 +session,190,5,Safari 5,86,2018-05-08 +session,190,6,Firefox 22,18,2018-06-07 +user,191,Eartha,Augusta,78 +session,191,0,Chrome 30,16,2016-05-28 +session,191,1,Safari 36,81,2018-06-28 +session,191,2,Safari 21,71,2017-05-19 +session,191,3,Chrome 2,62,2018-06-23 +session,191,4,Firefox 18,75,2016-11-12 +user,192,Marcelo,Denae,50 +session,192,0,Chrome 31,48,2018-06-12 +session,192,1,Chrome 3,1,2017-02-28 +session,192,2,Firefox 16,98,2018-01-30 +user,193,Shellie,Napoleon,20 +session,193,0,Safari 14,100,2017-08-03 +session,193,1,Internet Explorer 14,112,2018-04-10 +session,193,2,Internet Explorer 22,55,2017-03-15 +session,193,3,Internet Explorer 48,51,2017-05-30 +user,194,Laurence,Donald,41 +session,194,0,Internet Explorer 31,9,2017-10-19 +session,194,1,Chrome 7,30,2018-05-13 +session,194,2,Firefox 17,95,2018-07-28 +session,194,3,Internet Explorer 6,29,2017-07-06 +session,194,4,Firefox 38,31,2017-05-02 +session,194,5,Internet Explorer 19,10,2017-09-21 +session,194,6,Chrome 12,10,2016-11-16 +user,195,Lonnie,Gayle,55 +session,195,0,Internet Explorer 34,53,2016-06-14 +session,195,1,Internet Explorer 26,116,2018-12-30 +session,195,2,Internet Explorer 40,35,2018-01-09 +session,195,3,Chrome 13,92,2017-06-23 +user,196,Charlie,Somer,65 +session,196,0,Firefox 49,77,2017-12-07 +session,196,1,Firefox 4,78,2017-03-31 +session,196,2,Safari 2,49,2017-07-25 +session,196,3,Chrome 25,24,2018-06-06 +session,196,4,Firefox 35,38,2018-08-11 +session,196,5,Chrome 32,102,2018-02-10 +session,196,6,Firefox 31,26,2018-05-10 +session,196,7,Safari 46,14,2017-02-27 +user,197,Berry,Janeth,44 +session,197,0,Chrome 8,95,2017-07-20 +user,198,Trevor,Jeanett,76 +session,198,0,Chrome 31,45,2018-05-13 +session,198,1,Chrome 18,86,2016-09-18 +user,199,Oren,Kim,7 +session,199,0,Firefox 1,34,2017-06-19 +session,199,1,Chrome 44,112,2016-12-07 +session,199,2,Safari 7,27,2016-06-20 +session,199,3,Firefox 4,29,2017-07-22 +session,199,4,Internet Explorer 4,41,2016-07-08 +session,199,5,Safari 42,1,2017-09-11 +session,199,6,Firefox 4,105,2018-10-21 +session,199,7,Firefox 40,93,2017-08-18 +session,199,8,Firefox 13,84,2018-11-20 +user,200,Freddy,Hiram,94 +session,200,0,Safari 49,43,2018-04-01 +session,200,1,Firefox 36,30,2018-04-12 +session,200,2,Chrome 15,111,2018-11-10 +session,200,3,Safari 2,60,2017-06-08 +user,201,Jules,Lucia,36 +session,201,0,Safari 37,78,2016-06-16 +user,202,Christa,Callie,77 +session,202,0,Internet Explorer 1,70,2017-07-15 +session,202,1,Internet Explorer 27,74,2018-02-07 +user,203,Hyun,Raelene,0 +session,203,0,Chrome 9,40,2016-07-11 +user,204,Britni,Nia,48 +session,204,0,Internet Explorer 40,29,2018-05-27 +session,204,1,Chrome 42,99,2016-10-05 +user,205,Caryn,Celia,19 +session,205,0,Safari 43,12,2016-07-20 +user,206,Georgine,Haley,84 +session,206,0,Safari 38,28,2018-03-04 +session,206,1,Safari 18,35,2018-08-27 +session,206,2,Firefox 29,118,2017-12-21 +session,206,3,Internet Explorer 31,28,2017-11-02 +session,206,4,Chrome 43,47,2018-06-12 +session,206,5,Firefox 5,5,2018-08-03 +session,206,6,Chrome 48,97,2017-05-17 +session,206,7,Safari 6,65,2018-02-26 +session,206,8,Chrome 31,46,2017-10-07 +user,207,Jordon,Amiee,15 +session,207,0,Firefox 48,7,2018-02-06 +session,207,1,Firefox 36,17,2016-09-16 +session,207,2,Internet Explorer 8,52,2018-03-25 +session,207,3,Safari 46,71,2018-11-16 +session,207,4,Safari 34,54,2018-05-15 +user,208,Kacy,Shakita,10 +session,208,0,Firefox 46,38,2018-03-02 +session,208,1,Firefox 47,51,2017-11-26 +session,208,2,Safari 28,92,2019-01-16 +session,208,3,Firefox 42,13,2017-05-31 +session,208,4,Safari 2,13,2017-05-29 +session,208,5,Internet Explorer 24,26,2016-10-02 +session,208,6,Firefox 22,73,2018-06-23 +session,208,7,Chrome 11,23,2017-12-12 +user,209,Donovan,Deane,73 +session,209,0,Internet Explorer 44,6,2017-10-09 +session,209,1,Firefox 14,31,2018-12-24 +session,209,2,Chrome 35,64,2017-05-25 +session,209,3,Chrome 8,88,2016-10-31 +session,209,4,Firefox 26,10,2018-08-05 +session,209,5,Chrome 30,6,2017-05-27 +session,209,6,Safari 10,111,2017-06-25 +session,209,7,Chrome 10,42,2016-07-16 +session,209,8,Internet Explorer 18,9,2017-06-17 +user,210,Brandi,Luann,41 +session,210,0,Safari 23,108,2018-03-27 +session,210,1,Internet Explorer 36,21,2017-06-24 +session,210,2,Chrome 15,29,2016-05-23 +session,210,3,Chrome 26,17,2017-02-19 +user,211,Zachery,Franchesca,32 +session,211,0,Chrome 39,52,2016-08-02 +user,212,Augustine,Lupe,55 +session,212,0,Safari 35,80,2018-08-08 +session,212,1,Chrome 45,59,2017-05-06 +session,212,2,Internet Explorer 4,2,2018-02-16 +session,212,3,Safari 19,0,2017-08-30 +session,212,4,Internet Explorer 47,111,2018-03-06 +session,212,5,Internet Explorer 43,119,2017-11-07 +session,212,6,Chrome 40,39,2017-10-27 +session,212,7,Internet Explorer 33,89,2016-12-21 +session,212,8,Chrome 12,5,2016-07-23 +session,212,9,Internet Explorer 49,9,2017-07-01 +user,213,Gabriel,Aline,80 +session,213,0,Firefox 28,56,2018-12-13 +session,213,1,Safari 26,48,2017-06-25 +session,213,2,Chrome 2,87,2018-07-29 +session,213,3,Safari 22,93,2018-10-10 +session,213,4,Safari 41,65,2017-06-22 +session,213,5,Safari 35,111,2017-04-06 +session,213,6,Safari 40,90,2019-01-05 +session,213,7,Safari 41,75,2018-01-08 +user,214,Isaac,Irina,55 +session,214,0,Internet Explorer 43,9,2018-02-06 +session,214,1,Safari 24,30,2018-10-26 +session,214,2,Firefox 45,50,2016-07-05 +session,214,3,Safari 36,48,2017-08-23 +session,214,4,Internet Explorer 26,6,2018-04-30 +session,214,5,Internet Explorer 28,101,2016-12-15 +user,215,Myron,Lacy,63 +session,215,0,Internet Explorer 6,66,2017-07-13 +session,215,1,Internet Explorer 29,23,2018-07-10 +session,215,2,Chrome 18,15,2016-06-18 +user,216,Yong,Heike,3 +session,216,0,Safari 45,67,2016-05-30 +session,216,1,Chrome 45,10,2019-02-02 +session,216,2,Chrome 27,49,2017-09-12 +session,216,3,Internet Explorer 6,116,2019-01-30 +session,216,4,Safari 14,112,2017-04-24 +session,216,5,Chrome 50,3,2016-10-15 +session,216,6,Safari 45,69,2017-04-25 +session,216,7,Chrome 8,38,2017-04-18 +session,216,8,Chrome 9,48,2017-04-04 +user,217,Wilfredo,Jacinto,3 +session,217,0,Chrome 47,80,2016-09-09 +session,217,1,Safari 28,101,2019-01-11 +session,217,2,Firefox 23,89,2017-12-05 +user,218,Dannie,Twanda,42 +session,218,0,Chrome 28,41,2018-10-30 +session,218,1,Safari 10,82,2018-06-16 +session,218,2,Internet Explorer 7,99,2017-01-11 +session,218,3,Internet Explorer 18,42,2017-09-01 +session,218,4,Safari 42,39,2016-07-26 +user,219,Theo,Lottie,32 +session,219,0,Internet Explorer 48,45,2016-07-27 +session,219,1,Firefox 9,102,2018-01-30 +session,219,2,Chrome 44,28,2018-05-04 +session,219,3,Internet Explorer 28,46,2018-08-20 +user,220,Jesenia,Lai,81 +session,220,0,Internet Explorer 28,107,2018-11-30 +session,220,1,Firefox 49,112,2018-02-07 +user,221,Simon,Pearly,17 +session,221,0,Safari 2,99,2018-11-09 +session,221,1,Firefox 4,116,2016-10-16 +session,221,2,Firefox 46,57,2018-06-19 +session,221,3,Safari 20,53,2018-06-11 +session,221,4,Internet Explorer 38,81,2018-01-13 +session,221,5,Firefox 8,45,2017-05-09 +user,222,Eldon,Florencia,36 +session,222,0,Internet Explorer 2,92,2016-11-13 +session,222,1,Firefox 47,2,2016-11-11 +session,222,2,Chrome 25,116,2016-08-21 +session,222,3,Internet Explorer 9,51,2017-06-24 +session,222,4,Internet Explorer 45,113,2017-05-27 +session,222,5,Safari 35,53,2017-03-14 +user,223,Ben,Leisha,23 +session,223,0,Safari 11,101,2019-01-06 +session,223,1,Safari 41,100,2018-05-30 +session,223,2,Internet Explorer 13,77,2017-01-09 +session,223,3,Safari 38,50,2018-05-26 +session,223,4,Firefox 21,18,2017-09-15 +session,223,5,Safari 30,41,2017-05-05 +session,223,6,Internet Explorer 19,53,2017-09-26 +session,223,7,Firefox 38,56,2016-07-29 +session,223,8,Firefox 50,66,2017-04-27 +user,224,Daron,Marshall,64 +session,224,0,Chrome 11,85,2018-04-09 +session,224,1,Internet Explorer 17,106,2018-03-06 +session,224,2,Safari 9,41,2017-03-05 +session,224,3,Chrome 3,54,2018-08-27 +user,225,Melva,Buena,89 +session,225,0,Firefox 31,86,2017-05-18 +session,225,1,Firefox 11,25,2018-01-23 +session,225,2,Internet Explorer 46,28,2017-02-02 +session,225,3,Safari 12,69,2018-01-13 +session,225,4,Safari 18,89,2019-01-16 +session,225,5,Safari 8,40,2017-07-22 +session,225,6,Internet Explorer 28,76,2019-01-13 +session,225,7,Internet Explorer 37,61,2016-08-20 +session,225,8,Firefox 47,72,2018-04-10 +user,226,Andres,Broderick,68 +session,226,0,Safari 29,96,2016-07-13 +user,227,Ron,Lanora,93 +session,227,0,Chrome 48,106,2017-02-18 +session,227,1,Internet Explorer 15,28,2018-07-31 +user,228,Olen,Donn,31 +session,228,0,Firefox 14,35,2017-12-21 +session,228,1,Safari 16,20,2017-06-11 +session,228,2,Chrome 48,109,2017-03-07 +session,228,3,Firefox 1,32,2017-05-25 +user,229,Caroll,Kate,42 +session,229,0,Internet Explorer 41,32,2018-06-09 +session,229,1,Firefox 47,37,2018-01-22 +session,229,2,Safari 20,75,2018-04-21 +session,229,3,Safari 47,52,2017-10-09 +session,229,4,Firefox 37,96,2017-05-14 +session,229,5,Safari 38,50,2018-08-23 +session,229,6,Chrome 20,27,2018-03-27 +user,230,Shana,Hobert,79 +session,230,0,Chrome 39,33,2016-09-02 +session,230,1,Internet Explorer 23,14,2017-09-30 +session,230,2,Internet Explorer 43,55,2016-12-03 +session,230,3,Internet Explorer 41,22,2019-02-10 +session,230,4,Internet Explorer 30,113,2018-08-18 +session,230,5,Safari 4,3,2016-05-19 +session,230,6,Firefox 9,76,2017-01-09 +user,231,Phil,Moira,64 +session,231,0,Safari 42,85,2017-06-17 +session,231,1,Chrome 47,98,2016-09-28 +session,231,2,Internet Explorer 26,3,2016-12-24 +session,231,3,Firefox 24,10,2017-10-29 +session,231,4,Safari 37,22,2016-11-16 +session,231,5,Chrome 23,38,2017-06-08 +session,231,6,Chrome 7,91,2018-08-22 +session,231,7,Chrome 50,90,2017-08-24 +user,232,Efrain,Daniele,86 +session,232,0,Chrome 31,45,2017-07-24 +session,232,1,Safari 25,24,2019-02-04 +session,232,2,Safari 43,1,2018-04-14 +session,232,3,Internet Explorer 47,23,2017-08-06 +user,233,Ria,Barbera,27 +session,233,0,Internet Explorer 38,28,2017-03-14 +session,233,1,Firefox 19,62,2016-09-11 +session,233,2,Firefox 23,18,2017-11-03 +session,233,3,Firefox 13,29,2016-10-31 +session,233,4,Firefox 3,95,2018-07-09 +session,233,5,Firefox 17,18,2016-09-10 +session,233,6,Safari 26,34,2017-07-18 +session,233,7,Firefox 37,105,2016-09-13 +user,234,Percy,Tess,4 +session,234,0,Safari 2,0,2018-02-18 +session,234,1,Chrome 2,40,2017-02-09 +session,234,2,Chrome 17,65,2018-07-27 +session,234,3,Safari 24,107,2017-12-02 +session,234,4,Safari 2,77,2019-01-27 +session,234,5,Firefox 28,15,2016-08-21 +session,234,6,Safari 23,89,2016-07-13 +session,234,7,Safari 27,94,2018-10-14 +session,234,8,Safari 14,27,2017-05-17 +session,234,9,Chrome 29,11,2017-07-04 +user,235,Curtis,Eleni,16 +session,235,0,Chrome 50,117,2017-01-04 +session,235,1,Chrome 5,103,2018-03-08 +session,235,2,Chrome 2,33,2016-08-05 +session,235,3,Internet Explorer 11,53,2018-08-18 +user,236,Delmar,Chantell,3 +session,236,0,Firefox 23,16,2016-10-22 +session,236,1,Firefox 5,34,2016-11-10 +user,237,Lenora,Lynwood,78 +session,237,0,Firefox 10,63,2018-08-09 +session,237,1,Safari 37,92,2018-09-10 +session,237,2,Chrome 15,62,2018-04-09 +session,237,3,Firefox 5,7,2018-10-20 +user,238,Jamey,Ignacio,93 +session,238,0,Firefox 45,95,2017-06-11 +session,238,1,Safari 9,24,2017-10-03 +session,238,2,Firefox 24,3,2018-11-01 +session,238,3,Internet Explorer 48,99,2018-07-04 +session,238,4,Firefox 37,71,2017-10-03 +session,238,5,Firefox 38,110,2018-12-31 +session,238,6,Safari 40,108,2017-02-08 +user,239,Marvin,Freddie,7 +session,239,0,Safari 3,86,2016-05-26 +session,239,1,Safari 50,62,2018-04-05 +session,239,2,Chrome 31,78,2016-10-04 +user,240,Chance,Willa,48 +session,240,0,Chrome 37,73,2018-05-25 +session,240,1,Safari 5,99,2018-02-19 +session,240,2,Firefox 18,100,2017-12-15 +session,240,3,Firefox 10,112,2017-12-20 +session,240,4,Safari 13,91,2018-11-12 +session,240,5,Chrome 44,98,2016-11-09 +session,240,6,Internet Explorer 22,63,2016-06-21 +session,240,7,Chrome 40,74,2017-05-18 +user,241,Petrina,Carmelita,1 +session,241,0,Safari 32,75,2017-10-24 +session,241,1,Safari 30,1,2017-07-01 +session,241,2,Safari 29,17,2016-06-02 +session,241,3,Chrome 22,107,2018-08-20 +session,241,4,Chrome 24,118,2018-03-08 +session,241,5,Chrome 13,99,2017-09-29 +session,241,6,Internet Explorer 38,65,2016-11-05 +session,241,7,Safari 8,25,2018-11-24 +session,241,8,Internet Explorer 7,5,2016-11-24 +user,242,Kathrin,Clement,29 +session,242,0,Chrome 39,86,2018-01-15 +session,242,1,Firefox 49,73,2017-10-23 +session,242,2,Internet Explorer 17,61,2017-02-10 +user,243,Brooks,Theron,80 +session,243,0,Safari 47,54,2018-12-10 +session,243,1,Firefox 43,110,2016-12-29 +session,243,2,Safari 46,92,2017-05-28 +session,243,3,Internet Explorer 1,54,2017-11-03 +session,243,4,Chrome 2,98,2018-08-04 +user,244,Brain,Dewitt,78 +session,244,0,Safari 44,31,2019-02-04 +session,244,1,Internet Explorer 44,48,2016-07-22 +session,244,2,Firefox 25,70,2018-12-09 +session,244,3,Firefox 43,62,2018-09-29 +session,244,4,Safari 1,10,2016-10-15 +session,244,5,Safari 47,63,2018-03-11 +user,245,Brent,Elia,86 +session,245,0,Internet Explorer 50,116,2018-03-12 +user,246,Philip,Cecelia,17 +session,246,0,Firefox 45,43,2018-07-15 +session,246,1,Chrome 50,64,2017-08-18 +session,246,2,Chrome 8,59,2018-08-22 +user,247,Calvin,Della,90 +session,247,0,Internet Explorer 15,23,2017-01-25 +user,248,Warren,Iris,72 +session,248,0,Chrome 26,62,2017-10-18 +user,249,Isidra,Dorsey,83 +session,249,0,Internet Explorer 3,77,2018-08-10 +session,249,1,Safari 36,87,2018-11-22 +session,249,2,Firefox 9,95,2018-12-26 +session,249,3,Safari 19,39,2017-04-21 +user,250,Yen,Claudia,60 +session,250,0,Chrome 49,41,2018-07-08 +session,250,1,Internet Explorer 6,100,2017-01-28 +session,250,2,Firefox 19,93,2017-08-09 +user,251,Mora,Ha,86 +session,251,0,Internet Explorer 1,1,2018-10-30 +session,251,1,Firefox 15,95,2018-04-13 +session,251,2,Chrome 22,10,2016-05-20 +session,251,3,Safari 33,103,2018-10-02 +session,251,4,Safari 43,67,2019-01-11 +session,251,5,Firefox 24,50,2019-01-05 +session,251,6,Firefox 49,36,2016-09-21 +session,251,7,Internet Explorer 48,19,2018-01-20 +session,251,8,Safari 11,52,2017-08-08 +user,252,Dorian,Deane,15 +session,252,0,Safari 23,86,2017-04-23 +session,252,1,Internet Explorer 40,87,2017-06-14 +session,252,2,Internet Explorer 47,29,2017-07-21 +session,252,3,Chrome 27,4,2018-05-27 +session,252,4,Safari 16,0,2018-10-07 +session,252,5,Internet Explorer 26,54,2018-12-20 +session,252,6,Firefox 14,66,2017-08-05 +session,252,7,Internet Explorer 27,13,2017-01-28 +user,253,Shawn,Jaimee,79 +session,253,0,Internet Explorer 21,68,2017-01-19 +session,253,1,Internet Explorer 35,62,2017-04-29 +session,253,2,Internet Explorer 1,64,2017-12-29 +session,253,3,Chrome 36,2,2019-01-21 +session,253,4,Firefox 19,43,2018-03-10 +user,254,Cori,Divina,16 +session,254,0,Internet Explorer 30,116,2017-07-27 +session,254,1,Internet Explorer 42,74,2018-10-25 +session,254,2,Firefox 30,21,2018-12-20 +session,254,3,Firefox 13,57,2018-12-01 +session,254,4,Chrome 3,14,2018-07-16 +session,254,5,Firefox 34,99,2017-02-28 +user,255,Garret,Georgann,75 +session,255,0,Chrome 8,33,2017-11-14 +session,255,1,Chrome 43,51,2016-08-06 +session,255,2,Internet Explorer 21,20,2019-01-11 +session,255,3,Chrome 37,102,2018-11-16 +session,255,4,Safari 11,66,2016-08-27 +session,255,5,Internet Explorer 23,47,2017-10-17 +session,255,6,Internet Explorer 14,43,2019-01-11 +session,255,7,Firefox 27,60,2016-12-15 +session,255,8,Firefox 33,83,2018-08-23 +user,256,Theo,Tricia,82 +session,256,0,Internet Explorer 32,71,2017-01-25 +user,257,Libby,Lera,12 +session,257,0,Firefox 24,86,2016-12-01 +session,257,1,Safari 38,104,2017-03-21 +session,257,2,Chrome 16,47,2019-01-04 +session,257,3,Safari 14,25,2018-07-27 +session,257,4,Chrome 5,112,2018-03-27 +session,257,5,Firefox 10,43,2018-02-04 +session,257,6,Firefox 15,82,2018-05-25 +session,257,7,Chrome 29,38,2017-05-17 +session,257,8,Firefox 41,4,2018-01-09 +session,257,9,Firefox 8,96,2017-05-15 +user,258,Evalyn,Abe,39 +session,258,0,Safari 47,2,2018-09-21 +session,258,1,Safari 36,117,2017-07-31 +session,258,2,Internet Explorer 14,53,2016-12-06 +session,258,3,Internet Explorer 24,103,2018-10-07 +session,258,4,Safari 42,28,2018-05-24 +session,258,5,Internet Explorer 24,95,2018-10-15 +user,259,Alexandra,Malia,95 +session,259,0,Firefox 41,70,2017-06-13 +session,259,1,Internet Explorer 34,70,2018-12-21 +session,259,2,Firefox 13,81,2018-03-10 +session,259,3,Internet Explorer 28,38,2017-03-21 +session,259,4,Chrome 6,109,2016-05-29 +session,259,5,Internet Explorer 45,102,2018-11-22 +session,259,6,Firefox 21,8,2017-01-13 +session,259,7,Internet Explorer 45,84,2017-01-15 +user,260,Tamisha,Camelia,84 +session,260,0,Safari 25,93,2017-06-10 +session,260,1,Internet Explorer 46,110,2016-09-26 +session,260,2,Firefox 18,107,2018-04-28 +session,260,3,Chrome 28,52,2018-07-07 +session,260,4,Internet Explorer 29,98,2017-10-20 +session,260,5,Safari 14,116,2018-04-22 +session,260,6,Firefox 27,15,2017-05-30 +session,260,7,Firefox 33,111,2018-02-11 +session,260,8,Safari 23,8,2018-11-13 +session,260,9,Chrome 25,117,2017-08-12 +user,261,Walker,Gerry,71 +session,261,0,Chrome 45,61,2018-02-17 +session,261,1,Firefox 11,75,2016-11-05 +session,261,2,Internet Explorer 15,61,2018-04-29 +session,261,3,Safari 17,56,2016-12-19 +user,262,Tuan,Maire,13 +session,262,0,Firefox 15,98,2016-08-08 +session,262,1,Chrome 30,35,2017-09-09 +user,263,Elvin,Ayesha,77 +session,263,0,Firefox 43,16,2019-02-04 +session,263,1,Chrome 5,57,2017-03-26 +session,263,2,Firefox 49,66,2017-08-18 +session,263,3,Chrome 3,103,2017-12-06 +user,264,Stanton,Margareta,11 +session,264,0,Firefox 19,30,2018-12-28 +session,264,1,Internet Explorer 16,91,2018-06-03 +session,264,2,Safari 16,107,2017-08-17 +session,264,3,Firefox 4,6,2016-07-11 +session,264,4,Firefox 12,13,2017-05-22 +session,264,5,Chrome 20,38,2017-02-04 +session,264,6,Chrome 2,41,2016-12-18 +user,265,Delora,Porter,44 +session,265,0,Chrome 18,72,2018-08-27 +session,265,1,Firefox 45,18,2016-11-08 +session,265,2,Chrome 7,25,2018-03-15 +session,265,3,Chrome 27,41,2018-11-19 +session,265,4,Safari 30,15,2018-08-26 +session,265,5,Internet Explorer 7,81,2018-11-05 +session,265,6,Internet Explorer 3,26,2016-06-06 +session,265,7,Chrome 31,66,2018-02-21 +session,265,8,Firefox 6,114,2016-09-21 +session,265,9,Chrome 2,101,2018-03-06 +user,266,Jene,Margart,37 +session,266,0,Chrome 41,33,2017-07-19 +session,266,1,Safari 48,103,2017-09-15 +session,266,2,Safari 11,70,2018-08-23 +session,266,3,Safari 31,28,2017-06-23 +user,267,Vertie,Rob,83 +session,267,0,Safari 50,113,2017-12-05 +session,267,1,Chrome 26,22,2016-07-27 +session,267,2,Firefox 34,114,2017-07-18 +session,267,3,Chrome 18,56,2017-11-09 +user,268,Jude,Rowena,47 +session,268,0,Internet Explorer 20,51,2018-05-05 +session,268,1,Firefox 36,14,2017-05-19 +session,268,2,Firefox 41,87,2018-10-21 +session,268,3,Safari 31,3,2017-08-14 +session,268,4,Safari 29,13,2016-08-06 +session,268,5,Firefox 7,31,2017-07-10 +session,268,6,Firefox 9,77,2017-12-28 +user,269,Sachiko,Marlys,68 +session,269,0,Chrome 28,61,2017-02-20 +session,269,1,Firefox 37,2,2016-08-18 +user,270,Walker,Qiana,23 +session,270,0,Firefox 49,13,2017-04-11 +session,270,1,Safari 42,114,2017-05-15 +session,270,2,Firefox 23,84,2017-05-23 +session,270,3,Chrome 23,67,2018-01-01 +user,271,Matilda,Anastacia,58 +session,271,0,Safari 26,79,2016-06-27 +session,271,1,Safari 8,89,2016-05-30 +session,271,2,Firefox 32,97,2018-10-25 +session,271,3,Firefox 11,87,2017-01-25 +session,271,4,Chrome 27,99,2016-08-27 +session,271,5,Chrome 2,111,2017-11-25 +session,271,6,Safari 37,116,2017-05-04 +user,272,Cory,Freda,87 +session,272,0,Internet Explorer 2,85,2018-01-26 +session,272,1,Safari 10,112,2019-01-11 +session,272,2,Internet Explorer 43,33,2018-10-13 +session,272,3,Internet Explorer 30,89,2019-02-09 +session,272,4,Chrome 25,96,2016-10-14 +session,272,5,Internet Explorer 27,116,2018-07-08 +session,272,6,Chrome 1,37,2019-02-03 +session,272,7,Internet Explorer 41,13,2017-12-19 +session,272,8,Firefox 33,71,2017-03-26 +user,273,Carlene,Alexis,49 +session,273,0,Internet Explorer 11,13,2018-08-30 +user,274,Milagros,Loreta,35 +session,274,0,Internet Explorer 4,40,2018-06-20 +session,274,1,Internet Explorer 12,114,2018-02-04 +session,274,2,Internet Explorer 5,101,2017-12-05 +session,274,3,Firefox 42,89,2016-12-12 +session,274,4,Firefox 4,94,2017-07-04 +user,275,Leonardo,Antonette,95 +session,275,0,Internet Explorer 47,94,2018-02-01 +session,275,1,Firefox 3,53,2016-08-12 +session,275,2,Safari 24,42,2018-08-08 +session,275,3,Safari 9,32,2016-10-11 +session,275,4,Safari 24,80,2016-09-22 +session,275,5,Chrome 33,31,2016-08-02 +session,275,6,Chrome 29,59,2017-11-01 +session,275,7,Firefox 25,65,2016-09-17 +user,276,Alyce,Susana,69 +session,276,0,Chrome 42,119,2016-11-28 +session,276,1,Chrome 1,75,2016-12-04 +session,276,2,Chrome 29,65,2018-10-04 +user,277,Miquel,Tori,99 +session,277,0,Chrome 34,47,2018-04-05 +session,277,1,Firefox 9,85,2017-09-06 +session,277,2,Safari 47,59,2017-02-05 +user,278,Ming,Rachelle,49 +session,278,0,Safari 43,9,2019-01-08 +user,279,Sonya,Rubie,6 +session,279,0,Safari 13,76,2018-03-08 +session,279,1,Firefox 1,32,2016-10-12 +session,279,2,Firefox 11,74,2017-04-02 +session,279,3,Safari 24,79,2016-10-27 +session,279,4,Internet Explorer 42,68,2018-05-02 +session,279,5,Safari 16,42,2016-12-26 +session,279,6,Safari 40,32,2018-12-16 +session,279,7,Safari 24,36,2016-06-13 +user,280,Leticia,Elana,20 +session,280,0,Safari 39,58,2017-11-23 +session,280,1,Internet Explorer 1,17,2016-09-12 +session,280,2,Firefox 48,0,2017-05-19 +session,280,3,Chrome 24,78,2017-03-05 +session,280,4,Internet Explorer 7,9,2016-07-02 +session,280,5,Chrome 19,118,2017-05-21 +session,280,6,Firefox 46,110,2017-12-06 +session,280,7,Chrome 38,93,2018-05-06 +user,281,Geoffrey,Leif,76 +session,281,0,Internet Explorer 19,109,2018-09-11 +session,281,1,Chrome 19,60,2017-12-21 +session,281,2,Internet Explorer 18,60,2018-12-28 +session,281,3,Internet Explorer 29,35,2018-07-24 +session,281,4,Internet Explorer 30,86,2016-08-21 +user,282,Perry,Shila,49 +session,282,0,Safari 44,56,2017-09-23 +session,282,1,Firefox 31,62,2019-01-24 +session,282,2,Chrome 13,1,2018-09-11 +session,282,3,Chrome 38,16,2018-02-28 +session,282,4,Chrome 31,56,2017-03-19 +session,282,5,Firefox 3,70,2018-02-21 +session,282,6,Safari 47,58,2017-05-04 +session,282,7,Safari 45,73,2017-02-06 +session,282,8,Internet Explorer 46,94,2018-03-15 +session,282,9,Safari 50,89,2017-11-25 +user,283,Johnathon,Kimberlee,26 +session,283,0,Firefox 5,19,2017-05-22 +session,283,1,Internet Explorer 47,89,2017-08-27 +session,283,2,Internet Explorer 6,118,2018-11-28 +session,283,3,Internet Explorer 17,44,2017-01-06 +session,283,4,Firefox 24,92,2017-07-16 +session,283,5,Internet Explorer 3,106,2018-11-28 +session,283,6,Internet Explorer 4,45,2018-07-25 +session,283,7,Chrome 29,94,2017-06-18 +session,283,8,Chrome 44,109,2016-12-19 +user,284,Shanti,Derrick,52 +session,284,0,Chrome 43,17,2017-02-01 +session,284,1,Internet Explorer 33,17,2018-07-30 +session,284,2,Firefox 7,22,2018-11-12 +session,284,3,Internet Explorer 36,58,2017-11-08 +session,284,4,Firefox 10,42,2017-02-14 +session,284,5,Internet Explorer 41,73,2018-06-13 +session,284,6,Chrome 5,31,2018-10-25 +session,284,7,Safari 45,70,2019-01-10 +session,284,8,Firefox 12,19,2017-12-11 +user,285,Peggy,Wynona,98 +session,285,0,Safari 2,66,2016-08-24 +session,285,1,Chrome 36,20,2018-07-21 +session,285,2,Chrome 37,1,2017-09-09 +session,285,3,Chrome 17,61,2017-05-04 +session,285,4,Safari 3,28,2018-07-08 +session,285,5,Firefox 31,92,2018-12-25 +session,285,6,Firefox 11,56,2017-04-25 +session,285,7,Safari 6,100,2018-08-24 +user,286,Mable,Nikia,90 +session,286,0,Firefox 36,82,2016-07-07 +session,286,1,Internet Explorer 24,5,2018-01-28 +session,286,2,Firefox 47,115,2017-02-16 +session,286,3,Chrome 30,92,2019-01-16 +session,286,4,Safari 49,106,2018-12-21 +user,287,Gaston,Carter,43 +session,287,0,Safari 33,67,2016-08-16 +session,287,1,Firefox 7,27,2018-05-17 +session,287,2,Chrome 41,54,2018-07-10 +user,288,Anderson,Terri,39 +session,288,0,Firefox 24,0,2017-01-26 +session,288,1,Internet Explorer 50,24,2018-08-09 +session,288,2,Internet Explorer 5,105,2018-06-11 +session,288,3,Safari 41,118,2018-03-16 +session,288,4,Safari 8,106,2017-02-16 +user,289,Mike,Debbie,10 +session,289,0,Chrome 12,3,2016-09-01 +session,289,1,Safari 14,112,2017-10-25 +session,289,2,Safari 12,107,2018-09-29 +session,289,3,Safari 22,84,2017-08-11 +session,289,4,Firefox 15,84,2016-07-17 +session,289,5,Safari 43,11,2017-05-25 +session,289,6,Chrome 18,104,2017-04-24 +session,289,7,Internet Explorer 12,62,2018-07-17 +session,289,8,Internet Explorer 13,33,2016-07-23 +session,289,9,Firefox 29,50,2017-04-17 +user,290,Arron,Carlotta,45 +session,290,0,Safari 10,3,2016-08-20 +session,290,1,Internet Explorer 1,108,2018-03-18 +session,290,2,Internet Explorer 29,105,2016-09-13 +user,291,Marcel,Abdul,51 +session,291,0,Internet Explorer 44,34,2018-11-17 +session,291,1,Internet Explorer 9,35,2016-09-30 +session,291,2,Chrome 27,73,2017-05-24 +session,291,3,Chrome 31,37,2018-02-06 +session,291,4,Firefox 38,85,2016-11-06 +session,291,5,Chrome 23,43,2019-01-17 +session,291,6,Firefox 13,103,2017-01-13 +user,292,Vickie,Lakendra,93 +session,292,0,Chrome 37,32,2018-10-14 +session,292,1,Safari 29,115,2017-04-22 +session,292,2,Safari 18,119,2018-09-23 +user,293,Dino,Shemika,16 +session,293,0,Internet Explorer 23,92,2016-12-27 +session,293,1,Safari 29,101,2018-06-25 +session,293,2,Internet Explorer 4,8,2016-12-17 +session,293,3,Firefox 36,10,2016-10-14 +user,294,Cornelius,Tisa,20 +session,294,0,Safari 41,82,2016-09-08 +session,294,1,Safari 21,22,2017-01-24 +user,295,Naoma,Harrison,83 +session,295,0,Internet Explorer 21,91,2016-07-15 +session,295,1,Internet Explorer 30,87,2016-07-16 +session,295,2,Internet Explorer 26,47,2017-10-30 +session,295,3,Firefox 28,36,2017-01-29 +session,295,4,Safari 45,80,2017-03-24 +session,295,5,Chrome 35,96,2018-04-26 +user,296,Crysta,Gwen,52 +session,296,0,Internet Explorer 47,92,2017-01-02 +session,296,1,Safari 9,72,2017-12-31 +session,296,2,Firefox 40,35,2017-03-24 +session,296,3,Chrome 24,77,2017-12-26 +session,296,4,Firefox 42,101,2018-06-22 +session,296,5,Safari 39,45,2018-02-19 +session,296,6,Firefox 36,61,2018-06-05 +session,296,7,Internet Explorer 1,70,2017-11-03 +session,296,8,Safari 25,60,2016-11-03 +session,296,9,Chrome 40,36,2018-08-07 +user,297,Liberty,Billie,74 +session,297,0,Internet Explorer 39,103,2016-12-31 +session,297,1,Firefox 28,0,2018-12-25 +session,297,2,Chrome 37,77,2017-07-08 +session,297,3,Firefox 16,48,2017-12-14 +session,297,4,Safari 23,22,2018-06-25 +session,297,5,Safari 44,21,2018-09-19 +session,297,6,Internet Explorer 12,52,2017-04-24 +session,297,7,Firefox 6,46,2017-05-25 +session,297,8,Firefox 12,57,2016-11-24 +user,298,Demetria,Daysi,42 +session,298,0,Chrome 44,27,2016-07-20 +session,298,1,Chrome 50,58,2017-04-13 +session,298,2,Safari 40,90,2019-01-17 +session,298,3,Internet Explorer 44,96,2018-05-27 +user,299,Lady,Gricelda,8 +session,299,0,Firefox 28,88,2017-08-16 +session,299,1,Chrome 11,14,2017-11-17 +session,299,2,Chrome 25,10,2018-09-25 +session,299,3,Safari 17,83,2017-10-21 +session,299,4,Safari 16,81,2017-07-05 +session,299,5,Chrome 26,40,2016-10-17 +session,299,6,Chrome 3,103,2018-03-04 +session,299,7,Chrome 24,70,2017-08-06 +user,300,Sulema,Daryl,99 +session,300,0,Internet Explorer 39,35,2018-01-16 +session,300,1,Safari 1,5,2016-10-22 +session,300,2,Firefox 10,61,2017-04-03 +session,300,3,Safari 37,71,2017-08-03 +user,301,Rachael,Lauryn,78 +session,301,0,Safari 7,51,2017-12-17 +user,302,Margarito,Arden,36 +session,302,0,Internet Explorer 33,23,2018-04-26 +session,302,1,Firefox 40,83,2018-10-06 +session,302,2,Chrome 5,118,2018-10-22 +session,302,3,Safari 25,17,2019-01-30 +session,302,4,Internet Explorer 34,95,2017-03-20 +session,302,5,Chrome 4,31,2018-11-06 +session,302,6,Internet Explorer 9,34,2017-04-24 +session,302,7,Firefox 49,68,2018-08-22 +session,302,8,Internet Explorer 35,83,2017-08-28 +user,303,Cletus,Jamel,28 +session,303,0,Chrome 18,37,2017-05-01 +session,303,1,Safari 38,30,2017-08-05 +session,303,2,Chrome 29,62,2016-08-08 +session,303,3,Safari 7,84,2016-11-14 +session,303,4,Internet Explorer 31,113,2016-07-24 +session,303,5,Firefox 6,90,2016-10-14 +session,303,6,Firefox 22,47,2018-12-25 +session,303,7,Firefox 41,15,2016-06-10 +session,303,8,Internet Explorer 50,3,2017-08-07 +user,304,Roscoe,Greg,28 +session,304,0,Firefox 28,99,2019-02-09 +session,304,1,Safari 29,49,2018-01-27 +session,304,2,Safari 9,61,2018-06-22 +session,304,3,Chrome 45,86,2018-05-20 +session,304,4,Safari 28,66,2017-07-06 +session,304,5,Chrome 32,92,2017-07-07 +session,304,6,Safari 26,25,2017-07-24 +user,305,Cody,Henry,36 +session,305,0,Safari 10,21,2016-11-05 +session,305,1,Internet Explorer 2,11,2016-05-23 +session,305,2,Chrome 5,1,2016-10-02 +user,306,Reba,Delena,33 +session,306,0,Chrome 36,37,2017-06-03 +session,306,1,Firefox 39,56,2018-10-26 +session,306,2,Chrome 34,108,2017-07-24 +session,306,3,Firefox 21,67,2018-07-11 +session,306,4,Internet Explorer 5,59,2018-01-29 +session,306,5,Firefox 43,102,2017-08-04 +session,306,6,Chrome 45,74,2017-03-20 +session,306,7,Internet Explorer 39,77,2017-07-04 +session,306,8,Internet Explorer 33,79,2017-05-31 +user,307,Moshe,Nora,80 +session,307,0,Safari 4,32,2016-06-10 +session,307,1,Safari 19,11,2018-05-18 +user,308,Lai,Christie,98 +session,308,0,Chrome 47,38,2017-11-10 +session,308,1,Chrome 10,81,2016-09-12 +session,308,2,Firefox 28,87,2018-08-18 +user,309,Anabel,Shera,99 +session,309,0,Internet Explorer 16,34,2017-02-25 +session,309,1,Firefox 23,57,2016-07-06 +session,309,2,Firefox 34,37,2018-03-03 +session,309,3,Internet Explorer 12,107,2017-09-20 +session,309,4,Internet Explorer 36,22,2017-10-28 +user,310,Willie,Heidi,90 +session,310,0,Chrome 42,76,2017-08-25 +session,310,1,Internet Explorer 20,112,2018-12-01 +session,310,2,Safari 36,117,2018-11-15 +session,310,3,Firefox 24,59,2016-09-13 +user,311,Romeo,Alison,37 +session,311,0,Safari 33,92,2017-02-25 +session,311,1,Firefox 25,109,2017-09-04 +session,311,2,Chrome 37,77,2016-12-05 +session,311,3,Firefox 35,31,2017-05-23 +session,311,4,Internet Explorer 46,1,2017-11-11 +session,311,5,Safari 19,27,2017-05-24 +user,312,Cary,Kasey,64 +session,312,0,Internet Explorer 13,11,2017-01-05 +session,312,1,Firefox 27,3,2016-11-22 +session,312,2,Safari 38,107,2017-08-13 +session,312,3,Firefox 12,37,2016-06-16 +session,312,4,Internet Explorer 50,51,2016-06-26 +user,313,Whitney,Yolando,50 +session,313,0,Safari 49,80,2018-04-23 +session,313,1,Safari 48,86,2018-07-23 +session,313,2,Safari 8,57,2018-10-03 +session,313,3,Internet Explorer 20,72,2016-09-03 +user,314,Juan,Kelli,56 +session,314,0,Safari 50,30,2016-11-04 +session,314,1,Firefox 2,43,2018-06-16 +session,314,2,Internet Explorer 33,8,2017-06-21 +user,315,Brandy,Beryl,9 +session,315,0,Internet Explorer 47,14,2017-07-30 +session,315,1,Safari 42,87,2017-07-31 +session,315,2,Firefox 25,42,2017-10-17 +session,315,3,Internet Explorer 50,1,2018-04-06 +user,316,Walker,Susanna,58 +session,316,0,Firefox 4,14,2017-04-09 +session,316,1,Firefox 35,75,2018-11-14 +session,316,2,Chrome 34,51,2018-02-11 +session,316,3,Safari 20,20,2019-01-25 +session,316,4,Chrome 50,5,2016-12-15 +session,316,5,Internet Explorer 9,37,2017-07-24 +session,316,6,Internet Explorer 30,39,2018-02-05 +user,317,Guy,Bette,96 +session,317,0,Chrome 11,23,2017-04-26 +user,318,Loyce,Barb,49 +session,318,0,Internet Explorer 2,81,2018-10-16 +session,318,1,Safari 34,51,2018-05-01 +session,318,2,Safari 48,107,2017-11-19 +session,318,3,Safari 13,2,2017-02-10 +session,318,4,Safari 18,20,2016-09-24 +session,318,5,Chrome 7,100,2017-06-07 +session,318,6,Chrome 48,60,2017-11-14 +session,318,7,Safari 15,77,2017-07-02 +session,318,8,Firefox 49,99,2018-01-06 +session,318,9,Firefox 33,75,2017-03-31 +user,319,Marilee,Queenie,44 +session,319,0,Chrome 41,59,2016-08-26 +session,319,1,Safari 3,10,2017-05-31 +session,319,2,Chrome 7,101,2017-04-17 +session,319,3,Safari 36,24,2017-04-13 +session,319,4,Chrome 39,10,2017-02-13 +session,319,5,Chrome 28,19,2016-06-19 +session,319,6,Internet Explorer 27,90,2017-02-17 +session,319,7,Chrome 42,49,2017-12-06 +user,320,Tangela,Salley,32 +session,320,0,Chrome 28,115,2017-02-03 +session,320,1,Firefox 28,51,2019-01-29 +session,320,2,Internet Explorer 46,7,2016-11-12 +session,320,3,Firefox 46,59,2016-08-06 +session,320,4,Safari 4,83,2017-08-27 +session,320,5,Firefox 9,3,2018-08-08 +session,320,6,Internet Explorer 35,109,2018-04-01 +session,320,7,Internet Explorer 1,1,2018-09-13 +session,320,8,Internet Explorer 10,107,2017-06-17 +session,320,9,Internet Explorer 28,116,2018-03-22 +user,321,Ina,Alia,42 +session,321,0,Internet Explorer 44,118,2017-11-21 +session,321,1,Safari 45,35,2018-01-08 +session,321,2,Safari 31,94,2017-06-04 +session,321,3,Internet Explorer 21,93,2018-04-08 +user,322,Randal,Yen,31 +session,322,0,Firefox 26,97,2017-03-28 +session,322,1,Firefox 21,41,2018-10-01 +session,322,2,Internet Explorer 25,98,2017-11-19 +session,322,3,Firefox 42,89,2018-06-10 +user,323,Reuben,Shanta,59 +session,323,0,Firefox 32,87,2017-11-25 +session,323,1,Firefox 11,98,2016-10-11 +session,323,2,Safari 37,72,2017-02-11 +session,323,3,Internet Explorer 14,0,2017-04-29 +session,323,4,Internet Explorer 1,67,2017-12-22 +session,323,5,Safari 30,22,2016-11-02 +session,323,6,Chrome 38,27,2018-05-27 +session,323,7,Internet Explorer 21,21,2017-01-24 +session,323,8,Chrome 13,27,2016-12-18 +user,324,Waneta,Clarice,66 +session,324,0,Internet Explorer 42,95,2018-01-06 +session,324,1,Safari 30,54,2017-02-02 +session,324,2,Internet Explorer 43,81,2016-12-25 +session,324,3,Firefox 42,93,2017-07-14 +session,324,4,Internet Explorer 43,15,2017-04-20 +session,324,5,Internet Explorer 5,46,2017-06-01 +user,325,Shay,Shanika,99 +session,325,0,Firefox 28,57,2018-01-04 +session,325,1,Safari 40,45,2018-02-14 +session,325,2,Chrome 14,56,2018-11-25 +session,325,3,Chrome 32,81,2017-03-03 +session,325,4,Internet Explorer 16,68,2016-08-28 +session,325,5,Internet Explorer 1,1,2016-08-21 +session,325,6,Firefox 35,97,2018-11-05 +session,325,7,Firefox 37,119,2017-04-02 +session,325,8,Internet Explorer 11,5,2016-11-20 +session,325,9,Firefox 24,117,2018-01-11 +user,326,Ariel,Hassan,77 +session,326,0,Internet Explorer 39,75,2016-11-24 +session,326,1,Safari 22,101,2018-07-28 +user,327,Kala,Paula,91 +session,327,0,Internet Explorer 37,58,2016-07-16 +session,327,1,Firefox 21,92,2017-05-11 +session,327,2,Internet Explorer 31,26,2016-12-24 +session,327,3,Safari 6,49,2017-10-24 +session,327,4,Chrome 44,62,2016-07-26 +session,327,5,Internet Explorer 26,1,2018-03-20 +session,327,6,Internet Explorer 43,85,2017-02-19 +user,328,Jere,Olive,24 +session,328,0,Chrome 26,47,2016-06-22 +session,328,1,Chrome 36,115,2018-05-27 +session,328,2,Safari 17,5,2016-08-03 +session,328,3,Chrome 30,51,2017-06-30 +session,328,4,Firefox 45,1,2016-08-28 +user,329,Nereida,Ryan,95 +session,329,0,Firefox 40,105,2017-03-20 +session,329,1,Safari 49,93,2017-12-03 +session,329,2,Chrome 4,108,2018-01-31 +session,329,3,Firefox 44,24,2016-06-04 +session,329,4,Firefox 9,108,2018-03-16 +user,330,Ebonie,Cherise,32 +session,330,0,Firefox 12,33,2018-06-06 +session,330,1,Chrome 11,49,2018-05-13 +session,330,2,Internet Explorer 11,54,2017-10-04 +user,331,Lourdes,William,74 +session,331,0,Chrome 29,69,2018-08-07 +session,331,1,Safari 49,15,2018-05-25 +session,331,2,Safari 27,3,2016-05-29 +session,331,3,Safari 37,8,2016-07-25 +user,332,Carmine,Christel,88 +session,332,0,Firefox 47,71,2016-07-11 +session,332,1,Chrome 16,44,2018-04-09 +session,332,2,Safari 48,117,2019-02-09 +session,332,3,Internet Explorer 46,19,2018-07-19 +session,332,4,Chrome 38,58,2017-09-29 +session,332,5,Firefox 23,4,2016-07-23 +session,332,6,Internet Explorer 11,24,2017-08-09 +session,332,7,Firefox 37,5,2016-08-31 +user,333,Waylon,Loni,10 +session,333,0,Safari 18,82,2018-02-12 +session,333,1,Chrome 46,60,2017-08-16 +session,333,2,Internet Explorer 23,14,2018-08-14 +session,333,3,Firefox 21,9,2018-09-02 +session,333,4,Firefox 21,40,2018-05-18 +user,334,Lamar,Antonio,96 +session,334,0,Firefox 42,72,2017-05-30 +session,334,1,Internet Explorer 4,99,2018-03-27 +session,334,2,Firefox 27,39,2018-04-01 +session,334,3,Internet Explorer 37,47,2016-07-18 +session,334,4,Firefox 39,112,2017-02-05 +session,334,5,Internet Explorer 44,31,2019-01-19 +session,334,6,Chrome 45,35,2017-06-18 +user,335,Eustolia,Jackelyn,94 +session,335,0,Chrome 21,38,2016-11-04 +user,336,Man,Willian,4 +session,336,0,Safari 50,107,2016-07-21 +session,336,1,Safari 8,69,2018-07-08 +session,336,2,Safari 5,34,2017-03-20 +user,337,Shanti,Rosalva,37 +session,337,0,Firefox 11,117,2016-07-28 +session,337,1,Internet Explorer 34,2,2016-09-02 +session,337,2,Internet Explorer 20,84,2018-09-13 +session,337,3,Chrome 38,13,2017-08-21 +session,337,4,Internet Explorer 9,117,2017-09-24 +session,337,5,Firefox 13,43,2017-11-16 +session,337,6,Firefox 50,118,2017-08-05 +session,337,7,Chrome 46,6,2018-09-29 +session,337,8,Firefox 10,0,2017-01-26 +user,338,Sylvie,Eloisa,46 +session,338,0,Firefox 6,105,2016-12-05 +session,338,1,Safari 28,117,2018-09-01 +session,338,2,Safari 23,45,2018-03-09 +session,338,3,Internet Explorer 32,67,2018-08-31 +session,338,4,Internet Explorer 1,37,2016-11-17 +session,338,5,Internet Explorer 49,41,2017-07-07 +session,338,6,Safari 48,52,2017-03-14 +session,338,7,Safari 29,94,2018-10-08 +session,338,8,Internet Explorer 50,62,2018-10-02 +user,339,Silvana,Palma,16 +session,339,0,Firefox 47,93,2016-10-15 +session,339,1,Firefox 17,27,2017-03-03 +session,339,2,Internet Explorer 49,13,2018-11-19 +session,339,3,Internet Explorer 40,53,2017-12-19 +session,339,4,Internet Explorer 26,111,2016-09-01 +session,339,5,Firefox 16,104,2018-12-06 +session,339,6,Internet Explorer 3,23,2016-11-24 +user,340,Lulu,Jordon,63 +session,340,0,Chrome 48,119,2016-06-16 +session,340,1,Chrome 48,104,2017-12-11 +session,340,2,Firefox 36,27,2016-07-22 +session,340,3,Safari 9,81,2018-04-30 +session,340,4,Firefox 2,65,2017-01-31 +session,340,5,Internet Explorer 8,77,2018-05-12 +session,340,6,Internet Explorer 49,7,2017-05-03 +session,340,7,Firefox 26,38,2018-01-14 +user,341,Cecil,Joseph,33 +session,341,0,Chrome 10,21,2017-03-29 +session,341,1,Firefox 8,104,2017-09-16 +session,341,2,Chrome 3,4,2017-08-11 +session,341,3,Firefox 2,70,2018-04-26 +session,341,4,Safari 24,7,2018-03-12 +session,341,5,Chrome 33,64,2017-10-03 +user,342,Yajaira,Dante,29 +session,342,0,Safari 47,23,2017-10-09 +session,342,1,Firefox 21,88,2017-01-24 +session,342,2,Firefox 25,50,2018-10-09 +session,342,3,Chrome 42,94,2018-11-19 +session,342,4,Safari 36,62,2016-07-18 +session,342,5,Firefox 2,91,2016-10-12 +session,342,6,Internet Explorer 22,85,2018-03-28 +session,342,7,Chrome 50,13,2016-11-27 +session,342,8,Firefox 44,24,2016-09-20 +user,343,Jennell,Brain,89 +session,343,0,Safari 46,89,2017-06-23 +session,343,1,Internet Explorer 2,105,2018-02-18 +session,343,2,Internet Explorer 29,8,2017-11-24 +session,343,3,Internet Explorer 38,107,2017-02-09 +session,343,4,Internet Explorer 24,101,2017-07-27 +session,343,5,Internet Explorer 40,83,2018-11-09 +session,343,6,Safari 35,30,2016-09-04 +session,343,7,Firefox 32,57,2017-03-13 +session,343,8,Chrome 25,11,2018-03-31 +session,343,9,Safari 41,24,2018-11-21 +user,344,Tiana,Milford,23 +session,344,0,Internet Explorer 30,51,2018-09-25 +session,344,1,Safari 36,20,2017-09-12 +session,344,2,Firefox 27,7,2016-06-10 +session,344,3,Safari 14,88,2018-08-01 +session,344,4,Internet Explorer 40,118,2018-02-13 +session,344,5,Chrome 2,41,2018-06-09 +session,344,6,Internet Explorer 9,52,2017-06-22 +session,344,7,Firefox 17,72,2018-12-03 +user,345,Cliff,Ethelyn,2 +session,345,0,Internet Explorer 43,116,2016-12-24 +session,345,1,Firefox 1,97,2018-07-11 +session,345,2,Safari 14,117,2019-02-02 +session,345,3,Internet Explorer 40,0,2018-08-06 +user,346,Pablo,Aaron,98 +session,346,0,Firefox 29,25,2018-06-07 +session,346,1,Internet Explorer 24,76,2018-10-02 +session,346,2,Safari 47,20,2018-08-03 +session,346,3,Chrome 4,79,2016-05-29 +session,346,4,Internet Explorer 40,50,2016-07-23 +session,346,5,Chrome 30,107,2017-11-26 +user,347,Benny,Angel,29 +session,347,0,Safari 2,20,2018-04-18 +session,347,1,Chrome 50,7,2018-09-16 +session,347,2,Internet Explorer 20,98,2016-12-09 +user,348,Kallie,Ignacia,23 +session,348,0,Chrome 24,39,2018-12-25 +session,348,1,Chrome 12,53,2018-10-16 +session,348,2,Chrome 22,49,2018-01-07 +session,348,3,Safari 5,50,2018-11-05 +session,348,4,Safari 40,110,2017-01-15 +session,348,5,Internet Explorer 50,19,2018-08-31 +session,348,6,Firefox 3,85,2018-07-02 +session,348,7,Firefox 25,108,2018-02-08 +user,349,Jerold,Justina,16 +session,349,0,Internet Explorer 47,1,2017-02-19 +session,349,1,Firefox 30,90,2017-12-19 +session,349,2,Firefox 10,36,2017-08-09 +session,349,3,Firefox 32,19,2017-08-05 +session,349,4,Internet Explorer 30,66,2018-04-04 +user,350,Latricia,Carolyn,21 +session,350,0,Safari 17,12,2018-01-24 +session,350,1,Chrome 31,43,2018-03-04 +session,350,2,Chrome 5,98,2017-04-12 +user,351,Kris,Odelia,58 +session,351,0,Safari 23,74,2018-09-20 +session,351,1,Firefox 36,81,2017-12-13 +session,351,2,Safari 23,116,2017-12-09 +session,351,3,Internet Explorer 19,118,2017-12-23 +session,351,4,Chrome 26,62,2017-01-20 +session,351,5,Firefox 10,116,2018-01-28 +session,351,6,Safari 46,31,2018-06-22 +session,351,7,Chrome 16,117,2018-02-21 +session,351,8,Chrome 40,92,2018-03-13 +session,351,9,Internet Explorer 13,32,2016-09-23 +user,352,Gilbert,Daisey,85 +session,352,0,Internet Explorer 11,36,2018-12-27 +session,352,1,Firefox 31,34,2017-01-01 +session,352,2,Safari 16,44,2017-08-17 +session,352,3,Safari 27,10,2019-01-31 +session,352,4,Firefox 47,114,2016-09-28 +session,352,5,Safari 47,69,2016-07-20 +session,352,6,Safari 45,89,2018-06-20 +session,352,7,Firefox 39,54,2018-11-12 +user,353,Ali,Paola,42 +session,353,0,Firefox 41,53,2018-08-13 +session,353,1,Firefox 33,11,2017-09-03 +session,353,2,Chrome 24,13,2019-01-31 +session,353,3,Chrome 17,18,2016-08-03 +session,353,4,Firefox 42,86,2018-07-11 +user,354,Debi,Socorro,41 +session,354,0,Internet Explorer 5,114,2017-02-26 +user,355,Cesar,Lorna,10 +session,355,0,Internet Explorer 2,7,2018-02-16 +session,355,1,Safari 44,87,2017-03-20 +session,355,2,Chrome 31,9,2017-03-13 +session,355,3,Internet Explorer 31,108,2018-02-08 +session,355,4,Chrome 33,22,2017-07-26 +user,356,Tyron,Keena,34 +session,356,0,Internet Explorer 41,28,2018-02-01 +session,356,1,Safari 42,39,2016-09-19 +session,356,2,Safari 10,75,2017-09-27 +session,356,3,Safari 10,66,2018-01-16 +session,356,4,Chrome 10,47,2016-10-10 +session,356,5,Internet Explorer 32,94,2017-04-29 +session,356,6,Firefox 3,33,2016-08-06 +session,356,7,Chrome 23,77,2017-03-17 +session,356,8,Safari 37,67,2016-12-31 +session,356,9,Firefox 28,43,2019-02-05 +user,357,Desmond,Paige,87 +session,357,0,Firefox 35,12,2018-10-27 +session,357,1,Chrome 50,99,2016-05-20 +session,357,2,Safari 12,11,2017-07-28 +session,357,3,Safari 25,47,2017-05-30 +session,357,4,Safari 24,97,2019-02-03 +session,357,5,Chrome 39,97,2018-09-04 +user,358,Ned,Chi,72 +session,358,0,Safari 46,54,2018-02-19 +user,359,Paulette,Jessika,95 +session,359,0,Safari 33,95,2016-05-30 +user,360,Sanjuanita,Luciano,67 +session,360,0,Firefox 43,88,2017-06-01 +session,360,1,Firefox 35,99,2018-11-05 +session,360,2,Chrome 20,32,2017-12-26 +session,360,3,Chrome 29,65,2017-11-20 +session,360,4,Firefox 43,119,2017-03-05 +session,360,5,Chrome 25,23,2018-12-09 +session,360,6,Chrome 32,47,2016-11-28 +user,361,Cordie,Marcia,63 +session,361,0,Internet Explorer 38,41,2016-07-26 +session,361,1,Internet Explorer 23,78,2017-06-24 +session,361,2,Chrome 38,29,2018-04-12 +session,361,3,Chrome 37,100,2018-01-16 +session,361,4,Internet Explorer 9,92,2018-07-17 +session,361,5,Chrome 38,47,2016-08-25 +user,362,Rosaline,Allen,81 +session,362,0,Internet Explorer 12,38,2017-03-09 +session,362,1,Safari 2,37,2017-12-01 +session,362,2,Internet Explorer 43,29,2017-11-01 +session,362,3,Chrome 13,28,2018-02-20 +session,362,4,Chrome 34,88,2017-05-31 +user,363,Rey,Victoria,2 +session,363,0,Firefox 50,79,2017-08-29 +session,363,1,Safari 30,107,2018-03-31 +session,363,2,Firefox 47,79,2018-08-31 +session,363,3,Firefox 9,65,2017-08-31 +user,364,Emmett,Sherice,90 +session,364,0,Firefox 4,4,2018-02-08 +session,364,1,Safari 46,90,2017-01-11 +session,364,2,Internet Explorer 28,110,2019-01-19 +session,364,3,Chrome 3,59,2018-01-03 +session,364,4,Safari 43,30,2018-11-17 +session,364,5,Chrome 10,80,2018-05-05 +session,364,6,Chrome 24,30,2018-02-23 +session,364,7,Firefox 18,34,2018-09-06 +session,364,8,Internet Explorer 16,52,2017-01-06 +user,365,Sulema,Refugio,34 +session,365,0,Firefox 12,77,2018-12-08 +session,365,1,Internet Explorer 3,12,2017-04-25 +session,365,2,Internet Explorer 42,95,2016-07-17 +user,366,Jefferey,Lamonica,15 +session,366,0,Safari 7,73,2018-01-08 +session,366,1,Chrome 41,66,2017-03-29 +session,366,2,Internet Explorer 36,13,2017-03-29 +user,367,Jimmy,Hanh,87 +session,367,0,Firefox 40,47,2017-07-25 +session,367,1,Safari 19,87,2018-12-15 +session,367,2,Firefox 41,18,2018-11-22 +session,367,3,Firefox 3,79,2018-12-16 +session,367,4,Firefox 21,109,2016-12-25 +session,367,5,Firefox 14,65,2018-07-23 +session,367,6,Safari 15,9,2017-12-30 +user,368,Luanna,Joel,28 +session,368,0,Internet Explorer 26,112,2018-10-01 +session,368,1,Chrome 5,99,2017-01-09 +session,368,2,Safari 4,100,2018-06-23 +session,368,3,Internet Explorer 36,30,2017-07-20 +session,368,4,Firefox 30,2,2016-05-26 +session,368,5,Chrome 21,110,2018-03-28 +session,368,6,Internet Explorer 22,62,2018-07-24 +user,369,Domenic,Suellen,8 +session,369,0,Safari 49,12,2017-12-14 +session,369,1,Firefox 44,38,2017-11-20 +session,369,2,Safari 30,64,2017-12-28 +user,370,Mathew,Fabiola,69 +session,370,0,Chrome 3,46,2017-02-24 +session,370,1,Safari 4,11,2017-03-03 +session,370,2,Chrome 24,70,2018-07-20 +session,370,3,Firefox 30,65,2018-10-28 +session,370,4,Internet Explorer 47,102,2018-07-10 +session,370,5,Internet Explorer 49,63,2019-01-17 +user,371,Willian,Verdell,91 +session,371,0,Safari 38,101,2018-02-27 +session,371,1,Safari 24,0,2018-05-30 +session,371,2,Internet Explorer 48,54,2018-02-14 +session,371,3,Internet Explorer 44,74,2016-09-14 +session,371,4,Firefox 49,55,2018-05-05 +session,371,5,Chrome 9,85,2017-11-29 +session,371,6,Firefox 12,108,2016-08-19 +session,371,7,Safari 40,102,2019-01-23 +session,371,8,Internet Explorer 25,22,2016-11-27 +session,371,9,Chrome 44,92,2018-04-14 +user,372,Dona,Irmgard,80 +session,372,0,Firefox 9,21,2016-08-08 +session,372,1,Internet Explorer 10,101,2019-01-12 +user,373,Twila,Ivana,83 +session,373,0,Chrome 38,103,2016-08-31 +session,373,1,Internet Explorer 38,101,2018-11-11 +user,374,Shondra,Margaret,87 +session,374,0,Chrome 42,86,2017-12-29 +session,374,1,Chrome 34,10,2018-11-27 +session,374,2,Firefox 41,17,2018-05-21 +session,374,3,Chrome 41,18,2018-11-13 +user,375,Brunilda,Eugene,26 +session,375,0,Internet Explorer 48,8,2016-11-09 +session,375,1,Firefox 48,92,2018-07-14 +session,375,2,Internet Explorer 45,23,2017-02-04 +session,375,3,Firefox 25,32,2017-01-20 +user,376,Valentine,Flora,90 +session,376,0,Chrome 11,103,2018-05-16 +user,377,Chuck,Tia,40 +session,377,0,Internet Explorer 2,94,2019-01-28 +session,377,1,Safari 16,45,2018-09-01 +session,377,2,Internet Explorer 7,79,2017-04-11 +session,377,3,Safari 14,103,2018-01-26 +session,377,4,Safari 3,47,2017-07-17 +session,377,5,Internet Explorer 25,45,2017-02-16 +session,377,6,Internet Explorer 25,108,2016-09-22 +user,378,Adaline,Carey,52 +session,378,0,Chrome 14,118,2018-11-13 +session,378,1,Safari 26,56,2017-11-24 +user,379,Nicolas,Seth,38 +session,379,0,Safari 7,3,2017-09-06 +session,379,1,Firefox 20,108,2017-12-17 +session,379,2,Chrome 1,10,2017-10-20 +session,379,3,Firefox 26,102,2017-03-09 +session,379,4,Safari 10,8,2018-07-29 +user,380,Antoine,Davis,23 +session,380,0,Chrome 10,100,2017-03-01 +session,380,1,Internet Explorer 50,95,2018-08-06 +session,380,2,Firefox 22,106,2016-10-07 +session,380,3,Firefox 7,117,2017-04-16 +session,380,4,Firefox 34,108,2017-12-11 +session,380,5,Firefox 14,54,2018-04-27 +session,380,6,Firefox 7,15,2018-01-01 +session,380,7,Firefox 34,54,2017-08-20 +user,381,Lesley,Bronwyn,17 +session,381,0,Internet Explorer 9,5,2017-08-16 +session,381,1,Safari 49,23,2018-12-13 +session,381,2,Internet Explorer 45,94,2018-05-07 +session,381,3,Internet Explorer 25,10,2017-01-23 +session,381,4,Firefox 46,11,2017-03-31 +session,381,5,Internet Explorer 37,62,2016-06-23 +session,381,6,Chrome 2,6,2016-09-18 +session,381,7,Firefox 18,78,2018-04-28 +user,382,Christopher,Grant,69 +session,382,0,Chrome 21,17,2016-07-18 +session,382,1,Safari 5,9,2018-08-27 +session,382,2,Chrome 37,27,2018-05-06 +session,382,3,Chrome 17,110,2018-11-12 +session,382,4,Firefox 43,46,2017-05-02 +session,382,5,Firefox 10,14,2016-05-23 +session,382,6,Internet Explorer 37,96,2017-06-26 +session,382,7,Firefox 8,80,2017-04-17 +user,383,Vincent,Lashaun,28 +session,383,0,Chrome 49,92,2017-08-30 +session,383,1,Chrome 2,15,2018-08-24 +session,383,2,Firefox 11,59,2016-11-26 +session,383,3,Chrome 27,17,2018-04-15 +session,383,4,Chrome 8,85,2017-10-14 +session,383,5,Safari 25,87,2016-08-19 +session,383,6,Safari 28,21,2018-07-24 +user,384,Curt,Ying,52 +session,384,0,Chrome 34,19,2017-04-01 +session,384,1,Chrome 46,83,2018-08-21 +session,384,2,Firefox 11,6,2016-11-17 +session,384,3,Chrome 9,57,2018-06-19 +session,384,4,Internet Explorer 15,33,2016-11-11 +session,384,5,Internet Explorer 41,72,2016-06-10 +session,384,6,Chrome 20,24,2017-01-30 +session,384,7,Internet Explorer 4,60,2017-04-08 +session,384,8,Chrome 15,73,2016-05-27 +user,385,Donya,Cristopher,46 +session,385,0,Safari 5,110,2016-08-08 +session,385,1,Firefox 18,33,2016-10-13 +session,385,2,Safari 15,12,2017-08-26 +session,385,3,Firefox 36,11,2016-06-11 +user,386,Lula,Senaida,5 +session,386,0,Safari 12,95,2016-08-09 +session,386,1,Internet Explorer 3,52,2016-06-01 +session,386,2,Firefox 27,118,2017-01-23 +session,386,3,Safari 43,96,2018-05-30 +session,386,4,Internet Explorer 15,65,2018-06-01 +session,386,5,Chrome 50,40,2018-01-17 +session,386,6,Safari 10,95,2018-07-17 +session,386,7,Safari 8,4,2017-05-22 +session,386,8,Safari 3,11,2017-08-15 +session,386,9,Firefox 10,82,2016-07-09 +user,387,Roger,Armando,14 +session,387,0,Chrome 35,27,2017-12-03 +session,387,1,Safari 8,104,2018-04-23 +user,388,Ula,Demetria,46 +session,388,0,Internet Explorer 30,26,2018-07-18 +session,388,1,Chrome 26,56,2018-06-22 +session,388,2,Chrome 21,38,2018-08-15 +session,388,3,Safari 24,7,2016-06-20 +session,388,4,Chrome 8,50,2018-09-19 +user,389,Suzanna,Ria,9 +session,389,0,Internet Explorer 32,74,2016-12-13 +session,389,1,Firefox 36,72,2018-09-21 +session,389,2,Safari 29,14,2016-05-25 +session,389,3,Safari 35,9,2016-06-02 +user,390,Lee,Naomi,5 +session,390,0,Chrome 22,23,2018-06-02 +session,390,1,Internet Explorer 8,42,2016-08-09 +session,390,2,Firefox 42,56,2017-01-26 +session,390,3,Internet Explorer 18,14,2018-09-27 +session,390,4,Firefox 6,33,2017-07-08 +session,390,5,Firefox 14,70,2017-09-03 +session,390,6,Chrome 43,66,2017-10-24 +session,390,7,Internet Explorer 3,15,2016-06-28 +user,391,Andre,Royal,99 +session,391,0,Internet Explorer 23,56,2018-11-13 +session,391,1,Firefox 24,34,2018-02-06 +user,392,Brigid,Titus,49 +session,392,0,Firefox 42,79,2017-09-02 +session,392,1,Chrome 22,29,2018-11-06 +session,392,2,Safari 20,36,2019-01-24 +session,392,3,Firefox 47,8,2018-03-17 +user,393,Nichole,Lizbeth,91 +session,393,0,Chrome 41,43,2017-04-15 +session,393,1,Chrome 42,28,2018-02-04 +session,393,2,Internet Explorer 6,114,2017-08-11 +session,393,3,Safari 30,11,2016-05-22 +session,393,4,Firefox 1,13,2017-04-20 +session,393,5,Chrome 28,48,2018-10-21 +session,393,6,Chrome 3,16,2018-07-20 +session,393,7,Chrome 47,111,2018-02-25 +session,393,8,Firefox 24,88,2016-08-25 +session,393,9,Internet Explorer 38,28,2017-04-05 +user,394,Christian,Inez,49 +session,394,0,Safari 16,43,2019-01-26 +session,394,1,Firefox 8,35,2017-06-13 +session,394,2,Safari 41,15,2018-04-12 +session,394,3,Chrome 27,22,2016-12-22 +session,394,4,Safari 27,0,2016-08-01 +session,394,5,Chrome 12,53,2016-06-22 +session,394,6,Firefox 16,111,2018-04-14 +user,395,Catina,Rema,98 +session,395,0,Chrome 14,91,2018-05-04 +session,395,1,Internet Explorer 31,91,2018-02-12 +session,395,2,Internet Explorer 43,54,2017-10-02 +session,395,3,Firefox 35,34,2016-12-10 +session,395,4,Internet Explorer 11,56,2016-08-25 +session,395,5,Firefox 45,50,2017-06-19 +session,395,6,Safari 7,104,2017-02-19 +session,395,7,Firefox 29,108,2016-11-03 +session,395,8,Internet Explorer 35,91,2018-05-15 +session,395,9,Safari 23,18,2017-06-19 +user,396,Kaleigh,Mirtha,66 +session,396,0,Chrome 30,99,2018-05-06 +session,396,1,Safari 17,88,2018-01-15 +session,396,2,Chrome 37,115,2017-12-24 +user,397,Karissa,Elois,55 +session,397,0,Internet Explorer 44,68,2017-06-14 +session,397,1,Firefox 23,61,2017-08-25 +session,397,2,Internet Explorer 46,19,2018-10-09 +session,397,3,Chrome 13,78,2017-11-18 +session,397,4,Firefox 10,80,2018-10-06 +session,397,5,Internet Explorer 22,92,2018-01-09 +session,397,6,Internet Explorer 4,85,2017-12-22 +user,398,Cyrstal,Freda,25 +session,398,0,Chrome 21,106,2017-01-18 +session,398,1,Chrome 48,80,2016-08-03 +session,398,2,Firefox 23,72,2017-12-31 +session,398,3,Chrome 44,78,2016-07-04 +session,398,4,Chrome 22,106,2017-05-10 +session,398,5,Chrome 4,57,2017-12-02 +session,398,6,Safari 35,87,2017-06-16 +session,398,7,Firefox 25,12,2018-04-20 +user,399,Jerry,Aurelio,50 +session,399,0,Safari 12,9,2018-01-22 +session,399,1,Chrome 2,111,2018-03-18 +session,399,2,Safari 3,109,2017-01-30 +session,399,3,Chrome 31,111,2017-12-07 +session,399,4,Firefox 16,43,2016-09-13 +session,399,5,Internet Explorer 43,103,2017-05-16 +session,399,6,Firefox 41,32,2018-11-08 +session,399,7,Internet Explorer 17,111,2018-11-04 +session,399,8,Safari 12,91,2016-09-25 +session,399,9,Internet Explorer 24,44,2018-06-24 +user,400,Marlon,Jame,93 +session,400,0,Firefox 3,38,2018-06-07 +session,400,1,Firefox 16,117,2018-12-30 +session,400,2,Firefox 37,99,2017-03-07 +session,400,3,Safari 20,80,2018-12-14 +session,400,4,Safari 31,46,2018-04-13 +session,400,5,Chrome 28,46,2017-07-31 +session,400,6,Internet Explorer 11,56,2018-04-05 +session,400,7,Firefox 9,4,2016-12-25 +session,400,8,Safari 40,71,2017-05-14 +session,400,9,Internet Explorer 41,112,2016-12-03 +user,401,Rochelle,Rebecka,13 +session,401,0,Internet Explorer 36,25,2017-02-22 +session,401,1,Safari 11,96,2018-03-09 +session,401,2,Safari 38,98,2017-05-01 +session,401,3,Chrome 22,25,2016-06-28 +session,401,4,Safari 7,50,2018-07-17 +session,401,5,Chrome 11,33,2018-12-01 +session,401,6,Safari 40,53,2017-12-06 +user,402,Jennifer,Jenell,65 +session,402,0,Internet Explorer 29,61,2018-01-04 +session,402,1,Internet Explorer 2,90,2019-01-22 +session,402,2,Safari 3,94,2016-08-17 +session,402,3,Internet Explorer 23,20,2018-12-06 +session,402,4,Internet Explorer 19,85,2016-09-08 +session,402,5,Internet Explorer 47,95,2018-12-22 +session,402,6,Firefox 18,115,2016-08-05 +user,403,Ricky,Norah,60 +session,403,0,Chrome 6,25,2018-09-02 +session,403,1,Safari 45,81,2017-05-10 +session,403,2,Safari 20,114,2018-08-26 +session,403,3,Safari 9,77,2017-01-20 +session,403,4,Firefox 13,28,2017-02-23 +session,403,5,Safari 9,109,2016-06-14 +session,403,6,Safari 21,5,2017-01-11 +session,403,7,Safari 50,107,2018-07-01 +user,404,Francesco,Reyes,16 +session,404,0,Chrome 49,103,2018-07-31 +session,404,1,Internet Explorer 33,71,2017-10-06 +user,405,Carleen,Neville,14 +session,405,0,Firefox 23,109,2016-09-15 +session,405,1,Safari 43,41,2018-09-01 +session,405,2,Safari 17,66,2018-05-10 +session,405,3,Chrome 3,67,2018-08-12 +user,406,Carmelia,Tomi,53 +session,406,0,Internet Explorer 32,84,2016-08-16 +session,406,1,Chrome 46,104,2016-11-09 +session,406,2,Firefox 32,6,2017-12-16 +session,406,3,Chrome 33,16,2018-06-10 +session,406,4,Safari 11,90,2017-05-12 +session,406,5,Chrome 28,32,2016-07-29 +session,406,6,Firefox 49,95,2016-08-13 +session,406,7,Safari 18,32,2017-04-09 +session,406,8,Safari 23,107,2016-10-16 +session,406,9,Internet Explorer 24,73,2018-10-18 +user,407,Frank,Fonda,81 +session,407,0,Safari 34,74,2018-11-27 +session,407,1,Chrome 3,19,2018-01-29 +session,407,2,Chrome 11,119,2017-09-08 +session,407,3,Chrome 4,4,2018-03-05 +session,407,4,Firefox 29,41,2018-10-19 +user,408,Coleman,Dawna,18 +session,408,0,Internet Explorer 41,111,2017-07-10 +session,408,1,Internet Explorer 3,11,2018-11-24 +session,408,2,Internet Explorer 24,76,2018-11-10 +session,408,3,Firefox 40,70,2018-07-19 +session,408,4,Internet Explorer 15,11,2017-02-17 +session,408,5,Internet Explorer 18,37,2018-10-04 +session,408,6,Firefox 32,103,2016-09-26 +session,408,7,Safari 50,89,2016-07-31 +session,408,8,Chrome 41,76,2018-11-26 +user,409,Justa,Yesenia,16 +session,409,0,Safari 2,0,2017-05-10 +session,409,1,Internet Explorer 19,38,2016-11-30 +session,409,2,Firefox 29,110,2017-04-21 +user,410,Milford,Danna,35 +session,410,0,Chrome 46,88,2018-09-02 +user,411,Delsie,Lorene,21 +session,411,0,Chrome 22,59,2016-10-14 +session,411,1,Chrome 20,114,2017-10-22 +session,411,2,Internet Explorer 27,109,2018-09-20 +session,411,3,Safari 3,17,2017-02-26 +session,411,4,Chrome 36,92,2019-01-02 +session,411,5,Chrome 47,60,2017-08-02 +session,411,6,Internet Explorer 14,85,2017-11-18 +session,411,7,Safari 2,86,2016-05-27 +session,411,8,Chrome 26,104,2018-09-05 +session,411,9,Internet Explorer 43,39,2019-01-15 +user,412,Jewel,Alpha,64 +session,412,0,Firefox 1,72,2017-01-18 +session,412,1,Safari 4,77,2018-07-25 +session,412,2,Internet Explorer 20,80,2017-03-29 +session,412,3,Chrome 4,12,2017-04-16 +user,413,Judson,Darcey,60 +session,413,0,Firefox 30,94,2017-05-29 +session,413,1,Firefox 32,59,2017-01-17 +session,413,2,Chrome 1,111,2018-01-23 +session,413,3,Firefox 5,97,2018-03-10 +session,413,4,Firefox 20,4,2017-12-02 +session,413,5,Safari 29,57,2018-05-28 +session,413,6,Safari 11,88,2018-09-13 +session,413,7,Safari 47,15,2018-07-23 +session,413,8,Safari 8,60,2017-05-07 +user,414,Franklyn,Torri,57 +session,414,0,Internet Explorer 46,68,2018-01-03 +session,414,1,Chrome 16,110,2017-03-08 +session,414,2,Internet Explorer 28,47,2018-07-19 +user,415,Belen,Mandie,57 +session,415,0,Firefox 37,6,2018-09-05 +session,415,1,Safari 13,12,2016-06-07 +session,415,2,Firefox 30,75,2018-02-04 +session,415,3,Safari 10,26,2016-11-22 +session,415,4,Firefox 13,86,2017-05-12 +session,415,5,Internet Explorer 11,83,2017-12-06 +session,415,6,Firefox 33,2,2017-10-03 +session,415,7,Safari 29,66,2017-03-12 +session,415,8,Firefox 23,63,2018-02-26 +user,416,Alva,Many,52 +session,416,0,Internet Explorer 46,0,2018-04-29 +user,417,Kristy,Rhonda,93 +session,417,0,Chrome 11,24,2016-08-03 +session,417,1,Safari 44,50,2016-06-25 +session,417,2,Safari 6,37,2018-06-20 +user,418,Houston,Abbey,32 +session,418,0,Chrome 24,36,2016-12-06 +session,418,1,Chrome 9,34,2018-02-07 +session,418,2,Safari 24,106,2017-04-02 +session,418,3,Chrome 38,24,2018-08-24 +session,418,4,Safari 35,72,2019-01-01 +session,418,5,Internet Explorer 23,49,2017-10-21 +session,418,6,Chrome 22,78,2017-03-18 +session,418,7,Firefox 19,112,2018-07-30 +session,418,8,Safari 23,30,2017-07-07 +session,418,9,Chrome 37,69,2017-09-23 +user,419,Stan,Milo,75 +session,419,0,Chrome 40,67,2018-06-09 +session,419,1,Firefox 33,106,2018-10-20 +user,420,Soraya,Terrie,33 +session,420,0,Firefox 40,58,2018-04-21 +session,420,1,Firefox 26,64,2017-01-29 +session,420,2,Chrome 36,36,2018-03-21 +session,420,3,Chrome 17,34,2016-11-29 +user,421,Pearlene,Alejandrina,3 +session,421,0,Safari 25,8,2017-07-19 +session,421,1,Internet Explorer 45,111,2017-09-19 +session,421,2,Firefox 15,5,2017-01-07 +session,421,3,Chrome 14,11,2017-09-12 +session,421,4,Internet Explorer 14,26,2018-12-24 +session,421,5,Safari 39,67,2017-10-06 +session,421,6,Safari 20,1,2017-04-29 +user,422,Tracy,Waldo,27 +session,422,0,Internet Explorer 27,7,2017-03-21 +session,422,1,Internet Explorer 34,52,2018-11-22 +session,422,2,Internet Explorer 19,56,2018-06-28 +session,422,3,Firefox 2,54,2017-03-06 +session,422,4,Internet Explorer 1,42,2018-11-22 +user,423,Halina,Kizzie,3 +session,423,0,Firefox 15,32,2016-06-29 +session,423,1,Internet Explorer 31,88,2017-04-12 +session,423,2,Internet Explorer 9,17,2018-04-06 +user,424,Chas,Davida,25 +session,424,0,Safari 4,91,2016-11-06 +session,424,1,Safari 21,49,2018-06-10 +session,424,2,Internet Explorer 37,2,2018-12-05 +session,424,3,Chrome 35,19,2016-10-15 +session,424,4,Internet Explorer 47,40,2017-06-18 +session,424,5,Firefox 23,75,2017-01-31 +session,424,6,Chrome 31,80,2016-08-16 +session,424,7,Internet Explorer 26,33,2017-12-26 +session,424,8,Firefox 38,45,2016-07-07 +session,424,9,Firefox 2,50,2017-10-29 +user,425,Billye,Claire,2 +session,425,0,Internet Explorer 34,94,2016-08-03 +session,425,1,Firefox 32,38,2018-08-10 +session,425,2,Chrome 13,96,2019-01-18 +session,425,3,Internet Explorer 32,115,2018-05-24 +session,425,4,Chrome 21,48,2017-07-14 +session,425,5,Internet Explorer 34,102,2016-09-16 +user,426,Thi,Aura,68 +session,426,0,Safari 15,24,2017-03-08 +session,426,1,Chrome 34,24,2018-04-29 +session,426,2,Chrome 26,84,2017-02-18 +session,426,3,Firefox 29,117,2018-11-30 +session,426,4,Chrome 28,78,2017-02-01 +session,426,5,Internet Explorer 31,104,2018-11-11 +user,427,Dexter,Kennith,81 +session,427,0,Safari 1,24,2016-05-31 +user,428,Johnny,Lilla,76 +session,428,0,Firefox 11,75,2017-07-23 +session,428,1,Internet Explorer 10,18,2017-12-01 +session,428,2,Chrome 8,89,2016-09-07 +session,428,3,Safari 26,74,2018-01-20 +session,428,4,Internet Explorer 33,72,2016-10-04 +session,428,5,Firefox 9,49,2017-03-15 +session,428,6,Firefox 50,98,2018-01-09 +session,428,7,Safari 11,57,2016-11-04 +session,428,8,Chrome 24,43,2018-10-25 +session,428,9,Safari 45,36,2017-12-04 +user,429,Eve,Karleen,48 +session,429,0,Safari 19,19,2017-07-11 +session,429,1,Safari 9,78,2017-06-13 +session,429,2,Safari 28,18,2016-06-24 +user,430,Shila,Samira,27 +session,430,0,Safari 23,74,2016-07-31 +user,431,Roxann,James,84 +session,431,0,Safari 47,88,2018-03-12 +session,431,1,Chrome 28,103,2018-05-26 +session,431,2,Safari 29,17,2018-10-13 +session,431,3,Chrome 32,21,2018-06-20 +session,431,4,Internet Explorer 39,118,2017-10-09 +session,431,5,Chrome 15,40,2018-12-14 +session,431,6,Safari 10,118,2017-03-06 +session,431,7,Chrome 27,2,2018-02-23 +session,431,8,Firefox 37,18,2017-10-12 +user,432,Shante,Tera,17 +session,432,0,Safari 37,116,2017-09-05 +session,432,1,Safari 21,92,2018-10-31 +session,432,2,Firefox 17,36,2018-02-07 +session,432,3,Chrome 23,10,2019-01-01 +session,432,4,Safari 23,118,2018-03-12 +session,432,5,Safari 21,107,2016-06-15 +session,432,6,Firefox 37,45,2016-09-08 +session,432,7,Firefox 43,75,2017-11-10 +session,432,8,Safari 30,10,2018-03-03 +user,433,Alexis,Mariella,79 +session,433,0,Chrome 11,2,2018-11-26 +session,433,1,Safari 8,82,2018-12-20 +session,433,2,Internet Explorer 7,87,2018-08-28 +session,433,3,Chrome 32,36,2016-10-10 +user,434,Margarite,Yen,29 +session,434,0,Safari 9,62,2018-02-25 +session,434,1,Safari 6,108,2019-02-12 +session,434,2,Firefox 13,0,2017-02-20 +session,434,3,Firefox 21,11,2017-04-17 +session,434,4,Safari 7,6,2017-05-28 +session,434,5,Internet Explorer 29,102,2017-06-11 +session,434,6,Chrome 9,32,2016-06-05 +session,434,7,Safari 34,60,2017-02-01 +session,434,8,Chrome 50,43,2018-08-12 +user,435,Jess,Cierra,92 +session,435,0,Firefox 1,9,2017-12-12 +session,435,1,Chrome 15,3,2016-06-04 +user,436,Carmelo,Krystyna,3 +session,436,0,Safari 46,21,2017-10-14 +session,436,1,Internet Explorer 2,78,2018-01-11 +session,436,2,Firefox 20,115,2018-06-14 +session,436,3,Chrome 26,26,2018-05-24 +session,436,4,Internet Explorer 39,24,2017-02-16 +session,436,5,Safari 45,44,2017-05-05 +session,436,6,Chrome 46,89,2016-08-29 +session,436,7,Chrome 20,46,2017-06-13 +session,436,8,Safari 46,75,2017-08-26 +user,437,Emmitt,Verdie,40 +session,437,0,Safari 43,2,2017-05-24 +session,437,1,Internet Explorer 27,74,2017-04-12 +session,437,2,Chrome 10,47,2016-07-08 +session,437,3,Chrome 2,106,2017-08-10 +session,437,4,Safari 44,24,2018-11-13 +session,437,5,Chrome 45,63,2018-03-13 +session,437,6,Safari 46,30,2016-08-23 +session,437,7,Safari 13,91,2018-01-15 +session,437,8,Firefox 27,12,2017-10-14 +user,438,Luana,Milford,61 +session,438,0,Chrome 18,117,2016-08-11 +session,438,1,Chrome 21,37,2018-11-12 +session,438,2,Safari 19,104,2016-11-10 +session,438,3,Firefox 19,92,2016-07-02 +session,438,4,Chrome 34,45,2016-11-21 +session,438,5,Chrome 28,29,2016-09-18 +user,439,Arlie,Savanna,89 +session,439,0,Safari 45,54,2017-02-12 +session,439,1,Firefox 40,113,2018-08-10 +user,440,Romelia,Joannie,16 +session,440,0,Chrome 39,15,2016-08-20 +session,440,1,Internet Explorer 27,27,2016-11-12 +session,440,2,Chrome 46,9,2019-02-07 +session,440,3,Internet Explorer 28,102,2017-09-24 +session,440,4,Chrome 29,102,2018-05-23 +user,441,Tammara,Joey,80 +session,441,0,Chrome 41,58,2017-05-08 +session,441,1,Chrome 24,100,2017-07-07 +session,441,2,Chrome 46,93,2016-09-04 +user,442,Shin,Ronda,19 +session,442,0,Firefox 33,32,2018-08-03 +session,442,1,Firefox 11,99,2017-12-12 +user,443,Pedro,Zita,63 +session,443,0,Safari 20,59,2018-12-12 +session,443,1,Firefox 38,107,2017-10-17 +user,444,Felix,Rolland,77 +session,444,0,Internet Explorer 44,37,2018-02-19 +session,444,1,Firefox 45,26,2016-12-29 +session,444,2,Internet Explorer 27,13,2018-11-30 +session,444,3,Chrome 4,51,2016-12-13 +user,445,Lupe,Magaly,31 +session,445,0,Firefox 10,63,2018-07-20 +session,445,1,Safari 40,96,2017-09-05 +session,445,2,Firefox 49,35,2019-02-01 +session,445,3,Safari 36,70,2018-09-23 +user,446,Ressie,Frank,81 +session,446,0,Safari 42,14,2017-07-28 +session,446,1,Chrome 24,109,2017-09-04 +session,446,2,Safari 34,39,2017-05-31 +session,446,3,Firefox 17,52,2017-03-25 +user,447,Leda,Leon,97 +session,447,0,Safari 34,90,2016-09-30 +session,447,1,Safari 2,72,2018-06-02 +session,447,2,Internet Explorer 26,65,2017-10-20 +session,447,3,Firefox 41,29,2017-05-07 +user,448,Carlie,Pearline,36 +session,448,0,Internet Explorer 44,36,2016-12-24 +session,448,1,Safari 2,85,2017-04-25 +user,449,Jessie,Jeffrey,39 +session,449,0,Safari 17,51,2017-10-26 +session,449,1,Chrome 27,91,2016-10-05 +session,449,2,Internet Explorer 16,92,2017-12-10 +session,449,3,Firefox 31,1,2017-07-15 +session,449,4,Internet Explorer 9,15,2017-08-12 +session,449,5,Chrome 17,6,2016-09-18 +session,449,6,Internet Explorer 49,17,2016-12-30 +session,449,7,Internet Explorer 24,10,2017-10-13 +user,450,Kirk,Margarette,80 +session,450,0,Chrome 13,50,2017-12-05 +session,450,1,Firefox 26,71,2017-02-07 +user,451,Leigh,Adriane,21 +session,451,0,Firefox 38,31,2016-11-28 +user,452,Anton,Tiera,94 +session,452,0,Safari 26,107,2018-10-30 +session,452,1,Safari 38,92,2018-12-29 +session,452,2,Safari 20,32,2017-05-28 +session,452,3,Internet Explorer 4,43,2017-03-05 +session,452,4,Chrome 28,56,2017-09-25 +session,452,5,Chrome 44,107,2017-10-09 +session,452,6,Chrome 13,85,2017-05-23 +session,452,7,Firefox 49,67,2018-12-30 +session,452,8,Firefox 28,0,2017-08-21 +session,452,9,Internet Explorer 11,103,2018-05-31 +user,453,Lachelle,Tameka,56 +session,453,0,Firefox 19,25,2017-07-15 +session,453,1,Chrome 10,58,2016-09-11 +session,453,2,Chrome 14,69,2016-08-09 +session,453,3,Internet Explorer 8,12,2018-06-12 +session,453,4,Firefox 45,81,2018-10-11 +user,454,Len,Federico,28 +session,454,0,Chrome 26,108,2017-01-18 +session,454,1,Internet Explorer 37,51,2016-07-22 +session,454,2,Internet Explorer 13,81,2018-02-03 +user,455,Liane,Lane,82 +session,455,0,Chrome 2,37,2016-09-21 +session,455,1,Internet Explorer 23,71,2017-08-04 +user,456,Aimee,Natacha,77 +session,456,0,Internet Explorer 20,100,2018-10-24 +session,456,1,Firefox 29,77,2018-11-11 +user,457,Maricruz,Kera,49 +session,457,0,Chrome 36,14,2017-07-06 +session,457,1,Chrome 16,110,2017-09-28 +session,457,2,Internet Explorer 3,70,2018-11-23 +session,457,3,Safari 19,5,2017-01-29 +user,458,Laverne,Merry,62 +session,458,0,Firefox 30,102,2018-09-25 +session,458,1,Safari 29,37,2017-11-15 +session,458,2,Firefox 41,109,2018-04-15 +user,459,Everett,Kacy,52 +session,459,0,Internet Explorer 21,118,2017-10-14 +session,459,1,Safari 31,108,2017-04-13 +session,459,2,Firefox 49,95,2017-05-09 +session,459,3,Safari 40,74,2018-08-15 +session,459,4,Firefox 20,83,2017-04-08 +session,459,5,Chrome 3,48,2018-07-10 +session,459,6,Internet Explorer 27,19,2017-11-05 +session,459,7,Safari 50,69,2018-02-01 +user,460,Macie,Jared,27 +session,460,0,Internet Explorer 15,43,2018-06-12 +session,460,1,Safari 35,70,2016-11-24 +session,460,2,Firefox 47,87,2016-12-16 +session,460,3,Firefox 30,102,2018-07-06 +session,460,4,Safari 8,39,2016-10-01 +session,460,5,Safari 48,81,2017-06-02 +session,460,6,Safari 15,105,2016-10-15 +session,460,7,Chrome 18,108,2017-06-21 +session,460,8,Safari 46,112,2016-12-23 +session,460,9,Chrome 6,63,2018-11-18 +user,461,Elmo,Chris,18 +session,461,0,Firefox 7,71,2017-02-14 +session,461,1,Firefox 17,42,2016-06-02 +session,461,2,Firefox 43,103,2018-05-14 +session,461,3,Safari 13,88,2017-03-21 +session,461,4,Firefox 14,52,2018-11-20 +session,461,5,Chrome 7,101,2017-07-01 +session,461,6,Chrome 32,0,2016-08-20 +session,461,7,Chrome 46,27,2018-01-23 +session,461,8,Internet Explorer 21,41,2018-01-14 +user,462,Luigi,Chantelle,47 +session,462,0,Internet Explorer 36,42,2018-02-23 +user,463,Louanne,Leroy,97 +session,463,0,Safari 21,42,2016-09-09 +session,463,1,Safari 11,119,2016-07-23 +session,463,2,Safari 4,29,2018-04-16 +session,463,3,Chrome 10,39,2016-09-04 +session,463,4,Internet Explorer 23,91,2018-05-31 +session,463,5,Firefox 19,7,2016-08-13 +session,463,6,Safari 24,49,2017-11-07 +user,464,Horacio,Chang,55 +session,464,0,Safari 43,83,2017-04-30 +user,465,Cordell,Kris,27 +session,465,0,Firefox 50,14,2018-01-02 +session,465,1,Internet Explorer 26,36,2017-05-08 +session,465,2,Chrome 42,43,2017-06-17 +session,465,3,Internet Explorer 36,105,2016-08-27 +session,465,4,Safari 18,30,2018-04-07 +session,465,5,Internet Explorer 10,12,2019-01-26 +session,465,6,Internet Explorer 22,3,2017-04-20 +session,465,7,Chrome 10,12,2017-02-23 +session,465,8,Internet Explorer 49,78,2016-07-26 +session,465,9,Internet Explorer 43,47,2017-12-24 +user,466,Chantal,Keren,90 +session,466,0,Chrome 29,68,2018-12-31 +session,466,1,Chrome 28,35,2017-02-28 +session,466,2,Firefox 49,46,2017-01-05 +session,466,3,Safari 17,57,2016-09-23 +user,467,Jake,Lara,74 +session,467,0,Firefox 46,59,2017-12-19 +session,467,1,Safari 9,63,2018-06-15 +session,467,2,Chrome 1,116,2018-06-04 +session,467,3,Chrome 35,17,2017-04-12 +session,467,4,Internet Explorer 19,43,2017-04-11 +session,467,5,Chrome 15,29,2016-06-23 +session,467,6,Firefox 18,103,2016-11-20 +session,467,7,Safari 25,32,2017-06-02 +session,467,8,Chrome 34,23,2017-04-05 +session,467,9,Safari 35,86,2018-05-10 +user,468,Kristina,Hellen,85 +session,468,0,Internet Explorer 2,50,2017-06-23 +session,468,1,Internet Explorer 3,40,2017-05-02 +session,468,2,Safari 17,27,2018-12-25 +session,468,3,Safari 42,4,2018-08-25 +user,469,China,Beckie,93 +session,469,0,Internet Explorer 38,91,2017-08-04 +user,470,Graig,Cole,67 +session,470,0,Safari 5,67,2018-09-07 +session,470,1,Firefox 36,12,2018-04-20 +session,470,2,Safari 24,45,2017-08-10 +user,471,Lyndsey,Martina,72 +session,471,0,Firefox 25,37,2017-10-11 +user,472,Vernie,Quincy,19 +session,472,0,Safari 23,117,2017-01-26 +session,472,1,Internet Explorer 6,89,2018-11-21 +session,472,2,Firefox 34,83,2017-12-30 +session,472,3,Chrome 32,29,2018-05-27 +session,472,4,Chrome 5,13,2017-02-19 +session,472,5,Internet Explorer 15,111,2018-03-06 +session,472,6,Chrome 5,107,2018-07-13 +session,472,7,Safari 19,2,2017-02-18 +session,472,8,Internet Explorer 3,90,2016-08-28 +user,473,Willette,Delaine,23 +session,473,0,Firefox 25,1,2018-01-27 +session,473,1,Firefox 14,36,2018-05-06 +session,473,2,Safari 26,33,2016-08-30 +session,473,3,Chrome 50,83,2017-08-25 +session,473,4,Firefox 42,35,2018-10-03 +session,473,5,Internet Explorer 18,73,2018-06-22 +user,474,Roseann,Ashley,84 +session,474,0,Chrome 3,19,2017-04-03 +session,474,1,Chrome 26,90,2017-10-13 +session,474,2,Firefox 50,35,2016-07-04 +session,474,3,Internet Explorer 21,14,2017-11-08 +session,474,4,Safari 46,98,2019-01-11 +session,474,5,Firefox 39,16,2017-10-12 +session,474,6,Internet Explorer 38,63,2018-05-25 +session,474,7,Safari 8,33,2017-06-16 +session,474,8,Firefox 4,21,2018-12-27 +session,474,9,Internet Explorer 16,80,2016-10-08 +user,475,Cleveland,Mia,70 +session,475,0,Safari 45,41,2018-07-19 +session,475,1,Chrome 41,110,2017-04-10 +session,475,2,Safari 15,60,2018-03-10 +session,475,3,Chrome 49,82,2016-06-24 +user,476,Janell,Earlene,63 +session,476,0,Chrome 12,13,2017-06-21 +session,476,1,Safari 48,101,2017-06-15 +session,476,2,Internet Explorer 22,105,2018-07-04 +session,476,3,Safari 25,80,2018-06-21 +session,476,4,Safari 8,43,2017-04-20 +session,476,5,Internet Explorer 16,80,2018-07-11 +session,476,6,Safari 40,98,2016-10-09 +session,476,7,Chrome 19,106,2018-06-11 +session,476,8,Firefox 8,63,2017-01-09 +session,476,9,Internet Explorer 20,96,2016-07-24 +user,477,Marylee,Sherron,94 +session,477,0,Safari 38,23,2017-12-18 +session,477,1,Safari 34,67,2018-11-24 +session,477,2,Firefox 12,52,2018-07-24 +session,477,3,Safari 21,82,2016-10-17 +user,478,Jordan,Dee,12 +session,478,0,Internet Explorer 33,39,2017-06-02 +session,478,1,Internet Explorer 19,102,2017-03-13 +session,478,2,Firefox 49,72,2017-08-24 +session,478,3,Internet Explorer 6,112,2018-04-07 +session,478,4,Firefox 39,88,2017-08-05 +session,478,5,Safari 30,66,2017-11-30 +session,478,6,Internet Explorer 10,30,2016-11-05 +session,478,7,Safari 10,24,2017-08-17 +session,478,8,Safari 9,64,2016-08-10 +session,478,9,Firefox 33,26,2018-10-29 +user,479,Claud,Loyd,53 +session,479,0,Chrome 8,91,2017-04-11 +session,479,1,Firefox 44,53,2017-10-17 +session,479,2,Safari 15,86,2019-01-31 +session,479,3,Internet Explorer 27,54,2017-05-12 +session,479,4,Firefox 17,38,2017-11-21 +session,479,5,Firefox 7,63,2017-09-19 +session,479,6,Internet Explorer 5,112,2018-06-13 +session,479,7,Chrome 22,91,2016-09-19 +user,480,Elijah,Alita,40 +session,480,0,Firefox 12,104,2018-06-04 +session,480,1,Safari 26,115,2017-11-15 +session,480,2,Firefox 17,105,2017-01-17 +session,480,3,Chrome 1,4,2019-01-04 +user,481,Andra,Sherie,66 +session,481,0,Chrome 24,117,2018-05-18 +session,481,1,Chrome 49,107,2017-12-02 +session,481,2,Firefox 49,2,2017-05-07 +user,482,Alba,Delilah,80 +session,482,0,Internet Explorer 39,83,2018-09-17 +session,482,1,Chrome 49,49,2018-01-03 +session,482,2,Safari 37,113,2017-03-20 +session,482,3,Safari 20,80,2017-10-18 +session,482,4,Chrome 37,14,2017-08-21 +session,482,5,Chrome 26,83,2016-11-13 +session,482,6,Internet Explorer 42,85,2016-11-06 +session,482,7,Chrome 40,61,2016-08-10 +session,482,8,Safari 41,72,2016-08-19 +session,482,9,Firefox 18,42,2017-05-10 +user,483,Johnnie,Rayna,45 +session,483,0,Firefox 4,71,2018-02-11 +session,483,1,Chrome 29,102,2017-12-09 +session,483,2,Internet Explorer 28,63,2016-09-26 +session,483,3,Chrome 20,65,2018-09-07 +session,483,4,Firefox 16,18,2017-07-16 +session,483,5,Safari 7,42,2017-10-09 +session,483,6,Chrome 2,36,2017-06-04 +session,483,7,Chrome 40,112,2018-06-26 +user,484,Nancie,Burt,59 +session,484,0,Firefox 5,54,2016-08-23 +session,484,1,Chrome 3,84,2017-12-23 +session,484,2,Chrome 22,95,2017-08-06 +session,484,3,Internet Explorer 22,52,2016-11-10 +session,484,4,Internet Explorer 34,46,2016-07-28 +session,484,5,Safari 39,60,2016-11-21 +user,485,Irwin,Eric,92 +session,485,0,Internet Explorer 30,29,2016-11-02 +session,485,1,Safari 49,76,2019-01-13 +session,485,2,Internet Explorer 8,91,2017-07-02 +session,485,3,Internet Explorer 36,110,2018-08-04 +session,485,4,Safari 14,69,2017-12-29 +user,486,Henrietta,Regena,48 +session,486,0,Chrome 30,100,2017-07-09 +session,486,1,Safari 30,23,2018-10-24 +session,486,2,Firefox 48,54,2019-02-07 +session,486,3,Firefox 34,109,2017-06-04 +session,486,4,Internet Explorer 11,29,2018-04-05 +user,487,Giuseppe,Zenobia,2 +session,487,0,Internet Explorer 9,0,2017-04-05 +session,487,1,Safari 41,86,2017-10-04 +session,487,2,Internet Explorer 29,65,2017-09-19 +session,487,3,Chrome 10,85,2018-07-31 +session,487,4,Firefox 17,113,2017-11-21 +session,487,5,Safari 21,23,2018-05-21 +session,487,6,Internet Explorer 41,73,2016-05-21 +session,487,7,Firefox 24,24,2016-08-29 +user,488,Mao,Kasey,90 +session,488,0,Safari 50,29,2017-05-05 +session,488,1,Internet Explorer 43,59,2018-04-11 +session,488,2,Chrome 38,105,2018-10-01 +session,488,3,Firefox 19,79,2018-10-07 +session,488,4,Internet Explorer 10,101,2018-02-03 +session,488,5,Safari 30,5,2017-01-28 +session,488,6,Firefox 13,88,2016-06-08 +user,489,Floyd,Trent,11 +session,489,0,Safari 18,41,2017-02-14 +session,489,1,Chrome 6,12,2017-09-07 +session,489,2,Safari 13,8,2017-11-28 +session,489,3,Internet Explorer 16,48,2019-02-10 +session,489,4,Safari 36,1,2016-05-26 +session,489,5,Safari 27,80,2017-03-06 +session,489,6,Chrome 21,20,2016-12-26 +session,489,7,Internet Explorer 22,110,2017-01-18 +user,490,Versie,Yuriko,22 +session,490,0,Safari 3,89,2019-01-23 +session,490,1,Chrome 7,6,2016-11-08 +session,490,2,Firefox 36,69,2017-06-08 +session,490,3,Chrome 2,112,2017-12-25 +session,490,4,Internet Explorer 18,118,2018-04-12 +session,490,5,Internet Explorer 50,26,2018-07-16 +session,490,6,Firefox 19,24,2018-07-03 +session,490,7,Chrome 12,112,2018-05-31 +session,490,8,Internet Explorer 3,83,2016-10-18 +session,490,9,Safari 27,70,2016-06-20 +user,491,Belkis,Sanora,53 +session,491,0,Internet Explorer 50,103,2019-02-01 +session,491,1,Internet Explorer 8,108,2016-10-31 +session,491,2,Internet Explorer 13,97,2018-10-31 +session,491,3,Firefox 39,13,2019-02-04 +session,491,4,Internet Explorer 44,3,2018-08-30 +session,491,5,Firefox 34,57,2017-12-25 +session,491,6,Chrome 22,92,2018-08-17 +session,491,7,Chrome 20,60,2019-01-17 +user,492,Edgar,Tamesha,28 +session,492,0,Safari 5,21,2018-01-27 +session,492,1,Internet Explorer 10,3,2017-04-02 +session,492,2,Firefox 35,5,2017-02-16 +session,492,3,Firefox 18,10,2018-12-25 +session,492,4,Internet Explorer 47,114,2018-07-07 +session,492,5,Firefox 11,16,2018-08-09 +session,492,6,Internet Explorer 29,107,2017-05-30 +session,492,7,Safari 47,26,2016-06-23 +user,493,Charlette,Rebecca,27 +session,493,0,Chrome 19,69,2017-01-02 +session,493,1,Firefox 12,32,2017-03-07 +session,493,2,Safari 44,107,2016-12-30 +session,493,3,Safari 22,51,2017-04-18 +session,493,4,Safari 39,92,2018-05-22 +session,493,5,Internet Explorer 9,80,2018-12-02 +user,494,Roman,Virgil,28 +session,494,0,Safari 34,45,2018-12-27 +user,495,Nathaniel,Chase,3 +session,495,0,Safari 21,26,2017-10-19 +session,495,1,Safari 38,95,2016-06-20 +session,495,2,Chrome 1,37,2017-02-03 +session,495,3,Safari 28,71,2017-03-17 +user,496,Miles,Deeann,53 +session,496,0,Firefox 13,24,2018-02-04 +session,496,1,Chrome 27,64,2017-02-24 +user,497,Marcelo,Sam,30 +session,497,0,Chrome 42,14,2017-10-06 +user,498,Sol,Terrell,54 +session,498,0,Internet Explorer 31,32,2018-01-26 +user,499,Antonia,Gale,36 +session,499,0,Safari 25,21,2016-06-21 +user,500,Bebe,Ira,73 +session,500,0,Internet Explorer 21,46,2017-02-08 +session,500,1,Firefox 7,113,2018-12-05 +session,500,2,Internet Explorer 20,102,2016-07-14 +session,500,3,Firefox 11,15,2018-10-18 +session,500,4,Firefox 35,119,2016-10-04 +user,501,Alton,Zachery,88 +session,501,0,Chrome 23,11,2017-09-15 +session,501,1,Firefox 40,101,2019-01-18 +user,502,Mahalia,Katy,67 +session,502,0,Chrome 35,46,2018-10-31 +session,502,1,Firefox 18,72,2017-04-26 +session,502,2,Safari 49,53,2018-08-23 +session,502,3,Internet Explorer 13,41,2019-01-19 +session,502,4,Chrome 23,48,2016-07-14 +session,502,5,Firefox 4,96,2017-05-05 +session,502,6,Safari 2,15,2016-11-28 +session,502,7,Internet Explorer 41,103,2016-12-23 +session,502,8,Internet Explorer 49,9,2016-11-19 +session,502,9,Firefox 16,63,2018-04-29 +user,503,Lashell,Verla,68 +session,503,0,Internet Explorer 28,24,2018-07-13 +session,503,1,Safari 35,38,2017-04-21 +session,503,2,Safari 29,57,2016-10-02 +session,503,3,Safari 20,27,2018-07-17 +user,504,Rafael,Yaeko,32 +session,504,0,Chrome 25,46,2018-12-19 +session,504,1,Firefox 44,47,2018-04-08 +session,504,2,Firefox 13,32,2018-06-20 +session,504,3,Safari 26,80,2017-09-06 +session,504,4,Firefox 24,94,2018-03-03 +session,504,5,Firefox 31,31,2018-08-25 +session,504,6,Internet Explorer 8,10,2017-07-29 +session,504,7,Chrome 15,107,2018-11-25 +session,504,8,Safari 10,116,2018-03-07 +session,504,9,Chrome 28,54,2018-02-03 +user,505,Lynn,Yuk,22 +session,505,0,Safari 26,78,2018-02-13 +session,505,1,Safari 13,72,2018-11-21 +session,505,2,Firefox 40,33,2018-07-25 +session,505,3,Internet Explorer 19,57,2017-09-20 +session,505,4,Firefox 13,74,2016-08-08 +session,505,5,Safari 39,52,2016-09-01 +session,505,6,Internet Explorer 7,103,2018-01-25 +session,505,7,Chrome 14,49,2017-04-14 +user,506,Kimi,Andrew,88 +session,506,0,Chrome 46,67,2017-09-03 +session,506,1,Chrome 22,108,2016-06-12 +user,507,Rubie,Kala,70 +session,507,0,Chrome 15,65,2016-06-08 +session,507,1,Internet Explorer 50,105,2018-10-25 +session,507,2,Safari 31,9,2016-09-20 +session,507,3,Chrome 14,118,2017-01-15 +session,507,4,Safari 16,10,2017-10-22 +session,507,5,Firefox 9,6,2017-06-08 +session,507,6,Chrome 30,101,2018-01-31 +session,507,7,Chrome 4,37,2016-12-07 +session,507,8,Firefox 43,92,2018-10-22 +user,508,Latia,Lucio,33 +session,508,0,Safari 39,53,2018-01-24 +session,508,1,Chrome 18,5,2017-11-11 +session,508,2,Firefox 37,59,2017-09-22 +session,508,3,Firefox 33,23,2016-05-23 +session,508,4,Internet Explorer 6,106,2016-12-27 +session,508,5,Firefox 32,12,2016-08-17 +session,508,6,Internet Explorer 10,95,2017-06-13 +session,508,7,Firefox 11,90,2017-12-12 +user,509,Jarod,Cyrus,39 +session,509,0,Safari 50,6,2017-07-04 +session,509,1,Chrome 34,8,2019-01-16 +session,509,2,Firefox 10,25,2016-11-16 +session,509,3,Chrome 30,110,2017-08-26 +session,509,4,Firefox 40,53,2017-09-15 +session,509,5,Internet Explorer 9,38,2018-07-09 +session,509,6,Firefox 25,96,2016-10-26 +user,510,Renato,Allegra,34 +session,510,0,Chrome 23,12,2017-08-14 +session,510,1,Firefox 34,72,2017-05-01 +session,510,2,Chrome 40,8,2018-05-01 +session,510,3,Firefox 47,44,2018-03-23 +session,510,4,Safari 31,47,2016-12-21 +session,510,5,Chrome 39,44,2016-08-21 +session,510,6,Chrome 40,43,2017-09-03 +session,510,7,Internet Explorer 5,25,2017-10-10 +session,510,8,Firefox 41,82,2018-02-07 +user,511,Sharita,Svetlana,3 +session,511,0,Firefox 30,101,2017-04-16 +session,511,1,Chrome 22,106,2016-12-10 +session,511,2,Firefox 17,55,2016-08-11 +session,511,3,Safari 49,75,2017-08-30 +session,511,4,Safari 12,36,2018-10-19 +session,511,5,Safari 9,76,2016-10-05 +session,511,6,Internet Explorer 28,89,2017-08-15 +session,511,7,Firefox 36,60,2017-04-19 +session,511,8,Firefox 43,54,2017-07-05 +user,512,Melony,Del,79 +session,512,0,Firefox 15,109,2016-08-20 +session,512,1,Internet Explorer 21,47,2018-08-20 +session,512,2,Firefox 1,77,2016-07-06 +session,512,3,Firefox 48,38,2017-02-22 +session,512,4,Firefox 30,73,2017-08-08 +session,512,5,Firefox 6,18,2018-10-04 +session,512,6,Safari 29,114,2017-07-25 +session,512,7,Chrome 6,117,2017-10-24 +user,513,Tamesha,Garfield,79 +session,513,0,Chrome 11,22,2018-09-07 +session,513,1,Safari 15,2,2016-11-20 +session,513,2,Safari 43,21,2017-12-12 +user,514,Duncan,Ayako,45 +session,514,0,Firefox 20,29,2017-06-26 +session,514,1,Firefox 10,67,2017-12-11 +session,514,2,Internet Explorer 19,115,2018-07-28 +session,514,3,Firefox 4,45,2016-10-12 +session,514,4,Chrome 42,109,2016-06-25 +user,515,Albertina,April,84 +session,515,0,Firefox 41,83,2018-12-18 +session,515,1,Safari 7,19,2017-06-17 +session,515,2,Internet Explorer 2,84,2017-05-08 +user,516,Elton,Consuelo,43 +session,516,0,Firefox 12,88,2017-05-25 +user,517,Vesta,Albina,5 +session,517,0,Internet Explorer 26,2,2016-07-30 +session,517,1,Chrome 25,104,2018-05-29 +session,517,2,Chrome 4,2,2017-09-01 +session,517,3,Chrome 18,66,2018-01-13 +session,517,4,Safari 25,82,2016-09-27 +session,517,5,Chrome 43,27,2018-07-19 +session,517,6,Chrome 27,101,2016-07-29 +session,517,7,Firefox 5,39,2017-01-05 +session,517,8,Chrome 25,111,2017-03-04 +session,517,9,Safari 6,107,2018-08-01 +user,518,Kira,Christie,12 +session,518,0,Safari 7,49,2017-12-07 +session,518,1,Safari 50,86,2017-12-14 +session,518,2,Safari 31,71,2018-05-01 +session,518,3,Chrome 46,75,2017-02-26 +session,518,4,Internet Explorer 31,76,2018-03-09 +session,518,5,Chrome 22,50,2017-06-03 +session,518,6,Safari 47,85,2018-01-08 +user,519,Hung,Angella,87 +session,519,0,Chrome 40,43,2016-10-21 +session,519,1,Chrome 34,89,2017-03-26 +user,520,Josiah,Merrill,82 +session,520,0,Firefox 40,25,2016-09-19 +session,520,1,Safari 43,27,2019-01-29 +session,520,2,Internet Explorer 20,94,2017-11-22 +session,520,3,Firefox 18,57,2019-01-10 +session,520,4,Chrome 14,19,2016-12-11 +session,520,5,Safari 14,74,2017-10-26 +session,520,6,Chrome 33,13,2018-01-24 +session,520,7,Internet Explorer 40,32,2017-12-29 +session,520,8,Safari 19,35,2016-10-07 +user,521,Hazel,Lyman,51 +session,521,0,Safari 3,19,2017-12-04 +session,521,1,Safari 34,26,2018-08-25 +session,521,2,Firefox 14,98,2017-06-14 +user,522,Titus,Arturo,90 +session,522,0,Internet Explorer 45,99,2018-01-11 +session,522,1,Chrome 5,10,2017-05-26 +session,522,2,Internet Explorer 29,28,2016-12-12 +session,522,3,Chrome 15,35,2017-12-16 +session,522,4,Chrome 47,73,2017-09-06 +user,523,Lamont,Jacquelyn,97 +session,523,0,Safari 28,73,2017-04-13 +session,523,1,Safari 43,54,2017-09-11 +session,523,2,Internet Explorer 35,13,2019-01-26 +session,523,3,Safari 44,59,2018-04-10 +session,523,4,Safari 41,89,2019-02-09 +user,524,Charles,Karri,99 +session,524,0,Chrome 50,75,2018-03-09 +session,524,1,Chrome 47,76,2018-01-28 +session,524,2,Chrome 36,20,2016-07-07 +session,524,3,Chrome 32,116,2018-03-31 +session,524,4,Chrome 30,68,2018-11-07 +session,524,5,Safari 47,31,2017-06-23 +session,524,6,Chrome 8,54,2018-09-16 +user,525,Jinny,Aja,38 +session,525,0,Safari 47,15,2016-11-06 +user,526,Mary,Jere,65 +session,526,0,Chrome 5,28,2017-01-04 +session,526,1,Firefox 20,2,2018-05-12 +user,527,Brant,Brett,95 +session,527,0,Chrome 22,87,2018-11-29 +session,527,1,Chrome 30,92,2019-02-08 +session,527,2,Internet Explorer 14,97,2018-02-12 +session,527,3,Firefox 12,10,2017-04-12 +session,527,4,Safari 50,119,2017-08-23 +session,527,5,Internet Explorer 42,90,2016-12-02 +user,528,Yadira,Adrienne,0 +session,528,0,Internet Explorer 33,99,2017-09-16 +session,528,1,Firefox 23,38,2018-01-02 +user,529,Nina,Xenia,16 +session,529,0,Safari 26,77,2016-10-14 +session,529,1,Chrome 25,32,2018-11-10 +user,530,Malik,Frankie,4 +session,530,0,Internet Explorer 6,48,2017-10-16 +session,530,1,Internet Explorer 33,21,2017-09-25 +session,530,2,Internet Explorer 50,30,2017-04-04 +session,530,3,Firefox 19,78,2017-08-01 +session,530,4,Safari 11,8,2018-03-17 +session,530,5,Internet Explorer 21,15,2017-09-17 +session,530,6,Internet Explorer 3,37,2016-08-11 +session,530,7,Safari 28,97,2016-10-29 +session,530,8,Safari 18,91,2018-03-19 +session,530,9,Safari 47,12,2018-08-08 +user,531,Dolly,Jermaine,25 +session,531,0,Chrome 14,62,2016-06-24 +session,531,1,Firefox 27,107,2017-02-20 +session,531,2,Chrome 47,65,2017-04-22 +session,531,3,Firefox 42,119,2016-11-23 +session,531,4,Safari 32,95,2019-01-29 +session,531,5,Internet Explorer 35,30,2018-06-25 +user,532,Vita,Johana,41 +session,532,0,Firefox 4,11,2016-07-27 +session,532,1,Safari 30,57,2019-01-28 +session,532,2,Internet Explorer 26,52,2019-02-06 +session,532,3,Chrome 10,112,2016-12-11 +session,532,4,Chrome 18,78,2016-08-19 +user,533,Karyl,Gerry,67 +session,533,0,Chrome 24,22,2018-12-06 +session,533,1,Chrome 17,12,2019-02-04 +session,533,2,Safari 1,28,2017-08-01 +session,533,3,Internet Explorer 6,14,2018-08-02 +session,533,4,Firefox 41,4,2018-06-10 +user,534,Hildegarde,Stephen,41 +session,534,0,Safari 22,91,2016-08-29 +session,534,1,Safari 19,79,2017-08-24 +session,534,2,Safari 34,84,2017-08-06 +session,534,3,Firefox 40,64,2018-08-19 +user,535,Brendan,Nubia,42 +session,535,0,Safari 37,49,2017-04-25 +session,535,1,Safari 46,94,2018-11-18 +session,535,2,Chrome 15,17,2018-11-01 +session,535,3,Internet Explorer 31,10,2018-03-21 +user,536,Gus,Irish,3 +session,536,0,Internet Explorer 34,29,2018-05-20 +session,536,1,Safari 37,43,2016-10-25 +session,536,2,Safari 35,9,2018-11-11 +session,536,3,Safari 37,37,2017-12-13 +session,536,4,Safari 46,89,2017-05-19 +session,536,5,Firefox 45,4,2016-09-16 +user,537,Lavina,Emely,73 +session,537,0,Internet Explorer 5,27,2019-01-06 +session,537,1,Safari 36,35,2017-01-07 +session,537,2,Safari 30,14,2018-07-08 +session,537,3,Internet Explorer 30,27,2017-08-27 +session,537,4,Safari 46,101,2017-11-19 +user,538,Consuelo,Carmelo,65 +session,538,0,Safari 34,57,2017-08-11 +user,539,Carroll,Lizabeth,7 +session,539,0,Internet Explorer 2,45,2018-04-03 +user,540,Neal,Juan,31 +session,540,0,Chrome 23,35,2018-03-02 +session,540,1,Safari 38,36,2016-06-18 +session,540,2,Safari 10,56,2018-11-18 +session,540,3,Safari 8,51,2018-12-28 +user,541,Ilda,Jerrell,38 +session,541,0,Internet Explorer 8,75,2018-04-09 +session,541,1,Firefox 3,13,2017-05-17 +session,541,2,Chrome 9,7,2018-10-11 +session,541,3,Firefox 38,119,2017-03-17 +user,542,Sterling,Lavona,18 +session,542,0,Internet Explorer 32,107,2017-12-14 +session,542,1,Chrome 47,19,2016-08-30 +session,542,2,Firefox 9,63,2018-06-28 +session,542,3,Chrome 45,50,2016-12-20 +session,542,4,Safari 9,54,2017-08-18 +session,542,5,Internet Explorer 7,72,2016-07-17 +user,543,Debora,Bettye,74 +session,543,0,Internet Explorer 35,88,2017-02-15 +session,543,1,Safari 47,7,2016-11-24 +session,543,2,Firefox 44,62,2017-03-13 +session,543,3,Safari 4,24,2016-09-26 +user,544,Mercedez,Palma,7 +session,544,0,Chrome 19,7,2016-10-07 +session,544,1,Safari 18,31,2016-11-06 +session,544,2,Internet Explorer 8,39,2017-08-12 +session,544,3,Firefox 37,71,2019-01-01 +session,544,4,Chrome 10,85,2018-07-19 +user,545,Ernie,Cheryl,56 +session,545,0,Internet Explorer 40,44,2016-05-29 +session,545,1,Internet Explorer 32,87,2018-05-13 +session,545,2,Safari 36,103,2018-04-26 +user,546,Cayla,Jerrie,97 +session,546,0,Firefox 7,105,2017-05-12 +session,546,1,Chrome 39,1,2019-01-13 +session,546,2,Safari 38,111,2017-03-25 +session,546,3,Internet Explorer 47,87,2018-12-25 +session,546,4,Safari 36,5,2016-07-04 +session,546,5,Safari 13,59,2017-03-08 +session,546,6,Firefox 19,79,2016-08-27 +user,547,Season,Odilia,51 +session,547,0,Internet Explorer 15,30,2016-11-15 +session,547,1,Chrome 41,78,2017-11-04 +session,547,2,Safari 41,73,2018-03-08 +session,547,3,Chrome 2,79,2017-05-06 +session,547,4,Internet Explorer 26,19,2017-09-29 +session,547,5,Safari 13,9,2017-11-21 +user,548,Georgine,Gloria,68 +session,548,0,Safari 2,14,2019-01-02 +session,548,1,Internet Explorer 25,90,2018-07-09 +session,548,2,Safari 22,78,2018-03-14 +session,548,3,Firefox 28,37,2017-12-30 +session,548,4,Internet Explorer 14,3,2018-03-03 +session,548,5,Chrome 10,4,2017-07-18 +user,549,Antoine,Major,62 +session,549,0,Firefox 34,8,2016-06-15 +user,550,Houston,Gale,10 +session,550,0,Internet Explorer 3,46,2017-12-30 +session,550,1,Firefox 7,23,2018-08-06 +session,550,2,Firefox 15,103,2016-06-09 +session,550,3,Internet Explorer 10,86,2017-11-22 +session,550,4,Internet Explorer 6,27,2018-12-20 +session,550,5,Internet Explorer 31,80,2017-02-28 +session,550,6,Safari 25,64,2018-11-05 +session,550,7,Safari 38,84,2018-12-14 +session,550,8,Safari 16,3,2018-10-17 +user,551,Karlyn,Julius,94 +session,551,0,Firefox 16,19,2017-05-21 +session,551,1,Safari 14,100,2017-01-23 +user,552,Demetra,Boris,51 +session,552,0,Safari 4,81,2017-08-02 +session,552,1,Firefox 38,15,2017-01-05 +session,552,2,Chrome 41,27,2017-04-28 +session,552,3,Firefox 21,33,2017-06-13 +user,553,Kerry,Cole,70 +session,553,0,Safari 27,112,2017-07-24 +session,553,1,Internet Explorer 5,6,2016-07-09 +session,553,2,Internet Explorer 18,103,2018-11-29 +session,553,3,Chrome 26,69,2017-04-19 +session,553,4,Internet Explorer 15,67,2018-07-11 +session,553,5,Chrome 11,86,2018-07-29 +session,553,6,Safari 1,15,2016-11-28 +session,553,7,Safari 4,44,2019-02-10 +session,553,8,Internet Explorer 33,87,2019-02-02 +session,553,9,Internet Explorer 24,18,2017-08-12 +user,554,Stewart,Magen,11 +session,554,0,Internet Explorer 39,118,2018-11-01 +session,554,1,Firefox 20,74,2019-02-12 +user,555,Colton,Charline,33 +session,555,0,Internet Explorer 31,58,2017-08-16 +session,555,1,Chrome 47,114,2016-09-21 +session,555,2,Chrome 23,4,2019-02-11 +session,555,3,Internet Explorer 44,91,2016-12-07 +session,555,4,Firefox 25,102,2017-10-12 +session,555,5,Safari 7,44,2018-01-30 +session,555,6,Internet Explorer 9,37,2018-05-21 +session,555,7,Safari 1,83,2016-07-05 +user,556,Warren,Shandra,47 +session,556,0,Chrome 35,53,2016-06-29 +session,556,1,Firefox 21,112,2018-01-07 +session,556,2,Internet Explorer 28,54,2018-09-14 +session,556,3,Safari 21,106,2018-01-13 +session,556,4,Firefox 40,92,2018-10-05 +user,557,Karole,Vicenta,30 +session,557,0,Internet Explorer 39,78,2017-09-07 +session,557,1,Safari 30,57,2018-10-12 +session,557,2,Firefox 43,3,2016-12-24 +session,557,3,Firefox 23,6,2017-04-18 +session,557,4,Internet Explorer 23,2,2017-03-25 +user,558,Dona,Catherina,79 +session,558,0,Firefox 23,67,2019-02-04 +session,558,1,Internet Explorer 18,84,2018-09-24 +session,558,2,Chrome 26,23,2018-05-05 +session,558,3,Safari 47,83,2016-07-29 +session,558,4,Internet Explorer 32,113,2017-07-07 +session,558,5,Chrome 21,52,2018-11-06 +session,558,6,Safari 1,49,2018-05-15 +user,559,Paris,Son,61 +session,559,0,Internet Explorer 34,91,2018-09-13 +session,559,1,Safari 5,60,2017-10-14 +session,559,2,Firefox 1,110,2018-05-27 +session,559,3,Chrome 11,18,2018-06-10 +session,559,4,Chrome 11,25,2017-04-11 +session,559,5,Internet Explorer 40,31,2017-10-02 +session,559,6,Firefox 14,104,2017-06-04 +session,559,7,Chrome 36,81,2018-02-28 +user,560,Benton,Winston,56 +session,560,0,Firefox 15,55,2017-07-28 +session,560,1,Firefox 9,119,2016-08-09 +session,560,2,Internet Explorer 16,80,2018-08-10 +session,560,3,Internet Explorer 13,88,2016-12-03 +session,560,4,Chrome 37,113,2017-11-19 +user,561,Marcellus,Rosanna,28 +session,561,0,Chrome 39,81,2016-09-02 +session,561,1,Firefox 40,6,2017-10-13 +user,562,Gabrielle,Megan,21 +session,562,0,Chrome 2,86,2017-08-20 +session,562,1,Safari 7,95,2018-09-11 +session,562,2,Safari 34,19,2018-04-26 +session,562,3,Firefox 6,99,2018-02-24 +user,563,Milagro,Julie,49 +session,563,0,Safari 5,93,2018-01-12 +user,564,Un,Kenton,87 +session,564,0,Safari 4,44,2017-10-11 +session,564,1,Safari 21,52,2017-06-01 +session,564,2,Chrome 32,36,2016-11-09 +session,564,3,Chrome 14,9,2017-06-06 +session,564,4,Safari 18,7,2018-01-01 +session,564,5,Firefox 1,54,2018-11-17 +session,564,6,Safari 44,50,2018-07-20 +session,564,7,Firefox 33,59,2016-05-24 +user,565,Cecil,Jeanetta,13 +session,565,0,Safari 29,60,2018-01-28 +session,565,1,Firefox 31,9,2018-05-27 +session,565,2,Safari 35,95,2017-09-10 +session,565,3,Internet Explorer 22,10,2017-07-28 +session,565,4,Chrome 9,2,2018-07-24 +session,565,5,Firefox 37,119,2018-08-13 +session,565,6,Firefox 16,14,2017-11-09 +session,565,7,Safari 14,79,2016-10-20 +session,565,8,Chrome 3,32,2017-11-12 +user,566,Ermelinda,Peter,25 +session,566,0,Firefox 5,31,2017-10-18 +user,567,Luciano,Elton,77 +session,567,0,Chrome 39,60,2017-11-05 +session,567,1,Safari 41,105,2017-02-26 +user,568,Loise,Tom,66 +session,568,0,Firefox 47,49,2016-06-19 +session,568,1,Internet Explorer 49,115,2018-09-13 +session,568,2,Internet Explorer 45,45,2018-09-14 +session,568,3,Chrome 4,77,2016-06-15 +session,568,4,Firefox 4,107,2018-01-31 +session,568,5,Firefox 33,117,2018-10-07 +session,568,6,Internet Explorer 21,55,2017-06-29 +session,568,7,Firefox 14,8,2017-06-01 +session,568,8,Chrome 27,3,2016-05-25 +user,569,Carole,Alfonzo,99 +session,569,0,Firefox 45,36,2016-07-12 +session,569,1,Safari 3,29,2017-01-29 +session,569,2,Firefox 24,28,2016-11-11 +session,569,3,Firefox 44,26,2018-09-22 +session,569,4,Chrome 6,48,2017-04-15 +session,569,5,Internet Explorer 25,78,2017-04-19 +session,569,6,Safari 38,24,2018-09-22 +session,569,7,Chrome 32,19,2017-03-14 +user,570,Del,Akilah,30 +session,570,0,Internet Explorer 13,88,2016-09-08 +session,570,1,Chrome 18,60,2017-11-08 +user,571,Bernarda,Dominque,76 +session,571,0,Firefox 5,67,2018-12-31 +session,571,1,Safari 9,113,2017-11-15 +session,571,2,Firefox 10,12,2018-12-11 +session,571,3,Firefox 39,102,2016-06-19 +session,571,4,Firefox 38,104,2017-07-18 +session,571,5,Firefox 28,27,2016-07-02 +session,571,6,Chrome 50,116,2018-03-13 +user,572,Lilla,Chas,44 +session,572,0,Chrome 11,60,2017-08-04 +session,572,1,Internet Explorer 19,39,2018-10-02 +session,572,2,Firefox 46,92,2018-07-02 +session,572,3,Internet Explorer 12,96,2018-11-07 +session,572,4,Safari 5,31,2017-03-28 +session,572,5,Chrome 19,12,2018-02-11 +session,572,6,Chrome 18,27,2016-12-03 +session,572,7,Internet Explorer 25,55,2016-06-27 +session,572,8,Safari 26,90,2018-11-26 +user,573,Steven,Nick,83 +session,573,0,Safari 13,83,2018-06-23 +session,573,1,Safari 23,19,2017-12-20 +session,573,2,Safari 21,96,2018-07-14 +session,573,3,Chrome 29,15,2017-10-20 +user,574,Hiroko,Madelyn,51 +session,574,0,Internet Explorer 12,63,2018-04-11 +session,574,1,Internet Explorer 34,42,2018-05-17 +session,574,2,Chrome 11,35,2017-03-17 +session,574,3,Internet Explorer 50,2,2016-08-06 +session,574,4,Internet Explorer 37,116,2018-05-31 +user,575,Ashly,Bethann,82 +session,575,0,Firefox 40,19,2018-12-05 +session,575,1,Firefox 20,42,2018-08-25 +session,575,2,Chrome 37,79,2018-05-10 +session,575,3,Safari 47,8,2017-01-03 +user,576,Delbert,Kareem,8 +session,576,0,Firefox 43,29,2018-05-26 +user,577,Lawana,Julian,68 +session,577,0,Safari 49,8,2017-04-21 +session,577,1,Chrome 37,29,2017-10-22 +session,577,2,Chrome 47,26,2019-01-29 +user,578,Andree,Samella,62 +session,578,0,Chrome 18,57,2019-01-18 +session,578,1,Chrome 18,45,2017-10-08 +session,578,2,Internet Explorer 40,0,2017-01-08 +session,578,3,Firefox 18,18,2017-10-30 +session,578,4,Safari 44,7,2017-10-08 +user,579,Brian,Leta,85 +session,579,0,Internet Explorer 40,73,2018-01-28 +user,580,Elisa,Hortensia,76 +session,580,0,Firefox 16,35,2017-02-10 +session,580,1,Chrome 13,73,2018-01-05 +session,580,2,Firefox 15,67,2018-07-22 +session,580,3,Chrome 24,88,2018-03-23 +session,580,4,Chrome 17,54,2018-03-29 +session,580,5,Chrome 6,51,2017-06-24 +session,580,6,Chrome 38,117,2016-12-07 +user,581,Polly,Rossana,28 +session,581,0,Safari 2,97,2017-08-03 +session,581,1,Firefox 42,76,2016-08-10 +session,581,2,Firefox 46,41,2018-01-11 +session,581,3,Internet Explorer 33,18,2016-05-22 +session,581,4,Firefox 44,111,2018-07-05 +session,581,5,Chrome 20,23,2016-11-17 +session,581,6,Firefox 38,78,2018-08-01 +session,581,7,Firefox 13,92,2016-09-03 +session,581,8,Safari 47,59,2019-02-06 +session,581,9,Safari 28,35,2017-09-03 +user,582,Berry,Meredith,79 +session,582,0,Firefox 16,104,2018-07-17 +session,582,1,Safari 26,33,2016-06-11 +session,582,2,Firefox 27,26,2018-01-08 +session,582,3,Chrome 42,37,2017-11-05 +user,583,Bud,Ranae,38 +session,583,0,Internet Explorer 3,45,2017-09-22 +session,583,1,Internet Explorer 31,100,2017-04-13 +user,584,Manual,Darius,99 +session,584,0,Safari 44,35,2017-07-15 +session,584,1,Internet Explorer 26,43,2016-09-06 +session,584,2,Firefox 36,65,2016-09-04 +session,584,3,Firefox 34,25,2016-12-19 +session,584,4,Firefox 28,112,2016-12-19 +session,584,5,Internet Explorer 26,25,2016-10-21 +session,584,6,Internet Explorer 35,63,2016-12-26 +session,584,7,Safari 30,116,2016-08-20 +user,585,Teddy,Antony,21 +session,585,0,Firefox 45,115,2017-07-13 +session,585,1,Safari 41,92,2017-01-03 +session,585,2,Internet Explorer 9,85,2018-10-15 +session,585,3,Firefox 21,112,2018-01-01 +session,585,4,Firefox 3,76,2019-01-25 +session,585,5,Firefox 4,119,2017-10-31 +user,586,Erich,Gearldine,96 +session,586,0,Safari 18,11,2018-05-02 +session,586,1,Internet Explorer 20,83,2018-03-24 +session,586,2,Firefox 41,36,2017-01-30 +session,586,3,Chrome 8,115,2017-02-21 +session,586,4,Safari 40,101,2017-06-30 +session,586,5,Safari 43,106,2019-01-13 +session,586,6,Internet Explorer 27,41,2018-05-30 +session,586,7,Safari 10,77,2017-07-19 +session,586,8,Safari 16,65,2017-11-02 +user,587,Ellie,Lorna,93 +session,587,0,Safari 2,65,2018-01-12 +session,587,1,Firefox 48,67,2018-03-03 +session,587,2,Internet Explorer 2,91,2019-02-10 +session,587,3,Firefox 6,33,2016-07-19 +session,587,4,Chrome 36,83,2017-08-25 +session,587,5,Chrome 38,82,2018-05-23 +session,587,6,Chrome 45,50,2017-01-29 +session,587,7,Chrome 47,52,2017-11-18 +session,587,8,Firefox 32,35,2016-09-18 +user,588,Tamar,Rowena,21 +session,588,0,Firefox 28,29,2018-03-03 +session,588,1,Firefox 3,115,2018-08-21 +session,588,2,Chrome 27,95,2018-04-17 +session,588,3,Chrome 8,106,2016-08-04 +session,588,4,Firefox 17,3,2018-12-11 +session,588,5,Chrome 43,38,2018-12-11 +user,589,Beverley,Delsie,6 +session,589,0,Internet Explorer 49,74,2016-12-13 +session,589,1,Firefox 49,100,2018-01-22 +session,589,2,Firefox 14,34,2016-11-19 +session,589,3,Safari 24,68,2019-01-26 +session,589,4,Safari 31,91,2017-12-15 +session,589,5,Chrome 23,14,2017-07-25 +user,590,Joshua,Debbi,2 +session,590,0,Firefox 4,12,2018-06-06 +user,591,Tony,Harris,26 +session,591,0,Firefox 17,30,2019-01-17 +user,592,Damion,Dick,16 +session,592,0,Internet Explorer 49,75,2018-07-10 +session,592,1,Firefox 34,85,2017-01-25 +session,592,2,Chrome 1,53,2017-10-02 +session,592,3,Chrome 12,119,2017-10-16 +user,593,Burton,Delcie,15 +session,593,0,Safari 1,116,2018-07-08 +session,593,1,Firefox 5,21,2016-11-02 +session,593,2,Firefox 50,97,2018-04-03 +session,593,3,Internet Explorer 18,8,2018-02-24 +session,593,4,Internet Explorer 8,9,2018-12-22 +session,593,5,Chrome 43,32,2018-04-20 +user,594,Myung,Michele,28 +session,594,0,Chrome 34,72,2018-08-28 +session,594,1,Chrome 48,70,2018-10-31 +session,594,2,Chrome 9,95,2018-01-30 +session,594,3,Safari 17,2,2018-11-04 +session,594,4,Safari 33,46,2018-05-06 +user,595,Felicitas,Natalie,99 +session,595,0,Chrome 34,17,2017-06-08 +session,595,1,Internet Explorer 3,106,2017-11-21 +session,595,2,Safari 36,23,2017-08-24 +user,596,Delmar,Elsa,47 +session,596,0,Chrome 33,101,2017-11-30 +session,596,1,Internet Explorer 41,61,2017-01-28 +session,596,2,Safari 1,79,2018-08-10 +session,596,3,Firefox 6,24,2018-08-07 +session,596,4,Chrome 29,109,2019-02-11 +session,596,5,Safari 50,41,2018-02-07 +session,596,6,Chrome 23,13,2018-08-31 +user,597,Beulah,Sharyn,85 +session,597,0,Chrome 25,54,2017-12-23 +session,597,1,Chrome 17,43,2019-01-14 +session,597,2,Chrome 15,108,2019-01-05 +session,597,3,Safari 19,67,2018-07-07 +session,597,4,Safari 45,0,2018-11-01 +user,598,Collen,Marylin,39 +session,598,0,Firefox 35,107,2017-12-10 +session,598,1,Chrome 11,86,2018-07-10 +session,598,2,Chrome 40,40,2017-01-31 +session,598,3,Firefox 24,71,2018-05-12 +user,599,Rochel,Trisha,95 +session,599,0,Internet Explorer 49,110,2017-09-10 +session,599,1,Safari 43,53,2016-08-17 +session,599,2,Safari 14,23,2016-06-28 +session,599,3,Firefox 28,34,2017-02-25 +user,600,Roselia,Tamar,33 +session,600,0,Internet Explorer 1,54,2017-03-19 +user,601,Cortney,Rodrigo,63 +session,601,0,Firefox 10,4,2016-10-03 +session,601,1,Internet Explorer 48,97,2017-07-18 +session,601,2,Firefox 39,22,2019-01-27 +session,601,3,Internet Explorer 35,19,2018-07-10 +session,601,4,Firefox 36,113,2016-06-21 +user,602,Jared,Chastity,80 +session,602,0,Chrome 34,35,2016-08-10 +session,602,1,Internet Explorer 30,105,2016-11-01 +session,602,2,Safari 10,73,2017-02-06 +session,602,3,Internet Explorer 45,93,2019-01-01 +session,602,4,Internet Explorer 7,57,2017-08-10 +session,602,5,Chrome 50,32,2017-10-16 +session,602,6,Internet Explorer 39,77,2017-01-08 +user,603,Sydney,Norman,72 +session,603,0,Internet Explorer 6,57,2017-08-24 +session,603,1,Firefox 41,24,2018-04-02 +session,603,2,Chrome 39,106,2017-04-09 +session,603,3,Chrome 12,87,2018-07-05 +user,604,Chiquita,Catherina,80 +session,604,0,Chrome 36,100,2019-01-03 +session,604,1,Firefox 45,40,2016-09-11 +session,604,2,Chrome 4,45,2017-02-11 +session,604,3,Internet Explorer 45,77,2017-10-17 +session,604,4,Internet Explorer 30,80,2018-10-14 +session,604,5,Firefox 8,29,2016-12-22 +session,604,6,Safari 1,51,2018-08-19 +session,604,7,Firefox 15,116,2016-09-04 +session,604,8,Internet Explorer 43,44,2016-09-05 +session,604,9,Internet Explorer 42,111,2018-06-08 +user,605,Alvaro,Teisha,41 +session,605,0,Chrome 17,118,2017-12-02 +session,605,1,Chrome 36,113,2016-09-03 +session,605,2,Internet Explorer 30,2,2017-12-05 +session,605,3,Firefox 16,69,2017-04-27 +session,605,4,Chrome 15,30,2018-10-16 +session,605,5,Chrome 25,81,2016-09-03 +user,606,Danial,Yan,57 +session,606,0,Internet Explorer 17,71,2017-07-24 +session,606,1,Firefox 17,15,2016-12-25 +session,606,2,Chrome 2,80,2018-01-12 +session,606,3,Firefox 10,64,2017-11-18 +session,606,4,Chrome 29,14,2017-02-20 +session,606,5,Safari 18,31,2018-04-21 +session,606,6,Safari 4,98,2019-02-08 +session,606,7,Internet Explorer 27,22,2018-09-13 +session,606,8,Safari 37,10,2016-10-25 +user,607,Emanuel,Kenda,10 +session,607,0,Safari 14,94,2016-09-05 +session,607,1,Chrome 28,83,2018-11-06 +session,607,2,Safari 50,41,2018-08-11 +session,607,3,Chrome 48,109,2018-12-04 +session,607,4,Internet Explorer 38,4,2018-05-20 +session,607,5,Chrome 5,83,2017-10-02 +session,607,6,Internet Explorer 38,33,2017-04-07 +session,607,7,Internet Explorer 38,44,2017-07-11 +session,607,8,Internet Explorer 36,76,2016-10-18 +session,607,9,Internet Explorer 36,41,2018-08-03 +user,608,Cleveland,Ronnie,63 +session,608,0,Chrome 11,20,2017-01-19 +session,608,1,Safari 12,62,2016-06-07 +user,609,Benedict,Hsiu,70 +session,609,0,Chrome 28,22,2018-12-15 +session,609,1,Safari 17,69,2018-06-08 +session,609,2,Safari 1,87,2016-07-18 +session,609,3,Internet Explorer 28,34,2017-03-07 +session,609,4,Safari 36,105,2016-12-22 +session,609,5,Internet Explorer 43,96,2016-09-18 +session,609,6,Chrome 36,39,2017-07-27 +session,609,7,Firefox 7,43,2016-07-31 +session,609,8,Chrome 21,27,2018-05-05 +user,610,Coy,Jann,17 +session,610,0,Internet Explorer 49,27,2016-07-21 +session,610,1,Internet Explorer 16,4,2017-12-18 +session,610,2,Internet Explorer 37,46,2017-08-22 +session,610,3,Internet Explorer 16,68,2018-10-04 +session,610,4,Chrome 8,21,2016-11-25 +session,610,5,Internet Explorer 33,114,2017-10-15 +session,610,6,Safari 36,96,2018-04-01 +session,610,7,Chrome 24,58,2018-08-23 +session,610,8,Firefox 35,29,2017-04-11 +session,610,9,Internet Explorer 2,86,2017-07-31 +user,611,Randy,Catharine,76 +session,611,0,Internet Explorer 35,77,2018-01-19 +session,611,1,Safari 35,40,2017-01-23 +session,611,2,Internet Explorer 43,38,2018-11-01 +user,612,Tyron,Jessica,14 +session,612,0,Chrome 44,50,2016-11-29 +session,612,1,Firefox 14,28,2018-05-02 +session,612,2,Safari 3,85,2018-12-26 +session,612,3,Internet Explorer 26,104,2017-04-02 +session,612,4,Firefox 25,109,2017-10-15 +session,612,5,Internet Explorer 8,97,2017-04-11 +session,612,6,Internet Explorer 39,94,2019-01-10 +session,612,7,Safari 4,101,2018-03-19 +user,613,Jodee,Cinda,69 +session,613,0,Safari 50,67,2018-04-08 +session,613,1,Chrome 9,95,2018-07-18 +session,613,2,Firefox 47,4,2016-10-12 +session,613,3,Firefox 16,78,2016-10-16 +session,613,4,Safari 7,52,2017-01-29 +session,613,5,Internet Explorer 29,117,2017-09-16 +user,614,Rhona,Kizzie,72 +session,614,0,Chrome 19,53,2018-11-02 +session,614,1,Chrome 39,40,2018-08-11 +session,614,2,Chrome 17,88,2018-12-13 +user,615,Myron,Clement,13 +session,615,0,Internet Explorer 13,36,2017-09-21 +session,615,1,Firefox 12,101,2016-10-22 +session,615,2,Internet Explorer 46,44,2017-01-22 +session,615,3,Firefox 22,82,2017-02-25 +session,615,4,Firefox 34,119,2018-01-18 +session,615,5,Firefox 18,84,2018-06-27 +session,615,6,Safari 29,68,2016-09-18 +session,615,7,Safari 16,18,2016-07-23 +user,616,Enedina,Estelle,56 +session,616,0,Firefox 45,42,2016-10-16 +user,617,Burt,Katherine,55 +session,617,0,Internet Explorer 43,72,2018-12-08 +user,618,Deeann,Rosemary,42 +session,618,0,Firefox 8,100,2017-01-27 +session,618,1,Safari 3,63,2017-07-10 +session,618,2,Chrome 7,95,2018-04-21 +session,618,3,Chrome 34,117,2016-10-24 +session,618,4,Internet Explorer 17,56,2017-01-01 +session,618,5,Internet Explorer 41,20,2016-11-21 +session,618,6,Firefox 34,115,2018-10-07 +session,618,7,Safari 2,12,2018-03-16 +session,618,8,Internet Explorer 34,1,2018-05-15 +session,618,9,Chrome 24,1,2017-08-25 +user,619,Rayna,Denese,30 +session,619,0,Internet Explorer 4,0,2016-08-12 +session,619,1,Internet Explorer 16,92,2018-03-22 +session,619,2,Chrome 26,65,2018-05-05 +session,619,3,Internet Explorer 49,19,2016-06-18 +session,619,4,Safari 34,57,2017-02-06 +session,619,5,Chrome 34,7,2018-11-03 +session,619,6,Internet Explorer 18,108,2019-01-21 +session,619,7,Safari 31,79,2018-08-23 +session,619,8,Safari 42,106,2017-06-26 +session,619,9,Chrome 47,57,2017-09-20 +user,620,Margery,Jody,42 +session,620,0,Safari 31,80,2017-03-15 +session,620,1,Safari 34,46,2017-03-28 +session,620,2,Internet Explorer 13,96,2018-11-02 +session,620,3,Internet Explorer 23,87,2018-04-18 +session,620,4,Safari 11,42,2018-12-29 +session,620,5,Chrome 37,56,2018-02-02 +user,621,Demetra,Ka,45 +session,621,0,Chrome 31,104,2017-11-17 +session,621,1,Firefox 40,62,2018-11-05 +session,621,2,Internet Explorer 46,19,2017-10-03 +session,621,3,Internet Explorer 10,26,2018-12-08 +session,621,4,Safari 43,1,2017-05-07 +session,621,5,Internet Explorer 43,67,2018-07-06 +session,621,6,Firefox 1,100,2016-08-22 +session,621,7,Firefox 26,117,2018-07-18 +user,622,Hien,Cory,24 +session,622,0,Chrome 6,56,2017-09-17 +session,622,1,Safari 23,111,2016-11-21 +session,622,2,Chrome 8,107,2017-05-10 +session,622,3,Chrome 8,38,2016-09-15 +session,622,4,Safari 33,79,2017-12-28 +session,622,5,Internet Explorer 20,53,2017-03-23 +session,622,6,Chrome 29,79,2018-04-23 +session,622,7,Chrome 46,75,2016-09-21 +session,622,8,Firefox 48,68,2016-05-25 +user,623,Karissa,Emilie,98 +session,623,0,Internet Explorer 2,67,2016-09-09 +session,623,1,Safari 32,7,2018-12-11 +session,623,2,Safari 34,93,2018-10-12 +user,624,Queen,Matha,12 +session,624,0,Firefox 24,13,2018-08-24 +session,624,1,Firefox 38,56,2018-05-24 +session,624,2,Internet Explorer 42,20,2016-10-13 +session,624,3,Firefox 26,100,2017-07-23 +session,624,4,Safari 29,18,2018-01-24 +session,624,5,Safari 11,79,2018-11-03 +session,624,6,Safari 12,43,2016-07-11 +session,624,7,Chrome 24,115,2017-06-21 +user,625,Loren,Rikki,10 +session,625,0,Safari 48,87,2016-08-31 +session,625,1,Safari 9,96,2018-03-01 +session,625,2,Internet Explorer 6,103,2016-06-07 +session,625,3,Safari 38,67,2016-08-23 +session,625,4,Chrome 36,71,2017-06-17 +session,625,5,Internet Explorer 28,101,2016-09-28 +session,625,6,Internet Explorer 7,85,2017-08-23 +session,625,7,Firefox 15,10,2016-08-29 +session,625,8,Chrome 30,36,2016-05-24 +user,626,Carman,Jessie,12 +session,626,0,Safari 1,27,2016-11-15 +user,627,Kyong,Gertie,28 +session,627,0,Firefox 50,13,2018-09-15 +session,627,1,Chrome 13,42,2016-06-30 +session,627,2,Firefox 46,104,2016-12-10 +session,627,3,Firefox 2,29,2016-07-04 +session,627,4,Internet Explorer 35,80,2017-02-20 +session,627,5,Safari 22,2,2016-11-17 +session,627,6,Internet Explorer 9,19,2017-09-04 +user,628,Clarine,Adrian,64 +session,628,0,Firefox 17,55,2017-03-13 +session,628,1,Safari 46,59,2016-07-14 +session,628,2,Safari 40,71,2016-10-07 +session,628,3,Firefox 32,79,2018-06-21 +session,628,4,Chrome 37,41,2017-05-16 +session,628,5,Firefox 4,59,2018-02-09 +session,628,6,Internet Explorer 38,37,2017-07-22 +user,629,Diane,Lakeisha,5 +session,629,0,Internet Explorer 16,108,2017-08-15 +session,629,1,Chrome 22,86,2018-12-04 +session,629,2,Firefox 18,68,2017-02-10 +session,629,3,Safari 23,39,2017-11-09 +user,630,Olene,Leann,77 +session,630,0,Internet Explorer 30,54,2017-07-06 +session,630,1,Internet Explorer 47,74,2017-01-24 +user,631,Kim,Humberto,5 +session,631,0,Firefox 6,47,2018-07-25 +session,631,1,Safari 30,46,2018-07-07 +session,631,2,Firefox 8,93,2016-12-06 +session,631,3,Firefox 49,65,2018-07-23 +session,631,4,Chrome 31,37,2018-10-14 +session,631,5,Firefox 46,110,2018-04-21 +session,631,6,Firefox 37,8,2017-03-19 +session,631,7,Safari 18,109,2016-08-27 +user,632,Refugio,Alexis,81 +session,632,0,Chrome 30,108,2017-08-29 +session,632,1,Safari 37,48,2019-02-05 +session,632,2,Chrome 27,61,2016-10-23 +session,632,3,Internet Explorer 48,33,2018-03-07 +user,633,Leopoldo,Shavon,5 +session,633,0,Internet Explorer 30,56,2017-04-17 +session,633,1,Safari 20,90,2017-03-29 +session,633,2,Safari 32,80,2017-02-08 +session,633,3,Firefox 12,119,2017-11-12 +session,633,4,Chrome 13,15,2016-08-30 +session,633,5,Chrome 20,16,2019-01-03 +session,633,6,Internet Explorer 48,96,2017-10-17 +session,633,7,Safari 9,70,2017-05-27 +session,633,8,Chrome 11,24,2017-07-20 +session,633,9,Safari 11,25,2017-01-23 +user,634,Dominique,Victorina,64 +session,634,0,Safari 27,72,2017-07-23 +session,634,1,Chrome 3,116,2018-04-22 +user,635,Frank,Kelsey,96 +session,635,0,Firefox 48,106,2017-06-11 +session,635,1,Chrome 2,48,2017-10-21 +session,635,2,Chrome 25,114,2017-09-15 +session,635,3,Safari 7,110,2018-05-02 +session,635,4,Chrome 31,18,2018-07-14 +session,635,5,Firefox 42,56,2018-06-16 +session,635,6,Internet Explorer 24,17,2016-11-26 +session,635,7,Chrome 18,78,2018-03-15 +session,635,8,Internet Explorer 29,33,2016-12-24 +user,636,Fredrick,Gus,40 +session,636,0,Firefox 43,43,2017-09-25 +session,636,1,Safari 25,6,2017-10-14 +session,636,2,Safari 33,62,2018-04-01 +session,636,3,Safari 18,19,2016-09-14 +session,636,4,Chrome 1,60,2018-12-13 +session,636,5,Chrome 42,88,2017-08-25 +session,636,6,Safari 9,55,2017-10-27 +session,636,7,Chrome 49,32,2018-06-15 +session,636,8,Safari 45,113,2018-10-29 +session,636,9,Internet Explorer 14,24,2018-08-28 +user,637,Jody,Patrick,5 +session,637,0,Safari 12,75,2017-07-12 +user,638,Georgene,Na,30 +session,638,0,Internet Explorer 33,80,2018-05-06 +session,638,1,Safari 47,91,2018-07-08 +user,639,Jackelyn,Tawny,49 +session,639,0,Firefox 33,109,2016-08-10 +session,639,1,Chrome 12,8,2017-10-25 +session,639,2,Firefox 33,114,2017-01-13 +session,639,3,Firefox 38,73,2018-08-18 +user,640,Nisha,Robena,84 +session,640,0,Safari 11,70,2018-11-08 +session,640,1,Internet Explorer 16,98,2016-09-30 +session,640,2,Firefox 31,109,2017-10-04 +session,640,3,Safari 6,41,2016-07-22 +session,640,4,Internet Explorer 50,62,2016-09-03 +session,640,5,Internet Explorer 29,3,2017-12-21 +session,640,6,Chrome 40,73,2018-03-30 +session,640,7,Safari 15,48,2017-01-13 +session,640,8,Safari 33,103,2016-12-31 +session,640,9,Internet Explorer 32,57,2018-06-25 +user,641,Carrol,Gerald,27 +session,641,0,Chrome 36,16,2017-01-13 +session,641,1,Chrome 37,91,2018-11-06 +user,642,Jeffry,Sabrina,63 +session,642,0,Safari 26,66,2018-10-31 +session,642,1,Firefox 41,64,2017-04-04 +session,642,2,Safari 45,15,2016-10-09 +user,643,Fern,Julian,56 +session,643,0,Firefox 28,46,2017-01-12 +session,643,1,Safari 21,49,2016-07-24 +session,643,2,Internet Explorer 24,39,2018-12-18 +session,643,3,Firefox 7,97,2018-03-03 +session,643,4,Chrome 27,44,2018-08-03 +session,643,5,Internet Explorer 24,86,2016-11-23 +session,643,6,Chrome 22,62,2016-07-15 +session,643,7,Chrome 48,56,2018-06-21 +user,644,Lola,Nelly,94 +session,644,0,Chrome 33,111,2017-02-07 +session,644,1,Chrome 37,83,2016-08-10 +session,644,2,Firefox 35,50,2018-12-10 +session,644,3,Chrome 7,22,2018-01-24 +session,644,4,Safari 31,68,2017-03-28 +session,644,5,Chrome 46,11,2016-11-05 +session,644,6,Firefox 48,114,2016-12-10 +user,645,Lurlene,Amee,49 +session,645,0,Chrome 49,75,2017-05-03 +session,645,1,Internet Explorer 46,4,2019-01-10 +session,645,2,Internet Explorer 40,70,2017-06-20 +user,646,Cassy,Jim,40 +session,646,0,Firefox 14,60,2016-10-19 +session,646,1,Firefox 8,119,2018-12-06 +session,646,2,Chrome 34,118,2019-01-21 +session,646,3,Safari 36,18,2017-07-07 +session,646,4,Internet Explorer 16,107,2016-08-23 +session,646,5,Safari 19,25,2018-05-03 +user,647,Bethel,Hassie,23 +session,647,0,Firefox 32,108,2017-11-12 +session,647,1,Safari 41,114,2016-05-31 +session,647,2,Chrome 12,61,2019-01-14 +session,647,3,Firefox 38,109,2017-11-22 +session,647,4,Internet Explorer 13,95,2016-10-17 +session,647,5,Firefox 16,18,2017-02-07 +session,647,6,Firefox 27,104,2018-07-18 +session,647,7,Safari 32,114,2017-01-14 +user,648,Roxane,Crystal,66 +session,648,0,Firefox 43,98,2018-06-24 +user,649,Kristie,Jerilyn,51 +session,649,0,Internet Explorer 37,88,2017-07-24 +session,649,1,Chrome 49,44,2016-11-01 +session,649,2,Firefox 39,32,2017-12-11 +session,649,3,Internet Explorer 27,18,2016-06-11 +session,649,4,Internet Explorer 35,57,2017-01-19 +session,649,5,Firefox 20,68,2018-03-24 +user,650,Micheal,Pearly,58 +session,650,0,Chrome 15,16,2016-09-03 +session,650,1,Safari 30,4,2016-07-29 +session,650,2,Internet Explorer 20,102,2016-08-07 +session,650,3,Firefox 36,3,2017-04-19 +session,650,4,Internet Explorer 26,69,2018-12-15 +session,650,5,Safari 18,113,2017-09-27 +user,651,Gracie,Hollis,29 +session,651,0,Internet Explorer 35,76,2017-01-06 +session,651,1,Firefox 43,11,2017-03-13 +user,652,Broderick,Shaneka,9 +session,652,0,Chrome 9,56,2018-11-30 +session,652,1,Internet Explorer 44,52,2018-06-10 +session,652,2,Chrome 46,25,2017-12-04 +session,652,3,Internet Explorer 22,109,2017-04-29 +session,652,4,Firefox 50,14,2017-10-21 +session,652,5,Firefox 36,90,2017-10-01 +session,652,6,Firefox 9,112,2018-01-20 +session,652,7,Safari 7,101,2017-08-27 +user,653,Floyd,Virgina,4 +session,653,0,Firefox 26,81,2018-02-28 +session,653,1,Internet Explorer 5,30,2018-08-26 +session,653,2,Firefox 19,72,2016-06-10 +session,653,3,Safari 10,89,2018-07-22 +session,653,4,Firefox 23,57,2018-10-21 +session,653,5,Safari 2,10,2016-11-15 +user,654,Carline,Shirley,24 +session,654,0,Safari 28,33,2018-09-19 +session,654,1,Safari 30,36,2017-01-17 +session,654,2,Safari 8,90,2016-10-09 +session,654,3,Chrome 45,27,2017-11-22 +session,654,4,Safari 6,111,2018-04-02 +user,655,William,Joella,50 +session,655,0,Internet Explorer 45,97,2019-01-17 +user,656,Jules,Vada,65 +session,656,0,Internet Explorer 26,20,2018-08-11 +session,656,1,Safari 10,113,2017-04-27 +session,656,2,Safari 35,42,2019-01-31 +session,656,3,Chrome 15,26,2016-07-29 +session,656,4,Firefox 20,23,2017-02-08 +session,656,5,Internet Explorer 34,16,2018-09-26 +session,656,6,Chrome 16,4,2017-07-13 +user,657,Tamesha,Jill,16 +session,657,0,Internet Explorer 3,76,2018-01-13 +session,657,1,Chrome 32,56,2017-12-09 +session,657,2,Firefox 42,66,2016-12-03 +session,657,3,Safari 13,48,2017-02-05 +session,657,4,Internet Explorer 42,107,2018-03-15 +session,657,5,Firefox 27,27,2017-06-04 +user,658,Amos,Arianna,27 +session,658,0,Internet Explorer 32,84,2017-06-13 +session,658,1,Chrome 19,72,2018-06-16 +session,658,2,Firefox 30,33,2017-03-24 +session,658,3,Internet Explorer 38,44,2016-11-15 +session,658,4,Chrome 20,42,2017-10-11 +user,659,Neil,Katina,10 +session,659,0,Chrome 31,78,2018-05-28 +session,659,1,Chrome 38,3,2018-03-13 +session,659,2,Internet Explorer 23,116,2016-09-01 +session,659,3,Internet Explorer 48,18,2017-07-29 +session,659,4,Chrome 23,105,2017-07-30 +session,659,5,Internet Explorer 4,31,2017-06-19 +session,659,6,Internet Explorer 40,52,2019-01-19 +user,660,Wilford,Keri,8 +session,660,0,Firefox 21,107,2016-11-10 +session,660,1,Internet Explorer 18,43,2017-11-28 +session,660,2,Chrome 9,39,2017-05-04 +session,660,3,Firefox 6,68,2018-02-15 +session,660,4,Safari 22,75,2018-02-02 +session,660,5,Chrome 6,96,2016-12-06 +session,660,6,Chrome 7,113,2017-10-23 +session,660,7,Firefox 13,108,2016-06-21 +session,660,8,Safari 43,88,2017-06-09 +session,660,9,Safari 24,55,2016-09-06 +user,661,Aide,Elli,44 +session,661,0,Internet Explorer 3,20,2017-11-04 +session,661,1,Safari 28,88,2016-10-01 +session,661,2,Safari 47,79,2017-04-21 +session,661,3,Firefox 25,26,2017-12-14 +session,661,4,Safari 19,65,2017-08-19 +session,661,5,Firefox 6,82,2017-11-28 +session,661,6,Safari 27,108,2018-09-02 +user,662,Roy,Justina,37 +session,662,0,Safari 48,100,2017-09-18 +session,662,1,Internet Explorer 47,94,2018-08-21 +session,662,2,Internet Explorer 44,93,2017-04-15 +session,662,3,Chrome 47,83,2016-12-06 +session,662,4,Safari 30,115,2017-02-04 +session,662,5,Firefox 23,62,2016-12-13 +session,662,6,Firefox 38,94,2017-03-30 +session,662,7,Internet Explorer 19,37,2017-07-02 +session,662,8,Safari 45,106,2018-05-13 +user,663,Lourie,Maxine,18 +session,663,0,Safari 3,115,2017-01-05 +session,663,1,Firefox 36,6,2016-11-17 +user,664,Brook,Jeanene,34 +session,664,0,Internet Explorer 25,21,2017-05-27 +session,664,1,Chrome 44,24,2016-07-19 +session,664,2,Chrome 27,11,2018-04-15 +session,664,3,Firefox 2,100,2017-06-10 +session,664,4,Internet Explorer 31,31,2017-04-03 +session,664,5,Firefox 47,117,2018-10-20 +session,664,6,Chrome 43,36,2018-02-06 +user,665,Eddie,Marion,98 +session,665,0,Safari 38,79,2017-02-03 +session,665,1,Chrome 40,50,2017-08-27 +session,665,2,Safari 21,62,2016-07-31 +session,665,3,Firefox 46,69,2018-05-22 +session,665,4,Chrome 47,114,2016-05-21 +session,665,5,Firefox 49,42,2016-09-23 +session,665,6,Internet Explorer 8,50,2016-12-20 +session,665,7,Internet Explorer 14,74,2018-02-07 +session,665,8,Chrome 37,52,2018-09-20 +user,666,Amie,Pierre,43 +session,666,0,Chrome 29,25,2016-07-11 +session,666,1,Safari 49,114,2016-06-28 +session,666,2,Firefox 24,76,2016-12-27 +session,666,3,Chrome 32,4,2016-08-12 +session,666,4,Internet Explorer 28,119,2018-08-13 +session,666,5,Safari 24,98,2017-09-04 +session,666,6,Internet Explorer 10,71,2016-10-18 +session,666,7,Safari 48,61,2018-03-10 +user,667,Tobias,Mel,7 +session,667,0,Firefox 22,71,2016-12-18 +session,667,1,Internet Explorer 27,84,2018-04-12 +session,667,2,Firefox 41,97,2018-05-27 +session,667,3,Safari 3,82,2017-01-01 +session,667,4,Firefox 37,98,2016-12-23 +session,667,5,Firefox 7,28,2016-07-16 +session,667,6,Safari 33,34,2017-03-06 +session,667,7,Firefox 35,32,2018-08-19 +session,667,8,Safari 13,35,2017-06-18 +session,667,9,Internet Explorer 43,56,2017-07-25 +user,668,Claude,Domenic,91 +session,668,0,Internet Explorer 49,88,2017-03-01 +session,668,1,Firefox 1,32,2018-02-25 +session,668,2,Safari 24,47,2018-09-08 +session,668,3,Safari 14,81,2018-04-02 +session,668,4,Internet Explorer 40,111,2016-05-21 +session,668,5,Safari 29,31,2017-05-03 +session,668,6,Safari 25,36,2018-07-05 +user,669,Eusebio,Mertie,1 +session,669,0,Internet Explorer 31,113,2017-06-24 +session,669,1,Safari 25,109,2018-07-05 +session,669,2,Internet Explorer 21,52,2019-01-20 +session,669,3,Firefox 46,84,2017-02-28 +session,669,4,Firefox 37,77,2018-02-12 +session,669,5,Internet Explorer 12,10,2017-02-23 +session,669,6,Chrome 18,62,2018-03-23 +session,669,7,Firefox 13,22,2017-08-13 +session,669,8,Firefox 30,13,2018-05-04 +session,669,9,Safari 20,22,2017-07-04 +user,670,Barrett,Velda,64 +session,670,0,Chrome 30,113,2017-03-01 +session,670,1,Chrome 36,86,2018-12-25 +session,670,2,Internet Explorer 5,30,2018-05-20 +session,670,3,Internet Explorer 41,90,2016-05-31 +user,671,Freddy,Roger,38 +session,671,0,Chrome 30,42,2017-06-17 +session,671,1,Chrome 17,28,2019-01-02 +user,672,Benjamin,Louise,13 +session,672,0,Chrome 36,117,2017-08-14 +user,673,Jenice,Eugenie,64 +session,673,0,Chrome 30,107,2016-09-02 +session,673,1,Safari 16,50,2017-12-25 +user,674,Angelo,Angelica,99 +session,674,0,Firefox 26,49,2017-05-10 +session,674,1,Chrome 6,45,2017-11-20 +session,674,2,Chrome 50,90,2016-08-07 +session,674,3,Internet Explorer 20,49,2017-11-07 +session,674,4,Chrome 49,28,2016-05-30 +session,674,5,Chrome 31,18,2017-03-22 +session,674,6,Internet Explorer 35,78,2017-02-03 +session,674,7,Safari 28,94,2018-09-20 +user,675,Lemuel,Laila,13 +session,675,0,Firefox 44,40,2017-11-28 +session,675,1,Chrome 42,12,2016-06-04 +session,675,2,Safari 22,27,2018-02-14 +session,675,3,Firefox 13,88,2016-09-09 +user,676,Tiny,Kathrine,63 +session,676,0,Safari 45,27,2018-01-25 +session,676,1,Chrome 2,79,2016-08-03 +session,676,2,Safari 3,87,2016-12-24 +session,676,3,Internet Explorer 44,27,2017-02-01 +session,676,4,Chrome 19,18,2017-01-02 +session,676,5,Firefox 5,105,2017-04-14 +user,677,Vernia,Lacey,21 +session,677,0,Chrome 38,44,2017-01-29 +user,678,Wilfred,Gracia,48 +session,678,0,Firefox 50,87,2016-10-05 +user,679,Tabetha,Carletta,36 +session,679,0,Safari 8,70,2016-07-24 +session,679,1,Internet Explorer 1,113,2018-09-08 +session,679,2,Chrome 18,61,2018-08-07 +session,679,3,Chrome 18,64,2017-09-16 +user,680,Madelyn,Trang,18 +session,680,0,Internet Explorer 45,72,2019-02-02 +session,680,1,Firefox 40,51,2016-09-05 +session,680,2,Firefox 42,71,2018-12-13 +session,680,3,Chrome 37,110,2017-01-01 +session,680,4,Internet Explorer 18,93,2016-08-08 +session,680,5,Chrome 13,41,2017-12-28 +session,680,6,Firefox 48,58,2017-03-10 +session,680,7,Safari 22,47,2016-11-13 +session,680,8,Chrome 34,72,2017-03-01 +session,680,9,Firefox 48,90,2018-02-01 +user,681,Porfirio,Zola,14 +session,681,0,Chrome 8,19,2018-02-23 +session,681,1,Chrome 32,86,2018-03-01 +user,682,Willis,Wendell,81 +session,682,0,Firefox 49,32,2018-08-14 +user,683,Dylan,Collin,5 +session,683,0,Internet Explorer 19,25,2016-05-31 +session,683,1,Safari 40,60,2018-01-26 +session,683,2,Safari 25,89,2018-09-07 +session,683,3,Chrome 49,58,2017-03-31 +user,684,Miki,Leopoldo,67 +session,684,0,Internet Explorer 38,41,2017-10-22 +user,685,Leonardo,Shawnee,14 +session,685,0,Safari 31,70,2018-07-24 +session,685,1,Safari 14,80,2018-09-11 +session,685,2,Chrome 7,105,2016-06-03 +session,685,3,Chrome 14,62,2019-01-05 +session,685,4,Chrome 4,84,2016-07-03 +session,685,5,Firefox 36,74,2017-09-18 +session,685,6,Chrome 33,21,2018-09-14 +user,686,Wesley,Marilee,72 +session,686,0,Chrome 47,11,2018-04-18 +session,686,1,Firefox 37,54,2018-03-29 +session,686,2,Chrome 47,70,2016-09-17 +session,686,3,Safari 37,95,2017-01-29 +session,686,4,Safari 24,55,2017-05-17 +session,686,5,Chrome 32,6,2016-07-21 +session,686,6,Chrome 10,73,2017-07-08 +user,687,Patience,Bao,11 +session,687,0,Internet Explorer 3,34,2018-12-28 +session,687,1,Internet Explorer 5,110,2018-04-03 +session,687,2,Safari 23,106,2017-05-18 +session,687,3,Chrome 14,15,2017-03-23 +session,687,4,Internet Explorer 32,90,2018-10-14 +session,687,5,Internet Explorer 38,93,2018-03-04 +user,688,Herbert,Lennie,69 +session,688,0,Firefox 37,112,2016-11-06 +session,688,1,Internet Explorer 32,10,2018-07-03 +session,688,2,Safari 43,111,2018-10-11 +session,688,3,Chrome 36,107,2018-03-30 +session,688,4,Chrome 25,103,2017-04-06 +session,688,5,Internet Explorer 2,59,2017-09-19 +session,688,6,Safari 45,34,2018-02-17 +session,688,7,Internet Explorer 15,64,2016-09-25 +session,688,8,Chrome 45,31,2016-05-30 +session,688,9,Internet Explorer 30,57,2017-02-19 +user,689,Rodolfo,Dionne,58 +session,689,0,Internet Explorer 3,41,2017-11-09 +session,689,1,Safari 48,30,2018-03-28 +session,689,2,Internet Explorer 39,91,2016-06-05 +session,689,3,Firefox 25,56,2019-01-26 +session,689,4,Safari 30,3,2016-09-21 +session,689,5,Chrome 16,41,2018-11-16 +session,689,6,Chrome 48,23,2018-05-05 +session,689,7,Chrome 28,78,2017-08-13 +session,689,8,Safari 41,66,2017-07-10 +user,690,Fallon,Tarra,65 +session,690,0,Safari 21,25,2017-08-15 +session,690,1,Internet Explorer 30,77,2017-12-01 +session,690,2,Safari 20,57,2017-02-25 +user,691,Randolph,Gisele,81 +session,691,0,Internet Explorer 37,70,2018-02-18 +session,691,1,Firefox 47,87,2018-05-14 +session,691,2,Safari 10,9,2017-09-19 +session,691,3,Safari 26,116,2017-10-23 +user,692,Andra,Narcisa,8 +session,692,0,Firefox 49,29,2018-12-29 +session,692,1,Safari 32,8,2017-11-19 +session,692,2,Internet Explorer 3,5,2018-08-23 +session,692,3,Firefox 18,87,2018-06-16 +session,692,4,Safari 48,86,2018-07-14 +session,692,5,Internet Explorer 19,119,2017-12-10 +session,692,6,Safari 14,111,2018-08-29 +session,692,7,Safari 47,94,2018-10-29 +session,692,8,Safari 6,71,2018-08-07 +session,692,9,Safari 46,69,2018-05-13 +user,693,Angelena,Hollis,80 +session,693,0,Firefox 31,97,2018-08-15 +session,693,1,Firefox 3,100,2017-12-13 +session,693,2,Chrome 26,87,2017-07-26 +session,693,3,Firefox 23,27,2016-08-12 +session,693,4,Firefox 17,21,2018-10-05 +session,693,5,Safari 16,79,2018-06-04 +session,693,6,Safari 26,82,2018-08-01 +session,693,7,Internet Explorer 35,0,2018-02-28 +user,694,Alvaro,Herb,20 +session,694,0,Firefox 7,68,2018-05-02 +session,694,1,Firefox 45,86,2017-02-06 +session,694,2,Firefox 44,99,2018-10-19 +session,694,3,Safari 37,8,2016-06-02 +session,694,4,Chrome 42,8,2018-03-13 +session,694,5,Chrome 4,62,2018-04-06 +session,694,6,Internet Explorer 29,40,2016-07-25 +session,694,7,Firefox 27,87,2018-03-11 +user,695,Teri,Deangelo,36 +session,695,0,Safari 45,90,2017-02-11 +session,695,1,Safari 9,86,2017-08-25 +session,695,2,Internet Explorer 4,36,2016-08-02 +session,695,3,Internet Explorer 46,16,2017-10-01 +session,695,4,Safari 39,15,2016-08-10 +user,696,Sara,Aubrey,71 +session,696,0,Firefox 12,16,2017-02-11 +session,696,1,Firefox 37,12,2018-05-31 +session,696,2,Internet Explorer 32,86,2017-08-21 +session,696,3,Firefox 41,14,2016-11-22 +session,696,4,Chrome 2,53,2016-08-30 +session,696,5,Internet Explorer 33,111,2018-09-28 +session,696,6,Internet Explorer 44,20,2016-06-23 +user,697,Dino,Isreal,89 +session,697,0,Internet Explorer 26,101,2018-07-18 +session,697,1,Internet Explorer 21,19,2018-12-30 +session,697,2,Chrome 3,29,2017-08-28 +session,697,3,Firefox 39,66,2016-08-20 +session,697,4,Chrome 25,62,2017-07-28 +session,697,5,Chrome 42,106,2016-10-02 +session,697,6,Chrome 16,46,2017-10-02 +session,697,7,Safari 5,89,2016-11-10 +session,697,8,Chrome 6,66,2018-05-08 +session,697,9,Internet Explorer 45,113,2017-08-05 +user,698,Rubie,Nanci,50 +session,698,0,Firefox 47,90,2016-06-18 +session,698,1,Firefox 18,2,2018-05-27 +session,698,2,Safari 18,21,2017-02-02 +session,698,3,Chrome 36,32,2017-12-06 +session,698,4,Firefox 42,26,2016-11-24 +session,698,5,Firefox 11,23,2018-11-14 +session,698,6,Internet Explorer 28,19,2018-10-14 +session,698,7,Safari 19,26,2018-12-29 +user,699,Kieth,Megan,90 +session,699,0,Chrome 26,53,2018-03-17 +session,699,1,Firefox 11,92,2016-06-13 +session,699,2,Chrome 17,36,2018-03-07 +session,699,3,Internet Explorer 45,85,2016-08-10 +session,699,4,Chrome 39,16,2017-09-22 +session,699,5,Safari 18,87,2018-11-26 +session,699,6,Safari 1,46,2016-07-20 +user,700,Audie,Oscar,34 +session,700,0,Safari 42,39,2017-10-02 +session,700,1,Chrome 40,23,2018-10-08 +session,700,2,Firefox 36,68,2016-11-10 +session,700,3,Safari 37,42,2019-01-06 +session,700,4,Safari 46,114,2018-09-28 +session,700,5,Safari 9,27,2018-09-27 +session,700,6,Chrome 29,15,2016-06-12 +session,700,7,Chrome 7,57,2017-03-02 +user,701,Jamar,Yuko,99 +session,701,0,Firefox 6,99,2016-08-26 +session,701,1,Chrome 49,79,2017-12-24 +user,702,Tania,Joesph,97 +session,702,0,Safari 16,29,2018-01-29 +session,702,1,Safari 26,92,2018-01-14 +session,702,2,Firefox 25,110,2018-08-11 +session,702,3,Firefox 30,93,2017-12-14 +session,702,4,Safari 35,5,2018-09-03 +session,702,5,Chrome 37,77,2016-09-19 +session,702,6,Safari 14,72,2016-07-27 +session,702,7,Safari 49,21,2018-08-31 +session,702,8,Internet Explorer 20,93,2018-07-06 +user,703,Bridget,Brain,52 +session,703,0,Internet Explorer 49,25,2017-04-05 +session,703,1,Chrome 21,97,2018-04-13 +session,703,2,Firefox 14,78,2016-09-29 +session,703,3,Internet Explorer 1,92,2016-08-08 +session,703,4,Firefox 22,77,2018-12-16 +session,703,5,Safari 20,15,2018-02-23 +session,703,6,Chrome 39,28,2017-08-21 +session,703,7,Safari 30,83,2017-12-12 +user,704,Khalilah,Jenni,96 +session,704,0,Firefox 13,94,2017-05-07 +session,704,1,Safari 43,5,2017-05-30 +session,704,2,Safari 7,41,2017-08-22 +session,704,3,Firefox 25,56,2017-09-13 +session,704,4,Safari 17,95,2017-09-15 +session,704,5,Internet Explorer 7,116,2017-09-01 +session,704,6,Firefox 44,17,2016-10-01 +session,704,7,Internet Explorer 2,27,2016-11-19 +user,705,Armand,Galen,4 +session,705,0,Safari 3,101,2016-08-27 +session,705,1,Internet Explorer 37,70,2017-03-22 +user,706,Gracia,Ayana,54 +session,706,0,Firefox 18,90,2019-01-04 +session,706,1,Chrome 46,51,2019-02-11 +session,706,2,Firefox 33,114,2016-10-06 +session,706,3,Chrome 24,26,2018-11-06 +session,706,4,Firefox 28,35,2018-10-22 +session,706,5,Internet Explorer 36,83,2018-05-22 +session,706,6,Firefox 34,16,2017-02-06 +session,706,7,Chrome 48,8,2016-12-23 +session,706,8,Firefox 26,34,2017-11-17 +session,706,9,Internet Explorer 13,56,2017-09-18 +user,707,Sandie,Temeka,26 +session,707,0,Chrome 23,5,2018-05-31 +session,707,1,Internet Explorer 32,62,2016-06-15 +session,707,2,Chrome 12,74,2018-12-12 +session,707,3,Safari 15,6,2017-09-14 +session,707,4,Chrome 27,7,2018-12-28 +user,708,Merlin,Masako,80 +session,708,0,Safari 19,71,2018-06-02 +session,708,1,Safari 35,17,2018-04-11 +user,709,Marion,Floria,64 +session,709,0,Firefox 15,43,2018-10-22 +session,709,1,Safari 11,82,2016-06-04 +session,709,2,Firefox 39,47,2018-05-03 +session,709,3,Chrome 43,91,2018-04-04 +session,709,4,Chrome 49,103,2016-07-09 +session,709,5,Internet Explorer 36,114,2017-10-15 +session,709,6,Safari 44,95,2018-08-28 +session,709,7,Internet Explorer 31,46,2018-12-09 +session,709,8,Chrome 33,58,2019-01-24 +user,710,Louis,Georgianna,83 +session,710,0,Firefox 27,30,2016-09-26 +session,710,1,Internet Explorer 29,96,2017-02-12 +session,710,2,Safari 26,111,2016-10-04 +session,710,3,Safari 48,118,2017-11-21 +session,710,4,Safari 8,104,2018-07-28 +session,710,5,Safari 49,8,2016-09-14 +session,710,6,Safari 7,118,2018-10-04 +user,711,Florinda,Tashina,48 +session,711,0,Chrome 30,94,2017-04-27 +user,712,Song,Devon,41 +session,712,0,Internet Explorer 25,97,2018-08-23 +session,712,1,Internet Explorer 48,18,2018-07-25 +session,712,2,Internet Explorer 35,118,2016-11-12 +session,712,3,Firefox 43,74,2016-12-29 +session,712,4,Firefox 6,49,2018-11-03 +user,713,Era,Andera,62 +session,713,0,Firefox 18,93,2017-01-01 +session,713,1,Firefox 34,26,2018-03-19 +session,713,2,Safari 48,53,2016-10-28 +session,713,3,Safari 50,34,2017-03-02 +session,713,4,Chrome 34,90,2018-06-09 +user,714,Lucilla,Albertha,49 +session,714,0,Safari 29,72,2017-06-02 +session,714,1,Internet Explorer 32,47,2019-01-05 +session,714,2,Internet Explorer 9,61,2016-11-04 +session,714,3,Firefox 12,114,2016-09-17 +session,714,4,Chrome 50,17,2018-10-29 +session,714,5,Chrome 3,45,2017-07-30 +user,715,Magen,Ardith,41 +session,715,0,Internet Explorer 36,43,2018-02-08 +session,715,1,Chrome 31,71,2017-06-12 +session,715,2,Chrome 8,70,2018-01-15 +session,715,3,Internet Explorer 32,66,2017-10-12 +session,715,4,Safari 12,2,2018-07-13 +session,715,5,Safari 4,118,2017-09-26 +user,716,Kati,Brittney,8 +session,716,0,Safari 11,72,2016-10-31 +session,716,1,Chrome 24,44,2017-03-15 +session,716,2,Firefox 24,66,2016-11-27 +session,716,3,Chrome 23,74,2016-06-07 +session,716,4,Safari 34,85,2018-06-08 +session,716,5,Chrome 45,111,2017-01-04 +session,716,6,Chrome 9,87,2018-01-28 +session,716,7,Internet Explorer 44,61,2017-06-30 +user,717,Alysha,Avril,29 +session,717,0,Firefox 29,47,2016-10-15 +session,717,1,Firefox 21,9,2018-05-13 +session,717,2,Chrome 2,93,2018-08-04 +session,717,3,Chrome 36,24,2017-05-08 +session,717,4,Safari 42,49,2018-02-26 +session,717,5,Chrome 6,59,2017-05-24 +session,717,6,Firefox 4,20,2017-08-16 +session,717,7,Chrome 40,93,2017-12-17 +session,717,8,Internet Explorer 28,14,2017-09-10 +session,717,9,Safari 44,79,2018-04-29 +user,718,Felton,Reiko,99 +session,718,0,Firefox 20,31,2016-11-18 +session,718,1,Safari 5,77,2017-02-15 +session,718,2,Internet Explorer 25,100,2018-12-12 +session,718,3,Firefox 38,6,2017-04-14 +user,719,Maxie,Carlee,58 +session,719,0,Firefox 32,63,2017-11-15 +session,719,1,Chrome 48,28,2017-07-25 +session,719,2,Internet Explorer 35,86,2018-10-17 +session,719,3,Safari 31,90,2016-09-17 +session,719,4,Safari 2,35,2018-03-17 +session,719,5,Safari 34,51,2017-05-25 +user,720,Angelika,Sunni,56 +session,720,0,Chrome 9,87,2018-10-08 +user,721,Fe,Alene,45 +session,721,0,Safari 40,38,2016-10-20 +session,721,1,Internet Explorer 31,111,2017-04-18 +session,721,2,Safari 20,45,2018-09-24 +session,721,3,Internet Explorer 45,109,2016-06-05 +session,721,4,Firefox 29,37,2017-02-12 +user,722,Markita,Debra,60 +session,722,0,Chrome 7,33,2018-07-02 +user,723,Miles,Lajuana,8 +session,723,0,Internet Explorer 39,3,2018-12-14 +session,723,1,Internet Explorer 35,7,2017-09-26 +session,723,2,Internet Explorer 31,15,2017-05-16 +session,723,3,Chrome 44,31,2018-06-09 +session,723,4,Firefox 26,86,2017-07-08 +session,723,5,Firefox 5,74,2018-10-14 +session,723,6,Internet Explorer 40,16,2018-04-26 +session,723,7,Firefox 2,13,2018-08-29 +session,723,8,Firefox 26,0,2018-01-10 +user,724,Edward,Jeannie,10 +session,724,0,Firefox 23,58,2016-08-24 +session,724,1,Firefox 2,62,2018-08-07 +session,724,2,Safari 40,115,2017-10-27 +session,724,3,Chrome 4,98,2018-11-09 +user,725,Machelle,Melissa,5 +session,725,0,Internet Explorer 25,18,2018-01-15 +session,725,1,Firefox 1,114,2018-05-31 +session,725,2,Firefox 17,57,2017-07-22 +user,726,Jaime,Lavenia,92 +session,726,0,Internet Explorer 44,52,2017-09-08 +session,726,1,Firefox 5,93,2017-11-27 +session,726,2,Chrome 19,44,2019-02-06 +session,726,3,Chrome 4,22,2017-05-28 +session,726,4,Firefox 37,13,2017-09-13 +user,727,Tova,Robin,51 +session,727,0,Safari 6,44,2017-10-05 +session,727,1,Chrome 50,0,2017-03-09 +session,727,2,Chrome 23,21,2018-06-16 +session,727,3,Firefox 9,35,2018-10-02 +session,727,4,Firefox 34,11,2016-07-08 +user,728,Michael,Callie,9 +session,728,0,Safari 42,22,2016-06-10 +session,728,1,Firefox 44,70,2017-10-20 +session,728,2,Firefox 31,47,2017-02-06 +session,728,3,Safari 47,111,2017-01-09 +session,728,4,Chrome 25,58,2016-08-27 +session,728,5,Internet Explorer 19,43,2017-10-11 +user,729,Dacia,Tana,84 +session,729,0,Chrome 34,100,2016-07-18 +session,729,1,Chrome 36,66,2017-09-08 +session,729,2,Safari 23,13,2018-08-30 +session,729,3,Chrome 43,79,2016-06-22 +session,729,4,Safari 36,99,2016-10-13 +session,729,5,Firefox 38,71,2018-02-26 +session,729,6,Internet Explorer 14,5,2016-07-20 +session,729,7,Firefox 14,50,2019-02-04 +user,730,Danial,Modesta,39 +session,730,0,Safari 22,105,2016-06-24 +session,730,1,Safari 11,13,2016-07-28 +session,730,2,Safari 48,57,2018-01-16 +session,730,3,Safari 49,118,2018-04-12 +session,730,4,Safari 49,75,2018-06-06 +session,730,5,Firefox 20,56,2019-01-17 +user,731,Britt,Sharyl,83 +session,731,0,Chrome 22,13,2016-09-26 +session,731,1,Internet Explorer 13,118,2017-10-14 +session,731,2,Firefox 15,102,2017-05-24 +user,732,Felica,Alayna,62 +session,732,0,Chrome 23,42,2016-05-26 +session,732,1,Firefox 36,39,2017-04-13 +session,732,2,Safari 46,24,2017-03-02 +session,732,3,Firefox 50,42,2018-09-04 +user,733,Marylynn,Tiana,44 +session,733,0,Firefox 19,96,2016-07-13 +session,733,1,Firefox 41,40,2018-01-16 +session,733,2,Internet Explorer 48,113,2016-09-09 +session,733,3,Internet Explorer 34,119,2016-09-09 +session,733,4,Chrome 43,70,2017-02-20 +session,733,5,Chrome 44,97,2017-05-14 +user,734,Shea,Franklyn,60 +session,734,0,Firefox 34,41,2018-05-09 +session,734,1,Internet Explorer 46,73,2017-07-30 +session,734,2,Firefox 38,36,2017-02-04 +session,734,3,Internet Explorer 49,69,2017-07-31 +session,734,4,Safari 25,55,2016-08-10 +session,734,5,Safari 29,27,2017-06-29 +session,734,6,Firefox 8,89,2016-10-03 +session,734,7,Safari 37,35,2019-02-04 +user,735,Lacie,Christopher,28 +session,735,0,Chrome 22,85,2018-04-30 +session,735,1,Firefox 43,5,2019-01-12 +session,735,2,Chrome 49,117,2017-12-27 +session,735,3,Chrome 47,68,2019-01-18 +session,735,4,Firefox 21,34,2017-07-20 +session,735,5,Safari 33,32,2017-08-18 +session,735,6,Safari 19,60,2017-05-08 +session,735,7,Internet Explorer 29,18,2018-08-24 +session,735,8,Chrome 43,81,2018-05-01 +session,735,9,Chrome 5,45,2019-02-05 +user,736,Yoshie,Sharron,23 +session,736,0,Firefox 24,17,2017-09-21 +session,736,1,Internet Explorer 49,65,2018-01-20 +session,736,2,Firefox 42,36,2019-01-25 +session,736,3,Firefox 13,56,2017-01-05 +session,736,4,Internet Explorer 3,72,2017-07-07 +user,737,Jerome,Kerry,1 +session,737,0,Chrome 37,21,2017-01-29 +session,737,1,Safari 45,42,2018-12-31 +session,737,2,Internet Explorer 7,39,2016-07-17 +session,737,3,Internet Explorer 24,104,2017-01-12 +session,737,4,Safari 11,16,2018-02-18 +session,737,5,Chrome 22,17,2018-10-06 +user,738,Stanford,Kathlene,58 +session,738,0,Safari 12,73,2016-12-30 +session,738,1,Chrome 21,38,2019-01-14 +session,738,2,Firefox 14,8,2018-08-28 +session,738,3,Firefox 45,74,2016-07-02 +session,738,4,Safari 27,69,2017-09-22 +session,738,5,Firefox 31,89,2016-08-18 +session,738,6,Chrome 49,40,2017-10-23 +user,739,Latisha,Asley,46 +session,739,0,Safari 49,28,2016-06-13 +session,739,1,Chrome 21,48,2017-11-22 +session,739,2,Firefox 37,46,2018-10-26 +user,740,Stevie,Amberly,30 +session,740,0,Chrome 5,108,2016-12-10 +session,740,1,Chrome 49,93,2018-02-23 +session,740,2,Chrome 14,12,2018-08-31 +session,740,3,Safari 39,25,2018-02-14 +session,740,4,Chrome 30,51,2017-03-22 +session,740,5,Internet Explorer 5,42,2018-02-27 +user,741,Roger,Diedre,56 +session,741,0,Firefox 12,51,2017-04-09 +session,741,1,Firefox 37,44,2017-04-29 +user,742,Marlon,Arletha,81 +session,742,0,Firefox 22,30,2017-08-16 +user,743,Rigoberto,Merlin,17 +session,743,0,Firefox 36,84,2017-07-06 +session,743,1,Firefox 29,55,2017-06-12 +session,743,2,Safari 4,102,2018-10-24 +session,743,3,Chrome 1,57,2018-01-23 +session,743,4,Chrome 42,55,2016-09-01 +session,743,5,Chrome 5,30,2016-10-11 +session,743,6,Safari 33,99,2016-07-06 +session,743,7,Internet Explorer 35,20,2018-07-18 +session,743,8,Firefox 49,73,2018-11-20 +session,743,9,Safari 20,81,2018-08-27 +user,744,Darron,Ray,88 +session,744,0,Internet Explorer 20,100,2017-02-10 +session,744,1,Safari 27,82,2018-01-02 +session,744,2,Chrome 40,28,2017-03-15 +session,744,3,Firefox 6,33,2017-09-28 +session,744,4,Firefox 32,81,2019-01-30 +session,744,5,Firefox 39,16,2016-08-19 +user,745,William,Serena,73 +session,745,0,Chrome 44,95,2017-12-21 +session,745,1,Internet Explorer 11,116,2018-10-16 +session,745,2,Firefox 22,30,2018-03-16 +session,745,3,Internet Explorer 22,33,2018-02-21 +session,745,4,Chrome 31,17,2016-06-24 +session,745,5,Safari 45,91,2017-06-24 +session,745,6,Internet Explorer 24,9,2018-04-19 +session,745,7,Firefox 18,49,2017-05-23 +session,745,8,Chrome 18,80,2018-07-29 +user,746,Lessie,Luz,3 +session,746,0,Internet Explorer 1,37,2017-04-11 +session,746,1,Internet Explorer 38,41,2017-10-03 +session,746,2,Chrome 15,58,2016-10-01 +session,746,3,Chrome 38,51,2019-02-05 +session,746,4,Internet Explorer 3,80,2018-12-13 +session,746,5,Internet Explorer 46,117,2017-11-06 +session,746,6,Safari 9,43,2018-07-29 +session,746,7,Chrome 3,46,2017-11-04 +session,746,8,Safari 37,49,2018-02-05 +session,746,9,Chrome 24,64,2017-07-08 +user,747,Miriam,Jenice,46 +session,747,0,Chrome 31,97,2018-05-18 +session,747,1,Internet Explorer 20,35,2018-12-06 +session,747,2,Internet Explorer 39,89,2017-01-24 +session,747,3,Firefox 45,83,2018-07-31 +session,747,4,Chrome 48,105,2017-07-17 +session,747,5,Internet Explorer 8,114,2017-01-03 +session,747,6,Internet Explorer 13,88,2017-05-01 +session,747,7,Internet Explorer 5,12,2017-04-01 +session,747,8,Safari 39,69,2016-12-01 +user,748,Florida,Mina,54 +session,748,0,Firefox 15,31,2017-06-26 +session,748,1,Internet Explorer 10,108,2018-03-18 +session,748,2,Internet Explorer 22,115,2017-08-14 +user,749,Vaughn,Vivienne,14 +session,749,0,Chrome 31,117,2016-11-25 +session,749,1,Chrome 37,105,2019-01-02 +user,750,Gearldine,Jeffrey,65 +session,750,0,Chrome 41,27,2017-01-13 +session,750,1,Safari 39,107,2016-12-26 +session,750,2,Firefox 27,35,2017-12-09 +session,750,3,Internet Explorer 35,64,2016-07-29 +session,750,4,Firefox 11,79,2018-06-03 +session,750,5,Firefox 38,91,2017-04-14 +session,750,6,Chrome 9,84,2017-01-02 +session,750,7,Internet Explorer 3,85,2018-02-16 +user,751,Shanta,Keely,28 +session,751,0,Internet Explorer 19,60,2017-02-11 +session,751,1,Internet Explorer 2,64,2017-01-25 +session,751,2,Internet Explorer 13,9,2017-09-23 +session,751,3,Internet Explorer 26,1,2018-05-11 +session,751,4,Safari 45,111,2016-07-27 +session,751,5,Safari 36,54,2018-10-04 +session,751,6,Internet Explorer 49,43,2017-11-19 +session,751,7,Chrome 17,10,2017-08-17 +user,752,Anthony,Alonzo,27 +session,752,0,Firefox 15,56,2016-08-28 +session,752,1,Safari 39,45,2016-08-03 +session,752,2,Safari 45,57,2018-08-13 +session,752,3,Safari 24,19,2017-05-23 +session,752,4,Firefox 8,80,2018-05-17 +session,752,5,Firefox 46,74,2018-11-30 +session,752,6,Safari 3,102,2017-07-27 +session,752,7,Chrome 18,11,2017-05-26 +user,753,Thurman,Tamar,72 +session,753,0,Chrome 4,19,2016-06-04 +session,753,1,Firefox 9,20,2018-01-19 +user,754,Joaquina,Peter,9 +session,754,0,Safari 24,96,2017-09-22 +user,755,Shaunna,Nicky,99 +session,755,0,Safari 46,58,2017-12-30 +session,755,1,Safari 48,115,2017-05-03 +session,755,2,Internet Explorer 44,90,2017-02-25 +session,755,3,Safari 9,62,2017-11-17 +user,756,Huey,Tamie,18 +session,756,0,Safari 11,112,2017-09-19 +session,756,1,Firefox 13,17,2018-06-29 +session,756,2,Internet Explorer 10,102,2018-09-12 +session,756,3,Chrome 9,78,2017-03-23 +session,756,4,Safari 46,80,2019-01-15 +session,756,5,Internet Explorer 40,110,2017-07-16 +session,756,6,Internet Explorer 43,31,2019-01-15 +session,756,7,Firefox 8,79,2018-05-18 +session,756,8,Chrome 13,7,2017-01-03 +session,756,9,Firefox 27,75,2017-11-22 +user,757,Shawn,Bernardo,93 +session,757,0,Safari 17,95,2017-05-30 +session,757,1,Internet Explorer 6,69,2017-09-10 +session,757,2,Firefox 16,73,2017-11-04 +session,757,3,Firefox 23,25,2017-01-19 +session,757,4,Chrome 4,66,2018-07-08 +session,757,5,Firefox 9,7,2016-09-01 +session,757,6,Internet Explorer 39,105,2016-11-27 +user,758,Glenna,Marlo,45 +session,758,0,Safari 11,70,2019-01-05 +session,758,1,Safari 1,107,2018-12-06 +session,758,2,Firefox 16,31,2017-11-13 +session,758,3,Firefox 25,49,2017-03-24 +user,759,Drew,Grisel,61 +session,759,0,Firefox 16,56,2017-03-19 +session,759,1,Firefox 14,84,2017-06-22 +session,759,2,Safari 43,59,2017-12-24 +session,759,3,Safari 12,18,2018-07-27 +session,759,4,Safari 24,53,2017-07-20 +user,760,Jamison,Chuck,95 +session,760,0,Internet Explorer 42,69,2017-08-21 +session,760,1,Chrome 32,20,2016-06-30 +session,760,2,Chrome 45,40,2018-04-26 +session,760,3,Safari 27,14,2017-04-13 +session,760,4,Firefox 12,103,2018-03-05 +session,760,5,Safari 21,67,2019-01-13 +session,760,6,Safari 8,27,2018-08-24 +user,761,Emanuel,Patty,47 +session,761,0,Safari 48,7,2017-07-03 +session,761,1,Internet Explorer 20,49,2017-10-27 +session,761,2,Internet Explorer 32,42,2018-11-07 +session,761,3,Firefox 41,72,2017-04-22 +user,762,Marlin,Loura,2 +session,762,0,Internet Explorer 12,27,2018-01-06 +session,762,1,Internet Explorer 23,111,2019-01-19 +session,762,2,Internet Explorer 20,72,2016-12-15 +session,762,3,Chrome 37,107,2016-06-25 +session,762,4,Safari 21,12,2018-08-21 +session,762,5,Chrome 19,28,2018-12-28 +session,762,6,Firefox 12,14,2017-11-14 +session,762,7,Chrome 2,57,2016-05-21 +session,762,8,Firefox 45,27,2018-09-01 +session,762,9,Internet Explorer 1,86,2017-12-04 +user,763,Kaycee,Melania,7 +session,763,0,Firefox 32,18,2018-01-01 +session,763,1,Firefox 25,51,2016-07-31 +session,763,2,Safari 24,98,2017-03-01 +session,763,3,Chrome 39,11,2017-02-05 +session,763,4,Chrome 34,21,2018-09-14 +user,764,Gladis,Clarice,26 +session,764,0,Firefox 34,6,2017-06-23 +session,764,1,Internet Explorer 31,77,2017-11-13 +session,764,2,Firefox 24,44,2018-03-31 +session,764,3,Safari 31,0,2017-10-18 +session,764,4,Internet Explorer 1,9,2016-05-30 +session,764,5,Firefox 34,82,2018-11-05 +session,764,6,Safari 49,51,2017-10-28 +session,764,7,Chrome 17,42,2016-09-18 +session,764,8,Firefox 4,61,2018-05-14 +session,764,9,Internet Explorer 43,43,2018-06-03 +user,765,Guillermo,Britt,51 +session,765,0,Safari 41,119,2017-07-28 +session,765,1,Firefox 33,52,2018-03-01 +session,765,2,Internet Explorer 13,10,2018-04-01 +session,765,3,Chrome 11,65,2017-11-13 +session,765,4,Firefox 14,21,2018-07-07 +session,765,5,Safari 47,92,2016-10-05 +session,765,6,Chrome 24,81,2019-01-17 +session,765,7,Chrome 20,94,2019-01-08 +user,766,Dominic,Tory,16 +session,766,0,Chrome 11,62,2018-12-05 +session,766,1,Chrome 50,4,2016-12-15 +session,766,2,Firefox 23,15,2017-09-13 +session,766,3,Safari 45,109,2017-10-06 +session,766,4,Firefox 1,63,2017-06-20 +session,766,5,Chrome 42,19,2017-06-28 +session,766,6,Safari 14,26,2017-06-05 +session,766,7,Firefox 49,40,2016-08-09 +user,767,Neal,Tarsha,40 +session,767,0,Internet Explorer 42,105,2018-02-05 +session,767,1,Safari 47,67,2017-02-10 +session,767,2,Firefox 50,38,2018-08-14 +user,768,Felix,Kari,51 +session,768,0,Internet Explorer 12,112,2018-08-20 +session,768,1,Internet Explorer 19,72,2017-05-17 +session,768,2,Safari 47,116,2017-04-12 +session,768,3,Safari 45,96,2018-11-17 +session,768,4,Internet Explorer 36,47,2018-12-08 +session,768,5,Safari 35,85,2017-01-28 +session,768,6,Safari 8,21,2018-02-02 +session,768,7,Firefox 35,86,2017-02-05 +user,769,Wendell,Sallie,90 +session,769,0,Internet Explorer 12,76,2018-11-21 +session,769,1,Internet Explorer 12,52,2016-07-09 +session,769,2,Safari 21,87,2016-12-04 +user,770,Marlon,Aimee,33 +session,770,0,Safari 46,15,2018-11-04 +session,770,1,Safari 17,43,2018-05-27 +session,770,2,Chrome 4,46,2017-08-31 +session,770,3,Firefox 44,10,2018-08-08 +session,770,4,Internet Explorer 32,9,2017-04-13 +session,770,5,Chrome 48,36,2018-07-24 +session,770,6,Internet Explorer 25,8,2018-05-17 +session,770,7,Firefox 9,109,2018-07-15 +session,770,8,Internet Explorer 7,80,2019-01-05 +user,771,Dean,Kamilah,14 +session,771,0,Chrome 30,103,2018-02-18 +session,771,1,Internet Explorer 25,108,2018-12-09 +session,771,2,Chrome 30,74,2017-11-23 +session,771,3,Firefox 37,80,2017-08-15 +user,772,Edward,Elana,80 +session,772,0,Safari 4,80,2017-04-14 +session,772,1,Chrome 45,118,2018-05-17 +session,772,2,Chrome 34,111,2017-03-08 +user,773,Scotty,Fernanda,82 +session,773,0,Chrome 31,100,2016-09-30 +session,773,1,Safari 4,33,2017-08-17 +session,773,2,Internet Explorer 22,93,2017-03-23 +session,773,3,Safari 45,4,2018-02-21 +session,773,4,Internet Explorer 36,113,2017-05-25 +user,774,Elliot,Ambrose,3 +session,774,0,Chrome 19,99,2017-02-20 +session,774,1,Chrome 18,59,2018-02-04 +session,774,2,Internet Explorer 36,0,2018-07-28 +session,774,3,Internet Explorer 18,72,2018-04-09 +session,774,4,Firefox 31,103,2018-04-26 +user,775,Sanda,Amee,16 +session,775,0,Safari 50,66,2016-09-28 +user,776,Soledad,Celine,82 +session,776,0,Safari 19,74,2017-11-05 +session,776,1,Chrome 35,100,2016-07-07 +session,776,2,Chrome 14,89,2018-10-17 +session,776,3,Internet Explorer 38,82,2017-06-09 +user,777,Fred,Dell,59 +session,777,0,Firefox 1,22,2016-09-25 +user,778,Debrah,Efren,81 +session,778,0,Firefox 1,14,2019-02-01 +user,779,Genny,Rochell,71 +session,779,0,Chrome 46,22,2017-04-12 +session,779,1,Internet Explorer 48,18,2016-12-25 +session,779,2,Firefox 27,99,2017-01-16 +session,779,3,Internet Explorer 40,4,2017-03-04 +session,779,4,Chrome 14,114,2017-06-27 +session,779,5,Firefox 21,23,2018-01-10 +user,780,Franklin,Augustus,85 +session,780,0,Chrome 4,98,2017-05-07 +session,780,1,Firefox 4,70,2018-11-12 +session,780,2,Chrome 50,69,2017-01-21 +session,780,3,Chrome 37,50,2017-11-10 +session,780,4,Firefox 39,31,2018-11-29 +user,781,Titus,Arica,19 +session,781,0,Internet Explorer 21,4,2018-08-26 +session,781,1,Safari 28,110,2017-07-13 +session,781,2,Chrome 40,16,2017-07-16 +user,782,Lorna,Deirdre,6 +session,782,0,Internet Explorer 25,1,2017-11-28 +session,782,1,Firefox 5,27,2018-12-03 +session,782,2,Chrome 25,85,2016-11-07 +session,782,3,Chrome 17,73,2018-01-02 +session,782,4,Internet Explorer 17,54,2018-07-03 +session,782,5,Safari 49,39,2017-11-22 +session,782,6,Internet Explorer 38,29,2016-08-21 +session,782,7,Internet Explorer 30,103,2017-02-20 +session,782,8,Internet Explorer 12,110,2016-07-04 +user,783,Sunshine,Christine,26 +session,783,0,Safari 37,31,2016-07-30 +session,783,1,Safari 11,36,2018-08-30 +user,784,Ginette,Joette,67 +session,784,0,Firefox 49,55,2016-11-03 +session,784,1,Internet Explorer 44,22,2018-04-25 +session,784,2,Internet Explorer 49,91,2016-11-03 +session,784,3,Safari 34,34,2017-08-08 +user,785,Lisette,Cyril,71 +session,785,0,Safari 36,41,2016-12-15 +session,785,1,Firefox 43,68,2016-11-28 +user,786,Misti,Louis,86 +session,786,0,Safari 31,54,2018-09-10 +session,786,1,Firefox 46,104,2018-02-07 +session,786,2,Firefox 19,95,2016-07-01 +session,786,3,Safari 50,20,2017-07-16 +session,786,4,Safari 20,9,2017-10-28 +session,786,5,Internet Explorer 47,80,2016-08-15 +session,786,6,Safari 36,104,2018-03-26 +session,786,7,Safari 49,9,2017-06-01 +session,786,8,Safari 24,118,2017-01-09 +user,787,Nelda,Josephine,78 +session,787,0,Internet Explorer 4,20,2017-07-18 +session,787,1,Firefox 41,80,2017-11-04 +session,787,2,Internet Explorer 34,103,2016-07-13 +session,787,3,Safari 20,76,2016-09-14 +session,787,4,Internet Explorer 10,119,2016-10-28 +session,787,5,Safari 36,102,2018-07-08 +session,787,6,Safari 34,18,2016-07-07 +session,787,7,Internet Explorer 37,48,2018-06-12 +user,788,Alejandra,Kimberley,31 +session,788,0,Firefox 37,25,2017-09-30 +session,788,1,Internet Explorer 1,27,2017-06-21 +session,788,2,Safari 20,12,2018-06-02 +session,788,3,Internet Explorer 50,26,2016-12-23 +session,788,4,Firefox 12,22,2017-08-21 +session,788,5,Chrome 46,11,2018-07-12 +session,788,6,Chrome 8,45,2017-08-28 +user,789,Coretta,Rubin,69 +session,789,0,Firefox 23,68,2016-08-16 +session,789,1,Safari 41,6,2017-11-08 +session,789,2,Firefox 12,51,2016-10-19 +session,789,3,Safari 12,42,2016-09-24 +session,789,4,Safari 43,84,2017-08-22 +session,789,5,Internet Explorer 29,37,2018-07-15 +session,789,6,Internet Explorer 12,24,2016-11-02 +session,789,7,Chrome 30,44,2018-01-26 +user,790,Ulysses,Barbara,84 +session,790,0,Safari 14,80,2019-01-16 +session,790,1,Firefox 40,75,2017-05-07 +session,790,2,Firefox 25,109,2016-07-03 +session,790,3,Internet Explorer 5,19,2016-10-30 +session,790,4,Firefox 48,49,2016-12-01 +session,790,5,Safari 26,83,2017-11-11 +session,790,6,Chrome 31,43,2016-09-28 +user,791,Francie,Dina,36 +session,791,0,Safari 42,27,2016-09-27 +session,791,1,Chrome 33,74,2017-07-11 +session,791,2,Internet Explorer 10,107,2018-07-24 +session,791,3,Firefox 12,62,2018-03-15 +session,791,4,Firefox 1,16,2016-06-21 +session,791,5,Chrome 32,41,2018-09-17 +session,791,6,Internet Explorer 9,15,2018-11-20 +user,792,Lanny,Alethia,82 +session,792,0,Firefox 48,57,2017-08-31 +session,792,1,Safari 16,57,2017-03-14 +session,792,2,Firefox 3,4,2016-08-22 +user,793,Tosha,Robyn,85 +session,793,0,Internet Explorer 45,24,2016-07-29 +session,793,1,Safari 43,11,2019-01-29 +session,793,2,Safari 34,93,2016-09-07 +user,794,Ernest,Apryl,95 +session,794,0,Safari 26,76,2019-01-06 +session,794,1,Internet Explorer 6,60,2017-05-18 +session,794,2,Chrome 31,37,2017-09-03 +session,794,3,Safari 9,59,2016-05-26 +session,794,4,Internet Explorer 35,15,2016-12-20 +session,794,5,Firefox 13,5,2018-06-24 +session,794,6,Safari 6,43,2017-02-13 +user,795,Merlin,Ja,47 +session,795,0,Safari 24,5,2017-04-12 +session,795,1,Chrome 23,27,2017-02-02 +user,796,Sheldon,Valentin,1 +session,796,0,Safari 13,87,2017-02-16 +user,797,Annelle,Na,63 +session,797,0,Safari 40,85,2017-11-12 +session,797,1,Chrome 9,6,2018-10-03 +session,797,2,Internet Explorer 22,53,2017-09-08 +session,797,3,Safari 42,64,2016-10-23 +user,798,Jamison,Tamatha,95 +session,798,0,Chrome 34,88,2017-03-28 +session,798,1,Firefox 12,98,2018-05-29 +session,798,2,Firefox 34,68,2016-10-30 +session,798,3,Chrome 24,30,2017-09-12 +session,798,4,Chrome 5,29,2016-07-09 +session,798,5,Safari 46,47,2018-01-26 +session,798,6,Firefox 49,68,2017-01-17 +session,798,7,Safari 38,96,2017-12-12 +user,799,Cristen,Sabrina,31 +session,799,0,Chrome 18,22,2018-11-13 +session,799,1,Chrome 38,36,2019-01-02 +session,799,2,Firefox 48,9,2017-03-14 +user,800,Tawny,Jude,59 +session,800,0,Firefox 9,60,2017-05-14 +session,800,1,Firefox 25,115,2017-01-03 +session,800,2,Internet Explorer 28,115,2016-07-30 +session,800,3,Chrome 12,114,2017-10-05 +session,800,4,Chrome 41,108,2016-10-21 +session,800,5,Safari 28,87,2017-07-02 +session,800,6,Chrome 2,87,2019-02-02 +session,800,7,Firefox 16,93,2018-04-01 +session,800,8,Firefox 1,49,2018-12-10 +session,800,9,Firefox 49,92,2017-03-25 +user,801,Rayford,Lacy,34 +session,801,0,Internet Explorer 8,47,2018-12-27 +session,801,1,Firefox 14,115,2018-06-20 +session,801,2,Internet Explorer 8,105,2018-08-19 +user,802,Izetta,Margarete,57 +session,802,0,Internet Explorer 40,46,2016-06-07 +session,802,1,Internet Explorer 32,41,2018-01-10 +session,802,2,Firefox 37,117,2018-11-18 +session,802,3,Safari 36,93,2019-01-18 +session,802,4,Firefox 17,56,2018-09-22 +session,802,5,Safari 24,11,2018-03-19 +session,802,6,Safari 5,0,2019-01-16 +session,802,7,Safari 34,4,2017-09-01 +session,802,8,Chrome 14,55,2016-10-29 +session,802,9,Chrome 32,93,2018-07-15 +user,803,Sunni,Shu,5 +session,803,0,Internet Explorer 38,29,2018-01-27 +user,804,Yon,Bret,26 +session,804,0,Internet Explorer 16,33,2016-11-26 +session,804,1,Internet Explorer 21,114,2017-08-27 +user,805,Elmer,Rory,26 +session,805,0,Internet Explorer 50,98,2018-07-12 +session,805,1,Safari 28,36,2018-09-26 +session,805,2,Safari 12,116,2017-06-08 +session,805,3,Internet Explorer 45,92,2019-01-18 +session,805,4,Chrome 32,17,2016-11-21 +session,805,5,Internet Explorer 30,86,2017-05-15 +session,805,6,Chrome 14,20,2018-01-12 +session,805,7,Firefox 19,1,2016-07-27 +session,805,8,Chrome 45,10,2016-06-04 +user,806,Elbert,Kaycee,54 +session,806,0,Chrome 38,99,2017-07-28 +session,806,1,Safari 50,99,2019-02-08 +session,806,2,Chrome 21,58,2018-07-24 +session,806,3,Safari 23,31,2018-06-15 +session,806,4,Internet Explorer 32,106,2016-07-07 +user,807,Shanelle,Digna,19 +session,807,0,Internet Explorer 2,90,2017-09-18 +session,807,1,Safari 40,11,2018-02-01 +session,807,2,Safari 3,82,2017-10-20 +session,807,3,Firefox 19,106,2016-07-13 +session,807,4,Safari 32,94,2017-07-23 +session,807,5,Safari 38,72,2017-04-11 +session,807,6,Chrome 35,21,2016-06-02 +session,807,7,Firefox 31,44,2016-11-30 +session,807,8,Chrome 43,63,2017-04-03 +session,807,9,Safari 13,113,2017-08-13 +user,808,Starla,Josh,37 +session,808,0,Safari 17,51,2017-07-26 +session,808,1,Internet Explorer 26,117,2017-12-22 +session,808,2,Safari 43,13,2016-08-15 +session,808,3,Internet Explorer 9,101,2018-01-30 +session,808,4,Safari 13,12,2018-04-28 +session,808,5,Safari 47,10,2018-07-13 +session,808,6,Chrome 20,115,2019-01-14 +session,808,7,Firefox 37,61,2017-09-11 +session,808,8,Internet Explorer 12,88,2016-12-16 +user,809,Gregory,Patsy,91 +session,809,0,Firefox 8,14,2016-09-26 +session,809,1,Internet Explorer 20,51,2019-01-10 +session,809,2,Internet Explorer 34,99,2016-08-04 +user,810,Ali,Leonida,52 +session,810,0,Firefox 11,38,2018-03-10 +session,810,1,Safari 9,11,2017-06-09 +session,810,2,Chrome 31,32,2017-07-28 +session,810,3,Internet Explorer 45,32,2018-03-24 +session,810,4,Firefox 23,62,2017-09-22 +session,810,5,Chrome 14,1,2016-09-26 +session,810,6,Internet Explorer 29,54,2017-02-03 +session,810,7,Internet Explorer 22,75,2017-06-08 +session,810,8,Internet Explorer 3,86,2018-02-25 +user,811,Azucena,Maragret,91 +session,811,0,Internet Explorer 37,47,2018-12-19 +user,812,Klara,Laine,44 +session,812,0,Chrome 40,92,2017-04-07 +session,812,1,Internet Explorer 50,1,2016-07-05 +session,812,2,Chrome 29,95,2017-09-14 +session,812,3,Chrome 48,10,2017-10-25 +session,812,4,Chrome 28,70,2017-04-29 +session,812,5,Internet Explorer 24,21,2018-06-17 +session,812,6,Safari 29,16,2018-06-11 +session,812,7,Safari 25,69,2017-07-03 +user,813,Carlos,Melda,63 +session,813,0,Internet Explorer 9,3,2017-04-06 +session,813,1,Chrome 33,75,2017-09-05 +session,813,2,Chrome 24,55,2019-01-26 +session,813,3,Firefox 12,40,2018-05-27 +session,813,4,Safari 35,42,2017-11-09 +session,813,5,Firefox 11,47,2018-07-31 +session,813,6,Internet Explorer 31,46,2017-01-18 +user,814,Lena,Julee,13 +session,814,0,Firefox 36,104,2016-12-28 +session,814,1,Safari 36,67,2016-11-24 +session,814,2,Safari 13,7,2018-06-13 +session,814,3,Safari 11,15,2017-02-13 +session,814,4,Safari 32,75,2019-01-12 +session,814,5,Internet Explorer 50,81,2016-08-21 +user,815,Jonell,Antwan,34 +session,815,0,Internet Explorer 15,28,2017-06-14 +session,815,1,Firefox 23,50,2018-08-29 +session,815,2,Firefox 40,2,2016-08-31 +session,815,3,Firefox 28,100,2019-01-19 +session,815,4,Internet Explorer 6,55,2017-01-27 +session,815,5,Chrome 3,54,2018-05-31 +session,815,6,Chrome 46,38,2018-01-01 +user,816,Zack,Romana,5 +session,816,0,Chrome 38,70,2016-10-06 +session,816,1,Firefox 49,6,2017-01-20 +session,816,2,Chrome 4,46,2018-06-02 +session,816,3,Internet Explorer 38,91,2018-03-26 +session,816,4,Chrome 35,93,2018-01-08 +session,816,5,Safari 24,73,2017-04-03 +session,816,6,Firefox 44,13,2016-08-04 +session,816,7,Chrome 19,72,2018-01-20 +user,817,Junko,Arvilla,92 +session,817,0,Safari 27,46,2016-12-22 +session,817,1,Chrome 13,16,2016-07-08 +session,817,2,Chrome 20,83,2016-11-17 +session,817,3,Firefox 50,92,2016-06-09 +user,818,Jackson,Francisco,26 +session,818,0,Safari 18,76,2017-10-15 +user,819,Pura,Richelle,11 +session,819,0,Chrome 22,1,2016-09-15 +session,819,1,Internet Explorer 35,94,2018-07-29 +session,819,2,Firefox 32,81,2016-09-23 +session,819,3,Internet Explorer 47,46,2017-02-11 +session,819,4,Chrome 12,30,2017-11-17 +session,819,5,Firefox 43,84,2017-05-07 +session,819,6,Firefox 46,46,2016-10-02 +user,820,Alexandra,Mackenzie,8 +session,820,0,Internet Explorer 16,46,2016-07-21 +user,821,Waylon,Agueda,92 +session,821,0,Chrome 49,110,2016-07-08 +user,822,Maegan,Scarlett,42 +session,822,0,Internet Explorer 33,58,2018-02-07 +session,822,1,Chrome 23,114,2016-08-05 +session,822,2,Safari 31,51,2017-03-03 +session,822,3,Chrome 13,28,2018-01-13 +session,822,4,Internet Explorer 19,75,2017-02-09 +session,822,5,Safari 5,29,2018-02-05 +user,823,Fidel,Lisa,1 +session,823,0,Firefox 50,47,2018-09-15 +session,823,1,Safari 22,9,2016-12-25 +session,823,2,Firefox 40,82,2018-08-14 +session,823,3,Firefox 26,85,2017-07-26 +session,823,4,Chrome 28,83,2018-01-08 +session,823,5,Chrome 42,61,2018-07-23 +session,823,6,Firefox 43,39,2018-07-31 +session,823,7,Chrome 36,97,2016-06-17 +user,824,Kip,Benjamin,51 +session,824,0,Safari 17,108,2017-04-26 +session,824,1,Internet Explorer 42,33,2017-12-06 +session,824,2,Chrome 20,41,2016-08-28 +session,824,3,Internet Explorer 50,77,2016-09-10 +session,824,4,Firefox 8,17,2017-05-08 +session,824,5,Chrome 42,86,2017-06-06 +session,824,6,Chrome 38,89,2017-08-28 +user,825,Kenneth,Nicky,78 +session,825,0,Firefox 37,117,2016-10-24 +session,825,1,Firefox 7,67,2017-10-23 +session,825,2,Safari 5,31,2017-07-20 +session,825,3,Chrome 22,14,2017-05-11 +session,825,4,Chrome 8,16,2016-10-13 +session,825,5,Safari 12,106,2017-09-27 +session,825,6,Internet Explorer 19,23,2018-09-29 +user,826,Fredericka,Marisa,18 +session,826,0,Internet Explorer 2,97,2017-05-26 +session,826,1,Internet Explorer 11,24,2017-02-08 +session,826,2,Internet Explorer 36,13,2017-05-06 +session,826,3,Chrome 22,107,2017-03-11 +session,826,4,Chrome 38,43,2016-08-06 +user,827,Rosena,Junita,3 +session,827,0,Internet Explorer 5,21,2017-04-05 +session,827,1,Chrome 8,93,2017-09-25 +session,827,2,Safari 17,36,2018-09-05 +session,827,3,Safari 28,98,2017-11-13 +session,827,4,Internet Explorer 22,17,2017-11-28 +session,827,5,Safari 48,70,2017-01-24 +session,827,6,Internet Explorer 13,81,2018-06-21 +session,827,7,Safari 12,67,2018-10-20 +session,827,8,Internet Explorer 4,25,2017-02-17 +session,827,9,Chrome 15,79,2017-11-19 +user,828,Lou,Aracely,98 +session,828,0,Safari 39,22,2016-07-18 +user,829,Kendrick,Michiko,71 +session,829,0,Internet Explorer 48,81,2016-07-15 +user,830,Vannessa,Paris,36 +session,830,0,Chrome 4,39,2017-01-10 +session,830,1,Internet Explorer 26,119,2017-06-24 +session,830,2,Firefox 41,61,2016-08-28 +session,830,3,Internet Explorer 40,73,2016-07-14 +session,830,4,Internet Explorer 50,92,2016-09-14 +session,830,5,Safari 30,20,2017-04-23 +session,830,6,Firefox 35,60,2018-08-15 +session,830,7,Chrome 21,49,2017-06-01 +session,830,8,Internet Explorer 35,76,2018-05-16 +user,831,Ellsworth,Louann,42 +session,831,0,Safari 25,38,2018-04-22 +session,831,1,Safari 32,21,2017-07-26 +session,831,2,Safari 22,109,2018-10-14 +session,831,3,Safari 20,68,2018-11-06 +session,831,4,Chrome 50,69,2017-04-08 +session,831,5,Chrome 5,19,2016-08-07 +session,831,6,Firefox 42,78,2018-11-21 +session,831,7,Safari 15,69,2016-05-24 +session,831,8,Internet Explorer 6,56,2017-12-27 +user,832,Louis,Pennie,98 +session,832,0,Firefox 36,69,2016-07-25 +session,832,1,Firefox 7,79,2017-09-18 +session,832,2,Internet Explorer 1,102,2017-01-22 +user,833,Blanch,Kirstie,20 +session,833,0,Firefox 4,36,2016-08-23 +session,833,1,Chrome 44,90,2018-11-23 +session,833,2,Safari 39,87,2018-04-16 +session,833,3,Internet Explorer 20,118,2017-04-07 +session,833,4,Chrome 1,59,2018-01-16 +user,834,Shenika,Diana,41 +session,834,0,Internet Explorer 37,88,2018-09-19 +session,834,1,Firefox 7,53,2018-04-06 +user,835,Chase,Andre,88 +session,835,0,Chrome 9,95,2019-02-06 +session,835,1,Safari 44,69,2016-10-14 +session,835,2,Chrome 6,74,2018-09-29 +session,835,3,Safari 4,19,2017-08-17 +session,835,4,Chrome 29,113,2017-09-07 +session,835,5,Firefox 20,21,2016-09-11 +session,835,6,Chrome 20,8,2018-06-18 +user,836,Sally,Carry,57 +session,836,0,Internet Explorer 18,0,2018-04-12 +session,836,1,Firefox 29,17,2016-07-29 +session,836,2,Internet Explorer 17,117,2017-05-17 +session,836,3,Chrome 12,14,2017-05-30 +session,836,4,Safari 23,68,2017-10-14 +session,836,5,Safari 47,79,2018-12-31 +session,836,6,Safari 26,102,2016-07-25 +session,836,7,Chrome 31,23,2017-08-02 +session,836,8,Chrome 23,88,2017-03-01 +session,836,9,Chrome 6,96,2017-07-15 +user,837,Elina,Jeanmarie,21 +session,837,0,Firefox 38,100,2017-03-07 +session,837,1,Firefox 31,114,2017-06-25 +user,838,Dorian,Laurel,1 +session,838,0,Chrome 42,49,2016-07-13 +session,838,1,Chrome 29,20,2017-02-09 +session,838,2,Safari 12,72,2018-04-30 +session,838,3,Chrome 14,34,2017-06-16 +session,838,4,Chrome 40,66,2017-09-17 +session,838,5,Internet Explorer 9,42,2018-10-07 +session,838,6,Safari 19,106,2018-10-01 +session,838,7,Firefox 5,56,2018-03-05 +session,838,8,Chrome 9,23,2018-06-07 +session,838,9,Chrome 23,28,2016-11-27 +user,839,Denisha,Parthenia,90 +session,839,0,Chrome 24,11,2017-05-07 +session,839,1,Firefox 8,109,2017-08-22 +session,839,2,Chrome 23,115,2018-01-29 +session,839,3,Chrome 26,47,2016-10-20 +session,839,4,Firefox 24,89,2018-09-18 +session,839,5,Internet Explorer 36,16,2019-01-08 +session,839,6,Internet Explorer 44,63,2016-09-14 +session,839,7,Safari 19,66,2016-09-06 +session,839,8,Chrome 31,54,2018-03-18 +session,839,9,Internet Explorer 47,89,2017-07-31 +user,840,Novella,Shanelle,55 +session,840,0,Internet Explorer 8,44,2016-08-02 +session,840,1,Internet Explorer 28,107,2018-03-18 +session,840,2,Firefox 35,109,2016-09-27 +session,840,3,Firefox 33,109,2018-10-06 +session,840,4,Firefox 10,78,2018-05-03 +session,840,5,Safari 17,114,2019-01-24 +session,840,6,Safari 42,49,2019-02-11 +session,840,7,Internet Explorer 10,55,2017-09-06 +session,840,8,Chrome 14,113,2018-08-31 +user,841,Conrad,Diego,14 +session,841,0,Safari 31,23,2018-10-21 +session,841,1,Chrome 29,103,2018-07-28 +user,842,Eulalia,Dawne,90 +session,842,0,Chrome 46,5,2018-05-23 +session,842,1,Internet Explorer 10,92,2017-01-03 +session,842,2,Chrome 21,84,2017-02-01 +session,842,3,Safari 9,92,2019-01-26 +user,843,Argentina,Arianne,51 +session,843,0,Firefox 44,15,2016-07-08 +session,843,1,Internet Explorer 10,71,2017-06-29 +user,844,Ryan,Brook,32 +session,844,0,Firefox 48,54,2017-10-08 +user,845,Lyndon,Kali,70 +session,845,0,Safari 6,59,2016-10-31 +session,845,1,Firefox 27,116,2016-10-27 +session,845,2,Firefox 9,41,2018-01-07 +session,845,3,Internet Explorer 34,61,2018-01-21 +session,845,4,Chrome 44,65,2017-06-28 +session,845,5,Chrome 29,116,2018-05-03 +session,845,6,Safari 44,52,2017-09-30 +user,846,Shayne,Waneta,42 +session,846,0,Internet Explorer 40,92,2016-06-23 +session,846,1,Firefox 8,94,2017-03-22 +session,846,2,Safari 39,46,2018-12-12 +session,846,3,Internet Explorer 16,18,2018-04-17 +session,846,4,Chrome 41,74,2017-06-26 +session,846,5,Safari 8,80,2017-07-28 +user,847,Taneka,Laurence,75 +session,847,0,Firefox 31,33,2017-07-01 +session,847,1,Chrome 43,5,2016-07-10 +session,847,2,Safari 46,61,2017-08-26 +session,847,3,Internet Explorer 20,17,2018-09-22 +user,848,Federico,Rodrigo,11 +session,848,0,Chrome 24,58,2017-03-28 +session,848,1,Safari 48,68,2018-07-24 +session,848,2,Safari 4,29,2017-02-20 +session,848,3,Chrome 38,4,2018-07-09 +session,848,4,Firefox 31,34,2018-05-26 +session,848,5,Safari 20,75,2018-03-27 +session,848,6,Internet Explorer 14,14,2018-03-13 +session,848,7,Safari 42,72,2016-08-07 +session,848,8,Firefox 23,30,2018-03-09 +user,849,Eldora,Rufina,86 +session,849,0,Firefox 35,119,2017-04-21 +session,849,1,Safari 49,111,2016-09-06 +session,849,2,Safari 34,60,2018-10-03 +session,849,3,Chrome 19,12,2017-07-29 +session,849,4,Firefox 44,116,2018-04-18 +session,849,5,Safari 22,15,2019-01-16 +session,849,6,Firefox 1,74,2018-08-11 +session,849,7,Internet Explorer 40,43,2017-10-28 +session,849,8,Chrome 21,115,2018-01-07 +user,850,Troy,Chong,38 +session,850,0,Firefox 17,79,2018-02-28 +session,850,1,Firefox 37,107,2018-04-20 +session,850,2,Internet Explorer 34,71,2018-03-14 +session,850,3,Firefox 17,110,2017-10-08 +user,851,Benny,Shani,7 +session,851,0,Internet Explorer 14,79,2017-06-20 +session,851,1,Internet Explorer 12,109,2017-03-17 +session,851,2,Safari 6,47,2018-02-27 +session,851,3,Chrome 48,109,2017-05-05 +session,851,4,Safari 40,59,2018-01-08 +session,851,5,Internet Explorer 12,87,2018-10-04 +session,851,6,Internet Explorer 10,36,2017-09-20 +session,851,7,Chrome 1,30,2017-06-14 +user,852,Nicky,Ocie,85 +session,852,0,Safari 10,88,2016-08-02 +session,852,1,Internet Explorer 30,101,2018-05-12 +session,852,2,Chrome 50,28,2017-04-30 +session,852,3,Firefox 6,108,2016-12-30 +session,852,4,Chrome 36,104,2018-09-30 +session,852,5,Internet Explorer 9,73,2016-10-13 +session,852,6,Chrome 30,12,2017-09-22 +session,852,7,Internet Explorer 37,39,2017-08-20 +user,853,Miquel,Dave,31 +session,853,0,Safari 1,45,2018-04-23 +session,853,1,Safari 32,32,2017-11-10 +session,853,2,Internet Explorer 12,52,2017-10-25 +session,853,3,Internet Explorer 32,19,2018-08-14 +session,853,4,Internet Explorer 7,103,2017-06-19 +session,853,5,Chrome 32,66,2017-04-20 +session,853,6,Firefox 3,78,2017-12-24 +session,853,7,Internet Explorer 11,117,2018-10-10 +user,854,Gilbert,Davina,83 +session,854,0,Internet Explorer 48,110,2018-04-13 +session,854,1,Firefox 35,9,2018-10-07 +session,854,2,Internet Explorer 30,100,2018-12-28 +session,854,3,Chrome 15,12,2017-08-04 +session,854,4,Chrome 48,71,2018-02-07 +session,854,5,Internet Explorer 18,74,2017-05-01 +session,854,6,Chrome 37,23,2016-11-24 +session,854,7,Internet Explorer 4,1,2017-11-25 +session,854,8,Internet Explorer 16,5,2017-01-15 +session,854,9,Safari 17,21,2018-02-25 +user,855,Antonio,Krystal,38 +session,855,0,Safari 41,101,2017-08-16 +session,855,1,Safari 26,92,2018-10-16 +session,855,2,Chrome 44,113,2017-02-27 +user,856,Warren,Hong,92 +session,856,0,Chrome 19,2,2016-09-30 +session,856,1,Chrome 41,70,2017-02-07 +session,856,2,Chrome 49,63,2016-07-15 +session,856,3,Chrome 23,108,2018-09-21 +session,856,4,Chrome 23,60,2018-06-27 +session,856,5,Internet Explorer 9,17,2018-06-29 +session,856,6,Internet Explorer 32,102,2018-02-08 +session,856,7,Internet Explorer 9,70,2018-02-28 +session,856,8,Safari 5,81,2016-07-23 +user,857,Rico,Adria,19 +session,857,0,Chrome 12,66,2017-12-19 +session,857,1,Firefox 26,109,2018-03-15 +session,857,2,Firefox 2,117,2017-11-09 +session,857,3,Firefox 36,114,2018-07-29 +session,857,4,Firefox 12,20,2018-06-09 +session,857,5,Internet Explorer 32,56,2016-05-27 +session,857,6,Chrome 46,100,2019-01-16 +user,858,Yer,Marita,90 +session,858,0,Safari 26,36,2018-04-24 +session,858,1,Safari 37,73,2018-08-24 +session,858,2,Firefox 15,118,2017-07-06 +user,859,Bernie,Corie,86 +session,859,0,Safari 20,75,2017-08-24 +session,859,1,Safari 44,28,2017-07-01 +session,859,2,Safari 4,109,2018-10-10 +user,860,Colby,Milo,42 +session,860,0,Chrome 38,32,2017-08-29 +session,860,1,Chrome 13,92,2017-01-01 +session,860,2,Internet Explorer 28,103,2018-03-25 +session,860,3,Safari 40,71,2017-08-15 +session,860,4,Chrome 27,27,2016-06-08 +session,860,5,Safari 23,29,2016-09-13 +session,860,6,Firefox 15,5,2017-06-19 +session,860,7,Safari 28,61,2018-08-26 +session,860,8,Firefox 26,103,2018-02-09 +session,860,9,Chrome 10,38,2017-11-09 +user,861,Erma,Stephaine,16 +session,861,0,Safari 43,39,2017-02-09 +session,861,1,Firefox 27,101,2018-12-13 +user,862,Ching,Leena,88 +session,862,0,Firefox 36,97,2018-02-14 +session,862,1,Safari 6,57,2017-02-20 +session,862,2,Safari 19,54,2018-05-28 +session,862,3,Safari 28,23,2017-12-25 +session,862,4,Safari 45,15,2018-04-03 +session,862,5,Firefox 2,102,2019-01-08 +session,862,6,Chrome 21,8,2017-05-20 +session,862,7,Internet Explorer 21,45,2017-10-04 +session,862,8,Chrome 47,56,2018-06-12 +session,862,9,Safari 45,72,2016-08-06 +user,863,Dani,Alena,43 +session,863,0,Safari 22,17,2018-10-05 +session,863,1,Firefox 40,68,2016-11-02 +user,864,Willia,Jami,42 +session,864,0,Firefox 22,25,2017-11-25 +user,865,Lucien,Brett,25 +session,865,0,Safari 43,110,2018-06-30 +session,865,1,Chrome 14,2,2018-03-22 +session,865,2,Safari 21,59,2017-12-20 +session,865,3,Safari 48,50,2017-09-28 +session,865,4,Internet Explorer 29,104,2017-10-30 +session,865,5,Chrome 43,69,2018-09-02 +session,865,6,Firefox 37,108,2018-07-13 +user,866,Ai,Melissa,4 +session,866,0,Firefox 28,75,2017-03-10 +session,866,1,Chrome 27,17,2019-02-09 +session,866,2,Safari 39,36,2016-05-24 +session,866,3,Firefox 50,61,2018-09-21 +session,866,4,Chrome 21,2,2018-02-05 +session,866,5,Safari 23,63,2017-04-09 +session,866,6,Firefox 22,45,2018-07-03 +session,866,7,Internet Explorer 49,101,2017-02-13 +session,866,8,Firefox 14,85,2019-01-22 +session,866,9,Firefox 45,94,2018-04-07 +user,867,Kera,Velda,44 +session,867,0,Firefox 18,55,2017-01-30 +session,867,1,Firefox 18,31,2018-03-24 +session,867,2,Firefox 32,56,2016-12-30 +session,867,3,Firefox 38,75,2016-12-06 +session,867,4,Chrome 4,117,2016-12-18 +session,867,5,Firefox 15,108,2017-05-08 +session,867,6,Internet Explorer 32,84,2019-02-11 +session,867,7,Firefox 1,30,2016-10-15 +session,867,8,Chrome 21,107,2016-12-26 +session,867,9,Firefox 40,7,2016-12-08 +user,868,Karlyn,Tobi,20 +session,868,0,Firefox 29,18,2018-01-22 +user,869,Angelyn,Cortez,59 +session,869,0,Safari 29,32,2016-06-22 +user,870,Arletha,Earlene,58 +session,870,0,Firefox 26,63,2018-12-12 +session,870,1,Safari 32,41,2017-03-13 +session,870,2,Firefox 14,74,2016-06-20 +session,870,3,Firefox 32,21,2017-01-12 +session,870,4,Chrome 14,4,2016-11-04 +session,870,5,Internet Explorer 2,76,2017-07-06 +session,870,6,Safari 21,77,2018-07-12 +session,870,7,Firefox 18,102,2017-10-05 +session,870,8,Firefox 50,14,2019-01-22 +session,870,9,Internet Explorer 25,6,2018-02-02 +user,871,Regan,Joette,81 +session,871,0,Firefox 14,79,2017-05-20 +session,871,1,Chrome 44,61,2018-12-22 +session,871,2,Safari 27,22,2017-08-30 +session,871,3,Firefox 40,107,2017-03-22 +session,871,4,Chrome 47,79,2017-09-01 +user,872,Rosaura,Yesenia,34 +session,872,0,Chrome 12,110,2017-09-06 +user,873,Leif,Hien,76 +session,873,0,Firefox 34,68,2016-07-16 +session,873,1,Safari 16,80,2016-11-07 +session,873,2,Internet Explorer 46,18,2017-10-03 +session,873,3,Internet Explorer 16,109,2016-06-04 +session,873,4,Firefox 6,105,2018-11-30 +session,873,5,Firefox 50,17,2016-10-17 +session,873,6,Internet Explorer 40,96,2018-08-01 +session,873,7,Safari 20,42,2017-11-24 +user,874,Malcom,Rudolph,90 +session,874,0,Firefox 15,92,2018-06-12 +session,874,1,Safari 40,118,2016-10-16 +session,874,2,Internet Explorer 26,46,2016-11-25 +session,874,3,Safari 2,102,2019-01-31 +session,874,4,Chrome 43,118,2017-03-13 +session,874,5,Safari 39,77,2017-04-02 +session,874,6,Firefox 18,102,2018-12-15 +session,874,7,Chrome 10,56,2017-02-02 +session,874,8,Chrome 29,107,2016-08-01 +user,875,Dwight,Ilda,47 +session,875,0,Safari 30,93,2018-11-06 +session,875,1,Firefox 27,22,2018-09-20 +session,875,2,Safari 9,80,2017-04-26 +session,875,3,Internet Explorer 46,106,2017-11-03 +session,875,4,Chrome 41,13,2017-10-30 +session,875,5,Chrome 11,73,2016-12-17 +user,876,Selene,Krystal,22 +session,876,0,Internet Explorer 21,98,2016-05-26 +session,876,1,Firefox 11,86,2017-03-08 +session,876,2,Firefox 14,1,2018-02-15 +session,876,3,Internet Explorer 31,54,2018-08-07 +session,876,4,Internet Explorer 44,32,2016-09-24 +user,877,Ethan,Dalton,2 +session,877,0,Firefox 19,0,2017-12-13 +session,877,1,Firefox 18,58,2018-10-22 +session,877,2,Safari 11,10,2018-11-01 +session,877,3,Chrome 43,66,2017-03-21 +session,877,4,Firefox 17,31,2017-09-14 +session,877,5,Safari 27,87,2017-10-11 +session,877,6,Chrome 46,64,2017-11-29 +session,877,7,Firefox 32,96,2016-09-11 +session,877,8,Firefox 33,116,2016-10-28 +session,877,9,Safari 23,46,2017-04-13 +user,878,Trena,Ayesha,26 +session,878,0,Firefox 36,31,2018-06-24 +session,878,1,Firefox 45,1,2018-05-19 +session,878,2,Chrome 25,9,2016-07-13 +session,878,3,Safari 12,39,2018-01-06 +session,878,4,Internet Explorer 45,92,2017-01-25 +session,878,5,Safari 42,52,2016-11-15 +session,878,6,Safari 15,50,2016-10-19 +user,879,Emmanuel,Hallie,14 +session,879,0,Chrome 45,66,2019-02-06 +session,879,1,Safari 32,71,2018-10-30 +session,879,2,Internet Explorer 8,0,2017-06-03 +session,879,3,Internet Explorer 46,90,2016-09-23 +user,880,Clementine,Denice,72 +session,880,0,Safari 48,28,2018-10-29 +session,880,1,Chrome 26,87,2018-12-18 +user,881,Babette,Sasha,5 +session,881,0,Chrome 20,29,2016-12-12 +session,881,1,Firefox 28,2,2018-01-25 +user,882,Francis,Jeanie,92 +session,882,0,Chrome 39,11,2016-08-22 +session,882,1,Firefox 8,43,2018-06-10 +session,882,2,Safari 35,75,2016-08-26 +session,882,3,Chrome 2,24,2018-07-15 +session,882,4,Internet Explorer 13,23,2016-05-25 +session,882,5,Internet Explorer 13,103,2017-03-10 +session,882,6,Chrome 44,29,2017-01-05 +user,883,Ayanna,Palmira,53 +session,883,0,Firefox 10,82,2018-08-28 +user,884,Gwendolyn,Kamilah,68 +session,884,0,Safari 49,5,2017-02-28 +session,884,1,Safari 33,35,2016-07-12 +session,884,2,Chrome 36,104,2018-09-08 +user,885,Brandon,Alverta,58 +session,885,0,Safari 29,20,2018-06-02 +session,885,1,Internet Explorer 20,92,2016-08-10 +session,885,2,Chrome 4,80,2018-08-16 +session,885,3,Safari 43,16,2018-02-19 +session,885,4,Internet Explorer 36,111,2016-11-23 +session,885,5,Safari 36,34,2017-04-11 +session,885,6,Safari 14,110,2018-01-26 +session,885,7,Safari 8,74,2017-12-16 +session,885,8,Firefox 46,83,2017-03-19 +session,885,9,Internet Explorer 22,46,2018-12-15 +user,886,Alexandria,Kizzy,47 +session,886,0,Internet Explorer 2,61,2018-01-25 +session,886,1,Safari 50,56,2018-07-23 +session,886,2,Safari 23,5,2018-12-21 +session,886,3,Chrome 25,40,2017-08-01 +session,886,4,Chrome 44,94,2017-11-21 +session,886,5,Chrome 49,87,2016-10-11 +session,886,6,Chrome 37,69,2018-08-28 +session,886,7,Internet Explorer 50,22,2019-02-12 +session,886,8,Chrome 15,37,2017-12-12 +session,886,9,Firefox 46,90,2018-09-23 +user,887,Georgianne,Marica,87 +session,887,0,Internet Explorer 31,2,2017-10-27 +session,887,1,Safari 4,30,2018-01-13 +session,887,2,Internet Explorer 46,30,2017-06-29 +session,887,3,Safari 46,4,2017-12-14 +session,887,4,Safari 43,97,2018-12-03 +session,887,5,Chrome 29,106,2017-01-14 +user,888,Glenna,Luciano,36 +session,888,0,Internet Explorer 7,6,2017-08-20 +session,888,1,Safari 46,65,2018-06-17 +user,889,Simon,Jody,66 +session,889,0,Safari 5,89,2017-06-29 +session,889,1,Firefox 31,79,2019-01-22 +user,890,Noe,Karena,15 +session,890,0,Safari 33,15,2017-05-15 +session,890,1,Internet Explorer 48,16,2018-06-21 +session,890,2,Firefox 2,28,2018-07-25 +user,891,Dianne,Isreal,94 +session,891,0,Internet Explorer 3,12,2016-08-18 +session,891,1,Internet Explorer 45,60,2016-06-02 +session,891,2,Chrome 41,69,2017-01-18 +session,891,3,Firefox 19,91,2018-02-26 +session,891,4,Safari 44,13,2018-10-27 +session,891,5,Firefox 48,90,2017-09-22 +user,892,Hugh,Tai,37 +session,892,0,Internet Explorer 23,113,2017-08-04 +session,892,1,Internet Explorer 47,43,2017-02-13 +session,892,2,Internet Explorer 35,69,2017-07-27 +session,892,3,Internet Explorer 12,2,2017-03-20 +session,892,4,Internet Explorer 13,82,2018-06-03 +user,893,Eleanora,Nikita,38 +session,893,0,Firefox 37,17,2018-02-23 +user,894,Minh,Tabetha,55 +session,894,0,Firefox 34,81,2019-01-22 +session,894,1,Firefox 13,97,2016-11-16 +session,894,2,Safari 3,52,2017-10-03 +session,894,3,Safari 1,80,2019-01-19 +user,895,Brittani,Jordan,35 +session,895,0,Safari 46,101,2016-10-10 +session,895,1,Chrome 26,12,2018-07-21 +session,895,2,Firefox 18,74,2018-11-06 +session,895,3,Safari 33,26,2018-10-20 +session,895,4,Chrome 24,32,2018-05-16 +session,895,5,Firefox 48,27,2018-07-22 +session,895,6,Firefox 30,36,2016-05-30 +session,895,7,Internet Explorer 39,79,2016-11-21 +session,895,8,Internet Explorer 33,22,2017-09-13 +user,896,Fonda,Rafael,28 +session,896,0,Firefox 12,114,2017-08-19 +session,896,1,Internet Explorer 7,60,2017-07-28 +session,896,2,Safari 34,69,2017-06-16 +session,896,3,Internet Explorer 15,31,2016-09-28 +session,896,4,Safari 19,7,2016-07-22 +session,896,5,Internet Explorer 38,30,2018-05-08 +session,896,6,Internet Explorer 21,0,2017-03-15 +user,897,Mohamed,Nella,31 +session,897,0,Safari 16,54,2018-01-23 +session,897,1,Chrome 1,86,2017-03-07 +user,898,Yajaira,Marcelino,84 +session,898,0,Safari 27,41,2016-12-28 +session,898,1,Chrome 35,63,2016-12-06 +session,898,2,Safari 18,27,2017-08-22 +session,898,3,Internet Explorer 25,23,2017-11-01 +session,898,4,Chrome 2,30,2017-02-24 +session,898,5,Safari 29,102,2018-07-30 +session,898,6,Safari 45,102,2017-01-18 +user,899,Willena,Shira,99 +session,899,0,Internet Explorer 36,108,2017-07-10 +session,899,1,Internet Explorer 43,70,2018-01-07 +session,899,2,Safari 35,1,2016-08-24 +session,899,3,Safari 11,84,2017-04-24 +session,899,4,Firefox 6,52,2017-05-04 +session,899,5,Internet Explorer 32,11,2017-10-22 +user,900,Vonda,Miles,95 +session,900,0,Safari 38,64,2018-12-20 +session,900,1,Chrome 16,30,2016-09-16 +session,900,2,Internet Explorer 29,87,2017-05-04 +session,900,3,Chrome 11,95,2018-04-24 +session,900,4,Chrome 35,64,2017-04-18 +session,900,5,Firefox 34,70,2018-11-10 +session,900,6,Safari 50,101,2018-10-26 +user,901,Lanny,Amado,62 +session,901,0,Firefox 34,101,2016-12-25 +session,901,1,Internet Explorer 25,93,2017-01-06 +session,901,2,Internet Explorer 12,46,2018-04-22 +user,902,Katherina,Laverna,34 +session,902,0,Firefox 27,67,2018-09-27 +session,902,1,Chrome 20,83,2017-04-08 +session,902,2,Chrome 30,38,2017-05-01 +session,902,3,Chrome 41,24,2017-10-02 +session,902,4,Safari 17,62,2017-05-16 +session,902,5,Chrome 5,71,2018-10-30 +session,902,6,Internet Explorer 11,114,2018-03-09 +user,903,Clint,John,94 +session,903,0,Chrome 17,39,2017-01-08 +session,903,1,Firefox 49,37,2017-08-14 +session,903,2,Chrome 12,106,2018-03-27 +user,904,Bernard,Denisse,4 +session,904,0,Internet Explorer 27,23,2018-11-16 +session,904,1,Firefox 19,30,2017-05-11 +session,904,2,Safari 7,101,2017-01-05 +session,904,3,Internet Explorer 1,87,2017-05-21 +session,904,4,Safari 9,34,2019-01-06 +user,905,Freeman,Wan,98 +session,905,0,Chrome 27,47,2018-10-20 +session,905,1,Firefox 21,11,2018-06-27 +session,905,2,Firefox 35,57,2017-09-11 +session,905,3,Firefox 35,40,2016-06-30 +session,905,4,Internet Explorer 10,95,2017-09-24 +session,905,5,Internet Explorer 38,4,2018-09-01 +session,905,6,Safari 12,51,2016-09-06 +session,905,7,Safari 26,74,2017-02-07 +user,906,Johnnie,Rickey,57 +session,906,0,Firefox 21,31,2018-10-23 +session,906,1,Internet Explorer 37,111,2018-04-05 +session,906,2,Firefox 45,81,2018-08-28 +session,906,3,Firefox 6,101,2016-09-24 +session,906,4,Safari 33,98,2018-08-18 +user,907,Tuan,Eleanore,85 +session,907,0,Internet Explorer 27,118,2018-04-04 +session,907,1,Safari 5,84,2017-09-17 +session,907,2,Internet Explorer 23,78,2018-04-24 +session,907,3,Safari 20,77,2018-06-22 +session,907,4,Internet Explorer 21,47,2018-03-06 +user,908,Brittani,Shenita,52 +session,908,0,Internet Explorer 29,87,2016-07-22 +session,908,1,Safari 49,14,2016-08-25 +session,908,2,Internet Explorer 41,90,2016-12-29 +session,908,3,Internet Explorer 49,11,2016-09-24 +session,908,4,Chrome 17,98,2018-12-09 +session,908,5,Chrome 12,28,2016-10-23 +session,908,6,Firefox 14,53,2018-07-23 +session,908,7,Firefox 31,10,2017-09-29 +session,908,8,Safari 3,101,2017-10-26 +user,909,Ulysses,Virgilio,31 +session,909,0,Internet Explorer 29,114,2019-01-10 +session,909,1,Firefox 39,25,2017-11-25 +session,909,2,Firefox 45,31,2017-10-04 +user,910,Hollis,Brendon,31 +session,910,0,Chrome 21,10,2016-10-28 +session,910,1,Chrome 14,68,2017-04-25 +session,910,2,Safari 27,32,2018-12-08 +session,910,3,Firefox 43,79,2018-04-23 +session,910,4,Safari 5,55,2017-02-18 +session,910,5,Chrome 48,30,2016-12-24 +user,911,Carson,Deeanna,89 +session,911,0,Internet Explorer 29,110,2017-09-28 +session,911,1,Safari 17,8,2018-01-29 +session,911,2,Firefox 1,84,2016-06-28 +session,911,3,Chrome 30,107,2018-11-10 +session,911,4,Safari 20,89,2018-06-01 +session,911,5,Internet Explorer 7,8,2018-01-01 +user,912,Willie,Juliann,24 +session,912,0,Internet Explorer 33,31,2018-04-07 +session,912,1,Chrome 37,83,2017-09-07 +session,912,2,Chrome 1,112,2018-01-07 +session,912,3,Firefox 24,73,2017-04-15 +user,913,Dean,Roseann,18 +session,913,0,Safari 7,2,2018-12-14 +session,913,1,Internet Explorer 9,63,2017-08-06 +session,913,2,Internet Explorer 31,79,2016-10-09 +session,913,3,Chrome 33,117,2016-10-19 +session,913,4,Firefox 2,0,2018-12-10 +session,913,5,Internet Explorer 11,101,2016-08-09 +session,913,6,Chrome 14,119,2018-07-21 +session,913,7,Safari 8,2,2018-10-16 +session,913,8,Chrome 50,3,2017-12-04 +user,914,Frankie,Tiny,69 +session,914,0,Chrome 5,105,2016-06-26 +session,914,1,Firefox 45,70,2016-07-10 +session,914,2,Firefox 17,40,2018-08-17 +user,915,Darnell,Ezekiel,20 +session,915,0,Chrome 33,54,2017-01-13 +session,915,1,Chrome 37,118,2016-06-22 +session,915,2,Safari 27,2,2018-11-03 +session,915,3,Firefox 13,48,2018-04-28 +session,915,4,Internet Explorer 1,103,2017-01-11 +session,915,5,Chrome 42,114,2017-06-21 +session,915,6,Firefox 18,61,2016-11-15 +user,916,Cameron,Esperanza,82 +session,916,0,Firefox 1,38,2018-12-07 +session,916,1,Safari 33,76,2016-11-06 +user,917,Graig,Manie,13 +session,917,0,Safari 33,30,2016-08-04 +session,917,1,Chrome 50,85,2017-09-08 +user,918,Saul,Roberta,53 +session,918,0,Firefox 46,67,2016-12-01 +session,918,1,Firefox 23,104,2018-03-12 +session,918,2,Firefox 23,45,2016-10-09 +session,918,3,Internet Explorer 48,114,2017-07-31 +session,918,4,Firefox 7,51,2017-02-08 +session,918,5,Internet Explorer 42,28,2018-10-07 +session,918,6,Safari 18,30,2016-11-24 +session,918,7,Safari 49,92,2018-01-17 +user,919,Debroah,Charlie,24 +session,919,0,Firefox 33,90,2018-11-14 +session,919,1,Internet Explorer 26,5,2017-09-30 +session,919,2,Safari 42,66,2016-07-29 +user,920,Aracelis,Felice,67 +session,920,0,Chrome 34,84,2018-04-05 +session,920,1,Internet Explorer 13,102,2017-02-24 +session,920,2,Internet Explorer 29,48,2018-10-24 +session,920,3,Firefox 48,89,2016-08-10 +session,920,4,Firefox 30,45,2018-05-05 +session,920,5,Firefox 37,103,2018-12-18 +user,921,Elena,Vada,22 +session,921,0,Firefox 17,79,2016-08-26 +session,921,1,Internet Explorer 6,2,2018-02-11 +session,921,2,Chrome 9,113,2016-09-24 +session,921,3,Firefox 17,2,2018-04-09 +session,921,4,Safari 28,36,2018-08-06 +session,921,5,Chrome 3,90,2018-01-17 +user,922,Mari,Javier,93 +session,922,0,Chrome 15,79,2017-09-26 +session,922,1,Chrome 34,0,2018-06-29 +session,922,2,Chrome 40,1,2017-12-28 +session,922,3,Safari 15,59,2016-08-05 +session,922,4,Safari 1,60,2016-05-26 +session,922,5,Internet Explorer 22,7,2016-07-14 +user,923,Vivan,Ward,85 +session,923,0,Chrome 45,26,2017-07-20 +session,923,1,Safari 3,56,2018-11-16 +session,923,2,Safari 26,45,2017-05-28 +session,923,3,Safari 19,73,2016-06-01 +session,923,4,Internet Explorer 43,1,2017-01-02 +session,923,5,Safari 26,91,2016-11-20 +session,923,6,Chrome 6,15,2018-07-28 +session,923,7,Firefox 11,33,2016-12-15 +session,923,8,Firefox 48,104,2018-10-09 +session,923,9,Firefox 47,42,2018-12-18 +user,924,Saundra,Syreeta,22 +session,924,0,Firefox 43,47,2018-02-06 +session,924,1,Safari 29,44,2017-03-10 +session,924,2,Internet Explorer 20,55,2018-10-08 +session,924,3,Safari 41,114,2016-11-15 +session,924,4,Firefox 49,108,2017-02-06 +session,924,5,Safari 30,40,2016-12-04 +session,924,6,Firefox 32,29,2017-06-15 +session,924,7,Firefox 36,24,2017-05-24 +session,924,8,Internet Explorer 12,44,2016-12-14 +user,925,Nathan,Lenna,75 +session,925,0,Chrome 18,4,2017-08-22 +session,925,1,Firefox 39,98,2018-09-29 +session,925,2,Safari 40,100,2016-12-04 +session,925,3,Chrome 47,88,2016-08-18 +session,925,4,Chrome 10,30,2018-03-26 +session,925,5,Safari 45,101,2016-07-21 +session,925,6,Firefox 37,90,2019-01-02 +user,926,Armanda,Jewel,87 +session,926,0,Firefox 4,40,2016-06-27 +session,926,1,Internet Explorer 48,12,2016-07-11 +session,926,2,Chrome 4,22,2018-09-29 +session,926,3,Chrome 34,49,2018-04-30 +session,926,4,Firefox 7,10,2017-02-09 +session,926,5,Firefox 17,84,2017-10-04 +session,926,6,Safari 22,63,2018-08-29 +user,927,Harold,Aliza,75 +session,927,0,Internet Explorer 13,65,2017-05-27 +session,927,1,Internet Explorer 38,18,2017-06-29 +session,927,2,Firefox 49,87,2018-07-03 +user,928,Alfredo,Temika,63 +session,928,0,Chrome 33,79,2018-05-19 +session,928,1,Chrome 6,27,2017-01-06 +session,928,2,Internet Explorer 3,66,2018-07-24 +session,928,3,Firefox 7,21,2017-05-26 +session,928,4,Chrome 20,12,2017-06-01 +user,929,Jose,Zoe,97 +session,929,0,Safari 24,60,2017-10-17 +session,929,1,Chrome 40,29,2018-03-31 +session,929,2,Chrome 6,20,2016-11-19 +session,929,3,Chrome 41,16,2017-03-28 +session,929,4,Chrome 6,23,2018-08-30 +session,929,5,Internet Explorer 27,61,2018-05-14 +session,929,6,Safari 18,3,2018-09-19 +user,930,Sherri,Deedee,39 +session,930,0,Firefox 11,84,2019-01-31 +session,930,1,Chrome 41,0,2018-11-19 +session,930,2,Safari 9,91,2018-02-26 +session,930,3,Firefox 10,49,2017-01-02 +session,930,4,Firefox 4,106,2017-09-27 +session,930,5,Internet Explorer 22,5,2017-06-29 +user,931,Denny,Carissa,45 +session,931,0,Safari 38,116,2018-01-08 +session,931,1,Internet Explorer 47,99,2019-01-25 +user,932,Suzy,Jamel,3 +session,932,0,Firefox 9,89,2018-09-16 +session,932,1,Safari 18,64,2018-05-06 +session,932,2,Internet Explorer 19,71,2018-04-08 +session,932,3,Internet Explorer 40,5,2017-03-06 +session,932,4,Chrome 27,110,2018-07-19 +user,933,Burton,Roxy,93 +session,933,0,Internet Explorer 6,29,2017-11-20 +session,933,1,Chrome 39,7,2017-03-19 +session,933,2,Chrome 46,111,2016-09-07 +user,934,Deon,Maris,75 +session,934,0,Firefox 33,119,2017-03-02 +session,934,1,Internet Explorer 33,72,2017-08-08 +session,934,2,Safari 31,111,2017-09-04 +session,934,3,Safari 25,117,2017-05-22 +session,934,4,Firefox 10,40,2017-10-22 +session,934,5,Safari 15,46,2017-12-29 +user,935,Elias,Ellsworth,95 +session,935,0,Safari 7,103,2016-09-24 +user,936,Paul,Bella,44 +session,936,0,Safari 49,84,2018-03-21 +session,936,1,Firefox 42,105,2017-10-29 +session,936,2,Firefox 19,103,2016-12-02 +user,937,Kasha,Tarsha,4 +session,937,0,Internet Explorer 46,19,2017-09-29 +session,937,1,Firefox 25,14,2018-05-10 +session,937,2,Chrome 35,100,2017-08-03 +session,937,3,Firefox 8,7,2017-12-26 +session,937,4,Firefox 1,92,2017-06-18 +session,937,5,Safari 29,71,2017-04-30 +session,937,6,Internet Explorer 3,92,2017-06-11 +user,938,Shanice,Joan,98 +session,938,0,Safari 15,35,2018-02-27 +session,938,1,Firefox 40,32,2017-10-29 +session,938,2,Internet Explorer 1,80,2016-11-02 +session,938,3,Internet Explorer 9,112,2017-03-01 +session,938,4,Safari 47,17,2018-02-28 +session,938,5,Internet Explorer 16,95,2016-05-23 +session,938,6,Safari 49,72,2018-07-21 +session,938,7,Internet Explorer 28,42,2016-06-25 +user,939,Bertram,Loyd,41 +session,939,0,Safari 24,68,2018-08-28 +user,940,Susann,France,79 +session,940,0,Firefox 1,117,2017-06-20 +session,940,1,Firefox 12,96,2018-01-26 +session,940,2,Safari 27,24,2017-03-19 +session,940,3,Firefox 17,7,2017-01-25 +user,941,Daria,Derick,74 +session,941,0,Firefox 36,114,2017-04-23 +session,941,1,Firefox 42,46,2017-02-10 +user,942,Chet,Scottie,67 +session,942,0,Firefox 47,103,2016-11-30 +session,942,1,Firefox 44,10,2017-05-05 +session,942,2,Firefox 6,90,2018-02-06 +user,943,Giuseppe,Chana,66 +session,943,0,Chrome 19,82,2017-08-14 +session,943,1,Chrome 32,13,2016-08-31 +session,943,2,Safari 6,61,2018-09-29 +user,944,Stephani,Denyse,83 +session,944,0,Firefox 41,33,2017-10-24 +session,944,1,Internet Explorer 42,79,2018-01-22 +session,944,2,Firefox 3,78,2016-08-25 +session,944,3,Chrome 11,46,2016-08-25 +session,944,4,Safari 33,37,2016-08-25 +session,944,5,Firefox 36,113,2018-05-17 +session,944,6,Firefox 49,55,2017-09-12 +session,944,7,Chrome 10,2,2017-12-08 +session,944,8,Safari 22,115,2018-03-31 +user,945,Latisha,Malia,21 +session,945,0,Internet Explorer 17,50,2018-06-16 +session,945,1,Internet Explorer 13,33,2018-05-28 +session,945,2,Safari 30,70,2016-09-10 +session,945,3,Safari 16,4,2016-12-17 +session,945,4,Firefox 46,111,2017-09-16 +session,945,5,Internet Explorer 49,0,2016-10-03 +session,945,6,Firefox 2,50,2018-08-10 +session,945,7,Chrome 26,31,2018-11-16 +session,945,8,Internet Explorer 35,116,2018-12-07 +session,945,9,Safari 12,109,2016-11-26 +user,946,Kurt,Vashti,24 +session,946,0,Safari 26,5,2018-07-05 +session,946,1,Chrome 1,95,2017-12-13 +session,946,2,Safari 10,108,2017-03-31 +session,946,3,Internet Explorer 45,73,2018-02-28 +user,947,Mimi,Asuncion,34 +session,947,0,Safari 35,109,2018-02-10 +session,947,1,Internet Explorer 3,78,2018-12-24 +session,947,2,Safari 50,94,2016-09-16 +session,947,3,Internet Explorer 10,119,2018-12-24 +session,947,4,Chrome 5,52,2017-09-30 +session,947,5,Safari 47,4,2017-09-05 +session,947,6,Internet Explorer 23,43,2018-07-11 +user,948,Sterling,Genevive,72 +session,948,0,Internet Explorer 39,99,2017-02-12 +session,948,1,Chrome 46,10,2018-01-28 +session,948,2,Safari 27,63,2019-01-13 +session,948,3,Internet Explorer 7,57,2017-04-09 +user,949,Loyd,Palmer,89 +session,949,0,Safari 39,27,2016-07-12 +session,949,1,Firefox 39,89,2017-05-24 +session,949,2,Internet Explorer 49,68,2017-01-02 +session,949,3,Firefox 34,49,2017-10-18 +session,949,4,Chrome 6,115,2017-06-03 +session,949,5,Chrome 46,27,2016-10-07 +session,949,6,Safari 39,87,2017-07-24 +session,949,7,Firefox 8,55,2018-09-26 +session,949,8,Chrome 18,11,2016-05-29 +session,949,9,Internet Explorer 6,46,2018-08-14 +user,950,Emmett,Charles,24 +session,950,0,Firefox 32,18,2018-10-27 +session,950,1,Internet Explorer 48,114,2016-08-13 +session,950,2,Internet Explorer 6,66,2017-09-23 +user,951,Teodora,Bruce,76 +session,951,0,Chrome 13,66,2018-11-29 +session,951,1,Firefox 10,100,2018-08-06 +session,951,2,Chrome 2,7,2018-03-20 +session,951,3,Firefox 30,45,2017-11-07 +session,951,4,Firefox 6,59,2018-08-13 +session,951,5,Internet Explorer 50,59,2017-01-14 +session,951,6,Safari 43,91,2018-03-28 +session,951,7,Internet Explorer 26,81,2019-01-12 +session,951,8,Chrome 42,111,2017-07-09 +session,951,9,Firefox 30,41,2018-02-01 +user,952,Micki,Ena,77 +session,952,0,Internet Explorer 30,15,2017-12-15 +user,953,Noble,Brigitte,63 +session,953,0,Safari 28,43,2018-10-07 +session,953,1,Internet Explorer 36,20,2017-08-26 +user,954,Walter,Coralee,53 +session,954,0,Internet Explorer 25,97,2016-08-25 +session,954,1,Internet Explorer 22,13,2017-08-08 +session,954,2,Firefox 43,90,2017-10-28 +user,955,Dannie,Shaneka,74 +session,955,0,Safari 10,62,2016-05-29 +session,955,1,Firefox 50,94,2016-12-19 +session,955,2,Internet Explorer 34,2,2017-05-07 +session,955,3,Chrome 39,62,2018-10-25 +session,955,4,Chrome 30,73,2017-11-08 +session,955,5,Internet Explorer 34,82,2018-12-05 +session,955,6,Firefox 49,32,2016-08-01 +session,955,7,Safari 32,31,2019-02-07 +user,956,Pauline,Lorrie,42 +session,956,0,Firefox 14,28,2017-08-03 +session,956,1,Chrome 9,33,2017-05-03 +session,956,2,Internet Explorer 3,112,2017-07-26 +session,956,3,Chrome 41,32,2017-04-29 +session,956,4,Chrome 44,53,2018-10-15 +session,956,5,Chrome 49,22,2017-09-06 +session,956,6,Chrome 13,92,2016-09-10 +user,957,Carly,Gertrudis,24 +session,957,0,Chrome 6,8,2018-11-08 +user,958,Earle,Tobi,63 +session,958,0,Safari 3,14,2018-11-27 +user,959,Luther,Olive,42 +session,959,0,Firefox 23,42,2018-11-03 +session,959,1,Internet Explorer 14,16,2017-05-07 +session,959,2,Internet Explorer 45,119,2018-01-26 +session,959,3,Safari 14,14,2017-04-28 +session,959,4,Safari 50,89,2017-07-03 +session,959,5,Safari 14,99,2018-01-17 +user,960,Barney,Carolyne,67 +session,960,0,Safari 30,34,2016-10-13 +session,960,1,Chrome 31,46,2018-04-24 +session,960,2,Chrome 23,98,2017-08-22 +session,960,3,Safari 41,99,2018-08-14 +session,960,4,Chrome 29,57,2018-09-18 +session,960,5,Safari 18,10,2018-02-12 +session,960,6,Safari 8,68,2016-10-14 +user,961,Fred,Kenna,98 +session,961,0,Safari 30,35,2017-10-03 +session,961,1,Chrome 24,29,2017-09-17 +session,961,2,Safari 50,30,2017-06-28 +user,962,Boyd,Hyacinth,62 +session,962,0,Safari 31,100,2016-06-10 +session,962,1,Safari 15,23,2018-06-27 +session,962,2,Firefox 46,37,2018-05-30 +session,962,3,Safari 23,45,2018-10-26 +session,962,4,Internet Explorer 35,90,2017-11-01 +session,962,5,Internet Explorer 9,117,2017-06-20 +session,962,6,Safari 19,25,2016-11-08 +session,962,7,Safari 23,76,2018-04-24 +session,962,8,Safari 47,55,2018-02-19 +user,963,Grover,Lelia,46 +session,963,0,Chrome 44,80,2017-06-27 +session,963,1,Internet Explorer 18,57,2017-12-16 +session,963,2,Firefox 6,118,2016-10-13 +session,963,3,Firefox 46,74,2019-01-14 +session,963,4,Chrome 25,98,2018-12-25 +session,963,5,Safari 4,26,2018-12-16 +session,963,6,Chrome 32,71,2018-10-13 +user,964,Kisha,Sabine,54 +session,964,0,Safari 7,69,2018-10-08 +session,964,1,Internet Explorer 4,105,2018-08-15 +session,964,2,Safari 43,64,2016-10-05 +user,965,Lissette,Lakendra,41 +session,965,0,Chrome 38,98,2018-11-10 +user,966,Adolfo,Evita,30 +session,966,0,Internet Explorer 36,80,2018-02-11 +session,966,1,Chrome 26,45,2016-08-07 +session,966,2,Internet Explorer 23,3,2019-01-24 +session,966,3,Firefox 43,24,2018-04-23 +session,966,4,Chrome 28,90,2016-12-29 +session,966,5,Chrome 11,18,2017-01-18 +session,966,6,Firefox 38,74,2016-09-28 +session,966,7,Internet Explorer 8,28,2018-11-02 +session,966,8,Safari 8,51,2017-04-03 +session,966,9,Safari 24,101,2018-08-27 +user,967,Belia,Lilly,18 +session,967,0,Safari 33,66,2016-06-19 +session,967,1,Firefox 42,44,2016-12-09 +session,967,2,Firefox 10,73,2018-03-11 +session,967,3,Chrome 12,47,2019-02-12 +session,967,4,Safari 35,98,2016-09-12 +session,967,5,Safari 41,61,2016-06-18 +session,967,6,Chrome 11,82,2017-11-19 +session,967,7,Internet Explorer 10,43,2017-11-15 +user,968,Pandora,Marlena,36 +session,968,0,Safari 16,5,2018-03-06 +session,968,1,Chrome 39,37,2018-09-19 +session,968,2,Internet Explorer 11,70,2017-10-14 +session,968,3,Safari 1,23,2018-03-21 +session,968,4,Firefox 22,112,2017-03-16 +user,969,Marlin,Pedro,10 +session,969,0,Internet Explorer 42,54,2017-04-21 +session,969,1,Firefox 7,78,2018-11-27 +session,969,2,Firefox 48,36,2017-06-24 +session,969,3,Internet Explorer 23,114,2018-08-27 +user,970,Adaline,Vilma,27 +session,970,0,Internet Explorer 41,3,2016-11-22 +session,970,1,Chrome 9,5,2017-09-08 +session,970,2,Safari 36,11,2018-03-12 +session,970,3,Firefox 2,17,2018-05-07 +session,970,4,Internet Explorer 33,8,2018-05-17 +session,970,5,Internet Explorer 46,49,2018-02-18 +session,970,6,Chrome 50,3,2016-06-29 +session,970,7,Chrome 37,12,2016-12-30 +user,971,Wilfred,Reatha,93 +session,971,0,Firefox 39,80,2016-06-29 +session,971,1,Firefox 34,82,2019-02-04 +session,971,2,Firefox 47,32,2018-06-23 +session,971,3,Internet Explorer 49,48,2017-09-22 +session,971,4,Chrome 37,67,2018-03-09 +session,971,5,Safari 47,83,2016-11-10 +session,971,6,Safari 17,66,2017-12-16 +session,971,7,Chrome 8,29,2017-02-24 +user,972,Connie,Norine,2 +session,972,0,Safari 9,22,2018-03-23 +session,972,1,Safari 42,9,2016-08-21 +user,973,Hank,Zetta,62 +session,973,0,Internet Explorer 16,40,2019-02-06 +user,974,Malcolm,Georgianne,21 +session,974,0,Chrome 35,58,2016-05-28 +session,974,1,Safari 44,118,2017-06-29 +session,974,2,Safari 46,96,2019-02-06 +session,974,3,Firefox 29,26,2018-04-05 +session,974,4,Internet Explorer 43,92,2017-04-30 +session,974,5,Internet Explorer 27,2,2016-08-12 +session,974,6,Internet Explorer 13,80,2016-06-14 +session,974,7,Chrome 12,61,2018-02-21 +session,974,8,Firefox 39,101,2017-01-08 +user,975,Toby,Angelina,88 +session,975,0,Firefox 27,56,2018-09-20 +session,975,1,Firefox 31,4,2016-06-23 +session,975,2,Internet Explorer 34,65,2018-03-18 +session,975,3,Firefox 33,17,2017-09-09 +session,975,4,Internet Explorer 2,89,2018-06-16 +user,976,Ellamae,Nereida,44 +session,976,0,Firefox 4,3,2017-08-30 +session,976,1,Firefox 46,56,2016-12-17 +session,976,2,Firefox 19,84,2017-04-07 +session,976,3,Safari 39,113,2018-12-21 +session,976,4,Firefox 22,71,2017-09-10 +session,976,5,Chrome 32,100,2018-11-02 +session,976,6,Internet Explorer 9,35,2018-10-21 +session,976,7,Internet Explorer 38,1,2017-07-08 +session,976,8,Chrome 2,3,2019-02-02 +session,976,9,Firefox 38,60,2018-02-14 +user,977,Frank,Shu,71 +session,977,0,Safari 49,81,2018-08-10 +session,977,1,Safari 28,96,2016-06-25 +session,977,2,Internet Explorer 41,22,2016-12-29 +session,977,3,Chrome 15,9,2018-02-28 +session,977,4,Firefox 8,53,2019-01-15 +session,977,5,Internet Explorer 36,82,2017-04-21 +user,978,Lettie,Dani,46 +session,978,0,Firefox 47,93,2017-12-06 +session,978,1,Safari 4,36,2018-10-15 +session,978,2,Internet Explorer 3,5,2018-03-03 +session,978,3,Safari 7,15,2018-06-11 +user,979,Juliette,Thanh,71 +session,979,0,Internet Explorer 11,83,2017-12-15 +session,979,1,Internet Explorer 35,2,2017-11-06 +session,979,2,Internet Explorer 44,112,2016-07-19 +session,979,3,Internet Explorer 11,5,2018-02-05 +user,980,Major,Felisa,27 +session,980,0,Firefox 48,81,2018-10-23 +session,980,1,Chrome 22,16,2019-01-02 +session,980,2,Safari 16,21,2017-03-03 +session,980,3,Firefox 43,97,2018-03-31 +session,980,4,Chrome 10,77,2018-01-24 +session,980,5,Chrome 47,33,2018-07-16 +session,980,6,Chrome 33,119,2019-01-27 +user,981,Alva,Audie,29 +session,981,0,Safari 36,83,2018-05-30 +session,981,1,Safari 33,33,2017-01-28 +session,981,2,Firefox 3,66,2017-11-17 +session,981,3,Safari 19,43,2017-10-06 +session,981,4,Internet Explorer 23,84,2016-10-25 +session,981,5,Safari 28,26,2016-11-19 +session,981,6,Internet Explorer 44,22,2018-07-16 +user,982,Jere,Lashanda,46 +session,982,0,Firefox 1,82,2018-12-07 +session,982,1,Chrome 15,74,2018-07-22 +session,982,2,Firefox 24,83,2016-10-08 +session,982,3,Internet Explorer 49,5,2018-02-05 +session,982,4,Safari 40,66,2017-01-05 +session,982,5,Safari 12,39,2018-11-30 +session,982,6,Safari 45,79,2017-01-20 +session,982,7,Safari 23,76,2016-07-22 +session,982,8,Chrome 37,1,2016-12-27 +user,983,Elliot,Sylvia,33 +session,983,0,Chrome 22,104,2017-03-21 +session,983,1,Firefox 23,9,2018-07-29 +session,983,2,Chrome 28,98,2017-08-10 +session,983,3,Safari 42,86,2018-02-27 +session,983,4,Firefox 32,28,2017-09-26 +session,983,5,Chrome 5,73,2017-05-04 +session,983,6,Chrome 6,65,2019-01-19 +user,984,Leopoldo,Alvaro,55 +session,984,0,Chrome 16,7,2018-06-23 +session,984,1,Firefox 8,101,2017-09-18 +session,984,2,Internet Explorer 9,98,2018-10-26 +user,985,Ronald,Berniece,70 +session,985,0,Chrome 21,116,2017-07-05 +session,985,1,Chrome 6,1,2019-01-17 +session,985,2,Safari 19,20,2016-07-19 +session,985,3,Firefox 12,87,2018-08-28 +session,985,4,Internet Explorer 10,94,2017-03-15 +session,985,5,Firefox 2,45,2018-12-15 +session,985,6,Firefox 10,100,2018-09-22 +session,985,7,Internet Explorer 25,78,2017-07-26 +user,986,Luigi,Lakisha,40 +session,986,0,Chrome 17,10,2017-07-18 +session,986,1,Internet Explorer 29,31,2016-10-02 +session,986,2,Safari 28,65,2016-08-04 +session,986,3,Firefox 38,118,2016-09-25 +session,986,4,Safari 44,53,2018-05-28 +session,986,5,Firefox 14,45,2018-08-09 +session,986,6,Firefox 35,68,2018-09-17 +session,986,7,Chrome 4,79,2018-09-29 +user,987,Kanisha,Karyl,69 +session,987,0,Chrome 39,79,2017-12-24 +session,987,1,Safari 12,114,2016-10-04 +session,987,2,Firefox 13,62,2016-06-17 +session,987,3,Internet Explorer 33,23,2018-01-27 +session,987,4,Firefox 18,2,2018-06-29 +session,987,5,Internet Explorer 48,101,2018-03-22 +user,988,Marvin,Ebony,34 +session,988,0,Firefox 42,81,2018-12-02 +session,988,1,Internet Explorer 39,32,2019-01-04 +session,988,2,Internet Explorer 44,64,2017-12-04 +session,988,3,Safari 2,2,2017-01-11 +session,988,4,Firefox 15,119,2017-06-14 +user,989,Casimira,Terina,82 +session,989,0,Firefox 1,46,2016-07-06 +session,989,1,Internet Explorer 8,47,2016-06-17 +session,989,2,Chrome 32,1,2018-01-09 +session,989,3,Safari 40,119,2018-01-04 +session,989,4,Internet Explorer 17,59,2018-10-01 +session,989,5,Firefox 29,106,2017-04-19 +session,989,6,Chrome 37,72,2017-09-09 +session,989,7,Safari 13,8,2016-08-08 +session,989,8,Firefox 43,39,2018-07-01 +user,990,Tory,Ashlyn,52 +session,990,0,Safari 5,111,2018-08-31 +user,991,Zane,Love,42 +session,991,0,Safari 12,42,2017-01-24 +session,991,1,Internet Explorer 27,9,2017-09-27 +session,991,2,Firefox 41,112,2018-05-31 +session,991,3,Internet Explorer 4,57,2018-05-28 +user,992,Ron,Terrence,20 +session,992,0,Chrome 1,7,2018-01-21 +session,992,1,Chrome 42,60,2018-09-27 +session,992,2,Safari 46,0,2018-05-27 +session,992,3,Safari 42,99,2016-06-19 +session,992,4,Internet Explorer 31,81,2018-06-20 +session,992,5,Safari 19,109,2018-10-15 +session,992,6,Internet Explorer 38,26,2017-11-05 +session,992,7,Chrome 5,16,2016-08-05 +session,992,8,Safari 40,84,2017-10-24 +session,992,9,Chrome 19,20,2016-08-09 +user,993,Tawana,Tula,86 +session,993,0,Safari 44,92,2018-12-20 +session,993,1,Safari 36,29,2017-05-19 +session,993,2,Chrome 35,74,2018-07-28 +session,993,3,Internet Explorer 41,69,2018-12-31 +session,993,4,Chrome 22,30,2017-05-06 +session,993,5,Internet Explorer 4,104,2018-12-31 +session,993,6,Internet Explorer 24,54,2017-02-12 +session,993,7,Firefox 33,42,2017-07-14 +user,994,Lorna,Matthew,39 +session,994,0,Firefox 47,87,2016-10-27 +session,994,1,Firefox 11,95,2018-03-14 +session,994,2,Internet Explorer 34,46,2016-08-30 +user,995,Emeline,Lia,10 +session,995,0,Internet Explorer 49,61,2018-12-22 +session,995,1,Chrome 36,18,2017-10-29 +session,995,2,Internet Explorer 11,5,2018-06-18 +session,995,3,Safari 5,105,2016-12-17 +session,995,4,Firefox 27,119,2016-12-10 +user,996,Nathaniel,Herb,71 +session,996,0,Chrome 11,13,2017-04-29 +session,996,1,Safari 37,107,2017-03-23 +session,996,2,Firefox 26,118,2018-03-31 +session,996,3,Firefox 15,113,2017-07-02 +session,996,4,Safari 27,4,2017-09-19 +session,996,5,Chrome 25,83,2016-07-16 +session,996,6,Firefox 44,40,2018-10-23 +user,997,Domingo,Tracey,4 +session,997,0,Safari 27,76,2018-08-10 +session,997,1,Firefox 8,26,2018-07-06 +user,998,Gayle,Nedra,82 +session,998,0,Chrome 16,52,2016-09-29 +session,998,1,Chrome 14,82,2017-06-27 +session,998,2,Safari 11,24,2016-12-28 +user,999,Shea,Latosha,46 +session,999,0,Internet Explorer 49,20,2016-10-20 +session,999,1,Chrome 45,94,2016-11-17 +session,999,2,Firefox 19,23,2016-08-06 +session,999,3,Safari 12,55,2016-07-25 +session,999,4,Internet Explorer 1,32,2018-06-11 +user,1000,Alline,Natividad,46 +session,1000,0,Internet Explorer 36,26,2017-08-20 +session,1000,1,Internet Explorer 32,29,2017-08-18 +user,1001,Parthenia,Travis,59 +session,1001,0,Firefox 46,45,2017-06-17 +session,1001,1,Internet Explorer 48,52,2018-11-13 +session,1001,2,Safari 27,15,2018-07-12 +user,1002,Troy,Shannon,71 +session,1002,0,Internet Explorer 28,100,2018-07-29 +session,1002,1,Internet Explorer 30,6,2018-07-23 +session,1002,2,Safari 35,93,2016-11-04 +session,1002,3,Safari 24,14,2016-07-16 +session,1002,4,Chrome 10,92,2016-07-11 +session,1002,5,Safari 44,3,2018-09-16 +session,1002,6,Chrome 20,14,2017-01-24 +session,1002,7,Chrome 4,11,2018-11-06 +session,1002,8,Firefox 29,21,2017-02-14 +session,1002,9,Chrome 29,27,2016-11-08 +user,1003,Hanna,Willis,91 +session,1003,0,Internet Explorer 46,85,2018-10-28 +session,1003,1,Safari 31,51,2016-10-07 +session,1003,2,Safari 19,60,2017-08-05 +session,1003,3,Firefox 34,90,2016-09-13 +session,1003,4,Firefox 8,54,2018-05-13 +session,1003,5,Safari 5,24,2017-05-08 +session,1003,6,Chrome 26,68,2018-11-15 +session,1003,7,Internet Explorer 40,82,2017-04-17 +session,1003,8,Safari 21,12,2017-08-22 +session,1003,9,Safari 13,45,2018-09-17 +user,1004,Timothy,Demetrius,5 +session,1004,0,Internet Explorer 20,105,2018-03-07 +session,1004,1,Chrome 5,61,2018-12-22 +session,1004,2,Safari 49,97,2017-11-22 +session,1004,3,Firefox 16,56,2017-09-28 +session,1004,4,Safari 17,60,2018-10-05 +session,1004,5,Safari 30,114,2016-08-08 +session,1004,6,Firefox 33,42,2018-01-01 +session,1004,7,Chrome 25,101,2017-03-08 +session,1004,8,Chrome 34,28,2017-10-03 +user,1005,Sanford,Deann,57 +session,1005,0,Safari 32,61,2018-02-12 +session,1005,1,Safari 33,48,2018-06-08 +session,1005,2,Safari 49,27,2018-07-23 +user,1006,Carisa,Cesar,76 +session,1006,0,Firefox 30,93,2018-03-28 +session,1006,1,Firefox 27,27,2016-09-04 +session,1006,2,Firefox 25,93,2017-11-10 +session,1006,3,Chrome 26,16,2017-06-19 +session,1006,4,Firefox 35,32,2018-05-11 +session,1006,5,Firefox 19,42,2018-02-16 +session,1006,6,Safari 31,66,2018-05-19 +user,1007,Jared,Svetlana,20 +session,1007,0,Internet Explorer 34,75,2016-07-28 +session,1007,1,Firefox 20,59,2018-06-20 +session,1007,2,Chrome 22,68,2017-10-16 +user,1008,Alton,Brigid,11 +session,1008,0,Chrome 28,94,2016-10-12 +session,1008,1,Internet Explorer 21,116,2018-05-19 +session,1008,2,Safari 26,65,2018-05-04 +session,1008,3,Internet Explorer 19,5,2017-08-05 +session,1008,4,Chrome 40,76,2018-08-17 +session,1008,5,Safari 26,76,2017-08-27 +session,1008,6,Internet Explorer 48,53,2017-07-21 +session,1008,7,Safari 20,112,2017-03-19 diff --git a/spec/support/data_65kb.txt b/spec/support/data_65kb.txt new file mode 100644 index 0000000..8721e50 --- /dev/null +++ b/spec/support/data_65kb.txt @@ -0,0 +1,1646 @@ +user,0,Hazel,Margarete,19 +session,0,0,Internet Explorer 50,81,2018-02-01 +session,0,1,Safari 27,88,2017-10-28 +session,0,2,Firefox 13,92,2016-11-02 +session,0,3,Internet Explorer 40,37,2017-05-31 +session,0,4,Internet Explorer 16,37,2017-11-21 +session,0,5,Safari 19,22,2017-11-30 +session,0,6,Chrome 31,74,2016-08-22 +session,0,7,Firefox 46,76,2019-02-04 +user,1,Wilfredo,Louetta,40 +session,1,0,Firefox 38,68,2018-04-24 +session,1,1,Internet Explorer 41,27,2016-09-06 +session,1,2,Internet Explorer 1,74,2017-01-05 +session,1,3,Firefox 47,28,2017-06-09 +session,1,4,Internet Explorer 22,98,2016-11-03 +user,2,Cecil,Rosalba,44 +session,2,0,Safari 26,96,2018-08-20 +session,2,1,Internet Explorer 10,3,2019-01-03 +session,2,2,Internet Explorer 47,52,2016-07-31 +session,2,3,Safari 34,37,2017-09-14 +session,2,4,Internet Explorer 17,22,2016-07-10 +session,2,5,Firefox 26,76,2017-02-06 +session,2,6,Chrome 14,88,2017-02-19 +session,2,7,Safari 31,113,2018-04-12 +session,2,8,Chrome 20,72,2016-09-04 +session,2,9,Safari 13,14,2017-07-26 +user,3,Kieth,Noble,20 +session,3,0,Safari 23,1,2018-02-19 +session,3,1,Internet Explorer 24,92,2018-05-15 +session,3,2,Chrome 6,91,2017-01-06 +session,3,3,Internet Explorer 47,7,2016-09-01 +session,3,4,Firefox 4,20,2017-03-22 +session,3,5,Internet Explorer 23,17,2016-12-02 +session,3,6,Internet Explorer 5,91,2017-12-29 +session,3,7,Internet Explorer 23,2,2017-03-17 +user,4,Corie,Erika,32 +session,4,0,Chrome 11,49,2019-02-05 +session,4,1,Safari 44,18,2017-09-01 +session,4,2,Firefox 32,88,2017-06-01 +session,4,3,Chrome 28,82,2018-03-18 +session,4,4,Firefox 38,36,2018-06-11 +session,4,5,Safari 14,11,2017-04-06 +session,4,6,Safari 27,116,2017-05-30 +session,4,7,Safari 24,36,2018-06-12 +session,4,8,Firefox 3,28,2018-01-05 +user,5,Lou,Lean,39 +session,5,0,Internet Explorer 42,74,2017-08-20 +session,5,1,Internet Explorer 1,80,2018-11-22 +session,5,2,Chrome 18,105,2018-01-17 +user,6,Deedra,Minta,44 +session,6,0,Firefox 32,27,2017-07-07 +session,6,1,Firefox 45,48,2017-07-22 +session,6,2,Safari 33,55,2018-07-09 +session,6,3,Safari 1,14,2016-11-08 +session,6,4,Firefox 39,18,2017-02-06 +session,6,5,Safari 12,52,2016-07-18 +session,6,6,Firefox 18,84,2016-08-16 +session,6,7,Chrome 2,114,2016-10-18 +user,7,Loria,Vernetta,68 +session,7,0,Safari 14,51,2019-01-25 +session,7,1,Internet Explorer 29,88,2016-10-12 +session,7,2,Firefox 32,55,2016-11-15 +session,7,3,Safari 4,20,2016-11-19 +session,7,4,Chrome 42,95,2018-02-10 +session,7,5,Safari 36,88,2018-03-30 +session,7,6,Safari 7,74,2017-05-27 +session,7,7,Safari 18,67,2017-02-22 +session,7,8,Chrome 24,26,2018-11-01 +user,8,Abdul,Venessa,55 +session,8,0,Internet Explorer 1,60,2018-12-02 +session,8,1,Chrome 3,63,2016-10-02 +session,8,2,Safari 41,99,2017-01-12 +session,8,3,Firefox 13,69,2017-04-17 +session,8,4,Safari 31,115,2018-04-08 +session,8,5,Chrome 30,77,2019-01-28 +session,8,6,Safari 43,56,2017-05-07 +user,9,Brooks,Janae,6 +session,9,0,Internet Explorer 36,11,2018-08-11 +user,10,Rey,Coy,95 +session,10,0,Internet Explorer 27,115,2017-08-05 +session,10,1,Internet Explorer 21,119,2018-11-15 +session,10,2,Internet Explorer 2,0,2016-06-10 +session,10,3,Safari 13,44,2018-04-07 +session,10,4,Firefox 37,26,2018-05-04 +user,11,Cyrus,Danyel,41 +session,11,0,Firefox 34,118,2016-10-14 +session,11,1,Internet Explorer 34,45,2017-10-10 +session,11,2,Internet Explorer 38,70,2017-07-10 +user,12,Valentin,Emilio,21 +session,12,0,Chrome 13,28,2018-04-23 +session,12,1,Firefox 35,17,2018-11-29 +session,12,2,Firefox 19,68,2018-05-03 +session,12,3,Internet Explorer 14,2,2016-09-18 +session,12,4,Firefox 15,97,2018-04-15 +session,12,5,Safari 26,40,2016-06-13 +user,13,Mitchell,Hobert,78 +session,13,0,Internet Explorer 32,89,2019-02-07 +session,13,1,Firefox 17,0,2017-11-05 +session,13,2,Chrome 17,117,2018-12-12 +session,13,3,Firefox 28,3,2016-12-01 +session,13,4,Firefox 9,26,2018-08-05 +session,13,5,Safari 27,113,2017-09-02 +session,13,6,Internet Explorer 20,92,2018-08-17 +session,13,7,Safari 11,103,2016-11-11 +session,13,8,Safari 36,26,2018-06-18 +session,13,9,Internet Explorer 22,33,2018-07-15 +user,14,Yuonne,Nicholle,52 +session,14,0,Safari 45,112,2018-01-23 +session,14,1,Firefox 50,54,2017-08-13 +session,14,2,Chrome 21,53,2018-10-08 +session,14,3,Firefox 24,30,2018-12-25 +session,14,4,Chrome 26,117,2017-09-09 +session,14,5,Chrome 16,38,2019-01-29 +session,14,6,Chrome 48,72,2016-08-12 +session,14,7,Safari 23,36,2016-10-05 +session,14,8,Firefox 12,45,2018-05-17 +user,15,Marlene,Ling,76 +session,15,0,Chrome 50,60,2018-06-29 +user,16,Salina,Eddie,27 +session,16,0,Internet Explorer 26,10,2018-01-10 +session,16,1,Chrome 23,13,2017-01-04 +user,17,Ernestine,Clifton,6 +session,17,0,Chrome 13,28,2016-12-05 +session,17,1,Chrome 10,97,2017-11-13 +session,17,2,Safari 34,39,2017-08-24 +session,17,3,Safari 48,27,2018-03-27 +session,17,4,Internet Explorer 32,76,2016-10-22 +session,17,5,Firefox 42,106,2016-12-23 +session,17,6,Chrome 13,72,2018-01-08 +session,17,7,Chrome 24,37,2017-12-21 +user,18,Homer,Odelia,62 +session,18,0,Safari 10,3,2018-01-19 +session,18,1,Internet Explorer 25,81,2017-11-21 +session,18,2,Firefox 4,110,2017-05-17 +session,18,3,Firefox 12,92,2018-01-15 +session,18,4,Safari 43,88,2017-02-04 +session,18,5,Internet Explorer 42,19,2018-06-30 +session,18,6,Firefox 17,47,2016-09-10 +user,19,Jean,Gregg,96 +session,19,0,Internet Explorer 49,12,2016-10-19 +session,19,1,Firefox 36,56,2018-04-20 +session,19,2,Internet Explorer 32,3,2018-01-02 +session,19,3,Internet Explorer 20,85,2018-03-12 +session,19,4,Internet Explorer 21,21,2017-01-10 +session,19,5,Firefox 46,99,2017-08-19 +user,20,Jacinta,Erinn,34 +session,20,0,Chrome 44,49,2018-01-29 +session,20,1,Internet Explorer 33,90,2017-11-02 +session,20,2,Safari 22,44,2018-10-14 +session,20,3,Firefox 39,32,2019-01-07 +user,21,Melita,Mika,45 +session,21,0,Firefox 30,1,2016-08-03 +session,21,1,Safari 48,64,2017-05-10 +session,21,2,Chrome 40,61,2018-10-07 +session,21,3,Safari 37,0,2018-05-09 +session,21,4,Chrome 12,98,2017-02-24 +user,22,Matthew,Lucretia,23 +session,22,0,Internet Explorer 23,86,2017-08-02 +user,23,Maurice,Paz,38 +session,23,0,Internet Explorer 2,51,2017-09-28 +session,23,1,Internet Explorer 11,60,2016-08-02 +session,23,2,Firefox 31,32,2017-04-30 +user,24,Jessica,Brandi,8 +session,24,0,Chrome 12,111,2017-09-18 +user,25,Marget,Ming,58 +session,25,0,Chrome 31,51,2018-05-18 +session,25,1,Safari 9,63,2016-12-20 +session,25,2,Firefox 48,75,2018-03-26 +session,25,3,Firefox 16,51,2017-09-02 +user,26,Audria,Roselyn,85 +session,26,0,Firefox 22,84,2018-02-13 +session,26,1,Safari 14,52,2017-03-17 +session,26,2,Firefox 36,96,2016-11-12 +session,26,3,Firefox 6,16,2017-12-08 +user,27,Leilani,Ines,86 +session,27,0,Firefox 29,91,2016-10-03 +session,27,1,Chrome 44,66,2016-05-27 +session,27,2,Safari 9,90,2017-08-28 +user,28,Philip,Daysi,2 +session,28,0,Internet Explorer 23,27,2018-09-21 +session,28,1,Safari 4,116,2018-09-19 +user,29,Delmar,Otilia,44 +session,29,0,Safari 17,0,2016-08-02 +session,29,1,Internet Explorer 39,101,2017-04-21 +session,29,2,Internet Explorer 8,0,2016-10-19 +session,29,3,Internet Explorer 20,36,2017-02-05 +session,29,4,Internet Explorer 25,73,2018-07-31 +session,29,5,Chrome 18,49,2017-12-14 +session,29,6,Firefox 24,81,2018-09-06 +user,30,Newton,Brianna,34 +session,30,0,Chrome 38,110,2016-11-21 +session,30,1,Firefox 34,47,2017-08-27 +session,30,2,Internet Explorer 27,74,2017-07-13 +session,30,3,Internet Explorer 29,118,2018-03-14 +session,30,4,Chrome 16,24,2017-02-11 +session,30,5,Firefox 37,85,2019-01-26 +session,30,6,Firefox 34,22,2016-10-19 +session,30,7,Firefox 14,14,2018-04-11 +session,30,8,Firefox 27,33,2017-12-07 +user,31,Sherman,Pearly,65 +session,31,0,Firefox 5,113,2016-05-22 +session,31,1,Safari 1,50,2018-08-06 +session,31,2,Internet Explorer 6,29,2016-06-13 +session,31,3,Internet Explorer 48,103,2017-12-15 +session,31,4,Firefox 32,106,2018-07-26 +session,31,5,Safari 27,105,2016-12-08 +session,31,6,Safari 5,44,2016-09-19 +session,31,7,Safari 41,21,2017-02-19 +session,31,8,Firefox 22,66,2017-11-17 +user,32,Steve,Esmeralda,73 +session,32,0,Chrome 41,64,2018-07-13 +session,32,1,Firefox 11,50,2016-12-18 +session,32,2,Firefox 38,90,2018-12-26 +session,32,3,Firefox 41,114,2018-04-01 +session,32,4,Safari 49,22,2018-05-28 +session,32,5,Firefox 12,72,2017-09-12 +user,33,Young,Todd,59 +session,33,0,Chrome 10,59,2016-12-28 +session,33,1,Internet Explorer 28,92,2018-06-14 +session,33,2,Chrome 28,29,2017-04-28 +session,33,3,Firefox 1,52,2018-04-25 +session,33,4,Safari 46,25,2017-09-20 +session,33,5,Safari 32,57,2016-10-07 +user,34,Wen,Sherill,39 +session,34,0,Internet Explorer 18,92,2016-09-05 +session,34,1,Firefox 16,95,2017-08-27 +user,35,Margarita,Aileen,78 +session,35,0,Chrome 9,72,2018-02-27 +session,35,1,Firefox 27,18,2018-05-23 +session,35,2,Firefox 42,113,2016-07-22 +session,35,3,Safari 5,27,2018-09-14 +session,35,4,Chrome 49,17,2018-10-24 +session,35,5,Internet Explorer 17,75,2017-08-27 +session,35,6,Internet Explorer 46,49,2016-09-12 +user,36,Rich,Maddie,58 +session,36,0,Chrome 37,36,2016-08-22 +session,36,1,Chrome 21,81,2016-05-31 +session,36,2,Safari 38,71,2018-10-04 +user,37,Marcie,Modesto,76 +session,37,0,Internet Explorer 37,45,2017-01-06 +session,37,1,Chrome 27,58,2018-04-14 +session,37,2,Safari 43,108,2018-04-05 +session,37,3,Firefox 29,67,2016-12-09 +session,37,4,Firefox 43,90,2016-10-24 +session,37,5,Firefox 24,90,2017-04-30 +session,37,6,Chrome 3,104,2016-12-20 +session,37,7,Firefox 47,106,2017-06-15 +user,38,Amparo,Elvis,71 +session,38,0,Safari 9,74,2017-12-08 +session,38,1,Chrome 50,103,2016-05-30 +session,38,2,Internet Explorer 23,84,2018-06-21 +session,38,3,Chrome 6,67,2018-04-15 +session,38,4,Chrome 26,99,2017-10-19 +session,38,5,Chrome 36,73,2016-11-20 +session,38,6,Chrome 28,1,2018-01-26 +session,38,7,Chrome 38,21,2017-02-26 +user,39,Bailey,Brittanie,58 +session,39,0,Firefox 31,52,2018-12-19 +session,39,1,Safari 12,15,2017-10-16 +session,39,2,Safari 28,14,2016-11-08 +session,39,3,Chrome 50,60,2017-07-02 +user,40,Tawanda,Georgeann,70 +session,40,0,Safari 21,51,2018-05-02 +session,40,1,Firefox 34,85,2017-11-25 +session,40,2,Firefox 31,0,2017-08-11 +session,40,3,Internet Explorer 31,88,2018-01-06 +user,41,Jonnie,Louise,57 +session,41,0,Internet Explorer 16,7,2018-12-07 +session,41,1,Chrome 41,74,2019-02-03 +session,41,2,Safari 11,98,2018-11-28 +session,41,3,Firefox 16,7,2018-03-17 +session,41,4,Chrome 49,99,2018-10-10 +session,41,5,Firefox 46,18,2018-01-04 +session,41,6,Safari 6,54,2017-03-02 +session,41,7,Chrome 2,113,2016-08-18 +session,41,8,Safari 6,54,2019-02-11 +session,41,9,Firefox 46,40,2016-05-22 +user,42,Jamar,Annita,17 +session,42,0,Safari 8,82,2018-04-28 +session,42,1,Chrome 41,82,2016-05-28 +session,42,2,Firefox 47,35,2018-08-09 +user,43,Kurt,Camie,33 +session,43,0,Internet Explorer 16,90,2018-07-22 +session,43,1,Firefox 46,16,2017-07-23 +session,43,2,Safari 47,19,2016-09-26 +user,44,Gail,Morgan,79 +session,44,0,Safari 46,101,2018-10-31 +session,44,1,Firefox 49,42,2017-05-31 +session,44,2,Safari 50,61,2018-10-24 +session,44,3,Chrome 23,89,2016-07-29 +user,45,Trenton,Carlee,6 +session,45,0,Internet Explorer 27,70,2017-06-05 +session,45,1,Chrome 1,36,2017-05-04 +session,45,2,Firefox 5,29,2018-08-30 +session,45,3,Internet Explorer 38,81,2018-08-27 +session,45,4,Chrome 50,21,2017-01-21 +session,45,5,Internet Explorer 5,29,2017-12-14 +session,45,6,Firefox 42,102,2017-05-16 +session,45,7,Chrome 44,101,2017-12-31 +session,45,8,Internet Explorer 45,17,2019-02-08 +user,46,Ailene,Melba,3 +session,46,0,Chrome 8,73,2019-01-27 +session,46,1,Safari 43,6,2016-10-21 +session,46,2,Firefox 35,22,2018-09-01 +session,46,3,Firefox 29,19,2016-09-26 +session,46,4,Firefox 45,118,2017-01-11 +session,46,5,Chrome 38,47,2017-04-18 +session,46,6,Safari 40,100,2016-10-28 +user,47,Mohamed,Lorina,58 +session,47,0,Safari 48,75,2016-08-03 +session,47,1,Internet Explorer 27,18,2018-12-10 +session,47,2,Internet Explorer 39,117,2017-01-30 +session,47,3,Internet Explorer 42,90,2017-02-21 +session,47,4,Safari 47,15,2016-12-24 +session,47,5,Internet Explorer 38,59,2018-09-27 +session,47,6,Safari 6,4,2016-10-13 +user,48,Abbie,Young,83 +session,48,0,Safari 1,46,2017-08-17 +session,48,1,Firefox 8,4,2017-01-15 +session,48,2,Firefox 15,1,2018-09-06 +session,48,3,Chrome 4,46,2018-11-27 +session,48,4,Firefox 11,36,2016-11-29 +session,48,5,Chrome 34,67,2018-08-28 +session,48,6,Internet Explorer 50,27,2016-09-23 +user,49,Coleman,Mardell,78 +session,49,0,Chrome 32,46,2018-08-03 +session,49,1,Firefox 15,73,2018-10-24 +session,49,2,Safari 34,67,2016-07-16 +session,49,3,Safari 39,6,2019-02-04 +session,49,4,Firefox 37,31,2018-08-28 +session,49,5,Firefox 33,103,2016-09-25 +session,49,6,Chrome 12,68,2016-06-15 +user,50,Edwin,Joseph,20 +session,50,0,Safari 37,55,2017-10-04 +session,50,1,Safari 21,111,2018-04-27 +user,51,Sonya,Gay,42 +session,51,0,Chrome 34,107,2017-05-31 +session,51,1,Internet Explorer 32,1,2016-11-07 +session,51,2,Chrome 38,109,2018-07-02 +session,51,3,Internet Explorer 41,86,2017-08-08 +session,51,4,Internet Explorer 32,26,2016-09-17 +session,51,5,Firefox 10,52,2016-05-24 +session,51,6,Safari 5,9,2018-03-19 +session,51,7,Chrome 28,44,2017-01-28 +user,52,Aaron,Debbra,66 +session,52,0,Firefox 10,35,2016-10-24 +session,52,1,Safari 29,16,2016-09-17 +session,52,2,Chrome 27,66,2016-12-27 +session,52,3,Firefox 36,1,2018-06-20 +session,52,4,Internet Explorer 9,25,2017-05-07 +session,52,5,Internet Explorer 31,62,2016-06-19 +session,52,6,Firefox 44,63,2018-06-29 +session,52,7,Safari 11,56,2017-07-25 +user,53,Markus,Shyla,36 +session,53,0,Chrome 48,94,2018-05-24 +session,53,1,Chrome 6,72,2017-07-10 +session,53,2,Safari 1,21,2017-03-20 +session,53,3,Safari 6,107,2017-08-28 +session,53,4,Internet Explorer 17,67,2017-09-28 +session,53,5,Chrome 43,117,2017-10-15 +user,54,Velia,Corrine,63 +session,54,0,Firefox 27,92,2018-03-16 +user,55,Percy,Tarra,30 +session,55,0,Safari 27,14,2017-04-27 +session,55,1,Safari 45,15,2017-02-03 +session,55,2,Chrome 1,40,2016-06-26 +session,55,3,Internet Explorer 27,3,2017-09-12 +session,55,4,Internet Explorer 45,18,2017-09-27 +user,56,Laure,Lee,53 +session,56,0,Chrome 18,89,2018-04-30 +session,56,1,Firefox 23,97,2018-02-28 +session,56,2,Firefox 49,95,2018-05-03 +session,56,3,Firefox 42,84,2017-06-18 +user,57,Claude,Lauren,57 +session,57,0,Internet Explorer 31,20,2018-06-25 +session,57,1,Internet Explorer 29,37,2017-05-04 +session,57,2,Firefox 6,81,2018-06-10 +session,57,3,Internet Explorer 23,53,2018-10-14 +session,57,4,Firefox 15,54,2016-05-24 +session,57,5,Chrome 22,51,2017-02-07 +session,57,6,Chrome 44,0,2018-08-02 +session,57,7,Firefox 17,58,2016-10-02 +session,57,8,Internet Explorer 40,119,2018-07-24 +user,58,Timmy,Monica,41 +session,58,0,Internet Explorer 7,5,2017-05-07 +session,58,1,Firefox 16,82,2018-09-10 +session,58,2,Safari 26,99,2016-08-27 +session,58,3,Firefox 6,119,2018-10-31 +session,58,4,Firefox 29,42,2018-06-13 +session,58,5,Firefox 19,92,2016-08-25 +user,59,Mark,Shasta,95 +session,59,0,Chrome 50,102,2017-05-25 +session,59,1,Safari 39,25,2017-05-31 +session,59,2,Firefox 33,60,2016-06-25 +session,59,3,Safari 12,54,2018-05-09 +session,59,4,Internet Explorer 16,84,2018-10-13 +session,59,5,Chrome 39,27,2018-10-31 +session,59,6,Chrome 38,113,2018-07-05 +session,59,7,Firefox 45,109,2017-06-12 +user,60,Rhona,Alline,14 +session,60,0,Internet Explorer 2,35,2017-10-21 +session,60,1,Chrome 11,61,2016-09-01 +session,60,2,Firefox 13,42,2019-02-11 +session,60,3,Chrome 5,48,2017-02-11 +session,60,4,Safari 24,35,2018-09-05 +session,60,5,Firefox 44,115,2016-06-07 +user,61,Lester,Margaret,34 +session,61,0,Internet Explorer 18,98,2018-08-23 +session,61,1,Chrome 5,86,2018-12-03 +user,62,Renna,Sam,59 +session,62,0,Internet Explorer 27,73,2018-12-14 +session,62,1,Internet Explorer 49,73,2018-11-30 +session,62,2,Internet Explorer 5,113,2016-11-14 +user,63,Jacquline,Marth,98 +session,63,0,Firefox 43,77,2018-12-16 +session,63,1,Safari 18,84,2016-12-11 +user,64,Alia,Mary,74 +session,64,0,Internet Explorer 46,37,2016-11-26 +session,64,1,Safari 15,53,2016-12-06 +session,64,2,Internet Explorer 31,18,2017-01-01 +session,64,3,Safari 43,112,2016-10-05 +session,64,4,Firefox 35,76,2017-03-16 +session,64,5,Chrome 17,61,2018-03-25 +session,64,6,Internet Explorer 37,26,2018-07-31 +session,64,7,Chrome 36,55,2016-12-13 +session,64,8,Safari 4,66,2017-05-27 +user,65,Patricia,Winston,65 +session,65,0,Internet Explorer 35,118,2018-09-29 +session,65,1,Firefox 14,27,2017-05-28 +session,65,2,Chrome 18,15,2017-06-10 +session,65,3,Firefox 26,82,2016-11-23 +session,65,4,Safari 32,114,2016-09-05 +session,65,5,Internet Explorer 17,52,2016-11-05 +session,65,6,Chrome 44,107,2018-03-26 +session,65,7,Firefox 4,42,2017-05-15 +session,65,8,Internet Explorer 50,47,2017-10-13 +user,66,Jerry,Nicolasa,83 +session,66,0,Firefox 20,80,2017-07-23 +user,67,Randal,Pamella,16 +session,67,0,Chrome 37,10,2018-01-07 +session,67,1,Chrome 42,6,2017-01-26 +session,67,2,Firefox 34,14,2018-07-21 +user,68,Olen,Leia,88 +session,68,0,Chrome 35,47,2016-08-04 +session,68,1,Firefox 10,3,2018-09-15 +user,69,Jarod,Terence,28 +session,69,0,Internet Explorer 16,100,2016-08-06 +user,70,Jamie,Jeremy,32 +session,70,0,Internet Explorer 41,102,2018-04-24 +session,70,1,Firefox 33,46,2017-11-19 +session,70,2,Firefox 20,106,2018-06-30 +session,70,3,Safari 43,106,2018-05-03 +session,70,4,Internet Explorer 35,29,2018-03-18 +session,70,5,Chrome 34,20,2018-08-31 +session,70,6,Safari 44,74,2017-03-31 +session,70,7,Firefox 23,78,2017-04-20 +session,70,8,Internet Explorer 14,29,2018-07-14 +session,70,9,Internet Explorer 18,34,2018-08-11 +user,71,Hung,Delfina,63 +session,71,0,Chrome 11,0,2018-12-21 +session,71,1,Chrome 13,73,2018-11-11 +session,71,2,Internet Explorer 39,103,2016-11-29 +session,71,3,Chrome 11,74,2017-08-04 +session,71,4,Safari 35,90,2019-02-09 +session,71,5,Chrome 34,67,2019-02-12 +session,71,6,Chrome 13,68,2018-01-23 +session,71,7,Chrome 24,59,2018-01-27 +user,72,Kenisha,Belle,16 +session,72,0,Internet Explorer 42,72,2018-04-25 +session,72,1,Safari 2,75,2018-04-24 +session,72,2,Chrome 10,24,2016-06-14 +session,72,3,Chrome 40,113,2017-03-18 +session,72,4,Safari 37,13,2016-12-11 +session,72,5,Chrome 44,31,2018-12-19 +session,72,6,Internet Explorer 18,83,2018-03-19 +session,72,7,Chrome 45,4,2016-11-07 +session,72,8,Internet Explorer 22,83,2017-12-08 +session,72,9,Firefox 37,25,2018-09-09 +user,73,Tien,Kenyetta,30 +session,73,0,Firefox 38,99,2017-06-25 +session,73,1,Internet Explorer 41,80,2018-06-18 +session,73,2,Firefox 1,6,2017-08-09 +session,73,3,Firefox 15,69,2016-12-27 +session,73,4,Internet Explorer 42,96,2016-09-28 +user,74,Samantha,Tama,72 +session,74,0,Safari 33,12,2016-06-23 +user,75,Tyler,Santa,21 +session,75,0,Internet Explorer 40,102,2018-07-04 +session,75,1,Firefox 13,5,2016-06-05 +session,75,2,Safari 46,0,2016-09-16 +session,75,3,Firefox 37,107,2018-11-24 +session,75,4,Chrome 3,15,2018-12-29 +user,76,Jerome,Corene,46 +session,76,0,Chrome 23,42,2017-05-03 +session,76,1,Internet Explorer 8,44,2017-07-31 +session,76,2,Safari 1,71,2017-03-08 +session,76,3,Chrome 43,3,2018-03-31 +session,76,4,Chrome 35,22,2017-04-26 +session,76,5,Firefox 37,21,2016-11-01 +user,77,Lazaro,Raven,33 +session,77,0,Internet Explorer 33,31,2018-12-24 +session,77,1,Safari 18,8,2018-09-11 +session,77,2,Safari 23,86,2016-06-30 +session,77,3,Safari 9,91,2016-11-03 +session,77,4,Safari 14,22,2017-10-29 +session,77,5,Safari 3,114,2019-01-15 +session,77,6,Chrome 2,9,2017-04-06 +session,77,7,Safari 42,73,2017-03-29 +user,78,Normand,Sergio,14 +session,78,0,Firefox 45,92,2016-05-31 +session,78,1,Internet Explorer 31,109,2018-03-05 +session,78,2,Safari 17,65,2017-10-05 +user,79,Delois,Evelynn,78 +session,79,0,Firefox 19,56,2016-08-05 +user,80,Leota,Iva,68 +session,80,0,Chrome 5,66,2017-07-15 +session,80,1,Chrome 26,113,2017-09-09 +user,81,Pa,Therese,5 +session,81,0,Safari 43,53,2018-11-03 +session,81,1,Internet Explorer 44,27,2016-10-08 +session,81,2,Safari 16,10,2018-10-29 +session,81,3,Safari 20,22,2017-03-25 +session,81,4,Firefox 44,37,2018-07-06 +session,81,5,Safari 14,8,2017-12-14 +user,82,Anastacia,Napoleon,16 +session,82,0,Chrome 23,46,2017-06-19 +session,82,1,Chrome 31,95,2018-07-14 +session,82,2,Safari 21,104,2016-12-14 +session,82,3,Internet Explorer 30,2,2017-04-03 +session,82,4,Chrome 9,29,2017-12-26 +user,83,Deetta,Dahlia,37 +session,83,0,Internet Explorer 32,114,2018-10-17 +session,83,1,Internet Explorer 23,53,2017-02-11 +session,83,2,Safari 7,41,2017-06-30 +session,83,3,Firefox 15,55,2017-12-17 +session,83,4,Safari 17,70,2017-02-26 +session,83,5,Firefox 19,22,2018-04-04 +session,83,6,Firefox 39,57,2018-02-03 +session,83,7,Internet Explorer 38,45,2017-03-18 +user,84,Lorraine,Abram,68 +session,84,0,Firefox 27,32,2018-01-27 +session,84,1,Internet Explorer 1,85,2018-04-14 +session,84,2,Internet Explorer 31,11,2016-08-29 +session,84,3,Firefox 26,115,2017-04-23 +user,85,Millard,Tashia,58 +session,85,0,Safari 13,40,2018-10-01 +session,85,1,Safari 11,21,2018-09-29 +session,85,2,Firefox 39,37,2017-06-01 +session,85,3,Internet Explorer 39,95,2019-01-15 +session,85,4,Safari 40,73,2016-10-18 +session,85,5,Chrome 33,16,2018-01-15 +session,85,6,Firefox 1,13,2018-03-03 +session,85,7,Internet Explorer 46,45,2017-02-28 +session,85,8,Safari 3,96,2018-09-01 +user,86,Floretta,Brandon,28 +session,86,0,Safari 21,20,2017-05-21 +session,86,1,Safari 25,1,2017-08-19 +session,86,2,Safari 49,95,2018-12-27 +session,86,3,Internet Explorer 16,59,2016-11-27 +session,86,4,Firefox 16,18,2016-07-19 +session,86,5,Chrome 34,92,2019-01-16 +session,86,6,Internet Explorer 14,5,2017-08-25 +session,86,7,Firefox 27,79,2018-09-03 +session,86,8,Firefox 20,77,2018-02-18 +user,87,Carlyn,Hyun,21 +session,87,0,Safari 42,11,2018-06-16 +session,87,1,Internet Explorer 50,98,2018-02-11 +session,87,2,Internet Explorer 35,37,2018-12-10 +session,87,3,Internet Explorer 20,51,2016-08-08 +session,87,4,Chrome 7,63,2017-01-10 +session,87,5,Internet Explorer 21,96,2017-07-06 +session,87,6,Safari 32,8,2016-08-03 +session,87,7,Chrome 9,14,2017-10-28 +session,87,8,Firefox 38,114,2017-03-29 +session,87,9,Internet Explorer 13,10,2017-12-21 +user,88,Bradly,Karlene,28 +session,88,0,Internet Explorer 27,118,2018-12-20 +session,88,1,Chrome 18,20,2016-11-10 +session,88,2,Internet Explorer 42,7,2018-06-03 +session,88,3,Chrome 21,69,2017-09-06 +session,88,4,Chrome 38,38,2017-04-27 +session,88,5,Firefox 33,111,2018-07-12 +user,89,Alonso,Angelic,13 +session,89,0,Internet Explorer 9,87,2017-07-07 +session,89,1,Safari 41,61,2018-07-25 +session,89,2,Internet Explorer 39,6,2016-08-06 +session,89,3,Firefox 25,71,2018-05-03 +session,89,4,Safari 13,100,2017-04-22 +session,89,5,Internet Explorer 27,72,2017-02-26 +session,89,6,Safari 16,3,2017-04-27 +session,89,7,Internet Explorer 42,94,2017-03-02 +user,90,Tyrone,Selina,7 +session,90,0,Safari 48,5,2016-09-24 +session,90,1,Internet Explorer 20,48,2019-01-15 +session,90,2,Firefox 18,70,2017-08-22 +session,90,3,Chrome 45,71,2017-12-13 +session,90,4,Safari 46,104,2017-02-06 +session,90,5,Internet Explorer 37,104,2018-07-20 +session,90,6,Internet Explorer 23,75,2018-09-24 +session,90,7,Internet Explorer 25,56,2017-07-26 +session,90,8,Internet Explorer 3,21,2018-09-18 +user,91,Eli,Karyl,81 +session,91,0,Internet Explorer 40,29,2017-02-17 +session,91,1,Internet Explorer 11,92,2018-08-19 +session,91,2,Firefox 8,6,2019-01-20 +user,92,Rosalia,Willie,50 +session,92,0,Firefox 9,47,2018-08-28 +session,92,1,Internet Explorer 37,12,2018-02-24 +session,92,2,Internet Explorer 37,8,2018-03-03 +user,93,Chauncey,Debby,36 +session,93,0,Safari 38,35,2017-06-25 +session,93,1,Safari 15,66,2017-02-19 +session,93,2,Chrome 35,40,2017-07-27 +session,93,3,Safari 30,57,2017-08-12 +session,93,4,Firefox 30,2,2018-04-20 +session,93,5,Safari 46,64,2017-09-16 +session,93,6,Firefox 17,106,2018-10-28 +session,93,7,Chrome 24,119,2018-01-06 +user,94,Malika,Susann,66 +session,94,0,Chrome 47,31,2018-03-15 +session,94,1,Chrome 10,109,2017-06-05 +session,94,2,Safari 9,2,2017-11-06 +session,94,3,Chrome 15,25,2018-01-05 +session,94,4,Internet Explorer 28,51,2018-02-06 +user,95,Jerrold,Janise,18 +session,95,0,Safari 30,105,2016-11-25 +session,95,1,Safari 33,97,2018-01-06 +session,95,2,Internet Explorer 45,86,2016-09-22 +session,95,3,Internet Explorer 35,94,2018-06-04 +session,95,4,Chrome 31,67,2017-08-11 +session,95,5,Internet Explorer 43,16,2018-12-19 +session,95,6,Safari 43,12,2017-04-30 +user,96,Raymond,Stephania,43 +session,96,0,Internet Explorer 3,46,2016-09-08 +user,97,Silvia,Kennith,52 +session,97,0,Safari 17,24,2018-07-23 +session,97,1,Firefox 2,13,2018-05-31 +session,97,2,Firefox 48,108,2018-09-27 +session,97,3,Internet Explorer 49,57,2017-02-01 +session,97,4,Safari 23,42,2016-05-21 +session,97,5,Chrome 40,45,2016-08-05 +session,97,6,Internet Explorer 28,29,2017-10-04 +user,98,Hong,Dorris,59 +session,98,0,Chrome 18,10,2017-03-15 +session,98,1,Chrome 15,67,2017-07-03 +session,98,2,Internet Explorer 47,104,2017-01-08 +session,98,3,Safari 19,108,2017-12-06 +session,98,4,Safari 18,101,2018-12-10 +session,98,5,Chrome 33,47,2018-06-24 +user,99,Iesha,Duane,16 +session,99,0,Chrome 40,46,2016-10-27 +session,99,1,Firefox 14,46,2018-02-11 +session,99,2,Chrome 1,89,2018-08-08 +session,99,3,Internet Explorer 46,17,2018-06-20 +session,99,4,Chrome 35,111,2016-08-02 +user,100,Ignacio,Emmie,0 +session,100,0,Chrome 16,81,2018-06-25 +session,100,1,Internet Explorer 48,22,2016-10-06 +user,101,Ossie,Reginia,77 +session,101,0,Internet Explorer 44,105,2019-01-04 +session,101,1,Chrome 17,70,2018-01-12 +user,102,Gerardo,Sharleen,8 +session,102,0,Safari 28,20,2017-06-30 +user,103,Earline,Shantay,53 +session,103,0,Internet Explorer 3,98,2017-11-11 +session,103,1,Chrome 32,9,2016-06-20 +session,103,2,Internet Explorer 37,12,2017-07-01 +session,103,3,Chrome 42,75,2018-05-09 +session,103,4,Chrome 1,23,2018-02-09 +session,103,5,Safari 32,44,2018-04-20 +session,103,6,Safari 5,29,2018-03-01 +session,103,7,Chrome 44,2,2016-12-09 +session,103,8,Safari 35,36,2016-06-04 +session,103,9,Safari 10,16,2016-07-10 +user,104,Santos,Pamelia,15 +session,104,0,Firefox 1,57,2016-12-25 +session,104,1,Chrome 49,18,2018-05-27 +session,104,2,Firefox 17,36,2018-04-23 +session,104,3,Internet Explorer 32,19,2017-09-21 +session,104,4,Safari 41,97,2018-02-16 +session,104,5,Internet Explorer 31,73,2017-04-06 +session,104,6,Safari 4,57,2017-06-06 +session,104,7,Firefox 10,36,2016-11-10 +user,105,Lola,Florentino,24 +session,105,0,Internet Explorer 14,60,2018-01-20 +session,105,1,Safari 31,105,2017-01-18 +session,105,2,Firefox 29,66,2016-12-14 +user,106,Bert,Orville,11 +session,106,0,Safari 17,89,2018-05-20 +session,106,1,Firefox 15,49,2018-02-15 +user,107,Antonio,Brinda,59 +session,107,0,Internet Explorer 7,35,2018-07-06 +session,107,1,Firefox 19,5,2016-09-23 +session,107,2,Firefox 9,44,2018-02-16 +session,107,3,Chrome 5,18,2016-10-03 +session,107,4,Firefox 38,85,2016-07-30 +user,108,Joaquin,Wilfredo,35 +session,108,0,Firefox 6,13,2016-07-04 +session,108,1,Internet Explorer 20,24,2017-08-28 +session,108,2,Chrome 39,16,2018-09-27 +user,109,Clifton,Allan,5 +session,109,0,Safari 41,63,2018-11-29 +session,109,1,Chrome 17,19,2017-05-30 +session,109,2,Firefox 14,94,2018-02-19 +user,110,Donald,Wenona,56 +session,110,0,Safari 44,14,2016-05-19 +session,110,1,Firefox 22,57,2017-08-11 +user,111,Millard,Mittie,17 +session,111,0,Safari 13,23,2019-01-24 +session,111,1,Firefox 20,96,2016-11-15 +session,111,2,Chrome 48,62,2017-11-08 +session,111,3,Firefox 31,98,2017-10-26 +session,111,4,Safari 38,13,2017-10-03 +session,111,5,Internet Explorer 17,116,2017-12-14 +user,112,Jenette,Bruce,68 +session,112,0,Chrome 18,113,2018-02-25 +session,112,1,Firefox 44,1,2016-09-09 +session,112,2,Firefox 30,66,2017-07-27 +session,112,3,Internet Explorer 46,31,2017-12-06 +user,113,Bryan,Clorinda,86 +session,113,0,Safari 50,61,2016-07-17 +session,113,1,Safari 20,37,2018-04-19 +session,113,2,Safari 37,41,2018-06-10 +session,113,3,Internet Explorer 47,33,2017-10-30 +session,113,4,Firefox 30,5,2017-04-07 +session,113,5,Safari 39,6,2016-07-25 +session,113,6,Internet Explorer 36,48,2018-05-15 +session,113,7,Chrome 50,119,2018-03-26 +session,113,8,Firefox 31,93,2017-12-26 +user,114,Jena,Melony,83 +session,114,0,Internet Explorer 10,52,2016-06-11 +user,115,Jerri,Long,20 +session,115,0,Internet Explorer 20,101,2017-09-03 +session,115,1,Chrome 50,107,2017-04-10 +session,115,2,Firefox 36,85,2018-03-07 +session,115,3,Chrome 22,89,2018-12-15 +session,115,4,Safari 14,26,2018-03-23 +session,115,5,Firefox 24,21,2016-06-23 +user,116,Monte,Angelo,35 +session,116,0,Internet Explorer 14,106,2017-06-28 +user,117,Saran,Nathalie,83 +session,117,0,Chrome 9,92,2016-05-30 +session,117,1,Chrome 3,117,2016-11-02 +session,117,2,Safari 35,94,2016-08-09 +session,117,3,Chrome 3,103,2016-07-20 +session,117,4,Chrome 40,97,2017-08-12 +session,117,5,Firefox 4,6,2018-01-11 +session,117,6,Internet Explorer 19,67,2017-05-13 +user,118,Jonna,Waneta,6 +session,118,0,Chrome 10,101,2017-03-28 +session,118,1,Firefox 24,69,2017-05-06 +session,118,2,Safari 25,97,2018-09-28 +session,118,3,Internet Explorer 16,61,2016-09-24 +session,118,4,Chrome 48,94,2016-06-29 +session,118,5,Internet Explorer 29,13,2016-12-19 +session,118,6,Safari 15,98,2019-01-29 +session,118,7,Chrome 23,18,2017-03-27 +session,118,8,Internet Explorer 25,62,2016-07-29 +session,118,9,Firefox 18,5,2018-05-26 +user,119,Valeria,Gigi,79 +session,119,0,Chrome 36,2,2018-12-02 +user,120,Caron,Hye,64 +session,120,0,Safari 33,103,2016-05-30 +session,120,1,Internet Explorer 4,18,2017-08-12 +session,120,2,Safari 36,114,2017-04-30 +session,120,3,Internet Explorer 30,110,2019-01-26 +session,120,4,Internet Explorer 48,28,2018-10-04 +session,120,5,Safari 13,77,2016-06-16 +session,120,6,Chrome 9,73,2017-03-29 +session,120,7,Chrome 7,33,2016-08-23 +user,121,Wilbur,Lilly,91 +session,121,0,Chrome 5,116,2018-11-20 +session,121,1,Firefox 22,81,2017-03-09 +session,121,2,Internet Explorer 20,86,2017-12-01 +session,121,3,Chrome 7,66,2017-10-30 +user,122,Theresa,Iesha,90 +session,122,0,Internet Explorer 34,21,2017-05-20 +session,122,1,Internet Explorer 16,53,2018-11-25 +session,122,2,Internet Explorer 28,81,2017-03-14 +session,122,3,Firefox 21,79,2018-01-26 +session,122,4,Chrome 10,7,2017-03-07 +user,123,Domingo,Paul,70 +session,123,0,Internet Explorer 3,95,2017-07-31 +session,123,1,Chrome 24,53,2017-02-11 +session,123,2,Safari 3,81,2016-10-22 +user,124,Ahmed,Joshua,99 +session,124,0,Firefox 21,19,2017-03-28 +session,124,1,Internet Explorer 49,54,2017-08-14 +session,124,2,Safari 34,31,2017-04-19 +session,124,3,Internet Explorer 37,98,2018-08-25 +session,124,4,Chrome 1,64,2017-07-19 +session,124,5,Safari 17,25,2017-07-13 +session,124,6,Chrome 23,35,2017-10-30 +session,124,7,Safari 50,84,2018-05-25 +session,124,8,Chrome 14,72,2018-05-10 +session,124,9,Chrome 50,50,2017-01-31 +user,125,Isobel,Elwanda,51 +session,125,0,Firefox 50,111,2017-06-22 +session,125,1,Firefox 29,64,2018-10-17 +session,125,2,Safari 45,113,2017-02-04 +session,125,3,Safari 11,17,2016-09-13 +session,125,4,Chrome 14,93,2017-08-19 +session,125,5,Safari 5,35,2016-11-24 +session,125,6,Internet Explorer 12,66,2017-06-03 +session,125,7,Chrome 47,30,2018-11-04 +user,126,Tuyet,Louie,78 +session,126,0,Chrome 41,3,2018-02-07 +session,126,1,Safari 4,64,2017-07-20 +session,126,2,Safari 10,108,2017-07-11 +session,126,3,Chrome 6,60,2018-04-17 +session,126,4,Safari 23,6,2018-04-04 +session,126,5,Firefox 47,44,2017-05-13 +session,126,6,Firefox 37,37,2018-04-18 +session,126,7,Safari 4,23,2016-06-23 +session,126,8,Firefox 23,1,2016-09-23 +session,126,9,Safari 21,63,2017-04-27 +user,127,Tanika,Rufus,94 +session,127,0,Safari 12,4,2018-01-08 +session,127,1,Firefox 43,35,2017-11-23 +session,127,2,Firefox 48,97,2018-11-30 +user,128,Adriene,Athena,26 +session,128,0,Internet Explorer 9,85,2017-08-10 +user,129,Marlon,Lyla,0 +session,129,0,Chrome 28,95,2017-11-13 +session,129,1,Firefox 23,1,2017-09-01 +session,129,2,Safari 42,26,2018-08-12 +session,129,3,Safari 12,89,2018-01-31 +session,129,4,Safari 11,44,2018-07-09 +session,129,5,Firefox 43,7,2019-01-19 +session,129,6,Safari 37,31,2016-08-03 +session,129,7,Chrome 24,60,2017-10-16 +user,130,Beaulah,Titus,85 +session,130,0,Internet Explorer 28,70,2017-07-04 +session,130,1,Internet Explorer 31,92,2017-07-20 +session,130,2,Firefox 29,64,2018-08-09 +session,130,3,Internet Explorer 30,114,2018-07-20 +session,130,4,Internet Explorer 15,67,2017-05-26 +session,130,5,Safari 35,95,2016-12-23 +session,130,6,Internet Explorer 40,49,2018-12-13 +session,130,7,Safari 46,98,2016-06-18 +session,130,8,Internet Explorer 21,97,2017-05-28 +session,130,9,Safari 10,66,2018-05-16 +user,131,Jerold,Giovanna,17 +session,131,0,Internet Explorer 45,77,2018-08-10 +session,131,1,Firefox 46,66,2019-01-27 +session,131,2,Safari 13,36,2017-02-13 +session,131,3,Chrome 41,8,2017-08-09 +session,131,4,Internet Explorer 48,106,2018-03-17 +session,131,5,Safari 20,39,2018-04-04 +session,131,6,Firefox 4,27,2016-05-24 +session,131,7,Internet Explorer 15,13,2017-02-05 +session,131,8,Internet Explorer 7,23,2018-10-31 +session,131,9,Firefox 11,53,2019-02-11 +user,132,Lesley,Asha,31 +session,132,0,Firefox 12,97,2018-06-18 +session,132,1,Safari 10,94,2018-04-23 +session,132,2,Chrome 37,65,2016-12-20 +session,132,3,Safari 11,103,2016-07-02 +session,132,4,Safari 39,89,2018-04-13 +session,132,5,Chrome 37,36,2019-01-13 +session,132,6,Safari 45,78,2018-06-08 +session,132,7,Firefox 2,55,2016-06-17 +user,133,Lavonne,Cathie,18 +session,133,0,Chrome 23,73,2017-11-24 +session,133,1,Internet Explorer 40,89,2018-02-17 +session,133,2,Chrome 41,50,2016-06-27 +session,133,3,Chrome 30,19,2017-03-22 +session,133,4,Chrome 42,2,2017-11-13 +user,134,Jan,Viki,56 +session,134,0,Internet Explorer 6,49,2018-10-17 +session,134,1,Internet Explorer 21,105,2017-03-08 +user,135,Aron,Fairy,70 +session,135,0,Chrome 10,28,2016-08-06 +session,135,1,Safari 9,77,2018-10-14 +session,135,2,Safari 11,47,2017-09-20 +session,135,3,Firefox 43,35,2016-07-25 +user,136,Ronnie,Sung,0 +session,136,0,Internet Explorer 41,81,2018-12-30 +session,136,1,Chrome 39,100,2017-04-07 +session,136,2,Internet Explorer 42,25,2018-05-14 +session,136,3,Internet Explorer 50,30,2016-10-25 +session,136,4,Chrome 5,62,2017-11-21 +session,136,5,Firefox 17,78,2019-01-08 +session,136,6,Safari 7,84,2016-09-13 +session,136,7,Internet Explorer 1,68,2017-01-08 +session,136,8,Safari 15,2,2016-07-15 +session,136,9,Safari 35,44,2018-04-19 +user,137,Lachelle,Rodrigo,69 +session,137,0,Safari 2,52,2018-01-05 +session,137,1,Chrome 33,108,2017-10-12 +session,137,2,Firefox 44,113,2018-02-17 +session,137,3,Safari 15,67,2018-07-24 +session,137,4,Safari 39,115,2018-03-18 +session,137,5,Safari 25,28,2016-09-07 +session,137,6,Firefox 40,53,2017-11-01 +user,138,Justin,Van,66 +session,138,0,Safari 49,4,2018-09-23 +session,138,1,Internet Explorer 21,56,2019-01-29 +session,138,2,Safari 49,25,2018-11-08 +session,138,3,Internet Explorer 12,7,2017-11-05 +session,138,4,Safari 23,50,2017-05-08 +session,138,5,Safari 2,96,2017-03-28 +session,138,6,Internet Explorer 44,82,2016-08-22 +user,139,Theola,Frederica,78 +session,139,0,Firefox 44,107,2017-06-26 +session,139,1,Firefox 3,14,2017-11-28 +session,139,2,Firefox 15,94,2018-07-13 +session,139,3,Safari 31,51,2017-04-05 +session,139,4,Internet Explorer 25,74,2018-12-22 +user,140,Love,Brandy,35 +session,140,0,Chrome 25,27,2018-04-20 +session,140,1,Safari 6,71,2018-03-02 +session,140,2,Chrome 30,16,2016-09-27 +session,140,3,Internet Explorer 38,112,2016-12-09 +session,140,4,Internet Explorer 38,38,2018-09-27 +session,140,5,Firefox 46,18,2018-07-30 +session,140,6,Internet Explorer 48,0,2018-11-14 +user,141,Eleni,Rusty,55 +session,141,0,Safari 21,46,2017-03-05 +user,142,Roland,Shelby,26 +session,142,0,Firefox 4,43,2017-10-22 +session,142,1,Firefox 24,58,2016-11-19 +session,142,2,Chrome 5,73,2016-10-12 +session,142,3,Internet Explorer 12,19,2016-09-28 +session,142,4,Firefox 35,22,2017-05-22 +session,142,5,Chrome 33,4,2017-11-18 +session,142,6,Safari 20,31,2018-05-04 +session,142,7,Safari 4,25,2016-06-10 +user,143,Margot,Rebecca,46 +session,143,0,Chrome 45,110,2017-08-16 +session,143,1,Chrome 46,30,2018-09-29 +session,143,2,Safari 50,62,2018-06-02 +session,143,3,Firefox 11,45,2016-09-07 +session,143,4,Firefox 23,85,2018-12-05 +session,143,5,Safari 34,38,2016-08-10 +session,143,6,Safari 34,5,2017-06-13 +session,143,7,Safari 18,79,2017-01-02 +session,143,8,Firefox 23,57,2018-02-20 +user,144,Sonny,Lulu,20 +session,144,0,Safari 39,54,2016-08-03 +session,144,1,Chrome 5,77,2018-04-07 +session,144,2,Firefox 43,19,2018-02-03 +session,144,3,Chrome 36,103,2018-03-03 +session,144,4,Safari 15,90,2017-07-03 +session,144,5,Safari 35,22,2018-10-31 +session,144,6,Internet Explorer 48,33,2018-12-27 +session,144,7,Internet Explorer 45,109,2018-05-27 +user,145,Dallas,Amy,61 +session,145,0,Chrome 40,19,2018-06-14 +session,145,1,Firefox 43,5,2019-01-18 +session,145,2,Internet Explorer 8,86,2016-06-27 +session,145,3,Safari 24,103,2016-10-30 +user,146,Jamal,Hanh,16 +session,146,0,Chrome 14,9,2018-04-23 +session,146,1,Internet Explorer 4,67,2017-10-25 +session,146,2,Safari 24,104,2017-12-11 +session,146,3,Firefox 17,104,2017-09-06 +session,146,4,Internet Explorer 15,92,2018-07-30 +session,146,5,Internet Explorer 5,61,2016-08-03 +session,146,6,Firefox 8,86,2018-07-05 +session,146,7,Firefox 25,41,2017-01-12 +user,147,Ervin,Gabriel,82 +session,147,0,Safari 4,6,2016-09-07 +user,148,Patsy,Edwardo,89 +session,148,0,Firefox 13,5,2016-11-22 +session,148,1,Chrome 10,64,2018-07-31 +session,148,2,Chrome 10,57,2016-06-25 +session,148,3,Internet Explorer 39,104,2017-11-11 +session,148,4,Firefox 3,115,2018-11-12 +session,148,5,Chrome 23,67,2016-12-05 +session,148,6,Chrome 50,3,2016-11-16 +session,148,7,Chrome 7,110,2016-12-07 +session,148,8,Firefox 12,46,2016-09-16 +user,149,Clay,Retha,42 +session,149,0,Chrome 28,114,2016-10-24 +session,149,1,Internet Explorer 31,115,2018-08-01 +session,149,2,Firefox 42,91,2018-07-08 +session,149,3,Chrome 4,80,2018-04-06 +session,149,4,Firefox 47,5,2017-03-26 +session,149,5,Firefox 1,71,2016-12-15 +session,149,6,Safari 25,14,2017-04-22 +session,149,7,Firefox 11,91,2018-09-10 +user,150,Lindsay,Gail,48 +session,150,0,Safari 26,109,2017-12-16 +session,150,1,Safari 47,91,2018-03-02 +session,150,2,Safari 18,113,2016-09-25 +user,151,Brian,Stella,65 +session,151,0,Firefox 47,26,2018-11-24 +session,151,1,Chrome 42,70,2018-07-11 +session,151,2,Internet Explorer 15,14,2017-10-16 +session,151,3,Chrome 5,69,2017-08-18 +user,152,Newton,Gilda,22 +session,152,0,Firefox 13,50,2018-08-09 +session,152,1,Firefox 23,114,2018-04-16 +session,152,2,Firefox 50,38,2019-01-20 +session,152,3,Chrome 32,93,2018-02-28 +session,152,4,Firefox 6,55,2018-02-20 +session,152,5,Firefox 43,55,2018-06-15 +user,153,Ignacio,Kira,39 +session,153,0,Internet Explorer 41,17,2017-02-13 +session,153,1,Chrome 49,87,2019-02-08 +user,154,Ned,Robbie,15 +session,154,0,Firefox 35,110,2018-05-31 +session,154,1,Safari 6,24,2018-09-30 +session,154,2,Firefox 26,83,2018-01-30 +user,155,Una,Freddy,22 +session,155,0,Chrome 14,81,2017-01-18 +session,155,1,Chrome 48,66,2018-08-25 +session,155,2,Chrome 39,51,2017-02-01 +session,155,3,Chrome 14,63,2019-02-08 +session,155,4,Internet Explorer 30,15,2016-06-26 +session,155,5,Safari 8,28,2016-07-17 +session,155,6,Internet Explorer 12,80,2018-02-16 +session,155,7,Chrome 3,78,2017-09-05 +user,156,Mabelle,Carylon,62 +session,156,0,Safari 15,33,2017-05-01 +user,157,Bo,Vanetta,7 +session,157,0,Safari 7,37,2017-11-10 +session,157,1,Safari 2,96,2017-01-26 +user,158,Stacey,Man,48 +session,158,0,Safari 35,14,2018-09-26 +user,159,Deloras,Sharron,56 +session,159,0,Chrome 12,54,2017-10-10 +session,159,1,Chrome 22,3,2018-03-30 +session,159,2,Safari 31,12,2016-09-03 +user,160,Kristan,Art,2 +session,160,0,Safari 29,108,2016-09-18 +session,160,1,Safari 26,52,2016-12-26 +session,160,2,Firefox 22,10,2017-03-07 +session,160,3,Internet Explorer 22,35,2016-08-20 +session,160,4,Internet Explorer 18,108,2017-01-31 +user,161,Sergio,Almeda,90 +session,161,0,Chrome 14,104,2017-03-22 +user,162,Vance,Heidy,3 +session,162,0,Firefox 25,25,2017-05-08 +session,162,1,Internet Explorer 27,5,2017-02-07 +session,162,2,Chrome 47,2,2016-05-20 +session,162,3,Firefox 14,67,2018-09-12 +session,162,4,Internet Explorer 23,86,2018-12-08 +session,162,5,Internet Explorer 3,53,2018-09-08 +user,163,Sulema,Georgene,22 +session,163,0,Internet Explorer 49,112,2016-10-16 +session,163,1,Safari 1,106,2018-03-13 +session,163,2,Safari 14,83,2018-12-28 +user,164,Verda,Lili,61 +session,164,0,Safari 16,103,2018-09-26 +session,164,1,Safari 36,78,2018-12-06 +session,164,2,Internet Explorer 26,25,2017-08-20 +session,164,3,Chrome 8,45,2017-08-16 +session,164,4,Firefox 30,118,2018-06-08 +session,164,5,Internet Explorer 38,35,2016-11-15 +user,165,Leonarda,Jame,18 +session,165,0,Safari 30,48,2018-01-19 +session,165,1,Internet Explorer 45,94,2017-07-11 +session,165,2,Safari 22,116,2018-03-06 +session,165,3,Internet Explorer 10,11,2018-07-15 +session,165,4,Firefox 7,88,2018-12-21 +session,165,5,Chrome 18,33,2018-05-08 +user,166,Matt,Adrien,89 +session,166,0,Safari 25,105,2016-07-16 +session,166,1,Internet Explorer 16,103,2018-01-19 +session,166,2,Chrome 12,28,2018-11-03 +session,166,3,Safari 3,65,2016-08-17 +user,167,Zetta,Dara,42 +session,167,0,Safari 3,29,2017-11-17 +user,168,Nova,Ollie,97 +session,168,0,Internet Explorer 50,7,2018-02-07 +session,168,1,Safari 42,41,2017-06-16 +session,168,2,Firefox 17,101,2016-05-21 +session,168,3,Safari 20,20,2017-05-02 +session,168,4,Safari 11,40,2016-07-07 +session,168,5,Firefox 41,17,2016-11-22 +session,168,6,Firefox 49,44,2017-10-13 +session,168,7,Chrome 22,101,2018-09-12 +user,169,Erin,Matt,62 +session,169,0,Safari 31,114,2018-10-01 +session,169,1,Chrome 7,3,2017-04-02 +user,170,Randal,Tiffiny,27 +session,170,0,Firefox 25,114,2017-11-09 +session,170,1,Firefox 19,8,2016-06-19 +session,170,2,Safari 9,73,2018-04-12 +session,170,3,Internet Explorer 34,63,2018-07-31 +user,171,Earnest,Gemma,2 +session,171,0,Chrome 32,76,2018-12-18 +session,171,1,Chrome 19,3,2018-03-04 +session,171,2,Safari 10,101,2017-03-16 +session,171,3,Chrome 16,76,2017-08-03 +user,172,Wei,Sharleen,16 +session,172,0,Chrome 5,9,2018-11-16 +session,172,1,Chrome 17,96,2017-01-16 +session,172,2,Safari 24,37,2018-07-13 +session,172,3,Firefox 34,19,2018-03-07 +user,173,Hector,Marin,56 +session,173,0,Firefox 24,94,2018-07-29 +user,174,Robin,Tyrone,54 +session,174,0,Internet Explorer 16,81,2017-04-12 +session,174,1,Chrome 23,36,2017-04-01 +session,174,2,Chrome 50,54,2017-08-30 +user,175,Rosalyn,Inell,34 +session,175,0,Internet Explorer 29,75,2017-11-01 +session,175,1,Internet Explorer 11,72,2018-05-12 +session,175,2,Chrome 46,42,2018-08-10 +session,175,3,Chrome 13,6,2016-12-21 +session,175,4,Firefox 9,55,2016-08-01 +session,175,5,Chrome 5,103,2018-12-02 +user,176,Cory,Maurine,26 +session,176,0,Chrome 34,16,2018-05-22 +session,176,1,Safari 5,31,2017-09-03 +session,176,2,Internet Explorer 22,55,2017-01-06 +session,176,3,Chrome 41,26,2017-04-14 +session,176,4,Internet Explorer 42,4,2017-07-28 +session,176,5,Chrome 45,115,2017-07-12 +session,176,6,Firefox 26,58,2017-03-04 +session,176,7,Safari 26,7,2018-03-06 +session,176,8,Safari 34,60,2016-11-18 +session,176,9,Chrome 10,12,2018-06-30 +user,177,Roxanna,Sina,42 +session,177,0,Internet Explorer 13,108,2017-03-01 +session,177,1,Firefox 13,15,2018-11-16 +session,177,2,Internet Explorer 37,2,2017-11-24 +session,177,3,Safari 5,108,2017-01-01 +session,177,4,Internet Explorer 20,99,2018-06-02 +session,177,5,Firefox 36,54,2018-12-07 +user,178,Marisha,Tijuana,75 +session,178,0,Safari 38,17,2016-11-06 +session,178,1,Internet Explorer 9,67,2016-11-28 +session,178,2,Safari 45,82,2018-05-14 +session,178,3,Firefox 30,85,2017-08-18 +user,179,Tena,Ena,80 +session,179,0,Safari 10,36,2018-08-18 +user,180,German,Florida,78 +session,180,0,Firefox 21,95,2018-04-28 +session,180,1,Chrome 16,91,2017-08-27 +user,181,Cinthia,Angila,10 +session,181,0,Chrome 8,96,2016-12-26 +session,181,1,Chrome 4,50,2016-12-07 +session,181,2,Firefox 8,88,2019-02-08 +session,181,3,Internet Explorer 41,52,2017-10-13 +session,181,4,Safari 29,113,2017-07-21 +session,181,5,Internet Explorer 24,47,2018-12-17 +session,181,6,Internet Explorer 29,82,2018-09-21 +session,181,7,Firefox 18,56,2018-10-20 +user,182,Libbie,Keiko,20 +session,182,0,Chrome 38,67,2016-10-27 +session,182,1,Firefox 31,44,2016-08-20 +session,182,2,Safari 36,27,2017-10-24 +session,182,3,Internet Explorer 45,53,2018-07-31 +session,182,4,Chrome 14,48,2017-06-08 +session,182,5,Firefox 26,82,2016-07-11 +session,182,6,Internet Explorer 24,38,2017-02-04 +user,183,Isobel,Dave,69 +session,183,0,Firefox 28,40,2017-03-13 +session,183,1,Internet Explorer 17,16,2016-10-06 +session,183,2,Safari 1,38,2017-01-20 +session,183,3,Internet Explorer 44,91,2017-06-03 +session,183,4,Internet Explorer 37,5,2016-12-30 +session,183,5,Firefox 36,20,2017-05-02 +session,183,6,Firefox 26,57,2016-08-17 +session,183,7,Safari 21,37,2017-08-12 +session,183,8,Chrome 28,7,2018-02-22 +user,184,Francesco,Fay,0 +session,184,0,Chrome 27,68,2017-08-03 +session,184,1,Safari 7,40,2017-05-10 +session,184,2,Safari 47,94,2018-03-01 +session,184,3,Safari 3,14,2016-09-02 +user,185,Edgar,Temple,53 +session,185,0,Chrome 22,70,2017-06-25 +session,185,1,Firefox 34,8,2018-05-14 +session,185,2,Safari 16,100,2017-11-02 +session,185,3,Safari 40,84,2017-02-24 +session,185,4,Chrome 5,60,2018-08-16 +session,185,5,Firefox 50,76,2018-03-18 +user,186,Mohammad,Lenny,46 +session,186,0,Chrome 28,116,2017-03-29 +session,186,1,Firefox 17,106,2017-09-19 +user,187,Vincenza,Latoya,37 +session,187,0,Firefox 2,52,2016-10-20 +session,187,1,Firefox 40,17,2016-06-27 +session,187,2,Internet Explorer 11,52,2018-10-05 +session,187,3,Safari 9,87,2018-11-04 +session,187,4,Safari 36,6,2016-10-21 +session,187,5,Chrome 16,110,2017-06-07 +session,187,6,Chrome 47,7,2016-08-26 +session,187,7,Safari 21,105,2016-07-08 +user,188,Brent,Kelly,33 +session,188,0,Firefox 17,88,2018-06-11 +session,188,1,Firefox 16,66,2017-11-04 +session,188,2,Safari 26,15,2016-07-03 +session,188,3,Internet Explorer 43,0,2017-11-17 +session,188,4,Chrome 40,23,2017-02-27 +session,188,5,Internet Explorer 16,50,2018-11-22 +user,189,Lincoln,Jillian,60 +session,189,0,Firefox 12,13,2017-08-01 +session,189,1,Firefox 21,109,2018-04-28 +user,190,Iluminada,Kenda,12 +session,190,0,Internet Explorer 20,0,2017-02-23 +session,190,1,Firefox 18,16,2019-01-02 +session,190,2,Chrome 1,29,2018-10-18 +session,190,3,Internet Explorer 32,117,2016-12-08 +session,190,4,Safari 3,104,2018-04-22 +session,190,5,Safari 5,86,2018-05-08 +session,190,6,Firefox 22,18,2018-06-07 +user,191,Eartha,Augusta,78 +session,191,0,Chrome 30,16,2016-05-28 +session,191,1,Safari 36,81,2018-06-28 +session,191,2,Safari 21,71,2017-05-19 +session,191,3,Chrome 2,62,2018-06-23 +session,191,4,Firefox 18,75,2016-11-12 +user,192,Marcelo,Denae,50 +session,192,0,Chrome 31,48,2018-06-12 +session,192,1,Chrome 3,1,2017-02-28 +session,192,2,Firefox 16,98,2018-01-30 +user,193,Shellie,Napoleon,20 +session,193,0,Safari 14,100,2017-08-03 +session,193,1,Internet Explorer 14,112,2018-04-10 +session,193,2,Internet Explorer 22,55,2017-03-15 +session,193,3,Internet Explorer 48,51,2017-05-30 +user,194,Laurence,Donald,41 +session,194,0,Internet Explorer 31,9,2017-10-19 +session,194,1,Chrome 7,30,2018-05-13 +session,194,2,Firefox 17,95,2018-07-28 +session,194,3,Internet Explorer 6,29,2017-07-06 +session,194,4,Firefox 38,31,2017-05-02 +session,194,5,Internet Explorer 19,10,2017-09-21 +session,194,6,Chrome 12,10,2016-11-16 +user,195,Lonnie,Gayle,55 +session,195,0,Internet Explorer 34,53,2016-06-14 +session,195,1,Internet Explorer 26,116,2018-12-30 +session,195,2,Internet Explorer 40,35,2018-01-09 +session,195,3,Chrome 13,92,2017-06-23 +user,196,Charlie,Somer,65 +session,196,0,Firefox 49,77,2017-12-07 +session,196,1,Firefox 4,78,2017-03-31 +session,196,2,Safari 2,49,2017-07-25 +session,196,3,Chrome 25,24,2018-06-06 +session,196,4,Firefox 35,38,2018-08-11 +session,196,5,Chrome 32,102,2018-02-10 +session,196,6,Firefox 31,26,2018-05-10 +session,196,7,Safari 46,14,2017-02-27 +user,197,Berry,Janeth,44 +session,197,0,Chrome 8,95,2017-07-20 +user,198,Trevor,Jeanett,76 +session,198,0,Chrome 31,45,2018-05-13 +session,198,1,Chrome 18,86,2016-09-18 +user,199,Oren,Kim,7 +session,199,0,Firefox 1,34,2017-06-19 +session,199,1,Chrome 44,112,2016-12-07 +session,199,2,Safari 7,27,2016-06-20 +session,199,3,Firefox 4,29,2017-07-22 +session,199,4,Internet Explorer 4,41,2016-07-08 +session,199,5,Safari 42,1,2017-09-11 +session,199,6,Firefox 4,105,2018-10-21 +session,199,7,Firefox 40,93,2017-08-18 +session,199,8,Firefox 13,84,2018-11-20 +user,200,Freddy,Hiram,94 +session,200,0,Safari 49,43,2018-04-01 +session,200,1,Firefox 36,30,2018-04-12 +session,200,2,Chrome 15,111,2018-11-10 +session,200,3,Safari 2,60,2017-06-08 +user,201,Jules,Lucia,36 +session,201,0,Safari 37,78,2016-06-16 +user,202,Christa,Callie,77 +session,202,0,Internet Explorer 1,70,2017-07-15 +session,202,1,Internet Explorer 27,74,2018-02-07 +user,203,Hyun,Raelene,0 +session,203,0,Chrome 9,40,2016-07-11 +user,204,Britni,Nia,48 +session,204,0,Internet Explorer 40,29,2018-05-27 +session,204,1,Chrome 42,99,2016-10-05 +user,205,Caryn,Celia,19 +session,205,0,Safari 43,12,2016-07-20 +user,206,Georgine,Haley,84 +session,206,0,Safari 38,28,2018-03-04 +session,206,1,Safari 18,35,2018-08-27 +session,206,2,Firefox 29,118,2017-12-21 +session,206,3,Internet Explorer 31,28,2017-11-02 +session,206,4,Chrome 43,47,2018-06-12 +session,206,5,Firefox 5,5,2018-08-03 +session,206,6,Chrome 48,97,2017-05-17 +session,206,7,Safari 6,65,2018-02-26 +session,206,8,Chrome 31,46,2017-10-07 +user,207,Jordon,Amiee,15 +session,207,0,Firefox 48,7,2018-02-06 +session,207,1,Firefox 36,17,2016-09-16 +session,207,2,Internet Explorer 8,52,2018-03-25 +session,207,3,Safari 46,71,2018-11-16 +session,207,4,Safari 34,54,2018-05-15 +user,208,Kacy,Shakita,10 +session,208,0,Firefox 46,38,2018-03-02 +session,208,1,Firefox 47,51,2017-11-26 +session,208,2,Safari 28,92,2019-01-16 +session,208,3,Firefox 42,13,2017-05-31 +session,208,4,Safari 2,13,2017-05-29 +session,208,5,Internet Explorer 24,26,2016-10-02 +session,208,6,Firefox 22,73,2018-06-23 +session,208,7,Chrome 11,23,2017-12-12 +user,209,Donovan,Deane,73 +session,209,0,Internet Explorer 44,6,2017-10-09 +session,209,1,Firefox 14,31,2018-12-24 +session,209,2,Chrome 35,64,2017-05-25 +session,209,3,Chrome 8,88,2016-10-31 +session,209,4,Firefox 26,10,2018-08-05 +session,209,5,Chrome 30,6,2017-05-27 +session,209,6,Safari 10,111,2017-06-25 +session,209,7,Chrome 10,42,2016-07-16 +session,209,8,Internet Explorer 18,9,2017-06-17 +user,210,Brandi,Luann,41 +session,210,0,Safari 23,108,2018-03-27 +session,210,1,Internet Explorer 36,21,2017-06-24 +session,210,2,Chrome 15,29,2016-05-23 +session,210,3,Chrome 26,17,2017-02-19 +user,211,Zachery,Franchesca,32 +session,211,0,Chrome 39,52,2016-08-02 +user,212,Augustine,Lupe,55 +session,212,0,Safari 35,80,2018-08-08 +session,212,1,Chrome 45,59,2017-05-06 +session,212,2,Internet Explorer 4,2,2018-02-16 +session,212,3,Safari 19,0,2017-08-30 +session,212,4,Internet Explorer 47,111,2018-03-06 +session,212,5,Internet Explorer 43,119,2017-11-07 +session,212,6,Chrome 40,39,2017-10-27 +session,212,7,Internet Explorer 33,89,2016-12-21 +session,212,8,Chrome 12,5,2016-07-23 +session,212,9,Internet Explorer 49,9,2017-07-01 +user,213,Gabriel,Aline,80 +session,213,0,Firefox 28,56,2018-12-13 +session,213,1,Safari 26,48,2017-06-25 +session,213,2,Chrome 2,87,2018-07-29 +session,213,3,Safari 22,93,2018-10-10 +session,213,4,Safari 41,65,2017-06-22 +session,213,5,Safari 35,111,2017-04-06 +session,213,6,Safari 40,90,2019-01-05 +session,213,7,Safari 41,75,2018-01-08 +user,214,Isaac,Irina,55 +session,214,0,Internet Explorer 43,9,2018-02-06 +session,214,1,Safari 24,30,2018-10-26 +session,214,2,Firefox 45,50,2016-07-05 +session,214,3,Safari 36,48,2017-08-23 +session,214,4,Internet Explorer 26,6,2018-04-30 +session,214,5,Internet Explorer 28,101,2016-12-15 +user,215,Myron,Lacy,63 +session,215,0,Internet Explorer 6,66,2017-07-13 +session,215,1,Internet Explorer 29,23,2018-07-10 +session,215,2,Chrome 18,15,2016-06-18 +user,216,Yong,Heike,3 +session,216,0,Safari 45,67,2016-05-30 +session,216,1,Chrome 45,10,2019-02-02 +session,216,2,Chrome 27,49,2017-09-12 +session,216,3,Internet Explorer 6,116,2019-01-30 +session,216,4,Safari 14,112,2017-04-24 +session,216,5,Chrome 50,3,2016-10-15 +session,216,6,Safari 45,69,2017-04-25 +session,216,7,Chrome 8,38,2017-04-18 +session,216,8,Chrome 9,48,2017-04-04 +user,217,Wilfredo,Jacinto,3 +session,217,0,Chrome 47,80,2016-09-09 +session,217,1,Safari 28,101,2019-01-11 +session,217,2,Firefox 23,89,2017-12-05 +user,218,Dannie,Twanda,42 +session,218,0,Chrome 28,41,2018-10-30 +session,218,1,Safari 10,82,2018-06-16 +session,218,2,Internet Explorer 7,99,2017-01-11 +session,218,3,Internet Explorer 18,42,2017-09-01 +session,218,4,Safari 42,39,2016-07-26 +user,219,Theo,Lottie,32 +session,219,0,Internet Explorer 48,45,2016-07-27 +session,219,1,Firefox 9,102,2018-01-30 +session,219,2,Chrome 44,28,2018-05-04 +session,219,3,Internet Explorer 28,46,2018-08-20 +user,220,Jesenia,Lai,81 +session,220,0,Internet Explorer 28,107,2018-11-30 +session,220,1,Firefox 49,112,2018-02-07 +user,221,Simon,Pearly,17 +session,221,0,Safari 2,99,2018-11-09 +session,221,1,Firefox 4,116,2016-10-16 +session,221,2,Firefox 46,57,2018-06-19 +session,221,3,Safari 20,53,2018-06-11 +session,221,4,Internet Explorer 38,81,2018-01-13 +session,221,5,Firefox 8,45,2017-05-09 +user,222,Eldon,Florencia,36 +session,222,0,Internet Explorer 2,92,2016-11-13 +session,222,1,Firefox 47,2,2016-11-11 +session,222,2,Chrome 25,116,2016-08-21 +session,222,3,Internet Explorer 9,51,2017-06-24 +session,222,4,Internet Explorer 45,113,2017-05-27 +session,222,5,Safari 35,53,2017-03-14 +user,223,Ben,Leisha,23 +session,223,0,Safari 11,101,2019-01-06 +session,223,1,Safari 41,100,2018-05-30 +session,223,2,Internet Explorer 13,77,2017-01-09 +session,223,3,Safari 38,50,2018-05-26 +session,223,4,Firefox 21,18,2017-09-15 +session,223,5,Safari 30,41,2017-05-05 +session,223,6,Internet Explorer 19,53,2017-09-26 +session,223,7,Firefox 38,56,2016-07-29 +session,223,8,Firefox 50,66,2017-04-27 +user,224,Daron,Marshall,64 +session,224,0,Chrome 11,85,2018-04-09 +session,224,1,Internet Explorer 17,106,2018-03-06 +session,224,2,Safari 9,41,2017-03-05 +session,224,3,Chrome 3,54,2018-08-27 +user,225,Melva,Buena,89 +session,225,0,Firefox 31,86,2017-05-18 +session,225,1,Firefox 11,25,2018-01-23 +session,225,2,Internet Explorer 46,28,2017-02-02 +session,225,3,Safari 12,69,2018-01-13 +session,225,4,Safari 18,89,2019-01-16 +session,225,5,Safari 8,40,2017-07-22 +session,225,6,Internet Explorer 28,76,2019-01-13 +session,225,7,Internet Explorer 37,61,2016-08-20 +session,225,8,Firefox 47,72,2018-04-10 +user,226,Andres,Broderick,68 +session,226,0,Safari 29,96,2016-07-13 +user,227,Ron,Lanora,93 +session,227,0,Chrome 48,106,2017-02-18 +session,227,1,Internet Explorer 15,28,2018-07-31 +user,228,Olen,Donn,31 +session,228,0,Firefox 14,35,2017-12-21 +session,228,1,Safari 16,20,2017-06-11 +session,228,2,Chrome 48,109,2017-03-07 +session,228,3,Firefox 1,32,2017-05-25 +user,229,Caroll,Kate,42 +session,229,0,Internet Explorer 41,32,2018-06-09 +session,229,1,Firefox 47,37,2018-01-22 +session,229,2,Safari 20,75,2018-04-21 +session,229,3,Safari 47,52,2017-10-09 +session,229,4,Firefox 37,96,2017-05-14 +session,229,5,Safari 38,50,2018-08-23 +session,229,6,Chrome 20,27,2018-03-27 +user,230,Shana,Hobert,79 +session,230,0,Chrome 39,33,2016-09-02 +session,230,1,Internet Explorer 23,14,2017-09-30 +session,230,2,Internet Explorer 43,55,2016-12-03 +session,230,3,Internet Explorer 41,22,2019-02-10 +session,230,4,Internet Explorer 30,113,2018-08-18 +session,230,5,Safari 4,3,2016-05-19 +session,230,6,Firefox 9,76,2017-01-09 +user,231,Phil,Moira,64 +session,231,0,Safari 42,85,2017-06-17 +session,231,1,Chrome 47,98,2016-09-28 +session,231,2,Internet Explorer 26,3,2016-12-24 +session,231,3,Firefox 24,10,2017-10-29 +session,231,4,Safari 37,22,2016-11-16 +session,231,5,Chrome 23,38,2017-06-08 +session,231,6,Chrome 7,91,2018-08-22 +session,231,7,Chrome 50,90,2017-08-24 +user,232,Efrain,Daniele,86 +session,232,0,Chrome 31,45,2017-07-24 +session,232,1,Safari 25,24,2019-02-04 +session,232,2,Safari 43,1,2018-04-14 +session,232,3,Internet Explorer 47,23,2017-08-06 +user,233,Ria,Barbera,27 +session,233,0,Internet Explorer 38,28,2017-03-14 +session,233,1,Firefox 19,62,2016-09-11 +session,233,2,Firefox 23,18,2017-11-03 +session,233,3,Firefox 13,29,2016-10-31 +session,233,4,Firefox 3,95,2018-07-09 +session,233,5,Firefox 17,18,2016-09-10 +session,233,6,Safari 26,34,2017-07-18 +session,233,7,Firefox 37,105,2016-09-13 +user,234,Percy,Tess,4 +session,234,0,Safari 2,0,2018-02-18 +session,234,1,Chrome 2,40,2017-02-09 +session,234,2,Chrome 17,65,2018-07-27 +session,234,3,Safari 24,107,2017-12-02 +session,234,4,Safari 2,77,2019-01-27 +session,234,5,Firefox 28,15,2016-08-21 +session,234,6,Safari 23,89,2016-07-13 +session,234,7,Safari 27,94,2018-10-14 +session,234,8,Safari 14,27,2017-05-17 +session,234,9,Chrome 29,11,2017-07-04 +user,235,Curtis,Eleni,16 +session,235,0,Chrome 50,117,2017-01-04 +session,235,1,Chrome 5,103,2018-03-08 +session,235,2,Chrome 2,33,2016-08-05 +session,235,3,Internet Explorer 11,53,2018-08-18 +user,236,Delmar,Chantell,3 +session,236,0,Firefox 23,16,2016-10-22 +session,236,1,Firefox 5,34,2016-11-10 +user,237,Lenora,Lynwood,78 +session,237,0,Firefox 10,63,2018-08-09 +session,237,1,Safari 37,92,2018-09-10 +session,237,2,Chrome 15,62,2018-04-09 +session,237,3,Firefox 5,7,2018-10-20 +user,238,Jamey,Ignacio,93 +session,238,0,Firefox 45,95,2017-06-11 +session,238,1,Safari 9,24,2017-10-03 +session,238,2,Firefox 24,3,2018-11-01 +session,238,3,Internet Explorer 48,99,2018-07-04 +session,238,4,Firefox 37,71,2017-10-03 +session,238,5,Firefox 38,110,2018-12-31 +session,238,6,Safari 40,108,2017-02-08 +user,239,Marvin,Freddie,7 +session,239,0,Safari 3,86,2016-05-26 +session,239,1,Safari 50,62,2018-04-05 +session,239,2,Chrome 31,78,2016-10-04 +user,240,Chance,Willa,48 +session,240,0,Chrome 37,73,2018-05-25 +session,240,1,Safari 5,99,2018-02-19 +session,240,2,Firefox 18,100,2017-12-15 +session,240,3,Firefox 10,112,2017-12-20 +session,240,4,Safari 13,91,2018-11-12 +session,240,5,Chrome 44,98,2016-11-09 +session,240,6,Internet Explorer 22,63,2016-06-21 +session,240,7,Chrome 40,74,2017-05-18 +user,241,Petrina,Carmelita,1 +session,241,0,Safari 32,75,2017-10-24 +session,241,1,Safari 30,1,2017-07-01 +session,241,2,Safari 29,17,2016-06-02 +session,241,3,Chrome 22,107,2018-08-20 +session,241,4,Chrome 24,118,2018-03-08 +session,241,5,Chrome 13,99,2017-09-29 +session,241,6,Internet Explorer 38,65,2016-11-05 +session,241,7,Safari 8,25,2018-11-24 +session,241,8,Internet Explorer 7,5,2016-11-24 +user,242,Kathrin,Clement,29 +session,242,0,Chrome 39,86,2018-01-15 +session,242,1,Firefox 49,73,2017-10-23 +session,242,2,Internet Explorer 17,61,2017-02-10 +user,243,Brooks,Theron,80 +session,243,0,Safari 47,54,2018-12-10 +session,243,1,Firefox 43,110,2016-12-29 +session,243,2,Safari 46,92,2017-05-28 +session,243,3,Internet Explorer 1,54,2017-11-03 +session,243,4,Chrome 2,98,2018-08-04 +user,244,Brain,Dewitt,78 +session,244,0,Safari 44,31,2019-02-04 +session,244,1,Internet Explorer 44,48,2016-07-22 +session,244,2,Firefox 25,70,2018-12-09 +session,244,3,Firefox 43,62,2018-09-29 +session,244,4,Safari 1,10,2016-10-15 +session,244,5,Safari 47,63,2018-03-11 +user,245,Brent,Elia,86 +session,245,0,Internet Explorer 50,116,2018-03-12 +user,246,Philip,Cecelia,17 +session,246,0,Firefox 45,43,2018-07-15 +session,246,1,Chrome 50,64,2017-08-18 +session,246,2,Chrome 8,59,2018-08-22 +user,247,Calvin,Della,90 +session,247,0,Internet Explorer 15,23,2017-01-25 +user,248,Warren,Iris,72 +session,248,0,Chrome 26,62,2017-10-18 +user,249,Isidra,Dorsey,83 +session,249,0,Internet Explorer 3,77,2018-08-10 +session,249,1,Safari 36,87,2018-11-22 +session,249,2,Firefox 9,95,2018-12-26 +session,249,3,Safari 19,39,2017-04-21 +user,250,Yen,Claudia,60 +session,250,0,Chrome 49,41,2018-07-08 +session,250,1,Internet Explorer 6,100,2017-01-28 +session,250,2,Firefox 19,93,2017-08-09 +user,251,Mora,Ha,86 +session,251,0,Internet Explorer 1,1,2018-10-30 +session,251,1,Firefox 15,95,2018-04-13 +session,251,2,Chrome 22,10,2016-05-20 +session,251,3,Safari 33,103,2018-10-02 +session,251,4,Safari 43,67,2019-01-11 +session,251,5,Firefox 24,50,2019-01-05 +session,251,6,Firefox 49,36,2016-09-21 +session,251,7,Internet Explorer 48,19,2018-01-20 +session,251,8,Safari 11,52,2017-08-08 +user,252,Dorian,Deane,15 +session,252,0,Safari 23,86,2017-04-23 +session,252,1,Internet Explorer 40,87,2017-06-14 +session,252,2,Internet Explorer 47,29,2017-07-21 +session,252,3,Chrome 27,4,2018-05-27 +session,252,4,Safari 16,0,2018-10-07 +session,252,5,Internet Explorer 26,54,2018-12-20 +session,252,6,Firefox 14,66,2017-08-05 +session,252,7,Internet Explorer 27,13,2017-01-28 +user,253,Shawn,Jaimee,79 +session,253,0,Internet Explorer 21,68,2017-01-19 +session,253,1,Internet Explorer 35,62,2017-04-29 +session,253,2,Internet Explorer 1,64,2017-12-29 +session,253,3,Chrome 36,2,2019-01-21 +session,253,4,Firefox 19,43,2018-03-10 +user,254,Cori,Divina,16 +session,254,0,Internet Explorer 30,116,2017-07-27 +session,254,1,Internet Explorer 42,74,2018-10-25 +session,254,2,Firefox 30,21,2018-12-20 +session,254,3,Firefox 13,57,2018-12-01 +session,254,4,Chrome 3,14,2018-07-16 +session,254,5,Firefox 34,99,2017-02-28 +user,255,Garret,Georgann,75 +session,255,0,Chrome 8,33,2017-11-14 +session,255,1,Chrome 43,51,2016-08-06 +session,255,2,Internet Explorer 21,20,2019-01-11 +session,255,3,Chrome 37,102,2018-11-16 +session,255,4,Safari 11,66,2016-08-27 +session,255,5,Internet Explorer 23,47,2017-10-17 +session,255,6,Internet Explorer 14,43,2019-01-11 +session,255,7,Firefox 27,60,2016-12-15 +session,255,8,Firefox 33,83,2018-08-23 +user,256,Theo,Tricia,82 +session,256,0,Internet Explorer 32,71,2017-01-25 +user,257,Libby,Lera,12 +session,257,0,Firefox 24,86,2016-12-01 +session,257,1,Safari 38,104,2017-03-21 +session,257,2,Chrome 16,47,2019-01-04 +session,257,3,Safari 14,25,2018-07-27 +session,257,4,Chrome 5,112,2018-03-27 +session,257,5,Firefox 10,43,2018-02-04 +session,257,6,Firefox 15,82,2018-05-25 +session,257,7,Chrome 29,38,2017-05-17 +session,257,8,Firefox 41,4,2018-01-09 +session,257,9,Firefox 8,96,2017-05-15 +user,258,Evalyn,Abe,39 +session,258,0,Safari 47,2,2018-09-21 +session,258,1,Safari 36,117,2017-07-31 +session,258,2,Internet Explorer 14,53,2016-12-06 +session,258,3,Internet Explorer 24,103,2018-10-07 +session,258,4,Safari 42,28,2018-05-24 +session,258,5,Internet Explorer 24,95,2018-10-15 +user,259,Alexandra,Malia,95 +session,259,0,Firefox 41,70,2017-06-13 +session,259,1,Internet Explorer 34,70,2018-12-21 +session,259,2,Firefox 13,81,2018-03-10 +session,259,3,Internet Explorer 28,38,2017-03-21 +session,259,4,Chrome 6,109,2016-05-29 +session,259,5,Internet Explorer 45,102,2018-11-22 +session,259,6,Firefox 21,8,2017-01-13 +session,259,7,Internet Explorer 45,84,2017-01-15 +user,260,Tamisha,Camelia,84 +session,260,0,Safari 25,93,2017-06-10 +session,260,1,Internet Explorer 46,110,2016-09-26 +session,260,2,Firefox 18,107,2018-04-28 +session,260,3,Chrome 28,52,2018-07-07 +session,260,4,Internet Explorer 29,98,2017-10-20 +session,260,5,Safari 14,116,2018-04-22 +session,260,6,Firefox 27,15,2017-05-30 +session,260,7,Firefox 33,111,2018-02-11 +session,260,8,Safari 23,8,2018-11-13 +session,260,9,Chrome 25,117,2017-08-12 +user,261,Walker,Gerry,71 +session,261,0,Chrome 45,61,2018-02-17 +session,261,1,Firefox 11,75,2016-11-05 +session,261,2,Internet Explorer 15,61,2018-04-29 +session,261,3,Safari 17,56,2016-12-19 +user,262,Tuan,Maire,13 +session,262,0,Firefox 15,98,2016-08-08 +session,262,1,Chrome 30,35,2017-09-09 +user,263,Elvin,Ayesha,77 +session,263,0,Firefox 43,16,2019-02-04 +session,263,1,Chrome 5,57,2017-03-26 +session,263,2,Firefox 49,66,2017-08-18 +session,263,3,Chrome 3,103,2017-12-06 diff --git a/data_large.txt.gz b/spec/support/data_large.txt.gz similarity index 100% rename from data_large.txt.gz rename to spec/support/data_large.txt.gz diff --git a/spec/support/regression_metrics.yml b/spec/support/regression_metrics.yml new file mode 100644 index 0000000..f578c52 --- /dev/null +++ b/spec/support/regression_metrics.yml @@ -0,0 +1,2 @@ +--- +:ips: 170.52 diff --git a/task-1.rb b/task-1.rb deleted file mode 100644 index 778672d..0000000 --- a/task-1.rb +++ /dev/null @@ -1,176 +0,0 @@ -# Deoptimized version of homework task - -require 'json' -require 'pry' -require 'date' -require 'minitest/autorun' - -class User - attr_reader :attributes, :sessions - - def initialize(attributes:, sessions:) - @attributes = attributes - @sessions = sessions - end -end - -def parse_user(user) - fields = user.split(',') - parsed_result = { - 'id' => fields[1], - 'first_name' => fields[2], - 'last_name' => fields[3], - 'age' => fields[4], - } -end - -def parse_session(session) - fields = session.split(',') - parsed_result = { - 'user_id' => fields[1], - 'session_id' => fields[2], - 'browser' => fields[3], - 'time' => fields[4], - 'date' => fields[5], - } -end - -def collect_stats_from_users(report, users_objects, &block) - users_objects.each do |user| - user_key = "#{user.attributes['first_name']}" + ' ' + "#{user.attributes['last_name']}" - report['usersStats'][user_key] ||= {} - report['usersStats'][user_key] = report['usersStats'][user_key].merge(block.call(user)) - end -end - -def work - file_lines = File.read('data.txt').split("\n") - - users = [] - sessions = [] - - file_lines.each do |line| - cols = line.split(',') - users = users + [parse_user(line)] if cols[0] == 'user' - sessions = sessions + [parse_session(line)] if cols[0] == 'session' - end - - # Отчёт в json - # - Сколько всего юзеров + - # - Сколько всего уникальных браузеров + - # - Сколько всего сессий + - # - Перечислить уникальные браузеры в алфавитном порядке через запятую и капсом + - # - # - По каждому пользователю - # - сколько всего сессий + - # - сколько всего времени + - # - самая длинная сессия + - # - браузеры через запятую + - # - Хоть раз использовал IE? + - # - Всегда использовал только Хром? + - # - даты сессий в порядке убывания через запятую + - - report = {} - - report[:totalUsers] = users.count - - # Подсчёт количества уникальных браузеров - uniqueBrowsers = [] - sessions.each do |session| - browser = session['browser'] - uniqueBrowsers += [browser] if uniqueBrowsers.all? { |b| b != browser } - end - - report['uniqueBrowsersCount'] = uniqueBrowsers.count - - report['totalSessions'] = sessions.count - - report['allBrowsers'] = - sessions - .map { |s| s['browser'] } - .map { |b| b.upcase } - .sort - .uniq - .join(',') - - # Статистика по пользователям - users_objects = [] - - users.each do |user| - attributes = user - user_sessions = sessions.select { |session| session['user_id'] == user['id'] } - user_object = User.new(attributes: attributes, sessions: user_sessions) - users_objects = users_objects + [user_object] - end - - report['usersStats'] = {} - - # Собираем количество сессий по пользователям - collect_stats_from_users(report, users_objects) do |user| - { 'sessionsCount' => user.sessions.count } - end - - # Собираем количество времени по пользователям - collect_stats_from_users(report, users_objects) do |user| - { 'totalTime' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.sum.to_s + ' min.' } - end - - # Выбираем самую длинную сессию пользователя - collect_stats_from_users(report, users_objects) do |user| - { 'longestSession' => user.sessions.map {|s| s['time']}.map {|t| t.to_i}.max.to_s + ' min.' } - end - - # Браузеры пользователя через запятую - collect_stats_from_users(report, users_objects) do |user| - { 'browsers' => user.sessions.map {|s| s['browser']}.map {|b| b.upcase}.sort.join(', ') } - end - - # Хоть раз использовал IE? - collect_stats_from_users(report, users_objects) do |user| - { 'usedIE' => user.sessions.map{|s| s['browser']}.any? { |b| b.upcase =~ /INTERNET EXPLORER/ } } - end - - # Всегда использовал только Chrome? - collect_stats_from_users(report, users_objects) do |user| - { 'alwaysUsedChrome' => user.sessions.map{|s| s['browser']}.all? { |b| b.upcase =~ /CHROME/ } } - end - - # Даты сессий через запятую в обратном порядке в формате iso8601 - collect_stats_from_users(report, users_objects) do |user| - { 'dates' => user.sessions.map{|s| s['date']}.map {|d| Date.parse(d)}.sort.reverse.map { |d| d.iso8601 } } - end - - File.write('result.json', "#{report.to_json}\n") -end - -class TestMe < Minitest::Test - def setup - File.write('result.json', '') - File.write('data.txt', -'user,0,Leida,Cira,0 -session,0,0,Safari 29,87,2016-10-23 -session,0,1,Firefox 12,118,2017-02-27 -session,0,2,Internet Explorer 28,31,2017-03-28 -session,0,3,Internet Explorer 28,109,2016-09-15 -session,0,4,Safari 39,104,2017-09-27 -session,0,5,Internet Explorer 35,6,2016-09-01 -user,1,Palmer,Katrina,65 -session,1,0,Safari 17,12,2016-10-21 -session,1,1,Firefox 32,3,2016-12-20 -session,1,2,Chrome 6,59,2016-11-11 -session,1,3,Internet Explorer 10,28,2017-04-29 -session,1,4,Chrome 13,116,2016-12-28 -user,2,Gregory,Santos,86 -session,2,0,Chrome 35,6,2018-09-21 -session,2,1,Safari 49,85,2017-05-22 -session,2,2,Firefox 47,17,2018-02-02 -session,2,3,Chrome 20,84,2016-11-25 -') - end - - def test_result - work - expected_result = '{"totalUsers":3,"uniqueBrowsersCount":14,"totalSessions":15,"allBrowsers":"CHROME 13,CHROME 20,CHROME 35,CHROME 6,FIREFOX 12,FIREFOX 32,FIREFOX 47,INTERNET EXPLORER 10,INTERNET EXPLORER 28,INTERNET EXPLORER 35,SAFARI 17,SAFARI 29,SAFARI 39,SAFARI 49","usersStats":{"Leida Cira":{"sessionsCount":6,"totalTime":"455 min.","longestSession":"118 min.","browsers":"FIREFOX 12, INTERNET EXPLORER 28, INTERNET EXPLORER 28, INTERNET EXPLORER 35, SAFARI 29, SAFARI 39","usedIE":true,"alwaysUsedChrome":false,"dates":["2017-09-27","2017-03-28","2017-02-27","2016-10-23","2016-09-15","2016-09-01"]},"Palmer Katrina":{"sessionsCount":5,"totalTime":"218 min.","longestSession":"116 min.","browsers":"CHROME 13, CHROME 6, FIREFOX 32, INTERNET EXPLORER 10, SAFARI 17","usedIE":true,"alwaysUsedChrome":false,"dates":["2017-04-29","2016-12-28","2016-12-20","2016-11-11","2016-10-21"]},"Gregory Santos":{"sessionsCount":4,"totalTime":"192 min.","longestSession":"85 min.","browsers":"CHROME 20, CHROME 35, FIREFOX 47, SAFARI 49","usedIE":false,"alwaysUsedChrome":false,"dates":["2018-09-21","2018-02-02","2017-05-22","2016-11-25"]}}}' + "\n" - assert_equal expected_result, File.read('result.json') - end -end