You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ss...@apache.org on 2021/09/14 17:33:42 UTC

[systemds] branch master updated (a264691 -> ebc206e)

This is an automated email from the ASF dual-hosted git repository.

ssiddiqi pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git.


    from a264691  [MINOR] PythonAPI update builtin algorithms
     new e3ee372  fixing bug
     new ebc206e  [MINOR] Added test with company dataset   - This commit contains topk_cleaning test with company dataset   - TODO: fix for ArrayIndexOutOfBounce exception

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 scripts/builtin/bandit.dml                         |   19 +-
 scripts/builtin/tomeklink.dml                      |   51 +
 scripts/builtin/topk_cleaning.dml                  |    2 +-
 .../functions/builtin/BuiltinTomeklinkTest.java    |    4 +-
 .../BuiltinTopkCleaningClassificationTest.java     |   31 +-
 src/test/resources/datasets/pipelines/company.csv  | 3461 ++++++++++++++++++++
 .../functions/pipelines/applyEvaluateTest.dml      |    6 +-
 .../pipelines/intermediates/classification/hp.csv  |    6 +-
 .../pipelines/intermediates/classification/lp.csv  |    2 +-
 .../pipelines/intermediates/classification/pip.csv |    6 +-
 .../functions/pipelines/meta/meta_company.csv      |    3 +
 11 files changed, 3555 insertions(+), 36 deletions(-)
 create mode 100644 src/test/resources/datasets/pipelines/company.csv
 create mode 100644 src/test/scripts/functions/pipelines/meta/meta_company.csv

[systemds] 01/02: fixing bug

Posted by ss...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ssiddiqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git

commit e3ee3720c03307b447e69e0c949b0c9ae5eb3c2d
Author: Shafaq Siddiqi <sh...@tugraz.at>
AuthorDate: Mon Sep 6 14:30:18 2021 +0200

    fixing bug
    
    for winsorizing
    
    whatever
    
    I am sleepy
    
    crossV fix
---
 scripts/builtin/bandit.dml                         | 19 ++++----
 scripts/builtin/tomeklink.dml                      | 51 ++++++++++++++++++++++
 scripts/builtin/topk_cleaning.dml                  |  2 +-
 .../functions/builtin/BuiltinTomeklinkTest.java    |  4 +-
 .../functions/pipelines/applyEvaluateTest.dml      |  6 +--
 .../pipelines/intermediates/classification/hp.csv  |  6 +--
 .../pipelines/intermediates/classification/lp.csv  |  2 +-
 .../pipelines/intermediates/classification/pip.csv |  6 +--
 8 files changed, 73 insertions(+), 23 deletions(-)

diff --git a/scripts/builtin/bandit.dml b/scripts/builtin/bandit.dml
index 28aa909..91abc08 100644
--- a/scripts/builtin/bandit.dml
+++ b/scripts/builtin/bandit.dml
@@ -53,7 +53,7 @@ m_bandit = function(Matrix[Double] X_train, Matrix[Double] Y_train, Matrix[Doubl
   rows = 1, cols = NUM_FEATURES + 4 )
   frameList = list()
   
-  for(s in s_max:0) { # TODO convert to parfor
+  parfor(s in s_max:0, check=0) { # TODO convert to parfor
     
    # result variables
     bracket_hp = matrix(0, rows=k*(s+1)+k, cols=HYPERPARAM_LENGTH)
@@ -272,12 +272,11 @@ run_with_hyperparam = function(Frame[Unknown] lp, Frame[Unknown] ph_pip, Integer
         {
           pipList = list(lp = lp, ph = ph_pip[i], hp = hp_matrix, flags = no_of_flag_vars)
           [evalFunOutput, hpForPruning, changesByOp] = crossV(X=X, y=Y, cvk=cvk, evalFunHp=evalFunHp, pipList=pipList, metaList=metaList, hpForPruning=hpForPruning, 
-          changesByOp=changesByOp, evalFunc=evaluationFunc, trainML = FALSE)
-      
+          changesByOp=changesByOp, evalFunc=evaluationFunc, trainML = 0)
         }
         else 
         {
-          [eXtrain, eYtrain, eXtest, eYtest, Tr] = executePipeline(logical=lp, pipeline=ph_pip[i], X=X, Y=Y, Xtest=Xtest, Ytest=Ytest, metaList=metaList,
+          [eXtrain, eYtrain, eXtest, eYtest, Tr, hpForPruning, changesByOp] = executePipeline(logical=lp, pipeline=ph_pip[i], X=X, Y=Y, Xtest=Xtest, Ytest=Ytest, metaList=metaList,
             hyperParameters=hp_matrix, hpForPruning=hpForPruning, changesByOp=changesByOp, flagsCount=no_of_flag_vars, test=TRUE, verbose=FALSE)
           if(max(eYtrain) == min(eYtrain)) 
             print("Y contains only one class")
@@ -603,8 +602,8 @@ return (String s)
 }
 
 crossV = function(Matrix[double] X, Matrix[double] y, Integer cvk, Matrix[Double] evalFunHp, List[Unknown] pipList, List[Unknown] metaList,
-  Matrix[Double] hpForPruning = as.matrix(0), Matrix[Double] changesByOp = as.matrix(0), String evalFunc, Boolean trainML = FALSE) 
-return (Matrix[Double] accuracy, Matrix[Double] hpForPruning, Matrix[Double] changesByOp)
+  Matrix[Double] hpForPruning = as.matrix(0), Matrix[Double] changesByOp = as.matrix(0), String evalFunc, Integer trainML = 0) 
+return (Matrix[Double] output, Matrix[Double] hpForPruning, Matrix[Double] changesByOp)
 {
   accuracyMatrix = matrix(0, cvk, 1)
   dataList = list()
@@ -652,10 +651,12 @@ return (Matrix[Double] accuracy, Matrix[Double] hpForPruning, Matrix[Double] cha
         changesByOp=changesByOp, flagsCount=as.scalar(pipList['flags']), test=TRUE, verbose=FALSE)
     }
     # print("test out: "+nrow(testy))
-    res = eval(evalFunc, list(X=trainX, Y=trainy, Xtest=testX, Ytest=testy, Xorig=as.matrix(0), evalFunHp=evalFunHp, trainML = 0))
-    accuracyMatrix[i] = res
+    res = eval(evalFunc, list(X=trainX, Y=trainy, Xtest=testX, Ytest=testy, Xorig=as.matrix(0), evalFunHp=evalFunHp, trainML = trainML))
+    accuracyMatrix[i] = res[1, 1]
+    evalFunHp = res[, 2:ncol(res)]
   }
   accuracy = as.matrix(mean(accuracyMatrix))
+  output = cbind(accuracy, evalFunHp)
 }
 
 pruningSignal = function(Frame[Unknown] ph_pip, Matrix[Double] hp_matrix, Matrix[Double] hpForPruning, Matrix[Double] changesByOp)
@@ -680,5 +681,3 @@ return(Boolean execute)
   }
   execute = !(changeCount > 0)
 }
-
-
diff --git a/scripts/builtin/tomeklink.dml b/scripts/builtin/tomeklink.dml
index 6169dbf..a48f0b7 100644
--- a/scripts/builtin/tomeklink.dml
+++ b/scripts/builtin/tomeklink.dml
@@ -74,6 +74,8 @@ return (Matrix[Double] nn) {
     dists = rowSums((X - X[i,])^2) 
     dists[i,] = NaN; # mask out self-ref
     nn[i, 1] = rowIndexMin(t(dists))
+    # res = naiveKNNsearch(X, X[i], 2)
+    # nn[i,  1] = res[1,2]
   }
 }
 
@@ -86,3 +88,52 @@ return (Matrix[Double] tomek_links) {
   links = (y != majority_label) & (nn_labels == majority_label)
   tomek_links = (table(nn, 1, links, nrow(y), 1) > 0)
 }
+
+
+#naive knn search implement
+naiveKNNsearch = function(
+    Matrix[Double] P,
+    Matrix[Double] Q,
+    Integer K
+)return(
+    Matrix[Double] O
+){
+  num_records = nrow (P);
+  num_features = ncol (P);
+  num_queries = nrow (Q);
+  Qt = t(Q);
+  PQt = P %*% Qt;
+  P2 = rowSums (P ^ 2);
+  D = -2 * PQt + P2;
+  if (K == 1) {
+    Dt = t(D);
+    O = rowIndexMin (Dt);
+  } else {
+    O = matrix (0, rows = num_queries, cols = K);
+    parfor (i in 1:num_queries) {
+      D_sorted=order(target=D[,i], by=1, decreasing=FALSE, index.return=TRUE);
+      O[i,] = t(D_sorted[1:K,1]);
+    }
+  }
+}
+
+
+
+# #naive knn search implement
+# KNNApprox = function(
+    # Matrix[Double] P,
+    # Matrix[Double] Q,
+    # Integer K
+# )return(
+    # Matrix[Double] O
+# ){
+  
+# [C, Y] = kmeans(X, nrow(X)/ncol(X), 25, 50, 0.0001, TRUE, 50, 1324)
+# clusX = cbind(Y, X)
+# clusX = order(target=X, by=1, decreasing=FALSE, index.return=FALSE);
+# clus = table(Y, 1)
+
+
+# Y_1 = kmeansPredict(X, C)
+# }
+
diff --git a/scripts/builtin/topk_cleaning.dml b/scripts/builtin/topk_cleaning.dml
index 75ee184..1b32e3c 100644
--- a/scripts/builtin/topk_cleaning.dml
+++ b/scripts/builtin/topk_cleaning.dml
@@ -106,7 +106,7 @@ s_topk_cleaning = function(Frame[Unknown] dataTrain, Frame[Unknown] dataTest = a
                    
   tab = table(eYtrain, 1)
   dist = nrow(tab)
-  if((nrow(eYtrain) > 0 & dist < 10))
+  if(FALSE) #(nrow(eYtrain) > 0 & dist < 10)
     logical = logicalSeedCI
   else 
     logical = logicalSeedNoCI
diff --git a/src/test/java/org/apache/sysds/test/functions/builtin/BuiltinTomeklinkTest.java b/src/test/java/org/apache/sysds/test/functions/builtin/BuiltinTomeklinkTest.java
index 00f0b36..411be29 100644
--- a/src/test/java/org/apache/sysds/test/functions/builtin/BuiltinTomeklinkTest.java
+++ b/src/test/java/org/apache/sysds/test/functions/builtin/BuiltinTomeklinkTest.java
@@ -36,8 +36,8 @@ public class BuiltinTomeklinkTest extends AutomatedTestBase
 	private static final String TEST_CLASS_DIR = TEST_DIR + BuiltinTomeklinkTest.class.getSimpleName() + "/";
 
 	private final static double eps = 1e-3;
-	private final static int rows = 53;
-	private final static int cols = 6;
+	private final static int rows = 50000;
+	private final static int cols = 60;
 
 	@Override
 	public void setUp() {
diff --git a/src/test/scripts/functions/pipelines/applyEvaluateTest.dml b/src/test/scripts/functions/pipelines/applyEvaluateTest.dml
index 813ef94..6edd239 100644
--- a/src/test/scripts/functions/pipelines/applyEvaluateTest.dml
+++ b/src/test/scripts/functions/pipelines/applyEvaluateTest.dml
@@ -82,8 +82,8 @@ return(Matrix[Double] accuracy)
 
   beta = multiLogReg(X=X, Y=Y, icpt=as.scalar(evalFunHp[1,1]), reg=as.scalar(evalFunHp[1,2]), tol=as.scalar(evalFunHp[1,3]), 
     maxi=as.scalar(evalFunHp[1,4]), maxii=50, verbose=FALSE);
-  [prob, yhat, a] = multiLogRegPredict(Xtest, beta, Ytest, FALSE)
-  accuracy = getAccuracy(Ytest, yhat, TRUE)
-  print("accuracy weighted: "+accuracy)
+  [prob, yhat, accuracy] = multiLogRegPredict(Xtest, beta, Ytest, FALSE)
+  a = getAccuracy(Ytest, yhat, TRUE)
+  print("accuracy: "+ accuracy+", accuracy weighted: "+a)
   accuracy = as.matrix(accuracy)
 }
diff --git a/src/test/scripts/functions/pipelines/intermediates/classification/hp.csv b/src/test/scripts/functions/pipelines/intermediates/classification/hp.csv
index 3d5c3ff..f92bc2f 100644
--- a/src/test/scripts/functions/pipelines/intermediates/classification/hp.csv
+++ b/src/test/scripts/functions/pipelines/intermediates/classification/hp.csv
@@ -1,3 +1,3 @@
-40.0,2.0,0.01816863223655686,0.9565161479438591,0,0,0,1.0,0,0,0,0,1.0,0,0,0,2.0,0,0,0,1.0,0,0,0,2.0,1.0,0.6515164788504212,0,0,0,1.0,1.0,2.0,0,0,0,1.0,0,0,0,2.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40.0,2.0,0.03510876761722913,0.9673791862807241,0,0,0,1.0,0,0,0,0,1.0,0,0,0,2.0,0,0,0,1.0,0,0,0,2.0,1.0,0.6149768032146687,0,0,0,1.0,1.0,2.0,0,0,0,1.0,0,0,0,2.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40.0,2.0,0.014861839294898092,0.9595626659056867,0,0,0,1.0,0,0,0,0,1.0,0,0,0,2.0,0,0,0,1.0,0,0,0,2.0,1.0,0.6274449265973082,0,0,0,1.0,1.0,2.0,0,0,0,1.0,0,0,0,2.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+27.0,3.0,5.0,2.0,1.0,0,0,0,1.0,0,1.0,1.0,0,0,0,0,0,1.0,2.0,0,0,0,0,1.0,0,0,0,2.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+27.0,3.0,7.0,2.0,1.0,0,0,0,1.0,0,1.0,1.0,0,0,0,0,0,1.0,2.0,0,0,0,0,1.0,0,0,0,2.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+27.0,3.0,2.0,2.0,1.0,0,0,0,1.0,0,1.0,0,0,0,0,0,0,1.0,2.0,0,0,0,0,1.0,0,0,0,2.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/src/test/scripts/functions/pipelines/intermediates/classification/lp.csv b/src/test/scripts/functions/pipelines/intermediates/classification/lp.csv
index 52b30dc..5824d76 100644
--- a/src/test/scripts/functions/pipelines/intermediates/classification/lp.csv
+++ b/src/test/scripts/functions/pipelines/intermediates/classification/lp.csv
@@ -1 +1 @@
-OTLR,EC,EC,CI,DUMMY
+ED,MVI,DUMMY
diff --git a/src/test/scripts/functions/pipelines/intermediates/classification/pip.csv b/src/test/scripts/functions/pipelines/intermediates/classification/pip.csv
index 2feb234..f2d0efb 100644
--- a/src/test/scripts/functions/pipelines/intermediates/classification/pip.csv
+++ b/src/test/scripts/functions/pipelines/intermediates/classification/pip.csv
@@ -1,3 +1,3 @@
-winsorize,imputeByMean,imputeByMedian,abstain,dummycoding
-winsorize,imputeByMean,imputeByMedian,abstain,dummycoding
-winsorize,imputeByMean,imputeByMedian,abstain,dummycoding
+outlierBySd,forward_fill,dummycoding
+outlierBySd,forward_fill,dummycoding
+outlierBySd,forward_fill,dummycoding

[systemds] 02/02: [MINOR] Added test with company dataset - This commit contains topk_cleaning test with company dataset - TODO: fix for ArrayIndexOutOfBounce exception

Posted by ss...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ssiddiqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git

commit ebc206e7ce55b9c57f8e0996de0106bb290596f1
Author: Shafaq Siddiqi <sh...@tugraz.at>
AuthorDate: Tue Sep 14 19:28:55 2021 +0200

    [MINOR] Added test with company dataset
      - This commit contains topk_cleaning test with company dataset
      - TODO: fix for ArrayIndexOutOfBounce exception
---
 .../BuiltinTopkCleaningClassificationTest.java     |   31 +-
 src/test/resources/datasets/pipelines/company.csv  | 3461 ++++++++++++++++++++
 .../functions/pipelines/meta/meta_company.csv      |    3 +
 3 files changed, 3482 insertions(+), 13 deletions(-)

diff --git a/src/test/java/org/apache/sysds/test/functions/pipelines/BuiltinTopkCleaningClassificationTest.java b/src/test/java/org/apache/sysds/test/functions/pipelines/BuiltinTopkCleaningClassificationTest.java
index 30eac6e..20cce5a 100644
--- a/src/test/java/org/apache/sysds/test/functions/pipelines/BuiltinTopkCleaningClassificationTest.java
+++ b/src/test/java/org/apache/sysds/test/functions/pipelines/BuiltinTopkCleaningClassificationTest.java
@@ -34,8 +34,6 @@ public class BuiltinTopkCleaningClassificationTest extends AutomatedTestBase {
 	private static final String RESOURCE = SCRIPT_DIR+"functions/pipelines/";
 	private static final String DATA_DIR = DATASET_DIR+ "pipelines/";
 
-	private final static String DIRTY = DATA_DIR+ "dirty.csv";
-	private final static String META = RESOURCE+ "meta/meta_census.csv";
 	private final static String OUTPUT = RESOURCE+ "intermediates/classification/";
 
 	private static final String PARAM_DIR = "./scripts/pipelines/properties/";
@@ -48,32 +46,39 @@ public class BuiltinTopkCleaningClassificationTest extends AutomatedTestBase {
 	}
 
 	@Test
-	public void testFindBestPipeline1() {
-		runtopkCleaning(0.5, 3,5,
+	public void testFindBestPipelineCompany() {
+		runtopkCleaning(DATA_DIR+ "company.csv", RESOURCE+ "meta/meta_company.csv", 1.0, 3,8,
 			"FALSE", 0,0.8, Types.ExecMode.SINGLE_NODE);
 	}
 
-	@Ignore
-	public void testFindBestPipeline2() {
-		runtopkCleaning(0.1, 3,5,
-			"TRUE", 3,0.8,  Types.ExecMode.SINGLE_NODE);
+	@Test
+	public void testFindBestPipelineCensus() {
+		runtopkCleaning(DATA_DIR+ "dirty.csv", RESOURCE+ "meta/meta_census.csv", 1.0, 3,8,
+			"FALSE", 0,0.8, Types.ExecMode.SINGLE_NODE);
+	}
+
+	@Test
+	public void testFindBestPipelineCensusCV() {
+		runtopkCleaning(DATA_DIR+ "dirty.csv", RESOURCE+ "meta/meta_census.csv", 1.0, 3,8,
+			"TRUE", 3,0.8, Types.ExecMode.SINGLE_NODE);
 	}
 
 	@Test
 	public void testFindBestPipelineHybrid() {
-		runtopkCleaning(0.1, 3,5,
-			"FALSE", 0,0.8,  Types.ExecMode.HYBRID);
+		runtopkCleaning(DATA_DIR+ "dirty.csv", RESOURCE+ "meta/meta_census.csv", 1.0, 3,8,
+			"FALSE", 0,0.8, Types.ExecMode.HYBRID);
 	}
 
-	private void runtopkCleaning(Double sample, int topk, int resources,  String cv, int cvk , double split, Types.ExecMode et) {
+	private void runtopkCleaning(String data, String meta, Double sample, int topk, int resources,  String cv, int cvk ,
+		double split, Types.ExecMode et) {
 
 		Types.ExecMode modeOld = setExecMode(et);
 		String HOME = SCRIPT_DIR + TEST_DIR;
 		try {
 			loadTestConfiguration(getTestConfiguration(TEST_NAME));
 			fullDMLScriptName = HOME + TEST_NAME + ".dml";
-			programArgs = new String[] { "-stats", "-exec", "singlenode", "-nvargs", "dirtyData="+DIRTY,
-				"metaData="+META, "primitives="+PRIMITIVES, "parameters="+PARAM, "topk="+ topk, "rv="+ resources,
+			programArgs = new String[] { "-stats", "-exec", "singlenode", "-nvargs", "dirtyData="+data,
+				"metaData="+meta, "primitives="+PRIMITIVES, "parameters="+PARAM, "topk="+ topk, "rv="+ resources,
 				"sample="+sample, "testCV="+cv, "cvk="+cvk, "split="+split, "output="+OUTPUT, "O="+output("O")};
 
 			runTest(true, EXCEPTION_NOT_EXPECTED, null, -1);
diff --git a/src/test/resources/datasets/pipelines/company.csv b/src/test/resources/datasets/pipelines/company.csv
new file mode 100644
index 0000000..0ea5102
--- /dev/null
+++ b/src/test/resources/datasets/pipelines/company.csv
@@ -0,0 +1,3461 @@
+Date,Latitude,Longitude,Company Name,Country,City,State,class
+9/28/2017 1:10,49.89659882,-119.4660034,BOEING,Canada,Kelowna,,TRUE
+11/3/2017 0:45,43.18619919,-77.61640167,NISSAN,Canada,Prince Edward,,TRUE
+11/2/2017 11:41,39.94292831,32.86048126,TURKCELL,Turkey,Ankara,,FALSE
+11/19/2017 0:22,62.19844818,17.55142021,MICROSOFT - WINDOWS 10,Sweden,Njurundabommen,,TRUE
+9/7/2017 17:31,45.26232147,-69.01248932,NIKE,United States,Carmel,Maine,TRUE
+11/20/2017 19:34,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+11/26/2017 6:50,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+8/22/2017 19:49,18.76790047,-70.16174316,NISSAN,Dominican Republic,Villa Altagracia,,FALSE
+11/16/2017 14:36,28.99073029,77.0200119,TIMES OF INDIA,India,Son����,,FALSE
+9/14/2017 23:06,51.50175858,-0.109410003,AVIVA,United Kingdom,Lambeth,,TRUE
+7/25/2017 22:01,51.50735092,-0.127758294,APPLE INC,United Kingdom,London,,TRUE
+4/8/2017 1:25,40.63312531,-89.39852905,BURBERRY,United States,Morton,Illinois,TRUE
+6/20/2017 21:51,42.88644791,-78.87837219,DISH NETWORK,Canada,Fort Erie,,TRUE
+10/25/2017 9:30,23.62574005,-101.9562531,NISSAN,Mexico,Villa de Cos,,FALSE
+9/15/2017 10:13,22.54994011,88.37158203,BAJAJ FINSERV,India,Kolkata,,TRUE
+8/16/2017 17:44,38.90475845,-77.01625061,CAMPBELL SOUP,United States,"Washington, D. C.",Maryland,FALSE
+10/15/2017 23:21,49.87905884,-97.14842987,NISSAN,Canada,Winnipeg,,TRUE
+6/23/2017 23:36,25.20484924,55.27078247,APPLE INC,United Arab Emirates,Dubai,,FALSE
+9/7/2017 17:40,26.56290054,85.89176941,APPLE INC,Nepal,Jaleswar,,FALSE
+11/19/2017 21:54,27.33423996,-82.53662872,NISSAN,United States,Sarasota,Florida,TRUE
+9/5/2017 8:21,50.80400848,-1.087280035,THOMAS COOK GROUP,United Kingdom,Portsmouth,,TRUE
+7/20/2017 13:30,52.47507477,-1.829833031,HPE,United Kingdom,Acocks Green,,TRUE
+4/7/2017 14:04,42.4072113,-71.38243866,LEGO,United States,Sudbury,Massachusetts,FALSE
+11/4/2017 5:14,56.9546814,-98.30896759,APPLE INC,Canada,Thompson,,FALSE
+11/13/2017 8:53,3.641160011,98.66690063,TELKOMSEL,Indonesia,Medan,,FALSE
+7/29/2017 21:16,36.16638947,-86.77138519,NISSAN,United States,Nashville,Tennessee,TRUE
+11/6/2017 23:23,45.09132004,16.33164024,APPLE INC,Croatia,Dvor,,FALSE
+10/11/2017 14:20,-24.91209984,133.397995,TYSON FOODS,Australia,Alice Springs,,TRUE
+10/1/2017 3:37,21.78660011,82.79476166,Apple Computer Inc,India,Seor�������,,TRUE
+4/19/2017 20:32,32.51964,-83.5603112,PETSMART,United States,Robins Air Force Base,Georgia,FALSE
+8/28/2017 1:17,41.66053009,-71.44996643,T-MOBILE,United States,East Greenwich,Rhode Island,FALSE
+9/13/2017 13:14,40.99470901,-77.60453796,T-MOBILE,United States,Zion,Pennsylvania,FALSE
+9/29/2017 18:03,31.16889954,-100.0771484,THE HOME DEPOT,United States,Eden,Texas,TRUE
+9/14/2017 11:25,52.88356018,-1.974060059,ALDI,United Kingdom,Cheadle,,TRUE
+11/2/2017 15:44,29.29533005,-94.80786133,Apple Computer Inc,United States,Galveston,Texas,TRUE
+6/21/2017 14:51,45.46542358,9.18592453,PMI IQOS,Italy,Milano,,FALSE
+11/1/2017 20:05,37.1679306,-95.84501648,NIKE,United States,Independence,Kansas,TRUE
+11/14/2017 19:18,40.65507126,-73.94888306,PEOPLE,United States,Byram,New York,TRUE
+10/4/2017 11:13,12.90983963,74.84300232,TIMES OF INDIA,India,Mangalore,,TRUE
+4/10/2017 14:08,44.31484604,-85.60236359,CA,United States,Sturgeon Bay,Michigan,TRUE
+11/20/2017 20:01,53.44229889,-2.233409882,RWE NPOWER,United Kingdom,Fallowfield,,FALSE
+9/22/2017 16:15,38.56792068,-8.899009705,NISSAN,Portugal,Palmela,,TRUE
+8/31/2017 14:06,42.10644913,-87.74186707,APPIRIO,United States,Winnetka,Illinois,FALSE
+11/3/2017 23:05,40.71455002,-74.00711823,STANDARD BANK,United States,Byram,New Jersey,FALSE
+4/25/2017 3:55,41.6032207,-73.087749,CHUBB,United States,Watertown,Connecticut,FALSE
+7/15/2017 15:58,53.386711,-2.34918,Apple Computer Inc,United Kingdom,Altrincham,,TRUE
+8/30/2017 2:05,38.90475845,-77.01625061,MICROSOFT SUPPORT,United States,"Washington, D. C.",Maryland,TRUE
+4/20/2017 6:35,50.65205002,9.162437439,UPS,Germany,Schwalmtal,,FALSE
+11/7/2017 9:40,51.554039,-0.110330001,FIRSTBANK NIGERIA,United Kingdom,Holloway,,TRUE
+11/18/2017 17:42,53.55347061,-1.483369946,BTTV,United Kingdom,Barnsley,,FALSE
+6/12/2017 2:11,44.31484604,-85.60236359,MCDONALDS,United States,Sturgeon Bay,Michigan,FALSE
+11/15/2017 18:30,37.39186096,-122.1469193,DELL EMC,United States,Los Altos Hills,California,FALSE
+4/20/2017 3:00,32.9709834,-96.7071453,HARMAN INTERNATIONAL,United States,Garland,Texas,FALSE
+11/8/2017 8:56,22.40822983,71.30461884,CITIBANK,India,Chotila,,TRUE
+11/18/2017 8:12,26.63999939,-80.09700012,NISSAN,United States,Palm Springs,Florida,TRUE
+9/16/2017 10:56,-25.74580002,28.18758965,ABSA,South Africa,Pretoria,,TRUE
+8/19/2017 16:41,40.42142868,-3.671629906,VERIZON,Spain,Salamanca,,TRUE
+9/6/2017 3:41,33.76319122,-84.42305756,NISSAN,United States,Atlanta,Georgia,TRUE
+4/14/2017 18:46,18.46553993,-66.10573578,SEPHORA,Puerto Rico,San Juan,,FALSE
+5/2/2017 18:06,40.71278381,-74.0059433,APPLE INC,United States,Byram,New York,FALSE
+11/27/2017 23:49,-31.98265076,116.0074921,TELSTRA,Australia,Maida Vale,,FALSE
+10/19/2017 18:29,-25.46640015,122.1817017,MCCLATCHY,Australia,Newman,,FALSE
+9/30/2017 20:16,37.2718811,-119.2702332,NISSAN,United States,Auberry,California,TRUE
+11/9/2017 13:54,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+4/4/2017 11:52,52.35551834,-1.174319744,Apple Computer Inc,United Kingdom,Rugby,,FALSE
+10/10/2017 19:19,37.87868881,-121.9434509,T-MOBILE,United States,Diablo,California,TRUE
+8/8/2017 15:00,52.478668,-1.90848,DEBENHAMS,United Kingdom,Birmingham,,TRUE
+11/18/2017 17:05,28.66197014,-81.39491272,NISSAN,United States,Altamonte Springs,Florida,FALSE
+11/4/2017 1:49,-6.951079845,107.5523529,TELKOMSEL,Indonesia,Margahayukencana,,FALSE
+11/23/2017 16:00,51.88531113,0.903519988,#WINTERREADY,United Kingdom,Irvine,,FALSE
+10/23/2017 11:45,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/17/2017 17:42,40.7038002,-73.8316803,WALMART,United States,Byram,New York,FALSE
+7/22/2017 8:35,51.65129471,-0.082067922,MARKS AND SPENCER,United Kingdom,Waltham Cross,,TRUE
+9/27/2017 22:25,34.05350113,-118.2450027,APPLE INC,United States,Los Angeles,California,TRUE
+6/19/2017 23:08,41.30827332,-72.92788696,AHOLD US,United States,West Haven,Connecticut,FALSE
+7/28/2017 15:16,53.64570618,-3.010113001,PRIMARK,United Kingdom,Southport,,FALSE
+5/25/2017 21:08,35.7595731,-79.0192997,HASBRO,United States,Fearrington Village,North Carolina,FALSE
+11/3/2017 18:01,33.59230042,-101.8560028,NISSAN,United States,Lubbock,Texas,FALSE
+10/14/2017 15:13,52.89027023,0.987179995,STANDARD BANK,United Kingdom,Briston,,FALSE
+7/27/2017 17:46,42.36008072,-71.05888367,JC PENNEY,United States,Boston,Massachusetts,TRUE
+9/6/2017 20:49,-13.01338959,-38.46997833,BRITISH AIRWAYS,Brazil,Salvador,,FALSE
+8/25/2017 11:41,53.54465866,-2.632889986,HEINEKEN,United Kingdom,Wigan,,FALSE
+11/8/2017 18:52,51.1987114,0.74267,MARKS AND SPENCER,United Kingdom,Lenham,,TRUE
+6/6/2017 14:48,38,-97,T-MOBILE,United States,Peabody,Kansas,FALSE
+10/13/2017 11:41,51.8637886,-2.249500036,NISSAN,United Kingdom,Barnwood,,TRUE
+10/6/2017 16:24,49.01390076,-122.8399963,PEOPLE,Canada,White Rock,,FALSE
+11/19/2017 17:00,36.31296158,-95.60878754,NISSAN,United States,Claremore,Oklahoma,TRUE
+4/1/2017 14:00,40.71278381,-74.0059433,APPLE INC,United States,Byram,New York,FALSE
+10/18/2017 21:25,43.74269867,-84.62167358,MCDONALDS,United States,Barnes Lake-Millers Lake,Michigan,FALSE
+10/26/2017 15:03,6.42787981,3.351419926,FIRSTBANK NIGERIA,Nigeria,Lagos,,FALSE
+7/25/2017 17:50,53.5,-2.216666937,TESCO,United Kingdom,Blackley,,TRUE
+10/26/2017 7:10,18.53610992,73.85218048,HDFC BANK,India,Shivaji Nagar,,FALSE
+11/8/2017 14:17,51.14152908,-0.482989997,BTTV,United Kingdom,Rudgwick,,FALSE
+6/24/2017 5:34,51.50735092,-0.127758294,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+9/14/2017 18:45,35.00115967,-78.33235931,NISSAN,United States,Clinton,North Carolina,FALSE
+10/25/2017 14:48,44.47592163,-73.21322632,NISSAN,United States,Burlington,Vermont,TRUE
+11/4/2017 6:34,51.16418076,10.4541502,NISSAN,Germany,Niederdorla,,FALSE
+9/28/2017 11:40,40.51708984,-88.99742126,POP TARTS,United States,Normal,Illinois,TRUE
+9/3/2017 9:50,-27.25930977,152.4204254,LIDL,Australia,Gatton,,TRUE
+11/3/2017 2:32,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,TRUE
+9/26/2017 8:51,23.0200901,73.07514954,APPLE INC,India,Kapadvanj,,TRUE
+11/14/2017 14:10,53.17551041,-8.152029991,ALLIED IRISH BANK,Ireland,Portumna,,FALSE
+7/31/2017 17:59,40.45228577,-80.16789246,IKEA,United States,Oakdale,Pennsylvania,TRUE
+9/29/2017 15:02,25.78255081,-80.22174835,BEST BUY,United States,Miami,Florida,TRUE
+11/25/2017 16:01,33.86169815,-117.5632706,MORGAN STANLEY,United States,Corona,California,TRUE
+11/6/2017 0:34,41.08055115,-81.52220917,NISSAN,United States,Montrose-Ghent,Ohio,TRUE
+7/18/2017 17:45,40.46366882,-3.749219894,NIKE,Spain,Tetu���������,,TRUE
+7/14/2017 5:39,25.20484924,55.27078247,EMIRATES NBD,United Arab Emirates,Dubai,,FALSE
+4/7/2017 21:26,24.71355248,46.67529678,STC,Saudi Arabia,Riyadh,,TRUE
+9/27/2017 20:19,49.1174202,6.193429947,NISSAN,France,Saint-Julien-l�����,,FALSE
+9/2/2017 0:32,34.52700043,-117.3536377,NISSAN,United States,Mountain View Acres,California,FALSE
+9/8/2017 23:36,-28.6809597,27.06546974,VERIZON,South Africa,Winburg,,FALSE
+9/29/2017 5:29,-33.85628128,151.0209656,HPE,Australia,Lidcombe,,TRUE
+10/27/2017 0:48,26.24290085,-80.13117981,NISSAN,United States,Pompano Beach,Florida,TRUE
+10/9/2017 18:55,-6.283830166,106.8021393,TELKOMSEL,Indonesia,Jakarta,,TRUE
+11/6/2017 21:17,38.25889969,-92.4365921,NISSAN,United States,Tuscumbia,Missouri,TRUE
+10/20/2017 10:54,39.20043945,-76.85900879,MCCLATCHY,United States,Riverside,Maryland,FALSE
+11/7/2017 1:34,37.1679306,-95.84501648,FEDEX,United States,Independence,Kansas,FALSE
+9/9/2017 0:52,31.9109993,131.4408569,SWAROVSKI,Japan,Miyazaki-shi,,FALSE
+10/15/2017 19:11,-28.02753067,-48.62577057,AZUL AIRLINES,Brazil,Imbituba,,FALSE
+8/21/2017 0:56,-1.662019968,149.9636536,TESCO,Papua New Guinea,Kavieng,,FALSE
+10/5/2017 19:06,56.1971817,-3.17373991,BRITISH AIRWAYS,United Kingdom,Thornton,,TRUE
+10/23/2017 11:37,29.77541924,-95.38188934,NISSAN,United States,Houston,Texas,TRUE
+11/19/2017 2:40,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+6/26/2017 16:40,60.11999893,18.63999939,CITIBANK,Sweden,Arn��,,FALSE
+6/18/2017 19:52,43.78443909,-88.78786469,VOLKSWAGEN USA,United States,Ripon,Wisconsin,TRUE
+6/3/2017 21:30,-25.55480003,152.6719971,TELSTRA,Australia,Maryborough,,TRUE
+4/19/2017 18:10,24.71355248,46.67529678,MOMRA,Saudi Arabia,Riyadh,,TRUE
+6/2/2017 6:49,37.77500153,-122.418335,BRITISH AIRWAYS,United States,San Francisco,California,TRUE
+4/29/2017 19:39,35.7595731,-79.0192997,GAMESTOP,United States,Fearrington Village,North Carolina,FALSE
+4/26/2017 20:07,32.9709834,-96.7071453,ADIDAS,United States,Garland,Texas,FALSE
+10/2/2017 0:26,37.2718811,-119.2702332,INDIGO,United States,Auberry,California,FALSE
+3/30/2017 14:55,40.71278381,-74.0059433,BANK OF AMERICA,United States,Byram,New York,FALSE
+4/23/2017 2:13,36.77825928,-119.4179306,PRIMARK,United States,Minkler,California,FALSE
+8/31/2017 19:15,47.6035614,-122.3294373,MICROSOFT,United States,Seattle,Washington,FALSE
+11/6/2017 16:15,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+11/9/2017 15:02,54.31407166,-2.230010033,NISSAN,United Kingdom,Kirkby Stephen,,TRUE
+7/27/2017 15:22,25.77388954,-80.1938858,MCDONALDS,United States,Miami,Florida,FALSE
+11/20/2017 11:41,26.21157074,-80.22131348,NISSAN,United States,North Lauderdale,Florida,TRUE
+6/17/2017 10:26,52.35551834,-1.174319744,THOMAS COOK GROUP,United Kingdom,Rugby,,FALSE
+4/28/2017 14:43,40.26719284,-86.13490295,PURDUE UNIVERSITY,United States,Tipton,Indiana,FALSE
+11/27/2017 20:44,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+8/24/2017 15:59,51.35451126,-0.097759999,LLOYDS TSB BANK PLC,United Kingdom,South Croydon,,TRUE
+11/21/2017 22:56,38.0033493,-79.77127075,NISSAN,United States,Mountain Lake Park,Virginia,FALSE
+9/8/2017 7:04,-17.82335091,31.05023003,STANDARD BANK,Zimbabwe,Harare,,TRUE
+7/9/2017 17:37,28.61393929,77.20902252,BIG BAZAAR,India,New Delhi,,TRUE
+10/26/2017 17:58,42.71274948,-84.55692291,NISSAN,United States,Manitou Beach-Devils Lake,Michigan,TRUE
+9/21/2017 13:59,51.03398895,-3.601389885,ALDI,United Kingdom,Tiverton,,FALSE
+11/17/2017 22:15,39.14126968,-84.50518799,NISSAN,United States,Saint Bernard,Ohio,TRUE
+4/22/2017 10:24,52.35551834,-1.174319744,AMERICAN AIRLINES,United Kingdom,Rugby,,FALSE
+4/22/2017 0:10,37.4315734,-78.6568942,SC JOHNSON,United States,Woodlake,Virginia,FALSE
+11/26/2017 4:44,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+4/26/2017 20:07,-38.9489212,-72.33111572,AIRBUS,Chile,Freire,,FALSE
+4/10/2017 1:45,40.0583238,-74.4056612,MICROSOFT - WINDOWS 10,United States,Cedar Glen Lakes,New Jersey,FALSE
+11/6/2017 14:12,38.82350159,-75.92381287,NISSAN,United States,Denton,Maryland,TRUE
+9/14/2017 10:29,54.93936157,-1.59928,ALDI,United Kingdom,Lamesley,,TRUE
+6/15/2017 2:49,40.71796799,-74.00360107,FEDEX,United States,Byram,New York,FALSE
+11/14/2017 14:45,4.789899826,95.46015167,TELKOMSEL,Indonesia,Lhokkruet,,FALSE
+5/16/2017 1:52,37.4315734,-78.6568942,WALMART,United States,Woodlake,Virginia,FALSE
+8/17/2017 2:00,-11.65157986,43.35997009,UBISOFT,Comoros,Mtsamdou,,TRUE
+8/24/2017 23:30,34.05350113,-118.2450027,AMERICAN AIRLINES,United States,Los Angeles,California,FALSE
+10/17/2017 20:40,47.61001968,-122.187851,MICROSOFT - WINDOWS 10,United States,Bellevue,Washington,TRUE
+11/29/2017 5:17,32.83169937,-117.1220016,NISSAN,United States,La Mesa,California,TRUE
+11/6/2017 19:27,30.30636978,-97.75276184,DNB,United States,Austin,Texas,FALSE
+10/11/2017 0:12,34.16788101,-111.9307022,AMERICAN AIRLINES,United States,Cordes Lakes,Arizona,TRUE
+6/16/2017 13:47,27.95057487,-82.45717621,APPLE INC,United States,Tampa,Florida,FALSE
+6/16/2017 9:29,-21.1789856,-175.1982422,STANDARD BANK,Tonga,Vaini,,TRUE
+10/4/2017 22:33,33.99855042,-81.04524994,NISSAN,United States,Columbia,South Carolina,TRUE
+10/12/2017 17:19,11.09663963,77.34896088,HDFC BANK,India,Tiruppur,,TRUE
+8/8/2017 16:04,51.07970047,-114.2160034,DELOITTE,Canada,Calgary,,TRUE
+10/14/2017 19:30,40.19033051,-82.66947174,NISSAN,United States,Granville South,Ohio,TRUE
+10/7/2017 0:43,42.89619827,-78.87599945,WALMART,Canada,Fort Erie,,TRUE
+11/27/2017 15:49,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/4/2017 11:03,40.15399933,-74.99156189,NISSAN,United States,Trevose,Pennsylvania,TRUE
+9/27/2017 17:40,41.26356125,-96.03553009,NISSAN,United States,Carter Lake,Nebraska,TRUE
+11/5/2017 6:37,50.8282814,-4.544390202,Apple Computer Inc,United Kingdom,Bude,,TRUE
+11/6/2017 14:12,51.50640106,-0.127210006,HARIBO,United Kingdom,London,,TRUE
+7/20/2017 21:38,53.54999924,2.433000088,MARKS AND SPENCER,United Kingdom,Caister-on-Sea,,FALSE
+9/21/2017 18:33,51.75067139,-3.375770092,Apple Computer Inc,United Kingdom,Merthyr Tydfil,,TRUE
+11/7/2017 19:32,54.31407166,-2.230010033,TESCO,United Kingdom,Kirkby Stephen,,FALSE
+8/25/2017 13:21,0.31656,32.58810043,BRUSSELS AIRLINES,Uganda,Kampala,,FALSE
+9/15/2017 9:13,50.74327087,-1.863489985,LOVEWINS CAMPAIGN,United Kingdom,Bournemouth,,TRUE
+9/4/2017 4:53,21.78660011,82.79476166,INFOSYS,India,Seor�������,,TRUE
+10/5/2017 3:04,-5.634309769,133.0200958,TELKOMSEL,Indonesia,Elat,,TRUE
+10/18/2017 21:17,33.62646103,-80.94740295,SPORTS ILLUSTRATED,United States,Oak Grove,South Carolina,TRUE
+9/22/2017 8:02,19.1357708,72.82424164,SPICEJET,India,Powai,,FALSE
+11/2/2017 22:15,41.7705307,-88.15302277,NISSAN,United States,Naperville,Illinois,TRUE
+11/4/2017 18:24,40.55104828,-105.0671692,T-MOBILE,United States,Fort Collins,Colorado,FALSE
+7/30/2017 16:16,38,-97,MCDONALDS,United States,Peabody,Kansas,TRUE
+10/16/2017 16:18,43.13370132,-76.13009644,NISSAN,United States,Cortland West,New York,TRUE
+11/25/2017 20:36,37.1679306,-95.84501648,SPORTS ILLUSTRATED,United States,Independence,Kansas,FALSE
+11/5/2017 21:32,40.00762939,-75.13395691,NISSAN,United States,Philadelphia,Pennsylvania,TRUE
+8/25/2017 21:26,44.88108826,-93.26792145,BEST BUY,United States,Elko New Market,Minnesota,FALSE
+6/20/2017 17:41,45.07246399,-93.45578766,T-MOBILE,United States,Nowthen,Minnesota,FALSE
+5/1/2017 17:14,35.00775146,-97.09288025,ANHEUSER BUSCH,United States,Lexington,Oklahoma,FALSE
+9/6/2017 20:51,46.14693832,14.95505047,LIDL,Slovenia,Izlake,,TRUE
+8/26/2017 11:07,52.62250137,1.29489994,MARKS AND SPENCER,United Kingdom,Norwich,,FALSE
+6/29/2017 17:56,41.00823593,28.97835922,TURKCELL,Turkey,Emin����,,TRUE
+4/1/2017 6:05,41.87800217,-93.09770203,OMEGA,United States,Baxter,Iowa,FALSE
+10/26/2017 16:01,-27.03060913,-65.32029724,TELKOMSEL,Argentina,Bella Vista,,FALSE
+7/25/2017 10:57,-26.20410347,28.04730415,ABSA,South Africa,Johannesburg,,TRUE
+9/8/2017 19:45,56.65285873,-3.996670008,MARKS AND SPENCER,United Kingdom,Aberfeldy,,FALSE
+9/30/2017 17:49,50.07907867,14.43321991,MCAFEE,Czech Republic,Star������,,TRUE
+6/17/2017 4:48,35.14953613,-90.04898071,FEDEX,United States,Memphis,Tennessee,TRUE
+10/10/2017 0:35,40.94194031,-4.112850189,NISSAN,Spain,Segovia,,FALSE
+9/5/2017 17:53,19.07336044,73.02203369,GUCCI,India,Navi Mumbai,,FALSE
+10/26/2017 20:55,37.74739838,-122.4392166,SPORTS ILLUSTRATED,United States,San Francisco,California,FALSE
+11/27/2017 18:46,41.82331848,-71.4193573,INFOSYS,United States,Providence,Rhode Island,TRUE
+6/28/2017 20:35,53.86616135,-113.7619934,VOLKSWAGEN USA,Canada,Morinville,,TRUE
+4/4/2017 16:02,32.9709834,-96.7071453,HYUNDAI,United States,Garland,Texas,FALSE
+6/1/2017 18:12,41.25236511,-95.99798584,ADT,United States,Carter Lake,Nebraska,TRUE
+10/10/2017 6:12,40.71455002,-74.00711823,NISSAN,United States,Byram,New Jersey,TRUE
+6/10/2017 6:26,39.04575348,-76.6412735,KELLOGG'S,United States,Gambrills,Maryland,TRUE
+9/14/2017 11:15,54.31407166,-2.230010033,ALDI,United Kingdom,Kirkby Stephen,,FALSE
+10/15/2017 19:09,34.04333115,127.319397,NISSAN,"Korea, Republic of",Yeosu,,TRUE
+11/9/2017 11:47,39.55791855,-7.844810009,APPLE INC,Portugal,Gavi��,,FALSE
+9/10/2017 7:55,34.05350113,-118.2450027,NISSAN,United States,Los Angeles,California,TRUE
+6/30/2017 18:06,38,-97,BP,United States,Peabody,Kansas,TRUE
+9/21/2017 19:47,-36.9131012,174.6670074,Apple Computer Inc,New Zealand,Waitakere,,TRUE
+8/29/2017 16:33,14.48034,120.8936081,LOVEWINS CAMPAIGN,Philippines,Cavite City,,FALSE
+11/16/2017 4:35,-6.283830166,106.8021393,TELKOMSEL,Indonesia,Jakarta,,FALSE
+6/19/2017 16:49,42.25,-8.6667,C&A,Spain,Vigo,,FALSE
+6/2/2017 23:27,14.5995121,120.9842224,CITIBANK,Philippines,Quiapo,,TRUE
+10/25/2017 18:06,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+6/10/2017 6:24,36.77825928,-119.4179306,APPLE INC,United States,Minkler,California,FALSE
+10/17/2017 21:36,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+10/14/2017 6:39,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+9/29/2017 19:56,35.30913925,-98.52101898,MCDONALDS,United States,Carnegie,Oklahoma,TRUE
+8/30/2017 16:35,44.88108826,-93.26792145,BEST BUY,United States,Elko New Market,Minnesota,FALSE
+11/26/2017 8:31,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+10/23/2017 13:11,-2.552599907,120.3230896,TELKOMSEL,Indonesia,Masamba,,FALSE
+10/17/2017 1:49,44.69414902,-63.59000015,BOEING,Canada,Dartmouth,,TRUE
+11/19/2017 5:25,17.41840935,78.45001221,STANDARD BANK,India,Hyderabad,,TRUE
+10/30/2017 20:51,31.21125984,-82.35762024,NISSAN,United States,Waycross,Georgia,TRUE
+11/18/2017 15:29,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+8/19/2017 8:37,-24.91209984,133.397995,TELSTRA,Australia,Alice Springs,,TRUE
+10/17/2017 0:13,38.03390121,-84.89504242,NISSAN,United States,Lawrenceburg,Kentucky,FALSE
+11/13/2017 20:11,42.86315918,-85.86218262,BEST BUY,United States,Comstock Northwest,Michigan,TRUE
+9/6/2017 18:00,51.8637886,-2.249500036,COTY - CALVIN KLEIN,United Kingdom,Barnwood,,TRUE
+10/4/2017 17:30,47.95030975,-122.220871,NISSAN,United States,Everett,Washington,TRUE
+8/19/2017 18:44,22.71998978,75.87406921,PVR,India,Indore,,TRUE
+11/4/2017 6:49,-6.437839985,105.9946213,TELKOMSEL,Indonesia,Jasugih Selatan,,FALSE
+11/6/2017 13:38,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/15/2017 22:12,30.30636978,-97.75276184,@AT&T,United States,Austin,Texas,FALSE
+11/15/2017 22:28,42.26380157,-118.6744766,WALMART,United States,Hines,Oregon,TRUE
+9/8/2017 10:21,53.55334091,9.99244976,EURO WINGS,Germany,Neustadt,,TRUE
+9/3/2017 19:20,56.65285873,-3.996670008,ALDI,United Kingdom,Aberfeldy,,TRUE
+9/12/2017 19:01,32.32537842,-106.7884827,UBISOFT,United States,Las Cruces,New Mexico,TRUE
+9/8/2017 1:14,-24.91209984,133.397995,TELSTRA,Australia,Alice Springs,,FALSE
+11/9/2017 20:00,34.05350113,-118.2450027,APPLE INC,United States,Los Angeles,California,TRUE
+11/23/2017 7:38,31.27946091,37.13068008,NISSAN,Saudi Arabia,Al Qurayy��,,TRUE
+10/6/2017 2:24,12.97754002,77.59951019,HDFC BANK,India,Bangalore,,TRUE
+7/25/2017 7:48,52.35551834,-1.174319744,Apple Computer Inc,United Kingdom,Rugby,,TRUE
+11/16/2017 18:52,47.47554016,-122.1899414,LEGO,United States,Renton,Washington,FALSE
+8/20/2017 20:18,33.76319122,-84.42305756,NIKE,United States,Atlanta,Georgia,FALSE
+11/5/2017 15:00,41.02610016,-73.75469971,MASTERCARD,United States,Byram,New York,FALSE
+9/28/2017 11:25,13.3166399,30.20948982,BRITISH AIRWAYS,Sudan,El Obeid,,TRUE
+11/13/2017 13:07,-28.47933006,24.67992973,Apple Computer Inc,South Africa,Barkly West,,TRUE
+6/17/2017 16:56,51.5,-0.116667002,LLOYDS TSB BANK PLC,United Kingdom,City of Westminster,,TRUE
+5/1/2017 18:05,36.77825928,-119.4179306,ASEMBIA,United States,Minkler,California,FALSE
+9/2/2017 16:00,39.76691055,-86.14996338,CHEVRON,United States,Indianapolis,Indiana,TRUE
+9/10/2017 17:16,40.71455002,-74.00711823,APPLE INC,United States,Byram,New Jersey,FALSE
+9/11/2017 16:26,23.62574005,-101.9562531,MCDONALDS,Mexico,Villa de Cos,,TRUE
+5/12/2017 6:43,17.37799835,78.5366745,MTR,India,Gaddi Annaram,,FALSE
+10/15/2017 7:44,0.109739996,113.9173965,NISSAN,Indonesia,Longnawang,,FALSE
+3/30/2017 18:10,36.77825928,-119.4179306,APPLE INC,United States,Minkler,California,FALSE
+11/5/2017 17:45,25.81543922,-80.13369751,AMERICAN AIRLINES,United States,Miami Beach,Florida,FALSE
+10/9/2017 9:04,21.78660011,82.79476166,JET AIRWAYS ,India,Seor�������,,TRUE
+9/11/2017 20:47,51.74924088,-0.47507,UBISOFT,United Kingdom,Kings Langley,,TRUE
+11/26/2017 16:01,47.52090836,8.930870056,LEGO,Switzerland,Matzingen,,FALSE
+11/8/2017 16:44,38.87863159,-77.1009903,LOVEWINS CAMPAIGN,United States,Brookmont,Virginia,TRUE
+11/2/2017 23:50,32.58507156,-89.87374115,NISSAN,United States,Canton,Mississippi,TRUE
+10/10/2017 19:57,39.89233017,-74.91905212,PEOPLE,United States,Marlton,New Jersey,FALSE
+9/1/2017 17:06,51.48126984,-3.180720091,NIKE,United Kingdom,Cardiff,,FALSE
+11/16/2017 21:24,40.14323044,-74.72670746,PETCO,United States,Tullytown,New Jersey,FALSE
+9/30/2017 0:23,54.97789001,-1.611619949,ZURICH INSURANCE UK,United Kingdom,Newcastle upon Tyne,,TRUE
+11/8/2017 15:12,36.05672073,-90.48738098,NISSAN,United States,Paragould,Arkansas,TRUE
+8/22/2017 22:26,44.47592163,-73.21322632,AMERICAN AIRLINES,United States,Burlington,Vermont,FALSE
+7/14/2017 1:23,39.1031189,-84.5120163,MORGAN STANLEY,United States,Covington,Ohio,FALSE
+9/15/2017 20:41,35.78551102,-78.64266968,AMERICAN AIRLINES,United States,Raleigh,North Carolina,TRUE
+10/18/2017 1:33,37.1679306,-95.84501648,IKEA,United States,Independence,Kansas,FALSE
+6/10/2017 21:51,39.96259689,-76.72774506,TESCO,United States,York,Pennsylvania,TRUE
+6/6/2017 17:01,36.74684143,-119.772583,T-MOBILE,United States,Fresno,California,FALSE
+9/29/2017 21:46,34.07857132,-118.4021301,PEOPLE,United States,Beverly Hills,California,FALSE
+9/8/2017 17:23,51.50640106,-0.127210006,MCDONALDS,United Kingdom,London,,FALSE
+8/20/2017 9:18,51.50640106,-0.127210006,ALDI,United Kingdom,London,,TRUE
+11/9/2017 10:35,60.17116165,24.93258095,FINNAIR,Finland,Helsinki,,FALSE
+11/19/2017 16:33,35.78551102,-78.64266968,BEST BUY,United States,Raleigh,North Carolina,TRUE
+4/18/2017 9:34,19.7514801,75.71389008,INTEX,India,Ambad,,FALSE
+11/21/2017 2:24,40.19033051,-82.66947174,POP TARTS,United States,Granville South,Ohio,TRUE
+9/28/2017 14:52,6.439179897,3.423480034,NISSAN,Nigeria,Lagos,,TRUE
+10/24/2017 17:41,21.17642021,72.81408691,SPICEJET,India,S����,,FALSE
+11/24/2017 8:54,19.09028053,72.87136841,HDFC BANK,India,Mumbai,,TRUE
+11/4/2017 17:47,22.54994011,88.37158203,TIMES OF INDIA,India,Kolkata,,FALSE
+9/11/2017 8:55,40.71455002,-74.00711823,APPLE INC,United States,Byram,New Jersey,FALSE
+7/12/2017 0:19,23.2156353,72.63694,WHIRLPOOL,India,Ghandinagar,,TRUE
+4/15/2017 8:15,52.35551834,-1.174319744,IDC,United Kingdom,Rugby,,FALSE
+9/12/2017 21:04,27.96722031,-82.47593689,IKEA,United States,Tampa,Florida,FALSE
+11/16/2017 8:51,-18.81489944,29.6372509,STANDARD BANK,Zimbabwe,Kwekwe,,FALSE
+7/31/2017 21:06,30.32633018,-81.65339661,NISSAN,United States,Jacksonville,Florida,TRUE
+11/28/2017 6:30,-6.256080151,106.8089981,TELKOMSEL,Indonesia,Jakarta,,FALSE
+6/25/2017 20:27,40.71416855,-74.0063858,CIGNA,United States,Byram,New Jersey,FALSE
+8/2/2017 13:01,39.13330078,-84.53330231,NISSAN,United States,Ludlow,Ohio,FALSE
+11/20/2017 16:47,53.67993927,-1.510329962,JYSK,United Kingdom,Wakefield,,TRUE
+10/17/2017 0:57,41.66400146,-78.80660248,NISSAN,United States,Sheffield,Pennsylvania,TRUE
+8/22/2017 17:35,42.20383072,-71.00219727,UBISOFT,United States,Braintree,Massachusetts,FALSE
+11/23/2017 11:49,51.52811813,-3.489249945,FEDEX,United Kingdom,Pencoed,,FALSE
+10/13/2017 18:11,40.79190063,-74.19573212,MCDONALDS,United States,Warren Township,New Jersey,TRUE
+10/17/2017 0:47,46.98659897,12.88731956,NISSAN,Austria,Gro������,,TRUE
+11/2/2017 0:26,33.76319122,-84.42305756,CITIBANK,United States,Atlanta,Georgia,TRUE
+11/3/2017 16:09,13.05939007,80.2456665,HDFC BANK,India,Chetput,,TRUE
+10/9/2017 20:57,51.14662933,0.876030028,BRITISH AIRWAYS,United Kingdom,Ashford,,TRUE
+10/9/2017 19:13,29.46071053,-98.52160645,MCDONALDS,United States,Balcones Heights,Texas,TRUE
+8/22/2017 18:03,54.31407166,-2.230010033,ALDI,United Kingdom,Kirkby Stephen,,FALSE
+9/12/2017 13:01,43.64855957,-79.38536835,APPLE INC,Canada,Toronto,,TRUE
+8/22/2017 17:23,53.57844925,-2.426670074,ALDI,United Kingdom,Bolton,,TRUE
+7/15/2017 14:47,41.402321,-75.661552,ADIDAS,United States,Scranton,Pennsylvania,TRUE
+10/16/2017 0:45,50.72805023,-3.719249964,NISSAN,United Kingdom,Bovey Tracey,,TRUE
+11/14/2017 15:41,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+7/2/2017 10:40,-26.20410347,28.04730415,UBER,South Africa,Johannesburg,,TRUE
+7/13/2017 16:55,25.79065323,-80.13004303,AMERICAN AIRLINES,United States,Miami Beach,Florida,TRUE
+7/25/2017 6:21,18.52042961,73.85674286,FOSSIL,India,Pune,,TRUE
+11/15/2017 20:08,54.97789001,-1.611619949,LOVEWINS CAMPAIGN,United Kingdom,Newcastle upon Tyne,,TRUE
+11/25/2017 18:36,34.05527878,-117.182579,NISSAN,United States,Redlands,California,TRUE
+10/30/2017 17:40,52.62250137,1.29489994,ROYAL BANK OF SCOTLAND,United Kingdom,Norwich,,TRUE
+9/7/2017 19:51,30.34530067,-81.71450806,VERIZON,United States,Jacksonville,Florida,TRUE
+10/1/2017 4:20,17.41840935,78.45001221,TIMES OF INDIA,India,Hyderabad,,TRUE
+11/4/2017 21:34,37.52943039,-77.47563934,NISSAN,United States,Woodlake,Virginia,TRUE
+9/16/2017 13:00,40.09967041,-75.45681763,FORTUNE,United States,Paoli,Pennsylvania,FALSE
+6/17/2017 10:43,53.00266647,-2.17940402,QATAR AIRWAYS,United Kingdom,Stoke-on-Trent,,TRUE
+10/19/2017 14:03,52.94921112,-1.14391005,LEGO,United Kingdom,Nottingham,,FALSE
+9/22/2017 16:30,51.71075821,-4.699250221,TESCO,United Kingdom,Saundersfoot,,TRUE
+11/5/2017 22:23,47.0443306,-122.7936707,NISSAN,United States,Tanglewilde-Thompson Place,Washington,TRUE
+9/12/2017 18:31,21.78660011,82.79476166,APPLE INC,India,Seor�������,,TRUE
+11/26/2017 3:42,40.43130112,-79.98069763,NISSAN,United States,Pittsburgh,Pennsylvania,TRUE
+11/17/2017 0:21,52.47866821,-1.908480048,BTTV,United Kingdom,Birmingham,,FALSE
+6/7/2017 7:35,28.61393929,77.20902252,SHELL,India,New Delhi,,TRUE
+10/15/2017 5:33,31.16889954,-100.0771484,NISSAN,United States,Eden,Texas,TRUE
+11/13/2017 16:52,40.14323044,-74.72670746,AMERICAN AIRLINES,United States,Tullytown,New Jersey,TRUE
+9/4/2017 0:55,30.86030006,72.3742981,TCS,Pakistan,P�����,,TRUE
+9/29/2017 1:34,37.87868881,-121.9434509,T-MOBILE,United States,Diablo,California,FALSE
+10/17/2017 8:03,54.31407166,-2.230010033,MCDONALDS,United Kingdom,Kirkby Stephen,,FALSE
+11/28/2017 14:50,38.82350159,-75.92381287,T-MOBILE,United States,Denton,Maryland,FALSE
+11/5/2017 20:58,45.60248947,-97.82978821,MATTEL,United States,Britton,South Dakota,FALSE
+11/20/2017 17:59,8.770130157,27.39286995,NISSAN,South Sudan,Aweil,,TRUE
+8/29/2017 0:10,59.8579483,10.47698021,HPE,Norway,Billingstad,,TRUE
+6/6/2017 0:48,40.41677475,-3.703790188,EMIRATES,Spain,Madrid,,TRUE
+8/22/2017 20:24,39.1452713,-75.41876221,UBISOFT,United States,Dover Base Housing,Delaware,TRUE
+4/23/2017 3:19,33.836081,-81.1637245,HP INC.,United States,Gaston,South Carolina,FALSE
+11/5/2017 10:50,43.11891937,-123.4224014,MCCLATCHY,United States,Winston,Oregon,FALSE
+10/7/2017 9:00,43.26049042,-2.935899973,MICROSOFT - WINDOWS 10,Spain,Bilbao,,FALSE
+11/14/2017 19:38,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+11/1/2017 15:56,39.98913956,-82.98532867,NISSAN,United States,Columbus,Ohio,TRUE
+9/10/2017 7:31,51.03398895,-3.601389885,TESCO,United Kingdom,Tiverton,,TRUE
+6/27/2017 17:14,34.19750595,-119.1770554,T-MOBILE,United States,Oxnard,California,FALSE
+9/29/2017 9:52,25.58352089,75.5556488,NISSAN,India,Borkhera,,TRUE
+11/8/2017 19:54,52.13185883,11.62777996,NISSAN,Germany,Magdeburg,,FALSE
+9/7/2017 20:11,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,TRUE
+8/14/2017 18:22,53.49456406,-2.520799637,ALDI,United Kingdom,Leigh,,FALSE
+11/14/2017 23:29,-24.91209984,133.397995,LOVEWINS CAMPAIGN,Australia,Alice Springs,,FALSE
+9/15/2017 5:28,53.77212143,-6.310009956,MAJID AL FUTTAIM GROUP,Ireland,Termonfeckin,,FALSE
+9/28/2017 18:55,51.05321884,0.171900004,TESCO,United Kingdom,Ulverston,,TRUE
+7/22/2017 16:10,38.90988541,-77.04399109,MICROSOFT - WINDOWS 10,United States,"Washington, D. C.",Maryland,TRUE
+4/29/2017 3:25,38.90719223,-77.03687286,T-MOBILE,United States,"Washington, D. C.",Maryland,FALSE
+9/29/2017 18:12,34.05350113,-118.2450027,AMERICAN AIRLINES,United States,Los Angeles,California,TRUE
+11/18/2017 22:57,42.46549988,-82.94583893,NISSAN,Canada,Windsor,,TRUE
+7/21/2017 16:48,32.89567566,-97.04376984,BRITISH AIRWAYS,United States,Grapevine,Texas,FALSE
+11/1/2017 0:02,47.69651031,13.34576988,UBISOFT,Austria,Hintersee,,FALSE
+9/11/2017 17:32,38.0033493,-79.77127075,BMS,United States,Mountain Lake Park,Virginia,FALSE
+4/22/2017 0:07,32.51964,-83.5603112,APPLE INC,United States,Robins Air Force Base,Georgia,FALSE
+7/30/2017 17:18,21.78660011,82.7947998,TIMES OF INDIA,India,Seor�������,,TRUE
+4/10/2017 0:09,40.26719284,-86.13490295,ADIDAS,United States,Tipton,Indiana,FALSE
+10/13/2017 6:38,28.60733032,77.20350647,INDIGO,India,New Delhi,,FALSE
+11/25/2017 2:08,35.65446854,-97.4781189,NISSAN,United States,Edmond,Oklahoma,TRUE
+11/26/2017 18:22,29.46071053,-98.52160645,NISSAN,United States,Balcones Heights,Texas,TRUE
+7/26/2017 20:42,34.167881,-111.930702,BEST BUY,United States,Cordes Lakes,Arizona,TRUE
+9/17/2017 22:56,34.05350113,-118.2450027,NIKE,United States,Los Angeles,California,TRUE
+7/31/2017 14:00,39.9647522,-74.64736176,MCDONALDS,United States,Magnolia,New Jersey,FALSE
+8/16/2017 17:07,44.88051987,-91.92955017,CAMPBELL SOUP,United States,Menomonie,Wisconsin,FALSE
+10/5/2017 17:17,46.73014832,-117.1814728,NISSAN,United States,Pullman,Washington,TRUE
+6/11/2017 11:56,54.595341,-5.93455,BRITISH AIRWAYS,United Kingdom,Belfast,,TRUE
+6/17/2017 23:52,51.5712204,-0.1157142,WIPRO,United Kingdom,Crouch End,,FALSE
+8/25/2017 6:16,53.45486832,-6.926449776,MARKS AND SPENCER,Ireland,Longwood,,TRUE
+11/13/2017 16:06,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+11/2/2017 9:13,51.50640106,-0.127210006,H&M,United Kingdom,London,,FALSE
+11/4/2017 18:37,35.22076035,-97.44660187,NISSAN,United States,Norman,Oklahoma,TRUE
+9/28/2017 15:13,41.5047493,-81.6907196,JC PENNEY,United States,Montrose-Ghent,Ohio,TRUE
+9/10/2017 0:20,38.0033493,-79.77127075,MCDONALDS,United States,Mountain Lake Park,Virginia,FALSE
+10/25/2017 14:53,35.14968109,-90.04891968,SPORTS ILLUSTRATED,United States,Memphis,Tennessee,FALSE
+9/5/2017 21:40,-29.16795921,-51.17731094,COTY - CALVIN KLEIN,Brazil,Caxias do Sul,,TRUE
+4/4/2017 2:42,27.6648274,-81.5157535,APPLE INC,United States,Avon Park,Florida,FALSE
+8/20/2017 17:11,51.04483032,-1.343320012,TESCO,United Kingdom,Winchester,,TRUE
+10/15/2017 13:09,47.2743187,-120.8327179,NISSAN,United States,Cle Elum,Washington,TRUE
+11/5/2017 22:47,37.82244873,-85.69091034,NISSAN,United States,Lebanon Junction,Kentucky,TRUE
+11/9/2017 2:39,53.52643967,-113.5174408,SPORTS ILLUSTRATED,Canada,Edmonton,,FALSE
+11/28/2017 6:30,28.9546299,43.56927109,CISCO,Saudi Arabia,������ajrat al Khinbish,,FALSE
+7/7/2017 15:12,-23.55051994,-46.63330841,C&A,Brazil,S�����,,TRUE
+6/15/2017 18:15,37.872532,-122.27478,BRITISH AIRWAYS,United States,Berkeley,California,FALSE
+11/2/2017 7:21,46.44231033,-93.36585999,NISSAN,United States,Grantsburg,Minnesota,FALSE
+11/25/2017 15:18,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+6/2/2017 1:50,38.93386841,-77.17726135,AMERICAN AIRLINES,United States,Cabin John,Virginia,TRUE
+11/22/2017 13:20,35.30913925,-98.52101898,HCL,United States,Carnegie,Oklahoma,TRUE
+11/15/2017 21:37,37.1679306,-95.84501648,PEOPLE,United States,Independence,Kansas,TRUE
+10/31/2017 19:52,47.66255188,-117.2347183,T-MOBILE,United States,Spokane Valley,Washington,FALSE
+8/21/2017 0:40,51.64175034,-0.466699988,BRITISH AIRWAYS,United Kingdom,Rickmansworth,,TRUE
+5/23/2017 14:19,32.9709834,-96.7071453,YAMAHA MOTORS,United States,Garland,Texas,FALSE
+10/12/2017 3:21,40.99470901,-77.60453796,MICROSOFT - WINDOWS 10,United States,Zion,Pennsylvania,TRUE
+8/24/2017 17:41,51.50640106,-0.127210006,RWE NPOWER,United Kingdom,London,,TRUE
+11/28/2017 1:45,14.63554001,-61.02281189,NISSAN,Martinique,Le Lamentin,,FALSE
+11/9/2017 6:32,19.09028053,72.87136841,SPICEJET,India,Mumbai,,FALSE
+11/4/2017 0:04,-27.03060913,-65.32029724,TELKOMSEL,Argentina,Bella Vista,,FALSE
+10/2/2017 17:59,50.50101089,4.476840019,DELL EMC,Belgium,Brunehault,,TRUE
+9/7/2017 10:49,48.39492035,-93.58042908,TELSTRA,Canada,Fort Frances,,FALSE
+9/15/2017 2:06,30.30636978,-97.75276184,NOKIA,United States,Austin,Texas,TRUE
+10/11/2017 22:16,32.67827988,-83.2229538,MICROSOFT - WINDOWS 10,United States,Jeffersonville,Georgia,TRUE
+7/5/2017 22:17,52.20533752,0.121817,LUFTHANSA,United Kingdom,Cambridge,,TRUE
+11/2/2017 3:42,40.71455002,-74.00711823,Apple Computer Inc,United States,Byram,New Jersey,TRUE
+7/29/2017 14:24,34.7519,-92.130547,HELLO FRESH,United States,McAlmont,Arkansas,FALSE
+7/14/2017 13:21,46.81818771,8.22751236,MICROSOFT - WINDOWS 10,Switzerland,Giswil,,FALSE
+11/3/2017 14:05,32.58507156,-89.87374115,APPLE INC,United States,Canton,Mississippi,TRUE
+7/31/2017 2:27,36.17499924,-115.1363907,MCDONALDS,United States,Las Vegas,Nevada,FALSE
+6/6/2017 11:59,37.840141,23.600809,EMIRATES,Greece,Drapets���,,TRUE
+10/4/2017 5:03,19.09028053,72.87136841,ABBOTT LABS,India,Mumbai,,TRUE
+10/10/2017 19:46,39.87755966,-105.7826767,T-MOBILE,United States,Fraser,Colorado,FALSE
+11/23/2017 6:49,55.95415115,-3.202769995,BRUSSELS AIRLINES,United Kingdom,Seafield,,FALSE
+4/6/2017 3:08,34.0489281,-111.0937311,STANLEY BLACK AND DECKER,United States,Star Valley,Arizona,FALSE
+9/15/2017 23:08,41.62057877,0.620010018,NISSAN,Spain,Lleida,,TRUE
+9/5/2017 11:27,59.15908813,10.26422024,LIDL,Norway,Sandefjord,,TRUE
+11/14/2017 19:46,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+8/19/2017 4:38,-6.904190063,107.652298,TELKOMSEL,Indonesia,Bandung,,TRUE
+7/13/2017 3:56,35.14953613,-90.04898071,FEDEX,United States,Memphis,Tennessee,TRUE
+6/16/2017 1:00,39.01190186,-98.4842453,ERNST & YOUNG ,United States,Lincoln,Kansas,FALSE
+4/11/2017 5:47,41.87800217,-93.09770203,MICROSOFT - WINDOWS 10,United States,Baxter,Iowa,TRUE
+11/5/2017 21:37,33.6872406,-117.8258209,NISSAN,United States,Tustin,California,TRUE
+6/9/2017 23:56,63.036499,-149.106003,BEST BUY,United States,Healy,Alaska,TRUE
+7/23/2017 17:24,32.83597565,-96.80567169,MARKS AND SPENCER,United States,Highland Park,Texas,FALSE
+6/3/2017 0:20,35.96055603,-83.92082977,CAPITAL ONE,United States,Knoxville,Tennessee,FALSE
+8/29/2017 20:00,37.39532089,-122.0526276,NIKE,United States,Sunnyvale,California,TRUE
+11/28/2017 20:55,31.84983063,-106.4371872,APPLE INC,United States,Fort Bliss,Texas,FALSE
+8/21/2017 16:08,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+10/5/2017 15:06,43.74269867,-84.62167358,NISSAN,United States,Barnes Lake-Millers Lake,Michigan,TRUE
+7/14/2017 11:51,51.5,-0.116667002,MICROSOFT SUPPORT,United Kingdom,City of Westminster,,TRUE
+10/23/2017 3:38,40.44284058,-79.99829102,NOVARTIS,United States,Pittsburgh,Pennsylvania,FALSE
+7/20/2017 22:30,47.60638809,-122.3308334,NOKIA,United States,Seattle,Washington,TRUE
+10/18/2017 0:26,37.2718811,-119.2702332,PEOPLE,United States,Auberry,California,TRUE
+7/6/2017 15:03,50.94972992,-2.211276293,TESCO,United Kingdom,Manston,,FALSE
+10/4/2017 22:05,36.2365303,139.9182281,MAJID AL FUTTAIM GROUP,Japan,Y���,,FALSE
+8/28/2017 2:08,3.074860096,101.5112915,HCL,Malaysia,Shah Alam,,TRUE
+11/6/2017 17:18,40.25920105,-78.50576019,Apple Computer Inc,United States,Roaring Spring,Pennsylvania,FALSE
+9/28/2017 22:25,27.97579956,-81.5410614,Apple Computer Inc,United States,Lake Wales,Florida,TRUE
+4/11/2017 23:16,-31.61065865,-60.69729233,ELECTRONIC ARTS,Argentina,Santa Fe de la Vera Cruz,,FALSE
+4/9/2017 1:52,51.25377655,-85.32321167,BANK OF MONTREAL,Canada,Hornepayne,,FALSE
+11/27/2017 14:36,31.14528084,-81.47396088,THE HOME DEPOT,United States,Brunswick,Georgia,TRUE
+9/7/2017 15:31,26.90646935,75.78494263,HDFC BANK,India,Jaipur,,TRUE
+11/4/2017 13:43,21.78660011,82.79476166,INDIGO,India,Seor�������,,FALSE
+4/17/2017 21:08,40.71278381,-74.0059433,MICROSOFT STORE,United States,Byram,New York,FALSE
+9/29/2017 8:02,40.84680176,-74.0393219,PEOPLE,United States,Byram,New Jersey,FALSE
+10/18/2017 2:48,40.62228012,-87.48262024,NISSAN,United States,Kentland,Indiana,TRUE
+8/30/2017 20:11,39.76691055,-86.14996338,MICROSOFT SUPPORT,United States,Indianapolis,Indiana,TRUE
+11/13/2017 21:57,41.96781921,-91.67835236,IKEA,United States,Cedar Rapids,Iowa,FALSE
+9/9/2017 18:30,42.69070053,-2.940479994,Apple Computer Inc,Spain,Miranda de Ebro,,TRUE
+10/11/2017 9:56,17.41840935,78.45001221,ADIDAS,India,Hyderabad,,FALSE
+9/15/2017 21:25,37.0746994,14.24170017,NIKE,Italy,Gela,,TRUE
+11/20/2017 2:28,34.57989883,-112.4475479,SONYMUSIC ENTERTAINMENT,United States,Prescott,Arizona,TRUE
+10/25/2017 9:40,51.75629044,-1.25951004,TIMES OF INDIA,United Kingdom,Oxford,,TRUE
+10/5/2017 5:11,28.60733032,77.20350647,DIAL,India,New Delhi,,FALSE
+8/27/2017 18:15,41.88415146,-87.63240814,7-ELEVEN,United States,Chicago,Illinois,TRUE
+6/6/2017 18:01,29.42412186,-98.49362946,SHELL,United States,Alamo Heights,Texas,TRUE
+9/23/2017 8:10,19.09028053,72.87136841,SPICEJET,India,Mumbai,,TRUE
+11/19/2017 17:19,55.74163818,37.60506058,INFOSYS,Russian Federation,Moscow,,FALSE
+11/6/2017 17:43,44.72719955,-90.10125732,NISSAN,United States,Stratford,Wisconsin,TRUE
+11/8/2017 0:53,41.69816971,-88.08119965,APPLE INC,United States,Bolingbrook,Illinois,FALSE
+7/31/2017 10:17,53.86938095,-1.659150124,BRITISH AIRWAYS,United Kingdom,Yeadon,,FALSE
+9/9/2017 4:39,38.64730072,-77.34591675,Apple Computer Inc,United States,Quantico Station,Virginia,FALSE
+11/27/2017 9:41,19.09028053,72.87136841,JET AIRWAYS,India,Mumbai,,FALSE
+7/13/2017 15:04,51.50735092,-0.127758294,H&M,United Kingdom,London,,FALSE
+8/29/2017 4:46,19.09028053,72.87136841,FOSSIL,India,Mumbai,,FALSE
+6/20/2017 14:02,37.77500153,-122.418335,BRITISH AIRWAYS,United States,San Francisco,California,FALSE
+10/4/2017 16:53,41.88415146,-87.63240814,T-MOBILE,United States,Chicago,Illinois,FALSE
+10/12/2017 13:35,42.6857605,-70.84049988,APPLE INC,United States,Ipswich,Massachusetts,TRUE
+9/11/2017 6:55,34.67998886,76.42440033,TIMES OF INDIA,India,Kargil,,TRUE
+4/20/2017 20:08,42.4072113,-71.38243866,MICROSOFT - WINDOWS 10,United States,Sudbury,Massachusetts,TRUE
+11/3/2017 23:04,34.42031097,-97.39959717,NISSAN,United States,Healdton,Oklahoma,TRUE
+8/1/2017 20:36,51.49220657,-0.223288104,BRITISH AIRWAYS,United Kingdom,Kensington,,FALSE
+10/7/2017 7:37,12.97754002,77.59951019,HDFC BANK,India,Bangalore,,TRUE
+7/20/2017 19:32,51.5,-0.116667002,DEBENHAMS,United Kingdom,City of Westminster,,TRUE
+11/15/2017 15:44,21.78660011,82.79476166,LOVEWINS CAMPAIGN,India,Seor�������,,FALSE
+10/16/2017 2:37,42.50674057,-89.03793335,NISSAN,United States,Beloit,Wisconsin,TRUE
+6/16/2017 13:00,50.9097023,-1.404350877,MICROSOFT - WINDOWS 10,United Kingdom,Southampton,,FALSE
+11/18/2017 0:55,38.56789017,-121.4688492,MCCLATCHY,United States,Sacramento,California,FALSE
+10/6/2017 1:35,47.97869873,13.83434963,Apple Computer Inc,Austria,Laakirchen,,TRUE
+11/8/2017 7:47,51.38172913,1.327090025,MARKS AND SPENCER,United Kingdom,Westgate on Sea,,FALSE
+8/31/2017 17:06,53.44229889,-2.233409882,BRUSSELS AIRLINES,United Kingdom,Fallowfield,,TRUE
+6/21/2017 16:58,51.5,-0.116667002,BRITISH AIRWAYS,United Kingdom,City of Westminster,,TRUE
+6/29/2017 11:31,54.07416534,-2.864968061,LLOYDS TSB BANK PLC,United Kingdom,Morecambe,,FALSE
+9/1/2017 17:52,53.52643967,-113.5174408,IKEA,Canada,Edmonton,,TRUE
+10/27/2017 8:17,37.39186096,-122.1469193,SPICEJET,United States,Los Altos Hills,California,FALSE
+11/27/2017 0:47,34.05350113,-118.2450027,MCCLATCHY,United States,Los Angeles,California,FALSE
+9/20/2017 20:58,53.02970886,-2.17505002,Apple Computer Inc,United Kingdom,Stoke-on-Trent,,FALSE
+9/19/2017 20:14,55.85783005,-4.242509842,DEBENHAMS,United Kingdom,Rutherglen,,TRUE
+11/22/2017 2:24,54.49856949,-114.9999313,PEOPLE,Canada,Swan Hills,,FALSE
+8/23/2017 0:17,55.88669968,-3.608989954,TESCO,United Kingdom,Blackburn,,FALSE
+7/3/2017 11:57,51.50735092,-0.127758294,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+9/18/2017 23:28,-14.24289989,-54.38779831,SPORT CLUB CORINTHIANS PAULISTA,Brazil,Poxor��,,TRUE
+9/25/2017 13:01,51.50640106,-0.127210006,NISSAN,United Kingdom,London,,TRUE
+6/6/2017 16:06,33.85472107,35.86228561,T-MOBILE,Lebanon,Zahl��,,FALSE
+9/30/2017 15:58,29.77541924,-95.38188934,MCDONALDS,United States,Houston,Texas,TRUE
+11/14/2017 15:36,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+4/1/2017 7:39,45.16957855,5.450282097,MICROSOFT - WINDOWS 10,France,Vinay,,FALSE
+6/16/2017 14:26,56.49067307,-4.202645779,BRITISH AIRWAYS,United Kingdom,Callander,,FALSE
+11/4/2017 3:23,34.05350113,-118.2450027,BEST BUY,United States,Los Angeles,California,TRUE
+11/27/2017 14:07,51.50640106,-0.127210006,TESCO,United Kingdom,London,,TRUE
+9/27/2017 20:51,40.13299942,-79.86540222,NISSAN,United States,North Belle Vernon,Pennsylvania,TRUE
+9/30/2017 13:28,49.90420151,5.595200062,BRITISH AIRWAYS,Belgium,Vaux-sur-S���,,FALSE
+10/23/2017 11:59,-6.30174017,107.2797775,TELKOMSEL,Indonesia,Cikarang,,FALSE
+7/15/2017 20:31,55.86423874,-4.251805782,DEBENHAMS,United Kingdom,Rutherglen,,TRUE
+9/12/2017 7:48,51.16418076,10.4541502,EURO WINGS,Germany,Niederdorla,,TRUE
+11/20/2017 4:57,35.0425911,-89.66661835,NISSAN,United States,Collierville,Tennessee,TRUE
+10/20/2017 17:24,40.71455002,-74.00711823,MCCLATCHY,United States,Byram,New Jersey,FALSE
+11/14/2017 19:35,50.12046051,-122.9651489,Apple Computer Inc,Canada,Whistler,,TRUE
+6/6/2017 17:04,39.300968,-76.610611,T-MOBILE,United States,Baltimore,Maryland,TRUE
+10/5/2017 0:58,-42.91065979,-71.32100677,SPORTS ILLUSTRATED,Argentina,Esquel,,FALSE
+8/28/2017 21:29,27.97579956,-81.5410614,VERIZON,United States,Lake Wales,Florida,FALSE
+11/27/2017 10:14,22.54994011,88.37158203,HDFC BANK,India,Kolkata,,TRUE
+7/13/2017 15:18,37.96425247,-91.83183289,APPLE INC,United States,Rolla,Missouri,FALSE
+6/6/2017 13:56,31.96859932,-99.90180969,T-MOBILE,United States,Ballinger,Texas,TRUE
+7/3/2017 9:10,52.17965698,-2.237054348,HSBC,United Kingdom,Worcester,,TRUE
+7/21/2017 10:49,-29,24,STANDARD BANK,South Africa,Douglas,,TRUE
+7/19/2017 22:01,40.71416855,-74.0063858,HELLO FRESH,United States,Byram,New Jersey,TRUE
+9/16/2017 4:28,27.97579956,-81.5410614,Apple Computer Inc,United States,Lake Wales,Florida,TRUE
+9/8/2017 18:39,17.41840935,78.45001221,TIMES OF INDIA,India,Hyderabad,,TRUE
+8/29/2017 23:50,-33.85628128,151.0209656,UBISOFT,Australia,Lidcombe,,TRUE
+6/24/2017 16:08,40.71269989,74.00589752,GUCCI,Kyrgyzstan,Kara-Kulja,,TRUE
+11/19/2017 1:18,35.22076035,-97.44660187,NISSAN,United States,Norman,Oklahoma,TRUE
+10/13/2017 15:29,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+10/26/2017 17:42,34.05350113,-118.2450027,OSHKOSH,United States,Los Angeles,California,FALSE
+9/4/2017 21:32,22.44607925,69.90769959,INFOSYS,India,Sikka,,TRUE
+9/28/2017 23:24,26.12582016,-80.26168823,Apple Computer Inc,United States,Plantation,Florida,FALSE
+8/11/2017 15:48,32.76805878,-117.1663895,UBISOFT,United States,San Diego,California,FALSE
+11/3/2017 21:59,63.44421005,10.91520023,MICROSOFT,Norway,Stj����,,TRUE
+9/18/2017 1:58,30.30636978,-97.75276184,PEOPLE,United States,Austin,Texas,FALSE
+11/7/2017 10:17,21.78660011,82.79476166,HDFC BANK,India,Seor�������,,TRUE
+11/5/2017 1:51,35.62638855,-86.23901367,NISSAN,United States,Plainview,Tennessee,TRUE
+8/21/2017 18:13,41.89839935,12.49559975,LOVEWINS CAMPAIGN,Italy,Rome,,FALSE
+11/24/2017 0:16,38.49808884,-98.32022858,NISSAN,United States,Lyons,Kansas,TRUE
+11/5/2017 1:14,41.95907974,-85.32299805,NISSAN,United States,Lagrange,Michigan,TRUE
+9/20/2017 21:00,50.82881165,-0.134200007,TELSTRA,United Kingdom,Brighton,,TRUE
+7/24/2017 15:17,-33.91666794,18.41666603,MICROSOFT SUPPORT,South Africa,Cape Town,,TRUE
+9/28/2017 8:48,53.86439133,-0.66614002,KELLOGG'S EUROPE,United Kingdom,Market Weighton,,FALSE
+9/11/2017 0:13,27.97579956,-81.5410614,BANK OF AMERICA,United States,Lake Wales,Florida,FALSE
+9/10/2017 3:42,25.2694397,55.30865097,RTA DUBAI,United Arab Emirates,Dubai,,TRUE
+11/7/2017 17:29,52.80408859,-2.121979952,Apple Computer Inc,United Kingdom,Stafford,,TRUE
+11/5/2017 17:07,-25.97929955,28.13426971,ABSA,South Africa,Midrand,,TRUE
+11/19/2017 21:31,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+6/12/2017 18:31,40.71278381,-74.0059433,QATAR AIRWAYS,United States,Byram,New York,FALSE
+11/15/2017 3:10,27.97579956,-81.5410614,SPORTS ILLUSTRATED,United States,Lake Wales,Florida,FALSE
+4/4/2017 18:46,27.6648274,-81.5157535,MATTEL,United States,Avon Park,Florida,FALSE
+11/28/2017 23:22,35.21961975,-80.01954651,POP TARTS,United States,Mount Gilead,North Carolina,TRUE
+9/29/2017 5:18,8.033329964,-77.08329773,PEOPLE,Colombia,Ungia,,TRUE
+11/3/2017 5:45,28.60733032,77.20350647,INDIGO,India,New Delhi,,FALSE
+9/8/2017 13:01,37.2718811,-119.2702332,COTY - CALVIN KLEIN,United States,Auberry,California,TRUE
+10/25/2017 17:09,40.19033051,-82.66947174,T-MOBILE,United States,Granville South,Ohio,FALSE
+11/24/2017 21:41,33.23321152,-87.52111053,SPORTS ILLUSTRATED,United States,Holt,Alabama,FALSE
+10/9/2017 8:00,-6.926730156,107.6885529,HCL,Indonesia,Cileunyi,,TRUE
+11/16/2017 10:00,54.77756882,-1.574749947,TESCO,United Kingdom,Sacriston,,TRUE
+9/17/2017 20:52,42.04973984,-71.88096619,APPLE INC,United States,Dudley,Massachusetts,TRUE
+10/6/2017 15:59,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,TRUE
+9/22/2017 15:32,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+10/21/2017 4:06,38.56789017,-121.4688492,MCCLATCHY,United States,Sacramento,California,FALSE
+11/18/2017 4:42,16.84530067,-99.84381866,NISSAN,Mexico,Colonia Alborada,,FALSE
+11/18/2017 21:33,35.83073044,-85.97873688,NISSAN,United States,Woodbury,Tennessee,TRUE
+10/6/2017 17:09,39.76617813,-86.44104767,NISSAN,United States,Avon,Indiana,TRUE
+7/17/2017 15:11,39.76833344,-86.15805817,HELLO FRESH,United States,Indianapolis,Indiana,TRUE
+10/18/2017 20:54,36.03416061,-95.79486847,NISSAN,United States,Broken Arrow,Oklahoma,TRUE
+4/5/2017 22:38,32.9709834,-96.7071453,CAPITAL ONE,United States,Garland,Texas,FALSE
+11/5/2017 11:55,-23.55945015,-46.65169144,BRITISH AIRWAYS,Brazil,S�����,,TRUE
+11/21/2017 7:00,42.44269943,-76.49839783,VERIZON,United States,Northeast Ithaca,New York,FALSE
+9/10/2017 15:03,50.06007004,19.93259048,Apple Computer Inc,Poland,Krak��,,FALSE
+3/31/2017 2:16,-6.405817032,106.0640183,TELKOMSEL,Indonesia,Turus,,TRUE
+11/1/2017 0:19,37.20436859,-77.39161682,NISSAN,United States,Fort Lee,Virginia,TRUE
+9/30/2017 1:51,-14.24289989,-54.38779831,PEOPLE,Brazil,Poxor��,,TRUE
+11/1/2017 23:06,40.94120026,-75.82060242,NISSAN,United States,Weatherly,Pennsylvania,TRUE
+8/25/2017 17:16,29.55141068,-98.30726624,MOHAWK,United States,Converse,Texas,FALSE
+6/30/2017 14:47,52.13066101,-3.783711672,BRITISH AIRWAYS,United Kingdom,Llandovery,,TRUE
+11/25/2017 6:00,52.41503143,-1.777860045,ALDI,United Kingdom,Solihull,,TRUE
+11/13/2017 16:40,37.1679306,-95.84501648,CIGNA,United States,Independence,Kansas,TRUE
+8/14/2017 23:06,35,136,NISSAN,Japan,Kusatsu,,FALSE
+10/14/2017 21:41,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+5/30/2017 22:36,48.35094833,11.76367569,BOEING,Germany,Hallbergmoos,,FALSE
+6/27/2017 1:49,47.60638809,-122.3308334,FEDEX,United States,Seattle,Washington,FALSE
+10/10/2017 11:54,28.56315994,77.36740875,TIMES OF INDIA,India,Noida,,FALSE
+8/27/2017 8:42,52.24116135,1.054479957,LUFTHANSA,United Kingdom,Stowmarket,,FALSE
+11/2/2017 21:02,40.43130112,-79.98069763,NISSAN,United States,Pittsburgh,Pennsylvania,TRUE
+9/7/2017 13:59,35.30913925,-98.52101898,LOVEWINS CAMPAIGN,United States,Carnegie,Oklahoma,TRUE
+11/15/2017 2:23,38.91973877,-80.18167877,PEOPLE,United States,Point Marion,West Virginia,FALSE
+10/23/2017 16:37,32.44234848,-97.79425812,NISSAN,United States,Granbury,Texas,TRUE
+11/14/2017 21:51,30.9741993,-91.52381897,NISSAN,United States,Saint Francisville,Louisiana,TRUE
+9/3/2017 0:47,37.39532089,-122.0526276,ADIDAS,United States,Sunnyvale,California,TRUE
+7/20/2017 17:40,41.20332336,-77.19452667,MICROSOFT - WINDOWS 10,United States,Williamsport,Pennsylvania,TRUE
+11/4/2017 0:43,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/29/2017 1:22,37.1679306,-95.84501648,MCDONALDS,United States,Independence,Kansas,FALSE
+4/1/2017 2:35,32.9709834,-96.7071453,APPLE INC,United States,Garland,Texas,TRUE
+10/11/2017 4:40,40.78269959,14.38300037,NISSAN,Italy,Torre del Greco,,TRUE
+7/9/2017 18:20,37.77500153,-122.418335,MICROSOFT,United States,San Francisco,California,TRUE
+11/14/2017 3:36,40.19033051,-82.66947174,Apple Computer Inc,United States,Granville South,Ohio,TRUE
+8/21/2017 16:22,45.33644867,-92.9986496,FIAT CHRYSLER,United States,Columbus,Minnesota,TRUE
+11/14/2017 3:52,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/17/2017 14:54,33.62646103,-80.94740295,ADT,United States,Oak Grove,South Carolina,FALSE
+10/17/2017 17:17,33.15048981,-96.8346405,NISSAN,United States,Frisco,Texas,TRUE
+11/5/2017 22:27,-31.98265076,116.0074921,IKEA,Australia,Maida Vale,,TRUE
+11/20/2017 19:15,37.2718811,-119.2702332,PEOPLE,United States,Auberry,California,FALSE
+7/28/2017 11:05,53.79750824,-1.542033553,DEBENHAMS,United Kingdom,Leeds,,FALSE
+10/17/2017 0:11,65.19580078,-141.7913971,NISSAN,United States,Tok,Alaska,TRUE
+9/27/2017 18:43,45.37137985,-75.68534088,CAPITAL ONE,Canada,Ottawa,,TRUE
+11/19/2017 22:09,38.82350159,-75.92381287,NISSAN,United States,Denton,Maryland,TRUE
+10/15/2017 3:49,41.24160004,-77.03849792,NISSAN,United States,Williamsport,Pennsylvania,TRUE
+11/16/2017 8:40,50.82881165,-0.134200007,ORACLE,United Kingdom,Brighton,,FALSE
+7/15/2017 15:23,39.96117401,-82.99879456,Apple Computer Inc,United States,Columbus,Ohio,TRUE
+7/12/2017 18:32,51.53901291,-0.142555296,MARKS AND SPENCER,United Kingdom,Camden Town,,FALSE
+11/26/2017 5:24,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/18/2017 0:34,53.75788879,-2.705719948,LEGO,United Kingdom,Preston,,FALSE
+6/27/2017 11:43,40.77471542,-74.69493103,TESCO,United States,Randolph,New Jersey,FALSE
+7/13/2017 13:05,53.3330574,-6.248888969,ALLIED IRISH BANK,Ireland,Dublin,,FALSE
+7/6/2017 13:57,38,-97,QUEST DIAGNOSTICS,United States,Peabody,Kansas,FALSE
+6/4/2017 4:20,29.70300293,-98.12445068,FEDEX,United States,Geronimo,Texas,TRUE
+9/18/2017 22:07,34.05350113,-118.2450027,PEOPLE,United States,Los Angeles,California,TRUE
+11/27/2017 17:17,36.17147827,-86.78423309,BEST BUY,United States,Nashville,Tennessee,FALSE
+11/8/2017 7:42,54.49956894,-95.49424744,NISSAN,Canada,Thompson,,TRUE
+11/26/2017 21:56,45.49441147,-114.14328,WALMART,United States,Salmon,Idaho,TRUE
+9/15/2017 5:56,-37.86579895,145.102829,PEOPLE,Australia,Ashwood,,FALSE
+11/20/2017 23:51,40.57117081,-7.890019894,NISSAN,Portugal,Nelas,,FALSE
+10/16/2017 19:17,37.80508041,-122.2730713,Apple Computer Inc,United States,Oakland,California,TRUE
+8/6/2017 9:15,51.47284698,-0.493024826,BRITISH AIRWAYS,United Kingdom,Iver,,FALSE
+9/3/2017 17:31,29.77541924,-95.38188934,KROGER,United States,Houston,Texas,TRUE
+10/9/2017 23:10,49.86925125,-119.4333115,MCDONALDS,Canada,Kelowna,,FALSE
+11/23/2017 1:45,34.05350113,-118.2450027,MCCLATCHY,United States,Los Angeles,California,FALSE
+7/24/2017 13:40,51.50735092,-0.127758294,MICROSOFT SUPPORT,United Kingdom,London,,TRUE
+7/4/2017 4:00,-37.81362915,144.9630585,TELSTRA,Australia,Melbourne,,FALSE
+6/9/2017 7:00,18.97500038,72.82583618,DELOITTE,India,Mumbai,,FALSE
+10/27/2017 0:46,-24.91209984,133.397995,EMIRATES,Australia,Alice Springs,,TRUE
+8/16/2017 7:21,51.50640106,-0.127210006,MARKS AND SPENCER,United Kingdom,London,,TRUE
+10/15/2017 16:17,35.39168167,-97.7245636,NISSAN,United States,Mustang,Oklahoma,TRUE
+10/11/2017 21:04,51.50640106,-0.127210006,Apple Computer Inc,United Kingdom,London,,TRUE
+8/25/2017 18:48,27.97579956,-81.5410614,HENKEL PERSIL,United States,Lake Wales,Florida,FALSE
+7/2/2017 3:14,9.06667,7.48333,AMERICAN AIRLINES,Nigeria,Abuja,,TRUE
+11/2/2017 10:59,40.03139877,-75.31539917,AMERICAN AIRLINES,United States,West Conshohocken,Pennsylvania,TRUE
+11/21/2017 18:27,43.00259018,-83.7826004,NISSAN,United States,Barnes Lake-Millers Lake,Michigan,TRUE
+9/30/2017 10:46,-4.88117981,104.5896912,TELKOMSEL,Indonesia,Bukitkemuning,,TRUE
+10/10/2017 15:50,22.12097931,-105.2074432,AHOLD,Mexico,Rosamorada,,FALSE
+8/28/2017 20:14,40.71455002,-74.00711823,TCS,United States,Byram,New Jersey,TRUE
+11/5/2017 19:25,55.95415115,-3.202769995,ALDI,United Kingdom,Seafield,,FALSE
+11/27/2017 13:38,43.74269867,-84.62167358,IKEA,United States,Barnes Lake-Millers Lake,Michigan,FALSE
+11/6/2017 0:06,-6.162879944,106.8592606,TELKOMSEL,Indonesia,Jakarta,,FALSE
+5/11/2017 23:09,42.4072113,-71.38243866,SEPHORA,United States,Sudbury,Massachusetts,FALSE
+11/3/2017 18:26,24.58419991,73.71021271,TIMES OF INDIA,India,Udaipur,,TRUE
+10/15/2017 20:29,40.19033051,-82.66947174,GUCCI,United States,Granville South,Ohio,FALSE
+8/17/2017 1:58,52.88356018,-1.974060059,UBISOFT,United Kingdom,Cheadle,,TRUE
+9/1/2017 18:21,40.42142868,-3.671629906,LIDL,Spain,Salamanca,,TRUE
+11/5/2017 16:34,37.33860016,-121.8860016,@AT&T,United States,San Jose,California,TRUE
+6/3/2017 19:25,34.05222321,-118.242775,ERNST & YOUNG,United States,Los Angeles,California,TRUE
+10/13/2017 11:28,47.38426971,8.529589653,TELKOMSEL,Switzerland,Z������������ri,,FALSE
+11/5/2017 6:08,21.78660011,82.79476166,INDIGO,India,Seor�������,,FALSE
+10/6/2017 15:38,28.60733032,77.20350647,JET AIRWAYS ,India,New Delhi,,FALSE
+6/23/2017 20:37,40.71416855,-74.0063858,Apple Computer Inc,United States,Byram,New Jersey,TRUE
+9/29/2017 18:58,39.38008118,-74.45278931,BEST BUY,United States,Atlantic City,New Jersey,FALSE
+10/30/2017 22:45,37.74739838,-122.4392166,MICROSOFT - WINDOWS 10,United States,San Francisco,California,TRUE
+6/6/2017 16:02,38.83388138,-104.8213654,T-MOBILE,United States,Colorado Springs,Colorado,FALSE
+7/5/2017 23:18,42.88644791,-78.87837219,MCDONALDS,Canada,Fort Erie,,TRUE
+11/17/2017 14:11,35.83073044,-85.97873688,THE HOME DEPOT,United States,Woodbury,Tennessee,TRUE
+10/27/2017 4:30,43.11891937,-123.4224014,MCCLATCHY,United States,Winston,Oregon,FALSE
+11/19/2017 5:47,-33.85628128,151.0209656,SINGTEL OPTUS,Australia,Lidcombe,,FALSE
+11/1/2017 19:48,42.35863113,-71.05670166,LEGO,United States,Boston,Massachusetts,FALSE
+4/9/2017 20:01,36.77825928,-119.4179306,LEGO,United States,Minkler,California,FALSE
+6/25/2017 0:31,51.31677246,-0.560034871,BRITISH AIRWAYS,United Kingdom,Woking,,FALSE
+10/25/2017 19:28,43.64855957,-79.38536835,DIAL,Canada,Toronto,,TRUE
+9/17/2017 15:20,13.05939007,80.2456665,TIMES OF INDIA,India,Chetput,,TRUE
+10/16/2017 15:43,35.00115967,-78.33235931,NISSAN,United States,Clinton,North Carolina,FALSE
+10/16/2017 16:03,54.9452095,-1.588269949,NISSAN,United Kingdom,Lamesley,,TRUE
+10/5/2017 13:13,42.7984581,-83.62323761,UBISOFT,United States,West Bloomfield Township,Michigan,FALSE
+10/16/2017 18:28,30.16601944,-96.39997864,MICROSOFT - WINDOWS 10,United States,Brenham,Texas,TRUE
+10/16/2017 17:57,51.19723892,-1.81348002,MARKS AND SPENCER,United Kingdom,Amesbury,,TRUE
+11/21/2017 0:35,40.42142868,-3.671629906,NISSAN,Spain,Salamanca,,FALSE
+9/19/2017 15:17,37.74739838,-122.4392166,APPLE INC,United States,San Francisco,California,FALSE
+11/7/2017 16:13,45.43955994,-122.5129089,NISSAN,United States,Happy Valley,Oregon,TRUE
+7/19/2017 15:21,18.97500038,72.82583618,H&M,India,Mumbai,,TRUE
+8/26/2017 16:13,52.41503143,-1.777860045,ALDI,United Kingdom,Solihull,,TRUE
+10/16/2017 17:44,45.37137985,-75.68534088,LOBLAWS,Canada,Ottawa,,FALSE
+4/24/2017 16:07,37.83933258,-84.27001953,APPLE INC,United States,Richmond,Kentucky,TRUE
+6/9/2017 16:18,51.48158264,-3.179090023,MICROSOFT - WINDOWS 10,United Kingdom,Cardiff,,TRUE
+7/11/2017 14:27,53.40837097,-2.991572618,EMIRATES,United Kingdom,Liverpool,,FALSE
+6/6/2017 15:09,39.75592804,-77.57776642,T-MOBILE,United States,Waynesboro,Pennsylvania,TRUE
+7/3/2017 11:31,53.94825745,-0.875163078,TESCO,United Kingdom,Wilberfoss,,TRUE
+9/2/2017 13:03,54.9452095,-1.588269949,ALDI,United Kingdom,Lamesley,,FALSE
+6/6/2017 5:37,39.09972382,-94.57833099,APPLE INC,United States,Kansas City,Missouri,FALSE
+10/23/2017 15:51,43.54534912,-96.73127747,INFOSYS,United States,Sioux Falls,South Dakota,TRUE
+4/27/2017 14:27,37.4315734,-78.6568942,MUNICH RE,United States,Woodlake,Virginia,FALSE
+6/2/2017 17:32,51.5,-0.116667002,BRITISH AIRWAYS,United Kingdom,City of Westminster,,FALSE
+8/6/2017 2:58,29.74864197,-95.50045776,KROGER,United States,Hunters Creek Village,Texas,TRUE
+9/20/2017 16:44,4.116409779,-72.95852661,APPLE INC,Colombia,Puerto L����,,FALSE
+10/30/2017 8:15,54.31407166,-2.230010033,COLGATE,United Kingdom,Kirkby Stephen,,FALSE
+11/13/2017 14:36,-24.91209984,133.397995,NISSAN,Australia,Alice Springs,,TRUE
+11/23/2017 18:48,-35.70521927,-71.34108734,NISSAN,Chile,Colb��,,FALSE
+10/14/2017 17:55,43.03519821,-76.13929749,APPLE INC,United States,Cortland West,New York,FALSE
+11/18/2017 1:29,32.78182983,-96.79586029,NISSAN,United States,Dallas,Texas,TRUE
+7/9/2017 0:04,51.5,-0.116667002,MARKS AND SPENCER,United Kingdom,City of Westminster,,TRUE
+11/19/2017 20:24,34.43193817,-117.834198,NISSAN,United States,Littlerock,California,TRUE
+8/17/2017 16:28,30.06142044,-95.38313293,APPLE INC,United States,Aldine,Texas,TRUE
+10/6/2017 11:17,37.1679306,-95.84501648,MICROSOFT - WINDOWS 10,United States,Independence,Kansas,TRUE
+9/17/2017 4:29,46.44231033,-93.36585999,SPORTS ILLUSTRATED,United States,Grantsburg,Minnesota,TRUE
+11/26/2017 0:33,27.97579956,-81.5410614,BEST BUY,United States,Lake Wales,Florida,FALSE
+11/7/2017 13:04,13.69997025,-2.144840002,NISSAN,Burkina Faso,Titao,,TRUE
+10/15/2017 18:41,40.65507126,-73.94888306,BEST BUY,United States,Byram,New York,TRUE
+10/23/2017 13:35,-6.30174017,107.2797775,TELKOMSEL,Indonesia,Cikarang,,FALSE
+9/19/2017 16:42,50.44332123,-4.939859867,SHELL,United Kingdom,Saint Columb Major,,TRUE
+10/14/2017 13:34,37.18112946,-78.13024902,NISSAN,United States,Woodlake,Virginia,TRUE
+9/10/2017 17:48,35.22076035,-97.44660187,NISSAN,United States,Norman,Oklahoma,TRUE
+9/25/2017 18:26,37.80508041,-122.2730713,APPLE INC,United States,Oakland,California,FALSE
+9/12/2017 17:40,-21.1679306,-175.1959991,NOKIA,Tonga,Haveluloto,,TRUE
+10/31/2017 8:39,28.60733032,77.20350647,STANDARD BANK,India,New Delhi,,TRUE
+8/30/2017 22:31,42.35863113,-71.05670166,T-MOBILE,United States,Boston,Massachusetts,TRUE
+8/27/2017 19:44,51.46012878,0.138080001,LIDL,United Kingdom,Bexleyheath,,TRUE
+10/9/2017 20:36,31.16889954,-100.0771484,NISSAN,United States,Eden,Texas,TRUE
+6/6/2017 18:08,37.167931,-95.845016,SHELL,United States,Independence,Kansas,FALSE
+11/9/2017 10:38,28.60733032,77.20350647,PVR,India,New Delhi,,TRUE
+11/20/2017 23:56,33.40126038,-86.1489563,PEOPLE,United States,Talladega,Alabama,FALSE
+11/22/2017 22:17,56.68072128,-5.867489815,APPLE INC,United Kingdom,Isle Of Mull,,FALSE
+8/16/2017 7:34,52.373119,4.89319,LUFTHANSA,Netherlands,Amsterdam,,TRUE
+6/30/2017 0:57,-33.86882019,151.2092896,SINGTEL OPTUS,Australia,Sydney,,TRUE
+10/18/2017 14:30,19.43190002,-99.13289642,NISSAN,Mexico,Mexico City,,TRUE
+11/9/2017 21:36,37.53665924,-122.0300369,PEOPLE,United States,Newark,California,FALSE
+8/29/2017 18:30,33.91690063,-118.4017029,T-MOBILE,United States,El Segundo,California,TRUE
+11/21/2017 16:13,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+6/6/2017 2:11,40.1244812,-87.63002014,DISH NETWORK,United States,Danville,Illinois,FALSE
+10/16/2017 0:45,52.51607132,13.37697983,Apple Computer Inc,Germany,Tiergarten,,TRUE
+7/17/2017 14:50,53.17551,-8.15203,MARKS AND SPENCER,Ireland,Portumna,,FALSE
+9/28/2017 19:27,-6.926730156,107.6885529,@AT&T,Indonesia,Cileunyi,,TRUE
+7/17/2017 17:14,44.97775269,-93.26500702,COTY - CALVIN KLEIN,United States,Columbus,Minnesota,TRUE
+10/13/2017 0:03,40.71455002,-74.00711823,APPLE INC,United States,Byram,New Jersey,FALSE
+11/8/2017 1:00,32.1568985,-110.877121,NISSAN,United States,Tucson,Arizona,TRUE
+10/18/2017 15:05,51.50640106,-0.127210006,THOMAS COOK GROUP,United Kingdom,London,,TRUE
+7/20/2017 16:27,40.71416855,-74.0063858,AMERICAN AIRLINES,United States,Byram,New Jersey,TRUE
+10/13/2017 0:09,-8.101900101,112.1386108,TELKOMSEL,Indonesia,Blitar,,FALSE
+11/22/2017 0:39,39.76617813,-86.44104767,NISSAN,United States,Avon,Indiana,TRUE
+5/7/2017 9:15,48.84991837,2.637041092,APPLE INC,France,Noisiel,,FALSE
+10/16/2017 18:50,40.31380081,-79.54920197,NISSAN,United States,Southwest Greensburg,Pennsylvania,TRUE
+8/16/2016 9:16,-26.2707593,28.1122679,GSK,South Africa,Germiston,,FALSE
+9/22/2017 6:16,-37.10565948,144.053894,TELSTRA,Australia,Castlemaine,,FALSE
+11/6/2017 15:48,38.62770081,-90.19950104,NISSAN,United States,St. Louis,Missouri,FALSE
+5/19/2017 21:43,48.84991837,2.637041092,LVMH,France,Noisiel,,FALSE
+9/20/2017 11:32,-27.4794693,-58.80179977,LONDON DAIRY,Argentina,Corrientes,,FALSE
+11/23/2017 13:49,54.63650894,-6.812860012,AVIVA,United Kingdom,Coalisland,,TRUE
+9/27/2017 18:54,18.53610992,73.85218048,Apple Computer Inc,India,Shivaji Nagar,,TRUE
+10/12/2017 13:48,49.25027084,4.037250042,MICROSOFT - WINDOWS 10,France,Reims,,TRUE
+11/26/2017 0:15,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+11/19/2017 16:08,33.1658783,-117.3382187,NISSAN,United States,Carlsbad,California,TRUE
+9/8/2017 18:06,-1.270200014,36.80413818,ADIDAS,Kenya,Nairobi,,TRUE
+4/7/2017 16:11,34.0489281,-111.0937311,KONAMI,United States,Star Valley,Arizona,FALSE
+10/13/2017 21:52,39.94525146,-75.119133,EXXON MOBIL,United States,Camden,New Jersey,FALSE
+4/9/2017 6:13,45.25378418,-69.44546509,UBISOFT,United States,Carmel,Maine,FALSE
+10/5/2017 22:46,34.05350113,-118.2450027,MCDONALDS,United States,Los Angeles,California,FALSE
+6/25/2017 6:59,46.1512413,14.99546337,H&M,Slovenia,Zagorje ob Savi,,FALSE
+11/28/2017 3:09,40.19033051,-82.66947174,MCDONALDS,United States,Granville South,Ohio,FALSE
+6/11/2017 13:09,31.96859932,-99.90180969,BANK OF AMERICA,United States,Ballinger,Texas,TRUE
+9/10/2017 0:12,53.24285889,-1.435330033,TESCO,United Kingdom,Chesterfield,,TRUE
+6/30/2017 21:18,-35.17082214,139.3280487,TELSTRA,Australia,Murray Bridge,,TRUE
+10/6/2017 7:23,42.14799881,-77.05290222,NISSAN,United States,Horseheads North,New York,TRUE
+4/13/2017 16:37,56.49067307,-4.202645779,TESCO,United Kingdom,Callander,,TRUE
+11/20/2017 0:37,44.23289108,-68.32128906,NISSAN,United States,Carmel,Maine,TRUE
+9/30/2017 17:56,41.33660126,-8.558279991,NISSAN,Portugal,Bougado,,TRUE
+10/14/2017 15:35,29.46071053,-98.52160645,T-MOBILE,United States,Balcones Heights,Texas,FALSE
+10/31/2017 21:39,52.84619904,-0.839269996,ROYAL BANK OF SCOTLAND,United Kingdom,Melton Mowbray,,TRUE
+9/25/2017 2:21,-37.86579895,145.102829,WOOLWORTHS,Australia,Ashwood,,FALSE
+9/12/2017 20:51,-1.270200014,36.80413818,APPLE INC,Kenya,Nairobi,,TRUE
+9/1/2017 9:12,6.439179897,3.423480034,PEAKMILK,Nigeria,Lagos,,TRUE
+11/25/2017 15:04,55.010849,-1.447999954,TESCO,United Kingdom,North Shields,,FALSE
+11/5/2017 4:02,41.74943161,-87.91951752,NISSAN,United States,Burr Ridge,Illinois,TRUE
+11/2/2017 11:30,-27.03060913,-65.32029724,AIR ASIA,Argentina,Bella Vista,,FALSE
+10/12/2017 9:47,40.32939148,-8.314740181,NISSAN,Portugal,Penacova,,TRUE
+9/22/2017 14:18,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,TRUE
+9/30/2017 11:24,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,TRUE
+8/18/2017 13:06,40.71455002,-74.00711823,NOKIA,United States,Byram,New Jersey,FALSE
+11/17/2017 21:16,29.20356941,-81.03939819,NISSAN,United States,Daytona Beach,Florida,TRUE
+6/6/2017 16:48,32.7356,-97.107719,WALMART,United States,Arlington,Texas,TRUE
+10/31/2017 20:51,49.24729919,-123.1069107,STANDARD BANK,Canada,Vancouver,,FALSE
+11/21/2017 14:15,40.19033051,-82.66947174,NISSAN,United States,Granville South,Ohio,TRUE
+11/2/2017 19:45,52.37311935,4.893189907,POSTNL,Netherlands,Amsterdam,,TRUE
+4/13/2017 11:14,-30.0002315,136.2091547,IAG,Australia,Roxby Downs,,FALSE
+11/15/2017 11:54,34.21472168,-80.97373962,NISSAN,United States,Blythewood,South Carolina,TRUE
+11/3/2017 23:06,40.7038002,-73.8316803,APPLE INC,United States,Byram,New York,FALSE
+8/31/2017 15:31,38.0033493,-79.77127075,MICROSOFT SUPPORT,United States,Mountain Lake Park,Virginia,TRUE
+11/27/2017 7:12,-33.85628128,151.0209656,TELSTRA,Australia,Lidcombe,,FALSE
+10/31/2017 15:15,41.35483933,-72.07073975,NISSAN,United States,Conning Towers-Nautilus Park,Connecticut,FALSE
+10/13/2017 14:00,26.16017914,-97.98786926,NISSAN,United States,Donna,Texas,TRUE
+7/14/2017 11:42,-33.86882019,151.2092896,BRITISH AIRWAYS,Australia,Sydney,,TRUE
+9/13/2017 7:34,50.82881165,-0.134200007,APPLE INC,United Kingdom,Brighton,,TRUE
+5/13/2017 2:34,40.71278381,-74.0059433,EA - FIFA,United States,Byram,New York,FALSE
+9/27/2017 9:48,53.44229889,-2.233409882,TESCO,United Kingdom,Fallowfield,,FALSE
+10/5/2017 11:41,17.41840935,78.45001221,INDIGO,India,Hyderabad,,TRUE
+10/3/2017 19:15,19.09028053,72.87136841,INDIGO,India,Mumbai,,TRUE
+11/21/2017 8:14,-6.256080151,106.8089981,TELKOMSEL,Indonesia,Jakarta,,FALSE
+8/23/2017 5:08,41.14149857,-73.35849762,ADIDAS,United States,Westport,Connecticut,FALSE
+7/1/2017 8:53,51.5,-0.116667002,MARKS AND SPENCER,United Kingdom,City of Westminster,,TRUE
+8/26/2017 7:50,51.47771835,-0.201450005,LIDL,United Kingdom,Wandsworth,,TRUE
+4/2/2017 12:30,37.4315734,-78.6568942,EA - MASS EFFECT,United States,Woodlake,Virginia,FALSE
+11/6/2017 16:13,35.33826065,-97.48561096,NISSAN,United States,Moore,Oklahoma,TRUE
+11/4/2017 13:08,35.92744827,-79.03926086,NISSAN,United States,Chapel Hill,North Carolina,TRUE
+9/14/2017 10:41,23.0308094,72.5917511,TIMES OF INDIA,India,Ahmedabad,,FALSE
+10/13/2017 16:01,44.84947968,-0.57652998,LACOSTE,France,Bordeaux,,FALSE
+10/27/2017 8:33,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+9/13/2017 0:56,34.07857132,-118.4021301,APPLE INC,United States,Beverly Hills,California,FALSE
+10/14/2017 0:47,31.43997002,-100.4519577,NISSAN,United States,San Angelo,Texas,TRUE
+11/29/2017 6:01,39.73926163,-89.50408936,POP TARTS,United States,Rochester,Illinois,TRUE
+8/23/2017 23:02,36.24861908,-84.17127228,VERIZON,United States,Lake City,Tennessee,FALSE
+11/17/2017 10:15,50.90996933,-1.407089949,MARKS AND SPENCER,United Kingdom,Southampton,,FALSE
+11/23/2017 20:32,34.16611862,-106.026123,JC PENNEY,United States,Carrizozo,New Mexico,FALSE
+9/13/2017 17:18,40.43130112,-79.98069763,Apple Computer Inc,United States,Pittsburgh,Pennsylvania,TRUE
+11/27/2017 1:01,35.21961975,-80.01954651,NISSAN,United States,Mount Gilead,North Carolina,TRUE
+5/26/2017 14:53,51.25377655,-85.32321167,CAPITAL ONE,Canada,Hornepayne,,FALSE
+9/28/2017 19:12,37.1679306,-95.84501648,BOEING,United States,Independence,Kansas,FALSE
+8/13/2017 13:31,51.28738022,6.780280113,EURO WINGS,Germany,D������,,TRUE
+9/8/2017 22:26,12.97754002,77.59951019,INFOSYS,India,Bangalore,,TRUE
+11/24/2017 0:20,32.90808105,-96.63062286,NISSAN,United States,Garland,Texas,TRUE
+8/20/2017 13:48,51.75629044,-1.25951004,TESCO,United Kingdom,Oxford,,FALSE
+11/15/2017 13:43,37.1679306,-95.84501648,PEOPLE,United States,Independence,Kansas,FALSE
+9/14/2017 23:17,37.2718811,-119.2702332,PEOPLE,United States,Auberry,California,TRUE
+5/17/2017 8:08,52.35551834,-1.174319744,TESCO,United Kingdom,Rugby,,FALSE
+10/16/2017 15:44,45.53207016,-94.17552948,NISSAN,United States,Nowthen,Minnesota,FALSE
+11/17/2017 11:56,53.60890961,7.988170147,TESCO,Germany,Sillenstede,,TRUE
+6/29/2017 13:05,52.9808197,-6.044589043,H&M,Ireland,Wicklow,,TRUE
+11/24/2017 16:20,42.74489975,-73.67790222,NISSAN,United States,North Ballston Spa,New York,TRUE
+11/20/2017 13:27,39.23917007,-94.41876984,NISSAN,United States,Liberty,Missouri,TRUE
+6/23/2017 23:00,37.22323227,-81.44987488,AMERICAN AIRLINES,United States,Sparta,Virginia,TRUE
+10/4/2017 19:05,45.85602188,11.8822403,HEALTHNET,Italy,Possagno,,TRUE
+7/21/2017 10:39,26.24904251,-80.08580017,H&M,United States,Lighthouse Point,Florida,TRUE
+11/24/2017 2:46,41.5047493,-81.6907196,NISSAN,United States,Montrose-Ghent,Ohio,TRUE
+10/12/2017 0:59,52.88356018,-1.974060059,EMIRATES,United Kingdom,Cheadle,,FALSE
+8/28/2017 16:57,38.82350159,-75.92381287,FEDEX,United States,Denton,Maryland,TRUE
+6/17/2017 0:52,40.71416855,-74.0063858,AMERICAN AIRLINES,United States,Byram,New Jersey,FALSE
+9/17/2017 18:13,-6.926730156,107.6885529,AMERICAN AIRLINES,Indonesia,Cileunyi,,TRUE
+9/9/2017 9:09,51.76269913,-2.039390087,APPLE INC,United Kingdom,Coates,,TRUE
+11/22/2017 6:28,25.2694397,55.30865097,TIMES OF INDIA,United Arab Emirates,Dubai,,TRUE
+10/10/2017 22:27,32.00059128,-102.0744476,NISSAN,United States,Midland,Texas,TRUE
+9/4/2017 3:00,33.6413002,-84.45010376,ADIDAS,United States,College Park,Georgia,FALSE
+10/18/2017 0:41,21.78660011,82.79476166,JET AIRWAYS,India,Seor�������,,FALSE
+5/12/2017 0:56,32.9709834,-96.7071453,MEDIA SATURN,United States,Garland,Texas,FALSE
+10/13/2017 19:15,26.16061974,-80.22429657,SPORTS ILLUSTRATED,United States,Lauderdale Lakes,Florida,FALSE
+10/23/2017 15:25,-6.971419811,110.425499,TELKOMSEL,Indonesia,Semarang,,FALSE
+8/20/2017 0:41,51.50640106,-0.127210006,NIKE,United Kingdom,London,,TRUE
+4/2/2017 22:51,32.9709834,-96.7071453,ARAMCO,United States,Garland,Texas,FALSE
+7/13/2017 13:01,28.45949745,77.02664185,AFLAC,India,Gurgaon,,TRUE
+6/6/2017 7:46,53.37238693,-3.184294701,APPLE INC,United Kingdom,West Kirby,,TRUE
+11/20/2017 21:19,27.97579956,-81.5410614,NISSAN,United States,Lake Wales,Florida,TRUE
+8/30/2017 22:44,32.78182983,-96.79586029,SEPHORA,United States,Dallas,Texas,TRUE
+8/20/2017 6:42,22.71998978,75.87406921,NIKE,India,Indore,,TRUE
+10/31/2017 13:23,26.1415596,-80.14636993,T-MOBILE,United States,Fort Lauderdale,Florida,FALSE
+10/11/2017 19:11,42.22875977,-71.52037048,DELL EMC,United States,Hopkinton,Massachusetts,FALSE
+11/1/2017 7:20,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+11/4/2017 4:59,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,FALSE
+10/31/2017 0:23,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/9/2017 17:07,53.44229889,-2.233409882,UNITED UTILITIES,United Kingdom,Fallowfield,,TRUE
+8/29/2017 13:47,28.46692085,77.04379272,CITIBANK,India,Gurgaon,,TRUE
+10/31/2017 7:59,28.47366905,77.51386261,TIMES OF INDIA,India,Greater Noida,,TRUE
+7/23/2017 14:49,52.55566025,13.2963047,BRITISH AIRWAYS,Germany,Tegel,,FALSE
+11/28/2017 17:36,52.65235138,-2.734260082,TESCO,United Kingdom,Berrington,,TRUE
+4/4/2017 15:56,36.77825928,-119.4179306,SYMANTEC,United States,Minkler,California,FALSE
+10/6/2017 0:12,15.77624989,-90.23230743,Apple Computer Inc,Guatemala,Chisec,,TRUE
+8/18/2017 14:27,36.1257782,-95.91430664,AMERICAN AIRLINES,United States,Tulsa,Oklahoma,FALSE
+11/22/2017 13:17,44.75473022,-85.6035614,AMERICAN AIRLINES,United States,Sturgeon Bay,Michigan,TRUE
+11/14/2017 14:54,39.98913956,-82.98532867,NISSAN,United States,Columbus,Ohio,TRUE
+10/24/2017 3:33,51.52238846,-0.72724998,DROPBOX,United Kingdom,Maidenhead,,FALSE
+9/25/2017 5:08,28.60733032,77.20350647,JET AIRWAYS ,India,New Delhi,,FALSE
+10/5/2017 8:16,28.60733032,77.20350647,JET AIRWAYS ,India,New Delhi,,FALSE
+8/10/2017 9:37,32.76805878,-117.1663895,UBISOFT,United States,San Diego,California,TRUE
+10/1/2017 4:10,39.14126968,-84.50518799,SPORTS ILLUSTRATED,United States,Saint Bernard,Ohio,TRUE
+9/10/2017 13:21,44.84947968,-0.57652998,UBISOFT,France,Bordeaux,,FALSE
+7/12/2017 8:36,35.98126221,-115.0980377,AFLAC,United States,Whitney,Nevada,TRUE
+11/3/2017 16:54,-6.437839985,105.9946213,TELKOMSEL,Indonesia,Jasugih Selatan,,FALSE
+10/27/2017 11:48,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+9/11/2017 4:30,28.60733032,77.20350647,UTC,India,New Delhi,,TRUE
+5/16/2017 17:30,32.51964,-83.5603112,AIRBUS,United States,Robins Air Force Base,Georgia,FALSE
+6/24/2017 18:11,38.58907318,-121.3027267,THE HOME DEPOT,United States,Rancho Cordova,California,FALSE
+11/6/2017 22:22,41.90924072,-70.88349915,NISSAN,United States,Middleborough Center,Massachusetts,TRUE
+10/10/2017 6:11,8.090410233,77.54798126,TIMES OF INDIA,India,Kanniy�����,,FALSE
+11/14/2017 15:25,40.93862915,40.27378845,CAPITAL ONE,Turkey,Of,,FALSE
+10/15/2017 21:09,43.64855957,-79.38536835,STANDARD BANK,Canada,Toronto,,TRUE
+7/20/2017 2:30,42.418709,-71.163933,APPLE INC,United States,Arlington,Massachusetts,TRUE
+9/17/2017 17:56,41.88415146,-87.63240814,SPORTS ILLUSTRATED,United States,Chicago,Illinois,TRUE
+8/16/2017 20:54,53.430538,-2.94747,WIPRO,United Kingdom,Liverpool,,TRUE
+6/2/2017 20:59,39.04575348,-76.6412735,T-MOBILE,United States,Gambrills,Maryland,TRUE
+11/23/2017 22:24,34.75189972,-92.13054657,VERIZON,United States,McAlmont,Arkansas,TRUE
+8/26/2017 14:12,-6.723720074,108.544632,TELKOMSEL,Indonesia,Cirebon,,FALSE
+8/15/2017 16:27,33.79782104,-118.166832,UBISOFT,United States,Signal Hill,California,FALSE
+8/19/2017 0:55,-34.91807175,138.5982361,TELSTRA,Australia,Adelaide,,TRUE
+6/23/2017 14:14,51.58242416,-0.099660002,LLOYDS TSB BANK PLC,United Kingdom,Harringay,,TRUE
+9/2/2017 23:19,51.50640106,-0.127210006,SMIRNOFF,United Kingdom,London,,TRUE
+11/22/2017 10:52,40.42142868,-3.671629906,LEGO,Spain,Salamanca,,FALSE
+11/15/2017 6:05,34.00577927,-84.14881134,LOVEWINS CAMPAIGN,United States,Duluth,Georgia,FALSE
+11/23/2017 19:46,51.16445923,4.141499996,IKEA,Belgium,Sint-Niklaas,,TRUE
+9/16/2017 0:51,32.78182983,-96.79586029,T-MOBILE,United States,Dallas,Texas,TRUE
+6/3/2017 2:07,41.20332336,-77.19452667,SEPHORA,United States,Williamsport,Pennsylvania,TRUE
+11/26/2017 14:44,-7.800000191,110.3666992,TELKOMSEL,Indonesia,Yogyakarta,,FALSE
+4/12/2017 19:34,52.35551834,-1.174319744,THAMES WATER,United Kingdom,Rugby,,FALSE
+11/4/2017 7:41,48.57093048,7.757880211,NISSAN,France,Strasbourg,,FALSE
+11/7/2017 15:33,40.71455002,-74.00711823,PHILIPS,United States,Byram,New Jersey,FALSE
+7/22/2017 15:16,29.97042084,31.01868248,MAJID AL FUTTAIM GROUP,Egypt,Mad����������,,FALSE
+5/27/2017 0:51,40.63312531,-89.39852905,BEST BUY,United States,Morton,Illinois,FALSE
+7/27/2017 16:23,40.77954483,-74.02375031,THE HOME DEPOT,United States,Byram,New Jersey,TRUE
+7/1/2017 20:53,45.52306366,-122.6764832,MICROSOFT - WINDOWS 10,United States,Portland,Oregon,TRUE
+7/31/2017 14:21,39.85229492,-74.88579559,TESCO,United States,Marlton,New Jersey,FALSE
+11/6/2017 15:48,35.66918182,-80.47934723,NISSAN,United States,Salisbury,North Carolina,FALSE
+11/27/2017 8:19,37.1679306,-95.84501648,UBS,United States,Independence,Kansas,TRUE
+9/19/2017 2:17,31.16889954,-100.0771484,MCDONALDS,United States,Eden,Texas,TRUE
+9/25/2017 7:45,38.90475845,-77.01625061,APPLE INC,United States,"Washington, D. C.",Maryland,FALSE
+8/12/2017 14:00,40.88003922,40.28671265,TURKCELL,Turkey,Of,,TRUE
+11/6/2017 0:22,35.22076035,-97.44660187,NISSAN,United States,Norman,Oklahoma,TRUE
+11/27/2017 10:08,19.09028053,72.87136841,JET AIRWAYS,India,Mumbai,,FALSE
+9/16/2017 17:05,35.60520172,-77.38236237,ARAMARK,United States,Greenville,North Carolina,FALSE
+6/6/2017 18:08,30.086149,-94.101578,T-MOBILE,United States,Beaumont,Texas,TRUE
+9/7/2017 0:20,37.74739838,-122.4392166,J CREW,United States,San Francisco,California,FALSE
+10/12/2017 14:18,43.35879135,-79.80317688,BOEING,Canada,Burlington,,TRUE
+8/27/2017 21:05,33.76319122,-84.42305756,NISSAN,United States,Atlanta,Georgia,TRUE
+6/22/2017 11:45,40.71278381,-74.0059433,MORGAN STANLEY,United States,Byram,New York,FALSE
+11/22/2017 16:00,29.46071053,-98.52160645,@AT&T,United States,Balcones Heights,Texas,FALSE
+6/25/2017 10:34,44.80148315,10.32790375,MICROSOFT - WINDOWS 10,Italy,Parma,,FALSE
+8/20/2017 14:37,51.50640106,-0.127210006,ALDI,United Kingdom,London,,TRUE
+11/23/2017 18:19,46.8132019,8.223950386,COOP SWITZERLAND,Switzerland,Giswil,,FALSE
+10/7/2017 0:57,18.98605919,-72.29225922,NISSAN,Haiti,D�����,,TRUE
+10/25/2017 15:32,52.45920181,5.035930157,POSTNL,Netherlands,Monnickendam,,FALSE
+11/28/2017 0:37,48.85692978,2.341200113,NISSAN,France,Paris,,FALSE
+11/14/2017 3:41,40.71455002,-74.00711823,Apple Computer Inc,United States,Byram,New Jersey,FALSE
+10/18/2017 21:52,53.7947998,-1.546530008,LEGO,United Kingdom,Leeds,,FALSE
+5/4/2017 21:36,32.9709834,-96.7071453,MCDONALDS,United States,Garland,Texas,TRUE
+9/16/2017 10:57,52.45425034,-2.147809982,ALDI,United Kingdom,Stourbridge,,FALSE
+6/16/2017 17:25,38.62700272,-90.19940186,Apple Computer Inc,United States,St. Louis,Missouri,FALSE
+11/23/2017 23:43,44.74557114,-93.20063019,NISSAN,United States,Elko New Market,Minnesota,TRUE
+7/13/2017 19:15,56.46201706,-2.970721006,BRITISH AIRWAYS,United Kingdom,Newport-On-Tay,,FALSE
+11/13/2017 14:14,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+9/8/2017 20:30,34.05350113,-118.2450027,VERIZON,United States,Los Angeles,California,TRUE
+9/29/2017 7:36,52.41503143,-1.777860045,TESCO,United Kingdom,Solihull,,TRUE
+8/13/2017 20:02,54.498569,-114.999931,UBISOFT,Canada,Swan Hills,,TRUE
+10/4/2017 0:48,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+11/7/2017 4:29,43.00690079,-88.24127197,NISSAN,United States,Waukesha,Wisconsin,TRUE
+5/1/2017 21:46,47.25374222,11.60148716,APPLE INC,Austria,Wattens,,FALSE
+11/21/2017 22:30,-33.85628128,151.0209656,SINGTEL OPTUS,Australia,Lidcombe,,TRUE
+11/6/2017 17:20,40.43130112,-79.98069763,NISSAN,United States,Pittsburgh,Pennsylvania,TRUE
+11/27/2017 0:18,53.7947998,-1.546530008,MARKS AND SPENCER,United Kingdom,Leeds,,TRUE
+11/24/2017 19:02,41.88415146,-87.63240814,NISSAN,United States,Chicago,Illinois,TRUE
+8/2/2017 8:30,36.98542,35.32502,TURKCELL,Turkey,Adana,,TRUE
+11/9/2017 15:03,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+9/29/2017 15:46,51.54040146,0.705139995,TESCO,United Kingdom,Southend-on-Sea,,FALSE
+11/13/2017 7:49,-6.256080151,106.8089981,NISSAN,Indonesia,Jakarta,,FALSE
+11/20/2017 6:47,43.58449936,-84.77522278,NISSAN,United States,Level Park-Oak Park,Michigan,TRUE
+9/9/2017 8:14,43.11891937,-123.4224014,MICROSOFT,United States,Winston,Oregon,TRUE
+8/22/2017 18:04,6.316050053,-71.33679962,BEST BUY,Colombia,Puerto Rond��,,TRUE
+9/21/2017 0:14,-25.74580002,28.18758965,UBER,South Africa,Pretoria,,TRUE
+8/26/2017 23:55,-14.24289989,-54.38779831,SPORT CLUB CORINTHIANS PAULISTA,Brazil,Poxor��,,TRUE
+6/28/2017 20:19,43.65322495,-79.38318634,IKEA,Canada,Toronto,,FALSE
+9/7/2017 7:41,46.42539978,15.87790966,LIDL,Slovenia,Ptuj,,FALSE
+5/4/2017 1:13,41.2033216,-77.1945247,QUEST DIAGNOSTICS,United States,Williamsport,Pennsylvania,TRUE
+7/21/2017 10:49,-33.86882019,151.2092896,TELSTRA,Australia,Sydney,,TRUE
+11/18/2017 19:55,37.11368179,-82.85948181,NISSAN,United States,Whitesburg,Kentucky,TRUE
+4/28/2017 19:11,27.6648274,-81.5157535,AMERICAN AIRLINES,United States,Avon Park,Florida,TRUE
+6/30/2017 22:00,40.71416855,-74.0063858,AMERICAN AIRLINES,United States,Byram,New Jersey,TRUE
+10/30/2017 20:26,45.6339798,-122.5935364,BEST BUY,United States,Walnut Grove,Washington,TRUE
+11/15/2017 3:14,10.64999962,-61.51667023,PEOPLE,Trinidad and Tobago,Port-of-Spain,,TRUE
+11/29/2017 6:11,23.70980072,90.40711212,BRITISH AIRWAYS,Bangladesh,Dhaka,,TRUE
+7/24/2017 11:54,18.43216705,73.83886719,AMERICAN AIRLINES,India,Kharakvasla,,TRUE
+6/1/2017 4:36,27.95057487,-82.45717621,T-MOBILE,United States,Tampa,Florida,TRUE
+9/15/2017 13:34,15.59305,120.7390671,SPORTS ILLUSTRATED,Philippines,Calibungan,,FALSE
+9/12/2017 22:27,51.27172089,-0.395350009,Apple Computer Inc,United Kingdom,Cobham,,TRUE
+11/26/2017 21:31,27.97579956,-81.5410614,UBS,United States,Lake Wales,Florida,TRUE
+10/6/2017 21:12,37.48759842,139.8382874,NISSAN,Japan,Kitakata,,FALSE
+11/18/2017 5:52,32.50196075,-87.83515167,NISSAN,United States,Demopolis,Alabama,TRUE
+11/24/2017 1:16,32.67827988,-83.2229538,NISSAN,United States,Jeffersonville,Georgia,TRUE
+6/13/2017 14:56,50.819767,-1.087976933,PRIMARK,United Kingdom,Portsmouth,,TRUE
+7/31/2017 2:38,43.78443909,-88.78786469,MCDONALDS,United States,Ripon,Wisconsin,FALSE
+9/30/2017 15:55,51.44979858,-0.00185,ALDI,United Kingdom,Blackheath,,FALSE
+9/13/2017 1:00,55.95227051,-4.921649933,ROYAL BANK OF SCOTLAND,United Kingdom,Wemyss Bay,,TRUE
+11/22/2017 3:51,45.5367012,-122.6508408,NISSAN,United States,Portland,Oregon,TRUE
+9/15/2017 17:30,44.72719955,-90.10125732,KRAFT FOODS INC,United States,Stratford,Wisconsin,TRUE
+8/22/2017 6:29,38.78372955,-0.341820002,BRITISH AIRWAYS,Spain,Planes,,TRUE
+10/18/2017 10:19,25.2694397,55.30865097,HDFC BANK,United Arab Emirates,Dubai,,FALSE
+11/28/2017 14:37,18.53610992,73.85218048,STANDARD BANK,India,Shivaji Nagar,,TRUE
+4/10/2017 17:19,53.72666931,-127.6476212,GUCCI,Canada,Kitimat,,FALSE
+11/4/2017 7:03,12.97754002,77.59951019,HDFC BANK,India,Bangalore,,FALSE
+11/19/2017 13:40,54.59534073,-5.934549809,THOMAS COOK GROUP,United Kingdom,Belfast,,FALSE
+6/5/2017 1:44,40.31399918,-74.5089035,KELLOGG'S,United States,Whittingham,New Jersey,FALSE
+11/27/2017 20:02,29.34597015,31.24117088,FEDEX,Egypt,Al W�����,,TRUE
+7/17/2017 17:58,45.42152786,-75.69718933,COTY - CALVIN KLEIN,Canada,Ottawa,,TRUE
+9/21/2017 6:10,51.45378876,-2.59168005,APPLE INC,United Kingdom,Bristol,,FALSE
+11/3/2017 17:50,40.19033051,-82.66947174,NISSAN,United States,Granville South,Ohio,TRUE
+10/26/2017 13:49,32.51461029,-93.74726868,WALMART,United States,Shreveport,Louisiana,TRUE
+10/11/2017 0:50,45.4233284,-65.96469116,MICROSOFT,Canada,Hampton,,TRUE
+5/9/2017 15:29,40.71278381,-74.0059433,SEPHORA,United States,Byram,New York,FALSE
+11/3/2017 19:53,64.55653381,12.66617012,COTY - CALVIN KLEIN,Norway,Grong,,TRUE
+10/31/2017 16:08,37.1679306,-95.84501648,MCDONALDS,United States,Independence,Kansas,TRUE
+11/14/2017 11:10,51.50640106,-0.127210006,BTTV,United Kingdom,London,,FALSE
+11/25/2017 21:11,60.51139069,11.24901962,NISSAN,Norway,Eidsvoll,,FALSE
+6/20/2017 14:02,53.54438782,-113.4909287,H&M,Canada,Edmonton,,FALSE
+6/23/2017 18:09,55.86423874,-4.251805782,TESCO,United Kingdom,Rutherglen,,FALSE
+5/2/2017 17:56,32.9709834,-96.7071453,PANDORA JEWELRY,United States,Garland,Texas,FALSE
+5/24/2017 21:25,41.58009338,-71.47743225,PITNEY BOWES,United States,North Kingstown,Rhode Island,FALSE
+4/18/2017 4:40,42.4072113,-71.38243866,SONYMUSIC ENTERTAINMENT,United States,Sudbury,Massachusetts,FALSE
+7/21/2017 0:09,51.47124863,-0.487818509,BRITISH AIRWAYS,United Kingdom,Iver,,FALSE
+9/9/2017 22:50,29.77541924,-95.38188934,FEDEX,United States,Houston,Texas,FALSE
+8/23/2017 18:13,39.73926163,-89.50408936,BANK OF AMERICA,United States,Rochester,Illinois,TRUE
+11/9/2017 19:43,32.1568985,-110.877121,NISSAN,United States,Tucson,Arizona,TRUE
+10/5/2017 8:38,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,TRUE
+6/9/2017 22:12,47.60638809,-122.3308334,BOEING,United States,Seattle,Washington,FALSE
+11/6/2017 10:38,30.36175919,76.82354736,MICROSOFT,India,Amb���,,TRUE
+7/20/2017 10:57,-23.55051994,-46.63330841,UBS,Brazil,S�����,,FALSE
+8/17/2017 23:55,45.37137985,-75.68534088,Apple Computer Inc,Canada,Ottawa,,TRUE
+6/6/2017 13:45,28.5383358,-81.37923431,T-MOBILE,United States,Orlando,Florida,FALSE
+6/11/2017 14:56,51.50735092,-0.127758294,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+9/16/2017 16:21,53.44229889,-2.233409882,INFOSYS,United Kingdom,Fallowfield,,TRUE
+10/10/2017 23:44,30.30636978,-97.75276184,NISSAN,United States,Austin,Texas,TRUE
+9/4/2017 10:04,-27.46035957,153.0476227,CISCO,Australia,Fortitude Valley,,TRUE
+10/30/2017 9:19,50.94459915,-0.456889987,NISSAN,United Kingdom,Storrington,,TRUE
+10/31/2017 5:54,28.30389023,-81.40982819,SPORTS ILLUSTRATED,United States,Kissimmee,Florida,TRUE
+9/14/2017 18:04,31.84983063,-106.4371872,NISSAN,United States,Fort Bliss,Texas,TRUE
+11/4/2017 19:20,26.22170067,-97.66300201,NISSAN,United States,Harlingen,Texas,FALSE
+11/15/2017 0:47,34.05350113,-118.2450027,MCCLATCHY,United States,Los Angeles,California,FALSE
+4/28/2017 20:18,41.58009338,-71.47743225,SEPHORA,United States,North Kingstown,Rhode Island,FALSE
+10/4/2017 11:50,25.78255081,-80.22174835,AMERICAN AIRLINES,United States,Miami,Florida,FALSE
+8/24/2017 23:36,46.8132019,8.223950386,HPE,Switzerland,Giswil,,TRUE
+10/30/2017 18:51,31.14254951,-89.40445709,PEOPLE,United States,Purvis,Mississippi,FALSE
+5/6/2017 11:58,43.78443909,-88.78786469,CLOROX,United States,Ripon,Wisconsin,FALSE
+11/24/2017 22:22,51.49869919,4.28260994,APPLE INC,Netherlands,Bergen op Zoom,,FALSE
+9/16/2017 5:15,40.91751862,14.29148006,SPORTS ILLUSTRATED,Italy,Casoria,,FALSE
+10/4/2017 0:28,37.2718811,-119.2702332,T-MOBILE,United States,Auberry,California,FALSE
+9/17/2017 13:31,51.77045059,0.642549992,LIDL,United Kingdom,Witham,,TRUE
+11/4/2017 6:41,32.52009964,-96.78691864,NISSAN,United States,Glenn Heights,Texas,TRUE
+11/25/2017 13:25,52.88356018,-1.974060059,AIRFRANCE,United Kingdom,Cheadle,,FALSE
+9/8/2017 18:52,24.39950943,87.85346985,TIMES OF INDIA,India,Nalh���,,FALSE
+6/6/2017 18:13,37.77500153,-122.418335,SHELL,United States,San Francisco,California,TRUE
+9/5/2017 0:57,-14.24289989,-54.38779831,COTY - CALVIN KLEIN,Brazil,Poxor��,,TRUE
+11/22/2017 15:09,29.46071053,-98.52160645,POP TARTS,United States,Balcones Heights,Texas,TRUE
+9/29/2017 3:57,32.95582962,-95.29106903,NISSAN,United States,Gunter,Texas,TRUE
+11/17/2017 20:32,37.74739838,-122.4392166,ORACLE,United States,San Francisco,California,FALSE
+10/7/2017 7:26,55.85783005,-4.242509842,NISSAN,United Kingdom,Rutherglen,,TRUE
+11/8/2017 2:48,32.67827988,-83.2229538,NISSAN,United States,Jeffersonville,Georgia,TRUE
+8/8/2017 15:30,33.763191,-84.423058,MICROSOFT SUPPORT,United States,Atlanta,Georgia,FALSE
+9/14/2017 1:59,28.60733032,77.20350647,TIMES OF INDIA,India,New Delhi,,FALSE
+10/27/2017 13:34,50.50101089,4.476840019,UBISOFT,Belgium,Brunehault,,TRUE
+5/30/2017 14:06,28.54623795,-81.33209229,BOEING,United States,Azalea Park,Florida,TRUE
+9/4/2017 20:25,51.23332977,6.266670227,LUFTHANSA,Germany,Schwalmtal,,TRUE
+11/21/2017 0:15,41.17419815,-80.45469666,NISSAN,United States,Sharon,Pennsylvania,TRUE
+9/15/2017 19:22,13.05939007,80.2456665,MICROSOFT - WINDOWS 10,India,Chetput,,FALSE
+8/23/2017 13:59,26.84911919,80.94360352,APPLE INC,India,Lucknow,,TRUE
+7/31/2017 10:57,28.5383358,-81.37923431,AMERICAN AIRLINES,United States,Orlando,Florida,TRUE
+6/29/2017 16:39,37.78887177,-122.4215927,AMERICAN AIRLINES,United States,San Francisco,California,TRUE
+11/2/2017 20:40,38.44348145,-6.372509956,NISSAN,Spain,Los Santos de Maimona,,TRUE
+5/21/2017 18:27,52.35551834,-1.174319744,CISCO,United Kingdom,Rugby,,FALSE
+11/20/2017 15:59,32.56438065,-97.14193726,NISSAN,United States,Dalworthington Gardens,Texas,TRUE
+9/9/2017 5:40,37.1679306,-95.84501648,H&M,United States,Independence,Kansas,FALSE
+5/25/2017 18:29,52.35551834,-1.174319744,TESCO,United Kingdom,Rugby,,FALSE
+10/9/2017 19:00,44.6446991,10.92656994,NISSAN,Italy,Modena,,TRUE
+10/27/2017 3:50,37.45243073,-76.41686249,SPORTS ILLUSTRATED,United States,Yorktown,Virginia,TRUE
+10/13/2017 7:36,6.472789764,-66.58904266,NISSAN,Colombia,Puerto Carre��,,TRUE
+11/3/2017 10:56,51.50640106,-0.127210006,LACOSTE,United Kingdom,London,,FALSE
+8/31/2017 1:31,13.03658962,101.4925003,Apple Computer Inc,Thailand,Wang Chan,,TRUE
+11/26/2017 6:48,52.33658981,-2.058109999,TESCO,United Kingdom,Bromsgrove,,TRUE
+8/21/2017 11:30,46.27391052,-119.2737198,WALMART,United States,Richland,Washington,TRUE
+6/12/2017 18:10,42.92752838,-83.62995148,DELOITTE,United States,Barnes Lake-Millers Lake,Michigan,FALSE
+9/15/2017 13:05,37.74739838,-122.4392166,SPORTS ILLUSTRATED,United States,San Francisco,California,FALSE
+8/22/2017 17:07,54.57300949,-1.23763001,EMIRATES,United Kingdom,Middlesbrough,,TRUE
+10/30/2017 9:41,43.11891937,-123.4224014,MCCLATCHY,United States,Winston,Oregon,FALSE
+11/6/2017 0:39,43.17713928,-83.87178802,NISSAN,United States,Barnes Lake-Millers Lake,Michigan,TRUE
+11/24/2017 1:17,43.45658875,-83.99040222,NISSAN,United States,Barnes Lake-Millers Lake,Michigan,TRUE
+5/28/2017 8:37,52.35551834,-1.174319744,SHELL,United Kingdom,Rugby,,FALSE
+9/12/2017 15:49,43.30868149,5.412819862,NIKE,France,Marseille 13,,TRUE
+8/20/2017 16:02,37.97840881,-121.3123627,NIKE,United States,Stockton,California,TRUE
+11/7/2017 10:30,-6.971419811,110.425499,TELKOMSEL,Indonesia,Semarang,,FALSE
+10/31/2017 21:37,40.70965958,-112.0826569,T-MOBILE,United States,Magna,Utah,FALSE
+9/25/2017 18:58,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,TRUE
+8/15/2017 5:51,42.50381851,12.57347012,IKEA,Italy,Narni,,TRUE
+11/4/2017 4:24,-6.971419811,110.425499,TELKOMSEL,Indonesia,Semarang,,FALSE
+6/24/2017 17:59,38,-97,Apple Computer Inc,United States,Peabody,Kansas,TRUE
+6/10/2017 0:12,59.32932281,18.06858063,FEDEX,Sweden,Stockholm,,TRUE
+9/28/2017 0:56,52.47930908,-1.884199977,NISSAN,United Kingdom,Birmingham,,TRUE
+9/14/2017 20:51,30.3322506,-81.6747818,AMERICAN AIRLINES,United States,Jacksonville,Florida,FALSE
+6/3/2017 6:00,25.20484924,55.27078247,EMIRATES,United Arab Emirates,Dubai,,FALSE
+9/7/2017 10:10,3.438630104,-76.51701355,ADIDAS,Colombia,Cali,,FALSE
+11/6/2017 16:46,25.42012024,86.12895203,TIMES OF INDIA,India,Begusarai,,TRUE
+10/15/2017 16:35,40.16910172,-105.0998764,NISSAN,United States,Longmont,Colorado,TRUE
+9/29/2017 0:49,32.78182983,-96.79586029,NISSAN,United States,Dallas,Texas,TRUE
+5/26/2017 16:58,53.76086044,-98.81387329,UBISOFT,Canada,Thompson,,TRUE
+10/16/2017 13:25,37.1679306,-95.84501648,STANDARD BANK,United States,Independence,Kansas,TRUE
+11/21/2017 16:11,36.2203598,-81.68695831,BANK OF AMERICA,United States,Boone,North Carolina,FALSE
+6/16/2017 2:56,39.04575348,-76.6412735,CAPITAL ONE,United States,Gambrills,Maryland,TRUE
+6/3/2017 17:43,38.6003952,-90.12889099,MCDONALDS,United States,Alorton,Illinois,FALSE
+7/31/2017 14:33,40.41728592,-82.90711975,MCDONALDS,United States,Bexley,Ohio,FALSE
+9/12/2017 19:30,37.2718811,-119.2702332,APPLE INC,United States,Auberry,California,FALSE
+6/23/2017 20:56,44.31484604,-85.60236359,MCDONALDS,United States,Sturgeon Bay,Michigan,TRUE
+9/26/2017 11:04,-33.91905975,18.42196083,UBER,South Africa,Cape Town,,TRUE
+10/4/2017 22:42,37.69097137,-97.34060669,MICROSOFT - WINDOWS 10,United States,Wichita,Kansas,TRUE
+6/6/2017 17:10,28.5383358,-81.37923431,T-MOBILE,United States,Orlando,Florida,FALSE
+10/15/2017 16:14,47.6035614,-122.3294373,MCDONALDS,United States,Seattle,Washington,TRUE
+11/1/2017 13:44,-7.800000191,110.3666992,TELKOMSEL,Indonesia,Yogyakarta,,TRUE
+6/15/2017 1:25,39.92097473,-88.95834351,BEST BUY,United States,Forsyth,Illinois,FALSE
+6/28/2017 19:02,27.66482735,-81.5157547,BEST BUY,United States,Avon Park,Florida,TRUE
+5/23/2017 8:49,40.71278381,-74.0059433,CHEVRON,United States,Byram,New York,FALSE
+10/1/2017 2:40,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+9/13/2017 16:04,40.71455002,-74.00711823,APPLE INC,United States,Byram,New Jersey,FALSE
+10/30/2017 10:55,-8.363109589,116.1579971,TELKOMSEL,Indonesia,Tanjung,,FALSE
+9/15/2017 1:24,40.65507126,-73.94888306,COTY - CALVIN KLEIN,United States,Byram,New York,TRUE
+7/15/2017 22:01,36.98542,35.32502,TURKCELL,Turkey,Adana,,TRUE
+9/27/2017 19:39,40.65507126,-73.94888306,NISSAN,United States,Byram,New York,FALSE
+10/30/2017 17:29,36.03255844,-86.78916168,NISSAN,United States,Brentwood,Tennessee,TRUE
+9/25/2017 20:16,51.50640106,-0.127210006,APPLE INC,United Kingdom,London,,TRUE
+8/24/2017 13:00,54.31407166,-2.230010033,ROYAL BANK OF SCOTLAND,United Kingdom,Kirkby Stephen,,TRUE
+10/9/2017 18:32,30.16601944,-96.39997864,NISSAN,United States,Brenham,Texas,TRUE
+8/17/2017 1:30,4.525129795,114.5989685,NIKE,Brunei Darussalam,Tutong,,FALSE
+11/7/2017 8:09,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/3/2017 0:05,39.96020126,-75.60559845,NISSAN,United States,West Chester,Pennsylvania,TRUE
+7/28/2017 21:04,34.05220032,-118.2429962,NIKE,United States,Los Angeles,California,TRUE
+8/26/2017 1:54,31.16889954,-100.0771484,EXXON MOBIL,United States,Eden,Texas,FALSE
+11/14/2017 17:21,-7.800000191,-60.61669922,PETROBRAS,Brazil,Aripuan��,,FALSE
+4/1/2017 17:28,36.77825928,-119.4179306,CITIBANK,United States,Minkler,California,FALSE
+11/1/2017 14:32,21.45767021,-157.9713898,PEOPLE,United States,Mililani Town,Hawaii,FALSE
+11/26/2017 16:17,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+10/10/2017 4:34,41.39476013,64.56445313,IKEA,Uzbekistan,Tomdibuloq,,TRUE
+9/26/2017 2:02,37.2718811,-119.2702332,MCDONALDS,United States,Auberry,California,FALSE
+11/7/2017 16:58,29.64973068,-82.34113312,NISSAN,United States,Gainesville,Florida,TRUE
+11/6/2017 11:16,53.18812943,-2.894350052,LLOYDS TSB BANK PLC,United Kingdom,Chester,,TRUE
+7/18/2017 19:30,29.95106506,-90.0715332,NIKE,United States,New Orleans,Louisiana,TRUE
+9/27/2017 21:00,56.9546814,-98.30896759,NISSAN,Canada,Thompson,,TRUE
+11/7/2017 21:06,37.2718811,-119.2702332,Apple Computer Inc,United States,Auberry,California,TRUE
+10/26/2017 15:50,33.667099,-117.7650528,MICROSOFT,United States,Laguna Woods,California,TRUE
+7/15/2017 1:21,41.82389069,-71.41333008,AMERICAN AIRLINES,United States,Providence,Rhode Island,TRUE
+11/4/2017 0:51,40.42142868,-3.671629906,STRYKER,Spain,Salamanca,,FALSE
+4/11/2017 23:41,38.90719223,-77.03687286,LEVIS,United States,"Washington, D. C.",Maryland,FALSE
+8/31/2017 20:06,38.90475845,-77.01625061,J CREW,United States,"Washington, D. C.",Maryland,TRUE
+9/18/2017 13:28,51.50640106,-0.127210006,HSBC,United Kingdom,London,,TRUE
+8/18/2017 1:49,34.83707047,-82.36514282,JC PENNEY,United States,Greenville,South Carolina,TRUE
+7/14/2017 18:43,48.13512421,11.58198071,BRITISH AIRWAYS,Germany,Munich,,TRUE
+9/26/2017 1:41,19.29030037,-98.94390106,SPORTS ILLUSTRATED,Mexico,San Miguel Xico,,FALSE
+9/3/2017 20:49,40.21139908,-75.27429962,ALDI,United States,North Wales,Pennsylvania,TRUE
+7/17/2017 6:45,38.96374512,35.24332047,TURKCELL,Turkey,Himmetdede,,TRUE
+8/22/2017 20:31,45.5367012,-122.6508408,IKEA,United States,Portland,Oregon,TRUE
+8/30/2017 23:20,56.9546814,-98.30896759,UBISOFT,Canada,Thompson,,TRUE
+9/12/2017 23:04,-36.12083054,146.8651428,APPLE INC,Australia,Wodonga,,FALSE
+11/14/2017 1:25,44.94005966,-93.4673233,ANIXTER,United States,Nowthen,Minnesota,TRUE
+11/14/2017 14:15,-6.437839985,105.9946213,TELKOMSEL,Indonesia,Jasugih Selatan,,FALSE
+11/8/2017 3:34,40.7934494,-74.0241394,APPLE INC,United States,Byram,New Jersey,FALSE
+4/21/2017 2:53,41.2033216,-77.1945247,ADIDAS,United States,Williamsport,Pennsylvania,FALSE
+10/14/2017 9:47,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+9/25/2017 16:39,39.83229065,-88.86746216,SPORTS ILLUSTRATED,United States,Long Creek,Illinois,TRUE
+6/1/2017 16:09,44.55880356,-72.57784271,TIMBERLAND,United States,Morrisville,Vermont,TRUE
+11/1/2017 2:04,40.00762939,-75.13395691,NISSAN,United States,Philadelphia,Pennsylvania,TRUE
+8/21/2017 17:01,52.27172852,0.294770002,ELECTRONIC ARTS,United Kingdom,Bottisham,,TRUE
+10/23/2017 7:33,51.27172089,-0.395350009,BRITISH AIRWAYS,United Kingdom,Cobham,,FALSE
+9/14/2017 20:11,40.65507126,-73.94888306,IKEA,United States,Byram,New York,FALSE
+11/14/2017 13:29,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+8/25/2017 23:59,52.88356018,-1.974060059,Apple Computer Inc,United Kingdom,Cheadle,,FALSE
+11/9/2017 5:43,-37.86579895,145.102829,TELSTRA,Australia,Ashwood,,TRUE
+10/18/2017 6:28,28.57411003,77.19281769,NISSAN,India,New Delhi,,TRUE
+4/15/2017 4:28,33.50399017,36.26069641,EA - FIFA,Syrian Arab Republic,Damascus,,FALSE
+10/17/2017 21:35,51.50640106,-0.127210006,LLOYDS TSB BANK PLC,United Kingdom,London,,TRUE
+9/3/2017 11:37,40.14323044,-74.72670746,KRAFT FOODS INC,United States,Tullytown,New Jersey,FALSE
+11/10/2017 0:41,49.21282959,-2.133169889,MICROSOFT - WINDOWS 10,Jersey,Saint Helier,,FALSE
+5/30/2017 17:14,38,-97,BP,United States,Peabody,Kansas,TRUE
+11/6/2017 16:45,47.6035614,-122.3294373,WALMART,United States,Seattle,Washington,FALSE
+11/6/2017 7:28,37.2718811,-119.2702332,CARTIER,United States,Auberry,California,FALSE
+8/31/2017 8:07,62.19844818,17.55142021,HCL,Sweden,Njurundabommen,,TRUE
+8/14/2017 18:27,54.595341,-5.93455,PRIMARK,United Kingdom,Belfast,,TRUE
+10/18/2017 15:01,51.50640106,-0.127210006,NISSAN,United Kingdom,London,,TRUE
+10/14/2017 20:03,52.9234314,-1.484449983,ALDI,United Kingdom,Little Eaton,,TRUE
+11/14/2017 1:49,47.6035614,-122.3294373,T-MOBILE,United States,Seattle,Washington,TRUE
+7/6/2017 8:12,30.30637,-97.752762,CAPITAL ONE,United States,Austin,Texas,FALSE
+11/20/2017 5:21,42.97259903,-88.12909698,NISSAN,United States,New Berlin,Wisconsin,TRUE
+6/6/2017 22:37,32.93429184,-97.07806396,BRITISH AIRWAYS,United States,Grapevine,Texas,TRUE
+11/8/2017 15:56,51.50640106,-0.127210006,HARIBO,United Kingdom,London,,TRUE
+8/30/2017 8:18,30.36175919,76.82354736,FOSSIL,India,Amb���,,TRUE
+11/24/2017 16:06,-7.800000191,110.3666992,TELKOMSEL,Indonesia,Yogyakarta,,FALSE
+11/26/2017 4:30,37.48759842,139.8382874,MICROSOFT - WINDOWS 10,Japan,Kitakata,,FALSE
+11/5/2017 17:24,47.97869873,13.83434963,NISSAN,Austria,Laakirchen,,TRUE
+9/30/2017 0:20,10.53079987,7.42482996,FIRSTBANK NIGERIA,Nigeria,Kaduna,,FALSE
+6/6/2017 15:04,33.76694489,-118.1883316,T-MOBILE,United States,Long Beach,California,TRUE
+10/14/2017 18:10,33.0207901,-96.69921112,NISSAN,United States,Allen,Texas,TRUE
+10/11/2017 2:14,41.5737114,-93.61765289,SPORTS ILLUSTRATED,United States,Des Moines,Iowa,FALSE
+4/6/2017 0:47,33.836081,-81.1637245,HYUNDAI,United States,Gaston,South Carolina,FALSE
+8/18/2017 17:39,41.59648895,-70.53813934,MCDONALDS,United States,Teaticket,Massachusetts,TRUE
+10/13/2017 20:09,38.25485992,-85.7664032,KOHL'S,United States,Louisville,Kentucky,FALSE
+11/16/2017 15:11,21.78660011,82.79476166,INFOSYS,India,Seor�������,,TRUE
+8/18/2017 8:45,-28.47933006,24.67992973,XEROX,South Africa,Barkly West,,FALSE
+8/23/2017 16:21,44.33081818,-109.7547226,NISSAN,United States,Cody,Wyoming,FALSE
+10/26/2017 16:02,41.88415146,-87.63240814,FEDEX,United States,Chicago,Illinois,TRUE
+11/18/2017 9:25,-6.185530186,106.6295624,TELKOMSEL,Indonesia,Tangerang,,FALSE
+9/19/2017 17:28,53.52643967,-113.5174408,FEDEX,Canada,Edmonton,,TRUE
+9/12/2017 14:25,39.10295105,-94.58306122,MICROSOFT - WINDOWS 10,United States,Kansas City,Missouri,TRUE
+9/30/2017 17:43,38.35147095,-81.62983704,Apple Computer Inc,United States,Mount Gay-Shamrock,West Virginia,TRUE
+8/23/2017 14:48,41.9382515,-93.38989258,NISSAN,United States,Nevada,Iowa,TRUE
+9/19/2017 20:00,51.84004974,-0.275099993,MICROSOFT,United Kingdom,Wheathampstead,,FALSE
+10/16/2017 15:30,28.60733032,77.20350647,INDIGO,India,New Delhi,,FALSE
+11/21/2017 23:09,40.43130112,-79.98069763,NISSAN,United States,Pittsburgh,Pennsylvania,TRUE
+6/29/2017 16:09,52.20533752,0.121817,TESCO,United Kingdom,Cambridge,,TRUE
+9/20/2017 16:56,37.1679306,-95.84501648,NIKE,United States,Independence,Kansas,TRUE
+10/10/2017 15:22,32.78182983,-96.79586029,NISSAN,United States,Dallas,Texas,TRUE
+9/3/2017 20:50,29.46071053,-98.52160645,ASURION,United States,Balcones Heights,Texas,FALSE
+9/15/2017 8:54,12.96382046,80.15055084,HDFC BANK,India,Pall�����,,TRUE
+11/2/2017 2:26,37.1679306,-95.84501648,APPLE INC,United States,Independence,Kansas,TRUE
+8/21/2017 19:36,41.32369995,-74.80169678,NISSAN,United States,Milford,Pennsylvania,TRUE
+11/28/2017 2:41,15.59305,120.7390671,NISSAN,Philippines,Calibungan,,FALSE
+7/7/2017 14:14,-35.67514801,-71.54296875,UBISOFT,Chile,Colb��,,TRUE
+11/28/2017 21:09,38.90475845,-77.01625061,T-MOBILE,United States,"Washington, D. C.",Maryland,FALSE
+11/15/2017 1:25,48.85692978,2.341200113,MCCLATCHY,France,Paris,,FALSE
+4/18/2017 1:16,35.7595731,-79.0192997,USAA,United States,Fearrington Village,North Carolina,FALSE
+6/28/2017 4:08,34.05222321,-118.242775,MCDONALDS,United States,Los Angeles,California,FALSE
+4/24/2017 12:05,36.77825928,-119.4179306,INTEL,United States,Minkler,California,FALSE
+6/26/2017 5:46,51.5,0.115999997,APPLE INC,United Kingdom,Abbey Wood,,FALSE
+9/1/2017 17:07,18.53610992,73.85218048,HDFC BANK,India,Shivaji Nagar,,TRUE
+9/28/2017 11:27,60.28934097,25.02967072,NISSAN,Finland,Vantaa,,FALSE
+9/12/2017 15:03,33.9070015,-98.52906799,T-MOBILE,United States,Iowa Park,Texas,TRUE
+7/9/2017 14:17,51.5,-0.116667002,BRITISH AIRWAYS,United Kingdom,City of Westminster,,TRUE
+10/27/2017 7:20,19.23977089,72.90544128,STANDARD BANK,India,Borivli,,FALSE
+10/17/2017 6:14,-6.590760231,106.7922516,TELKOMSEL,Indonesia,Bogor,,FALSE
+7/20/2017 22:43,44.31484604,-85.60236359,KRAFT FOODS INC,United States,Sturgeon Bay,Michigan,FALSE
+9/2/2017 20:11,57.67697906,-2.965500116,TANQUERAY,United Kingdom,Buckie,,FALSE
+9/16/2017 16:37,28.56315994,77.36740875,HDFC BANK,India,Noida,,FALSE
+7/24/2017 0:44,34.0086174,-80.00961304,BRITISH AIRWAYS,United States,Timmonsville,South Carolina,FALSE
+11/25/2017 2:50,-6.256080151,106.8089981,TELKOMSEL,Indonesia,Jakarta,,FALSE
+9/7/2017 15:51,37.2718811,-119.2702332,IKEA,United States,Auberry,California,TRUE
+10/6/2017 14:46,19.43190002,-99.13289642,DELOITTE,Mexico,Mexico City,,FALSE
+8/4/2017 20:25,38.80472183,-77.04722595,NIKE,United States,Forest Heights,Virginia,TRUE
+7/3/2017 5:54,47.557579,7.59288,SWISS AIRLINE,Switzerland,Basel,,TRUE
+6/23/2017 2:47,41.87811279,-87.62979889,CAPITAL ONE,United States,Chicago,Illinois,FALSE
+4/21/2017 2:32,32.3182314,-86.902298,WALMART,United States,Selmont-West Selmont,Alabama,FALSE
+6/17/2017 0:34,37.878689,-121.943451,HONDA,United States,Diablo,California,TRUE
+11/13/2017 21:35,51.50640106,-0.127210006,DHL,United Kingdom,London,,FALSE
+11/13/2017 16:05,52.88356018,-1.974060059,TESCO,United Kingdom,Cheadle,,TRUE
+11/13/2017 22:46,40.14323044,-74.72670746,FIAT CHRYSLER,United States,Tullytown,New Jersey,FALSE
+10/4/2017 15:00,-43.58678055,170.3709869,NISSAN,New Zealand,Pleasant Point,,TRUE
+10/25/2017 11:17,21.78660011,82.79476166,INFOSYS,India,Seor�������,,TRUE
+10/31/2017 5:34,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,FALSE
+10/4/2017 9:01,13.05939007,80.2456665,TIMES OF INDIA,India,Chetput,,FALSE
+11/8/2017 16:38,40.85715103,-73.85678101,NISSAN,United States,Byram,New York,FALSE
+9/26/2017 6:46,36.06100082,-115.1340027,SPORTS ILLUSTRATED,United States,Paradise,Nevada,TRUE
+10/25/2017 18:55,51.28831863,7.679850101,EURO WINGS,Germany,Altena,,FALSE
+7/28/2017 16:46,41.35351563,-72.92544556,T-MOBILE,United States,Woodbridge,Connecticut,TRUE
+11/15/2017 19:19,31.16889954,-100.0771484,SPORTS ILLUSTRATED,United States,Eden,Texas,FALSE
+11/6/2017 20:17,39.53538895,-76.34625244,NISSAN,United States,Bel Air,Maryland,TRUE
+4/6/2017 17:37,33.836081,-81.1637245,MCAFEE,United States,Gaston,South Carolina,FALSE
+10/11/2017 0:31,53.33412933,-6.286359787,BRITISH AIRWAYS,Ireland,Rialto,,TRUE
+7/28/2017 14:16,-6.792354107,39.20832825,Apple Computer Inc,"Tanzania, United Republic of",Magomeni,,FALSE
+5/30/2017 14:18,40.76078033,-111.8910446,BEST BUY,United States,Salt Lake City,Utah,TRUE
+9/1/2017 0:24,-29.85980034,30.92765045,STANDARD BANK,South Africa,Berea,,FALSE
+9/16/2017 18:26,32.57920837,-96.79319763,APPLE INC,United States,DeSoto,Texas,FALSE
+9/29/2017 16:33,52.55128098,0.088500001,LLOYDS TSB BANK PLC,United Kingdom,March,,FALSE
+11/4/2017 0:33,34.16788101,-111.9307022,T-MOBILE,United States,Cordes Lakes,Arizona,FALSE
+8/1/2017 15:13,25.25821686,55.33050919,EMIRATES,United Arab Emirates,Dubai,,TRUE
+9/26/2017 1:56,30.30636978,-97.75276184,SPORTS ILLUSTRATED,United States,Austin,Texas,TRUE
+8/29/2017 16:19,36.17190933,-115.1399689,T-MOBILE,United States,Las Vegas,Nevada,TRUE
+11/21/2017 3:32,42.28564835,-85.58986664,NISSAN,United States,Comstock Northwest,Michigan,TRUE
+8/20/2017 9:58,51.50640106,-0.127210006,TANQUERAY,United Kingdom,London,,FALSE
+6/5/2017 0:15,43.21405029,27.91473389,BRITISH AIRWAYS,Bulgaria,Varna,,FALSE
+6/23/2017 10:59,53.54999924,2.433000088,AXA,United Kingdom,Caister-on-Sea,,FALSE
+10/9/2017 17:34,37.1679306,-95.84501648,MICROSOFT,United States,Independence,Kansas,TRUE
+9/29/2017 5:08,40.00762939,-75.13395691,NISSAN,United States,Philadelphia,Pennsylvania,TRUE
+8/22/2017 18:50,43.65914154,-70.25665283,VERIZON,United States,Dayton,Maine,FALSE
+11/25/2017 18:32,46.44231033,-93.36585999,NISSAN,United States,Grantsburg,Minnesota,TRUE
+11/23/2017 6:44,31.16889954,-100.0771484,BEST BUY,United States,Eden,Texas,TRUE
+7/15/2017 14:09,25.59409523,85.13756561,BIG BAZAAR,India,Patna,,TRUE
+6/16/2017 11:15,53.56893539,-2.885056973,MICROSOFT - WINDOWS 10,United Kingdom,Ormskirk,,FALSE
+8/31/2017 15:32,43.18619919,-77.61640167,APPLE INC,Canada,Prince Edward,,FALSE
+10/4/2017 15:30,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+5/18/2017 1:06,36.77825928,-119.4179306,VOLKSWAGEN USA,United States,Minkler,California,FALSE
+6/26/2017 0:42,52.35551834,-1.174319744,APPLE INC,United Kingdom,Rugby,,TRUE
+8/13/2017 1:29,40.57277298,-73.978508,NIKE,United States,Whittingham,New York,TRUE
+8/22/2017 13:31,0.109739996,113.9173965,JOHNSON & JOHNSON,Indonesia,Longnawang,,TRUE
+11/15/2017 2:39,-6.256080151,106.8089981,HCL,Indonesia,Jakarta,,FALSE
+11/17/2017 17:22,30.30636978,-97.75276184,AIR ASIA,United States,Austin,Texas,FALSE
+8/31/2017 23:51,46.44231033,-93.36585999,MICROSOFT STORE,United States,Grantsburg,Minnesota,FALSE
+10/4/2017 19:25,50.50101089,4.476840019,NISSAN,Belgium,Brunehault,,TRUE
+11/20/2017 14:46,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,FALSE
+10/26/2017 11:38,56.9546814,-98.30896759,NISSAN,Canada,Thompson,,FALSE
+11/21/2017 17:30,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,FALSE
+9/29/2017 18:07,-6.185530186,106.6295624,TELKOMSEL,Indonesia,Tangerang,,TRUE
+10/15/2017 14:36,36.1257782,-95.91430664,NISSAN,United States,Tulsa,Oklahoma,TRUE
+10/27/2017 3:30,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,FALSE
+8/20/2017 13:14,51.45378876,-2.59168005,ALDI,United Kingdom,Bristol,,TRUE
+7/17/2017 1:37,43.58904648,-79.64411926,GTAA,Canada,Mississauga,,FALSE
+9/3/2017 15:51,52.05791092,1.145439982,YAZOO,United Kingdom,Bramford,,TRUE
+9/7/2017 22:28,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,FALSE
+9/20/2017 20:34,49.24729919,-123.1069107,MICROSOFT - WINDOWS 10,Canada,Vancouver,,FALSE
+6/15/2017 14:30,51.45882797,-0.166420206,BRITISH AIRWAYS,United Kingdom,Battersea,,FALSE
+11/1/2017 16:44,44.72719955,-90.10125732,SPORTS ILLUSTRATED,United States,Stratford,Wisconsin,TRUE
+9/30/2017 13:36,50.83895874,-0.182459995,MARKS AND SPENCER,United Kingdom,Portslade,,FALSE
+11/14/2017 22:30,41.0333519,-80.66706848,NISSAN,United States,Sharon,Ohio,TRUE
+7/29/2017 15:43,41.08139038,-81.51916504,BEST BUY,United States,Montrose-Ghent,Ohio,FALSE
+11/7/2017 19:55,42.43457031,-83.98583221,FEDEX,United States,Manitou Beach-Devils Lake,Michigan,TRUE
+11/3/2017 3:24,39.98913956,-82.98532867,NISSAN,United States,Columbus,Ohio,TRUE
+11/6/2017 7:36,51.49869919,4.28260994,NISSAN,Netherlands,Bergen op Zoom,,FALSE
+9/27/2017 17:18,35.61489105,-88.47818756,PEOPLE,United States,Lexington,Tennessee,TRUE
+9/17/2017 11:08,28.04796982,-80.5936203,ALDI,United States,Palm Bay,Florida,TRUE
+11/26/2017 5:16,40.33380127,-75.92559814,NISSAN,United States,Reading,Pennsylvania,TRUE
+10/11/2017 18:11,39.74000168,-104.9919968,CIGNA,United States,Denver,Colorado,TRUE
+10/11/2017 7:56,28.60733032,77.20350647,INFOSYS,India,New Delhi,,FALSE
+6/30/2017 13:28,27.02380371,74.21793365,BIG BAZAAR,India,Kuchera,,FALSE
+10/30/2017 23:37,51.51507187,-0.093249999,ALDI,United Kingdom,City of London,,FALSE
+5/4/2017 19:53,33.836081,-81.1637245,ADIDAS,United States,Gaston,South Carolina,FALSE
+11/4/2017 11:53,-27.03060913,-65.32029724,TELKOMSEL,Argentina,Bella Vista,,FALSE
+8/22/2017 21:51,41.14937973,-8.610340118,COTY - CALVIN KLEIN,Portugal,Porto,,TRUE
+8/27/2017 14:16,22.40822983,71.30461884,TIMES OF INDIA,India,Chotila,,TRUE
+9/14/2017 22:12,40.04166031,-75.420578,IKEA,United States,Wayne,Pennsylvania,TRUE
+10/24/2017 9:17,35.99816895,-79.93495178,LEGO,United States,Jamestown,North Carolina,FALSE
+10/1/2017 4:21,40.71455002,-74.00711823,SPORTS ILLUSTRATED,United States,Byram,New Jersey,FALSE
+7/20/2017 22:10,42.38759613,-71.09949493,MICROSOFT - WINDOWS 10,United States,Somerville,Massachusetts,TRUE
+11/19/2017 11:53,51.33306122,-0.271380007,BTTV,United Kingdom,Ewell,,FALSE
+10/26/2017 17:49,40.14323044,-74.72670746,BEST BUY,United States,Tullytown,New Jersey,TRUE
+5/30/2017 23:08,38.89500046,-77.03666687,AMERICAN AIRLINES,United States,"Washington, D. C.",Maryland,TRUE
+5/31/2017 13:01,37.43157196,-78.65689087,MICROSOFT - WINDOWS 10,United States,Woodlake,Virginia,TRUE
+7/28/2017 22:07,53.3330574,-6.248888969,AIRBUS,Ireland,Dublin,,TRUE
+11/24/2017 0:28,51.50640106,-0.127210006,IKEA,United Kingdom,London,,TRUE
+11/6/2017 9:49,52.82598877,-1.326539993,ALDI,United Kingdom,Castle Donington,,FALSE
+11/17/2017 8:52,-8.060709953,111.7036133,TELKOMSEL,Indonesia,Tamanan,,FALSE
+9/13/2017 19:36,19.29030037,-98.94390106,LOVEWINS CAMPAIGN,Mexico,San Miguel Xico,,FALSE
+9/22/2017 16:00,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,FALSE
+5/28/2017 17:58,32.9709834,-96.7071453,MCDONALDS,United States,Garland,Texas,FALSE
+6/26/2017 13:52,52.07049942,4.300699711,APPLE INC,Netherlands,Den Haag,,FALSE
+11/28/2017 23:09,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+8/21/2017 4:48,-24.91209984,133.397995,TIMES OF INDIA,Australia,Alice Springs,,TRUE
+8/17/2017 14:33,53.33412933,-6.286359787,TESCO,Ireland,Rialto,,TRUE
+6/18/2017 20:25,35.00775146,-97.09288025,AMERICAN AIRLINES,United States,Lexington,Oklahoma,FALSE
+9/25/2017 18:54,48.85692978,2.341200113,NISSAN,France,Paris,,TRUE
+10/26/2017 22:55,29.6982193,-98.11560059,NISSAN,United States,Geronimo,Texas,TRUE
+10/14/2017 9:46,63.44421005,10.91520023,PVR,Norway,Stj����,,TRUE
+8/15/2017 5:48,-2.20381999,-79.89746094,ADIDAS,Ecuador,Guayaquil,,TRUE
+10/10/2017 1:43,15.88346958,74.18099976,PEOPLE,India,Ajra,,FALSE
+7/10/2017 5:37,51.50735092,-0.127758294,DEBENHAMS,United Kingdom,London,,FALSE
+10/30/2017 9:41,56.65285873,-3.996670008,DEBENHAMS,United Kingdom,Aberfeldy,,TRUE
+11/5/2017 20:40,39.8973999,-79.72409821,NISSAN,United States,Uniontown,Pennsylvania,TRUE
+7/12/2017 0:27,40.71416855,-74.0063858,TD BANK,United States,Byram,New Jersey,FALSE
+8/31/2017 6:28,47.6035614,-122.3294373,GUCCI,United States,Seattle,Washington,TRUE
+11/4/2017 18:15,39.17881012,-96.56183624,APPLE INC,United States,Manhattan,Kansas,TRUE
+11/4/2017 7:49,28.60733032,77.20350647,SHOPPERS STOP,India,New Delhi,,FALSE
+11/6/2017 18:28,51.75,7.033329964,APPLE INC,Germany,Klein Reken,,TRUE
+9/30/2017 16:46,33.30345917,-96.98252869,NISSAN,United States,Aubrey,Texas,TRUE
+4/26/2017 1:43,34.0489281,-111.0937311,APPLE INC,United States,Star Valley,Arizona,FALSE
+9/1/2017 11:25,32.03031921,75.38777924,TIMES OF INDIA,India,Gurdaspur,,FALSE
+10/16/2017 16:35,53.44229889,-2.233409882,TESCO,United Kingdom,Fallowfield,,TRUE
+11/2/2017 16:16,26.52858925,-80.08109283,PEOPLE,United States,Boynton Beach,Florida,FALSE
+6/26/2017 8:42,53.74567032,-0.336741298,MICROSOFT - WINDOWS 10,United Kingdom,Hull,,FALSE
+10/27/2017 5:01,39.73926163,-89.50408936,SPORTS ILLUSTRATED,United States,Rochester,Illinois,TRUE
+11/27/2017 1:31,30.30636978,-97.75276184,NISSAN,United States,Austin,Texas,TRUE
+6/26/2017 14:52,-33.91666794,18.41666603,STANDARD BANK,South Africa,Cape Town,,FALSE
+9/16/2017 0:11,47.84029007,-120.0262833,CAPITAL ONE,United States,Chelan,Washington,TRUE
+7/20/2017 23:15,37.09024048,-95.71289063,HELLO FRESH,United States,Coffeyville,Kansas,FALSE
+11/23/2017 4:59,39.74000168,-104.9919968,J CREW,United States,Denver,Colorado,TRUE
+6/28/2017 22:46,34.51993942,-105.8700867,Apple Computer Inc,United States,Estancia,New Mexico,TRUE
+9/14/2017 16:53,31.16889954,-100.0771484,AMERICAN AIRLINES,United States,Eden,Texas,TRUE
+6/29/2017 22:05,33.95335007,-117.3961563,PHILIPS,United States,Riverside,California,TRUE
+7/3/2017 11:36,51.50017548,-0.133232594,MARKS AND SPENCER,United Kingdom,London,,TRUE
+11/20/2017 0:38,37.74739838,-122.4392166,APPLE INC,United States,San Francisco,California,FALSE
+8/22/2017 1:47,55.85783005,-4.242509842,SHELL,United Kingdom,Rutherglen,,TRUE
+11/5/2017 0:28,35.95980072,-95.37741089,NISSAN,United States,Wagoner,Oklahoma,TRUE
+9/30/2017 15:50,30.9741993,-91.52381897,HANESBRANDS,United States,Saint Francisville,Louisiana,FALSE
+11/23/2017 0:54,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,FALSE
+11/20/2017 11:57,55.95415115,-3.202769995,BTTV,United Kingdom,Seafield,,FALSE
+5/16/2017 7:42,56.49067307,-4.202645779,HSBC,United Kingdom,Callander,,TRUE
+7/30/2017 23:40,21.78660011,82.7947998,TIMES OF INDIA,India,Seor�������,,FALSE
+9/30/2017 16:34,5.447979927,-74.66288757,NISSAN,Colombia,La Dorada,,FALSE
+9/19/2017 16:32,33.55831146,-112.0807495,Apple Computer Inc,United States,Glendale,Arizona,FALSE
+10/18/2017 16:14,-17.79099083,177.9734039,APPLE INC,Fiji,Ba,,FALSE
+9/20/2017 8:22,54.31407166,-2.230010033,APPLE INC,United Kingdom,Kirkby Stephen,,FALSE
+6/29/2017 15:05,40.44055557,-79.99610901,H&M,United States,Pittsburgh,Pennsylvania,TRUE
+6/16/2017 0:15,42.33142853,-83.04575348,CAPITAL ONE,Canada,Windsor,,TRUE
+11/24/2017 8:12,3.945149899,114.4016571,APPLE INC,Malaysia,Miri,,FALSE
+5/10/2017 23:50,32.9709834,-96.7071453,WALMART,United States,Garland,Texas,FALSE
+5/21/2017 0:49,44.31484604,-85.60236359,HONDA,United States,Sturgeon Bay,Michigan,FALSE
+9/27/2017 14:37,36.84682083,-76.28505707,CAPITAL ONE,United States,Moyock,Virginia,TRUE
+11/21/2017 4:19,46.4276886,-117.2082138,IKEA,United States,Clarkston Heights-Vineland,Washington,FALSE
+5/2/2017 19:29,37.4315734,-78.6568942,T-MOBILE,United States,Woodlake,Virginia,FALSE
+8/22/2017 17:09,31.16889954,-100.0771484,ELECTRONIC ARTS,United States,Eden,Texas,FALSE
+6/1/2017 1:55,52.35551834,-1.174319744,TESCO,United Kingdom,Rugby,,FALSE
+6/27/2017 17:23,29.42412186,-98.49362946,BEST BUY,United States,Alamo Heights,Texas,FALSE
+8/31/2017 22:29,48.68080902,2.502609968,FOOT LOCKER ,France,����pinay-sous-S����nart,,TRUE
+6/25/2017 15:18,40.71416855,-74.0063858,THE HOME DEPOT,United States,Byram,New Jersey,TRUE
+6/27/2017 15:37,50.82252884,-0.137162998,MICROSOFT SUPPORT,United Kingdom,Brighton,,TRUE
+10/13/2017 3:59,-14.24289989,-54.38779831,UBISOFT,Brazil,Poxor��,,TRUE
+8/22/2017 13:46,40.71455002,-74.00711823,VERIZON,United States,Byram,New Jersey,TRUE
+11/8/2017 16:54,31.80331993,-97.09384918,APPLE INC,United States,Gholson,Texas,TRUE
+10/23/2017 10:29,-37.27471924,145.4114838,NISSAN,Australia,Alexandra,,TRUE
+11/19/2017 21:30,41.61774063,-81.35735321,NISSAN,United States,Montrose-Ghent,Ohio,TRUE
+9/25/2017 11:02,50.37617111,-4.136630058,BRITISH AIRWAYS,United Kingdom,Plymouth,,TRUE
+7/29/2017 4:48,43.65322495,-79.38318634,APPLE INC,Canada,Toronto,,FALSE
+11/17/2017 22:34,36.78334045,-119.7943497,NISSAN,United States,Fresno,California,TRUE
+3/31/2017 11:46,-32.2968402,26.419389,UBER,South Africa,Tarkastad,,FALSE
+9/4/2017 0:33,35.77326965,-83.97812653,NISSAN,United States,Alcoa,Tennessee,FALSE
+8/22/2017 13:42,53.44229889,-2.233409882,BRITISH AIRWAYS,United Kingdom,Fallowfield,,FALSE
+11/14/2017 22:05,40.00762939,-75.13395691,NISSAN,United States,Philadelphia,Pennsylvania,TRUE
+11/25/2017 14:14,41.76596069,-72.68340302,STANDARD BANK,United States,Blue Hills,Connecticut,TRUE
+8/4/2017 21:50,33.763191,-84.423058,PROCTER & GAMBLE,United States,Atlanta,Georgia,FALSE
+11/8/2017 19:54,51.51929092,-0.252750009,TESCO,United Kingdom,Acton,,TRUE
+11/4/2017 8:56,41.9382515,-93.38989258,NISSAN,United States,Nevada,Iowa,TRUE
+10/11/2017 22:41,31.16889954,-100.0771484,@AT&T,United States,Eden,Texas,TRUE
+11/13/2017 8:25,25.61064911,85.14441681,TIMES OF INDIA,India,Patna,,FALSE
+4/19/2017 20:49,38.90719223,-77.03687286,EXXON MOBIL,United States,"Washington, D. C.",Maryland,FALSE
+10/9/2017 14:27,42.83929825,-78.7492981,SPORTS ILLUSTRATED,Canada,Fort Erie,,TRUE
+11/7/2017 23:32,41.88415146,-87.63240814,MICROSOFT,United States,Chicago,Illinois,FALSE
+11/4/2017 21:07,35.18085861,-78.97969818,NISSAN,United States,Spring Lake,North Carolina,TRUE
+4/5/2017 18:28,-33.22779083,21.85685921,EA - FIFA,South Africa,Prince Albert,,FALSE
+10/27/2017 0:06,52.51607132,13.37697983,EURO WINGS,Germany,Tiergarten,,FALSE
+9/26/2017 0:50,51.53696823,6.973380089,SPORTS ILLUSTRATED,Germany,Gladbeck,,FALSE
+11/28/2017 0:35,33.88945007,-118.3973999,AMERICAN AIRLINES,United States,Manhattan Beach,California,FALSE
+9/21/2017 18:39,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,FALSE
+7/19/2017 22:37,38.20090485,-84.87328339,MCDONALDS,United States,Frankfort,Kentucky,FALSE
+6/2/2017 18:04,38.93754959,-94.63871002,UBS,United States,Leawood,Kansas,TRUE
+6/3/2017 3:19,49.19668961,-123.1815109,APPLE INC,Canada,Richmond,,TRUE
+10/31/2017 7:49,-29.97473907,30.8838501,ABSA,South Africa,Berea,,FALSE
+11/15/2017 9:43,52.20980072,0.111469999,KPMG,United Kingdom,Cambridge,,FALSE
+11/20/2017 1:09,-31.98265076,116.0074921,TELSTRA,Australia,Maida Vale,,TRUE
+11/15/2017 15:52,6.439179897,3.423480034,FIRSTBANK NIGERIA,Nigeria,Lagos,,TRUE
+11/2/2017 16:28,41.28961182,-82.11258698,SPORTS ILLUSTRATED,United States,Montrose-Ghent,Ohio,TRUE
+11/21/2017 21:55,24.26119041,45.12033081,TELSTRA,Saudi Arabia,Ad Daw�����,,FALSE
+6/2/2017 10:19,-24.9121,133.397995,AMERICAN AIRLINES,Australia,Alice Springs,,TRUE
+11/7/2017 15:35,36.51602173,-4.888110161,NISSAN,Spain,Marbella,,FALSE
+10/14/2017 23:40,40.62530136,-75.36710358,NISSAN,United States,Middletown,Pennsylvania,TRUE
+10/6/2017 0:41,54.61912155,-1.571490049,RWE NPOWER,United Kingdom,Newton Aycliffe,,FALSE
+9/27/2017 7:00,-33.85628128,151.0209656,APPLE INC,Australia,Lidcombe,,TRUE
+11/3/2017 13:58,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,TRUE
+7/4/2017 0:15,51.50735092,-0.127758294,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+7/13/2017 9:10,25.20484924,55.27078247,BRITISH AIRWAYS,United Arab Emirates,Dubai,,FALSE
+8/23/2017 18:28,47.69651031,13.34576988,ELECTRONIC ARTS,Austria,Hintersee,,TRUE
+6/26/2017 21:20,51.16569138,10.45152569,MICROSOFT SUPPORT,Germany,Niederdorla,,FALSE
+8/31/2017 4:22,40.43130112,-79.98069763,VERIZON,United States,Pittsburgh,Pennsylvania,TRUE
+11/5/2017 13:23,51.50640106,-0.127210006,TESCO,United Kingdom,London,,FALSE
+10/18/2017 15:19,26.31501961,-98.16319275,T-MOBILE,United States,Edinburg,Texas,FALSE
+7/12/2017 16:22,54.97825241,-1.61777997,TESCO,United Kingdom,Newcastle upon Tyne,,FALSE
+10/30/2017 19:45,32.78182983,-96.79586029,Apple Computer Inc,United States,Dallas,Texas,FALSE
+10/13/2017 3:41,-7.258570194,112.7466888,TELKOMSEL,Indonesia,Surabaya,,TRUE
+6/14/2017 7:52,41.39917,2.15397,H&M,Spain,Gr����,,FALSE
+10/9/2017 17:05,-0.957360029,121.4362869,TELKOMSEL,Indonesia,Poso,,TRUE
+10/10/2017 20:40,42.18420029,-71.7181778,T-MOBILE,United States,Grafton,Massachusetts,TRUE
+10/28/2017 8:17,23.61516953,58.59117126,FINNAIR,Oman,Muscat,,FALSE
+10/5/2017 4:17,40.39929962,-75.86119843,PEOPLE,United States,South Temple,Pennsylvania,TRUE
+4/20/2017 7:25,0.254077494,31.99280739,PROCTER & GAMBLE,Uganda,Gombe,,FALSE
+11/13/2017 19:21,53.4100914,-2.978430033,SEPHORA,United Kingdom,Liverpool,,TRUE
+9/30/2017 21:12,39.14126968,-84.50518799,PEOPLE,United States,Saint Bernard,Ohio,FALSE
+10/11/2017 19:56,-6.283830166,106.8021393,TELKOMSEL,Indonesia,Jakarta,,FALSE
+4/25/2017 12:58,40.71278381,-74.0059433,ADIDAS,United States,Byram,New York,FALSE
+11/19/2017 21:38,33.59230042,-101.8560028,NISSAN,United States,Lubbock,Texas,TRUE
+11/15/2017 22:19,37.1679306,-95.84501648,IKEA,United States,Independence,Kansas,FALSE
+7/18/2017 19:51,40.71416855,-74.0063858,ADIDAS,United States,Byram,New Jersey,TRUE
+11/16/2017 4:20,41.88415146,-87.63240814,FEDEX,United States,Chicago,Illinois,FALSE
+9/8/2017 18:59,53.4100914,-2.978430033,SWISS AIRLINE,United Kingdom,Liverpool,,TRUE
+7/22/2017 9:19,33.663391,-92.415329,PMI IQOS,United States,Hampton,Arkansas,TRUE
+11/3/2017 16:43,21.78660011,82.79476166,JET AIRWAYS,India,Seor�������,,FALSE
+8/18/2017 2:42,40.00762939,-75.13395691,APPLE INC,United States,Philadelphia,Pennsylvania,FALSE
+7/29/2017 6:27,52.20533752,0.121817,TESCO,United Kingdom,Cambridge,,TRUE
+7/3/2017 19:03,19.03304863,73.02966309,BIG BAZAAR,India,Artist Village,,TRUE
+11/16/2017 17:11,30.52375031,-97.66754913,DELL EMC,United States,Brushy Creek,Texas,FALSE
+7/5/2017 2:00,26.65145111,-80.2767334,MICROSOFT - WINDOWS 10,United States,Loxahatchee Groves,Florida,TRUE
+11/22/2017 17:05,29.77541924,-95.38188934,SPORTS ILLUSTRATED,United States,Houston,Texas,FALSE
+7/5/2017 16:58,6.508369923,3.384247303,STANDARD BANK,Nigeria,Makoko,,FALSE
+8/31/2017 13:10,40.71455002,-74.00711823,IKEA,United States,Byram,New Jersey,TRUE
+7/6/2017 7:27,43.73841858,7.42461586,TOMMYHILFIGER,Monaco,Monte-Carlo,,TRUE
+9/6/2017 16:03,33.76319122,-84.42305756,T-MOBILE,United States,Atlanta,Georgia,TRUE
+11/27/2017 16:39,27.33423996,-82.53662872,NISSAN,United States,Sarasota,Florida,TRUE
+11/7/2017 22:35,5.88007021,-2.380270004,NISSAN,Ghana,Wassa-Akropong,,TRUE
+6/6/2017 14:01,40.43169403,-74.40497589,T-MOBILE,United States,Whittingham,New Jersey,FALSE
+11/3/2017 18:40,39.76617813,-86.44104767,Apple Computer Inc,United States,Avon,Indiana,FALSE
+11/3/2017 20:28,17.41840935,78.45001221,TIMES OF INDIA,India,Hyderabad,,FALSE
+11/26/2017 14:29,43.27183151,10.5440197,NISSAN,Italy,La California,,TRUE
+5/7/2017 10:34,-7.090910912,107.6688843,TELKOMSEL,Indonesia,Banjaran,,TRUE
+10/11/2017 23:58,9.99077034,-84.12345886,NISSAN,Costa Rica,San Francisco,,FALSE
+11/16/2017 4:39,40.57606125,-122.3720932,NISSAN,United States,Redding,California,TRUE
+7/27/2017 2:31,35.51749039,-86.58044434,MORGAN STANLEY,United States,Unionville,Tennessee,TRUE
+4/3/2017 23:04,43.78443909,-88.78786469,MICROSOFT SUPPORT,United States,Ripon,Wisconsin,TRUE
+11/17/2017 17:58,41.5047493,-81.6907196,BECTON DICKINSON,United States,Montrose-Ghent,Ohio,TRUE
+11/25/2017 0:37,45.85602188,11.8822403,MICROSOFT,Italy,Possagno,,FALSE
+6/4/2017 0:24,52.35551834,-1.174319744,BRITISH AIRWAYS,United Kingdom,Rugby,,FALSE
+7/30/2017 6:45,21.78660011,82.7947998,TIMES OF INDIA,India,Seor�������,,TRUE
+9/15/2017 6:16,53.3927002,-3.026010036,LIDL,United Kingdom,Birkenhead,,TRUE
+10/12/2017 15:21,34.05350113,-118.2450027,HPE,United States,Los Angeles,California,FALSE
+11/14/2017 16:02,-6.346849918,108.3585587,TELKOMSEL,Indonesia,Indramayu,,FALSE
+10/31/2017 19:09,34.17169952,-117.7390594,Apple Computer Inc,United States,La Verne,California,FALSE
+10/14/2017 8:44,-26.2049408,28.04002953,ABSA,South Africa,Johannesburg,,TRUE
+9/13/2017 4:01,48.38288116,31.17344093,MICROSOFT - WINDOWS 10,Ukraine,Lypnyazhka,,TRUE
+10/6/2017 9:14,41.71163177,-87.60066986,ALDI,United States,Dolton,Illinois,FALSE
+10/16/2017 22:39,44.11558914,-120.5148392,AIRBUS,United States,Prineville,Oregon,FALSE
+10/12/2017 21:26,51.51660919,7.4582901,EURO WINGS,Germany,Dortmund,,TRUE
+9/12/2017 19:30,40.71455002,-74.00711823,TCS,United States,Byram,New Jersey,TRUE
+11/18/2017 20:50,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+4/14/2017 0:32,41.87800217,-93.09770203,JC PENNEY,United States,Baxter,Iowa,FALSE
+8/29/2017 19:58,32.78182983,-96.79586029,T-MOBILE,United States,Dallas,Texas,FALSE
+9/12/2017 6:36,53.95053101,-6.542500019,COTY - CALVIN KLEIN,Ireland,Ardee,,TRUE
+11/26/2017 23:20,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+7/31/2017 2:45,47.60720062,-122.3382568,H&M,United States,Seattle,Washington,TRUE
+11/14/2017 0:29,40.71839142,-74.06790924,HELLO FRESH,United States,Warren Township,New Jersey,TRUE
+10/13/2017 16:41,25.78255081,-80.22174835,@AT&T,United States,Miami,Florida,FALSE
+9/13/2017 17:06,40.71455002,-74.00711823,CAPITAL ONE,United States,Byram,New Jersey,TRUE
+9/13/2017 6:53,37.2718811,-119.2702332,APPLE INC,United States,Auberry,California,FALSE
+10/10/2017 16:08,34.58417892,-85.9879837,T-MOBILE,United States,Scottsboro,Alabama,TRUE
+10/15/2017 18:17,50.94166183,6.955180168,NISSAN,Germany,Altstadt Nord,,TRUE
+10/17/2017 5:54,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/10/2017 1:48,29.46071053,-98.52160645,PEOPLE,United States,Balcones Heights,Texas,TRUE
+5/30/2017 14:56,40.71416855,-74.0063858,CIGNA,United States,Byram,New Jersey,TRUE
+7/1/2017 0:57,33.83600235,-79.04781342,AMERICAN AIRLINES,United States,Conway,South Carolina,TRUE
+9/13/2017 13:34,21.78660011,82.79476166,APPLE INC,India,Seor�������,,TRUE
+6/3/2017 19:15,40.71416855,-74.0063858,T-MOBILE,United States,Byram,New Jersey,FALSE
+11/9/2017 3:50,25.78255081,-80.22174835,MCDONALDS,United States,Miami,Florida,FALSE
+6/1/2017 8:34,-37.81362915,144.9630585,TELSTRA,Australia,Melbourne,,FALSE
+7/30/2017 19:21,40.28226089,-86.04109955,Apple Computer Inc,United States,Tipton,Indiana,TRUE
+10/5/2017 4:10,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+4/18/2017 0:44,32.51964,-83.5603112,SONYMUSIC ENTERTAINMENT,United States,Robins Air Force Base,Georgia,TRUE
+10/12/2017 19:19,46.71067047,1.718189955,MICROSOFT - WINDOWS 10,France,Arthon,,TRUE
+8/26/2017 16:31,33.55831146,-112.0807495,LOVEWINS CAMPAIGN,United States,Glendale,Arizona,TRUE
+7/23/2017 14:30,43.96056747,-124.1060638,NIKE,United States,Florence,Oregon,TRUE
+11/27/2017 10:22,36.0963707,-79.82717896,MORGAN STANLEY,United States,Greensboro,North Carolina,FALSE
+11/28/2017 2:03,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/1/2017 0:30,18.53610992,73.85218048,TIMES OF INDIA,India,Shivaji Nagar,,FALSE
+7/18/2017 15:00,32.16562271,-82.90007782,COTY - CALVIN KLEIN,United States,Helena,Georgia,TRUE
+9/5/2017 18:00,39.10295105,-94.58306122,STRYKER,United States,Kansas City,Missouri,FALSE
+5/6/2017 10:51,40.71278381,-74.0059433,ADIDAS,United States,Byram,New York,FALSE
+9/12/2017 17:09,37.1679306,-95.84501648,KROGER,United States,Independence,Kansas,FALSE
+6/5/2017 1:51,35.00775146,-97.09288025,AMERICAN AIRLINES,United States,Lexington,Oklahoma,FALSE
+11/3/2017 19:58,38.89794922,-120.0284119,APPLE INC,United States,South Lake Tahoe,California,TRUE
+9/16/2017 0:21,37.1679306,-95.84501648,HONDA,United States,Independence,Kansas,TRUE
+11/6/2017 16:44,53.64694977,-1.782680035,ALDI,United Kingdom,Brighouse,,FALSE
+5/1/2017 5:02,35.51749039,-86.58044434,PRINGLES,United States,Unionville,Tennessee,FALSE
+11/21/2017 3:54,42.84059906,-85.67388916,NISSAN,United States,Comstock Northwest,Michigan,TRUE
+10/31/2017 17:00,38.56789017,-121.4688492,T-MOBILE,United States,Sacramento,California,TRUE
+7/1/2017 0:59,53.3330574,-6.248888969,C&A,Ireland,Dublin,,TRUE
+8/17/2017 8:13,55.13130188,-1.966300011,ALDI,United Kingdom,Rothley,,FALSE
+11/13/2017 0:19,46.8132019,8.223950386,BOEING,Switzerland,Giswil,,TRUE
+11/3/2017 2:08,35.11138153,-85.29637909,STANDARD BANK,United States,Red Bank,Tennessee,FALSE
+7/1/2017 15:01,50.43561172,7.831799984,Apple Computer Inc,Germany,Montabaur,,FALSE
+9/14/2017 4:05,47.2743187,-120.8327179,SPORTS ILLUSTRATED,United States,Cle Elum,Washington,TRUE
+11/2/2017 19:34,37.2718811,-119.2702332,#WINTERREADY,United States,Auberry,California,FALSE
+8/18/2017 20:22,31.16889954,-100.0771484,LAWA,United States,Eden,Texas,TRUE
+6/19/2017 7:40,53.5582695,-3.06874299,TESCO,United Kingdom,Crosby,,TRUE
+9/17/2017 0:36,28.60733032,77.20350647,T-MOBILE,India,New Delhi,,TRUE
+10/31/2017 14:05,33.9532814,-84.53813934,T-MOBILE,United States,Marietta,Georgia,FALSE
+8/28/2017 15:09,41.9382515,-93.38989258,NIKE,United States,Nevada,Iowa,TRUE
+9/17/2017 5:48,-33.91905975,18.42196083,QATAR AIRWAYS,South Africa,Cape Town,,FALSE
+11/20/2017 7:23,6.440400124,7.480879784,SABMILLER,Nigeria,Enugu,,TRUE
+6/1/2017 13:40,39.300968,-76.610611,WALMART,United States,Baltimore,Maryland,FALSE
+8/20/2017 19:58,55.85783005,-4.242509842,TESCO,United Kingdom,Rutherglen,,TRUE
+5/5/2017 9:57,52.35551834,-1.174319744,UBS,United Kingdom,Rugby,,FALSE
+9/28/2017 4:38,42.0774498,-87.79856873,PEOPLE,United States,Glenview,Illinois,TRUE
+11/24/2017 16:18,-33.4630394,-70.64794159,NISSAN,Chile,Santiago,,FALSE
+9/12/2017 13:13,44.97903061,-93.26493073,APPLE INC,United States,Columbus,Minnesota,FALSE
+11/21/2017 14:49,33.51710892,-90.18042755,NISSAN,United States,Greenwood,Mississippi,TRUE
+8/31/2017 5:37,19.09028053,72.87136841,CITIBANK,India,Mumbai,,TRUE
+7/12/2017 18:22,34.05223465,-118.2436829,AMERICAN AIRLINES,United States,Los Angeles,California,FALSE
+7/31/2017 4:50,-28.47933,24.67993,KRAFT FOODS INC,South Africa,Barkly West,,TRUE
+11/28/2017 15:32,33.55831146,-112.0807495,T-MOBILE,United States,Glendale,Arizona,FALSE
+4/21/2017 20:27,27.6648274,-81.5157535,VOLKSWAGEN USA,United States,Avon Park,Florida,TRUE
+11/14/2017 21:56,37.07518005,-76.51580048,AMERICAN AIRLINES,United States,Yorktown,Virginia,TRUE
+9/8/2017 16:24,40.71455002,-74.00711823,NIKE,United States,Byram,New Jersey,TRUE
+11/27/2017 8:13,-28.47933006,24.67992973,NISSAN,South Africa,Barkly West,,FALSE
+11/1/2017 17:52,35.22076035,-97.44660187,NISSAN,United States,Norman,Oklahoma,TRUE
+7/17/2017 21:38,48.8666687,2.333333015,NIKE,France,Paris,,TRUE
+11/22/2017 3:07,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,TRUE
+6/4/2017 22:50,40.71416855,-74.0063858,AMERICAN AIRLINES,United States,Byram,New Jersey,FALSE
+11/27/2017 16:00,43.614151,3.86458993,MICROSOFT - WINDOWS 10,France,Montpellier,,FALSE
+8/4/2017 18:38,35.61315537,-97.55833435,NIKE,United States,The Village,Oklahoma,FALSE
+11/19/2017 0:25,32.1568985,-110.877121,NISSAN,United States,Tucson,Arizona,TRUE
+8/17/2017 4:20,50.50101089,4.476840019,NOKIA,Belgium,Brunehault,,TRUE
+11/2/2017 3:05,39.30096817,-76.61061096,VERIZON,United States,Baltimore,Maryland,TRUE
+8/25/2017 13:23,-38.20215988,143.4132538,ENERGYAUSTRALIA,Australia,Colac,,TRUE
+9/6/2017 18:45,35.78551102,-78.64266968,KROGER,United States,Raleigh,North Carolina,TRUE
+9/27/2017 17:13,34.05350113,-118.2450027,CAPITAL ONE,United States,Los Angeles,California,FALSE
+7/27/2017 4:04,34.57943344,-118.1164627,SEPHORA,United States,Palmdale,California,FALSE
+11/7/2017 21:17,36.20661926,-76.86898041,NISSAN,United States,Ahoskie,North Carolina,TRUE
+11/21/2017 1:13,38.39836884,-85.75634766,LEGO,United States,Sellersburg,Indiana,FALSE
+8/30/2017 2:51,34.10285187,-84.50837708,UBISOFT,United States,Woodstock,Georgia,FALSE
+6/29/2017 3:39,28.53805542,-81.37944794,MCDONALDS,United States,Orlando,Florida,TRUE
+10/10/2017 0:15,28.60733032,77.20350647,TIMES OF INDIA,India,New Delhi,,TRUE
+11/7/2017 5:00,41.5047493,-81.6907196,NISSAN,United States,Montrose-Ghent,Ohio,TRUE
+9/14/2017 5:58,37.1679306,-95.84501648,UBISOFT,United States,Independence,Kansas,TRUE
+11/4/2017 2:10,30.30743027,78.05294037,INFOSYS,India,Dehradun,,TRUE
+7/30/2017 8:24,-37.81362915,144.9630585,MICROSOFT SUPPORT,Australia,Melbourne,,TRUE
+11/26/2017 9:00,31.32212067,75.58468628,BAJAJ FINSERV,India,Jalandhar,,TRUE
+6/5/2017 21:36,27.94722176,-82.45861053,AMERICAN AIRLINES,United States,Tampa,Florida,TRUE
+8/31/2017 14:08,51.45378876,-2.59168005,MARKS AND SPENCER,United Kingdom,Bristol,,FALSE
+11/26/2017 3:29,-37.86579895,145.102829,VODAFONEAUS,Australia,Ashwood,,FALSE
+10/30/2017 5:50,42.5223999,-70.89581299,PEOPLE,United States,Salem,Massachusetts,TRUE
+11/7/2017 15:07,35.22076035,-97.44660187,NISSAN,United States,Norman,Oklahoma,TRUE
+10/12/2017 6:38,64.55653381,12.66617012,Apple Computer Inc,Norway,Grong,,TRUE
+10/18/2017 21:46,41.51776123,-72.75753021,MCDONALDS,United States,Wallingford Center,Connecticut,FALSE
+5/8/2017 21:40,32.51964,-83.5603112,SEPHORA,United States,Robins Air Force Base,Georgia,FALSE
+7/11/2017 11:33,25.20484924,55.27078247,MAJID AL FUTTAIM GROUP,United Arab Emirates,Dubai,,TRUE
+11/16/2017 11:36,37.1679306,-95.84501648,LUFTHANSA,United States,Independence,Kansas,FALSE
+11/4/2017 22:28,-7.009329796,113.8555069,TELKOMSEL,Indonesia,Sumenep,,FALSE
+9/19/2017 14:12,37.67372131,-122.1347504,CAPITAL ONE,United States,San Lorenzo,California,TRUE
+11/19/2017 15:48,38.42644882,-120.1003265,NISSAN,United States,Arnold,California,TRUE
+5/13/2017 19:40,-33.44889069,-70.66926575,GUCCI,Chile,Santiago,,FALSE
+11/16/2017 11:07,40.87836075,-74.08142853,NISSAN,United States,Byram,New Jersey,TRUE
+10/6/2017 0:49,28.6439991,77.09100342,JET AIRWAYS ,India,N������,,FALSE
+9/10/2017 19:32,35.01224899,-97.36184692,NISSAN,United States,Purcell,Oklahoma,TRUE
+8/31/2017 9:57,12.97754002,77.59951019,HDFC BANK,India,Bangalore,,TRUE
+10/12/2017 2:52,28.60733032,77.20350647,TIMES OF INDIA,India,New Delhi,,FALSE
+11/1/2017 13:16,19.00683975,72.81656647,TIMES OF INDIA,India,Mumbai,,TRUE
+7/5/2017 19:13,39.73923492,-104.9902496,MCDONALDS,United States,Denver,Colorado,TRUE
+11/23/2017 15:06,-25.74580002,28.18758965,STANDARD BANK,South Africa,Pretoria,,TRUE
+5/31/2017 19:25,53.10031891,-0.993630588,MICROSOFT - WINDOWS 10,United Kingdom,Southwell,,TRUE
+6/29/2017 13:59,28.5383358,-81.37923431,MATTEL,United States,Orlando,Florida,FALSE
+10/30/2017 6:29,13.05939007,80.2456665,HDFC BANK,India,Chetput,,TRUE
+5/24/2017 23:57,40.26719284,-86.13490295,MCDONALDS,United States,Tipton,Indiana,FALSE
+11/2/2017 11:41,49.45434189,11.07349014,LEGO,Germany,N�����,,FALSE
+10/16/2017 7:14,51.70149994,-0.034540001,MICROSOFT - WINDOWS 10,United Kingdom,Cheshunt,,TRUE
+4/15/2017 15:12,35.17955399,129.0756378,GUCCI,"Korea, Republic of",Busan,,FALSE
+9/6/2017 21:16,33.76319122,-84.42305756,MCDONALDS,United States,Atlanta,Georgia,TRUE
+8/31/2017 19:55,37.88299942,41.13090134,TURKCELL,Turkey,Batman,,FALSE
+6/22/2017 15:13,39.95258331,-75.16522217,DELOITTE,United States,Philadelphia,Pennsylvania,FALSE
+11/14/2017 13:19,29.46071053,-98.52160645,IKEA,United States,Balcones Heights,Texas,FALSE
+11/14/2017 14:52,52.13058853,-0.987110019,BTTV,United Kingdom,Towcester,,FALSE
+11/4/2017 6:17,28.6439991,77.09100342,TIMES OF INDIA,India,N������,,TRUE
+11/7/2017 23:01,9.084569931,8.674249649,MICROSOFT - WINDOWS 10,Nigeria,Wamba,,FALSE
+10/10/2017 14:23,19.22509003,73.16365051,ABBOTT LABS,India,Ulhasnagar,,TRUE
+10/6/2017 19:53,27.97579956,-81.5410614,NISSAN,United States,Lake Wales,Florida,TRUE
+7/24/2017 19:59,34.02209854,-118.4810028,NIKE,United States,Santa Monica,California,TRUE
+8/27/2017 14:15,29.77541924,-95.38188934,MCDONALDS,United States,Houston,Texas,TRUE
+7/12/2017 23:25,34.94301224,32.98742294,CAPITAL ONE,Cyprus,Kypero����,,FALSE
+8/24/2017 17:34,38.62770081,-90.19950104,BEST BUY,United States,St. Louis,Missouri,FALSE
+4/1/2017 21:09,44.31484604,-85.60236359,AMERICAN AIRLINES,United States,Sturgeon Bay,Michigan,TRUE
+8/28/2017 11:09,52.39881897,-0.725830019,ALDI,United Kingdom,Kettering,,TRUE
+6/6/2017 18:19,38.83388901,-104.8208313,SHELL,United States,Colorado Springs,Colorado,TRUE
+7/16/2017 13:57,17.3850441,78.48667145,NIKE,India,Hyderabad,,TRUE
+11/2/2017 0:01,40.42142868,-3.671629906,NISSAN,Spain,Salamanca,,FALSE
+7/7/2017 22:05,40.71278381,-74.0059433,MOUNT SINAI,United States,Byram,New York,TRUE
+10/30/2017 15:38,60.66584015,23.14402962,Apple Computer Inc,Finland,Koski,,TRUE
+6/4/2017 15:11,53.76322556,-2.704405308,TESCO,United Kingdom,Preston,,TRUE
+7/31/2017 6:05,-26.20410347,28.04730415,STANDARD BANK,South Africa,Johannesburg,,FALSE
+9/12/2017 20:11,40.14323044,-74.72670746,T-MOBILE,United States,Tullytown,New Jersey,TRUE
+7/14/2017 21:45,51.80978394,-0.2376744,MARKS AND SPENCER,United Kingdom,Welwyn Garden City,,FALSE
+11/2/2017 2:58,40.19033051,-82.66947174,NISSAN,United States,Granville South,Ohio,TRUE
+11/20/2017 2:57,23.62574005,-101.9562531,NISSAN,Mexico,Villa de Cos,,TRUE
+11/6/2017 15:58,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+4/12/2017 16:49,32.9709834,-96.7071453,MICROSOFT,United States,Garland,Texas,TRUE
+6/2/2017 16:14,55.04639053,-1.451298952,BRITISH AIRWAYS,United Kingdom,Whitley Bay,,TRUE
+10/26/2017 17:43,27.97579956,-81.5410614,OSHKOSH,United States,Lake Wales,Florida,FALSE
+10/14/2017 17:29,35.78551102,-78.64266968,NISSAN,United States,Raleigh,North Carolina,TRUE
+11/3/2017 16:57,-6.437839985,105.9946213,TELKOMSEL,Indonesia,Jasugih Selatan,,FALSE
+8/23/2017 20:30,49.24729919,-123.1069107,ADIDAS,Canada,Vancouver,,TRUE
+4/28/2017 20:56,48.79044724,11.49788952,KPMG,Germany,Lenting,,FALSE
+9/27/2017 7:45,32.67827988,-83.2229538,PRINGLES,United States,Jeffersonville,Georgia,TRUE
+11/9/2017 13:18,28.60733032,77.20350647,HDFC BANK,India,New Delhi,,TRUE
+8/20/2017 10:32,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,FALSE
+8/21/2017 8:22,28.6439991,77.09100342,UTC,India,N������,,FALSE
+7/3/2017 5:31,38,-97,APPLE INC,United States,Peabody,Kansas,FALSE
+10/17/2017 8:15,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,TRUE
+9/12/2017 23:06,34.7234993,-92.35423279,APPLE INC,United States,Little Rock,Arkansas,TRUE
+8/21/2017 14:53,52.32136917,-1.567100048,LIDL,United Kingdom,Kenilworth,,FALSE
+8/23/2017 11:07,52.94921112,-1.14391005,NIKE,United Kingdom,Nottingham,,FALSE
+11/28/2017 4:43,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+10/23/2017 0:18,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/13/2017 14:07,-27.03060913,-65.32029724,HCL,Argentina,Bella Vista,,FALSE
+11/7/2017 14:02,-7.977610111,112.6229935,TELKOMSEL,Indonesia,Malang,,FALSE
+11/4/2017 23:18,25.78255081,-80.22174835,Apple Computer Inc,United States,Miami,Florida,FALSE
+7/8/2017 20:36,41.75083923,-88.15353394,CITIBANK,United States,Naperville,Illinois,TRUE
+7/21/2017 18:18,46.61352158,7.043612957,UBISOFT,Switzerland,Bulle,,TRUE
+10/11/2017 8:28,-36.84973907,144.3039856,TELSTRA,Australia,Bendigo,,TRUE
+9/1/2017 21:43,52.88356018,-1.974060059,ELECTRONIC ARTS,United Kingdom,Cheadle,,TRUE
+10/5/2017 7:57,41.88415146,-87.63240814,T-MOBILE,United States,Chicago,Illinois,FALSE
+10/30/2017 15:54,33.49398041,-111.9212189,AMERICAN AIRLINES,United States,Scottsdale,Arizona,TRUE
+8/30/2017 23:29,33.53126907,-86.82396698,SERVICENOW,United States,Birmingham,Alabama,FALSE
+10/16/2017 14:01,53.93059921,-1.20788002,ALDI,United Kingdom,Askham Richard,,FALSE
+9/13/2017 2:08,38.0033493,-79.77127075,APPLE INC,United States,Mountain Lake Park,Virginia,TRUE
+10/5/2017 3:55,12.30512047,76.64460754,HDFC BANK,India,Mysore,,TRUE
+7/17/2017 23:32,38,-97,MICROSOFT,United States,Peabody,Kansas,TRUE
+11/5/2017 23:55,40.19033051,-82.66947174,MCDONALDS,United States,Granville South,Ohio,FALSE
+11/25/2017 13:41,38.8848381,-94.81790924,KOHL'S,United States,Olathe,Kansas,TRUE
+6/16/2017 21:08,47.04498672,-122.9007263,CAPITAL ONE,United States,Olympia,Washington,FALSE
+10/6/2017 13:56,52.24116135,1.054479957,Apple Computer Inc,United Kingdom,Stowmarket,,FALSE
+11/9/2017 16:58,20.8336792,70.53833008,MCDONALDS,India,Kod����,,FALSE
+8/30/2017 1:43,31.84983063,-106.4371872,T-MOBILE,United States,Fort Bliss,Texas,TRUE
+11/2/2017 14:40,36.17147827,-86.78423309,NISSAN,United States,Nashville,Tennessee,TRUE
+11/26/2017 16:13,55.95415115,-3.202769995,SSE PLC,United Kingdom,Seafield,,FALSE
+9/1/2017 7:26,52.63695908,-1.129040003,TESCO,United Kingdom,Leicester,,FALSE
+10/27/2017 2:22,-33.85628128,151.0209656,WOOLWORTHS,Australia,Lidcombe,,FALSE
+7/31/2017 3:54,21.78660011,82.7947998,TIMES OF INDIA,India,Seor�������,,TRUE
+10/5/2017 15:13,37.1679306,-95.84501648,FORTUNE,United States,Independence,Kansas,TRUE
+10/6/2017 23:51,33.76319122,-84.42305756,NISSAN,United States,Atlanta,Georgia,FALSE
+11/23/2017 23:06,29.77541924,-95.38188934,NISSAN,United States,Houston,Texas,TRUE
+6/6/2017 14:09,29.7630558,-95.36305237,T-MOBILE,United States,Houston,Texas,FALSE
+11/23/2017 6:03,37.25518036,-83.19682312,WALMART,United States,Hazard,Kentucky,TRUE
+8/26/2017 2:58,28.84584999,-81.66783905,EXXON MOBIL,United States,Eustis,Florida,TRUE
+9/1/2017 18:27,31.16889954,-100.0771484,BEST BUY,United States,Eden,Texas,TRUE
+7/24/2017 18:20,57.156521,-2.12073,LLOYDS TSB BANK PLC,United Kingdom,Aberdeen,,FALSE
+7/16/2017 0:43,-41.28646088,174.7762299,ADIDAS,New Zealand,Wellington,,TRUE
+8/16/2017 0:04,32.78115082,-79.93160248,PEP BOYS,United States,Charleston,South Carolina,TRUE
+5/6/2017 22:20,36.77825928,-119.4179306,SEPHORA,United States,Minkler,California,FALSE
+10/12/2017 3:49,30.44379044,-87.18733215,SPORTS ILLUSTRATED,United States,East Pensacola Heights,Florida,TRUE
+9/29/2017 11:26,53.82572174,-112.7775574,AHOLD,Canada,Lamont,,TRUE
+10/18/2017 18:00,38.90475845,-77.01625061,NISSAN,United States,"Washington, D. C.",Maryland,TRUE
+8/27/2017 23:51,17.33852005,76.83255005,TIMES OF INDIA,India,Gulbarga,,TRUE
+11/8/2017 1:42,40.7038002,-73.8316803,Apple Computer Inc,United States,Byram,New York,TRUE
+6/7/2017 0:19,52.63687897,-1.139759183,EMIRATES,United Kingdom,Leicester,,TRUE
+6/12/2017 23:07,37.14644623,-94.46300507,MCDONALDS,United States,Webb City,Missouri,FALSE
+9/27/2017 16:32,41.88415146,-87.63240814,@AT&T,United States,Chicago,Illinois,FALSE
+11/26/2017 17:50,30.9741993,-91.52381897,NISSAN,United States,Saint Francisville,Louisiana,TRUE
+8/18/2017 0:15,42.35863113,-71.05670166,ADIDAS,United States,Boston,Massachusetts,TRUE
+10/10/2017 8:31,37.80508041,-122.2730713,SPORTS ILLUSTRATED,United States,Oakland,California,FALSE
+11/9/2017 17:48,52.5125618,6.088729858,POSTNL,Netherlands,Zwolle,,FALSE
+11/13/2017 8:06,51.1047287,3.986500025,LEGO,Belgium,Lokeren,,FALSE
+11/28/2017 20:22,51.53276062,-0.106720001,PRIMARK,United Kingdom,Islington,,FALSE
+9/9/2017 0:12,42.35863113,-71.05670166,APPLE INC,United States,Boston,Massachusetts,FALSE
+11/4/2017 5:48,-6.256080151,106.8089981,TELKOMSEL,Indonesia,Jakarta,,FALSE
+9/30/2017 0:18,18.53610992,73.85218048,SHOPPERS STOP,India,Shivaji Nagar,,FALSE
+10/13/2017 14:19,30.06142044,-95.38313293,NISSAN,United States,Aldine,Texas,TRUE
+6/16/2017 0:18,28.61393929,77.20902252,BRITISH AIRWAYS,India,New Delhi,,FALSE
+11/16/2017 6:48,48.85692978,2.341200113,NISSAN,France,Paris,,TRUE
+11/8/2017 0:38,19.09028053,72.87136841,PVR,India,Mumbai,,FALSE
+10/10/2017 14:22,53.12916946,-1.303859949,NISSAN,United Kingdom,Blackwell,,TRUE
+6/7/2017 9:57,52.24047852,-0.902656019,BEST BUY,United Kingdom,Northampton,,TRUE
+4/20/2017 20:28,36.77825928,-119.4179306,T-MOBILE,United States,Minkler,California,FALSE
+6/6/2017 15:19,41.87811279,-87.62979889,T-MOBILE,United States,Chicago,Illinois,TRUE
+7/24/2017 2:56,41.67710876,-71.26620483,AMERICAN AIRLINES,United States,Bristol,Rhode Island,TRUE
+8/12/2017 22:40,51.47022247,-0.487078428,BRITISH AIRWAYS,United Kingdom,Iver,,FALSE
+9/10/2017 4:13,20.74803925,72.96118164,APPLE INC,India,Bilimora,,FALSE
+10/4/2017 23:06,38.30812073,-95.95667267,NISSAN,United States,Burlington,Kansas,TRUE
+8/30/2017 11:59,51.14377975,3.34085989,HCL,Belgium,Beernem,,TRUE
+8/17/2017 15:02,38.96097183,-94.74056244,ALDI,United States,Lenexa,Kansas,TRUE
+10/14/2017 17:58,35.72930908,-81.3414917,NISSAN,United States,Hickory,North Carolina,TRUE
+7/19/2017 18:58,52.37669,5.22281,GUCCI,Netherlands,Almere Stad,,FALSE
+9/8/2017 13:00,40.89022064,-74.0109787,COGNIZANT,United States,Byram,New Jersey,FALSE
+11/3/2017 13:13,56.07489014,26.72994041,APPLE INC,Latvia,Prei��,,TRUE
+11/19/2017 2:15,39.38029861,-97.12422943,NISSAN,United States,Clay Center,Kansas,TRUE
+11/14/2017 14:09,-6.437839985,105.9946213,TELKOMSEL,Indonesia,Jasugih Selatan,,FALSE
+7/24/2017 17:24,43.54459763,-96.73110199,APPLE INC,United States,Sioux Falls,South Dakota,FALSE
+9/21/2017 15:22,5.717539787,0.025669999,FIRSTBANK NIGERIA,Ghana,Tema,,TRUE
+9/25/2017 21:21,33.39434052,-84.57131958,VERIZON,United States,Peachtree City,Georgia,FALSE
+8/30/2017 1:06,50.96250153,-1.588490009,Apple Computer Inc,United Kingdom,West Wellow,,FALSE
+11/28/2017 8:47,21.78660011,82.79476166,INFOSYS,India,Seor�������,,TRUE
+11/27/2017 16:47,37.47452164,-82.51541138,NISSAN,United States,Pikeville,Kentucky,TRUE
+11/19/2017 1:56,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+10/12/2017 3:35,28.64422989,77.35917664,STANDARD BANK,India,Noida,,TRUE
+9/3/2017 9:13,53.93059921,-1.20788002,MARKS AND SPENCER,United Kingdom,Askham Richard,,FALSE
+6/5/2017 5:55,-33.86882019,151.2092896,TELSTRA,Australia,Sydney,,TRUE
+10/4/2017 15:22,35.78551102,-78.64266968,NISSAN,United States,Raleigh,North Carolina,TRUE
+5/18/2017 11:04,15.31727791,75.71389008,INFORMATICA,India,Gadag,,FALSE
+11/7/2017 1:35,41.37070084,-75.74120331,APPLE INC,United States,Old Forge,Pennsylvania,FALSE
+11/20/2017 14:59,-6.256080151,106.8089981,TELKOMSEL,Indonesia,Jakarta,,FALSE
+4/1/2017 1:19,46.729553,-94.6858998,KOHL'S,United States,Nowthen,Minnesota,FALSE
+10/7/2017 0:39,36.82394028,-119.696579,NISSAN,United States,Clovis,California,TRUE
+11/19/2017 21:13,-26.2049408,28.04002953,AFRICAN BANK,South Africa,Johannesburg,,FALSE
+10/25/2017 19:20,40.00762939,-75.13395691,NISSAN,United States,Philadelphia,Pennsylvania,TRUE
+10/17/2017 10:50,22.31487083,73.17865753,JET AIRWAYS,India,Vadodara,,FALSE
+6/17/2017 19:27,27.94722176,-82.45861053,AMERICAN AIRLINES,United States,Tampa,Florida,FALSE
+9/27/2017 15:36,36.17147827,-86.78423309,Apple Computer Inc,United States,Nashville,Tennessee,TRUE
+11/1/2017 2:55,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+9/17/2017 3:29,34.05350113,-118.2450027,SEPHORA,United States,Los Angeles,California,FALSE
+5/23/2017 2:28,42.4072113,-71.38243866,LUCKY CHARMS,United States,Sudbury,Massachusetts,FALSE
+6/12/2017 5:06,32.78333282,-96.80000305,AMERICAN AIRLINES,United States,Dallas,Texas,TRUE
+6/18/2017 17:00,32.65618515,-117.0657425,GALADARI BROTHERS,United States,Chula Vista,California,FALSE
+6/6/2017 18:01,43.82310867,-111.7924271,SHELL,United States,Rexburg,Idaho,FALSE
+6/4/2017 19:34,34.3916626,-118.5425873,T-MOBILE,United States,Santa Clarita,California,TRUE
+10/15/2017 19:45,40.43130112,-79.98069763,NISSAN,United States,Pittsburgh,Pennsylvania,TRUE
+11/25/2017 20:41,40.5141716,-112.033493,NISSAN,United States,Herriman,Utah,TRUE
+5/17/2017 7:14,24.71355248,46.67529678,STC,Saudi Arabia,Riyadh,,FALSE
+10/28/2017 18:06,51.52508926,-0.332399994,JET AIRWAYS,United Kingdom,Southall,,FALSE
+9/27/2017 15:06,50.80400848,-1.087280035,Apple Computer Inc,United Kingdom,Portsmouth,,TRUE
+10/4/2017 17:57,38.81840897,-77.08621216,VERIZON,United States,Glassmanor,Virginia,TRUE
+9/18/2017 22:15,-37.86579895,145.102829,PEOPLE,Australia,Ashwood,,FALSE
+7/30/2017 16:30,25.95734978,-80.23753357,NIKE,United States,Lake Lucerne,Florida,FALSE
+8/29/2017 2:33,41.88415146,-87.63240814,HPE,United States,Chicago,Illinois,TRUE
+10/16/2017 0:16,33.27656174,-112.1870575,NISSAN,United States,Laveen,Arizona,TRUE
+11/22/2017 0:53,55.85639954,-61.7158699,AMERICAN AIRLINES,Canada,Happy Valley-Goose Bay,,TRUE
+9/10/2017 23:37,31.16889954,-100.0771484,NIKE,United States,Eden,Texas,TRUE
+5/21/2017 10:43,39.04575348,-76.6412735,KOHL'S,United States,Gambrills,Maryland,FALSE
+11/5/2017 1:51,37.1679306,-95.84501648,T-MOBILE,United States,Independence,Kansas,TRUE
+6/15/2017 20:37,40.76636124,-111.8905869,TESCO,United States,Salt Lake City,Utah,TRUE
+10/14/2017 3:59,38.0033493,-79.77127075,NISSAN,United States,Mountain Lake Park,Virginia,TRUE
+11/23/2017 14:04,-28.47933006,24.67992973,AIRFRANCE,South Africa,Barkly West,,FALSE
+4/16/2017 12:15,-41.4545196,145.9706648,TELSTRA,Australia,Penguin,,FALSE
+7/9/2017 17:26,51.50735092,-0.127758294,SWISS AIRLINE,United Kingdom,London,,FALSE
+11/23/2017 3:34,36.1257782,-95.91430664,NISSAN,United States,Tulsa,Oklahoma,TRUE
+7/14/2017 0:06,25.90870476,-80.30866241,FEDEX,United States,Miami Lakes,Florida,TRUE
+10/10/2017 6:05,28.60733032,77.20350647,HDFC BANK,India,New Delhi,,TRUE
+11/2/2017 22:20,40.19033051,-82.66947174,MCDONALDS,United States,Granville South,Ohio,FALSE
+11/4/2017 15:42,13.79687023,-88.91879272,STANDARD BANK,El Salvador,San Mart��,,FALSE
+11/7/2017 16:35,11.09663963,77.34896088,TAJ HOTELS,India,Tiruppur,,TRUE
+7/28/2017 23:42,34.06895447,-118.3474808,NIKE,United States,West Hollywood,California,TRUE
+9/15/2017 7:33,51.50640106,-0.127210006,ALDI,United Kingdom,London,,TRUE
+9/29/2017 5:12,-33.85628128,151.0209656,TELSTRA,Australia,Lidcombe,,TRUE
+10/15/2017 17:57,28.47932053,-81.34429169,AMERICAN AIRLINES,United States,Pine Castle,Florida,FALSE
+10/9/2017 0:32,33.4468689,-96.74337769,NISSAN,United States,Gunter,Texas,TRUE
+11/20/2017 23:10,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+11/16/2017 13:42,-6.926730156,107.6885529,AMERICAN AIRLINES,Indonesia,Cileunyi,,FALSE
+11/3/2017 20:37,40.99470901,-77.60453796,NISSAN,United States,Zion,Pennsylvania,TRUE
+11/2/2017 2:34,40.71455002,-74.00711823,Apple Computer Inc,United States,Byram,New Jersey,TRUE
+10/24/2017 2:40,28.23645973,-81.29116821,MCCLATCHY,United States,Saint Cloud,Florida,FALSE
+7/25/2017 19:29,43.65322495,-79.38318634,EXXON MOBIL,Canada,Toronto,,FALSE
+7/14/2017 4:13,36.77825928,-119.4179306,HONDA,United States,Minkler,California,FALSE
+6/28/2017 15:41,38.89500046,-77.03666687,EY,United States,"Washington, D. C.",Maryland,FALSE
+11/18/2017 7:33,35.65446854,-97.4781189,NISSAN,United States,Edmond,Oklahoma,TRUE
+10/26/2017 8:52,-37.86579895,145.102829,TELSTRA,Australia,Ashwood,,FALSE
+7/25/2017 13:13,40.82683945,9.278558731,Apple Computer Inc,Italy,Monti,,TRUE
+10/26/2017 7:26,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,FALSE
+11/18/2017 19:34,41.5047493,-81.6907196,NISSAN,United States,Montrose-Ghent,Ohio,TRUE
+10/11/2017 14:12,30.06887054,-89.93135834,T-MOBILE,United States,Chalmette,Louisiana,TRUE
+9/28/2017 21:30,40.81362152,-96.70774078,Apple Computer Inc,United States,Offutt Air Force Base,Nebraska,FALSE
+9/5/2017 11:52,-33.85628128,151.0209656,TIMES OF INDIA,Australia,Lidcombe,,FALSE
+9/15/2017 4:34,-33.85628128,151.0209656,TELSTRA,Australia,Lidcombe,,TRUE
+6/29/2017 23:10,55.86423874,-4.251805782,TESCO,United Kingdom,Rutherglen,,FALSE
+7/7/2017 7:49,38.96374512,35.24332047,TURKCELL,Turkey,Himmetdede,,TRUE
+5/8/2017 14:28,35.00775146,-97.09288025,STANLEY BLACK AND DECKER,United States,Lexington,Oklahoma,FALSE
+9/13/2017 16:54,38.81840897,-77.08621216,AMERICAN AIRLINES,United States,Glassmanor,Virginia,TRUE
+10/5/2017 13:43,44.09775925,-70.22928619,PRINGLES,United States,Dayton,Maine,FALSE
+6/25/2017 18:14,52.35551834,-1.174319744,TESCO,United Kingdom,Rugby,,FALSE
+6/24/2017 2:42,42.36008072,-71.05888367,JOHNSON & JOHNSON,United States,Boston,Massachusetts,FALSE
+9/14/2017 17:42,43.64855957,-79.38536835,LOBLAWS,Canada,Toronto,,TRUE
+10/15/2017 0:06,40.68291092,-79.68366241,NISSAN,United States,West Leechburg,Pennsylvania,TRUE
+8/16/2017 17:11,37.1679306,-95.84501648,CAMPBELL SOUP,United States,Independence,Kansas,FALSE
+11/28/2017 16:06,-21.1679306,-175.1959991,T-MOBILE,Tonga,Haveluloto,,FALSE
+9/20/2017 15:18,21.78660011,82.79476166,JET AIRWAYS ,India,Seor�������,,FALSE
+10/6/2017 2:37,19.09028053,72.87136841,Apple Computer Inc,India,Mumbai,,FALSE
+8/31/2017 0:10,51.45378876,-2.59168005,ALDI,United Kingdom,Bristol,,FALSE
+9/11/2017 16:37,52.19424057,-1.707520008,BRITISH AIRWAYS,United Kingdom,Stratford-upon-Avon,,TRUE
+7/16/2017 0:25,34.04786301,100.6196518,MICROSOFT,China,Xia Zanggor,,TRUE
+8/9/2017 11:08,52.28276443,-1.552232265,LIDL,United Kingdom,Royal Leamington Spa,,TRUE
+6/6/2017 17:11,33.35282516,-111.7890244,T-MOBILE,United States,Gilbert,Arizona,TRUE
+10/12/2017 4:19,31.16889954,-100.0771484,PEOPLE,United States,Eden,Texas,FALSE
+11/22/2017 6:21,34.05350113,-118.2450027,NISSAN,United States,Los Angeles,California,TRUE
+8/23/2017 0:35,39.76617813,-86.44104767,ALDI,United States,Avon,Indiana,TRUE
+6/10/2017 16:48,37.82717896,-122.2913055,Apple Computer Inc,United States,Emeryville,California,TRUE
+6/22/2017 16:14,52.82937241,-1.332134008,MCDONALDS,United Kingdom,Castle Donington,,TRUE
+11/5/2017 9:25,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+11/16/2017 15:34,42.3316803,-83.04792023,SPORTS ILLUSTRATED,Canada,Windsor,,TRUE
+6/13/2017 3:13,-24.9121,133.397995,TELSTRA,Australia,Alice Springs,,TRUE
+8/24/2017 22:01,44.05500031,-70.70410156,APPLE INC,United States,Dayton,Maine,TRUE
+8/30/2017 16:09,52.3461113,-1.139799953,SPORTS DIRECT,United Kingdom,Long Buckby,,TRUE
+10/23/2017 8:46,21.78660011,82.79476166,APPLE INC,India,Seor�������,,FALSE
+7/13/2017 1:12,38.99816513,-77.28831482,FEDEX,United States,Travilah,Virginia,FALSE
+10/4/2017 7:27,51.16418076,10.4541502,NISSAN,Germany,Niederdorla,,TRUE
+11/15/2017 0:24,24.64731979,46.71458054,LOVEWINS CAMPAIGN,Saudi Arabia,Riyadh,,FALSE
+8/17/2017 16:51,28.60733032,77.20350647,TIMES OF INDIA,India,New Delhi,,TRUE
+9/26/2017 0:50,10.43443012,-61.41807938,Apple Computer Inc,Trinidad and Tobago,Couva,,TRUE
+11/25/2017 17:52,40.99470901,-77.60453796,NISSAN,United States,Zion,Pennsylvania,TRUE
+10/10/2017 14:26,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,TRUE
+6/15/2017 13:11,52.35551834,-1.174319744,THOMAS COOK GROUP,United Kingdom,Rugby,,FALSE
+10/14/2017 1:54,-30.17848015,151.2270966,SPORTS ILLUSTRATED,Australia,Gilgai,,TRUE
+4/21/2017 14:12,-7.090910912,107.6688843,TELKOMSEL,Indonesia,Banjaran,,TRUE
+9/4/2017 2:35,13.79687023,-88.91879272,TCS,El Salvador,San Mart��,,TRUE
+11/5/2017 20:26,27.44288063,-81.25187683,SPORTS ILLUSTRATED,United States,Lake Placid,Florida,FALSE
+11/6/2017 23:28,43.94272995,12.45979023,Apple Computer Inc,San Marino,Borgo Maggiore,,TRUE
+11/24/2017 17:40,37.82244873,-85.69091034,NISSAN,United States,Lebanon Junction,Kentucky,TRUE
+6/28/2017 0:19,38.818409,-77.086212,FEDEX,United States,Glassmanor,Virginia,TRUE
+7/30/2017 3:34,30.30637,-97.752762,ADIDAS,United States,Austin,Texas,TRUE
+7/28/2017 18:41,28.53805542,-81.37944794,FEDEX,United States,Orlando,Florida,FALSE
+10/14/2017 15:09,40.42369843,-79.82460022,NISSAN,United States,Turtle Creek,Pennsylvania,FALSE
+9/16/2017 3:11,42.3316803,-83.04792023,WALMART,Canada,Windsor,,FALSE
+11/15/2017 19:08,46.44231033,-93.36585999,JC PENNEY,United States,Grantsburg,Minnesota,FALSE
+10/26/2017 7:45,39.35057831,-86.66562653,NISSAN,United States,Spencer,Indiana,TRUE
+9/30/2017 6:06,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,TRUE
+10/15/2017 3:31,36.09360123,-96.98760986,NISSAN,United States,Stillwater,Oklahoma,FALSE
+7/28/2017 13:03,48.35449982,11.78465366,BRITISH AIRWAYS,Germany,Hallbergmoos,,TRUE
+11/25/2017 22:52,35.84568024,14.50370026,NISSAN,Malta,Gudja,,TRUE
+9/13/2017 6:16,43.54261017,-97.98323822,APPLE INC,United States,Parkston,South Dakota,TRUE
+10/27/2017 6:15,38.56789017,-121.4688492,NISSAN,United States,Sacramento,California,TRUE
+10/26/2017 18:43,29.89624977,-89.89198303,MCDONALDS,United States,Violet,Louisiana,FALSE
+8/2/2017 9:34,51.49220657,-0.223288104,BRITISH AIRWAYS,United Kingdom,Kensington,,TRUE
+6/17/2017 9:22,53.54999924,2.433000088,TESCO,United Kingdom,Caister-on-Sea,,FALSE
+10/15/2017 0:12,40.14323044,-74.72670746,NISSAN,United States,Tullytown,New Jersey,TRUE
+8/19/2017 21:20,-8.040289879,-34.93355942,SPORT CLUB CORINTHIANS PAULISTA,Brazil,Recife,,TRUE
+10/18/2017 20:39,56.65285873,-3.996670008,LEGO,United Kingdom,Aberfeldy,,FALSE
+9/18/2017 13:51,18.53610992,73.85218048,COGNIZANT,India,Shivaji Nagar,,TRUE
+11/9/2017 20:58,56.9546814,-98.30896759,PEOPLE,Canada,Thompson,,TRUE
+11/24/2017 23:38,19.09028053,72.87136841,JET AIRWAYS,India,Mumbai,,FALSE
+11/18/2017 20:13,33.36228943,-97.17173767,NISSAN,United States,Denton,Texas,TRUE
+6/25/2017 14:57,25.76586914,-80.13409424,BANK OF AMERICA,United States,Miami Beach,Florida,TRUE
+10/13/2017 22:22,33.73789978,-118.2850037,AMERICAN AIRLINES,United States,San Pedro,California,TRUE
+9/11/2017 18:32,47.61001968,-122.187851,MICROSOFT - WINDOWS 10,United States,Bellevue,Washington,TRUE
+11/20/2017 13:03,53.44229889,-2.233409882,ALDI,United Kingdom,Fallowfield,,FALSE
+5/26/2017 16:16,36.77825928,-119.4179306,PURESTORAGE,United States,Minkler,California,FALSE
+11/23/2017 16:00,-6.256080151,106.8089981,NISSAN,Indonesia,Jakarta,,FALSE
+10/12/2017 15:38,37.2718811,-119.2702332,AMERICAN AIRLINES,United States,Auberry,California,TRUE
+10/18/2017 1:58,32.70951843,-96.00462341,MCDONALDS,United States,Edgewood,Texas,FALSE
+10/28/2017 10:25,43.11891937,-123.4224014,MCCLATCHY,United States,Winston,Oregon,FALSE
+6/6/2017 14:01,45.52306366,-122.6764832,T-MOBILE,United States,Portland,Oregon,FALSE
+8/21/2017 15:02,51.13336945,0.263550013,ALDI,United Kingdom,Royal Tunbridge Wells,,FALSE
+10/18/2017 20:57,37.1679306,-95.84501648,KROGER,United States,Independence,Kansas,TRUE
+11/17/2017 19:46,35.78551102,-78.64266968,NISSAN,United States,Raleigh,North Carolina,TRUE
+10/17/2017 23:08,38.25889969,-92.4365921,NISSAN,United States,Tuscumbia,Missouri,TRUE
+11/8/2017 2:17,7.920589924,98.36833191,CAPITAL ONE,Thailand,Ban Ko Kaeo,,TRUE
+11/28/2017 3:40,39.14126968,-84.50518799,ASURION,United States,Saint Bernard,Ohio,FALSE
+9/21/2017 20:53,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+11/1/2017 20:35,37.31895828,-122.0292816,IKEA,United States,Cupertino,California,TRUE
+11/27/2017 13:34,40.03979874,-76.30000305,ALDI,United States,Uxbridge,Pennsylvania,FALSE
+10/17/2017 22:17,37.1679306,-95.84501648,FORTUNE,United States,Independence,Kansas,TRUE
+11/17/2017 21:09,44.11558914,-120.5148392,NISSAN,United States,Prineville,Oregon,TRUE
+11/23/2017 7:46,37.26425171,-100.5897675,MICROSOFT,United States,Plains,Kansas,TRUE
+5/14/2017 15:45,52.52058792,4.788474083,SHELL,Netherlands,Zaanstad,,FALSE
+9/1/2017 8:25,-33.82175827,18.51572037,LIDL,South Africa,Sunset Beach,,TRUE
+11/17/2017 18:16,41.84333038,-87.79089355,NISSAN,United States,Berwyn,Illinois,TRUE
+11/20/2017 19:14,54.31407166,-2.230010033,ALDI,United Kingdom,Kirkby Stephen,,TRUE
+10/26/2017 22:51,38.82350159,-75.92381287,NISSAN,United States,Denton,Maryland,TRUE
+8/23/2017 15:14,32.34746933,-95.29429626,WALMART,United States,Chandler,Texas,TRUE
+11/23/2017 3:14,32.78182983,-96.79586029,NISSAN,United States,Dallas,Texas,TRUE
+10/17/2017 0:25,52.37311935,4.893189907,POSTNL,Netherlands,Amsterdam,,TRUE
+8/14/2017 23:28,35,136,NISSAN,Japan,Kusatsu,,FALSE
+10/14/2017 18:30,63.03649902,-149.1060028,NISSAN,United States,Healy,Alaska,TRUE
+11/1/2017 18:14,51.50640106,-0.127210006,TESCO,United Kingdom,London,,TRUE
+11/28/2017 18:17,42.18420029,-71.7181778,SPORTS ILLUSTRATED,United States,Grafton,Massachusetts,TRUE
+11/22/2017 1:32,19.09028053,72.87136841,JET AIRWAYS,India,Mumbai,,FALSE
+8/25/2017 0:16,32.96073914,-96.73297119,NISSAN,United States,Addison,Texas,TRUE
+10/11/2017 16:49,24.44392967,54.41904831,EMIRATES,United Arab Emirates,Abu Dhabi,,TRUE
+6/27/2017 19:09,47.67398834,-122.1215134,MICROSOFT - WINDOWS 10,United States,Redmond,Washington,FALSE
+11/14/2017 17:55,51.52769852,0.11479,MARKS AND SPENCER,United Kingdom,Becontree,,TRUE
+10/18/2017 18:43,41.71163177,-87.60066986,BRITISH AIRWAYS,United States,Dolton,Illinois,TRUE
+7/19/2017 17:45,-25.74786758,28.22927094,STANDARD BANK,South Africa,Pretoria,,TRUE
+9/30/2017 14:32,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,FALSE
+4/5/2017 7:58,25.09607506,85.31311798,AIRBUS,India,Silao,,FALSE
+7/12/2017 0:23,32.71527863,-117.1563873,BRITISH AIRWAYS,United States,San Diego,California,TRUE
+7/25/2017 7:13,17.3850441,78.48667145,MICROSOFT SUPPORT,India,Hyderabad,,FALSE
+11/27/2017 7:05,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+9/12/2017 18:18,17.41840935,78.45001221,HEINEKEN,India,Hyderabad,,FALSE
+11/2/2017 22:49,43.93537903,-69.35894775,STANDARD BANK,United States,Carmel,Maine,TRUE
+10/26/2017 10:51,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,FALSE
+11/20/2017 14:18,40.5931015,-75.47470093,NISSAN,United States,North Catasauqua,Pennsylvania,TRUE
+7/18/2017 18:06,42.38759613,-71.09949493,DELOITTE,United States,Somerville,Massachusetts,TRUE
+8/11/2017 3:53,55.94653702,11.73196125,ADIDAS,Denmark,Nyk���������,,FALSE
+11/26/2017 4:56,41.5047493,-81.6907196,NISSAN,United States,Montrose-Ghent,Ohio,TRUE
+11/25/2017 19:04,49.38425827,-84.75627136,COTY - CALVIN KLEIN,Canada,Hornepayne,,TRUE
+11/25/2017 9:28,24.26119041,45.12033081,STANDARD BANK,Saudi Arabia,Ad Daw�����,,FALSE
+6/26/2017 21:20,51.5,-0.116667002,BRITISH AIRWAYS,United Kingdom,City of Westminster,,FALSE
+9/28/2017 7:01,51.56175995,-1.781810045,TESCO,United Kingdom,Swindon,,FALSE
+11/9/2017 13:32,26.27969933,73.02642059,BIG BAZAAR,India,Jodhpur,,FALSE
+11/22/2017 7:03,28.60733032,77.20350647,TIMES OF INDIA,India,New Delhi,,TRUE
+6/10/2017 20:01,53.38420868,-6.375973701,WALMART,Ireland,Blanchardstown,,FALSE
+10/12/2017 0:20,29.77541924,-95.38188934,T-MOBILE,United States,Houston,Texas,FALSE
+6/2/2017 18:04,40.76371002,-73.36984253,VOLKSWAGEN USA,United States,Setauket-East Setauket,New York,FALSE
+9/8/2017 0:21,51.50640106,-0.127210006,APPLE INC,United Kingdom,London,,TRUE
+9/25/2017 7:45,53.46968842,-1.343960047,TESCO,United Kingdom,Rawmarsh,,TRUE
+6/2/2017 19:12,53.79999924,-1.583333015,BRITISH AIRWAYS,United Kingdom,Leeds,,TRUE
+7/21/2017 18:18,32.89567566,-97.04376984,BRITISH AIRWAYS,United States,Grapevine,Texas,FALSE
+10/10/2017 17:15,38.25485992,-85.7664032,T-MOBILE,United States,Louisville,Kentucky,TRUE
+8/26/2017 17:18,53.74121857,-2.014489889,MARKS AND SPENCER,United Kingdom,Mytholmroyd,,TRUE
+11/20/2017 2:12,54.97789001,-1.611619949,BRITISH AIRWAYS,United Kingdom,Newcastle upon Tyne,,TRUE
+6/1/2017 16:47,30.30637,-97.752762,AMERICAN AIRLINES,United States,Austin,Texas,TRUE
+10/6/2017 14:50,34.10285187,-84.50837708,NISSAN,United States,Woodstock,Georgia,TRUE
+9/15/2017 2:30,34.15097046,-118.4063187,COTY - CALVIN KLEIN,United States,North Hollywood,California,TRUE
+8/28/2017 2:09,33.76319122,-84.42305756,HPE,United States,Atlanta,Georgia,FALSE
+10/13/2017 19:48,-21.54290962,-54.81861877,AZUL AIRLINES,Brazil,Maracaju,,FALSE
+8/29/2017 14:46,50.90996933,-1.407089949,Apple Computer Inc,United Kingdom,Southampton,,TRUE
+11/18/2017 18:21,48.8780899,2.591160059,MICROSOFT,France,Chelles,,FALSE
+8/21/2017 3:36,51.50640106,-0.127210006,MCDONALDS,United Kingdom,London,,TRUE
+8/22/2017 18:47,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,FALSE
+7/29/2017 11:22,-25.42792892,-49.25711441,ADIDAS,Brazil,Curitiba,,TRUE
+11/13/2017 17:00,48.08116913,-122.1560669,IKEA,United States,Marysville,Washington,TRUE
+6/14/2017 9:59,22.30225182,70.78640747,QATAR AIRWAYS,India,R����,,FALSE
+5/23/2017 6:56,40.71278381,-74.0059433,CA,United States,Byram,New York,FALSE
+9/21/2017 20:06,52.88356018,-1.974060059,Apple Computer Inc,United Kingdom,Cheadle,,FALSE
+11/8/2017 5:37,47.17367935,15.54518032,APPLE INC,Austria,Kumberg,,FALSE
+10/4/2017 10:06,45.45909119,-98.48731995,NISSAN,United States,Aberdeen,South Dakota,TRUE
+10/5/2017 21:01,37.2718811,-119.2702332,NISSAN,United States,Auberry,California,TRUE
+6/6/2017 2:29,-37.81362915,144.9630585,TELSTRA,Australia,Melbourne,,TRUE
+6/11/2017 14:43,27.66482735,-81.5157547,BEST BUY,United States,Avon Park,Florida,TRUE
+10/17/2017 2:48,39.67755127,-75.75747681,NISSAN,United States,Newark,Delaware,TRUE
+9/15/2017 1:25,37.1679306,-95.84501648,APPLE INC,United States,Independence,Kansas,FALSE
+7/15/2017 16:01,35.05266571,-78.87835693,MOHAWK,United States,Fayetteville,North Carolina,FALSE
+10/18/2017 3:26,28.60733032,77.20350647,TIMES OF INDIA,India,New Delhi,,TRUE
+6/17/2017 0:37,41.87811279,-87.62979889,ERNST & YOUNG ,United States,Chicago,Illinois,FALSE
+8/16/2017 17:11,40.99470901,-77.60453796,CAMPBELL SOUP,United States,Zion,Pennsylvania,TRUE
+6/22/2017 16:09,50.85033798,4.35171032,IATA,Belgium,Brussels,,TRUE
+8/19/2017 1:54,36.17147827,-86.78423309,SEPHORA,United States,Nashville,Tennessee,TRUE
+10/14/2017 16:40,31.84983063,-106.4371872,NISSAN,United States,Fort Bliss,Texas,TRUE
+11/9/2017 0:50,52.20980072,0.111469999,BTTV,United Kingdom,Cambridge,,FALSE
+10/30/2017 18:30,36.80020142,-114.1383286,BEST BUY,United States,Bunkerville,Nevada,FALSE
+6/6/2017 18:31,41.08139038,-81.51916504,SHELL,United States,Montrose-Ghent,Ohio,TRUE
+9/19/2017 16:10,41.39831924,-73.29206848,MASTERCARD,United States,Newtown,Connecticut,TRUE
+7/7/2017 0:15,39.04575348,-76.6412735,BRITISH AIRWAYS,United States,Gambrills,Maryland,FALSE
+3/30/2017 12:35,-34.60368347,-58.38155746,PFIZER,Argentina,Buenos Aires,,FALSE
+11/18/2017 23:23,35.46617889,-97.51483917,NISSAN,United States,Oklahoma City,Oklahoma,TRUE
+5/7/2017 2:04,41.6032207,-73.087749,T-MOBILE,United States,Watertown,Connecticut,FALSE
+11/20/2017 14:20,44.6446991,10.92656994,NISSAN,Italy,Modena,,FALSE
+9/6/2017 16:34,41.51776123,-72.75753021,MASTERCARD,United States,Wallingford Center,Connecticut,TRUE
+8/28/2017 20:11,28.60733032,77.20350647,PVR,India,New Delhi,,TRUE
+7/18/2017 16:01,35.05266571,-78.87835693,MOHAWK,United States,Fayetteville,North Carolina,FALSE
+9/12/2017 13:05,12.97754002,77.59951019,BAJAJ FINSERV,India,Bangalore,,TRUE
+11/6/2017 4:24,19.09028053,72.87136841,JET AIRWAYS,India,Mumbai,,FALSE
+11/29/2017 6:45,-38.59917831,-69.99022675,EURO WINGS,Argentina,Mariano Moreno,,FALSE
+9/8/2017 0:45,34.31201935,-118.4460678,BEST BUY,United States,San Fernando,California,TRUE
+8/29/2017 18:20,39.89488983,-2.988310099,UBISOFT,Spain,Torrubia del Campo,,TRUE
+9/1/2017 7:23,10.54736996,76.138237,ISRO,India,Avanoor,,FALSE
+6/28/2017 15:19,43.16102982,-77.61092377,IKEA,Canada,Prince Edward,,TRUE
+9/9/2017 22:33,40.42142868,-3.671629906,EURO WINGS,Spain,Salamanca,,TRUE
+11/4/2017 7:45,53.4100914,-2.978430033,Apple Computer Inc,United Kingdom,Liverpool,,TRUE
+6/9/2017 11:25,43.5130043,4.987967968,AIRBUS,France,Istres,,FALSE
+11/27/2017 18:50,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+8/22/2017 15:56,48.85692978,2.341200113,NIKE,France,Paris,,TRUE
+9/7/2017 22:19,51.50640106,-0.127210006,ALDI,United Kingdom,London,,FALSE
+9/5/2017 22:57,38.82350159,-75.92381287,NISSAN,United States,Denton,Maryland,FALSE
+11/8/2017 20:32,44.69266129,10.62845993,APPLE INC,Italy,Reggio nell'Emilia,,FALSE
+11/6/2017 15:54,40.14323044,-74.72670746,NISSAN,United States,Tullytown,New Jersey,TRUE
+8/24/2017 2:04,41.40232086,-75.66155243,UBISOFT,United States,Scranton,Pennsylvania,TRUE
+11/14/2017 21:26,40.85250854,-73.135849,@AT&T,United States,Setauket-East Setauket,New York,TRUE
+6/20/2017 13:11,41.67166519,-72.94972229,ERNST & YOUNG ,United States,Bristol,Connecticut,FALSE
+4/4/2017 14:19,52.35551834,-1.174319744,STANDARD CHARTERED,United Kingdom,Rugby,,FALSE
+9/14/2017 17:19,42.36679077,-71.10601044,ELECTRONIC ARTS,United States,Cambridge,Massachusetts,TRUE
+10/30/2017 15:43,28.47932053,-81.34429169,T-MOBILE,United States,Pine Castle,Florida,FALSE
+9/9/2017 1:55,37.1679306,-95.84501648,ADIDAS,United States,Independence,Kansas,TRUE
+11/19/2017 17:01,41.56468964,-83.42552948,NISSAN,Canada,Amherstburg,,TRUE
+7/25/2017 0:17,38,-97,Apple Computer Inc,United States,Peabody,Kansas,TRUE
+8/26/2017 0:15,52.40444946,-3.985120058,MARKS AND SPENCER,United Kingdom,Bow Street,,TRUE
+9/27/2017 16:36,56.33929062,-2.796139956,TESCO,United Kingdom,Saint Andrews,,FALSE
+8/25/2017 11:06,43.64855957,-79.38536835,IKEA,Canada,Toronto,,FALSE
+7/4/2017 16:22,39.73923492,-104.9902496,AMERICAN AIRLINES,United States,Denver,Colorado,TRUE
+7/15/2017 10:22,36.17499924,-115.1363907,MCDONALDS,United States,Las Vegas,Nevada,TRUE
+6/24/2017 2:42,44.84144592,-93.17493439,AMERICAN AIRLINES,United States,Elko New Market,Minnesota,FALSE
+10/6/2017 9:29,54.57300949,-1.23763001,ALDI,United Kingdom,Middlesbrough,,FALSE
+4/20/2017 0:01,38.59762573,-80.45490265,SEPHORA,United States,Newport,West Virginia,FALSE
+11/3/2017 10:29,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,TRUE
+8/29/2017 1:51,33.55831146,-112.0807495,LAWA,United States,Glendale,Arizona,TRUE
+11/1/2017 1:31,35.78932953,-78.78117371,NISSAN,United States,Cary,North Carolina,TRUE
+9/4/2017 21:02,-14.24289989,-54.38779831,IPIRANGA,Brazil,Poxor��,,TRUE
+9/14/2017 2:43,-0.361699998,-52.14751053,SPORT CLUB CORINTHIANS PAULISTA,Brazil,Mazag��,,TRUE
+9/28/2017 5:08,33.67795944,-117.8857803,NISSAN,United States,Costa Mesa,California,TRUE
+11/24/2017 22:01,51.98014832,5.903639793,POSTNL,Netherlands,Arnhem,,FALSE
+9/25/2017 17:20,43.74269867,-84.62167358,NISSAN,United States,Barnes Lake-Millers Lake,Michigan,TRUE
+7/2/2017 19:38,52.41181183,-1.777609944,Apple Computer Inc,United Kingdom,Solihull,,FALSE
+10/17/2017 23:44,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+11/24/2017 2:06,36.1257782,-95.91430664,NISSAN,United States,Tulsa,Oklahoma,TRUE
+11/21/2017 1:29,37.78818893,-81.18424988,PEOPLE,United States,Mount Gay-Shamrock,West Virginia,TRUE
+11/6/2017 13:40,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/1/2017 14:59,43.64855957,-79.38536835,PEOPLE,Canada,Toronto,,FALSE
+11/23/2017 15:42,-6.926730156,107.6885529,LEGO,Indonesia,Cileunyi,,FALSE
+11/2/2017 0:12,9.436840057,77.56101227,TIMES OF INDIA,India,Rajapalaiyam,,TRUE
+7/15/2017 16:07,40.71416855,-74.0063858,AHOLD US,United States,Byram,New Jersey,TRUE
+6/28/2017 20:58,32.31822968,-86.90229797,T-MOBILE,United States,Selmont-West Selmont,Alabama,TRUE
+11/15/2017 15:48,60.51139069,11.24901962,MATTEL,Norway,Eidsvoll,,TRUE
+11/17/2017 0:24,32.61436081,-86.68073273,NISSAN,United States,Pine Level,Alabama,TRUE
+11/8/2017 21:33,39.74000168,-104.9919968,@AT&T,United States,Denver,Colorado,FALSE
+6/4/2017 16:29,35.14953613,-90.04898071,MICROSOFT SUPPORT,United States,Memphis,Tennessee,TRUE
+8/31/2017 16:42,38.25485992,-85.7664032,BEST BUY,United States,Louisville,Kentucky,TRUE
+10/24/2017 16:56,48.38851929,2.963040113,LEGO,France,Montereau-Fault-Yonne,,FALSE
+11/26/2017 7:37,52.88356018,-1.974060059,UBISOFT,United Kingdom,Cheadle,,FALSE
+10/16/2017 15:35,51.06520081,-0.329059988,Apple Computer Inc,United Kingdom,Southwater,,FALSE
+10/16/2017 22:34,33.85805893,-112.1305618,Apple Computer Inc,United States,Anthem,Arizona,FALSE
+9/26/2017 1:24,38.99792099,-105.5509567,SPORTS ILLUSTRATED,United States,Cripple Creek,Colorado,FALSE
+10/2/2017 20:32,39.73926163,-89.50408936,COLGATE PALMOLIVE,United States,Rochester,Illinois,FALSE
+4/8/2017 3:53,42.4072113,-71.38243866,MICROSOFT,United States,Sudbury,Massachusetts,FALSE
+9/30/2017 10:39,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+8/30/2017 13:23,37.37269974,-79.28282166,VERIZON,United States,Yanceyville,Virginia,FALSE
+10/27/2017 19:17,23.68745041,90.35089874,MCCLATCHY,Bangladesh,Dhaka,,FALSE
+4/14/2017 16:30,42.4072113,-71.38243866,IDC,United States,Sudbury,Massachusetts,FALSE
+10/6/2017 15:42,3.945149899,114.4016571,AIR ASIA,Malaysia,Miri,,FALSE
+10/26/2017 13:43,43.2483902,-89.34570313,NISSAN,United States,De Forest,Wisconsin,FALSE
+11/7/2017 18:38,41.99061966,-88.31423187,NISSAN,United States,South Elgin,Illinois,TRUE
+10/27/2017 8:11,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+6/2/2017 22:46,26.84669304,80.94616699,GUCCI,India,Lucknow,,FALSE
+6/2/2017 20:06,35.98126221,-115.0980377,MICROSOFT SUPPORT,United States,Whitney,Nevada,TRUE
+11/26/2017 1:38,44.90528107,-93.74790955,NISSAN,United States,Nowthen,Minnesota,TRUE
+9/30/2017 2:55,45.43701172,12.33710957,PEOPLE,Italy,Venice,,FALSE
+7/28/2017 22:12,41.00310516,-72.29534912,Apple Computer Inc,United States,East Hampton North,New York,FALSE
+10/4/2017 14:07,53.33412933,-6.286359787,BRITISH AIRWAYS,Ireland,Rialto,,TRUE
+7/12/2017 14:34,43.65322495,-79.38318634,UBISOFT,Canada,Toronto,,FALSE
+10/16/2017 15:36,42.26380157,-118.6744766,NISSAN,United States,Hines,Oregon,TRUE
+9/7/2017 19:26,38.0033493,-79.77127075,T-MOBILE,United States,Mountain Lake Park,Virginia,FALSE
+9/5/2017 13:25,28.46692085,77.04379272,HDFC BANK,India,Gurgaon,,FALSE
+11/20/2017 0:12,38.91973877,-80.18167877,SPORTS ILLUSTRATED,United States,Point Marion,West Virginia,TRUE
+10/11/2017 1:10,33.55831146,-112.0807495,CAPITAL ONE,United States,Glendale,Arizona,FALSE
+9/18/2017 16:34,51.33306122,-0.271380007,KELLOGG'S EUROPE,United Kingdom,Ewell,,FALSE
+8/18/2017 14:05,51.45689011,-0.559119999,HSBC,United Kingdom,Old Windsor,,TRUE
+7/4/2017 13:50,51.5,-0.116667002,BRITISH AIRWAYS,United Kingdom,City of Westminster,,TRUE
+11/15/2017 23:55,-5.906479836,-36.77518845,APPLE COMPUTERS INC.,Brazil,Santana do Matos,,FALSE
+11/6/2017 20:35,36.03416061,-95.79486847,NISSAN,United States,Broken Arrow,Oklahoma,TRUE
+9/11/2017 1:36,-33.85628128,151.0209656,AMERICAN AIRLINES,Australia,Lidcombe,,TRUE
+9/8/2017 11:19,-37.86579895,145.102829,APPLE INC,Australia,Ashwood,,FALSE
+7/22/2017 21:55,37.77500153,-122.418335,AMERICAN AIRLINES,United States,San Francisco,California,TRUE
+11/20/2017 11:41,54.31407166,-2.230010033,TELKOMSEL,United Kingdom,Kirkby Stephen,,FALSE
+9/9/2017 5:02,27.97579956,-81.5410614,CAPTAIN MORGAN,United States,Lake Wales,Florida,FALSE
+7/6/2017 15:16,38.89500046,-77.03666687,EMIRATES,United States,"Washington, D. C.",Maryland,TRUE
+9/15/2017 19:11,21.78660011,82.79476166,PEOPLE,India,Seor�������,,FALSE
+11/27/2017 17:34,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/28/2017 3:05,56.04159927,92.88569641,NISSAN,Russian Federation,Krasnoyarsk,,FALSE
+9/16/2017 8:48,19.09028053,72.87136841,BAJAJ FINSERV,India,Mumbai,,TRUE
+11/1/2017 13:52,51.8637886,-2.249500036,TESCO,United Kingdom,Barnwood,,TRUE
+7/6/2017 17:38,29.61732483,-95.5382309,BAPTIST HEALTH,United States,Fifth Street,Texas,TRUE
+10/26/2017 18:40,41.26356125,-96.03553009,FORTUNE,United States,Carter Lake,Nebraska,TRUE
+5/27/2017 5:31,40.71278381,-74.0059433,PHILIPS,United States,Byram,New York,FALSE
+10/10/2017 4:01,27.97579956,-81.5410614,TIMES OF INDIA,United States,Lake Wales,Florida,TRUE
+8/23/2017 6:25,53.33412933,-6.286359787,ALLIED IRISH BANK,Ireland,Rialto,,TRUE
+7/27/2017 18:19,-26.36512566,28.15262032,ABSA,South Africa,Germiston,,FALSE
+11/18/2017 14:00,-1.781559944,-78.10666656,NISSAN,Ecuador,Palora,,FALSE
+11/27/2017 8:29,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+9/22/2017 16:15,43.04180908,-87.90683746,INTUIT,United States,Milwaukee,Wisconsin,TRUE
+11/6/2017 17:14,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+11/6/2017 3:47,25.70451927,-80.2716217,MCCLATCHY,United States,Coconut Grove,Florida,FALSE
+11/8/2017 16:27,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+10/15/2017 14:00,44.2915802,9.672889709,NISSAN,Italy,Sesta Godano,,FALSE
+9/5/2017 19:22,51.51507187,-0.093249999,NIKE,United Kingdom,City of London,,FALSE
+11/20/2017 20:52,35.40150833,-99.4124527,NISSAN,United States,Elk City,Oklahoma,TRUE
+10/30/2017 8:39,17.41840935,78.45001221,TIMES OF INDIA,India,Hyderabad,,TRUE
+11/6/2017 22:20,47.95030975,-122.220871,SPORTS ILLUSTRATED,United States,Everett,Washington,FALSE
+7/16/2017 15:01,35.92499924,-86.86888886,IKEA,United States,Franklin,Tennessee,TRUE
+7/1/2017 9:52,32.08530045,34.7817688,MICROSOFT - WINDOWS 10,Israel,Tel Aviv,,FALSE
+10/17/2017 14:15,43.64855957,-79.38536835,Apple Computer Inc,Canada,Toronto,,TRUE
+5/3/2017 2:57,36.77825928,-119.4179306,APPLE INC,United States,Minkler,California,FALSE
+10/13/2017 10:40,34.05350113,-118.2450027,MATTEL,United States,Los Angeles,California,TRUE
+6/15/2017 15:56,54.78771591,-6.492314339,BRITISH AIRWAYS,United Kingdom,Bellaghy,,FALSE
+10/31/2017 15:26,43.27088928,-5.845980167,NISSAN,Spain,Castandiello,,FALSE
+10/16/2017 3:45,41.88415146,-87.63240814,NISSAN,United States,Chicago,Illinois,TRUE
+11/8/2017 10:58,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,TRUE
+11/16/2017 1:11,40.69213867,-89.58776093,@AT&T,United States,Peoria,Illinois,FALSE
+7/20/2017 23:28,32.90766907,-96.60591888,AMERICAN AIRLINES,United States,Garland,Texas,TRUE
+10/10/2017 15:06,35.14968109,-90.04891968,FEDEX,United States,Memphis,Tennessee,FALSE
+11/6/2017 18:48,53.38311005,-1.464540005,TESCO,United Kingdom,Sheffield,,TRUE
+10/31/2017 9:59,37.1679306,-95.84501648,Apple Computer Inc,United States,Independence,Kansas,TRUE
+11/23/2017 6:40,51.35990143,7.471250057,MICROSOFT - WINDOWS 10,Germany,Hagen,,FALSE
+9/5/2017 19:01,51.50640106,-0.127210006,MARKS AND SPENCER,United Kingdom,London,,TRUE
+7/5/2017 20:57,29.76042748,-95.36980438,H&M,United States,Houston,Texas,TRUE
+11/24/2017 19:36,35.78551102,-78.64266968,NISSAN,United States,Raleigh,North Carolina,TRUE
+10/15/2017 18:50,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+9/19/2016 8:42,52.35551834,-1.174319744,GSK,United Kingdom,Rugby,,FALSE
+7/22/2017 19:07,29.97042084,31.01868248,MAJID AL FUTTAIM GROUP,Egypt,Mad����������,,TRUE
+9/15/2017 0:26,52.88356018,-1.974060059,ALDI,United Kingdom,Cheadle,,FALSE
+8/22/2017 19:31,39.74000168,-104.9919968,VERIZON,United States,Denver,Colorado,TRUE
+7/1/2017 14:09,37.77500153,-122.418335,AMERICAN AIRLINES,United States,San Francisco,California,TRUE
+6/30/2017 23:07,38.94111252,-76.54103851,TESCO,United States,Londontowne,Maryland,TRUE
+11/4/2017 7:13,57.22460175,-2.78302002,LEGO,United Kingdom,Alford,,FALSE
+11/18/2017 4:30,37.07518005,-76.51580048,NISSAN,United States,Yorktown,Virginia,TRUE
+11/2/2017 15:42,52.63695908,-1.129040003,PRIMARK,United Kingdom,Leicester,,FALSE
+7/30/2017 3:30,51.5,-0.116667002,AMERICAN AIRLINES,United Kingdom,City of Westminster,,FALSE
+11/4/2017 17:33,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+9/5/2017 19:50,43.74269867,-84.62167358,ADIDAS,United States,Barnes Lake-Millers Lake,Michigan,FALSE
+4/11/2017 9:33,48.84991837,2.637041092,FNB,France,Noisiel,,FALSE
+11/16/2017 19:56,65.08866882,-22.51755905,BTTV,Iceland,Stykkish����,,FALSE
+6/28/2017 13:20,25.20484924,55.27078247,EMIRATES,United Arab Emirates,Dubai,,TRUE
+6/21/2017 8:58,-29,24,BRITISH AIRWAYS,South Africa,Douglas,,TRUE
+8/27/2017 15:31,51.45338058,-1.039080024,THOMAS COOK GROUP,United Kingdom,Tilehurst,,TRUE
+10/10/2017 21:07,34.05350113,-118.2450027,ABBOTT LABS,United States,Los Angeles,California,FALSE
+8/19/2017 15:51,29.65195084,-82.32318115,MCDONALDS,United States,Gainesville,Florida,TRUE
+8/25/2017 17:09,32.1568985,-110.877121,LAWA,United States,Tucson,Arizona,FALSE
+4/11/2017 0:12,-33.86417389,151.2052917,WESTPAC,Australia,Sydney,,FALSE
+8/21/2017 11:28,28.60733032,77.20350647,Apple Computer Inc,India,New Delhi,,TRUE
+5/31/2017 14:42,61.143478,-149.114273,ASURION,United States,Girdwood,Alaska,TRUE
+5/31/2017 22:50,33.44833374,-112.0733337,MCDONALDS,United States,Phoenix,Arizona,TRUE
+11/5/2017 19:12,27.97579956,-81.5410614,MICROSOFT,United States,Lake Wales,Florida,TRUE
+11/22/2017 0:45,33.47877121,-86.78967285,NISSAN,United States,Homewood,Alabama,TRUE
+7/27/2017 2:49,40.65010452,-73.94958496,MCDONALDS,United States,Byram,New York,TRUE
+11/9/2017 4:32,32.43379974,-99.7477417,NISSAN,United States,Abilene,Texas,FALSE
+8/19/2017 0:46,-31.98265076,116.0074921,APPLE INC,Australia,Maida Vale,,TRUE
+6/14/2017 18:30,56.49067307,-4.202645779,GE,United Kingdom,Callander,,FALSE
+10/27/2017 4:14,35.65446854,-97.4781189,NISSAN,United States,Edmond,Oklahoma,TRUE
+9/20/2017 16:05,41.04085159,28.98617935,Apple Computer Inc,Turkey,����i����li,,FALSE
+8/1/2017 7:41,-28.47933,24.67993,KRAFT FOODS INC,South Africa,Barkly West,,TRUE
+11/13/2017 16:55,42.39078903,-71.10119629,MICROSOFT - WINDOWS 10,United States,Somerville,Massachusetts,TRUE
+10/10/2017 20:37,40.7887001,-80.14304352,T-MOBILE,United States,Zelienople,Pennsylvania,TRUE
+11/28/2017 8:41,31.30677986,-89.31593323,NIKE,United States,Hattiesburg,Mississippi,FALSE
+9/27/2017 15:46,28.20750999,-82.44757843,NISSAN,United States,Land O' Lakes,Florida,TRUE
+10/6/2017 1:51,45.77523041,-122.5394287,NISSAN,United States,Battle Ground,Washington,TRUE
+11/14/2017 14:50,4.923299789,97.22888947,TELKOMSEL,Indonesia,Matangkuli,,FALSE
+10/16/2017 15:38,38.41119003,-82.43184662,NISSAN,United States,Burlington,West Virginia,TRUE
+11/8/2017 20:15,58.74814987,5.635419846,NISSAN,Norway,Bryne,,FALSE
+8/31/2017 4:23,30.30636978,-97.75276184,PRINGLES,United States,Austin,Texas,TRUE
+6/1/2017 19:47,26.84669304,80.94616699,GUCCI,India,Lucknow,,FALSE
+10/26/2017 11:32,51.52582169,5.119120121,POSTNL,Netherlands,Tilburg,,FALSE
+10/13/2017 9:38,15.59305,120.7390671,HP INC.,Philippines,Calibungan,,FALSE
+10/10/2017 0:18,55.41254044,-1.703539968,LEGO,United Kingdom,Alnwick,,FALSE
+10/6/2017 14:34,32.58124924,-96.9591217,NISSAN,United States,Cedar Hill,Texas,TRUE
+9/13/2017 1:04,36.17190933,-115.1399689,APPLE INC,United States,Las Vegas,Nevada,TRUE
+10/23/2017 14:25,-6.30174017,107.2797775,TELKOMSEL,Indonesia,Cikarang,,FALSE
+8/30/2017 20:12,-6.926730156,107.6885529,HCL,Indonesia,Cileunyi,,TRUE
+9/27/2017 18:12,37.26927185,-76.70755768,NISSAN,United States,WIlliamsburg,Virginia,TRUE
+11/27/2017 15:47,40.14323044,-74.72670746,NISSAN,United States,Tullytown,New Jersey,TRUE
+7/6/2017 11:43,51.5,-0.116667002,Apple Computer Inc,United Kingdom,City of Westminster,,FALSE
+7/16/2017 20:34,37.878689,-121.943451,KAISER,United States,Diablo,California,TRUE
+9/6/2017 21:44,40.71455002,-74.00711823,NIKE,United States,Byram,New Jersey,TRUE
+11/9/2017 7:06,-6.256080151,106.8089981,HCL,Indonesia,Jakarta,,FALSE
+11/8/2017 11:52,51.41104126,-0.291420013,MARKS AND SPENCER,United Kingdom,Kingston upon Thames,,TRUE
+8/12/2017 17:07,34.05220032,-118.2429962,NIKE,United States,Los Angeles,California,TRUE
+11/14/2017 4:05,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+11/16/2017 14:30,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+8/17/2017 22:48,39.76691055,-86.14996338,ELECTRONIC ARTS,United States,Indianapolis,Indiana,TRUE
+10/16/2017 6:57,34.16788101,-111.9307022,APPLE INC,United States,Cordes Lakes,Arizona,TRUE
+9/27/2017 18:06,19.07336044,73.02203369,TIMES OF INDIA,India,Navi Mumbai,,TRUE
+8/22/2017 15:36,56.65285873,-3.996670008,SCOTTISH WATER,United Kingdom,Aberfeldy,,TRUE
+6/22/2017 6:55,40.63312531,-89.39852905,Apple Computer Inc,United States,Morton,Illinois,TRUE
+9/13/2017 3:00,37.1679306,-95.84501648,APPLE INC,United States,Independence,Kansas,TRUE
+10/18/2017 21:45,40.78779984,-77.8526001,NISSAN,United States,State College,Pennsylvania,TRUE
+7/18/2017 23:24,35.77959061,-78.63817596,EMIRATES,United States,Raleigh,North Carolina,TRUE
+6/28/2017 16:43,-22.906847,-43.17289734,Apple Computer Inc,Brazil,Rio de Janeiro,,FALSE
+7/26/2017 9:27,43.08903503,-79.14150238,MICROSOFT SUPPORT,Canada,Thorold,,FALSE
+7/30/2017 23:55,40.75675583,-111.8918839,ADIDAS,United States,Salt Lake City,Utah,TRUE
+6/29/2017 14:04,33.44833374,-112.0733337,MICROSOFT - WINDOWS 10,United States,Phoenix,Arizona,TRUE
+10/27/2017 2:21,41.65639877,-80.42169952,NISSAN,United States,Linesville,Pennsylvania,TRUE
+8/15/2017 2:27,44.69414902,-63.59000015,IKEA,Canada,Dartmouth,,TRUE
+10/9/2017 14:26,38.0033493,-79.77127075,NISSAN,United States,Mountain Lake Park,Virginia,FALSE
+5/5/2017 17:06,27.6648274,-81.5157535,MCDONALDS,United States,Avon Park,Florida,FALSE
+10/10/2017 20:34,41.08055115,-81.52220917,T-MOBILE,United States,Montrose-Ghent,Ohio,TRUE
+10/4/2017 0:44,63.99359894,-145.7189026,BRITISH AIRWAYS,United States,Deltana,Alaska,TRUE
+10/10/2017 16:29,32.61436081,-86.68073273,T-MOBILE,United States,Pine Level,Alabama,FALSE
+6/20/2017 2:12,12.97754,77.59951,MICROSOFT - WINDOWS 10,India,Bangalore,,FALSE
+8/20/2017 9:40,-28.47933006,24.67992973,ABSA,South Africa,Barkly West,,FALSE
+8/17/2017 0:21,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+7/4/2017 13:53,32.89040756,-84.6810379,UBS,United States,Manchester,Georgia,TRUE
+9/25/2017 19:45,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+11/6/2017 16:15,41.88415146,-87.63240814,MCDONALDS,United States,Chicago,Illinois,FALSE
+10/1/2017 5:52,-6.924039841,106.9222107,TELKOMSEL,Indonesia,Sukabumi,,TRUE
+11/19/2017 15:48,40.89260101,-78.21589661,NISSAN,United States,Philipsburg,Pennsylvania,TRUE
+10/17/2017 19:59,53.33412933,-6.286359787,Apple Computer Inc,Ireland,Rialto,,TRUE
+11/14/2017 18:45,40.42142868,-3.671629906,NISSAN,Spain,Salamanca,,FALSE
+9/6/2017 14:57,19.09028053,72.87136841,BESTSELLERCOM,India,Mumbai,,FALSE
+11/13/2017 20:14,24.59148026,-107.3917084,NISSAN,Mexico,Villa de Costa Rica,,FALSE
+9/22/2017 2:11,36.14883041,-99.29920959,APPLE INC,United States,Woodward,Oklahoma,TRUE
+11/6/2017 6:10,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+6/30/2017 14:25,51.50735092,-0.127758294,Apple Computer Inc,United Kingdom,London,,TRUE
+8/10/2017 16:20,50.8475914,0.482923806,LIDL,United Kingdom,Bexhill-on-Sea,,FALSE
+10/23/2017 9:05,-6.256080151,106.8089981,NISSAN,Indonesia,Jakarta,,FALSE
+10/16/2017 13:20,1.365579963,103.827713,BRITISH AIRWAYS,Singapore,Singapore,,TRUE
+5/23/2017 23:09,44.31484604,-85.60236359,MATTEL,United States,Sturgeon Bay,Michigan,FALSE
+4/11/2017 3:32,39.32098007,-111.0937347,7-ELEVEN,United States,Orangeville,Utah,FALSE
+11/17/2017 16:15,19.09028053,72.87136841,JET AIRWAYS,India,Mumbai,,FALSE
+11/16/2017 15:31,39.85855103,-104.6885681,NIKE,United States,Lochbuie,Colorado,FALSE
+8/1/2017 4:29,39.45621109,-77.96389008,MCDONALDS,United States,Williamsport,West Virginia,TRUE
+10/17/2017 17:19,35.13251877,33.4355011,HONDA,Cyprus,Yeri,,TRUE
+11/22/2017 10:10,18.96484947,72.8253479,HDFC BANK,India,Mumbai,,TRUE
+10/9/2017 13:29,19.09028053,72.87136841,HDFC BANK,India,Mumbai,,TRUE
+11/15/2017 10:13,-26.2049408,28.04002953,LOVEWINS CAMPAIGN,South Africa,Johannesburg,,FALSE
+11/25/2017 14:26,21.63557053,73.00704193,HDFC BANK,India,Ankleshwar,,TRUE
+8/29/2017 21:44,28.67214012,77.3270874,T-MOBILE,India,Loni,,TRUE
+11/6/2017 11:25,51.50315857,-0.126780003,MICROSOFT,United Kingdom,London,,TRUE
+11/27/2017 0:21,37.55519867,-122.2662125,SPORTS ILLUSTRATED,United States,Foster City,California,FALSE
+10/11/2017 11:00,45.60295105,11.6286602,MICROSOFT - WINDOWS 10,Italy,Bolzano Vicentino,,TRUE
+9/12/2017 17:53,40.76800156,-73.5298996,MOHAWK,United States,Byram,New York,FALSE
+9/28/2017 5:34,60.28934097,25.02967072,MICROSOFT - WINDOWS 10,Finland,Vantaa,,TRUE
+11/18/2017 17:23,29.59711075,-95.62744141,SPORTS ILLUSTRATED,United States,Greatwood,Texas,TRUE
+4/7/2017 13:43,32.9709834,-96.7071453,EXXON MOBIL,United States,Garland,Texas,FALSE
+8/30/2017 11:33,41.51776123,-72.75753021,APPLE INC,United States,Wallingford Center,Connecticut,TRUE
+11/3/2017 1:01,19.11968994,72.84793854,JET AIRWAYS,India,Powai,,FALSE
+7/23/2017 1:03,41.87194061,12.56737995,3M,Italy,Rome,,FALSE
+11/5/2017 17:53,40.00762939,-75.13395691,NISSAN,United States,Philadelphia,Pennsylvania,TRUE
+4/26/2017 8:09,19.7514801,75.71389008,MTR,India,Ambad,,FALSE
+11/27/2017 7:43,13.05939007,80.2456665,NISSAN,India,Chetput,,TRUE
+11/26/2017 1:19,44.72719955,-90.10125732,NISSAN,United States,Stratford,Wisconsin,TRUE
+9/28/2017 3:15,25.78255081,-80.22174835,FORTUNE,United States,Miami,Florida,FALSE
+10/6/2017 8:47,21.78660011,82.79476166,PVR,India,Seor�������,,FALSE
+8/22/2017 18:31,48.48154831,-81.34565735,KELLOGG'S,Canada,Timmins,,TRUE
+10/9/2017 15:25,40.1912384,-123.2953033,FEDEX,United States,Hayfork,California,TRUE
+9/12/2017 21:54,40.71455002,-74.00711823,APPLE INC,United States,Byram,New Jersey,FALSE
+11/7/2017 0:06,-18.87062073,-41.96178055,AZUL AIRLINES,Brazil,Governador Valadares,,FALSE
+11/14/2017 19:45,37.1679306,-95.84501648,IKEA,United States,Independence,Kansas,FALSE
+9/7/2017 15:31,37.74739838,-122.4392166,LOVEWINS CAMPAIGN,United States,San Francisco,California,FALSE
+11/1/2017 2:42,42.99929047,-84.55590057,MCDONALDS,United States,Level Park-Oak Park,Michigan,TRUE
+9/30/2017 19:59,36.05672073,-90.48738098,Apple Computer Inc,United States,Paragould,Arkansas,TRUE
+8/26/2017 16:59,42.18824005,9.049530029,EURO WINGS,France,Corte,,FALSE
+7/20/2017 18:53,53.54438782,-113.4909287,UBISOFT,Canada,Edmonton,,TRUE
+6/25/2017 16:07,45.50168991,-73.56725311,BRITISH AIRWAYS,Canada,Montr���,,FALSE
+7/21/2017 16:01,51.86222839,4.531400204,NIKE,Netherlands,Barendrecht,,FALSE
+10/14/2017 1:08,38.9165802,-94.64129639,NISSAN,United States,Leawood,Kansas,TRUE
+7/18/2017 16:00,-23.451401,-58.453201,EMIRATES,Paraguay,Concepci��,,TRUE
+11/14/2017 3:22,27.30060959,88.40792084,TIMES OF INDIA,India,Singt��,,TRUE
+9/28/2017 1:50,39.30096817,-76.61061096,CAPITAL ONE,United States,Baltimore,Maryland,TRUE
+11/26/2017 4:50,-6.283830166,106.8021393,TELKOMSEL,Indonesia,Jakarta,,FALSE
+9/12/2017 0:13,52.40266037,-1.917330027,ALDI,United Kingdom,Alvechurch,,TRUE
+10/30/2017 15:13,53.33412933,-6.286359787,BRITISH AIRWAYS,Ireland,Rialto,,TRUE
+7/10/2017 6:40,36.74684143,-119.772583,H&M,United States,Fresno,California,TRUE
+8/30/2017 18:33,21.45767021,-157.9713898,SEPHORA,United States,Mililani Town,Hawaii,FALSE
+7/3/2017 17:56,41.78451157,-73.69530487,ALLIED IRISH BANK,United States,Carmel Hamlet,New York,TRUE
+6/28/2017 16:02,32.50895691,-117.0906677,WALMART,Mexico,La Esperanza [Granjas Familiares],,TRUE
+7/27/2017 2:41,29.76042748,-95.36980438,MCDONALDS,United States,Houston,Texas,TRUE
+9/30/2017 15:46,39.76617813,-86.44104767,NISSAN,United States,Avon,Indiana,TRUE
+9/5/2017 0:26,42.18420029,-71.7181778,Apple Computer Inc,United States,Grafton,Massachusetts,TRUE
+7/31/2017 2:11,42.36008072,-71.05888367,TD BANK,United States,Boston,Massachusetts,TRUE
+7/19/2017 10:51,43.12422943,5.927999973,UBISOFT,France,Toulon,,TRUE
+10/11/2017 18:41,46.52597046,6.633619785,LEGO,Switzerland,Lausanne,,FALSE
+11/9/2017 15:42,32.1568985,-110.877121,NISSAN,United States,Tucson,Arizona,TRUE
+8/16/2017 17:30,45.5367012,-122.6508408,CAMPBELL SOUP,United States,Portland,Oregon,FALSE
+10/6/2017 17:34,28.56315994,77.36740875,TIMES OF INDIA,India,Noida,,FALSE
+11/9/2017 7:06,23.0308094,72.5917511,TIMES OF INDIA,India,Ahmedabad,,TRUE
+10/10/2017 23:19,29.46071053,-98.52160645,T-MOBILE,United States,Balcones Heights,Texas,TRUE
+8/27/2017 21:30,37.1679306,-95.84501648,THE NORTHFACE,United States,Independence,Kansas,TRUE
+11/7/2017 23:16,40.19033051,-82.66947174,MCDONALDS,United States,Granville South,Ohio,TRUE
+9/4/2017 16:55,56.9546814,-98.30896759,ADIDAS,Canada,Thompson,,TRUE
+9/1/2017 13:29,54.32228851,-2.527879953,UBISOFT,United Kingdom,Sedbergh,,TRUE
+8/3/2017 7:44,37.31603241,-121.9026566,ADIDAS,United States,Buena Vista,California,TRUE
+11/15/2017 18:21,33.32904053,-111.7897568,NISSAN,United States,Gilbert,Arizona,TRUE
+11/22/2017 8:16,28.6439991,77.09100342,HDFC BANK,India,N������,,FALSE
+6/21/2017 7:24,14.51227379,121.01651,H&M,Philippines,Makati City,,TRUE
+12/16/2016 20:03,52.35551834,-1.174319744,GSK,United Kingdom,Rugby,,FALSE
+10/15/2017 9:51,54.31407166,-2.230010033,TESCO,United Kingdom,Kirkby Stephen,,TRUE
+10/15/2017 4:57,25.29457092,51.5194397,QATAR AIRWAYS,Qatar,Doha,,FALSE
+11/23/2017 21:43,40.03770828,117.3961182,NISSAN,China,Yinliu,,TRUE
+9/25/2017 0:34,40.19033051,-82.66947174,APPLE INC,United States,Granville South,Ohio,FALSE
+10/11/2017 17:49,28.60733032,77.20350647,TIMES OF INDIA,India,New Delhi,,FALSE
+11/17/2017 15:11,27.49033928,-82.57678986,MASTERCARD,United States,Bradenton,Florida,FALSE
+10/16/2017 16:05,31.76169968,-95.63200378,NISSAN,United States,Elkhart,Texas,TRUE
+11/13/2017 16:07,28.6439991,77.09100342,TIMES OF INDIA,India,N������,,FALSE
+10/11/2017 14:57,48.10990906,-1.67324996,NISSAN,France,Rennes,,FALSE
+10/18/2017 2:29,39.98913956,-82.98532867,HCL,United States,Columbus,Ohio,FALSE
+9/21/2017 6:42,28.46692085,77.04379272,JET AIRWAYS ,India,Gurgaon,,FALSE
+9/9/2017 3:23,35.46617889,-97.51483917,UBISOFT,United States,Oklahoma City,Oklahoma,TRUE
+10/17/2017 14:23,52.37311935,4.893189907,Apple Computer Inc,Netherlands,Amsterdam,,TRUE
+10/27/2017 3:41,34.24449158,-113.9645004,SPORTS ILLUSTRATED,United States,Cienega Springs,Arizona,TRUE
+11/20/2017 13:11,-33.85628128,151.0209656,SINGTEL OPTUS,Australia,Lidcombe,,TRUE
+10/23/2017 14:13,41.69216156,1.74161005,MCCLATCHY,Spain,Sant Salvador de Guardiola,,FALSE
+11/9/2017 21:58,40.44284058,-79.99829102,MCCLATCHY,United States,Pittsburgh,Pennsylvania,FALSE
+10/26/2017 15:05,51.50640106,-0.127210006,STANDARD BANK,United Kingdom,London,,TRUE
+11/21/2017 2:04,56.9546814,-98.30896759,WALMART,Canada,Thompson,,FALSE
+11/25/2017 7:55,37.1679306,-95.84501648,BEST BUY,United States,Independence,Kansas,FALSE
+6/6/2017 17:00,32.78333282,-96.80000305,T-MOBILE,United States,Dallas,Texas,TRUE
+11/6/2017 14:42,41.12498093,-73.73271179,NISSAN,United States,Byram,New York,TRUE
+10/16/2017 7:48,41.13454819,-80.13430023,AIR ASIA,United States,Slippery Rock,Pennsylvania,FALSE
+10/14/2017 23:11,-46.91056824,168.0815735,NISSAN,New Zealand,Bluff,,TRUE
+9/13/2017 0:04,41.62210083,-93.83789825,APPLE INC,United States,Waukee,Iowa,FALSE
+11/24/2017 16:30,39.74000168,-104.9919968,BEST BUY,United States,Denver,Colorado,TRUE
+11/22/2017 4:14,41.88415146,-87.63240814,DISH,United States,Chicago,Illinois,TRUE
+9/6/2017 7:56,51.22208023,4.397709847,POSTNL,Belgium,Antwerpen,,TRUE
+11/20/2017 16:05,37.2718811,-119.2702332,T-MOBILE,United States,Auberry,California,TRUE
+8/28/2017 17:07,40.19033051,-82.66947174,MOHAWK,United States,Granville South,Ohio,TRUE
+9/18/2017 14:48,52.04269028,4.392010212,POSTNL,Netherlands,Ypenburg,,TRUE
+4/13/2017 18:19,40.63312531,-89.39852905,GAMESTOP,United States,Morton,Illinois,FALSE
+6/19/2017 14:18,52.77209854,-1.206166029,Apple Computer Inc,United Kingdom,Loughborough,,FALSE
+9/5/2017 10:49,52.9234314,-1.484449983,TESCO,United Kingdom,Little Eaton,,TRUE
+8/9/2017 0:16,-24.9121,133.397995,AMERICAN AIRLINES,Australia,Alice Springs,,FALSE
+11/3/2017 23:13,43.64855957,-79.38536835,ANIXTER,Canada,Toronto,,FALSE
+4/8/2017 11:49,27.6648274,-81.5157535,CVS,United States,Avon Park,Florida,FALSE
+10/23/2017 13:37,-7.79005003,110.3631973,TELKOMSEL,Indonesia,Yogyakarta,,FALSE
+11/26/2017 1:52,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+4/30/2017 21:33,27.6648274,-81.5157535,L'OREAL,United States,Avon Park,Florida,FALSE
+10/9/2017 11:08,21.78660011,82.79476166,JET AIRWAYS ,India,Seor�������,,TRUE
+9/14/2017 0:12,51.50640106,-0.127210006,ADIDAS,United Kingdom,London,,TRUE
+7/28/2017 21:15,41.00823593,28.97835922,BP,Turkey,Emin����,,FALSE
+10/14/2017 0:39,38.67332077,-120.9870605,NISSAN,United States,Cameron Park,California,TRUE
+8/28/2017 15:00,34.05350113,-118.2450027,UBISOFT,United States,Los Angeles,California,TRUE
+9/29/2017 22:51,30.12454033,-94.01265717,SPORTS ILLUSTRATED,United States,Beaumont,Texas,TRUE
+9/17/2017 14:20,32.75896835,-97.80079651,WALMART,United States,Hudson Oaks,Texas,TRUE
+11/19/2017 6:15,21.78660011,82.79476166,STANDARD BANK,India,Seor�������,,TRUE
+10/26/2017 17:46,32.73559952,-97.10771942,NISSAN,United States,Arlington,Texas,TRUE
+7/21/2017 19:15,38.89500046,-77.03666687,AMERICAN AIRLINES,United States,"Washington, D. C.",Maryland,FALSE
+6/26/2017 19:17,51.5,-0.116667002,TESCO,United Kingdom,City of Westminster,,FALSE
+10/15/2017 0:49,38.41119003,-82.43184662,NISSAN,United States,Burlington,West Virginia,TRUE
+11/18/2017 7:13,42.78250885,-96.9257431,MCDONALDS,United States,Vermillion,South Dakota,TRUE
+11/5/2017 3:36,42.29882813,-85.23001862,NISSAN,United States,Level Park-Oak Park,Michigan,TRUE
+11/2/2017 18:25,40.76100159,-73.59190369,NISSAN,United States,Byram,New York,FALSE
+11/13/2017 22:29,50.11207962,8.683409691,T-MOBILE,Germany,Frankfurt am Main,,TRUE
+8/29/2017 7:40,51.5549202,5.106269836,T-MOBILE,Netherlands,Tilburg,,TRUE
+10/15/2017 7:50,40.78269959,14.38300037,NISSAN,Italy,Torre del Greco,,FALSE
+6/14/2017 4:59,25.20484924,55.27078247,RTA DUBAI,United Arab Emirates,Dubai,,FALSE
+5/15/2017 7:48,15.91289997,79.73999023,SHOPPERS STOP,India,Vinukonda,,FALSE
+4/18/2017 19:43,37.83933258,-84.27001953,MCAFEE,United States,Richmond,Kentucky,FALSE
+10/31/2017 17:53,41.88415146,-87.63240814,T-MOBILE,United States,Chicago,Illinois,FALSE
+6/14/2017 13:53,53.72304916,-1.707525015,TESCO,United Kingdom,Cleckheaton,,TRUE
+10/14/2017 11:49,41.08864975,-85.14421082,NISSAN,United States,Fort Wayne,Indiana,TRUE
+9/12/2017 22:17,35.14968109,-90.04891968,APPLE INC,United States,Memphis,Tennessee,TRUE
+8/16/2017 16:51,52.45425034,-2.147809982,ALDI,United Kingdom,Stourbridge,,TRUE
+9/29/2017 20:11,40.76319122,-73.98043823,NISSAN,United States,Byram,New York,FALSE
+9/30/2017 10:06,6.439179897,3.423480034,NISSAN,Nigeria,Lagos,,FALSE
+9/12/2017 18:56,41.7998085,-71.07379913,APPLE INC,United States,Assonet,Massachusetts,TRUE
+10/16/2017 16:07,40.71455002,-74.00711823,MCDONALDS,United States,Byram,New Jersey,FALSE
+6/6/2017 14:58,47.60638809,-122.3308334,T-MOBILE,United States,Seattle,Washington,FALSE
+6/14/2017 15:20,19.07598305,72.87765503,H&M,India,Mumbai,,FALSE
+5/20/2017 15:59,52.35551834,-1.174319744,TESCO,United Kingdom,Rugby,,TRUE
+11/18/2017 21:09,36.17190933,-115.1399689,APPLE INC,United States,Las Vegas,Nevada,TRUE
+11/7/2017 13:33,43.74269867,-84.62167358,NISSAN,United States,Barnes Lake-Millers Lake,Michigan,TRUE
+9/28/2017 14:34,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,TRUE
+4/9/2017 6:34,52.63670349,9.845076561,MICROSOFT,Germany,Wietze,,FALSE
+5/17/2017 5:41,-33.86417389,151.2052917,LENOVO,Australia,Sydney,,FALSE
+9/26/2017 2:40,52.05435944,-111.2904511,SPORTS ILLUSTRATED,Canada,Hanna,,FALSE
+4/9/2017 14:57,27.6648274,-81.5157535,H & R BLOCK,United States,Avon Park,Florida,FALSE
+11/18/2017 8:20,40.71455002,-74.00711823,NISSAN,United States,Byram,New Jersey,FALSE
+10/10/2017 0:37,51.18235016,0.937390029,Apple Computer Inc,United Kingdom,Wye,,TRUE
+10/15/2017 17:51,40.27093124,-74.09461975,NISSAN,United States,Dover Beaches North,New Jersey,TRUE
+9/6/2017 9:50,46.71067047,1.718189955,ALDI,France,Arthon,,FALSE
+6/9/2017 21:14,30.30637,-97.752762,EMIRATES,United States,Austin,Texas,FALSE
+10/5/2017 2:28,39.14126968,-84.50518799,U.S. BANK,United States,Saint Bernard,Ohio,TRUE
+11/22/2017 19:50,45.14093018,6.05177021,MICROSOFT,France,Huez,,TRUE
+9/13/2017 6:21,46.80537033,-100.7793274,T-MOBILE,United States,Bismarck,North Dakota,TRUE
+9/22/2017 6:46,20.1912899,73.16271973,Apple Computer Inc,India,����mli,,FALSE
+10/4/2017 9:34,-24.91209984,133.397995,COLES,Australia,Alice Springs,,TRUE
+11/20/2017 9:23,50.37617111,-4.136630058,TESCO,United Kingdom,Plymouth,,FALSE
+10/17/2017 21:23,33.6872406,-117.8258209,NISSAN,United States,Tustin,California,TRUE
+9/13/2017 7:05,54.49887085,-126.5507126,APPLE INC,Canada,Houston,,TRUE
+11/2/2017 18:39,26.01844978,-80.35250854,NISSAN,United States,Sunshine Ranches,Florida,TRUE
+4/1/2017 17:06,-26.2707593,28.1122679,UBER,South Africa,Germiston,,FALSE
+3/31/2017 17:03,37.4315734,-78.6568942,H & R BLOCK,United States,Woodlake,Virginia,FALSE
+9/21/2017 8:21,12.97754002,77.59951019,TIMES OF INDIA,India,Bangalore,,TRUE
+5/17/2017 13:01,40.0583238,-74.4056612,JOHNSON & JOHNSON,United States,Cedar Glen Lakes,New Jersey,FALSE
+9/30/2017 21:46,37.2718811,-119.2702332,NISSAN,United States,Auberry,California,TRUE
+10/18/2017 19:18,53.24285889,-1.435330033,ALDI,United Kingdom,Chesterfield,,TRUE
+11/14/2017 23:11,19.29030037,-98.94390106,LOVEWINS CAMPAIGN,Mexico,San Miguel Xico,,FALSE
+7/14/2017 20:39,48.8666687,2.333333015,EMIRATES,France,Paris,,TRUE
+6/1/2017 13:07,51.651691,-0.19746,TESCO,United Kingdom,Barnet,,TRUE
+10/4/2017 14:49,40.71455002,-74.00711823,DNB,United States,Byram,New Jersey,FALSE
+10/16/2017 9:31,53.20866013,-7.59762001,AXA,Ireland,Tullamore,,TRUE
+8/31/2017 15:05,34.05350113,-118.2450027,LA CARE,United States,Los Angeles,California,TRUE
+9/14/2017 23:46,42.35863113,-71.05670166,SPORTS ILLUSTRATED,United States,Boston,Massachusetts,TRUE
+7/18/2017 21:41,51.5,0.115999997,MARKS AND SPENCER,United Kingdom,Abbey Wood,,TRUE
+9/28/2017 13:16,2.070790052,15.80047989,NISSAN,Congo,Ou����,,TRUE
+7/3/2017 18:35,34.05223465,-118.2436829,ERNST & YOUNG ,United States,Los Angeles,California,FALSE
+8/23/2017 18:30,51.50640106,-0.127210006,ALDI,United Kingdom,London,,TRUE
+10/23/2017 9:11,4.923299789,97.22888947,TELKOMSEL,Indonesia,Matangkuli,,FALSE
+6/10/2017 14:57,53.99150467,-1.541201472,TESCO,United Kingdom,Pannal,,TRUE
+11/13/2017 15:51,21.78660011,82.79476166,JET AIRWAYS,India,Seor�������,,FALSE
+6/17/2017 15:12,-26.66386032,25.28375816,TESCO,South Africa,Delareyville,,FALSE
+10/15/2017 3:12,47.6035614,-122.3294373,LOVEWINS CAMPAIGN,United States,Seattle,Washington,TRUE
+7/21/2017 9:44,52.62612152,1.293457747,MARKS AND SPENCER,United Kingdom,Norwich,,TRUE
+10/21/2017 0:21,44.26578903,-88.39703369,LEGO,United States,Appleton,Wisconsin,FALSE
+7/5/2017 13:59,25.35482597,51.18388367,EMIRATES,Qatar,Ash Sha��������,,TRUE
+9/26/2017 4:24,23.68745041,90.35089874,SPORTS ILLUSTRATED,Bangladesh,Dhaka,,FALSE
+5/20/2017 1:10,40.0583238,-74.4056612,LEGO,United States,Cedar Glen Lakes,New Jersey,FALSE
+9/17/2017 14:56,39.74000168,-104.9919968,Apple Computer Inc,United States,Denver,Colorado,FALSE
+9/17/2017 5:45,40.7887001,-80.14304352,SPORTS ILLUSTRATED,United States,Zelienople,Pennsylvania,FALSE
+11/4/2017 18:38,51.77045059,0.642549992,PHILIPS,United Kingdom,Witham,,FALSE
+11/15/2017 4:26,37.1679306,-95.84501648,LOVEWINS CAMPAIGN,United States,Independence,Kansas,FALSE
+11/6/2017 20:18,40.00762939,-75.13395691,NISSAN,United States,Philadelphia,Pennsylvania,TRUE
+10/10/2017 1:20,19.43190002,-99.13289642,MICROSOFT - WINDOWS 10,Mexico,Mexico City,,FALSE
+4/21/2017 2:25,32.51964,-83.5603112,T-MOBILE,United States,Robins Air Force Base,Georgia,FALSE
+9/25/2017 15:30,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,TRUE
+7/18/2016 15:16,45.16957855,5.450282097,GSK,France,Vinay,,FALSE
+6/3/2017 16:56,45.37857819,-75.62256622,Apple Computer Inc,Canada,Ottawa,,FALSE
+11/4/2017 14:05,40.19033051,-82.66947174,NISSAN,United States,Granville South,Ohio,TRUE
+9/30/2017 9:11,9.084569931,8.674249649,FIRSTBANK NIGERIA,Nigeria,Wamba,,FALSE
+11/21/2017 23:46,34.00582886,-118.3970871,NISSAN,United States,Culver City,California,TRUE
+7/1/2017 3:18,41.25236511,-95.99798584,AMERICAN AIRLINES,United States,Carter Lake,Nebraska,TRUE
+10/16/2017 20:47,64.55653381,12.66617012,NISSAN,Norway,Grong,,FALSE
+9/30/2017 13:40,42.28564835,-85.58986664,KELLOGG'S,United States,Comstock Northwest,Michigan,TRUE
+11/5/2017 19:51,31.07946014,-97.73430634,NISSAN,United States,Fort Hood,Texas,TRUE
+10/4/2017 11:11,51.1185112,-0.184819996,LLOYDS TSB BANK PLC,United Kingdom,Langley Green,,TRUE
+6/17/2017 15:35,51.50735092,-0.127758294,BRITISH AIRWAYS,United Kingdom,London,,FALSE
+11/6/2017 20:47,46.65607071,5.778530121,APPLE INC,France,Clairvaux-les-Lacs,,FALSE
+10/27/2017 4:17,19.09028053,72.87136841,INFOSYS,India,Mumbai,,TRUE
+11/4/2017 23:53,25.43231964,-100.9879227,APPLE INC,Mexico,Saltillo,,FALSE
+7/6/2017 8:09,52.56949997,-0.240529895,AVIVA,United Kingdom,Peterborough,,FALSE
+11/8/2017 10:41,19.09028053,72.87136841,JET AIRWAYS,India,Mumbai,,FALSE
+9/12/2017 2:17,53.4100914,-2.978430033,VERIZON,United Kingdom,Liverpool,,FALSE
+10/14/2017 16:42,39.30096817,-76.61061096,PEOPLE,United States,Baltimore,Maryland,FALSE
+7/15/2017 17:07,34.05222321,-118.242775,GOOGLE FIBER,United States,Los Angeles,California,FALSE
+11/14/2017 13:51,34.16788101,-111.9307022,HELLO FRESH,United States,Cordes Lakes,Arizona,FALSE
+11/20/2017 17:30,36.17190933,-115.1399689,NISSAN,United States,Las Vegas,Nevada,TRUE
+6/25/2017 14:55,29.97856712,-95.29566193,BOEING,United States,Humble,Texas,TRUE
+5/22/2017 18:14,26.64950371,-98.3455658,JC PENNEY,United States,Citrus City,Texas,FALSE
+9/29/2017 15:22,51.50640106,-0.127210006,TESCO,United Kingdom,London,,TRUE
+11/24/2017 19:35,40.65507126,-73.94888306,APPLE INC,United States,Byram,New York,FALSE
+7/24/2017 7:09,34.0086174,-80.00961304,BRITISH AIRWAYS,United States,Timmonsville,South Carolina,TRUE
+9/26/2017 9:29,-26.09972954,28.04322052,UBER,South Africa,Sandton,,TRUE
+9/19/2017 19:37,31.16889954,-100.0771484,SHELL,United States,Eden,Texas,FALSE
+11/17/2017 23:40,37.1679306,-95.84501648,WALMART,United States,Independence,Kansas,TRUE
+8/9/2017 14:50,51.47000122,0.009,H&M,United Kingdom,Blackheath,,TRUE
+11/25/2017 16:41,43.74269867,-84.62167358,@AT&T,United States,Barnes Lake-Millers Lake,Michigan,TRUE
+11/3/2017 22:27,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+9/25/2017 14:27,27.97579956,-81.5410614,ADIDAS,United States,Lake Wales,Florida,TRUE
+10/18/2017 3:21,19.09028053,72.87136841,JET AIRWAYS,India,Mumbai,,FALSE
+7/20/2017 11:01,0.347596407,32.58251953,EMIRATES,Uganda,Kampala Central Division,,TRUE
+8/17/2017 21:28,41.32159042,-87.20078278,NISSAN,United States,Hebron,Indiana,TRUE
+9/5/2017 14:30,53.54465866,-2.632889986,TESCO,United Kingdom,Wigan,,FALSE
+10/18/2017 0:52,33.50067139,-84.35128021,NISSAN,United States,Jonesboro,Georgia,TRUE
+7/19/2017 18:58,53.38113022,-1.470085025,LLOYDS TSB BANK PLC,United Kingdom,Sheffield,,FALSE
+11/7/2017 0:04,41.80078125,-71.35829163,NISSAN,United States,East Providence,Rhode Island,TRUE
+10/18/2017 2:42,39.10295105,-94.58306122,SPORTS ILLUSTRATED,United States,Kansas City,Missouri,FALSE
+6/29/2017 3:39,32.74512863,-95.85190582,KOHL'S,United States,Edgewood,Texas,TRUE
+11/5/2017 17:45,33.76319122,-84.42305756,CAPITAL ONE,United States,Atlanta,Georgia,TRUE
+11/28/2017 3:23,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/20/2017 21:19,49.38425827,-84.75627136,NISSAN,Canada,Hornepayne,,TRUE
+10/9/2017 9:58,24.88978004,67.02851105,APPLE INC,Pakistan,Karachi,,TRUE
+11/22/2017 2:04,33.15048981,-96.8346405,NISSAN,United States,Frisco,Texas,TRUE
+10/13/2017 13:48,-3.778939962,-38.54034042,NISSAN,Brazil,Fortaleza,,TRUE
+11/1/2017 1:26,27.97579956,-81.5410614,NISSAN,United States,Lake Wales,Florida,TRUE
+5/17/2017 0:55,35.7595731,-79.0192997,CISCO,United States,Fearrington Village,North Carolina,FALSE
+5/19/2017 14:43,53.72666931,-127.6476212,ELECTRONIC ARTS,Canada,Kitimat,,FALSE
+5/30/2017 18:09,44.92385483,-92.9593811,Apple Computer Inc,United States,Hudson,Minnesota,FALSE
+10/31/2017 18:32,-6.236800194,107.1056137,TELKOMSEL,Indonesia,Cikarang,,FALSE
+6/20/2017 6:29,25.77388954,-80.1938858,AMERICAN AIRLINES,United States,Miami,Florida,FALSE
+11/5/2017 17:02,30.23813057,-85.64887238,WALMART,United States,Lynn Haven,Florida,FALSE
+10/4/2017 16:39,51.83465958,6.617609978,NISSAN,Germany,Bocholt,,TRUE
+9/27/2017 10:19,25.61064911,85.14441681,BIG BAZAAR,India,Patna,,TRUE
+4/28/2017 8:02,32.9709834,-96.7071453,GAMESTOP,United States,Garland,Texas,FALSE
+9/26/2017 0:05,34.05350113,-118.2450027,NISSAN,United States,Los Angeles,California,TRUE
+10/11/2017 20:47,39.96770096,-76.73110199,NISSAN,United States,York,Pennsylvania,FALSE
+7/18/2017 22:00,39.95258331,-75.16522217,J CREW,United States,Philadelphia,Pennsylvania,FALSE
+11/27/2017 17:40,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,FALSE
+11/4/2017 22:37,40.84740067,-73.40129852,NISSAN,United States,Byram,New York,TRUE
+8/11/2017 23:08,55.94653702,11.73196125,ADIDAS,Denmark,Nyk���������,,TRUE
+6/30/2017 13:16,23.030809,72.591751,BIG BAZAAR,India,Ahmedabad,,FALSE
+7/8/2017 6:14,25.20484924,55.27078247,RTA DUBAI,United Arab Emirates,Dubai,,TRUE
+5/5/2017 0:28,7.198606491,-75.34121704,ARAMCO,Colombia,Valdivia,,FALSE
+6/12/2017 6:28,39.22782898,-120.0047073,TESCO,United States,Kings Beach,California,TRUE
+11/27/2017 16:41,51.65211868,-0.390700012,ALDI,United Kingdom,Watford,,FALSE
+10/26/2017 17:35,35.10503006,-106.6471787,VERIZON,United States,Albuquerque,New Mexico,TRUE
+6/15/2017 19:37,-19.05520058,29.60354996,TESCO,Zimbabwe,Redcliff,,TRUE
+7/4/2017 7:01,42.4072113,-71.38243866,APPLE INC,United States,Sudbury,Massachusetts,FALSE
+9/12/2017 21:20,50.26525879,-5.053599834,Apple Computer Inc,United Kingdom,Truro,,TRUE
+10/15/2017 1:10,36.17190933,-115.1399689,T-MOBILE,United States,Las Vegas,Nevada,FALSE
+10/5/2017 4:18,19.09028053,72.87136841,JET AIRWAYS ,India,Mumbai,,FALSE
+10/13/2017 8:59,-7.014589787,110.9515305,TELKOMSEL,Indonesia,Purwodadi,,FALSE
+6/5/2017 1:40,34.02112198,-118.3964691,HP INC.,United States,Culver City,California,TRUE
+7/15/2017 14:01,32.08354187,-81.09983063,BEST BUY,United States,Savannah,Georgia,FALSE
+8/17/2017 0:07,30.30637,-97.752762,T-MOBILE,United States,Austin,Texas,FALSE
+11/8/2017 1:24,40.85250854,-73.135849,APPLE INC,United States,Setauket-East Setauket,New York,TRUE
+10/31/2017 1:03,-7.009329796,113.8555069,TELKOMSEL,Indonesia,Sumenep,,FALSE
+7/23/2017 1:13,36.72113419,-76.58599091,ELECTRONIC ARTS,United States,Gatesville,Virginia,TRUE
+7/31/2017 17:29,41.87811279,-87.62979889,CITIBANK,United States,Chicago,Illinois,TRUE
+11/5/2017 19:13,34.62828827,-98.63275146,NISSAN,United States,Cache,Oklahoma,TRUE
+6/23/2017 2:57,37.09000015,95.70999908,MCDONALDS,China,Xitieshan,,TRUE
+10/6/2017 15:57,-7.258570194,112.7466888,TELKOMSEL,Indonesia,Surabaya,,TRUE
+6/6/2017 17:02,38.95170593,-92.33407593,KELLOGG'S,United States,Columbia,Missouri,FALSE
+10/26/2017 15:11,-33.4630394,-70.64794159,NISSAN,Chile,Santiago,,FALSE
+5/18/2017 0:24,40.71278381,-74.0059433,CITIBANK,United States,Byram,New York,FALSE
+10/23/2017 17:18,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+7/1/2017 6:29,-34.918072,138.598236,TELSTRA,Australia,Adelaide,,TRUE
+10/11/2017 22:16,37.74739838,-122.4392166,Apple Computer Inc,United States,San Francisco,California,TRUE
+10/15/2017 14:46,19.03511047,73.07312012,TIMES OF INDIA,India,Artist Village,,TRUE
+9/7/2017 22:30,43.74269867,-84.62167358,UBS,United States,Barnes Lake-Millers Lake,Michigan,TRUE
+11/21/2017 1:14,34.42835999,-119.7204208,PEOPLE,United States,Santa Barbara,California,FALSE
+10/16/2017 19:45,47.6035614,-122.3294373,FORTUNE,United States,Seattle,Washington,TRUE
+9/21/2017 21:29,44.8476181,9.640410423,MCDONALDS,Italy,Ponte dell'Olio,,FALSE
+9/18/2017 15:21,41.88415146,-87.63240814,VERIZON,United States,Chicago,Illinois,TRUE
+9/3/2017 0:33,33.39482117,-104.5227509,NISSAN,United States,Roswell,New Mexico,FALSE
+11/4/2017 16:41,37.87868881,-121.9434509,CAPITAL ONE,United States,Diablo,California,TRUE
+7/24/2017 2:10,38,-97,AMERICAN AIRLINES,United States,Peabody,Kansas,TRUE
+7/18/2017 17:21,51.5,-0.116667002,BRITISH AIRWAYS,United Kingdom,City of Westminster,,TRUE
+11/3/2017 18:10,44.89796066,-76.24889374,BOEING,Canada,Perth,,TRUE
+6/5/2017 7:52,51.50735092,-0.127758294,DELOITTE,United Kingdom,London,,TRUE
+5/15/2017 3:49,41.6032207,-73.087749,SAINT LAURENT,United States,Watertown,Connecticut,FALSE
+8/31/2017 16:47,18.53610992,73.85218048,ISRO,India,Shivaji Nagar,,TRUE
+11/6/2017 20:48,39.80104828,-89.64360046,NISSAN,United States,Springfield,Illinois,TRUE
+11/6/2017 6:23,21.17642021,72.81408691,AIR ASIA,India,S����,,FALSE
+11/5/2017 22:13,32.58507156,-89.87374115,APPLE INC,United States,Canton,Mississippi,TRUE
+11/3/2017 23:22,42.35863113,-71.05670166,MCDONALDS,United States,Boston,Massachusetts,FALSE
+11/8/2017 2:32,0.109739996,113.9173965,NISSAN,Indonesia,Longnawang,,FALSE
+11/21/2017 10:15,51.46881104,0.04879,DEBENHAMS,United Kingdom,Woolwich,,FALSE
+11/23/2017 0:13,48.76766968,9.171919823,NISSAN,Germany,Stuttgart,,FALSE
+9/14/2017 11:23,51.03398895,-3.601389885,MARKS AND SPENCER,United Kingdom,Tiverton,,FALSE
+10/15/2017 15:38,26.84911919,80.94360352,INDIGO,India,Lucknow,,FALSE
+10/10/2017 16:19,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,TRUE
+9/20/2017 0:27,39.59320068,-104.8703003,T-MOBILE,United States,Centennial,Colorado,FALSE
+8/11/2017 14:56,55.94653702,11.73196125,ADIDAS,Denmark,Nyk���������,,TRUE
+11/19/2017 1:12,41.4966011,-81.6882019,NISSAN,United States,Montrose-Ghent,Ohio,TRUE
+3/29/2017 16:16,50.07553864,14.43780041,GSK,Czech Republic,Karl��,,FALSE
+4/19/2017 16:47,32.51964,-83.5603112,WOOLWORTHS,United States,Robins Air Force Base,Georgia,FALSE
+8/30/2017 8:02,13.63082027,79.41625977,PVR,India,Tirupati,,FALSE
+11/6/2017 15:37,19.09028053,72.87136841,JET AIRWAYS,India,Mumbai,,FALSE
+10/23/2017 17:15,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+9/11/2017 22:54,34.24446106,-118.5326614,ELECTRONIC ARTS,United States,Northridge,California,TRUE
+4/1/2017 13:15,38.9071923,-77.0368707,PROCTER & GAMBLE,United States,"Washington, D. C.",Maryland,FALSE
+11/8/2017 5:35,21.78660011,82.79476166,PVR,India,Seor�������,,FALSE
+11/18/2017 14:53,34.16788101,-111.9307022,NISSAN,United States,Cordes Lakes,Arizona,TRUE
+7/21/2017 17:57,51.55505371,0.062687099,ELECTRONIC ARTS,United Kingdom,Barking,,FALSE
+10/14/2017 3:55,34.03683853,-118.7828064,PEOPLE,United States,Malibu,California,TRUE
+10/26/2017 14:10,30.15752029,-95.4557724,DROPBOX,United States,Conroe,Texas,FALSE
+9/30/2017 15:58,-6.16339016,106.7863922,TELKOMSEL,Indonesia,Jakarta,,FALSE
+7/20/2017 22:28,35.19828415,-111.6512985,MASTERCARD,United States,Flagstaff,Arizona,FALSE
+9/9/2017 15:29,40.77756119,-111.9307175,T-MOBILE,United States,Salt Lake City,Utah,FALSE
+9/30/2017 16:19,44.30315018,-78.32427216,NISSAN,Canada,Peterborough,,TRUE
+9/1/2017 14:53,41.04085159,28.98617935,TURKCELL,Turkey,����i����li,,TRUE
+9/4/2017 3:35,47.6035614,-122.3294373,LAWA,United States,Seattle,Washington,TRUE
+8/19/2017 18:07,29.46071053,-98.52160645,NIKE,United States,Balcones Heights,Texas,FALSE
+11/9/2017 3:38,35.46617889,-97.51483917,NISSAN,United States,Oklahoma City,Oklahoma,TRUE
+4/15/2017 7:37,41.59115982,1.520862341,ZIMMER BIOMED,Spain,Jorba,,FALSE
+11/8/2017 11:24,17.41840935,78.45001221,JET AIRWAYS,India,Hyderabad,,FALSE
+9/1/2017 15:00,52.6667099,-1.114070058,ALDI,United Kingdom,Leicester,,TRUE
+7/10/2017 17:34,33.64121628,-117.9188232,ELECTRONIC ARTS,United States,Costa Mesa,California,FALSE
+9/30/2017 0:48,40.49436951,-3.876189947,APPLE INC,Spain,Las Rozas de Madrid,,TRUE
+11/6/2017 1:12,34.6996994,-86.64295197,NISSAN,United States,Redstone Arsenal,Alabama,TRUE
+4/5/2017 14:54,45.76233292,11.69097614,QATAR AIRWAYS,Italy,Marostica,,FALSE
+11/3/2017 3:10,-0.361699998,-52.14751053,APPLE INC,Brazil,Mazag��,,TRUE
+4/3/2017 16:46,46.729553,-94.6858998,VOLKSWAGEN USA,United States,Nowthen,Minnesota,FALSE
+9/8/2017 22:06,39.74000168,-104.9919968,APPLE INC,United States,Denver,Colorado,TRUE
+8/29/2017 0:48,14.50471973,-86.25309753,MICROSOFT STORE,Honduras,San Nicol��,,TRUE
+4/4/2017 18:49,37.4315734,-78.6568942,GAMESTOP,United States,Woodlake,Virginia,TRUE
+7/23/2017 7:58,25.20484924,55.27078247,RTA DUBAI,United Arab Emirates,Dubai,,FALSE
+11/25/2017 1:39,54.31407166,-2.230010033,STANDARD BANK,United Kingdom,Kirkby Stephen,,FALSE
+9/5/2017 0:45,42.18420029,-71.7181778,UBISOFT,United States,Grafton,Massachusetts,TRUE
+9/20/2017 0:00,47.61798096,-122.3563766,APPLE INC,United States,Seattle,Washington,FALSE
+9/7/2017 17:53,34.14680099,73.19924927,TCS,Pakistan,Abbott����,,FALSE
+5/30/2017 15:20,38.0055052,-92.5343377,APPLE INC,United States,Osage Beach,Missouri,TRUE
+10/9/2017 16:58,41.5737114,-93.61765289,T-MOBILE,United States,Des Moines,Iowa,FALSE
+4/25/2017 11:25,-33.86417389,151.2052917,LEGO,Australia,Sydney,,FALSE
+10/23/2017 17:25,39.09577942,-76.86235046,#WINTERREADY,United States,Laurel,Maryland,TRUE
+8/23/2017 16:02,37.87253189,-122.2747803,IKEA,United States,Berkeley,California,TRUE
+9/5/2017 9:38,21.78660011,82.79476166,PVR,India,Seor�������,,TRUE
+9/7/2017 20:44,50.82881165,-0.134200007,SMIRNOFF,United Kingdom,Brighton,,TRUE
+10/12/2017 8:10,19.60378075,77.85323334,LOVEWINS CAMPAIGN,India,Umarkhed,,FALSE
+9/10/2017 22:30,35.65446854,-97.4781189,NISSAN,United States,Edmond,Oklahoma,TRUE
+5/4/2017 9:15,52.35551834,-1.174319744,RECARO,United Kingdom,Rugby,,FALSE
+11/18/2017 14:57,41.15419006,1.105939984,UBISOFT,Spain,Reus,,FALSE
+4/23/2017 5:06,32.9709834,-96.7071453,EA - MASS EFFECT,United States,Garland,Texas,TRUE
+9/7/2017 0:20,40.83039093,-84.92814636,T-MOBILE,United States,Decatur,Indiana,TRUE
+11/13/2017 14:25,49.21282959,-2.133169889,MICROSOFT - WINDOWS 10,Jersey,Saint Helier,,FALSE
+11/8/2017 2:36,53.17551041,-8.152029991,TESCO,Ireland,Portumna,,FALSE
+11/8/2017 0:55,37.74739838,-122.4392166,NIKE,United States,San Francisco,California,TRUE
+7/12/2017 6:21,52.04062271,-0.759417117,TESCO,United Kingdom,Milton Keynes,,FALSE
+7/7/2017 3:53,40.42586899,-86.9080658,PURDUE UNIVERSITY,United States,West Lafayette,Indiana,FALSE
+7/9/2017 15:23,40.41677475,-3.703790188,SWISS AIRLINE,Spain,Madrid,,TRUE
+10/5/2017 7:51,53.46300125,-2.290999889,TELKOMSEL,United Kingdom,Trafford Park,,TRUE
+11/5/2017 1:51,37.08475876,-94.51347351,NISSAN,United States,Joplin,Missouri,TRUE
+11/15/2017 21:43,35.40150833,-99.4124527,NISSAN,United States,Elk City,Oklahoma,TRUE
+9/29/2017 10:06,52.37311935,4.893189907,LLOYDS TSB BANK PLC,Netherlands,Amsterdam,,TRUE
+9/20/2017 22:35,42.00299835,-71.51345825,FEDEX,United States,Woonsocket,Rhode Island,TRUE
+9/20/2017 0:15,38.05538177,-102.1247787,Apple Computer Inc,United States,Syracuse,Colorado,TRUE
+7/5/2017 0:21,53.54506302,-2.632507324,TESCO,United Kingdom,Wigan,,TRUE
+8/20/2017 18:38,52.47866821,-1.908480048,ALDI,United Kingdom,Birmingham,,TRUE
+11/14/2017 0:12,31.16889954,-100.0771484,FOSSIL,United States,Eden,Texas,FALSE
+10/11/2017 16:58,-0.668789983,109.6486282,TELKOMSEL,Indonesia,Batuampar,,TRUE
+9/4/2017 8:01,-24.67139053,-59.95420837,TCS,Argentina,Estanislao del Campo,,TRUE
+11/5/2017 17:19,24.64731979,46.71458054,UBISOFT,Saudi Arabia,Riyadh,,TRUE
+10/14/2017 0:40,42.46797943,-71.01442719,AMERICAN AIRLINES,United States,Saugus,Massachusetts,FALSE
+4/15/2017 15:09,27.6648274,-81.5157535,AMERICAN AIRLINES,United States,Avon Park,Florida,FALSE
+8/31/2017 21:39,26.65036964,-98.35131073,NIKE,United States,Citrus City,Texas,FALSE
+6/11/2017 9:20,-33.91666794,18.41666603,EMIRATES,South Africa,Cape Town,,FALSE
+4/13/2017 16:49,37.54426956,-4.727752686,EA - FIFA,Spain,Montalb��������,,FALSE
+9/7/2017 14:49,40.7038002,-73.8316803,VERIZON,United States,Byram,New York,TRUE
+11/2/2017 4:37,-33.85628128,151.0209656,PEOPLE,Australia,Lidcombe,,TRUE
+6/12/2017 15:39,-33.91666794,18.41666603,STANDARD BANK,South Africa,Cape Town,,TRUE
+11/3/2017 15:58,-7.009329796,113.8555069,TELKOMSEL,Indonesia,Sumenep,,TRUE
+9/26/2017 5:56,43.31705093,-2.581370115,PEOPLE,Spain,Aulesti,,TRUE
+6/14/2017 17:05,10.72014999,122.5621033,AMERICAN AIRLINES,Philippines,Iloilo,,TRUE
+8/17/2017 21:58,27.97579956,-81.5410614,FROSTED FLAKES,United States,Lake Wales,Florida,TRUE
+7/8/2017 20:27,-6.91242,107.606911,TELKOMSEL,Indonesia,Bandung,,TRUE
+10/30/2017 21:44,-14.24289989,-54.38779831,AZUL AIRLINES,Brazil,Poxor��,,FALSE
+8/27/2017 17:00,32.38611984,-96.84841919,NISSAN,United States,Glenn Heights,Texas,TRUE
+11/23/2017 21:02,51.80839157,5.73085022,NISSAN,Netherlands,Wijchen,,FALSE
+10/15/2017 14:27,35.12699127,-119.4243088,NISSAN,United States,South Taft,California,TRUE
+11/15/2017 9:10,51.06303024,-1.316769958,LOVEWINS CAMPAIGN,United Kingdom,Winchester,,FALSE
+9/2/2017 19:47,40.74283981,30.46199989,TURKCELL,Turkey,Adapazar��,,TRUE
+11/18/2017 0:07,7.920589924,98.36833191,DROPBOX,Thailand,Ban Ko Kaeo,,FALSE
+6/6/2017 18:04,41.63222122,-88.2120285,SHELL,United States,Plainfield,Illinois,TRUE
+10/11/2017 20:48,42.3316803,-83.04792023,APPLE INC,Canada,Windsor,,TRUE
+10/27/2017 3:26,46.73014832,-117.1814728,NISSAN,United States,Pullman,Washington,TRUE
+8/21/2017 14:58,52.70692825,-1.98266995,MARKS AND SPENCER,United Kingdom,Norton Canes,,TRUE
+5/31/2017 22:09,35.10503,-106.647179,BANK OF AMERICA,United States,Albuquerque,New Mexico,TRUE
+9/14/2017 16:26,47.08253098,10.46313,KROGER,Austria,See,,FALSE
+10/16/2017 3:55,31.43997002,-100.4519577,NISSAN,United States,San Angelo,Texas,TRUE
+8/23/2017 23:26,39.60868835,-86.10632324,ALDI,United States,Greenwood,Indiana,FALSE
+9/12/2017 18:54,42.71031952,-71.16123962,APPLE INC,United States,Lawrence,Massachusetts,TRUE
+4/5/2017 5:24,52.35551834,-1.174319744,LUFTHANSA,United Kingdom,Rugby,,FALSE
+11/3/2017 8:14,26.90646935,75.78494263,INDIGO,India,Jaipur,,FALSE
+10/5/2017 17:51,41.02931976,-92.80584717,T-MOBILE,United States,Albia,Iowa,TRUE
+9/1/2017 13:46,60.51139069,11.24901962,MICROSOFT - WINDOWS 10,Norway,Eidsvoll,,TRUE
+11/15/2017 16:51,-1.270200014,36.80413818,BOEING,Kenya,Nairobi,,FALSE
+6/20/2017 0:14,42.26374817,-71.80199432,APPLE INC,United States,Hamilton,Massachusetts,TRUE
+6/12/2017 15:47,60.11999893,18.63999939,MICROSOFT - WINDOWS 10,Sweden,Arn��,,TRUE
+11/29/2017 2:57,-33.85628128,151.0209656,SINGTEL OPTUS,Australia,Lidcombe,,TRUE
+10/5/2017 15:19,40.03770828,-83.14813232,NISSAN,United States,Lincoln Village,Ohio,TRUE
+9/10/2017 5:01,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+7/3/2017 14:21,29.7630558,-95.36305237,LUFTHANSA,United States,Houston,Texas,TRUE
+9/15/2017 10:22,19.09028053,72.87136841,BAJAJ FINSERV,India,Mumbai,,TRUE
+11/19/2017 3:24,35.46617889,-97.51483917,NISSAN,United States,Oklahoma City,Oklahoma,TRUE
+8/24/2017 1:25,59.03672028,9.675530434,UBISOFT,Norway,Langesund,,TRUE
+11/18/2017 21:17,31.16889954,-100.0771484,NISSAN,United States,Eden,Texas,TRUE
+6/15/2017 16:37,40.71416855,-74.0063858,T-MOBILE,United States,Byram,New Jersey,FALSE
+11/3/2017 14:36,40.52679825,-74.39360046,STANDARD BANK,United States,Warren Township,New Jersey,FALSE
+11/5/2017 23:06,-7.009329796,113.8555069,TELKOMSEL,Indonesia,Sumenep,,FALSE
+9/13/2017 2:10,30.40638924,-88.7949295,APPLE INC,United States,Ocean Springs,Mississippi,FALSE
+9/5/2017 0:45,27.70199966,85.31749725,TIMES OF INDIA,Nepal,Kathmandu,,TRUE
+6/6/2017 17:07,47.6062088,-122.3320694,T-MOBILE,United States,Seattle,Washington,TRUE
+4/16/2017 1:21,-7.090910912,107.6688843,TELKOMSEL,Indonesia,Banjaran,,TRUE
+8/22/2017 5:00,36.17190933,-115.1399689,ELECTRONIC ARTS,United States,Las Vegas,Nevada,TRUE
+11/20/2017 18:27,38.25889969,-92.4365921,PEOPLE,United States,Tuscumbia,Missouri,TRUE
+11/23/2017 13:50,23.0308094,72.5917511,JET AIRWAYS,India,Ahmedabad,,FALSE
+6/15/2017 6:50,52.373119,4.89319,BRITISH AIRWAYS,Netherlands,Amsterdam,,FALSE
+11/5/2017 2:40,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/1/2017 19:21,40.71455002,-74.00711823,PFIZER,United States,Byram,New Jersey,FALSE
+8/11/2017 11:20,55.95943451,-3.189086199,MARKS AND SPENCER,United Kingdom,Seafield,,TRUE
+11/4/2017 3:16,-11.65157986,43.35997009,SPICEJET,Comoros,Mtsamdou,,FALSE
+10/31/2017 21:31,41.88415146,-87.63240814,T-MOBILE,United States,Chicago,Illinois,FALSE
+6/10/2017 8:33,1.28727901,103.8492584,BRITISH AIRWAYS,Singapore,Singapore,,TRUE
+9/17/2017 18:48,37.1679306,-95.84501648,MICROSOFT,United States,Independence,Kansas,TRUE
+9/7/2017 5:12,2.263940096,99.14360046,TELKOMSEL,Indonesia,Siborong-borong,,FALSE
+11/25/2017 0:50,48.85692978,2.341200113,INFOSYS,France,Paris,,FALSE
+9/3/2017 14:49,50.07907867,14.43321991,LIDL,Czech Republic,Star������,,TRUE
+11/13/2017 23:40,30.19124031,-82.64330292,NISSAN,United States,Lake City,Florida,FALSE
+10/9/2017 11:10,51.48126984,-3.180720091,BRITISH AIRWAYS,United Kingdom,Cardiff,,TRUE
+7/7/2017 16:46,55.86423874,-4.251805782,MARKS AND SPENCER,United Kingdom,Rutherglen,,TRUE
+9/11/2017 9:01,54.31407166,-2.230010033,MARKS AND SPENCER,United Kingdom,Kirkby Stephen,,TRUE
+10/16/2017 1:10,37.1679306,-95.84501648,T-MOBILE,United States,Independence,Kansas,FALSE
+10/14/2017 18:47,52.41328812,0.740719974,TESCO,United Kingdom,Thetford,,FALSE
+9/21/2017 19:43,-14.24289989,-54.38779831,IPIRANGA,Brazil,Poxor��,,FALSE
+9/27/2017 19:39,32.77822876,-97.34784698,SPORTS ILLUSTRATED,United States,Fort Worth,Texas,FALSE
+10/23/2017 17:41,-6.926730156,107.6885529,NISSAN,Indonesia,Cileunyi,,FALSE
+11/19/2017 4:36,34.16788101,-111.9307022,NISSAN,United States,Cordes Lakes,Arizona,TRUE
+11/1/2017 17:34,41.23796844,-81.55197144,NISSAN,United States,Montrose-Ghent,Ohio,TRUE
+11/14/2017 20:30,41.88415146,-87.63240814,HELLO FRESH,United States,Chicago,Illinois,TRUE
+7/1/2017 0:41,51.76120377,-1.246467352,TESCO,United Kingdom,Oxford,,TRUE
+11/3/2017 15:48,41.37733841,-83.65113068,NISSAN,United States,Manitou Beach-Devils Lake,Ohio,TRUE
+9/28/2017 15:42,18.67052078,98.91387177,DEBENHAMS,Thailand,Hang Dong,,FALSE
+9/20/2017 10:20,26.83708954,30.79639053,NESTLE,Egypt,Manfal���,,FALSE
+10/11/2017 17:01,40.71455002,-74.00711823,NISSAN,United States,Byram,New Jersey,TRUE
+7/20/2017 19:15,17.37527847,78.47444153,Apple Computer Inc,India,Hyderabad,,TRUE
+11/9/2017 23:01,40.09492874,-83.02082825,CIGNA,United States,Upper Arlington,Ohio,FALSE
+11/28/2017 1:17,32.83967972,-83.62757874,NISSAN,United States,Macon,Georgia,TRUE
+11/27/2017 15:57,41.96781921,-91.67835236,BEST BUY,United States,Cedar Rapids,Iowa,FALSE
+6/5/2017 23:42,28.53805542,-81.37944794,AMERICAN AIRLINES,United States,Orlando,Florida,TRUE
+7/30/2017 3:15,34.95920944,-116.4193878,MOLINA HEALTH,United States,Fort Irwin,California,TRUE
+10/9/2017 15:34,40.75851059,-82.51480103,PEOPLE,United States,Granville South,Ohio,FALSE
+11/17/2017 9:07,47.99309158,0.195669994,LEGO,France,Le Mans,,FALSE
+11/26/2017 15:25,53.38098907,-3.112989903,DEBENHAMS,United Kingdom,Moreton,,TRUE
+4/5/2017 12:23,52.35551834,-1.174319744,MORRISONS,United Kingdom,Rugby,,FALSE
+11/21/2017 2:01,52.51607132,13.37697983,NISSAN,Germany,Tiergarten,,TRUE
+7/25/2017 21:46,29.42412186,-98.49362946,AMERICAN AIRLINES,United States,Alamo Heights,Texas,TRUE
+11/1/2017 0:01,41.88415146,-87.63240814,SPORTS ILLUSTRATED,United States,Chicago,Illinois,TRUE
+11/20/2017 3:06,40.65507126,-73.94888306,NISSAN,United States,Byram,New York,TRUE
+9/25/2017 17:29,-26.13463974,28.15313911,MICROSOFT,South Africa,Modderfontein,,TRUE
+11/24/2017 6:47,34.05350113,-118.2450027,JC PENNEY,United States,Los Angeles,California,FALSE
+9/17/2017 1:19,37.1679306,-95.84501648,APPLE INC,United States,Independence,Kansas,FALSE
+9/14/2017 14:53,28.6439991,77.09100342,TIMES OF INDIA,India,N������,,TRUE
+11/2/2017 18:36,29.87789917,-97.93161011,NISSAN,United States,Geronimo,Texas,TRUE
+11/28/2017 4:49,-37.86579895,145.102829,TELSTRA,Australia,Ashwood,,TRUE
+4/26/2017 19:41,40.0583238,-74.4056612,POP TARTS,United States,Cedar Glen Lakes,New Jersey,FALSE
+5/21/2017 6:35,32.9709834,-96.7071453,UBISOFT - ASSASSIN'S CREED,United States,Garland,Texas,FALSE
+9/27/2017 22:52,37.35570145,-121.9550018,NISSAN,United States,Santa Clara,California,TRUE
+11/14/2017 23:18,50.51325989,2.37184,SPORTS DIRECT,France,Pernes,,FALSE
+6/18/2017 13:28,34.74647903,-92.28959656,MICROSOFT SUPPORT,United States,Little Rock,Arkansas,TRUE
+11/15/2017 0:20,56.65285873,-3.996670008,ROYAL BANK OF SCOTLAND,United Kingdom,Aberfeldy,,FALSE
+6/6/2017 13:13,40.15330505,-74.64739227,T-MOBILE,United States,McGuire AFB,New Jersey,TRUE
+9/29/2017 0:51,40.10977936,-88.19843292,NISSAN,United States,Urbana,Illinois,TRUE
+4/13/2017 10:23,34.69373703,135.5021667,H&M,Japan,����saka-shi,,FALSE
+11/26/2017 1:02,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+9/27/2017 16:28,60.17116165,24.93258095,H&M,Finland,Helsinki,,FALSE
+9/30/2017 1:30,37.1679306,-95.84501648,BEST BUY,United States,Independence,Kansas,FALSE
+11/24/2017 13:18,52.90082169,-2.143470049,CARILLION,United Kingdom,Stone,,FALSE
+7/31/2017 4:21,-26.20410347,28.04730415,STANDARD BANK,South Africa,Johannesburg,,TRUE
+8/25/2017 1:33,32.78182983,-96.79586029,MOHAWK,United States,Dallas,Texas,TRUE
+11/28/2017 22:59,41.88415146,-87.63240814,T-MOBILE,United States,Chicago,Illinois,FALSE
+9/14/2017 11:02,28.60733032,77.20350647,HDFC BANK,India,New Delhi,,TRUE
+11/22/2017 2:29,39.93082047,-83.79946899,CAPITAL ONE,United States,Springfield,Ohio,TRUE
+11/4/2017 14:28,38.53855133,-76.54530334,NISSAN,United States,Prince Frederick,Maryland,TRUE
+11/25/2017 20:24,42.50381851,12.57347012,NISSAN,Italy,Narni,,TRUE
+11/18/2017 16:50,44.11558914,-120.5148392,NISSAN,United States,Prineville,Oregon,TRUE
+8/30/2017 19:23,52.37311935,4.893189907,POSTNL,Netherlands,Amsterdam,,TRUE
+9/4/2017 15:10,40.14323044,-74.72670746,ETIHAD,United States,Tullytown,New Jersey,TRUE
+4/7/2017 14:04,52.35551834,-1.174319744,TESCO,United Kingdom,Rugby,,FALSE
+11/9/2017 9:29,50.41283035,-5.071169853,TESCO,United Kingdom,Newquay,,FALSE
+10/30/2017 10:23,29.31015015,47.49444962,QATAR AIRWAYS,Kuwait,Al Jahr����,,FALSE
+11/17/2017 16:22,4.789899826,95.46015167,TELKOMSEL,Indonesia,Lhokkruet,,FALSE
+11/5/2017 1:22,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+11/7/2017 3:59,40.00762939,-75.13395691,BEST BUY,United States,Philadelphia,Pennsylvania,TRUE
+8/29/2017 0:31,40.14323044,-74.72670746,ADIDAS,United States,Tullytown,New Jersey,TRUE
+11/23/2017 21:16,54.59534073,-5.934549809,TESCO,United Kingdom,Belfast,,FALSE
+7/19/2017 15:03,19.07598305,72.87765503,LUFTHANSA,India,Mumbai,,TRUE
+6/26/2017 10:14,54.97825241,-1.61777997,BRITISH AIRWAYS,United Kingdom,Newcastle upon Tyne,,FALSE
+11/7/2017 15:35,-6.256080151,106.8089981,TELKOMSEL,Indonesia,Jakarta,,FALSE
+10/7/2017 3:22,-27.03060913,-65.32029724,SPORTS ILLUSTRATED,Argentina,Bella Vista,,TRUE
+8/23/2017 22:22,50.44137955,30.52248955,VERIZON,Ukraine,Kiev,,TRUE
+11/8/2017 14:32,-7.471529961,178.6909637,JET AIRWAYS,Tuvalu,Asau Village,,FALSE
+7/31/2017 1:25,40.75675583,-111.8918839,ADIDAS,United States,Salt Lake City,Utah,TRUE
+6/23/2017 16:53,39.46990585,-0.376288086,MICROSOFT SUPPORT,Spain,Valencia,,FALSE
+10/24/2017 19:38,37.2718811,-119.2702332,MCCLATCHY,United States,Auberry,California,FALSE
+9/4/2017 10:43,19.10910988,72.82385254,SPORTS DIRECT,India,Mumbai,,TRUE
+5/6/2017 8:51,52.94760132,6.623058796,BAYER,Netherlands,Assen,,TRUE
+5/4/2017 20:08,33.31280518,44.36148834,LEGO,Iraq,Baghdad,,FALSE
+6/1/2017 23:47,51.5,-0.116667002,MCDONALDS,United Kingdom,City of Westminster,,FALSE
+11/3/2017 13:59,37.1679306,-95.84501648,SEPHORA,United States,Independence,Kansas,TRUE
+11/7/2017 2:15,39.73926163,-89.50408936,Apple Computer Inc,United States,Rochester,Illinois,TRUE
+11/26/2017 14:33,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+7/23/2017 14:18,-2.170997858,-79.92235565,Apple Computer Inc,Ecuador,Guayaquil,,TRUE
+7/31/2017 1:18,36.16999817,-119.7462006,MCDONALDS,United States,Stratford,California,TRUE
+10/31/2017 5:50,19.09028053,72.87136841,APPLE INC,India,Mumbai,,TRUE
+10/16/2017 1:08,52.88356018,-1.974060059,NOVARTIS,United Kingdom,Cheadle,,FALSE
+11/16/2017 15:15,29.46071053,-98.52160645,PEOPLE,United States,Balcones Heights,Texas,FALSE
+9/13/2017 16:30,37.74739838,-122.4392166,ADIDAS,United States,San Francisco,California,FALSE
+11/4/2017 8:42,28.60733032,77.20350647,NOKIA,India,New Delhi,,TRUE
+11/25/2017 9:38,45.78461075,3.105089903,NISSAN,France,Clermont-Ferrand,,FALSE
+8/25/2017 22:26,-33.85628128,151.0209656,GUCCI,Australia,Lidcombe,,TRUE
+4/3/2017 18:52,40.71278381,-74.0059433,CHEVRON,United States,Byram,New York,FALSE
+9/27/2017 22:37,32.67827988,-83.2229538,LOVEWINS CAMPAIGN,United States,Jeffersonville,Georgia,TRUE
+4/16/2017 12:05,-7.797591686,110.3707123,TELKOMSEL,Indonesia,Yogyakarta,,TRUE
+11/17/2017 17:30,-37.09069824,-63.58480072,NISSAN,Argentina,Macach��,,FALSE
+7/29/2017 16:21,-30.78257751,135.9308319,CITIBANK,Australia,Roxby Downs,,FALSE
+10/5/2017 23:08,42.55680084,-83.48889923,NISSAN,United States,West Bloomfield Township,Michigan,TRUE
+6/22/2017 23:05,51.95453262,4.492816448,Apple Computer Inc,Netherlands,Rotterdam,,TRUE
+10/16/2017 14:56,30.88269043,-87.77768707,NISSAN,United States,Bay Minette,Alabama,TRUE
+6/19/2017 20:50,43.26049,-2.9359,MICROSOFT SUPPORT,Spain,Bilbao,,FALSE
+10/16/2017 19:03,39.53627014,-119.8304825,Apple Computer Inc,United States,Reno,Nevada,TRUE
+10/17/2017 0:14,39.30096817,-76.61061096,NISSAN,United States,Baltimore,Maryland,TRUE
+4/4/2017 5:01,38.90719223,-77.03687286,HYUNDAI,United States,"Washington, D. C.",Maryland,TRUE
+8/9/2017 8:00,41.09583664,-81.54134369,CARLSBERG,United States,Montrose-Ghent,Ohio,TRUE
+11/8/2017 23:52,52.3461113,-1.139799953,NISSAN,United Kingdom,Long Buckby,,TRUE
+4/12/2017 11:34,44.31484604,-85.60236359,BOX.COM,United States,Sturgeon Bay,Michigan,FALSE
+6/6/2017 13:04,42.29394913,-85.70510864,T-MOBILE,United States,Comstock Northwest,Michigan,FALSE
+11/19/2017 5:21,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+10/7/2017 23:27,-24.91209984,133.397995,WOOLWORTHS,Australia,Alice Springs,,FALSE
+11/1/2017 18:05,22.44607925,69.90769959,NISSAN,India,Sikka,,TRUE
+11/2/2017 11:45,26.84911919,80.94360352,BAJAJ FINSERV,India,Lucknow,,TRUE
+3/30/2017 22:44,41.2033216,-77.1945247,CHANEL,United States,Williamsport,Pennsylvania,FALSE
+6/10/2017 20:26,-33.02915955,27.85458755,DEBENHAMS,South Africa,East London,,TRUE
+7/31/2017 4:20,29.95106506,-90.0715332,MCDONALDS,United States,New Orleans,Louisiana,FALSE
+6/1/2017 18:50,30.30637,-97.752762,Apple Computer Inc,United States,Austin,Texas,TRUE
+5/20/2017 8:29,52.35551834,-1.174319744,TESCO,United Kingdom,Rugby,,FALSE
+5/28/2017 21:16,53.3271538,-7.5140841,MICROSOFT,Ireland,Kilbeggan,,FALSE
+10/5/2017 1:52,36.33348084,-94.12467957,NISSAN,United States,Rogers,Arkansas,TRUE
+10/18/2017 0:45,40.61487961,-80.56289673,NISSAN,United States,Chester,West Virginia,TRUE
+7/28/2017 20:21,53.76670074,-1.766669989,DEBENHAMS,United Kingdom,Bradford,,TRUE
+11/18/2017 15:42,28.56315994,77.36740875,SPICEJET,India,Noida,,FALSE
+9/26/2017 2:15,45.37137985,-75.68534088,SPORTS ILLUSTRATED,Canada,Ottawa,,TRUE
+9/4/2017 17:47,40.71455002,-74.00711823,POSTNL,United States,Byram,New Jersey,TRUE
+8/23/2017 7:45,33.15829849,-86.23860168,SPORTS DIRECT,United States,Sylacauga,Alabama,FALSE
+11/15/2017 11:25,53.14596176,-1.005540013,LOVEWINS CAMPAIGN,United Kingdom,Bilsthorpe,,FALSE
+11/9/2017 0:53,54.49856949,-114.9999313,PEOPLE,Canada,Swan Hills,,FALSE
+11/21/2017 0:10,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+11/2/2017 18:25,23.68745041,90.35089874,SPORTS ILLUSTRATED,Bangladesh,Dhaka,,FALSE
+10/31/2017 10:30,50.9885788,-1.495380044,ALDI,United Kingdom,Romsey,,FALSE
+8/25/2017 6:26,18.53610992,73.85218048,Apple Computer Inc,India,Shivaji Nagar,,FALSE
+11/4/2017 19:52,36.84682083,-76.28505707,FOOT LOCKER,United States,Moyock,Virginia,TRUE
+11/1/2017 19:29,33.0207901,-96.69921112,Apple Computer Inc,United States,Allen,Texas,FALSE
+11/13/2017 6:56,36.59217834,-121.8820724,APPLE INC,United States,Monterey,California,TRUE
+9/30/2017 0:42,35.21961975,-80.01954651,HELLO FRESH,United States,Mount Gilead,North Carolina,FALSE
+9/28/2017 14:57,14.92372036,80.00119019,TIMES OF INDIA,India,K����,,FALSE
+11/7/2017 10:59,21.78660011,82.79476166,SHELL,India,Seor�������,,FALSE
+9/4/2017 9:22,-33.91905975,18.42196083,MICROSOFT - WINDOWS 10,South Africa,Cape Town,,TRUE
+7/5/2017 21:58,36.77825928,-119.4179306,IKEA,United States,Minkler,California,TRUE
+11/26/2017 5:18,40.44702148,-82.26101685,NISSAN,United States,Granville South,Ohio,TRUE
+11/14/2017 11:07,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+9/25/2017 13:20,35.67047882,139.740921,NISSAN,Japan,Tokyo,,TRUE
+10/11/2017 22:20,42.50941849,-94.17687225,NISSAN,United States,Fort Dodge,Iowa,FALSE
+6/27/2017 20:57,35.351189,-119.024063,MICROSOFT - WINDOWS 10,United States,Bakersfield,California,FALSE
+10/26/2017 17:04,40.14323044,-74.72670746,NISSAN,United States,Tullytown,New Jersey,TRUE
+10/31/2017 17:38,35.97689819,-119.2889404,T-MOBILE,United States,Pixley,California,FALSE
+8/12/2017 21:42,51.28738022,6.780280113,EURO WINGS,Germany,D������,,TRUE
+9/30/2017 1:45,40.42142868,-3.671629906,NISSAN,Spain,Salamanca,,FALSE
+7/13/2017 13:23,39.1031189,-84.5120163,PROCTER & GAMBLE,United States,Covington,Ohio,TRUE
+6/29/2017 7:30,51.50735092,-0.127758294,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+6/19/2017 4:46,36.17499924,-115.1363907,U.S. BANK,United States,Las Vegas,Nevada,FALSE
+3/30/2017 20:41,36.77825928,-119.4179306,T-MOBILE,United States,Minkler,California,FALSE
+8/20/2017 2:44,38.25485992,-85.7664032,VERIZON,United States,Louisville,Kentucky,TRUE
+10/10/2017 18:36,40.19033051,-82.66947174,APPLE INC,United States,Granville South,Ohio,FALSE
+4/20/2017 4:06,32.9709834,-96.7071453,EXXON MOBIL,United States,Garland,Texas,FALSE
+11/18/2017 2:11,37.1679306,-95.84501648,IKEA,United States,Independence,Kansas,TRUE
+7/28/2017 20:38,33.89584732,-118.2200699,Apple Computer Inc,United States,Compton,California,FALSE
+9/16/2017 16:48,40.21179962,-77.00550079,MCDONALDS,United States,Mechanicsburg,Pennsylvania,FALSE
+9/5/2017 10:38,35.65036011,-78.45635223,MICROSOFT,United States,Clayton,North Carolina,TRUE
+6/20/2017 1:39,32.78333282,-96.80000305,AMERICAN AIRLINES,United States,Dallas,Texas,TRUE
+10/10/2017 14:29,33.18410873,-96.92635345,PEOPLE,United States,Cross Roads,Texas,FALSE
+9/21/2017 11:38,52.15457153,4.49462986,Apple Computer Inc,Netherlands,Leiden,,TRUE
+4/6/2017 13:32,27.6648274,-81.5157535,EMBLEM HEALTH,United States,Avon Park,Florida,FALSE
+11/19/2017 20:46,35.90668106,139.7924957,NISSAN,Japan,Koshigaya,,TRUE
+9/17/2017 23:03,6.316050053,-71.33679962,Apple Computer Inc,Colombia,Puerto Rond��,,TRUE
+10/25/2017 15:25,35.0616188,-78.95400238,NISSAN,United States,Fayetteville,North Carolina,TRUE
+11/7/2017 23:02,-27.03060913,-65.32029724,NISSAN,Argentina,Bella Vista,,TRUE
+4/9/2017 7:50,36.77825928,-119.4179306,HPE,United States,Minkler,California,FALSE
+6/16/2017 14:56,41.39917,2.15397,WALMART,Spain,Gr����,,FALSE
+11/1/2017 5:04,1.365579963,103.827713,INFOSYS,Singapore,Singapore,,FALSE
+7/6/2017 20:13,35.00775146,-97.09288025,APPLE INC,United States,Lexington,Oklahoma,FALSE
+8/27/2017 20:33,51.27172089,-0.395350009,BRITISH AIRWAYS,United Kingdom,Cobham,,FALSE
+6/12/2017 9:20,51.66310883,5.623922825,MICROSOFT - WINDOWS 10,Netherlands,Uden,,TRUE
+5/19/2017 14:44,36.77825928,-119.4179306,ERICSSON,United States,Minkler,California,FALSE
+11/26/2017 18:56,31.16889954,-100.0771484,NISSAN,United States,Eden,Texas,TRUE
+10/26/2017 0:15,34.16611862,-106.026123,NISSAN,United States,Carrizozo,New Mexico,TRUE
+10/25/2017 20:15,54.31407166,-2.230010033,NISSAN,United Kingdom,Kirkby Stephen,,FALSE
+7/9/2017 2:43,42.34592819,-71.55228424,MICROSOFT,United States,Marlborough,Massachusetts,TRUE
+6/6/2017 14:44,47.60638809,-122.3308334,CAPITAL ONE,United States,Seattle,Washington,TRUE
+8/26/2017 15:40,38.82350159,-75.92381287,T-MOBILE,United States,Denton,Maryland,TRUE
+4/3/2017 1:46,38.80260849,-116.4193878,BEST BUY,United States,Eureka,Nevada,FALSE
+11/5/2017 23:06,34.85604858,-86.73519135,NISSAN,United States,Harvest,Alabama,TRUE
+4/5/2017 8:12,52.35551834,-1.174319744,H&M,United Kingdom,Rugby,,FALSE
+8/3/2017 21:07,-6.91242,107.606911,TELKOMSEL,Indonesia,Bandung,,FALSE
+6/27/2017 20:12,27.94722176,-82.45861053,Apple Computer Inc,United States,Tampa,Florida,TRUE
+11/4/2017 9:42,52.06402969,-0.422839999,DEBENHAMS,United Kingdom,Wilshamstead,,FALSE
+11/28/2017 15:32,13.69997025,-2.144840002,T-MOBILE,Burkina Faso,Titao,,FALSE
+10/7/2017 4:37,-6.162879944,106.8592606,NISSAN,Indonesia,Jakarta,,FALSE
+8/21/2017 18:04,41.08055115,-81.52220917,NISSAN,United States,Montrose-Ghent,Ohio,TRUE
+9/13/2017 2:45,29.46071053,-98.52160645,APPLE INC,United States,Balcones Heights,Texas,FALSE
+5/17/2017 8:26,32.9709834,-96.7071453,AHOLD,United States,Garland,Texas,FALSE
+10/11/2017 0:45,-7.571650028,110.8227081,TELKOMSEL,Indonesia,Surakarta,,TRUE
+8/29/2017 22:55,37.80508041,-122.2730713,BEST BUY,United States,Oakland,California,TRUE
+10/13/2017 1:21,30.30743027,78.05294037,JET AIRWAYS ,India,Dehradun,,FALSE
+8/12/2017 15:32,32.83589935,-96.77865601,NIKE,United States,Highland Park,Texas,FALSE
+4/10/2017 22:58,38.90719223,-77.03687286,MAZDA,United States,"Washington, D. C.",Maryland,FALSE
+10/30/2017 18:45,48.68080902,2.502609968,NISSAN,France,����pinay-sous-S����nart,,FALSE
+11/5/2017 3:20,41.47103119,-84.54830933,NISSAN,United States,Butler,Ohio,FALSE
+11/28/2017 19:25,32.1568985,-110.877121,T-MOBILE,United States,Tucson,Arizona,TRUE
+11/18/2017 9:14,22.54994011,88.37158203,TIMES OF INDIA,India,Kolkata,,TRUE
+4/24/2017 16:57,32.51964,-83.5603112,FEDEX,United States,Robins Air Force Base,Georgia,TRUE
+5/3/2017 0:37,35.7595731,-79.0192997,T-MOBILE,United States,Fearrington Village,North Carolina,FALSE
+11/7/2017 15:11,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+9/18/2017 20:50,37.87868881,-121.9434509,CHEVRON,United States,Diablo,California,TRUE
+9/26/2017 7:01,-6.809700012,107.6452179,TELKOMSEL,Indonesia,Lembang,,FALSE
+9/8/2017 13:41,48.85692978,2.341200113,BRUSSELS AIRLINES,France,Paris,,TRUE
+7/21/2017 9:44,51.50711441,-0.127318054,DEBENHAMS,United Kingdom,London,,FALSE
+8/19/2017 7:08,49.21282959,-2.133169889,MCDONALDS,Jersey,Saint Helier,,TRUE
+6/6/2017 18:06,41.87811279,-87.62979889,SHELL,United States,Chicago,Illinois,TRUE
+10/5/2017 23:11,45.32500076,-122.9291992,NISSAN,United States,Newberg,Oregon,TRUE
+11/8/2017 16:16,21.78660011,82.79476166,PVR,India,Seor�������,,TRUE
+9/28/2017 14:27,26.44890022,80.31812286,SHOPPERS STOP,India,K����,,FALSE
+10/30/2017 19:45,32.2986908,-90.18048859,WALMART,United States,Jackson,Mississippi,TRUE
+11/24/2017 13:00,56.9546814,-98.30896759,NISSAN,Canada,Thompson,,TRUE
+11/26/2017 18:30,53.95333099,-1.083420038,TESCO,United Kingdom,York,,FALSE
+5/25/2017 15:38,35.00775146,-97.09288025,BAYER,United States,Lexington,Oklahoma,TRUE
+4/22/2017 22:21,39.32098007,-111.0937347,T-MOBILE,United States,Orangeville,Utah,FALSE
+9/9/2017 20:22,51.50640106,-0.127210006,COTY - CALVIN KLEIN,United Kingdom,London,,TRUE
+6/29/2017 18:38,51.16569138,10.45152569,Apple Computer Inc,Germany,Niederdorla,,TRUE
+7/1/2017 0:14,34.09280777,-118.3286591,Apple Computer Inc,United States,Hollywood,California,FALSE
+11/1/2017 20:47,47.6035614,-122.3294373,NISSAN,United States,Seattle,Washington,TRUE
+10/30/2017 21:23,41.63529968,-81.47000122,PEOPLE,United States,Montrose-Ghent,Ohio,TRUE
+10/31/2017 18:28,46.73014832,-117.1814728,APPLE INC,United States,Pullman,Washington,TRUE
+7/14/2017 13:34,52.35551834,-1.174319744,TESCO,United Kingdom,Rugby,,TRUE
+10/10/2017 20:52,-6.283830166,106.8021393,TELKOMSEL,Indonesia,Jakarta,,TRUE
+10/10/2017 5:25,42.39078903,-71.10119629,MICROSOFT - WINDOWS 10,United States,Somerville,Massachusetts,TRUE
+7/27/2017 1:49,-23.69440079,-46.56539917,SPORT CLUB CORINTHIANS PAULISTA,Brazil,S���������,,FALSE
+10/30/2017 19:29,28.60733032,77.20350647,HDFC BANK,India,New Delhi,,TRUE
+4/2/2017 0:46,36.77825928,-119.4179306,BEST BUY,United States,Minkler,California,FALSE
+11/3/2017 15:52,59.03527069,-3.020420074,APPLE INC,United Kingdom,Orkney,,TRUE
+10/25/2017 14:19,-34.61449814,-58.44618988,NISSAN,Argentina,Villa Santa Rita,,FALSE
+5/1/2017 18:00,41.2033216,-77.1945247,FOSSIL,United States,Williamsport,Pennsylvania,FALSE
+10/16/2017 8:42,41.89839935,12.49559975,SMIRNOFF,Italy,Rome,,FALSE
+10/31/2017 16:21,23.68745041,90.35089874,VOLKSWAGEN USA,Bangladesh,Dhaka,,FALSE
+10/7/2017 5:59,46.73014832,-117.1814728,NISSAN,United States,Pullman,Washington,TRUE
+9/25/2017 17:00,21.85655975,84.01866913,DIAL,India,Jh�����,,FALSE
+7/6/2017 21:54,34.05223465,-118.2436829,TD BANK,United States,Los Angeles,California,TRUE
+8/31/2017 11:48,36.84999847,28.26670074,TURKCELL,Turkey,Marmaris,,TRUE
+7/21/2017 1:06,46.61352158,7.043612957,UBISOFT,Switzerland,Bulle,,TRUE
+8/28/2017 19:41,29.77541924,-95.38188934,KROGER,United States,Houston,Texas,FALSE
+7/29/2017 1:40,-33.86000061,151.2109985,NIKE,Australia,Sydney,,TRUE
+9/29/2017 19:50,55.95415115,-3.202769995,NISSAN,United Kingdom,Seafield,,FALSE
+11/7/2017 3:46,44.31196976,-94.46659851,NISSAN,United States,Estherville,Minnesota,TRUE
+9/12/2017 19:47,40.71455002,-74.00711823,APPLE INC,United States,Byram,New Jersey,TRUE
+11/25/2017 20:40,39.31042862,-83.52366638,NISSAN,United States,Leesburg,Ohio,TRUE
+8/15/2017 5:45,39.4997406,-111.5473175,VERIZON,United States,Moroni,Utah,TRUE
+8/28/2017 23:22,43.64855957,-79.38536835,FOOT LOCKER ,Canada,Toronto,,TRUE
+9/8/2017 0:50,37.87868881,-121.9434509,Apple Computer Inc,United States,Diablo,California,TRUE
+9/11/2017 23:10,-14.24289989,-54.38779831,SPORT CLUB CORINTHIANS PAULISTA,Brazil,Poxor��,,TRUE
+9/15/2017 16:10,39.76691055,-86.14996338,MICROSOFT - WINDOWS 10,United States,Indianapolis,Indiana,TRUE
+10/15/2017 9:59,51.50640106,-0.127210006,TESCO,United Kingdom,London,,TRUE
+10/4/2017 23:12,41.66408157,-83.58175659,NISSAN,Canada,Amherstburg,,TRUE
+7/24/2017 14:19,47.46156311,26.30152893,MICROSOFT - WINDOWS 10,Romania,F�����,,TRUE
+9/8/2017 13:40,39.7691803,-84.1969986,AMERICAN AIRLINES,United States,Dayton,Ohio,TRUE
+10/13/2017 0:36,51.03398895,-3.601389885,TESCO,United Kingdom,Tiverton,,FALSE
+6/29/2017 11:40,27.95057487,-82.45717621,DELOITTE,United States,Tampa,Florida,TRUE
+11/18/2017 7:53,9.927960396,76.25730896,HDFC BANK,India,Cochin,,TRUE
+11/8/2017 11:47,-6.256080151,106.8089981,NISSAN,Indonesia,Jakarta,,FALSE
+11/20/2017 18:20,38.83238983,-77.19602203,PEOPLE,United States,Fort Belvoir,Virginia,FALSE
+8/29/2017 17:13,42.40523148,-83.09757996,KROGER,Canada,Windsor,,TRUE
+11/5/2017 9:33,40.7038002,-73.8316803,MCDONALDS,United States,Byram,New York,TRUE
+8/30/2017 23:38,51.50640106,-0.127210006,FOOT LOCKER ,United Kingdom,London,,FALSE
+9/18/2017 11:18,6.912240028,28.76844978,TCS,South Sudan,Tonj,,TRUE
+8/29/2017 5:23,-33.8925209,151.2472839,ANZ,Australia,Bondi Junction,,FALSE
+6/28/2017 8:13,21,78,CROMA,India,Ch����,,TRUE
+10/15/2017 11:49,-7.79005003,110.3631973,TELKOMSEL,Indonesia,Yogyakarta,,FALSE
+10/15/2017 14:44,34.51977158,-82.64763641,NISSAN,United States,Anderson,South Carolina,TRUE
+10/31/2017 10:37,52.6667099,-1.114070058,ALDI,United Kingdom,Leicester,,FALSE
+10/31/2017 21:45,37.15726852,127.054657,NISSAN,"Korea, Republic of",Osan,,TRUE
+10/5/2017 5:05,33.8373909,-118.2559128,NISSAN,United States,Carson,California,TRUE
+11/4/2017 18:17,18.39406967,-66.14739227,SPORTS ILLUSTRATED,Puerto Rico,Bayam��,,FALSE
+10/4/2017 23:39,35.6174202,-84.92902374,NISSAN,United States,Spring City,Tennessee,TRUE
+9/22/2017 16:10,33.83275986,-117.9157181,NISSAN,United States,Anaheim,California,TRUE
+7/7/2017 18:48,36.16266251,-86.78160095,U.S. BANK,United States,Nashville,Tennessee,TRUE
+11/28/2017 14:15,51.48126984,-3.180720091,LOVEWINS CAMPAIGN,United Kingdom,Cardiff,,FALSE
+11/13/2017 17:45,40.71455002,-74.00711823,MCCLATCHY,United States,Byram,New Jersey,FALSE
+7/29/2017 9:56,39.85509491,-104.6737366,BRITISH AIRWAYS,United States,Lochbuie,Colorado,FALSE
+10/25/2017 15:48,33.76319122,-84.42305756,MICROSOFT - WINDOWS 10,United States,Atlanta,Georgia,TRUE
+8/30/2017 10:11,48.85692978,2.341200113,QATAR AIRWAYS,France,Paris,,FALSE
+11/26/2017 23:04,45.43955994,-122.5129089,NISSAN,United States,Happy Valley,Oregon,TRUE
+4/18/2017 17:07,40.71278381,-74.0059433,MICROSOFT SUPPORT,United States,Byram,New York,FALSE
+10/27/2017 3:13,40.71455002,-74.00711823,MASTERCARD,United States,Byram,New Jersey,FALSE
+11/28/2017 15:08,51.77045059,0.642549992,MARKS AND SPENCER,United Kingdom,Witham,,TRUE
+8/12/2017 21:04,25.79039955,-80.13220215,NIKE,United States,Miami Beach,Florida,FALSE
+10/25/2017 9:07,50.59764862,4.322340012,NISSAN,Belgium,Nivelles,,FALSE
+10/6/2017 20:30,53.11854172,-1.600299954,ALDI,United Kingdom,Wirksworth,,FALSE
+10/26/2017 21:00,52.40518188,-1.508559942,MCDONALDS,United Kingdom,Keresley,,TRUE
+7/8/2017 20:32,51.5,-0.116667002,TELKOMSEL,United Kingdom,City of Westminster,,TRUE
+11/7/2017 7:51,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/15/2017 5:30,35.52608109,-98.70703125,NISSAN,United States,Weatherford,Oklahoma,TRUE
+6/30/2017 7:06,51.50735092,-0.127758294,AXA,United Kingdom,London,,TRUE
+7/7/2017 6:58,51.58525467,5.056375027,AHOLD,Netherlands,Tilburg,,TRUE
+8/24/2017 15:21,33.15829849,-86.23860168,MCDONALDS,United States,Sylacauga,Alabama,TRUE
+4/2/2017 17:59,27.6648274,-81.5157535,H & R BLOCK,United States,Avon Park,Florida,FALSE
+9/8/2017 1:37,-37.86579895,145.102829,TELSTRA,Australia,Ashwood,,FALSE
+7/18/2017 2:07,37.77492905,-122.4194183,IKEA,United States,San Francisco,California,TRUE
+5/24/2017 0:26,27.6648274,-81.5157535,MATTEL,United States,Avon Park,Florida,TRUE
+10/10/2017 2:32,32.78182983,-96.79586029,SPORTS ILLUSTRATED,United States,Dallas,Texas,TRUE
+11/4/2017 14:26,45.57624054,-92.47956848,NISSAN,United States,Luck,Wisconsin,FALSE
+6/14/2017 3:50,32.71527863,-117.1563873,AMERICAN AIRLINES,United States,San Diego,California,FALSE
+11/15/2017 15:07,40.14323044,-74.72670746,@AT&T,United States,Tullytown,New Jersey,TRUE
+10/6/2017 23:31,6.75785017,73.15476227,INFOSYS,Maldives,Dhidhdhoo,,TRUE
+9/9/2017 22:55,29.77541924,-95.38188934,FEDEX,United States,Houston,Texas,TRUE
+11/17/2017 22:14,39.83930969,-86.39317322,NISSAN,United States,Brownsburg,Indiana,TRUE
+6/16/2017 22:54,52.35551834,-1.174319744,MICROSOFT - WINDOWS 10,United Kingdom,Rugby,,FALSE
+11/18/2017 13:09,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+9/27/2017 19:33,41.88415146,-87.63240814,SPORTS ILLUSTRATED,United States,Chicago,Illinois,TRUE
+9/25/2017 9:51,31.02375031,75.40457153,IKEA,India,Sh����,,FALSE
+6/29/2017 11:41,53.54999924,2.433000088,PRIMARK,United Kingdom,Caister-on-Sea,,TRUE
+4/6/2017 8:41,52.35551834,-1.174319744,MORRISONS,United Kingdom,Rugby,,FALSE
+8/16/2017 16:57,43.58385849,-95.64806366,FIAT CHRYSLER,United States,Sibley,Minnesota,TRUE
+10/12/2017 13:05,38.90475845,-77.01625061,NISSAN,United States,"Washington, D. C.",Maryland,TRUE
+11/18/2017 15:36,51.50640106,-0.127210006,RWE NPOWER,United Kingdom,London,,FALSE
+10/10/2017 15:40,36.1257782,-95.91430664,NISSAN,United States,Tulsa,Oklahoma,TRUE
+11/21/2017 2:17,37.30947876,-89.55805969,NISSAN,United States,Cape Girardeau,Missouri,TRUE
+6/26/2017 8:22,38.58157349,-121.4944,H&M,United States,Sacramento,California,FALSE
+7/22/2017 13:28,51.50735092,-0.127758294,MARKS AND SPENCER,United Kingdom,London,,TRUE
+10/18/2017 19:44,38.62770081,-90.19950104,NISSAN,United States,St. Louis,Missouri,TRUE
+6/15/2017 0:16,25.20484924,55.27078247,EMIRATES,United Arab Emirates,Dubai,,FALSE
+7/30/2017 22:29,34.72417068,-82.49416351,Apple Computer Inc,United States,Piedmont,South Carolina,FALSE
+10/27/2017 5:29,-7.310349941,108.3692703,TELKOMSEL,Indonesia,Desa Sukamaju,,FALSE
+5/31/2017 2:10,36.77825928,-119.4179306,ADT,United States,Minkler,California,FALSE
+11/9/2017 3:37,28.60733032,77.20350647,APPLE INC,India,New Delhi,,FALSE
+10/16/2017 18:32,52.40518188,-1.508559942,Apple Computer Inc,United Kingdom,Keresley,,TRUE
+6/2/2017 2:19,-25.55480003,152.6719971,TELSTRA,Australia,Maryborough,,TRUE
+9/14/2017 18:18,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+9/29/2017 1:17,37.1679306,-95.84501648,PEOPLE,United States,Independence,Kansas,TRUE
+8/22/2017 13:22,-24.91209984,133.397995,TELSTRA,Australia,Alice Springs,,TRUE
+9/8/2017 0:27,28.47932053,-81.34429169,MORGAN STANLEY,United States,Pine Castle,Florida,FALSE
+10/18/2017 9:34,24.12678909,-110.3056412,NISSAN,Mexico,La Paz,,FALSE
+10/15/2017 4:22,-6.394830227,106.8227463,TELKOMSEL,Indonesia,Depok,,FALSE
+8/22/2017 17:37,-7.800000191,110.3666992,Apple Computer Inc,Indonesia,Yogyakarta,,TRUE
+10/23/2017 10:50,-6.211659908,106.970459,TELKOMSEL,Indonesia,Bekasi,,FALSE
+9/14/2017 20:50,38.90475845,-77.01625061,FORTUNE,United States,"Washington, D. C.",Maryland,FALSE
+10/26/2017 21:51,36.84682083,-76.28505707,ALDI,United States,Moyock,Virginia,FALSE
+11/16/2017 3:20,37.82244873,-85.69091034,@AT&T,United States,Lebanon Junction,Kentucky,TRUE
+11/1/2017 23:22,40.19033051,-82.66947174,NISSAN,United States,Granville South,Ohio,TRUE
+9/30/2017 23:25,33.21656036,-97.13098145,CAPITAL ONE,United States,Denton,Texas,TRUE
+10/4/2017 21:51,32.67827988,-83.2229538,NISSAN,United States,Jeffersonville,Georgia,TRUE
+10/12/2017 21:03,53.30472946,-1.469400048,Apple Computer Inc,United Kingdom,Chesterfield,,TRUE
+9/8/2017 18:25,21.07427025,83.72483826,Apple Computer Inc,India,Binika,,TRUE
+4/16/2017 7:06,39.5,3,INTEL,Spain,Porreres,,FALSE
+8/27/2017 13:03,51.50640106,-0.127210006,APPLE INC,United Kingdom,London,,TRUE
+9/30/2017 14:51,52.39685059,5.265870094,POSTNL,Netherlands,Almere Stad,,FALSE
+11/14/2017 11:06,-28.47933006,24.67992973,IKEA,South Africa,Barkly West,,TRUE
+11/6/2017 23:41,37.1679306,-95.84501648,PEOPLE,United States,Independence,Kansas,FALSE
+11/19/2017 16:11,39.74000168,-104.9919968,NISSAN,United States,Denver,Colorado,TRUE
+5/26/2017 19:01,40.71278381,-74.0059433,LEGO,United States,Byram,New York,FALSE
+9/1/2017 1:50,37.1679306,-95.84501648,WALMART,United States,Independence,Kansas,FALSE
+8/4/2017 17:02,52.50059891,13.39890003,BRITISH AIRWAYS,Germany,Kreuzberg,,TRUE
+10/10/2017 14:04,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,TRUE
+11/5/2017 0:09,28.60733032,77.20350647,INDIGO,India,New Delhi,,FALSE
+6/5/2017 16:47,51.89592743,0.891874015,TESCO,United Kingdom,Irvine,,TRUE
+9/29/2017 14:52,19.09028053,72.87136841,TIMES OF INDIA,India,Mumbai,,TRUE
+7/2/2017 0:10,37.82717896,-122.2913055,APPLE INC,United States,Emeryville,California,TRUE
+11/26/2017 11:29,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+9/7/2017 0:49,50.49831009,5.092289925,COTY - CALVIN KLEIN,Belgium,Andenne,,TRUE
+7/2/2017 13:57,39.95258331,-75.16522217,MCDONALDS,United States,Philadelphia,Pennsylvania,FALSE
+7/13/2017 0:07,26.12243843,-80.13731384,HELLO FRESH,United States,Fort Lauderdale,Florida,FALSE
+10/23/2017 0:50,39.02442932,-94.62877655,NISSAN,United States,Fairway,Kansas,TRUE
+9/15/2017 14:40,25.78255081,-80.22174835,BANK OF AMERICA,United States,Miami,Florida,TRUE
+10/23/2017 0:48,29.77541924,-95.38188934,NISSAN,United States,Houston,Texas,TRUE
+6/24/2017 14:24,51.50735092,-0.127758294,BRITISH AIRWAYS,United Kingdom,London,,TRUE
+10/24/2017 2:34,42.30772018,-71.11496735,MCCLATCHY,United States,Jamaica Plain,Massachusetts,FALSE
+9/13/2017 16:09,33.667099,-117.7650528,FORTUNE,United States,Laguna Woods,California,TRUE
+7/26/2017 19:46,26.30173683,-98.16334534,T-MOBILE,United States,Edinburg,Texas,FALSE
+11/22/2017 4:10,-32.00669861,115.8909988,UNIVERSITY OF CANBERRA,Australia,Manning,,TRUE
+9/27/2017 8:59,41.08055115,-81.52220917,MICROSOFT - WINDOWS 10,United States,Montrose-Ghent,Ohio,TRUE
+11/17/2017 13:25,28.60733032,77.20350647,INDIGO,India,New Delhi,,FALSE
+9/1/2017 1:36,39.76285172,-86.39467621,ELECTRONIC ARTS,United States,Avon,Indiana,FALSE
+9/15/2017 0:20,32.67827988,-83.2229538,PEOPLE,United States,Jeffersonville,Georgia,FALSE
+10/13/2017 0:29,54.31407166,-2.230010033,NISSAN,United Kingdom,Kirkby Stephen,,TRUE
+11/10/2017 1:33,38.90475845,-77.01625061,Apple Computer Inc,United States,"Washington, D. C.",Maryland,TRUE
+7/22/2017 1:23,45.50764465,-122.8269196,NIKE,United States,Cedar Mill,Oregon,FALSE
+4/29/2017 18:07,44.31484604,-85.60236359,T-MOBILE,United States,Sturgeon Bay,Michigan,FALSE
+3/31/2017 0:57,40.63312531,-89.39852905,APPLE INC,United States,Morton,Illinois,FALSE
+11/20/2017 1:59,44.97903061,-93.26493073,NISSAN,United States,Columbus,Minnesota,TRUE
+10/13/2017 18:45,45.0344696,-74.73693848,NISSAN,Canada,Cornwall,,TRUE
+6/14/2017 14:38,51.91943741,19.14513588,MICROSOFT SUPPORT,Poland,Dalik��,,FALSE
+8/21/2017 22:11,40.71455002,-74.00711823,ELECTROLUX,United States,Byram,New Jersey,TRUE
+11/19/2017 3:57,19.98550034,73.79563141,TIMES OF INDIA,India,Nashik,,TRUE
+9/16/2017 21:17,40.86339951,-79.89499664,KRAFT FOODS INC,United States,Meadowood,Pennsylvania,TRUE
+6/27/2017 21:26,41.87800217,-93.09770203,MCDONALDS,United States,Baxter,Iowa,FALSE
+8/23/2017 22:18,23.10738945,113.2676163,LOVEWINS CAMPAIGN,China,Guangzhou,,FALSE
+11/2/2017 16:14,12.97754002,77.59951019,TIMES OF INDIA,India,Bangalore,,FALSE
+9/6/2017 15:27,-34.61449814,-58.44618988,NIKE,Argentina,Villa Santa Rita,,TRUE
+7/5/2017 20:30,34.94956589,-81.93204498,BEST BUY,United States,Spartanburg,South Carolina,TRUE
+11/26/2017 3:46,34.91719055,-85.10984802,NISSAN,United States,Ringgold,Georgia,TRUE
+11/14/2017 1:40,0.109739996,113.9173965,NISSAN,Indonesia,Longnawang,,FALSE
+11/21/2017 14:47,52.65880966,-8.619589806,DELL EMC,Ireland,Luimneach,,FALSE
+6/15/2017 18:59,34.167881,-111.930702,MCDONALDS,United States,Cordes Lakes,Arizona,TRUE
+11/12/2017 19:29,56.9546814,-98.30896759,MCCLATCHY,Canada,Thompson,,FALSE
+11/16/2017 5:56,35.75220871,-77.67044067,PEOPLE,United States,Pinetops,North Carolina,FALSE
+10/12/2017 14:37,42.49695969,-71.27839661,ALDI,United States,Bedford,Massachusetts,TRUE
+4/26/2017 14:42,55.67518234,12.54932594,EA - FIFA,Denmark,Frederiksberg,,FALSE
+8/27/2017 5:50,54.31407166,-2.230010033,COGNIZANT,United Kingdom,Kirkby Stephen,,TRUE
+5/17/2017 13:12,40.71278381,-74.0059433,MCDONALDS,United States,Byram,New York,TRUE
+9/19/2017 22:55,34.05350113,-118.2450027,APPLE INC,United States,Los Angeles,California,TRUE
+9/20/2017 11:13,-6.283830166,106.8021393,BAPTIST HEALTH,Indonesia,Jakarta,,TRUE
+11/14/2017 14:56,-6.256080151,106.8089981,TELKOMSEL,Indonesia,Jakarta,,FALSE
+6/29/2017 1:01,23.62999916,102.5,HELLO FRESH,China,Yilong,,FALSE
+9/15/2017 0:38,37.1679306,-95.84501648,APPLE INC,United States,Independence,Kansas,FALSE
+11/8/2017 0:52,36.17190933,-115.1399689,DISH,United States,Las Vegas,Nevada,TRUE
+6/10/2017 13:06,51.5218277,-0.779383004,SCANDINAVIAN AIRLINES,United Kingdom,White Waltham,,TRUE
+8/22/2017 11:47,51.50640106,-0.127210006,TESCO,United Kingdom,London,,FALSE
+11/14/2017 22:52,59.06663895,9.979229927,ABBOTT LABS,Norway,Larvik,,TRUE
+11/13/2017 13:47,28.56315994,77.36740875,TIMES OF INDIA,India,Noida,,FALSE
+6/16/2017 18:56,-29,24,STANDARD BANK,South Africa,Douglas,,FALSE
+8/19/2017 21:04,-26.10370064,-49.8001709,SPORT CLUB CORINTHIANS PAULISTA,Brazil,Rio Negro,,TRUE
+9/12/2017 1:58,56.65285873,-3.996670008,ALDI,United Kingdom,Aberfeldy,,FALSE
+11/22/2017 1:32,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+9/21/2017 14:25,18.53610992,73.85218048,HDFC BANK,India,Shivaji Nagar,,TRUE
+5/29/2017 15:56,56.49067307,-4.202645779,MICROSOFT,United Kingdom,Callander,,FALSE
+9/28/2017 17:47,29.77541924,-95.38188934,APPLE INC,United States,Houston,Texas,TRUE
+9/6/2017 6:52,19.42754936,-99.19532776,BRITISH AIRWAYS,Mexico,Miguel Hidalgo,,TRUE
+10/18/2017 19:12,53.59336853,-2.555099964,ALDI,United Kingdom,Blackrod,,TRUE
+4/11/2017 0:24,39.5500507,-105.7820674,EA - MASS EFFECT,United States,Georgetown,Colorado,FALSE
+5/16/2017 18:54,40.71278381,-74.0059433,EMBLEM HEALTH,United States,Byram,New York,FALSE
+10/15/2017 9:06,6.472789764,-66.58904266,STANDARD BANK,Colombia,Puerto Carre��,,FALSE
+7/11/2017 20:01,42.94755173,-87.89664459,H&M,United States,Saint Francis,Wisconsin,TRUE
+11/1/2017 23:29,30.69360924,-90.98004913,NISSAN,United States,Watson,Louisiana,TRUE
+11/6/2017 6:22,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+11/19/2017 11:12,-33.85628128,151.0209656,TELSTRA,Australia,Lidcombe,,TRUE
+10/14/2017 17:56,44.72719955,-90.10125732,NISSAN,United States,Stratford,Wisconsin,TRUE
+9/2/2017 15:13,49.38425827,-84.75627136,AHOLD,Canada,Hornepayne,,TRUE
+10/12/2017 5:43,44.30315018,-78.32427216,NISSAN,Canada,Peterborough,,TRUE
+11/15/2017 20:45,50.76691055,0.285380006,TESCO,United Kingdom,Pevensey,,TRUE
+9/15/2017 14:01,42.00621033,-87.99255371,MICROSOFT - WINDOWS 10,United States,Elk Grove Village,Illinois,TRUE
+6/15/2017 14:18,25.20484924,55.27078247,EMIRATES,United Arab Emirates,Dubai,,FALSE
+10/7/2017 2:58,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,TRUE
+8/22/2017 16:21,15.88346958,74.18099976,VERIZON,India,Ajra,,TRUE
+10/23/2017 17:42,33.76319122,-84.42305756,NISSAN,United States,Atlanta,Georgia,TRUE
+11/22/2017 8:30,30.9741993,-91.52381897,NISSAN,United States,Saint Francisville,Louisiana,TRUE
+10/17/2017 2:14,31.16889954,-100.0771484,THE HOME DEPOT,United States,Eden,Texas,FALSE
+9/16/2017 8:17,28.6439991,77.09100342,HDFC BANK,India,N������,,TRUE
+4/4/2017 18:53,38.90719223,-77.03687286,BANK OF AMERICA,United States,"Washington, D. C.",Maryland,FALSE
+10/12/2017 17:25,30.06887054,-89.93135834,AMERICAN AIRLINES,United States,Chalmette,Louisiana,TRUE
+10/15/2017 1:21,31.16889954,-100.0771484,MICROSOFT - WINDOWS 10,United States,Eden,Texas,TRUE
+10/14/2017 4:06,40.99470901,-77.60453796,NISSAN,United States,Zion,Pennsylvania,TRUE
+11/3/2017 3:09,29.77541924,-95.38188934,NISSAN,United States,Houston,Texas,TRUE
+9/6/2017 15:12,40.99470901,-77.60453796,VERIZON,United States,Zion,Pennsylvania,TRUE
+10/18/2017 2:34,13.69997025,-2.144840002,NIKE,Burkina Faso,Titao,,TRUE
+9/17/2017 2:03,44.94776917,-93.10388184,T-MOBILE,United States,Columbus,Minnesota,FALSE
+6/24/2017 16:00,35.22694397,-80.84333038,MOHAWK,United States,Charlotte,North Carolina,FALSE
+6/24/2017 15:17,24.44393,54.419048,FARAH,United Arab Emirates,Abu Dhabi,,FALSE
+11/15/2017 10:50,51.22208023,4.397709847,AHOLD,Belgium,Antwerpen,,FALSE
+6/24/2017 17:26,-26.10756683,28.05669975,UBER,South Africa,Sandton,,FALSE
+8/26/2017 13:17,43.35879135,-79.80317688,IKEA,Canada,Burlington,,FALSE
+11/20/2017 14:55,37.2718811,-119.2702332,NISSAN,United States,Auberry,California,TRUE
+11/25/2017 21:15,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+9/28/2017 3:47,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+11/15/2017 7:06,52.10820007,5.32986021,WOLTERS KLUWER,Netherlands,Maarn,,FALSE
+11/7/2017 18:54,31.16889954,-100.0771484,NISSAN,United States,Eden,Texas,TRUE
+11/18/2017 16:48,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,FALSE
+11/26/2017 7:24,37.77618027,-89.25243378,APPLE INC,United States,De Soto,Illinois,TRUE
+9/29/2017 2:11,11.93548012,79.75332642,TIMES OF INDIA,India,Puducherry,,FALSE
+8/21/2017 10:54,27.18379974,77.99445343,TIMES OF INDIA,India,����gra,,TRUE
+8/25/2017 0:16,33.76319122,-84.42305756,UTC,United States,Atlanta,Georgia,TRUE
+11/18/2017 18:45,46.65105057,-97.24638367,NISSAN,United States,Britton,North Dakota,TRUE
+4/12/2017 18:35,38.9071923,-77.0368707,MICROSOFT STORE,United States,"Washington, D. C.",Maryland,FALSE
+4/22/2017 7:09,35.7595731,-79.0192997,AMERICAN AIRLINES,United States,Fearrington Village,North Carolina,TRUE
+11/9/2017 21:43,41.04085159,28.98617935,KROGER,Turkey,����i����li,,FALSE
+11/3/2017 15:24,46.44231033,-93.36585999,NISSAN,United States,Grantsburg,Minnesota,TRUE
+6/19/2017 0:28,51.45451355,-2.587909937,MICROSOFT - WINDOWS 10,United Kingdom,Bristol,,FALSE
+9/21/2017 16:11,51.50640106,-0.127210006,BRITISH AIRWAYS,United Kingdom,London,,FALSE
+11/2/2017 13:48,22.54994011,88.37158203,TIMES OF INDIA,India,Kolkata,,FALSE
+4/2/2017 10:44,52.02079773,4.493783474,SHELL,Netherlands,Bergschenhoek,,FALSE
+9/18/2017 8:53,8.177399635,77.43675232,ACCENTURE,India,N�����,,TRUE
+6/3/2017 14:01,40.05832291,-74.40566254,DISH NETWORK,United States,Cedar Glen Lakes,New Jersey,TRUE
+7/31/2017 10:37,-4.666669846,105.7170029,H&M,Indonesia,Surabaya,,TRUE
+9/29/2017 17:56,42.21897888,1.69314003,APPLE INC,Spain,G����,,FALSE
+9/15/2017 4:49,25.2694397,55.30865097,ALDI,United Arab Emirates,Dubai,,FALSE
+8/2/2017 8:50,51.49220657,-0.223288104,BRITISH AIRWAYS,United Kingdom,Kensington,,FALSE
+4/18/2017 3:00,27.6648274,-81.5157535,SEPHORA,United States,Avon Park,Florida,FALSE
+11/8/2017 6:43,37.1679306,-95.84501648,STANDARD BANK,United States,Independence,Kansas,FALSE
+6/19/2017 18:19,33.75891876,-84.36408234,DEBENHAMS,United States,Atlanta,Georgia,FALSE
+10/27/2017 7:46,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+5/16/2017 18:25,27.6648274,-81.5157535,T-MOBILE,United States,Avon Park,Florida,FALSE
+9/15/2017 18:01,21.78660011,82.79476166,TIMES OF INDIA,India,Seor�������,,TRUE
+11/25/2017 0:47,38.47074127,-81.81278229,NISSAN,United States,Gallipolis,West Virginia,TRUE
+9/14/2017 18:31,51.26670074,30.23329926,APPLE INC,Ukraine,Kryva Hora,,FALSE
+10/17/2017 3:58,33.52114868,-84.35427856,NISSAN,United States,Jonesboro,Georgia,TRUE
+11/3/2017 14:16,-28.47933006,24.67992973,STANDARD BANK,South Africa,Barkly West,,TRUE
+11/27/2017 2:57,-7.800000191,110.3666992,TELKOMSEL,Indonesia,Yogyakarta,,FALSE
+7/29/2017 17:41,51.45451355,-2.587909937,Apple Computer Inc,United Kingdom,Bristol,,TRUE
+11/2/2017 9:29,54.31407166,-2.230010033,NISSAN,United Kingdom,Kirkby Stephen,,TRUE
+6/3/2017 1:16,27.94722176,-82.45861053,T-MOBILE,United States,Tampa,Florida,TRUE
+9/16/2017 16:46,52.94921112,-1.14391005,ALDI,United Kingdom,Nottingham,,FALSE
+4/11/2017 23:55,46.729553,-94.6858998,EA - MASS EFFECT,United States,Nowthen,Minnesota,FALSE
+4/1/2017 1:08,27.6648274,-81.5157535,BEST BUY,United States,Avon Park,Florida,FALSE
+10/23/2017 15:56,40.68486023,-111.7885513,NISSAN,United States,Mount Olympus,Utah,TRUE
+6/6/2017 16:15,29.42412186,-98.49362946,T-MOBILE,United States,Alamo Heights,Texas,TRUE
+11/2/2017 5:29,29.58175087,-95.76407623,SPORTS ILLUSTRATED,United States,Greatwood,Texas,TRUE
+9/7/2017 21:47,33.79782104,-118.166832,NIKE,United States,Signal Hill,California,TRUE
+11/7/2017 15:06,42.19966888,-122.7170334,NISSAN,United States,Ashland,Oregon,TRUE
+9/26/2017 1:51,29.77541924,-95.38188934,NISSAN,United States,Houston,Texas,TRUE
+11/24/2017 17:52,51.50640106,-0.127210006,FOSSIL,United Kingdom,London,,FALSE
+8/29/2017 4:18,34.65267944,-118.2163162,UBISOFT,United States,Quartz Hill,California,FALSE
+6/19/2017 0:00,36.17499924,-115.1363907,IPC,United States,Las Vegas,Nevada,FALSE
+7/31/2017 22:25,19.53964615,-99.20835876,NISSAN,Mexico,Tlalnepantla,,TRUE
+11/3/2017 3:07,26.22386932,78.18482971,INFOSYS,India,Gwalior,,TRUE
+9/19/2017 9:58,-31.98265076,116.0074921,SSE PLC,Australia,Maida Vale,,TRUE
+11/2/2017 17:58,42.50381851,12.57347012,MICROSOFT - WINDOWS 10,Italy,Narni,,TRUE
+6/2/2017 20:01,50.15257263,-5.066269875,LUFTHANSA,United Kingdom,Penryn,,TRUE
+5/19/2017 0:34,27.6648274,-81.5157535,PROCTER & GAMBLE,United States,Avon Park,Florida,FALSE
+10/16/2017 15:45,37.74739838,-122.4392166,NISSAN,United States,San Francisco,California,TRUE
+10/31/2017 14:26,37.1679306,-95.84501648,SPORTS ILLUSTRATED,United States,Independence,Kansas,TRUE
+9/28/2017 11:18,21.78660011,82.79476166,INFOSYS,India,Seor�������,,TRUE
+6/14/2017 22:42,39.01190186,-98.4842453,T-MOBILE,United States,Lincoln,Kansas,FALSE
+6/13/2017 15:09,39.04575348,-76.6412735,Apple Computer Inc,United States,Gambrills,Maryland,FALSE
+11/23/2017 3:06,64.08773041,-141.8283386,NISSAN,United States,Tok,Alaska,TRUE
+9/17/2017 8:52,53.55297852,-0.484840006,TESCO,United Kingdom,Brigg,,TRUE
+10/25/2017 15:57,47.99853897,7.84965992,NISSAN,Germany,Freiburg,,TRUE
+8/3/2017 3:17,20.61368752,-105.2597275,H&M,Mexico,Puerto Vallarta,,FALSE
+7/30/2017 11:17,-35.28093719,149.1300049,QATAR AIRWAYS,Australia,Canberra,,TRUE
+7/13/2017 20:04,39.96117401,-82.99879456,AMERICAN AIRLINES,United States,Columbus,Ohio,FALSE
+8/28/2017 0:35,54.31407166,-2.230010033,TELKOMSEL,United Kingdom,Kirkby Stephen,,TRUE
+10/10/2017 17:16,47.6035614,-122.3294373,T-MOBILE,United States,Seattle,Washington,TRUE
+9/20/2017 2:41,37.1679306,-95.84501648,T-MOBILE,United States,Independence,Kansas,FALSE
+4/7/2017 18:39,37.4315734,-78.6568942,CVS,United States,Woodlake,Virginia,FALSE
+11/26/2017 2:57,38.0033493,-79.77127075,NISSAN,United States,Mountain Lake Park,Virginia,TRUE
+10/15/2017 10:29,19.00838089,72.8574295,JET AIRWAYS,India,Mumbai,,FALSE
+11/20/2017 20:48,40.16355133,-111.619957,NISSAN,United States,Springville,Utah,TRUE
+11/24/2017 4:26,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+8/21/2017 13:07,18.53610992,73.85218048,MICROSOFT,India,Shivaji Nagar,,TRUE
+9/14/2017 19:16,40.43130112,-79.98069763,ADIDAS,United States,Pittsburgh,Pennsylvania,FALSE
+5/30/2017 20:12,40.79894638,-81.37844849,APPLE INC,United States,Montrose-Ghent,Ohio,TRUE
+11/3/2017 16:10,51.59764862,-3.331170082,Apple Computer Inc,United Kingdom,Pontypridd,,TRUE
+11/3/2017 0:22,36.77272034,-76.0500412,NISSAN,United States,Moyock,Virginia,TRUE
+7/26/2017 13:29,41.93182755,-73.90744019,BEST BUY,United States,Saugerties South,New York,FALSE
+10/11/2017 7:10,53.17551041,-8.152029991,ALLIED IRISH BANK,Ireland,Portumna,,FALSE
+11/14/2017 1:28,40.43130112,-79.98069763,PEOPLE,United States,Pittsburgh,Pennsylvania,TRUE
+10/26/2017 18:44,28.47932053,-81.34429169,NISSAN,United States,Pine Castle,Florida,FALSE
+9/4/2017 17:38,38.90475845,-77.01625061,THE HOME DEPOT,United States,"Washington, D. C.",Maryland,TRUE
+8/28/2017 14:41,42.35863113,-71.05670166,FEDEX,United States,Boston,Massachusetts,TRUE
+9/8/2017 22:06,51.50640106,-0.127210006,NIKE,United Kingdom,London,,FALSE
+8/16/2017 15:17,51.50640106,-0.127210006,MARKS AND SPENCER,United Kingdom,London,,TRUE
+10/8/2017 16:42,35.21961975,-80.01954651,LEGO,United States,Mount Gilead,North Carolina,FALSE
+5/31/2017 21:07,38,-97,ADT,United States,Peabody,Kansas,FALSE
+11/3/2017 15:08,41.90340042,-72.46669769,APPLE INC,United States,Broad Brook,Connecticut,FALSE
+9/8/2017 15:14,40.30073929,-83.06578827,VERIZON,United States,Upper Arlington,Ohio,TRUE
+10/14/2017 15:23,12.97754002,77.59951019,TIMES OF INDIA,India,Bangalore,,TRUE
+6/6/2017 13:30,29.99021912,-95.33678436,T-MOBILE,United States,Aldine,Texas,TRUE
+5/4/2017 15:47,35.51749039,-86.58044434,GENERAL MILLS,United States,Unionville,Tennessee,FALSE
+11/6/2017 14:50,40.06716156,-74.8421936,NISSAN,United States,Tullytown,New Jersey,TRUE
+11/21/2017 11:39,26.05573082,92.85447693,TIMES OF INDIA,India,Hoj��,,TRUE
+9/17/2017 8:42,25.2694397,55.30865097,EMIRATES NBD,United Arab Emirates,Dubai,,TRUE
+8/24/2017 16:37,27.96722031,-82.47593689,T-MOBILE,United States,Tampa,Florida,TRUE
+7/22/2016 13:31,43.78443909,-88.78786469,GSK,United States,Ripon,Wisconsin,FALSE
+10/5/2017 19:00,40.42142868,-3.671629906,NISSAN,Spain,Salamanca,,TRUE
+9/17/2017 17:04,34.00582886,-118.3970871,SPORTS ILLUSTRATED,United States,Culver City,California,TRUE
+6/1/2017 18:20,41.8787117,-71.3825531,KODAK,United States,Pawtucket,Rhode Island,TRUE
+10/18/2017 0:04,9.084569931,8.674249649,SABMILLER,Nigeria,Wamba,,FALSE
+7/18/2017 17:31,38.89500046,-77.03666687,CVS HEALTH,United States,"Washington, D. C.",Maryland,FALSE
+11/3/2017 3:18,40.85715103,-73.85678101,APPLE INC,United States,Byram,New York,TRUE
+9/1/2017 16:09,51.81393814,-1.29369998,ALDI,United Kingdom,Kidlington,,TRUE
+6/6/2017 15:03,40.71416855,-74.0063858,T-MOBILE,United States,Byram,New Jersey,TRUE
+4/2/2017 16:57,46.8138783,-71.2079809,KPMG,Canada,Qu����,,TRUE
+4/2/2017 21:50,32.9709834,-96.7071453,PETSMART,United States,Garland,Texas,TRUE
+11/19/2017 22:42,41.77524948,-72.52417755,NISSAN,United States,Broad Brook,Connecticut,TRUE
+10/15/2017 0:14,56.46126938,-2.967600107,BRITISH AIRWAYS,United Kingdom,Newport-On-Tay,,TRUE
+7/22/2017 0:29,38.43820572,27.22656822,TURKCELL,Turkey,Bornova,,TRUE
+9/3/2017 16:49,35.72171021,-77.91615295,NISSAN,United States,Wilson,North Carolina,TRUE
+9/4/2017 0:32,40.42369843,-79.82460022,NISSAN,United States,Turtle Creek,Pennsylvania,FALSE
+10/14/2017 6:23,21.78660011,82.79476166,JET AIRWAYS ,India,Seor�������,,FALSE
+9/21/2017 13:58,27.97579956,-81.5410614,@AT&T,United States,Lake Wales,Florida,FALSE
+7/1/2017 8:39,55.95325089,-3.188266993,BRITISH AIRWAYS,United Kingdom,Seafield,,TRUE
+9/14/2017 3:57,23.4557991,91.18200684,TIMES OF INDIA,Bangladesh,Comilla,,FALSE
+11/5/2017 9:11,53.52643967,-113.5174408,NISSAN,Canada,Edmonton,,TRUE
+11/5/2017 8:49,11.59218979,122.0963974,MCDONALDS,Philippines,Sebaste,,TRUE
+4/16/2017 19:46,52.35551834,-1.174319744,NESTLE,United Kingdom,Rugby,,FALSE
+10/4/2017 11:53,-41.13811874,146.0549927,INFOSYS,Australia,Penguin,,TRUE
+6/6/2017 17:10,34.05222321,-118.242775,T-MOBILE,United States,Los Angeles,California,TRUE
+10/5/2017 8:17,35.91561127,139.6516571,NISSAN,Japan,Saitama,,TRUE
+9/12/2017 17:46,39.10295105,-94.58306122,APPLE INC,United States,Kansas City,Missouri,TRUE
+11/15/2017 17:26,33.10850143,-84.72553253,NISSAN,United States,Greenville,Georgia,TRUE
+8/3/2017 11:31,14.55012035,121.0264664,H&M,Philippines,Makati City,,TRUE
+6/6/2017 18:12,33.71747208,-117.8311462,SHELL,United States,Tustin,California,TRUE
+9/14/2017 11:27,51.73207092,0.477959991,SSE PLC,United Kingdom,Chelmsford,,TRUE
+7/20/2017 13:33,53.54999924,2.433000088,UNIVERSITY OF SYDNEY,United Kingdom,Caister-on-Sea,,TRUE
+11/25/2017 19:50,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+10/10/2017 14:46,37.79470825,-86.23046112,EXXON MOBIL,United States,Irvington,Kentucky,FALSE
+4/15/2017 14:01,52.35551834,-1.174319744,Apple Computer Inc,United Kingdom,Rugby,,FALSE
+11/6/2017 18:01,46.22528839,8.771109581,COTY - CALVIN KLEIN,Switzerland,Verscio,,FALSE
+9/16/2017 13:51,21.48167992,39.18286133,EMIRATES,Saudi Arabia,Jeddah,,TRUE
+9/21/2017 16:22,41.6029892,-87.33715057,T-MOBILE,United States,Gary,Indiana,TRUE
+7/17/2017 19:09,53.68667603,-0.443367988,AXA,United Kingdom,Barton upon Humber,,FALSE
+10/19/2017 16:45,40.71455002,-74.00711823,LEGO,United States,Byram,New Jersey,FALSE
+9/11/2017 14:23,26.1415596,-80.14636993,T-MOBILE,United States,Fort Lauderdale,Florida,FALSE
+11/26/2017 20:24,54.31407166,-2.230010033,TELKOMSEL,United Kingdom,Kirkby Stephen,,FALSE
+11/16/2017 6:09,33.38883972,-118.454422,PEOPLE,United States,Avalon,California,FALSE
+11/3/2017 15:44,36.51082993,69.4907608,BEST BUY,Afghanistan,Kh�����,,TRUE
+10/27/2017 9:11,51.23815155,-0.168840006,IATA,United Kingdom,Redhill,,TRUE
+5/24/2017 20:33,52.35551834,-1.174319744,STATE STREET,United Kingdom,Rugby,,FALSE
+8/22/2017 7:37,52.97618103,7.857840061,SONYMUSIC ENTERTAINMENT,Germany,Friesoythe,,TRUE
+9/4/2017 1:07,37.82244873,-85.69091034,NISSAN,United States,Lebanon Junction,Kentucky,TRUE
+11/4/2017 7:01,-6.437839985,105.9946213,TELKOMSEL,Indonesia,Jasugih Selatan,,FALSE
+9/18/2017 7:53,-25.32689095,152.8009033,TELSTRA,Australia,Urraween,,TRUE
+7/5/2017 22:15,35.14953613,-90.04898071,FEDEX,United States,Memphis,Tennessee,TRUE
+8/31/2017 20:56,37.93405151,-121.6927185,TESCO,United States,Brentwood,California,FALSE
+11/13/2017 13:18,-1.749109983,102.838707,TELKOMSEL,Indonesia,Mersam,,FALSE
+8/16/2017 19:32,40.5241394,-111.866272,CAMPBELL SOUP,United States,Draper,Utah,FALSE
+11/22/2017 4:13,34.05350113,-118.2450027,T-MOBILE,United States,Los Angeles,California,FALSE
+9/14/2017 18:20,40.19033051,-82.66947174,APPLE INC,United States,Granville South,Ohio,TRUE
+7/13/2017 8:47,19.03304863,73.02966309,QATAR AIRWAYS,India,Artist Village,,FALSE
+8/18/2017 13:54,51.50640106,-0.127210006,CAPTAIN MORGAN,United Kingdom,London,,FALSE
+11/1/2017 19:30,56.9546814,-98.30896759,PEOPLE,Canada,Thompson,,FALSE
+11/5/2017 15:34,25.78255081,-80.22174835,MCDONALDS,United States,Miami,Florida,TRUE
+9/1/2017 2:26,42.35863113,-71.05670166,AMERICAN AIRLINES,United States,Boston,Massachusetts,TRUE
+11/12/2017 2:20,40.71455002,-74.00711823,MCCLATCHY,United States,Byram,New Jersey,FALSE
+8/25/2017 15:43,40.1912384,-123.2953033,UBISOFT,United States,Hayfork,California,TRUE
+8/21/2017 3:57,28.46692085,77.04379272,TIMES OF INDIA,India,Gurgaon,,FALSE
+11/1/2017 20:00,52.24116135,1.054479957,NISSAN,United Kingdom,Stowmarket,,TRUE
+11/23/2017 11:15,-6.912419796,107.6069107,TELKOMSEL,Indonesia,Bandung,,FALSE
+11/4/2017 4:15,28.47932053,-81.34429169,NISSAN,United States,Pine Castle,Florida,TRUE
+10/31/2017 15:01,31.16889954,-100.0771484,T-MOBILE,United States,Eden,Texas,FALSE
+11/6/2017 9:20,41.4117012,-81.83470154,NISSAN,United States,Montrose-Ghent,Ohio,FALSE
+8/15/2017 20:15,41.884151,-87.632408,MICROSOFT SUPPORT,United States,Chicago,Illinois,TRUE
+5/3/2017 15:19,38.80260849,-116.4193878,EA - FIFA,United States,Eureka,Nevada,FALSE
+7/18/2017 4:34,41.30805588,-72.92861176,IKEA,United States,West Haven,Connecticut,FALSE
+11/25/2017 6:51,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+7/24/2017 23:51,34.05222321,-118.242775,FEDEX,United States,Los Angeles,California,TRUE
+11/16/2017 11:27,42.50381851,12.57347012,IATA,Italy,Narni,,TRUE
+10/17/2017 20:36,23.61516953,58.59117126,TIMES OF INDIA,Oman,Muscat,,FALSE
+11/19/2017 4:44,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+11/2/2017 8:19,41.39916992,2.153970003,MICROSOFT - WINDOWS 10,Spain,Gr����,,TRUE
+10/26/2017 21:29,39.7691803,-84.1969986,NISSAN,United States,Dayton,Ohio,TRUE
+10/11/2017 0:10,27.97579956,-81.5410614,PEOPLE,United States,Lake Wales,Florida,FALSE
+4/17/2017 21:16,36.77825928,-119.4179306,H&M,United States,Minkler,California,FALSE
+11/3/2017 16:14,-7.009329796,113.8555069,TELKOMSEL,Indonesia,Sumenep,,TRUE
+11/21/2017 2:04,28.60733032,77.20350647,INFOSYS,India,New Delhi,,FALSE
+6/29/2017 16:12,39.7684021,-86.1580658,BP,United States,Indianapolis,Indiana,TRUE
+11/19/2017 20:17,34.19086075,-101.723381,NISSAN,United States,Plainview,Texas,TRUE
+11/21/2017 0:43,40.71455002,-74.00711823,STANDARD BANK,United States,Byram,New Jersey,FALSE
+11/28/2017 16:50,34.07392883,-118.0288696,T-MOBILE,United States,El Monte,California,FALSE
+11/4/2017 23:46,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+9/14/2017 18:24,51.50640106,-0.127210006,LIDL,United Kingdom,London,,TRUE
+6/6/2017 0:24,40.71278381,-74.0059433,MICROSOFT - WINDOWS 10,United States,Byram,New York,FALSE
+7/21/2017 6:22,46.61352158,7.043612957,UBISOFT,Switzerland,Bulle,,TRUE
+4/15/2017 15:50,24.71355248,46.67529678,MOMRA,Saudi Arabia,Riyadh,,TRUE
+11/2/2017 23:04,39.41574097,-77.41203308,NISSAN,United States,Frederick,Maryland,TRUE
+11/13/2017 22:51,30.3322506,-81.6747818,MORGAN STANLEY,United States,Jacksonville,Florida,FALSE
+9/13/2017 1:48,37.1679306,-95.84501648,APPLE INC,United States,Independence,Kansas,TRUE
+4/1/2017 16:51,32.9709834,-96.7071453,MICROSOFT SUPPORT,United States,Garland,Texas,TRUE
+9/20/2017 15:16,39.14126968,-84.50518799,VERIZON,United States,Saint Bernard,Ohio,TRUE
+9/16/2017 23:23,-8.894029617,126.1195526,FORTUNE,Timor-Leste,Viqueque,,TRUE
+8/18/2017 13:05,42.89619827,-78.87599945,TD BANK,Canada,Fort Erie,,TRUE
+9/21/2017 0:56,34.05350113,-118.2450027,AMERICAN AIRLINES,United States,Los Angeles,California,FALSE
+10/14/2017 23:39,47.64067841,-122.3610382,SPORTS ILLUSTRATED,United States,Seattle,Washington,TRUE
+8/30/2017 2:04,42.35863113,-71.05670166,ACCENTURE,United States,Boston,Massachusetts,TRUE
+5/4/2017 20:27,32.51964,-83.5603112,SEPHORA,United States,Robins Air Force Base,Georgia,TRUE
+7/22/2017 16:23,38.44918823,27.20473099,TURKCELL,Turkey,Bornova,,TRUE
+8/18/2017 16:21,53.33412933,-6.286359787,ALLIED IRISH BANK,Ireland,Rialto,,FALSE
+10/10/2017 13:46,31.16889954,-100.0771484,PEOPLE,United States,Eden,Texas,FALSE
+7/27/2017 10:05,-26.20410347,28.04730415,ABSA,South Africa,Johannesburg,,TRUE
+10/9/2017 17:44,40.99470901,-77.60453796,NISSAN,United States,Zion,Pennsylvania,TRUE
+10/4/2017 9:29,60.14627838,11.17776966,BRITISH AIRWAYS,Norway,Jessheim,,FALSE
+8/31/2017 10:00,52.31658173,0.01701,ADIDAS,United Kingdom,Swavesey,,TRUE
+11/26/2017 5:09,19.29030037,-98.94390106,NISSAN,Mexico,San Miguel Xico,,FALSE
+9/18/2017 20:05,52.65211105,-0.480349988,ALDI,United Kingdom,Stamford,,FALSE
+4/6/2017 12:55,-30.0002315,136.2091547,FLINDERS UNIVERSITY,Australia,Roxby Downs,,FALSE
+11/3/2017 16:14,-7.009329796,113.8555069,TELKOMSEL,Indonesia,Sumenep,,TRUE
+11/25/2017 14:33,52.89854813,-1.962440014,NISSAN,United Kingdom,Cheadle,,TRUE
+10/6/2017 14:11,52.10820007,5.32986021,AHOLD,Netherlands,Maarn,,TRUE
+6/6/2017 5:39,52.35551834,-1.174319744,BRITISH AIRWAYS,United Kingdom,Rugby,,FALSE
+11/15/2017 7:36,53.55334091,9.99244976,LOVEWINS CAMPAIGN,Germany,Neustadt,,TRUE
+5/23/2017 11:03,52.35551834,-1.174319744,ASDA,United Kingdom,Rugby,,FALSE
+11/15/2017 1:10,37.1679306,-95.84501648,MATTEL,United States,Independence,Kansas,TRUE
+9/15/2017 22:45,-6.926730156,107.6885529,SERVICENOW,Indonesia,Cileunyi,,FALSE
+6/22/2017 15:39,51.5,-0.116667002,MICROSOFT - WINDOWS 10,United Kingdom,City of Westminster,,FALSE
+11/28/2017 6:04,50.37617111,-4.136630058,BRITISH AIRWAYS,United Kingdom,Plymouth,,TRUE
+9/11/2017 9:54,35.30913925,-98.52101898,NISSAN,United States,Carnegie,Oklahoma,TRUE
+9/20/2017 1:00,33.62646103,-80.94740295,ARAMARK,United States,Oak Grove,South Carolina,FALSE
+10/27/2017 11:04,44.0498085,20.91078949,HCL,Serbia,Kragujevac,,FALSE
+7/24/2017 10:00,50.78269577,5.461327553,AXA,Belgium,Tongeren,,TRUE
+9/17/2017 13:15,51.50640106,-0.127210006,FEDEX,United Kingdom,London,,FALSE
+6/18/2017 21:12,39.96066284,-75.60549164,GE,United States,West Chester,Pennsylvania,FALSE
+11/23/2017 15:05,40.00762939,-75.13395691,NISSAN,United States,Philadelphia,Pennsylvania,TRUE
+11/24/2017 2:50,3.152479887,101.7172699,INDIGO,Malaysia,Kuala Lumpur,,FALSE
+10/17/2017 8:39,37.1679306,-95.84501648,T-MOBILE,United States,Independence,Kansas,FALSE
+9/2/2017 4:56,42.00690079,-83.94486237,LAWA,United States,Manitou Beach-Devils Lake,Michigan,TRUE
+10/9/2017 7:00,44.6446991,10.92656994,NISSAN,Italy,Modena,,TRUE
+9/26/2017 7:03,48.57093048,7.757880211,NISSAN,France,Strasbourg,,TRUE
+11/26/2017 18:10,43.19366074,-112.3458023,NISSAN,United States,Blackfoot,Idaho,TRUE
+6/28/2017 3:48,41.87811279,-87.62979889,IKEA,United States,Chicago,Illinois,TRUE
+11/5/2017 9:07,14.60962009,121.0058899,AIR ASIA,Philippines,Manila,,FALSE
+9/10/2017 20:45,38.25485992,-85.7664032,NISSAN,United States,Louisville,Kentucky,TRUE
+10/14/2017 3:45,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+11/19/2017 8:04,39.10295105,-94.58306122,NISSAN,United States,Kansas City,Missouri,TRUE
+9/11/2017 2:09,40.65507126,-73.94888306,AMERICAN AIRLINES,United States,Byram,New York,TRUE
+8/19/2017 18:37,42.96590042,-78.87129974,Apple Computer Inc,United States,Tonawanda,New York,FALSE
+9/29/2017 4:29,41.26356125,-96.03553009,H&M,United States,Carter Lake,Nebraska,TRUE
+5/22/2017 2:53,32.9709834,-96.7071453,WALMART,United States,Garland,Texas,FALSE
+11/27/2017 15:52,33.76319122,-84.42305756,NISSAN,United States,Atlanta,Georgia,TRUE
+10/18/2017 18:29,52.37311935,4.893189907,AHOLD,Netherlands,Amsterdam,,FALSE
+11/17/2017 8:22,26.27969933,73.02642059,TIMES OF INDIA,India,Jodhpur,,FALSE
+11/20/2017 16:00,32.77822876,-97.34784698,NISSAN,United States,Fort Worth,Texas,FALSE
+11/4/2017 14:15,41.98905945,-77.3140564,NISSAN,United States,Westfield,Pennsylvania,TRUE
+10/5/2017 9:05,15.35023022,74.01393127,BAJAJ FINSERV,India,Queula,,TRUE
+11/15/2017 0:54,19.29030037,-98.94390106,NISSAN,Mexico,San Miguel Xico,,FALSE
+6/6/2017 22:57,39.73923492,-104.9902496,BRITISH AIRWAYS,United States,Denver,Colorado,TRUE
+11/4/2017 23:14,-6.268509865,106.9782104,TELKOMSEL,Indonesia,Bekasi,,FALSE
+10/27/2017 6:04,-33.80820084,151.1837921,TELSTRA,Australia,Chatswood,,FALSE
+11/15/2017 17:14,10.54736996,76.138237,TIMES OF INDIA,India,Avanoor,,TRUE
+7/4/2017 10:49,0.347596407,32.58251953,IATA,Uganda,Kampala Central Division,,TRUE
+6/6/2017 18:36,35.92499924,-86.86888886,T-MOBILE,United States,Franklin,Tennessee,FALSE
+11/17/2017 16:05,31.16889954,-100.0771484,NISSAN,United States,Eden,Texas,TRUE
+11/20/2017 22:25,34.23136139,-83.87802124,NISSAN,United States,Oakwood,Georgia,TRUE
+9/25/2017 17:15,51.40570068,0.01493,MICROSOFT - WINDOWS 10,United Kingdom,Bromley,,FALSE
+10/6/2017 8:05,0.109739996,113.9173965,TELKOMSEL,Indonesia,Longnawang,,FALSE
+6/5/2017 17:27,51.55017471,-0.003371,DELOITTE,United Kingdom,Poplar,,TRUE
+10/18/2017 22:11,40.65507126,-73.94888306,NISSAN,United States,Byram,New York,TRUE
+9/8/2017 17:03,52.06402969,-0.422839999,TESCO,United Kingdom,Wilshamstead,,TRUE
+11/3/2017 16:58,39.71374893,-82.60327911,NISSAN,United States,Lancaster,Ohio,TRUE
+11/3/2017 14:43,33.49398041,-111.9212189,SPORTS ILLUSTRATED,United States,Scottsdale,Arizona,TRUE
+7/9/2017 22:02,40.71416855,-74.0063858,EMIRATES,United States,Byram,New Jersey,TRUE
+10/15/2017 0:55,50.72805023,-3.719249964,ALDI,United Kingdom,Bovey Tracey,,TRUE
+10/12/2017 0:00,35.15951157,-98.44251251,NISSAN,United States,Carnegie,Oklahoma,TRUE
+10/5/2017 5:04,34.98559952,-101.9362717,NISSAN,United States,Canyon,Texas,TRUE
+9/17/2017 20:09,40.71455002,-74.00711823,WALMART,United States,Byram,New Jersey,TRUE
+10/10/2017 5:02,35.14968109,-90.04891968,STANDARD BANK,United States,Memphis,Tennessee,FALSE
+8/11/2017 22:49,51.50728226,-0.220459461,COTY - CALVIN KLEIN,United Kingdom,Kensington,,TRUE
+10/15/2017 19:50,43.64855957,-79.38536835,NISSAN,Canada,Toronto,,TRUE
+9/17/2017 21:59,-22.97673035,-43.1950798,SPORT CLUB CORINTHIANS PAULISTA,Brazil,Rio de Janeiro,,TRUE
+4/28/2017 18:52,35.7595731,-79.0192997,AMERICAN AIRLINES,United States,Fearrington Village,North Carolina,TRUE
+9/12/2017 18:22,40.14323044,-74.72670746,APPLE INC,United States,Tullytown,New Jersey,FALSE
+11/15/2017 13:00,40.71455002,-74.00711823,LEGO,United States,Byram,New Jersey,FALSE
+4/7/2017 19:00,52.35551834,-1.174319744,STANLEY BLACK AND DECKER,United Kingdom,Rugby,,FALSE
+6/28/2017 18:58,34.167881,-111.930702,ERNST & YOUNG ,United States,Cordes Lakes,Arizona,FALSE
+11/21/2017 15:13,18.53610992,73.85218048,TIMES OF INDIA,India,Shivaji Nagar,,FALSE
+11/8/2017 6:36,6.439179897,3.423480034,FIRSTBANK NIGERIA,Nigeria,Lagos,,TRUE
+11/3/2017 11:12,41.71131134,-88.33535004,NISSAN,United States,Boulder Hill,Illinois,FALSE
+8/23/2017 14:34,18.98605919,-72.29225922,NIKE,Haiti,D�����,,FALSE
+9/15/2017 10:11,23.0308094,72.5917511,BAJAJ FINSERV,India,Ahmedabad,,TRUE
+11/25/2017 4:00,35.22076035,-97.44660187,NISSAN,United States,Norman,Oklahoma,TRUE
+11/25/2017 5:09,36.7397995,-85.20741272,BAJAJ FINSERV,United States,Albany,Kentucky,FALSE
+6/12/2017 20:48,32.78333282,-96.80000305,AMERICAN AIRLINES,United States,Dallas,Texas,TRUE
+4/22/2017 15:06,34.0489281,-111.0937311,AMERICAN AIRLINES,United States,Star Valley,Arizona,TRUE
+8/9/2017 8:08,12.97754,77.59951,SHOPPERS STOP,India,Bangalore,,FALSE
+6/24/2017 17:52,40.05832291,-74.40566254,FEDEX,United States,Cedar Glen Lakes,New Jersey,TRUE
+10/23/2017 0:42,26.71438026,-80.0526886,NISSAN,United States,West Palm Beach,Florida,TRUE
+11/9/2017 17:15,51.50640106,-0.127210006,SCANDINAVIAN AIRLINES,United Kingdom,London,,TRUE
+11/27/2017 19:00,59.00912857,-2.934760094,NISSAN,United Kingdom,Kirkwall,,FALSE
+11/4/2017 18:05,37.1679306,-95.84501648,NISSAN,United States,Independence,Kansas,TRUE
+4/21/2017 10:52,65.33373261,16.51616859,AXFOOD,Sweden,Fristad,,TRUE
+11/9/2017 1:51,30.05035973,-81.90119934,NISSAN,United States,Middleburg,Florida,FALSE
+10/18/2017 17:42,52.88356018,-1.974060059,Apple Computer Inc,United Kingdom,Cheadle,,TRUE
+11/1/2017 7:41,-24.91209984,133.397995,NISSAN,Australia,Alice Springs,,TRUE
+6/22/2017 23:34,37.43157196,-78.65689087,HP INC.,United States,Woodlake,Virginia,TRUE
+8/28/2017 13:57,53.44229889,-2.233409882,AHOLD,United Kingdom,Fallowfield,,TRUE
+8/4/2017 10:24,-6.419889927,106.8143768,BOEHRINGER INGELHEIM,Indonesia,Depok,,TRUE
+11/5/2017 2:42,-37.25125122,147.7234497,TELSTRA,Australia,Bairnsdale,,TRUE
+10/6/2017 16:53,36.1257782,-95.91430664,PEOPLE,United States,Tulsa,Oklahoma,FALSE
+9/14/2017 2:51,28.60733032,77.20350647,TIMES OF INDIA,India,New Delhi,,TRUE
+11/28/2017 18:44,41.88415146,-87.63240814,J CREW,United States,Chicago,Illinois,FALSE
+10/10/2017 19:10,28.47932053,-81.34429169,T-MOBILE,United States,Pine Castle,Florida,FALSE
+7/24/2017 21:34,39.95258331,-75.16522217,Apple Computer Inc,United States,Philadelphia,Pennsylvania,FALSE
+11/13/2017 15:03,28.60733032,77.20350647,STANDARD BANK,India,New Delhi,,TRUE
+6/28/2017 17:34,56.4396019,4.053199768,Apple Computer Inc,Norway,Vigrestad,,TRUE
+10/17/2017 7:20,40.78269959,14.38300037,NISSAN,Italy,Torre del Greco,,FALSE
+10/31/2017 8:00,-37.86579895,145.102829,COLES,Australia,Ashwood,,FALSE
+11/6/2017 16:26,-6.162879944,106.8592606,TELKOMSEL,Indonesia,Jakarta,,FALSE
+5/31/2017 3:09,38,-97,MICROSOFT SUPPORT,United States,Peabody,Kansas,TRUE
+11/5/2017 5:11,39.42309189,-81.46032715,NISSAN,United States,Marietta,Ohio,TRUE
+11/6/2017 7:42,56.9546814,-98.30896759,APPLE INC,Canada,Thompson,,TRUE
+7/28/2017 16:34,48.35449982,11.78465366,BRITISH AIRWAYS,Germany,Hallbergmoos,,FALSE
+8/22/2017 23:30,44.33081818,-109.7547226,NISSAN,United States,Cody,Wyoming,FALSE
+11/28/2017 3:12,31.16889954,-100.0771484,JC PENNEY,United States,Eden,Texas,TRUE
+6/14/2017 22:09,47.65888977,-117.4250031,JC PENNEY,United States,Spokane,Washington,FALSE
+9/20/2017 23:45,40.99470901,-77.60453796,T-MOBILE,United States,Zion,Pennsylvania,TRUE
+7/8/2017 9:51,43.66666794,-79.41666412,ELECTRONIC ARTS,Canada,Toronto,,FALSE
+10/27/2017 23:37,38.0033493,-79.77127075,LEGO,United States,Mountain Lake Park,Virginia,FALSE
+9/14/2017 20:18,46.44231033,-93.36585999,ALLERGAN,United States,Grantsburg,Minnesota,FALSE
+8/28/2017 19:32,52.40444946,-3.985120058,NISSAN,United Kingdom,Bow Street,,TRUE
+11/3/2017 21:28,53.44229889,-2.233409882,TESCO,United Kingdom,Fallowfield,,FALSE
+9/6/2017 21:37,22.44607925,69.90769959,ADIDAS,India,Sikka,,TRUE
+11/16/2017 2:07,6.439179897,3.423480034,FIRSTBANK NIGERIA,Nigeria,Lagos,,TRUE
+6/6/2017 14:37,34.05222321,-118.242775,T-MOBILE,United States,Los Angeles,California,TRUE
+7/22/2017 3:24,39.73923492,-104.9902496,AMERICAN AIRLINES,United States,Denver,Colorado,TRUE
+6/6/2017 7:16,-23.55051994,-46.63330841,EMIRATES,Brazil,S�����,,FALSE
+10/23/2017 16:42,-6.211659908,106.970459,TELKOMSEL,Indonesia,Bekasi,,FALSE
+7/17/2017 23:51,47.60638809,-122.3308334,MICROSOFT,United States,Seattle,Washington,FALSE
+10/26/2017 22:18,42.82693863,-103.0019302,NISSAN,United States,Chadron,Nebraska,TRUE
+7/28/2017 11:50,48.35449982,11.78465366,BRITISH AIRWAYS,Germany,Hallbergmoos,,FALSE
+11/23/2017 20:45,34.62854004,-96.84116364,NISSAN,United States,Sulphur,Oklahoma,TRUE
+9/9/2017 21:14,46.65061951,9.563340187,UBISOFT,Switzerland,Tiefencastel,,TRUE
+9/7/2017 11:21,18.53610992,73.85218048,HDFC BANK,India,Shivaji Nagar,,FALSE
+7/15/2017 3:11,34.1240654,-118.3213577,MASTERCARD,United States,Hollywood,California,TRUE
+9/2/2017 13:13,52.44947052,4.80892992,AHOLD,Netherlands,Zaanstad,,TRUE
+7/24/2017 21:28,40.15731812,-76.30690002,KRAFT FOODS INC,United States,Lititz,Pennsylvania,TRUE
+10/26/2017 14:31,-26.35000038,28.20000076,AFRICAN BANK,South Africa,Germiston,,TRUE
+10/13/2017 19:59,37.2718811,-119.2702332,MCDONALDS,United States,Auberry,California,FALSE
+11/25/2017 16:52,37.2718811,-119.2702332,MCCLATCHY,United States,Auberry,California,FALSE
+11/25/2017 0:57,37.74739838,-122.4392166,STANDARD BANK,United States,San Francisco,California,TRUE
+11/8/2017 20:23,34.17169952,-117.7390594,CISCO,United States,La Verne,California,TRUE
+11/25/2017 13:32,41.66122055,-71.55587006,PEOPLE,United States,West Warwick,Rhode Island,TRUE
+7/7/2017 0:38,56.49067307,-4.202645779,ROYAL BANK OF SCOTLAND,United Kingdom,Callander,,TRUE
+10/12/2017 1:14,37.2718811,-119.2702332,NISSAN,United States,Auberry,California,TRUE
+9/30/2017 2:42,35.21961975,-80.01954651,LEVIS,United States,Mount Gilead,North Carolina,TRUE
+11/4/2017 2:22,-6.437839985,105.9946213,TELKOMSEL,Indonesia,Jasugih Selatan,,FALSE
+5/10/2017 7:05,52.35551834,-1.174319744,H&M,United Kingdom,Rugby,,FALSE
+10/4/2017 0:52,-1.270200014,36.80413818,AMERICAN AIRLINES,Kenya,Nairobi,,TRUE
+11/1/2017 16:32,47.67736816,-122.1176834,MICROSOFT - WINDOWS 10,United States,Redmond,Washington,TRUE
+11/21/2017 16:07,40.71455002,-74.00711823,NISSAN,United States,Byram,New Jersey,FALSE
diff --git a/src/test/scripts/functions/pipelines/meta/meta_company.csv b/src/test/scripts/functions/pipelines/meta/meta_company.csv
new file mode 100644
index 0000000..f699e97
--- /dev/null
+++ b/src/test/scripts/functions/pipelines/meta/meta_company.csv
@@ -0,0 +1,3 @@
+schema,STRING,FP32,FP32,STRING,STRING,STRING,STRING,STRING
+mask,1,0,0,1,1,1,1,1
+FD,1,0,0,1,1,1,1,1