From 0b686f2cc039a873c82361f7f248ca2301ed4e1f Mon Sep 17 00:00:00 2001 From: tspurway Date: Fri, 24 Oct 2014 11:13:41 -0400 Subject: [PATCH] closes #19 fixes #17 fixes #15 Squashed commit of the following: commit 22da6a6e722d09de7cdd6084134da6c813a29f03 Author: tspurway Date: Fri Oct 24 10:46:41 2014 -0400 refactored reporting/base test cases to mitigate expensive fixture loads commit 4443d457e23a7df55b22e6616a34615fa60d7180 Author: tspurway Date: Fri Oct 24 10:24:47 2014 -0400 cleaning up some print statements commit ca9f3be0af95496689fb63af5f6d499072837cb8 Author: tspurway Date: Fri Oct 24 10:04:34 2014 -0400 added slot stats test added slot stats test commit 1e6e411dbe77b3b543463d7475679513a44304e8 Author: tspurway Date: Thu Oct 23 18:56:42 2014 -0400 added tile stats tests added tile stats tests commit ecdb2d5d48347ca0ad090fbbc2a0dc06879480fc Author: tspurway Date: Thu Oct 23 17:12:42 2014 -0400 added tile summary tests commit 360e39382350d8c2c90ac055e0071d5e784ae690 Author: tspurway Date: Thu Oct 23 11:30:02 2014 -0400 fixed up existing tests commit 2abbe5bbaf9a232876d28704c797a289f702aa30 Merge: e58194e a32d6ee Author: tspurway Date: Thu Oct 23 10:58:52 2014 -0400 Merge branch 'master' into issue-15-tile-descriptions Conflicts: tests/base.py commit e58194e39424ce14faa6db453d420aecc819124a Author: tspurway Date: Wed Oct 22 17:41:16 2014 -0400 added tiles to the fixtures and base test case - this is required because reporting joins against this table commit 0e392001d70d765085667a25d29ef4e9bbc7f021 Author: tspurway Date: Wed Oct 22 11:17:29 2014 -0400 got base.py and fixtures loading into sqlite properly commit 8d139cb09b5b7db07353ea45851b524f9bfa56fb Author: Olivier Yiptong Date: Mon Oct 20 13:24:28 2014 -0400 Closes #16: Issue 12 test ingestions Squashed commit of the following: commit a95108c6458ad340ded6ad23818f5e28431776e4 Author: Olivier Yiptong Date: Fri Oct 17 15:54:39 2014 -0400 additional test for generate_artifacts in test_ingest commit 3c1d88c91842986483419bda9b919c9203b964f9 Author: Olivier Yiptong Date: Fri Oct 17 15:39:44 2014 -0400 only load config from environment if not in test commit 792d1226c7b75ebc96775fd9598af7e04f51cbe0 Author: Olivier Yiptong Date: Fri Oct 17 15:19:46 2014 -0400 change load order to sidestep flask-testing import side-effect commit bab0381e33c55b6ad93c20a9be204f965b94e9cb Author: Olivier Yiptong Date: Fri Oct 17 15:19:23 2014 -0400 fix insert_tile query for sqlite commit bd5e81df4dc52724f92f9a42422f3d2b7b4d9c45 Author: Olivier Yiptong Date: Fri Oct 17 15:08:23 2014 -0400 build and coverage badges in README.md commit 3ef71e758fbcbc27210e40730d54cd7593e7ddde Author: Olivier Yiptong Date: Fri Oct 17 15:05:44 2014 -0400 PEP8 compliance in test_ingest.py commit 942beef33182a92e0a518794b12f5e4caceee84d Author: Olivier Yiptong Date: Fri Oct 17 15:03:05 2014 -0400 basic tests for ingest.py ingest functions commit 9174a67d898d163a581a0f3862325c29fb84b27d Merge: 9afe461 8562a73 Author: Olivier Yiptong Date: Thu Oct 16 17:02:13 2014 -0400 Merge branch 'master' into issue-12-test-ingestions commit 9afe4612baa4f3f155e7972efdc96e9fc404c076 Author: Olivier Yiptong Date: Thu Oct 16 16:41:28 2014 -0400 nose setup: move nose.cfg to the standard setup.cfg filename commit 7c970a73c422d0a784600d008c77b4aa8a2a46cd Author: tspurway Date: Tue Oct 21 12:19:11 2014 -0400 finished feature commit 8eb5ea37e5b9e4c1a49f3ecb1396fd01a0048f3d Author: tspurway Date: Mon Oct 20 19:51:01 2014 -0400 added first cut at joining tiles table (issue #15) --- integration_tests/test_query.py | 40 +- setup.py | 2 +- splice/models.py | 4 +- splice/queries.py | 141 ++- tests/api/test_reporting.py | 195 +++- tests/base.py | 20 +- tests/fixtures/impression_stats.csv | 1300 ++++++++++++++++----------- tests/fixtures/tiles.csv | 29 + tests/test_ingest.py | 14 +- 9 files changed, 1166 insertions(+), 579 deletions(-) create mode 100644 tests/fixtures/tiles.csv diff --git a/integration_tests/test_query.py b/integration_tests/test_query.py index b8752d2..0967a85 100644 --- a/integration_tests/test_query.py +++ b/integration_tests/test_query.py @@ -1,7 +1,7 @@ from splice.environment import Environment -# env = Environment.instance("integration_tests.tim_settings.DefaultConfig") -env = Environment.instance() +env = Environment.instance("integration_tests.prod_settings.DefaultConfig") +# env = Environment.instance() from splice.queries import tile_stats_weekly, slot_stats_weekly, tile_stats_monthly, slot_stats_monthly, \ tile_summary_weekly, slot_summary_weekly, tile_summary_monthly, slot_summary_monthly, \ @@ -12,33 +12,33 @@ conn = env.db.engine.connect() print "\ntile_summary_weekly" key, rval = tile_summary_weekly(conn, '2014-05-15') - for year, week, tile_id, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: - print year, week, tile_id, imps, clicks, pinned, blocked, spon, spon_link, newtabs + for x in rval: + print x print "\ntile_summary_daily" _, rval = tile_summary_daily(conn, '2014-05-15') - for year, week, tile_id, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: - print year, week, tile_id, imps, clicks, pinned, blocked, spon, spon_link, newtabs + for year, week, tile_id, title, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: + print year, week, tile_id, title, imps, clicks, pinned, blocked, spon, spon_link, newtabs print "\ntile_stats_weekly - tile_id = 2" _, rval = tile_stats_weekly(conn, '2014-05-15', '2') - for year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: - print year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs + for year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: + print year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs print "\ntile_stats_weekly - tile_id = 2, country_code = US" _, rval = tile_stats_weekly(conn, '2014-05-15', '2', 'US') - for year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: - print year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs + for year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: + print year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs print "\ntile_stats_daily - tile_id = 2" _, rval = tile_stats_daily(conn, '2014-05-15', '2') - for year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: - print year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs + for year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: + print year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs print "\ntile_stats_daily - tile_id = 2, country_code = US" _, rval = tile_stats_daily(conn, '2014-05-15', '2', 'US') - for year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: - print year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs + for year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: + print year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs print "\nslot_summary_weekly" _, rval = slot_summary_weekly(conn, '2014-05-15') @@ -57,18 +57,18 @@ print "\ntile_summary_monthly" _, rval = tile_summary_monthly(conn, '2014-05-15') - for year, week, tile_id, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: - print year, week, tile_id, imps, clicks, pinned, blocked, spon, spon_link, newtabs + for year, week, tile_id, title, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: + print year, week, tile_id, title, imps, clicks, pinned, blocked, spon, spon_link, newtabs print "\ntile_stats_monthly - tile_id = 2" _, rval = tile_stats_monthly(conn, '2014-05-15', '2') - for year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: - print year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs + for year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: + print year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs print "\ntile_stats_monthly - tile_id = 2, country_code = US" _, rval = tile_stats_monthly(conn, '2014-05-15', '2', 'US') - for year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: - print year, week, tile_id, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs + for year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs in rval: + print year, week, tile_id, title, country, locale, imps, clicks, pinned, blocked, spon, spon_link, newtabs print "\nslot_summary_monthly" _, rval = slot_summary_monthly(conn, '2014-05-15') diff --git a/setup.py b/setup.py index ca0e217..bb20b7a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="splice", - version="1.0.8", + version="1.0.9", description="Link authoring tool for " + "Firefox Directory and Enhanced Tiles", author="Mozilla", diff --git a/splice/models.py b/splice/models.py index cb1f9b5..4c336eb 100644 --- a/splice/models.py +++ b/splice/models.py @@ -62,7 +62,6 @@ class UniqueCountsDaily(db.Model): db.Column('blocked', db.Integer, nullable=False, server_default="0"), db.Column('sponsored_link', db.Integer, nullable=False, server_default="0"), db.Column('sponsored', db.Integer, nullable=False, server_default="0"), - db.Column('newtabs', db.Integer, nullable=False, server_default="0"), db.Column('position', db.Integer, nullable=False, server_default="0"), db.Column('enhanced', db.Boolean, nullable=False, server_default="false"), db.Column('locale', db.String(14), nullable=False), @@ -71,7 +70,8 @@ class UniqueCountsDaily(db.Model): db.Column('browser', db.String(64), nullable=False), db.Column('version', db.String(64), nullable=False), db.Column('device', db.String(64), nullable=False), - db.Column('year', db.Integer, nullable=False), db.Column('month', db.Integer, nullable=False), db.Column('week', db.Integer, nullable=False), + db.Column('year', db.Integer, nullable=False), + db.Column('newtabs', db.Integer, nullable=False, server_default="0"), ) diff --git a/splice/queries.py b/splice/queries.py index 3902e4f..6e70c55 100644 --- a/splice/queries.py +++ b/splice/queries.py @@ -29,27 +29,67 @@ def tile_exists(target_url, bg_color, title, type, image_uri, enhanced_image_uri return results -def _stats_query(connection, start_date, date_window, group_column_name, group_value, country_code): +def _slot_query(connection, start_date, date_window, position, country_code): dt = datetime.strptime(start_date, "%Y-%m-%d") year = dt.year if date_window == 'month': window_param = dt.month elif date_window == 'date': - window_param = dt + window_param = dt.date() else: window_param = dt.isocalendar()[1] imps = impression_stats_daily window_func_table = imps.c.get(date_window) - group_column = imps.c.get(group_column_name) # the where clause is an ANDed list of country, monthly|weekly, and year conditions - where_elements = [imps.c.year >= year, window_func_table >= window_param] + where_elements = [imps.c.year >= year, window_func_table >= window_param, imps.c.position == position] if country_code is not None: where_elements.append(imps.c.country_code == country_code) - if group_value is not None: - where_elements.append(group_column == group_value) + where_clause = and_(*where_elements) + + stmt = select( + [ + imps.c.year, + window_func_table, + imps.c.position, + imps.c.country_code, + imps.c.locale, + func.sum(imps.c.impressions), + func.sum(imps.c.clicks), + func.sum(imps.c.pinned), + func.sum(imps.c.blocked), + func.sum(imps.c.sponsored), + func.sum(imps.c.sponsored_link), + func.sum(imps.c.newtabs) + ]) \ + .where(where_clause) \ + .group_by(imps.c.year, window_func_table, imps.c.position, imps.c.country_code, imps.c.locale) \ + .order_by(imps.c.year, window_func_table, imps.c.position, imps.c.country_code, imps.c.locale) + return ('year', date_window, 'position', 'country_code', 'locale', + 'impressions', 'clicks', 'pinned', 'blocked', 'sponsored', 'sponsored_link', 'newtabs'), \ + connection.execute(stmt) + + +def _tile_query(connection, start_date, date_window, tile_id, country_code): + dt = datetime.strptime(start_date, "%Y-%m-%d") + year = dt.year + if date_window == 'month': + window_param = dt.month + elif date_window == 'date': + window_param = dt.date() + else: + window_param = dt.isocalendar()[1] + + imps = impression_stats_daily + window_func_table = imps.c.get(date_window) + + # the where clause is an ANDed list of country, monthly|weekly, and year conditions + where_elements = [imps.c.year >= year, window_func_table >= window_param, + imps.c.tile_id == tile_id, imps.c.tile_id == Tile.id] + if country_code is not None: + where_elements.append(imps.c.country_code == country_code) where_clause = and_(*where_elements) @@ -57,7 +97,8 @@ def _stats_query(connection, start_date, date_window, group_column_name, group_v [ imps.c.year, window_func_table, - group_column, + imps.c.tile_id, + Tile.title, imps.c.country_code, imps.c.locale, func.sum(imps.c.impressions), @@ -69,26 +110,68 @@ def _stats_query(connection, start_date, date_window, group_column_name, group_v func.sum(imps.c.newtabs) ]) \ .where(where_clause) \ - .group_by(imps.c.year, window_func_table, group_column, imps.c.country_code, imps.c.locale) \ - .order_by(imps.c.year, window_func_table, group_column, imps.c.country_code, imps.c.locale) - return ('year', date_window, group_column_name, 'country_code', 'locale', + .group_by(imps.c.year, window_func_table, imps.c.tile_id, Tile.title, imps.c.country_code, imps.c.locale) \ + .order_by(imps.c.year, window_func_table, imps.c.tile_id, imps.c.country_code, imps.c.locale) + return ('year', date_window, 'tile_id', 'tile_title', 'country_code', 'locale', + 'impressions', 'clicks', 'pinned', 'blocked', 'sponsored', 'sponsored_link', 'newtabs'), \ + connection.execute(stmt) + + +def _tile_summary_query(connection, start_date, date_window, country_code): + dt = datetime.strptime(start_date, "%Y-%m-%d") + year = dt.year + if date_window == 'month': + window_param = dt.month + elif date_window == 'date': + window_param = dt.date() + else: + window_param = dt.isocalendar()[1] + + imps = impression_stats_daily + window_func_table = imps.c.get(date_window) + + # the where clause is an ANDed list of country, monthly|weekly, and year conditions + where_elements = [imps.c.year >= year, window_func_table >= window_param, imps.c.tile_id == Tile.id] + if country_code is not None: + where_elements.append(imps.c.country_code == country_code) + + where_clause = and_(*where_elements) + + stmt = select( + [ + imps.c.year, + window_func_table, + imps.c.tile_id, + Tile.title, + func.sum(imps.c.impressions), + func.sum(imps.c.clicks), + func.sum(imps.c.pinned), + func.sum(imps.c.blocked), + func.sum(imps.c.sponsored), + func.sum(imps.c.sponsored_link), + func.sum(imps.c.newtabs) + ]) \ + .where(where_clause) \ + .group_by(imps.c.year, window_func_table, imps.c.tile_id, Tile.title) \ + .order_by(imps.c.year, window_func_table, imps.c.tile_id) + + return ('year', date_window, 'tile_id', 'tile_title', 'impressions', 'clicks', 'pinned', 'blocked', 'sponsored', 'sponsored_link', 'newtabs'), \ connection.execute(stmt) -def _summary_query(connection, start_date, date_window, group_column_name, country_code): +def _slot_summary_query(connection, start_date, date_window, country_code): dt = datetime.strptime(start_date, "%Y-%m-%d") year = dt.year if date_window == 'month': window_param = dt.month elif date_window == 'date': - window_param = dt + window_param = dt.date() else: window_param = dt.isocalendar()[1] imps = impression_stats_daily window_func_table = imps.c.get(date_window) - group_column = imps.c.get(group_column_name) # the where clause is an ANDed list of country, monthly|weekly, and year conditions where_elements = [imps.c.year >= year, window_func_table >= window_param] @@ -101,7 +184,7 @@ def _summary_query(connection, start_date, date_window, group_column_name, count [ imps.c.year, window_func_table, - group_column, + imps.c.position, func.sum(imps.c.impressions), func.sum(imps.c.clicks), func.sum(imps.c.pinned), @@ -111,51 +194,51 @@ def _summary_query(connection, start_date, date_window, group_column_name, count func.sum(imps.c.newtabs) ]) \ .where(where_clause) \ - .group_by(imps.c.year, window_func_table, group_column) \ - .order_by(imps.c.year, window_func_table, group_column) - return ('year', date_window, group_column_name, + .group_by(imps.c.year, window_func_table, imps.c.position) \ + .order_by(imps.c.year, window_func_table, imps.c.position) + return ('year', date_window, 'position', 'impressions', 'clicks', 'pinned', 'blocked', 'sponsored', 'sponsored_link', 'newtabs'), \ connection.execute(stmt) def tile_stats_weekly(connection, start_date, tile_id=None, country_code=None): - return _stats_query(connection, start_date, 'week', 'tile_id', tile_id, country_code) + return _tile_query(connection, start_date, 'week', tile_id, country_code) def tile_stats_monthly(connection, start_date, tile_id=None, country_code=None): - return _stats_query(connection, start_date, 'month', 'tile_id', tile_id, country_code) + return _tile_query(connection, start_date, 'month', tile_id, country_code) def tile_stats_daily(connection, start_date, tile_id=None, country_code=None): - return _stats_query(connection, start_date, 'date', 'tile_id', tile_id, country_code) + return _tile_query(connection, start_date, 'date', tile_id, country_code) def tile_summary_weekly(connection, start_date, country_code=None): - return _summary_query(connection, start_date, 'week', 'tile_id', country_code) + return _tile_summary_query(connection, start_date, 'week', country_code) def tile_summary_monthly(connection, start_date, country_code=None): - return _summary_query(connection, start_date, 'month', 'tile_id', country_code) + return _tile_summary_query(connection, start_date, 'month', country_code) def tile_summary_daily(connection, start_date, country_code=None): - return _summary_query(connection, start_date, 'date', 'tile_id', country_code) + return _tile_summary_query(connection, start_date, 'date', country_code) -def slot_stats_weekly(connection, start_date, slot_id=None, country_code=None): - return _stats_query(connection, start_date, 'week', 'position', slot_id, country_code) +def slot_stats_weekly(connection, start_date, position=None, country_code=None): + return _slot_query(connection, start_date, 'week', position, country_code) -def slot_stats_monthly(connection, start_date, slot_id=None, country_code=None): - return _stats_query(connection, start_date, 'month', 'position', slot_id, country_code) +def slot_stats_monthly(connection, start_date, position=None, country_code=None): + return _slot_query(connection, start_date, 'month', position, country_code) def slot_summary_weekly(connection, start_date, country_code=None): - return _summary_query(connection, start_date, 'week', 'position', country_code) + return _slot_summary_query(connection, start_date, 'week', country_code) def slot_summary_monthly(connection, start_date, country_code=None): - return _summary_query(connection, start_date, 'month', 'position', country_code) + return _slot_summary_query(connection, start_date, 'month', country_code) def insert_tile(target_url, bg_color, title, type, image_uri, enhanced_image_uri, locale, *args, **kwargs): diff --git a/tests/api/test_reporting.py b/tests/api/test_reporting.py index 16512fc..06b478f 100644 --- a/tests/api/test_reporting.py +++ b/tests/api/test_reporting.py @@ -1,21 +1,184 @@ -""" -import ujson +from StringIO import StringIO from flask import url_for -from nose.tools import ( - assert_equals, - assert_is_none, -) -""" +from nose.tools import assert_equal from tests.base import BaseTestCase +import csv +from splice.environment import Environment +from datetime import datetime class TestReporting(BaseTestCase): - pass - # def test_tile_weekly(self): - # """ - # /tile_stats/weekly// - # """ - # url = url_for('api.report.path_tile_stats_weekly', start_date='2014-05-15', tile_id='2') - # response = self.client.get(url) - # - # assert_equals(response.status_code, 200) + + def setUp(self): + super(TestReporting, self).setUp() + + def values(fd): + for line in fd: + row = line.split(',') + # sqlalchemy doesn't like date strings.... + row[1] = datetime.strptime(row[1], "%Y-%m-%d") + yield row + + # load db + from splice.models import impression_stats_daily + conn = Environment.instance().db.engine.connect() + with open(self.get_fixture_path('impression_stats.csv')) as fd: + for row in values(fd): + ins = impression_stats_daily.insert().values(row) + conn.execute(ins) + + def test_tile_summary_weekly(self): + """ + /tile_summary/weekly/ + """ + url = url_for('api.report.path_tile_summary_weekly', + start_date='2014-05-15', + headers='false') + response = self.client.get(url) + assert_equal(response.status_code, 200) + + outtext = response.response.next() + results = csv.reader(StringIO(outtext)) + + f1 = False + f2 = False + f3 = False + for row in results: + id = tuple(int(r) for r in row[:3]) + vals = tuple(int(r) for r in row[4:]) + if id == (2014, 36, 11): + assert_equal(vals, (1, 0, 0, 0, 0, 0, 0)) + f1 = True + elif id == (2014, 39, 12): + assert_equal(vals, (230, 2, 0, 1, 0, 0, 0)) + f2 = True + elif id == (2014, 40, 15): + assert_equal(vals, (2162, 2, 0, 12, 0, 0, 0)) + f3 = True + + assert(f1 and f2 and f3) + + def test_tile_summary_daily(self): + """ + /tile_summary/daily// + """ + url = url_for('api.report.path_tile_summary_daily', + start_date='2014-10-15', + headers='false', + country_code='US') + response = self.client.get(url) + assert_equal(response.status_code, 200) + + outtext = response.response.next() + results = csv.reader(StringIO(outtext)) + + f1 = False + f2 = False + f3 = False + for row in results: + id = tuple(row[:3]) + vals = tuple(row[4:]) + if id == ('2014', '2014-09-26', '15'): + f1 = True + elif id == ('2014', '2014-10-16', '18'): + assert_equal(vals, ('259', '0', '0', '0', '0', '0', '0')) + f2 = True + elif id == ('2014', '2014-10-22', '19'): + assert_equal(vals, ('4', '0', '0', '0', '0', '0', '0')) + f3 = True + + assert(f2 and f3) + assert(not f1) + + def test_slot_summary_weekly(self): + """ + /tile_summary/daily// + """ + url = url_for('api.report.path_slot_summary_weekly', + start_date='2014-10-10', + headers='false', + country_code='US') + response = self.client.get(url) + assert_equal(response.status_code, 200) + + outtext = response.response.next() + results = csv.reader(StringIO(outtext)) + + f1 = False + f2 = False + f3 = False + for row in results: + id = tuple(row[:3]) + vals = tuple(row[3:]) + if id == ('2014', '40', '12'): + f1 = True + elif id == ('2014', '42', '7'): + assert_equal(vals, ('259', '0', '0', '0', '0', '0', '0')) + f2 = True + elif id == ('2014', '43', '4'): + assert_equal(vals, ('4', '0', '0', '0', '0', '0', '0')) + f3 = True + + assert(f2 and f3) + assert(not f1) + + def test_tile_stats_daily(self): + """ + /tile_stats/daily// + """ + url = url_for('api.report.path_tile_stats_daily', + start_date='2014-10-20', + headers='false', + tile_id=19) + response = self.client.get(url) + assert_equal(response.status_code, 200) + + outtext = response.response.next() + results = csv.reader(StringIO(outtext)) + + f1 = False + f2 = False + f3 = False + for row in results: + id = tuple(row[:6]) + vals = tuple(row[6:]) + if id == ('2014', '2014-09-24', '19', "Firefox Marketplace", 'GB', 'en-US'): + f1 = True + elif id == ('2014', '2014-10-20', '19', "Firefox Marketplace", 'ID', 'en-US'): + assert_equal(vals, ('314', '0', '0', '0', '0', '0', '0')) + f2 = True + elif id == ('2014', '2014-10-23', '19', "Firefox Marketplace", 'RS', 'en-US'): + assert_equal(vals, ('2', '0', '0', '0', '0', '0', '0')) + f3 = True + + assert(f2 and f3) + assert(not f1) + + def test_tile_stats_monthly(self): + """ + /tile_stats/monthly/// + """ + url = url_for('api.report.path_tile_stats_monthly', + start_date='2014-09-20', + headers='false', + country_code='PH', + tile_id=15) + response = self.client.get(url) + assert_equal(response.status_code, 200) + + outtext = response.response.next() + results = csv.reader(StringIO(outtext)) + + f1 = False + f2 = False + for row in results: + id = tuple(row[:6]) + vals = tuple(row[6:]) + if id == ('2014', '9', '15', "Firefox for Android", 'PH', 'en-US'): + assert_equal(vals, ('1651', '1', '0', '14', '0', '0', '0')) + f1 = True + elif id == ('2014', '10', '15', "Firefox for Android", 'PH', 'en-US'): + f2 = True + + assert(f1) + assert(f2) diff --git a/tests/base.py b/tests/base.py index 22415ec..ae39f11 100644 --- a/tests/base.py +++ b/tests/base.py @@ -20,14 +20,20 @@ def setUp(self): self.create_app() self.env.db.create_all() - def values(fd): + def tile_values(fd): for line in fd: - yield line.split(',') - - # load db - from splice.models import impression_stats_daily - with open(self.get_fixture_path('impression_stats.csv')) as fd: - impression_stats_daily.insert().values(values(fd)) + row = line.split(',') + yield dict(zip( + ('id', 'target_url', 'bg_color', 'title', 'type', 'image_uri', 'enhanced_image_uri', 'locale'), + row)) + + from splice.models import Tile + session = Environment.instance().db.session + with open(self.get_fixture_path('tiles.csv')) as fd: + for row in tile_values(fd): + tile = Tile(**row) + session.add(tile) + session.commit() def tearDown(self): self.env.db.session.remove() diff --git a/tests/fixtures/impression_stats.csv b/tests/fixtures/impression_stats.csv index 0df5c78..630481b 100644 --- a/tests/fixtures/impression_stats.csv +++ b/tests/fixtures/impression_stats.csv @@ -1,500 +1,800 @@ -3,2014-08-25,1,0,0,0,0,0,0,en-US,FR,Linux,Firefox,34.0,Other -6,2014-08-26,10,0,0,0,0,0,0,en-US,PE,"Windows 7",Firefox,34.0,Other -6,2014-08-26,3,0,0,0,0,0,0,en-US,SA,"Mac OS X",Firefox,34.0,Other -7,2014-08-26,5,0,0,0,0,0,0,en-US,BG,"Windows 7",Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,SA,Windows,Firefox,34.0,Other -5,2014-08-26,0,1,0,0,0,0,1,en-US,US,Linux,Firefox,34.0,Other -1,2014-08-26,3,0,0,0,0,0,0,en-US,RO,Windows,Firefox,34.0,Other -10,2014-08-26,34,0,0,0,0,0,0,en-US,DE,Windows,Firefox,34.0,Other -5,2014-08-26,5,0,0,0,0,0,0,en-US,GB,"Windows XP",Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,ES,"Windows 7",Firefox,34.0,Other -6,2014-08-26,3,0,0,0,0,0,0,en-US,RO,Windows,Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,RS,Windows,Firefox,34.0,Other -8,2014-08-26,11,0,0,0,0,0,0,en-US,GR,Windows,Firefox,34.0,Other -1,2014-08-25,37,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,34.0,Other -1,2014-08-26,1,0,0,0,0,0,0,en-US,LT,Linux,Firefox,34.0,Other -2,2014-08-26,5,0,0,0,0,0,0,en-US,IN,"Windows 8",Firefox,34.0,Other -3,2014-08-26,3,0,0,0,0,0,0,en-US,BY,Windows,Firefox,34.0,Other -4,2014-08-26,4,0,0,0,0,0,0,en-US,BE,"Windows 7",Firefox,34.0,Other -4,2014-08-26,16,0,0,0,0,0,0,en-US,RO,Linux,Firefox,34.0,Other -7,2014-08-26,17,0,0,0,0,0,0,en-US,NL,Linux,Firefox,34.0,Other -2,2014-08-26,0,1,0,0,0,0,1,en-US,PH,Windows,Firefox,34.0,Other -10,2014-08-25,1,0,0,0,0,0,0,en-US,PL,Linux,Firefox,34.0,Other -1,2014-08-26,4,0,0,0,0,0,0,en-US,IN,Linux,Firefox,34.0,Other -10,2014-08-26,5,0,0,0,0,0,0,en-US,CA,"Mac OS X",Firefox,34.0,Other -2,2014-08-26,12,0,0,1,0,0,0,en-US,EG,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,PT,"Windows 8",Firefox,34.0,Other -5,2014-08-26,3,0,0,0,0,0,0,en-US,SI,Windows,Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,SA,Windows,Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,PK,Windows,Firefox,34.0,Other -10,2014-08-26,6,0,0,0,0,0,0,en-US,IN,"Windows 8",Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,RU,"Windows 7",Firefox,34.0,Other -8,2014-08-26,4,0,0,0,0,0,0,en-US,HR,Windows,Firefox,34.0,Other -4,2014-08-26,0,1,0,0,0,0,3,en-US,US,"Windows 7",Firefox,34.0,Other -2,2014-08-25,2,0,0,0,0,0,0,en-US,US,"Windows 2000",Firefox,34.0,Other -10,2014-08-26,4,0,0,0,0,0,0,en-US,DE,"Windows XP",Firefox,34.0,Other -10,2014-08-26,8,0,0,0,0,0,0,en-US,FR,Linux,Firefox,34.0,Other -3,2014-08-26,3,0,0,0,0,0,0,en-US,CL,"Windows 7",Firefox,34.0,Other -3,2014-08-26,12,0,0,0,0,0,0,en-US,ID,"Windows 7",Firefox,34.0,Other -3,2014-08-26,9,0,0,0,0,0,0,en-US,MW,"Windows 7",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,NL,Windows,Firefox,34.0,Other -2,2014-08-26,8,0,0,0,0,0,0,en-US,NL,"Mac OS X",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,SA,Windows,Firefox,34.0,Other -8,2014-08-26,3,0,0,0,0,0,0,en-US,ID,"Windows Vista",Firefox,34.0,Other -2,2014-08-26,2,0,0,0,0,0,0,en-US,CZ,"Windows 7",Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,RS,Windows,Firefox,34.0,Other -3,2014-08-26,2,0,0,0,0,0,0,en-US,ZA,"Windows 7",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,BD,"Windows 8",Firefox,34.0,Other -6,2014-08-26,4,0,0,0,0,0,0,en-US,IN,Linux,Firefox,34.0,Other -7,2014-08-26,3,0,0,0,0,0,0,en-US,BY,Windows,Firefox,34.0,Other -9,2014-08-26,7,0,0,0,0,0,0,en-US,TR,Windows,Firefox,34.0,Other -10,2014-08-25,37,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,34.0,Other -1,2014-08-26,8,0,0,0,0,0,0,en-US,NL,"Mac OS X",Firefox,34.0,Other -4,2014-08-26,487,0,0,0,0,0,0,en-US,US,"Windows XP",Firefox,34.0,Other -6,2014-08-26,4,0,0,0,0,0,0,en-US,AT,"Windows 7",Firefox,34.0,Other -9,2014-08-26,1,0,0,0,0,0,0,en-US,AE,"Windows 7",Firefox,34.0,Other -9,2014-08-26,6,0,0,0,0,0,0,en-US,GB,Linux,Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,MX,"Windows 8",Firefox,34.0,Other -3,2014-08-22,0,0,0,0,0,1,3,en-US,US,"Mac OS X",Firefox,34.0,Other -10,2014-08-26,4,0,0,0,0,0,0,en-US,MA,Linux,Firefox,34.0,Other -5,2014-08-26,3,0,0,0,0,0,0,en-US,FR,Linux,Firefox,34.0,Other -8,2014-08-26,10,0,0,0,0,0,0,en-US,FR,"Windows 7",Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,IT,"Windows 7",Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,PL,Windows,Firefox,34.0,Other -6,2014-08-26,6,0,0,0,0,0,0,en-US,TH,Windows,Firefox,34.0,Other -8,2014-08-26,6,0,0,0,0,0,0,en-US,RU,FreeBSD,Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,SG,"Mac OS X",Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,ID,"Windows XP",Firefox,34.0,Other -9,2014-08-26,3,0,0,0,0,0,0,en-US,RO,Windows,Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,SE,Windows,Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,PS,"Windows 7",Firefox,34.0,Other -4,2014-08-26,8,0,0,0,0,0,0,en-US,SE,"Windows 7",Firefox,34.0,Other -6,2014-08-26,38,0,0,0,0,0,0,en-US,DE,Windows,Firefox,34.0,Other -7,2014-08-26,3,0,0,0,0,0,0,en-US,ID,"Windows Vista",Firefox,34.0,Other -8,2014-08-26,0,0,0,1,0,0,11,en-US,LT,"Windows 7",Firefox,34.0,Other -8,2014-08-25,2,0,0,0,0,0,0,en-US,US,"Windows 2000",Firefox,34.0,Other -1,2014-08-26,6,0,0,0,0,0,0,en-US,GB,"Windows XP",Firefox,34.0,Other -1,2014-08-26,4,0,0,0,0,0,0,en-US,PL,Linux,Firefox,34.0,Other -1,2014-08-26,3,0,0,0,0,0,0,en-US,SE,"Windows 7",Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,SI,"Windows 7",Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,SD,"Windows 7",Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,BR,Linux,Firefox,34.0,Other -7,2014-08-26,11,0,0,0,0,0,0,en-US,PL,"Windows 7",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,ZA,"Windows 7",Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,NO,"Windows 7",Firefox,34.0,Other -10,2014-08-26,12,0,0,0,0,0,0,en-US,EG,"Windows 7",Firefox,34.0,Other -4,2014-08-26,5,0,0,0,0,0,0,en-US,MK,"Windows 7",Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,SK,"Windows 7",Firefox,34.0,Other -1,2014-08-26,4,0,0,0,0,0,0,en-US,UA,"Windows 7",Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,PL,"Windows 8",Firefox,34.0,Other -5,2014-08-26,1,0,0,0,0,0,0,en-US,SK,Windows,Firefox,34.0,Other -7,2014-08-26,3,0,0,0,0,0,0,en-US,SI,"Windows 7",Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,ID,Windows,Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,ES,"Windows 7",Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,PH,Windows,Firefox,34.0,Other -10,2014-08-26,9,0,0,0,0,0,0,en-US,BR,Windows,Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,PT,"Windows 8",Firefox,34.0,Other -3,2014-08-26,2,0,0,0,0,0,0,en-US,MY,Windows,Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,RU,Linux,Firefox,34.0,Other -6,2014-08-26,4,0,0,0,0,0,0,en-US,RU,Windows,Firefox,34.0,Other -7,2014-08-26,6,0,0,0,0,0,0,en-US,GB,"Windows XP",Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,PK,Windows,Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,DK,"Windows 7",Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,ES,"Windows XP",Firefox,34.0,Other -9,2014-08-26,6,0,0,0,0,0,0,en-US,IN,"Windows 8",Firefox,34.0,Other -4,2014-08-26,0,1,0,0,0,0,3,en-US,GB,Linux,Firefox,34.0,Other -5,2014-08-26,36,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,JP,Linux,Firefox,34.0,Other -6,2014-08-26,5,0,0,0,0,0,0,en-US,PT,"Windows 7",Firefox,34.0,Other -9,2014-08-26,4,0,0,0,0,0,0,en-US,AT,"Windows 7",Firefox,34.0,Other -1,2014-08-26,1950,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,34.0,Other -2,2014-08-26,1,0,0,0,0,0,0,en-US,DK,"Windows 7",Firefox,34.0,Other -2,2014-08-26,6,0,0,0,0,0,0,en-US,PH,Windows,Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,JP,Linux,Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,CA,"Windows 8",Firefox,34.0,Other -8,2014-08-26,6,0,0,0,0,0,0,en-US,TH,Windows,Firefox,34.0,Other -3,2014-08-26,0,0,0,1,0,0,7,en-US,TH,"Windows 7",Firefox,34.0,Other -2,2014-08-26,1,0,0,0,0,0,0,en-US,EG,"Windows XP",Firefox,34.0,Other -6,2014-08-26,5,0,0,0,0,0,0,en-US,JP,Windows,Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,LK,Windows,Firefox,34.0,Other -7,2014-08-26,3,0,0,0,0,0,0,en-US,TR,"Windows 7",Firefox,34.0,Other -9,2014-08-26,1886,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -2,2014-08-26,0,1,0,0,0,0,2,en-US,ZA,"Windows 7",Firefox,34.0,Other -9,2014-08-26,0,0,0,0,0,1,6,en-US,CA,"Mac OS X",Firefox,34.0,Other -1,2014-08-21,2,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,34.0,Other -8,2014-08-25,4,0,0,0,0,0,0,en-US,CA,Linux,Firefox,34.0,Other -1,2014-08-26,16,0,0,0,0,0,0,en-US,BR,"Windows 7",Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,VN,"Windows 7",Firefox,34.0,Other -3,2014-08-26,2,0,0,0,0,0,0,en-US,CH,Windows,Firefox,34.0,Other -3,2014-08-26,17,0,0,0,0,0,0,en-US,NL,Linux,Firefox,34.0,Other -3,2014-08-26,6,0,0,0,0,0,0,en-US,VE,Linux,Firefox,34.0,Other -4,2014-08-26,6,0,0,0,0,0,0,en-US,TH,Windows,Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,AR,"Windows 7",Firefox,34.0,Other -7,2014-08-26,5,0,0,0,0,0,0,en-US,EG,Windows,Firefox,34.0,Other -3,2014-08-26,0,0,0,0,0,1,2,en-US,DE,Linux,Firefox,34.0,Other -1,2014-08-26,6,2,0,0,0,0,0,en-US,GB,"Windows 7",Firefox,34.0,Other -10,2014-08-26,4,0,0,0,0,0,0,en-US,AT,"Windows 7",Firefox,34.0,Other -10,2014-08-26,1131,0,0,0,0,0,0,en-US,US,Windows,Firefox,34.0,Other -2,2014-08-26,1,0,0,0,0,0,0,en-US,SA,Windows,Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,DK,"Windows 7",Firefox,34.0,Other -8,2014-08-26,10,0,0,0,0,0,0,en-US,PE,"Windows 7",Firefox,34.0,Other -9,2014-08-26,1,0,0,0,0,0,0,en-US,CO,Windows,Firefox,34.0,Other -3,2014-08-22,0,0,0,0,1,3,2,en-US,US,"Mac OS X",Firefox,33.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,NL,Windows,Firefox,34.0,Other -3,2014-08-26,2,0,0,0,0,0,0,en-US,NO,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,HU,Windows,Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,VN,"Windows 7",Firefox,34.0,Other -9,2014-08-25,1,0,0,0,0,0,0,en-US,FR,Linux,Firefox,34.0,Other -1,2014-08-26,1,0,0,0,0,0,0,en-US,AE,"Windows 7",Firefox,34.0,Other -1,2014-08-26,5,0,0,0,0,0,0,en-US,PT,"Windows 7",Firefox,34.0,Other -10,2014-08-26,17,0,0,0,0,0,0,en-US,IN,Windows,Firefox,34.0,Other -2,2014-08-26,3,0,0,0,0,0,0,en-US,TH,Windows,Firefox,34.0,Other -3,2014-08-26,4,0,0,0,0,0,0,en-US,PL,Linux,Firefox,34.0,Other -5,2014-08-26,4,0,0,0,0,0,0,en-US,US,"Windows 8",Firefox,34.0,Other -6,2014-08-26,4,0,0,0,0,0,0,en-US,MA,Linux,Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,SG,"Mac OS X",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,LT,Linux,Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,BR,Linux,Firefox,34.0,Other -2,2014-08-26,12,0,0,1,0,0,0,en-US,IN,Windows,Firefox,34.0,Other -2,2014-08-26,158,0,0,0,0,0,0,en-US,US,"Windows Vista",Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,NL,Windows,Firefox,34.0,Other -6,2014-08-26,10,0,0,0,0,0,0,en-US,FR,Windows,Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,SA,Windows,Firefox,34.0,Other -7,2014-08-26,25,0,0,0,0,0,0,en-US,DE,Linux,Firefox,34.0,Other -8,2014-08-26,4,0,0,0,0,0,0,en-US,DE,"Windows 8",Firefox,34.0,Other -9,2014-08-26,5,0,0,0,0,0,0,en-US,JP,"Windows 7",Firefox,34.0,Other -3,2014-08-26,6,0,0,0,0,0,0,en-US,PH,Windows,Firefox,34.0,Other -4,2014-08-26,4,0,0,0,0,0,0,en-US,AT,"Windows 7",Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,MX,"Windows 8",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,SK,"Windows 7",Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,BE,"Mac OS X",Firefox,34.0,Other -8,2014-08-26,5,0,0,0,0,0,0,en-US,BG,"Windows 7",Firefox,34.0,Other -10,2014-08-25,4,0,0,0,0,0,0,en-US,CA,Linux,Firefox,34.0,Other -3,2014-08-25,4,0,0,0,0,0,0,en-US,CA,Linux,Firefox,34.0,Other -1,2014-08-26,1,0,0,0,0,0,0,en-US,EE,Windows,Firefox,34.0,Other -1,2014-08-26,8,0,0,0,0,0,0,en-US,FR,"Windows 7",Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,TR,"Windows 7",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,EE,Windows,Firefox,34.0,Other -9,2014-08-26,17,0,0,0,0,0,0,en-US,GB,"Windows 7",Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,RO,"Windows 7",Firefox,34.0,Other -9,2014-08-26,158,0,0,0,0,0,0,en-US,US,"Windows Vista",Firefox,34.0,Other -2,2014-08-26,0,1,0,0,0,0,1,en-US,FI,"Windows 7",Firefox,34.0,Other -1,2014-08-25,53,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -3,2014-08-26,5,0,0,0,0,0,0,en-US,MK,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,CO,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,HU,"Windows 7",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,CR,"Windows 7",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,DZ,"Windows 8",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,ID,"Windows XP",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,JO,"Windows 7",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,PK,Windows,Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,VE,Linux,Firefox,34.0,Other -1,2014-08-26,13,0,0,0,0,0,0,en-US,TR,Windows,Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,PE,"Windows 8",Firefox,34.0,Other -5,2014-08-26,3,0,0,0,0,0,0,en-US,NL,"Windows 7",Firefox,34.0,Other -6,2014-08-26,4,0,0,0,0,0,0,en-US,HR,Windows,Firefox,34.0,Other -7,2014-08-26,158,0,0,0,0,0,0,en-US,US,"Windows Vista",Firefox,34.0,Other -9,2014-08-26,5,0,0,0,0,0,0,en-US,MY,"Windows 7",Firefox,34.0,Other -1,2014-08-26,1,0,0,0,0,0,0,en-US,LT,"Windows 7",Firefox,34.0,Other -10,2014-08-26,5,0,0,0,0,0,0,en-US,EG,Windows,Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,ZA,"Windows 7",Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,PT,"Windows 8",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,BD,Windows,Firefox,34.0,Other -7,2014-08-26,6,0,0,0,0,0,0,en-US,IN,"Windows 8",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,SG,"Mac OS X",Firefox,34.0,Other -8,2014-08-26,3,0,0,0,0,0,0,en-US,UA,"Windows 7",Firefox,34.0,Other -9,2014-08-26,5,0,0,0,0,0,0,en-US,SY,"Windows 7",Firefox,34.0,Other -1,2014-08-26,1,0,0,0,0,0,0,en-US,CO,Windows,Firefox,34.0,Other -3,2014-08-26,2,0,0,0,0,0,0,en-US,ES,"Windows XP",Firefox,34.0,Other -3,2014-08-26,3,0,0,0,0,0,0,en-US,ID,"Windows 8",Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,ID,"Windows XP",Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,CO,"Windows 7",Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,TH,"Windows 8",Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,NA,Windows,Firefox,34.0,Other -4,2014-08-26,34,0,0,0,0,0,0,en-US,DE,"Windows 7",Firefox,34.0,Other -5,2014-08-26,14,0,0,0,0,0,0,en-US,US,"Windows 7",Firefox,31.0,Other -6,2014-08-26,9,0,0,0,0,0,0,en-US,PK,"Windows 7",Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,PK,"Windows XP",Firefox,34.0,Other -6,2014-08-26,3,0,0,0,0,0,0,en-US,TR,"Windows 7",Firefox,34.0,Other -7,2014-08-26,5,0,0,0,0,0,0,en-US,LT,"Windows 7",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,PL,Windows,Firefox,34.0,Other -8,2014-08-26,487,0,0,0,0,0,0,en-US,US,"Windows XP",Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,LT,Linux,Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,CO,Windows,Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,ES,"Windows 7",Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,JP,"Windows 7",Firefox,34.0,Other -5,2014-08-26,1,0,0,0,0,0,0,en-US,RU,"Windows 7",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,PK,"Windows 8",Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,PK,Windows,Firefox,34.0,Other -9,2014-08-26,1020,0,0,0,0,0,0,en-US,US,"Windows 7",Firefox,34.0,Other -10,2014-08-26,2,0,0,0,0,0,0,en-US,CZ,"Windows 7",Firefox,34.0,Other -2,2014-08-26,2,0,0,0,0,0,0,en-US,VN,"Windows 7",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,CH,Windows,Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,RS,Windows,Firefox,34.0,Other -9,2014-08-26,11,0,0,0,0,0,0,en-US,EG,"Windows 7",Firefox,34.0,Other -1,2014-08-26,1,0,0,0,0,0,0,en-US,TR,"Windows 8",Firefox,34.0,Other -10,2014-08-26,2,0,0,0,0,0,0,en-US,SG,"Mac OS X",Firefox,34.0,Other -2,2014-08-26,5,0,0,0,0,0,0,en-US,EG,Windows,Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,PL,"Windows 8",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,GB,"Mac OS X",Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,LV,Windows,Firefox,34.0,Other -10,2014-08-26,2,0,0,0,0,0,0,en-US,MY,Windows,Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,RS,Windows,Firefox,34.0,Other -2,2014-08-26,485,0,0,0,0,0,0,en-US,US,"Windows XP",Firefox,34.0,Other -4,2014-08-26,18,0,0,0,0,0,0,en-US,IN,Windows,Firefox,34.0,Other -9,2014-08-26,8,0,0,0,0,0,0,en-US,FR,Linux,Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,LK,Windows,Firefox,34.0,Other -9,2014-08-26,3,0,0,0,0,0,0,en-US,SE,"Windows 7",Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,GB,"Mac OS X",Firefox,34.0,Other -3,2014-08-26,4,0,0,0,0,0,0,en-US,BE,"Windows 7",Firefox,34.0,Other -4,2014-08-26,4,0,0,0,0,0,0,en-US,HR,"Windows 7",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,IT,"Windows 7",Firefox,34.0,Other -7,2014-08-26,5,0,0,0,0,0,0,en-US,CA,"Mac OS X",Firefox,34.0,Other -8,2014-08-26,4,0,0,0,0,0,0,en-US,GB,Windows,Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,PL,Windows,Firefox,34.0,Other -5,2014-08-25,20,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -1,2014-08-26,4,0,0,0,0,0,0,en-US,HK,"Windows 7",Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,HU,"Windows 7",Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,SE,Windows,Firefox,34.0,Other -8,2014-08-26,9,0,0,0,0,0,0,en-US,BR,Windows,Firefox,34.0,Other -9,2014-08-26,1,0,0,0,0,0,0,en-US,ID,Windows,Firefox,34.0,Other -9,2014-08-26,5,0,0,0,0,0,0,en-US,MK,"Windows 7",Firefox,34.0,Other -8,2014-08-25,1,0,0,0,0,0,0,en-US,FR,Linux,Firefox,34.0,Other -2,2014-08-26,2,0,0,0,0,0,0,en-US,RU,"Windows 7",Firefox,34.0,Other -3,2014-08-26,25,0,0,0,0,0,0,en-US,DE,Linux,Firefox,34.0,Other -3,2014-08-26,1950,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,MY,"Windows 8",Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,CR,"Windows 7",Firefox,34.0,Other -8,2014-08-26,5,0,0,0,0,0,0,en-US,RO,"Windows 7",Firefox,34.0,Other -4,2014-08-25,1,0,0,0,0,0,0,en-US,PL,Linux,Firefox,34.0,Other -1,2014-08-26,1129,0,0,0,0,0,0,en-US,US,Windows,Firefox,34.0,Other -9,2014-08-26,1,0,0,0,0,0,0,en-US,RS,"Windows 8",Firefox,34.0,Other -1,2014-08-26,7,0,0,0,0,0,0,en-US,CA,"Windows 8",Firefox,34.0,Other -10,2014-08-26,7,0,0,0,0,0,0,en-US,CH,"Windows 7",Firefox,34.0,Other -3,2014-08-26,4,0,0,0,0,0,0,en-US,MA,Linux,Firefox,34.0,Other -3,2014-08-26,3,0,0,0,0,0,0,en-US,TR,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,AL,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,BD,Windows,Firefox,34.0,Other -6,2014-08-26,3,0,0,0,0,0,0,en-US,ID,"Windows Vista",Firefox,34.0,Other -6,2014-08-26,4,0,0,0,0,0,0,en-US,UA,"Windows 7",Firefox,34.0,Other -9,2014-08-26,1,0,0,0,0,0,0,en-US,DK,"Windows 7",Firefox,34.0,Other -1,2014-08-26,4,0,0,0,0,0,0,en-US,GR,Windows,Firefox,34.0,Other -3,2014-08-26,4,0,0,0,0,0,0,en-US,RU,Windows,Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,RU,Linux,Firefox,34.0,Other -10,2014-08-26,4,0,0,0,0,0,0,en-US,AT,Windows,Firefox,34.0,Other -2,2014-08-26,2,0,0,0,0,0,0,en-US,BR,Linux,Firefox,34.0,Other -2,2014-08-26,1021,0,0,0,0,0,0,en-US,US,"Windows 7",Firefox,34.0,Other -6,2014-08-26,12,0,0,0,0,0,0,en-US,ID,"Windows 7",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,MX,"Windows 7",Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,VN,"Windows 7",Firefox,34.0,Other -7,2014-08-26,1886,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -9,2014-08-26,4,0,0,0,0,0,0,en-US,HK,"Windows 7",Firefox,34.0,Other -2,2014-08-26,4,0,0,0,0,0,0,en-US,UA,"Windows 7",Firefox,34.0,Other -3,2014-08-26,5,0,0,0,0,0,0,en-US,BG,"Windows 7",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,ES,"Windows XP",Firefox,34.0,Other -8,2014-08-26,5,0,0,0,0,0,0,en-US,JP,Windows,Firefox,34.0,Other -9,2014-08-26,1,0,0,0,0,0,0,en-US,CO,"Windows 7",Firefox,34.0,Other -9,2014-08-26,0,1,0,0,0,0,14,en-US,LT,"Windows 7",Firefox,34.0,Other -10,2014-08-22,2,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,33.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,CL,"Windows 7",Firefox,34.0,Other -10,2014-08-26,2,0,0,0,0,0,0,en-US,ES,"Windows 7",Firefox,34.0,Other -10,2014-08-26,3,0,0,0,0,0,0,en-US,PT,Linux,Firefox,34.0,Other -7,2014-08-26,11,0,0,0,0,0,0,en-US,EG,"Windows 7",Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,SD,"Windows 7",Firefox,34.0,Other -10,2014-08-26,3,0,0,0,0,0,0,en-US,UA,"Windows 7",Firefox,34.0,Other -2,2014-08-26,2,0,0,0,0,0,0,en-US,ID,"Windows XP",Firefox,34.0,Other -3,2014-08-26,4,0,0,0,0,0,0,en-US,DE,"Windows XP",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,MX,"Windows 8",Firefox,34.0,Other -8,2014-08-26,15,0,0,0,0,0,0,en-US,IN,Windows,Firefox,34.0,Other -8,2014-08-26,3,0,0,0,0,0,0,en-US,SA,"Mac OS X",Firefox,34.0,Other -3,2014-08-25,1,0,0,0,0,0,0,en-US,DE,"Mac OS X",Firefox,34.0,Other -3,2014-08-26,2,0,0,0,0,0,0,en-US,PT,"Windows 7",Firefox,34.0,Other -3,2014-08-26,16,0,0,0,0,0,0,en-US,RO,Linux,Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,ES,"Windows XP",Firefox,34.0,Other -7,2014-08-26,9,0,0,0,0,0,0,en-US,BR,"Windows 7",Firefox,34.0,Other -7,2014-08-26,4,0,0,0,0,0,0,en-US,MW,"Windows 7",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,PT,"Windows 8",Firefox,34.0,Other -8,2014-08-26,14,0,0,0,0,0,0,en-US,GB,"Windows 7",Firefox,34.0,Other -1,2014-08-26,17,0,0,0,0,0,0,en-US,NL,Linux,Firefox,34.0,Other -1,2014-08-26,0,1,0,0,0,0,0,en-US,VN,"Windows 8",Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,GB,"Mac OS X",Firefox,34.0,Other -10,2014-08-26,958,0,0,0,0,0,0,en-US,US,"Windows 8",Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,BR,Linux,Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,CO,"Windows 7",Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,EG,"Windows XP",Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,GH,Windows,Firefox,34.0,Other -8,2014-08-26,6,0,0,0,0,0,0,en-US,PH,Windows,Firefox,34.0,Other -10,2014-08-26,2,0,0,0,0,0,0,en-US,LV,Windows,Firefox,34.0,Other -2,2014-08-26,9,0,0,0,0,0,0,en-US,BR,Windows,Firefox,34.0,Other -2,2014-08-26,4,0,0,0,0,0,0,en-US,HK,"Windows 7",Firefox,34.0,Other -4,2014-08-26,11,0,0,0,0,0,0,en-US,TH,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1019,0,0,0,0,0,0,en-US,US,"Windows 7",Firefox,34.0,Other -4,2014-08-26,158,0,0,0,0,0,0,en-US,US,"Windows Vista",Firefox,34.0,Other -7,2014-08-26,36,0,0,0,0,0,0,en-US,DE,Windows,Firefox,34.0,Other -7,2014-08-26,16,0,0,0,0,0,0,en-US,RO,Linux,Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,SE,Windows,Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,SG,"Mac OS X",Firefox,34.0,Other -2,2014-08-26,4,0,0,0,0,0,0,en-US,SE,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1133,0,0,0,0,0,0,en-US,US,Windows,Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,NL,"Windows 7",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,GT,"Windows 7",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,RU,Linux,Firefox,34.0,Other -8,2014-08-26,1950,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,34.0,Other -9,2014-08-26,25,0,0,0,0,0,0,en-US,DE,Linux,Firefox,34.0,Other -1,2014-08-26,3,0,0,0,0,0,0,en-US,TH,Windows,Firefox,34.0,Other -10,2014-08-26,2,0,0,0,0,0,0,en-US,BR,Linux,Firefox,34.0,Other -3,2014-08-26,8,0,0,0,0,0,0,en-US,DE,"Windows 8",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,CR,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,GB,"Windows XP",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,VE,Linux,Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,DE,"Windows 8",Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,VN,"Windows 7",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,PL,"Windows 8",Firefox,34.0,Other -6,2014-08-26,1886,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -9,2014-08-26,1950,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,34.0,Other -2,2014-08-26,0,1,0,0,0,0,2,en-US,BD,Windows,Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,CL,"Windows 8",Firefox,34.0,Other -10,2014-08-26,2,0,0,0,0,0,0,en-US,MX,"Windows 8",Firefox,34.0,Other -2,2014-08-26,2,0,0,0,0,0,0,en-US,MY,Windows,Firefox,34.0,Other -9,2014-08-26,1,0,0,0,0,0,0,en-US,GH,Windows,Firefox,34.0,Other -9,2014-08-26,4,0,0,0,0,0,0,en-US,HR,"Windows 7",Firefox,34.0,Other -9,2014-08-21,2,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,34.0,Other -2,2014-08-26,22,0,0,0,0,0,0,en-US,DE,"Windows 7",Firefox,34.0,Other -2,2014-08-26,1886,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -4,2014-08-26,4,0,0,0,0,0,0,en-US,DE,"Windows XP",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,EG,"Windows XP",Firefox,34.0,Other -7,2014-08-26,1019,0,0,0,0,0,0,en-US,US,"Windows 7",Firefox,34.0,Other -8,2014-08-26,4,0,0,0,0,0,0,en-US,AT,"Windows 7",Firefox,34.0,Other -3,2014-08-26,11,0,0,0,0,0,0,en-US,TH,"Windows 7",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,RS,"Windows 8",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,HU,"Windows 7",Firefox,34.0,Other -7,2014-08-26,10,0,0,0,0,0,0,en-US,ID,"Windows 7",Firefox,34.0,Other -7,2014-08-26,17,0,0,0,0,0,0,en-US,IN,Windows,Firefox,34.0,Other -9,2014-08-26,16,0,0,0,0,0,0,en-US,IN,Windows,Firefox,34.0,Other -9,2014-08-26,0,0,0,1,0,0,5,en-US,IN,Windows,Firefox,34.0,Other -1,2014-08-26,4,0,0,0,0,0,0,en-US,TH,"Windows 7",Firefox,34.0,Other -1,2014-08-26,1886,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,JP,Linux,Firefox,34.0,Other -7,2014-08-26,14,0,0,0,0,0,0,en-US,CN,Windows,Firefox,34.0,Other -8,2014-08-26,10,0,0,0,0,0,0,en-US,ID,"Windows 7",Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,MX,"Windows 7",Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,CA,"Windows 8",Firefox,34.0,Other -4,2014-08-25,1,0,0,0,0,0,0,en-US,DE,"Mac OS X",Firefox,34.0,Other -1,2014-08-26,21,0,0,0,0,0,0,en-US,DE,"Windows 7",Firefox,34.0,Other -10,2014-08-26,487,0,0,0,0,0,0,en-US,US,"Windows XP",Firefox,34.0,Other -3,2014-08-26,0,0,0,1,0,0,0,en-US,CA,Windows,Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,RS,"Windows XP",Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,PF,"Windows 7",Firefox,34.0,Other -8,2014-08-26,4,0,0,0,0,0,0,en-US,MY,"Windows 7",Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,RU,"Windows 7",Firefox,34.0,Other -2,2014-08-26,0,1,0,0,0,0,1,en-US,IN,Windows,Firefox,34.0,Other -3,2014-08-26,0,1,0,0,0,0,2,en-US,VN,Windows,Firefox,34.0,Other -7,2014-08-25,2,0,0,0,0,0,0,en-US,US,"Windows 2000",Firefox,34.0,Other -1,2014-08-26,4,0,0,0,0,0,0,en-US,ES,Windows,Firefox,34.0,Other -2,2014-08-26,5,0,0,0,0,0,0,en-US,ID,"Windows 7",Firefox,34.0,Other -3,2014-08-26,17,0,0,0,0,0,0,en-US,IN,"Mac OS X",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,GH,Windows,Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,DE,"Mac OS X",Firefox,34.0,Other -8,2014-08-26,3,0,0,0,0,0,0,en-US,ES,Windows,Firefox,34.0,Other -8,2014-08-26,5,0,0,0,0,0,0,en-US,SY,"Windows 7",Firefox,34.0,Other -9,2014-08-26,10,0,0,0,0,0,0,en-US,PE,"Windows 7",Firefox,34.0,Other -6,2014-08-22,2,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,33.0,Other -2,2014-08-25,1,0,0,0,0,0,0,en-US,PL,Linux,Firefox,34.0,Other -2,2014-08-26,3,0,0,0,0,0,0,en-US,NL,"Windows 7",Firefox,34.0,Other -2,2014-08-26,5,0,0,0,0,0,0,en-US,PT,"Windows 7",Firefox,34.0,Other -3,2014-08-26,7,0,0,0,0,0,0,en-US,CH,"Windows 7",Firefox,34.0,Other -3,2014-08-26,4,0,0,0,0,0,0,en-US,HR,Windows,Firefox,34.0,Other -3,2014-08-26,2,0,0,0,0,0,0,en-US,SD,"Windows 7",Firefox,34.0,Other -7,2014-08-26,3,0,0,0,0,0,0,en-US,SA,"Mac OS X",Firefox,34.0,Other -8,2014-08-26,7,0,0,0,0,0,0,en-US,PK,"Windows 7",Firefox,34.0,Other -1,2014-08-26,7,0,0,0,0,0,0,en-US,MX,Windows,Firefox,34.0,Other -2,2014-08-26,2,0,0,0,0,0,0,en-US,ZA,"Windows 7",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,BD,"Windows 8",Firefox,34.0,Other -9,2014-08-26,9,0,0,0,0,0,0,en-US,BR,"Windows 7",Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,DE,"Mac OS X",Firefox,34.0,Other -1,2014-08-26,3,0,0,0,0,0,0,en-US,BY,Windows,Firefox,34.0,Other -1,2014-08-26,14,0,0,0,0,0,0,en-US,CN,Windows,Firefox,34.0,Other -2,2014-08-26,1,0,0,0,0,0,0,en-US,BE,"Mac OS X",Firefox,34.0,Other -2,2014-08-26,4,0,0,0,0,0,0,en-US,GR,Windows,Firefox,34.0,Other -3,2014-08-26,11,0,0,0,0,0,0,en-US,GB,"Windows 7",Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,GR,"Windows 7",Firefox,34.0,Other -5,2014-08-26,15,0,0,0,0,0,0,en-US,GB,"Mac OS X",Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,CL,"Windows 8",Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,EG,"Windows XP",Firefox,34.0,Other -5,2014-08-25,1,0,0,0,0,0,0,en-US,FR,Linux,Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,AR,"Windows 7",Firefox,34.0,Other -10,2014-08-26,1886,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -2,2014-08-26,1,0,0,0,0,0,0,en-US,HU,Windows,Firefox,34.0,Other -3,2014-08-26,3,0,0,0,0,0,0,en-US,SI,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,IT,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,LT,Linux,Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,TR,"Windows 8",Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,PT,"Windows 7",Firefox,34.0,Other -9,2014-08-26,3,0,0,0,0,0,0,en-US,ID,"Windows Vista",Firefox,34.0,Other -9,2014-08-26,1,0,0,0,0,0,0,en-US,TR,"Windows 8",Firefox,34.0,Other -1,2014-08-26,0,2,0,0,0,0,1,en-US,PK,"Windows 7",Firefox,34.0,Other -7,2014-08-25,53,0,0,0,0,0,0,en-US,US,Linux,Firefox,34.0,Other -10,2014-08-26,3,0,0,0,0,0,0,en-US,BY,Windows,Firefox,34.0,Other -10,2014-08-26,4,0,0,0,0,0,0,en-US,GB,Windows,Firefox,34.0,Other -2,2014-08-26,35,0,0,0,0,0,0,en-US,DE,Windows,Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,AE,"Windows 7",Firefox,34.0,Other -4,2014-08-26,1,0,0,0,0,0,0,en-US,GB,"Mac OS X",Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,EG,Windows,Firefox,34.0,Other -10,2014-08-26,3,0,0,0,0,0,0,en-US,SE,"Windows 7",Firefox,34.0,Other -3,2014-08-26,4,0,0,0,0,0,0,en-US,AT,"Windows 7",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,DZ,"Windows 8",Firefox,34.0,Other -9,2014-08-26,21,0,0,0,0,0,0,en-US,DE,"Windows 7",Firefox,34.0,Other -9,2014-08-26,4,0,0,0,0,0,0,en-US,HR,Windows,Firefox,34.0,Other -10,2014-08-26,2,0,0,0,0,0,0,en-US,CH,Windows,Firefox,34.0,Other -10,2014-08-26,3,0,0,0,0,0,0,en-US,CN,"Windows 7",Firefox,34.0,Other -2,2014-08-26,1,0,0,0,0,0,0,en-US,CR,"Windows 7",Firefox,34.0,Other -3,2014-08-26,3,0,0,0,0,0,0,en-US,TW,"Windows 7",Firefox,34.0,Other -6,2014-08-26,2,0,0,0,0,0,0,en-US,LK,Windows,Firefox,34.0,Other -8,2014-08-26,7,0,0,0,0,0,0,en-US,CA,"Windows 7",Firefox,34.0,Other -10,2014-08-26,1,0,0,0,0,0,0,en-US,BE,"Mac OS X",Firefox,34.0,Other -2,2014-08-26,14,0,0,0,0,0,0,en-US,CN,Windows,Firefox,34.0,Other -6,2014-08-26,1,0,0,0,0,0,0,en-US,CL,"Windows 8",Firefox,34.0,Other -6,2014-08-26,3,0,0,0,0,0,0,en-US,ID,"Windows 8",Firefox,34.0,Other -6,2014-08-26,6,0,0,0,0,0,0,en-US,IN,"Windows 8",Firefox,34.0,Other -8,2014-08-26,6,0,0,0,0,0,0,en-US,GB,Linux,Firefox,34.0,Other -1,2014-08-26,1,0,0,0,0,0,0,en-US,BE,"Mac OS X",Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,CZ,"Windows 7",Firefox,34.0,Other -10,2014-08-26,6,0,0,0,0,0,0,en-US,GB,"Windows XP",Firefox,34.0,Other -2,2014-08-26,7,0,0,0,0,0,0,en-US,TH,"Windows 7",Firefox,34.0,Other -6,2014-08-26,3,0,0,0,0,0,0,en-US,PT,Linux,Firefox,34.0,Other -8,2014-08-26,17,0,0,0,0,0,0,en-US,NL,Linux,Firefox,34.0,Other -9,2014-08-26,5,0,0,0,0,0,0,en-US,LT,"Windows 7",Firefox,34.0,Other -3,2014-08-26,12,0,0,0,0,0,0,en-US,BR,Windows,Firefox,34.0,Other -3,2014-08-26,2,0,0,0,0,0,0,en-US,PK,"Windows 8",Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,TR,"Windows 8",Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,CA,"Windows 8",Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,SI,"Windows 7",Firefox,34.0,Other -1,2014-08-26,0,1,0,0,0,0,1,en-US,US,"Windows 7",Firefox,34.0,Other -8,2014-08-26,0,1,0,0,0,0,13,en-US,LT,"Windows 7",Firefox,34.0,Other -2,2014-08-25,1,0,0,0,0,0,0,en-US,DE,"Mac OS X",Firefox,34.0,Other -2,2014-08-26,4,0,0,0,0,0,0,en-US,LV,"Windows 8",Firefox,34.0,Other -6,2014-08-26,3,0,0,0,0,0,0,en-US,BY,Windows,Firefox,34.0,Other -6,2014-08-26,10,0,0,0,0,0,0,en-US,MU,Windows,Firefox,34.0,Other -7,2014-08-26,10,0,0,0,0,0,0,en-US,PE,"Windows 7",Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,ES,"Windows 7",Firefox,34.0,Other -8,2014-08-26,2,0,0,0,0,0,0,en-US,MX,"Windows 8",Firefox,34.0,Other -9,2014-08-26,2,0,0,0,0,0,0,en-US,RU,"Windows 7",Firefox,34.0,Other -5,2014-08-25,1,0,0,0,0,0,0,en-US,FR,"Mac OS X",Firefox,34.0,Other -1,2014-08-26,1,0,0,0,0,0,0,en-US,CR,"Windows 7",Firefox,34.0,Other -1,2014-08-26,2,0,0,0,0,0,0,en-US,RO,"Windows 7",Firefox,34.0,Other -6,2014-08-26,3,0,0,0,0,0,0,en-US,CN,"Windows 7",Firefox,34.0,Other -7,2014-08-26,1,0,0,0,0,0,0,en-US,ID,Windows,Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,AR,"Windows 7",Firefox,34.0,Other -6,2014-08-26,0,1,0,0,0,0,4,en-US,BR,Windows,Firefox,34.0,Other -1,2014-08-26,1,0,0,0,0,0,0,en-US,GB,"Windows 8",Firefox,34.0,Other -1,2014-08-26,4,0,0,0,0,0,0,en-US,PE,"Windows 7",Firefox,34.0,Other -2,2014-08-26,1,0,0,0,0,0,0,en-US,CH,"Windows 7",Firefox,34.0,Other -2,2014-08-26,1,0,0,0,0,0,0,en-US,RU,Linux,Firefox,34.0,Other -2,2014-08-26,2,0,0,0,0,0,0,en-US,SD,"Windows 7",Firefox,34.0,Other -3,2014-08-26,1,0,0,0,0,0,0,en-US,HU,Windows,Firefox,34.0,Other -4,2014-08-26,2,0,0,0,0,0,0,en-US,PK,Windows,Firefox,34.0,Other -7,2014-08-26,2,0,0,0,0,0,0,en-US,DE,"Mac OS X",Firefox,34.0,Other -7,2014-08-26,1950,0,0,0,0,0,0,en-US,US,"Mac OS X",Firefox,34.0,Other -8,2014-08-26,1,0,0,0,0,0,0,en-US,BD,Windows,Firefox,34.0,Other -6,2014-08-26,0,0,0,1,0,0,2,en-US,CA,"Windows 8",Firefox,34.0,Other -8,2014-08-25,8,0,0,0,0,0,0,en-US,CN,Windows,Firefox,34.0,Other \ No newline at end of file +16,2014-09-23,1,0,0,0,0,0,13,0,en-US,NL,Mac OS X,Firefox,33.0,Other,9,39,2014,0 +15,2014-09-30,1,0,0,0,0,0,8,0,en-US,TR,Windows,Firefox,35.0,Other,9,40,2014,0 +16,2014-10-02,3,0,0,0,0,0,8,0,en-US,AT,Mac OS X,Firefox,34.0,Other,10,40,2014,0 +19,2014-10-22,2,0,0,0,0,0,8,0,en-US,PH,Windows 7,Firefox,35.0,Other,10,43,2014,0 +20,2014-10-13,1,0,0,0,0,0,5,0,en-US,MY,Windows,Firefox,33.0,Other,10,42,2014,0 +15,2014-09-26,5,0,0,0,0,0,0,0,en-US,IQ,Windows 7,Firefox,33.0,Other,9,39,2014,0 +17,2014-09-26,2,0,0,0,0,0,13,0,en-US,MU,Windows 7,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-29,2,0,0,0,0,0,4,0,en-US,RO,Windows 7,Firefox,33.0,Other,9,40,2014,0 +19,2014-10-05,0,0,0,1,0,0,1,0,en-US,PT,Windows,Firefox,35.0,Other,10,40,2014,0 +19,2014-09-23,5,0,0,0,0,0,12,0,en-US,KE,Windows 7,Firefox,34.0,Other,9,39,2014,0 +19,2014-09-19,1,0,0,0,0,0,12,0,en-US,SG,Windows,Firefox,33.0,Other,9,38,2014,0 +14,2014-09-30,17,0,0,0,0,0,4,0,en-US,PH,Windows XP,Firefox,33.0,Other,9,40,2014,0 +12,2014-09-19,3,0,0,0,0,0,2,0,en-US,CO,Windows,Firefox,33.0,Other,9,38,2014,0 +17,2014-09-18,1,0,0,0,0,0,4,0,en-US,LT,Windows 7,Firefox,33.0,Other,9,38,2014,0 +13,2014-10-19,2,0,0,0,0,0,8,0,en-US,AT,Windows 7,Firefox,35.0,Other,10,42,2014,0 +12,2014-09-26,2,0,0,0,0,0,9,0,en-US,LR,Windows 7,Firefox,33.0,Other,9,39,2014,0 +14,2014-10-12,2,0,0,0,0,0,9,0,en-US,MA,Windows,Firefox,35.0,Other,10,41,2014,0 +12,2014-10-12,1,0,0,0,0,0,1,0,en-US,VE,Windows 7,Firefox,35.0,Other,10,41,2014,0 +19,2014-10-18,1,0,0,0,0,0,43,0,en-US,GB,Windows 7,Firefox,34.0,Other,10,42,2014,0 +15,2014-09-24,1,0,0,1,0,0,1,0,en-US,PK,Windows 8,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-18,1,0,0,0,0,0,10,0,en-US,KR,Windows,Firefox,36.0,Other,10,42,2014,0 +20,2014-09-27,1,0,0,0,0,0,7,0,en-US,SG,Windows 7,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-08,3,0,0,0,0,0,10,0,en-US,IR,Windows,Firefox,33.0,Other,10,41,2014,0 +-1,2014-10-14,0,0,0,0,0,0,-1,0,de,AT,Mac OS X,Firefox,34.0,Other,10,42,2014,1 +17,2014-10-18,1,0,0,0,0,0,8,0,en-US,SA,Windows 8,Firefox,34.0,Other,10,42,2014,0 +16,2014-10-21,3,0,0,0,0,0,5,0,en-US,ID,Windows 7,Firefox,36.0,Other,10,43,2014,0 +12,2014-09-26,17,0,0,0,0,0,4,0,en-US,PK,Windows,Firefox,33.0,Other,9,39,2014,0 +21,2014-10-21,1,0,0,0,0,0,7,0,en-US,MM,Windows 8,Firefox,34.0,Other,10,43,2014,0 +20,2014-09-26,1,0,0,0,0,0,11,0,en-US,AE,Windows,Firefox,33.0,Other,9,39,2014,0 +19,2014-09-28,1,0,0,0,0,0,11,0,en-US,ID,Windows XP,Firefox,35.0,Other,9,39,2014,0 +18,2014-10-10,4,0,0,0,0,0,11,0,en-US,AR,Windows 7,Firefox,35.0,Other,10,41,2014,0 +13,2014-09-16,4,0,0,0,0,0,5,0,en-US,NL,Windows 7,Firefox,33.0,Other,9,38,2014,0 +12,2014-09-25,1,0,0,0,0,0,1,0,en-US,PK,Windows,Firefox,35.0,Other,9,39,2014,0 +17,2014-10-19,79,0,0,0,0,0,5,0,en-US,BD,Windows 7,Firefox,34.0,Other,10,42,2014,0 +17,2014-09-28,2,0,0,0,0,0,5,0,en-US,GE,Windows 8,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-02,1,0,0,0,0,0,12,0,en-US,VC,Windows 8,Firefox,33.0,Other,10,40,2014,0 +18,2014-10-19,1,0,0,0,0,0,8,0,en-US,SA,Windows,Firefox,34.0,Other,10,42,2014,0 +19,2014-10-22,1,0,0,0,0,0,9,0,en-US,IL,Windows,Firefox,34.0,Other,10,43,2014,0 +18,2014-10-20,3,0,0,0,0,0,7,0,en-US,DE,Windows 7,Firefox,34.0,Other,10,43,2014,0 +12,2014-10-21,5,0,0,0,0,0,7,0,en-US,PS,Windows XP,Firefox,34.0,Other,10,43,2014,0 +17,2014-10-20,1,0,0,0,0,0,8,0,en-US,IL,Windows Vista,Firefox,34.0,Other,10,43,2014,0 +16,2014-09-26,7,0,0,0,0,0,9,0,en-US,RS,Windows 7,Firefox,35.0,Other,9,39,2014,0 +12,2014-09-24,20,2,0,0,0,0,3,0,en-US,IR,Windows XP,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-23,30,0,0,0,0,0,6,0,en-US,IN,Windows 8,Firefox,33.0,Other,9,39,2014,0 +13,2014-09-23,1,0,0,0,0,0,12,0,en-US,NL,Windows,Firefox,35.0,Other,9,39,2014,0 +13,2014-10-23,11,0,0,0,0,0,9,0,en-US,KE,Windows 7,Firefox,33.0,Other,10,43,2014,0 +19,2014-09-22,1,0,0,0,0,0,9,0,en-US,NI,Windows 8,Firefox,33.0,Other,9,39,2014,0 +16,2014-09-25,1,0,0,0,0,0,6,0,en-US,TZ,Windows,Firefox,35.0,Other,9,39,2014,0 +17,2014-09-28,5,0,0,0,0,0,7,0,en-US,GB,Windows XP,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-17,10,0,0,0,0,0,5,0,en-US,DE,Windows 7,Firefox,35.0,Other,10,42,2014,0 +12,2014-10-23,1,0,0,0,0,0,9,0,en-US,KE,Windows,Firefox,34.0,Other,10,43,2014,0 +19,2014-09-19,0,0,0,1,0,0,2,0,en-US,GH,Windows 7,Firefox,33.0,Other,9,38,2014,0 +17,2014-10-17,2,0,0,0,0,0,10,0,en-US,IR,Windows,Firefox,33.0,Other,10,42,2014,0 +13,2014-09-08,1,0,0,0,0,0,13,0,en-US,ZW,Windows XP,Firefox,33.0,Other,9,37,2014,0 +18,2014-09-17,1,0,0,0,0,0,6,0,en-US,UA,Windows 7,Firefox,33.0,Other,9,38,2014,0 +15,2014-09-23,3,0,0,0,0,0,11,0,en-US,MN,Windows XP,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-10,12,0,0,0,0,0,12,0,en-US,IR,Windows,Firefox,33.0,Other,10,41,2014,0 +12,2014-10-23,1,0,0,0,0,0,9,0,en-US,FR,Windows,Firefox,33.0,Other,10,43,2014,0 +19,2014-10-18,9,0,0,0,0,0,7,0,en-US,NG,Windows XP,Firefox,33.0,Other,10,42,2014,0 +-1,2014-10-18,0,0,0,0,0,0,-1,0,en-US,FJ,Windows,Firefox,33.0,Other,10,42,2014,2 +19,2014-09-24,22,0,0,0,0,0,7,0,en-US,GB,Windows XP,Firefox,33.0,Other,9,39,2014,0 +18,2014-09-24,1,0,0,0,0,0,11,0,en-US,BR,Windows XP,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-14,0,0,0,1,0,0,0,0,en-US,MY,Windows 7,Firefox,33.0,Other,10,42,2014,0 +16,2014-10-15,1,0,0,0,0,0,7,0,en-US,SE,Linux,Firefox,35.0,Other,10,42,2014,0 +20,2014-09-18,1,0,0,0,0,0,12,0,en-US,ME,Windows,Firefox,35.0,Other,9,38,2014,0 +14,2014-10-20,1,0,0,0,0,0,6,0,en-US,GY,Windows 7,Firefox,34.0,Other,10,43,2014,0 +19,2014-09-29,0,0,0,1,0,0,7,0,en-US,ZA,Windows,Firefox,33.0,Other,9,40,2014,0 +14,2014-09-26,1,0,0,0,0,0,10,0,en-US,CA,Windows Vista,Firefox,33.0,Other,9,39,2014,0 +19,2014-10-21,1,0,0,0,0,0,10,0,en-US,GH,Windows 7,Firefox,33.0,Other,10,43,2014,0 +-1,2014-10-09,0,0,0,0,0,0,-1,0,en-US,TZ,Windows 7,Firefox,35.0,Other,10,41,2014,4 +-1,2014-10-12,0,0,0,0,0,0,-1,0,ko,CN,Windows 7,Firefox,34.0,Other,10,41,2014,2 +17,2014-09-18,1,0,0,0,0,0,9,0,en-US,EG,Windows 7,Firefox,35.0,Other,9,38,2014,0 +15,2014-09-23,9,0,0,0,0,0,7,0,en-US,IN,Windows 7,Firefox,34.0,Other,9,39,2014,0 +13,2014-10-10,3,0,0,0,0,0,2,0,en-US,TH,Windows 7,Firefox,35.0,Other,10,41,2014,0 +12,2014-10-09,2,0,0,0,0,0,12,0,en-US,AE,Windows XP,Firefox,33.0,Other,10,41,2014,0 +15,2014-09-30,1,0,0,0,0,0,4,0,en-US,CI,Windows 8,Firefox,33.0,Other,9,40,2014,0 +15,2014-10-23,13,0,0,0,0,0,4,0,en-US,CN,Windows 7,Firefox,34.0,Other,10,43,2014,0 +13,2014-10-08,2,0,0,0,0,0,3,0,en-US,MY,Windows 7,Firefox,34.0,Other,10,41,2014,0 +18,2014-09-29,5,0,0,0,0,0,6,0,en-US,US,Windows 7,Firefox,26.0,Other,9,40,2014,0 +20,2014-10-20,1,0,0,0,0,0,11,0,en-US,ET,Windows 7,Firefox,34.0,Other,10,43,2014,0 +15,2014-09-26,2,0,0,0,0,0,9,0,en-US,ME,Windows XP,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-26,6,0,0,0,0,0,14,0,en-US,UG,Windows 7,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-29,1,0,0,0,0,0,6,0,en-US,US,Windows 8,Firefox,34.0,Other,9,40,2014,0 +15,2014-09-28,2,0,0,0,0,0,8,0,en-US,KE,Windows XP,Firefox,33.0,Other,9,39,2014,0 +12,2014-09-14,4,0,0,0,0,0,13,0,en-US,DZ,Windows XP,Firefox,33.0,Other,9,37,2014,0 +12,2014-09-19,1,0,0,0,0,0,6,0,en-US,NG,Windows,Firefox,33.0,Other,9,38,2014,0 +17,2014-10-13,5,0,0,0,0,0,10,0,en-US,ZA,Windows 7,Firefox,33.0,Other,10,42,2014,0 +19,2014-09-23,1,0,0,0,0,0,13,0,en-US,BR,Windows XP,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-23,6,0,0,0,0,0,7,0,en-US,AU,Windows 8,Firefox,36.0,Other,10,43,2014,0 +13,2014-09-29,5,0,0,0,0,0,13,0,en-US,IT,Windows 7,Firefox,33.0,Other,9,40,2014,0 +21,2014-10-21,3,0,0,0,0,0,13,0,en-US,IR,Windows 8,Firefox,33.0,Other,10,43,2014,0 +14,2014-09-25,1,0,0,0,0,0,3,0,en-US,IL,Windows 8,Firefox,33.0,Other,9,39,2014,0 +21,2014-10-22,13,0,0,0,0,0,2,0,en-US,DZ,Windows XP,Firefox,33.0,Other,10,43,2014,0 +15,2014-10-22,3,0,0,0,0,0,6,0,en-US,VN,Windows 7,Firefox,36.0,Other,10,43,2014,0 +19,2014-10-22,49,1,0,0,0,0,8,0,en-US,CA,Windows 7,Firefox,34.0,Other,10,43,2014,0 +16,2014-09-22,2,0,0,0,0,0,4,0,en-US,DE,Windows XP,Firefox,35.0,Other,9,39,2014,0 +13,2014-09-29,1,0,0,0,0,0,3,0,en-US,KR,Windows 7,Firefox,33.0,Other,9,40,2014,0 +17,2014-09-28,3,0,0,0,0,0,12,0,en-US,RU,Windows 8,Firefox,33.0,Other,9,39,2014,0 +14,2014-10-13,1,0,0,0,0,0,9,0,en-US,CM,Windows 8,Firefox,33.0,Other,10,42,2014,0 +13,2014-10-19,35,0,0,0,0,0,8,0,en-US,ID,Windows 7,Firefox,33.0,Other,10,42,2014,0 +13,2014-10-01,1,0,0,0,0,0,6,0,en-US,CL,Windows 7,Firefox,33.0,Other,10,40,2014,0 +16,2014-09-30,17,0,0,0,0,0,10,0,en-US,PH,Windows 8,Firefox,33.0,Other,9,40,2014,0 +17,2014-10-22,1,0,0,0,0,0,8,0,en-US,JP,Windows 7,Firefox,34.0,Other,10,43,2014,0 +12,2014-10-20,4,0,0,0,0,0,14,0,en-US,ET,Windows XP,Firefox,34.0,Other,10,43,2014,0 +-1,2014-10-19,0,0,0,0,0,0,-1,0,lt,LT,Windows 7,Firefox,34.0,Other,10,42,2014,83 +15,2014-10-23,2,0,0,0,0,0,7,0,en-US,CO,Windows 8,Firefox,35.0,Other,10,43,2014,0 +16,2014-09-30,4,0,0,0,0,0,5,0,en-US,RU,Windows 7,Firefox,35.0,Other,9,40,2014,0 +12,2014-09-28,33,0,0,0,0,0,0,0,en-US,MY,Windows 8,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-28,1,0,0,0,0,0,7,0,en-US,IT,Windows XP,Firefox,33.0,Other,9,39,2014,0 +21,2014-10-22,4,0,0,0,0,0,3,0,en-US,FR,Windows 7,Firefox,34.0,Other,10,43,2014,0 +14,2014-09-30,1,0,0,0,0,0,10,0,en-US,FR,Windows 7,Firefox,35.0,Other,9,40,2014,0 +20,2014-09-23,9,0,0,0,0,0,14,0,en-US,LK,Windows XP,Firefox,33.0,Other,9,39,2014,0 +17,2014-09-27,3,0,0,0,0,0,8,0,en-US,TZ,Windows 8,Firefox,33.0,Other,9,39,2014,0 +20,2014-10-13,1,0,0,0,0,0,8,0,en-US,CH,Windows,Firefox,35.0,Other,10,42,2014,0 +13,2014-09-18,1,0,0,0,0,0,6,0,en-US,JP,Windows 7,Firefox,33.0,Other,9,38,2014,0 +14,2014-10-12,1,0,0,0,0,0,4,0,en-US,CA,Mac OS X,Firefox,35.0,Other,10,41,2014,0 +19,2014-09-24,7,0,0,0,0,0,9,0,en-US,DZ,Windows XP,Firefox,33.0,Other,9,39,2014,0 +-1,2014-10-16,0,0,0,0,0,0,-1,0,en-US,DE,Mac OS X,Firefox,36.0,Other,10,42,2014,1 +15,2014-09-25,5,0,0,0,0,0,3,0,en-US,CL,Windows,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-29,3,0,0,0,0,0,14,0,en-US,GR,Windows,Firefox,33.0,Other,9,40,2014,0 +14,2014-10-12,19,0,0,0,0,0,4,0,en-US,MY,Windows 7,Firefox,33.0,Other,10,41,2014,0 +16,2014-10-20,5,0,0,0,0,0,7,0,en-US,BD,Windows 7,Firefox,33.0,Other,10,43,2014,0 +18,2014-10-03,10,0,0,0,0,0,6,0,en-US,PA,Windows 7,Firefox,33.0,Other,10,40,2014,0 +15,2014-09-25,1,0,0,0,0,0,12,0,en-US,TG,Windows 7,Firefox,35.0,Other,9,39,2014,0 +12,2014-09-30,7,0,0,0,0,0,3,0,en-US,VN,Windows XP,Firefox,33.0,Other,9,40,2014,0 +13,2014-10-21,2,0,0,0,0,0,12,0,en-US,NO,Windows 7,Firefox,34.0,Other,10,43,2014,0 +17,2014-10-19,1,0,0,0,0,0,7,0,en-US,AE,Windows XP,Firefox,33.0,Other,10,42,2014,0 +13,2014-09-18,1,0,0,0,0,0,10,0,en-US,MG,Windows 7,Firefox,33.0,Other,9,38,2014,0 +18,2014-09-30,4,0,0,0,0,0,11,0,en-US,EG,Windows 8,Firefox,33.0,Other,9,40,2014,0 +13,2014-09-29,1,0,0,0,0,0,10,0,en-US,TZ,Windows 7,Firefox,33.0,Other,9,40,2014,0 +14,2014-09-25,1,0,0,0,0,0,11,0,en-US,NP,Windows 7,Firefox,34.0,Other,9,39,2014,0 +16,2014-10-23,2,0,0,0,0,0,14,0,en-US,EG,Windows XP,Firefox,35.0,Other,10,43,2014,0 +13,2014-09-23,5,0,0,0,0,0,12,0,en-US,SD,Windows XP,Firefox,33.0,Other,9,39,2014,0 +13,2014-09-28,3,0,0,0,0,0,10,0,en-US,US,Windows Vista,Firefox,33.0,Other,9,39,2014,0 +15,2014-09-23,50,0,0,1,0,0,7,0,en-US,PH,Windows XP,Firefox,33.0,Other,9,39,2014,0 +17,2014-10-01,23,0,0,0,0,0,12,0,en-US,ZW,Windows XP,Firefox,33.0,Other,10,40,2014,0 +16,2014-10-10,2,0,0,0,0,0,5,0,en-US,AT,Windows,Firefox,35.0,Other,10,41,2014,0 +16,2014-09-28,46,0,0,2,0,0,5,0,en-US,BD,Windows XP,Firefox,33.0,Other,9,39,2014,0 +13,2014-10-22,5,0,0,0,0,0,9,0,en-US,LT,Windows 7,Firefox,34.0,Other,10,43,2014,0 +21,2014-10-22,12,0,0,0,0,0,10,0,en-US,IN,Linux,Firefox,34.0,Other,10,43,2014,0 +15,2014-09-24,3,0,0,0,0,0,3,0,en-US,JM,Windows,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-23,1,0,0,0,0,0,8,0,en-US,PL,Windows 8,Firefox,33.0,Other,9,39,2014,0 +12,2014-09-25,2,0,0,0,0,0,13,0,en-US,KH,Windows,Firefox,33.0,Other,9,39,2014,0 +20,2014-09-24,9,0,0,0,0,0,3,0,en-US,PK,Windows 7,Firefox,33.0,Other,9,39,2014,0 +20,2014-10-21,1,0,0,0,0,0,12,0,en-US,GH,Windows 7,Firefox,34.0,Other,10,43,2014,0 +15,2014-09-06,1,0,0,0,0,0,3,0,en-US,BN,Windows XP,Firefox,33.0,Other,9,36,2014,0 +14,2014-10-02,7,0,0,0,0,0,7,0,en-US,BD,Windows 8,Firefox,33.0,Other,10,40,2014,0 +14,2014-10-16,6,0,0,0,0,0,8,0,en-US,BA,Windows 7,Firefox,34.0,Other,10,42,2014,0 +12,2014-10-21,1,0,0,0,0,0,5,0,en-US,US,Windows 8,Firefox,36.0,Other,10,43,2014,0 +14,2014-09-23,1,0,0,0,0,0,10,0,en-US,AT,Windows 7,Firefox,35.0,Other,9,39,2014,0 +13,2014-10-22,2,0,0,0,0,0,8,0,en-US,MM,Windows,Firefox,33.0,Other,10,43,2014,0 +17,2014-10-10,6,0,0,0,0,0,12,0,en-US,GH,Windows 7,Firefox,33.0,Other,10,41,2014,0 +14,2014-10-15,15,0,0,0,0,0,2,0,en-US,US,Windows,Firefox,33.0,Other,10,42,2014,0 +15,2014-09-30,4,0,0,0,0,0,13,0,en-US,KE,Windows 8,Firefox,33.0,Other,9,40,2014,0 +12,2014-09-27,1,0,0,0,0,0,6,0,en-US,HK,Windows 7,Firefox,35.0,Other,9,39,2014,0 +12,2014-09-30,2,0,0,0,0,0,9,0,en-US,FR,Windows 7,Firefox,35.0,Other,9,40,2014,0 +16,2014-09-28,1,0,0,0,0,0,12,0,en-US,PY,Windows,Firefox,33.0,Other,9,39,2014,0 +12,2014-09-06,2,0,0,0,0,0,2,0,en-US,SI,Windows,Firefox,35.0,Other,9,36,2014,0 +-1,2014-10-11,0,0,0,0,0,0,-1,0,en-US,UG,Windows XP,Firefox,34.0,Other,10,41,2014,1 +16,2014-10-11,1,0,0,0,0,0,10,0,en-US,BW,Windows,Firefox,33.0,Other,10,41,2014,0 +13,2014-10-02,4,0,0,0,0,0,3,0,en-US,AU,Windows,Firefox,34.0,Other,10,40,2014,0 +14,2014-09-19,79,0,0,0,0,0,6,0,en-US,PH,Windows 7,Firefox,33.0,Other,9,38,2014,0 +12,2014-10-10,1,0,0,0,0,0,14,0,en-US,IL,Windows 7,Firefox,35.0,Other,10,41,2014,0 +18,2014-09-25,1,0,0,0,0,0,4,0,en-US,IN,Windows 8,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-12,1,0,0,0,0,0,11,0,en-US,IN,Windows 7,Firefox,33.0,Other,10,41,2014,0 +19,2014-10-14,2,0,0,0,0,0,5,0,en-US,GH,Windows,Firefox,33.0,Other,10,42,2014,0 +18,2014-10-14,9,0,0,0,0,0,8,0,en-US,MY,Windows Vista,Firefox,33.0,Other,10,42,2014,0 +15,2014-10-07,10,0,0,0,0,0,10,0,en-US,GB,Windows 7,Firefox,33.0,Other,10,41,2014,0 +19,2014-10-22,4,0,0,0,0,0,7,0,en-US,US,Windows 7,Firefox,36.0,Other,10,43,2014,0 +15,2014-09-26,10,0,0,0,0,0,13,0,en-US,US,Windows 7,Firefox,35.0,Other,9,39,2014,0 +15,2014-09-29,1,0,0,0,0,0,11,0,en-US,LC,Windows 7,Firefox,33.0,Other,9,40,2014,0 +-1,2014-10-17,0,0,0,0,0,0,-1,0,en-US,AZ,Windows 8,Firefox,34.0,Other,10,42,2014,1 +19,2014-09-27,2,0,0,0,0,0,6,0,en-US,GH,Windows 7,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-19,1,0,0,0,0,0,6,0,en-US,HU,Windows,Firefox,35.0,Other,9,38,2014,0 +17,2014-09-24,1,0,0,0,0,0,5,0,en-US,SG,Mac OS X,Firefox,34.0,Other,9,39,2014,0 +14,2014-10-14,7,0,0,0,0,0,2,0,en-US,PK,Windows 8,Firefox,33.0,Other,10,42,2014,0 +14,2014-10-15,1,0,0,0,0,0,4,0,en-US,BG,Windows XP,Firefox,35.0,Other,10,42,2014,0 +21,2014-10-23,3,0,0,0,0,0,11,0,en-US,ZA,Windows 8,Firefox,34.0,Other,10,43,2014,0 +18,2014-10-21,1,0,0,0,0,0,7,0,en-US,TN,Windows 7,Firefox,34.0,Other,10,43,2014,0 +14,2014-10-13,17,0,0,0,0,0,2,0,en-US,US,Android,Android,1.6,HTC TATTOO,10,42,2014,0 +14,2014-09-17,16,0,0,0,0,0,11,0,en-US,VN,Windows 7,Firefox,33.0,Other,9,38,2014,0 +20,2014-10-16,1,0,0,0,0,0,12,0,en-US,BD,Windows 8,Firefox,34.0,Other,10,42,2014,0 +17,2014-09-25,1,0,0,0,0,0,6,0,en-US,ZW,Windows 8,Firefox,33.0,Other,9,39,2014,0 +15,2014-10-08,1,0,0,0,0,0,9,0,en-US,JM,Windows 7,Firefox,33.0,Other,10,41,2014,0 +14,2014-09-17,3,0,0,0,0,0,6,0,en-US,CY,Windows XP,Firefox,33.0,Other,9,38,2014,0 +15,2014-10-18,9,0,0,0,0,0,3,0,en-US,DE,Windows,Firefox,35.0,Other,10,42,2014,0 +14,2014-09-30,1,0,0,0,0,0,5,0,en-US,EE,Windows XP,Firefox,33.0,Other,9,40,2014,0 +20,2014-10-02,1,0,0,0,0,0,8,0,en-US,BE,Windows 7,Firefox,35.0,Other,10,40,2014,0 +-1,2014-10-21,0,0,0,0,0,0,-1,0,en-US,PH,Windows Vista,Firefox,35.0,Other,10,43,2014,3 +19,2014-10-17,1,0,0,0,0,0,9,0,en-US,BG,Windows XP,Firefox,34.0,Other,10,42,2014,0 +13,2014-09-27,1,0,0,0,0,0,8,0,en-US,AL,Windows XP,Firefox,33.0,Other,9,39,2014,0 +12,2014-09-20,1,0,0,0,0,0,1,0,en-US,RO,Windows XP,Firefox,33.0,Other,9,38,2014,0 +16,2014-09-06,2,0,0,0,0,0,9,0,en-US,PK,Windows Vista,Firefox,33.0,Other,9,36,2014,0 +15,2014-10-07,1,0,0,0,0,0,6,0,en-US,MY,Windows 7,Firefox,35.0,Other,10,41,2014,0 +17,2014-10-13,2,0,0,0,0,0,14,0,en-US,SA,Windows 8,Firefox,33.0,Other,10,42,2014,0 +20,2014-10-21,2,0,0,0,0,0,2,0,en-US,IR,Windows XP,Firefox,34.0,Other,10,43,2014,0 +15,2014-10-20,27,0,0,0,0,0,12,0,en-US,ID,Windows,Firefox,34.0,Other,10,43,2014,0 +13,2014-10-09,1,0,0,0,0,0,10,0,en-US,ZA,Windows 7,Firefox,33.0,Other,10,41,2014,0 +12,2014-10-10,11,0,0,0,0,0,5,0,en-US,EG,Windows 7,Firefox,33.0,Other,10,41,2014,0 +16,2014-09-29,2,0,0,0,0,0,6,0,en-US,VN,Windows XP,Firefox,33.0,Other,9,40,2014,0 +20,2014-09-24,5,0,0,2,0,0,5,0,en-US,PK,Windows 7,Firefox,33.0,Other,9,39,2014,0 +14,2014-10-19,6,0,0,0,0,0,12,0,en-US,US,Windows 8,Firefox,34.0,Other,10,42,2014,0 +19,2014-09-27,4,0,0,0,0,0,14,0,en-US,IN,Windows,Firefox,35.0,Other,9,39,2014,0 +15,2014-10-20,15,0,0,0,0,0,8,0,en-US,PH,Windows 7,Firefox,33.0,Other,10,43,2014,0 +15,2014-10-10,1,0,0,0,0,0,8,0,en-US,US,Mac OS X,Firefox,35.0,Other,10,41,2014,0 +13,2014-10-18,2,0,0,0,0,0,3,0,en-US,NP,Windows,Firefox,34.0,Other,10,42,2014,0 +12,2014-09-26,4,0,0,0,0,0,12,0,en-US,DE,Windows 8,Firefox,35.0,Other,9,39,2014,0 +12,2014-10-11,1,0,0,0,0,0,4,0,en-US,IN,Windows 7,Firefox,34.0,Other,10,41,2014,0 +13,2014-09-29,9,0,0,0,0,0,7,0,en-US,RS,Windows 7,Firefox,33.0,Other,9,40,2014,0 +18,2014-09-18,5,0,0,0,0,0,13,0,en-US,EG,Windows 7,Firefox,35.0,Other,9,38,2014,0 +17,2014-10-08,1,0,0,0,0,0,6,0,en-US,BE,Windows,Firefox,35.0,Other,10,41,2014,0 +15,2014-09-24,61,0,0,0,0,0,13,0,en-US,US,Windows 7,Firefox,33.0,Other,9,39,2014,0 +15,2014-10-21,1,0,0,0,0,0,8,0,en-US,PT,Windows 7,Firefox,34.0,Other,10,43,2014,0 +20,2014-10-02,1,0,0,0,0,0,7,0,en-US,IN,Windows 8,Firefox,34.0,Other,10,40,2014,0 +12,2014-10-10,1,0,0,0,0,0,2,0,en-US,SD,Windows XP,Firefox,33.0,Other,10,41,2014,0 +12,2014-09-20,2,0,0,0,0,0,1,0,en-US,US,Windows 7,Firefox,35.0,Other,9,38,2014,0 +16,2014-10-15,3,0,0,0,0,0,7,0,en-US,MN,Windows 7,Firefox,33.0,Other,10,42,2014,0 +19,2014-09-25,2,0,0,0,0,0,10,0,en-US,IQ,Windows 8,Firefox,33.0,Other,9,39,2014,0 +15,2014-09-30,3,0,0,0,0,0,14,0,en-US,IQ,Windows,Firefox,33.0,Other,9,40,2014,0 +-1,2014-10-21,0,0,0,0,0,0,-1,0,en-US,GH,Windows 7,Firefox,35.0,Other,10,43,2014,9 +15,2014-10-23,2,0,0,0,0,0,3,0,en-US,IN,Windows,Firefox,35.0,Other,10,43,2014,0 +20,2014-10-16,1,0,0,0,0,0,12,0,en-US,FI,Windows 7,Firefox,33.0,Other,10,42,2014,0 +12,2014-10-22,2,0,0,0,0,0,13,0,en-US,PR,Windows 7,Firefox,34.0,Other,10,43,2014,0 +18,2014-09-06,67,0,0,0,0,0,9,0,en-US,JO,Windows 7,Firefox,33.0,Other,9,36,2014,0 +14,2014-09-23,1,0,0,0,0,0,4,0,en-US,CM,Windows XP,Firefox,33.0,Other,9,39,2014,0 +15,2014-09-26,2,0,0,0,0,0,6,0,en-US,IR,Windows 8,Firefox,33.0,Other,9,39,2014,0 +20,2014-09-25,4,0,0,0,0,0,10,0,en-US,GH,Windows,Firefox,33.0,Other,9,39,2014,0 +19,2014-09-24,1,0,0,0,0,0,8,0,en-US,GB,Windows Vista,Firefox,33.0,Other,9,39,2014,0 +13,2014-10-15,3,0,0,0,0,0,13,0,en-US,JO,Windows 7,Firefox,34.0,Other,10,42,2014,0 +18,2014-10-03,5,0,0,0,0,0,9,0,en-US,SK,Ubuntu,Firefox,33.0,Other,10,40,2014,0 +14,2014-10-05,1,0,0,0,0,0,6,0,en-US,TL,Windows 7,Firefox,33.0,Other,10,40,2014,0 +16,2014-10-08,6,0,0,0,0,0,7,0,en-US,DE,Windows 7,Firefox,35.0,Other,10,41,2014,0 +13,2014-10-06,5,0,0,0,0,0,11,0,en-US,SE,Windows,Firefox,35.0,Other,10,41,2014,0 +17,2014-10-15,1,0,0,0,0,0,8,0,en-US,AM,Windows 7,Firefox,33.0,Other,10,42,2014,0 +-1,2014-10-13,0,0,0,0,0,0,-1,0,en-US,AF,Windows 8,Firefox,33.0,Other,10,42,2014,5 +18,2014-10-13,1,0,0,0,0,0,9,0,en-US,RU,Windows XP,Firefox,35.0,Other,10,42,2014,0 +19,2014-09-25,1,0,0,0,0,0,11,0,en-US,ES,Windows XP,Firefox,33.0,Other,9,39,2014,0 +20,2014-09-30,2,0,0,0,0,0,7,0,en-US,CA,Windows 7,Firefox,35.0,Other,9,40,2014,0 +19,2014-10-18,5,0,0,0,0,0,11,0,en-US,PH,Windows XP,Firefox,33.0,Other,10,42,2014,0 +14,2014-09-25,2,0,0,0,0,0,5,0,en-US,JO,Windows XP,Firefox,33.0,Other,9,39,2014,0 +16,2014-09-04,4,0,0,0,0,0,13,0,en-US,DE,Mac OS X,Firefox,33.0,Other,9,36,2014,0 +14,2014-10-08,5,0,0,0,0,0,14,0,en-US,GH,Windows 7,Firefox,33.0,Other,10,41,2014,0 +18,2014-09-16,2,0,0,0,0,0,8,0,en-US,AT,Linux,Firefox,35.0,Other,9,38,2014,0 +13,2014-09-29,3,0,0,0,0,0,6,0,en-US,PS,Windows 7,Firefox,33.0,Other,9,40,2014,0 +16,2014-09-23,1,0,0,0,0,0,10,0,en-US,ID,Windows,Firefox,35.0,Other,9,39,2014,0 +15,2014-10-20,17,0,0,0,0,0,3,0,en-US,GH,Windows 7,Firefox,34.0,Other,10,43,2014,0 +18,2014-09-13,1,0,0,0,0,0,4,0,en-US,ZM,Windows 7,Firefox,33.0,Other,9,37,2014,0 +13,2014-10-02,1,0,0,0,0,0,5,0,en-US,TN,Windows 7,Firefox,33.0,Other,10,40,2014,0 +13,2014-09-18,14,0,0,0,0,0,10,0,en-US,SE,Windows,Firefox,35.0,Other,9,38,2014,0 +19,2014-10-23,24,0,0,0,0,0,13,0,en-US,IR,Windows XP,Firefox,34.0,Other,10,43,2014,0 +15,2014-10-05,5,0,0,0,0,0,6,0,en-US,PK,Windows,Firefox,34.0,Other,10,40,2014,0 +13,2014-10-20,2,0,0,0,0,0,6,0,en-US,CA,Windows,Firefox,34.0,Other,10,43,2014,0 +13,2014-10-21,1,0,0,0,0,0,11,0,en-US,GB,Mac OS X,Firefox,36.0,Other,10,43,2014,0 +14,2014-10-22,5,0,0,0,0,0,8,0,en-US,BG,Windows 7,Firefox,34.0,Other,10,43,2014,0 +14,2014-09-23,1,0,0,0,0,0,1,0,en-US,SA,Windows 7,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-21,1,0,0,0,0,0,2,0,en-US,RW,Windows XP,Firefox,33.0,Other,10,43,2014,0 +19,2014-10-23,1,0,0,0,0,0,9,0,en-US,SI,Windows 8,Firefox,34.0,Other,10,43,2014,0 +17,2014-09-06,40,0,0,0,0,0,5,0,en-US,BR,Windows,Firefox,35.0,Other,9,36,2014,0 +17,2014-09-17,1,0,0,0,0,0,6,0,en-US,AL,Windows 7,Firefox,33.0,Other,9,38,2014,0 +18,2014-10-20,1,0,0,0,0,0,9,0,en-US,AE,Windows XP,Firefox,33.0,Other,10,43,2014,0 +19,2014-10-08,3,0,0,0,0,0,10,0,en-US,GT,Windows,Firefox,35.0,Other,10,41,2014,0 +12,2014-09-15,6,0,0,0,0,0,3,0,en-US,CH,Windows 7,Firefox,35.0,Other,9,38,2014,0 +14,2014-10-02,1,0,0,0,0,0,6,0,en-US,PS,Windows 7,Firefox,33.0,Other,10,40,2014,0 +-1,2014-10-14,0,0,0,0,0,0,-1,0,ru,MD,Windows,Firefox,34.0,Other,10,42,2014,4 +15,2014-10-20,1,0,0,0,0,0,10,0,en-US,VN,Windows 7,Firefox,33.0,Other,10,43,2014,0 +15,2014-09-26,1,0,0,0,0,0,7,0,en-US,JM,Windows 7,Firefox,33.0,Other,9,39,2014,0 +15,2014-10-14,2,0,0,0,0,0,11,0,en-US,PH,Windows 7,Firefox,33.0,Other,10,42,2014,0 +18,2014-09-29,4,0,0,0,0,0,8,0,en-US,SG,Windows 8,Firefox,33.0,Other,9,40,2014,0 +20,2014-10-20,1,0,0,0,0,0,10,0,en-US,SO,Windows 7,Firefox,34.0,Other,10,43,2014,0 +17,2014-10-16,2,0,0,0,0,0,14,0,en-US,NI,Windows 7,Firefox,36.0,Other,10,42,2014,0 +14,2014-09-28,1,0,0,0,0,0,8,0,en-US,HU,Windows 7,Firefox,35.0,Other,9,39,2014,0 +12,2014-10-22,52,0,0,0,0,0,5,0,en-US,ID,Windows XP,Firefox,33.0,Other,10,43,2014,0 +15,2014-10-01,1,0,0,0,0,0,5,0,en-US,GB,Windows,Firefox,34.0,Other,10,40,2014,0 +12,2014-10-15,3,0,0,0,0,0,0,0,en-US,AU,Windows 7,Firefox,34.0,Other,10,42,2014,0 +19,2014-10-21,2,0,0,0,0,0,12,0,en-US,QA,Windows 7,Firefox,34.0,Other,10,43,2014,0 +17,2014-10-18,1,0,0,0,0,0,8,0,en-US,DK,Mac OS X,Firefox,34.0,Other,10,42,2014,0 +16,2014-10-12,5,0,0,0,0,0,10,0,en-US,VN,Windows XP,Firefox,33.0,Other,10,41,2014,0 +18,2014-10-09,1,0,0,0,0,0,9,0,en-US,ET,Windows 8,Firefox,33.0,Other,10,41,2014,0 +12,2014-09-19,1,0,0,0,0,0,1,0,en-US,SY,Windows XP,Firefox,33.0,Other,9,38,2014,0 +20,2014-09-30,7,0,0,3,0,0,1,0,en-US,ID,Windows 7,Firefox,33.0,Other,9,40,2014,0 +19,2014-09-24,3,0,0,0,0,0,3,0,en-US,PH,Windows 8,Firefox,33.0,Other,9,39,2014,0 +15,2014-10-22,4,0,0,0,0,0,9,0,en-US,SG,Windows,Firefox,34.0,Other,10,43,2014,0 +15,2014-10-22,4,0,0,0,0,0,4,0,en-US,US,Linux,Iceweasel,35.0,Other,10,43,2014,0 +-1,2014-10-14,0,0,0,0,0,0,-1,0,en-US,IT,Windows 7,Firefox,34.0,Other,10,42,2014,18 +16,2014-09-17,2,0,0,0,0,0,14,0,en-US,JM,Windows XP,Firefox,33.0,Other,9,38,2014,0 +19,2014-09-20,8,0,0,0,0,0,7,0,en-US,US,Windows 8,Firefox,34.0,Other,9,38,2014,0 +18,2014-09-25,10,0,0,0,0,0,8,0,en-US,EG,Windows,Firefox,33.0,Other,9,39,2014,0 +19,2014-10-20,2,0,0,0,0,0,11,0,en-US,GH,Windows 8,Firefox,33.0,Other,10,43,2014,0 +13,2014-09-08,22,0,0,0,0,0,5,0,en-US,EG,Windows 7,Firefox,34.0,Other,9,37,2014,0 +16,2014-10-13,1,0,0,0,0,0,7,0,en-US,RS,Windows 7,Firefox,33.0,Other,10,42,2014,0 +19,2014-09-27,2,0,0,0,0,0,9,0,en-US,JM,Windows 8,Firefox,33.0,Other,9,39,2014,0 +16,2014-09-24,2,0,0,0,0,0,13,0,en-US,PT,Windows,Firefox,35.0,Other,9,39,2014,0 +20,2014-09-23,15,0,0,0,0,0,11,0,en-US,MM,Windows 7,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-17,3,0,0,0,0,0,1,0,en-US,VN,Windows 7,Firefox,34.0,Other,10,42,2014,0 +13,2014-09-22,4,0,0,0,0,0,12,0,en-US,ERROR,Windows 7,Firefox,33.0,Other,9,39,2014,0 +13,2014-09-29,2,0,0,0,0,0,3,0,en-US,EG,Windows 7,Firefox,34.0,Other,9,40,2014,0 +18,2014-10-14,0,0,0,1,0,0,5,0,en-US,LA,Windows 7,Firefox,33.0,Other,10,42,2014,0 +19,2014-10-17,2,0,0,0,0,0,13,0,en-US,GB,Windows,Firefox,34.0,Other,10,42,2014,0 +19,2014-09-17,1,0,0,0,0,0,10,0,en-US,MU,Windows 7,Firefox,33.0,Other,9,38,2014,0 +18,2014-10-03,20,0,0,0,0,0,12,0,en-US,DE,Mac OS X,Firefox,35.0,Other,10,40,2014,0 +15,2014-10-05,8,0,0,1,0,0,5,0,en-US,TN,Windows 8,Firefox,35.0,Other,10,40,2014,0 +-1,2014-10-16,0,0,0,0,0,0,-1,0,en-GB,PK,Windows,Firefox,34.0,Other,10,42,2014,2 +17,2014-09-26,2,0,0,0,0,0,10,0,en-US,EC,Windows 8,Firefox,33.0,Other,9,39,2014,0 +15,2014-10-02,4,0,0,0,0,0,7,0,en-US,UG,Windows 7,Firefox,33.0,Other,10,40,2014,0 +19,2014-09-25,113,0,0,0,0,0,14,0,en-US,ID,Windows 7,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-21,8,0,0,0,0,0,2,0,en-US,LK,Windows 7,Firefox,34.0,Other,10,43,2014,0 +19,2014-10-09,3,0,0,0,0,0,7,0,en-US,NG,Windows 8,Firefox,33.0,Other,10,41,2014,0 +17,2014-10-21,1,0,0,0,0,0,10,0,en-US,AE,Windows,Firefox,34.0,Other,10,43,2014,0 +18,2014-10-11,1,0,0,0,0,0,9,0,en-US,SL,Windows 7,Firefox,33.0,Other,10,41,2014,0 +17,2014-09-18,9,0,0,0,0,0,9,0,en-US,GH,Windows 7,Firefox,33.0,Other,9,38,2014,0 +14,2014-09-29,5,0,0,0,0,0,12,0,en-US,BG,Windows 7,Firefox,33.0,Other,9,40,2014,0 +18,2014-09-23,1,0,0,0,0,0,4,0,en-US,CL,Windows,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-21,3,0,0,0,0,0,4,0,en-US,HT,Windows 7,Firefox,34.0,Other,10,43,2014,0 +14,2014-10-08,1,0,0,0,0,0,5,0,en-US,CM,Windows 7,Firefox,33.0,Other,10,41,2014,0 +16,2014-09-17,5,0,0,0,0,0,3,0,en-US,PK,Windows 7,Firefox,33.0,Other,9,38,2014,0 +12,2014-09-25,14,0,0,0,0,0,12,0,en-US,NP,Windows 7,Firefox,33.0,Other,9,39,2014,0 +18,2014-09-29,1,0,0,0,0,0,8,0,en-US,BD,Windows 7,Firefox,35.0,Other,9,40,2014,0 +18,2014-10-15,1,0,0,0,0,0,7,0,en-US,CA,Windows 7,Firefox,35.0,Other,10,42,2014,0 +14,2014-09-29,3,0,0,0,0,0,12,0,en-US,US,Mac OS X,Firefox,33.0,Other,9,40,2014,0 +15,2014-10-17,1,0,0,0,0,0,6,0,en-US,BD,Windows 7,Firefox,34.0,Other,10,42,2014,0 +20,2014-10-21,1,0,0,0,0,0,12,0,en-US,SV,Windows 7,Firefox,34.0,Other,10,43,2014,0 +12,2014-10-14,1,0,0,0,0,0,4,0,en-US,EC,Windows,Firefox,33.0,Other,10,42,2014,0 +13,2014-10-07,4,0,0,0,0,0,12,0,en-US,HU,Windows 7,Firefox,34.0,Other,10,41,2014,0 +18,2014-10-22,2,0,0,0,0,0,8,0,en-US,CO,Windows,Firefox,34.0,Other,10,43,2014,0 +18,2014-09-27,1,0,0,0,0,0,10,0,en-US,AL,Windows XP,Firefox,33.0,Other,9,39,2014,0 +13,2014-10-15,1,0,0,0,0,0,12,0,en-US,JP,Windows 7,Firefox,33.0,Other,10,42,2014,0 +20,2014-10-09,0,0,0,3,0,0,0,0,en-US,IN,Windows 7,Firefox,33.0,Other,10,41,2014,0 +16,2014-10-17,1,0,0,0,0,0,4,0,en-US,RO,Windows,Firefox,34.0,Other,10,42,2014,0 +12,2014-10-22,1,0,0,0,0,0,2,0,en-US,BB,Windows,Firefox,33.0,Other,10,43,2014,0 +17,2014-09-27,1,0,0,0,0,0,10,0,en-US,AR,Windows,Firefox,35.0,Other,9,39,2014,0 +18,2014-09-18,1,0,0,0,0,0,11,0,en-US,VN,Windows,Firefox,33.0,Other,9,38,2014,0 +18,2014-09-25,4,0,0,0,0,0,6,0,en-US,BD,Windows 7,Firefox,34.0,Other,9,39,2014,0 +13,2014-10-01,2,0,0,0,0,0,11,0,en-US,VN,Windows 8,Firefox,34.0,Other,10,40,2014,0 +11,2014-09-04,1,0,0,0,0,0,3,0,en-US,AL,Windows 7,Firefox,35.0,Other,9,36,2014,0 +12,2014-10-08,1,0,0,0,0,0,1,0,en-US,AE,Mac OS X,Firefox,33.0,Other,10,41,2014,0 +12,2014-09-30,11,0,0,0,0,0,8,0,en-US,RO,Windows XP,Firefox,33.0,Other,9,40,2014,0 +16,2014-09-30,1,0,0,0,0,0,12,0,en-US,MN,Windows,Firefox,33.0,Other,9,40,2014,0 +14,2014-10-17,2,0,0,0,0,0,8,0,en-US,AU,Windows,Firefox,36.0,Other,10,42,2014,0 +15,2014-09-23,1,0,0,0,0,0,3,0,en-US,BJ,Windows 7,Firefox,33.0,Other,9,39,2014,0 +19,2014-09-29,1,0,0,0,0,0,1,0,en-US,RO,Windows 7,Firefox,33.0,Other,9,40,2014,0 +12,2014-09-27,1,0,0,0,0,0,7,0,en-US,NL,Windows 7,Firefox,33.0,Other,9,39,2014,0 +14,2014-10-09,5,0,0,0,0,0,13,0,en-US,GB,Windows 7,Firefox,35.0,Other,10,41,2014,0 +17,2014-10-21,3,0,0,0,0,0,11,0,en-US,US,Windows XP,Firefox,34.0,Other,10,43,2014,0 +18,2014-09-29,1,0,0,0,0,0,8,0,en-US,KR,Windows 7,Firefox,33.0,Other,9,40,2014,0 +20,2014-09-23,8,0,0,0,0,0,10,0,en-US,GM,Windows XP,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-18,8,0,0,0,0,0,14,0,en-US,IR,Windows XP,Firefox,34.0,Other,10,42,2014,0 +-1,2014-10-21,0,0,0,0,0,0,-1,0,en-US,PK,Windows XP,Firefox,34.0,Other,10,43,2014,2405 +18,2014-09-29,3,0,0,0,0,0,6,0,en-US,SA,Windows,Firefox,33.0,Other,9,40,2014,0 +18,2014-09-24,1,0,0,0,0,0,14,0,en-US,ZA,Windows,Firefox,33.0,Other,9,39,2014,0 +13,2014-10-11,3,0,0,0,0,0,1,0,en-US,ZW,Windows 7,Firefox,33.0,Other,10,41,2014,0 +15,2014-09-29,1,0,0,0,0,0,11,0,en-US,SS,Windows 7,Firefox,33.0,Other,9,40,2014,0 +13,2014-10-05,54,0,0,0,0,0,2,0,en-US,AU,Windows,Firefox,33.0,Other,10,40,2014,0 +16,2014-10-16,9,0,0,0,0,0,4,0,en-US,VN,Windows XP,Firefox,33.0,Other,10,42,2014,0 +15,2014-10-14,1,0,0,0,0,0,10,0,en-US,NZ,Windows,Firefox,33.0,Other,10,42,2014,0 +19,2014-09-24,2,0,0,0,0,0,10,0,en-US,PL,Windows 8,Firefox,33.0,Other,9,39,2014,0 +12,2014-09-30,3,0,0,0,0,0,0,0,en-US,PH,Mac OS X,Firefox,33.0,Other,9,40,2014,0 +13,2014-09-23,5,0,0,0,0,0,12,0,en-US,BA,Windows XP,Firefox,33.0,Other,9,39,2014,0 +21,2014-10-23,5,0,0,0,0,0,3,0,en-US,DE,Windows 7,Firefox,34.0,Other,10,43,2014,0 +15,2014-09-09,5,0,0,0,0,0,5,0,en-US,KE,Windows 8,Firefox,34.0,Other,9,37,2014,0 +13,2014-10-09,0,0,0,1,0,0,0,0,en-US,AL,Windows XP,Firefox,33.0,Other,10,41,2014,0 +13,2014-10-13,3,0,0,0,0,0,4,0,en-US,PH,Windows XP,Firefox,33.0,Other,10,42,2014,0 +13,2014-10-18,9,0,0,0,0,0,4,0,en-US,BD,Windows XP,Firefox,34.0,Other,10,42,2014,0 +13,2014-09-28,2,0,0,0,0,0,14,0,en-US,IT,Mac OS X,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-22,1,0,0,0,0,0,0,0,en-US,AT,Windows 7,Firefox,36.0,Other,10,43,2014,0 +-1,2014-10-13,0,0,0,0,0,0,-1,0,en-US,RO,Windows 7,Firefox,33.0,Other,10,42,2014,10 +18,2014-09-29,3,0,0,0,0,0,10,0,en-US,IT,Windows 7,Firefox,33.0,Other,9,40,2014,0 +19,2014-10-01,7,0,0,0,0,0,11,0,en-US,GB,Windows XP,Firefox,33.0,Other,10,40,2014,0 +13,2014-10-10,6,0,0,0,0,0,6,0,en-US,VN,Windows 7,Firefox,35.0,Other,10,41,2014,0 +19,2014-10-06,3,0,0,0,0,0,1,0,en-US,DE,Windows 7,Firefox,33.0,Other,10,41,2014,0 +16,2014-10-20,1,0,0,0,0,0,7,0,en-US,LY,Windows 8,Firefox,33.0,Other,10,43,2014,0 +19,2014-09-07,3,0,0,0,0,0,14,0,en-US,RW,Windows 7,Firefox,33.0,Other,9,36,2014,0 +12,2014-10-04,9,0,0,0,0,0,6,0,en-US,GR,Mac OS X,Firefox,33.0,Other,10,40,2014,0 +16,2014-09-27,11,0,0,0,0,0,11,0,en-US,IR,Windows,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-20,15,0,0,0,0,0,0,0,en-US,IR,Windows 7,Firefox,33.0,Other,10,43,2014,0 +12,2014-09-27,2,0,0,0,0,0,5,0,en-US,AE,Windows,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-21,3,0,0,0,0,0,14,0,en-US,JP,Windows 7,Firefox,34.0,Other,10,43,2014,0 +15,2014-09-24,3,0,0,0,0,0,7,0,en-US,HU,Windows 7,Firefox,33.0,Other,9,39,2014,0 +16,2014-09-09,7,0,0,1,0,0,7,0,en-US,ES,Windows 8,Firefox,33.0,Other,9,37,2014,0 +19,2014-10-12,1,0,0,0,0,0,1,0,en-US,EG,Windows 7,Firefox,33.0,Other,10,41,2014,0 +15,2014-10-17,1,0,0,0,0,0,12,0,en-US,ET,Windows 8,Firefox,33.0,Other,10,42,2014,0 +12,2014-09-24,1,0,0,0,0,0,0,0,en-US,DO,Windows 7,Firefox,33.0,Other,9,39,2014,0 +14,2014-10-08,1,0,0,0,0,0,13,0,en-US,LK,Windows 7,Firefox,33.0,Other,10,41,2014,0 +17,2014-10-13,23,0,0,0,0,0,6,0,en-US,EG,Windows 7,Firefox,33.0,Other,10,42,2014,0 +15,2014-10-14,1,0,0,0,0,0,8,0,en-US,ID,Windows,Firefox,35.0,Other,10,42,2014,0 +16,2014-10-12,9,0,0,0,0,0,10,0,en-US,US,Windows 7,Firefox,35.0,Other,10,41,2014,0 +12,2014-09-16,2,0,0,0,0,0,13,0,en-US,BE,Windows XP,Firefox,33.0,Other,9,38,2014,0 +13,2014-09-28,1,0,0,0,0,0,2,0,en-US,US,Windows 8,Firefox,34.0,Other,9,39,2014,0 +12,2014-09-10,4,0,0,0,0,0,4,0,en-US,LT,Windows 8,Firefox,35.0,Other,9,37,2014,0 +17,2014-09-25,2,0,0,0,0,0,14,0,en-US,US,Mac OS X,Firefox,34.0,Other,9,39,2014,0 +15,2014-09-24,2,0,0,0,0,0,7,0,en-US,HU,Windows,Firefox,35.0,Other,9,39,2014,0 +18,2014-09-25,4,0,0,0,0,0,6,0,en-US,SE,Windows 8,Firefox,33.0,Other,9,39,2014,0 +13,2014-09-11,483,0,0,3,0,0,6,0,en-US,MY,Windows 8,Firefox,33.0,Other,9,37,2014,0 +15,2014-09-06,7,0,0,0,0,0,10,0,en-US,KE,Windows 8,Firefox,33.0,Other,9,36,2014,0 +17,2014-10-23,1,0,0,0,0,0,10,0,en-US,ID,Mac OS X,Firefox,34.0,Other,10,43,2014,0 +16,2014-09-15,3,0,0,0,0,0,4,0,en-US,UA,Windows,Firefox,34.0,Other,9,38,2014,0 +6,2014-09-01,10,0,0,0,0,0,1,0,en-US,PK,Windows 8,Firefox,34.0,Other,9,36,2014,0 +13,2014-09-26,3,0,0,0,0,0,10,0,en-US,HU,Windows 7,Firefox,33.0,Other,9,39,2014,0 +14,2014-10-23,2,0,0,0,0,0,9,0,en-US,SK,Windows,Firefox,36.0,Other,10,43,2014,0 +13,2014-10-19,2,0,0,0,0,0,5,0,en-US,ES,Mac OS X,Firefox,34.0,Other,10,42,2014,0 +12,2014-09-24,6,0,0,0,0,0,14,0,en-US,GH,Windows XP,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-01,1,0,0,0,0,0,5,0,en-US,UG,Windows,Firefox,33.0,Other,10,40,2014,0 +16,2014-10-21,3,0,0,0,0,0,13,0,en-US,MV,Windows 7,Firefox,34.0,Other,10,43,2014,0 +14,2014-10-08,3,0,0,0,0,0,2,0,en-US,BD,Windows,Firefox,33.0,Other,10,41,2014,0 +18,2014-09-24,9,0,0,0,0,0,8,0,en-US,GH,Windows 8,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-12,3,0,0,0,0,0,4,0,en-US,GB,Mac OS X,Firefox,33.0,Other,10,41,2014,0 +18,2014-10-09,1,0,0,0,0,0,6,0,en-US,KE,Windows 7,Firefox,35.0,Other,10,41,2014,0 +18,2014-10-23,1,0,0,0,0,0,10,0,en-US,BE,Windows 7,Firefox,34.0,Other,10,43,2014,0 +13,2014-09-23,9,0,0,0,0,0,7,0,en-US,MY,Windows 8,Firefox,33.0,Other,9,39,2014,0 +13,2014-10-18,3,0,0,0,0,0,8,0,en-US,GH,Windows 7,Firefox,34.0,Other,10,42,2014,0 +12,2014-10-19,1,0,0,0,0,0,4,0,en-US,NG,Windows,Firefox,34.0,Other,10,42,2014,0 +14,2014-10-18,14,0,0,0,0,0,6,0,en-US,PK,Windows XP,Firefox,34.0,Other,10,42,2014,0 +15,2014-09-13,5,0,0,0,0,0,4,0,en-US,CI,Windows 7,Firefox,35.0,Other,9,37,2014,0 +12,2014-10-13,2,0,0,0,0,0,13,0,en-US,IN,Windows XP,Firefox,34.0,Other,10,42,2014,0 +16,2014-10-22,1,0,0,0,0,0,9,0,en-US,NZ,Windows 7,Firefox,34.0,Other,10,43,2014,0 +15,2014-10-14,1,0,0,0,0,0,11,0,en-US,MY,Windows 8,Firefox,33.0,Other,10,42,2014,0 +14,2014-10-23,2,0,0,0,0,0,8,0,en-US,TH,Mac OS X,Firefox,34.0,Other,10,43,2014,0 +14,2014-10-21,12,0,0,0,0,0,5,0,en-US,SY,Windows 7,Firefox,34.0,Other,10,43,2014,0 +16,2014-10-09,3,0,0,0,0,0,13,0,en-US,ID,Windows 7,Firefox,34.0,Other,10,41,2014,0 +14,2014-09-26,14,0,0,0,0,0,10,0,en-US,RO,Windows 7,Firefox,33.0,Other,9,39,2014,0 +20,2014-09-28,4,0,0,0,0,0,8,0,en-US,SA,Windows XP,Firefox,33.0,Other,9,39,2014,0 +19,2014-09-19,2,0,0,0,0,0,13,0,en-US,BR,Windows Vista,Firefox,33.0,Other,9,38,2014,0 +19,2014-10-13,2,0,0,0,0,0,10,0,en-US,NP,Windows,Firefox,34.0,Other,10,42,2014,0 +18,2014-10-14,7,0,0,0,0,0,10,0,en-US,US,Windows 7,Firefox,36.0,Other,10,42,2014,0 +13,2014-09-29,3,0,0,0,0,0,2,0,en-US,ES,Windows Vista,Firefox,33.0,Other,9,40,2014,0 +17,2014-09-30,10,0,0,0,0,0,3,0,en-US,IN,Windows XP,Firefox,33.0,Other,9,40,2014,0 +16,2014-10-20,2,0,0,0,0,0,14,0,en-US,EE,Windows 7,Firefox,34.0,Other,10,43,2014,0 +15,2014-10-21,3,0,0,0,0,0,3,0,en-US,BH,Windows 7,Firefox,34.0,Other,10,43,2014,0 +-1,2014-10-23,0,0,0,0,0,0,-1,0,en-US,LB,Mac OS X,Firefox,34.0,Other,10,43,2014,2 +14,2014-09-07,1,0,0,0,0,0,14,0,en-US,CR,Windows 7,Firefox,35.0,Other,9,36,2014,0 +17,2014-10-15,1,0,0,0,0,0,8,0,en-US,LK,Windows 8,Firefox,33.0,Other,10,42,2014,0 +20,2014-09-29,1,0,0,0,0,0,12,0,en-US,SG,Windows 7,Firefox,33.0,Other,9,40,2014,0 +18,2014-09-24,2,0,0,0,0,0,9,0,en-US,BH,Windows,Firefox,33.0,Other,9,39,2014,0 +16,2014-09-19,1,0,0,0,0,0,11,0,en-US,MZ,Windows 7,Firefox,34.0,Other,9,38,2014,0 +16,2014-09-29,99,0,0,0,0,0,10,0,en-US,IN,Windows 8,Firefox,33.0,Other,9,40,2014,0 +12,2014-09-28,6,0,0,1,0,0,13,0,en-US,EG,Windows XP,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-07,1,0,0,0,0,0,11,0,en-US,EE,Windows,Firefox,35.0,Other,10,41,2014,0 +14,2014-10-08,1,0,0,0,0,0,5,0,en-US,KH,Windows 7,Firefox,35.0,Other,10,41,2014,0 +13,2014-09-26,1,0,0,0,0,0,6,0,en-US,LB,Windows 7,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-21,2,0,0,0,0,0,11,0,en-US,TT,Windows 7,Firefox,34.0,Other,10,43,2014,0 +21,2014-10-21,2,0,0,0,0,0,2,0,en-US,JP,Linux,Firefox,36.0,Other,10,43,2014,0 +13,2014-09-17,1,0,0,0,0,0,6,0,en-US,GE,Windows 7,Firefox,33.0,Other,9,38,2014,0 +12,2014-09-26,12,0,0,0,0,0,1,0,en-US,FR,Windows 7,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-20,4,0,0,0,0,0,4,0,en-US,PL,Windows,Firefox,36.0,Other,10,43,2014,0 +18,2014-10-22,39,0,0,0,0,0,13,0,en-US,AE,Windows 7,Firefox,34.0,Other,10,43,2014,0 +12,2014-10-13,1,0,0,0,0,0,8,0,en-US,RW,Windows 8,Firefox,33.0,Other,10,42,2014,0 +17,2014-09-28,1,0,0,0,0,0,13,0,en-US,DO,Windows 8,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-15,4,0,0,0,0,0,13,0,en-US,KE,Windows 7,Firefox,33.0,Other,10,42,2014,0 +14,2014-10-17,3,0,0,0,0,0,5,0,en-US,TZ,Windows,Firefox,33.0,Other,10,42,2014,0 +14,2014-10-16,1,0,0,0,0,0,8,0,en-US,VN,Windows 7,Firefox,33.0,Other,10,42,2014,0 +17,2014-09-30,1,0,0,0,0,0,8,0,en-US,DE,Windows XP,Firefox,33.0,Other,9,40,2014,0 +13,2014-10-21,1,0,0,0,0,0,4,0,en-US,AE,Windows XP,Firefox,33.0,Other,10,43,2014,0 +14,2014-10-20,6,0,0,0,0,0,8,0,en-US,AU,Windows,Firefox,34.0,Other,10,43,2014,0 +15,2014-10-12,2,0,0,0,0,0,3,0,en-US,IQ,Windows 8,Firefox,33.0,Other,10,41,2014,0 +14,2014-10-20,3,0,0,0,0,0,14,0,en-US,PH,Windows 8,Firefox,33.0,Other,10,43,2014,0 +16,2014-09-25,6,0,0,0,0,0,13,0,en-US,SG,Windows 7,Firefox,33.0,Other,9,39,2014,0 +18,2014-09-24,2,0,0,0,0,0,5,0,en-US,HU,Windows,Firefox,33.0,Other,9,39,2014,0 +15,2014-09-24,3,0,0,0,0,0,13,0,en-US,GM,Windows 7,Firefox,33.0,Other,9,39,2014,0 +14,2014-10-22,2,0,0,0,0,0,4,0,en-US,AF,Windows 7,Firefox,33.0,Other,10,43,2014,0 +12,2014-10-22,1,0,0,0,0,0,1,0,en-US,BG,Windows 7,Firefox,34.0,Other,10,43,2014,0 +14,2014-10-17,15,0,0,0,0,0,5,0,en-US,EG,Windows XP,Firefox,34.0,Other,10,42,2014,0 +13,2014-09-29,1,0,0,0,0,0,13,0,en-US,BB,Linux,Firefox,35.0,Other,9,40,2014,0 +-1,2014-10-18,0,0,0,0,0,0,-1,0,en-US,BE,Mac OS X,Firefox,34.0,Other,10,42,2014,22 +12,2014-09-28,8,0,0,0,0,0,1,0,en-US,FR,Windows,Firefox,33.0,Other,9,39,2014,0 +19,2014-10-19,1,0,0,0,0,0,13,0,en-US,US,Windows,Firefox,35.0,Other,10,42,2014,0 +20,2014-10-13,1,0,0,0,0,0,14,0,en-US,RU,Windows 7,Firefox,35.0,Other,10,42,2014,0 +14,2014-09-24,57,0,0,0,0,0,8,0,en-US,IR,Windows 7,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-21,76,0,0,0,0,0,1,0,en-US,MY,Windows 7,Firefox,34.0,Other,10,43,2014,0 +-1,2014-10-10,0,0,0,0,0,0,-1,0,en-US,EG,Windows XP,Firefox,34.0,Other,10,41,2014,32 +13,2014-09-22,148,0,0,0,0,0,6,0,en-US,ID,Windows 7,Firefox,33.0,Other,9,39,2014,0 +15,2014-10-04,10,0,0,0,0,0,8,0,en-US,IL,Windows 7,Firefox,33.0,Other,10,40,2014,0 +16,2014-10-22,2,0,0,0,0,0,12,0,en-US,KE,Windows,Firefox,34.0,Other,10,43,2014,0 +17,2014-09-30,6,0,0,0,0,0,10,0,en-US,GH,Windows 8,Firefox,33.0,Other,9,40,2014,0 +16,2014-09-16,1,0,0,0,0,0,9,0,en-US,ID,Windows XP,Firefox,34.0,Other,9,38,2014,0 +19,2014-10-18,1,0,0,0,0,0,12,0,en-US,HR,Windows 7,Firefox,36.0,Other,10,42,2014,0 +13,2014-10-14,1,0,0,0,0,0,7,0,en-US,ID,Windows XP,Firefox,34.0,Other,10,42,2014,0 +19,2014-10-17,7,0,0,0,0,0,13,0,en-US,TZ,Windows 7,Firefox,33.0,Other,10,42,2014,0 +15,2014-09-16,11,0,0,0,0,0,9,0,en-US,NG,Windows 7,Firefox,34.0,Other,9,38,2014,0 +17,2014-10-11,5,0,0,0,0,0,13,0,en-US,BD,Windows 8,Firefox,33.0,Other,10,41,2014,0 +16,2014-09-29,1,0,0,1,0,0,1,0,en-US,US,Windows,Firefox,33.0,Other,9,40,2014,0 +15,2014-10-18,6,0,0,0,0,0,13,0,en-US,RO,Windows XP,Firefox,34.0,Other,10,42,2014,0 +16,2014-09-29,1,0,0,0,0,0,4,0,en-US,GR,Windows XP,Firefox,33.0,Other,9,40,2014,0 +18,2014-09-27,1,0,0,0,0,0,8,0,en-US,GT,Windows XP,Firefox,33.0,Other,9,39,2014,0 +17,2014-10-18,7,0,0,0,0,0,5,0,en-US,PH,Windows,Firefox,33.0,Other,10,42,2014,0 +16,2014-10-12,2,0,0,0,0,0,14,0,en-US,US,Linux,Firefox,33.0,Other,10,41,2014,0 +12,2014-10-17,1,0,0,0,0,0,13,0,en-US,BA,Windows XP,Firefox,34.0,Other,10,42,2014,0 +14,2014-09-09,1,0,0,0,0,0,3,0,en-US,FM,Windows 7,Firefox,33.0,Other,9,37,2014,0 +15,2014-10-22,6,0,0,0,0,0,9,0,en-US,GR,Windows 7,Firefox,34.0,Other,10,43,2014,0 +15,2014-09-28,1,0,0,1,0,0,1,0,en-US,DZ,Windows XP,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-19,1,0,0,0,0,0,12,0,en-US,UG,Windows,Firefox,33.0,Other,9,38,2014,0 +16,2014-10-08,1,0,0,0,0,0,12,0,en-US,SY,Windows,Firefox,33.0,Other,10,41,2014,0 +20,2014-10-14,5,0,0,0,0,0,8,0,en-US,SA,Windows XP,Firefox,33.0,Other,10,42,2014,0 +19,2014-09-16,99,0,0,0,0,0,14,0,en-US,FI,Windows 7,Firefox,33.0,Other,9,38,2014,0 +12,2014-09-28,21,0,0,0,0,0,11,0,en-US,NG,Windows 7,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-17,1,0,0,0,0,0,13,0,en-US,IR,Windows 7,Firefox,33.0,Other,10,42,2014,0 +12,2014-09-18,1,0,0,0,0,0,1,0,en-US,GB,Windows Vista,Firefox,33.0,Other,9,38,2014,0 +10,2014-09-02,3,0,0,0,0,0,12,0,en-US,BR,Windows XP,Firefox,34.0,Other,9,36,2014,0 +14,2014-10-23,1,0,0,1,0,0,3,0,en-US,AU,Windows,Firefox,33.0,Other,10,43,2014,0 +17,2014-09-28,24,0,0,0,0,0,6,0,en-US,FR,Windows 7,Firefox,33.0,Other,9,39,2014,0 +13,2014-10-15,3,0,0,0,0,0,1,0,en-US,LK,Mac OS X,Firefox,33.0,Other,10,42,2014,0 +20,2014-09-20,5,0,0,0,0,0,8,0,en-US,DZ,Windows 7,Firefox,33.0,Other,9,38,2014,0 +17,2014-10-09,2,0,0,0,0,0,2,0,en-US,EG,Windows XP,Firefox,33.0,Other,10,41,2014,0 +15,2014-10-23,0,0,0,1,0,0,1,0,en-US,BD,Windows XP,Firefox,33.0,Other,10,43,2014,0 +17,2014-10-13,2,0,0,0,0,0,12,0,en-US,US,Windows 8,Firefox,33.0,Other,10,42,2014,0 +17,2014-10-17,10,0,0,0,0,0,14,0,en-US,IN,Windows XP,Firefox,33.0,Other,10,42,2014,0 +12,2014-10-11,13,0,0,0,0,0,10,0,en-US,PH,Windows 7,Firefox,33.0,Other,10,41,2014,0 +13,2014-09-29,300,0,0,0,0,0,13,0,en-US,IN,Windows XP,Firefox,33.0,Other,9,40,2014,0 +13,2014-10-02,1,0,0,0,0,0,7,0,en-US,LB,Windows 7,Firefox,33.0,Other,10,40,2014,0 +20,2014-10-15,4,0,0,0,0,0,8,0,en-US,DE,Windows,Firefox,34.0,Other,10,42,2014,0 +18,2014-09-12,3,0,0,0,0,0,8,0,en-US,SA,Windows XP,Firefox,33.0,Other,9,37,2014,0 +13,2014-10-20,5,0,0,0,0,0,3,0,en-US,BD,Windows 8,Firefox,34.0,Other,10,43,2014,0 +16,2014-09-25,5,0,0,0,0,0,13,0,en-US,EE,Windows 7,Firefox,33.0,Other,9,39,2014,0 +13,2014-10-13,2,0,0,0,0,0,6,0,en-US,LB,Windows 7,Firefox,33.0,Other,10,42,2014,0 +18,2014-09-10,1587,0,0,1,0,0,12,0,en-US,IR,Windows 7,Firefox,33.0,Other,9,37,2014,0 +12,2014-09-23,1,0,0,0,0,0,7,0,en-US,SE,Windows 7,Firefox,35.0,Other,9,39,2014,0 +13,2014-09-25,110,0,0,1,0,0,5,0,en-US,IN,Windows 8,Firefox,33.0,Other,9,39,2014,0 +17,2014-09-27,99,0,0,0,0,0,11,0,en-US,BD,Windows 7,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-20,1,0,0,0,0,0,11,0,en-US,MC,Windows XP,Firefox,33.0,Other,10,43,2014,0 +14,2014-09-13,2,0,0,0,0,0,7,0,en-US,GR,Windows,Firefox,34.0,Other,9,37,2014,0 +16,2014-10-09,15,0,0,0,0,0,4,0,en-US,RO,Windows,Firefox,35.0,Other,10,41,2014,0 +15,2014-10-22,41,0,0,1,0,0,5,0,en-US,IR,Windows 7,Firefox,34.0,Other,10,43,2014,0 +20,2014-10-01,0,0,0,2,0,0,0,0,en-US,AU,Windows,Firefox,33.0,Other,10,40,2014,0 +18,2014-09-24,1,0,0,0,0,0,5,0,en-US,JO,Windows 7,Firefox,33.0,Other,9,39,2014,0 +13,2014-09-29,83,0,0,0,0,0,10,0,en-US,PH,Windows 7,Firefox,33.0,Other,9,40,2014,0 +15,2014-10-22,2,0,0,0,0,0,14,0,en-US,FR,Windows,Firefox,35.0,Other,10,43,2014,0 +16,2014-09-29,2,0,0,0,0,0,13,0,en-US,RU,Windows 7,Firefox,35.0,Other,9,40,2014,0 +16,2014-10-02,32,0,0,0,0,0,10,0,en-US,NL,Windows 7,Firefox,33.0,Other,10,40,2014,0 +12,2014-10-11,3,0,0,0,0,0,12,0,en-US,IN,Windows 8,Firefox,33.0,Other,10,41,2014,0 +4,2014-09-03,12,0,0,0,0,0,4,0,en-US,SK,Windows 7,Firefox,35.0,Other,9,36,2014,0 +14,2014-09-16,1433,0,0,0,0,0,12,0,en-US,IR,Windows 7,Firefox,33.0,Other,9,38,2014,0 +15,2014-10-02,118,0,0,0,0,0,9,0,en-US,EG,Windows XP,Firefox,33.0,Other,10,40,2014,0 +20,2014-09-28,1,0,0,0,0,0,13,0,en-US,XK,Windows 7,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-23,1,0,0,0,0,0,14,0,en-US,LK,Windows,Firefox,36.0,Other,10,43,2014,0 +15,2014-09-26,0,0,0,1,0,0,0,0,en-US,BA,Windows XP,Firefox,33.0,Other,9,39,2014,0 +13,2014-10-01,3,0,0,0,0,0,4,0,en-US,CD,Windows XP,Firefox,33.0,Other,10,40,2014,0 +18,2014-10-08,1,0,0,0,0,0,12,0,en-US,NG,Windows,Firefox,33.0,Other,10,41,2014,0 +-1,2014-09-30,0,0,0,0,0,0,-1,0,en-GB,ES,Windows,Firefox,33.0,Other,9,40,2014,5 +20,2014-10-10,1,0,0,0,0,0,11,0,en-US,LY,Windows 7,Firefox,33.0,Other,10,41,2014,0 +20,2014-10-18,4,0,0,0,0,0,10,0,en-US,NP,Windows 7,Firefox,33.0,Other,10,42,2014,0 +15,2014-10-16,9,0,0,0,0,0,6,0,en-US,PK,Windows 8,Firefox,33.0,Other,10,42,2014,0 +15,2014-10-17,1,0,0,0,0,0,6,0,en-US,AE,Windows 7,Firefox,33.0,Other,10,42,2014,0 +15,2014-09-17,1,0,0,0,0,0,9,0,en-US,AU,Windows,Firefox,33.0,Other,9,38,2014,0 +14,2014-10-21,4,0,0,0,0,0,5,0,en-US,EG,Windows,Firefox,33.0,Other,10,43,2014,0 +14,2014-10-09,16,0,0,0,0,0,5,0,en-US,PK,Windows 7,Firefox,33.0,Other,10,41,2014,0 +19,2014-10-20,20,0,0,0,0,0,7,0,en-US,US,Windows,Firefox,34.0,Other,10,43,2014,0 +16,2014-09-17,6,0,0,0,0,0,14,0,en-US,US,Mac OS X,Firefox,33.0,Other,9,38,2014,0 +20,2014-09-29,1,0,0,0,0,0,11,0,en-US,ZA,Windows 8,Firefox,33.0,Other,9,40,2014,0 +13,2014-09-29,2,0,0,0,0,0,10,0,en-US,GE,Windows 7,Firefox,33.0,Other,9,40,2014,0 +-1,2014-10-01,0,0,0,0,0,0,-1,0,en-US,LK,Windows XP,Firefox,33.0,Other,10,40,2014,3615 +19,2014-10-15,1,0,0,0,0,0,10,0,en-US,GM,Windows 7,Firefox,33.0,Other,10,42,2014,0 +13,2014-10-14,1,0,0,0,0,0,5,0,en-US,RU,Windows 7,Firefox,33.0,Other,10,42,2014,0 +13,2014-10-12,1,0,0,0,0,0,1,0,en-US,IN,Windows 7,Firefox,33.0,Other,10,41,2014,0 +13,2014-10-22,2,0,0,0,0,0,9,0,en-US,IQ,Windows 7,Firefox,34.0,Other,10,43,2014,0 +16,2014-10-15,3,0,0,0,0,0,11,0,en-US,MV,Windows,Firefox,33.0,Other,10,42,2014,0 +18,2014-10-13,2,0,0,0,0,0,10,0,en-US,GB,Windows,Firefox,33.0,Other,10,42,2014,0 +18,2014-10-09,7,0,0,0,0,0,14,0,en-US,ID,Windows 7,Firefox,34.0,Other,10,41,2014,0 +15,2014-09-17,1,0,0,0,0,0,10,0,en-US,BZ,Windows 7,Firefox,33.0,Other,9,38,2014,0 +19,2014-09-26,1,0,0,0,0,0,11,0,en-US,TZ,Windows 7,Firefox,35.0,Other,9,39,2014,0 +12,2014-10-19,4,0,0,0,0,0,10,0,en-US,EG,Windows 7,Firefox,33.0,Other,10,42,2014,0 +20,2014-09-19,1,0,0,0,0,0,11,0,en-US,FR,Windows,Firefox,33.0,Other,9,38,2014,0 +13,2014-09-23,3,0,0,0,0,0,3,0,en-US,CY,Windows 8,Firefox,33.0,Other,9,39,2014,0 +20,2014-10-18,0,0,0,1,0,0,0,0,en-US,PK,Windows 8,Firefox,34.0,Other,10,42,2014,0 +4,2014-09-05,5,0,0,0,0,0,5,0,en-US,US,Linux,Firefox,35.0,Other,9,36,2014,0 +20,2014-09-12,1,0,0,0,0,0,5,0,en-US,UA,Windows 7,Firefox,33.0,Other,9,37,2014,0 +19,2014-10-02,1,0,0,0,0,0,9,0,en-US,MY,Mac OS X,Firefox,34.0,Other,10,40,2014,0 +-1,2014-10-12,0,0,0,0,0,0,-1,0,en-US,IM,Windows,Firefox,35.0,Other,10,41,2014,2 +13,2014-09-24,1,0,0,0,0,0,6,0,en-US,ET,Windows 8,Firefox,33.0,Other,9,39,2014,0 +17,2014-09-23,4,0,0,0,0,0,5,0,en-US,MG,Windows 7,Firefox,33.0,Other,9,39,2014,0 +15,2014-09-27,2,0,0,0,0,0,10,0,en-US,IT,Windows,Firefox,33.0,Other,9,39,2014,0 +15,2014-10-16,1,0,0,0,0,0,14,0,en-US,EG,Windows 8,Firefox,36.0,Other,10,42,2014,0 +12,2014-09-29,1,0,0,0,0,0,5,0,en-US,BT,Windows 7,Firefox,33.0,Other,9,40,2014,0 +17,2014-09-26,95,0,0,0,0,0,8,0,en-US,BD,Windows 7,Firefox,33.0,Other,9,39,2014,0 +20,2014-10-18,55,0,0,0,0,0,9,0,en-US,US,Windows 7,Firefox,34.0,Other,10,42,2014,0 +13,2014-09-20,1,0,0,0,0,0,8,0,en-US,GB,Mac OS X,Firefox,33.0,Other,9,38,2014,0 +17,2014-10-11,1,0,0,0,0,0,8,0,en-US,PH,Windows 8,Firefox,35.0,Other,10,41,2014,0 +15,2014-09-27,2,0,0,0,0,0,3,0,en-US,VN,Windows 7,Firefox,34.0,Other,9,39,2014,0 +16,2014-10-22,1,0,0,0,0,0,4,0,en-US,SG,Windows,Firefox,34.0,Other,10,43,2014,0 +19,2014-10-19,2,0,0,0,0,0,3,0,en-US,EG,Windows XP,Firefox,36.0,Other,10,42,2014,0 +16,2014-09-29,1,0,0,0,0,0,4,0,en-US,SG,Windows XP,Firefox,35.0,Other,9,40,2014,0 +20,2014-10-16,1,0,0,0,0,0,14,0,en-US,UG,Windows 8,Firefox,33.0,Other,10,42,2014,0 +16,2014-10-23,2,0,0,1,0,0,7,0,en-US,CA,Windows,Firefox,36.0,Other,10,43,2014,0 +18,2014-10-13,4,0,0,0,0,0,10,0,en-US,IQ,Windows 7,Firefox,33.0,Other,10,42,2014,0 +13,2014-09-28,8,0,0,0,0,0,5,0,en-US,MY,Windows XP,Firefox,33.0,Other,9,39,2014,0 +15,2014-10-18,1,0,0,0,0,0,13,0,en-US,MX,Windows 8,Firefox,34.0,Other,10,42,2014,0 +-1,2014-10-19,0,0,0,0,0,0,-1,0,th,TH,Windows XP,Firefox,34.0,Other,10,42,2014,81 +13,2014-09-28,2,0,0,0,0,0,9,0,en-US,EG,Mac OS X,Firefox,33.0,Other,9,39,2014,0 +17,2014-10-13,1,0,0,0,0,0,6,0,en-US,PK,Windows Vista,Firefox,33.0,Other,10,42,2014,0 +15,2014-09-26,1,0,0,0,0,0,11,0,en-US,GB,Windows Vista,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-18,3,0,0,0,0,0,5,0,en-US,BO,Windows,Firefox,33.0,Other,10,42,2014,0 +13,2014-09-23,6,0,0,0,0,0,6,0,en-US,RW,Windows Vista,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-20,3,0,0,0,0,0,12,0,en-US,IN,Windows 8,Firefox,33.0,Other,10,43,2014,0 +19,2014-10-02,2,0,0,0,0,0,13,0,en-US,MU,Windows 7,Firefox,33.0,Other,10,40,2014,0 +20,2014-10-20,1,0,0,1,0,0,3,0,en-US,EG,Windows XP,Firefox,33.0,Other,10,43,2014,0 +20,2014-10-13,2,0,0,0,0,0,8,0,en-US,VN,Windows 8,Firefox,33.0,Other,10,42,2014,0 +-1,2014-10-14,0,0,0,0,0,0,-1,0,en-US,KZ,Linux,Iceweasel,33.0,Other,10,42,2014,3 +16,2014-10-21,13,0,0,0,0,0,11,0,en-US,PK,Windows 7,Firefox,34.0,Other,10,43,2014,0 +18,2014-10-08,13,0,0,0,0,0,6,0,en-US,NZ,Windows 7,Firefox,34.0,Other,10,41,2014,0 +12,2014-10-10,3,0,0,0,0,0,5,0,en-US,US,Ubuntu,Firefox,33.0,Other,10,41,2014,0 +16,2014-09-25,4,0,0,0,0,0,7,0,en-US,US,Windows,Firefox,35.0,Other,9,39,2014,0 +17,2014-10-22,87,0,0,0,0,0,8,0,en-US,PK,Windows XP,Firefox,34.0,Other,10,43,2014,0 +19,2014-10-07,0,0,0,2,0,0,0,0,en-US,IN,Windows,Firefox,35.0,Other,10,41,2014,0 +17,2014-09-20,2,0,0,0,0,0,7,0,en-US,CN,Linux,Firefox,35.0,Other,9,38,2014,0 +19,2014-10-19,191,0,0,0,0,0,9,0,en-US,EG,Windows XP,Firefox,34.0,Other,10,42,2014,0 +13,2014-09-27,5,0,0,0,0,0,13,0,en-US,KH,Windows,Firefox,33.0,Other,9,39,2014,0 +-1,2014-09-24,0,0,0,0,0,0,-1,0,en-US,BD,Windows Vista,Firefox,34.0,Other,9,39,2014,16 +17,2014-09-29,1,0,0,0,0,0,7,0,en-US,MV,Windows XP,Firefox,33.0,Other,9,40,2014,0 +15,2014-10-08,1,0,0,0,0,0,2,0,en-US,PH,Windows,Firefox,35.0,Other,10,41,2014,0 +15,2014-10-23,2,0,0,0,0,0,10,0,en-US,BE,Windows 7,Firefox,34.0,Other,10,43,2014,0 +13,2014-09-15,5,0,0,0,0,0,2,0,en-US,TG,Windows XP,Firefox,33.0,Other,9,38,2014,0 +14,2014-10-15,1,0,0,0,0,0,9,0,en-US,SY,Windows,Firefox,35.0,Other,10,42,2014,0 +20,2014-09-17,1,0,0,0,0,0,7,0,en-US,IN,Windows XP,Firefox,35.0,Other,9,38,2014,0 +13,2014-10-23,1,0,0,0,0,0,9,0,en-US,ET,Windows XP,Firefox,34.0,Other,10,43,2014,0 +20,2014-10-17,1,0,0,0,0,0,12,0,en-US,SA,Windows 7,Firefox,35.0,Other,10,42,2014,0 +14,2014-09-26,2,0,0,0,0,0,2,0,en-US,KH,Windows 8,Firefox,33.0,Other,9,39,2014,0 +14,2014-09-19,1,0,0,0,0,0,2,0,en-US,PE,Windows XP,Firefox,33.0,Other,9,38,2014,0 +15,2014-10-01,1,0,0,0,0,0,10,0,en-US,OM,Windows 8,Firefox,33.0,Other,10,40,2014,0 +14,2014-09-28,3,0,0,0,0,0,13,0,en-US,US,Windows 7,Firefox,35.0,Other,9,39,2014,0 +19,2014-10-16,1,0,0,0,0,0,12,0,en-US,TH,Windows 7,Firefox,36.0,Other,10,42,2014,0 +13,2014-09-30,1,0,0,0,0,0,8,0,en-US,BZ,Windows 8,Firefox,33.0,Other,9,40,2014,0 +19,2014-09-20,2,0,0,0,0,0,7,0,en-US,FJ,Windows 8,Firefox,33.0,Other,9,38,2014,0 +13,2014-10-13,4,0,0,0,0,0,3,0,en-US,IN,Windows 7,Firefox,34.0,Other,10,42,2014,0 +20,2014-10-20,2,0,0,0,0,0,12,0,en-US,GR,Windows 7,Firefox,34.0,Other,10,43,2014,0 +19,2014-10-12,2,0,0,0,0,0,1,0,en-US,US,Windows 7,Firefox,35.0,Other,10,41,2014,0 +14,2014-09-15,1869,0,0,1,0,0,8,0,en-US,PK,Windows 7,Firefox,33.0,Other,9,38,2014,0 +12,2014-09-22,1,0,0,0,0,0,3,0,en-US,IE,Windows,Firefox,35.0,Other,9,39,2014,0 +15,2014-09-27,26,0,0,1,0,0,4,0,en-US,IR,Windows XP,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-12,1,0,0,0,0,0,2,0,en-US,VN,Windows,Firefox,33.0,Other,10,41,2014,0 +19,2014-10-23,1,0,0,0,0,0,6,0,en-US,RS,Windows XP,Firefox,34.0,Other,10,43,2014,0 +15,2014-09-30,1973,2,0,11,0,0,3,0,en-US,IN,Windows 7,Firefox,33.0,Other,9,40,2014,0 +14,2014-10-21,1,0,0,0,0,0,12,0,en-US,CM,Windows XP,Firefox,33.0,Other,10,43,2014,0 +18,2014-10-07,8,0,0,0,0,0,10,0,en-US,DE,Windows 7,Firefox,35.0,Other,10,41,2014,0 +18,2014-09-17,15,0,0,0,0,0,9,0,en-US,NP,Windows,Firefox,33.0,Other,9,38,2014,0 +13,2014-10-09,22,0,0,0,0,0,3,0,en-US,MY,Windows 7,Firefox,33.0,Other,10,41,2014,0 +19,2014-10-19,2,0,0,0,0,0,6,0,en-US,IN,Windows XP,Firefox,34.0,Other,10,42,2014,0 +17,2014-09-23,0,0,0,1,0,0,0,0,en-US,AU,Windows 7,Firefox,33.0,Other,9,39,2014,0 +19,2014-09-25,2,0,0,0,0,0,7,0,en-US,MX,Mac OS X,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-08,24,0,0,0,0,0,10,0,en-US,EG,Windows 7,Firefox,33.0,Other,10,41,2014,0 +18,2014-10-11,1,0,0,0,0,0,10,0,en-US,ID,Windows,Firefox,33.0,Other,10,41,2014,0 +12,2014-09-17,2,0,0,0,0,0,12,0,en-US,BR,Windows 8,Firefox,33.0,Other,9,38,2014,0 +16,2014-09-17,1,0,0,0,0,0,7,0,en-US,LK,Windows 8,Firefox,35.0,Other,9,38,2014,0 +17,2014-10-12,4,0,0,0,0,0,5,0,en-US,PH,Windows,Firefox,35.0,Other,10,41,2014,0 +13,2014-09-28,3,0,0,0,0,0,3,0,en-US,EG,Windows XP,Firefox,35.0,Other,9,39,2014,0 +12,2014-09-26,46,0,0,0,0,0,8,0,en-US,ID,Windows,Firefox,33.0,Other,9,39,2014,0 +19,2014-10-02,1,0,0,0,0,0,12,0,en-US,BR,Windows 8,Firefox,35.0,Other,10,40,2014,0 +16,2014-10-02,2,0,0,0,0,0,10,0,en-US,MG,Windows XP,Firefox,33.0,Other,10,40,2014,0 +15,2014-10-02,10,0,0,0,0,0,10,0,en-US,CM,Windows XP,Firefox,33.0,Other,10,40,2014,0 +19,2014-10-12,1,0,0,0,0,0,13,0,en-US,KH,Windows,Firefox,33.0,Other,10,41,2014,0 +16,2014-10-01,12,0,0,0,0,0,13,0,en-US,CA,Windows XP,Firefox,33.0,Other,10,40,2014,0 +12,2014-10-22,4,0,0,0,0,0,0,0,en-US,PT,Windows XP,Firefox,34.0,Other,10,43,2014,0 +16,2014-09-30,9,0,0,0,0,0,5,0,en-US,AF,Windows 7,Firefox,33.0,Other,9,40,2014,0 +12,2014-09-27,2,0,0,0,0,0,6,0,en-US,RU,Windows 7,Firefox,33.0,Other,9,39,2014,0 +16,2014-09-28,1,0,0,0,0,0,8,0,en-US,SA,Windows 8,Firefox,33.0,Other,9,39,2014,0 +17,2014-09-29,8,0,0,0,0,0,12,0,en-US,US,Windows 8,Firefox,33.0,Other,9,40,2014,0 +19,2014-09-20,2,0,0,0,0,0,7,0,en-US,MW,Windows 7,Firefox,33.0,Other,9,38,2014,0 +17,2014-10-18,2,0,0,0,0,0,6,0,en-US,IQ,Windows 7,Firefox,35.0,Other,10,42,2014,0 +14,2014-09-17,1,0,0,0,0,0,2,0,en-US,MW,Windows 7,Firefox,33.0,Other,9,38,2014,0 +20,2014-09-29,108,1,0,0,0,0,8,0,en-US,EG,Windows XP,Firefox,33.0,Other,9,40,2014,0 +13,2014-09-24,2,0,0,0,0,0,13,0,en-US,MX,Windows 7,Firefox,33.0,Other,9,39,2014,0 +15,2014-10-08,3,0,0,0,0,0,1,0,en-US,NP,Windows 7,Firefox,33.0,Other,10,41,2014,0 +19,2014-09-10,12,0,0,0,0,0,5,0,en-US,GB,Windows,Firefox,35.0,Other,9,37,2014,0 +19,2014-09-17,1,0,0,0,0,0,10,0,en-US,SI,Windows 7,Firefox,33.0,Other,9,38,2014,0 +14,2014-09-24,1,0,0,0,0,0,13,0,en-US,ES,Windows 7,Firefox,35.0,Other,9,39,2014,0 +13,2014-09-30,1,0,0,0,0,0,4,0,en-US,NO,Windows 7,Firefox,33.0,Other,9,40,2014,0 +16,2014-10-20,1,0,0,0,0,0,13,0,en-US,LK,Windows 8,Firefox,34.0,Other,10,43,2014,0 +12,2014-10-18,9,0,0,0,0,0,6,0,en-US,SG,Windows 7,Firefox,34.0,Other,10,42,2014,0 +13,2014-10-19,1,0,0,0,0,0,13,0,en-US,SE,Windows 7,Firefox,34.0,Other,10,42,2014,0 +17,2014-10-02,2,0,0,0,0,0,8,0,en-US,LT,Windows 7,Firefox,35.0,Other,10,40,2014,0 +19,2014-10-13,1,0,0,0,0,0,10,0,en-US,TH,Windows 7,Firefox,33.0,Other,10,42,2014,0 +19,2014-09-30,2,0,0,0,0,0,10,0,en-US,IN,Ubuntu,Firefox,33.0,Other,9,40,2014,0 +15,2014-09-17,1,0,0,0,0,0,8,0,en-US,TG,Windows 7,Firefox,33.0,Other,9,38,2014,0 +13,2014-10-14,2,0,0,0,0,0,11,0,en-US,DZ,Windows 8,Firefox,36.0,Other,10,42,2014,0 +15,2014-09-30,1,0,0,0,0,0,6,0,en-US,BR,Mac OS X,Firefox,33.0,Other,9,40,2014,0 +12,2014-10-02,1,0,0,0,0,0,2,0,en-US,NZ,Windows,Firefox,33.0,Other,10,40,2014,0 +13,2014-09-23,4,0,0,0,0,0,7,0,en-US,NA,Windows 8,Firefox,33.0,Other,9,39,2014,0 +13,2014-09-17,14,0,0,0,0,0,8,0,en-US,KH,Windows XP,Firefox,33.0,Other,9,38,2014,0 +17,2014-09-27,6,0,0,0,0,0,5,0,en-US,PL,Windows XP,Firefox,33.0,Other,9,39,2014,0 +-1,2014-10-21,0,0,0,0,0,0,-1,0,en-US,US,Linux,Firefox,34.0,Other,10,43,2014,51 +16,2014-09-26,1,0,0,0,0,0,4,0,en-US,PK,Windows Vista,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-15,1,0,0,0,0,0,11,0,en-US,ID,Windows XP,Firefox,34.0,Other,10,42,2014,0 +16,2014-09-17,11,0,0,0,0,0,13,0,en-US,AE,Windows 7,Firefox,33.0,Other,9,38,2014,0 +19,2014-10-18,3,0,0,0,0,0,6,0,en-US,MM,Windows 8,Firefox,33.0,Other,10,42,2014,0 +15,2014-10-20,1,0,0,0,0,0,4,0,en-US,GY,Windows XP,Firefox,34.0,Other,10,43,2014,0 +20,2014-10-09,3,0,0,0,0,0,10,0,en-US,MY,Windows XP,Firefox,33.0,Other,10,41,2014,0 +17,2014-10-19,1,0,0,0,0,0,6,0,en-US,SY,Windows 7,Firefox,36.0,Other,10,42,2014,0 +15,2014-09-24,2,0,0,0,0,0,13,0,en-US,GB,Windows 8,Firefox,35.0,Other,9,39,2014,0 +15,2014-09-19,2,0,0,0,0,0,9,0,en-US,MY,Windows,Firefox,33.0,Other,9,38,2014,0 +18,2014-10-23,2,0,0,0,0,0,8,0,en-US,MA,Windows 7,Firefox,34.0,Other,10,43,2014,0 +12,2014-09-23,26,0,0,0,0,0,4,0,en-US,GB,Windows 7,Firefox,33.0,Other,9,39,2014,0 +13,2014-09-07,2,0,0,0,0,0,5,0,en-US,CN,Windows XP,Firefox,34.0,Other,9,36,2014,0 +17,2014-10-13,2,0,0,0,0,0,5,0,en-US,TH,Windows 7,Firefox,33.0,Other,10,42,2014,0 +15,2014-09-13,4,0,0,0,0,0,6,0,en-US,RU,Windows 7,Firefox,34.0,Other,9,37,2014,0 +19,2014-10-09,2,0,0,0,0,0,0,0,en-US,ID,Windows 8,Firefox,34.0,Other,10,41,2014,0 +20,2014-10-07,14,0,0,0,0,0,11,0,en-US,IN,Windows 7,Firefox,33.0,Other,10,41,2014,0 +18,2014-09-17,1,0,0,0,0,0,13,0,en-US,ME,Windows 8,Firefox,33.0,Other,9,38,2014,0 +-1,2014-10-21,0,0,0,0,0,0,-1,0,en-US,CA,Windows Vista,Firefox,34.0,Other,10,43,2014,77 +15,2014-10-15,6,0,0,0,0,0,12,0,en-US,IN,Windows 7,Firefox,34.0,Other,10,42,2014,0 +-1,2014-10-09,0,0,0,0,0,0,-1,0,en-US,KW,Windows 7,Firefox,34.0,Other,10,41,2014,7 +16,2014-10-15,1,0,0,0,0,0,6,0,en-US,RS,Windows 7,Firefox,33.0,Other,10,42,2014,0 +12,2014-10-21,5,0,0,0,0,0,7,0,en-US,MY,Windows 7,Firefox,34.0,Other,10,43,2014,0 +15,2014-09-25,1,0,0,0,0,0,5,0,en-US,EG,Windows XP,Firefox,35.0,Other,9,39,2014,0 +17,2014-09-28,34,0,0,0,0,0,6,0,en-US,GB,Windows 7,Firefox,33.0,Other,9,39,2014,0 +18,2014-10-22,1,0,0,0,0,0,7,0,en-US,SI,Windows 8,Firefox,35.0,Other,10,43,2014,0 +13,2014-09-24,1,0,0,0,0,0,14,0,en-US,PT,Windows 7,Firefox,35.0,Other,9,39,2014,0 +-1,2014-10-21,0,0,0,0,0,0,-1,0,es-CL,BE,Windows,Firefox,34.0,Other,10,43,2014,5 +12,2014-09-20,1,0,0,0,0,0,14,0,en-US,KH,Windows 8,Firefox,33.0,Other,9,38,2014,0 +14,2014-10-08,1,0,0,0,0,0,1,0,en-US,IN,Windows,Firefox,33.0,Other,10,41,2014,0 +12,2014-10-19,1,0,0,0,0,0,11,0,en-US,GB,Windows XP,Firefox,33.0,Other,10,42,2014,0 +12,2014-09-10,68,0,0,0,0,0,9,0,en-US,BN,Windows,Firefox,33.0,Other,9,37,2014,0 +18,2014-09-28,0,0,0,1,0,0,4,0,en-US,GR,Windows XP,Firefox,33.0,Other,9,39,2014,0 +18,2014-09-29,3,0,0,0,0,0,6,0,en-US,BR,Windows XP,Firefox,33.0,Other,9,40,2014,0 +17,2014-10-19,2,0,0,0,0,0,7,0,en-US,CA,Windows,Firefox,36.0,Other,10,42,2014,0 +17,2014-09-29,3,0,0,0,0,0,12,0,en-US,GB,Windows 8,Firefox,33.0,Other,9,40,2014,0 +16,2014-09-27,5,0,0,0,0,0,6,0,en-US,LA,Windows 7,Firefox,33.0,Other,9,39,2014,0 +19,2014-10-09,1,0,0,0,0,0,12,0,en-US,HR,Windows 7,Firefox,34.0,Other,10,41,2014,0 +19,2014-10-20,314,0,0,0,0,0,12,0,en-US,ID,Windows 7,Firefox,34.0,Other,10,43,2014,0 +18,2014-10-20,5,0,0,0,0,0,6,0,en-US,SG,Windows,Firefox,34.0,Other,10,43,2014,0 +16,2014-09-25,2,0,0,0,0,0,6,0,en-US,IN,Windows 8,Firefox,34.0,Other,9,39,2014,0 +18,2014-10-19,1,0,0,0,0,0,13,0,en-US,NO,Windows 7,Firefox,34.0,Other,10,42,2014,0 +14,2014-10-09,1,0,0,0,0,0,8,0,en-US,US,Windows Vista,Firefox,33.0,Other,10,41,2014,0 +13,2014-09-27,1,0,0,0,0,0,7,0,en-US,SK,Windows 7,Firefox,35.0,Other,9,39,2014,0 +12,2014-10-16,1,0,0,0,0,0,4,0,en-US,AL,Windows 7,Firefox,33.0,Other,10,42,2014,0 +13,2014-09-27,6,0,0,0,0,0,13,0,en-US,SG,Windows 7,Firefox,33.0,Other,9,39,2014,0 +12,2014-09-25,1,0,0,0,0,0,11,0,en-US,LU,Windows,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-02,1,0,0,0,0,0,5,0,en-US,TZ,Windows,Firefox,33.0,Other,10,40,2014,0 +18,2014-09-30,4,0,0,0,0,0,10,0,en-US,TZ,Windows XP,Firefox,35.0,Other,9,40,2014,0 +16,2014-09-19,15,0,0,0,0,0,6,0,en-US,CA,Windows 7,Firefox,33.0,Other,9,38,2014,0 +19,2014-09-27,1,0,0,0,0,0,9,0,en-US,BH,Windows,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-14,4,0,0,0,0,0,8,0,en-US,IQ,Windows 7,Firefox,33.0,Other,10,42,2014,0 +13,2014-09-25,1,0,0,0,0,0,1,0,en-US,KR,Windows 7,Firefox,33.0,Other,9,39,2014,0 +12,2014-09-24,2,0,0,0,0,0,2,0,en-US,IR,Windows 8,Firefox,33.0,Other,9,39,2014,0 +14,2014-10-15,62,0,0,0,0,0,14,0,en-US,IN,Windows 7,Firefox,33.0,Other,10,42,2014,0 +13,2014-09-19,7,0,0,0,0,0,1,0,en-US,KH,Windows XP,Firefox,33.0,Other,9,38,2014,0 +-1,2014-10-15,0,0,0,0,0,0,-1,0,ru,BY,Windows XP,Firefox,33.0,Other,10,42,2014,3 +17,2014-10-02,3,0,0,0,0,0,9,0,en-US,FR,Windows,Firefox,33.0,Other,10,40,2014,0 +19,2014-10-23,1,0,0,0,0,0,10,0,en-US,RS,Windows 8,Firefox,36.0,Other,10,43,2014,0 +13,2014-09-24,1,0,0,0,0,0,10,0,en-US,RU,Windows,Firefox,35.0,Other,9,39,2014,0 +16,2014-09-23,3,0,0,0,0,0,4,0,en-US,MU,Windows 8,Firefox,33.0,Other,9,39,2014,0 +20,2014-10-13,1,0,0,0,0,0,9,0,en-US,MV,Windows 7,Firefox,33.0,Other,10,42,2014,0 +17,2014-10-13,1,0,0,0,0,0,5,0,en-US,KH,Windows 7,Firefox,33.0,Other,10,42,2014,0 +17,2014-09-20,1,0,0,0,0,0,8,0,en-US,KW,Windows XP,Firefox,33.0,Other,9,38,2014,0 +21,2014-10-22,1,0,0,0,0,0,5,0,en-US,NG,Windows 7,Firefox,33.0,Other,10,43,2014,0 +18,2014-10-16,259,0,0,0,0,0,7,0,en-US,US,Windows 7,Firefox,36.0,Other,10,42,2014,0 +13,2014-10-10,1,0,0,0,0,0,7,0,en-US,KE,Windows,Firefox,35.0,Other,10,41,2014,0 +1,2014-10-19,1,0,0,0,0,0,11,0,en-US,US,Windows 7,Firefox,35.0,Other,10,42,2014,0 +12,2014-10-19,1,0,0,0,0,0,6,0,en-US,QA,Windows 8,Firefox,34.0,Other,10,42,2014,0 +12,2014-10-23,7,0,0,0,0,0,14,0,en-US,BD,Windows XP,Firefox,33.0,Other,10,43,2014,0 +15,2014-10-01,1,0,0,0,0,0,12,0,en-US,LV,Windows 8,Firefox,33.0,Other,10,40,2014,0 +20,2014-09-26,6,0,0,0,0,0,13,0,en-US,BG,Windows XP,Firefox,33.0,Other,9,39,2014,0 +17,2014-10-17,1,0,0,0,0,0,9,0,en-US,GM,Windows XP,Firefox,34.0,Other,10,42,2014,0 +16,2014-09-19,2,0,0,0,0,0,14,0,en-US,EG,Windows XP,Firefox,35.0,Other,9,38,2014,0 +18,2014-09-17,1,0,0,0,0,0,11,0,en-US,MK,Windows 7,Firefox,33.0,Other,9,38,2014,0 +17,2014-09-20,1,0,0,0,0,0,10,0,en-US,MX,Windows XP,Firefox,35.0,Other,9,38,2014,0 +20,2014-10-02,28,0,0,0,0,0,11,0,en-US,NG,Windows 7,Firefox,33.0,Other,10,40,2014,0 +12,2014-10-23,1,0,0,0,0,0,11,0,en-US,CO,Windows 8,Firefox,34.0,Other,10,43,2014,0 +15,2014-09-12,1601,1,0,13,0,0,5,0,en-US,PH,Windows XP,Firefox,33.0,Other,9,37,2014,0 +16,2014-10-19,2,0,0,0,0,0,10,0,en-US,LT,Windows XP,Firefox,34.0,Other,10,42,2014,0 +15,2014-10-21,0,0,0,1,0,0,2,0,en-US,IQ,Windows 7,Firefox,33.0,Other,10,43,2014,0 +17,2014-09-26,34,0,0,0,0,0,9,0,en-US,ID,Windows 8,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-02,5,0,0,0,0,0,0,0,en-US,BG,Windows 7,Firefox,33.0,Other,10,40,2014,0 +19,2014-09-23,2,0,0,0,0,0,7,0,en-US,GE,Windows XP,Firefox,33.0,Other,9,39,2014,0 +16,2014-10-20,4,0,0,4,0,0,1,0,en-US,EG,Windows XP,Firefox,34.0,Other,10,43,2014,0 +17,2014-09-14,1,0,0,0,0,0,9,0,en-US,CY,Windows 7,Firefox,33.0,Other,9,37,2014,0 +12,2014-10-11,1,0,0,0,0,0,13,0,en-US,IN,Windows 8,Firefox,34.0,Other,10,41,2014,0 +12,2014-10-23,20,0,0,0,0,0,14,0,en-US,TH,Windows 7,Firefox,34.0,Other,10,43,2014,0 +13,2014-10-19,11,0,0,0,0,0,8,0,en-US,RO,Windows 7,Firefox,34.0,Other,10,42,2014,0 +18,2014-09-19,17,0,0,0,0,0,8,0,en-US,KE,Windows XP,Firefox,33.0,Other,9,38,2014,0 +15,2014-10-08,1,0,0,0,0,0,14,0,en-US,IQ,Windows 7,Firefox,33.0,Other,10,41,2014,0 +20,2014-09-08,22,0,0,0,0,0,9,0,en-US,GM,Windows 7,Firefox,33.0,Other,9,37,2014,0 +12,2014-09-19,1,0,0,0,0,0,8,0,en-US,CM,Windows 8,Firefox,35.0,Other,9,38,2014,0 +12,2014-10-06,389,0,0,0,0,0,8,0,en-US,PH,Windows XP,Firefox,33.0,Other,10,41,2014,0 +16,2014-10-18,1,0,0,0,0,0,14,0,en-US,ZW,Windows 7,Firefox,33.0,Other,10,42,2014,0 +12,2014-10-02,1,0,0,0,0,0,10,0,en-US,SA,Windows XP,Firefox,33.0,Other,10,40,2014,0 +20,2014-09-30,2,0,0,0,0,0,5,0,en-US,RS,Windows,Firefox,33.0,Other,9,40,2014,0 +16,2014-09-24,1,0,0,0,0,0,9,0,en-US,BA,Windows XP,Firefox,33.0,Other,9,39,2014,0 +12,2014-10-20,7,0,0,0,0,0,5,0,en-US,DE,Windows 7,Firefox,34.0,Other,10,43,2014,0 +16,2014-09-17,4,0,0,0,0,0,9,0,en-US,MY,Windows 7,Firefox,35.0,Other,9,38,2014,0 +16,2014-09-14,1423,0,0,1,0,0,10,0,en-US,EG,Windows 7,Firefox,33.0,Other,9,37,2014,0 +13,2014-09-15,6,0,0,0,0,0,4,0,en-US,KR,Mac OS X,Firefox,34.0,Other,9,38,2014,0 +14,2014-10-18,1,0,0,0,0,0,7,0,en-US,PE,Windows 7,Firefox,34.0,Other,10,42,2014,0 +15,2014-09-28,1,0,0,0,0,0,11,0,en-US,NL,Windows XP,Firefox,33.0,Other,9,39,2014,0 +19,2014-09-20,2,0,0,0,0,0,9,0,en-US,UG,Windows 8,Firefox,33.0,Other,9,38,2014,0 +16,2014-10-20,2,0,0,0,0,0,12,0,en-US,MY,Windows 7,Firefox,33.0,Other,10,43,2014,0 +19,2014-10-01,58,0,0,0,0,0,9,0,en-US,IN,Windows,Firefox,33.0,Other,10,40,2014,0 +19,2014-10-11,2,0,0,0,0,0,4,0,en-US,PK,Windows 7,Firefox,34.0,Other,10,41,2014,0 +15,2014-10-02,19,0,0,0,0,0,9,0,en-US,NZ,Windows 7,Firefox,33.0,Other,10,40,2014,0 +13,2014-10-19,8,0,0,0,0,0,6,0,en-US,MY,Windows,Firefox,33.0,Other,10,42,2014,0 +20,2014-10-08,4,0,0,0,0,0,14,0,en-US,ZW,Windows 7,Firefox,33.0,Other,10,41,2014,0 +19,2014-10-23,1,0,0,0,0,0,6,0,en-US,IR,Windows XP,Firefox,34.0,Other,10,43,2014,0 +12,2014-10-13,1,0,0,0,0,0,0,0,en-US,CN,Windows 7,Firefox,35.0,Other,10,42,2014,0 +12,2014-09-19,1,0,0,0,0,0,1,0,en-US,MA,Windows,Firefox,33.0,Other,9,38,2014,0 +17,2014-09-29,61,0,0,0,0,0,9,0,en-US,ID,Windows 8,Firefox,33.0,Other,9,40,2014,0 +-1,2014-10-21,0,0,0,0,0,0,-1,0,ja,US,Windows 7,Firefox,34.0,Other,10,43,2014,116 +19,2014-09-23,3,0,0,0,0,0,12,0,en-US,MA,Windows XP,Firefox,33.0,Other,9,39,2014,0 +17,2014-10-21,2,0,0,0,0,0,11,0,en-US,YE,Windows 7,Firefox,34.0,Other,10,43,2014,0 +14,2014-09-26,1,0,0,0,0,0,3,0,en-US,VE,Windows 7,Firefox,35.0,Other,9,39,2014,0 +13,2014-10-01,11,0,0,1,0,0,5,0,en-US,PK,Windows 7,Firefox,33.0,Other,10,40,2014,0 +14,2014-10-13,4,0,0,0,0,0,7,0,en-US,IN,Windows XP,Firefox,34.0,Other,10,42,2014,0 +19,2014-10-09,1,0,0,0,0,0,10,0,en-US,LK,Windows XP,Firefox,33.0,Other,10,41,2014,0 +18,2014-10-09,48,0,0,0,0,0,6,0,en-US,PH,Windows XP,Firefox,33.0,Other,10,41,2014,0 +20,2014-10-14,4,0,0,0,0,0,8,0,en-US,FR,Windows 7,Firefox,33.0,Other,10,42,2014,0 +15,2014-10-11,18,0,0,0,0,0,3,0,en-US,GH,Windows XP,Firefox,33.0,Other,10,41,2014,0 \ No newline at end of file diff --git a/tests/fixtures/tiles.csv b/tests/fixtures/tiles.csv new file mode 100644 index 0000000..9d98aef --- /dev/null +++ b/tests/fixtures/tiles.csv @@ -0,0 +1,29 @@ +2,https://www.youtube.com/,#e5523f,YouTube,organic,afde8dbe01fbac4077604966493546256d79dce3,NULL,en-US +6,https://en.wikipedia.org/wiki/Main_Page,#ffffff,Wikipedia,organic,f4eff3073dd55c07aca748109453b620b3891c9b,NULL,en-US +10,https://webmaker.org/?utm_source=directory-tiles&utm_medium=firefox-browser,#083e5f,Webmaker,affiliate,f71bdf07c8019d40d2c1bdb94cefd833e4cc06a0,70a8f675b3f4b919db7196939652a3ade7c610bd,en-US +14,http://2014.mozillafestival.org/,,Mozilla Festival,affiliate,2bafaa3991f72b2d14c10086cd36a9f3ee3fa453,fa27f00aa557926b164d344d866577ac2078fa9a,en-US +18,http://contribute.mozilla.org/,,Mozilla Community,affiliate,c52fd8a28cd1c427d516c18de9381762f4561561,615c5faaf784f5597b273d0d7f98256065634e65,en-US +22,https://www.mozilla.com/firefox/tiles,#cae1f4,Canada / en-US,sponsored,a4ad4d01fe32f69947b6a90b076b5cc1ccd6c63c,NULL,en-US +27,https://www.mozilla.com/firefox/tiles,#cae1f4,Saudi Arabia / en-US,sponsored,a4ad4d01fe32f69947b6a90b076b5cc1ccd6c63c,NULL,en-US +29,https://www.mozilla.com/firefox/tiles,#cae1f4,Hong Kong / en-US,sponsored,a4ad4d01fe32f69947b6a90b076b5cc1ccd6c63c,NULL,en-US +1,https://www.facebook.com/,#3a5898,Facebook,organic,b28df1882153b198b6444f2a64f393abd4c5f1c3,NULL,en-US +5,https://www.mozilla.org/en-US/?utm_source=directory-tiles&utm_medium=firefox-browser,#4d4e54,Mozilla,affiliate,37f807da767f5d295f85b20e461c5bd4c6c2a3de,9d7b4a1490c4f2e61b706948a8720e75b02a64c5,en-US +9,http://www.bbc.com/?ocid=mozilla,#990000,BBC,sponsored,d61a5cdacd4498ebd7fc61c95ab9bc8c29ba9d25,NULL,en-US +13,https://developer.mozilla.org/en-US/,,Mozilla Developer Network,affiliate,5c8b36da671fc52a2c03404c65c24df271c35a11,5495155004f16dbde1e5d41d4c92354b7d096ca5,en-US +17,https://webmaker.org/?utm_source=directory-tiles&utm_medium=firefox-browser,#ffffff,Webmaker,affiliate,506f00ccb24f7a0b3d28fabd11395de2cecf805d,864f4a6e613eaa8bf4046a4d69a9c3cf1ac54e7c,en-US +21,https://www.mozilla.com/firefox/tiles,#cae1f4,Any Country / en-US,sponsored,a4ad4d01fe32f69947b6a90b076b5cc1ccd6c63c,NULL,en-US +4,https://www.mozilla.org/en-US/lightbeam/?utm_source=directory-tiles&utm_medium=firefox-browser,#bfdff0,Lightbeam,affiliate,169dba9a7591faee5f52a24d640a230f3e498ecd,9af473524247b2fd1bf26d83b153f4d9532cb3eb,en-US +8,http://www.amazon.com/gp/bit/amazonbookmark.html?tag=mozilla-directory-tiles-20&partner=Mozilla,#000000,Amazon,organic,1077b61b66018009eade07df342f0db42f40d440,NULL,en-US +12,http://fastestfirefox.com/en-US/firefox/desktop/customize/,,Customize Firefox,affiliate,7e29028e37ac71e935f70fbd1fdc14f64062e5e9,b81f0e7f861c91ed9c20fbc0c24d8551b56a43db,en-US +16,https://www.mozilla.org/en-US/about/manifesto/,,Mozilla Manifesto,affiliate,124fb7c57a3c0be30bfffa6ea8fb9ac7db155086,9fc7831e5cb68a20f99047e8ce221b3fe8a5a70f,en-US +20,https://www.mozilla.com/en-US/?utm_source=directory-tiles&utm_medium=firefox-browser,#4d4e54,Mozilla,affiliate,37f807da767f5d295f85b20e461c5bd4c6c2a3de,9d7b4a1490c4f2e61b706948a8720e75b02a64c5,en-US +23,https://www.mozilla.com/firefox/tiles,#cae1f4,Europe / en-US,sponsored,a4ad4d01fe32f69947b6a90b076b5cc1ccd6c63c,NULL,en-US +26,https://www.mozilla.com/firefox/tiles,#cae1f4,United States / en-US,sponsored,a4ad4d01fe32f69947b6a90b076b5cc1ccd6c63c,NULL,en-US +28,https://www.mozilla.com/firefox/tiles,#cae1f4,United Kingdom / en-US,sponsored,a4ad4d01fe32f69947b6a90b076b5cc1ccd6c63c,NULL,en-US +3,http://www.wired.com/?mbid=fftile,#000000,WIRED,sponsored,0761a3ac203c1502551551715ae390ce479f8b0f,NULL,en-US +7,http://www.trulia.com/?ecampaign=tiles,#53b50a,Trulia,sponsored,364a34f53821948ca036c956eb596e4790b31a05,NULL,en-US +11,http://www.booking.com/index.html?aid=392779&label=mozilla-pilot-usa,#005192,Booking.com,sponsored,935a608917fb481c973f3b1e91d6dcad46b6aa36,NULL,en-US +15,https://play.google.com/store/apps/details?id=org.mozilla.firefox&referrer=utm_source%3Dmozilla%26utm_medium%3Dbanner%26utm_campaign%3Ddesktop01,#ffffff,Firefox for Android,affiliate,771f612f9e75ad3348886a1fa02961d900748999,2d301f059ead3fa971da9907a0a7151ad8aa66c2,en-US +19,https://marketplace.firefox.com/,,Firefox Marketplace,affiliate,5301b4607ba37c747a56991440176b9de52c3f5a,6c5a520e28f980f761c240265302ab738dcfda40,en-US +24,https://www.mozilla.com/firefox/tiles,#cae1f4,New Zealand / en-US,sponsored,a4ad4d01fe32f69947b6a90b076b5cc1ccd6c63c,NULL,en-US +25,https://www.mozilla.com/firefox/tiles,#cae1f4,Australia / en-US,sponsored,a4ad4d01fe32f69947b6a90b076b5cc1ccd6c63c,NULL,en-US \ No newline at end of file diff --git a/tests/test_ingest.py b/tests/test_ingest.py index 9f272ee..a57a62f 100644 --- a/tests/test_ingest.py +++ b/tests/test_ingest.py @@ -1,3 +1,7 @@ +# ensure environment is set up correctly in ALL test environments +from splice.environment import Environment +env = Environment.instance(test=True) + from nose.tools import assert_raises, assert_equal, assert_not_equal from jsonschema.exceptions import ValidationError from splice.ingest import ingest_links, generate_artifacts, IngestError @@ -60,7 +64,9 @@ def test_id_creation(self): } data = ingest_links({"STAR/en-US": [tile]}) directory_id = data["STAR/en-US"][0]["directoryId"] - assert_equal(1, directory_id) + + # there are IDs 1-29 in the tiles fixtures, the next ID needs to be 30 + assert_equal(30, directory_id) def test_id_not_duplicated(self): """ @@ -98,7 +104,7 @@ def test_id_not_duplicated(self): }) directory_id_star = data["STAR/en-US"][0]["directoryId"] directory_id_ca = data["CA/en-US"][0]["directoryId"] - assert_equal(1, directory_id_star) + assert_equal(30, directory_id_star) assert_not_equal(data["STAR/en-US"][1]["directoryId"], directory_id_star) assert_equal(directory_id_ca, directory_id_star) @@ -118,11 +124,11 @@ def test_id_not_overwritten(self): data = ingest_links({"STAR/en-US": tiles_star}) directory_id = data["STAR/en-US"][0]["directoryId"] - assert_equal(1, directory_id) + assert_equal(30, directory_id) data = ingest_links({"STAR/en-US": tiles_star}) directory_id = data["STAR/en-US"][0]["directoryId"] - assert_equal(1, directory_id) + assert_equal(30, directory_id) class TestGenerateArtifacts(BaseTestCase):