diff --git a/.gitignore b/.gitignore index 113c7822..c5ccb501 100644 --- a/.gitignore +++ b/.gitignore @@ -1,29 +1,30 @@ -.Rproj.user -.Rhistory -.RData -.Ruserdata -Introd-pyspark.pdf - -/.quarto/ - -derby.log -Chapters/derby.log - -spark-warehouse -Chapters/spark-warehouse -metastore_db -Chapters/metastore_db - -Chapters/*.html -Chapters/*/* - -Scripts/__pycache__/ - -index_files/ - -Introduction-to-`pyspark`.tex -index.tex -docs/*.pdf -*.aux -*.log -*.toc +.Rproj.user +.Rhistory +.RData +.Ruserdata +Introd-pyspark.pdf + +/.quarto/ +site_libs/ + +derby.log +Chapters/derby.log + +spark-warehouse +Chapters/spark-warehouse +metastore_db +Chapters/metastore_db + +Chapters/*.html +Chapters/*/* + +Scripts/__pycache__/ + +index_files/ + +Introduction-to-`pyspark`.tex +index.tex +docs/*.pdf +*.aux +*.log +*.toc diff --git a/Chapters/00-install-spark.qmd b/Chapters/00-install-spark.qmd index 52d1004c..442641c7 100644 --- a/Chapters/00-install-spark.qmd +++ b/Chapters/00-install-spark.qmd @@ -1,174 +1,174 @@ - -# How to install Spark and `pyspark` {#sec-install-spark .appendix} - -In order to build and run any Spark application through `pyspark`, you have to install Apache Spark in your computer. Apache Spark is available to all three major operating systems in the market today (macOS, Windows and Linux). - -The process of installation is kind of similar in all three OS's. But some steps work differently in each OS. Currently, I (the author of this book) do not have access to a macOS machine, and because of that, I will not describe the installation process of Spark on this platform here. If you have access to a macOS machine, and are willing to describe this installation process, I would be happy to review a PR with such content. - - - -## What are the steps? - -In short, the next steps for installing Spark are: - -1. Install Java; -2. Install Python; -3. Install `pyspark`; -2. Download and extract Apache Spark; -3. Set `SPARK_HOME` and `JAVA_HOME` environment variables; - -The next sections describes these steps for each operating system. - - -## On Windows - -### Install Java SDK - -Apache Spark is written in Scala, which is a fairly modern programming language that have powerful interoperability with the Java programming language. Because of this characteristic, some of the functionalities of Spark require you to have Java SDK (*Software Development Kit*) installed in your machine. - -In other words, you must have Java SDK installed to use Spark. If you do not have Java SDK, Spark will likely fail when you try to start it. However, since Java is a very popular tecnology across the world, is possible that you already have it installed in your machine. To check if Java is already installed, you can run the following command in your OS terminal: - -```{terminal} -#| eval: false -Terminal$ java -version -``` - -If the above command outputs something similar to the text exposed below, then, you already have Java installed in your machine, and you can proceed to the next step. - -``` -java version "19.0.1" 2022-10-18 -Java(TM) SE Runtime Environment (build 19.0.1+10-21) -Java HotSpot(TM) 64-Bit Server VM (build 19.0.1+10-21, mixed mode, sharing) -``` - -But, if something different comes up in your terminal, then is likely that you do not have Java installed. To fix this, [download Java from the official website](https://www.oracle.com/java/technologies/downloads/)^[], and install it. - - -### Install Python - -You can easily install Python on Windows, by downloading the installer available at the [official website of the language](https://www.python.org/downloads/)^[], and executing it. - - -### Install `pyspark` - -After you installed Python, installing the `pyspark` Python package is pretty straightforward. Just open a terminal (if you need help to open the terminal check @sec-open-terminal), and use the `pip` command to do it: - -```{terminal} -#| eval: false -Terminal$ pip install pyspark -``` - -If you try to run the above command (inside a terminal of any OS), and a message like `pip: command not found` appears, this means that you do not have the `pip` tool installed on your machine. Hence, if you face this kind of message, you need to install `pip` before you even install `pyspark`. - -The `pip` tool is automatically installed with Python on Windows. So, if you face this message (`pip: command not found`), then, is very likely that you do not have Python correctly installed on your machine. Or maybe, Python is not installed at all in any shape or size in your system. So, you should comeback to previous section, and re install it. - - - -### Download and extract the files of Apache Spark - -First, you need to download Apache Spark from the [official website of the project](https://spark.apache.org/downloads)^[]. Currently, the Apache Spark does not offers installers or package programs to install the software for you. - -We usually install external software on Windows by using installers (i.e. executable files - `.exe`) that perform all the necessary steps to install the software in your machine. However, currently, the Apache Spark project does not offers such installers. This means that you have to install it yourself. - -When you download Apache Spark from the official website, you will get all files of the program compacted inside a TAR file (`.tgz`), which is similar to a ZIP file (`.zip`). After you downloaded Spark to your machine, you need to extract all files from the TAR file (`.tgz`) to a specific location of your computer. It can be anywhere, just choose a place. As an example, I will extract the files to a folder called `Spark` directly at my hard disk `C:/`. - -To extract these files, you can use very popular UI tools like [7zip](https://7-zip.org/)^[] or [WinRAR](https://www.win-rar.com/)^[]. However, if you use a modern version of Windows, there is a `tar` command line tool available at the terminal that you can use to do this process in a programatic fashion. As an example, I can extract and move all files of Spark with these commands: - -```{terminal} -#| eval: false -Terminal$ tar -x -f spark-3.3.1-bin-hadoop3.tgz -Terminal$ mv spark-3.3.1-bin-hadoop3 C:/Spark/spark-3.3.1-bin-hadoop3 -``` - - -### Set environment variables - - - - -Apache Spark will always look for two specific environment variables in your system: `SPARK_HOME` and `JAVA_HOME`. This means that you must have these two environment variables defined and correctly configured in your machine. To configure an environment variable on Windows, I recommend you to use the menu that you can find by searching for "environment variables" in the Windows search box. At @fig-windows-envs you can see the path to this menu on Windows: - - - -::::: {.content-hidden when-format="pdf"} - -::: {#fig-windows-envs} - -![Path to Windows Environment Variables Menu - Part 1](../Figures/windows-environment-variables1.png){#fig-windows-env1} - -![Path to Windows Environment Variables Menu - Part 2](../Figures/windows-environment-variables2.png){#fig-windows-env2} - -![Path to Windows Environment Variables Menu - Part 3](../Figures/windows-environment-variables3.png){#fig-windows-env3} - -Path to Windows Environment Variables Menu -::: - -::::: - - -::::: {.content-visible when-format="pdf"} - -::: {#fig-windows-envs} - -![Path to Windows Environment Variables Menu - Part 1](../Figures/windows-environment-variables1.png){#fig-windows-env1, fig-env="subfigure"} - -![Path to Windows Environment Variables Menu - Part 2](../Figures/windows-environment-variables2.png){#fig-windows-env2, fig-env="subfigure"} - -![Path to Windows Environment Variables Menu - Part 3](../Figures/windows-environment-variables3.png){#fig-windows-env3, fig-env="subfigure"} - -Path to Windows Environment Variables Menu -::: - -::::: - -During the process of scheduling and running your Spark application, Spark will execute a set of scripts located at the home directory of Spark itself. Spark does this by looking for a environment variable called `SPARK_HOME` in your system. If you do not have this variable configured, Spark will not be able to find its home directory, and as a consequence, it throws an runtime error. - -In other words, you need to set a variable with name `SPARK_HOME` in your system. Its value should be the path to the home (or "root") directory where you installed (or unzipped) the Spark files. In my case I unzipped the files into a folder called `C:/Spark/spark-3.3.1-bin-hadoop3`, and that is the folder that I going to use in `SPARK_HOME`, as you can see at @fig-spark-home-env: - -![Setting the `SPARK_HOME` environment variable](../Figures/windows-environment-variables4.png){#fig-spark-home-env} - - - - -Now, a lot Spark functionality is closely related to Java SDK, and to find it, Spark will look for a environment variable called `JAVA_HOME`. On my machine, I have Java SDK installed at the folder `C:\Program Files\Java\jdk-19`. This might be not your case, and you may find the "jdk" folder for Java at a different location of your computer. Just find where it is, and use this path while setting this `JAVA_HOME` variable, like I did at @fig-java-home-env: - -![Setting the `JAVA_HOME` environment variable](../Figures/windows-environment-variables5.png){#fig-java-home-env} - -With these two environment variables setted, you should be able to start and use Spark already. Just open a brand new terminal, and type the `spark` command. An interactive Spark Session will initiate after this command, and give you a command prompt where you can start coding the Spark application you want to execute. - - - - - - - - - - -## On Linux - -### Install `pyspark` - -In Linux systems, installing `pip` is very easy, because you can use the built-in package manager to do this for you. In Debian like distros (e.g. Ubuntu), you use the `apt` tool, and, in Arch-Linux like distros (e.g. Arch Linux, Manjaro) you would use the `pacman` tool. Both possibilities are exposed below: - -```{terminal, eval = FALSE} -# If you are in a Debian like distro of Linux -# and need to install `pip`, use this command: -Terminal$ sudo apt install python3-pip -# If you are in a Arch-Linux like distro of Linux -# and need to install `pip`, use this command: -Terminal$ pacman -S python-pip + +# How to install Spark and `pyspark` {#sec-install-spark .appendix} + +In order to build and run any Spark application through `pyspark`, you have to install Apache Spark in your computer. Apache Spark is available to all three major operating systems in the market today (macOS, Windows and Linux). + +The process of installation is kind of similar in all three OS's. But some steps work differently in each OS. Currently, I (the author of this book) do not have access to a macOS machine, and because of that, I will not describe the installation process of Spark on this platform here. If you have access to a macOS machine, and are willing to describe this installation process, I would be happy to review a PR with such content. + + + +## What are the steps? + +In short, the next steps for installing Spark are: + +1. Install Java; +2. Install Python; +3. Install `pyspark`; +2. Download and extract Apache Spark; +3. Set `SPARK_HOME` and `JAVA_HOME` environment variables; + +The next sections describes these steps for each operating system. + + +## On Windows + +### Install Java SDK + +Apache Spark is written in Scala, which is a fairly modern programming language that have powerful interoperability with the Java programming language. Because of this characteristic, some of the functionalities of Spark require you to have Java SDK (*Software Development Kit*) installed in your machine. + +In other words, you must have Java SDK installed to use Spark. If you do not have Java SDK, Spark will likely fail when you try to start it. However, since Java is a very popular tecnology across the world, is possible that you already have it installed in your machine. To check if Java is already installed, you can run the following command in your OS terminal: + +```{terminal} +#| eval: false +Terminal$ java -version +``` + +If the above command outputs something similar to the text exposed below, then, you already have Java installed in your machine, and you can proceed to the next step. + +``` +java version "19.0.1" 2022-10-18 +Java(TM) SE Runtime Environment (build 19.0.1+10-21) +Java HotSpot(TM) 64-Bit Server VM (build 19.0.1+10-21, mixed mode, sharing) +``` + +But, if something different comes up in your terminal, then is likely that you do not have Java installed. To fix this, [download Java from the official website](https://www.oracle.com/java/technologies/downloads/)^[], and install it. + + +### Install Python + +You can easily install Python on Windows, by downloading the installer available at the [official website of the language](https://www.python.org/downloads/)^[], and executing it. + + +### Install `pyspark` + +After you installed Python, installing the `pyspark` Python package is pretty straightforward. Just open a terminal (if you need help to open the terminal check @sec-open-terminal), and use the `pip` command to do it: + +```{terminal} +#| eval: false +Terminal$ pip install pyspark +``` + +If you try to run the above command (inside a terminal of any OS), and a message like `pip: command not found` appears, this means that you do not have the `pip` tool installed on your machine. Hence, if you face this kind of message, you need to install `pip` before you even install `pyspark`. + +The `pip` tool is automatically installed with Python on Windows. So, if you face this message (`pip: command not found`), then, is very likely that you do not have Python correctly installed on your machine. Or maybe, Python is not installed at all in any shape or size in your system. So, you should comeback to previous section, and re install it. + + + +### Download and extract the files of Apache Spark + +First, you need to download Apache Spark from the [official website of the project](https://spark.apache.org/downloads)^[]. Currently, the Apache Spark does not offers installers or package programs to install the software for you. + +We usually install external software on Windows by using installers (i.e. executable files - `.exe`) that perform all the necessary steps to install the software in your machine. However, currently, the Apache Spark project does not offers such installers. This means that you have to install it yourself. + +When you download Apache Spark from the official website, you will get all files of the program compacted inside a TAR file (`.tgz`), which is similar to a ZIP file (`.zip`). After you downloaded Spark to your machine, you need to extract all files from the TAR file (`.tgz`) to a specific location of your computer. It can be anywhere, just choose a place. As an example, I will extract the files to a folder called `Spark` directly at my hard disk `C:/`. + +To extract these files, you can use very popular UI tools like [7zip](https://7-zip.org/)^[] or [WinRAR](https://www.win-rar.com/)^[]. However, if you use a modern version of Windows, there is a `tar` command line tool available at the terminal that you can use to do this process in a programatic fashion. As an example, I can extract and move all files of Spark with these commands: + +```{terminal} +#| eval: false +Terminal$ tar -x -f spark-3.3.1-bin-hadoop3.tgz +Terminal$ mv spark-3.3.1-bin-hadoop3 C:/Spark/spark-3.3.1-bin-hadoop3 +``` + + +### Set environment variables + + + + +Apache Spark will always look for two specific environment variables in your system: `SPARK_HOME` and `JAVA_HOME`. This means that you must have these two environment variables defined and correctly configured in your machine. To configure an environment variable on Windows, I recommend you to use the menu that you can find by searching for "environment variables" in the Windows search box. At @fig-windows-envs you can see the path to this menu on Windows: + + + +::::: {.content-hidden when-format="pdf"} + +::: {#fig-windows-envs} + +![Path to Windows Environment Variables Menu - Part 1](../Figures/windows-environment-variables1.png){#fig-windows-env1} + +![Path to Windows Environment Variables Menu - Part 2](../Figures/windows-environment-variables2.png){#fig-windows-env2} + +![Path to Windows Environment Variables Menu - Part 3](../Figures/windows-environment-variables3.png){#fig-windows-env3} + +Path to Windows Environment Variables Menu +::: + +::::: + + +::::: {.content-visible when-format="pdf"} + +::: {#fig-windows-envs} + +![Path to Windows Environment Variables Menu - Part 1](../Figures/windows-environment-variables1.png){#fig-windows-env1, fig-env="subfigure"} + +![Path to Windows Environment Variables Menu - Part 2](../Figures/windows-environment-variables2.png){#fig-windows-env2, fig-env="subfigure"} + +![Path to Windows Environment Variables Menu - Part 3](../Figures/windows-environment-variables3.png){#fig-windows-env3, fig-env="subfigure"} + +Path to Windows Environment Variables Menu +::: + +::::: + +During the process of scheduling and running your Spark application, Spark will execute a set of scripts located at the home directory of Spark itself. Spark does this by looking for a environment variable called `SPARK_HOME` in your system. If you do not have this variable configured, Spark will not be able to find its home directory, and as a consequence, it throws an runtime error. + +In other words, you need to set a variable with name `SPARK_HOME` in your system. Its value should be the path to the home (or "root") directory where you installed (or unzipped) the Spark files. In my case I unzipped the files into a folder called `C:/Spark/spark-3.3.1-bin-hadoop3`, and that is the folder that I going to use in `SPARK_HOME`, as you can see at @fig-spark-home-env: + +![Setting the `SPARK_HOME` environment variable](../Figures/windows-environment-variables4.png){#fig-spark-home-env} + + + + +Now, a lot Spark functionality is closely related to Java SDK, and to find it, Spark will look for a environment variable called `JAVA_HOME`. On my machine, I have Java SDK installed at the folder `C:\Program Files\Java\jdk-19`. This might be not your case, and you may find the "jdk" folder for Java at a different location of your computer. Just find where it is, and use this path while setting this `JAVA_HOME` variable, like I did at @fig-java-home-env: + +![Setting the `JAVA_HOME` environment variable](../Figures/windows-environment-variables5.png){#fig-java-home-env} + +With these two environment variables setted, you should be able to start and use Spark already. Just open a brand new terminal, and type the `spark` command. An interactive Spark Session will initiate after this command, and give you a command prompt where you can start coding the Spark application you want to execute. + + + + + + + + + + +## On Linux + +### Install `pyspark` + +In Linux systems, installing `pip` is very easy, because you can use the built-in package manager to do this for you. In Debian like distros (e.g. Ubuntu), you use the `apt` tool, and, in Arch-Linux like distros (e.g. Arch Linux, Manjaro) you would use the `pacman` tool. Both possibilities are exposed below: + +```{terminal, eval = FALSE} +# If you are in a Debian like distro of Linux +# and need to install `pip`, use this command: +Terminal$ sudo apt install python3-pip +# If you are in a Arch-Linux like distro of Linux +# and need to install `pip`, use this command: +Terminal$ pacman -S python-pip ``` \ No newline at end of file diff --git a/Chapters/00-terminal.qmd b/Chapters/00-terminal.qmd index 6d5050fe..cf99c8e9 100644 --- a/Chapters/00-terminal.qmd +++ b/Chapters/00-terminal.qmd @@ -1,50 +1,50 @@ - -# Opening the terminal of your OS {#sec-open-terminal .appendix} - -Every operating system (OS) comes with a terminal (or a command prompt). A terminal is usually just a black screen where you can send commands to be executed by your OS. As an example, @fig-terminal-simple-shot shows a print screen of the terminal in Ubuntu Linux. The terminal on Windows is very similar to this. - -![A terminal on Ubuntu](./../Figures/terminal-simple-shot.png){#fig-terminal-simple-shot} - -Terminals are incredibely flexible tools, and you will find this tool very useful for a number of things. However, since they are just a black and empty screen, they give you no clue of what you should do, or what commands are available to you. - -That is ok, for now, you should not worry about that. I will expose many terminal commands in this book, and these commands should be used inside these terminals that comes with your OS. The next sub-sections will show you how to open a terminal in each one of the OS's where Spark is available. Lets begin with Windows. - -### Opening a terminal on Windows - -There are some different approaches to do this, but, the one that I find the most useful, is to open a terminal from inside a folder, using the default File Explorer program of Windows. - -This is very useful, because we normally use terminal commands to affect a set of files that are stored inside a specific folder in our computer. - -As a result, when we open a terminal from inside a folder, using the File Explorer, the terminal opened is already rooted inside the folder where our files are stored. In other words, we already have easy access to the files that we want to affect/use in our command, and we do not have the work to change or adjust directories in this terminal. - -For example, lets suppose that we want to use a terminal command to use a file called `hello.py`, and, that this `hello.py` file is stored inside a folder called `HelloPython`. You can see in @fig-windows-hello-folder, that this folder is in path `C:\Users\pedro\Documents\HelloPython`. So, the first step, is to use the File Explorer of Windows, to open this folder, like in @fig-windows-hello-folder. - -![Opening the `HelloPython` folder in Windows](../Figures/windows-hello-folder.png){#fig-windows-hello-folder fig-align="center"} - - -After you opened this folder, substitute the path to the folder in the search box with the word "cmd", like in @fig-windows-hello-folder2, and them, press Enter in the keyboard. - -![Opening a terminal inside a Windows folder - Part 1](../Figures/windows-hello-folder2.png){#fig-windows-hello-folder2 fig-align="center"} - - -As a result, a new terminal will open. See in @fig-windows-terminal, that this new terminal is already looking to (or is already rooted on) this `HelloPython` folder. This way, we can easily access the files stored inside this folder, like the `hello.py` file. - -![Opening a terminal inside a Windows folder - Part 2](../Figures/windows-terminal.png){#fig-windows-terminal fig-align="center"} - - -### Opening a terminal on Linux - -Is fairly easy to open a terminal on a Linux distribution. Again, is very useful when you open the terminal from inside the folder you are interested in. Because you will have an easier access to all the files that are stored inside this folder. - -To do this in Linux, you use the built-in File Explorer to open the folder where you want to root your terminal. At the moment, I am using an Ubuntu distribution. I just opened the same `HelloPython` folder, with the same `hello.py` file, in the File Explorer of Linux. As shown in @fig-ubuntu-folder: - -![Opening the `HelloPython` folder in Linux](../Figures/ubuntu-folder.png){#fig-ubuntu-folder fig-align="center"} - -After you opened the folder, just click with the right button of your mouse, and select the "Open in Terminal" option, and a new terminal should appear on your screen. See in @fig-ubuntu-folder-terminal, that the new terminal is already looking to the `HelloPython` folder, as we expected. - -![Opening the terminal in Linux](../Figures/ubuntu-folder-terminal.png){#fig-ubuntu-folder-terminal fig-align="center"} - -### Opening a terminal in MacOs - -Unfortunately, I do not have a Mac machine in my possession, so I cannot easily show you how to open a terminal in MacOs. But there a lot of articles available in the internet discussing how to open a terminal in MacOs. For example, there is a article from the support of Apple^[], or this other article from iDownloadBlog^[]. - + +# Opening the terminal of your OS {#sec-open-terminal .appendix} + +Every operating system (OS) comes with a terminal (or a command prompt). A terminal is usually just a black screen where you can send commands to be executed by your OS. As an example, @fig-terminal-simple-shot shows a print screen of the terminal in Ubuntu Linux. The terminal on Windows is very similar to this. + +![A terminal on Ubuntu](./../Figures/terminal-simple-shot.png){#fig-terminal-simple-shot} + +Terminals are incredibely flexible tools, and you will find this tool very useful for a number of things. However, since they are just a black and empty screen, they give you no clue of what you should do, or what commands are available to you. + +That is ok, for now, you should not worry about that. I will expose many terminal commands in this book, and these commands should be used inside these terminals that comes with your OS. The next sub-sections will show you how to open a terminal in each one of the OS's where Spark is available. Lets begin with Windows. + +### Opening a terminal on Windows + +There are some different approaches to do this, but, the one that I find the most useful, is to open a terminal from inside a folder, using the default File Explorer program of Windows. + +This is very useful, because we normally use terminal commands to affect a set of files that are stored inside a specific folder in our computer. + +As a result, when we open a terminal from inside a folder, using the File Explorer, the terminal opened is already rooted inside the folder where our files are stored. In other words, we already have easy access to the files that we want to affect/use in our command, and we do not have the work to change or adjust directories in this terminal. + +For example, lets suppose that we want to use a terminal command to use a file called `hello.py`, and, that this `hello.py` file is stored inside a folder called `HelloPython`. You can see in @fig-windows-hello-folder, that this folder is in path `C:\Users\pedro\Documents\HelloPython`. So, the first step, is to use the File Explorer of Windows, to open this folder, like in @fig-windows-hello-folder. + +![Opening the `HelloPython` folder in Windows](../Figures/windows-hello-folder.png){#fig-windows-hello-folder fig-align="center"} + + +After you opened this folder, substitute the path to the folder in the search box with the word "cmd", like in @fig-windows-hello-folder2, and them, press Enter in the keyboard. + +![Opening a terminal inside a Windows folder - Part 1](../Figures/windows-hello-folder2.png){#fig-windows-hello-folder2 fig-align="center"} + + +As a result, a new terminal will open. See in @fig-windows-terminal, that this new terminal is already looking to (or is already rooted on) this `HelloPython` folder. This way, we can easily access the files stored inside this folder, like the `hello.py` file. + +![Opening a terminal inside a Windows folder - Part 2](../Figures/windows-terminal.png){#fig-windows-terminal fig-align="center"} + + +### Opening a terminal on Linux + +Is fairly easy to open a terminal on a Linux distribution. Again, is very useful when you open the terminal from inside the folder you are interested in. Because you will have an easier access to all the files that are stored inside this folder. + +To do this in Linux, you use the built-in File Explorer to open the folder where you want to root your terminal. At the moment, I am using an Ubuntu distribution. I just opened the same `HelloPython` folder, with the same `hello.py` file, in the File Explorer of Linux. As shown in @fig-ubuntu-folder: + +![Opening the `HelloPython` folder in Linux](../Figures/ubuntu-folder.png){#fig-ubuntu-folder fig-align="center"} + +After you opened the folder, just click with the right button of your mouse, and select the "Open in Terminal" option, and a new terminal should appear on your screen. See in @fig-ubuntu-folder-terminal, that the new terminal is already looking to the `HelloPython` folder, as we expected. + +![Opening the terminal in Linux](../Figures/ubuntu-folder-terminal.png){#fig-ubuntu-folder-terminal fig-align="center"} + +### Opening a terminal in MacOs + +Unfortunately, I do not have a Mac machine in my possession, so I cannot easily show you how to open a terminal in MacOs. But there a lot of articles available in the internet discussing how to open a terminal in MacOs. For example, there is a article from the support of Apple^[], or this other article from iDownloadBlog^[]. + diff --git a/Chapters/02-python.qmd b/Chapters/02-python.qmd index 89f2b68b..9f1cbd9c 100644 --- a/Chapters/02-python.qmd +++ b/Chapters/02-python.qmd @@ -1,382 +1,382 @@ - - - -# Key concepts of python - - -If you have experience with python, and understands how objects and classes works, you might want to skip this entire chapter. But, if you are new to the language and do not have much experience with it, you might want to stick a little bit, and learn a few key concepts that will help you to understand how the `pyspark` package is organized, and how to work with it. - -## Scripts - -Python programs are written in plain text files that are saved with the `.py` extension. After you save these files, they are usually called "scripts". So a script is just a text file that contains all the commands that make your python program. - -There are many IDEs or programs that help you to write, manage, run and organize this kind of files (like Microsoft Visual Studio Code[^python-1], PyCharm[^python-2], Anaconda[^python-3] and RStudio[^python-4]). Many of these programs are free to use, and, are easy to install. - -But, if you do not have any of them installed, you can just create a new plain text file from the built-in Notepad program of your OS (operational system), and, save it with the `.py` extension. - -[^python-1]: - -[^python-2]: - -[^python-3]: - -[^python-4]: - -## How to run a python program - -As you learn to write your Spark applications with `pyspark`, at some point, you will want to actually execute this `pyspark` program, to see its result. To do so, you need to execute it as a python program. There are many ways to run a python program, but I will show you the more "standard" way. That is to use the `python` command inside the terminal of your OS (you need to have python already installed). - -As an example, lets create a simple "Hello world" program. First, open a new text file then save it somewhere in your machine (with the name `hello.py`). Remember to save the file with the `.py` extension. Then copy and paste the following command into this file: - -```{python} -#| eval: false -print("Hello World!") -``` - -It will be much easier to run this script, if you open your OS's terminal inside the folder where you save the `hello.py` file. After you opened the terminal inside the folder, just run the `python3 hello.py` command. As a result, python will execute `hello.py`, and, the text `Hello World!` should be printed to the terminal: - -``` -Terminal$ python3 hello.py -``` - -``` -Hello World! -``` - -But, if for some reason you could not open the terminal inside the folder, just open a terminal (in any way you can), then, use the `cd` command (stands for "change directory") with the path to the folder where you saved `hello.py`. This way, your terminal will be rooted in this folder. - -For example, if I saved `hello.py` inside my Documents folder, the path to this folder in Windows would be something like this: `"C:\Users\pedro\Documents"`. On the other hand, this path on Linux would be something like `"/usr/pedro/Documents"`. So the command to change to this directory would be: - -``` -# On Windows: -Terminal$ cd "C:\Users\pedro\Documents" -# On Linux: -Terminal$ cd "/usr/pedro/Documents" -``` - -After this `cd` command, you can run the `python hello.py` command in the terminal, and get the exact same result of the previous example. - -There you have it! So every time you need to run your python program (or your `pyspark` program), just open a terminal and run the command `python `. If the terminal is rooted on the folder where you saved your script, you can just use the `python ` command. - - -## Objects - -Although python is a general-purpose language, most of its features are focused on object-oriented programming. Meaning that, python is a programming language focused on creating, managing and modifying objects and classes of objects. - -So, when you work with python, you are basically applying many operations and functions over a set of objects. In essence, an object in python, is a name that refers to a set of data. This data can be anything that you computer can store (or represent). - -Having that in mind, an object is just a name, and this name is a reference, or a key to access some data. To define an object in python, you must use the assignment operator, which is the equal sign (`=`). In the example below, we are defining, or, creating an object called `x`, and it stores the value 10. Therefore, with the name `x` we can access this value of 10. - -```{python} -x = 10 -print(x) -``` - -When we store a value inside an object, we can easily reuse this value in multiple operations or expressions: - -```{python} -# Multiply by 2 -print(x * 2) -``` - -```{python} -# Divide by 3 -print(x / 3) -``` - -```{python} -# Print its class -print(type(x)) -``` - -Remember, an object can store any type of value, or any type of data. For example, it can store a single string, like the object `salutation` below: - -```{python} -salutation = "Hello! My name is Pedro" -``` - -Or, a list of multiple strings: - -```{python} -names = [ - "Anne", "Vanse", "Elliot", - "Carlyle", "Ed", "Memphis" -] - -print(names) -``` - -Or a dict containing the description of a product: - -```{python} -product = { - 'name': 'Coca Cola', - 'volume': '2 litters', - 'price': 2.52, - 'group': 'non-alcoholic drinks', - 'department': 'drinks' -} - -print(product) -``` - -And many other things... - -## Expressions - -Python programs are organized in blocks of expressions (or statements). A python expression is a statement that describes an operation to be performed by the program. For example, the expression below describes the sum between 3 and 5. - -```{python} -3 + 5 -``` - -The expression above is composed of numbers (like 3 and 5) and a operator, more specifically, the sum operator (`+`). But any python expression can include a multitude of different items. It can be composed of functions (like `print()`, `map()` and `str()`), constant strings (like `"Hello World!"`), logical operators (like `!=`, `<`, `>` and `==`), arithmetic operators (like `*`, `/`, `**`, `%`, `-` and `+`), structures (like lists, arrays and dicts) and many other types of commands. - -Below we have a more complex example, that contains the `def` keyword (which starts a function definition; in the example below, this new function being defined is `double()`), many built-in functions (`list()`, `map()` and `print()`), a arithmetic operator (`*`), numbers and a list (initiated by the pair of brackets - `[]`). - -```{python} -def double(x): - return x * 2 - -print(list(map(double, [4, 2, 6, 1]))) -``` - -Python expressions are evaluated in a sequential manner (from top to bottom of your python file). In other words, python runs the first expression in the top of your file, them, goes to the second expression, and runs it, them goes to the third expression, and runs it, and goes on and on in that way, until it hits the end of the file. So, in the example above, python executes the function definition (initiated at `def double(x):`), before it executes the `print()` statement, because the print statement is below the function definition. - -This order of evaluation is commonly referred as "control flow" in many programming languages. Sometimes, this order can be a fundamental part of the python program. Meaning that, sometimes, if we change the order of the expressions in the program, we can produce unexpected results (like an error), or change the results produced by the program. - -As an example, the program below prints the result 4, because the print statement is executed before the expression `x = 40`. - -```{python} -x = 1 - -print(x * 4) - -x = 40 -``` - -But, if we execute the expression `x = 40` before the print statement, we then change the result produced by the program. - -```{python} -x = 1 -x = 40 - -print(x * 4) -``` - -If we go a little further, and, put the print statement as the first expression of the program, we then get a name error. This error warns us that, the object named `x` is not defined (i.e. it does not exist). - -```{python} -#| eval: false -print(x * 4) -``` - -``` -Traceback (most recent call last): - File "", line 1, in -NameError: name 'x' is not defined -``` - -```{python} -x = 1 -x = 40 -``` - -This error occurs, because inside the print statement, we call the name `x`. But, this is the first expression of the program, and at this point of the program, we did not defined a object called `x`. We make this definition, after the print statement, with `x = 1` and `x = 40`. In other words, at this point, python do not know any object called `x`. - -## Packages (or libraries) - -A python package (or a python "library") is basically a set of functions and classes that provides important functionality to solve a specific problem. And `pyspark` is one of these many python packages available. - -Python packages are usually published (that is, made available to the public) through the PyPI archive[^python-5]. If a python package is published in PyPI, then, you can easily install it through the `pip` tool. - -[^python-5]: - -To use a python package, you always need to: 1) have this package installed on your machine; 2) import this package in your python script. If a package is not installed in your machine, you will face a `ModuleNotFoundError` as you try to use it, like in the example below. - -```{python} -#| eval: false -import pandas -``` - -``` -Traceback (most recent call last): - File "", line 1, in -ModuleNotFoundError: No module named 'pandas' -``` - -If your program produce this error, is very likely that you are trying to use a package that is not currently installed on your machine. To install it, you may use the `pip install ` command on the terminal of your OS. - -``` -Terminal$ pip install pandas -``` - -But, if this package is already installed in your machine, then, you can just import it to your script. To do this, you just include an `import` statement at the start of your python file. For example, if I want to use the `DataFrame` function from the `pandas` package: - -```{python} -# Now that I installed the `pandas` package with `pip` -# this `import` statement works without any errors: -import pandas - -df = pandas.DataFrame([ - (1, 3214), (2, 4510), - (1, 9082), (4, 7822) -]) - -print(df) -``` - -Therefore, with `import pandas` I can access any of the functions available in the `pandas` package, by using the dot operator after the name of the package (`pandas.`). However, it can become very annoying to write `pandas.` every time you want to access a function from `pandas`, specially if you use it constantly in your code. - -To make life a little easier, python offers some alternative ways to define this `import` statement. First, you can give an alias to this package that is shorter/easier to write. As an example, nowadays, is virtually a industry standard to import the `pandas` package as `pd`. To do this, you use the `as` keyword in your `import` statement. This way, you can access the `pandas` functionality with `pd.`: - -```{python} -import pandas as pd - -df = pd.DataFrame([ - (1, 3214), (2, 4510), - (1, 9082), (4, 7822) -]) - -print(df) -``` - -In contrast, if you want to make your life even easier and produce a more "clean" code, you can import (from the package) just the functions that you need to use. In this method, you can eliminate the dot operator, and refer directly to the function by its name. To use this method, you include the `from` keyword in your import statement, like this: - -```{python} -from pandas import DataFrame - -df = DataFrame([ - (1, 3214), (2, 4510), - (1, 9082), (4, 7822) -]) - -print(df) -``` - -Just to be clear, you can import multiple functions from the package, by listing them. Or, if you prefer, you can import all components of the package (or module/sub-module) by using the star shortcut (`*`): - -```{python} -# Import `search()`, `match()` and `compile()` functions: -from re import search, match, compile -# Import all functions from the `os` package -from os import * -``` - - -Some packages may be very big, and includes many different functions and classes. As the size of the package becomes bigger and bigger, developers tend to divide this package in many "modules". In other words, the functions and classes of this python package are usually organized in "modules". - -As an example, the `pyspark` package is a fairly large package, that contains many classes and functions. Because of it, the package is organized in a number of modules, such as `sql` (to access Spark SQL), `pandas` (to access the Pandas API of Spark), `ml` (to access Spark MLib). - -To access the functions available in each one of these modules, you use the dot operator between the name of the package and the name of the module. For example, to import all components from the `sql` and `pandas` modules of `pyspark`, you would do this: - -```{python} -#| eval: false -from pyspark.sql import * -from pyspark.pandas import * -``` - -Going further, we can have sub-modules (or modules inside a module) too. As an example, the `sql` module of `pyspark` have the `functions` and `window` sub-modules. To access these sub-modules, you use the dot operator again: - -```{python} -# Importing `functions` and `window` sub-modules: -import pyspark.sql.functions as F -import pyspark.sql.window as W -``` - - - -## Methods versus Functions - -Beginners tend mix these two types of functions in python, but they are not the same. So lets describe the differences between the two. - -Standard python functions, are **functions that we apply over an object**. A classical example, is the `print()` function. You can see in the example below, that we are applying `print()` over the `result` object. - -```{python} -result = 10 + 54 -print(result) -``` - -Other examples of a standard python function would be `map()` and `list()`. See in the example below, that we apply the `map()` function over a set of objects: - -```{python} -words = ['apple', 'star', 'abc'] -lengths = map(len, words) -list(lengths) -``` - - -In contrast, a python method is a function registered inside a python class. In other words, this function **belongs to the class itself**, and cannot be used outside of it. This means that, in order to use a method, you need to have an instance of the class where it is registered. - -For example, the `startswith()` method belongs to the `str` class (this class is used to represent strings in python). So to use this method, we need to have an instance of this class saved in a object that we can access. Note in the example below, that we access the `startswith()` method through the `name` object. This means that, `startswith()` is a function. But, we cannot use it without an object of class `str`, like `name`. - -```{python} -name = "Pedro" -name.startswith("P") -``` - -Note in the example above, that we access any class method in the same way that we would access a sub-module/module of a package. That is, by using the dot operator (`.`). - -So, if we have a class called `people`, and, this class has a method called `location()`, we can use this `location()` method by using the dot operator (`.`) with the name of an object of class `people`. If an object called `x` is an instance of `people` class, then, we can do `x.location()`. - -But if this object `x` is of a different class, like `int`, then we can no longer use the `location()` method, because this method does not belong to the `int` class. For example, if your object is from class `A`, and, you try to use a method of class `B`, you will get an `AttributeError`. - -In the example exposed below, I have an object called `number` of class `int`, and, I try to use the method `startswith()` from `str` class with this object: - -```{python} -#| eval: false -number = 2 -# You can see below that, the `x` object have class `int` -type(number) -# Trying to use a method from `str` class -number.startswith("P") -``` - -``` -AttributeError: 'int' object has no attribute 'startswith' -``` - - - - -## Identifying classes and their methods - -Over the next chapters, you will realize that `pyspark` programs tend to use more methods than standard functions. So most of the functionality of `pyspark` resides in class methods. As a result, the capability of understanding the objects that you have in your python program, and, identifying its classes and methods will be crucial while you are developing and debugging your Spark applications. - -Every existing object in python represents an instance of a class. In other words, every object in python is associated to a given class. You can always identify the class of an object, by applying the `type()` function over this object. In the example below, we can see that, the `name` object is an instance of the `str` class. - -```{python} -name = "Pedro" -type(name) -``` - -If you do not know all the methods that a class have, you can always apply the `dir()` function over this class to get a list of all available methods. For example, lets suppose you wanted to see all methods from the `str` class. To do so, you would do this: - -```{python} -#| eval: false -dir(str) -``` - -``` -['__add__', '__class__', '__contains__', '__delattr__', '__dir__', - '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', - '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', - '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', - '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', - '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', - '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', - 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', - 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', - 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', - 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', - 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', - 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', - 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] -``` - - - - - - - + + + +# Key concepts of python + + +If you have experience with python, and understands how objects and classes works, you might want to skip this entire chapter. But, if you are new to the language and do not have much experience with it, you might want to stick a little bit, and learn a few key concepts that will help you to understand how the `pyspark` package is organized, and how to work with it. + +## Scripts + +Python programs are written in plain text files that are saved with the `.py` extension. After you save these files, they are usually called "scripts". So a script is just a text file that contains all the commands that make your python program. + +There are many IDEs or programs that help you to write, manage, run and organize this kind of files (like Microsoft Visual Studio Code[^python-1], PyCharm[^python-2], Anaconda[^python-3] and RStudio[^python-4]). Many of these programs are free to use, and, are easy to install. + +But, if you do not have any of them installed, you can just create a new plain text file from the built-in Notepad program of your OS (operational system), and, save it with the `.py` extension. + +[^python-1]: + +[^python-2]: + +[^python-3]: + +[^python-4]: + +## How to run a python program + +As you learn to write your Spark applications with `pyspark`, at some point, you will want to actually execute this `pyspark` program, to see its result. To do so, you need to execute it as a python program. There are many ways to run a python program, but I will show you the more "standard" way. That is to use the `python` command inside the terminal of your OS (you need to have python already installed). + +As an example, lets create a simple "Hello world" program. First, open a new text file then save it somewhere in your machine (with the name `hello.py`). Remember to save the file with the `.py` extension. Then copy and paste the following command into this file: + +```{python} +#| eval: false +print("Hello World!") +``` + +It will be much easier to run this script, if you open your OS's terminal inside the folder where you save the `hello.py` file. After you opened the terminal inside the folder, just run the `python3 hello.py` command. As a result, python will execute `hello.py`, and, the text `Hello World!` should be printed to the terminal: + +``` +Terminal$ python3 hello.py +``` + +``` +Hello World! +``` + +But, if for some reason you could not open the terminal inside the folder, just open a terminal (in any way you can), then, use the `cd` command (stands for "change directory") with the path to the folder where you saved `hello.py`. This way, your terminal will be rooted in this folder. + +For example, if I saved `hello.py` inside my Documents folder, the path to this folder in Windows would be something like this: `"C:\Users\pedro\Documents"`. On the other hand, this path on Linux would be something like `"/usr/pedro/Documents"`. So the command to change to this directory would be: + +``` +# On Windows: +Terminal$ cd "C:\Users\pedro\Documents" +# On Linux: +Terminal$ cd "/usr/pedro/Documents" +``` + +After this `cd` command, you can run the `python hello.py` command in the terminal, and get the exact same result of the previous example. + +There you have it! So every time you need to run your python program (or your `pyspark` program), just open a terminal and run the command `python `. If the terminal is rooted on the folder where you saved your script, you can just use the `python ` command. + + +## Objects + +Although python is a general-purpose language, most of its features are focused on object-oriented programming. Meaning that, python is a programming language focused on creating, managing and modifying objects and classes of objects. + +So, when you work with python, you are basically applying many operations and functions over a set of objects. In essence, an object in python, is a name that refers to a set of data. This data can be anything that you computer can store (or represent). + +Having that in mind, an object is just a name, and this name is a reference, or a key to access some data. To define an object in python, you must use the assignment operator, which is the equal sign (`=`). In the example below, we are defining, or, creating an object called `x`, and it stores the value 10. Therefore, with the name `x` we can access this value of 10. + +```{python} +x = 10 +print(x) +``` + +When we store a value inside an object, we can easily reuse this value in multiple operations or expressions: + +```{python} +# Multiply by 2 +print(x * 2) +``` + +```{python} +# Divide by 3 +print(x / 3) +``` + +```{python} +# Print its class +print(type(x)) +``` + +Remember, an object can store any type of value, or any type of data. For example, it can store a single string, like the object `salutation` below: + +```{python} +salutation = "Hello! My name is Pedro" +``` + +Or, a list of multiple strings: + +```{python} +names = [ + "Anne", "Vanse", "Elliot", + "Carlyle", "Ed", "Memphis" +] + +print(names) +``` + +Or a dict containing the description of a product: + +```{python} +product = { + 'name': 'Coca Cola', + 'volume': '2 litters', + 'price': 2.52, + 'group': 'non-alcoholic drinks', + 'department': 'drinks' +} + +print(product) +``` + +And many other things... + +## Expressions + +Python programs are organized in blocks of expressions (or statements). A python expression is a statement that describes an operation to be performed by the program. For example, the expression below describes the sum between 3 and 5. + +```{python} +3 + 5 +``` + +The expression above is composed of numbers (like 3 and 5) and a operator, more specifically, the sum operator (`+`). But any python expression can include a multitude of different items. It can be composed of functions (like `print()`, `map()` and `str()`), constant strings (like `"Hello World!"`), logical operators (like `!=`, `<`, `>` and `==`), arithmetic operators (like `*`, `/`, `**`, `%`, `-` and `+`), structures (like lists, arrays and dicts) and many other types of commands. + +Below we have a more complex example, that contains the `def` keyword (which starts a function definition; in the example below, this new function being defined is `double()`), many built-in functions (`list()`, `map()` and `print()`), a arithmetic operator (`*`), numbers and a list (initiated by the pair of brackets - `[]`). + +```{python} +def double(x): + return x * 2 + +print(list(map(double, [4, 2, 6, 1]))) +``` + +Python expressions are evaluated in a sequential manner (from top to bottom of your python file). In other words, python runs the first expression in the top of your file, them, goes to the second expression, and runs it, them goes to the third expression, and runs it, and goes on and on in that way, until it hits the end of the file. So, in the example above, python executes the function definition (initiated at `def double(x):`), before it executes the `print()` statement, because the print statement is below the function definition. + +This order of evaluation is commonly referred as "control flow" in many programming languages. Sometimes, this order can be a fundamental part of the python program. Meaning that, sometimes, if we change the order of the expressions in the program, we can produce unexpected results (like an error), or change the results produced by the program. + +As an example, the program below prints the result 4, because the print statement is executed before the expression `x = 40`. + +```{python} +x = 1 + +print(x * 4) + +x = 40 +``` + +But, if we execute the expression `x = 40` before the print statement, we then change the result produced by the program. + +```{python} +x = 1 +x = 40 + +print(x * 4) +``` + +If we go a little further, and, put the print statement as the first expression of the program, we then get a name error. This error warns us that, the object named `x` is not defined (i.e. it does not exist). + +```{python} +#| eval: false +print(x * 4) +``` + +``` +Traceback (most recent call last): + File "", line 1, in +NameError: name 'x' is not defined +``` + +```{python} +x = 1 +x = 40 +``` + +This error occurs, because inside the print statement, we call the name `x`. But, this is the first expression of the program, and at this point of the program, we did not defined a object called `x`. We make this definition, after the print statement, with `x = 1` and `x = 40`. In other words, at this point, python do not know any object called `x`. + +## Packages (or libraries) + +A python package (or a python "library") is basically a set of functions and classes that provides important functionality to solve a specific problem. And `pyspark` is one of these many python packages available. + +Python packages are usually published (that is, made available to the public) through the PyPI archive[^python-5]. If a python package is published in PyPI, then, you can easily install it through the `pip` tool. + +[^python-5]: + +To use a python package, you always need to: 1) have this package installed on your machine; 2) import this package in your python script. If a package is not installed in your machine, you will face a `ModuleNotFoundError` as you try to use it, like in the example below. + +```{python} +#| eval: false +import pandas +``` + +``` +Traceback (most recent call last): + File "", line 1, in +ModuleNotFoundError: No module named 'pandas' +``` + +If your program produce this error, is very likely that you are trying to use a package that is not currently installed on your machine. To install it, you may use the `pip install ` command on the terminal of your OS. + +``` +Terminal$ pip install pandas +``` + +But, if this package is already installed in your machine, then, you can just import it to your script. To do this, you just include an `import` statement at the start of your python file. For example, if I want to use the `DataFrame` function from the `pandas` package: + +```{python} +# Now that I installed the `pandas` package with `pip` +# this `import` statement works without any errors: +import pandas + +df = pandas.DataFrame([ + (1, 3214), (2, 4510), + (1, 9082), (4, 7822) +]) + +print(df) +``` + +Therefore, with `import pandas` I can access any of the functions available in the `pandas` package, by using the dot operator after the name of the package (`pandas.`). However, it can become very annoying to write `pandas.` every time you want to access a function from `pandas`, specially if you use it constantly in your code. + +To make life a little easier, python offers some alternative ways to define this `import` statement. First, you can give an alias to this package that is shorter/easier to write. As an example, nowadays, is virtually a industry standard to import the `pandas` package as `pd`. To do this, you use the `as` keyword in your `import` statement. This way, you can access the `pandas` functionality with `pd.`: + +```{python} +import pandas as pd + +df = pd.DataFrame([ + (1, 3214), (2, 4510), + (1, 9082), (4, 7822) +]) + +print(df) +``` + +In contrast, if you want to make your life even easier and produce a more "clean" code, you can import (from the package) just the functions that you need to use. In this method, you can eliminate the dot operator, and refer directly to the function by its name. To use this method, you include the `from` keyword in your import statement, like this: + +```{python} +from pandas import DataFrame + +df = DataFrame([ + (1, 3214), (2, 4510), + (1, 9082), (4, 7822) +]) + +print(df) +``` + +Just to be clear, you can import multiple functions from the package, by listing them. Or, if you prefer, you can import all components of the package (or module/sub-module) by using the star shortcut (`*`): + +```{python} +# Import `search()`, `match()` and `compile()` functions: +from re import search, match, compile +# Import all functions from the `os` package +from os import * +``` + + +Some packages may be very big, and includes many different functions and classes. As the size of the package becomes bigger and bigger, developers tend to divide this package in many "modules". In other words, the functions and classes of this python package are usually organized in "modules". + +As an example, the `pyspark` package is a fairly large package, that contains many classes and functions. Because of it, the package is organized in a number of modules, such as `sql` (to access Spark SQL), `pandas` (to access the Pandas API of Spark), `ml` (to access Spark MLib). + +To access the functions available in each one of these modules, you use the dot operator between the name of the package and the name of the module. For example, to import all components from the `sql` and `pandas` modules of `pyspark`, you would do this: + +```{python} +#| eval: false +from pyspark.sql import * +from pyspark.pandas import * +``` + +Going further, we can have sub-modules (or modules inside a module) too. As an example, the `sql` module of `pyspark` have the `functions` and `window` sub-modules. To access these sub-modules, you use the dot operator again: + +```{python} +# Importing `functions` and `window` sub-modules: +import pyspark.sql.functions as F +import pyspark.sql.window as W +``` + + + +## Methods versus Functions + +Beginners tend mix these two types of functions in python, but they are not the same. So lets describe the differences between the two. + +Standard python functions, are **functions that we apply over an object**. A classical example, is the `print()` function. You can see in the example below, that we are applying `print()` over the `result` object. + +```{python} +result = 10 + 54 +print(result) +``` + +Other examples of a standard python function would be `map()` and `list()`. See in the example below, that we apply the `map()` function over a set of objects: + +```{python} +words = ['apple', 'star', 'abc'] +lengths = map(len, words) +list(lengths) +``` + + +In contrast, a python method is a function registered inside a python class. In other words, this function **belongs to the class itself**, and cannot be used outside of it. This means that, in order to use a method, you need to have an instance of the class where it is registered. + +For example, the `startswith()` method belongs to the `str` class (this class is used to represent strings in python). So to use this method, we need to have an instance of this class saved in a object that we can access. Note in the example below, that we access the `startswith()` method through the `name` object. This means that, `startswith()` is a function. But, we cannot use it without an object of class `str`, like `name`. + +```{python} +name = "Pedro" +name.startswith("P") +``` + +Note in the example above, that we access any class method in the same way that we would access a sub-module/module of a package. That is, by using the dot operator (`.`). + +So, if we have a class called `people`, and, this class has a method called `location()`, we can use this `location()` method by using the dot operator (`.`) with the name of an object of class `people`. If an object called `x` is an instance of `people` class, then, we can do `x.location()`. + +But if this object `x` is of a different class, like `int`, then we can no longer use the `location()` method, because this method does not belong to the `int` class. For example, if your object is from class `A`, and, you try to use a method of class `B`, you will get an `AttributeError`. + +In the example exposed below, I have an object called `number` of class `int`, and, I try to use the method `startswith()` from `str` class with this object: + +```{python} +#| eval: false +number = 2 +# You can see below that, the `x` object have class `int` +type(number) +# Trying to use a method from `str` class +number.startswith("P") +``` + +``` +AttributeError: 'int' object has no attribute 'startswith' +``` + + + + +## Identifying classes and their methods + +Over the next chapters, you will realize that `pyspark` programs tend to use more methods than standard functions. So most of the functionality of `pyspark` resides in class methods. As a result, the capability of understanding the objects that you have in your python program, and, identifying its classes and methods will be crucial while you are developing and debugging your Spark applications. + +Every existing object in python represents an instance of a class. In other words, every object in python is associated to a given class. You can always identify the class of an object, by applying the `type()` function over this object. In the example below, we can see that, the `name` object is an instance of the `str` class. + +```{python} +name = "Pedro" +type(name) +``` + +If you do not know all the methods that a class have, you can always apply the `dir()` function over this class to get a list of all available methods. For example, lets suppose you wanted to see all methods from the `str` class. To do so, you would do this: + +```{python} +#| eval: false +dir(str) +``` + +``` +['__add__', '__class__', '__contains__', '__delattr__', '__dir__', + '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', + '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', + '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', + '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', + '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', + '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', + 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', + 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', + 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', + 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', + 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', + 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', + 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] +``` + + + + + + + diff --git a/Chapters/03-spark.qmd b/Chapters/03-spark.qmd index 5b697898..1c01ee8e 100644 --- a/Chapters/03-spark.qmd +++ b/Chapters/03-spark.qmd @@ -1,251 +1,251 @@ -# Introducing Apache Spark {#sec-introd-spark} - -```{r} -#| include: false -source("./../Scripts/terminal-engine.R", encoding = "UTF-8") -``` - - -```{python} -#| include: false -# To execute the next chunks with success, we need to start a Spark Session -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - - - -In essence, `pyspark` is an API to Apache Spark (or simply Spark). In other words, with `pyspark` we can build Spark applications using the python language. So, by learning a little more about Spark, you will understand a lot more about `pyspark`. - - - - - - - -## What is Spark? - -Spark is a multi-language engine for large-scale data processing that supports both single-node machines and clusters of machines [@sparkdoc]. Nowadays, Spark became the de facto standard for structure and manage big data applications. - -It has a number of features that its predecessors did not have, like the capacity for in-memory processing and stream processing [@karau2015]. But, the most important feature of all, is that Spark is an **unified platform** for big data processing [@chambers2018]. - -This means that Spark comes with multiple built-in libraries and tools that deals with different aspects of the work with big data. It has a built-in SQL engine[^spark-3-sql] for performing large-scale data processing; a complete library for scalable machine learning (`MLib`[^spark-3-mlib]); a stream processing engine[^spark-3-stream] for streaming analytics; and much more; - -[^spark-3-sql]: - -[^spark-3-mlib]: - -[^spark-3-stream]: - -In general, big companies have many different data necessities, and as a result, the engineers and analysts may have to combine and integrate many tools and techniques together, so they can build many different data pipelines to fulfill these necessities. But this approach can create a very serious dependency problem, which imposes a great barrier to support this workflow. This is one of the big reasons why Spark got so successful. It eliminates big part of this problem, by already including almost everything that you might need to use. - -> Spark is designed to cover a wide range of workloads that previously required separate distributed systems ... By supporting these workloads in the same engine, Spark makes it easy and inexpensive to combine different processing types, which is often necessary in production data analysis pipelines. In addition, it reduces the management burden of maintaining separate tools [@karau2015]. - -## Spark application - -Your personal computer can do a lot of things, but, it cannot efficiently deal with huge amounts of data. For this situation, we need several machines working together, adding up their resources to deal with the volume or complexity of the data. Spark is the framework that coordinates the computations across this set of machines [@chambers2018]. Because of this, a relevant part of Spark's structure is deeply connected to distributed computing models. - -You probably do not have a cluster of machines at home. So, while following the examples in this book, you will be running Spark on a single machine (i.e. single node mode). But lets just forget about this detail for a moment. - -In every Spark application, you always have a single machine behaving as the driver node, and multiple machines behaving as the worker nodes. The driver node is responsible for managing the Spark application, i.e. asking for resources, distributing tasks to the workers, collecting and compiling the results, .... The worker nodes are responsible for executing the tasks that are assigned to them, and they need to send the results of these tasks back to the driver node. - -Every Spark application is distributed into two different and independent processes: 1) a driver process; 2) and a set of executor processes [@chambers2018]. The driver process, or, the driver program, is where your application starts, and it is executed by the driver node. This driver program is responsible for: 1) maintaining information about your Spark Application; 2) responding to a user's program or input; 3) and analyzing, distributing, and scheduling work across the executors [@chambers2018]. - -Every time a Spark application starts, the driver process has to communicate with the cluster manager, to acquire workers to perform the necessary tasks. In other words, the cluster manager decides if Spark can use some of the resources (i.e. some of the machines) of the cluster. If the cluster manager allow Spark to use the nodes it needs, the driver program will break the application into many small tasks, and will assign these tasks to the worker nodes. - -The executor processes, are the processes that take place within each one of the worker nodes. Each executor process is composed of a set of tasks, and the worker node is responsible for performing and executing these tasks that were assigned to him, by the driver program. After executing these tasks, the worker node will send the results back to the driver node (or the driver program). If they need, the worker nodes can communicate with each other, while performing its tasks. - -This structure is represented in @fig-spark-application: - -![Spark application structure on a cluster of computers](../Figures/spark-application.png){#fig-spark-application fig-align="center"} - -When you run Spark on a cluster of computers, you write the code of your Spark application (i.e. your `pyspark` code) on your (single) local computer, and then, submit this code to the driver node. After that, the driver node takes care of the rest, by starting your application, creating your Spark Session, asking for new worker nodes, sending the tasks to be performed, collecting and compiling the results and giving back these results to you. - -However, when you run Spark on your (single) local computer, the process is very similar. But, instead of submitting your code to another computer (which is the driver node), you will submit to your own local computer. In other words, when Spark is running on single-node mode, your computer becomes the driver and the worker node at the same time. - - -## Spark application versus `pyspark` application - -The `pyspark` package is just a tool to write Spark applications using the python programming language. This means, that every `pyspark` application is a Spark application written in python. - -With this conception in mind, you can understand that a `pyspark` application is a description of a Spark application. When we compile (or execute) our python program, this description is translated into a raw Spark application that will be executed by Spark. - -To write a `pyspark` application, you write a python script that uses the `pyspark` library. When you execute this python script with the python interpreter, the application will be automatically converted to Spark code, and will be sent to Spark to be executed across the cluster; - - -## Core parts of a `pyspark` program - -In this section, I want to point out the core parts that composes every `pyspark` program. This means that every `pyspark` program that you write will have these "core parts", which are: - -1) importing the `pyspark` package (or modules); - -2) starting your Spark Session; - -3) defining a set of transformations and actions over Spark DataFrames; - - -### Importing the `pyspark` package (or modules) - -Spark comes with a lot of functionality installed. But, in order to use it in your `pyspark` program, you have to import most of these functionalities to your session. This means that you have to import specific packages (or "modules") of `pyspark` to your python session. - -For example, most of the functions used to define our transformations and aggregations in Spark DataFrames, comes from the `pyspark.sql.functions` module. - -That is why we usually start our python scripts by importing functions from this module, like this: - -```{python} -from pyspark.sql.functions import sum, col -sum_expr = sum(col('Value')) -``` - -Or, importing the entire module with the `import` keyword, like this: - -```{python} -import pyspark.sql.functions as F -sum_expr = F.sum(F.col('Value')) -``` - - -### Starting your Spark Session - -Every Spark application starts with a Spark Session. Basically, the Spark Session is the entry point to your application. This means that, in every `pyspark` program that you write, **you should always start by defining your Spark Session**. We do this, by using the `getOrCreate()` method from `pyspark.sql.SparkSession.builder` module. - -Just store the result of this method in any python object. Is very common to name this object as `spark`, like in the example below. This way, you can access all the information and methods of Spark from this `spark` object. - -```{python} -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -``` - - -### Defining a set of transformations and actions - -Every `pyspark` program is composed by a set of transformations and actions over a set of Spark DataFrames. - -I will explain Spark DataFrames in more deth on the @sec-dataframes-chapter. For now just understand that they are the basic data sctructure that feed all `pyspark` programs. In other words, on every `pyspark` program we are transforming multiple Spark DataFrames to get the result we want. - -As an example, in the script below we begin with the Spark DataFrame stored in the object `students`, and, apply multiple transformations over it to build the `ar_department` DataFrame. Lastly, we apply the `.show()` action over the `ar_department` DataFrame: - -```{python} -#| eval: false -from pyspark.sql.functions import col -# Apply some transformations over -# the `students` DataFrame: -ar_department = students\ - .filter(col('Age') > 22)\ - .withColumn('IsArDepartment', col('Department') == 'AR')\ - .orderBy(col('Age').desc()) - - -# Apply the `.show()` action -# over the `ar_department` DataFrame: -ar_department.show() -``` - - - -## Building your first Spark application - -To demonstrate what a `pyspark` program looks like, lets write and run our first example of a Spark application. This Spark application will build a simple table of 1 column that contains 5 numbers, and then, it will return a simple python list containing this five numbers as a result. - -### Writing the code - -First, create a new blank text file in your computer, and save it somewhere with the name `spark-example.py`. Do not forget to put the `.py` extension in the name. This program we are writing together is a python program, and should be treated as such. With the `.py` extension in the name file, you are stating this fact quite clearly to your computer. - -After you created and saved the python script (i.e. the text file with the `.py` extension), you can start writing your `pyspark` program. As we noted in the previous section, you should always start your `pyspark` program by defining your Spark Session, with this code: - -```{python} -#| eval: false -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -``` - -After you defined your Spark Session, and saved it in an object called `spark`, you can now access all Spark's functionality through this `spark` object. - -To create our first Spark table we use the `range()` method from the `spark` object. The `range()` method works similarly as the standard python function called `range()`. It basically creates a sequence of numbers, from 0 to $n - 1$. However, this `range()` method from `spark` stores this sequence of numbers as rows in a Spark table (or a Spark DataFrame): - -```{python} -#| eval: false -table = spark.range(5) -``` - -After this step, we want to collect all the rows of the resulting table into a python list. And to do that, we use the `collect()` method from the Spark table: - -```{python} -#| eval: false -result = table.collect() -print(result) -``` - -So, the entire program is composed of these three parts (or sections) of code. If you need it, the entire program is reproduced below. You can copy and paste all of this code to your python script, and then, save it: - -```{python} -#| eval: false -# The entire program: -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() - -table = spark.range(5) -result = table.collect() -print(result) -``` - -### Executing the code - -Now that you have written your first Spark application with `pyspark`, you want to execute this application and see its results. Yet, to run a `pyspark` program, remember that you need to have the necessary software installed on your machine. In case you do not have Apache Spark installed yet, I personally recommend you to read the [articles from PhoenixNAP on how to install Apache Spark](https://phoenixnap.com/kb/install-spark-on-ubuntu)[^phoenix-nap]. - -[^phoenix-nap]: . - -Anyway, to execute this `pyspark` that you wrote, you need send this script to the python interpreter, and to do this you need to: 1) open a terminal inside the folder where you python script is stored; and, 2) use the python command from the terminal with the name of your python script. - -In my current situation, I running Spark on a Ubuntu distribution, and, I saved the `spark-example.py` script inside a folder called `SparkExample`. This means that, I need to open a terminal that is rooted inside this `SparkExample` folder. - -You probably have saved your `spark-example.py` file in a different folder of your computer. This means that you need to open the terminal from a different folder. - -After I opened a terminal rooted inside the `SparkExample` folder. I just use the `python3` command to access the python interpreter, and, give the name of the python script that I want to execute. In this case, the `spark-example.py` file. As a result, our first `pyspark` program will be executed: - -``` -Terminal$ python3 spark-example.py -``` - -``` -[Row(id=0), Row(id=1), Row(id=2), Row(id=3), Row(id=4)] -``` - - -You can see in the above result, that this Spark application produces a sequence of `Row` objects, inside a Python list. Each row object contains a number from 0 to 4. - -Congratulations! You have just run your first Spark application using `pyspark`! - - -## Overview of `pyspark` - -Before we continue, I want to give you a very brief overview of the main parts of `pyspark` that are the most useful and most important to know of. - -### Main python modules - -The main python modules that exists in `pyspark` are: - -- `pyspark.sql.SparkSession`: the `SparkSession` class that defines your Spark Session, or, the entry point to your Spark application; -- `pyspark.sql.dataframe`: module that defines the `DataFrame` class; -- `pyspark.sql.column`: module that defines the `Column` class; -- `pyspark.sql.types`: module that contains all data types of Spark; -- `pyspark.sq.functions`: module that contains all of the main Spark functions that we use in transformations; -- `pyspark.sql.window`: module that defines the `Window` class, which is responsible for defining windows in a Spark DataFrame; - -### Main python classes - -The main python classes that exists in `pyspark` are: - -- `DataFrame`: represents a Spark DataFrame, and it is the main data structure in `pyspark`. In essence, they represent a collection of datasets into named columns; - -- `Column`: represents a column in a Spark DataFrame; - -- `GroupedData`: represents a grouped Spark DataFrame (result of `DataFrame.groupby()`); - -- `Window`: describes a window in a Spark DataFrame; - -- `DataFrameReader` and `DataFrameWriter`: classes responsible for reading data from a data source into a Spark DataFrame, and writing data from a Spark DataFrame into a data source; - +# Introducing Apache Spark {#sec-introd-spark} + +```{r} +#| include: false +source("./../Scripts/terminal-engine.R", encoding = "UTF-8") +``` + + +```{python} +#| include: false +# To execute the next chunks with success, we need to start a Spark Session +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +``` + + + +In essence, `pyspark` is an API to Apache Spark (or simply Spark). In other words, with `pyspark` we can build Spark applications using the python language. So, by learning a little more about Spark, you will understand a lot more about `pyspark`. + + + + + + + +## What is Spark? + +Spark is a multi-language engine for large-scale data processing that supports both single-node machines and clusters of machines [@sparkdoc]. Nowadays, Spark became the de facto standard for structure and manage big data applications. + +It has a number of features that its predecessors did not have, like the capacity for in-memory processing and stream processing [@karau2015]. But, the most important feature of all, is that Spark is an **unified platform** for big data processing [@chambers2018]. + +This means that Spark comes with multiple built-in libraries and tools that deals with different aspects of the work with big data. It has a built-in SQL engine[^spark-3-sql] for performing large-scale data processing; a complete library for scalable machine learning (`MLib`[^spark-3-mlib]); a stream processing engine[^spark-3-stream] for streaming analytics; and much more; + +[^spark-3-sql]: + +[^spark-3-mlib]: + +[^spark-3-stream]: + +In general, big companies have many different data necessities, and as a result, the engineers and analysts may have to combine and integrate many tools and techniques together, so they can build many different data pipelines to fulfill these necessities. But this approach can create a very serious dependency problem, which imposes a great barrier to support this workflow. This is one of the big reasons why Spark got so successful. It eliminates big part of this problem, by already including almost everything that you might need to use. + +> Spark is designed to cover a wide range of workloads that previously required separate distributed systems ... By supporting these workloads in the same engine, Spark makes it easy and inexpensive to combine different processing types, which is often necessary in production data analysis pipelines. In addition, it reduces the management burden of maintaining separate tools [@karau2015]. + +## Spark application + +Your personal computer can do a lot of things, but, it cannot efficiently deal with huge amounts of data. For this situation, we need several machines working together, adding up their resources to deal with the volume or complexity of the data. Spark is the framework that coordinates the computations across this set of machines [@chambers2018]. Because of this, a relevant part of Spark's structure is deeply connected to distributed computing models. + +You probably do not have a cluster of machines at home. So, while following the examples in this book, you will be running Spark on a single machine (i.e. single node mode). But lets just forget about this detail for a moment. + +In every Spark application, you always have a single machine behaving as the driver node, and multiple machines behaving as the worker nodes. The driver node is responsible for managing the Spark application, i.e. asking for resources, distributing tasks to the workers, collecting and compiling the results, .... The worker nodes are responsible for executing the tasks that are assigned to them, and they need to send the results of these tasks back to the driver node. + +Every Spark application is distributed into two different and independent processes: 1) a driver process; 2) and a set of executor processes [@chambers2018]. The driver process, or, the driver program, is where your application starts, and it is executed by the driver node. This driver program is responsible for: 1) maintaining information about your Spark Application; 2) responding to a user's program or input; 3) and analyzing, distributing, and scheduling work across the executors [@chambers2018]. + +Every time a Spark application starts, the driver process has to communicate with the cluster manager, to acquire workers to perform the necessary tasks. In other words, the cluster manager decides if Spark can use some of the resources (i.e. some of the machines) of the cluster. If the cluster manager allow Spark to use the nodes it needs, the driver program will break the application into many small tasks, and will assign these tasks to the worker nodes. + +The executor processes, are the processes that take place within each one of the worker nodes. Each executor process is composed of a set of tasks, and the worker node is responsible for performing and executing these tasks that were assigned to him, by the driver program. After executing these tasks, the worker node will send the results back to the driver node (or the driver program). If they need, the worker nodes can communicate with each other, while performing its tasks. + +This structure is represented in @fig-spark-application: + +![Spark application structure on a cluster of computers](../Figures/spark-application.png){#fig-spark-application fig-align="center"} + +When you run Spark on a cluster of computers, you write the code of your Spark application (i.e. your `pyspark` code) on your (single) local computer, and then, submit this code to the driver node. After that, the driver node takes care of the rest, by starting your application, creating your Spark Session, asking for new worker nodes, sending the tasks to be performed, collecting and compiling the results and giving back these results to you. + +However, when you run Spark on your (single) local computer, the process is very similar. But, instead of submitting your code to another computer (which is the driver node), you will submit to your own local computer. In other words, when Spark is running on single-node mode, your computer becomes the driver and the worker node at the same time. + + +## Spark application versus `pyspark` application + +The `pyspark` package is just a tool to write Spark applications using the python programming language. This means, that every `pyspark` application is a Spark application written in python. + +With this conception in mind, you can understand that a `pyspark` application is a description of a Spark application. When we compile (or execute) our python program, this description is translated into a raw Spark application that will be executed by Spark. + +To write a `pyspark` application, you write a python script that uses the `pyspark` library. When you execute this python script with the python interpreter, the application will be automatically converted to Spark code, and will be sent to Spark to be executed across the cluster; + + +## Core parts of a `pyspark` program + +In this section, I want to point out the core parts that composes every `pyspark` program. This means that every `pyspark` program that you write will have these "core parts", which are: + +1) importing the `pyspark` package (or modules); + +2) starting your Spark Session; + +3) defining a set of transformations and actions over Spark DataFrames; + + +### Importing the `pyspark` package (or modules) + +Spark comes with a lot of functionality installed. But, in order to use it in your `pyspark` program, you have to import most of these functionalities to your session. This means that you have to import specific packages (or "modules") of `pyspark` to your python session. + +For example, most of the functions used to define our transformations and aggregations in Spark DataFrames, comes from the `pyspark.sql.functions` module. + +That is why we usually start our python scripts by importing functions from this module, like this: + +```{python} +from pyspark.sql.functions import sum, col +sum_expr = sum(col('Value')) +``` + +Or, importing the entire module with the `import` keyword, like this: + +```{python} +import pyspark.sql.functions as F +sum_expr = F.sum(F.col('Value')) +``` + + +### Starting your Spark Session + +Every Spark application starts with a Spark Session. Basically, the Spark Session is the entry point to your application. This means that, in every `pyspark` program that you write, **you should always start by defining your Spark Session**. We do this, by using the `getOrCreate()` method from `pyspark.sql.SparkSession.builder` module. + +Just store the result of this method in any python object. Is very common to name this object as `spark`, like in the example below. This way, you can access all the information and methods of Spark from this `spark` object. + +```{python} +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +``` + + +### Defining a set of transformations and actions + +Every `pyspark` program is composed by a set of transformations and actions over a set of Spark DataFrames. + +I will explain Spark DataFrames in more deth on the @sec-dataframes-chapter. For now just understand that they are the basic data sctructure that feed all `pyspark` programs. In other words, on every `pyspark` program we are transforming multiple Spark DataFrames to get the result we want. + +As an example, in the script below we begin with the Spark DataFrame stored in the object `students`, and, apply multiple transformations over it to build the `ar_department` DataFrame. Lastly, we apply the `.show()` action over the `ar_department` DataFrame: + +```{python} +#| eval: false +from pyspark.sql.functions import col +# Apply some transformations over +# the `students` DataFrame: +ar_department = students\ + .filter(col('Age') > 22)\ + .withColumn('IsArDepartment', col('Department') == 'AR')\ + .orderBy(col('Age').desc()) + + +# Apply the `.show()` action +# over the `ar_department` DataFrame: +ar_department.show() +``` + + + +## Building your first Spark application + +To demonstrate what a `pyspark` program looks like, lets write and run our first example of a Spark application. This Spark application will build a simple table of 1 column that contains 5 numbers, and then, it will return a simple python list containing this five numbers as a result. + +### Writing the code + +First, create a new blank text file in your computer, and save it somewhere with the name `spark-example.py`. Do not forget to put the `.py` extension in the name. This program we are writing together is a python program, and should be treated as such. With the `.py` extension in the name file, you are stating this fact quite clearly to your computer. + +After you created and saved the python script (i.e. the text file with the `.py` extension), you can start writing your `pyspark` program. As we noted in the previous section, you should always start your `pyspark` program by defining your Spark Session, with this code: + +```{python} +#| eval: false +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +``` + +After you defined your Spark Session, and saved it in an object called `spark`, you can now access all Spark's functionality through this `spark` object. + +To create our first Spark table we use the `range()` method from the `spark` object. The `range()` method works similarly as the standard python function called `range()`. It basically creates a sequence of numbers, from 0 to $n - 1$. However, this `range()` method from `spark` stores this sequence of numbers as rows in a Spark table (or a Spark DataFrame): + +```{python} +#| eval: false +table = spark.range(5) +``` + +After this step, we want to collect all the rows of the resulting table into a python list. And to do that, we use the `collect()` method from the Spark table: + +```{python} +#| eval: false +result = table.collect() +print(result) +``` + +So, the entire program is composed of these three parts (or sections) of code. If you need it, the entire program is reproduced below. You can copy and paste all of this code to your python script, and then, save it: + +```{python} +#| eval: false +# The entire program: +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() + +table = spark.range(5) +result = table.collect() +print(result) +``` + +### Executing the code + +Now that you have written your first Spark application with `pyspark`, you want to execute this application and see its results. Yet, to run a `pyspark` program, remember that you need to have the necessary software installed on your machine. In case you do not have Apache Spark installed yet, I personally recommend you to read the [articles from PhoenixNAP on how to install Apache Spark](https://phoenixnap.com/kb/install-spark-on-ubuntu)[^phoenix-nap]. + +[^phoenix-nap]: . + +Anyway, to execute this `pyspark` that you wrote, you need send this script to the python interpreter, and to do this you need to: 1) open a terminal inside the folder where you python script is stored; and, 2) use the python command from the terminal with the name of your python script. + +In my current situation, I running Spark on a Ubuntu distribution, and, I saved the `spark-example.py` script inside a folder called `SparkExample`. This means that, I need to open a terminal that is rooted inside this `SparkExample` folder. + +You probably have saved your `spark-example.py` file in a different folder of your computer. This means that you need to open the terminal from a different folder. + +After I opened a terminal rooted inside the `SparkExample` folder. I just use the `python3` command to access the python interpreter, and, give the name of the python script that I want to execute. In this case, the `spark-example.py` file. As a result, our first `pyspark` program will be executed: + +``` +Terminal$ python3 spark-example.py +``` + +``` +[Row(id=0), Row(id=1), Row(id=2), Row(id=3), Row(id=4)] +``` + + +You can see in the above result, that this Spark application produces a sequence of `Row` objects, inside a Python list. Each row object contains a number from 0 to 4. + +Congratulations! You have just run your first Spark application using `pyspark`! + + +## Overview of `pyspark` + +Before we continue, I want to give you a very brief overview of the main parts of `pyspark` that are the most useful and most important to know of. + +### Main python modules + +The main python modules that exists in `pyspark` are: + +- `pyspark.sql.SparkSession`: the `SparkSession` class that defines your Spark Session, or, the entry point to your Spark application; +- `pyspark.sql.dataframe`: module that defines the `DataFrame` class; +- `pyspark.sql.column`: module that defines the `Column` class; +- `pyspark.sql.types`: module that contains all data types of Spark; +- `pyspark.sq.functions`: module that contains all of the main Spark functions that we use in transformations; +- `pyspark.sql.window`: module that defines the `Window` class, which is responsible for defining windows in a Spark DataFrame; + +### Main python classes + +The main python classes that exists in `pyspark` are: + +- `DataFrame`: represents a Spark DataFrame, and it is the main data structure in `pyspark`. In essence, they represent a collection of datasets into named columns; + +- `Column`: represents a column in a Spark DataFrame; + +- `GroupedData`: represents a grouped Spark DataFrame (result of `DataFrame.groupby()`); + +- `Window`: describes a window in a Spark DataFrame; + +- `DataFrameReader` and `DataFrameWriter`: classes responsible for reading data from a data source into a Spark DataFrame, and writing data from a Spark DataFrame into a data source; + - `DataFrameNaFunctions`: class that stores all main methods for dealing with null values (i.e. missing data); \ No newline at end of file diff --git a/Chapters/04-columns.qmd b/Chapters/04-columns.qmd index 622ef68c..8730d289 100644 --- a/Chapters/04-columns.qmd +++ b/Chapters/04-columns.qmd @@ -1,150 +1,150 @@ - - -## Introducing the `Column` class - -```{python} -#| include: false -# To execute the next chunks with success, we need to start a Spark Session -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -from datetime import date -from pyspark.sql import Row - -data = [ - Row(id = 1, value = 28.3, date = date(2021,1,1)), - Row(id = 2, value = 15.8, date = date(2021,1,1)), - Row(id = 3, value = 20.1, date = date(2021,1,2)), - Row(id = 4, value = 12.6, date = date(2021,1,3)) -] - -df = spark.createDataFrame(data) -``` - -As we described at the introduction of @sec-dataframes-chapter, you will massively use the methods from the `DataFrame` class in your Spark applications to manage, modify and calculate your Spark DataFrames. - -However, there is one more python class that provides some very useful methods that you will regularly use, which is the `Column` class, or more specifically, the `pyspark.sql.column.Column` class. - -The `Column` class is used to represent a column in a Spark DataFrame. This means that, each column of your Spark DataFrame is a object of class `Column`. - -We can confirm this statement, by taking the `df` DataFrame that we showed at @sec-building-a-dataframe, and look at the class of any column of it. Like the `id` column: - -```{python} -type(df.id) -``` - -## Building a column object - -You can refer to or create a column, by using the `col()` and `column()` functions from `pyspark.sql.functions` module. These functions receive a string input with the name of the column you want to create/refer to. - -Their result are always a object of class `Column`. For example, the code below creates a column called `ID`: - -```{python} -from pyspark.sql.functions import col -id_column = col('ID') -print(id_column) -``` - - -## Columns are strongly related to expressions {#sec-columns-related-expressions} - -Many kinds of transformations that we want to apply over a Spark DataFrame, are usually described through expressions, and, these expressions in Spark are mainly composed by **column transformations**. That is why the `Column` class, and its methods, are so important in Apache Spark. - -Columns in Spark are so strongly related to expressions that the columns themselves are initially interpreted as expressions. If we look again at the column `id` from `df` DataFrame, Spark will bring a expression as a result, and not the values hold by this column. - -```{python} -df.id -``` - -Having these ideas in mind, when I created the column `ID` on the previous section, I created a "column expression". This means that `col("ID")` is just an expression, and as consequence, Spark does not know which are the values of column `ID`, or, where it lives (which is the DataFrame that this column belongs?). For now, Spark is not interested in this information, it just knows that we have an expression referring to a column called `ID`. - -These ideas relates a lot to the **lazy aspect** of Spark that we talked about in @sec-viewing-a-dataframe. Spark will not perform any heavy calculation, or show you the actual results/values from you code, until you trigger the calculations with an action (we will talk more about these "actions" on @sec-dataframe-actions). As a result, when you access a column, Spark will only deliver a expression that represents that column, and not the actual values of that column. - -This is handy, because we can store our expressions in variables, and, reuse it latter, in multiple parts of our code. For example, I can keep building and merging a column with different kinds of operators, to build a more complex expression. In the example below, I create a expression that doubles the values of `ID` column: - -```{python} -expr1 = id_column * 2 -print(expr1) -``` - -Remember, with this expression, Spark knows that we want to get a column called `ID` somewhere, and double its values. But Spark will not perform that action right now. - -Logical expressions follow the same logic. In the example below, I am looking for rows where the value in column `Name` is equal to `'Anne'`, and, the value in column `Grade` is above 6. - -Again, Spark just checks if this is a valid logical expression. For now, Spark does not want to know where are these `Name` and `Grade` columns. Spark does not evaluate the expression, until we ask for it with an action: - -```{python} -expr2 = (col('Name') == 'Anne') & (col('Grade') > 6) -print(expr2) -``` - - -## Literal values versus expressions - -We know now that columns of a Spark DataFrame have a deep connection with expressions. But, on the other hand, there are some situations that you write a value (it can be a string, a integer, a boolean, or anything) inside your `pyspark` code, and you might actually want Spark to intepret this value as a constant (or a literal) value, rather than a expression. - - -As an example, lets suppose you control the data generated by the sales of five different stores, scattered across different regions of Belo Horizonte city (in Brazil). Now, lets suppose you receive a batch of data generated by the 4th store in the city, which is located at Amazonas Avenue, 324. This batch of data is exposed below: - -```{python} -path = './../Data/sales.json' -sales = spark.read.json(path) -sales.show(5) -``` - -If you look at this batch... there is no indication that these sales come from the 4th store. In other words, this information is not present in the data, is just in your mind. It certainly is a very bad idea to leave this data as is, whithout any identification of the source of it. So, you might want to add some labels and new columns to this batch of data, that can easily identify the store that originated these sales. - -For example, we could add two new columns to this `sales` DataFrame. One for the number that identifies the store (4), and, another to keep the store address. Considering that all rows in this batch comes from the 4th store, we should add two "constant" columns, meaning that these columns should have a constant value across all rows in this batch. But, how can we do this? How can we create a "constant" column? The answer is: by forcing Spark to interpret the values as literal values, instead of a expression. - -In other words, I can not use the `col()` function to create these two new columns. Because this `col()` function receives a column name as input. **It interprets our input as an expression that refers to a column name**. This function does not accept some sort of description of the actual values that this column should store. - - - -## Passing a literal (or a constant) value to Spark {#sec-literal-values} - -So how do we force Spark to interpret a value as a literal (or constant) value, rather than a expression? To do this, you must write this value inside the `lit()` (short for "literal") function from the `pyspark.sql.functions` module. - -In other words, when you write in your code the statement `lit(4)`, Spark understand that you want to create a new column which is filled with 4's. In other words, this new column is filled with the constant integer 4. - -With the code below, I am creating two new columns (called `store_number` and `store_address`), and adding them to the `sales` DataFrame. - -```{python} -from pyspark.sql.functions import lit -store_number = lit(4).alias('store_number') -store_address = lit('Amazonas Avenue, 324').alias('store_address') - -sales = sales\ - .select( - '*', store_number, store_address - ) - -sales\ - .select( - 'product_id', 'product_name', - 'store_number', 'store_address' - )\ - .show(5) -``` - - -In essence, you normally use the `lit()` function when you want to write a literal value in places where Spark expects a column name. In the example above, instead of writing a name to an existing column in the `sales` DataFrame, I wanted to write the literal values `'Amazonas Avenue, 324'` and `4`, and I used the `lit()` function to make this intention very clear to Spark. If I did not used the `lit()` function, the `withColumn()` method would interpret the value `'Amazonas Avenue, 324'` as an existing column named `Amazonas Avenue, 324`. - - - -## Key methods of the `Column` class - -Because many transformations that we want to apply over our DataFrames are expressed as column transformations, the methods from the `Column` class will be quite useful on many different contexts. You will see many of these methods across the next chapters, like `desc()`, `alias()` and `cast()`. - -Remember, you can always use the `dir()` function to see the complete list of methods available in any python class. Is always useful to check the official documentation too^[]. There you will have a more complete description of each method. - -But since they are so important in Spark, lets just give you a brief overview of some of the most popular methods from the `Column` class (these methods will be described in more detail in later chapters): - -- `desc()` and `asc()`: methods to order the values of the column in a descending or ascending order (respectively); -- `cast()` and `astype()`: methods to cast (or convert) the values of the column to a specific data type; -- `alias()`: method to rename a column; -- `substr()`: method that returns a new column with the sub string of each value; -- `isNull()` and `isNotNull()`: logical methods to test if each value in the column is a null value or not; -- `startswith()` and `endswith()`: logical methods to search for values that starts with or ends with a specific pattern; -- `like()` and `rlike()`: logical methods to search for a specific pattern or regular expression in the values of the column; + + +## Introducing the `Column` class + +```{python} +#| include: false +# To execute the next chunks with success, we need to start a Spark Session +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +from datetime import date +from pyspark.sql import Row + +data = [ + Row(id = 1, value = 28.3, date = date(2021,1,1)), + Row(id = 2, value = 15.8, date = date(2021,1,1)), + Row(id = 3, value = 20.1, date = date(2021,1,2)), + Row(id = 4, value = 12.6, date = date(2021,1,3)) +] + +df = spark.createDataFrame(data) +``` + +As we described at the introduction of @sec-dataframes-chapter, you will massively use the methods from the `DataFrame` class in your Spark applications to manage, modify and calculate your Spark DataFrames. + +However, there is one more python class that provides some very useful methods that you will regularly use, which is the `Column` class, or more specifically, the `pyspark.sql.column.Column` class. + +The `Column` class is used to represent a column in a Spark DataFrame. This means that, each column of your Spark DataFrame is a object of class `Column`. + +We can confirm this statement, by taking the `df` DataFrame that we showed at @sec-building-a-dataframe, and look at the class of any column of it. Like the `id` column: + +```{python} +type(df.id) +``` + +## Building a column object + +You can refer to or create a column, by using the `col()` and `column()` functions from `pyspark.sql.functions` module. These functions receive a string input with the name of the column you want to create/refer to. + +Their result are always a object of class `Column`. For example, the code below creates a column called `ID`: + +```{python} +from pyspark.sql.functions import col +id_column = col('ID') +print(id_column) +``` + + +## Columns are strongly related to expressions {#sec-columns-related-expressions} + +Many kinds of transformations that we want to apply over a Spark DataFrame, are usually described through expressions, and, these expressions in Spark are mainly composed by **column transformations**. That is why the `Column` class, and its methods, are so important in Apache Spark. + +Columns in Spark are so strongly related to expressions that the columns themselves are initially interpreted as expressions. If we look again at the column `id` from `df` DataFrame, Spark will bring a expression as a result, and not the values hold by this column. + +```{python} +df.id +``` + +Having these ideas in mind, when I created the column `ID` on the previous section, I created a "column expression". This means that `col("ID")` is just an expression, and as consequence, Spark does not know which are the values of column `ID`, or, where it lives (which is the DataFrame that this column belongs?). For now, Spark is not interested in this information, it just knows that we have an expression referring to a column called `ID`. + +These ideas relates a lot to the **lazy aspect** of Spark that we talked about in @sec-viewing-a-dataframe. Spark will not perform any heavy calculation, or show you the actual results/values from you code, until you trigger the calculations with an action (we will talk more about these "actions" on @sec-dataframe-actions). As a result, when you access a column, Spark will only deliver a expression that represents that column, and not the actual values of that column. + +This is handy, because we can store our expressions in variables, and, reuse it latter, in multiple parts of our code. For example, I can keep building and merging a column with different kinds of operators, to build a more complex expression. In the example below, I create a expression that doubles the values of `ID` column: + +```{python} +expr1 = id_column * 2 +print(expr1) +``` + +Remember, with this expression, Spark knows that we want to get a column called `ID` somewhere, and double its values. But Spark will not perform that action right now. + +Logical expressions follow the same logic. In the example below, I am looking for rows where the value in column `Name` is equal to `'Anne'`, and, the value in column `Grade` is above 6. + +Again, Spark just checks if this is a valid logical expression. For now, Spark does not want to know where are these `Name` and `Grade` columns. Spark does not evaluate the expression, until we ask for it with an action: + +```{python} +expr2 = (col('Name') == 'Anne') & (col('Grade') > 6) +print(expr2) +``` + + +## Literal values versus expressions + +We know now that columns of a Spark DataFrame have a deep connection with expressions. But, on the other hand, there are some situations that you write a value (it can be a string, a integer, a boolean, or anything) inside your `pyspark` code, and you might actually want Spark to intepret this value as a constant (or a literal) value, rather than a expression. + + +As an example, lets suppose you control the data generated by the sales of five different stores, scattered across different regions of Belo Horizonte city (in Brazil). Now, lets suppose you receive a batch of data generated by the 4th store in the city, which is located at Amazonas Avenue, 324. This batch of data is exposed below: + +```{python} +path = './../Data/sales.json' +sales = spark.read.json(path) +sales.show(5) +``` + +If you look at this batch... there is no indication that these sales come from the 4th store. In other words, this information is not present in the data, is just in your mind. It certainly is a very bad idea to leave this data as is, whithout any identification of the source of it. So, you might want to add some labels and new columns to this batch of data, that can easily identify the store that originated these sales. + +For example, we could add two new columns to this `sales` DataFrame. One for the number that identifies the store (4), and, another to keep the store address. Considering that all rows in this batch comes from the 4th store, we should add two "constant" columns, meaning that these columns should have a constant value across all rows in this batch. But, how can we do this? How can we create a "constant" column? The answer is: by forcing Spark to interpret the values as literal values, instead of a expression. + +In other words, I can not use the `col()` function to create these two new columns. Because this `col()` function receives a column name as input. **It interprets our input as an expression that refers to a column name**. This function does not accept some sort of description of the actual values that this column should store. + + + +## Passing a literal (or a constant) value to Spark {#sec-literal-values} + +So how do we force Spark to interpret a value as a literal (or constant) value, rather than a expression? To do this, you must write this value inside the `lit()` (short for "literal") function from the `pyspark.sql.functions` module. + +In other words, when you write in your code the statement `lit(4)`, Spark understand that you want to create a new column which is filled with 4's. In other words, this new column is filled with the constant integer 4. + +With the code below, I am creating two new columns (called `store_number` and `store_address`), and adding them to the `sales` DataFrame. + +```{python} +from pyspark.sql.functions import lit +store_number = lit(4).alias('store_number') +store_address = lit('Amazonas Avenue, 324').alias('store_address') + +sales = sales\ + .select( + '*', store_number, store_address + ) + +sales\ + .select( + 'product_id', 'product_name', + 'store_number', 'store_address' + )\ + .show(5) +``` + + +In essence, you normally use the `lit()` function when you want to write a literal value in places where Spark expects a column name. In the example above, instead of writing a name to an existing column in the `sales` DataFrame, I wanted to write the literal values `'Amazonas Avenue, 324'` and `4`, and I used the `lit()` function to make this intention very clear to Spark. If I did not used the `lit()` function, the `withColumn()` method would interpret the value `'Amazonas Avenue, 324'` as an existing column named `Amazonas Avenue, 324`. + + + +## Key methods of the `Column` class + +Because many transformations that we want to apply over our DataFrames are expressed as column transformations, the methods from the `Column` class will be quite useful on many different contexts. You will see many of these methods across the next chapters, like `desc()`, `alias()` and `cast()`. + +Remember, you can always use the `dir()` function to see the complete list of methods available in any python class. Is always useful to check the official documentation too^[]. There you will have a more complete description of each method. + +But since they are so important in Spark, lets just give you a brief overview of some of the most popular methods from the `Column` class (these methods will be described in more detail in later chapters): + +- `desc()` and `asc()`: methods to order the values of the column in a descending or ascending order (respectively); +- `cast()` and `astype()`: methods to cast (or convert) the values of the column to a specific data type; +- `alias()`: method to rename a column; +- `substr()`: method that returns a new column with the sub string of each value; +- `isNull()` and `isNotNull()`: logical methods to test if each value in the column is a null value or not; +- `startswith()` and `endswith()`: logical methods to search for values that starts with or ends with a specific pattern; +- `like()` and `rlike()`: logical methods to search for a specific pattern or regular expression in the values of the column; - `isin()`: logical method to test if each value in the column is some of the listed values; \ No newline at end of file diff --git a/Chapters/04-dataframes.qmd b/Chapters/04-dataframes.qmd index f7670787..8d0b6048 100644 --- a/Chapters/04-dataframes.qmd +++ b/Chapters/04-dataframes.qmd @@ -1,326 +1,326 @@ -# Introducing Spark DataFrames {#sec-dataframes-chapter} - -```{python} -#| include: false -# To execute the next chunks with success, we need to start a Spark Session -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - - -In this chapter, you will understand how Spark represents and manages tables (or tabular data). Different programming languages and frameworks use different names to describe a table. But, in Apache Spark, they are referred as Spark DataFrames. - -In `pyspark`, these DataFrames are stored inside python objects of class `pyspark.sql.dataframe.DataFrame`, and all the methods present in this class, are commonly referred as the DataFrame API of Spark. This is the most important API of Spark, because much of your Spark applications will heavily use this API to compose your data transformations and data flows [@chambers2018]. - -## Spark DataFrames versus Spark Datasets - -Spark have two notions of structured data: DataFrames and Datasets. In summary, a Spark Dataset, is a distributed collection of data [@sparkdoc]. In contrast, a Spark DataFrame is a Spark Dataset organized into named columns [@sparkdoc]. - -This means that, Spark DataFrames are very similar to tables as we know in relational databases - RDBMS, or, in spreadsheets (like Excel). So in a Spark DataFrame, each column has a name, and they all have the same number of rows. Furthermore, all the rows inside a column must store the same type of data, but each column can store a different type of data. - -In the other hand, Spark Datasets are considered a collection of any type of data. So a Dataset might be a collection of unstructured data as well, like log files, JSON and XML trees, etc. Spark Datasets can be created and transformed trough the Dataset API of Spark. But this API is available only in Scala and Java API's of Spark. For this reason, we do not act directly on Datasets with `pyspark`, only DataFrames. That's ok, because for the most part of applications, we do want to use DataFrames, and not Datasets, to represent our data. - -However, what makes a Spark DataFrame different from other dataframes? Like the `pandas` DataFrame? Or the R native `data.frame` structure? Is the **distributed** aspect of it. Spark DataFrames are based on Spark Datasets, and these Datasets are collections of data that are distributed across the cluster. As an example, lets suppose you have the following table stored as a Spark DataFrame: - -| ID | Name | Value | -|-----|--------|-------| -| 1 | Anne | 502 | -| 2 | Carls | 432 | -| 3 | Stoll | 444 | -| 4 | Percy | 963 | -| 5 | Martha | 123 | -| 6 | Sigrid | 621 | - -If you are running Spark in a 4 nodes cluster (one is the driver node, and the other three are worker nodes). Each worker node of the cluster will store a section of this data. So you, as the programmer, will see, manage and transform this table as if it was a single and unified table. But behind the hoods, Spark will split this data and store it as many fragments across the Spark cluster. @fig-distributed-df presents this notion in a visual manner. - -![A Spark DataFrame is distributed across the cluster](../Figures/distributed-df.png){#fig-distributed-df fig-align="center"} - - -## Partitions of a Spark DataFrame {#sec-dataframe-partitions} - -A Spark DataFrame is always broken into many small pieces, and, these pieces are always spread across the cluster of machines. Each one of these small pieces of the total data are considered a DataFrame *partition*. - -For the most part, you do not manipulate these partitions manually or individually [@karau2015], because Spark automatically do this job for you. - -As we exposed in @fig-distributed-df, each node of the cluster will hold a piece of the total DataFrame. If we translate this distribution into a "partition" distribution, this means that each node of the cluster can hold one or multiple partitions of the Spark DataFrame. - -If we sum all partitions present in a node of the cluster, we get a chunk of the total DataFrame. The figure below demonstrates this notion: - -![Partitions of a DataFrame](../Figures/partitions-df.png){#fig-partitions-df fig-align="center"} - -If the Spark DataFrame is not big, each node of the cluster will probably store just a single partition of this DataFrame. In contrast, depending on the complexity and size of the DataFrame, Spark will split this DataFrame into more partitions that there are nodes in the cluster. In this case, each node of the cluster will hold more than 1 partition of the total DataFrame. - - - -## The `DataFrame` class in `pyspark` {#sec-dataframe-class} - -In `pyspark`, every Spark DataFrame is stored inside a python object of class `pyspark.sql.dataframe.DataFrame`. Or more succintly, a object of class `DataFrame`. - -Like any python class, the `DataFrame` class comes with multiple methods that are available for every object of this class. This means that you can use any of these methods in any Spark DataFrame that you create through `pyspark`. - -As an example, in the code below I expose all the available methods from this `DataFrame` class. First, I create a Spark DataFrame with `spark.range(5)`, and, store it in the object `df5`. After that, I use the `dir()` function to show all the methods that I can use through this `df5` object: - - -```{python} -df5 = spark.range(5) -available_methods = dir(df5) -print(available_methods) -``` - - -All the methods present in this `DataFrame` class, are commonly referred as the *DataFrame API of Spark*. Remember, this is the most important API of Spark. Because much of your Spark applications will heavily use this API to compose your data transformations and data flows [@chambers2018]. - -## Building a Spark DataFrame {#sec-building-a-dataframe} - -There are some different methods to create a Spark DataFrame. For example, because a DataFrame is basically a Dataset of rows, we can build a DataFrame from a collection of `Row`'s, through the `createDataFrame()` method from your Spark Session: - -```{python} -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -from datetime import date -from pyspark.sql import Row - -data = [ - Row(id = 1, value = 28.3, date = date(2021,1,1)), - Row(id = 2, value = 15.8, date = date(2021,1,1)), - Row(id = 3, value = 20.1, date = date(2021,1,2)), - Row(id = 4, value = 12.6, date = date(2021,1,3)) -] - -df = spark.createDataFrame(data) -``` - -Remember that a Spark DataFrame in python is a object of class `pyspark.sql.dataframe.DataFrame` as you can see below: - -```{python} -type(df) -``` - -If you try to see what is inside of this kind of object, you will get a small description of the columns present in the DataFrame as a result: - -```{python} -df -``` - -So, in the above example, we use the `Row()` constructor (from `pyspark.sql` module) to build 4 rows. The `createDataFrame()` method, stack these 4 rows together to form our new DataFrame `df`. The result is a Spark DataFrame with 4 rows and 3 columns (`id`, `value` and `date`). - -But you can use different methods to create the same Spark DataFrame. As another example, with the code below, we are creating a DataFrame called `students` from two different python lists (`data` and `columns`). - -The first list (`data`) is a list of rows. Each row is represent by a python tuple, which contains the values in each column. But the secont list (`columns`) contains the names for each column in the DataFrame. - -To create the `students` DataFrame we deliver these two lists to `createDataFrame()` method: - -```{python} - -data = [ - (12114, 'Anne', 21, 1.56, 8, 9, 10, 9, 'Economics', 'SC'), - (13007, 'Adrian', 23, 1.82, 6, 6, 8, 7, 'Economics', 'SC'), - (10045, 'George', 29, 1.77, 10, 9, 10, 7, 'Law', 'SC'), - (12459, 'Adeline', 26, 1.61, 8, 6, 7, 7, 'Law', 'SC'), - (10190, 'Mayla', 22, 1.67, 7, 7, 7, 9, 'Design', 'AR'), - (11552, 'Daniel', 24, 1.75, 9, 9, 10, 9, 'Design', 'AR') -] - -columns = [ - 'StudentID', 'Name', 'Age', 'Height', 'Score1', - 'Score2', 'Score3', 'Score4', 'Course', 'Department' -] - -students = spark.createDataFrame(data, columns) -students -``` - -You can also use a method that returns a `DataFrame` object by default. Examples are the `table()` and `range()` methods from your Spark Session, like we used in the @sec-dataframe-class, to create the `df5` object. - -Other examples are the methods used to read data and import it to `pyspark`. These methods are available in the `spark.read` module, like `spark.read.csv()` and `spark.read.json()`. These methods will be described in more depth in @sec-import. - -## Visualizing a Spark DataFrame {#sec-viewing-a-dataframe} - -A key aspect of Spark is its laziness. In other words, for most operations, Spark will only check if your code is correct and if it makes sense. Spark will not actually run or execute the operations you are describing in your code, unless you explicit ask for it with a trigger operation, which is called an "action" (this kind of operation is described in @sec-dataframe-actions). - -You can notice this laziness in the output below: - -```{python} -students -``` - -Because when we call for an object that stores a Spark DataFrame (like `df` and `students`), Spark will only calculate and print a summary of the structure of your Spark DataFrame, and not the DataFrame itself. - -So how can we actually see our DataFrame? How can we visualize the rows and values that are stored inside of it? For this, we use the `show()` method. With this method, Spark will print the table as pure text, as you can see in the example below: - -```{python} -students.show() -``` - -By default, this method shows only the top rows of your DataFrame, but you can specify how much rows exactly you want to see, by using `show(n)`, where `n` is the number of rows. For example, I can visualize only the first 2 rows of `df` like this: - -```{python} -df.show(2) -``` - -## Getting the name of the columns - -If you need to, you can easily collect a python list with the column names present in your DataFrame, in the same way you would do in a `pandas` DataFrame. That is, by using the `columns` method of your DataFrame, like this: - -```{python} -students.columns -``` - - -## Getting the number of rows - -If you want to know the number of rows present in a Spark DataFrame, just use the `count()` method of this DataFrame. As a result, Spark will build this DataFrame, and count the number of rows present in it. - -```{python} -students.count() -``` - - -## Spark Data Types - -Each column of your Spark DataFrame is associated with a specific data type. Spark supports a large number of different data types. You can see the full list at the official documentation page[^04-dataframes-1]. For now, we will focus on the most used data types, which are listed below: - -[^04-dataframes-1]: The full list is available at the link - -- `IntegerType`: Represents 4-byte signed integer numbers. The range of numbers that it can represent is from -2147483648 to 2147483647. -- `LongType`: Represents 8-byte signed integer numbers. The range of numbers that it can represent is from -9223372036854775808 to 9223372036854775807. -- `FloatType`: Represents 4-byte single-precision floating point numbers. -- `DoubleType`: Represents 8-byte double-precision floating point numbers. -- `StringType`: Represents character string values. -- `BooleanType`: Represents boolean values (true or false). -- `TimestampType`: Represents datetime values, i.e. values that contains fields year, month, day, hour, minute, and second, with the session local time-zone. The timestamp value represents an absolute point in time. -- `DateType`: Represents date values, i.e. values that contains fields year, month and day, without a time-zone. - -Besides these more "standard" data types, Spark supports two other complex types, which are `ArrayType` and `MapType`: - -- `ArrayType(elementType, containsNull)`: Represents a sequence of elements with the type of `elementType`. `containsNull` is used to indicate if elements in a `ArrayType` value can have `null` values. - -- `MapType(keyType, valueType, valueContainsNull)`: Represents a set of key-value pairs. The data type of keys is described by `keyType` and the data type of values is described by `valueType`. For a `MapType` value, keys are not allowed to have `null` values. `valueContainsNull` is used to indicate if values of a `MapType` value can have `null` values. - -Each one of these Spark data types have a corresponding python class in `pyspark`, which are stored in the `pyspark.sql.types` module. As a result, to access, lets say, type `StryngType`, we can do this: - -```{python} -from pyspark.sql.types import StringType -s = StringType() -print(s) -``` - -## The DataFrame Schema {#sec-dataframe-schema} - -The schema of a Spark DataFrame is the combination of column names and the data types associated with each of these columns. Schemas can be set explicitly by you (that is, you can tell Spark how the schema of your DataFrame should look like), or, they can be automatically defined by Spark while reading or creating your data. - -You can get a succinct description of a DataFrame schema, by looking inside the object where this DataFrame is stored. For example, lets look again to the `df` DataFrame. - -In the result below, we can see that `df` has three columns (`id`, `value` and `date`). By the description `id: bigint`, we know that `id` is a column of type `bigint`, which translates to the `LongType()` of Spark. Furthermore, by the descriptions `value: double` and `date: date`, we know too that the columns `value` and `date` are of type `DoubleType()` and `DateType()`, respectively. - -```{python} -df -``` - -You can also visualize a more complete report of the DataFrame schema by using the `printSchema()` method, like this: - -```{python} -df.printSchema() -``` - -### Accessing the DataFrame schema - -So, by calling the object of your DataFrame (i.e. an object of class `DataFrame`) you can see a small description of the schema of this DataFrame. But, how can you access this schema programmatically? - -You do this, by using the `schema` method of your DataFrame, like in the example below: - -```{python} -df.schema -``` - -The result of the `schema` method, is a `StructType()` object, that contains some information about each column of your DataFrame. More specifically, a `StructType()` object is filled with multiple `StructField()` objects. Each `StructField()` object stores the name and the type of a column, and a boolean value (`True` or `False`) that indicates if this column can contain any null value inside of it. - -You can use a `for` loop to iterate through this `StructType()` and get the information about each column separately. - -```{python} -schema = df.schema -for column in schema: - print(column) -``` - -You can access just the data type of each column by using the `dataType` method of each `StructField()` object. - -```{python} -for column in schema: - datatype = column.dataType - print(datatype) -``` - -And you can do the same for column names and the boolean value (that indicates if the column can contain "null" values), by using the `name` and `nullable` methods, respectively. - -```{python} -# Accessing the name of each column -for column in schema: - print(column.name) -``` - -```{python} -# Accessing the boolean value that indicates -# if the column can contain null values -for column in schema: - print(column.nullable) -``` - -### Building a DataFrame schema - -When Spark creates a new DataFrame, it will automatically guess which schema is appropriate for that DataFrame. In other words, Spark will try to guess which are the appropriate data types for each column. But, this is just a guess, and, sometimes, Spark go way off. - -Because of that, in some cases, you have to tell Spark how exactly you want this DataFrame schema to be like. To do that, you need to build the DataFrame schema by yourself, with `StructType()` and `StructField()` constructors, alongside with the Spark data types (i.e. `StringType()`, `DoubleType()`, `IntegerType()`, ...). Remember, all of these python classes come from the `pyspark.sql.types` module. - -In the example below, the `schema` object represents the schema of the `registers` DataFrame. This DataFrame have three columns (`ID`, `Date`, `Name`) of types `IntegerType`, `DateType` and `StringType`, respectively. - - -You can see below that I deliver this `schema` object that I built to `spark.create-DataFrame()`. Now `spark.createDataFrame()` will follow the schema I described in this `schema` object when building the `registers` DataFrame. - -```{python} -from pyspark.sql.types import StructType, StructField -from pyspark.sql.types import DateType, StringType, IntegerType -from datetime import date - -data = [ - (1, date(2022, 1, 1), 'Anne'), - (2, date(2022, 1, 3), 'Layla'), - (3, date(2022, 1, 15), 'Wick'), - (4, date(2022, 1, 11), 'Paul') -] - -schema = StructType([ - StructField('ID', IntegerType(), True), - StructField('Date', DateType(), True), - StructField('Name', StringType(), True) -]) - -registers = spark.createDataFrame(data, schema = schema) -``` - -Having this example in mind, in order to build a DataFrame schema from scratch, you have to build the equivalent `StructType()` object that represents the schema you want. - -### Checking your DataFrame schema - -In some cases, you need to include in your `pyspark` program, some checks that certifies that your Spark DataFrame have the expected schema. In other words, you want to take actions if your DataFrame have a different schema that might cause a problem in your program. - -To check if a specific column of your DataFrame is associated with the data type $x$, you have to use the DataFrame schema to check if the respective column is an "instance" of the python class that represents that data type $x$. Lets use the `df` DataFrame as an example. - -Suppose you wanted to check if the `id` column is of type `IntegerType`. To do this check, we use the python built-in function `isinstance()` with the python class that represents the Spark `IntegerType` data type. But, you can see in the result below, that the `id` column is not of type `IntegerType`. - -```{python} -from pyspark.sql.types import IntegerType -schema = df.schema -id_column = schema[0] -isinstance(id_column.dataType, IntegerType) -``` - -This unexpected result happens, because the `id` column is actually from the "big integer" type, or, the `LongType` (which are 8-byte signed integer). You can see below, that now the test results in true: - -```{python} -from pyspark.sql.types import LongType -isinstance(id_column.dataType, LongType) -``` - +# Introducing Spark DataFrames {#sec-dataframes-chapter} + +```{python} +#| include: false +# To execute the next chunks with success, we need to start a Spark Session +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +``` + + +In this chapter, you will understand how Spark represents and manages tables (or tabular data). Different programming languages and frameworks use different names to describe a table. But, in Apache Spark, they are referred as Spark DataFrames. + +In `pyspark`, these DataFrames are stored inside python objects of class `pyspark.sql.dataframe.DataFrame`, and all the methods present in this class, are commonly referred as the DataFrame API of Spark. This is the most important API of Spark, because much of your Spark applications will heavily use this API to compose your data transformations and data flows [@chambers2018]. + +## Spark DataFrames versus Spark Datasets + +Spark have two notions of structured data: DataFrames and Datasets. In summary, a Spark Dataset, is a distributed collection of data [@sparkdoc]. In contrast, a Spark DataFrame is a Spark Dataset organized into named columns [@sparkdoc]. + +This means that, Spark DataFrames are very similar to tables as we know in relational databases - RDBMS, or, in spreadsheets (like Excel). So in a Spark DataFrame, each column has a name, and they all have the same number of rows. Furthermore, all the rows inside a column must store the same type of data, but each column can store a different type of data. + +In the other hand, Spark Datasets are considered a collection of any type of data. So a Dataset might be a collection of unstructured data as well, like log files, JSON and XML trees, etc. Spark Datasets can be created and transformed trough the Dataset API of Spark. But this API is available only in Scala and Java API's of Spark. For this reason, we do not act directly on Datasets with `pyspark`, only DataFrames. That's ok, because for the most part of applications, we do want to use DataFrames, and not Datasets, to represent our data. + +However, what makes a Spark DataFrame different from other dataframes? Like the `pandas` DataFrame? Or the R native `data.frame` structure? Is the **distributed** aspect of it. Spark DataFrames are based on Spark Datasets, and these Datasets are collections of data that are distributed across the cluster. As an example, lets suppose you have the following table stored as a Spark DataFrame: + +| ID | Name | Value | +|-----|--------|-------| +| 1 | Anne | 502 | +| 2 | Carls | 432 | +| 3 | Stoll | 444 | +| 4 | Percy | 963 | +| 5 | Martha | 123 | +| 6 | Sigrid | 621 | + +If you are running Spark in a 4 nodes cluster (one is the driver node, and the other three are worker nodes). Each worker node of the cluster will store a section of this data. So you, as the programmer, will see, manage and transform this table as if it was a single and unified table. But behind the hoods, Spark will split this data and store it as many fragments across the Spark cluster. @fig-distributed-df presents this notion in a visual manner. + +![A Spark DataFrame is distributed across the cluster](../Figures/distributed-df.png){#fig-distributed-df fig-align="center"} + + +## Partitions of a Spark DataFrame {#sec-dataframe-partitions} + +A Spark DataFrame is always broken into many small pieces, and, these pieces are always spread across the cluster of machines. Each one of these small pieces of the total data are considered a DataFrame *partition*. + +For the most part, you do not manipulate these partitions manually or individually [@karau2015], because Spark automatically do this job for you. + +As we exposed in @fig-distributed-df, each node of the cluster will hold a piece of the total DataFrame. If we translate this distribution into a "partition" distribution, this means that each node of the cluster can hold one or multiple partitions of the Spark DataFrame. + +If we sum all partitions present in a node of the cluster, we get a chunk of the total DataFrame. The figure below demonstrates this notion: + +![Partitions of a DataFrame](../Figures/partitions-df.png){#fig-partitions-df fig-align="center"} + +If the Spark DataFrame is not big, each node of the cluster will probably store just a single partition of this DataFrame. In contrast, depending on the complexity and size of the DataFrame, Spark will split this DataFrame into more partitions that there are nodes in the cluster. In this case, each node of the cluster will hold more than 1 partition of the total DataFrame. + + + +## The `DataFrame` class in `pyspark` {#sec-dataframe-class} + +In `pyspark`, every Spark DataFrame is stored inside a python object of class `pyspark.sql.dataframe.DataFrame`. Or more succintly, a object of class `DataFrame`. + +Like any python class, the `DataFrame` class comes with multiple methods that are available for every object of this class. This means that you can use any of these methods in any Spark DataFrame that you create through `pyspark`. + +As an example, in the code below I expose all the available methods from this `DataFrame` class. First, I create a Spark DataFrame with `spark.range(5)`, and, store it in the object `df5`. After that, I use the `dir()` function to show all the methods that I can use through this `df5` object: + + +```{python} +df5 = spark.range(5) +available_methods = dir(df5) +print(available_methods) +``` + + +All the methods present in this `DataFrame` class, are commonly referred as the *DataFrame API of Spark*. Remember, this is the most important API of Spark. Because much of your Spark applications will heavily use this API to compose your data transformations and data flows [@chambers2018]. + +## Building a Spark DataFrame {#sec-building-a-dataframe} + +There are some different methods to create a Spark DataFrame. For example, because a DataFrame is basically a Dataset of rows, we can build a DataFrame from a collection of `Row`'s, through the `createDataFrame()` method from your Spark Session: + +```{python} +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +from datetime import date +from pyspark.sql import Row + +data = [ + Row(id = 1, value = 28.3, date = date(2021,1,1)), + Row(id = 2, value = 15.8, date = date(2021,1,1)), + Row(id = 3, value = 20.1, date = date(2021,1,2)), + Row(id = 4, value = 12.6, date = date(2021,1,3)) +] + +df = spark.createDataFrame(data) +``` + +Remember that a Spark DataFrame in python is a object of class `pyspark.sql.dataframe.DataFrame` as you can see below: + +```{python} +type(df) +``` + +If you try to see what is inside of this kind of object, you will get a small description of the columns present in the DataFrame as a result: + +```{python} +df +``` + +So, in the above example, we use the `Row()` constructor (from `pyspark.sql` module) to build 4 rows. The `createDataFrame()` method, stack these 4 rows together to form our new DataFrame `df`. The result is a Spark DataFrame with 4 rows and 3 columns (`id`, `value` and `date`). + +But you can use different methods to create the same Spark DataFrame. As another example, with the code below, we are creating a DataFrame called `students` from two different python lists (`data` and `columns`). + +The first list (`data`) is a list of rows. Each row is represent by a python tuple, which contains the values in each column. But the secont list (`columns`) contains the names for each column in the DataFrame. + +To create the `students` DataFrame we deliver these two lists to `createDataFrame()` method: + +```{python} + +data = [ + (12114, 'Anne', 21, 1.56, 8, 9, 10, 9, 'Economics', 'SC'), + (13007, 'Adrian', 23, 1.82, 6, 6, 8, 7, 'Economics', 'SC'), + (10045, 'George', 29, 1.77, 10, 9, 10, 7, 'Law', 'SC'), + (12459, 'Adeline', 26, 1.61, 8, 6, 7, 7, 'Law', 'SC'), + (10190, 'Mayla', 22, 1.67, 7, 7, 7, 9, 'Design', 'AR'), + (11552, 'Daniel', 24, 1.75, 9, 9, 10, 9, 'Design', 'AR') +] + +columns = [ + 'StudentID', 'Name', 'Age', 'Height', 'Score1', + 'Score2', 'Score3', 'Score4', 'Course', 'Department' +] + +students = spark.createDataFrame(data, columns) +students +``` + +You can also use a method that returns a `DataFrame` object by default. Examples are the `table()` and `range()` methods from your Spark Session, like we used in the @sec-dataframe-class, to create the `df5` object. + +Other examples are the methods used to read data and import it to `pyspark`. These methods are available in the `spark.read` module, like `spark.read.csv()` and `spark.read.json()`. These methods will be described in more depth in @sec-import. + +## Visualizing a Spark DataFrame {#sec-viewing-a-dataframe} + +A key aspect of Spark is its laziness. In other words, for most operations, Spark will only check if your code is correct and if it makes sense. Spark will not actually run or execute the operations you are describing in your code, unless you explicit ask for it with a trigger operation, which is called an "action" (this kind of operation is described in @sec-dataframe-actions). + +You can notice this laziness in the output below: + +```{python} +students +``` + +Because when we call for an object that stores a Spark DataFrame (like `df` and `students`), Spark will only calculate and print a summary of the structure of your Spark DataFrame, and not the DataFrame itself. + +So how can we actually see our DataFrame? How can we visualize the rows and values that are stored inside of it? For this, we use the `show()` method. With this method, Spark will print the table as pure text, as you can see in the example below: + +```{python} +students.show() +``` + +By default, this method shows only the top rows of your DataFrame, but you can specify how much rows exactly you want to see, by using `show(n)`, where `n` is the number of rows. For example, I can visualize only the first 2 rows of `df` like this: + +```{python} +df.show(2) +``` + +## Getting the name of the columns + +If you need to, you can easily collect a python list with the column names present in your DataFrame, in the same way you would do in a `pandas` DataFrame. That is, by using the `columns` method of your DataFrame, like this: + +```{python} +students.columns +``` + + +## Getting the number of rows + +If you want to know the number of rows present in a Spark DataFrame, just use the `count()` method of this DataFrame. As a result, Spark will build this DataFrame, and count the number of rows present in it. + +```{python} +students.count() +``` + + +## Spark Data Types + +Each column of your Spark DataFrame is associated with a specific data type. Spark supports a large number of different data types. You can see the full list at the official documentation page[^04-dataframes-1]. For now, we will focus on the most used data types, which are listed below: + +[^04-dataframes-1]: The full list is available at the link + +- `IntegerType`: Represents 4-byte signed integer numbers. The range of numbers that it can represent is from -2147483648 to 2147483647. +- `LongType`: Represents 8-byte signed integer numbers. The range of numbers that it can represent is from -9223372036854775808 to 9223372036854775807. +- `FloatType`: Represents 4-byte single-precision floating point numbers. +- `DoubleType`: Represents 8-byte double-precision floating point numbers. +- `StringType`: Represents character string values. +- `BooleanType`: Represents boolean values (true or false). +- `TimestampType`: Represents datetime values, i.e. values that contains fields year, month, day, hour, minute, and second, with the session local time-zone. The timestamp value represents an absolute point in time. +- `DateType`: Represents date values, i.e. values that contains fields year, month and day, without a time-zone. + +Besides these more "standard" data types, Spark supports two other complex types, which are `ArrayType` and `MapType`: + +- `ArrayType(elementType, containsNull)`: Represents a sequence of elements with the type of `elementType`. `containsNull` is used to indicate if elements in a `ArrayType` value can have `null` values. + +- `MapType(keyType, valueType, valueContainsNull)`: Represents a set of key-value pairs. The data type of keys is described by `keyType` and the data type of values is described by `valueType`. For a `MapType` value, keys are not allowed to have `null` values. `valueContainsNull` is used to indicate if values of a `MapType` value can have `null` values. + +Each one of these Spark data types have a corresponding python class in `pyspark`, which are stored in the `pyspark.sql.types` module. As a result, to access, lets say, type `StryngType`, we can do this: + +```{python} +from pyspark.sql.types import StringType +s = StringType() +print(s) +``` + +## The DataFrame Schema {#sec-dataframe-schema} + +The schema of a Spark DataFrame is the combination of column names and the data types associated with each of these columns. Schemas can be set explicitly by you (that is, you can tell Spark how the schema of your DataFrame should look like), or, they can be automatically defined by Spark while reading or creating your data. + +You can get a succinct description of a DataFrame schema, by looking inside the object where this DataFrame is stored. For example, lets look again to the `df` DataFrame. + +In the result below, we can see that `df` has three columns (`id`, `value` and `date`). By the description `id: bigint`, we know that `id` is a column of type `bigint`, which translates to the `LongType()` of Spark. Furthermore, by the descriptions `value: double` and `date: date`, we know too that the columns `value` and `date` are of type `DoubleType()` and `DateType()`, respectively. + +```{python} +df +``` + +You can also visualize a more complete report of the DataFrame schema by using the `printSchema()` method, like this: + +```{python} +df.printSchema() +``` + +### Accessing the DataFrame schema + +So, by calling the object of your DataFrame (i.e. an object of class `DataFrame`) you can see a small description of the schema of this DataFrame. But, how can you access this schema programmatically? + +You do this, by using the `schema` method of your DataFrame, like in the example below: + +```{python} +df.schema +``` + +The result of the `schema` method, is a `StructType()` object, that contains some information about each column of your DataFrame. More specifically, a `StructType()` object is filled with multiple `StructField()` objects. Each `StructField()` object stores the name and the type of a column, and a boolean value (`True` or `False`) that indicates if this column can contain any null value inside of it. + +You can use a `for` loop to iterate through this `StructType()` and get the information about each column separately. + +```{python} +schema = df.schema +for column in schema: + print(column) +``` + +You can access just the data type of each column by using the `dataType` method of each `StructField()` object. + +```{python} +for column in schema: + datatype = column.dataType + print(datatype) +``` + +And you can do the same for column names and the boolean value (that indicates if the column can contain "null" values), by using the `name` and `nullable` methods, respectively. + +```{python} +# Accessing the name of each column +for column in schema: + print(column.name) +``` + +```{python} +# Accessing the boolean value that indicates +# if the column can contain null values +for column in schema: + print(column.nullable) +``` + +### Building a DataFrame schema + +When Spark creates a new DataFrame, it will automatically guess which schema is appropriate for that DataFrame. In other words, Spark will try to guess which are the appropriate data types for each column. But, this is just a guess, and, sometimes, Spark go way off. + +Because of that, in some cases, you have to tell Spark how exactly you want this DataFrame schema to be like. To do that, you need to build the DataFrame schema by yourself, with `StructType()` and `StructField()` constructors, alongside with the Spark data types (i.e. `StringType()`, `DoubleType()`, `IntegerType()`, ...). Remember, all of these python classes come from the `pyspark.sql.types` module. + +In the example below, the `schema` object represents the schema of the `registers` DataFrame. This DataFrame have three columns (`ID`, `Date`, `Name`) of types `IntegerType`, `DateType` and `StringType`, respectively. + + +You can see below that I deliver this `schema` object that I built to `spark.create-DataFrame()`. Now `spark.createDataFrame()` will follow the schema I described in this `schema` object when building the `registers` DataFrame. + +```{python} +from pyspark.sql.types import StructType, StructField +from pyspark.sql.types import DateType, StringType, IntegerType +from datetime import date + +data = [ + (1, date(2022, 1, 1), 'Anne'), + (2, date(2022, 1, 3), 'Layla'), + (3, date(2022, 1, 15), 'Wick'), + (4, date(2022, 1, 11), 'Paul') +] + +schema = StructType([ + StructField('ID', IntegerType(), True), + StructField('Date', DateType(), True), + StructField('Name', StringType(), True) +]) + +registers = spark.createDataFrame(data, schema = schema) +``` + +Having this example in mind, in order to build a DataFrame schema from scratch, you have to build the equivalent `StructType()` object that represents the schema you want. + +### Checking your DataFrame schema + +In some cases, you need to include in your `pyspark` program, some checks that certifies that your Spark DataFrame have the expected schema. In other words, you want to take actions if your DataFrame have a different schema that might cause a problem in your program. + +To check if a specific column of your DataFrame is associated with the data type $x$, you have to use the DataFrame schema to check if the respective column is an "instance" of the python class that represents that data type $x$. Lets use the `df` DataFrame as an example. + +Suppose you wanted to check if the `id` column is of type `IntegerType`. To do this check, we use the python built-in function `isinstance()` with the python class that represents the Spark `IntegerType` data type. But, you can see in the result below, that the `id` column is not of type `IntegerType`. + +```{python} +from pyspark.sql.types import IntegerType +schema = df.schema +id_column = schema[0] +isinstance(id_column.dataType, IntegerType) +``` + +This unexpected result happens, because the `id` column is actually from the "big integer" type, or, the `LongType` (which are 8-byte signed integer). You can see below, that now the test results in true: + +```{python} +from pyspark.sql.types import LongType +isinstance(id_column.dataType, LongType) +``` + diff --git a/Chapters/05-transforming.qmd b/Chapters/05-transforming.qmd index 79ea8bb6..b8ea3f39 100644 --- a/Chapters/05-transforming.qmd +++ b/Chapters/05-transforming.qmd @@ -1,995 +1,995 @@ - -# Transforming your Spark DataFrame - Part 1 {#sec-transforming-dataframes-part1} - - -```{python} -#| include: false -# To execute the next chunks with success, we need to start a Spark Session -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - - -Virtually every data analysis or data pipeline will include some ETL (*Extract, Transform, Load*) process, and the T is an essential part of it. Because, you almost never have an input data, or a initial DataFrame that perfectly fits your needs. - -This means that you always have to transform the initial data that you have, to a specific format that you can use in your analysis. In this chapter, you will learn how to apply some of these basic transformations to your Spark DataFrame. - -## Defining transformations {#sec-df-defining-transformations} - -Spark DataFrames are **immutable**, meaning that, they cannot be directly changed. But you can use an existing DataFrame to create a new one, based on a set of transformations. In other words, you define a new DataFrame as a transformed version of an older DataFrame. - -Basically every `pyspark` program that you write will have such transformations. Spark support many types of transformations, however, in this chapter, we will focus on six basic transformations that you can apply to a DataFrame: - -- Filtering rows based on a logical condition; -- Selecting a subset of rows; -- Selecting specific columns; -- Adding or deleting columns; -- Sorting rows; -- Calculating aggregates; - -Therefore, when you apply one of the above transformations to an existing DataFrame, you will get a new DataFrame as a result. You usually combine multiple transformations together to get your desired result. As a first example, lets get back to the `df` DataFrame: - -```{python} -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -from datetime import date -from pyspark.sql import Row - -data = [ - Row(id = 1, value = 28.3, date = date(2021,1,1)), - Row(id = 2, value = 15.8, date = date(2021,1,1)), - Row(id = 3, value = 20.1, date = date(2021,1,2)), - Row(id = 4, value = 12.6, date = date(2021,1,3)) -] - -df = spark.createDataFrame(data) -``` - -In the example below, to create a new DataFrame called `big_values`, we begin with the `df` DataFrame, then, we filter its rows where `value` is greater than 15, then, we select `date` and `value` columns, then, we sort the rows based on the `value` column. So, this set of sequential transformations (filter it, then, select it, then, order it, ...) defines what this new `big_values` DataFrame is. - -```{python} -from pyspark.sql.functions import col -# You define a chain of transformations to -# create a new DataFrame -big_values = df\ - .filter(col('value') > 15)\ - .select('date', 'value')\ - .orderBy('value') -``` - -Thus, to apply a transformation to an existing DataFrame, we use DataFrame methods such as `select()`, `filter()`, `orderBy()` and many others. Remember, these are methods from the python class that defines Spark DataFrame's (i.e. the `pyspark.sql.dataframe.DataFrame` class). - -This means that you can apply these transformations only to Spark DataFrames, and no other kind of python object. For example, if you try to use the `orderBy()` method in a standard python string (i.e. an object of class `str`), you will get an `AttributeError` error. Because this class of object in python, does not have a `orderBy()` method: - -```{python} -#| eval: false -s = "A python string" -s.orderBy('value') -``` - -``` -Traceback (most recent call last): - File "", line 1, in -AttributeError: 'str' object has no attribute 'orderBy' -``` - -Each one of these DataFrame methods create a *lazily evaluated transformation*. Once again, we see the **lazy** aspect of Spark doing its work here. All these transformation methods are lazily evaluated, meaning that, Spark will only check if they make sense with the initial DataFrame that you have. Spark will not actually perform these transformations on your initial DataFrame, not untill you trigger these transformations with an **action**. - -## Triggering calculations with actions {#sec-dataframe-actions} - -Therefore, Spark will avoid performing any heavy calculation until such calculation is really needed. But how or when Spark will face this decision? **When it encounters an action**. An action is the tool you have to trigger Spark to actually perform the transformations you have defined. - -> An action instructs Spark to compute the result from a series of transformations. [@chambers2018]. - -There are four kinds of actions in Spark: - -- Showing an output in the console; -- Writing data to some file or data source; -- Collecting data from a Spark DataFrame to native objects in python (or Java, Scala, R, etc.); -- Counting the number of rows in a Spark DataFrame; - -You already know the first type of action, because we used it before with the `show()` method. This `show()` method is an action by itself, because you are asking Spark to show some output to you. So we can make Spark to actually calculate the transformations that defines the `big_values` DataFrame, by asking Spark to show this DataFrame to us. - -```{python} -big_values.show() -``` - -Another very useful action is the `count()` method, that gives you the number of rows in a DataFrame. To be able to count the number of rows in a DataFrame, Spark needs to access this DataFrame in the first place. That is why this `count()` method behaves as an action. Spark will perform the transformations that defines `big_values` to access the actual rows of this DataFrame and count them. - -```{python} -big_values.count() -``` - -Furthermore, sometimes, you want to collect the data of a Spark DataFrame to use it inside python. In other words, sometimes you need to do some work that Spark cannot do by itself. To do so, you collect part of the data that is being generated by Spark, and store it inside a normal python object to use it in a standard python program. - -That is what the `collect()` method do. It transfers all the data of your Spark DataFrame into a standard python list that you can easily access with python. More specifically, you get a python list full of `Row()` values: - -```{python} -data = big_values.collect() -print(data) -``` - -The `take()` method is very similar to `collect()`. But you usually apply `take()` when you need to collect just a small section of your DataFrame (and not the entire thing), like the first `n` rows. - -```{python} -n = 1 -first_row = big_values.take(n) -print(first_row) -``` - -The last action would be the `write` method of a Spark DataFrame, but we will explain this method latter at @sec-import. - -## Understanding narrow and wide transformations {#sec-narrow-wide} - -There are two kinds of transformations in Spark: narrow and wide transformations. Remember, a Spark DataFrame is divided into many small parts (called partitions), and, these parts are spread across the cluster. The basic difference between narrow and wide transformations, is if the transformation forces Spark to read data from multiple partitions to generate a single part of the result of that transformation, or not. - -More technically, narrow transformations are simply transformations where 1 input data (or 1 partition of the input DataFrame) contributes to only 1 partition of the output. - -![Presenting narrow transformations](../Figures/narrow-transformations.png){#fig-narrow-transformations fig-align="center"} - -In other words, each partition of your input DataFrame will be used (*separately*) to generate one individual part of the result of your transformation. As another perspective, you can understand narrow transformations as those where Spark does not need to read the entire input DataFrame to generate a single and small piece of your result. - -A classic example of narrow transformation is a filter. For example, suppose you have three students (Anne, Carls and Mike), and that each one has a bag full of blue, orange and red balls mixed. Now, suppose you asked them to collect all the red balls of these bags, and combined them in a single bag. - -To do this task, Mike does not need to know what balls are inside of the bag of Carls or Anne. He just need to collect the red balls that are solely on his bag. At the end of the task, each student will have a part of the end result (that is, all the red balls that were in his own bag), and they just need to combine all these parts to get the total result. - -The same thing applies to filters in Spark DataFrames. When you filter all the rows where the column `state` is equal to `"Alaska"`, Spark will filter all the rows in each partition separately, and then, will combine all the outputs to get the final result. - -In contrast, wide transformations are the opposite of that. In wide transformations, Spark needs to use more than 1 partition of the input DataFrame to generate a small piece of the result. - -![Presenting wide transformations](../Figures/wide-transformations.png){#fig-wide-transformations fig-align="center"} - -When this kind of transformation happens, each worker node of the cluster needs to share his partition with the others. In other words, what happens is a partition shuffle. Each worker node sends his partition to the others, so they can have access to it, while performing their assigned tasks. - -Partition shuffles are a very popular topic in Apache Spark, because they can be a serious source of inefficiency in your Spark application [@chambers2018]. In more details, when these shuffles happens, Spark needs to write data back to the hard disk of the computer, and this is not a very fast operation. It does not mean that wide transformations are bad or slow, just that the shuffles they are producing can be a problem. - -A classic example of wide operation is a grouped aggregation. For example, lets suppose we had a DataFrame with the daily sales of multiple stores spread across the country, and, we wanted to calculate the total sales per city/region. To calculate the total sales of a specific city, like "São Paulo", Spark would need to find all the rows that corresponds to this city, before adding the values, and these rows can be spread across multiple partitions of the cluster. - - -## The `transf` DataFrame {#sec-transf-dataframe} - -To demonstrate some of the next examples in this chapter, we will use a different DataFrame called `transf`. The data that represents this DataFrame is freely available as a CSV file. You can download this CSV at the repository of this book[^transforming-1]. - -[^transforming-1]: - -With the code below, you can import the data from the `transf.csv` CSV file, to recreate the `transf` DataFrame in your Spark Session: - -```{python} -#| cache: true -from pyspark.sql.types import StructType, StructField -from pyspark.sql.types import DoubleType, StringType -from pyspark.sql.types import LongType, TimestampType, DateType -path = "../Data/transf.csv" -schema = StructType([ - StructField('dateTransfer', DateType(), False), - StructField('datetimeTransfer', TimestampType(), False), - StructField('clientNumber', LongType(), False), - StructField('transferValue', DoubleType(), False), - StructField('transferCurrency', StringType(), False), - StructField('transferID', LongType(), False), - StructField('transferLog', StringType(), False), - StructField('destinationBankNumber', LongType(), False), - StructField('destinationBankBranch', LongType(), False), - StructField('destinationBankAccount', StringType(), False) -]) - -transf = spark.read\ - .csv(path, schema = schema, sep = ";", header = True) -``` - -You could also use the `pandas` library to read the DataFrame directly from GitHub, without having to manually download the file: - -```{python} -#| eval: false -import pandas as pd -url = 'https://raw.githubusercontent.com/' -url = url + 'pedropark99/Introd-pyspark/' -url = url + 'main/Data/transf.csv' - -transf_pd = pd.read_csv( - url, sep = ';', - dtype = str, - keep_default_na = False -) - -transf_pd['transferValue'] = ( - transf_pd['transferValue'].astype('float') -) - -columns_to_int = [ - 'clientNumber', - 'transferID', - 'destinationBankNumber', - 'destinationBankBranch' -] -for column in columns_to_int: - transf_pd[column] = transf_pd[column].astype('int') - -from pyspark.sql import SparkSession -from pyspark.sql.functions import col -spark = SparkSession.builder.getOrCreate() -transf = spark.createDataFrame(transf_pd)\ - .withColumn('dateTransfer', col('dateTransfer').cast('date'))\ - .withColumn( - 'datetimeTransfer', - col('datetimeTransfer').cast('timestamp') - ) -``` - -This `transf` DataFrame contains bank transfer records from a fictitious bank. Before I show you the actual data of this DataFrame, is useful to give you a quick description of each column that it contains: - -- `dateTransfer`: the date when the transfer occurred; -- `datetimeTransfer`: the date and time when the transfer occurred; -- `clientNumber` the unique number that identifies a client of the bank; -- `transferValue`: the nominal value that was transferred; -- `transferCurrency`: the currency of the nominal value transferred; -- `transferID`: an unique ID for the transfer; -- `transferLog`: store any error message that may have appeared during the execution of the transfer; -- `destinationBankNumber`: the transfer destination bank number; -- `destinationBankBranch`: the transfer destination branch number; -- `destinationBankAccount`: the transfer destination account number; - -Now, to see the actual data of this DataFrame, we can use the `show()` action as usual. - -```{python} -transf.show(5) -``` - -As you can see below, this `transf` DataFrame have 2421 rows in total: - -```{python} -transf.count() -``` - -## Filtering rows of your DataFrame - -To filter specific rows of a DataFrame, `pyspark` offers two equivalent DataFrame methods called `where()` and `filter()`. In other words, they both do the same thing, and work in the same way. These methods receives as input a logical expression that translates what you want to filter. - -As a first example, lets suppose you wanted to inspect all the rows from the `transf` DataFrame where `transferValue` is less than 1000. To do so, you can use the following code: - -```{python} -transf\ - .filter("transferValue < 1000")\ - .show(5) -``` - -Writing simple SQL logical expression inside a string is the most easy and "clean" way to create a filter expression in `pyspark`. However, you could also write the same exact expression in a more "pythonic" way, using the `col()` function from `pyspark.sql.functions` module. - -```{python} -from pyspark.sql.functions import col - -transf\ - .filter(col("transferValue") < 1000)\ - .show(5) -``` - -You still have a more verbose alternative, that does not require the `col()` function. With this method, you refer to the specific column using the dot operator (`.`), like in the example below: - -```{python} -#| eval : false -# This will give you the exact -# same result of the examples above -transf\ - .filter(transf.transferValue < 1000) -``` - -### Logical operators available - -As we saw in the previous section, there are two ways to write logical expressions in `pyspark`: 1) write a SQL logical expression inside a string; 2) or, write a python logical expression using the `col()` function. - -If you choose to write a SQL logical expressions in a string, you need to use the logical operators of SQL in your expression (not the logical operators of python). In the other hand, if you choose to write in the "python" way, then, you need to use the logical operators of python instead. - -The logical operators of SQL are described in the table below: - -| Operator | Example of expression| Meaning of the expression | -|----------|----------------------|---------------------------------------------------------| -| \< |`x < y` |is `x` less than `y`? | -| \> |`x > y` |is `x` greater than `y`? | -| \<= |`x <= y` |is `x` less than or equal to `y`? | -| \>= |`x >= y` |is `x` greater than or equal to `y`? | -| == |`x == y` |is `x` equal to `y`? | -| != |`x != y` |is `x` not equal to `y`? | -| in |`x in y` |is `x` one of the values listed in `y`? | -| and |`x and y` |both logical expressions `x` and `y` are true? | -| or |`x or y` |at least one of logical expressions `x` and `y` are true?| -| not |`not x` |is the logical expression `x` not true? | - -: List of logical operators of SQL {#tbl-logical-operators-sql} - - -And, the logical operators of python are described in the table below: - -| Operator | Example of expression| Meaning of the expression | -|----------|----------------------|---------------------------------------------------------| -| \< |`x < y` |is `x` less than `y`? | -| \> |`x > y` |is `x` greater than `y`? | -| \<= |`x <= y` |is `x` less than or equal to `y`? | -| \>= |`x >= y` |is `x` greater than or equal to `y`? | -| == |`x == y` |is `x` equal to `y`? | -| != |`x != y` |is `x` not equal to `y`? | -| & |`x & y` |both logical expressions `x` and `y` are true? | -| \| |`x | y` |at least one of logical expressions `x` and `y` are true?| -| ~ |`~x` |is the logical expression `x` not true? | - -: List of logical operators of python {#tbl-logical-operators-python} - -### Connecting multiple logical expressions - -Sometimes, you need to write more complex logical expressions to correctly describe the rows you are interested in. That is, when you combine multiple logical expressions together. - -As an example, lets suppose you wanted all the rows in `transf` DataFrame from client of number 1297 where the transfer value is smaller than 1000, and the date of the transfer is after 20 of February 2022. These conditions are dependent, that is, they are connected to each other (the client number, the transfer value and the date of the transfer). That is why I used the `and` keyword between each condition in the example below (i.e. to connect these three conditions together). - -```{python} -condition = ''' - transferValue < 1000 - and clientNumber == 1297 - and dateTransfer > '2022-02-20' -''' - -transf\ - .filter(condition)\ - .show() -``` - -I could translate this logical expression into the "pythonic" way (using the `col()` function). However, I would have to surround each individual expression by parentheses, and, use the `&` operator to substitute the `and` keyword. - -```{python} -transf\ - .filter( - (col('transferValue') < 1000) & - (col('clientNumber') == 1297) & - (col('dateTransfer') > '2022-02-20') - )\ - .show() -``` - -This a **very important detail**, because it is very easy to forget. When building your complex logical expressions in the "python" way, always **remember to surround each expression by a pair of parentheses**. Otherwise, you will get a very confusing and useless error message, like this: - -```{python} -#| eval: false -transf\ - .filter( - col('transferValue') < 1000 & - col('clientNumber') == 1297 & - col('dateTransfer') > '2022-02-20' - )\ - .show(5) -``` - - -``` -Py4JError: An error occurred while calling o216.and. Trace: -py4j.Py4JException: Method and([class java.lang.Integer]) does not exist - at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:318) - at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:326) - at py4j.Gateway.invoke(Gateway.java:274) - at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:132) - at py4j.commands.CallCommand.execute(CallCommand.java:79) - at py4j.ClientServerConnection.waitForCommands(ClientServerConnection.java:182) - at py4j.ClientServerConnection.run(ClientServerConnection.java:106) - at java.base/java.lang.Thread.run(Thread.java:829) -``` - -In the above examples, we have logical expressions that are dependent on each other. But, lets suppose these conditions were independent. In this case, we would use the `or` keyword, instead of `and`. Now, Spark will look for every row of `transf` where `transferValue` is smaller than 1000, or, `clientNumber` is equal to 1297, or, `dateTransfer` is greater than 20 of February 2022. - -```{python} -condition = ''' - transferValue < 1000 - or clientNumber == 1297 - or dateTransfer > '2022-02-20' -''' - -transf\ - .filter(condition)\ - .show(5) -``` - -To translate this expression into the pythonic way, we have to substitute the `or` keyword by the `|` operator, and surround each expression by parentheses again: - -```{python} -transf\ - .filter( - (col('transferValue') < 1000) | - (col('clientNumber') == 1297) | - (col('dateTransfer') > '2022-02-20') - )\ - .show(5) -``` - - -You can also increase the complexity of your logical expressions by mixing dependent expressions with independent expressions. For example, to filter all the rows where `dateTransfer` is greater than or equal to 01 of October 2022, and `clientNumber` is either 2727 or 5188, you would have the following code: - -```{python} -condition = ''' - (clientNumber == 2727 or clientNumber == 5188) - and dateTransfer >= '2022-10-01' -''' - -transf\ - .filter(condition)\ - .show(5) -``` - -If you investigate the above condition carefully, maybe, you will identify that this condition could be rewritten in a simpler format, by using the `in` keyword. This way, Spark will look for all the rows where `clientNumber` is equal to one of the listed values (2727 or 5188), and, that `dateTransfer` is greater than or equal to 01 of October 2022. - -```{python} -condition = ''' - clientNumber in (2727, 5188) - and dateTransfer >= '2022-10-01' -''' - -transf\ - .filter(condition)\ - .show(5) -``` - - -### Translating the `in` keyword to the pythonic way - -Python does have a `in` keyword just like SQL, but, this keyword does not work as expected in `pyspark`. To write a logical expression, using the pythonic way, that filters the rows where a column is equal to one of the listed values, you can use the `isin()` method. - -This method belongs to the `Column` class, so, you should always use `isin()` after a column name or a `col()` function. In the example below, we are filtering the rows where `destinationBankNumber` is 290 or 666: - -```{python} -transf\ - .filter(col('destinationBankNumber').isin(290, 666))\ - .show(5) -``` - -### Negating logical conditions - - - -In some cases, is easier to describe what rows you **do not want** in your filter. That is, you want to negate (or invert) your logical expression. For this, SQL provides the `not` keyword, that you place before the logical expression you want to negate. - -For example, we can filter all the rows of `transf` where `clientNumber` is not equal to 3284. Remember, the methods `filter()` and `where()` are equivalents or synonymous (they both mean the same thing). - -```{python} -condition = ''' - not clientNumber == 3284 -''' - -transf\ - .where(condition)\ - .show(5) -``` - -To translate this expression to the pythonic way, we use the `~` operator. However, because we are negating the logical expression as a whole, is important to surround the entire expression with parentheses. - -```{python} -transf\ - .where(~(col('clientNumber') == 3284))\ - .show(5) -``` - -If you forget to add the parentheses, Spark will think you are negating just the column, and not the entire expression. That would not make sense, and, as a result, Spark would throw an error: - -```{python} -#| eval: false -transf\ - .where(~col('clientNumber') == 3284)\ - .show(5) -``` - -``` -AnalysisException: cannot resolve '(NOT clientNumber)' due to data type mismatch: argument 1 requires boolean type, however, 'clientNumber' is of bigint type.; -'Filter (NOT clientNumber#210L = 3284) -``` - -Because the `~` operator is a little discrete and can go unnoticed, I sometimes use a different approach to negate my logical expressions. I make the entire expression equal to `False`. This way, I get all the rows where that particular expression is `False`. This makes my intention more visible in the code, but, is harder to write it. - -```{python} -# Filter all the rows where `clientNumber` is not equal to -# 2727 or 5188. -transf\ - .where( (col('clientNumber').isin(2727, 5188)) == False )\ - .show(5) -``` - - -### Filtering `null` values (i.e. missing data) {#sec-filter-null-values} - -Sometimes, the `null` values play an important role in your filter. You either want to collect all these `null` values, so you can investigate why they are null in the first place, or, you want to completely eliminate them from your DataFrame. - -Because this is a special kind of value in Spark, with a special meaning (the "absence" of a value), you need to use a special syntax to correctly filter these values in your DataFrame. In SQL, you can use the `is` keyword to filter these values: - -```{python} -transf\ - .where('transferLog is null')\ - .show(5) -``` - -However, if you want to remove these values from your DataFrame, then, you can just negate (or invert) the above expression with the `not` keyword, like this: - -```{python} -transf\ - .where('not transferLog is null')\ - .show(5) -``` - -The `is` and `not` keywords in SQL have a special relation. Because you can create the same negation/inversion of the expression by inserting the `not` keyword in the middle of the expression (you can do this too in expressions with the `in` keyword). In other words, you might see, in someone else's code, the same expression above written in this form: - -```{python} -#| eval: false -transf\ - .where('transferLog is not null')\ - .show(5) -``` - -Both forms are equivalent and valid SQL logical expressions. But the latter is a strange version. Because we cannot use the `not` keyword in this manner on other kinds of logical expressions. Normally, we put the `not` keyword **before** the logical expression we want to negate, not in the middle of it. Anyway, just have in mind that this form of logical expression exists, and, that is a perfectly valid one. - -When we translate the above examples to the "pythonic" way, many people tend to use the `null` equivalent of python, that is, the `None` value, in the expression. But as you can see in the result below, this method does not work as expected: - -```{python} -transf\ - .where(col('transferLog') == None)\ - .show(5) -``` - -The correct way to do this in `pyspark`, is to use the `isNull()` method from the `Column` class. - -```{python} -transf\ - .where(col('transferLog').isNull())\ - .show(5) -``` - -If you want to eliminate the `null` values, just use the inverse method `isNotNull()`. - -```{python} -transf\ - .where(col('transferLog').isNotNull())\ - .show(5) -``` - - -### Filtering dates and datetimes in your DataFrame - -Just as a quick side note, when you want to filter rows of your DataFrame that fits into a particular date, you can easily write this particular date as a single string, like in the example below: - -```{python} -df_0702 = transf\ - .where(col('dateTransfer') == '2022-07-02') -``` - -When filtering datetimes you can also write the datetimes as strings, like this: - -```{python} -later_0330_pm = transf.where( - col('datetimeTransfer') > '2022-07-02 03:30:00' -) -``` - -However, is a better practice to write these particular values using the built-in `date` and `datetime` classes of python, like this: - -```{python} -from datetime import date, datetime - -d = date(2022,2,7) -dt = datetime(2022,2,7,3,30,0) - -# Filter all rows where `dateTransfer` -# is equal to "2022-07-02" -df_0702 = transf.where( - col('dateTransfer') == d -) - -# Filter all rows where `datetimeTransfer` -# is greater than "2022-07-02 03:30:00" -later_0330_pm = transf.where( - col('datetimeTransfer') > dt -) -``` - -When you translate the above expressions to SQL, you can also write the date and datetime values as strings. However, is also a good idea to use the `CAST()` SQL function to convert these string values into the correct data type before the actual filter. like this: - -```{python} -condition_d = ''' -dateTransfer == CAST("2022-07-02" AS DATE) -''' - -condition_dt = ''' -dateTransfer > CAST("2022-07-02 03:30:00" AS TIMESTAMP) -''' - -# Filter all rows where `dateTransfer` -# is equal to "2022-07-02" -df_0702 = transf.where(condition_d) - -# Filter all rows where `datetimeTransfer` -# is greater than "2022-07-02 03:30:00" -later_0330_pm = transf.where(condition_dt) -``` - -In other words, with the SQL expression `CAST("2022-07-02 03:30:00" AS TIMESTAMP)` we are telling Spark to convert the literal string `"2022-07-02 03:30:00"` into an actual timestamp value. - -### Searching for a particular pattern in string values {#sec-filter-pattern-search} - -Spark offers different methods to search a particular pattern within a string value. In this section, I want to describe how you can use these different methods to find specific rows in your DataFrame, that fit into the description of these patterns. - -#### Starts with, ends with and contains - -You can use the column methods `startswith()`, `endswith()` and `contains()`, to search for rows where a input string value starts with, ends with, or, contains a particular pattern, respectively. - -These three methods returns a boolean value that indicates if the input string value matched the input pattern that you gave to the method. And you can use these boolean values they return to filter the rows of your DataFrame that fit into the description of these patterns. - -Just as an example, in the following code, we are creating a new DataFrame called `persons`, that contains the description of 3 persons (Alice, Bob and Charlie). And I use these three methods to search for different rows in the DataFrame: - -```{python} -from pyspark.sql.functions import col - -persons = spark.createDataFrame( - [ - ('Alice', 25), - ('Bob', 30), - ('Charlie', 35) - ], - ['name', 'age'] -) - -# Filter the DataFrame to include only rows -# where the "name" column starts with "A" -persons.filter(col('name').startswith('A'))\ - .show() -``` -```{python} -# Filter the DataFrame to include only rows -# where the "name" column ends with "e" -persons.filter(col('name').endswith('e'))\ - .show() -``` -```{python} -# Filter the DataFrame to include only rows -# where the "name" column contains "ob" -persons.filter(col('name').contains('ob'))\ - .show() -``` - - -#### Using regular expressions or SQL LIKE patterns {#sec-filter-regex-pattern} - -In Spark, you can also use a particular "SQL LIKE pattern" or a regular pattern (a.k.a. regex) to filter the rows of a DataFrame, by using the `Column` methods `like()` and `rlike()`. - -In essence, the `like()` method is the `pyspark` equivalent of the `LIKE` SQL operator. As a result, this `like()` method expects a SQL pattern as input. This means that you can use the SQL metacharacters `%` (to match any number of characters) and `_` (to match exactly one character) inside this pattern. - -```{python} -transf\ - .where(col('transferCurrency').like('british%'))\ - .show(5) -``` - -Although the style of pattern matching used by `like()` being very powerful, you might need to use more powerful and flexible patterns. In those cases, you can use the `rlike()` method, which accepts a regular expression as input. In the example below, I am filtering rows where `destinationBankAccount` starts by the characters `54`. - -```{python} -regex = '^54([0-9]{3})-[0-9]$' -transf\ - .where(col('destinationBankAccount').rlike(regex))\ - .show(5) -``` - - - -## Selecting a subset of rows from your DataFrame - -At some point, you might need to use just a small piece of your DataFrame over the next steps of your pipeline, and not the entire thing. For example, you may want to select just the fisrt (or last) 5 rows of this DataFrame, or, maybe, you need to take a random sample of rows from it. - -In this section I will discuss the main methods offered by Spark to deal with these scenarios. Each method returns a subset of rows from the original DataFrame as a result. But each method works differently from the other, and uses a different strategy to retrieve this subset. - -### Limiting the number of rows in your DataFrame - -The `limit()` method is very similar to the `LIMIT` SQL keyword. It limits the number of rows present in your DataFrame to a specific amount. So, if I run `transf.limit(1)` I get a new DataFrame as a result, which have only a single row from the `transf` DataFrame. As you can see below: - -```{python} -single_transfer = transf.limit(1) -single_transfer.show() -``` - -Is worth mentioning that the `limit()` method will always try to limit your original DataFrame, to the first $n$ rows. This means that the command `df.limit(430)` tries to limit the `df` DataFrame to its first 430 rows. - -This also means that 430 is the maximum number of rows that will be taken from the `df` DataFrame. So, if `df` DataFrame has less than 430 lines, like 14 rows, than, nothing will happen, i.e. the result of `df.limit(430)` will be equivalent to the `df` DataFrame itself. - - -### Getting the first/last $n$ rows of your DataFrame - -The methods `head()` and `tail()` allows you to collect the first/last $n$ rows of your DataFrame, respectively. One key aspect from these methods, is that they return a list of `Row` values, instead of a new DataFrame (such as the `limit()` method). You can compare these methods to the `take()` and `collect()` methods that we introduced at @sec-dataframe-actions, because they both produce a list of `Row` values as well. - -Now, the `head()` method produce the same output as the `take()` method. However, these two methods work very differently under the hoods, and, are recommended to be used in different scenarios. - -More specifically, if you have a big DataFrame (i.e. a DataFrame with many rows) is recommended to use `take()` (instead of `head()`) to collect the first $n$ rows from it. Because the `head()` method makes Spark to load the entire DataFrame into the driver's memory, and this can easily cause an "out of memory" situation for big DataFrames. So, use the `head()` method only for small DataFrames. - -In the example below, we are using these methods to get the first and last 2 rows of the `transf` DataFrame: - -```{python} -# First 2 rows of `transf` DataFrame: -first2 = transf.head(2) -# Last 2 rows of `transf` DataFrame: -last2 = transf.tail(2) - -print(last2) -``` - -### Taking a random sample of your DataFrame - -With the `sample()` you can take a random sample of rows from your DataFrame. In other words, this method returns a new DataFrame with a random subset of rows from the original DataFrame. - -This method have three main arguments, which are: - -- `withReplacement`: a boolean value indicating if the samples are with replacement or not. Defaults to `False`; -- `fraction`: the fraction of rows you want to sample from the DataFrame. Have to be a positive float value, from 0 to 1; -- `seed`: an integer representing the seed for the sampling process. This is an optional argument; - - -In the example below, we are trying to get a sample that represents 15% of the original `transf` DataFrame, and using the integer 24 as our sampling seed: - -```{python} -transf_sample = transf.sample(fraction = 0.15, seed = 24) -transf_sample.show(5) -``` - -In other words, the `fraction` argument represents a fraction of the total number of rows in the original DataFrame. Since the `transf` DataFrame have 2421 rows in total, by setting the `fraction` argument to 0.15, we are asking Spark to collect a sample from `transf` that have approximately $0.15 \times 2421 \approx 363$ rows. - -If we calculate the number of rows in `transf_sample` DataFrame, we can see that this DataFrame have a number of rows close to 363: - -```{python} -transf_sample.count() -``` - -Furthermore, the sampling seed is just a way to ask Spark to produce the same random sample of the original DataFrame. That is, the sampling seed makes the result sample fixed. You always get the same random sample when you run the `sample()` method. - -On the other hand, when you do not set the `seed` argument, then, Spark will likely produce a different random sample of the original DataFrame every time you run the `sample()` method. - - -## Managing the columns of your DataFrame - -Sometimes, you need manage or transform the columns you have. For example, you might need to change the order of these columns, or, to delete/rename some of them. To do this, you can use the `select()` and `drop()` methods of your DataFrame. - -The `select()` method works very similarly to the `SELECT` statement of SQL. You basically list all the columns you want to keep in your DataFrame, in the specific order you want. - -```{python} -transf\ - .select( - 'transferID', 'datetimeTransfer', - 'clientNumber', 'transferValue' - )\ - .show(5) -``` - -### Renaming your columns - -Realize in the example above, that the column names can be delivered directly as strings to `select()`. This makes life pretty easy, but, it does not give you extra options. - -For example, you might want to rename some of the columns, and, to do this, you need to use the `alias()` method from `Column` class. Since this is a method from `Column` class, you need to use it after a `col()` or `column()` function, or, after a column name using the dot operator. - -```{python} -transf\ - .select( - 'datetimeTransfer', - col('transferID').alias('ID_of_transfer'), - transf.clientNumber.alias('clientID') - )\ - .show(5) -``` - -By using this `alias()` method, you can rename multiple columns within a single `select()` call. However, you can use the `withColumnRenamed()` method to rename just a single column of your DataFrame. The first argument of this method, is the current name of this column, and, the second argument, is the new name of this column. - -```{python} -transf\ - .withColumnRenamed('clientNumber', 'clientID')\ - .show(5) -``` - - -### Dropping unnecessary columns - -In some cases, your DataFrame just have too many columns and you just want to eliminate a few of them. In a situation like this, you can list the columns you want to drop from your DataFrame, inside the `drop()` method, like this: - -```{python} -transf\ - .drop('dateTransfer', 'clientNumber')\ - .show(5) -``` - - - -### Casting columns to a different data type {#sec-cast-column-type} - -Spark try to do its best when guessing which is correct data type for the columns of your DataFrame. But, obviously, Spark can get it wrong, and, you end up deciding by your own which data type to use for a specific column. - -To explicit transform a column to a specific data type, you can use `cast()` or `astype()` methods inside `select()`. The `astype()` method is just an alias to `cast()`. This `cast()` method is very similar to the `CAST()` function in SQL, and belongs to the `Column` class, so, you should always use it after a column name with the dot operator, or, a `col()`/`column()` function: - -```{python} -transf\ - .select( - 'transferValue', - col('transferValue').cast('long').alias('value_as_integer'), - transf.transferValue.cast('boolean').alias('value_as_boolean') - )\ - .show(5) -``` - -To use `cast()` or `astype()` methods, you give the name of the data type (as a string) to which you want to cast the column. The main available data types to `cast()` or `astype()` are: - -- `'string'`: correspond to `StringType()`; -- `'int'`: correspond to `IntegerType()`; -- `'long'`: correspond to `LongType()`; -- `'double'`: correspond to `DoubleType()`; -- `'date'`: correspond to `DateType()`; -- `'timestamp'`: correspond to `TimestampType()`; -- `'boolean'`: correspond to `BooleanType()`; -- `'array'`: correspond to `ArrayType()`; -- `'dict'`: correspond to `MapType()`; - - -### You can add new columns with `select()` - -When I said that `select()` works in the same way as the `SELECT` statement of SQL, I also meant that you can use `select()` to select columns that do not currently exist in your DataFrame, and add them to the final result. - -For example, I can select a new column (called `by_1000`) containing `value` divided by 1000, like this: - -```{python} -transf\ - .select( - 'transferValue', - (col('transferValue') / 1000).alias('by_1000') - )\ - .show(5) -``` - -This `by_1000` column do not exist in `transf` DataFrame. It was calculated and added to the final result by `select()`. The formula `col('transferValue') / 1000` is the equation that defines what this `by_1000` column is, or, how it should be calculated. - -Besides that, `select()` provides a useful shortcut to reference all the columns of your DataFrame. That is, the star symbol (`*`) from the `SELECT` statement in SQL. This shortcut is very useful when you want to maintain all columns, and, add a new column, at the same time. - -In the example below, we are adding the same `by_1000` column, however, we are bringing all the columns of `transf` together. - -```{python} -transf\ - .select( - '*', - (col('transferValue') / 1000).alias('by_1000') - )\ - .show(5) -``` - - -## Calculating or adding new columns to your DataFrame - -Although you can add new columns with `select()`, this method is not specialized to do that. As consequence, when you want to add many new columns, it can become pretty annoying to write `select('*', new_column)` over and over again. That is why `pyspark` provides a special method called `withColumn()`. - -This method has two arguments. First, is the name of the new column. Second, is the formula (or the equation) that represents this new column. As an example, I could reproduce the same `by_1000` column like this: - -```{python} -transf\ - .withColumn('by_1000', col('transferValue') / 1000)\ - .show(5) -``` - -A lot of the times we use the functions from `pyspark.sql.functions` module to produce such formulas used by `withColumn()`. You can checkout the complete list of functions present in this module, by visiting the official documentation of `pyspark`^[]. - -You will see a lot more examples of formulas and uses of `withColumn()` throughout this book. For now, I just want you to know that `withColumn()` is a method that adds a new column to your DataFrame. The first argument is the name of the new column, and, the second argument is the calculation formula of this new column. - -## Sorting rows of your DataFrame - -Spark, or, `pyspark`, provides the `orderBy()` and `sort()` DataFrame method to sort rows. They both work the same way: you just give the name of the columns that Spark will use to sort the rows. - -In the example below, Spark will sort `transf` according to the values in the `transferValue` column. By default, Spark uses an ascending order while sorting your rows. - -```{python} -transf\ - .orderBy('transferValue')\ - .show(5) -``` - -Just to be clear, you can use the combination between multiple columns to sort your rows. Just give the name of each column (as strings) separated by commas. In the example below, Spark will sort the rows according to `clientNumber` column first, then, is going to sort the rows of each `clientNumber` according to `transferValue` column. - -```{python} -transf\ - .orderBy('clientNumber', 'transferValue')\ - .show(5) -``` - -If you want to use a descending order in a specific column, you need to use the `desc()` method from `Column` class. In the example below, Spark will sort the rows according to `clientNumber` column using an ascending order. However, it will use the values from `transferValue` column in a descending order to sort the rows in each `clientNumber`. - -```{python} -transf\ - .orderBy('clientNumber', col('transferValue').desc())\ - .show(5) -``` - -This means that you can mix ascending orders with descending orders in `orderBy()`. Since the ascending order is the default, if you want to use a descending order in all of the columns, then, you need to apply the `desc()` method to all of them. - - -## Calculating aggregates - -To calculate aggregates of a Spark DataFrame we have two main paths: 1) we can use some standard DataFrame methods, like `count()` or `sum()`, to calculate a single aggregate; 2) or, we can use the `agg()` method to calculate multiple aggregates at the same time. - -### Using standard DataFrame methods - -The Spark DataFrame class by itself provides a single aggregate method, which is `count()`. With this method, you can find out how many rows your DataFrame have. In the example below, we can see that `transf` have 2421 rows. - -```{python} -transf.count() -``` - -However, if you have a **grouped** DataFrame (we will learn more about these objects very soon), `pyspark` provides some more aggregate methods, which are listed below: - -- `mean()`: calculate the average value of each numeric column; -- `sum()`: return the total sum of a column; -- `count()`: count the number of rows; -- `max()`: compute the maximum value of a column; -- `min()`: compute the minimum value of a column; - -This means that you can use any of the above methods after a `groupby()` call, to calculate aggregates *per group* in your Spark DataFrame. For now, lets forget about this "groupby" detail, and learn how to calculate different aggregates by using the `agg()` method. - - -### Using the `agg()` method {#sec-agg-method} - -With the `agg()` method, we can calculate many different aggregates at the same time. In this method, you should provide a expression that describes what aggregate measure you want to calculate. - -In most cases, this "aggregate expression" will be composed of functions from the `pyspark.sql.functions` module. So, having familiarity with the functions present in this module will help you to compose the formulas of your aggregations in `agg()`. - -In the example below, I am using the `sum()` and `mean()` functions from `pyspark.sql.functions` to calculate the total sum and the total mean of the `transferValue` column in the `transf` DataFrame. I am also using the `countDistinct()` function to calculate the number of distinct values in the `clientNumber` column. - -```{python} -import pyspark.sql.functions as F - -transf.agg( - F.sum('transferValue').alias('total_value'), - F.mean('transferValue').alias('mean_value'), - F.countDistinct('clientNumber').alias('number_of_clients') - )\ - .show() -``` - -### Without groups, we calculate a aggregate of the entire DataFrame - -When we do not define any group for the input DataFrame, `agg()` always produce a new DataFrame with one single row (like in the above example). This happens because we are calculating aggregates of the entire DataFrame, that is, a set of single values (or single measures) that summarizes (in some way) the entire DataFrame. - -In the other hand, when we define groups in a DataFrame (by using the `groupby()` method), the calculations performed by `agg()` are made inside each group in the DataFrame. In other words, instead of summarizing the entire DataFrame, `agg()` will produce a set of single values that describes (or summarizes) each group in the DataFrame. - -This means that each row in the resulting DataFrame describes a specific group in the original DataFrame, and, `agg()` usually produces a DataFrame with more than one single row when its calculations are performed by group. Because our DataFrames usually have more than one single group. - - -### Calculating aggregates per group in your DataFrame {#sec-group-by} - -But how you define the groups inside your DataFrame? To do this, we use the `groupby()` and `groupBy()` methods. These methods are both synonymous (they do the same thing). - -These methods, produce a **grouped** DataFrame as a result, or, in more technical words, a object of class `pyspark.sql.group.GroupedData`. You just need to provide, inside this `groupby()` method, the name of the columns that define (or "mark") your groups. - -In the example below, I am creating a grouped DataFrame per client defined in the `clientNumber` column. This means that each distinct value in the `clientNumber` column defines a different group in the DataFrame. - -```{python} -transf_per_client = transf.groupBy('clientNumber') -transf_per_client -``` - -At first, it appears that nothing has changed. But the `groupBy()` method always returns a new object of class `pyspark.sql.group.GroupedData`. As a consequence, we can no longer use some of the DataFrame methods that we used before, like the `show()` method to see the DataFrame. - -That's ok, because we usually do not want to keep this grouped DataFrame for much time. This grouped DataFrame is just a passage (or a bridge) to the result we want, which is, to calculate aggregates **per group** of the DataFrame. - -As an example, I can use the `max()` method, to find out which is the highest value that each user have tranfered, like this: - -```{python} -transf_per_client\ - .max('transferValue')\ - .show(5) -``` - -Remember that, by using standard DataFrame methods (like `max()` in the example above) we can calculate only a single aggregate value. But, with `agg()` we can calculate more than one aggregate value at the same time. Since our `transf_per_client` object is a **grouped** DataFrame, `agg()` will calculate these aggregates per group. - -As an example, if I apply `agg()` with the exact same expressions exposed on @sec-agg-method with the `transf_per_client` DataFrame, instead of a DataFrame with one single row, I get a new DataFrame with nine rows. In each row, I have the total and mean values for a specific user in the input DataFrame. - -```{python} -transf_per_client\ - .agg( - F.sum('transferValue').alias('total_value'), - F.mean('transferValue').alias('mean_value') - )\ - .show(5) -``` - - - - - + +# Transforming your Spark DataFrame - Part 1 {#sec-transforming-dataframes-part1} + + +```{python} +#| include: false +# To execute the next chunks with success, we need to start a Spark Session +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +``` + + +Virtually every data analysis or data pipeline will include some ETL (*Extract, Transform, Load*) process, and the T is an essential part of it. Because, you almost never have an input data, or a initial DataFrame that perfectly fits your needs. + +This means that you always have to transform the initial data that you have, to a specific format that you can use in your analysis. In this chapter, you will learn how to apply some of these basic transformations to your Spark DataFrame. + +## Defining transformations {#sec-df-defining-transformations} + +Spark DataFrames are **immutable**, meaning that, they cannot be directly changed. But you can use an existing DataFrame to create a new one, based on a set of transformations. In other words, you define a new DataFrame as a transformed version of an older DataFrame. + +Basically every `pyspark` program that you write will have such transformations. Spark support many types of transformations, however, in this chapter, we will focus on six basic transformations that you can apply to a DataFrame: + +- Filtering rows based on a logical condition; +- Selecting a subset of rows; +- Selecting specific columns; +- Adding or deleting columns; +- Sorting rows; +- Calculating aggregates; + +Therefore, when you apply one of the above transformations to an existing DataFrame, you will get a new DataFrame as a result. You usually combine multiple transformations together to get your desired result. As a first example, lets get back to the `df` DataFrame: + +```{python} +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +from datetime import date +from pyspark.sql import Row + +data = [ + Row(id = 1, value = 28.3, date = date(2021,1,1)), + Row(id = 2, value = 15.8, date = date(2021,1,1)), + Row(id = 3, value = 20.1, date = date(2021,1,2)), + Row(id = 4, value = 12.6, date = date(2021,1,3)) +] + +df = spark.createDataFrame(data) +``` + +In the example below, to create a new DataFrame called `big_values`, we begin with the `df` DataFrame, then, we filter its rows where `value` is greater than 15, then, we select `date` and `value` columns, then, we sort the rows based on the `value` column. So, this set of sequential transformations (filter it, then, select it, then, order it, ...) defines what this new `big_values` DataFrame is. + +```{python} +from pyspark.sql.functions import col +# You define a chain of transformations to +# create a new DataFrame +big_values = df\ + .filter(col('value') > 15)\ + .select('date', 'value')\ + .orderBy('value') +``` + +Thus, to apply a transformation to an existing DataFrame, we use DataFrame methods such as `select()`, `filter()`, `orderBy()` and many others. Remember, these are methods from the python class that defines Spark DataFrame's (i.e. the `pyspark.sql.dataframe.DataFrame` class). + +This means that you can apply these transformations only to Spark DataFrames, and no other kind of python object. For example, if you try to use the `orderBy()` method in a standard python string (i.e. an object of class `str`), you will get an `AttributeError` error. Because this class of object in python, does not have a `orderBy()` method: + +```{python} +#| eval: false +s = "A python string" +s.orderBy('value') +``` + +``` +Traceback (most recent call last): + File "", line 1, in +AttributeError: 'str' object has no attribute 'orderBy' +``` + +Each one of these DataFrame methods create a *lazily evaluated transformation*. Once again, we see the **lazy** aspect of Spark doing its work here. All these transformation methods are lazily evaluated, meaning that, Spark will only check if they make sense with the initial DataFrame that you have. Spark will not actually perform these transformations on your initial DataFrame, not untill you trigger these transformations with an **action**. + +## Triggering calculations with actions {#sec-dataframe-actions} + +Therefore, Spark will avoid performing any heavy calculation until such calculation is really needed. But how or when Spark will face this decision? **When it encounters an action**. An action is the tool you have to trigger Spark to actually perform the transformations you have defined. + +> An action instructs Spark to compute the result from a series of transformations. [@chambers2018]. + +There are four kinds of actions in Spark: + +- Showing an output in the console; +- Writing data to some file or data source; +- Collecting data from a Spark DataFrame to native objects in python (or Java, Scala, R, etc.); +- Counting the number of rows in a Spark DataFrame; + +You already know the first type of action, because we used it before with the `show()` method. This `show()` method is an action by itself, because you are asking Spark to show some output to you. So we can make Spark to actually calculate the transformations that defines the `big_values` DataFrame, by asking Spark to show this DataFrame to us. + +```{python} +big_values.show() +``` + +Another very useful action is the `count()` method, that gives you the number of rows in a DataFrame. To be able to count the number of rows in a DataFrame, Spark needs to access this DataFrame in the first place. That is why this `count()` method behaves as an action. Spark will perform the transformations that defines `big_values` to access the actual rows of this DataFrame and count them. + +```{python} +big_values.count() +``` + +Furthermore, sometimes, you want to collect the data of a Spark DataFrame to use it inside python. In other words, sometimes you need to do some work that Spark cannot do by itself. To do so, you collect part of the data that is being generated by Spark, and store it inside a normal python object to use it in a standard python program. + +That is what the `collect()` method do. It transfers all the data of your Spark DataFrame into a standard python list that you can easily access with python. More specifically, you get a python list full of `Row()` values: + +```{python} +data = big_values.collect() +print(data) +``` + +The `take()` method is very similar to `collect()`. But you usually apply `take()` when you need to collect just a small section of your DataFrame (and not the entire thing), like the first `n` rows. + +```{python} +n = 1 +first_row = big_values.take(n) +print(first_row) +``` + +The last action would be the `write` method of a Spark DataFrame, but we will explain this method latter at @sec-import. + +## Understanding narrow and wide transformations {#sec-narrow-wide} + +There are two kinds of transformations in Spark: narrow and wide transformations. Remember, a Spark DataFrame is divided into many small parts (called partitions), and, these parts are spread across the cluster. The basic difference between narrow and wide transformations, is if the transformation forces Spark to read data from multiple partitions to generate a single part of the result of that transformation, or not. + +More technically, narrow transformations are simply transformations where 1 input data (or 1 partition of the input DataFrame) contributes to only 1 partition of the output. + +![Presenting narrow transformations](../Figures/narrow-transformations.png){#fig-narrow-transformations fig-align="center"} + +In other words, each partition of your input DataFrame will be used (*separately*) to generate one individual part of the result of your transformation. As another perspective, you can understand narrow transformations as those where Spark does not need to read the entire input DataFrame to generate a single and small piece of your result. + +A classic example of narrow transformation is a filter. For example, suppose you have three students (Anne, Carls and Mike), and that each one has a bag full of blue, orange and red balls mixed. Now, suppose you asked them to collect all the red balls of these bags, and combined them in a single bag. + +To do this task, Mike does not need to know what balls are inside of the bag of Carls or Anne. He just need to collect the red balls that are solely on his bag. At the end of the task, each student will have a part of the end result (that is, all the red balls that were in his own bag), and they just need to combine all these parts to get the total result. + +The same thing applies to filters in Spark DataFrames. When you filter all the rows where the column `state` is equal to `"Alaska"`, Spark will filter all the rows in each partition separately, and then, will combine all the outputs to get the final result. + +In contrast, wide transformations are the opposite of that. In wide transformations, Spark needs to use more than 1 partition of the input DataFrame to generate a small piece of the result. + +![Presenting wide transformations](../Figures/wide-transformations.png){#fig-wide-transformations fig-align="center"} + +When this kind of transformation happens, each worker node of the cluster needs to share his partition with the others. In other words, what happens is a partition shuffle. Each worker node sends his partition to the others, so they can have access to it, while performing their assigned tasks. + +Partition shuffles are a very popular topic in Apache Spark, because they can be a serious source of inefficiency in your Spark application [@chambers2018]. In more details, when these shuffles happens, Spark needs to write data back to the hard disk of the computer, and this is not a very fast operation. It does not mean that wide transformations are bad or slow, just that the shuffles they are producing can be a problem. + +A classic example of wide operation is a grouped aggregation. For example, lets suppose we had a DataFrame with the daily sales of multiple stores spread across the country, and, we wanted to calculate the total sales per city/region. To calculate the total sales of a specific city, like "São Paulo", Spark would need to find all the rows that corresponds to this city, before adding the values, and these rows can be spread across multiple partitions of the cluster. + + +## The `transf` DataFrame {#sec-transf-dataframe} + +To demonstrate some of the next examples in this chapter, we will use a different DataFrame called `transf`. The data that represents this DataFrame is freely available as a CSV file. You can download this CSV at the repository of this book[^transforming-1]. + +[^transforming-1]: + +With the code below, you can import the data from the `transf.csv` CSV file, to recreate the `transf` DataFrame in your Spark Session: + +```{python} +#| cache: true +from pyspark.sql.types import StructType, StructField +from pyspark.sql.types import DoubleType, StringType +from pyspark.sql.types import LongType, TimestampType, DateType +path = "../Data/transf.csv" +schema = StructType([ + StructField('dateTransfer', DateType(), False), + StructField('datetimeTransfer', TimestampType(), False), + StructField('clientNumber', LongType(), False), + StructField('transferValue', DoubleType(), False), + StructField('transferCurrency', StringType(), False), + StructField('transferID', LongType(), False), + StructField('transferLog', StringType(), False), + StructField('destinationBankNumber', LongType(), False), + StructField('destinationBankBranch', LongType(), False), + StructField('destinationBankAccount', StringType(), False) +]) + +transf = spark.read\ + .csv(path, schema = schema, sep = ";", header = True) +``` + +You could also use the `pandas` library to read the DataFrame directly from GitHub, without having to manually download the file: + +```{python} +#| eval: false +import pandas as pd +url = 'https://raw.githubusercontent.com/' +url = url + 'pedropark99/Introd-pyspark/' +url = url + 'main/Data/transf.csv' + +transf_pd = pd.read_csv( + url, sep = ';', + dtype = str, + keep_default_na = False +) + +transf_pd['transferValue'] = ( + transf_pd['transferValue'].astype('float') +) + +columns_to_int = [ + 'clientNumber', + 'transferID', + 'destinationBankNumber', + 'destinationBankBranch' +] +for column in columns_to_int: + transf_pd[column] = transf_pd[column].astype('int') + +from pyspark.sql import SparkSession +from pyspark.sql.functions import col +spark = SparkSession.builder.getOrCreate() +transf = spark.createDataFrame(transf_pd)\ + .withColumn('dateTransfer', col('dateTransfer').cast('date'))\ + .withColumn( + 'datetimeTransfer', + col('datetimeTransfer').cast('timestamp') + ) +``` + +This `transf` DataFrame contains bank transfer records from a fictitious bank. Before I show you the actual data of this DataFrame, is useful to give you a quick description of each column that it contains: + +- `dateTransfer`: the date when the transfer occurred; +- `datetimeTransfer`: the date and time when the transfer occurred; +- `clientNumber` the unique number that identifies a client of the bank; +- `transferValue`: the nominal value that was transferred; +- `transferCurrency`: the currency of the nominal value transferred; +- `transferID`: an unique ID for the transfer; +- `transferLog`: store any error message that may have appeared during the execution of the transfer; +- `destinationBankNumber`: the transfer destination bank number; +- `destinationBankBranch`: the transfer destination branch number; +- `destinationBankAccount`: the transfer destination account number; + +Now, to see the actual data of this DataFrame, we can use the `show()` action as usual. + +```{python} +transf.show(5) +``` + +As you can see below, this `transf` DataFrame have 2421 rows in total: + +```{python} +transf.count() +``` + +## Filtering rows of your DataFrame + +To filter specific rows of a DataFrame, `pyspark` offers two equivalent DataFrame methods called `where()` and `filter()`. In other words, they both do the same thing, and work in the same way. These methods receives as input a logical expression that translates what you want to filter. + +As a first example, lets suppose you wanted to inspect all the rows from the `transf` DataFrame where `transferValue` is less than 1000. To do so, you can use the following code: + +```{python} +transf\ + .filter("transferValue < 1000")\ + .show(5) +``` + +Writing simple SQL logical expression inside a string is the most easy and "clean" way to create a filter expression in `pyspark`. However, you could also write the same exact expression in a more "pythonic" way, using the `col()` function from `pyspark.sql.functions` module. + +```{python} +from pyspark.sql.functions import col + +transf\ + .filter(col("transferValue") < 1000)\ + .show(5) +``` + +You still have a more verbose alternative, that does not require the `col()` function. With this method, you refer to the specific column using the dot operator (`.`), like in the example below: + +```{python} +#| eval : false +# This will give you the exact +# same result of the examples above +transf\ + .filter(transf.transferValue < 1000) +``` + +### Logical operators available + +As we saw in the previous section, there are two ways to write logical expressions in `pyspark`: 1) write a SQL logical expression inside a string; 2) or, write a python logical expression using the `col()` function. + +If you choose to write a SQL logical expressions in a string, you need to use the logical operators of SQL in your expression (not the logical operators of python). In the other hand, if you choose to write in the "python" way, then, you need to use the logical operators of python instead. + +The logical operators of SQL are described in the table below: + +| Operator | Example of expression| Meaning of the expression | +|----------|----------------------|---------------------------------------------------------| +| \< |`x < y` |is `x` less than `y`? | +| \> |`x > y` |is `x` greater than `y`? | +| \<= |`x <= y` |is `x` less than or equal to `y`? | +| \>= |`x >= y` |is `x` greater than or equal to `y`? | +| == |`x == y` |is `x` equal to `y`? | +| != |`x != y` |is `x` not equal to `y`? | +| in |`x in y` |is `x` one of the values listed in `y`? | +| and |`x and y` |both logical expressions `x` and `y` are true? | +| or |`x or y` |at least one of logical expressions `x` and `y` are true?| +| not |`not x` |is the logical expression `x` not true? | + +: List of logical operators of SQL {#tbl-logical-operators-sql} + + +And, the logical operators of python are described in the table below: + +| Operator | Example of expression| Meaning of the expression | +|----------|----------------------|---------------------------------------------------------| +| \< |`x < y` |is `x` less than `y`? | +| \> |`x > y` |is `x` greater than `y`? | +| \<= |`x <= y` |is `x` less than or equal to `y`? | +| \>= |`x >= y` |is `x` greater than or equal to `y`? | +| == |`x == y` |is `x` equal to `y`? | +| != |`x != y` |is `x` not equal to `y`? | +| & |`x & y` |both logical expressions `x` and `y` are true? | +| \| |`x | y` |at least one of logical expressions `x` and `y` are true?| +| ~ |`~x` |is the logical expression `x` not true? | + +: List of logical operators of python {#tbl-logical-operators-python} + +### Connecting multiple logical expressions + +Sometimes, you need to write more complex logical expressions to correctly describe the rows you are interested in. That is, when you combine multiple logical expressions together. + +As an example, lets suppose you wanted all the rows in `transf` DataFrame from client of number 1297 where the transfer value is smaller than 1000, and the date of the transfer is after 20 of February 2022. These conditions are dependent, that is, they are connected to each other (the client number, the transfer value and the date of the transfer). That is why I used the `and` keyword between each condition in the example below (i.e. to connect these three conditions together). + +```{python} +condition = ''' + transferValue < 1000 + and clientNumber == 1297 + and dateTransfer > '2022-02-20' +''' + +transf\ + .filter(condition)\ + .show() +``` + +I could translate this logical expression into the "pythonic" way (using the `col()` function). However, I would have to surround each individual expression by parentheses, and, use the `&` operator to substitute the `and` keyword. + +```{python} +transf\ + .filter( + (col('transferValue') < 1000) & + (col('clientNumber') == 1297) & + (col('dateTransfer') > '2022-02-20') + )\ + .show() +``` + +This a **very important detail**, because it is very easy to forget. When building your complex logical expressions in the "python" way, always **remember to surround each expression by a pair of parentheses**. Otherwise, you will get a very confusing and useless error message, like this: + +```{python} +#| eval: false +transf\ + .filter( + col('transferValue') < 1000 & + col('clientNumber') == 1297 & + col('dateTransfer') > '2022-02-20' + )\ + .show(5) +``` + + +``` +Py4JError: An error occurred while calling o216.and. Trace: +py4j.Py4JException: Method and([class java.lang.Integer]) does not exist + at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:318) + at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:326) + at py4j.Gateway.invoke(Gateway.java:274) + at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:132) + at py4j.commands.CallCommand.execute(CallCommand.java:79) + at py4j.ClientServerConnection.waitForCommands(ClientServerConnection.java:182) + at py4j.ClientServerConnection.run(ClientServerConnection.java:106) + at java.base/java.lang.Thread.run(Thread.java:829) +``` + +In the above examples, we have logical expressions that are dependent on each other. But, lets suppose these conditions were independent. In this case, we would use the `or` keyword, instead of `and`. Now, Spark will look for every row of `transf` where `transferValue` is smaller than 1000, or, `clientNumber` is equal to 1297, or, `dateTransfer` is greater than 20 of February 2022. + +```{python} +condition = ''' + transferValue < 1000 + or clientNumber == 1297 + or dateTransfer > '2022-02-20' +''' + +transf\ + .filter(condition)\ + .show(5) +``` + +To translate this expression into the pythonic way, we have to substitute the `or` keyword by the `|` operator, and surround each expression by parentheses again: + +```{python} +transf\ + .filter( + (col('transferValue') < 1000) | + (col('clientNumber') == 1297) | + (col('dateTransfer') > '2022-02-20') + )\ + .show(5) +``` + + +You can also increase the complexity of your logical expressions by mixing dependent expressions with independent expressions. For example, to filter all the rows where `dateTransfer` is greater than or equal to 01 of October 2022, and `clientNumber` is either 2727 or 5188, you would have the following code: + +```{python} +condition = ''' + (clientNumber == 2727 or clientNumber == 5188) + and dateTransfer >= '2022-10-01' +''' + +transf\ + .filter(condition)\ + .show(5) +``` + +If you investigate the above condition carefully, maybe, you will identify that this condition could be rewritten in a simpler format, by using the `in` keyword. This way, Spark will look for all the rows where `clientNumber` is equal to one of the listed values (2727 or 5188), and, that `dateTransfer` is greater than or equal to 01 of October 2022. + +```{python} +condition = ''' + clientNumber in (2727, 5188) + and dateTransfer >= '2022-10-01' +''' + +transf\ + .filter(condition)\ + .show(5) +``` + + +### Translating the `in` keyword to the pythonic way + +Python does have a `in` keyword just like SQL, but, this keyword does not work as expected in `pyspark`. To write a logical expression, using the pythonic way, that filters the rows where a column is equal to one of the listed values, you can use the `isin()` method. + +This method belongs to the `Column` class, so, you should always use `isin()` after a column name or a `col()` function. In the example below, we are filtering the rows where `destinationBankNumber` is 290 or 666: + +```{python} +transf\ + .filter(col('destinationBankNumber').isin(290, 666))\ + .show(5) +``` + +### Negating logical conditions + + + +In some cases, is easier to describe what rows you **do not want** in your filter. That is, you want to negate (or invert) your logical expression. For this, SQL provides the `not` keyword, that you place before the logical expression you want to negate. + +For example, we can filter all the rows of `transf` where `clientNumber` is not equal to 3284. Remember, the methods `filter()` and `where()` are equivalents or synonymous (they both mean the same thing). + +```{python} +condition = ''' + not clientNumber == 3284 +''' + +transf\ + .where(condition)\ + .show(5) +``` + +To translate this expression to the pythonic way, we use the `~` operator. However, because we are negating the logical expression as a whole, is important to surround the entire expression with parentheses. + +```{python} +transf\ + .where(~(col('clientNumber') == 3284))\ + .show(5) +``` + +If you forget to add the parentheses, Spark will think you are negating just the column, and not the entire expression. That would not make sense, and, as a result, Spark would throw an error: + +```{python} +#| eval: false +transf\ + .where(~col('clientNumber') == 3284)\ + .show(5) +``` + +``` +AnalysisException: cannot resolve '(NOT clientNumber)' due to data type mismatch: argument 1 requires boolean type, however, 'clientNumber' is of bigint type.; +'Filter (NOT clientNumber#210L = 3284) +``` + +Because the `~` operator is a little discrete and can go unnoticed, I sometimes use a different approach to negate my logical expressions. I make the entire expression equal to `False`. This way, I get all the rows where that particular expression is `False`. This makes my intention more visible in the code, but, is harder to write it. + +```{python} +# Filter all the rows where `clientNumber` is not equal to +# 2727 or 5188. +transf\ + .where( (col('clientNumber').isin(2727, 5188)) == False )\ + .show(5) +``` + + +### Filtering `null` values (i.e. missing data) {#sec-filter-null-values} + +Sometimes, the `null` values play an important role in your filter. You either want to collect all these `null` values, so you can investigate why they are null in the first place, or, you want to completely eliminate them from your DataFrame. + +Because this is a special kind of value in Spark, with a special meaning (the "absence" of a value), you need to use a special syntax to correctly filter these values in your DataFrame. In SQL, you can use the `is` keyword to filter these values: + +```{python} +transf\ + .where('transferLog is null')\ + .show(5) +``` + +However, if you want to remove these values from your DataFrame, then, you can just negate (or invert) the above expression with the `not` keyword, like this: + +```{python} +transf\ + .where('not transferLog is null')\ + .show(5) +``` + +The `is` and `not` keywords in SQL have a special relation. Because you can create the same negation/inversion of the expression by inserting the `not` keyword in the middle of the expression (you can do this too in expressions with the `in` keyword). In other words, you might see, in someone else's code, the same expression above written in this form: + +```{python} +#| eval: false +transf\ + .where('transferLog is not null')\ + .show(5) +``` + +Both forms are equivalent and valid SQL logical expressions. But the latter is a strange version. Because we cannot use the `not` keyword in this manner on other kinds of logical expressions. Normally, we put the `not` keyword **before** the logical expression we want to negate, not in the middle of it. Anyway, just have in mind that this form of logical expression exists, and, that is a perfectly valid one. + +When we translate the above examples to the "pythonic" way, many people tend to use the `null` equivalent of python, that is, the `None` value, in the expression. But as you can see in the result below, this method does not work as expected: + +```{python} +transf\ + .where(col('transferLog') == None)\ + .show(5) +``` + +The correct way to do this in `pyspark`, is to use the `isNull()` method from the `Column` class. + +```{python} +transf\ + .where(col('transferLog').isNull())\ + .show(5) +``` + +If you want to eliminate the `null` values, just use the inverse method `isNotNull()`. + +```{python} +transf\ + .where(col('transferLog').isNotNull())\ + .show(5) +``` + + +### Filtering dates and datetimes in your DataFrame + +Just as a quick side note, when you want to filter rows of your DataFrame that fits into a particular date, you can easily write this particular date as a single string, like in the example below: + +```{python} +df_0702 = transf\ + .where(col('dateTransfer') == '2022-07-02') +``` + +When filtering datetimes you can also write the datetimes as strings, like this: + +```{python} +later_0330_pm = transf.where( + col('datetimeTransfer') > '2022-07-02 03:30:00' +) +``` + +However, is a better practice to write these particular values using the built-in `date` and `datetime` classes of python, like this: + +```{python} +from datetime import date, datetime + +d = date(2022,2,7) +dt = datetime(2022,2,7,3,30,0) + +# Filter all rows where `dateTransfer` +# is equal to "2022-07-02" +df_0702 = transf.where( + col('dateTransfer') == d +) + +# Filter all rows where `datetimeTransfer` +# is greater than "2022-07-02 03:30:00" +later_0330_pm = transf.where( + col('datetimeTransfer') > dt +) +``` + +When you translate the above expressions to SQL, you can also write the date and datetime values as strings. However, is also a good idea to use the `CAST()` SQL function to convert these string values into the correct data type before the actual filter. like this: + +```{python} +condition_d = ''' +dateTransfer == CAST("2022-07-02" AS DATE) +''' + +condition_dt = ''' +dateTransfer > CAST("2022-07-02 03:30:00" AS TIMESTAMP) +''' + +# Filter all rows where `dateTransfer` +# is equal to "2022-07-02" +df_0702 = transf.where(condition_d) + +# Filter all rows where `datetimeTransfer` +# is greater than "2022-07-02 03:30:00" +later_0330_pm = transf.where(condition_dt) +``` + +In other words, with the SQL expression `CAST("2022-07-02 03:30:00" AS TIMESTAMP)` we are telling Spark to convert the literal string `"2022-07-02 03:30:00"` into an actual timestamp value. + +### Searching for a particular pattern in string values {#sec-filter-pattern-search} + +Spark offers different methods to search a particular pattern within a string value. In this section, I want to describe how you can use these different methods to find specific rows in your DataFrame, that fit into the description of these patterns. + +#### Starts with, ends with and contains + +You can use the column methods `startswith()`, `endswith()` and `contains()`, to search for rows where a input string value starts with, ends with, or, contains a particular pattern, respectively. + +These three methods returns a boolean value that indicates if the input string value matched the input pattern that you gave to the method. And you can use these boolean values they return to filter the rows of your DataFrame that fit into the description of these patterns. + +Just as an example, in the following code, we are creating a new DataFrame called `persons`, that contains the description of 3 persons (Alice, Bob and Charlie). And I use these three methods to search for different rows in the DataFrame: + +```{python} +from pyspark.sql.functions import col + +persons = spark.createDataFrame( + [ + ('Alice', 25), + ('Bob', 30), + ('Charlie', 35) + ], + ['name', 'age'] +) + +# Filter the DataFrame to include only rows +# where the "name" column starts with "A" +persons.filter(col('name').startswith('A'))\ + .show() +``` +```{python} +# Filter the DataFrame to include only rows +# where the "name" column ends with "e" +persons.filter(col('name').endswith('e'))\ + .show() +``` +```{python} +# Filter the DataFrame to include only rows +# where the "name" column contains "ob" +persons.filter(col('name').contains('ob'))\ + .show() +``` + + +#### Using regular expressions or SQL LIKE patterns {#sec-filter-regex-pattern} + +In Spark, you can also use a particular "SQL LIKE pattern" or a regular pattern (a.k.a. regex) to filter the rows of a DataFrame, by using the `Column` methods `like()` and `rlike()`. + +In essence, the `like()` method is the `pyspark` equivalent of the `LIKE` SQL operator. As a result, this `like()` method expects a SQL pattern as input. This means that you can use the SQL metacharacters `%` (to match any number of characters) and `_` (to match exactly one character) inside this pattern. + +```{python} +transf\ + .where(col('transferCurrency').like('british%'))\ + .show(5) +``` + +Although the style of pattern matching used by `like()` being very powerful, you might need to use more powerful and flexible patterns. In those cases, you can use the `rlike()` method, which accepts a regular expression as input. In the example below, I am filtering rows where `destinationBankAccount` starts by the characters `54`. + +```{python} +regex = '^54([0-9]{3})-[0-9]$' +transf\ + .where(col('destinationBankAccount').rlike(regex))\ + .show(5) +``` + + + +## Selecting a subset of rows from your DataFrame + +At some point, you might need to use just a small piece of your DataFrame over the next steps of your pipeline, and not the entire thing. For example, you may want to select just the fisrt (or last) 5 rows of this DataFrame, or, maybe, you need to take a random sample of rows from it. + +In this section I will discuss the main methods offered by Spark to deal with these scenarios. Each method returns a subset of rows from the original DataFrame as a result. But each method works differently from the other, and uses a different strategy to retrieve this subset. + +### Limiting the number of rows in your DataFrame + +The `limit()` method is very similar to the `LIMIT` SQL keyword. It limits the number of rows present in your DataFrame to a specific amount. So, if I run `transf.limit(1)` I get a new DataFrame as a result, which have only a single row from the `transf` DataFrame. As you can see below: + +```{python} +single_transfer = transf.limit(1) +single_transfer.show() +``` + +Is worth mentioning that the `limit()` method will always try to limit your original DataFrame, to the first $n$ rows. This means that the command `df.limit(430)` tries to limit the `df` DataFrame to its first 430 rows. + +This also means that 430 is the maximum number of rows that will be taken from the `df` DataFrame. So, if `df` DataFrame has less than 430 lines, like 14 rows, than, nothing will happen, i.e. the result of `df.limit(430)` will be equivalent to the `df` DataFrame itself. + + +### Getting the first/last $n$ rows of your DataFrame + +The methods `head()` and `tail()` allows you to collect the first/last $n$ rows of your DataFrame, respectively. One key aspect from these methods, is that they return a list of `Row` values, instead of a new DataFrame (such as the `limit()` method). You can compare these methods to the `take()` and `collect()` methods that we introduced at @sec-dataframe-actions, because they both produce a list of `Row` values as well. + +Now, the `head()` method produce the same output as the `take()` method. However, these two methods work very differently under the hoods, and, are recommended to be used in different scenarios. + +More specifically, if you have a big DataFrame (i.e. a DataFrame with many rows) is recommended to use `take()` (instead of `head()`) to collect the first $n$ rows from it. Because the `head()` method makes Spark to load the entire DataFrame into the driver's memory, and this can easily cause an "out of memory" situation for big DataFrames. So, use the `head()` method only for small DataFrames. + +In the example below, we are using these methods to get the first and last 2 rows of the `transf` DataFrame: + +```{python} +# First 2 rows of `transf` DataFrame: +first2 = transf.head(2) +# Last 2 rows of `transf` DataFrame: +last2 = transf.tail(2) + +print(last2) +``` + +### Taking a random sample of your DataFrame + +With the `sample()` you can take a random sample of rows from your DataFrame. In other words, this method returns a new DataFrame with a random subset of rows from the original DataFrame. + +This method have three main arguments, which are: + +- `withReplacement`: a boolean value indicating if the samples are with replacement or not. Defaults to `False`; +- `fraction`: the fraction of rows you want to sample from the DataFrame. Have to be a positive float value, from 0 to 1; +- `seed`: an integer representing the seed for the sampling process. This is an optional argument; + + +In the example below, we are trying to get a sample that represents 15% of the original `transf` DataFrame, and using the integer 24 as our sampling seed: + +```{python} +transf_sample = transf.sample(fraction = 0.15, seed = 24) +transf_sample.show(5) +``` + +In other words, the `fraction` argument represents a fraction of the total number of rows in the original DataFrame. Since the `transf` DataFrame have 2421 rows in total, by setting the `fraction` argument to 0.15, we are asking Spark to collect a sample from `transf` that have approximately $0.15 \times 2421 \approx 363$ rows. + +If we calculate the number of rows in `transf_sample` DataFrame, we can see that this DataFrame have a number of rows close to 363: + +```{python} +transf_sample.count() +``` + +Furthermore, the sampling seed is just a way to ask Spark to produce the same random sample of the original DataFrame. That is, the sampling seed makes the result sample fixed. You always get the same random sample when you run the `sample()` method. + +On the other hand, when you do not set the `seed` argument, then, Spark will likely produce a different random sample of the original DataFrame every time you run the `sample()` method. + + +## Managing the columns of your DataFrame + +Sometimes, you need manage or transform the columns you have. For example, you might need to change the order of these columns, or, to delete/rename some of them. To do this, you can use the `select()` and `drop()` methods of your DataFrame. + +The `select()` method works very similarly to the `SELECT` statement of SQL. You basically list all the columns you want to keep in your DataFrame, in the specific order you want. + +```{python} +transf\ + .select( + 'transferID', 'datetimeTransfer', + 'clientNumber', 'transferValue' + )\ + .show(5) +``` + +### Renaming your columns + +Realize in the example above, that the column names can be delivered directly as strings to `select()`. This makes life pretty easy, but, it does not give you extra options. + +For example, you might want to rename some of the columns, and, to do this, you need to use the `alias()` method from `Column` class. Since this is a method from `Column` class, you need to use it after a `col()` or `column()` function, or, after a column name using the dot operator. + +```{python} +transf\ + .select( + 'datetimeTransfer', + col('transferID').alias('ID_of_transfer'), + transf.clientNumber.alias('clientID') + )\ + .show(5) +``` + +By using this `alias()` method, you can rename multiple columns within a single `select()` call. However, you can use the `withColumnRenamed()` method to rename just a single column of your DataFrame. The first argument of this method, is the current name of this column, and, the second argument, is the new name of this column. + +```{python} +transf\ + .withColumnRenamed('clientNumber', 'clientID')\ + .show(5) +``` + + +### Dropping unnecessary columns + +In some cases, your DataFrame just have too many columns and you just want to eliminate a few of them. In a situation like this, you can list the columns you want to drop from your DataFrame, inside the `drop()` method, like this: + +```{python} +transf\ + .drop('dateTransfer', 'clientNumber')\ + .show(5) +``` + + + +### Casting columns to a different data type {#sec-cast-column-type} + +Spark try to do its best when guessing which is correct data type for the columns of your DataFrame. But, obviously, Spark can get it wrong, and, you end up deciding by your own which data type to use for a specific column. + +To explicit transform a column to a specific data type, you can use `cast()` or `astype()` methods inside `select()`. The `astype()` method is just an alias to `cast()`. This `cast()` method is very similar to the `CAST()` function in SQL, and belongs to the `Column` class, so, you should always use it after a column name with the dot operator, or, a `col()`/`column()` function: + +```{python} +transf\ + .select( + 'transferValue', + col('transferValue').cast('long').alias('value_as_integer'), + transf.transferValue.cast('boolean').alias('value_as_boolean') + )\ + .show(5) +``` + +To use `cast()` or `astype()` methods, you give the name of the data type (as a string) to which you want to cast the column. The main available data types to `cast()` or `astype()` are: + +- `'string'`: correspond to `StringType()`; +- `'int'`: correspond to `IntegerType()`; +- `'long'`: correspond to `LongType()`; +- `'double'`: correspond to `DoubleType()`; +- `'date'`: correspond to `DateType()`; +- `'timestamp'`: correspond to `TimestampType()`; +- `'boolean'`: correspond to `BooleanType()`; +- `'array'`: correspond to `ArrayType()`; +- `'dict'`: correspond to `MapType()`; + + +### You can add new columns with `select()` + +When I said that `select()` works in the same way as the `SELECT` statement of SQL, I also meant that you can use `select()` to select columns that do not currently exist in your DataFrame, and add them to the final result. + +For example, I can select a new column (called `by_1000`) containing `value` divided by 1000, like this: + +```{python} +transf\ + .select( + 'transferValue', + (col('transferValue') / 1000).alias('by_1000') + )\ + .show(5) +``` + +This `by_1000` column do not exist in `transf` DataFrame. It was calculated and added to the final result by `select()`. The formula `col('transferValue') / 1000` is the equation that defines what this `by_1000` column is, or, how it should be calculated. + +Besides that, `select()` provides a useful shortcut to reference all the columns of your DataFrame. That is, the star symbol (`*`) from the `SELECT` statement in SQL. This shortcut is very useful when you want to maintain all columns, and, add a new column, at the same time. + +In the example below, we are adding the same `by_1000` column, however, we are bringing all the columns of `transf` together. + +```{python} +transf\ + .select( + '*', + (col('transferValue') / 1000).alias('by_1000') + )\ + .show(5) +``` + + +## Calculating or adding new columns to your DataFrame + +Although you can add new columns with `select()`, this method is not specialized to do that. As consequence, when you want to add many new columns, it can become pretty annoying to write `select('*', new_column)` over and over again. That is why `pyspark` provides a special method called `withColumn()`. + +This method has two arguments. First, is the name of the new column. Second, is the formula (or the equation) that represents this new column. As an example, I could reproduce the same `by_1000` column like this: + +```{python} +transf\ + .withColumn('by_1000', col('transferValue') / 1000)\ + .show(5) +``` + +A lot of the times we use the functions from `pyspark.sql.functions` module to produce such formulas used by `withColumn()`. You can checkout the complete list of functions present in this module, by visiting the official documentation of `pyspark`^[]. + +You will see a lot more examples of formulas and uses of `withColumn()` throughout this book. For now, I just want you to know that `withColumn()` is a method that adds a new column to your DataFrame. The first argument is the name of the new column, and, the second argument is the calculation formula of this new column. + +## Sorting rows of your DataFrame + +Spark, or, `pyspark`, provides the `orderBy()` and `sort()` DataFrame method to sort rows. They both work the same way: you just give the name of the columns that Spark will use to sort the rows. + +In the example below, Spark will sort `transf` according to the values in the `transferValue` column. By default, Spark uses an ascending order while sorting your rows. + +```{python} +transf\ + .orderBy('transferValue')\ + .show(5) +``` + +Just to be clear, you can use the combination between multiple columns to sort your rows. Just give the name of each column (as strings) separated by commas. In the example below, Spark will sort the rows according to `clientNumber` column first, then, is going to sort the rows of each `clientNumber` according to `transferValue` column. + +```{python} +transf\ + .orderBy('clientNumber', 'transferValue')\ + .show(5) +``` + +If you want to use a descending order in a specific column, you need to use the `desc()` method from `Column` class. In the example below, Spark will sort the rows according to `clientNumber` column using an ascending order. However, it will use the values from `transferValue` column in a descending order to sort the rows in each `clientNumber`. + +```{python} +transf\ + .orderBy('clientNumber', col('transferValue').desc())\ + .show(5) +``` + +This means that you can mix ascending orders with descending orders in `orderBy()`. Since the ascending order is the default, if you want to use a descending order in all of the columns, then, you need to apply the `desc()` method to all of them. + + +## Calculating aggregates + +To calculate aggregates of a Spark DataFrame we have two main paths: 1) we can use some standard DataFrame methods, like `count()` or `sum()`, to calculate a single aggregate; 2) or, we can use the `agg()` method to calculate multiple aggregates at the same time. + +### Using standard DataFrame methods + +The Spark DataFrame class by itself provides a single aggregate method, which is `count()`. With this method, you can find out how many rows your DataFrame have. In the example below, we can see that `transf` have 2421 rows. + +```{python} +transf.count() +``` + +However, if you have a **grouped** DataFrame (we will learn more about these objects very soon), `pyspark` provides some more aggregate methods, which are listed below: + +- `mean()`: calculate the average value of each numeric column; +- `sum()`: return the total sum of a column; +- `count()`: count the number of rows; +- `max()`: compute the maximum value of a column; +- `min()`: compute the minimum value of a column; + +This means that you can use any of the above methods after a `groupby()` call, to calculate aggregates *per group* in your Spark DataFrame. For now, lets forget about this "groupby" detail, and learn how to calculate different aggregates by using the `agg()` method. + + +### Using the `agg()` method {#sec-agg-method} + +With the `agg()` method, we can calculate many different aggregates at the same time. In this method, you should provide a expression that describes what aggregate measure you want to calculate. + +In most cases, this "aggregate expression" will be composed of functions from the `pyspark.sql.functions` module. So, having familiarity with the functions present in this module will help you to compose the formulas of your aggregations in `agg()`. + +In the example below, I am using the `sum()` and `mean()` functions from `pyspark.sql.functions` to calculate the total sum and the total mean of the `transferValue` column in the `transf` DataFrame. I am also using the `countDistinct()` function to calculate the number of distinct values in the `clientNumber` column. + +```{python} +import pyspark.sql.functions as F + +transf.agg( + F.sum('transferValue').alias('total_value'), + F.mean('transferValue').alias('mean_value'), + F.countDistinct('clientNumber').alias('number_of_clients') + )\ + .show() +``` + +### Without groups, we calculate a aggregate of the entire DataFrame + +When we do not define any group for the input DataFrame, `agg()` always produce a new DataFrame with one single row (like in the above example). This happens because we are calculating aggregates of the entire DataFrame, that is, a set of single values (or single measures) that summarizes (in some way) the entire DataFrame. + +In the other hand, when we define groups in a DataFrame (by using the `groupby()` method), the calculations performed by `agg()` are made inside each group in the DataFrame. In other words, instead of summarizing the entire DataFrame, `agg()` will produce a set of single values that describes (or summarizes) each group in the DataFrame. + +This means that each row in the resulting DataFrame describes a specific group in the original DataFrame, and, `agg()` usually produces a DataFrame with more than one single row when its calculations are performed by group. Because our DataFrames usually have more than one single group. + + +### Calculating aggregates per group in your DataFrame {#sec-group-by} + +But how you define the groups inside your DataFrame? To do this, we use the `groupby()` and `groupBy()` methods. These methods are both synonymous (they do the same thing). + +These methods, produce a **grouped** DataFrame as a result, or, in more technical words, a object of class `pyspark.sql.group.GroupedData`. You just need to provide, inside this `groupby()` method, the name of the columns that define (or "mark") your groups. + +In the example below, I am creating a grouped DataFrame per client defined in the `clientNumber` column. This means that each distinct value in the `clientNumber` column defines a different group in the DataFrame. + +```{python} +transf_per_client = transf.groupBy('clientNumber') +transf_per_client +``` + +At first, it appears that nothing has changed. But the `groupBy()` method always returns a new object of class `pyspark.sql.group.GroupedData`. As a consequence, we can no longer use some of the DataFrame methods that we used before, like the `show()` method to see the DataFrame. + +That's ok, because we usually do not want to keep this grouped DataFrame for much time. This grouped DataFrame is just a passage (or a bridge) to the result we want, which is, to calculate aggregates **per group** of the DataFrame. + +As an example, I can use the `max()` method, to find out which is the highest value that each user have tranfered, like this: + +```{python} +transf_per_client\ + .max('transferValue')\ + .show(5) +``` + +Remember that, by using standard DataFrame methods (like `max()` in the example above) we can calculate only a single aggregate value. But, with `agg()` we can calculate more than one aggregate value at the same time. Since our `transf_per_client` object is a **grouped** DataFrame, `agg()` will calculate these aggregates per group. + +As an example, if I apply `agg()` with the exact same expressions exposed on @sec-agg-method with the `transf_per_client` DataFrame, instead of a DataFrame with one single row, I get a new DataFrame with nine rows. In each row, I have the total and mean values for a specific user in the input DataFrame. + +```{python} +transf_per_client\ + .agg( + F.sum('transferValue').alias('total_value'), + F.mean('transferValue').alias('mean_value') + )\ + .show(5) +``` + + + + + diff --git a/Chapters/06-dataframes-sql.qmd b/Chapters/06-dataframes-sql.qmd index 90b23974..1bd629a5 100644 --- a/Chapters/06-dataframes-sql.qmd +++ b/Chapters/06-dataframes-sql.qmd @@ -1,681 +1,681 @@ -# Working with SQL in `pyspark` {#sec-dataframe-sql-chapter} - - -```{python} -#| include: false -from pyspark.sql import SparkSession -spark = SparkSession\ - .builder\ - .config("spark.sql.catalogImplementation","hive")\ - .getOrCreate() - -sc = spark.sparkContext -sc.setLogLevel("OFF") - -from datetime import date -from pyspark.sql import Row - -data = [ - Row(id = 1, value = 28.3, date = date(2021,1,1)), - Row(id = 2, value = 15.8, date = date(2021,1,1)), - Row(id = 3, value = 20.1, date = date(2021,1,2)), - Row(id = 4, value = 12.6, date = date(2021,1,3)) -] - -df = spark.createDataFrame(data) -``` - -As we discussed in @sec-introd-spark, Spark is a **multi-language** engine for large-scale data processing. This means that we can build our Spark application using many different languages (like Java, Scala, Python and R). Furthermore, you can also use the Spark SQL module of Spark to translate all of your transformations into pure SQL queries. - -In more details, Spark SQL is a Spark module for structured data processing [@sparkdoc]. Because this module works with Spark DataFrames, using SQL, you can translate all transformations that you build with the DataFrame API into a SQL query. - -Therefore, you can mix python code with SQL queries very easily in Spark. Virtually all transformations exposed in python throughout this book, can be translated into a SQL query using this module of Spark. We will focus a lot on this exchange between Python and SQL in this chapter. - -However, this also means that the Spark SQL module does not handle the transformations produced by the unstructured APIs of Spark, i.e. the Dataset API. Since the Dataset API is not available in `pyspark`, it is not covered in this book. - - - -## The `sql()` method as the main entrypoint - -The main entrypoint, that is, the main bridge that connects Spark SQL to Python is the `sql()` method of your Spark Session. This method accepts a SQL query inside a string as input, and will always output a new Spark DataFrame as result. That is why I used the `show()` method right after `sql()`, in the example below, to see what this new Spark DataFrame looked like. - -As a first example, lets look at a very basic SQL query, that just select a list of code values: - -```sql -SELECT * -FROM ( - VALUES (11), (31), (24), (35) -) AS List(Codes) -``` - -To run the above SQL query, and see its results, I must write this query into a string, and give this string to the `sql()` method of my Spark Session. Then, I use the `show()` action to see the actual result rows of data generated by this query: - -```{python} -sql_query = ''' -SELECT * -FROM ( - VALUES (11), (31), (24), (35) -) AS List(Codes) -''' - -spark.sql(sql_query).show() -``` - -If you want to execute a very short SQL query, is fine to write it inside a single pair of quotation marks (for example `"SELECT * FROM sales.per_day"`). However, since SQL queries usually take multiple lines, you can write your SQL query inside a python docstring (created by a pair of three quotation marks), like in the example above. - -Having this in mind, every time you want to execute a SQL query, you can use this `sql()` method from the object that holds your Spark Session. So the `sql()` method is the bridge between `pyspark` and SQL. You give it a pure SQL query inside a string, and, Spark will execute it, considering your Spark SQL context. - -### A single SQL statement per run - -Is worth pointing out that, although being the main bridge between Python and SQL, the Spark Session `sql()` method can execute only a single SQL statement per run. This means that if you try to execute two sequential SQL statements at the same time with `sql()`, then, Spark SQL will automatically raise a `ParseException` error, which usually complains about an "extra input". - -In the example below, we are doing two very basic steps to SQL. We first create a dummy database with a `CREATE DATABASE` statement, then, we ask SQL to use this new database that we created as the default database of the current session, with a `USE` statement. - -```sql -CREATE DATABASE `dummy`; -USE `dummy`; -``` - -If we try to execute these two steps at once, by using the `sql()` method, Spark complains with a `ParseException`, indicating that we have a sytax error in our query, like in the example below: - -```python -query = ''' -CREATE DATABASE `dummy`; -USE `dummy`; -''' - -spark.sql(query).show() -``` - -``` -Traceback (most recent call last): - File "", line 1, in - File "/opt/spark/python/pyspark/sql/session.py", line 1034, in sql - return DataFrame(self._jsparkSession.sql(sqlQuery), self) - File "/opt/spark/python/lib/py4j-0.10.9.5-src.zip/py4j/java_gateway.py", line 1321, in __call__ - File "/opt/spark/python/pyspark/sql/utils.py", line 196, in deco - raise converted from None -pyspark.sql.utils.ParseException: -Syntax error at or near 'USE': extra input 'USE'(line 3, pos 0) - -== SQL == - -CREATE DATABASE `dummy`; -USE `dummy`; -^^^ -``` - -However, there is nothing wrong about the above SQL statements. They are both correct and valid SQL statements, both semantically and syntactically. In other words, the case above results in a `ParseException` error solely because it contains two different SQL statements. - -In essence, the `spark.sql()` method always expect a single SQL statement as input, and, therefore, it will try to parse this input query as a single SQL statement. If it finds multiple SQL statements inside this input string, the method will automatically raise the above error. - -Now, be aware that some SQL queries can take multiple lines, but, **still be considered a single SQL statement**. A query started by a `WITH` clause is usually a good example of a SQL query that can group multiple `SELECT` statements, but still be considered a single SQL statement as a whole: - -```sql --- The query below would execute --- perfectly fine inside spark.sql(): -WITH table1 AS ( - SELECT * - FROM somewhere -), - -filtering AS ( - SELECT * - FROM table1 - WHERE dateOfTransaction == CAST("2022-02-02" AS DATE) -) - -SELECT * -FROM filtering -``` - -Another example of a usually big and complex query, that can take multiple lines but still be considered a single SQL statement, is a single `SELECT` statement that selects multiple subqueries that are nested together, like this: - -```sql --- The query below would also execute --- perfectly fine inside spark.sql(): -SELECT * -FROM ( - -- First subquery. - SELECT * - FROM ( - -- Second subquery.. - SELECT * - FROM ( - -- Third subquery... - SELECT * - FROM ( - -- Ok this is enough.... - ) - ) - ) -) -``` - -However, if we had multiple separate `SELECT` statements that were independent on each other, like in the example below, then, `spark.sql()` would issue an `ParseException` error if we tried to execute these three `SELECT` statements inside the same input string. - -```sql --- These three statements CANNOT be executed --- at the same time inside spark.sql() -SELECT * FROM something; -SELECT * FROM somewhere; -SELECT * FROM sometime; -``` - -As a conclusion, if you want to easily execute multiple statements, you can use a `for` loop which calls `spark.sql()` for each single SQL statement: - -```{python} -#| eval: false -statements = '''SELECT * FROM something; -SELECT * FROM somewhere; -SELECT * FROM sometime;''' - -statements = statements.split('\n') -for statement in statements: - spark.sql(statement) -``` - - -## Creating SQL Tables in Spark - -In real life jobs at the industry, is very likely that your data will be allocated inside a SQL-like database. Spark can connect to a external SQL database through JDBC/ODBC connections, or, read tables from Apache Hive. This way, you can sent your SQL queries to this external database. - -However, to expose more simplified examples throughout this chapter, we will use `pyspark` to create a simple temporary SQL table in our Spark SQL context, and use this temporary SQL table in our examples of SQL queries. This way, we avoid the work to connect to some existing SQL database, and, still get to learn how to use SQL queries in `pyspark`. - -First, lets create our Spark Session. You can see below that I used the `config()` method to set a specific option of the session called `catalogImplementation` to the value `"hive"`. This option controls the implementation of the Spark SQL Catalog, which is a core part of the SQL functionality of Spark [^06-dataframes-sql-catalog]. - -[^06-dataframes-sql-catalog]: There are some very good materials explaining what is the Spark SQL Catalog, and which is the purpose of it. For a soft introduction, I recommend Sarfaraz Hussain post: . For a more technical introduction, see . - -Spark usually complain with a `AnalysisException` error when you try to create SQL tables with this option undefined (or not configured). So, if you decide to follow the examples of this chapter, please always set this option right at the start of your script[^06-dataframes-sql-1]. - -[^06-dataframes-sql-1]: You can learn more about why this specific option is necessary by looking at this StackOverflow post: . - -```{python} -#| eval: false -from pyspark.sql import SparkSession -spark = SparkSession\ - .builder\ - .config("spark.sql.catalogImplementation","hive")\ - .getOrCreate() -``` - - - -### `TABLEs` versus `VIEWs` - -To run a complete SQL query over any Spark DataFrame, you must register this DataFrame in the Spark SQL Catalog of your Spark Session. You can register a Spark DataFrame into this catalog as a physical SQL `TABLE`, or, as a SQL `VIEW`. - -If you are familiar with the SQL language and Relational DataBase Management Systems - RDBMS (such as MySQL), you probably already heard of these two types (`TABLE` or `VIEW`) of SQL objects. But if not, we will explain each one in this section. Is worth pointing out that choosing between these two types **does not affect** your code, or your transformations in any way. It just affect the way that Spark SQL stores the table/DataFrame itself. - -#### `VIEWs` are stored as SQL queries or memory pointers - -When you register a DataFrame as a SQL `VIEW`, the query to produce this DataFrame is stored, not the DataFrame itself. There are also cases where Spark store a memory pointer instead, that points to the memory adress where this DataFrame is stored in memory. In this perspective, Spark SQL use this pointer every time it needs to access this DataFrame. - -Therefore, when you call (or access) this SQL `VIEW` inside your SQL queries (for example, with a `SELECT * FROM` statement), Spark SQL will automatically get this SQL `VIEW` "on the fly" (or "on runtime"), by executing the query necessary to build the initial DataFrame that you stored inside this `VIEW`, or, if this DataFrame is already stored in memory, Spark will look at the specific memory address it is stored. - -In other words, when you create a SQL `VIEW`, Spark SQL do not store any physical data or rows of the DataFrame. It just stores the SQL query necessary to build your DataFrame. In some way, you can interpret any SQL `VIEW` as an abbreviation to a SQL query, or a "nickname" to an already existing DataFrame. - -As a consequence, for most "use case scenarios", SQL `VIEWs` are easier to manage inside your data pipelines. Because you usually do not have to update them. Since they are calculated from scratch, at the moment you request for them, a SQL `VIEW` will always translate the most recent version of the data. - -This means that the concept of a `VIEW` in Spark SQL is very similar to the concept of a `VIEW` in other types of SQL databases, such as the MySQL database. If you read the [official documentation for the `CREATE VIEW` statement at MySQL](https://dev.mysql.com/doc/refman/8.0/en/create-view.html)[^my-sql-view] you will get a similar idea of a `VIEW`: - -[^my-sql-view]: - -> The select_statement is a SELECT statement that provides the definition of the view. (Selecting from the view selects, in effect, using the SELECT statement.) ... - -The above statement, tells us that selecing a `VIEW` causes the SQL engine to execute the expression defined at `select_statement` using the `SELECT` statement. In other words, in MySQL, a SQL `VIEW` is basically an alias to an existing `SELECT` statement. - -#### Differences in Spark SQL `VIEW`s - -Although a Spark SQL `VIEW` being very similar to other types of SQL `VIEW` (such as the MySQL type), on Spark applications, SQL `VIEW`s are usually registered as `TEMPORARY VIEW`s^[I will explain more about the meaning of "temporary" at @sec-temp-persist.] instead of standard (and "persistent") SQL `VIEW` as in MySQL. - -At MySQL there is no notion of a "temporary view", although other popular kinds of SQL databases do have it, [such as the PostGreSQL database](https://www.postgresql.org/docs/current/sql-createview.html)[^postgress-view]. So, a temporary view is not a exclusive concept of Spark SQL. However, is a special type of SQL `VIEW` that is not present in all popular kinds of SQL databases. - -[^postgress-view]: - -In other words, both Spark SQL and MySQL support the `CREATE VIEW` statement. In contrast, statements such as `CREATE TEMPORARY VIEW` and `CREATE OR REPLACE TEMPORARY VIEW` are available in Spark SQL, but not in MySQL. - -#### Registering a Spark SQL `VIEW` in the Spark SQL Catalog - -In `pyspark`, you can register a Spark DataFrame as a temporary SQL `VIEW` with the `createTempView()` or `createOrReplaceTempView()` DataFrame methods. These methods are equivalent to `CREATE TEMPORARY VIEW` and `CREATE OR REPLACE TEMPORARY VIEW` SQL statements of Spark SQL, respectively. - -In essence, these methods register your Spark DataFrame as a temporary SQL `VIEW`, and have a single input, which is the name you want to give to this new SQL `VIEW` you are creating inside a string: - -```{python} -#| include: false -df.createOrReplaceTempView('example_view') -``` - -```{python} -#| eval: false -# To save the `df` DataFrame as a SQL VIEW, -# use one of the methods below: -df.createTempView('example_view') -df.createOrReplaceTempView('example_view') -``` - -After we executed the above statements, we can now access and use the `df` DataFrame in any SQL query, like in the example below: - -```{python} -sql_query = ''' -SELECT * -FROM example_view -WHERE value > 20 -''' - -spark.sql(sql_query).show() -``` - -So you use the `createTempView()` or `createOrReplaceTempView()` methods when you want to make a Spark DataFrame created in `pyspark` (that is, a python object), available to Spark SQL. - -Besides that, you also have the option to create a temporary `VIEW` by using pure SQL statements trough the `sql()` method. However, when you create a temporary `VIEW` using pure SQL, you can only use (inside this `VIEW`) native SQL objects that are already stored inside your Spark SQL Context. - -This means that you cannot make a Spark DataFrame created in python available to Spark SQL, by using a pure SQL inside the `sql()` method. To do this, you have to use the DataFrame methods `createTempView()` and `createOrReplaceTempView()`. - -As an example, the query below uses pure SQL statements to creates the `active_brazilian_users` temporary `VIEW`, which selects an existing SQL table called `hubspot.user_mails`: - -```sql -CREATE TEMPORARY VIEW active_brazilian_users AS -SELECT * -FROM hubspot.user_mails -WHERE state == 'Active' -AND country_location == 'Brazil' -``` - -Temporary `VIEW`s like the one above (which are created from pure SQL statements being executed inside the `sql()` method) are kind of unusual in Spark SQL. Because you can easily avoid the work of creating a `VIEW` by using Common Table Expression (CTE) on a `WITH` statement, like in the query below: - -```sql -WITH active_brazilian_users AS ( - SELECT * - FROM hubspot.user_mails - WHERE state == 'Active' - AND country_location == 'Brazil' -) - -SELECT A.user, SUM(sale_value), B.user_email -FROM sales.sales_per_user AS A -INNER JOIN active_brazilian_users AS B -GROUP BY A.user, B.user_email -``` - -Just as a another example, you can also run a SQL query that creates a persistent SQL `VIEW` (that is, without the `TEMPORARY` clause). In the example below, I am saving the simple query that I showed at the beginning of this chapter inside a `VIEW` called `list_of_codes`. This `CREATE VIEW` statement, register a persistent SQL `VIEW` in the SQL Catalog. - -```{python} -sql_query = ''' -CREATE OR REPLACE VIEW list_of_codes AS -SELECT * -FROM ( - VALUES (11), (31), (24), (35) -) AS List(Codes) -''' - -spark.sql(sql_query) -``` - - -Now, every time I want to use this SQL query that selects a list of codes, I can use this `list_of_codes` as a shortcut: - -```{python} -spark.sql("SELECT * FROM list_of_codes").show() -``` - - - -#### `TABLEs` are stored as physical tables - -In the other hand, SQL `TABLEs` are the "opposite" of SQL `VIEWs`. That is, SQL `TABLEs` are stored as physical tables inside the SQL database. In other words, each one of the rows of your table are stored inside the SQL database. - -Because of this characteristic, when dealing with huges amounts of data, SQL `TABLEs` are usually faster to load and transform. Because you just have to read the data stored on the database, you do not need to calculate it from scratch every time you use it. - -But, as a collateral effect, you usually have to physically update the data inside this `TABLE`, by using, for example, `INSERT INTO` statements. In other words, when dealing with SQL `TABLE`'s you usually need to create (and manage) data pipelines that are responsible for periodically update and append new data to this SQL `TABLE`, and this might be a big burden to your process. - -#### Registering Spark SQL `TABLE`s in the Spark SQL Catalog - -In `pyspark`, you can register a Spark DataFrame as a SQL `TABLE` with the `write.saveAsTable()` DataFrame method. This method accepts, as first input, the name you want to give to this SQL `TABLE` inside a string. - -```{python} -#| eval: false -# To save the `df` DataFrame as a SQL TABLE: -df.write.saveAsTable('example_table') -``` - -As you expect, after we registered the DataFrame as a SQL table, we can now run any SQL query over `example_table`, like in the example below: - -```{python} -#| eval: false -spark.sql("SELECT SUM(value) FROM example_table").show() -``` - -``` -+----------+ -|sum(value)| -+----------+ -| 76.8| -+----------+ -``` - -You can also use pure SQL queries to create an empty SQL `TABLE` from scratch, and then, feed this table with data by using `INSERT INTO` statements. In the example below, we create a new database called `examples`, and, inside of it, a table called `code_brazil_states`. Then, we use multiple `INSERT INTO` statements to populate this table with few rows of data. - -```{python} -#| include: false -#| eval: false -spark.sql('DROP DATABASE IF EXISTS `examples` cascade') -``` - - -```{python} -#| eval: false -all_statements = '''CREATE DATABASE `examples`; -USE `examples`; -CREATE TABLE `code_brazil_states` (`code` INT, `state_name` STRING); -INSERT INTO `code_brazil_states` VALUES (31, "Minas Gerais"); -INSERT INTO `code_brazil_states` VALUES (15, "Pará"); -INSERT INTO `code_brazil_states` VALUES (41, "Paraná"); -INSERT INTO `code_brazil_states` VALUES (25, "Paraíba");''' - -statements = all_statements.split('\n') -for statement in statements: - spark.sql(statement) -``` - -We can see now this new physical SQL table using a simple query like this: - -```{python} -#| eval: false -spark\ - .sql('SELECT * FROM examples.code_brazil_states')\ - .show() -``` - -``` -+----+------------+ -|code| state_name| -+----+------------+ -| 41| Paraná| -| 31|Minas Gerais| -| 15| Pará| -| 25| Paraíba| -+----+------------+ -``` - -#### The different save "modes" {#sec-sql-save-modes} - -There are other arguments that you might want to use in the `write.saveAsTable()` method, like the `mode` argument. This argument controls how Spark will save your data into the database. By default, `write.saveAsTable()` uses the `mode = "error"` by default. In this mode, Spark will look if the table you referenced already exists, before it saves your data. - -Let's get back to the code we showed before (which is reproduced below). In this code, we asked Spark to save our data into a table called `"example_table"`. Spark will look if a table with this name already exists. If it does, then, Spark will raise an error that will stop the process (i.e. no data is saved). - -```{python} -#| eval: false -df.write.saveAsTable('example_table') -``` - -Raising an error when you do not want to accidentaly affect a SQL table that already exist, is a good practice. But, you might want to not raise an error in this situation. In case like this, you might want to just ignore the operation, and get on with your life. For cases like this, `write.saveAsTable()` offers the `mode = "ignore"`. - -So, in the code example below, we are trying to save the `df` DataFrame into a table called `example_table`. But if this `example_table` already exist, Spark will just silently ignore this operation, and will not save any data. - -```{python} -#| eval: false -df.write.saveAsTable('example_table', mode = "ignore") -``` - -In addition, `write.saveAsTable()` offers two more different modes, which are `mode = "overwrite"` and `mode = "append"`. When you use one these two modes, Spark **will always save your data**, no matter if the SQL table you are trying to save into already exist or not. In essence, these two modes control whether Spark will delete or keep previous rows of the SQL table intact, before it saves any new data. - -When you use `mode = "overwrite"`, Spark will automatically rewrite/replace the entire table with the current data of your DataFrame. In contrast, when you use `mode = "append"`, Spark will just append (or insert, or add) this data into the table. The subfigures at @fig-save-table-modes demonstrates these two modes visually. - -::: {#fig-save-table-modes layout-nrow=2} - -![Mode overwrite](./../Figures/table-save-modes-overwrite.png){#fig-mode-overwrite} - -![Mode append](./../Figures/table-save-modes-append.png){#fig-mode-append} - -How Spark saves your data with different "save modes" -::: - - -You can see the full list of arguments of `write.SaveAsTable()`, and their description by [looking at the documentation]()^[]. - - - -### Temporary versus Persistent sources {#sec-temp-persist} - -When you register any Spark DataFrame as a SQL `TABLE`, it becomes a persistent source. Because the contents, the data, the rows of the table are stored on disk, inside a database, and can be accessed any time, even after you close or restart your computer (or your Spark Session). In other words, it becomes "persistent" as in the sense of "it does not die". - -As another example, when you save a specific SQL query as a SQL `VIEW` with the `CREATE VIEW` statement, this SQL `VIEW` is saved inside the database. As a consequence, it becomes a persistent source as well, and can be accessed and reused in other Spark Sessions, unless you explicit drop (or "remove") this SQL `VIEW` with a `DROP VIEW` statement. - -However, with methods like `createTempView()` and `createOrReplaceTempView()` you register your Spark DataFrame as a *temporary* SQL `VIEW`. This means that the life (or time of existence) of this `VIEW` is tied to your Spark Session. In other words, it will exist in your Spark SQL Catalog only for the duration of your Spark Session. When you close your Spark Session, this `VIEW` just dies. When you start a new Spark Session it does not exist anymore. As a result, you have to register your DataFrame again at the catalog to use it one more time. - - -### Spark SQL Catalog is the bridge between SQL and `pyspark` - -Remember, to run SQL queries over any Spark DataFrame, you must register this DataFrame into the Spark SQL Catalog. Because of it, this Spark SQL Catalog works almost as the bridge that connects the python objects that hold your Spark DataFrames to the Spark SQL context. Without it, Spark SQL will not find your Spark DataFrames. As a result, it can not run any SQL query over it. - -When you try to use a DataFrame that is not currently registered at the Spark SQL Catalog, Spark will automatically raise a `AnalysisException`, like in the example below: - -```python -spark\ - .sql("SELECT * FROM this.does_not_exist")\ - .show() -``` - -``` -AnalysisException: Table or view not found -``` - -The methods `saveAsTable()`, `createTempView()` and `createOrReplaceTempView()` are the main methods to register your Spark DataFrame into this Spark SQL Catalog. This means that you have to use one of these methods before you run any SQL query over your Spark DataFrame. - - - - -## The `penguins` DataFrame - -Over the next examples in this chapter, we will explore the `penguins` DataFrame. This is the `penguins` dataset from the [`palmerpenguins` R library](https://allisonhorst.github.io/palmerpenguins/)[^palmer]. It stores data of multiple measurements of penguin species from the islands in Palmer Archipelago. - -[^palmer]: - -These measurements include size (flipper length, body mass, bill dimensions) and sex, and they were collected by researchers of the Antarctica LTER program, a member of the Long Term Ecological Research Network. If you want to understand more about each field/column present in this dataset, I recommend you to read the [official documentation of this dataset](https://allisonhorst.github.io/palmerpenguins/reference/penguins.html)[^penguins_doc]. - - -[^penguins_doc]: - - -To get this data, you can download the CSV file called `penguins.csv` (remember that this CSV can be downloaded from the book repository[^06-dataframes-sql-2]). In the code below, I am reading this CSV file and creating a Spark DataFrame with its data. Then, I register this Spark DataFrame as a SQL temporary view (called `penguins_view`) using the `createOrReplaceTempView()` method. - - -[^06-dataframes-sql-2]: - -```{python} -path = "../Data/penguins.csv" -penguins = spark.read\ - .csv(path, header = True) - -penguins.createOrReplaceTempView('penguins_view') -``` - -After these commands, I have now a SQL view called `penguins_view` registered in my Spark SQL context, which I can query it, using pure SQL: - -```{python} -spark.sql('SELECT * FROM penguins_view').show(5) -``` - - -## Selecting your Spark DataFrames - -An obvious way to access any SQL `TABLE` or `VIEW` registered in your Spark SQL context, is to select it, through a simple `SELECT * FROM` statement, like we saw in the previous examples. However, it can be quite annoying to type "SELECT * FROM" every time you want to use a SQL `TABLE` or `VIEW` in Spark SQL. - -That is why Spark offers a shortcut to us, which is the `table()` method of your Spark session. In other words, the code `spark.table("table_name")` is a shortcut to `spark.sql("SELECT * FROM table_name")`. They both mean the same thing. For example, we could access `penguins_view` as: - -```{python} -spark\ - .table('penguins_view')\ - .show(5) -``` - - -## Executing SQL expressions - -As I noted at @sec-columns-related-expressions, columns of a Spark DataFrame (or objects of class `Column`) are closely related to expressions. As a result, you usually use and execute expressions in Spark when you want to transform (or mutate) columns of a Spark DataFrame. - -This is no different for SQL expressions. A SQL expression is basically any expression you would use on the `SELECT` statement of your SQL query. As you can probably guess, since they are used in the `SELECT` statement, these expressions are used to transform columns of a Spark DataFrame. - -There are many column transformations that are particularly verbose and expensive to write in "pure" `pyspark`. But you can use a SQL expression in your favor, to translate this transformation into a more short and concise form. Virtually any expression you write in `pyspark` can be translated into a SQL expression. - -To execute a SQL expression, you give this expression inside a string to the `expr()` function from the `pyspark.sql.functions` module. Since expressions are used to transform columns, you normally use the `expr()` function inside a `withColumn()` or a `select()` DataFrame method, like in the example below: - -```{python} -from pyspark.sql.functions import expr - -spark\ - .table('penguins_view')\ - .withColumn( - 'specie_island', - expr("CONCAT(species, '_', island)") - )\ - .withColumn( - 'sex_short', - expr("CASE WHEN sex == 'male' THEN 'M' ELSE 'F' END") - )\ - .select('specie_island', 'sex_short')\ - .show(5) -``` - -I particulaly like to write "if-else" or "case-when" statements using a pure `CASE WHEN` SQL statement inside the `expr()` function. By using this strategy you usually get a more simple statement that translates the intention of your code in a cleaner way. But if I wrote the exact same `CASE WHEN` statement above using pure `pyspark` functions, I would end up with a shorter (but "less clean") statement using the `when()` and `otherwise()` functions: - -```{python} -from pyspark.sql.functions import ( - when, col, - concat, lit -) - -spark\ - .table('penguins_view')\ - .withColumn( - 'specie_island', - concat('species', lit('_'), 'island') - )\ - .withColumn( - 'sex_short', - when(col("sex") == 'male', 'M')\ - .otherwise('F') - )\ - .select('specie_island', 'sex_short')\ - .show(5) -``` - - - - -## Every DataFrame transformation in Python can be translated into SQL - -All DataFrame API transformations that you write in Python (using `pyspark`) can be translated into SQL queries/expressions using the Spark SQL module. Since the DataFrame API is a core part of `pyspark`, the majority of python code you write with `pyspark` can be translated into SQL queries (if you wanto to). - -Is worth pointing out, that, no matter which language you choose (Python or SQL), they are both further compiled to the same base instructions. The end result is that the Python code you write and his SQL translated version **will perform the same** (they have the same efficiency), because they are compiled to the same instructions before being executed by Spark. - - -### DataFrame methods are usually translated into SQL keywords - -When you translate the methods from the python `DataFrame` class (like `orderBy()`, `select()` and `where()`) into their equivalents in Spark SQL, you usually get SQL keywords (like `ORDER BY`, `SELECT` and `WHERE`). - -For example, if I needed to get the top 5 penguins with the biggest body mass at `penguins_view`, that had sex equal to `"female"`, and, ordered by bill length, I could run the following python code: - -```{python} -from pyspark.sql.functions import col -top_5 = penguins\ - .where(col('sex') == 'female')\ - .orderBy(col('body_mass_g').desc())\ - .limit(5) - -top_5\ - .orderBy('bill_length_mm')\ - .show() -``` - -I could translate the above python code to the following SQL query: - -```sql -WITH top_5 AS ( - SELECT * - FROM penguins_view - WHERE sex == 'female' - ORDER BY body_mass_g DESC - LIMIT 5 -) - -SELECT * -FROM top_5 -ORDER BY bill_length_mm -``` - -Again, to execute the above SQL query inside `pyspark` we need to give this query as a string to the `sql()` method of our Spark Session, like this: - -```{python} -query = ''' -WITH top_5 AS ( - SELECT * - FROM penguins_view - WHERE sex == 'female' - ORDER BY body_mass_g DESC - LIMIT 5 -) - -SELECT * -FROM top_5 -ORDER BY bill_length_mm -''' - -# The same result of the example above -spark.sql(query).show() -``` - - - -### Spark functions are usually translated into SQL functions {#sec-sql-expr} - -Every function from the `pyspark.sql.functions` module you might use to describe your transformations in python, can be directly used in Spark SQL. In other words, every Spark function that is accesible in python, is also accesible in Spark SQL. - -When you translate these python functions into SQL, they usually become a pure SQL function with the same name. For example, if I wanted to use the `regexp_extract()` python function, from the `pyspark.sql.functions` module in Spark SQL, I just use the `REGEXP_EXTRACT()` SQL function. The same occurs to any other function, like the `to_date()` function for example. - -```{python} -from pyspark.sql.functions import to_date, regexp_extract -# `df1` and `df2` are both equal. Because they both -# use the same `to_date()` and `regexp_extract()` functions -df1 = (spark - .table('penguins_view') - .withColumn( - 'extract_number', - regexp_extract('bill_length_mm', '[0-9]+', 0) - ) - .withColumn('date', to_date('year', 'y')) - .select( - 'bill_length_mm', 'year', - 'extract_number', 'date' - ) -) - -df2 = (spark - .table('penguins_view') - .withColumn( - 'extract_number', - expr("REGEXP_EXTRACT(bill_length_mm, '[0-9]+', 0)") - ) - .withColumn('date', expr("TO_DATE(year, 'y')")) - .select( - 'bill_length_mm', 'year', - 'extract_number', 'date' - ) -) - -df2.show(5) -``` - -This is very handy. Because for every new python function from the `pyspark.sql.functions` module, that you learn how to use, you automatically learn how to use in Spark SQL as well, because is the same function, with the basically the same name and arguments. - -As an example, I could easily translate the above transformations that use the `to_date()` and `regexp_extract()` python functions, into the following SQL query (that I could easily execute trough the `sql()` Spark Session method): - -```sql -SELECT - bill_length_mm, year, - REGEXP_EXTRACT(bill_length_mm, '[0-9]+', 0) AS extract_number, - TO_DATE(year, 'y') AS date -FROM penguins_view -``` - +# Working with SQL in `pyspark` {#sec-dataframe-sql-chapter} + + +```{python} +#| include: false +from pyspark.sql import SparkSession +spark = SparkSession\ + .builder\ + .config("spark.sql.catalogImplementation","hive")\ + .getOrCreate() + +sc = spark.sparkContext +sc.setLogLevel("OFF") + +from datetime import date +from pyspark.sql import Row + +data = [ + Row(id = 1, value = 28.3, date = date(2021,1,1)), + Row(id = 2, value = 15.8, date = date(2021,1,1)), + Row(id = 3, value = 20.1, date = date(2021,1,2)), + Row(id = 4, value = 12.6, date = date(2021,1,3)) +] + +df = spark.createDataFrame(data) +``` + +As we discussed in @sec-introd-spark, Spark is a **multi-language** engine for large-scale data processing. This means that we can build our Spark application using many different languages (like Java, Scala, Python and R). Furthermore, you can also use the Spark SQL module of Spark to translate all of your transformations into pure SQL queries. + +In more details, Spark SQL is a Spark module for structured data processing [@sparkdoc]. Because this module works with Spark DataFrames, using SQL, you can translate all transformations that you build with the DataFrame API into a SQL query. + +Therefore, you can mix python code with SQL queries very easily in Spark. Virtually all transformations exposed in python throughout this book, can be translated into a SQL query using this module of Spark. We will focus a lot on this exchange between Python and SQL in this chapter. + +However, this also means that the Spark SQL module does not handle the transformations produced by the unstructured APIs of Spark, i.e. the Dataset API. Since the Dataset API is not available in `pyspark`, it is not covered in this book. + + + +## The `sql()` method as the main entrypoint + +The main entrypoint, that is, the main bridge that connects Spark SQL to Python is the `sql()` method of your Spark Session. This method accepts a SQL query inside a string as input, and will always output a new Spark DataFrame as result. That is why I used the `show()` method right after `sql()`, in the example below, to see what this new Spark DataFrame looked like. + +As a first example, lets look at a very basic SQL query, that just select a list of code values: + +```sql +SELECT * +FROM ( + VALUES (11), (31), (24), (35) +) AS List(Codes) +``` + +To run the above SQL query, and see its results, I must write this query into a string, and give this string to the `sql()` method of my Spark Session. Then, I use the `show()` action to see the actual result rows of data generated by this query: + +```{python} +sql_query = ''' +SELECT * +FROM ( + VALUES (11), (31), (24), (35) +) AS List(Codes) +''' + +spark.sql(sql_query).show() +``` + +If you want to execute a very short SQL query, is fine to write it inside a single pair of quotation marks (for example `"SELECT * FROM sales.per_day"`). However, since SQL queries usually take multiple lines, you can write your SQL query inside a python docstring (created by a pair of three quotation marks), like in the example above. + +Having this in mind, every time you want to execute a SQL query, you can use this `sql()` method from the object that holds your Spark Session. So the `sql()` method is the bridge between `pyspark` and SQL. You give it a pure SQL query inside a string, and, Spark will execute it, considering your Spark SQL context. + +### A single SQL statement per run + +Is worth pointing out that, although being the main bridge between Python and SQL, the Spark Session `sql()` method can execute only a single SQL statement per run. This means that if you try to execute two sequential SQL statements at the same time with `sql()`, then, Spark SQL will automatically raise a `ParseException` error, which usually complains about an "extra input". + +In the example below, we are doing two very basic steps to SQL. We first create a dummy database with a `CREATE DATABASE` statement, then, we ask SQL to use this new database that we created as the default database of the current session, with a `USE` statement. + +```sql +CREATE DATABASE `dummy`; +USE `dummy`; +``` + +If we try to execute these two steps at once, by using the `sql()` method, Spark complains with a `ParseException`, indicating that we have a sytax error in our query, like in the example below: + +```python +query = ''' +CREATE DATABASE `dummy`; +USE `dummy`; +''' + +spark.sql(query).show() +``` + +``` +Traceback (most recent call last): + File "", line 1, in + File "/opt/spark/python/pyspark/sql/session.py", line 1034, in sql + return DataFrame(self._jsparkSession.sql(sqlQuery), self) + File "/opt/spark/python/lib/py4j-0.10.9.5-src.zip/py4j/java_gateway.py", line 1321, in __call__ + File "/opt/spark/python/pyspark/sql/utils.py", line 196, in deco + raise converted from None +pyspark.sql.utils.ParseException: +Syntax error at or near 'USE': extra input 'USE'(line 3, pos 0) + +== SQL == + +CREATE DATABASE `dummy`; +USE `dummy`; +^^^ +``` + +However, there is nothing wrong about the above SQL statements. They are both correct and valid SQL statements, both semantically and syntactically. In other words, the case above results in a `ParseException` error solely because it contains two different SQL statements. + +In essence, the `spark.sql()` method always expect a single SQL statement as input, and, therefore, it will try to parse this input query as a single SQL statement. If it finds multiple SQL statements inside this input string, the method will automatically raise the above error. + +Now, be aware that some SQL queries can take multiple lines, but, **still be considered a single SQL statement**. A query started by a `WITH` clause is usually a good example of a SQL query that can group multiple `SELECT` statements, but still be considered a single SQL statement as a whole: + +```sql +-- The query below would execute +-- perfectly fine inside spark.sql(): +WITH table1 AS ( + SELECT * + FROM somewhere +), + +filtering AS ( + SELECT * + FROM table1 + WHERE dateOfTransaction == CAST("2022-02-02" AS DATE) +) + +SELECT * +FROM filtering +``` + +Another example of a usually big and complex query, that can take multiple lines but still be considered a single SQL statement, is a single `SELECT` statement that selects multiple subqueries that are nested together, like this: + +```sql +-- The query below would also execute +-- perfectly fine inside spark.sql(): +SELECT * +FROM ( + -- First subquery. + SELECT * + FROM ( + -- Second subquery.. + SELECT * + FROM ( + -- Third subquery... + SELECT * + FROM ( + -- Ok this is enough.... + ) + ) + ) +) +``` + +However, if we had multiple separate `SELECT` statements that were independent on each other, like in the example below, then, `spark.sql()` would issue an `ParseException` error if we tried to execute these three `SELECT` statements inside the same input string. + +```sql +-- These three statements CANNOT be executed +-- at the same time inside spark.sql() +SELECT * FROM something; +SELECT * FROM somewhere; +SELECT * FROM sometime; +``` + +As a conclusion, if you want to easily execute multiple statements, you can use a `for` loop which calls `spark.sql()` for each single SQL statement: + +```{python} +#| eval: false +statements = '''SELECT * FROM something; +SELECT * FROM somewhere; +SELECT * FROM sometime;''' + +statements = statements.split('\n') +for statement in statements: + spark.sql(statement) +``` + + +## Creating SQL Tables in Spark + +In real life jobs at the industry, is very likely that your data will be allocated inside a SQL-like database. Spark can connect to a external SQL database through JDBC/ODBC connections, or, read tables from Apache Hive. This way, you can sent your SQL queries to this external database. + +However, to expose more simplified examples throughout this chapter, we will use `pyspark` to create a simple temporary SQL table in our Spark SQL context, and use this temporary SQL table in our examples of SQL queries. This way, we avoid the work to connect to some existing SQL database, and, still get to learn how to use SQL queries in `pyspark`. + +First, lets create our Spark Session. You can see below that I used the `config()` method to set a specific option of the session called `catalogImplementation` to the value `"hive"`. This option controls the implementation of the Spark SQL Catalog, which is a core part of the SQL functionality of Spark [^06-dataframes-sql-catalog]. + +[^06-dataframes-sql-catalog]: There are some very good materials explaining what is the Spark SQL Catalog, and which is the purpose of it. For a soft introduction, I recommend Sarfaraz Hussain post: . For a more technical introduction, see . + +Spark usually complain with a `AnalysisException` error when you try to create SQL tables with this option undefined (or not configured). So, if you decide to follow the examples of this chapter, please always set this option right at the start of your script[^06-dataframes-sql-1]. + +[^06-dataframes-sql-1]: You can learn more about why this specific option is necessary by looking at this StackOverflow post: . + +```{python} +#| eval: false +from pyspark.sql import SparkSession +spark = SparkSession\ + .builder\ + .config("spark.sql.catalogImplementation","hive")\ + .getOrCreate() +``` + + + +### `TABLEs` versus `VIEWs` + +To run a complete SQL query over any Spark DataFrame, you must register this DataFrame in the Spark SQL Catalog of your Spark Session. You can register a Spark DataFrame into this catalog as a physical SQL `TABLE`, or, as a SQL `VIEW`. + +If you are familiar with the SQL language and Relational DataBase Management Systems - RDBMS (such as MySQL), you probably already heard of these two types (`TABLE` or `VIEW`) of SQL objects. But if not, we will explain each one in this section. Is worth pointing out that choosing between these two types **does not affect** your code, or your transformations in any way. It just affect the way that Spark SQL stores the table/DataFrame itself. + +#### `VIEWs` are stored as SQL queries or memory pointers + +When you register a DataFrame as a SQL `VIEW`, the query to produce this DataFrame is stored, not the DataFrame itself. There are also cases where Spark store a memory pointer instead, that points to the memory adress where this DataFrame is stored in memory. In this perspective, Spark SQL use this pointer every time it needs to access this DataFrame. + +Therefore, when you call (or access) this SQL `VIEW` inside your SQL queries (for example, with a `SELECT * FROM` statement), Spark SQL will automatically get this SQL `VIEW` "on the fly" (or "on runtime"), by executing the query necessary to build the initial DataFrame that you stored inside this `VIEW`, or, if this DataFrame is already stored in memory, Spark will look at the specific memory address it is stored. + +In other words, when you create a SQL `VIEW`, Spark SQL do not store any physical data or rows of the DataFrame. It just stores the SQL query necessary to build your DataFrame. In some way, you can interpret any SQL `VIEW` as an abbreviation to a SQL query, or a "nickname" to an already existing DataFrame. + +As a consequence, for most "use case scenarios", SQL `VIEWs` are easier to manage inside your data pipelines. Because you usually do not have to update them. Since they are calculated from scratch, at the moment you request for them, a SQL `VIEW` will always translate the most recent version of the data. + +This means that the concept of a `VIEW` in Spark SQL is very similar to the concept of a `VIEW` in other types of SQL databases, such as the MySQL database. If you read the [official documentation for the `CREATE VIEW` statement at MySQL](https://dev.mysql.com/doc/refman/8.0/en/create-view.html)[^my-sql-view] you will get a similar idea of a `VIEW`: + +[^my-sql-view]: + +> The select_statement is a SELECT statement that provides the definition of the view. (Selecting from the view selects, in effect, using the SELECT statement.) ... + +The above statement, tells us that selecing a `VIEW` causes the SQL engine to execute the expression defined at `select_statement` using the `SELECT` statement. In other words, in MySQL, a SQL `VIEW` is basically an alias to an existing `SELECT` statement. + +#### Differences in Spark SQL `VIEW`s + +Although a Spark SQL `VIEW` being very similar to other types of SQL `VIEW` (such as the MySQL type), on Spark applications, SQL `VIEW`s are usually registered as `TEMPORARY VIEW`s^[I will explain more about the meaning of "temporary" at @sec-temp-persist.] instead of standard (and "persistent") SQL `VIEW` as in MySQL. + +At MySQL there is no notion of a "temporary view", although other popular kinds of SQL databases do have it, [such as the PostGreSQL database](https://www.postgresql.org/docs/current/sql-createview.html)[^postgress-view]. So, a temporary view is not a exclusive concept of Spark SQL. However, is a special type of SQL `VIEW` that is not present in all popular kinds of SQL databases. + +[^postgress-view]: + +In other words, both Spark SQL and MySQL support the `CREATE VIEW` statement. In contrast, statements such as `CREATE TEMPORARY VIEW` and `CREATE OR REPLACE TEMPORARY VIEW` are available in Spark SQL, but not in MySQL. + +#### Registering a Spark SQL `VIEW` in the Spark SQL Catalog + +In `pyspark`, you can register a Spark DataFrame as a temporary SQL `VIEW` with the `createTempView()` or `createOrReplaceTempView()` DataFrame methods. These methods are equivalent to `CREATE TEMPORARY VIEW` and `CREATE OR REPLACE TEMPORARY VIEW` SQL statements of Spark SQL, respectively. + +In essence, these methods register your Spark DataFrame as a temporary SQL `VIEW`, and have a single input, which is the name you want to give to this new SQL `VIEW` you are creating inside a string: + +```{python} +#| include: false +df.createOrReplaceTempView('example_view') +``` + +```{python} +#| eval: false +# To save the `df` DataFrame as a SQL VIEW, +# use one of the methods below: +df.createTempView('example_view') +df.createOrReplaceTempView('example_view') +``` + +After we executed the above statements, we can now access and use the `df` DataFrame in any SQL query, like in the example below: + +```{python} +sql_query = ''' +SELECT * +FROM example_view +WHERE value > 20 +''' + +spark.sql(sql_query).show() +``` + +So you use the `createTempView()` or `createOrReplaceTempView()` methods when you want to make a Spark DataFrame created in `pyspark` (that is, a python object), available to Spark SQL. + +Besides that, you also have the option to create a temporary `VIEW` by using pure SQL statements trough the `sql()` method. However, when you create a temporary `VIEW` using pure SQL, you can only use (inside this `VIEW`) native SQL objects that are already stored inside your Spark SQL Context. + +This means that you cannot make a Spark DataFrame created in python available to Spark SQL, by using a pure SQL inside the `sql()` method. To do this, you have to use the DataFrame methods `createTempView()` and `createOrReplaceTempView()`. + +As an example, the query below uses pure SQL statements to creates the `active_brazilian_users` temporary `VIEW`, which selects an existing SQL table called `hubspot.user_mails`: + +```sql +CREATE TEMPORARY VIEW active_brazilian_users AS +SELECT * +FROM hubspot.user_mails +WHERE state == 'Active' +AND country_location == 'Brazil' +``` + +Temporary `VIEW`s like the one above (which are created from pure SQL statements being executed inside the `sql()` method) are kind of unusual in Spark SQL. Because you can easily avoid the work of creating a `VIEW` by using Common Table Expression (CTE) on a `WITH` statement, like in the query below: + +```sql +WITH active_brazilian_users AS ( + SELECT * + FROM hubspot.user_mails + WHERE state == 'Active' + AND country_location == 'Brazil' +) + +SELECT A.user, SUM(sale_value), B.user_email +FROM sales.sales_per_user AS A +INNER JOIN active_brazilian_users AS B +GROUP BY A.user, B.user_email +``` + +Just as a another example, you can also run a SQL query that creates a persistent SQL `VIEW` (that is, without the `TEMPORARY` clause). In the example below, I am saving the simple query that I showed at the beginning of this chapter inside a `VIEW` called `list_of_codes`. This `CREATE VIEW` statement, register a persistent SQL `VIEW` in the SQL Catalog. + +```{python} +sql_query = ''' +CREATE OR REPLACE VIEW list_of_codes AS +SELECT * +FROM ( + VALUES (11), (31), (24), (35) +) AS List(Codes) +''' + +spark.sql(sql_query) +``` + + +Now, every time I want to use this SQL query that selects a list of codes, I can use this `list_of_codes` as a shortcut: + +```{python} +spark.sql("SELECT * FROM list_of_codes").show() +``` + + + +#### `TABLEs` are stored as physical tables + +In the other hand, SQL `TABLEs` are the "opposite" of SQL `VIEWs`. That is, SQL `TABLEs` are stored as physical tables inside the SQL database. In other words, each one of the rows of your table are stored inside the SQL database. + +Because of this characteristic, when dealing with huges amounts of data, SQL `TABLEs` are usually faster to load and transform. Because you just have to read the data stored on the database, you do not need to calculate it from scratch every time you use it. + +But, as a collateral effect, you usually have to physically update the data inside this `TABLE`, by using, for example, `INSERT INTO` statements. In other words, when dealing with SQL `TABLE`'s you usually need to create (and manage) data pipelines that are responsible for periodically update and append new data to this SQL `TABLE`, and this might be a big burden to your process. + +#### Registering Spark SQL `TABLE`s in the Spark SQL Catalog + +In `pyspark`, you can register a Spark DataFrame as a SQL `TABLE` with the `write.saveAsTable()` DataFrame method. This method accepts, as first input, the name you want to give to this SQL `TABLE` inside a string. + +```{python} +#| eval: false +# To save the `df` DataFrame as a SQL TABLE: +df.write.saveAsTable('example_table') +``` + +As you expect, after we registered the DataFrame as a SQL table, we can now run any SQL query over `example_table`, like in the example below: + +```{python} +#| eval: false +spark.sql("SELECT SUM(value) FROM example_table").show() +``` + +``` ++----------+ +|sum(value)| ++----------+ +| 76.8| ++----------+ +``` + +You can also use pure SQL queries to create an empty SQL `TABLE` from scratch, and then, feed this table with data by using `INSERT INTO` statements. In the example below, we create a new database called `examples`, and, inside of it, a table called `code_brazil_states`. Then, we use multiple `INSERT INTO` statements to populate this table with few rows of data. + +```{python} +#| include: false +#| eval: false +spark.sql('DROP DATABASE IF EXISTS `examples` cascade') +``` + + +```{python} +#| eval: false +all_statements = '''CREATE DATABASE `examples`; +USE `examples`; +CREATE TABLE `code_brazil_states` (`code` INT, `state_name` STRING); +INSERT INTO `code_brazil_states` VALUES (31, "Minas Gerais"); +INSERT INTO `code_brazil_states` VALUES (15, "Pará"); +INSERT INTO `code_brazil_states` VALUES (41, "Paraná"); +INSERT INTO `code_brazil_states` VALUES (25, "Paraíba");''' + +statements = all_statements.split('\n') +for statement in statements: + spark.sql(statement) +``` + +We can see now this new physical SQL table using a simple query like this: + +```{python} +#| eval: false +spark\ + .sql('SELECT * FROM examples.code_brazil_states')\ + .show() +``` + +``` ++----+------------+ +|code| state_name| ++----+------------+ +| 41| Paraná| +| 31|Minas Gerais| +| 15| Pará| +| 25| Paraíba| ++----+------------+ +``` + +#### The different save "modes" {#sec-sql-save-modes} + +There are other arguments that you might want to use in the `write.saveAsTable()` method, like the `mode` argument. This argument controls how Spark will save your data into the database. By default, `write.saveAsTable()` uses the `mode = "error"` by default. In this mode, Spark will look if the table you referenced already exists, before it saves your data. + +Let's get back to the code we showed before (which is reproduced below). In this code, we asked Spark to save our data into a table called `"example_table"`. Spark will look if a table with this name already exists. If it does, then, Spark will raise an error that will stop the process (i.e. no data is saved). + +```{python} +#| eval: false +df.write.saveAsTable('example_table') +``` + +Raising an error when you do not want to accidentaly affect a SQL table that already exist, is a good practice. But, you might want to not raise an error in this situation. In case like this, you might want to just ignore the operation, and get on with your life. For cases like this, `write.saveAsTable()` offers the `mode = "ignore"`. + +So, in the code example below, we are trying to save the `df` DataFrame into a table called `example_table`. But if this `example_table` already exist, Spark will just silently ignore this operation, and will not save any data. + +```{python} +#| eval: false +df.write.saveAsTable('example_table', mode = "ignore") +``` + +In addition, `write.saveAsTable()` offers two more different modes, which are `mode = "overwrite"` and `mode = "append"`. When you use one these two modes, Spark **will always save your data**, no matter if the SQL table you are trying to save into already exist or not. In essence, these two modes control whether Spark will delete or keep previous rows of the SQL table intact, before it saves any new data. + +When you use `mode = "overwrite"`, Spark will automatically rewrite/replace the entire table with the current data of your DataFrame. In contrast, when you use `mode = "append"`, Spark will just append (or insert, or add) this data into the table. The subfigures at @fig-save-table-modes demonstrates these two modes visually. + +::: {#fig-save-table-modes layout-nrow=2} + +![Mode overwrite](./../Figures/table-save-modes-overwrite.png){#fig-mode-overwrite} + +![Mode append](./../Figures/table-save-modes-append.png){#fig-mode-append} + +How Spark saves your data with different "save modes" +::: + + +You can see the full list of arguments of `write.SaveAsTable()`, and their description by [looking at the documentation]()^[]. + + + +### Temporary versus Persistent sources {#sec-temp-persist} + +When you register any Spark DataFrame as a SQL `TABLE`, it becomes a persistent source. Because the contents, the data, the rows of the table are stored on disk, inside a database, and can be accessed any time, even after you close or restart your computer (or your Spark Session). In other words, it becomes "persistent" as in the sense of "it does not die". + +As another example, when you save a specific SQL query as a SQL `VIEW` with the `CREATE VIEW` statement, this SQL `VIEW` is saved inside the database. As a consequence, it becomes a persistent source as well, and can be accessed and reused in other Spark Sessions, unless you explicit drop (or "remove") this SQL `VIEW` with a `DROP VIEW` statement. + +However, with methods like `createTempView()` and `createOrReplaceTempView()` you register your Spark DataFrame as a *temporary* SQL `VIEW`. This means that the life (or time of existence) of this `VIEW` is tied to your Spark Session. In other words, it will exist in your Spark SQL Catalog only for the duration of your Spark Session. When you close your Spark Session, this `VIEW` just dies. When you start a new Spark Session it does not exist anymore. As a result, you have to register your DataFrame again at the catalog to use it one more time. + + +### Spark SQL Catalog is the bridge between SQL and `pyspark` + +Remember, to run SQL queries over any Spark DataFrame, you must register this DataFrame into the Spark SQL Catalog. Because of it, this Spark SQL Catalog works almost as the bridge that connects the python objects that hold your Spark DataFrames to the Spark SQL context. Without it, Spark SQL will not find your Spark DataFrames. As a result, it can not run any SQL query over it. + +When you try to use a DataFrame that is not currently registered at the Spark SQL Catalog, Spark will automatically raise a `AnalysisException`, like in the example below: + +```python +spark\ + .sql("SELECT * FROM this.does_not_exist")\ + .show() +``` + +``` +AnalysisException: Table or view not found +``` + +The methods `saveAsTable()`, `createTempView()` and `createOrReplaceTempView()` are the main methods to register your Spark DataFrame into this Spark SQL Catalog. This means that you have to use one of these methods before you run any SQL query over your Spark DataFrame. + + + + +## The `penguins` DataFrame + +Over the next examples in this chapter, we will explore the `penguins` DataFrame. This is the `penguins` dataset from the [`palmerpenguins` R library](https://allisonhorst.github.io/palmerpenguins/)[^palmer]. It stores data of multiple measurements of penguin species from the islands in Palmer Archipelago. + +[^palmer]: + +These measurements include size (flipper length, body mass, bill dimensions) and sex, and they were collected by researchers of the Antarctica LTER program, a member of the Long Term Ecological Research Network. If you want to understand more about each field/column present in this dataset, I recommend you to read the [official documentation of this dataset](https://allisonhorst.github.io/palmerpenguins/reference/penguins.html)[^penguins_doc]. + + +[^penguins_doc]: + + +To get this data, you can download the CSV file called `penguins.csv` (remember that this CSV can be downloaded from the book repository[^06-dataframes-sql-2]). In the code below, I am reading this CSV file and creating a Spark DataFrame with its data. Then, I register this Spark DataFrame as a SQL temporary view (called `penguins_view`) using the `createOrReplaceTempView()` method. + + +[^06-dataframes-sql-2]: + +```{python} +path = "../Data/penguins.csv" +penguins = spark.read\ + .csv(path, header = True) + +penguins.createOrReplaceTempView('penguins_view') +``` + +After these commands, I have now a SQL view called `penguins_view` registered in my Spark SQL context, which I can query it, using pure SQL: + +```{python} +spark.sql('SELECT * FROM penguins_view').show(5) +``` + + +## Selecting your Spark DataFrames + +An obvious way to access any SQL `TABLE` or `VIEW` registered in your Spark SQL context, is to select it, through a simple `SELECT * FROM` statement, like we saw in the previous examples. However, it can be quite annoying to type "SELECT * FROM" every time you want to use a SQL `TABLE` or `VIEW` in Spark SQL. + +That is why Spark offers a shortcut to us, which is the `table()` method of your Spark session. In other words, the code `spark.table("table_name")` is a shortcut to `spark.sql("SELECT * FROM table_name")`. They both mean the same thing. For example, we could access `penguins_view` as: + +```{python} +spark\ + .table('penguins_view')\ + .show(5) +``` + + +## Executing SQL expressions + +As I noted at @sec-columns-related-expressions, columns of a Spark DataFrame (or objects of class `Column`) are closely related to expressions. As a result, you usually use and execute expressions in Spark when you want to transform (or mutate) columns of a Spark DataFrame. + +This is no different for SQL expressions. A SQL expression is basically any expression you would use on the `SELECT` statement of your SQL query. As you can probably guess, since they are used in the `SELECT` statement, these expressions are used to transform columns of a Spark DataFrame. + +There are many column transformations that are particularly verbose and expensive to write in "pure" `pyspark`. But you can use a SQL expression in your favor, to translate this transformation into a more short and concise form. Virtually any expression you write in `pyspark` can be translated into a SQL expression. + +To execute a SQL expression, you give this expression inside a string to the `expr()` function from the `pyspark.sql.functions` module. Since expressions are used to transform columns, you normally use the `expr()` function inside a `withColumn()` or a `select()` DataFrame method, like in the example below: + +```{python} +from pyspark.sql.functions import expr + +spark\ + .table('penguins_view')\ + .withColumn( + 'specie_island', + expr("CONCAT(species, '_', island)") + )\ + .withColumn( + 'sex_short', + expr("CASE WHEN sex == 'male' THEN 'M' ELSE 'F' END") + )\ + .select('specie_island', 'sex_short')\ + .show(5) +``` + +I particulaly like to write "if-else" or "case-when" statements using a pure `CASE WHEN` SQL statement inside the `expr()` function. By using this strategy you usually get a more simple statement that translates the intention of your code in a cleaner way. But if I wrote the exact same `CASE WHEN` statement above using pure `pyspark` functions, I would end up with a shorter (but "less clean") statement using the `when()` and `otherwise()` functions: + +```{python} +from pyspark.sql.functions import ( + when, col, + concat, lit +) + +spark\ + .table('penguins_view')\ + .withColumn( + 'specie_island', + concat('species', lit('_'), 'island') + )\ + .withColumn( + 'sex_short', + when(col("sex") == 'male', 'M')\ + .otherwise('F') + )\ + .select('specie_island', 'sex_short')\ + .show(5) +``` + + + + +## Every DataFrame transformation in Python can be translated into SQL + +All DataFrame API transformations that you write in Python (using `pyspark`) can be translated into SQL queries/expressions using the Spark SQL module. Since the DataFrame API is a core part of `pyspark`, the majority of python code you write with `pyspark` can be translated into SQL queries (if you wanto to). + +Is worth pointing out, that, no matter which language you choose (Python or SQL), they are both further compiled to the same base instructions. The end result is that the Python code you write and his SQL translated version **will perform the same** (they have the same efficiency), because they are compiled to the same instructions before being executed by Spark. + + +### DataFrame methods are usually translated into SQL keywords + +When you translate the methods from the python `DataFrame` class (like `orderBy()`, `select()` and `where()`) into their equivalents in Spark SQL, you usually get SQL keywords (like `ORDER BY`, `SELECT` and `WHERE`). + +For example, if I needed to get the top 5 penguins with the biggest body mass at `penguins_view`, that had sex equal to `"female"`, and, ordered by bill length, I could run the following python code: + +```{python} +from pyspark.sql.functions import col +top_5 = penguins\ + .where(col('sex') == 'female')\ + .orderBy(col('body_mass_g').desc())\ + .limit(5) + +top_5\ + .orderBy('bill_length_mm')\ + .show() +``` + +I could translate the above python code to the following SQL query: + +```sql +WITH top_5 AS ( + SELECT * + FROM penguins_view + WHERE sex == 'female' + ORDER BY body_mass_g DESC + LIMIT 5 +) + +SELECT * +FROM top_5 +ORDER BY bill_length_mm +``` + +Again, to execute the above SQL query inside `pyspark` we need to give this query as a string to the `sql()` method of our Spark Session, like this: + +```{python} +query = ''' +WITH top_5 AS ( + SELECT * + FROM penguins_view + WHERE sex == 'female' + ORDER BY body_mass_g DESC + LIMIT 5 +) + +SELECT * +FROM top_5 +ORDER BY bill_length_mm +''' + +# The same result of the example above +spark.sql(query).show() +``` + + + +### Spark functions are usually translated into SQL functions {#sec-sql-expr} + +Every function from the `pyspark.sql.functions` module you might use to describe your transformations in python, can be directly used in Spark SQL. In other words, every Spark function that is accesible in python, is also accesible in Spark SQL. + +When you translate these python functions into SQL, they usually become a pure SQL function with the same name. For example, if I wanted to use the `regexp_extract()` python function, from the `pyspark.sql.functions` module in Spark SQL, I just use the `REGEXP_EXTRACT()` SQL function. The same occurs to any other function, like the `to_date()` function for example. + +```{python} +from pyspark.sql.functions import to_date, regexp_extract +# `df1` and `df2` are both equal. Because they both +# use the same `to_date()` and `regexp_extract()` functions +df1 = (spark + .table('penguins_view') + .withColumn( + 'extract_number', + regexp_extract('bill_length_mm', '[0-9]+', 0) + ) + .withColumn('date', to_date('year', 'y')) + .select( + 'bill_length_mm', 'year', + 'extract_number', 'date' + ) +) + +df2 = (spark + .table('penguins_view') + .withColumn( + 'extract_number', + expr("REGEXP_EXTRACT(bill_length_mm, '[0-9]+', 0)") + ) + .withColumn('date', expr("TO_DATE(year, 'y')")) + .select( + 'bill_length_mm', 'year', + 'extract_number', 'date' + ) +) + +df2.show(5) +``` + +This is very handy. Because for every new python function from the `pyspark.sql.functions` module, that you learn how to use, you automatically learn how to use in Spark SQL as well, because is the same function, with the basically the same name and arguments. + +As an example, I could easily translate the above transformations that use the `to_date()` and `regexp_extract()` python functions, into the following SQL query (that I could easily execute trough the `sql()` Spark Session method): + +```sql +SELECT + bill_length_mm, year, + REGEXP_EXTRACT(bill_length_mm, '[0-9]+', 0) AS extract_number, + TO_DATE(year, 'y') AS date +FROM penguins_view +``` + diff --git a/Chapters/07-export.qmd b/Chapters/07-export.qmd index 0a5ec907..b57a245e 100644 --- a/Chapters/07-export.qmd +++ b/Chapters/07-export.qmd @@ -1,400 +1,400 @@ -# Exporting data out of Spark {#sec-export} - - -```{python} -#| include: false -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - - -After you transform your DataFrame and generate the results you want, you might need to actually export these results out of Spark, so you can: - -- send the exported data to an external API. -- send these results to your manager or client. -- send the exported data to an ingest process that feeds some database. - - -## The `write` object as the main entrypoint - -Every Spark session you start has an built-in `read` object that you can use to read data and import it into Spark (this object was described at @sec-read-files), and the same applies to writing data out of Spark. That is, Spark also offers a `write` object that you can use to write/output data out of Spark. - -But in contrast to the `read` object, which is avaiable trough the `SparkSession` object (`spark`), this `write` object is available trough the `write` method of any `DataFrame` object. In other words, every DataFrame you create in Spark has a built-in `write` object that you can use to write/export the data present in this DataFrame out of Spark. - -```{python} -#| cache: true -#| include: false -from pyspark.sql.types import StructType, StructField -from pyspark.sql.types import DoubleType, StringType -from pyspark.sql.types import LongType, TimestampType, DateType -path = "../Data/transf.csv" -schema = StructType([ - StructField('dateTransfer', DateType(), False), - StructField('datetimeTransfer', TimestampType(), False), - StructField('clientNumber', LongType(), False), - StructField('transferValue', DoubleType(), False), - StructField('transferCurrency', StringType(), False), - StructField('transferID', LongType(), False), - StructField('transferLog', StringType(), False), - StructField('destinationBankNumber', LongType(), False), - StructField('destinationBankBranch', LongType(), False), - StructField('destinationBankAccount', StringType(), False) -]) - -transf = spark.read\ - .csv(path, schema = schema, sep = ";", header = True) -``` - -As an example, let's use the `transf` DataFrame that I presented at @sec-transforming-dataframes-part1. The `write` method of the `transf` DataFrame object is the main entrypoint to all the facilities that Spark offers to write/export `transf`'s data to somewhere else. - -```{python} -transf.write -``` - - -This `write` object is very similar in structure to the `read` object. Essentially, this write object have a collection of *write engines*. Each write engine is speciallized in writing data into a specific file format. So you have an engine for CSV files, another engine for JSON files, another for Parquet files, etc. - -Every `write` object have the following methods: - -- `mode()`: set the mode of the write process. This affects how the data will be written to the files, and how the process will behaviour if exceptions (or erros) are raised during runtime. -- `option()`: set an option to be used in the write process. This option might be specific to the write engine used, or, might be an option that is global to the write process (i.e. an option that does not depend of the chosen engine). -- `csv()`: the write engine to export data to CSV files. -- `json()`: the write engine to export data to JSON files. -- `parquet()`: the write engine to export data to Parquet files. -- `orc()`: the write engine to export data to ORC files. -- `text()`: the write engine to export data to text files. -- `jdbc()`: saves the data of the current DataFrame into a database using the JDBC API. - - -## Exporting the `transf` DataFrame {#sec-write-example} - -As a first example on how to export data out of Spark, I will export the data from the `transf` DataFrame. Over the next sections, I will cover individual aspects that influences this write/export process. You should know and consider each of these individual aspects when exporting your data. - -### Quick export to a CSV file - -Lets begin with a quick example of exporting the Spark data to a CSV file. For this job, we need to use the write engine for CSV files, which is the `csv()` method from the write object. - -The **first (and main) argument to all write engines** available in Spark is a path to a folder where you want to store the exported files. This means that (whatever write engine you use) Spark will always write the files (with the exported data) inside a folder. - -Spark needs to use a folder to write the data. Because it generates some extra files during the process that serves as "placeholders" or as "statuses". That is why Spark needs to create a folder, to store all of these different files together during the process. - -In the example below, I decided to write this data into a folder called `transf_export`. - -```python -transf.write.csv("transf_export") -``` - -Now, after I executed the above command, if I take a look at my current working directory, I will see the `transf_export` folder that was created by Spark. - -```python -from pathlib import Path -current_directory = Path(".") -folders_in_current_directory = [ - str(item) - for item in current_directory.iterdir() - if item.is_dir() -] - -print(folders_in_current_directory) -``` - -``` -['metastore_db', 'transf_export'] -``` - -And if I look inside this `transf_export` folder I will see two files. One is the placeholder file (`_SUCCESS`), and the other, is a CSV file containing the exported data (`part-*.csv`). - -```python -export_folder = Path("transf_export") -files = [str(x.name) for x in export_folder.iterdir()] -print(files) -``` - -``` -['part-00000-a4ee2ff4-4b7f-499e-a904-cec8d524ac56-c000.csv', '_SUCCESS'] -``` - -We can see this file structure by using the [`tree` command line utility](https://www.geeksforgeeks.org/tree-command-unixlinux/)[^tree-cmd] to build a diagram of this file structure: - -[^tree-cmd]: - - -``` -Terminal$ tree transf_export -``` - -``` -transf_export -├── part-00000-a4ee2ff4-4b7f-499e-a904-cec8d524ac56-c000.csv -└── _SUCCESS -``` - - - -### Setting the write mode - -You can set the mode of a write process by using the `mode()` method. This "mode of the write process" affects specially the behavior of the process when files for this particular DataFrame you trying to export already exists in your file system. - -There are four write modes available in Spark: - -- `append`: will append the exported data to existing files of this specific DataFrame. -- `overwrite`: will overwrite the data inside existing files of this specific DataFrame with the data that is being currently exported. -- `error` or `errorifexists`: will throw an exception in case already existing files for this specific DataFrame are found. -- `ignore`: silently ignore/abort this write operation in case already existing files for this specific DataFrame are found. - -If we set the write mode to `overwrite`, this means that every time we execute the command below, the files inside the folder `transf_export` are rewritten from scratch. Everytime we export the data, the files `part-*` inside the folder are rewritten to contain the most fresh data from `transf` DataFrame. - -```python -transf.write\ - .mode("overwrite")\ - .csv("transf_export") -``` - -However, if we set the write mode to `error`, and run the command again, then an error will be raised to indicate that the folder (`transf_export`) where we are trying to write the files already exists. - -```python -transf.write\ - .mode("error")\ - .csv("transf_export") -``` - -``` -AnalysisException: [PATH_ALREADY_EXISTS] -Path file:/home/pedro/Documentos/Projetos/Livros/Introd-pyspark/Chapters/transf_export -already exists. Set mode as "overwrite" to overwrite the existing path. -``` - -In contrast, if we set the write mode to `append`, then the current data of transf is appended (or "added") to the folder `transf_export`. - -```python -transf.write\ - .mode("append")\ - .csv("transf_export") -``` - -Now, if I take a look at the contents of the `transf_export` folder, I will see now two `part-*` files instead of just one. Both files have the same size (around 218 kb) because they both contain the same data, or the same lines from the `transf` DataFrame. - -``` -Terminal$ tree transf_export -``` - -``` -transf_export -├── part-00000-a4ee2ff4-4b7f-499e-a904-cec8d524ac56-c000.csv -├── part-00000-ffcc7487-fc60-403b-a815-a1dd56894062-c000.csv -└── _SUCCESS -``` - -This means that the data is currently duplicated inside the `transf_export` folder. We can see this duplication by looking at the number of rows of the DataFrame contained inside `transf_export`. We can use `spark.read.load()` to quickly load the contents of the `transf_export` folder into a new DataFrame, and use `count()` method to see the number of rows. - -```python -df = spark.read.load( - "transf_export", - format = "csv", - header = False -) -df.count() -``` - -``` -4842 -``` - -The result above show us that the folder `transf_export` currently contains 4842 rows of data. This is the exact double of number of rows in the `transf` DataFrame, which have 2421 rows. - -```{python} -transf.count() -``` - - -So, in resume, the difference between write mode `overwrite` and `append`, is that `overwrite` causes Spark to erase the contents of `transf_export`, before it starts to write the current data into the folder. This way, Spark exports the most recent version of the data stored inside the DataFrame. In contrast, `append` simply appends (or adds) new files to the folder `transf_export` with the most recent version of the data stored inside the DataFrame. - -At @sec-sql-save-modes (or more specifically, at @fig-save-table-modes) we presented this difference visually. So, in case you don't understood fully the difference between these two write modes, you can comeback at @sec-sql-save-modes and check @fig-save-table-modes to see if it clears your understanding. OBS: save modes = write modes. - - -### Setting write options - -Each person might have different needs, and also, each file format (or each write engine) have its particularities or advantages that you may need to exploit. As a consequence, you might need to set some options to customize the writing process to fit into your needs. - -You can set options for the write process using the `option()` method of the write object. This method works with key value pairs. Inside this method, you provide the a key that identifies the option you want to set, and the value you want to give to this option. - -For CSV files, an option that is very popular is the `sep` option, that corresponds to the separator character of the CSV. This is a special character inside the CSV file that separates each column field. - -As an example, if we wanted to build a CSV file which uses the semicolon (`;` - which is the european standard for CSV files) as the separator character, instead of the comma (`,` - which is the american standard for CSV files), we just need to set the `sep` option to `;`, like this: - -```python -transf\ - .write\ - .mode("overwrite")\ - .option("sep", ";")\ - .csv("transf_export") -``` - -Each file format (or each write engine) have different options that are specific (or characteristic) to the file format itself. For example, JSON and CSV files are text file formats, and because of that, one key aspect to them is the encoding of the text that is being stored inside these files. So both write engines for these file formats (`csv()` and `json()`) have an option called `encoding` that you can use to change the encoding being used to write the data into these files. - -In the example below, we are asking Spark to write a CSV file using the Latin1 encoding (ISO-8859-1). - -```python -transf\ - .write\ - .mode("overwrite")\ - .option("encoding", "ISO-8859-1")\ - .csv("transf_export") -``` - -Is worth mentioning that the `option()` method sets one option at a time. So if you need to set various write options, you just stack `option()` calls on top of each other. In each call, you set a different option. Like in the example below where we are setting options `sep`, `encoding` and `header`: - -```python -transf\ - .write\ - .mode("overwrite")\ - .option("sep", ";")\ - .option("encoding", "UTF-8")\ - .option("header", True)\ - .csv("transf_export") -``` - -If you want to see the full list of options for each write engine, the documentation of Spark have a table with the complete list of options available at each write engine[^spark-opts]. - -[^spark-opts]: . - - -## Number of partitions determines the number of files generated {#sec-export-partition-coalesce} - -As I explained at @sec-dataframe-partitions, every DataFrame that exists in Spark is a **distributed** DataFrame, meaning that this DataFrame is divided into multiple pieces (that we call *partitions*), and these pieces are spread across the nodes in the Spark cluster. - -In other words, each machine that is present in the Spark cluster, contains some partitions (or some pieces) of the total DataFrame. But why we are discussing partitions here? Is because the number of partitions of your DataFrame determines the number of files written by Spark when you export the data using the `write` method. - -On the previous examples across @sec-write-example, when we exported the `transf` DataFrame into CSV files, only one single CSV file was generated inside the `transf_exported` folder. That is because the `transf` DataFrame have only one single partition, as the code below demonstrates: - -```python -transf.rdd.getNumPartitions() -``` - -``` -1 -``` - -That means that all the data from `transf` DataFrame is concentrated into a single partition. Having that in mind, we could say that Spark decided in this specific case to not actually distribute the data of `transf`. Because all of its data is concentrated into one single place. - -But what would happen if the `transf` DataFrame was splitted across 5 different partitions? What would happen then? In that case, if the `transf` DataFrame had 5 different partitions, and I ran the command `transf.write.csv("transf_export")` to export its data into CSV files, then, 5 different CSV files would be written by Spark inside the folder `transf_export`. One CSV file for each existing partition of the DataFrame. - -The same goes for any other file format, or any write engine that you might use in Spark. Each file generated by the write process contains the data from a specific partition of the DataFrame. - -### Avoid exporting too much data into a single file - -Spark will always try to organize your DataFrame into a *partition distribution* that yields the best performance in any data processing. Usually in production environments, we have huge amounts of data, and a single partition distribution is rarely the case that yields the best performance in these environments. - -That is why most existing Spark DataFrames in production environments are splitted into multiple partitions across the Spark cluster. This means that Spark DataFrames that are by default concentrated into one single partition (like the `transf` DataFrame in the examples of this book) are very, very rare to find in the production environments. - -As a consequence, if you really need to export your data into a single static file in a production environment, you will likely need to: - -1. repartition your Spark DataFrame. That is, to reorganize the partitions of this DataFrame, so that all of its data get concentrated into a single partition. -2. or you continue with the write process anyway, and then later, after the write process is finished, you merge all of the generated files together with some other tool, like `pandas`, or `polars`, or the `tidyverse`. - - -The option 2 above is a little out of the scope of this book, so I will not explain it further here. But if you really need to export all the data from your Spark DataFrame into a single static file (whatever is the file format you choose), and you choose to follow option 1, then, you need to perform a repartition operation to concentrate all data from your Spark DataFrame into a single partition. - -Is worth mentioning that **I strongly advise against this option 1**. Because option 1 may cause some serious bottlenecks in your data pipeline, depending specially on the size of the DataFrame you are trying to export. - -In more details, when you do not perform any repartition operation, that is, when you just write your DataFrame as is, without touching in the existing partitions, then, the write process is a narrow transformation, as I explained at @sec-narrow-wide. Because each partition is exported into a single and separate file that is independent from the others. - -This is really important, because narrow transformations are much more predictable and are more easily scaled than wide transformations. As a result, Spark tends to scale and perform better when dealing with narrow transformations. - -However, when you do perform a repartition operation to concentrate all the data into a single partition, then, three things happen: - -1. the write process becomes a wide transformation, because all partitions needs to be merged together, and as a consequence, all nodes in the cluster needs to send their data to a single place (which is usually the driver node of the cluster). - -2. a high amount of partition shuffles can happen inside the cluster, and if they do happen, then, depending on the amount of data that needs to be "shuffled" accross the cluster, this may cause some serious slowdown in the processing. - -3. depending on the size of all partitions merged together, the risks for an "out of memory" error to be raised during the process scales rapidly. - - -So you should be aware of these risks above, and always try to avoid using the option 1. Actually, you should avoid as much as possible the need to write all the data into a single static file! Is best for you to just write the data using the default number of partitions that Spark choose for your DataFrame. - -But anyway, if you really cannot avoid this need, and if you have, for example, a `sales` DataFrame you want to export, and this DataFrame contains 4 partitions: - -```python -sales.rdd.getNumPartitions() -``` - -``` -4 -``` - -And you want to perform a repartition operation over this DataFrame to export its data into a single static file, you can do so by using the `coalesce()` DataFrame method. Just provide the number 1 to this method, and all of the partitions will be reorganized into a single partition: - -```python -sales\ - .coalesce(1)\ - .rdd\ - .getNumPartitions() -``` - -``` -1 -``` - -Having that in mind, the entire source code to export the DataFrame into a single static file would be something like this: - -```python -sales\ - .coalesce(1)\ - .write\ - .mode("overwrite")\ - .csv("sales_export") -``` - - - -## Transforming to a Pandas DataFrame as a way to export data - -In case you don't know about this, Spark offers an API that you can use to quickly convert your Spark DataFrames into a `pandas` DataFrame. This might be extremely useful for a number of reasons: - -- your colleague might be much more familiar with `pandas`, and work more productively with it than `pyspark`. -- you might need to feed this data into an existing data pipeline that uses `pandas` extensively. -- with `pandas` you can easily export this data into Excel files (`.xlsx`)[^excel-spark], which are not easily available in Spark. - -[^excel-spark]: Actually, there is a Spark plugin available that is capable of exporting data from Spark directly into Excel files. But you need to install this plugin separately, since it does not come with Spark from the factory: . - -To convert an existing Spark DataFrame into a `pandas` DataFrame, all you need to do is to call the `toPandas()` method of your Spark DataFrame, and you will get a `pandas` DataFrame as output, like in the example below: - -```{python} -#| warning: false -as_pandas_df = transf.toPandas() -type(as_pandas_df) -``` - -But you should be careful with this method, because when you transform your Spark DataFrame into a `pandas` DataFrame you eliminate the distributed aspect of it. As a result, all the data from your DataFrame needs to be loaded into a single place (which is usually the driver’s memory). - -Because of that, using this `toPandas()` method might cause very similar issues as the ones discussed at @sec-export-partition-coalesce. In other words, you might face the same slowdowns caused by doing a repartition to concentrate all the data into a single partition. - -So, as the Spark documentation itself suggests, you should use this `toPandas()` method only if you know that your DataFrame is small enough to fit into the driver's memory. - -## The `collect()` method as a way to export data - -The `collect()` DataFrame method exports the DataFrame's data from Spark into a Python native object, more specifically, into a normal Python list. To some extent, this is a viable way to export data from Spark. - -Because by making this data from Spark available as a normal/standard Python object, many new possibilities become open for us. Such as: - -- sending this data to another location via HTTP requests using the `request` Python package. -- sending this data by email using the `email` built-in Python package. -- sending this data by SFTP protocol with the `paramiko` Python package. -- sending this data to a cloud storage, such as Amazon S3 (using the `boto3` Python package). - -By having the DataFrame's data easily available to Python as a Python list, we can do virtually anything with this data. We can use this data in basically anything that Python is capable of doing. - -Just as a simple example, if I needed to send the `transf` data to an fictitious endpoint using a `POST` HTTP request, the source code would probably be something similar to this: - -```python -import requests - -dataframe_rows = transf.collect() - -url = 'https://example.com/api/v1/transf' -for row in dataframe_rows: - row_as_dict = row.asDict() - requests.post(url, data = row_as_dict) +# Exporting data out of Spark {#sec-export} + + +```{python} +#| include: false +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +``` + + +After you transform your DataFrame and generate the results you want, you might need to actually export these results out of Spark, so you can: + +- send the exported data to an external API. +- send these results to your manager or client. +- send the exported data to an ingest process that feeds some database. + + +## The `write` object as the main entrypoint + +Every Spark session you start has an built-in `read` object that you can use to read data and import it into Spark (this object was described at @sec-read-files), and the same applies to writing data out of Spark. That is, Spark also offers a `write` object that you can use to write/output data out of Spark. + +But in contrast to the `read` object, which is avaiable trough the `SparkSession` object (`spark`), this `write` object is available trough the `write` method of any `DataFrame` object. In other words, every DataFrame you create in Spark has a built-in `write` object that you can use to write/export the data present in this DataFrame out of Spark. + +```{python} +#| cache: true +#| include: false +from pyspark.sql.types import StructType, StructField +from pyspark.sql.types import DoubleType, StringType +from pyspark.sql.types import LongType, TimestampType, DateType +path = "../Data/transf.csv" +schema = StructType([ + StructField('dateTransfer', DateType(), False), + StructField('datetimeTransfer', TimestampType(), False), + StructField('clientNumber', LongType(), False), + StructField('transferValue', DoubleType(), False), + StructField('transferCurrency', StringType(), False), + StructField('transferID', LongType(), False), + StructField('transferLog', StringType(), False), + StructField('destinationBankNumber', LongType(), False), + StructField('destinationBankBranch', LongType(), False), + StructField('destinationBankAccount', StringType(), False) +]) + +transf = spark.read\ + .csv(path, schema = schema, sep = ";", header = True) +``` + +As an example, let's use the `transf` DataFrame that I presented at @sec-transforming-dataframes-part1. The `write` method of the `transf` DataFrame object is the main entrypoint to all the facilities that Spark offers to write/export `transf`'s data to somewhere else. + +```{python} +transf.write +``` + + +This `write` object is very similar in structure to the `read` object. Essentially, this write object have a collection of *write engines*. Each write engine is speciallized in writing data into a specific file format. So you have an engine for CSV files, another engine for JSON files, another for Parquet files, etc. + +Every `write` object have the following methods: + +- `mode()`: set the mode of the write process. This affects how the data will be written to the files, and how the process will behaviour if exceptions (or erros) are raised during runtime. +- `option()`: set an option to be used in the write process. This option might be specific to the write engine used, or, might be an option that is global to the write process (i.e. an option that does not depend of the chosen engine). +- `csv()`: the write engine to export data to CSV files. +- `json()`: the write engine to export data to JSON files. +- `parquet()`: the write engine to export data to Parquet files. +- `orc()`: the write engine to export data to ORC files. +- `text()`: the write engine to export data to text files. +- `jdbc()`: saves the data of the current DataFrame into a database using the JDBC API. + + +## Exporting the `transf` DataFrame {#sec-write-example} + +As a first example on how to export data out of Spark, I will export the data from the `transf` DataFrame. Over the next sections, I will cover individual aspects that influences this write/export process. You should know and consider each of these individual aspects when exporting your data. + +### Quick export to a CSV file + +Lets begin with a quick example of exporting the Spark data to a CSV file. For this job, we need to use the write engine for CSV files, which is the `csv()` method from the write object. + +The **first (and main) argument to all write engines** available in Spark is a path to a folder where you want to store the exported files. This means that (whatever write engine you use) Spark will always write the files (with the exported data) inside a folder. + +Spark needs to use a folder to write the data. Because it generates some extra files during the process that serves as "placeholders" or as "statuses". That is why Spark needs to create a folder, to store all of these different files together during the process. + +In the example below, I decided to write this data into a folder called `transf_export`. + +```python +transf.write.csv("transf_export") +``` + +Now, after I executed the above command, if I take a look at my current working directory, I will see the `transf_export` folder that was created by Spark. + +```python +from pathlib import Path +current_directory = Path(".") +folders_in_current_directory = [ + str(item) + for item in current_directory.iterdir() + if item.is_dir() +] + +print(folders_in_current_directory) +``` + +``` +['metastore_db', 'transf_export'] +``` + +And if I look inside this `transf_export` folder I will see two files. One is the placeholder file (`_SUCCESS`), and the other, is a CSV file containing the exported data (`part-*.csv`). + +```python +export_folder = Path("transf_export") +files = [str(x.name) for x in export_folder.iterdir()] +print(files) +``` + +``` +['part-00000-a4ee2ff4-4b7f-499e-a904-cec8d524ac56-c000.csv', '_SUCCESS'] +``` + +We can see this file structure by using the [`tree` command line utility](https://www.geeksforgeeks.org/tree-command-unixlinux/)[^tree-cmd] to build a diagram of this file structure: + +[^tree-cmd]: + + +``` +Terminal$ tree transf_export +``` + +``` +transf_export +├── part-00000-a4ee2ff4-4b7f-499e-a904-cec8d524ac56-c000.csv +└── _SUCCESS +``` + + + +### Setting the write mode + +You can set the mode of a write process by using the `mode()` method. This "mode of the write process" affects specially the behavior of the process when files for this particular DataFrame you trying to export already exists in your file system. + +There are four write modes available in Spark: + +- `append`: will append the exported data to existing files of this specific DataFrame. +- `overwrite`: will overwrite the data inside existing files of this specific DataFrame with the data that is being currently exported. +- `error` or `errorifexists`: will throw an exception in case already existing files for this specific DataFrame are found. +- `ignore`: silently ignore/abort this write operation in case already existing files for this specific DataFrame are found. + +If we set the write mode to `overwrite`, this means that every time we execute the command below, the files inside the folder `transf_export` are rewritten from scratch. Everytime we export the data, the files `part-*` inside the folder are rewritten to contain the most fresh data from `transf` DataFrame. + +```python +transf.write\ + .mode("overwrite")\ + .csv("transf_export") +``` + +However, if we set the write mode to `error`, and run the command again, then an error will be raised to indicate that the folder (`transf_export`) where we are trying to write the files already exists. + +```python +transf.write\ + .mode("error")\ + .csv("transf_export") +``` + +``` +AnalysisException: [PATH_ALREADY_EXISTS] +Path file:/home/pedro/Documentos/Projetos/Livros/Introd-pyspark/Chapters/transf_export +already exists. Set mode as "overwrite" to overwrite the existing path. +``` + +In contrast, if we set the write mode to `append`, then the current data of transf is appended (or "added") to the folder `transf_export`. + +```python +transf.write\ + .mode("append")\ + .csv("transf_export") +``` + +Now, if I take a look at the contents of the `transf_export` folder, I will see now two `part-*` files instead of just one. Both files have the same size (around 218 kb) because they both contain the same data, or the same lines from the `transf` DataFrame. + +``` +Terminal$ tree transf_export +``` + +``` +transf_export +├── part-00000-a4ee2ff4-4b7f-499e-a904-cec8d524ac56-c000.csv +├── part-00000-ffcc7487-fc60-403b-a815-a1dd56894062-c000.csv +└── _SUCCESS +``` + +This means that the data is currently duplicated inside the `transf_export` folder. We can see this duplication by looking at the number of rows of the DataFrame contained inside `transf_export`. We can use `spark.read.load()` to quickly load the contents of the `transf_export` folder into a new DataFrame, and use `count()` method to see the number of rows. + +```python +df = spark.read.load( + "transf_export", + format = "csv", + header = False +) +df.count() +``` + +``` +4842 +``` + +The result above show us that the folder `transf_export` currently contains 4842 rows of data. This is the exact double of number of rows in the `transf` DataFrame, which have 2421 rows. + +```{python} +transf.count() +``` + + +So, in resume, the difference between write mode `overwrite` and `append`, is that `overwrite` causes Spark to erase the contents of `transf_export`, before it starts to write the current data into the folder. This way, Spark exports the most recent version of the data stored inside the DataFrame. In contrast, `append` simply appends (or adds) new files to the folder `transf_export` with the most recent version of the data stored inside the DataFrame. + +At @sec-sql-save-modes (or more specifically, at @fig-save-table-modes) we presented this difference visually. So, in case you don't understood fully the difference between these two write modes, you can comeback at @sec-sql-save-modes and check @fig-save-table-modes to see if it clears your understanding. OBS: save modes = write modes. + + +### Setting write options + +Each person might have different needs, and also, each file format (or each write engine) have its particularities or advantages that you may need to exploit. As a consequence, you might need to set some options to customize the writing process to fit into your needs. + +You can set options for the write process using the `option()` method of the write object. This method works with key value pairs. Inside this method, you provide the a key that identifies the option you want to set, and the value you want to give to this option. + +For CSV files, an option that is very popular is the `sep` option, that corresponds to the separator character of the CSV. This is a special character inside the CSV file that separates each column field. + +As an example, if we wanted to build a CSV file which uses the semicolon (`;` - which is the european standard for CSV files) as the separator character, instead of the comma (`,` - which is the american standard for CSV files), we just need to set the `sep` option to `;`, like this: + +```python +transf\ + .write\ + .mode("overwrite")\ + .option("sep", ";")\ + .csv("transf_export") +``` + +Each file format (or each write engine) have different options that are specific (or characteristic) to the file format itself. For example, JSON and CSV files are text file formats, and because of that, one key aspect to them is the encoding of the text that is being stored inside these files. So both write engines for these file formats (`csv()` and `json()`) have an option called `encoding` that you can use to change the encoding being used to write the data into these files. + +In the example below, we are asking Spark to write a CSV file using the Latin1 encoding (ISO-8859-1). + +```python +transf\ + .write\ + .mode("overwrite")\ + .option("encoding", "ISO-8859-1")\ + .csv("transf_export") +``` + +Is worth mentioning that the `option()` method sets one option at a time. So if you need to set various write options, you just stack `option()` calls on top of each other. In each call, you set a different option. Like in the example below where we are setting options `sep`, `encoding` and `header`: + +```python +transf\ + .write\ + .mode("overwrite")\ + .option("sep", ";")\ + .option("encoding", "UTF-8")\ + .option("header", True)\ + .csv("transf_export") +``` + +If you want to see the full list of options for each write engine, the documentation of Spark have a table with the complete list of options available at each write engine[^spark-opts]. + +[^spark-opts]: . + + +## Number of partitions determines the number of files generated {#sec-export-partition-coalesce} + +As I explained at @sec-dataframe-partitions, every DataFrame that exists in Spark is a **distributed** DataFrame, meaning that this DataFrame is divided into multiple pieces (that we call *partitions*), and these pieces are spread across the nodes in the Spark cluster. + +In other words, each machine that is present in the Spark cluster, contains some partitions (or some pieces) of the total DataFrame. But why we are discussing partitions here? Is because the number of partitions of your DataFrame determines the number of files written by Spark when you export the data using the `write` method. + +On the previous examples across @sec-write-example, when we exported the `transf` DataFrame into CSV files, only one single CSV file was generated inside the `transf_exported` folder. That is because the `transf` DataFrame have only one single partition, as the code below demonstrates: + +```python +transf.rdd.getNumPartitions() +``` + +``` +1 +``` + +That means that all the data from `transf` DataFrame is concentrated into a single partition. Having that in mind, we could say that Spark decided in this specific case to not actually distribute the data of `transf`. Because all of its data is concentrated into one single place. + +But what would happen if the `transf` DataFrame was splitted across 5 different partitions? What would happen then? In that case, if the `transf` DataFrame had 5 different partitions, and I ran the command `transf.write.csv("transf_export")` to export its data into CSV files, then, 5 different CSV files would be written by Spark inside the folder `transf_export`. One CSV file for each existing partition of the DataFrame. + +The same goes for any other file format, or any write engine that you might use in Spark. Each file generated by the write process contains the data from a specific partition of the DataFrame. + +### Avoid exporting too much data into a single file + +Spark will always try to organize your DataFrame into a *partition distribution* that yields the best performance in any data processing. Usually in production environments, we have huge amounts of data, and a single partition distribution is rarely the case that yields the best performance in these environments. + +That is why most existing Spark DataFrames in production environments are splitted into multiple partitions across the Spark cluster. This means that Spark DataFrames that are by default concentrated into one single partition (like the `transf` DataFrame in the examples of this book) are very, very rare to find in the production environments. + +As a consequence, if you really need to export your data into a single static file in a production environment, you will likely need to: + +1. repartition your Spark DataFrame. That is, to reorganize the partitions of this DataFrame, so that all of its data get concentrated into a single partition. +2. or you continue with the write process anyway, and then later, after the write process is finished, you merge all of the generated files together with some other tool, like `pandas`, or `polars`, or the `tidyverse`. + + +The option 2 above is a little out of the scope of this book, so I will not explain it further here. But if you really need to export all the data from your Spark DataFrame into a single static file (whatever is the file format you choose), and you choose to follow option 1, then, you need to perform a repartition operation to concentrate all data from your Spark DataFrame into a single partition. + +Is worth mentioning that **I strongly advise against this option 1**. Because option 1 may cause some serious bottlenecks in your data pipeline, depending specially on the size of the DataFrame you are trying to export. + +In more details, when you do not perform any repartition operation, that is, when you just write your DataFrame as is, without touching in the existing partitions, then, the write process is a narrow transformation, as I explained at @sec-narrow-wide. Because each partition is exported into a single and separate file that is independent from the others. + +This is really important, because narrow transformations are much more predictable and are more easily scaled than wide transformations. As a result, Spark tends to scale and perform better when dealing with narrow transformations. + +However, when you do perform a repartition operation to concentrate all the data into a single partition, then, three things happen: + +1. the write process becomes a wide transformation, because all partitions needs to be merged together, and as a consequence, all nodes in the cluster needs to send their data to a single place (which is usually the driver node of the cluster). + +2. a high amount of partition shuffles can happen inside the cluster, and if they do happen, then, depending on the amount of data that needs to be "shuffled" accross the cluster, this may cause some serious slowdown in the processing. + +3. depending on the size of all partitions merged together, the risks for an "out of memory" error to be raised during the process scales rapidly. + + +So you should be aware of these risks above, and always try to avoid using the option 1. Actually, you should avoid as much as possible the need to write all the data into a single static file! Is best for you to just write the data using the default number of partitions that Spark choose for your DataFrame. + +But anyway, if you really cannot avoid this need, and if you have, for example, a `sales` DataFrame you want to export, and this DataFrame contains 4 partitions: + +```python +sales.rdd.getNumPartitions() +``` + +``` +4 +``` + +And you want to perform a repartition operation over this DataFrame to export its data into a single static file, you can do so by using the `coalesce()` DataFrame method. Just provide the number 1 to this method, and all of the partitions will be reorganized into a single partition: + +```python +sales\ + .coalesce(1)\ + .rdd\ + .getNumPartitions() +``` + +``` +1 +``` + +Having that in mind, the entire source code to export the DataFrame into a single static file would be something like this: + +```python +sales\ + .coalesce(1)\ + .write\ + .mode("overwrite")\ + .csv("sales_export") +``` + + + +## Transforming to a Pandas DataFrame as a way to export data + +In case you don't know about this, Spark offers an API that you can use to quickly convert your Spark DataFrames into a `pandas` DataFrame. This might be extremely useful for a number of reasons: + +- your colleague might be much more familiar with `pandas`, and work more productively with it than `pyspark`. +- you might need to feed this data into an existing data pipeline that uses `pandas` extensively. +- with `pandas` you can easily export this data into Excel files (`.xlsx`)[^excel-spark], which are not easily available in Spark. + +[^excel-spark]: Actually, there is a Spark plugin available that is capable of exporting data from Spark directly into Excel files. But you need to install this plugin separately, since it does not come with Spark from the factory: . + +To convert an existing Spark DataFrame into a `pandas` DataFrame, all you need to do is to call the `toPandas()` method of your Spark DataFrame, and you will get a `pandas` DataFrame as output, like in the example below: + +```{python} +#| warning: false +as_pandas_df = transf.toPandas() +type(as_pandas_df) +``` + +But you should be careful with this method, because when you transform your Spark DataFrame into a `pandas` DataFrame you eliminate the distributed aspect of it. As a result, all the data from your DataFrame needs to be loaded into a single place (which is usually the driver’s memory). + +Because of that, using this `toPandas()` method might cause very similar issues as the ones discussed at @sec-export-partition-coalesce. In other words, you might face the same slowdowns caused by doing a repartition to concentrate all the data into a single partition. + +So, as the Spark documentation itself suggests, you should use this `toPandas()` method only if you know that your DataFrame is small enough to fit into the driver's memory. + +## The `collect()` method as a way to export data + +The `collect()` DataFrame method exports the DataFrame's data from Spark into a Python native object, more specifically, into a normal Python list. To some extent, this is a viable way to export data from Spark. + +Because by making this data from Spark available as a normal/standard Python object, many new possibilities become open for us. Such as: + +- sending this data to another location via HTTP requests using the `request` Python package. +- sending this data by email using the `email` built-in Python package. +- sending this data by SFTP protocol with the `paramiko` Python package. +- sending this data to a cloud storage, such as Amazon S3 (using the `boto3` Python package). + +By having the DataFrame's data easily available to Python as a Python list, we can do virtually anything with this data. We can use this data in basically anything that Python is capable of doing. + +Just as a simple example, if I needed to send the `transf` data to an fictitious endpoint using a `POST` HTTP request, the source code would probably be something similar to this: + +```python +import requests + +dataframe_rows = transf.collect() + +url = 'https://example.com/api/v1/transf' +for row in dataframe_rows: + row_as_dict = row.asDict() + requests.post(url, data = row_as_dict) ``` \ No newline at end of file diff --git a/Chapters/07-import.qmd b/Chapters/07-import.qmd index 4af597cc..59b53e5f 100644 --- a/Chapters/07-import.qmd +++ b/Chapters/07-import.qmd @@ -1,256 +1,256 @@ - -# Importing data to Spark {#sec-import} - -```{python} -#| include: false -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - - -Another way of creating Spark DataFrames, is to read (or import) data from somewhere and convert it to a Spark DataFrame. Spark can read a variety of file formats, including CSV, Parquet, JSON, ORC and Binary files. Furthermore, Spark can connect to other databases and import tables from them, using ODBC/JDBC connections. - -To read (or import) any data to Spark, we use a "read engine", and there are many different read engines available in Spark. Each engine is used to read a specific file format, or to import data from a specific type of data source, and we access these engines by using the `read` module from your Spark Session object. - -## Reading data from static files {#sec-read-files} - -Static files are probably the easiest way to transport data from one computer to another. Because you just need to copy and paste this file to the other machine, or download it from the internet. - -But in order to Spark read any type of static file stored inside your computer, **it always need to know the path to this file**. Every OS have its own file system, and every file in your computer is stored in a specific address of this file system. The "path" to this file is the path (or "steps") that your computer needs to follow to reach this specific address, where the file is stored. - -As we pointed out earlier, to read any static file in Spark, you use one of the available "read engines", which are in the `spark.read` module of your Spark Session. This means that, each read engine in this module is responsible for reading a specific file format. - -If you want to read a CSV file for example, you use the `spark.read.csv()` engine. In contrast, if you want to read a JSON file, you use the `spark.read.json()` engine instead. But no matter what read engine you use, you always give the path to your file to any of these "read engines". - - -The main read engines available in Spark are: - -- `spark.read.json()`: to read JSON files. -- `spark.read.csv()`: to read CSV files. -- `spark.read.parquet()`: to read Apache Parquet files. -- `spark.read.orc()`: to read ORC (Apache *Optimized Row Columnar* format) files. -- `spark.read.text()`: to read text files. -- `spark.read.jdbc()`: to read data from databases using the JDBC API. - - -For example, to read a JSON file called `sales.json` that is stored in my `Data` folder, I can do this: - -```{python} -json_data = spark.read.json("../Data/sales.json") -json_data.show() -``` - - -## An example with a CSV file - -As an example, I have the following CSV file saved in my computer: - -``` -name,age,job -Jorge,30,Developer -Bob,32,Developer -``` - -This CSV was saved in a file called `people.csv`, inside a folder called `Data`. So, to read this static file, Spark needs to know the path to this `people.csv` file. In other words, Spark needs to know where this file is stored in my computer, to be able to read it. - -In my specific case, considering where this `Data` folder is in my computer, a relative path to it would be `"../Data/"`. Having the path to the folder where `people.csv` is stored, I just need to add this file to the path, resulting in `"../Data/people.csv"`. See in the example below, that I gave this path to the `read.csv()` method of my Spark Session. As a result, Spark will visit this address, and, read the file that is stored there: - -```{python} -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() - -path = "../Data/people.csv" - -df = spark.read.csv(path) -df.show() -``` - -In the above example, I gave a relative path to the file I wanted to read. But you can provide an absolute path^[That is, the complete path to the file, or, in other words, a path that starts in the root folder of your hard drive.] to the file, if you want to. The `people.csv` is located at a very specific folder in my Linux computer, so, the absolute path to this file is pretty long as you can see below. But, if I were in my Windows machine, this absolute path would be something like `"C:\Users\pedro\Documents\Projects\..."`. - -```{python} -#| eval: false -# The absolute path to `people.csv`: -path = "/home/pedro/Documents/Projects/Books/" -path = path + "Introd-pyspark/Data/people.csv" - -df = spark.read.csv(path) -df.show() -``` - -```{python} -#| echo: false -df.show() -``` - -If you give an invalid path (that is, a path that does not exist in your computer), you will get a `AnalysisException`. In the example below, I try to read a file called `"weird-file.csv"` that (in theory) is located at my current working directory. But when Spark looks inside my current directory, it does not find any file called `"weird-file.csv"`. As a result, Spark raises a `AnalysisException` that warns me about this mistake. - - -```{python} -#| eval: false -df = spark.read.csv("weird-file.csv") -``` - -``` -Traceback (most recent call last): -pyspark.sql.utils.AnalysisException: -Path does not exist: -file:/home/pedro/Documents/Projects/Books/Introd-pyspark/weird-file.csv -``` - -Every time you face this "Path does not exist" error, it means that Spark did not found the file that you described in the path you gave to `spark.read`. In this case, is very likely that you have a typo or a mistake in your path. Maybe your forgot to add the `.csv` extension to the name of your file. Or maybe you forgot to use the right angled slash (`/`) instead of the left angled slash (`\`). Or maybe, you gave the path to folder $x$, when in fact, you wanted to reach the folder $y$. - -Sometimes, is useful to list all the files that are stored inside the folder you are trying to access. This way, you can make sure that you are looking at the right folder of your file system. To do that, you can use the `listdir()` function from `os` module of python. As an example, I can list all the files that are stored inside of the `Data` folder in this way: - -```{python} -from os import listdir -listdir("../Data/") -``` - - - - -## Import options - -While reading and importing data from any type of data source, Spark will always use the default values for each import option defined by the read engine you are using, unless you explicit ask it to use a different value. Each read engine has its own read/import options. - -For example, the `spark.read.orc()` engine has a option called `mergeSchema`. With this option, you can ask Spark to merge the schemas collected from all the ORC part-files. In contrast, the `spark.read.csv()` engine does not have such option. Because this functionality of "merging schemas" does not make sense with CSV files. - -This means that, some import options are specific (or characteristic) of some file formats. For example, the `sep` option (where you define the *separator* character) is used only in the `spark.read.csv()` engine. Because you do not have a special character that behaves as the "separator" in the other file formats (like ORC, JSON, Parquet...). So it does not make sense to have such option in the other read engines. - -In the other hand, some import options can co-exist in multiple read engines. For example, the `spark.read.json()` and `spark.read.csv()` have both an `encoding` option. The encoding is a very important information, and Spark needs it to correctly interpret your file. By default, Spark will always assume that your files use the UTF-8 encoding system. Although, this may not be true for your specific case, and for these cases you use this `encoding` option to tell Spark which one to use. - -In the next sections, I will break down some of the most used import options for each file format. If you want to see the complete list of import options, you can visit the *Data Source Option* section in the specific part of the file format you are using in the Spark SQL Guide^[For example, this *Data Source Option* for Parquet files is located at: ]. - -To define, or, set a specific import option, you use the `option()` method from a `DataFrameReader` object. To produce this kind of object, you use the `spark.read` module, like in the example below. Each call to the `option()` method is used to set a single import option. - -Notice that the "read engine" of Spark (i.e. `csv()`) is the last method called at this chain (or sequence) of steps. In other words, you start by creating a `DataFrameReader` object, then, set the import options, and lastly, you define which "read engine" you want to use. - -```{python} -#| eval: false -# Creating a `DataFrameReader` object: -df_reader = spark.read -# Setting the import options: -df_reader = df_reader\ - .option("sep", "$")\ - .option("locale", "pt-BR") - -# Setting the "read engine" to be used with `.csv()`: -my_data = df_reader\ - .csv("../Data/a-csv-file.csv") -``` - -If you prefer, you can also merge all these calls together like this: - -```{python} -#| eval: false -spark.read\ # a `DataFrameReader` object - .option("sep", "$")\ # Setting the `sep` option - .option("locale", "pt-BR")\ # Setting the `locale` option - .csv("../Data/a-csv-file.csv") # The "read engine" to be used -``` - -There are many different import options for each read engine, and you can see the full list in the official documentation for Spark^[]. But lets just give you a brief overview of the probably most popular import options: - -- `sep`: sets the separator character for each field and value in the CSV file (defaults to `","`); -- `encoding`: sets the character encoding of the file to be read (defaults to `"UTF-8"`); -- `header`: boolean (defaults to `False`), should Spark consider the first line of the file as the header of the DataFrame (i.e. the name of the columns) ? -- `dateFormat` and `timestampFormat`: sets the format for dates and timestamps in the file (defaults to `"yyyy-MM-dd"` and `"yyyy-MM-dd'T'HH:mm:ss[.SSS][XXX]"` respectively); - -## Setting the separator character for CSV files - -In this section, we will use the `transf_reform.csv` file to demonstrate how to set the separator character of a CSV file. This file, contains some data of transfers made in a fictitious bank. Is worth mentioning that this `sep` import option is only available for CSV files. - -Lets use the `peek_file()` function defined below to get a quick peek at the first 5 lines of this file. If you look closely to these lines, you can identify that this CSV files uses the `";"` character to separate fields and values, and not the american standard `","` character. - -```{python} -def peek_file(path, n_lines = 5): - with open(path) as file: - lines = [next(file) for i in range(n_lines)] - text = ''.join(lines) - print(text) - -peek_file("../Data/transf_reform.csv") -``` - - -This is usually the standard adopted by countries that uses a comma to define decimal places in real numbers. In other words, in some countries, the number `3.45` is usually written as `3,45`. - -Anyway, we know now that the `transf_reform.csv` file uses a different separator character, so, to correctly read this CSV file into Spark, we need to set the `sep` import option. Since this file comes with the column names in the first line, I also set the `header` import option to read this first line as the column names as well. - -```{python} -transf = spark.read\ - .option("sep", ";")\ - .option("header", True)\ - .csv("../Data/transf_reform.csv") - -transf.show(5) -``` - - -## Setting the encoding of the file - -Spark will always assume that your static files use the UTF-8 encoding system. But, that might not be the case for your specific file. In this situation, you have to tell Spark which is the appropriate encoding system to be used while reading the file. This `encoding` import option is available both for CSV and JSON files. - -To do this, you can set the `encoding` import option, with the name of the encoding system to be used. As an example, lets look at the file `books.txt`, which is a CSV file encoded with the ISO-8859-1 system (i.e. the Latin 1 system). - -If we use the defaults in Spark, you can see in the result below that some characters in the `Title` column are not correctly interpreted. Remember, this problem occurs because of a mismatch in encoding systems. Spark thinks `books.txt` is using the UTF-8 system, but, in reality, it uses the ISO-8859-1 system: - -```{python} -books = spark.read\ - .option("header", True)\ - .csv("../Data/books.txt") - -books.show() -``` - -But if we tell Spark to use the ISO-8859-1 system while reading the file, then, all problems are solved, and all characters in the file are correctly interpreted, as you see in the result below: - -```{python} -books = spark.read\ - .option("header", True)\ - .option("encoding", "ISO-8859-1")\ - .csv("../Data/books.txt") - -books.show() -``` - - -## Setting the format of dates and timestamps - -The format that humans write dates and timestamps vary drastically over the world. By default, Spark will assume that the dates and timestamps stored in your file are in the format described by the ISO-8601 standard. That is, the "YYYY-mm-dd", or, "year-month-day" format. - -But this standard might not be the case for your file. For example: the brazilian people usually write dates in the format "dd/mm/YYYY", or, "day/month/year"; some parts of Spain write dates in the format "YYYY/dd/mm", or, "year/day/month"; on Nordic countries (i.e. Sweden, Finland) dates are written in "YYYY.mm.dd" format. - -Every format of a date or timestamp is defined by using a string with the codes of each part of the date/timestamp, like the letter 'Y' which represents a 4-digit year, or the letter 'd' which represents a 2-digit day. You can see the complete list of codes and their description in the official documentation of Spark^[]. - -As an example, lets look into the `user-events.json` file. We can see that the dates and timestamps in this file are using the "dd/mm/YYYY" and "dd/mm/YYYY HH:mm:ss" formats respectively. - -```{python} -peek_file("../Data/user-events.json", n_lines=3) -``` - -Date variables are usually interpreted by Spark as string variables. In other words, Spark usually do not convert data that contains dates to the date type of Spark. In order to Spark - -```{python} -from pyspark.sql.types import StructType, StructField -from pyspark.sql.types import DateType, StringType, TimestampType - -schema = StructType([ - StructField('dateOfEvent', DateType(), True), - StructField('timeOfEvent', TimestampType(), True), - StructField('userId', StringType(), True), - StructField('nameOfEvent', StringType(), True) -]) - -user_events = spark.read\ - .option("dateFormat", "d/M/y")\ - .option("timestampFormat", "d/M/y k:m:s")\ - .json("../Data/user-events.json", schema = schema) - -user_events.show() -``` - - - + +# Importing data to Spark {#sec-import} + +```{python} +#| include: false +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +``` + + +Another way of creating Spark DataFrames, is to read (or import) data from somewhere and convert it to a Spark DataFrame. Spark can read a variety of file formats, including CSV, Parquet, JSON, ORC and Binary files. Furthermore, Spark can connect to other databases and import tables from them, using ODBC/JDBC connections. + +To read (or import) any data to Spark, we use a "read engine", and there are many different read engines available in Spark. Each engine is used to read a specific file format, or to import data from a specific type of data source, and we access these engines by using the `read` module from your Spark Session object. + +## Reading data from static files {#sec-read-files} + +Static files are probably the easiest way to transport data from one computer to another. Because you just need to copy and paste this file to the other machine, or download it from the internet. + +But in order to Spark read any type of static file stored inside your computer, **it always need to know the path to this file**. Every OS have its own file system, and every file in your computer is stored in a specific address of this file system. The "path" to this file is the path (or "steps") that your computer needs to follow to reach this specific address, where the file is stored. + +As we pointed out earlier, to read any static file in Spark, you use one of the available "read engines", which are in the `spark.read` module of your Spark Session. This means that, each read engine in this module is responsible for reading a specific file format. + +If you want to read a CSV file for example, you use the `spark.read.csv()` engine. In contrast, if you want to read a JSON file, you use the `spark.read.json()` engine instead. But no matter what read engine you use, you always give the path to your file to any of these "read engines". + + +The main read engines available in Spark are: + +- `spark.read.json()`: to read JSON files. +- `spark.read.csv()`: to read CSV files. +- `spark.read.parquet()`: to read Apache Parquet files. +- `spark.read.orc()`: to read ORC (Apache *Optimized Row Columnar* format) files. +- `spark.read.text()`: to read text files. +- `spark.read.jdbc()`: to read data from databases using the JDBC API. + + +For example, to read a JSON file called `sales.json` that is stored in my `Data` folder, I can do this: + +```{python} +json_data = spark.read.json("../Data/sales.json") +json_data.show() +``` + + +## An example with a CSV file + +As an example, I have the following CSV file saved in my computer: + +``` +name,age,job +Jorge,30,Developer +Bob,32,Developer +``` + +This CSV was saved in a file called `people.csv`, inside a folder called `Data`. So, to read this static file, Spark needs to know the path to this `people.csv` file. In other words, Spark needs to know where this file is stored in my computer, to be able to read it. + +In my specific case, considering where this `Data` folder is in my computer, a relative path to it would be `"../Data/"`. Having the path to the folder where `people.csv` is stored, I just need to add this file to the path, resulting in `"../Data/people.csv"`. See in the example below, that I gave this path to the `read.csv()` method of my Spark Session. As a result, Spark will visit this address, and, read the file that is stored there: + +```{python} +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() + +path = "../Data/people.csv" + +df = spark.read.csv(path) +df.show() +``` + +In the above example, I gave a relative path to the file I wanted to read. But you can provide an absolute path^[That is, the complete path to the file, or, in other words, a path that starts in the root folder of your hard drive.] to the file, if you want to. The `people.csv` is located at a very specific folder in my Linux computer, so, the absolute path to this file is pretty long as you can see below. But, if I were in my Windows machine, this absolute path would be something like `"C:\Users\pedro\Documents\Projects\..."`. + +```{python} +#| eval: false +# The absolute path to `people.csv`: +path = "/home/pedro/Documents/Projects/Books/" +path = path + "Introd-pyspark/Data/people.csv" + +df = spark.read.csv(path) +df.show() +``` + +```{python} +#| echo: false +df.show() +``` + +If you give an invalid path (that is, a path that does not exist in your computer), you will get a `AnalysisException`. In the example below, I try to read a file called `"weird-file.csv"` that (in theory) is located at my current working directory. But when Spark looks inside my current directory, it does not find any file called `"weird-file.csv"`. As a result, Spark raises a `AnalysisException` that warns me about this mistake. + + +```{python} +#| eval: false +df = spark.read.csv("weird-file.csv") +``` + +``` +Traceback (most recent call last): +pyspark.sql.utils.AnalysisException: +Path does not exist: +file:/home/pedro/Documents/Projects/Books/Introd-pyspark/weird-file.csv +``` + +Every time you face this "Path does not exist" error, it means that Spark did not found the file that you described in the path you gave to `spark.read`. In this case, is very likely that you have a typo or a mistake in your path. Maybe your forgot to add the `.csv` extension to the name of your file. Or maybe you forgot to use the right angled slash (`/`) instead of the left angled slash (`\`). Or maybe, you gave the path to folder $x$, when in fact, you wanted to reach the folder $y$. + +Sometimes, is useful to list all the files that are stored inside the folder you are trying to access. This way, you can make sure that you are looking at the right folder of your file system. To do that, you can use the `listdir()` function from `os` module of python. As an example, I can list all the files that are stored inside of the `Data` folder in this way: + +```{python} +from os import listdir +listdir("../Data/") +``` + + + + +## Import options + +While reading and importing data from any type of data source, Spark will always use the default values for each import option defined by the read engine you are using, unless you explicit ask it to use a different value. Each read engine has its own read/import options. + +For example, the `spark.read.orc()` engine has a option called `mergeSchema`. With this option, you can ask Spark to merge the schemas collected from all the ORC part-files. In contrast, the `spark.read.csv()` engine does not have such option. Because this functionality of "merging schemas" does not make sense with CSV files. + +This means that, some import options are specific (or characteristic) of some file formats. For example, the `sep` option (where you define the *separator* character) is used only in the `spark.read.csv()` engine. Because you do not have a special character that behaves as the "separator" in the other file formats (like ORC, JSON, Parquet...). So it does not make sense to have such option in the other read engines. + +In the other hand, some import options can co-exist in multiple read engines. For example, the `spark.read.json()` and `spark.read.csv()` have both an `encoding` option. The encoding is a very important information, and Spark needs it to correctly interpret your file. By default, Spark will always assume that your files use the UTF-8 encoding system. Although, this may not be true for your specific case, and for these cases you use this `encoding` option to tell Spark which one to use. + +In the next sections, I will break down some of the most used import options for each file format. If you want to see the complete list of import options, you can visit the *Data Source Option* section in the specific part of the file format you are using in the Spark SQL Guide^[For example, this *Data Source Option* for Parquet files is located at: ]. + +To define, or, set a specific import option, you use the `option()` method from a `DataFrameReader` object. To produce this kind of object, you use the `spark.read` module, like in the example below. Each call to the `option()` method is used to set a single import option. + +Notice that the "read engine" of Spark (i.e. `csv()`) is the last method called at this chain (or sequence) of steps. In other words, you start by creating a `DataFrameReader` object, then, set the import options, and lastly, you define which "read engine" you want to use. + +```{python} +#| eval: false +# Creating a `DataFrameReader` object: +df_reader = spark.read +# Setting the import options: +df_reader = df_reader\ + .option("sep", "$")\ + .option("locale", "pt-BR") + +# Setting the "read engine" to be used with `.csv()`: +my_data = df_reader\ + .csv("../Data/a-csv-file.csv") +``` + +If you prefer, you can also merge all these calls together like this: + +```{python} +#| eval: false +spark.read\ # a `DataFrameReader` object + .option("sep", "$")\ # Setting the `sep` option + .option("locale", "pt-BR")\ # Setting the `locale` option + .csv("../Data/a-csv-file.csv") # The "read engine" to be used +``` + +There are many different import options for each read engine, and you can see the full list in the official documentation for Spark^[]. But lets just give you a brief overview of the probably most popular import options: + +- `sep`: sets the separator character for each field and value in the CSV file (defaults to `","`); +- `encoding`: sets the character encoding of the file to be read (defaults to `"UTF-8"`); +- `header`: boolean (defaults to `False`), should Spark consider the first line of the file as the header of the DataFrame (i.e. the name of the columns) ? +- `dateFormat` and `timestampFormat`: sets the format for dates and timestamps in the file (defaults to `"yyyy-MM-dd"` and `"yyyy-MM-dd'T'HH:mm:ss[.SSS][XXX]"` respectively); + +## Setting the separator character for CSV files + +In this section, we will use the `transf_reform.csv` file to demonstrate how to set the separator character of a CSV file. This file, contains some data of transfers made in a fictitious bank. Is worth mentioning that this `sep` import option is only available for CSV files. + +Lets use the `peek_file()` function defined below to get a quick peek at the first 5 lines of this file. If you look closely to these lines, you can identify that this CSV files uses the `";"` character to separate fields and values, and not the american standard `","` character. + +```{python} +def peek_file(path, n_lines = 5): + with open(path) as file: + lines = [next(file) for i in range(n_lines)] + text = ''.join(lines) + print(text) + +peek_file("../Data/transf_reform.csv") +``` + + +This is usually the standard adopted by countries that uses a comma to define decimal places in real numbers. In other words, in some countries, the number `3.45` is usually written as `3,45`. + +Anyway, we know now that the `transf_reform.csv` file uses a different separator character, so, to correctly read this CSV file into Spark, we need to set the `sep` import option. Since this file comes with the column names in the first line, I also set the `header` import option to read this first line as the column names as well. + +```{python} +transf = spark.read\ + .option("sep", ";")\ + .option("header", True)\ + .csv("../Data/transf_reform.csv") + +transf.show(5) +``` + + +## Setting the encoding of the file + +Spark will always assume that your static files use the UTF-8 encoding system. But, that might not be the case for your specific file. In this situation, you have to tell Spark which is the appropriate encoding system to be used while reading the file. This `encoding` import option is available both for CSV and JSON files. + +To do this, you can set the `encoding` import option, with the name of the encoding system to be used. As an example, lets look at the file `books.txt`, which is a CSV file encoded with the ISO-8859-1 system (i.e. the Latin 1 system). + +If we use the defaults in Spark, you can see in the result below that some characters in the `Title` column are not correctly interpreted. Remember, this problem occurs because of a mismatch in encoding systems. Spark thinks `books.txt` is using the UTF-8 system, but, in reality, it uses the ISO-8859-1 system: + +```{python} +books = spark.read\ + .option("header", True)\ + .csv("../Data/books.txt") + +books.show() +``` + +But if we tell Spark to use the ISO-8859-1 system while reading the file, then, all problems are solved, and all characters in the file are correctly interpreted, as you see in the result below: + +```{python} +books = spark.read\ + .option("header", True)\ + .option("encoding", "ISO-8859-1")\ + .csv("../Data/books.txt") + +books.show() +``` + + +## Setting the format of dates and timestamps + +The format that humans write dates and timestamps vary drastically over the world. By default, Spark will assume that the dates and timestamps stored in your file are in the format described by the ISO-8601 standard. That is, the "YYYY-mm-dd", or, "year-month-day" format. + +But this standard might not be the case for your file. For example: the brazilian people usually write dates in the format "dd/mm/YYYY", or, "day/month/year"; some parts of Spain write dates in the format "YYYY/dd/mm", or, "year/day/month"; on Nordic countries (i.e. Sweden, Finland) dates are written in "YYYY.mm.dd" format. + +Every format of a date or timestamp is defined by using a string with the codes of each part of the date/timestamp, like the letter 'Y' which represents a 4-digit year, or the letter 'd' which represents a 2-digit day. You can see the complete list of codes and their description in the official documentation of Spark^[]. + +As an example, lets look into the `user-events.json` file. We can see that the dates and timestamps in this file are using the "dd/mm/YYYY" and "dd/mm/YYYY HH:mm:ss" formats respectively. + +```{python} +peek_file("../Data/user-events.json", n_lines=3) +``` + +Date variables are usually interpreted by Spark as string variables. In other words, Spark usually do not convert data that contains dates to the date type of Spark. In order to Spark + +```{python} +from pyspark.sql.types import StructType, StructField +from pyspark.sql.types import DateType, StringType, TimestampType + +schema = StructType([ + StructField('dateOfEvent', DateType(), True), + StructField('timeOfEvent', TimestampType(), True), + StructField('userId', StringType(), True), + StructField('nameOfEvent', StringType(), True) +]) + +user_events = spark.read\ + .option("dateFormat", "d/M/y")\ + .option("timestampFormat", "d/M/y k:m:s")\ + .json("../Data/user-events.json", schema = schema) + +user_events.show() +``` + + + diff --git a/Chapters/08-transforming2.qmd b/Chapters/08-transforming2.qmd index 287b1889..ba827c7e 100644 --- a/Chapters/08-transforming2.qmd +++ b/Chapters/08-transforming2.qmd @@ -1,785 +1,785 @@ -# Transforming your Spark DataFrame - Part 2 - - -At @sec-transforming-dataframes-part1 I introduced six core types of transformations over Spark DataFrames. In this chapter, I will expand your knowledge by introducing six more commom types of transformations available to Spark DataFrames, which are: - -- Replacing null values; -- Removing duplicated values; -- Merging multiple DataFrames with UNION operations; -- Merging multiple DataFrames with JOIN operations; -- Rows to columns and columns to rows with Pivot operations; -- Collecting and explode operations; - -```{python} -#| include: false -# To execute the next chunks with success, we need to start a Spark Session -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - -## Removing duplicated values from your DataFrame {#sec-remove-duplicates} - -Removing duplicated values from DataFrames is a very commom operation in ETL pipelines. In `pyspark` you have two options to remove duplicated values, which are: - -- `distinct()` which removes all duplicated values considering the combination of all current columns in the DataFrame; -- `drop_duplicates()` or `dropDuplicates()` which removes all duplicated values considering a specific combination (or set) of columns in the DataFrame; - -These three methods above are all DataFrames methods. Furthermore, the methods `drop_duplicates()` and `dropDuplicates()` are equivalent. They both mean the same thing, and have the same arguments and perform the same operation. - -When you run `drop_duplicates()` or `dropDuplicates()` without any argument, they automatically use by default the combination of all columns available in the DataFrame to identify the duplicated values. As a consequence, over this specific situation, the methods `drop_duplicates()` or `dropDuplicates()` become equivalent to the `distinct()` method. Because they use the combination of all columns in the DataFrame. - -Lets pick the `supermarket_sales` DataFrame exposed below as an example. You can see below, that this DataFrame contains some duplicated values, specifically on the transaction IDs "T001" e "T004". We also have some "degree of duplication" on the transaction ID "T006". But the two rows describing this ID "T006" are not precisely identical, since they have a small difference on the `quantity` column. - -```{python} -from pyspark.sql.types import ( - StructType, StructField, - StringType, IntegerType, - FloatType -) - -schema = StructType([ - StructField("transaction_id", StringType(), True), - StructField("product_name", StringType(), True), - StructField("quantity", IntegerType(), True), - StructField("price", FloatType(), True) -]) - -data = [ - ("T001", "Apple", 5, 1.2), - ("T001", "Apple", 5, 1.2), - ("T002", "Banana", 3, 0.8), - ("T004", "Mango", 2, 2.0), - ("T004", "Mango", 2, 2.0), - ("T004", "Mango", 2, 2.0), - ("T005", "Grapes", 1, 3.5), - ("T006", "Apple", 2, 1.2), - ("T006", "Apple", 1, 1.2), - ("T007", "Banana", 4, 0.8), - ("T008", "Apple", 3, 1.2) -] - -supermarket_sales = spark.createDataFrame(data, schema) -supermarket_sales.show(6) -``` - - -We can remove these duplicated values by using the `distinct()` method. In the example of transaction ID "T004", all duplicated rows of this ID contains the same values `("T004", "Mango", 2, 2.0)`, precisely in this order. Because of that, the `distinct()` method is enough to remove all of these duplicated values from the table. - - -```{python} -supermarket_sales\ - .distinct()\ - .show(6) -``` - - -However, the two rows describing the transaction ID "T006" have some difference on the `quantity` column, and as a result, the `distinct()` method does not identify these two rows as "duplicated values", and they are not removed from the input DataFrame. - -Now, if we needed a DataFrame that contained one row for each transaction ID (that is, the values on `transaction_id` column must be unique), we could use the `drop_duplicates()` method with only the column `transaction_id` as the key to remove all duplicated values of this column. This way, we get a slightly different output as you can see below. - -```{python} -supermarket_sales\ - .drop_duplicates(['transaction_id'])\ - .show(8) -``` - -In the example above, the duplicated values of IDs "T001" and "T004" were removed as we expected. But we also removed the second value for ID "T006". Because we did not listed the `quantity` column on `drop_duplicates()`, and, as a result, the `drop_duplicates()` method was not concerned with the differences on the `quantity` column. In other words, it used solely the `transaction_id` column to identify the duplicated values. - -## Other techniques for dealing with `null` values - -At @sec-filter-null-values I showed how you can use `filter()` or `where()` DataFrame methods to remove all rows that contained a null value on some column. There are two other DataFrames methods available in Spark that you might want use to deal with null values. In essence, you can either remove or replace these null values. - - -### Replacing `null` values - -Instead of removing the null values, and pretending that they never existed, maybe, you prefer to replace these null values by a more useful or representative value, such as `0`, or an empty string (`''`), or a `False` value, etc. To do that in `pyspark`, we can use the `na.fill()` and `fillna()` DataFrame methods. - -Both methods mean the same thing, and they work the exact same way. The most popular way of using this methods, is to provide a python dict as input. Inside this dict you have key-value pairs, where the key represents the column name, and the value represents the static value that will replace all null values that are found on the column specified by the key. - -In the example below, I created a simple `df` DataFrame which contains some null values on the `age` column. By providing the dict `{'age': 0}` to `fillna()`, I am asking `fillna()` to replace all null values found on the `age` column by the value `0` (zero). - -```{python} -data = [ - (1, "John", None, "2023-04-05"), - (2, "Alice", 25, "2023-04-09"), - (3, "Bob", None, "2023-04-12"), - (4, "Jane", 30, None), - (5, "Mike", 35, None) -] -columns = ["id", "name", "age", "date"] -df = spark.createDataFrame(data, columns) - -# Or `df.na.fill({'age': 0}).show()` -# It is the same thing -df.fillna({'age': 0}).show() -``` - -You can see in the above example, that the null values present in the `date` column were maintained intact on the result. Because we did not asked to `fillna()` to replace the values of this column, by including it on the input dict that we provided. - -If we do include this `date` column on the input dict, then, `fillna()` will take care of this column as well: - -```{python} -df.fillna({'age': 0, 'date': '2023-01-01'})\ - .show() -``` - - -### Dropping all `null` values - -Spark also offers the `na.drop()` and `dropna()` DataFrames methods, which you can use to easily remove any row that contains a null value on any column of the DataFrame. This is different from `filter()` and `where()`, because on these two methods you have to build a logical expression that translate "not-null values". - -In contrast, on `na.drop()` and `dropna()` methods you do not have a logical expression. You just call these methods, and they do the heavy work for you. They search through the entire DataFrame. When it identify a null value on the DataFrame, it removes the entire row that contains such null value. - -For example, if we apply these methods on the `df` DataFrame that we used on the previous section, this is the end result: - -```{python} -df.na.drop()\ - .show() -``` - -## Union operations - -When you have many individual DataFrames that have the same columns, and you want to unify them into a single big DataFrame that have all the rows from these different DataFrames, you want to perform an UNION operation. - -An UNION operation works on a pair of DataFrames. It returns the row-wise union of these two DataFrames. In `pyspark`, we perform UNION operations by using the `union()` DataFrame method. To use this method, you just provide the other DataFrame you want to make the union with. So the expression `df1.union(df2)` creates a new DataFrame which contains all the rows from both the `df1` and `df2` DataFrames. - -Moreover, in commom SQL engines there are usually two kinds of UNION operations, which are: *union all* and *union distinct*. When you use an *union all* operation, you are saying that you just want to unifiy the two DataFrames, no matter what data you find in each one of them. You do not care if duplicated values are generated in the process, because an observation "x" might be present both on `df1` and `df2`. - -In contrast, an *union distinct* operation is the exact opposite of that. It merges the rows from both DataFrames together, and then, it removes all duplicated values from the result. So you use an *union distinct* operation when you want a single DataFrame that contains all rows from both DataFrames `df1` and `df2`, but, you do not want any duplicated rows into this single DataFrame. - -By default, the `union()` method always perform an *union all* operation. However, to do an *union distinct* operation in pyspark, you actually have to use the `union()` method in conjunction with the `distinct()` or `drop_duplicates()` methods. In other words, there is not a direct method in pyspark that performs an *union distinct* operation on a single command. - -Look at the example below with `df1` and `df2` DataFrames. - -```{python} -df1 = [ - (1, 'Anne', 'F'), - (5, 'Mike', 'M'), - (2, 'Francis', 'M'), -] - -df2 = [ - (5, 'Mike', 'M'), - (7, 'Arthur', 'M'), - (1, 'Anne', 'F'), -] - -df1 = spark.createDataFrame(df1, ['ID', 'Name', 'Sex']) -df2 = spark.createDataFrame(df2, ['ID', 'Name', 'Sex']) - -# An example of UNION ALL operation: -df1.union(df2).show() -``` - -```{python} -# An example of UNION DISTINCT operation -df1\ - .union(df2)\ - .distinct()\ - .show() -``` - -Because an UNION operation merges the two DataFrames in a vertical way, the columns between the two DataFrames must match. If the columns between the two DataFrames are not in the same places, a mismatch happens during the operation, and Spark will do nothing to fix your mistake. - -Most programming languages would issue an error at this point, warning you about this conflict between the columns found on each DataFrame and their respective positions. However, in Spark, if the columns are out of order, Spark will continue with the UNION operation, as if nothing was wrong. Spark will not even raise a warning for you. Since this problem can easily pass unnotice, be aware of it. - -In the example below, we have a third DataFrame called `df3`. Notice that the columns in `df3` are the same of `df1` and `df2`. However, the columns from `df3` are in a different order than in `df1` and `df2`. -```{python} -data = [ - ('Marla', 'F', 9), - ('Andrew', 'M', 15), - ('Peter', 'M', 12) -] -df3 = spark.createDataFrame(data, ['Name', 'Sex', 'ID']) -df3.show() -``` - -If we try to perform an UNION operation between, let's say, `df2` and `df3`, the operations just works. But, the end result of this operation is not correct, as you can see in the example below. - -```{python} -df2.union(df3).show() -``` - -Although this might be problematic, Spark provides an easy-to-use solution when the columns are in different places between each DataFrame. This solution is the `unionByName()` method. - -The difference between `union()` and `unionByName()` methods, is that the `unionByName()` method makes an matching by column name, before if performs the UNION. In other words, it compares the column names found on each DataFrame and it matches each column by its name. This way, the columns present on each DataFrame of the UNION must have the same name, but they do not need to be in the same positions on both DataFrames. - -If we use this method on the same example as above, you can see below that we get a different result, and a correct one this time. - -```{python} -df2.unionByName(df3)\ - .show() -``` - - -Therefore, if you want to make an UNION operation between two DataFrames, you can generally use the `union()` method. But if you suspect the columns from these DataFrames might be in different positions on each DataFrame, you can change to the `unionByName()` method. - -In contrast, if the columns are different not only on position, but also, on column name, then, `unionByName()` will not work. The two DataFrames involved on an UNION operation must be very similar. If they are not similar, then, you will have a hard time trying to do the operation. - -Another problem that you might face is if you try to unify two DataFrames that have different numbers of columns between them. In this situation, it means that the two DataFrames have "different widths", and, as a result of that, an `AnalysisException` error will be raised by Spark if you try to unify them with an UNION operation, like in the example below: - -```{python} -#| eval: false -from pyspark.sql.types import ( - StructField, - StructType, - LongType -) - -schema = StructType([StructField('ID', LongType(), False)]) -df4 = [ - (19,), (17,), (16,) -] -df4 = spark.createDataFrame(df4, schema) -df3.union(df4).show() -``` - -``` -AnalysisException: Union can only be performed on tables -with the same number of columns, but the first table has -3 columns and the second table has 1 columns; -'Union false, false -:- LogicalRDD [Name#703, Sex#704, ID#705L], false -+- LogicalRDD [ID#762L], false -``` - -## Join operations - -A JOIN operation is another very commom operation that is also used to bring data from scattered sources into a single unified DataFrame. In pyspark, we can build JOIN operations by using the `join()` DataFrame method. This method accepts three arguments, which are: - -- `other`: the DataFrame you want to JOIN with (i.e. the DataFrame on the right side of the JOIN); -- `on`: a column name, or a list of column names, that represents the key (or keys) of the JOIN; -- `how`: the kind of JOIN you want to perform (inner, full, left, right); - -As a first example, let's use the `info` and `band_instruments` DataFrames. With the source code below, you can quickly re-create these two DataFrames in your session: - -```{python} -info = [ - ('Mick', 'Rolling Stones', '1943-07-26', True), - ('John', 'Beatles', '1940-09-10', True), - ('Paul', 'Beatles', '1942-06-18', True), - ('George', 'Beatles', '1943-02-25', True), - ('Ringo', 'Beatles', '1940-07-07', True) -] - -info = spark.createDataFrame( - info, - ['name', 'band', 'born', 'children'] -) - -band_instruments = [ - ('John', 'guitar'), - ('Paul', 'bass'), - ('Keith', 'guitar') -] - -band_instruments = spark.createDataFrame( - band_instruments, - ['name', 'plays'] -) -``` - -If you look closely to these two DataFrames, you will probably notice that they both describe musicians from two famous rock bands from 60's and 70's. The `info` DataFrame have more personal or general informations about the musicians, while the `band_instruments` DataFrame have only data about the main musical instruments that they play. - -```{python} -info.show() -``` - -```{python} -band_instruments.show() -``` - -It might be of your interest, to have a single DataFrame that contains both the personal information and the musical instrument of each musician. In this case, you can build a JOIN operation between these DataFrames to get this result. An example of this JOIN in pyspark would be: - -```{python} -info.join(band_instruments, on = 'name', how = 'left')\ - .show(5) -``` - -In the example above, we are performing a *left join* between the two DataFrames, using the `name` column as the JOIN key. Now, we have a single DataFrame with all 5 columns from both DataFrames (`plays`, `children`, `name`, `band` and `born`). - - -### What is a JOIN ? - -I imagine you are already familiar with JOIN operations. However, in order to build good and precise JOIN operations, is very important to know what a JOIN operation actually is. So let's revisit it. - -A JOIN operation merges two different DataFrames together into a single unified DataFrame. It does this by using a column (or a set of columns) as keys to identify the observations of both DataFrames, and connects these observations together. - -A JOIN (like UNION) is also an operation that works on a pair of DataFrames. It is very commom to refer to this pair as "the sides of the JOIN". That is, the DataFrame on the left side of the JOIN, and the DataFrame on the right side of the JOIN. Or also, the DataFrames "A" (left side) and "B" (right side). - -The main idea (or objective) of the JOIN is to bring all data from the DataFrame on the right side, into the DataFrame on the left side. In other words, a JOIN between DataFrames A and B results into a DataFrame C which contains all columns and rows from both DataFrames A and B. - -In an UNION operation, both DataFrames must have the same columns, because in an UNION operation you are concatenating both DataFrames together vertically, so the number of columns (or the "width" of the tables) need to match. However, in a JOIN operation, both DataFrames only need to have at least one column in commom. Apart from that, in a JOIN, both DataFrames can have very different structure and columns from each other. - -One key characteristic of JOIN operations is it's key matching mechanism. A JOIN uses the columns you provide to **build a key**. This key is used to identify rows (or "observations") in both DataFrames. In other words, these keys identifies relationships between the two DataFrames. These relations are vital to the JOIN. - -If we go back to `info` and `band_instruments` DataFrames, and analyse them for a bit more, we can see that they both have a `name` column which contains the name of the musician being described on the current row. This `name` column can be used as **the key** of the JOIN. Because this column is available on both DataFrames, and it can be used to identify a single observation (or a single musician) present in each DataFrame. - -So the JOIN key is a column (or a combination of columns) that can identify what observations are (and are not) present on both DataFrames. At @fig-keys-comparison, we can see the observations from `info` and `band_instruments` in a visual manner. You see in the figure that both Paul and John are described in both DataFrames. At the same time, Ringo, Mick and George are present only on `info`, while `Keith` is only at `band_instruments`. - -![The relations between `info` and `band_instruments` DataFrames](./../Figures/keys_comparacao.png){#fig-keys-comparison} - -In a certain way, you can see the JOIN key as a way to **identify relationships between the two DataFrames**. A JOIN operation use these relationships to merge your DataFrames in a precise way. A JOIN does not simply horizontally glue two DataFrames together. It uses the JOIN key to perform a matching process between the observations of the two DataFrames. - -This matching process ensures that the data present DataFrame "B" is correctly transported to the DataFrame "A". In other words, it ensures that the oranges are paired with oranges, apples with apples, bananas with bananas, you got it. - -Just to describe visually what this matching process is, we have the @fig-join-matching below. In this figure, we have two DataFrames on the left and center of the image, which represents the inputs of the JOIN. We also have a third DataFrame on the right side of the image, which is the output (or the result) of the JOIN. - -In this specific example, the column that represents the JOIN key is the `ID` column. Not only this column is present on both DataFrames, but it also represents an unique identifier to each person described in both tables. And that is precisely the job of a JOIN key. It represents a way to identify observations (or "persons", or "objects", etc.) on both tables. - -You can see at @fig-join-matching, that when the `ID` 100 is found on the 1st row of the left DataFrame, the JOIN initiates a lookup/matching process on the center DataFrame, looking for a row in the DataFrame that matches this `ID` 100. When it finds this `ID` 100 (on the 4th row of the center DataFrame), it captures and connects these two rows on both DataFrames, because these rows describes the same person (or observation), and because of that, they should be connected. This same matching process happens for all remaining `ID` values. - - -![The matching process of a JOIN operation](./../Figures/pareamento1.png){#fig-join-matching} - -### The different types of JOIN - -JOIN operations actually comes in different flavours (or types). The four main known types of JOINs are: *full*, *left*, *right* and *inner*. All of these different types of JOIN perform the same steps and matching processes that we described on the previous section. But they differ on the treatment they do to unmatched observations. In other words, these different types of JOINs differ on **what they do in cases when an observation is not found on both DataFrames of the JOIN** (e.g. when an observation is found only on table A). - -In other words, all these four types will perform the same matching process between the two DataFrames, and will connect observations that are found in both DataFrames. However, which rows are included in the final output is what changes between each type (or "flavour") of JOIN. - -In this situation, the words "left" and "right" are identifiers to the DataFrames involved on the JOIN operation. That is, the word *left* refers to the DataFrame on the left side of the JOIN, while the word *right* refers to the DataFrame on the right side of the JOIN. - -A very useful way of understanding these different types of JOINs is to represent both DataFrames as numerical sets (as we learn in mathematics). The @fig-join-sets gives you a visual representation of each type of JOIN using this "set model" of representing JOINs. Remember, all of these different types of JOIN work the same way, they just do different actions when an observation is not found on both tables. - -The most "complete" and "greedy" type of JOIN is the *full join*. Because this type returns all possible combinations of both DataFrames. In other words, this type of JOIN will result in a DataFrame that have all observations from both DataFrames. It does not matter if an observation is present only on table A, or only on table B, or maybe, on both tables. A *full join* will always try to connect as much observation as it can. - -![A visual representation for types of JOIN using numerical sets](./../Figures/join-sets.png){#fig-join-sets} - -That is why the *full join* is represented on @fig-join-sets as the union between the two tables (or the two sets). In contrast, an *inner join* is the intersection of the two tables (or two sets). That is, an *inner join* will result in a new DataFrame which contains solely the observations that could be found on both tables. If a specific observation is found only on one table of the JOIN, this observation will be automatically removed from the result of the *inner join*. - -If we go back to the `info` and `band_instruments` DataFrames, and use them as an example, you can see that only Paul and John are included on the result of an *inner join*. While in a *full join*, all musicians are included on the resulting DataFrame. - -```{python} -# An inner join between `info` and `band_instruments`: -info.join(band_instruments, on = 'name', how = 'inner')\ - .show() -``` - -```{python} -# A full join between `info` and `band_instruments`: -info.join(band_instruments, on = 'name', how = 'full')\ - .show() -``` - -On the other hand, the *left join* and *right join* are kind of self-explanatory. On a *left join*, all the observations from the left DataFrame are kept intact on the resulting DataFrame of the JOIN, regardless of whether these observations were found or not on the right DataFrame. In contrast, an *right join* is the opposite of that. So, all observations from the right DataFrame are kept intact on the resulting DataFrame of the JOIN. - - -In pyspark, you can define the type of JOIN you want to use by setting the `how` argument at `join()` method. This argument accepts a string with the type of JOIN you want to use as input. - -- `how = 'left'`: make a *left join*; -- `how = 'right'`: make a *right join*; -- `how = 'full'`: make a *full join*; -- `how = 'inner'`: make an *inner join*; -- `how = 'semi'`: make a *semi join*; -- `how = 'anti'`: make an *anti join*; - -You can see on the list above, that `pyspark` do have two more types of JOINs, which are the *semi join* and *anti join*. These are "filtering types" of JOINs. Because they perform the matching process, and only filter the rows from table A (i.e. the DataFrame on the left side of the JOIN) based on the matches found on table B (i.e. the DataFrame on the right side of the JOIN). - -In other words, these both types are used as a filter mechanism, and not as a merge mechanism. When you use these two types, instead of merging two DataFrames together, you are interested in filtering the rows of DataFrame A based on the existence of these rows in DataFrame B. - -This is different from what we learned on *left*, *right*, *full* and *inner* types, because they do not only change which rows are included in the final result, but they also add the columns from table B into table A. Because of this behavior, these four main types are usually called as "additive types" of JOIN, since they are always adding data from table B into table A, i.e. they are merging the two tables together. - -In more details, an *anti join* perform the exact opposite matching process of an *inner join*. This means that an *anti join* will always result in a new DataFrame that contains solely the observations that exists only on one DataFrame of the JOIN. In other words, the observations that are found on both tables are automatically removed from the resulting DataFrame of the JOIN. If we look at the example below, we can see that both John and Paul were removed from the resulting DataFrame of the *anti join*, because these two musicians are present on both DataFrames: - -```{python} -info.join(band_instruments, on = 'name', how = 'anti')\ - .show() -``` - -In contrast, a *semi join* is equivalent to an *inner join*, with the difference that it does not adds the column from table B into table A. So this type of JOIN filter the rows from DataFrame A that also exists in DataFrame B. If an observation is found on both tables, this observation will appear on the resulting DataFrame. - -```{python} -info.join(band_instruments, on = 'name', how = 'semi')\ - .show() -``` - -Just to keep using our visual model of sets, on @fig-join-sets2 you can see the *semi* and *anti* JOIN types represented as numerical sets. - -![The two "filter types" of JOIN](./../Figures/join-sets2.png){#fig-join-sets2} - -### A cross JOIN as the seventh type - -We described six different types of JOINs on the previous section. But Spark also offers a seventh type of JOIN called *cross join*. This is a special type of JOIN that you can use by calling the `crossJoin()` DataFrame method. - -In essence, a *cross join* returns, as output, the cartesian product between two DataFrames. It is similar to R functions [`base::expand.grid()`](https://www.rdocumentation.org/packages/base/versions/3.6.2/topics/expand.grid)[^expand-grid] or [`dplyr::expand()`](https://tidyr.tidyverse.org/reference/expand.html)[^expand], and also, the Python equivalent [`itertools.product()`](https://docs.python.org/2/library/itertools.html#itertools.product)[^itertools]. - -[^expand-grid]: -[^expand]: -[^itertools]: - - -This is a type of JOIN that you should avoid to use, specially if one (or both) of the DataFrames involved is a big DataFrame with thousands/millions of rows. Because a *cross join* will always produce a cartesian product between the two DataFrames involved. This means that, if DataFrame A contains $x$ rows, and DataFrame B contains $y$ rows, the end result of the *cross join* is a new DataFrame C that contains $x \times y$ rows. - -In other words, the number of rows in the output of a *cross join* can grow exponentially. For example, a *cross join* between a DataFrame of 1 thousand rows, and another DataFrame of 10 thousand of rows (both are small DataFrames for the scale and sizes of a real-world big data environment), would produce a DataFrame with $10^3 \times 10^4 = 10^7$, that is, 10 milion of rows as output. - -In a big data environment, dealing with something that grows exponentially... it is never a good idea. So try to avoid a *cross join* and use him solely on very small DataFrames. - -As an example, to apply a *cross join* between `info` and `band_instruments` DataFrames we can use the `crossJoin()` method, like in the example below: - -```{python} -info.crossJoin(band_instruments)\ - .show() -``` - -A *cross join* is a special type of JOIN because it does not use "keys" and a matching process. It just computes every possible combination between the rows from both DataFrames. Because of the absence of these keys characteristics of a JOIN, many data analysts and engineers would not call a *cross join* as a type of JOIN (in other words, they would call it a type of something else). But regardless of our opinions, Spark decided to call this process as the *cross join*, so this is the way we are calling this process on this book. - - -## Pivot operations - -Pivot operations are extremely useful, and they are probably the main operation you can use to completely reformat your table. What these operations do is basically change the dimensions of your table. In other words, this kind of operation transform columns into rows, or vice versa. - -As a comparison with other data frameworks, a pivot operation in Spark is the same operation performed by R functions [`tidyr::pivot_longer()`](https://tidyr.tidyverse.org/reference/pivot_longer.html)[^longer] and [`tidyr::pivot_wider()`](https://tidyr.tidyverse.org/reference/pivot_wider.html)[^wider] from the famous R framework `tidyverse`; or, the same as the [`pivot()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.pivot.html)[^pivot] and [`melt()`](https://pandas.pydata.org/docs/reference/api/pandas.melt.html)[^melt] methods from the Python framework `pandas`. - -[^longer]: -[^wider]: -[^pivot]: -[^melt]: - - -In Spark, pivot operations are performed by the `pivot()` DataFrame method, and by the `stack()` Spark SQL function. Pivot transformations are available in both directions. That is, you can transform either rows into columns (corresponds to `pivot()`), or, columns into rows (corresponds to `stack()`). Let's begin with `stack()`, and after that, we explain the `pivot()` method. - -### Transforming columns into rows - -The `stack()` Spark SQL function allows you to transform columns into rows. In other words, you can make your DataFrame "longer" with this kind of operation, because you remove columns ("width") from the table, and adds new rows ("heigth"). This gives an aspect of "longer" to your table, because after this operation, you table usually have more rows than columns. - -As a first example, lets use the `religion` DataFrame, which you can re-create in your session with the source code below: - -```{python} -data = [ - ('Agnostic', 27, 34, 60), - ('Atheist', 12, 27, 37), - ('Buddhist', 27, 21, 30) -] -cols = ['religion', '<$10k', '$10k-$20k', '$20k-$30k'] -religion = spark.createDataFrame(data, cols) -religion.show() -``` - -This DataFrame is showing us the average salary of people belonging to different religious groups. In each column of this DataFrame, you have data for a specific salary level (or range). This is a structure that can be easy and intuitive for some specific operations, but it also might impose some limitations, specially if you need to apply a vectorised operation over these salary ranges. - -The basic unit of this DataFrame are the religious groups, and the salary ranges represents a characteristic of these groups. The different salary ranges are distributed across different columns. But what if we transformed these multiple columns into multiple rows? How can we accomplish that? - -What we need to do, is to concentrate the labels (or the column names) of salary ranges into a single column, and move the respective values of the salary levels into another column. In other words, we need to create a column that contains the labels, and another column that contains the values. @fig-pivot1 have a visual representation of this process: - -![A visual representation of a pivot operation](./../Figures/pivot1.png){#fig-pivot1} - -Let's build this transformation in `pyspark`. First, remember that `stack()` is not a DataFrame method. It is a Spark SQL function. However, it is not an exported Spark SQL function, which means that you cannot import this function from the `pyspark.sql.function` module. This means that `stack()` will never be directly available in your python session to use. - -So how do you use it? The answer is: use it inside Spark SQL! The `stack()` function is not available directly in python, but it is always available in Spark SQL, so all you need to do, is to use `stack()` inside functions and methods such as `expr()` (that I introduced at @sec-sql-expr), or `sql()` to access Spark SQL functionality. - -Now, the `stack()` function have two main arguments, which are the number of columns to transform into rows, and a sequence of key-value pairs that describes which columns will be transformed into rows, and the label values that corresponds to each column being transformed. - -As a first example, the source code below replicates the transformation exposed at @fig-pivot1: - -```{python} -from pyspark.sql.functions import expr -stack_expr = """ -stack(3, - '<$10k', `<$10k`, - '$10k-$20k', `$10k-$20k`, - '$20k-$30k', `$20k-$30k` -) AS (salary_range, avg_salary) -""" - -longer_religion = religion\ - .select('religion', expr(stack_expr)) - -longer_religion.show() -``` - -An important aspect about the `stack()` function, is that it always outputs two new columns (one column for the labels - or the keys, and another for the values). In the example above, these new columns are `salary_range` and `avg_salary`. - -The first column identifies from which column (before the `stack()` operation) the value present at `avg_salary` came from. This means that this first column produced by `stack()` works as a column of labels or identifiers. These labels identify from which of the three transformed columns (`<$10k`, `$10k-$20k` and `$20k-$30k`) the row value came from. In the visual representation exposed at @fig-pivot1, this "labels column" is the `income` column. - -On the other hand, the second column in the output of `stack()` contains the actual values that were present on the columns that were transformed. This "values column" in the example above corresponds to the column `avg_salary`, while in the visual representation exposed at @fig-pivot1, it is the `values` column. - -The first argument in `stack()` is always the number of columns that will be transformed by the function into rows. In our example, we have three columns that we want to transform, which are `<$10k`, `$10k-$20k` and `$20k-$30k`. That is why we have the number 3 as the first argument to `stack()`. - -After that, we have a sequence of key-value pairs. In each pair, the value side (i.e. the right side) of the pair contains the name of the column that will be transformed, and the key side (i.e. the left side) of the pair contains the "label value", or, in other words, which value represents, marks, label, or identifies the values that came from the column described in the right side of the pair. - -Normally, you set the label value to be equivalent to the column name. That is, both sides of each pair are usually pretty much the same. But you can change this behaviour if you want. In the example below, all values that came from the `<$10k` are labeled as `"Below $10k"`, while the values from the `$10k-$20k` column, are labeled in the output as `"Between $10k-$20k"`, etc. - -```{python} -stack_expr = """ -stack(3, - 'Below $10k', `<$10k`, - 'Between $10k-$20k', `$10k-$20k`, - 'Between $20k-$30k', `$20k-$30k` -) AS (salary_range, avg_salary) -""" - -religion\ - .select('religion', expr(stack_expr))\ - .show() -``` - - -Furthermore, because the `stack()` function always outputs two new columns, if you want to rename these two new columns being created, to give them more readable and meaningful names, you always need to provide two new column names at once, inside a tuple, to the `AS` keyword. - -In the example above, this tuple is `(salary_range, avg_salary)`. The first value in the tuple is the new name for the "labels column", while the second value in the tuple, is the new name for the "values column". - -Now, differently from other Spark SQL functions, the `stack()` function should not be used inside the `withColumn()` method, and the reason for this is very simple: `stack()` always returns two new columns as output, but the `withColumn()` method can only create one column at a time. - -This is why you get an `AnalysisException` error when you try to use `stack()` inside `withColumn()`, like in the example below: - -```{python} -#| eval: false - -religion\ - .withColumn('salary_ranges', stack_expr)\ - .show() -``` - -``` -AnalysisException: The number of aliases supplied in the AS clause -does not match the number of columns output by the UDTF expected -2 aliases but got salary_ranges -``` - -### Transforming rows into columns - -On the other side, if you want to transform rows into columns in your Spark DataFrame, you can use the `pivot()` method. One key aspect of the `pivot()` method, is that it must always be used in conjunction with the `groupby()` method that we introduced at @sec-group-by. In other words, `pivot()` does not work without `groupby()`. - -You can think (or interpret) that the `groupby()` method does the job of defining (or identifying) which columns will be present in the output of `pivot()`. For example, if your DataFrame contains five columns, which are `A`, `B`, `C`, `D` and `E`; but you only listed columns `A` and `C` inside `groupby()`, this means that if you perform a pivot operation after that, the columns `B`, `D` and `E` will not be present in the output of `pivot()`. These three columns (`B`, `D` and `E`) will be automatically dropped during the pivot operation. - -In contrast, the `pivot()` method does the job of identifying a single column containing the values that will be transformed into new columns. In other words, if you list the column `car_brands` inside `pivot()`, and, this column contains four unique values, for example, `Audi`, `BMW`, `Jeep` and `Fiat`, this means that, in the output of `pivot()`, four new columns will be created, named as `Audi`, `BMW`, `Jeep` and `Fiat`. - -Therefore, we use `groupby()` to define the columns that will be kept intact on the output of the pivot operation; we use `pivot()` to mark the column that contains the rows that we want to transform into new columns; at last, we must learn how to define which values will populate the new columns that will be created. Not only that, we also need to specify how these values will be calculated. And for that, we need to use an aggregating function. - -This is really important, you can not do a pivot operation without aggregating the values that will compose (or populate) the new columns you are creating. Without it, Spark will not let you do the pivot operation using the `pivot()` method. - -As a first example, let's return to the `religion` DataFrame. More specifically, to the `longer_religion` DataFrame, which is the pivoted version of the `religion` DataFrame that we created on the previous section, using the `stack()` function. - -```{python} -longer_religion.show() -``` - -We can use this `longer_religion` DataFrame and the `pivot()` method to perform the inverse operation we described at @fig-pivot1. In other words, we can re-create the `religion` DataFrame through `longer_religion` using the `pivot()` method. The source code below demonstrates how we could do such thing: -```{python} -from pyspark.sql.functions import first - -# Equivalent to the `religion` DataFrame: -longer_religion\ - .groupby('religion')\ - .pivot('salary_range')\ - .agg(first('avg_salary'))\ - .show() -``` - -In the example above, you can see the three core parts that we described: 1) use `groupby()` to define which columns will be preserved from the input DataFrame; 2) use `pivot()` to define which column will be used to transform rows into new columns; 3) the aggregating functions describing which values will be used, and how they are going to be calculated - `agg(first('avg_salary'))`. @fig-pivot2 exposes these core parts in a visual manner. - -![The three core parts that define the use of `pivot()`](./../Figures/pivot2.png){#fig-pivot2} - -When you use `pivot()`, you have to apply an aggregating function over the column from which you want to extract the values that will populate the new columns created from the pivot operation. This is a prerequisite, because Spark needs to know what he must do in case he finds two (or more) values that are mapped to the same cell in the pivot operation. - -In the above example, we used the `first()` function to aggregate the values from the `avg_salary` column. With this function, we are telling Spark, that if it finds two (or more) values that are mapped the same cell, then, Spark should pick the *first value if finds* in the input DataFrame, and simply ignore the remaining values. - -Let's see an example. In the code chunk below, we are creating a new DataFrame called `df`: - -```{python} -data = [ - ('2023-05-01', 'Anne', 1, 15), - ('2023-05-02', 'Mike', 2, 25), - ('2023-05-02', 'Mike', 2, 34), - ('2023-05-02', 'Mike', 2, 21), - ('2023-05-03', 'Dani', 3, 18) -] -cols = ['date', 'name', 'id', 'value'] -df = spark.createDataFrame(data, cols) -df.show() -``` - -Let's suppose you want to transform the rows in the `name` column into new columns, and, populate these new columns with the values from the `value` column. Following what we discussed until now, we could do this by using the following source code: - -```{python} -df\ - .groupby('date', 'id')\ - .pivot('name')\ - .agg(first('value'))\ - .show() -``` - -However, there is a problem with this operation, because we lost some observations in the process. The specific combination `('2023-05-02', 'Mike')` have three different values in the `value` column, which are `25`, `34` and `21`. But there is only a single cell in the new DataFrame (i.e. the output of the pivot operation) to hold these values. More specifically, the cell located at the first row in the fifth column. - -In other words, Spark found three different values for a single cell (or single space), and this is always a problem. Spark cannot simply put three different values in a single cell. A Spark DataFrame just do not work that way. Every cell in a Spark DataFrame should always hold a single value, whatever that value is. - -That is the exact problem that an aggregating function solves in a pivot operation. The aggregating function does the job of ensuring that a single value will be mapped to every new cell created from the pivot operation. Because an aggregating function is a function that aggregates (or that summarises) a set of values into a single value. - -In the example above we used `first()` as our aggregating function. So when Spark encountered the three values from the combination `('2023-05-02', 'Mike')`, it simply picked the first value from the three. That is why we find the value `25` at the first row in the fifth column. - -We can change this behaviour by changing the aggregating function applied. In the example below, we are using `sum()`, and, as a result, we get now the value of `80` (which is the sum of values `25`, `34` and `21`) at the first row in the fifth column. - -```{python} -from pyspark.sql.functions import sum -df\ - .groupby('date', 'id')\ - .pivot('name')\ - .agg(sum('value'))\ - .show() -``` - -Now, depending on the data and the structure from your DataFrame, Spark might never encounter a situation where it finds two (or more) values mapped to the same cell in a pivot operation. On this specific case, the output from the pivot operation will likely be the same for many different aggregating functions. In other words, the choice of the aggregating function you want to use might be irrelevant over this specific situation. - -For example, in the `longer_religion` example that we showed before, I could use the `last()` aggregating function (instead of `first()`), and get the exact same result as before. Because in this specific situation, Spark does not find any case of two (or more) values mapped to the same cell in the output DataFrame. - -```{python} -from pyspark.sql.functions import last -longer_religion\ - .groupby('religion')\ - .pivot('salary_range')\ - .agg(last('avg_salary'))\ - .show() -``` - - -## Collecting and explode operations - -You can retract or extend vertically your DataFrame, by nesting multiple rows into a single row, or, the inverse, which is unnesting (or exploding) one single row into multiple rows. The R `tidyverse` framework is probably the only data framework that have a defined name for this kind of operation, which are called "nesting" and "unnesting". - -In Spark, you perform this kind of operations by using the `collect_list()`, `collect_set()` and `explode()` functions, which all comes from the `pyspark.sql.functions` module. The `collect_list()` and `collect_set()` functions are used for retracting (or nesting) your DataFrame, while the `explode()` function is used for extending (or unnesting). - - -As a quick comparison, `explode()` is very similar to the R function [`tidyr::-unnest_longer()`](https://tidyr.tidyverse.org/reference/unnest_longer.html)[^unnest-longer] from the `tidyverse` framework, and also, similar to the Python method [`explode()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.explode.html)[^explode] in the `pandas` framework. In the other hand, `collect_list()` and `collect_set()` functions does a similar job to the R function [`tidyr::nest()`](https://tidyr.tidyverse.org/reference/nest.html)[^nest]. - -[^nest]: -[^unnest-longer]: -[^explode]: - - -### Expanding (or unnesting) with `explode()` - -As an example, we have the `employees` DataFrame below. Each row in this DataFrame describes an employee. The `knowledge` column describes which programming language the employee have experience with, and, the `employee_attrs` column contains dictionaries with general attributes of each employee (such it's department and it's name). - -```{python} -data = [ - (1, ["R", "Python"], {'dep': 'PR', 'name': 'Anne'}), - (2, ["Scala"], {'dep': 'PM', 'name': 'Mike'}), - (3, ["Java", "Python"], {'dep': 'HF', 'name': 'Sam'}) -] -columns = ["employee_id", "knowledge", "employee_attrs"] -employees = spark.createDataFrame(data, columns) -employees.show() -``` - -You can use the `printSchema()` method that we introduced at @sec-dataframe-schema to see the schema of the DataFrame. You can see in the result below that `knowledge` is a column of arrays of strings (i.e. `ArrayType`), while `employee_attrs` is a column of maps (i.e. `MapType`). - -```{python} -employees.printSchema() -``` - -Suppose you wanted to calculate the number of employees that have experience in each programming language. To do that, it would be great to transform the `knowledge` column into a column of strings. Why? Because it would make the counting of the employees easier. - -In other words, if an employee knows, for example, 3 different programming languages, it would be better to have 3 different rows that references this same employee, instead of having a single row that contains an array of three elements, like in the `employees` DataFrame. We can transform the current DataFrame into this new format by using the `explode()` function. - -When you apply the `explode()` function over a column of arrays, this function will create a new row for each element in each array it finds in the column. For example, the employee of ID 1 knows two programming languages (R and Python). As a result, when we apply `explode()` over the `knowledge` column, two rows are created for the employee of ID 1. As you can see in the example below: - -```{python} -from pyspark.sql.functions import explode -explode_array = employees\ - .select( - 'employee_id', - explode('knowledge') - ) - -explode_array.show() -``` - -On the other hand, instead of arrays, the behaviour of `explode()` is slightly different when you apply it over a column of maps, such as `employee_attrs`. Because each element in a map have two components: a key and a value. As a consequence, when you apply `explode()` over a column of maps, each element in the map generates two different rows, which are stored in two separated columns, called `key` and `value`. - -Take the result below as an example. First, we have two new columns that were not present before (`key` and `value`). Each row in the `key` column represents the key for an element in the input map. While the `value` column represents the values of those elements. -```{python} -explode_map = employees\ - .select( - 'employee_id', - explode('employee_attrs') - ) - -explode_map.show() -``` - -This kind of output is powerful, specially with pivot operations, because you can easily organize all the data found in a column of maps into a series of new columns, like this: - -```{python} -explode_map\ - .groupby('employee_id')\ - .pivot('key')\ - .agg(first('value'))\ - .show() -``` - - - -### The different versions of `explode()` - -The `explode()` function have three brother functions, which are `explode_outer()`, `posexplode()` and `posexplode_outer()`. All of these functions have very small differences between them. However, these differences might be important/useful to you. - -First, the difference between `explode()` and `explode_outer()` is on the `null` values. If an array contains a `null` value, `explode()` will ignore this null value. In other words, `explode()` does not create a new row for any `null` value. In contrast, `explode_outer()` does create a new row even if the value is `null`. - -For example, if `explode()` encounter an array with 5 elements where 2 of them are null values, then, `explode()` will output 3 new rows. The 2 null values in the input array are automatically ignored. However, if `explode_outer()` encountered the same array, then, it would output 5 new rows, no matter which values are inside this input array. - -Second, the difference between `explode()` and `posexplode()`, is that `posexplode()` also returns the index that identifies the position in the input array where each value is. In other words, if we applied the `posexplode()` over the `knowledge` column of `employee` DataFrame, we would get a new column called `pos`. By looking at this column `pos`, we could see that the value `"Python"` for the employee of ID 1, was on the position of index 1 on the original array that the function encountered in the original `knowledge` column. - - -```{python} -from pyspark.sql.functions import posexplode -employees\ - .select( - 'employee_id', - posexplode('knowledge') - )\ - .show() -``` - - -Third, as you can probably imagine, the function `posexplode_outer()` incorporates the two visions from the previous brothers. So, not only `posexplode_outer()` creates a row for each element in the array, no matter if this element is a `null` value or not, but it also returns the index that identifies the position in the input array where each value is. - - -### Retracting (or nesting) with `collect_list()` and `collect_set()` - -In resume, you use the `collect_list()` and `collect_set()` functions to retract your DataFrame. That is, to reduce the number of rows of the DataFrame, while keeping the same amount of information. - -To do this you just aggregate your DataFrame, using the `agg()` method, and, apply the `collect_list()` or `collect_set()` function over the columns you want to retract (or nest). You likely want to use the `groupby()` method as well in this case, to perform an aggregation per group. - -Because if you do not define any group in this situation, you will aggregate the entire DataFrame into a single value. This means, that you would get as output, a new DataFrame with only a single row, and, all rows from the input DataFrame would be condensed inside this single row in the output DataFrame. - -In essence, what the `collect_list()` function do is collect a set of rows and store it in an array. The `collect_set()` function does the same thing, with the difference that it stores this set of rows in a set (which is an array of unique values). In other words, `collect_set()` collects a set of rows, then, it removes all duplicated rows in this set, then, it stores the remaining values in an array. - -To demonstrate the `collect_list()` and `collect_set()` functions, we can use the `supermarket_sales` DataFrame that we introduced at @sec-remove-duplicates as an example: - -```{python} -supermarket_sales.show() -``` - -Suppose you wanted a new DataFrame that had a single row for each `transaction_id` without losing any amount of information from the above DataFrame. We could do this by using the `collect_list()` function, like in the example below: - -```{python} -from pyspark.sql.functions import collect_list -supermarket_sales\ - .groupby('transaction_id')\ - .agg( - collect_list('product_name').alias('product_name'), - collect_list('quantity').alias('quantity'), - collect_list('price').alias('price') - )\ - .show() -``` - -The expression `groupby('transaction_id')` ensures that we have (on the output DataFrame) a single row for each unique value in the `transaction_id` column. While the `collect_list()` function does the job of condensing all the information of the remaining columns into a single row for each `transaction_id`. - -Now, if we use `collect_set()` instead of `collect_list()`, we would get a slightly different result. Because, as we described before, the `collect_set()` function removes all duplicated values found in the set of rows it collects. - - -```{python} -from pyspark.sql.functions import collect_set -supermarket_sales\ - .groupby('transaction_id')\ - .agg( - collect_set('product_name').alias('product_name'), - collect_set('quantity').alias('quantity'), - collect_set('price').alias('price') - )\ - .show() +# Transforming your Spark DataFrame - Part 2 + + +At @sec-transforming-dataframes-part1 I introduced six core types of transformations over Spark DataFrames. In this chapter, I will expand your knowledge by introducing six more commom types of transformations available to Spark DataFrames, which are: + +- Replacing null values; +- Removing duplicated values; +- Merging multiple DataFrames with UNION operations; +- Merging multiple DataFrames with JOIN operations; +- Rows to columns and columns to rows with Pivot operations; +- Collecting and explode operations; + +```{python} +#| include: false +# To execute the next chunks with success, we need to start a Spark Session +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +``` + +## Removing duplicated values from your DataFrame {#sec-remove-duplicates} + +Removing duplicated values from DataFrames is a very commom operation in ETL pipelines. In `pyspark` you have two options to remove duplicated values, which are: + +- `distinct()` which removes all duplicated values considering the combination of all current columns in the DataFrame; +- `drop_duplicates()` or `dropDuplicates()` which removes all duplicated values considering a specific combination (or set) of columns in the DataFrame; + +These three methods above are all DataFrames methods. Furthermore, the methods `drop_duplicates()` and `dropDuplicates()` are equivalent. They both mean the same thing, and have the same arguments and perform the same operation. + +When you run `drop_duplicates()` or `dropDuplicates()` without any argument, they automatically use by default the combination of all columns available in the DataFrame to identify the duplicated values. As a consequence, over this specific situation, the methods `drop_duplicates()` or `dropDuplicates()` become equivalent to the `distinct()` method. Because they use the combination of all columns in the DataFrame. + +Lets pick the `supermarket_sales` DataFrame exposed below as an example. You can see below, that this DataFrame contains some duplicated values, specifically on the transaction IDs "T001" e "T004". We also have some "degree of duplication" on the transaction ID "T006". But the two rows describing this ID "T006" are not precisely identical, since they have a small difference on the `quantity` column. + +```{python} +from pyspark.sql.types import ( + StructType, StructField, + StringType, IntegerType, + FloatType +) + +schema = StructType([ + StructField("transaction_id", StringType(), True), + StructField("product_name", StringType(), True), + StructField("quantity", IntegerType(), True), + StructField("price", FloatType(), True) +]) + +data = [ + ("T001", "Apple", 5, 1.2), + ("T001", "Apple", 5, 1.2), + ("T002", "Banana", 3, 0.8), + ("T004", "Mango", 2, 2.0), + ("T004", "Mango", 2, 2.0), + ("T004", "Mango", 2, 2.0), + ("T005", "Grapes", 1, 3.5), + ("T006", "Apple", 2, 1.2), + ("T006", "Apple", 1, 1.2), + ("T007", "Banana", 4, 0.8), + ("T008", "Apple", 3, 1.2) +] + +supermarket_sales = spark.createDataFrame(data, schema) +supermarket_sales.show(6) +``` + + +We can remove these duplicated values by using the `distinct()` method. In the example of transaction ID "T004", all duplicated rows of this ID contains the same values `("T004", "Mango", 2, 2.0)`, precisely in this order. Because of that, the `distinct()` method is enough to remove all of these duplicated values from the table. + + +```{python} +supermarket_sales\ + .distinct()\ + .show(6) +``` + + +However, the two rows describing the transaction ID "T006" have some difference on the `quantity` column, and as a result, the `distinct()` method does not identify these two rows as "duplicated values", and they are not removed from the input DataFrame. + +Now, if we needed a DataFrame that contained one row for each transaction ID (that is, the values on `transaction_id` column must be unique), we could use the `drop_duplicates()` method with only the column `transaction_id` as the key to remove all duplicated values of this column. This way, we get a slightly different output as you can see below. + +```{python} +supermarket_sales\ + .drop_duplicates(['transaction_id'])\ + .show(8) +``` + +In the example above, the duplicated values of IDs "T001" and "T004" were removed as we expected. But we also removed the second value for ID "T006". Because we did not listed the `quantity` column on `drop_duplicates()`, and, as a result, the `drop_duplicates()` method was not concerned with the differences on the `quantity` column. In other words, it used solely the `transaction_id` column to identify the duplicated values. + +## Other techniques for dealing with `null` values + +At @sec-filter-null-values I showed how you can use `filter()` or `where()` DataFrame methods to remove all rows that contained a null value on some column. There are two other DataFrames methods available in Spark that you might want use to deal with null values. In essence, you can either remove or replace these null values. + + +### Replacing `null` values + +Instead of removing the null values, and pretending that they never existed, maybe, you prefer to replace these null values by a more useful or representative value, such as `0`, or an empty string (`''`), or a `False` value, etc. To do that in `pyspark`, we can use the `na.fill()` and `fillna()` DataFrame methods. + +Both methods mean the same thing, and they work the exact same way. The most popular way of using this methods, is to provide a python dict as input. Inside this dict you have key-value pairs, where the key represents the column name, and the value represents the static value that will replace all null values that are found on the column specified by the key. + +In the example below, I created a simple `df` DataFrame which contains some null values on the `age` column. By providing the dict `{'age': 0}` to `fillna()`, I am asking `fillna()` to replace all null values found on the `age` column by the value `0` (zero). + +```{python} +data = [ + (1, "John", None, "2023-04-05"), + (2, "Alice", 25, "2023-04-09"), + (3, "Bob", None, "2023-04-12"), + (4, "Jane", 30, None), + (5, "Mike", 35, None) +] +columns = ["id", "name", "age", "date"] +df = spark.createDataFrame(data, columns) + +# Or `df.na.fill({'age': 0}).show()` +# It is the same thing +df.fillna({'age': 0}).show() +``` + +You can see in the above example, that the null values present in the `date` column were maintained intact on the result. Because we did not asked to `fillna()` to replace the values of this column, by including it on the input dict that we provided. + +If we do include this `date` column on the input dict, then, `fillna()` will take care of this column as well: + +```{python} +df.fillna({'age': 0, 'date': '2023-01-01'})\ + .show() +``` + + +### Dropping all `null` values + +Spark also offers the `na.drop()` and `dropna()` DataFrames methods, which you can use to easily remove any row that contains a null value on any column of the DataFrame. This is different from `filter()` and `where()`, because on these two methods you have to build a logical expression that translate "not-null values". + +In contrast, on `na.drop()` and `dropna()` methods you do not have a logical expression. You just call these methods, and they do the heavy work for you. They search through the entire DataFrame. When it identify a null value on the DataFrame, it removes the entire row that contains such null value. + +For example, if we apply these methods on the `df` DataFrame that we used on the previous section, this is the end result: + +```{python} +df.na.drop()\ + .show() +``` + +## Union operations + +When you have many individual DataFrames that have the same columns, and you want to unify them into a single big DataFrame that have all the rows from these different DataFrames, you want to perform an UNION operation. + +An UNION operation works on a pair of DataFrames. It returns the row-wise union of these two DataFrames. In `pyspark`, we perform UNION operations by using the `union()` DataFrame method. To use this method, you just provide the other DataFrame you want to make the union with. So the expression `df1.union(df2)` creates a new DataFrame which contains all the rows from both the `df1` and `df2` DataFrames. + +Moreover, in commom SQL engines there are usually two kinds of UNION operations, which are: *union all* and *union distinct*. When you use an *union all* operation, you are saying that you just want to unifiy the two DataFrames, no matter what data you find in each one of them. You do not care if duplicated values are generated in the process, because an observation "x" might be present both on `df1` and `df2`. + +In contrast, an *union distinct* operation is the exact opposite of that. It merges the rows from both DataFrames together, and then, it removes all duplicated values from the result. So you use an *union distinct* operation when you want a single DataFrame that contains all rows from both DataFrames `df1` and `df2`, but, you do not want any duplicated rows into this single DataFrame. + +By default, the `union()` method always perform an *union all* operation. However, to do an *union distinct* operation in pyspark, you actually have to use the `union()` method in conjunction with the `distinct()` or `drop_duplicates()` methods. In other words, there is not a direct method in pyspark that performs an *union distinct* operation on a single command. + +Look at the example below with `df1` and `df2` DataFrames. + +```{python} +df1 = [ + (1, 'Anne', 'F'), + (5, 'Mike', 'M'), + (2, 'Francis', 'M'), +] + +df2 = [ + (5, 'Mike', 'M'), + (7, 'Arthur', 'M'), + (1, 'Anne', 'F'), +] + +df1 = spark.createDataFrame(df1, ['ID', 'Name', 'Sex']) +df2 = spark.createDataFrame(df2, ['ID', 'Name', 'Sex']) + +# An example of UNION ALL operation: +df1.union(df2).show() +``` + +```{python} +# An example of UNION DISTINCT operation +df1\ + .union(df2)\ + .distinct()\ + .show() +``` + +Because an UNION operation merges the two DataFrames in a vertical way, the columns between the two DataFrames must match. If the columns between the two DataFrames are not in the same places, a mismatch happens during the operation, and Spark will do nothing to fix your mistake. + +Most programming languages would issue an error at this point, warning you about this conflict between the columns found on each DataFrame and their respective positions. However, in Spark, if the columns are out of order, Spark will continue with the UNION operation, as if nothing was wrong. Spark will not even raise a warning for you. Since this problem can easily pass unnotice, be aware of it. + +In the example below, we have a third DataFrame called `df3`. Notice that the columns in `df3` are the same of `df1` and `df2`. However, the columns from `df3` are in a different order than in `df1` and `df2`. +```{python} +data = [ + ('Marla', 'F', 9), + ('Andrew', 'M', 15), + ('Peter', 'M', 12) +] +df3 = spark.createDataFrame(data, ['Name', 'Sex', 'ID']) +df3.show() +``` + +If we try to perform an UNION operation between, let's say, `df2` and `df3`, the operations just works. But, the end result of this operation is not correct, as you can see in the example below. + +```{python} +df2.union(df3).show() +``` + +Although this might be problematic, Spark provides an easy-to-use solution when the columns are in different places between each DataFrame. This solution is the `unionByName()` method. + +The difference between `union()` and `unionByName()` methods, is that the `unionByName()` method makes an matching by column name, before if performs the UNION. In other words, it compares the column names found on each DataFrame and it matches each column by its name. This way, the columns present on each DataFrame of the UNION must have the same name, but they do not need to be in the same positions on both DataFrames. + +If we use this method on the same example as above, you can see below that we get a different result, and a correct one this time. + +```{python} +df2.unionByName(df3)\ + .show() +``` + + +Therefore, if you want to make an UNION operation between two DataFrames, you can generally use the `union()` method. But if you suspect the columns from these DataFrames might be in different positions on each DataFrame, you can change to the `unionByName()` method. + +In contrast, if the columns are different not only on position, but also, on column name, then, `unionByName()` will not work. The two DataFrames involved on an UNION operation must be very similar. If they are not similar, then, you will have a hard time trying to do the operation. + +Another problem that you might face is if you try to unify two DataFrames that have different numbers of columns between them. In this situation, it means that the two DataFrames have "different widths", and, as a result of that, an `AnalysisException` error will be raised by Spark if you try to unify them with an UNION operation, like in the example below: + +```{python} +#| eval: false +from pyspark.sql.types import ( + StructField, + StructType, + LongType +) + +schema = StructType([StructField('ID', LongType(), False)]) +df4 = [ + (19,), (17,), (16,) +] +df4 = spark.createDataFrame(df4, schema) +df3.union(df4).show() +``` + +``` +AnalysisException: Union can only be performed on tables +with the same number of columns, but the first table has +3 columns and the second table has 1 columns; +'Union false, false +:- LogicalRDD [Name#703, Sex#704, ID#705L], false ++- LogicalRDD [ID#762L], false +``` + +## Join operations + +A JOIN operation is another very commom operation that is also used to bring data from scattered sources into a single unified DataFrame. In pyspark, we can build JOIN operations by using the `join()` DataFrame method. This method accepts three arguments, which are: + +- `other`: the DataFrame you want to JOIN with (i.e. the DataFrame on the right side of the JOIN); +- `on`: a column name, or a list of column names, that represents the key (or keys) of the JOIN; +- `how`: the kind of JOIN you want to perform (inner, full, left, right); + +As a first example, let's use the `info` and `band_instruments` DataFrames. With the source code below, you can quickly re-create these two DataFrames in your session: + +```{python} +info = [ + ('Mick', 'Rolling Stones', '1943-07-26', True), + ('John', 'Beatles', '1940-09-10', True), + ('Paul', 'Beatles', '1942-06-18', True), + ('George', 'Beatles', '1943-02-25', True), + ('Ringo', 'Beatles', '1940-07-07', True) +] + +info = spark.createDataFrame( + info, + ['name', 'band', 'born', 'children'] +) + +band_instruments = [ + ('John', 'guitar'), + ('Paul', 'bass'), + ('Keith', 'guitar') +] + +band_instruments = spark.createDataFrame( + band_instruments, + ['name', 'plays'] +) +``` + +If you look closely to these two DataFrames, you will probably notice that they both describe musicians from two famous rock bands from 60's and 70's. The `info` DataFrame have more personal or general informations about the musicians, while the `band_instruments` DataFrame have only data about the main musical instruments that they play. + +```{python} +info.show() +``` + +```{python} +band_instruments.show() +``` + +It might be of your interest, to have a single DataFrame that contains both the personal information and the musical instrument of each musician. In this case, you can build a JOIN operation between these DataFrames to get this result. An example of this JOIN in pyspark would be: + +```{python} +info.join(band_instruments, on = 'name', how = 'left')\ + .show(5) +``` + +In the example above, we are performing a *left join* between the two DataFrames, using the `name` column as the JOIN key. Now, we have a single DataFrame with all 5 columns from both DataFrames (`plays`, `children`, `name`, `band` and `born`). + + +### What is a JOIN ? + +I imagine you are already familiar with JOIN operations. However, in order to build good and precise JOIN operations, is very important to know what a JOIN operation actually is. So let's revisit it. + +A JOIN operation merges two different DataFrames together into a single unified DataFrame. It does this by using a column (or a set of columns) as keys to identify the observations of both DataFrames, and connects these observations together. + +A JOIN (like UNION) is also an operation that works on a pair of DataFrames. It is very commom to refer to this pair as "the sides of the JOIN". That is, the DataFrame on the left side of the JOIN, and the DataFrame on the right side of the JOIN. Or also, the DataFrames "A" (left side) and "B" (right side). + +The main idea (or objective) of the JOIN is to bring all data from the DataFrame on the right side, into the DataFrame on the left side. In other words, a JOIN between DataFrames A and B results into a DataFrame C which contains all columns and rows from both DataFrames A and B. + +In an UNION operation, both DataFrames must have the same columns, because in an UNION operation you are concatenating both DataFrames together vertically, so the number of columns (or the "width" of the tables) need to match. However, in a JOIN operation, both DataFrames only need to have at least one column in commom. Apart from that, in a JOIN, both DataFrames can have very different structure and columns from each other. + +One key characteristic of JOIN operations is it's key matching mechanism. A JOIN uses the columns you provide to **build a key**. This key is used to identify rows (or "observations") in both DataFrames. In other words, these keys identifies relationships between the two DataFrames. These relations are vital to the JOIN. + +If we go back to `info` and `band_instruments` DataFrames, and analyse them for a bit more, we can see that they both have a `name` column which contains the name of the musician being described on the current row. This `name` column can be used as **the key** of the JOIN. Because this column is available on both DataFrames, and it can be used to identify a single observation (or a single musician) present in each DataFrame. + +So the JOIN key is a column (or a combination of columns) that can identify what observations are (and are not) present on both DataFrames. At @fig-keys-comparison, we can see the observations from `info` and `band_instruments` in a visual manner. You see in the figure that both Paul and John are described in both DataFrames. At the same time, Ringo, Mick and George are present only on `info`, while `Keith` is only at `band_instruments`. + +![The relations between `info` and `band_instruments` DataFrames](./../Figures/keys_comparacao.png){#fig-keys-comparison} + +In a certain way, you can see the JOIN key as a way to **identify relationships between the two DataFrames**. A JOIN operation use these relationships to merge your DataFrames in a precise way. A JOIN does not simply horizontally glue two DataFrames together. It uses the JOIN key to perform a matching process between the observations of the two DataFrames. + +This matching process ensures that the data present DataFrame "B" is correctly transported to the DataFrame "A". In other words, it ensures that the oranges are paired with oranges, apples with apples, bananas with bananas, you got it. + +Just to describe visually what this matching process is, we have the @fig-join-matching below. In this figure, we have two DataFrames on the left and center of the image, which represents the inputs of the JOIN. We also have a third DataFrame on the right side of the image, which is the output (or the result) of the JOIN. + +In this specific example, the column that represents the JOIN key is the `ID` column. Not only this column is present on both DataFrames, but it also represents an unique identifier to each person described in both tables. And that is precisely the job of a JOIN key. It represents a way to identify observations (or "persons", or "objects", etc.) on both tables. + +You can see at @fig-join-matching, that when the `ID` 100 is found on the 1st row of the left DataFrame, the JOIN initiates a lookup/matching process on the center DataFrame, looking for a row in the DataFrame that matches this `ID` 100. When it finds this `ID` 100 (on the 4th row of the center DataFrame), it captures and connects these two rows on both DataFrames, because these rows describes the same person (or observation), and because of that, they should be connected. This same matching process happens for all remaining `ID` values. + + +![The matching process of a JOIN operation](./../Figures/pareamento1.png){#fig-join-matching} + +### The different types of JOIN + +JOIN operations actually comes in different flavours (or types). The four main known types of JOINs are: *full*, *left*, *right* and *inner*. All of these different types of JOIN perform the same steps and matching processes that we described on the previous section. But they differ on the treatment they do to unmatched observations. In other words, these different types of JOINs differ on **what they do in cases when an observation is not found on both DataFrames of the JOIN** (e.g. when an observation is found only on table A). + +In other words, all these four types will perform the same matching process between the two DataFrames, and will connect observations that are found in both DataFrames. However, which rows are included in the final output is what changes between each type (or "flavour") of JOIN. + +In this situation, the words "left" and "right" are identifiers to the DataFrames involved on the JOIN operation. That is, the word *left* refers to the DataFrame on the left side of the JOIN, while the word *right* refers to the DataFrame on the right side of the JOIN. + +A very useful way of understanding these different types of JOINs is to represent both DataFrames as numerical sets (as we learn in mathematics). The @fig-join-sets gives you a visual representation of each type of JOIN using this "set model" of representing JOINs. Remember, all of these different types of JOIN work the same way, they just do different actions when an observation is not found on both tables. + +The most "complete" and "greedy" type of JOIN is the *full join*. Because this type returns all possible combinations of both DataFrames. In other words, this type of JOIN will result in a DataFrame that have all observations from both DataFrames. It does not matter if an observation is present only on table A, or only on table B, or maybe, on both tables. A *full join* will always try to connect as much observation as it can. + +![A visual representation for types of JOIN using numerical sets](./../Figures/join-sets.png){#fig-join-sets} + +That is why the *full join* is represented on @fig-join-sets as the union between the two tables (or the two sets). In contrast, an *inner join* is the intersection of the two tables (or two sets). That is, an *inner join* will result in a new DataFrame which contains solely the observations that could be found on both tables. If a specific observation is found only on one table of the JOIN, this observation will be automatically removed from the result of the *inner join*. + +If we go back to the `info` and `band_instruments` DataFrames, and use them as an example, you can see that only Paul and John are included on the result of an *inner join*. While in a *full join*, all musicians are included on the resulting DataFrame. + +```{python} +# An inner join between `info` and `band_instruments`: +info.join(band_instruments, on = 'name', how = 'inner')\ + .show() +``` + +```{python} +# A full join between `info` and `band_instruments`: +info.join(band_instruments, on = 'name', how = 'full')\ + .show() +``` + +On the other hand, the *left join* and *right join* are kind of self-explanatory. On a *left join*, all the observations from the left DataFrame are kept intact on the resulting DataFrame of the JOIN, regardless of whether these observations were found or not on the right DataFrame. In contrast, an *right join* is the opposite of that. So, all observations from the right DataFrame are kept intact on the resulting DataFrame of the JOIN. + + +In pyspark, you can define the type of JOIN you want to use by setting the `how` argument at `join()` method. This argument accepts a string with the type of JOIN you want to use as input. + +- `how = 'left'`: make a *left join*; +- `how = 'right'`: make a *right join*; +- `how = 'full'`: make a *full join*; +- `how = 'inner'`: make an *inner join*; +- `how = 'semi'`: make a *semi join*; +- `how = 'anti'`: make an *anti join*; + +You can see on the list above, that `pyspark` do have two more types of JOINs, which are the *semi join* and *anti join*. These are "filtering types" of JOINs. Because they perform the matching process, and only filter the rows from table A (i.e. the DataFrame on the left side of the JOIN) based on the matches found on table B (i.e. the DataFrame on the right side of the JOIN). + +In other words, these both types are used as a filter mechanism, and not as a merge mechanism. When you use these two types, instead of merging two DataFrames together, you are interested in filtering the rows of DataFrame A based on the existence of these rows in DataFrame B. + +This is different from what we learned on *left*, *right*, *full* and *inner* types, because they do not only change which rows are included in the final result, but they also add the columns from table B into table A. Because of this behavior, these four main types are usually called as "additive types" of JOIN, since they are always adding data from table B into table A, i.e. they are merging the two tables together. + +In more details, an *anti join* perform the exact opposite matching process of an *inner join*. This means that an *anti join* will always result in a new DataFrame that contains solely the observations that exists only on one DataFrame of the JOIN. In other words, the observations that are found on both tables are automatically removed from the resulting DataFrame of the JOIN. If we look at the example below, we can see that both John and Paul were removed from the resulting DataFrame of the *anti join*, because these two musicians are present on both DataFrames: + +```{python} +info.join(band_instruments, on = 'name', how = 'anti')\ + .show() +``` + +In contrast, a *semi join* is equivalent to an *inner join*, with the difference that it does not adds the column from table B into table A. So this type of JOIN filter the rows from DataFrame A that also exists in DataFrame B. If an observation is found on both tables, this observation will appear on the resulting DataFrame. + +```{python} +info.join(band_instruments, on = 'name', how = 'semi')\ + .show() +``` + +Just to keep using our visual model of sets, on @fig-join-sets2 you can see the *semi* and *anti* JOIN types represented as numerical sets. + +![The two "filter types" of JOIN](./../Figures/join-sets2.png){#fig-join-sets2} + +### A cross JOIN as the seventh type + +We described six different types of JOINs on the previous section. But Spark also offers a seventh type of JOIN called *cross join*. This is a special type of JOIN that you can use by calling the `crossJoin()` DataFrame method. + +In essence, a *cross join* returns, as output, the cartesian product between two DataFrames. It is similar to R functions [`base::expand.grid()`](https://www.rdocumentation.org/packages/base/versions/3.6.2/topics/expand.grid)[^expand-grid] or [`dplyr::expand()`](https://tidyr.tidyverse.org/reference/expand.html)[^expand], and also, the Python equivalent [`itertools.product()`](https://docs.python.org/2/library/itertools.html#itertools.product)[^itertools]. + +[^expand-grid]: +[^expand]: +[^itertools]: + + +This is a type of JOIN that you should avoid to use, specially if one (or both) of the DataFrames involved is a big DataFrame with thousands/millions of rows. Because a *cross join* will always produce a cartesian product between the two DataFrames involved. This means that, if DataFrame A contains $x$ rows, and DataFrame B contains $y$ rows, the end result of the *cross join* is a new DataFrame C that contains $x \times y$ rows. + +In other words, the number of rows in the output of a *cross join* can grow exponentially. For example, a *cross join* between a DataFrame of 1 thousand rows, and another DataFrame of 10 thousand of rows (both are small DataFrames for the scale and sizes of a real-world big data environment), would produce a DataFrame with $10^3 \times 10^4 = 10^7$, that is, 10 milion of rows as output. + +In a big data environment, dealing with something that grows exponentially... it is never a good idea. So try to avoid a *cross join* and use him solely on very small DataFrames. + +As an example, to apply a *cross join* between `info` and `band_instruments` DataFrames we can use the `crossJoin()` method, like in the example below: + +```{python} +info.crossJoin(band_instruments)\ + .show() +``` + +A *cross join* is a special type of JOIN because it does not use "keys" and a matching process. It just computes every possible combination between the rows from both DataFrames. Because of the absence of these keys characteristics of a JOIN, many data analysts and engineers would not call a *cross join* as a type of JOIN (in other words, they would call it a type of something else). But regardless of our opinions, Spark decided to call this process as the *cross join*, so this is the way we are calling this process on this book. + + +## Pivot operations + +Pivot operations are extremely useful, and they are probably the main operation you can use to completely reformat your table. What these operations do is basically change the dimensions of your table. In other words, this kind of operation transform columns into rows, or vice versa. + +As a comparison with other data frameworks, a pivot operation in Spark is the same operation performed by R functions [`tidyr::pivot_longer()`](https://tidyr.tidyverse.org/reference/pivot_longer.html)[^longer] and [`tidyr::pivot_wider()`](https://tidyr.tidyverse.org/reference/pivot_wider.html)[^wider] from the famous R framework `tidyverse`; or, the same as the [`pivot()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.pivot.html)[^pivot] and [`melt()`](https://pandas.pydata.org/docs/reference/api/pandas.melt.html)[^melt] methods from the Python framework `pandas`. + +[^longer]: +[^wider]: +[^pivot]: +[^melt]: + + +In Spark, pivot operations are performed by the `pivot()` DataFrame method, and by the `stack()` Spark SQL function. Pivot transformations are available in both directions. That is, you can transform either rows into columns (corresponds to `pivot()`), or, columns into rows (corresponds to `stack()`). Let's begin with `stack()`, and after that, we explain the `pivot()` method. + +### Transforming columns into rows + +The `stack()` Spark SQL function allows you to transform columns into rows. In other words, you can make your DataFrame "longer" with this kind of operation, because you remove columns ("width") from the table, and adds new rows ("heigth"). This gives an aspect of "longer" to your table, because after this operation, you table usually have more rows than columns. + +As a first example, lets use the `religion` DataFrame, which you can re-create in your session with the source code below: + +```{python} +data = [ + ('Agnostic', 27, 34, 60), + ('Atheist', 12, 27, 37), + ('Buddhist', 27, 21, 30) +] +cols = ['religion', '<$10k', '$10k-$20k', '$20k-$30k'] +religion = spark.createDataFrame(data, cols) +religion.show() +``` + +This DataFrame is showing us the average salary of people belonging to different religious groups. In each column of this DataFrame, you have data for a specific salary level (or range). This is a structure that can be easy and intuitive for some specific operations, but it also might impose some limitations, specially if you need to apply a vectorised operation over these salary ranges. + +The basic unit of this DataFrame are the religious groups, and the salary ranges represents a characteristic of these groups. The different salary ranges are distributed across different columns. But what if we transformed these multiple columns into multiple rows? How can we accomplish that? + +What we need to do, is to concentrate the labels (or the column names) of salary ranges into a single column, and move the respective values of the salary levels into another column. In other words, we need to create a column that contains the labels, and another column that contains the values. @fig-pivot1 have a visual representation of this process: + +![A visual representation of a pivot operation](./../Figures/pivot1.png){#fig-pivot1} + +Let's build this transformation in `pyspark`. First, remember that `stack()` is not a DataFrame method. It is a Spark SQL function. However, it is not an exported Spark SQL function, which means that you cannot import this function from the `pyspark.sql.function` module. This means that `stack()` will never be directly available in your python session to use. + +So how do you use it? The answer is: use it inside Spark SQL! The `stack()` function is not available directly in python, but it is always available in Spark SQL, so all you need to do, is to use `stack()` inside functions and methods such as `expr()` (that I introduced at @sec-sql-expr), or `sql()` to access Spark SQL functionality. + +Now, the `stack()` function have two main arguments, which are the number of columns to transform into rows, and a sequence of key-value pairs that describes which columns will be transformed into rows, and the label values that corresponds to each column being transformed. + +As a first example, the source code below replicates the transformation exposed at @fig-pivot1: + +```{python} +from pyspark.sql.functions import expr +stack_expr = """ +stack(3, + '<$10k', `<$10k`, + '$10k-$20k', `$10k-$20k`, + '$20k-$30k', `$20k-$30k` +) AS (salary_range, avg_salary) +""" + +longer_religion = religion\ + .select('religion', expr(stack_expr)) + +longer_religion.show() +``` + +An important aspect about the `stack()` function, is that it always outputs two new columns (one column for the labels - or the keys, and another for the values). In the example above, these new columns are `salary_range` and `avg_salary`. + +The first column identifies from which column (before the `stack()` operation) the value present at `avg_salary` came from. This means that this first column produced by `stack()` works as a column of labels or identifiers. These labels identify from which of the three transformed columns (`<$10k`, `$10k-$20k` and `$20k-$30k`) the row value came from. In the visual representation exposed at @fig-pivot1, this "labels column" is the `income` column. + +On the other hand, the second column in the output of `stack()` contains the actual values that were present on the columns that were transformed. This "values column" in the example above corresponds to the column `avg_salary`, while in the visual representation exposed at @fig-pivot1, it is the `values` column. + +The first argument in `stack()` is always the number of columns that will be transformed by the function into rows. In our example, we have three columns that we want to transform, which are `<$10k`, `$10k-$20k` and `$20k-$30k`. That is why we have the number 3 as the first argument to `stack()`. + +After that, we have a sequence of key-value pairs. In each pair, the value side (i.e. the right side) of the pair contains the name of the column that will be transformed, and the key side (i.e. the left side) of the pair contains the "label value", or, in other words, which value represents, marks, label, or identifies the values that came from the column described in the right side of the pair. + +Normally, you set the label value to be equivalent to the column name. That is, both sides of each pair are usually pretty much the same. But you can change this behaviour if you want. In the example below, all values that came from the `<$10k` are labeled as `"Below $10k"`, while the values from the `$10k-$20k` column, are labeled in the output as `"Between $10k-$20k"`, etc. + +```{python} +stack_expr = """ +stack(3, + 'Below $10k', `<$10k`, + 'Between $10k-$20k', `$10k-$20k`, + 'Between $20k-$30k', `$20k-$30k` +) AS (salary_range, avg_salary) +""" + +religion\ + .select('religion', expr(stack_expr))\ + .show() +``` + + +Furthermore, because the `stack()` function always outputs two new columns, if you want to rename these two new columns being created, to give them more readable and meaningful names, you always need to provide two new column names at once, inside a tuple, to the `AS` keyword. + +In the example above, this tuple is `(salary_range, avg_salary)`. The first value in the tuple is the new name for the "labels column", while the second value in the tuple, is the new name for the "values column". + +Now, differently from other Spark SQL functions, the `stack()` function should not be used inside the `withColumn()` method, and the reason for this is very simple: `stack()` always returns two new columns as output, but the `withColumn()` method can only create one column at a time. + +This is why you get an `AnalysisException` error when you try to use `stack()` inside `withColumn()`, like in the example below: + +```{python} +#| eval: false + +religion\ + .withColumn('salary_ranges', stack_expr)\ + .show() +``` + +``` +AnalysisException: The number of aliases supplied in the AS clause +does not match the number of columns output by the UDTF expected +2 aliases but got salary_ranges +``` + +### Transforming rows into columns + +On the other side, if you want to transform rows into columns in your Spark DataFrame, you can use the `pivot()` method. One key aspect of the `pivot()` method, is that it must always be used in conjunction with the `groupby()` method that we introduced at @sec-group-by. In other words, `pivot()` does not work without `groupby()`. + +You can think (or interpret) that the `groupby()` method does the job of defining (or identifying) which columns will be present in the output of `pivot()`. For example, if your DataFrame contains five columns, which are `A`, `B`, `C`, `D` and `E`; but you only listed columns `A` and `C` inside `groupby()`, this means that if you perform a pivot operation after that, the columns `B`, `D` and `E` will not be present in the output of `pivot()`. These three columns (`B`, `D` and `E`) will be automatically dropped during the pivot operation. + +In contrast, the `pivot()` method does the job of identifying a single column containing the values that will be transformed into new columns. In other words, if you list the column `car_brands` inside `pivot()`, and, this column contains four unique values, for example, `Audi`, `BMW`, `Jeep` and `Fiat`, this means that, in the output of `pivot()`, four new columns will be created, named as `Audi`, `BMW`, `Jeep` and `Fiat`. + +Therefore, we use `groupby()` to define the columns that will be kept intact on the output of the pivot operation; we use `pivot()` to mark the column that contains the rows that we want to transform into new columns; at last, we must learn how to define which values will populate the new columns that will be created. Not only that, we also need to specify how these values will be calculated. And for that, we need to use an aggregating function. + +This is really important, you can not do a pivot operation without aggregating the values that will compose (or populate) the new columns you are creating. Without it, Spark will not let you do the pivot operation using the `pivot()` method. + +As a first example, let's return to the `religion` DataFrame. More specifically, to the `longer_religion` DataFrame, which is the pivoted version of the `religion` DataFrame that we created on the previous section, using the `stack()` function. + +```{python} +longer_religion.show() +``` + +We can use this `longer_religion` DataFrame and the `pivot()` method to perform the inverse operation we described at @fig-pivot1. In other words, we can re-create the `religion` DataFrame through `longer_religion` using the `pivot()` method. The source code below demonstrates how we could do such thing: +```{python} +from pyspark.sql.functions import first + +# Equivalent to the `religion` DataFrame: +longer_religion\ + .groupby('religion')\ + .pivot('salary_range')\ + .agg(first('avg_salary'))\ + .show() +``` + +In the example above, you can see the three core parts that we described: 1) use `groupby()` to define which columns will be preserved from the input DataFrame; 2) use `pivot()` to define which column will be used to transform rows into new columns; 3) the aggregating functions describing which values will be used, and how they are going to be calculated - `agg(first('avg_salary'))`. @fig-pivot2 exposes these core parts in a visual manner. + +![The three core parts that define the use of `pivot()`](./../Figures/pivot2.png){#fig-pivot2} + +When you use `pivot()`, you have to apply an aggregating function over the column from which you want to extract the values that will populate the new columns created from the pivot operation. This is a prerequisite, because Spark needs to know what he must do in case he finds two (or more) values that are mapped to the same cell in the pivot operation. + +In the above example, we used the `first()` function to aggregate the values from the `avg_salary` column. With this function, we are telling Spark, that if it finds two (or more) values that are mapped the same cell, then, Spark should pick the *first value if finds* in the input DataFrame, and simply ignore the remaining values. + +Let's see an example. In the code chunk below, we are creating a new DataFrame called `df`: + +```{python} +data = [ + ('2023-05-01', 'Anne', 1, 15), + ('2023-05-02', 'Mike', 2, 25), + ('2023-05-02', 'Mike', 2, 34), + ('2023-05-02', 'Mike', 2, 21), + ('2023-05-03', 'Dani', 3, 18) +] +cols = ['date', 'name', 'id', 'value'] +df = spark.createDataFrame(data, cols) +df.show() +``` + +Let's suppose you want to transform the rows in the `name` column into new columns, and, populate these new columns with the values from the `value` column. Following what we discussed until now, we could do this by using the following source code: + +```{python} +df\ + .groupby('date', 'id')\ + .pivot('name')\ + .agg(first('value'))\ + .show() +``` + +However, there is a problem with this operation, because we lost some observations in the process. The specific combination `('2023-05-02', 'Mike')` have three different values in the `value` column, which are `25`, `34` and `21`. But there is only a single cell in the new DataFrame (i.e. the output of the pivot operation) to hold these values. More specifically, the cell located at the first row in the fifth column. + +In other words, Spark found three different values for a single cell (or single space), and this is always a problem. Spark cannot simply put three different values in a single cell. A Spark DataFrame just do not work that way. Every cell in a Spark DataFrame should always hold a single value, whatever that value is. + +That is the exact problem that an aggregating function solves in a pivot operation. The aggregating function does the job of ensuring that a single value will be mapped to every new cell created from the pivot operation. Because an aggregating function is a function that aggregates (or that summarises) a set of values into a single value. + +In the example above we used `first()` as our aggregating function. So when Spark encountered the three values from the combination `('2023-05-02', 'Mike')`, it simply picked the first value from the three. That is why we find the value `25` at the first row in the fifth column. + +We can change this behaviour by changing the aggregating function applied. In the example below, we are using `sum()`, and, as a result, we get now the value of `80` (which is the sum of values `25`, `34` and `21`) at the first row in the fifth column. + +```{python} +from pyspark.sql.functions import sum +df\ + .groupby('date', 'id')\ + .pivot('name')\ + .agg(sum('value'))\ + .show() +``` + +Now, depending on the data and the structure from your DataFrame, Spark might never encounter a situation where it finds two (or more) values mapped to the same cell in a pivot operation. On this specific case, the output from the pivot operation will likely be the same for many different aggregating functions. In other words, the choice of the aggregating function you want to use might be irrelevant over this specific situation. + +For example, in the `longer_religion` example that we showed before, I could use the `last()` aggregating function (instead of `first()`), and get the exact same result as before. Because in this specific situation, Spark does not find any case of two (or more) values mapped to the same cell in the output DataFrame. + +```{python} +from pyspark.sql.functions import last +longer_religion\ + .groupby('religion')\ + .pivot('salary_range')\ + .agg(last('avg_salary'))\ + .show() +``` + + +## Collecting and explode operations + +You can retract or extend vertically your DataFrame, by nesting multiple rows into a single row, or, the inverse, which is unnesting (or exploding) one single row into multiple rows. The R `tidyverse` framework is probably the only data framework that have a defined name for this kind of operation, which are called "nesting" and "unnesting". + +In Spark, you perform this kind of operations by using the `collect_list()`, `collect_set()` and `explode()` functions, which all comes from the `pyspark.sql.functions` module. The `collect_list()` and `collect_set()` functions are used for retracting (or nesting) your DataFrame, while the `explode()` function is used for extending (or unnesting). + + +As a quick comparison, `explode()` is very similar to the R function [`tidyr::-unnest_longer()`](https://tidyr.tidyverse.org/reference/unnest_longer.html)[^unnest-longer] from the `tidyverse` framework, and also, similar to the Python method [`explode()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.explode.html)[^explode] in the `pandas` framework. In the other hand, `collect_list()` and `collect_set()` functions does a similar job to the R function [`tidyr::nest()`](https://tidyr.tidyverse.org/reference/nest.html)[^nest]. + +[^nest]: +[^unnest-longer]: +[^explode]: + + +### Expanding (or unnesting) with `explode()` + +As an example, we have the `employees` DataFrame below. Each row in this DataFrame describes an employee. The `knowledge` column describes which programming language the employee have experience with, and, the `employee_attrs` column contains dictionaries with general attributes of each employee (such it's department and it's name). + +```{python} +data = [ + (1, ["R", "Python"], {'dep': 'PR', 'name': 'Anne'}), + (2, ["Scala"], {'dep': 'PM', 'name': 'Mike'}), + (3, ["Java", "Python"], {'dep': 'HF', 'name': 'Sam'}) +] +columns = ["employee_id", "knowledge", "employee_attrs"] +employees = spark.createDataFrame(data, columns) +employees.show() +``` + +You can use the `printSchema()` method that we introduced at @sec-dataframe-schema to see the schema of the DataFrame. You can see in the result below that `knowledge` is a column of arrays of strings (i.e. `ArrayType`), while `employee_attrs` is a column of maps (i.e. `MapType`). + +```{python} +employees.printSchema() +``` + +Suppose you wanted to calculate the number of employees that have experience in each programming language. To do that, it would be great to transform the `knowledge` column into a column of strings. Why? Because it would make the counting of the employees easier. + +In other words, if an employee knows, for example, 3 different programming languages, it would be better to have 3 different rows that references this same employee, instead of having a single row that contains an array of three elements, like in the `employees` DataFrame. We can transform the current DataFrame into this new format by using the `explode()` function. + +When you apply the `explode()` function over a column of arrays, this function will create a new row for each element in each array it finds in the column. For example, the employee of ID 1 knows two programming languages (R and Python). As a result, when we apply `explode()` over the `knowledge` column, two rows are created for the employee of ID 1. As you can see in the example below: + +```{python} +from pyspark.sql.functions import explode +explode_array = employees\ + .select( + 'employee_id', + explode('knowledge') + ) + +explode_array.show() +``` + +On the other hand, instead of arrays, the behaviour of `explode()` is slightly different when you apply it over a column of maps, such as `employee_attrs`. Because each element in a map have two components: a key and a value. As a consequence, when you apply `explode()` over a column of maps, each element in the map generates two different rows, which are stored in two separated columns, called `key` and `value`. + +Take the result below as an example. First, we have two new columns that were not present before (`key` and `value`). Each row in the `key` column represents the key for an element in the input map. While the `value` column represents the values of those elements. +```{python} +explode_map = employees\ + .select( + 'employee_id', + explode('employee_attrs') + ) + +explode_map.show() +``` + +This kind of output is powerful, specially with pivot operations, because you can easily organize all the data found in a column of maps into a series of new columns, like this: + +```{python} +explode_map\ + .groupby('employee_id')\ + .pivot('key')\ + .agg(first('value'))\ + .show() +``` + + + +### The different versions of `explode()` + +The `explode()` function have three brother functions, which are `explode_outer()`, `posexplode()` and `posexplode_outer()`. All of these functions have very small differences between them. However, these differences might be important/useful to you. + +First, the difference between `explode()` and `explode_outer()` is on the `null` values. If an array contains a `null` value, `explode()` will ignore this null value. In other words, `explode()` does not create a new row for any `null` value. In contrast, `explode_outer()` does create a new row even if the value is `null`. + +For example, if `explode()` encounter an array with 5 elements where 2 of them are null values, then, `explode()` will output 3 new rows. The 2 null values in the input array are automatically ignored. However, if `explode_outer()` encountered the same array, then, it would output 5 new rows, no matter which values are inside this input array. + +Second, the difference between `explode()` and `posexplode()`, is that `posexplode()` also returns the index that identifies the position in the input array where each value is. In other words, if we applied the `posexplode()` over the `knowledge` column of `employee` DataFrame, we would get a new column called `pos`. By looking at this column `pos`, we could see that the value `"Python"` for the employee of ID 1, was on the position of index 1 on the original array that the function encountered in the original `knowledge` column. + + +```{python} +from pyspark.sql.functions import posexplode +employees\ + .select( + 'employee_id', + posexplode('knowledge') + )\ + .show() +``` + + +Third, as you can probably imagine, the function `posexplode_outer()` incorporates the two visions from the previous brothers. So, not only `posexplode_outer()` creates a row for each element in the array, no matter if this element is a `null` value or not, but it also returns the index that identifies the position in the input array where each value is. + + +### Retracting (or nesting) with `collect_list()` and `collect_set()` + +In resume, you use the `collect_list()` and `collect_set()` functions to retract your DataFrame. That is, to reduce the number of rows of the DataFrame, while keeping the same amount of information. + +To do this you just aggregate your DataFrame, using the `agg()` method, and, apply the `collect_list()` or `collect_set()` function over the columns you want to retract (or nest). You likely want to use the `groupby()` method as well in this case, to perform an aggregation per group. + +Because if you do not define any group in this situation, you will aggregate the entire DataFrame into a single value. This means, that you would get as output, a new DataFrame with only a single row, and, all rows from the input DataFrame would be condensed inside this single row in the output DataFrame. + +In essence, what the `collect_list()` function do is collect a set of rows and store it in an array. The `collect_set()` function does the same thing, with the difference that it stores this set of rows in a set (which is an array of unique values). In other words, `collect_set()` collects a set of rows, then, it removes all duplicated rows in this set, then, it stores the remaining values in an array. + +To demonstrate the `collect_list()` and `collect_set()` functions, we can use the `supermarket_sales` DataFrame that we introduced at @sec-remove-duplicates as an example: + +```{python} +supermarket_sales.show() +``` + +Suppose you wanted a new DataFrame that had a single row for each `transaction_id` without losing any amount of information from the above DataFrame. We could do this by using the `collect_list()` function, like in the example below: + +```{python} +from pyspark.sql.functions import collect_list +supermarket_sales\ + .groupby('transaction_id')\ + .agg( + collect_list('product_name').alias('product_name'), + collect_list('quantity').alias('quantity'), + collect_list('price').alias('price') + )\ + .show() +``` + +The expression `groupby('transaction_id')` ensures that we have (on the output DataFrame) a single row for each unique value in the `transaction_id` column. While the `collect_list()` function does the job of condensing all the information of the remaining columns into a single row for each `transaction_id`. + +Now, if we use `collect_set()` instead of `collect_list()`, we would get a slightly different result. Because, as we described before, the `collect_set()` function removes all duplicated values found in the set of rows it collects. + + +```{python} +from pyspark.sql.functions import collect_set +supermarket_sales\ + .groupby('transaction_id')\ + .agg( + collect_set('product_name').alias('product_name'), + collect_set('quantity').alias('quantity'), + collect_set('price').alias('price') + )\ + .show() ``` \ No newline at end of file diff --git a/Chapters/09-strings.qmd b/Chapters/09-strings.qmd index a69918d5..97e01313 100644 --- a/Chapters/09-strings.qmd +++ b/Chapters/09-strings.qmd @@ -1,594 +1,594 @@ -# Tools for string manipulation {#sec-string-tools} - -```{python} -#| include: false -# To execute the next chunks with success, we need to start a Spark Session -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - -Many of the world's data is represented (or stored) as text (or string variables). As a consequence, is very important to know the tools available to process and transform this kind of data, in any platform you use. In this chapter, we will focus on these tools. - -Most of the functionality available in `pyspark` to process text data comes from functions available at the `pyspark.sql.functions` module. This means that processing and transforming text data in Spark usually involves applying a function on a column of a Spark DataFrame (by using DataFrame methods such as `withColumn()` and `select()`). - - -## The `logs` DataFrame - -Over the next examples in this chapter, we will use the `logs` DataFrame, which contains various log messages registered at a fictitious IP adress. The data that represents this DataFrame is freely available trough the `logs.json` file, which you can download from the official repository of this book[^logs-download]. - -[^logs-download]: - -Each line of this JSON file contains a message that was recorded by the logger of a fictitious system. Each log message have three main parts, which are: 1) the type of message (warning - `WARN`, information - `INFO`, error - `ERROR`); 2) timestamp of the event; 3) the content of the message. In the example below, we have an example of message: - -> \[INFO\]: 2022-09-05 03:35:01.43 Looking for workers at South America region; - -To import `logs.json` file into a Spark DataFrame, I can use the following code: - -```{python} -path = './../Data/logs.json' -logs = spark.read.json(path) -n_truncate = 50 -logs.show(5, truncate = n_truncate) -``` - -By default, when we use the `show()` action to see the contents of our Spark DataFrame, Spark will always truncate (or cut) any value in the DataFrame that is more than 20 characters long. Since the logs messages in the `logs.json` file are usually much longer than 20 characters, I am using the `truncate` argument of `show()` in the example above, to avoid this behaviour. - -By setting this argument to 50, I am asking Spark to truncate (or cut) values at the 50th character (instead of the 20th). By doing this, you (reader) can actually see a much more significant part of the logs messages in the result above. - - -## Changing the case of letters in a string - -Probably the most basic string transformation that exists is to change the case of the letters (or characters) that compose the string. That is, to raise specific letters to upper-case, or reduce them to lower-case, and vice-versa. - -As a first example, lets go back to the `logs` DataFrame, and try to change all messages in this DataFrame to lower case, upper case and title case, by using the `lower()`, `upper()`, and `initcap()` functions from the `pyspark.sql.functions` module. - -```{python} -from pyspark.sql.functions import ( - lower, - upper, - initcap -) - -m = logs.select('message') -# Change to lower case: -m.withColumn('message', lower('message'))\ - .show(5, truncate = n_truncate) -``` - -```{python} -# Change to upper case: -m.withColumn('message', upper('message'))\ - .show(5, truncate = n_truncate) -``` - -```{python} -# Change to title case -# (first letter of each word is upper case): -m.withColumn('message', initcap('message'))\ - .show(5, truncate = n_truncate) -``` - - -## Calculating string length - -In Spark, you can use the `length()` function to get the length (i.e. the number of characters) of a string. In the example below, we can see that the first log message is 74 characters long, while the second log message have 112 characters. - -```{python} -from pyspark.sql.functions import length -logs\ - .withColumn('length', length('message'))\ - .show(5) -``` - - -## Trimming or removing spaces from strings - -The process of removing unnecessary spaces from strings is usually called "trimming". In Spark, we have three functions that do this process, which are: - -- `trim()`: removes spaces from both sides of the string; -- `ltrim()`: removes spaces from the left side of the string; -- `rtrim()`: removes spaces from the right side of the string; - - -```{python} -from pyspark.sql.functions import ( - trim, rtrim, ltrim -) - -logs\ - .select('ip')\ - .withColumn('ip_trim', trim('ip'))\ - .withColumn('ip_ltrim', ltrim('ip'))\ - .withColumn('ip_rtrim', rtrim('ip'))\ - .show(5) -``` - -For the most part, I tend to remove these unnecessary strings when I want to: 1) tidy the values; 2) avoid weird and confusing mistakes in filters on my DataFrame. The second case is worth describing in more details. - -Let's suppose you wanted to filter all rows from the `logs` DataFrame where `ip` is equal to the `1.0.104.27` IP adress. However, you can see in the result above, that I get nothing. Not a single row of result. - -```{python} -from pyspark.sql.functions import col -logs.filter(col('ip') == "1.0.104.27")\ - .show(5) -``` - -But if you see the result of the previous example (where we appliead the three versions of "trim functions"), you know that this IP adress `1.0.104.27` exists in the DataFrame. You know that the filter above should find values for this IP adress. So why it did not find any rows? - -The answer is these annoying (and hidden) spaces on both sides of the values from the `ip` column. If we remove these unnecessary spaces from the values of the `ip` column, we suddenly find the rows that we were looking for. - -```{python} -logs.filter(trim(col('ip')) == "1.0.104.27")\ - .show(5) -``` - - -## Extracting substrings - -There are five main functions that we can use in order to extract substrings of a string, which are: - -- `substring()` and `substr()`: extract a single substring based on a start position and the length (number of characters) of the collected substring[^index-one]; -- `substring_index()`: extract a single substring based on a delimiter character[^index-one]; -- `split()`: extract one or multiple substrings based on a delimiter character; -- `regexp_extract()`: extracts substrings from a given string that match a specified regular expression pattern; - -[^index-one]: Instead of using a zero based index (which is the default for Python), these functions use a one based index. - -You can obviously extract a substring that matches a particular regex (regular expression) as well, by using the `regexp_extract()` function. However, I will describe this function, and the regex functionality available in `pyspark` at @sec-regex, or, more specifically, at @sec-regexp-extract. For now, just understand that you can also use regex to extract substrings from your text data. - - -### A substring based on a start position and length - -The `substring()` and `substr()` functions they both work the same way. However, they come from different places. The `substring()` function comes from the `spark.sql.functions` module, while the `substr()` function is actually a method from the `Column` class. - -One interesting aspect of these functions, is that they both use a one-based index, instead of a zero-based index. This means that the first character in the full string is identified by the index 1, instead of the index 0. - -The first argument in both function is the index that identifies the start position of the substring. If you set this argument to, let's say, 4, it means that the substring you want to extract starts at the 4th character in the input string. - -The second argument is the amount of characters in the substring, or, in other words, it's length. For example, if you set this argument to 10, it means that the function will extract the substring that is formed by walking $10 - 1 = 9$ characters ahead from the start position you specified at the first argument. We can also interpret this as: the function will walk ahead on the string, from the start position, until it gets a substring that is 10 characters long. - -In the example below, we are extracting the substring that starts at the second character (index 2) and ends at the sixth character (index 6) in the string. - -```{python} -from pyspark.sql.functions import col, substring -# `df1` and `df2` are equal, because -# they both mean the same thing -df1 = (logs - .withColumn('sub', col('message').substr(2, 5)) -) - -df2 = (logs - .withColumn('sub', substring('message', 2, 5)) -) - -df2.show(5) -``` - -Just to be very clear on how `substring()` and `substr()` both works. The @fig-substring-start-length illustrates the result of the above code. - -![How `substring()` and `substr()` works](./../Figures/substring-start-length.png){#fig-substring-start-length} - - -### A substring based on a delimiter - -The `substring_index()` function works very differently. It collects the substring formed between the start of the string, and the nth occurrence of a particular character. - -For example, if you ask `substring_index()` to search for the 3rd occurrence of the character `$` in your string, the function will return to you the substring formed by all characters that are between the start of the string until the 3rd occurrence of this character `$`. - -You can also ask `substring_index()` to read backwards. That is, to start the search on the end of the string, and move backwards in the string until it gets to the 3rd occurrence of this character `$`. - -As an example, let's look at the 10th log message present in the `logs` DataFrame. I used the `collect()` DataFrame method to collect this message into a raw python string, so we can easily see the full content of the message. - -```{python} -from pyspark.sql.functions import monotonically_increasing_id - -mes_10th = ( - logs - .withColumn( - 'row_id', - monotonically_increasing_id() - ) - .where(col('row_id') == 9) -) - -message = mes_10th.collect()[0]['message'] -print(message) -``` - -We can see that this log message is listing a set of libraries that were installed somewhere. Suppose you want to collect the first and the last libraries in this list. How would you do it? - -A good start is to isolate the list of libraries from the rest of the message. In other words, there is a bunch of characters in the start of the log message, that we do not care about. So let's get rid of them. - -If you look closely to the message, you can see that the character `:` appears twice whithin the message. One close to the start of the string, and another time right before the start of the list of the libraries. We can use this character as our first delimiter, to collect the third substring that it creates within the total string, which is the substring that contains the list of libraries. - -This first stage is presented visually at @fig-substring-delimiter1. - -![Substrings produced by the `:` delimiter character](./../Figures/substring-delimiter1.png){#fig-substring-delimiter1} - -Now that we identified the substrings produced by the "delimiter character", we just need to understand better which index we need to use in `substring_index()` to get this third substring that we want. The @fig-substring-delimiter2 presents in a visual manner how the count system of `substring_index()` works. - -When you use a positive index, `substring_index()` will count the occurrences of the delimiter character from left to right. But, when you use a negative index, the opposite happens. That is, `substring_index()` counts the occurrences of the delimiter character from right to left. - -![The count system of `substring_index()`](./../Figures/substring-delimiter2.png){#fig-substring-delimiter2} - -The index 1 represents the first substring that is before the the 1st occurence of the delimiter (`[INFO]`). The index 2 represents everything that is before the 2nd occurence of the delimiter (`[INFO]: 2022-09-05 04:02.09.05 Libraries installed`). etc. - -In contrast, the index -1 represents everything that is after the 1st occurence of the delimiter, couting from right to left (`pandas, flask, numpy, spark_map, pyspark`). The index -2 represents everything that is after the 2nd occurence of the delimiter (`2022-09-05 04:02.09.05 Libraries installed: pandas, flask, numpy, spark_map, pyspark`). Again, couting from right to left. - -Having all these informations in mind, we can conclude that the following code fit our first objective. Note that I applied the `trim()` function over the result of `substring_index()`, to ensure that the result substring does not contain any unnecessary spaces at both ends. - -```{python} -from pyspark.sql.functions import substring_index -mes_10th = mes_10th\ - .withColumn( - 'list_of_libraries', - trim(substring_index('message', ':', -1)) - ) - -mes_10th.select('list_of_libraries')\ - .show(truncate = n_truncate) -``` - - -### Forming an array of substrings - -Now is a good time to introduce the `split()` function, because we can use it to extract the first and the last library from the list libraries of stored at the `mes_10th` DataFrame. - -Basically, this function also uses a delimiter character to cut the total string into multiple pieces. However, this function stores these multiple pieces (or multiple substrings) into an array of substrings. With this strategy, we can now access each substring (or each piece of the total string) individually. - -If we look again at the string that we stored at the `list_of_libraries` column, we have a list of libraries, separated by a comma. - -```{python} -mes_10th\ - .select('list_of_libraries')\ - .show(truncate = n_truncate) -``` - - -The comma character (`,`) plays an important role in this string, by separating each value in the list. And we can use this comma character as the delimiter inside `split()`, to get an array of substrings. Each element of this array is one of the many libraries in the list. The @fig-string-split presents this process visually. - -![Building an array of substrings with `split()`](./../Figures/string-split.png){#fig-string-split} - - -The code to make this process is very straightforward. In the example below, the column `array_of_libraries` becomes a column of data type `ArrayType(StringType)`, that is, an array of string values. - -```{python} -from pyspark.sql.functions import split -mes_10th = mes_10th\ - .withColumn( - 'array_of_libraries', - split('list_of_libraries', ', ') - ) - -mes_10th\ - .select('array_of_libraries')\ - .show(truncate = n_truncate) -``` - -By having this array of substring, we can very easily select a specific element in this array, by using the `getItem()` column method, or, by using the open brackets as you would normally use to select an element in a python list. - -You just need to give the index of the element you want to select, like in the example below that we select the first and the fifth libraries in the array. - -```{python} -mes_10th\ - .withColumn('lib_1', col('array_of_libraries')[0])\ - .withColumn('lib_5', col('array_of_libraries').getItem(4))\ - .select('lib_1', 'lib_5')\ - .show(truncate = n_truncate) -``` - - - -## Concatenating multiple strings together - -Sometimes, we need to concatenate multiple strings together, to form a single and longer string. To do this process, Spark offers two main functions, which are: `concat()` and `concat_ws()`. Both of these functions receives a list of columns as input, and will perform the same task, which is to concatenate the values of each column in the list, sequentially. - -However, the `concat_ws()` function have an extra argument called `sep`, where you can define a string to be used as the separator (or the "delimiter") between the values of each column in the list. In some way, this `sep` argument and the `concat_ws()` function works very similarly to the [`join()` string method of python](https://docs.python.org/3/library/stdtypes.html#str.join)[^string-join-py]. - -[^string-join-py]: - -Let's comeback to the `penguins` DataFrame to demonstrate the use of these functions: -```{python} -path = "../Data/penguins.csv" -penguins = spark.read\ - .csv(path, header = True) - -penguins.select('species', 'island', 'sex')\ - .show(5) -``` - -Suppose you wanted to concatenate the values of the columns `species`, `island` and `sex` together, and, store these new values on a separate column. All you need to do is to list these columns inside the `concat()` or `concat_ws()` function. - -If you look at the example below, you can see that I also used the `lit()` function to add a underline character (`_`) between the values of each column. This is more verbose, because if you needed to concatenate 10 columns together, and still add a "delimiter character" (like the underline) between the values of each column, you would have to write `lit('_')` for 9 times on the list. - -In contrast, the `concat_ws()` offers a much more succinct way of expressing this same operation. Because the first argument of `concat_ws()` is the character to be used as the delimiter between each column, and, after that, we have the list of columns to be concatenated. -```{python} -from pyspark.sql.functions import ( - concat, - concat_ws, - lit -) - -penguins\ - .withColumn( - 'using_concat', - concat( - 'species', lit('_'), 'island', - lit('_'), 'sex') - )\ - .withColumn( - 'using_concat_ws', - concat_ws( - '_', # The delimiter character - 'species', 'island', 'sex' # The list of columns - ) - )\ - .select('using_concat', 'using_concat_ws')\ - .show(5, truncate = n_truncate) -``` - - -If you look closely to the result above, you can also see, that `concat()` and `concat_ws()` functions deal with null values in different ways. If `concat()` finds a null value for a particular row, in any of the listed columns to be concatenated, the end result of the process is a null value for that particular row. - -On the other hand, `concat_ws()` will try to concatenate as many values as he can. If he does find a null value, he just ignores this null value and go on to the next column, until it hits the last column in the list. - - -## Introducing regular expressions {#sec-regex} - -Spark also provides some basic regex (*regular expressions*) functionality. Most of this functionality is available trough two functions that comes from the `pyspark.sql.functions` module, which are: - -- `regexp_replace()`: replaces all occurrences of a specified regular expression pattern in a given string with a replacement string.; -- `regexp_extract()`: extracts substrings from a given string that match a specified regular expression pattern; - -There is also a column method that provides an useful way of testing if the values of a column matchs a regular expression or not, which is the `rlike()` column method. You can use the `rlike()` method in conjunction with the `filter()` or `where()` DataFrame methods, to find all values that fit (or match) a particular regular expression, like we demonstrated at @sec-filter-regex-pattern. - -### The Java regular expression standard - -At this point, is worth remembering a basic fact about Apache Spark that we introduced at @sec-introd-spark. Apache Spark is written in Scala, which is a modern programming language deeply connected with the Java programming language. One of the many consequences from this fact, is that all regular expression functionality available in Apache Spark is based on the Java `java.util.regex` package. - -This means that you should always write regular expressions on your `pyspark` code that follows the Java regular expression syntax, and not the Python regular expression syntax, which is based on the python module `re`. - -Although this detail is important, these two flavors of regular expressions (Python syntax versus Java syntax) are very, very similar. So, for the most part, you should not see any difference between these two syntaxes. - -If for some reason, you need to consult the full list of all metacharacters available in the Java regular expression standard, you can always check the Java documentation for the `java.util.regex` package. More specifically, the [documentation for the `java.util.regex.Pattern` class](https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html)[^java-regex-doc]. - -[^java-regex-doc]: - -The following list gives you a quick description of a small fraction of the available metacharacters in the Java syntax, and, as a result, metacharacters that you can use in `pyspark`: - -- `.` : Matches any single character; -- `*` : Matches zero or more occurrences of the preceding character or pattern; -- `+` : Matches one or more occurrences of the preceding character or pattern; -- `?` : Matches zero or one occurrence of the preceding character or pattern; -- `|` : Matches either the expression before or after the `|`; -- `[]` : Matches any single character within the brackets; -- `\d` : Matches any digit character; -- `\b` : Matches a word boundary character; -- `\w` : Matches any word character. Equivalent to the `"\b([a-zA-Z_0-9]+)\b"` regular expression; -- `\s` : Matches any whitespace character; -- `()` : Groups a series of pattern elements to a single element; - - -### Using an invalid regular expression - -When you write an invalid regular expression in your code, Spark usually complains with a `java.util.regex.PatternSyntaxException` runtime error. The code presented below is an example of code that produces such error. - -In this example, the regular expression `\b([a-z]` is invalid because it is missing a closing parenthesis. If you try to execute this code, Spark will raise a with the message "Unclosed group near index 7". This error message indicates that there is a syntax error in the regular expression, due to an unclosed group (i.e., a missing closing parenthesis). - -```python -from pyspark.sql.functions import col -weird_regex = '\b([a-z]' -logs\ - .filter(col('message').rlike(weird_regex))\ - .show(5) -``` - -``` -Py4JJavaError: An error occurred while calling o261.showString. -: java.util.regex.PatternSyntaxException: Unclosed group near index 7 -([a-z] -``` - - -To avoid these runtime errors, due to invalid regular expressions, is always a good idea to test your regular expressions, before you use them in your `pyspark` code. You can easily test your regular expressions by using online tools, such as the [Regex101 website](https://regex101.com/)[^regex101]. - -[^regex101]: - -### Replacing occurrences of a particular regular expression with `regexp_replace()` {#sec-regexp-replace} - -One of the most essential actions with regular expression is to find text that fits into a particular regular expression, and, rewriting this text into a different format, or, even removing it completely from the string. - -The `regexp_replace()` function (from the `pyspark.sql.functions` module) is the function that allows you to perform this kind of operation on string values of a column in a Spark DataFrame. - -This function replaces all occurrences of a specified regular expression pattern in a given string with a replacement string, and it takes three different arguments: - -- The input column name or expression that contains the string values to be modified; -- The regular expression pattern to search for within the input string values; -- The replacement string that will replace all occurrences of the matched pattern in the input string values; - -As an example, lets suppose we want to remove completely the type of the message in all log messages present in the `logs` DataFrame. To that, we first need to get a regular expression capable of identifying all possibilities for these types. - -A potential candidate would be the regular expression `'\\[(INFO|ERROR|WARN)\\]: '`, so lets give it a shot. Since we are trying to **remove** this particular part from all log messages, we should replace this part of the string by an empty string (`''`), like in the example below: - -```{python} -from pyspark.sql.functions import regexp_replace - -type_regex = '\\[(INFO|ERROR|WARN)\\]: ' - -logs\ - .withColumn( - 'without_type', - regexp_replace('message', type_regex, '') - )\ - .select('message', 'without_type')\ - .show(truncate = 30) -``` - -Is useful to remind that this `regexp_replace()` function searches for **all occurrences** of the regular expression on the input string values, and replaces all of these occurrences by the input replacement string that you gave. However, if the function does not find any matchs for your regular expression inside a particular value in the column, then, the function simply returns this value intact. - - - -### Introducing capturing groups on `pyspark` - -One of the many awesome functionalities of regular expressions, is the capability of enclosing parts of a regular expression inside groups, and actually store (or cache) the substring matched by this group. This process of grouping parts of a regular expression inside a group, and capturing substrings with them, is usually called of "grouping and capturing". - -Is worth pointing out that this capturing groups functionality is available both in `regexp_replace()` and `regexp_extract()`. - -#### What is a capturing group ? - -Ok, but, what is this group thing? You create a group inside a regular expression by enclosing a particular section of your regular expression inside a pair of parentheses. The regular expression that is written inside this pair of of parentheses represents a capturing group. - -A capturing group inside a regular expression is used to capture a specific part of the matched string. This means that the actual part of the input string that is matched by the regular expression that is inside this pair of parentheses, is captured (or cached, or saved) by the group, and, can be reused later. - -> Besides grouping part of a regular expression together, parentheses also create a numbered capturing group. It stores the part of the string matched by the part of the regular expression inside the parentheses. .... The regex "Set(Value)?" matches "Set" or "SetValue". In the first case, the first (and only) capturing group remains empty. In the second case, the first capturing group matches "Value". [@regexinfo]. - -So, remember, to use capturing groups in a regular expression, you must enclose the part of the pattern that you want to capture in parentheses `()`. Each set of parentheses creates a new capturing group. This means that you can create multiple groups inside a single regular expression, and, then, reuse latter the substrings captured by all of these multiple groups. Awesome, right? - -Each new group (that is, each pair of parentheses) that you create in your regular expression have a different index. That means that the first group is identified by the index 1, the second group, by the index 2, the third group, by the index 3, etc. - - - -Just to quickly demonstrate these capturing groups, here is a quick example, in pure Python: - -```{python} -import re - -# A regular expression that contains -# three different capturing groups -regex = r"(\d{3})-(\d{2})-(\d{4})" - -# Match the regular expression against a string -text = "My social security number is 123-45-6789." -match = re.search(regex, text) - -# Access the captured groups -group1 = match.group(1) # "123" -group2 = match.group(2) # "45" -group3 = match.group(3) # "6789" -``` - - -In the above example, the regular expression `r"(\d{3})-(\d{2})-(\d{4})"` contains three capturing groups, each enclosed in parentheses. When the regular expression is matched against the string `"My social security number is 123-45-6789."`, the first capturing group matches the substring `"123"`, the second capturing group matches `"45"`, and the third capturing group matches `"6789"`. - -![Example of capturing groups](./../Figures/substring-capturing-groups.png){#fig-substring-capturing-groups} - -In Python, we can access the captured groups using the `group()` method of the `Match` object returned by `re.search()`. In this example, `match.group(1)` returns the captured substring of the first capturing group (which is `"123"`), `match.group(2)` returns second `"45"`, and `match.group(3)` returns `"6789"`. - -#### How can we use capturing groups in `pyspark` ? - -Ok, now that we understood what capturing groups is, how can we use them in `pypspark`? First, remember, capturing groups will be available to you, only if you enclose a part of your regular expression in a pair of parentheses. So the first part is to make sure that the capturing groups are present in your regular expressions. - -After that, you can access the substring matched by the capturing group, by using the reference index that identifies this capturing group you want to use. In pure Python, we used the `group()` method with the group index (like 1, 2, etc.) to access these values. - -But in `pyspark`, we access these groups by using a special pattern formed by the group index preceded by a dollar sign (`$`). That is, the text `$1` references the first capturing group, `$2` references the second capturing group, etc. - -As a first example, lets go back to the regular expression we used at @sec-regexp-replace: `\\[(INFO|ERROR|WARN)\\]: `. This regular expression contains one capturing group, which captures the type label of the log message: `(INFO|ERROR|WARN)`. - -If we use the special pattern `$1` to reference this capturing group inside of `regexp_replace()`, what is going to happen is: `regexp_replace()` will replace all occurrences of the input regular expression found on the input string, by the substring matched by the first capturing group. See in the example below: - -```{python} -logs\ - .withColumn( - 'using_groups', - regexp_replace('message', type_regex, 'Type Label -> $1 | ') - )\ - .select('message', 'using_groups')\ - .show(truncate = 30) -``` - - -In essence, you can reuse the substrings matched by the capturing groups, by using the special patterns `$1`, `$2`, `$3`, etc. This means that you can reuse the substrings captured by multiple groups at the same time inside `regexp_replace()` and `regexp_extract()`. For example, if we use the replacement string `"$1, $2, $3"` inside `regexp_replace()`, we would get the substrings matched by the first, second and third capturing groups, separated by commas. - -However, is also good to emphasize a small limitation that this system has. When you need to reuse the substrings captured by multiple groups together, is important that you make sure to add some amount of space (or some delimiter character) between each group reference, like `"$1 $2 $3"`. - -Because if you write these group references one close to each other (like in `"$1$2$3"`), it is not going to work. In other words, Spark will not understand that you are trying to access a capturing group. It will interpret the text `"$1$2$3"` as the literal value `"$1$2$3"`, and not as a special pattern that references multiple capturing groups in the regular expression. - - -### Extracting substrings with `regexp_extract()` {#sec-regexp-extract} - -Another very useful regular expression activity is to extract a substring from a given string that match a specified regular expression pattern. The `regexp_extract()` function is the main method used to do this process. - -This function takes three arguments, which are: - -- The input column name or expression that contains the string to be searched; -- The regular expression pattern to search for within the input string; -- The index of the capturing group within the regular expression pattern that corresponds to the substring to extract; - -You may (or may not) use capturing groups inside of `regexp_replace()`. However, on the other hand, the `regexp_extract()` function **is based on** the capturing groups functionality. As a consequence, when you use `regexp_extract()`, you must give a regular expression that **contains some capturing group**. Because otherwise, the `regexp_extract()` function becomes useless. - -In other words, the `regexp_extract()` function extracts substrings that are matched by the capturing groups present in your input regular expression. If you want, for example, to use `regexp_extract()` to extract the substring matched by a entire regular expression, then, you just need to surround this entire regular expression by a pair of parentheses. This way you transform this entire regular expression in a capturing group, and, therefore, you can extract the substring matched by this group. - -As an example, lets go back again to the regular expression we used in the `logs` DataFrame: `\\[(INFO|ERROR|WARN)\\]: `. We can extract the type of log message label, by using the index 1 to reference the first (and only) capturing group in this regular expression. - -```{python} -from pyspark.sql.functions import regexp_extract - -logs\ - .withColumn( - 'message_type', - regexp_extract('message', type_regex, 1) - )\ - .select('message', 'message_type')\ - .show(truncate = 30) -``` - -As another example, lets suppose we wanted to extract not only the type of the log message, but also, the timestamp and the content of the message, and store these different elements in separate columns. - -To do that, we could build a more complete regular expression. An expression capable of matching the entire log message, and, at the same time, capture each of these different elements inside a different capturing group. The code below is an example that produces such regular expression, and applies it over the `logs` DataFrame. - -```{python} -type_regex = r'\[(INFO|ERROR|WARN)\]: ' - -date_regex = r'\d{4}-\d{2}-\d{2}' -time_regex = r' \d{2}:\d{2}:\d{2}([.]\d+)?' -timestamp_regex = date_regex + time_regex -timestamp_regex = r'(' + timestamp_regex + r')' - -regex = type_regex + timestamp_regex + r'(.+)$' - -logs\ - .withColumn( - 'message_type', - regexp_extract('message', regex, 1) - )\ - .withColumn( - 'timestamp', - regexp_extract('message', regex, 2) - )\ - .withColumn( - 'message_content', - regexp_extract('message', regex, 4) - )\ - .select('message_type', 'timestamp', 'message_content')\ - .show(5, truncate = 30) -``` - - -### Identifying values that match a particular regular expression with `rlike()` - -The `rlike()` column method is useful for checking if a string value in a column matches a specific regular expression. We briefly introduced this method at @sec-filter-regex-pattern. This method has only one input, which is the regular expression you want to apply over the column values. - -As an example, lets suppose you wanted to identify timestamp values inside your strings. You could use a regular expression pattern to find which text values had these kinds of values inside them. - -A possible regular expression candidate would be `"[0-9]{2}:[0-9]{2}:[0-9]{2}([.][0-9]+)?"`. This regex matches timestamp values in the format "hh:mm:ss.sss". This pattern consists of the following building blocks, or, elements: - -- `[0-9]{2}`: Matches any two digits from 0 to 9. -- `:`: Matches a colon character. -- `([.][0-9]+)?`: Matches an optional decimal point followed by one or more digits. - -If we apply this pattern over all log messages stored in the `logs` DataFrame, we would find that all logs messages matches this particular regular expression. Because all log messages contains a timestamp value at the start of the message: - -```{python} -from pyspark.sql.functions import col - -pattern = "[0-9]{2}:[0-9]{2}:[0-9]{2}([.][0-9]+)?" -logs\ - .withColumn( - 'does_it_match?', - col("message").rlike(pattern) - )\ - .select('message', 'does_it_match?')\ - .show(5, truncate = n_truncate) -``` +# Tools for string manipulation {#sec-string-tools} + +```{python} +#| include: false +# To execute the next chunks with success, we need to start a Spark Session +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +``` + +Many of the world's data is represented (or stored) as text (or string variables). As a consequence, is very important to know the tools available to process and transform this kind of data, in any platform you use. In this chapter, we will focus on these tools. + +Most of the functionality available in `pyspark` to process text data comes from functions available at the `pyspark.sql.functions` module. This means that processing and transforming text data in Spark usually involves applying a function on a column of a Spark DataFrame (by using DataFrame methods such as `withColumn()` and `select()`). + + +## The `logs` DataFrame + +Over the next examples in this chapter, we will use the `logs` DataFrame, which contains various log messages registered at a fictitious IP adress. The data that represents this DataFrame is freely available trough the `logs.json` file, which you can download from the official repository of this book[^logs-download]. + +[^logs-download]: + +Each line of this JSON file contains a message that was recorded by the logger of a fictitious system. Each log message have three main parts, which are: 1) the type of message (warning - `WARN`, information - `INFO`, error - `ERROR`); 2) timestamp of the event; 3) the content of the message. In the example below, we have an example of message: + +> \[INFO\]: 2022-09-05 03:35:01.43 Looking for workers at South America region; + +To import `logs.json` file into a Spark DataFrame, I can use the following code: + +```{python} +path = './../Data/logs.json' +logs = spark.read.json(path) +n_truncate = 50 +logs.show(5, truncate = n_truncate) +``` + +By default, when we use the `show()` action to see the contents of our Spark DataFrame, Spark will always truncate (or cut) any value in the DataFrame that is more than 20 characters long. Since the logs messages in the `logs.json` file are usually much longer than 20 characters, I am using the `truncate` argument of `show()` in the example above, to avoid this behaviour. + +By setting this argument to 50, I am asking Spark to truncate (or cut) values at the 50th character (instead of the 20th). By doing this, you (reader) can actually see a much more significant part of the logs messages in the result above. + + +## Changing the case of letters in a string + +Probably the most basic string transformation that exists is to change the case of the letters (or characters) that compose the string. That is, to raise specific letters to upper-case, or reduce them to lower-case, and vice-versa. + +As a first example, lets go back to the `logs` DataFrame, and try to change all messages in this DataFrame to lower case, upper case and title case, by using the `lower()`, `upper()`, and `initcap()` functions from the `pyspark.sql.functions` module. + +```{python} +from pyspark.sql.functions import ( + lower, + upper, + initcap +) + +m = logs.select('message') +# Change to lower case: +m.withColumn('message', lower('message'))\ + .show(5, truncate = n_truncate) +``` + +```{python} +# Change to upper case: +m.withColumn('message', upper('message'))\ + .show(5, truncate = n_truncate) +``` + +```{python} +# Change to title case +# (first letter of each word is upper case): +m.withColumn('message', initcap('message'))\ + .show(5, truncate = n_truncate) +``` + + +## Calculating string length + +In Spark, you can use the `length()` function to get the length (i.e. the number of characters) of a string. In the example below, we can see that the first log message is 74 characters long, while the second log message have 112 characters. + +```{python} +from pyspark.sql.functions import length +logs\ + .withColumn('length', length('message'))\ + .show(5) +``` + + +## Trimming or removing spaces from strings + +The process of removing unnecessary spaces from strings is usually called "trimming". In Spark, we have three functions that do this process, which are: + +- `trim()`: removes spaces from both sides of the string; +- `ltrim()`: removes spaces from the left side of the string; +- `rtrim()`: removes spaces from the right side of the string; + + +```{python} +from pyspark.sql.functions import ( + trim, rtrim, ltrim +) + +logs\ + .select('ip')\ + .withColumn('ip_trim', trim('ip'))\ + .withColumn('ip_ltrim', ltrim('ip'))\ + .withColumn('ip_rtrim', rtrim('ip'))\ + .show(5) +``` + +For the most part, I tend to remove these unnecessary strings when I want to: 1) tidy the values; 2) avoid weird and confusing mistakes in filters on my DataFrame. The second case is worth describing in more details. + +Let's suppose you wanted to filter all rows from the `logs` DataFrame where `ip` is equal to the `1.0.104.27` IP adress. However, you can see in the result above, that I get nothing. Not a single row of result. + +```{python} +from pyspark.sql.functions import col +logs.filter(col('ip') == "1.0.104.27")\ + .show(5) +``` + +But if you see the result of the previous example (where we appliead the three versions of "trim functions"), you know that this IP adress `1.0.104.27` exists in the DataFrame. You know that the filter above should find values for this IP adress. So why it did not find any rows? + +The answer is these annoying (and hidden) spaces on both sides of the values from the `ip` column. If we remove these unnecessary spaces from the values of the `ip` column, we suddenly find the rows that we were looking for. + +```{python} +logs.filter(trim(col('ip')) == "1.0.104.27")\ + .show(5) +``` + + +## Extracting substrings + +There are five main functions that we can use in order to extract substrings of a string, which are: + +- `substring()` and `substr()`: extract a single substring based on a start position and the length (number of characters) of the collected substring[^index-one]; +- `substring_index()`: extract a single substring based on a delimiter character[^index-one]; +- `split()`: extract one or multiple substrings based on a delimiter character; +- `regexp_extract()`: extracts substrings from a given string that match a specified regular expression pattern; + +[^index-one]: Instead of using a zero based index (which is the default for Python), these functions use a one based index. + +You can obviously extract a substring that matches a particular regex (regular expression) as well, by using the `regexp_extract()` function. However, I will describe this function, and the regex functionality available in `pyspark` at @sec-regex, or, more specifically, at @sec-regexp-extract. For now, just understand that you can also use regex to extract substrings from your text data. + + +### A substring based on a start position and length + +The `substring()` and `substr()` functions they both work the same way. However, they come from different places. The `substring()` function comes from the `spark.sql.functions` module, while the `substr()` function is actually a method from the `Column` class. + +One interesting aspect of these functions, is that they both use a one-based index, instead of a zero-based index. This means that the first character in the full string is identified by the index 1, instead of the index 0. + +The first argument in both function is the index that identifies the start position of the substring. If you set this argument to, let's say, 4, it means that the substring you want to extract starts at the 4th character in the input string. + +The second argument is the amount of characters in the substring, or, in other words, it's length. For example, if you set this argument to 10, it means that the function will extract the substring that is formed by walking $10 - 1 = 9$ characters ahead from the start position you specified at the first argument. We can also interpret this as: the function will walk ahead on the string, from the start position, until it gets a substring that is 10 characters long. + +In the example below, we are extracting the substring that starts at the second character (index 2) and ends at the sixth character (index 6) in the string. + +```{python} +from pyspark.sql.functions import col, substring +# `df1` and `df2` are equal, because +# they both mean the same thing +df1 = (logs + .withColumn('sub', col('message').substr(2, 5)) +) + +df2 = (logs + .withColumn('sub', substring('message', 2, 5)) +) + +df2.show(5) +``` + +Just to be very clear on how `substring()` and `substr()` both works. The @fig-substring-start-length illustrates the result of the above code. + +![How `substring()` and `substr()` works](./../Figures/substring-start-length.png){#fig-substring-start-length} + + +### A substring based on a delimiter + +The `substring_index()` function works very differently. It collects the substring formed between the start of the string, and the nth occurrence of a particular character. + +For example, if you ask `substring_index()` to search for the 3rd occurrence of the character `$` in your string, the function will return to you the substring formed by all characters that are between the start of the string until the 3rd occurrence of this character `$`. + +You can also ask `substring_index()` to read backwards. That is, to start the search on the end of the string, and move backwards in the string until it gets to the 3rd occurrence of this character `$`. + +As an example, let's look at the 10th log message present in the `logs` DataFrame. I used the `collect()` DataFrame method to collect this message into a raw python string, so we can easily see the full content of the message. + +```{python} +from pyspark.sql.functions import monotonically_increasing_id + +mes_10th = ( + logs + .withColumn( + 'row_id', + monotonically_increasing_id() + ) + .where(col('row_id') == 9) +) + +message = mes_10th.collect()[0]['message'] +print(message) +``` + +We can see that this log message is listing a set of libraries that were installed somewhere. Suppose you want to collect the first and the last libraries in this list. How would you do it? + +A good start is to isolate the list of libraries from the rest of the message. In other words, there is a bunch of characters in the start of the log message, that we do not care about. So let's get rid of them. + +If you look closely to the message, you can see that the character `:` appears twice whithin the message. One close to the start of the string, and another time right before the start of the list of the libraries. We can use this character as our first delimiter, to collect the third substring that it creates within the total string, which is the substring that contains the list of libraries. + +This first stage is presented visually at @fig-substring-delimiter1. + +![Substrings produced by the `:` delimiter character](./../Figures/substring-delimiter1.png){#fig-substring-delimiter1} + +Now that we identified the substrings produced by the "delimiter character", we just need to understand better which index we need to use in `substring_index()` to get this third substring that we want. The @fig-substring-delimiter2 presents in a visual manner how the count system of `substring_index()` works. + +When you use a positive index, `substring_index()` will count the occurrences of the delimiter character from left to right. But, when you use a negative index, the opposite happens. That is, `substring_index()` counts the occurrences of the delimiter character from right to left. + +![The count system of `substring_index()`](./../Figures/substring-delimiter2.png){#fig-substring-delimiter2} + +The index 1 represents the first substring that is before the the 1st occurence of the delimiter (`[INFO]`). The index 2 represents everything that is before the 2nd occurence of the delimiter (`[INFO]: 2022-09-05 04:02.09.05 Libraries installed`). etc. + +In contrast, the index -1 represents everything that is after the 1st occurence of the delimiter, couting from right to left (`pandas, flask, numpy, spark_map, pyspark`). The index -2 represents everything that is after the 2nd occurence of the delimiter (`2022-09-05 04:02.09.05 Libraries installed: pandas, flask, numpy, spark_map, pyspark`). Again, couting from right to left. + +Having all these informations in mind, we can conclude that the following code fit our first objective. Note that I applied the `trim()` function over the result of `substring_index()`, to ensure that the result substring does not contain any unnecessary spaces at both ends. + +```{python} +from pyspark.sql.functions import substring_index +mes_10th = mes_10th\ + .withColumn( + 'list_of_libraries', + trim(substring_index('message', ':', -1)) + ) + +mes_10th.select('list_of_libraries')\ + .show(truncate = n_truncate) +``` + + +### Forming an array of substrings + +Now is a good time to introduce the `split()` function, because we can use it to extract the first and the last library from the list libraries of stored at the `mes_10th` DataFrame. + +Basically, this function also uses a delimiter character to cut the total string into multiple pieces. However, this function stores these multiple pieces (or multiple substrings) into an array of substrings. With this strategy, we can now access each substring (or each piece of the total string) individually. + +If we look again at the string that we stored at the `list_of_libraries` column, we have a list of libraries, separated by a comma. + +```{python} +mes_10th\ + .select('list_of_libraries')\ + .show(truncate = n_truncate) +``` + + +The comma character (`,`) plays an important role in this string, by separating each value in the list. And we can use this comma character as the delimiter inside `split()`, to get an array of substrings. Each element of this array is one of the many libraries in the list. The @fig-string-split presents this process visually. + +![Building an array of substrings with `split()`](./../Figures/string-split.png){#fig-string-split} + + +The code to make this process is very straightforward. In the example below, the column `array_of_libraries` becomes a column of data type `ArrayType(StringType)`, that is, an array of string values. + +```{python} +from pyspark.sql.functions import split +mes_10th = mes_10th\ + .withColumn( + 'array_of_libraries', + split('list_of_libraries', ', ') + ) + +mes_10th\ + .select('array_of_libraries')\ + .show(truncate = n_truncate) +``` + +By having this array of substring, we can very easily select a specific element in this array, by using the `getItem()` column method, or, by using the open brackets as you would normally use to select an element in a python list. + +You just need to give the index of the element you want to select, like in the example below that we select the first and the fifth libraries in the array. + +```{python} +mes_10th\ + .withColumn('lib_1', col('array_of_libraries')[0])\ + .withColumn('lib_5', col('array_of_libraries').getItem(4))\ + .select('lib_1', 'lib_5')\ + .show(truncate = n_truncate) +``` + + + +## Concatenating multiple strings together + +Sometimes, we need to concatenate multiple strings together, to form a single and longer string. To do this process, Spark offers two main functions, which are: `concat()` and `concat_ws()`. Both of these functions receives a list of columns as input, and will perform the same task, which is to concatenate the values of each column in the list, sequentially. + +However, the `concat_ws()` function have an extra argument called `sep`, where you can define a string to be used as the separator (or the "delimiter") between the values of each column in the list. In some way, this `sep` argument and the `concat_ws()` function works very similarly to the [`join()` string method of python](https://docs.python.org/3/library/stdtypes.html#str.join)[^string-join-py]. + +[^string-join-py]: + +Let's comeback to the `penguins` DataFrame to demonstrate the use of these functions: +```{python} +path = "../Data/penguins.csv" +penguins = spark.read\ + .csv(path, header = True) + +penguins.select('species', 'island', 'sex')\ + .show(5) +``` + +Suppose you wanted to concatenate the values of the columns `species`, `island` and `sex` together, and, store these new values on a separate column. All you need to do is to list these columns inside the `concat()` or `concat_ws()` function. + +If you look at the example below, you can see that I also used the `lit()` function to add a underline character (`_`) between the values of each column. This is more verbose, because if you needed to concatenate 10 columns together, and still add a "delimiter character" (like the underline) between the values of each column, you would have to write `lit('_')` for 9 times on the list. + +In contrast, the `concat_ws()` offers a much more succinct way of expressing this same operation. Because the first argument of `concat_ws()` is the character to be used as the delimiter between each column, and, after that, we have the list of columns to be concatenated. +```{python} +from pyspark.sql.functions import ( + concat, + concat_ws, + lit +) + +penguins\ + .withColumn( + 'using_concat', + concat( + 'species', lit('_'), 'island', + lit('_'), 'sex') + )\ + .withColumn( + 'using_concat_ws', + concat_ws( + '_', # The delimiter character + 'species', 'island', 'sex' # The list of columns + ) + )\ + .select('using_concat', 'using_concat_ws')\ + .show(5, truncate = n_truncate) +``` + + +If you look closely to the result above, you can also see, that `concat()` and `concat_ws()` functions deal with null values in different ways. If `concat()` finds a null value for a particular row, in any of the listed columns to be concatenated, the end result of the process is a null value for that particular row. + +On the other hand, `concat_ws()` will try to concatenate as many values as he can. If he does find a null value, he just ignores this null value and go on to the next column, until it hits the last column in the list. + + +## Introducing regular expressions {#sec-regex} + +Spark also provides some basic regex (*regular expressions*) functionality. Most of this functionality is available trough two functions that comes from the `pyspark.sql.functions` module, which are: + +- `regexp_replace()`: replaces all occurrences of a specified regular expression pattern in a given string with a replacement string.; +- `regexp_extract()`: extracts substrings from a given string that match a specified regular expression pattern; + +There is also a column method that provides an useful way of testing if the values of a column matchs a regular expression or not, which is the `rlike()` column method. You can use the `rlike()` method in conjunction with the `filter()` or `where()` DataFrame methods, to find all values that fit (or match) a particular regular expression, like we demonstrated at @sec-filter-regex-pattern. + +### The Java regular expression standard + +At this point, is worth remembering a basic fact about Apache Spark that we introduced at @sec-introd-spark. Apache Spark is written in Scala, which is a modern programming language deeply connected with the Java programming language. One of the many consequences from this fact, is that all regular expression functionality available in Apache Spark is based on the Java `java.util.regex` package. + +This means that you should always write regular expressions on your `pyspark` code that follows the Java regular expression syntax, and not the Python regular expression syntax, which is based on the python module `re`. + +Although this detail is important, these two flavors of regular expressions (Python syntax versus Java syntax) are very, very similar. So, for the most part, you should not see any difference between these two syntaxes. + +If for some reason, you need to consult the full list of all metacharacters available in the Java regular expression standard, you can always check the Java documentation for the `java.util.regex` package. More specifically, the [documentation for the `java.util.regex.Pattern` class](https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html)[^java-regex-doc]. + +[^java-regex-doc]: + +The following list gives you a quick description of a small fraction of the available metacharacters in the Java syntax, and, as a result, metacharacters that you can use in `pyspark`: + +- `.` : Matches any single character; +- `*` : Matches zero or more occurrences of the preceding character or pattern; +- `+` : Matches one or more occurrences of the preceding character or pattern; +- `?` : Matches zero or one occurrence of the preceding character or pattern; +- `|` : Matches either the expression before or after the `|`; +- `[]` : Matches any single character within the brackets; +- `\d` : Matches any digit character; +- `\b` : Matches a word boundary character; +- `\w` : Matches any word character. Equivalent to the `"\b([a-zA-Z_0-9]+)\b"` regular expression; +- `\s` : Matches any whitespace character; +- `()` : Groups a series of pattern elements to a single element; + + +### Using an invalid regular expression + +When you write an invalid regular expression in your code, Spark usually complains with a `java.util.regex.PatternSyntaxException` runtime error. The code presented below is an example of code that produces such error. + +In this example, the regular expression `\b([a-z]` is invalid because it is missing a closing parenthesis. If you try to execute this code, Spark will raise a with the message "Unclosed group near index 7". This error message indicates that there is a syntax error in the regular expression, due to an unclosed group (i.e., a missing closing parenthesis). + +```python +from pyspark.sql.functions import col +weird_regex = '\b([a-z]' +logs\ + .filter(col('message').rlike(weird_regex))\ + .show(5) +``` + +``` +Py4JJavaError: An error occurred while calling o261.showString. +: java.util.regex.PatternSyntaxException: Unclosed group near index 7 +([a-z] +``` + + +To avoid these runtime errors, due to invalid regular expressions, is always a good idea to test your regular expressions, before you use them in your `pyspark` code. You can easily test your regular expressions by using online tools, such as the [Regex101 website](https://regex101.com/)[^regex101]. + +[^regex101]: + +### Replacing occurrences of a particular regular expression with `regexp_replace()` {#sec-regexp-replace} + +One of the most essential actions with regular expression is to find text that fits into a particular regular expression, and, rewriting this text into a different format, or, even removing it completely from the string. + +The `regexp_replace()` function (from the `pyspark.sql.functions` module) is the function that allows you to perform this kind of operation on string values of a column in a Spark DataFrame. + +This function replaces all occurrences of a specified regular expression pattern in a given string with a replacement string, and it takes three different arguments: + +- The input column name or expression that contains the string values to be modified; +- The regular expression pattern to search for within the input string values; +- The replacement string that will replace all occurrences of the matched pattern in the input string values; + +As an example, lets suppose we want to remove completely the type of the message in all log messages present in the `logs` DataFrame. To that, we first need to get a regular expression capable of identifying all possibilities for these types. + +A potential candidate would be the regular expression `'\\[(INFO|ERROR|WARN)\\]: '`, so lets give it a shot. Since we are trying to **remove** this particular part from all log messages, we should replace this part of the string by an empty string (`''`), like in the example below: + +```{python} +from pyspark.sql.functions import regexp_replace + +type_regex = '\\[(INFO|ERROR|WARN)\\]: ' + +logs\ + .withColumn( + 'without_type', + regexp_replace('message', type_regex, '') + )\ + .select('message', 'without_type')\ + .show(truncate = 30) +``` + +Is useful to remind that this `regexp_replace()` function searches for **all occurrences** of the regular expression on the input string values, and replaces all of these occurrences by the input replacement string that you gave. However, if the function does not find any matchs for your regular expression inside a particular value in the column, then, the function simply returns this value intact. + + + +### Introducing capturing groups on `pyspark` + +One of the many awesome functionalities of regular expressions, is the capability of enclosing parts of a regular expression inside groups, and actually store (or cache) the substring matched by this group. This process of grouping parts of a regular expression inside a group, and capturing substrings with them, is usually called of "grouping and capturing". + +Is worth pointing out that this capturing groups functionality is available both in `regexp_replace()` and `regexp_extract()`. + +#### What is a capturing group ? + +Ok, but, what is this group thing? You create a group inside a regular expression by enclosing a particular section of your regular expression inside a pair of parentheses. The regular expression that is written inside this pair of of parentheses represents a capturing group. + +A capturing group inside a regular expression is used to capture a specific part of the matched string. This means that the actual part of the input string that is matched by the regular expression that is inside this pair of parentheses, is captured (or cached, or saved) by the group, and, can be reused later. + +> Besides grouping part of a regular expression together, parentheses also create a numbered capturing group. It stores the part of the string matched by the part of the regular expression inside the parentheses. .... The regex "Set(Value)?" matches "Set" or "SetValue". In the first case, the first (and only) capturing group remains empty. In the second case, the first capturing group matches "Value". [@regexinfo]. + +So, remember, to use capturing groups in a regular expression, you must enclose the part of the pattern that you want to capture in parentheses `()`. Each set of parentheses creates a new capturing group. This means that you can create multiple groups inside a single regular expression, and, then, reuse latter the substrings captured by all of these multiple groups. Awesome, right? + +Each new group (that is, each pair of parentheses) that you create in your regular expression have a different index. That means that the first group is identified by the index 1, the second group, by the index 2, the third group, by the index 3, etc. + + + +Just to quickly demonstrate these capturing groups, here is a quick example, in pure Python: + +```{python} +import re + +# A regular expression that contains +# three different capturing groups +regex = r"(\d{3})-(\d{2})-(\d{4})" + +# Match the regular expression against a string +text = "My social security number is 123-45-6789." +match = re.search(regex, text) + +# Access the captured groups +group1 = match.group(1) # "123" +group2 = match.group(2) # "45" +group3 = match.group(3) # "6789" +``` + + +In the above example, the regular expression `r"(\d{3})-(\d{2})-(\d{4})"` contains three capturing groups, each enclosed in parentheses. When the regular expression is matched against the string `"My social security number is 123-45-6789."`, the first capturing group matches the substring `"123"`, the second capturing group matches `"45"`, and the third capturing group matches `"6789"`. + +![Example of capturing groups](./../Figures/substring-capturing-groups.png){#fig-substring-capturing-groups} + +In Python, we can access the captured groups using the `group()` method of the `Match` object returned by `re.search()`. In this example, `match.group(1)` returns the captured substring of the first capturing group (which is `"123"`), `match.group(2)` returns second `"45"`, and `match.group(3)` returns `"6789"`. + +#### How can we use capturing groups in `pyspark` ? + +Ok, now that we understood what capturing groups is, how can we use them in `pypspark`? First, remember, capturing groups will be available to you, only if you enclose a part of your regular expression in a pair of parentheses. So the first part is to make sure that the capturing groups are present in your regular expressions. + +After that, you can access the substring matched by the capturing group, by using the reference index that identifies this capturing group you want to use. In pure Python, we used the `group()` method with the group index (like 1, 2, etc.) to access these values. + +But in `pyspark`, we access these groups by using a special pattern formed by the group index preceded by a dollar sign (`$`). That is, the text `$1` references the first capturing group, `$2` references the second capturing group, etc. + +As a first example, lets go back to the regular expression we used at @sec-regexp-replace: `\\[(INFO|ERROR|WARN)\\]: `. This regular expression contains one capturing group, which captures the type label of the log message: `(INFO|ERROR|WARN)`. + +If we use the special pattern `$1` to reference this capturing group inside of `regexp_replace()`, what is going to happen is: `regexp_replace()` will replace all occurrences of the input regular expression found on the input string, by the substring matched by the first capturing group. See in the example below: + +```{python} +logs\ + .withColumn( + 'using_groups', + regexp_replace('message', type_regex, 'Type Label -> $1 | ') + )\ + .select('message', 'using_groups')\ + .show(truncate = 30) +``` + + +In essence, you can reuse the substrings matched by the capturing groups, by using the special patterns `$1`, `$2`, `$3`, etc. This means that you can reuse the substrings captured by multiple groups at the same time inside `regexp_replace()` and `regexp_extract()`. For example, if we use the replacement string `"$1, $2, $3"` inside `regexp_replace()`, we would get the substrings matched by the first, second and third capturing groups, separated by commas. + +However, is also good to emphasize a small limitation that this system has. When you need to reuse the substrings captured by multiple groups together, is important that you make sure to add some amount of space (or some delimiter character) between each group reference, like `"$1 $2 $3"`. + +Because if you write these group references one close to each other (like in `"$1$2$3"`), it is not going to work. In other words, Spark will not understand that you are trying to access a capturing group. It will interpret the text `"$1$2$3"` as the literal value `"$1$2$3"`, and not as a special pattern that references multiple capturing groups in the regular expression. + + +### Extracting substrings with `regexp_extract()` {#sec-regexp-extract} + +Another very useful regular expression activity is to extract a substring from a given string that match a specified regular expression pattern. The `regexp_extract()` function is the main method used to do this process. + +This function takes three arguments, which are: + +- The input column name or expression that contains the string to be searched; +- The regular expression pattern to search for within the input string; +- The index of the capturing group within the regular expression pattern that corresponds to the substring to extract; + +You may (or may not) use capturing groups inside of `regexp_replace()`. However, on the other hand, the `regexp_extract()` function **is based on** the capturing groups functionality. As a consequence, when you use `regexp_extract()`, you must give a regular expression that **contains some capturing group**. Because otherwise, the `regexp_extract()` function becomes useless. + +In other words, the `regexp_extract()` function extracts substrings that are matched by the capturing groups present in your input regular expression. If you want, for example, to use `regexp_extract()` to extract the substring matched by a entire regular expression, then, you just need to surround this entire regular expression by a pair of parentheses. This way you transform this entire regular expression in a capturing group, and, therefore, you can extract the substring matched by this group. + +As an example, lets go back again to the regular expression we used in the `logs` DataFrame: `\\[(INFO|ERROR|WARN)\\]: `. We can extract the type of log message label, by using the index 1 to reference the first (and only) capturing group in this regular expression. + +```{python} +from pyspark.sql.functions import regexp_extract + +logs\ + .withColumn( + 'message_type', + regexp_extract('message', type_regex, 1) + )\ + .select('message', 'message_type')\ + .show(truncate = 30) +``` + +As another example, lets suppose we wanted to extract not only the type of the log message, but also, the timestamp and the content of the message, and store these different elements in separate columns. + +To do that, we could build a more complete regular expression. An expression capable of matching the entire log message, and, at the same time, capture each of these different elements inside a different capturing group. The code below is an example that produces such regular expression, and applies it over the `logs` DataFrame. + +```{python} +type_regex = r'\[(INFO|ERROR|WARN)\]: ' + +date_regex = r'\d{4}-\d{2}-\d{2}' +time_regex = r' \d{2}:\d{2}:\d{2}([.]\d+)?' +timestamp_regex = date_regex + time_regex +timestamp_regex = r'(' + timestamp_regex + r')' + +regex = type_regex + timestamp_regex + r'(.+)$' + +logs\ + .withColumn( + 'message_type', + regexp_extract('message', regex, 1) + )\ + .withColumn( + 'timestamp', + regexp_extract('message', regex, 2) + )\ + .withColumn( + 'message_content', + regexp_extract('message', regex, 4) + )\ + .select('message_type', 'timestamp', 'message_content')\ + .show(5, truncate = 30) +``` + + +### Identifying values that match a particular regular expression with `rlike()` + +The `rlike()` column method is useful for checking if a string value in a column matches a specific regular expression. We briefly introduced this method at @sec-filter-regex-pattern. This method has only one input, which is the regular expression you want to apply over the column values. + +As an example, lets suppose you wanted to identify timestamp values inside your strings. You could use a regular expression pattern to find which text values had these kinds of values inside them. + +A possible regular expression candidate would be `"[0-9]{2}:[0-9]{2}:[0-9]{2}([.][0-9]+)?"`. This regex matches timestamp values in the format "hh:mm:ss.sss". This pattern consists of the following building blocks, or, elements: + +- `[0-9]{2}`: Matches any two digits from 0 to 9. +- `:`: Matches a colon character. +- `([.][0-9]+)?`: Matches an optional decimal point followed by one or more digits. + +If we apply this pattern over all log messages stored in the `logs` DataFrame, we would find that all logs messages matches this particular regular expression. Because all log messages contains a timestamp value at the start of the message: + +```{python} +from pyspark.sql.functions import col + +pattern = "[0-9]{2}:[0-9]{2}:[0-9]{2}([.][0-9]+)?" +logs\ + .withColumn( + 'does_it_match?', + col("message").rlike(pattern) + )\ + .select('message', 'does_it_match?')\ + .show(5, truncate = n_truncate) +``` diff --git a/Chapters/10-datetime.qmd b/Chapters/10-datetime.qmd index f9a3fee3..dc914eac 100644 --- a/Chapters/10-datetime.qmd +++ b/Chapters/10-datetime.qmd @@ -1,630 +1,630 @@ -# Tools for dates and datetimes manipulation {#sec-datetime-tools} - -Units of measurement that represent time are very commom types of data in our modern world. Nowadays, dates and datetimes (or timestamps) are the most commom units used to represent a specific point in time. In this chapter, you will learn how to import, manipulate and use this kind of data with `pyspark`. - -In Spark, dates and datetimes are represented by the `DateType` and `TimestampType` data types, respectively, which are available in the `pyspark.sql.types` module. Spark also offers two other data types to represent "intervals of time", which are `YearMonthIntervalType` and `DayTimeIntervalType`. However, you usually don't use these types directly to create new objects. In other words, they are intermediate types. They are a passage, or a path you use to get to another data type. - -```{python} -#| include: false -# To execute the next chunks with success, we need to start a Spark Session -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - -## Creating date values {#sec-create-dates} - -Dates are normally interpreted in `pyspark` using the `DateType` data type. There are three commom ways to create date objects, which are: - -1. from strings (like `"3 of June of 2023"`, or maybe, `"2023-02-05"`). -2. by extracting the date component from datetime values (i.e. values of type `TimestampType`). -3. by combining day, month and year components to build a date object. - - -### From strings - -When you have a `StringType` column in your DataFrame that contains dates that are currently being stored inside strings, and you want to convert this column into a `DateType` column, you basically have two choices: 1) use the automatic column conversion with `cast()` or `astype()`; 2) use the `to_date()` Spark SQL function to convert the strings using a specific date format. - -When you use the `cast()` (or `astype()`) column method that we introduced at @sec-cast-column-type, Spark will perform a quick and automatic conversion to `DateType` by casting the strings you have into the `DateType`. But when you use this method, Spark will always assume that the dates you have are in the ISO-8601 format, which is the international standard for dates. This format is presented at @fig-iso-8601-dates: - -![The ISO-8601 format for dates](./../Figures/format_date.png){#fig-iso-8601-dates width=80%} - -Basically, the ISO-8601 standard specifies that dates are represented in the format "YYYY-MM-DD" (or "Year-Month-Date"), like `2023-09-19`, `1926-05-21`, or `2005-11-01`. This is also the format that dates are usually formatted in United States of America. So, if the dates you have (which are currently stored inside strings) are formatted like the ISO-8601 standard, then, you can safely and easily convert them into the `DateType` by using the `cast()` or `astype()` column methods. - -However, if these dates are formatted in a different way, then, the `cast()` method will very likely produce `null` values as a result, because it cannot parse dates that are outside the ISO-8601 format. If that is your case, then you should use the `to_date()` function, which allows you to specify the exact format of your dates. - -There are many examples of date formats which are outside of the ISO-8601 format. Like: - -- In Brazil and Spain, dates are formatted as "Day/Month/Year". Example: "23/04/2022" for April 23, 2022. -- In Japan, dates are formatted as "year month day (weekday)", with the Japanese characters meaning "year", "month" and "day" inserted after the numerals. Example: 2008å¹´12月31æ—¥ (æ°´) for "Wednesday 31 December 2008". -- Many websites display dates using the full name of the month, like "November 18, 2023". This is an important fact considering that web-scrapping is a real and important area of data analysis these days. - -I will describe at @sec-datetime-patterns how you can use the `to_date()` function to convert dates that are outside of the ISO format to `DateType` values. But for now, for simplicity sake, I will consider only strings that contains date in the ISO format. - -As a first example, lets consider the DataFrame `df` below: - -```{python} -from pyspark.sql import Row - -data = [ - Row(date_registered = "2021-01-01"), - Row(date_registered = "2021-01-01"), - Row(date_registered = "2021-01-02"), - Row(date_registered = "2021-01-03") -] - -df = spark.createDataFrame(data) -``` - -If we look at the DataFrame schema of `df`, we can see that the `date_registered` column is currently being interpreted as a column of type `StringType`: - -```{python} -df.printSchema() -``` - -Since the dates from the `date_registered` column are formatted like the ISO-8601 standard, we can safely use `cast()` to get a column of type `DateType`. And if we look again at the DataFrame schema after the transformation, we can certify that the `date_registered` column is in fact now, a column of type `DateType`. - -```{python} -from pyspark.sql.functions import col - -df = df.withColumn( - 'date_registered', - col('date_registered').cast('date') -) - -df.show() -``` - -```{python} -df.printSchema() -``` - - -### From datetime values - -A datetime value is a value that contains both a date component and a time component. But you can obviously extract just the date component from a datetime value. Let's use the following DataFrame as example: - -```{python} -from pyspark.sql import Row -from datetime import datetime - -data = [ - {'as_datetime': datetime(2021, 6, 12, 10, 0, 0)}, - {'as_datetime': datetime(2021, 6, 12, 18, 0, 0)}, - {'as_datetime': datetime(2021, 6, 13, 7, 0, 0)}, - {'as_datetime': datetime(2021, 6, 14, 19, 30, 0)} -] - -df = spark.createDataFrame(data) -df.printSchema() -``` - -You can extract the date component from the `as_datetime` column by directly casting the column into the `DateType` type. Like you would normally do with a string column. - -```{python} -df.withColumn('date_component', col('as_datetime').cast('date'))\ - .show() -``` - - -### From individual components - -If you have 3 columns in your DataFrame, one for each component of a date value (day, month, year), you can group these components together to form date values. In `pyspark` you do this by using the `make_date()` function. - -To use this function, you just list the columns of each component in the following order: year, month and day. Like in this example: - -```{python} -from pyspark.sql.functions import make_date -df3 = spark.createDataFrame([ - Row(day=14,month=2,year=2021), - Row(day=30,month=4,year=2021), - Row(day=2,month=5,year=2021), - Row(day=6,month=5,year=2021) -]) - -df3\ - .withColumn( - 'as_date', - make_date( - col('year'), - col('month'), - col('day') - ) - )\ - .show() -``` - - -## Creating datetime values - -Datetime values are values that contains both a date and a time components. These datetime values might also come with a time zone component, although this component is not mandatory. - -Different programming languages and frameworks might have different names for these kind of values. Because of that, you might know datetime values by a different name. For example, "timestamps" is also a very popular name for this kind of values. Anyway, in `pyspark`, datetime (or timestamp) values are interpreted by the `TimestampType` data type. - -There are three commom ways to create datetime objects, which are: - -1. from strings (like `"2023-02-05 12:30:00"`). -2. from integer values (i.e. `IntegerType` and `LongType`). -3. by combining the individual components of a datetime value (day, month, year, hour, minute, second, etc.) to form a complete datetime value. - - -### From strings - -Again, if your datetime values are being currently stored inside strings, and, you want to convert them to datetime values, you can use the automatic conversion of Spark with the `cast()` column method. However, as we stated at @sec-create-dates, when you use this path, Spark will always assume that your datetime values follow the ISO-8601 format. - -The ISO-8601 standard states that datetime values should always follow the format "YYYY-MM-DD HH:MM:SS Z" (or "Year-Month-Day Hour:Minute:Second TimeZone"). You can see at @fig-iso-8601-datetime, that are components that are mandatory (meaning that they always appear in a datetime value), and components that are optional (meaning that they might appear or might not in a datetime value). - -The time zone component is always optional, and because of that, they usually are not present in the datetime values you have. There are some variations and extra characters that might appear at some points, for example, the character 'T' might appear to clearly separate the date from the time component, and the character 'Z' to separate the time zone from the time component. Also, the time component might have a microseconds section to identify a more precise point in time. - -But despite all these variations, datetime values that are ISO-8601 compatible are basically always following this same pattern (or this same order of components) of "Year-Month-Day Hour:Minute:Second TimeZone". Examples of values that follows this standard are "2014-10-18T16:30:00Z", "2019-05-09 08:20:05.324" and "2020-01-01 12:30:00 -03". - -![The ISO-8601 format for datetime/timestamp values](./../Figures/format_datetime.png){#fig-iso-8601-datetime width=100%} - -This means that if your datetime values are not in this format, if they do not follow the ISO-8601 standard, then, you should not use the `cast()` method. If that is your case, you should use datetime patterns with the `to_timestamp()` function. We describe these assets in more depth at @sec-datetime-patterns. - -For now, let's focus on examples that use the ISO-8601 format. As an example, lets use the `df2` DataFrame below: - -```{python} -data = [ - Row(datetime_as_string = "2021-02-23T04:41:57Z"), - Row(datetime_as_string = "2021-05-18T12:30:05Z"), - Row(datetime_as_string = "2021-11-13T16:30:00Z"), - Row(datetime_as_string = "2021-08-09T00:30:16Z") -] - -df2 = spark.createDataFrame(data) -df2.printSchema() -``` - -You can see above, that the `datetime_as_string` column is currently being interpreted as a column of strings. -But since the values are in ISO-8601 format, I can use the cast method to directly convert them into timestamp values. - -```{python} -df2 = df2\ - .withColumn( - 'datetime_values', - col('datetime_as_string').cast('timestamp') - ) - -df2.printSchema() -``` - -```{python} -df2.show() -``` - -### From integers - -You can also convert integers directly to datetime values by using the `cast()` method. In this situation, the integers are interpreted as being the number of seconds since the UNIX time epoch, which is mid-night of 1 January of 1970 (`"1970-01-01 00:00:00"`). In other words, the integer `60` will be converted the point in time that is 60 seconds after `"1970-01-01 00:00:00"`, which would be `"1970-01-01 00:01:00"`. - -In the example below, the number 1,000,421,325 is converted into 19:48:45 of 13 September of 2001. Because this exact point in time is 1.000421 billion of seconds ahead of the UNIX epoch. - -```{python} -df3 = spark.createDataFrame([ - Row(datetime_as_integer = 1000421325), - Row(datetime_as_integer = 1000423628), - Row(datetime_as_integer = 500), - Row(datetime_as_integer = 1000493412) -]) - -df3 = df3\ - .withColumn( - 'datetime_values', - col('datetime_as_integer').cast('timestamp') - ) - -df3.show() -``` - - - -However, you probably notice in the example above, that something is odd. Because the number 500 was converted into `"1969-12-31 21:08:20"`, which is in theory, behind the UNIX epoch, which is 1 January of 1970. Why did that happen? The answer is that **your time zone is always taken into account** during a conversion from integers to datetime values! - -In the example above, Spark is running on an operating system that is using the America/Sao_Paulo time zone (which is 3 hours late from international time zone - UTC-3) as the "default time zone" of the system. As a result, integers will be interpreted as being the number of seconds since the UNIX time epoch **minus 3 hours**, which is `"1969-12-31 21:00:00"`. So, in this context, the integer `60` would be converted into `"1969-12-31 21:01:00"` (instead of the usual `"1970-01-01 00:01:00"` that you would expect). - -That is why the number 500 was converted into `"1969-12-31 21:08:20"`. Because it is 500 seconds ahead of `"1969-12-31 21:00:00"`, which is 3 hours behind the UNIX time epoch. - -But what if you wanted to convert your integers into a UTC-0 time zone? Well, you could just set the time zone of your Spark Session to the international time zone before you do the conversion, with the command below: - -```python -spark.conf.set("spark.sql.session.timeZone", "UTC") -``` - -But you could also do the conversion anyway and adjust the values later. That is, you just perform the conversion with the `cast()` method, even if the result would be in your current time zone. After that, you add the amount of time necessary to transpose your datetime values to the international time zone (UTC-0). - -So in the above example, since I was using the Brasília time zone (UTC-3) during the above conversion, I just need to add 3 hours to all datetime values to get their equivalents values in international time zone. You can do that by using interval expressions, which will be discussed in more depth at @sec-interval-express. - -```{python} -from pyspark.sql.functions import expr -df3 = df3\ - .withColumn( - 'datetime_values_utc0', - expr("datetime_values + INTERVAL 3 HOURS") - ) - -df3.show() -``` - - -### From individual components - -If you have 6 columns in your DataFrame, one for each component of a datetime value (day, month, year, hour, minute, second), you can group these components together to compose datetime values. We do this in `pyspark` by using the `make_timestamp()` function. - -To use this function, you just list the columns of each component in the following order: year, month, day, hours, minutes, seconds. Like in this example: - -```{python} -from pyspark.sql.functions import make_timestamp -df3 = spark.createDataFrame([ - Row(day=14,month=2,year=2021,hour=12,mins=45,secs=0), - Row(day=30,month=4,year=2021,hour=8,mins=10,secs=0), - Row(day=2,month=5,year=2021,hour=5,mins=9,secs=12), - Row(day=6,month=5,year=2021,hour=0,mins=34,secs=4) -]) - -df3\ - .withColumn( - 'as_datetime', - make_timestamp( - col('year'), - col('month'), - col('day'), - col('hour'), - col('mins'), - col('secs') - ) - )\ - .show() -``` - - -## Introducing datetime patterns {#sec-datetime-patterns} - -Every time you have strings that contains dates and datetime values that are outside of the ISO-8601 format, you usually have to use datetime patterns to convert these strings to date or datetime values. In other words, in this section I will describe how you can use datetime patterns to convert string values (that are outside of the ISO-8601 format) into dates or datetimes values. - -Despite the existence of an international standard (like ISO-8601), the used date and datetime formats varies accross different countries around the world. There are tons of examples of these different formats. For example, in Brazil, dates are usually formatted like "Day/Month/Year". Not only the order of the date components (day, month and year) are different, but also, the separator character ("/" instead of "-"). - -In essence, a datetime pattern is a string pattern that describes a specific date or datetime format. This means that we can use a datetime pattern to describe any date or datetime format. A datetime pattern is a string value that is constructed by grouping letters together. Each individual letter represents an individual component of a date or a datetime value. - -You can see at @tbl-date-components a list of the most commom used letters in datetime patterns. If you want, you can also see the full list of possible letters in datetime patterns by visiting the Spark Datetime Patterns page[^datetime_patterns]. - - -| Letter | Meaning | Example of a valid value | -| ------ | ------------------------ | ---------------------------------------------- | -| G | era | AD; Anno Domini | -| y | year | 2020; 20 | -| D | day-of-year | 189 | -| M/L | month-of-year | 7; 07; Jul; July | -| d | day-of-month | 28 | -| Q/q | quarter-of-year | 3; 03; Q3; 3rd quarter | -| E | day-of-week | Tue; Tuesday | -| F | aligned day of week | 3 | -| a | am-pm-of-day | PM | -| h | clock-hour-of-am-pm | 12 | -| K | hour-of-am-pm | 0 | -| k | clock-hour-of-day | 0 | -| H | hour-of-day | 0 | -| m | minute-of-hour | 30 | -| s | second-of-minute | 55 | -| S | fraction-of-second | 978 | -| V | time-zone ID | America/Los_Angeles; Z; -08:30 | -| z | time-zone name | Pacific Standard Time; PST | -| O | localized zone-offset | GMT+8; GMT+08:00; UTC-08:00; | -| X | zone-offset ‘Z’ for zero | Z; -08; -0830; -08:30; -083015; -08:30:15; | -| x | zone-offset | +0000; -08; -0830; -08:30; -083015; -08:30:15; | -| Z | zone-offset | +0000; -0800; -08:00; | - -: List of letters to represent date and datetime components {#tbl-date-components} - -[^datetime_patterns]: - - -### Using datetime patterns to get date values - -Following @tbl-date-components, if we had a date in the format "Day, Month of Year", like "12, November of 1997", we would use the letters d, M and y for each of the three components that are present in this format. In fact, let's create a DataFrame with this exact value, and let's demonstrate how could you convert it to a `DateType` value. - -```{python} -data = [ {"date": "12, November of 1997"} ] -weird_date = spark.createDataFrame(data) -weird_date.show() -``` - -To convert it from the `StringType` to `DateType` we have to use the `to_date()` Spark SQL function. Because with this function, we can provide the datetime pattern that describes the exact format that these dates use. But before we use `to_date()`, we need to build a datetime pattern to use. - -The date example above ("12, November of 1997") starts with a two-digit day number. That is why we begin our datetime pattern with two d's, to represent this section of the date. After that we have a comma and a space followed by the month name. However, both month name and the year number at the end of the date are in their full formats, instead of their abbreviated formats. - -Because of that, we need to tell Spark to use the full format instead of the abbreviated format on both of these two components. To do that, we use four M's and four y's, instead of just two. At last, we have a literal "of" between the month name and the year name, and to describe this specific section of the date, we insert `'of'` between the M's and y's. - -In essence, we have the datetime pattern `"dd, MMMM 'of' yyyy"`. Now, we can just use `to_date()` with this datetime pattern to convert the string value to a date value. - -```{python} -from pyspark.sql.functions import to_date -pattern = "dd, MMMM 'of' yyyy" -weird_date = weird_date\ - .withColumn("date", to_date(col("date"), pattern)) - -weird_date.show() -``` - -```{python} -weird_date.printSchema() -``` - - -So, if you have a constant (or fixed) text that is always present in all of your date values, like the "of" in the above example, you must encapsulate this text between quotation marks in your datetime patterns. Also, depending if your components are in a abbreviated format (like "02" for year 2002, or "Jan" for the January month), or in a full format (like the year "1997" or the month "October"), you might want to repeat the letters one or two times (to use abbreviated formats), or you might want to repeat it four times (to use the full formats). In other words, if you use less than 4 pattern letters, then, Spark will use the short text form, typically an abbreviation form of the component you are reffering to @sparkdoc. - - -As another example of unusual date formats, lets use the `user_events` DataFrame. You can easily get the data of this DataFrame by dowloading the JSON file from the official repository of this book[^book_repo]. After you downloaded the JSON file that contains the data, you can import it to your Spark session with the commands below: - -[^book_repo]: - -```{python} -#| cache: true -from pyspark.sql.types import StructType, StructField -from pyspark.sql.types import DoubleType, StringType -from pyspark.sql.types import LongType, TimestampType, DateType -path = "../Data/user-events.json" -schema = StructType([ - StructField('dateOfEvent', StringType(), False), - StructField('timeOfEvent', StringType(), False), - StructField('userId', StringType(), False), - StructField('nameOfEvent', StringType(), False) -]) - -user_events = spark.read\ - .json(path, schema = schema) - -user_events.show() -``` - -The `dateOfEvent` column of this DataFrame contains date values in the Brazilian format "Day/Month/Year". To describe this date format, we can use the datetime pattern `"dd/MM/yyyy"`. - -```{python} -date_pattern = "dd/MM/yyyy" -user_events = user_events\ - .withColumn( - 'dateOfEvent', - to_date(col('dateOfEvent'), date_pattern) - ) - -user_events.show() -``` - - -### Using datetime patterns to get datetime/timestamp values - -Furthermore, the `user_events` table also contains the `timeOfEvent` column, which is a column of datetime (or timestamp) values, also in the usual Brazilian format "Day/Month/Year Hour:Minutes:Seconds". Following @tbl-date-components, we can describe this datetime format with the pattern `"dd/MM/yyyy HH:mm:ss"`. - -When you have a column of string values that you want to convert into the `TimestampType` type, but your values are not in ISO-8601 format, you should use the `to_timestamp()` function (which also comes from the `pyspark.sql.functions` module) together with a datetime pattern to describe the actual format of your values. - -You use the `to_timestamp()` function in the same way you would use the `to_date()` function, you reference the name of the column you want to convert into a column of timestamp values, and you also provide a datetime pattern to be used in the conversion. The difference between the two functions is solely on the type of columns they produce. The `to_timestamp()` function always produce a column of type `TimestampType` as a result, while the `to_date()` function produces a column of type `DateType`. - - -```{python} -from pyspark.sql.functions import to_timestamp -datetime_pattern = "dd/MM/yyyy HH:mm:ss" -user_events = user_events\ - .withColumn( - 'timeOfEvent', - to_timestamp(col('timeOfEvent'), datetime_pattern) - ) - -user_events.show() -``` - -## Extracting date or datetime components - -One very commom operation when dealing with dates and datetime values is extracting components from these values. For example, you might want to create a new column that contains the day component from all of your dates. Or maybe, the month... anyway. - -Thakfully, `pyspark` made it pretty easy to extract these kinds of components. You just use the corresponding function to each component! All of these functions come from the `pyspark.sql.functions` module. As a quick list, the functions below are used to extract components from both dates and datetime values: - -- `year()`: extract the year of a given date or datetime as integer. -- `month()`: extract the month of a given date or datetime as integer. -- `dayofmonth()`: extract the day of the month of a given date or datetime as integer. -- `dayofweek()`: extract the day of the week of a given date or datetime as integer. The integer returned will be inside the range 1 (for a Sunday) through to 7 (for a Saturday). -- `dayofyear()`: extract the day of the year of a given date or datetime as integer. -- `quarter()`: extract the quarter of a given date or datetime as integer. - - -On the other hand, the list of functions below only applies to datetime values, because they extract time components (which are not present on date values). These functions also comes to the `pyspark.sql.functions` module: - -- `hour()`: extract the hours of a given datetime as integer. -- `minute()`: extract the minutes of a given datetime as integer. -- `second()`: extract the seconds of a given datetime as integer. - -In essence, you just apply these functions at the column that contains your date and datetime values, and you get as output the component you want. As an example, lets go back to the `user_events` DataFrame and extract the day, month and year components of each date, into separate columns: - -```{python} -from pyspark.sql.functions import ( - dayofmonth, - month, - year -) - -user_events\ - .withColumn('dayOfEvent', dayofmonth(col('dateOfEvent')))\ - .withColumn('monthOfEvent', month(col('dateOfEvent')))\ - .withColumn('yearOfEvent', year(col('dateOfEvent')))\ - .select( - 'dateOfEvent', 'dayOfEvent', - 'monthOfEvent', 'yearOfEvent' - )\ - .show() -``` - - -## Adding time to date and datetime values with interval expressions {#sec-interval-express} - -Another very commom operation is to add some amount of time to a date or datetime values. For example, you might want to advance your dates by 3 days. Or, delay your datetime values by 3 hours. In `pyspark`, you can perform this kind by either using functions or interval expressions. - -When we talk about functions available through the `pyspark.sql.functions` module, we have `date_add()` and `date_sub()`, which you can use to add or subtract days to a date, and `add_months()`, which you can use to add months to a date. Yes, the naming pattern of these functions is a little bit weird, but let's ignore this fact. - -```{python} -from pyspark.sql.functions import ( - date_add, - date_sub, - add_months -) - -user_events\ - .withColumn( - 'timePlus10Days', - date_add(col('timeOfEvent'), 10) - )\ - .withColumn( - 'timeMinus5Days', - date_sub(col('timeOfEvent'), 5) - )\ - .withColumn( - 'timePlus8Months', - add_months(col('timeOfEvent'), 8) - )\ - .select( - 'timeOfEvent', 'timePlus10Days', - 'timeMinus5Days', 'timePlus8Months' - )\ - .show() -``` - -Now, you can use interval expressions to add whatever time unit you want (years, months, days, hours, minutes or seconds) to either a date or datetime value. However, interval expressions are only available at the Spark SQL level. As a consequence, to use an interval expression, you must use `expr()` or `spark.sql()` (that we introduced at @sec-dataframe-sql-chapter) to get access to Spark SQL. An interval expression follows this pattern: - -```sql -INTERVAL 3 HOURS -``` - -An interval expression is an expression that begins with the `INTERVAL` keyword, and then, it is followed by a number that specifies an amount. You define how much exactly this amout represents by using another keyword that specifies the unit of time to be used. So the keyword `HOUR` specifies that you want to use the "hour" unit of time. - -Having this in mind, the expression `INTERVAL 3 HOURS` defines a 3 hours interval expression. In contrast, the expression `INTERVAL 3 SECONDS` represents 3 seconds, and the expression `INTERVAL 90 MINUTES` represents 90 minutes, and so on. - -By having an interval expression, you can just add or subtract this interval to your column to change the timestamp you have. - -```{python} -from pyspark.sql.functions import expr -user_events\ - .withColumn( - 'timePlus3Hours', - expr('timeOfEvent + INTERVAL 3 HOURS') - )\ - .withColumn( - 'timePlus2Years', - expr('timeOfEvent + INTERVAL 2 YEARS') - )\ - .select('timeOfEvent', 'timePlus3Hours', 'timePlus2Years')\ - .show() -``` - - -## Calculating differences between dates and datetime values - -Another very commom operation is to calculate how much time is between two dates or two datetimes. In other words, you might -want to calculate how many days the date `"2023-05-12"` is far ahead of `"2023-05-05"`, or how many hours the timestamp `"2023-07-10 13:13:00"` is ahead of `"2023-07-10 05:18:00"`. - -When you have two columns of type `DateType` (or `TimestampType`), you subtract one by the other directly to get the difference between the values of these columns. As an example, lets use the `df4` below: - -```{python} -from random import randint, seed -from datetime import ( - date, - datetime, - timedelta -) - -seed(10) -dates = [ - date(2023,4,1) + timedelta(days = randint(1,39)) - for i in range(4) -] - -datetimes = [ - datetime(2023,4,1,8,14,54) + timedelta(hours = randint(1,39)) - for i in range(4) -] - - -df4 = spark.createDataFrame([ - Row( - date1 = date(2023,4,1), - date2 = dates[i], - datetime1 = datetime(2023,4,1,8,14,54), - datetime2 = datetimes[i] - ) - for i in range(4) -]) - -df4.show() -``` - -If we subtract columns `date2` by `date1` and `datetime2` by `datetime1`, we get two new columns of type `DayTimeIntervalType`. -These new columns represent the interval of time between the values of these columns. - -```{python} -df4\ - .select('date1', 'date2')\ - .withColumn('datediff', col('date2') - col('date1'))\ - .show() -``` - - -```{python} -df4\ - .select('datetime1', 'datetime2')\ - .withColumn( - 'datetimediff', - col('datetime2') - col('datetime1') - )\ - .show() -``` - - -But another very commom way to calculate this difference is to convert the datetime values to seconds. Then, you subtract the calculated seconds, so you get as output, the difference in seconds between the two datetime values. - -To use this method, you first use the `unix_timestamp()` function to convert the timestamps into seconds as integer values, then, you subtract these new integer values that were created. - -```{python} -from pyspark.sql.functions import unix_timestamp -df4 = df4\ - .select('datetime1', 'datetime2')\ - .withColumn('datetime1', unix_timestamp(col('datetime1')))\ - .withColumn('datetime2', unix_timestamp(col('datetime2')))\ - .withColumn( - 'diffinseconds', - col('datetime2') - col('datetime1') - ) - -df4.show() -``` - -Now that we have the `diffinseconds` column, which represents the difference **in seconds** between `datetime1` and `datetime2` columns, we can divide this `diffinseconds` column by 60 to get the difference in minutes, or divide by 3600 to get the difference in hours, etc. - -```{python} -df4\ - .withColumn('diffinminutes', col('diffinseconds') / 60)\ - .withColumn('diffinhours', col('diffinseconds') / 3600)\ - .show() -``` - -## Getting the now and today values - -If for some reason, you need to know which timestamp is now, or which date is today, you can use the `current_timestamp()` and `current_date()` functions from `pyspark.sql.functions` module. When you execute these functions, they output the current timestamp and date in your system. - - -```{python} -from pyspark.sql.types import StructType,StructField, StringType -from pyspark.sql.functions import ( - current_date, - current_timestamp, - lit -) - -data = [Row(today="", now="")] -schema = StructType([ - StructField('today', StringType(), True), - StructField('now', StringType(), True) -]) - -spark.createDataFrame(data, schema = schema)\ - .withColumn('today', lit(current_date()))\ - .withColumn('now', lit(current_timestamp()))\ - .show() -``` - +# Tools for dates and datetimes manipulation {#sec-datetime-tools} + +Units of measurement that represent time are very commom types of data in our modern world. Nowadays, dates and datetimes (or timestamps) are the most commom units used to represent a specific point in time. In this chapter, you will learn how to import, manipulate and use this kind of data with `pyspark`. + +In Spark, dates and datetimes are represented by the `DateType` and `TimestampType` data types, respectively, which are available in the `pyspark.sql.types` module. Spark also offers two other data types to represent "intervals of time", which are `YearMonthIntervalType` and `DayTimeIntervalType`. However, you usually don't use these types directly to create new objects. In other words, they are intermediate types. They are a passage, or a path you use to get to another data type. + +```{python} +#| include: false +# To execute the next chunks with success, we need to start a Spark Session +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +``` + +## Creating date values {#sec-create-dates} + +Dates are normally interpreted in `pyspark` using the `DateType` data type. There are three commom ways to create date objects, which are: + +1. from strings (like `"3 of June of 2023"`, or maybe, `"2023-02-05"`). +2. by extracting the date component from datetime values (i.e. values of type `TimestampType`). +3. by combining day, month and year components to build a date object. + + +### From strings + +When you have a `StringType` column in your DataFrame that contains dates that are currently being stored inside strings, and you want to convert this column into a `DateType` column, you basically have two choices: 1) use the automatic column conversion with `cast()` or `astype()`; 2) use the `to_date()` Spark SQL function to convert the strings using a specific date format. + +When you use the `cast()` (or `astype()`) column method that we introduced at @sec-cast-column-type, Spark will perform a quick and automatic conversion to `DateType` by casting the strings you have into the `DateType`. But when you use this method, Spark will always assume that the dates you have are in the ISO-8601 format, which is the international standard for dates. This format is presented at @fig-iso-8601-dates: + +![The ISO-8601 format for dates](./../Figures/format_date.png){#fig-iso-8601-dates width=80%} + +Basically, the ISO-8601 standard specifies that dates are represented in the format "YYYY-MM-DD" (or "Year-Month-Date"), like `2023-09-19`, `1926-05-21`, or `2005-11-01`. This is also the format that dates are usually formatted in United States of America. So, if the dates you have (which are currently stored inside strings) are formatted like the ISO-8601 standard, then, you can safely and easily convert them into the `DateType` by using the `cast()` or `astype()` column methods. + +However, if these dates are formatted in a different way, then, the `cast()` method will very likely produce `null` values as a result, because it cannot parse dates that are outside the ISO-8601 format. If that is your case, then you should use the `to_date()` function, which allows you to specify the exact format of your dates. + +There are many examples of date formats which are outside of the ISO-8601 format. Like: + +- In Brazil and Spain, dates are formatted as "Day/Month/Year". Example: "23/04/2022" for April 23, 2022. +- In Japan, dates are formatted as "year month day (weekday)", with the Japanese characters meaning "year", "month" and "day" inserted after the numerals. Example: 2008å¹´12月31æ—¥ (æ°´) for "Wednesday 31 December 2008". +- Many websites display dates using the full name of the month, like "November 18, 2023". This is an important fact considering that web-scrapping is a real and important area of data analysis these days. + +I will describe at @sec-datetime-patterns how you can use the `to_date()` function to convert dates that are outside of the ISO format to `DateType` values. But for now, for simplicity sake, I will consider only strings that contains date in the ISO format. + +As a first example, lets consider the DataFrame `df` below: + +```{python} +from pyspark.sql import Row + +data = [ + Row(date_registered = "2021-01-01"), + Row(date_registered = "2021-01-01"), + Row(date_registered = "2021-01-02"), + Row(date_registered = "2021-01-03") +] + +df = spark.createDataFrame(data) +``` + +If we look at the DataFrame schema of `df`, we can see that the `date_registered` column is currently being interpreted as a column of type `StringType`: + +```{python} +df.printSchema() +``` + +Since the dates from the `date_registered` column are formatted like the ISO-8601 standard, we can safely use `cast()` to get a column of type `DateType`. And if we look again at the DataFrame schema after the transformation, we can certify that the `date_registered` column is in fact now, a column of type `DateType`. + +```{python} +from pyspark.sql.functions import col + +df = df.withColumn( + 'date_registered', + col('date_registered').cast('date') +) + +df.show() +``` + +```{python} +df.printSchema() +``` + + +### From datetime values + +A datetime value is a value that contains both a date component and a time component. But you can obviously extract just the date component from a datetime value. Let's use the following DataFrame as example: + +```{python} +from pyspark.sql import Row +from datetime import datetime + +data = [ + {'as_datetime': datetime(2021, 6, 12, 10, 0, 0)}, + {'as_datetime': datetime(2021, 6, 12, 18, 0, 0)}, + {'as_datetime': datetime(2021, 6, 13, 7, 0, 0)}, + {'as_datetime': datetime(2021, 6, 14, 19, 30, 0)} +] + +df = spark.createDataFrame(data) +df.printSchema() +``` + +You can extract the date component from the `as_datetime` column by directly casting the column into the `DateType` type. Like you would normally do with a string column. + +```{python} +df.withColumn('date_component', col('as_datetime').cast('date'))\ + .show() +``` + + +### From individual components + +If you have 3 columns in your DataFrame, one for each component of a date value (day, month, year), you can group these components together to form date values. In `pyspark` you do this by using the `make_date()` function. + +To use this function, you just list the columns of each component in the following order: year, month and day. Like in this example: + +```{python} +from pyspark.sql.functions import make_date +df3 = spark.createDataFrame([ + Row(day=14,month=2,year=2021), + Row(day=30,month=4,year=2021), + Row(day=2,month=5,year=2021), + Row(day=6,month=5,year=2021) +]) + +df3\ + .withColumn( + 'as_date', + make_date( + col('year'), + col('month'), + col('day') + ) + )\ + .show() +``` + + +## Creating datetime values + +Datetime values are values that contains both a date and a time components. These datetime values might also come with a time zone component, although this component is not mandatory. + +Different programming languages and frameworks might have different names for these kind of values. Because of that, you might know datetime values by a different name. For example, "timestamps" is also a very popular name for this kind of values. Anyway, in `pyspark`, datetime (or timestamp) values are interpreted by the `TimestampType` data type. + +There are three commom ways to create datetime objects, which are: + +1. from strings (like `"2023-02-05 12:30:00"`). +2. from integer values (i.e. `IntegerType` and `LongType`). +3. by combining the individual components of a datetime value (day, month, year, hour, minute, second, etc.) to form a complete datetime value. + + +### From strings + +Again, if your datetime values are being currently stored inside strings, and, you want to convert them to datetime values, you can use the automatic conversion of Spark with the `cast()` column method. However, as we stated at @sec-create-dates, when you use this path, Spark will always assume that your datetime values follow the ISO-8601 format. + +The ISO-8601 standard states that datetime values should always follow the format "YYYY-MM-DD HH:MM:SS Z" (or "Year-Month-Day Hour:Minute:Second TimeZone"). You can see at @fig-iso-8601-datetime, that are components that are mandatory (meaning that they always appear in a datetime value), and components that are optional (meaning that they might appear or might not in a datetime value). + +The time zone component is always optional, and because of that, they usually are not present in the datetime values you have. There are some variations and extra characters that might appear at some points, for example, the character 'T' might appear to clearly separate the date from the time component, and the character 'Z' to separate the time zone from the time component. Also, the time component might have a microseconds section to identify a more precise point in time. + +But despite all these variations, datetime values that are ISO-8601 compatible are basically always following this same pattern (or this same order of components) of "Year-Month-Day Hour:Minute:Second TimeZone". Examples of values that follows this standard are "2014-10-18T16:30:00Z", "2019-05-09 08:20:05.324" and "2020-01-01 12:30:00 -03". + +![The ISO-8601 format for datetime/timestamp values](./../Figures/format_datetime.png){#fig-iso-8601-datetime width=100%} + +This means that if your datetime values are not in this format, if they do not follow the ISO-8601 standard, then, you should not use the `cast()` method. If that is your case, you should use datetime patterns with the `to_timestamp()` function. We describe these assets in more depth at @sec-datetime-patterns. + +For now, let's focus on examples that use the ISO-8601 format. As an example, lets use the `df2` DataFrame below: + +```{python} +data = [ + Row(datetime_as_string = "2021-02-23T04:41:57Z"), + Row(datetime_as_string = "2021-05-18T12:30:05Z"), + Row(datetime_as_string = "2021-11-13T16:30:00Z"), + Row(datetime_as_string = "2021-08-09T00:30:16Z") +] + +df2 = spark.createDataFrame(data) +df2.printSchema() +``` + +You can see above, that the `datetime_as_string` column is currently being interpreted as a column of strings. +But since the values are in ISO-8601 format, I can use the cast method to directly convert them into timestamp values. + +```{python} +df2 = df2\ + .withColumn( + 'datetime_values', + col('datetime_as_string').cast('timestamp') + ) + +df2.printSchema() +``` + +```{python} +df2.show() +``` + +### From integers + +You can also convert integers directly to datetime values by using the `cast()` method. In this situation, the integers are interpreted as being the number of seconds since the UNIX time epoch, which is mid-night of 1 January of 1970 (`"1970-01-01 00:00:00"`). In other words, the integer `60` will be converted the point in time that is 60 seconds after `"1970-01-01 00:00:00"`, which would be `"1970-01-01 00:01:00"`. + +In the example below, the number 1,000,421,325 is converted into 19:48:45 of 13 September of 2001. Because this exact point in time is 1.000421 billion of seconds ahead of the UNIX epoch. + +```{python} +df3 = spark.createDataFrame([ + Row(datetime_as_integer = 1000421325), + Row(datetime_as_integer = 1000423628), + Row(datetime_as_integer = 500), + Row(datetime_as_integer = 1000493412) +]) + +df3 = df3\ + .withColumn( + 'datetime_values', + col('datetime_as_integer').cast('timestamp') + ) + +df3.show() +``` + + + +However, you probably notice in the example above, that something is odd. Because the number 500 was converted into `"1969-12-31 21:08:20"`, which is in theory, behind the UNIX epoch, which is 1 January of 1970. Why did that happen? The answer is that **your time zone is always taken into account** during a conversion from integers to datetime values! + +In the example above, Spark is running on an operating system that is using the America/Sao_Paulo time zone (which is 3 hours late from international time zone - UTC-3) as the "default time zone" of the system. As a result, integers will be interpreted as being the number of seconds since the UNIX time epoch **minus 3 hours**, which is `"1969-12-31 21:00:00"`. So, in this context, the integer `60` would be converted into `"1969-12-31 21:01:00"` (instead of the usual `"1970-01-01 00:01:00"` that you would expect). + +That is why the number 500 was converted into `"1969-12-31 21:08:20"`. Because it is 500 seconds ahead of `"1969-12-31 21:00:00"`, which is 3 hours behind the UNIX time epoch. + +But what if you wanted to convert your integers into a UTC-0 time zone? Well, you could just set the time zone of your Spark Session to the international time zone before you do the conversion, with the command below: + +```python +spark.conf.set("spark.sql.session.timeZone", "UTC") +``` + +But you could also do the conversion anyway and adjust the values later. That is, you just perform the conversion with the `cast()` method, even if the result would be in your current time zone. After that, you add the amount of time necessary to transpose your datetime values to the international time zone (UTC-0). + +So in the above example, since I was using the Brasília time zone (UTC-3) during the above conversion, I just need to add 3 hours to all datetime values to get their equivalents values in international time zone. You can do that by using interval expressions, which will be discussed in more depth at @sec-interval-express. + +```{python} +from pyspark.sql.functions import expr +df3 = df3\ + .withColumn( + 'datetime_values_utc0', + expr("datetime_values + INTERVAL 3 HOURS") + ) + +df3.show() +``` + + +### From individual components + +If you have 6 columns in your DataFrame, one for each component of a datetime value (day, month, year, hour, minute, second), you can group these components together to compose datetime values. We do this in `pyspark` by using the `make_timestamp()` function. + +To use this function, you just list the columns of each component in the following order: year, month, day, hours, minutes, seconds. Like in this example: + +```{python} +from pyspark.sql.functions import make_timestamp +df3 = spark.createDataFrame([ + Row(day=14,month=2,year=2021,hour=12,mins=45,secs=0), + Row(day=30,month=4,year=2021,hour=8,mins=10,secs=0), + Row(day=2,month=5,year=2021,hour=5,mins=9,secs=12), + Row(day=6,month=5,year=2021,hour=0,mins=34,secs=4) +]) + +df3\ + .withColumn( + 'as_datetime', + make_timestamp( + col('year'), + col('month'), + col('day'), + col('hour'), + col('mins'), + col('secs') + ) + )\ + .show() +``` + + +## Introducing datetime patterns {#sec-datetime-patterns} + +Every time you have strings that contains dates and datetime values that are outside of the ISO-8601 format, you usually have to use datetime patterns to convert these strings to date or datetime values. In other words, in this section I will describe how you can use datetime patterns to convert string values (that are outside of the ISO-8601 format) into dates or datetimes values. + +Despite the existence of an international standard (like ISO-8601), the used date and datetime formats varies accross different countries around the world. There are tons of examples of these different formats. For example, in Brazil, dates are usually formatted like "Day/Month/Year". Not only the order of the date components (day, month and year) are different, but also, the separator character ("/" instead of "-"). + +In essence, a datetime pattern is a string pattern that describes a specific date or datetime format. This means that we can use a datetime pattern to describe any date or datetime format. A datetime pattern is a string value that is constructed by grouping letters together. Each individual letter represents an individual component of a date or a datetime value. + +You can see at @tbl-date-components a list of the most commom used letters in datetime patterns. If you want, you can also see the full list of possible letters in datetime patterns by visiting the Spark Datetime Patterns page[^datetime_patterns]. + + +| Letter | Meaning | Example of a valid value | +| ------ | ------------------------ | ---------------------------------------------- | +| G | era | AD; Anno Domini | +| y | year | 2020; 20 | +| D | day-of-year | 189 | +| M/L | month-of-year | 7; 07; Jul; July | +| d | day-of-month | 28 | +| Q/q | quarter-of-year | 3; 03; Q3; 3rd quarter | +| E | day-of-week | Tue; Tuesday | +| F | aligned day of week | 3 | +| a | am-pm-of-day | PM | +| h | clock-hour-of-am-pm | 12 | +| K | hour-of-am-pm | 0 | +| k | clock-hour-of-day | 0 | +| H | hour-of-day | 0 | +| m | minute-of-hour | 30 | +| s | second-of-minute | 55 | +| S | fraction-of-second | 978 | +| V | time-zone ID | America/Los_Angeles; Z; -08:30 | +| z | time-zone name | Pacific Standard Time; PST | +| O | localized zone-offset | GMT+8; GMT+08:00; UTC-08:00; | +| X | zone-offset ‘Z’ for zero | Z; -08; -0830; -08:30; -083015; -08:30:15; | +| x | zone-offset | +0000; -08; -0830; -08:30; -083015; -08:30:15; | +| Z | zone-offset | +0000; -0800; -08:00; | + +: List of letters to represent date and datetime components {#tbl-date-components} + +[^datetime_patterns]: + + +### Using datetime patterns to get date values + +Following @tbl-date-components, if we had a date in the format "Day, Month of Year", like "12, November of 1997", we would use the letters d, M and y for each of the three components that are present in this format. In fact, let's create a DataFrame with this exact value, and let's demonstrate how could you convert it to a `DateType` value. + +```{python} +data = [ {"date": "12, November of 1997"} ] +weird_date = spark.createDataFrame(data) +weird_date.show() +``` + +To convert it from the `StringType` to `DateType` we have to use the `to_date()` Spark SQL function. Because with this function, we can provide the datetime pattern that describes the exact format that these dates use. But before we use `to_date()`, we need to build a datetime pattern to use. + +The date example above ("12, November of 1997") starts with a two-digit day number. That is why we begin our datetime pattern with two d's, to represent this section of the date. After that we have a comma and a space followed by the month name. However, both month name and the year number at the end of the date are in their full formats, instead of their abbreviated formats. + +Because of that, we need to tell Spark to use the full format instead of the abbreviated format on both of these two components. To do that, we use four M's and four y's, instead of just two. At last, we have a literal "of" between the month name and the year name, and to describe this specific section of the date, we insert `'of'` between the M's and y's. + +In essence, we have the datetime pattern `"dd, MMMM 'of' yyyy"`. Now, we can just use `to_date()` with this datetime pattern to convert the string value to a date value. + +```{python} +from pyspark.sql.functions import to_date +pattern = "dd, MMMM 'of' yyyy" +weird_date = weird_date\ + .withColumn("date", to_date(col("date"), pattern)) + +weird_date.show() +``` + +```{python} +weird_date.printSchema() +``` + + +So, if you have a constant (or fixed) text that is always present in all of your date values, like the "of" in the above example, you must encapsulate this text between quotation marks in your datetime patterns. Also, depending if your components are in a abbreviated format (like "02" for year 2002, or "Jan" for the January month), or in a full format (like the year "1997" or the month "October"), you might want to repeat the letters one or two times (to use abbreviated formats), or you might want to repeat it four times (to use the full formats). In other words, if you use less than 4 pattern letters, then, Spark will use the short text form, typically an abbreviation form of the component you are reffering to @sparkdoc. + + +As another example of unusual date formats, lets use the `user_events` DataFrame. You can easily get the data of this DataFrame by dowloading the JSON file from the official repository of this book[^book_repo]. After you downloaded the JSON file that contains the data, you can import it to your Spark session with the commands below: + +[^book_repo]: + +```{python} +#| cache: true +from pyspark.sql.types import StructType, StructField +from pyspark.sql.types import DoubleType, StringType +from pyspark.sql.types import LongType, TimestampType, DateType +path = "../Data/user-events.json" +schema = StructType([ + StructField('dateOfEvent', StringType(), False), + StructField('timeOfEvent', StringType(), False), + StructField('userId', StringType(), False), + StructField('nameOfEvent', StringType(), False) +]) + +user_events = spark.read\ + .json(path, schema = schema) + +user_events.show() +``` + +The `dateOfEvent` column of this DataFrame contains date values in the Brazilian format "Day/Month/Year". To describe this date format, we can use the datetime pattern `"dd/MM/yyyy"`. + +```{python} +date_pattern = "dd/MM/yyyy" +user_events = user_events\ + .withColumn( + 'dateOfEvent', + to_date(col('dateOfEvent'), date_pattern) + ) + +user_events.show() +``` + + +### Using datetime patterns to get datetime/timestamp values + +Furthermore, the `user_events` table also contains the `timeOfEvent` column, which is a column of datetime (or timestamp) values, also in the usual Brazilian format "Day/Month/Year Hour:Minutes:Seconds". Following @tbl-date-components, we can describe this datetime format with the pattern `"dd/MM/yyyy HH:mm:ss"`. + +When you have a column of string values that you want to convert into the `TimestampType` type, but your values are not in ISO-8601 format, you should use the `to_timestamp()` function (which also comes from the `pyspark.sql.functions` module) together with a datetime pattern to describe the actual format of your values. + +You use the `to_timestamp()` function in the same way you would use the `to_date()` function, you reference the name of the column you want to convert into a column of timestamp values, and you also provide a datetime pattern to be used in the conversion. The difference between the two functions is solely on the type of columns they produce. The `to_timestamp()` function always produce a column of type `TimestampType` as a result, while the `to_date()` function produces a column of type `DateType`. + + +```{python} +from pyspark.sql.functions import to_timestamp +datetime_pattern = "dd/MM/yyyy HH:mm:ss" +user_events = user_events\ + .withColumn( + 'timeOfEvent', + to_timestamp(col('timeOfEvent'), datetime_pattern) + ) + +user_events.show() +``` + +## Extracting date or datetime components + +One very commom operation when dealing with dates and datetime values is extracting components from these values. For example, you might want to create a new column that contains the day component from all of your dates. Or maybe, the month... anyway. + +Thakfully, `pyspark` made it pretty easy to extract these kinds of components. You just use the corresponding function to each component! All of these functions come from the `pyspark.sql.functions` module. As a quick list, the functions below are used to extract components from both dates and datetime values: + +- `year()`: extract the year of a given date or datetime as integer. +- `month()`: extract the month of a given date or datetime as integer. +- `dayofmonth()`: extract the day of the month of a given date or datetime as integer. +- `dayofweek()`: extract the day of the week of a given date or datetime as integer. The integer returned will be inside the range 1 (for a Sunday) through to 7 (for a Saturday). +- `dayofyear()`: extract the day of the year of a given date or datetime as integer. +- `quarter()`: extract the quarter of a given date or datetime as integer. + + +On the other hand, the list of functions below only applies to datetime values, because they extract time components (which are not present on date values). These functions also comes to the `pyspark.sql.functions` module: + +- `hour()`: extract the hours of a given datetime as integer. +- `minute()`: extract the minutes of a given datetime as integer. +- `second()`: extract the seconds of a given datetime as integer. + +In essence, you just apply these functions at the column that contains your date and datetime values, and you get as output the component you want. As an example, lets go back to the `user_events` DataFrame and extract the day, month and year components of each date, into separate columns: + +```{python} +from pyspark.sql.functions import ( + dayofmonth, + month, + year +) + +user_events\ + .withColumn('dayOfEvent', dayofmonth(col('dateOfEvent')))\ + .withColumn('monthOfEvent', month(col('dateOfEvent')))\ + .withColumn('yearOfEvent', year(col('dateOfEvent')))\ + .select( + 'dateOfEvent', 'dayOfEvent', + 'monthOfEvent', 'yearOfEvent' + )\ + .show() +``` + + +## Adding time to date and datetime values with interval expressions {#sec-interval-express} + +Another very commom operation is to add some amount of time to a date or datetime values. For example, you might want to advance your dates by 3 days. Or, delay your datetime values by 3 hours. In `pyspark`, you can perform this kind by either using functions or interval expressions. + +When we talk about functions available through the `pyspark.sql.functions` module, we have `date_add()` and `date_sub()`, which you can use to add or subtract days to a date, and `add_months()`, which you can use to add months to a date. Yes, the naming pattern of these functions is a little bit weird, but let's ignore this fact. + +```{python} +from pyspark.sql.functions import ( + date_add, + date_sub, + add_months +) + +user_events\ + .withColumn( + 'timePlus10Days', + date_add(col('timeOfEvent'), 10) + )\ + .withColumn( + 'timeMinus5Days', + date_sub(col('timeOfEvent'), 5) + )\ + .withColumn( + 'timePlus8Months', + add_months(col('timeOfEvent'), 8) + )\ + .select( + 'timeOfEvent', 'timePlus10Days', + 'timeMinus5Days', 'timePlus8Months' + )\ + .show() +``` + +Now, you can use interval expressions to add whatever time unit you want (years, months, days, hours, minutes or seconds) to either a date or datetime value. However, interval expressions are only available at the Spark SQL level. As a consequence, to use an interval expression, you must use `expr()` or `spark.sql()` (that we introduced at @sec-dataframe-sql-chapter) to get access to Spark SQL. An interval expression follows this pattern: + +```sql +INTERVAL 3 HOURS +``` + +An interval expression is an expression that begins with the `INTERVAL` keyword, and then, it is followed by a number that specifies an amount. You define how much exactly this amout represents by using another keyword that specifies the unit of time to be used. So the keyword `HOUR` specifies that you want to use the "hour" unit of time. + +Having this in mind, the expression `INTERVAL 3 HOURS` defines a 3 hours interval expression. In contrast, the expression `INTERVAL 3 SECONDS` represents 3 seconds, and the expression `INTERVAL 90 MINUTES` represents 90 minutes, and so on. + +By having an interval expression, you can just add or subtract this interval to your column to change the timestamp you have. + +```{python} +from pyspark.sql.functions import expr +user_events\ + .withColumn( + 'timePlus3Hours', + expr('timeOfEvent + INTERVAL 3 HOURS') + )\ + .withColumn( + 'timePlus2Years', + expr('timeOfEvent + INTERVAL 2 YEARS') + )\ + .select('timeOfEvent', 'timePlus3Hours', 'timePlus2Years')\ + .show() +``` + + +## Calculating differences between dates and datetime values + +Another very commom operation is to calculate how much time is between two dates or two datetimes. In other words, you might +want to calculate how many days the date `"2023-05-12"` is far ahead of `"2023-05-05"`, or how many hours the timestamp `"2023-07-10 13:13:00"` is ahead of `"2023-07-10 05:18:00"`. + +When you have two columns of type `DateType` (or `TimestampType`), you subtract one by the other directly to get the difference between the values of these columns. As an example, lets use the `df4` below: + +```{python} +from random import randint, seed +from datetime import ( + date, + datetime, + timedelta +) + +seed(10) +dates = [ + date(2023,4,1) + timedelta(days = randint(1,39)) + for i in range(4) +] + +datetimes = [ + datetime(2023,4,1,8,14,54) + timedelta(hours = randint(1,39)) + for i in range(4) +] + + +df4 = spark.createDataFrame([ + Row( + date1 = date(2023,4,1), + date2 = dates[i], + datetime1 = datetime(2023,4,1,8,14,54), + datetime2 = datetimes[i] + ) + for i in range(4) +]) + +df4.show() +``` + +If we subtract columns `date2` by `date1` and `datetime2` by `datetime1`, we get two new columns of type `DayTimeIntervalType`. +These new columns represent the interval of time between the values of these columns. + +```{python} +df4\ + .select('date1', 'date2')\ + .withColumn('datediff', col('date2') - col('date1'))\ + .show() +``` + + +```{python} +df4\ + .select('datetime1', 'datetime2')\ + .withColumn( + 'datetimediff', + col('datetime2') - col('datetime1') + )\ + .show() +``` + + +But another very commom way to calculate this difference is to convert the datetime values to seconds. Then, you subtract the calculated seconds, so you get as output, the difference in seconds between the two datetime values. + +To use this method, you first use the `unix_timestamp()` function to convert the timestamps into seconds as integer values, then, you subtract these new integer values that were created. + +```{python} +from pyspark.sql.functions import unix_timestamp +df4 = df4\ + .select('datetime1', 'datetime2')\ + .withColumn('datetime1', unix_timestamp(col('datetime1')))\ + .withColumn('datetime2', unix_timestamp(col('datetime2')))\ + .withColumn( + 'diffinseconds', + col('datetime2') - col('datetime1') + ) + +df4.show() +``` + +Now that we have the `diffinseconds` column, which represents the difference **in seconds** between `datetime1` and `datetime2` columns, we can divide this `diffinseconds` column by 60 to get the difference in minutes, or divide by 3600 to get the difference in hours, etc. + +```{python} +df4\ + .withColumn('diffinminutes', col('diffinseconds') / 60)\ + .withColumn('diffinhours', col('diffinseconds') / 3600)\ + .show() +``` + +## Getting the now and today values + +If for some reason, you need to know which timestamp is now, or which date is today, you can use the `current_timestamp()` and `current_date()` functions from `pyspark.sql.functions` module. When you execute these functions, they output the current timestamp and date in your system. + + +```{python} +from pyspark.sql.types import StructType,StructField, StringType +from pyspark.sql.functions import ( + current_date, + current_timestamp, + lit +) + +data = [Row(today="", now="")] +schema = StructType([ + StructField('today', StringType(), True), + StructField('now', StringType(), True) +]) + +spark.createDataFrame(data, schema = schema)\ + .withColumn('today', lit(current_date()))\ + .withColumn('now', lit(current_timestamp()))\ + .show() +``` + diff --git a/Chapters/11-window.qmd b/Chapters/11-window.qmd index 70b3df41..91a85200 100644 --- a/Chapters/11-window.qmd +++ b/Chapters/11-window.qmd @@ -1,363 +1,363 @@ -# Introducing window functions {#sec-window-functions} - -Spark offers a set of tools known as *window functions*. These tools are essential for an extensive range of tasks, and you should know them. But what are them? - -```{python} -#| include: false -# To execute the next chunks with success, we need to start a Spark Session -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - -Window functions in Spark are a set functions that performs calculations over windows of rows from your DataFrame. This is not a concept exclusive to Spark. In fact, window functions in Spark are essentially the same [as window functions in MySQL](https://dev.mysql.com/doc/refman/8.0/en/window-functions-usage.html)[^mysql-win-function]. - -[^mysql-win-function]: - -When you use a window function, the rows of your DataFrame are divided into multiple windows. Each window contains a specific range of rows from the DataFrame. In this context, a window function is a function that receives a window (or a range of rows) as input, and calculates an aggregate or a specific index based on the set of rows that is contained in this input window. - -You might find this description very similar to what `groupby()` and `agg()` methods do when combined together. And yes... To some extent, the idea of windows in a DataFrame is similar (but not identical) to the idea of "groups" created by *group by* functions, such as the `DataFrame.groupby()` method from `pyspark` (that we presented at @sec-group-by), or the [`DataFrame.groupby()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.groupby.html)[^pandas-group-by] method from `pandas`, and also, to [`dplyr::group_by()`](https://dplyr.tidyverse.org/reference/group_by.html)[^dplyr-group-by] from the `tidyverse` framework. You will see further in this chapter how window functions differ from these operations. - -[^pandas-group-by]: -[^dplyr-group-by]: - - -## How to define windows {#sec-window-def} - -In order to use a window function you need to define the windows of your DataFrame first. You do this by creating a `Window` object in your session. - -Every window object have two components, which are partitioning and ordering, and you specify each of these components by using the `partitionBy()` and `orderBy()` methods from the `Window` class. In order to create a `Window` object, you need to import the `Window` class from the `pyspark.sql.window` module: - -```{python} -from pyspark.sql.window import Window -``` - -Over the next examples, I will be using the `transf` DataFrame that we presented at @sec-transforming-dataframes-part1. If you don't remember how to import/get this DataFrame into your session, come back to @sec-transf-dataframe. - -```{python} -#| cache: true -#| include: false -from pyspark.sql.types import StructType, StructField -from pyspark.sql.types import DoubleType, StringType -from pyspark.sql.types import LongType, TimestampType, DateType -path = "../Data/transf.csv" -schema = StructType([ - StructField('dateTransfer', DateType(), False), - StructField('datetimeTransfer', TimestampType(), False), - StructField('clientNumber', LongType(), False), - StructField('transferValue', DoubleType(), False), - StructField('transferCurrency', StringType(), False), - StructField('transferID', LongType(), False), - StructField('transferLog', StringType(), False), - StructField('destinationBankNumber', LongType(), False), - StructField('destinationBankBranch', LongType(), False), - StructField('destinationBankAccount', StringType(), False) -]) - -transf = spark.read\ - .csv(path, schema = schema, sep = ";", header = True) -``` - -```{python} -transf.show(5) -``` - -Now, lets create a window object using the `transf` DataFrame as our target. This DataFrame describes a set of transfers made in a fictitious bank. So a reasonable way of splitting this DataFrame is by day. That means that we can split this DataFrame into groups (or ranges) of rows by using the `dateTransfer` column. As a result, each partition in the `dateTransfer` column will create/identify a different window in this DataFrame. - -```{python} -window_spec = Window.partitionBy('dateTransfer') -``` - -The above window object specifies that each unique value present in the `dateTransfer` column identifies a different window frame in the `transf` DataFrame. @fig-window-spec1 presents this idea visually. So each partition in the `dateTransfer` column creates a different window frame. And each window frame will become an input to a window function (when we use one). - -![Visualizing the window frames - Part 1](./../Figures/window-spec1.png){#fig-window-spec1 width=100%} - -Until this point, defining windows are very much like defining groups in your DataFrame with *group by* functions (i.e. windows are very similar to groups). But in the above example, we specified only the partition component of the windows. The partitioning component of the window object specifies which partitions of the DataFrame are translated into windows. In the other hand, the ordering component of the window object specifies how the rows within the window are ordered. - -Defining the ordering component becomes very important when we are working with window functions that outputs (or that uses) indexes. As an example, you might want to use in your calculations the first (or the *nth*) row in each window. In a situation like this, the order in which these rows are founded inside the window affects directly the output of your window function. That is why the ordering component matters. - -For example, we can say that the rows within each window should be in descending order according to the `datetimeTransfer` column: - -```{python} -from pyspark.sql.functions import col -window_spec = Window\ - .partitionBy('dateTransfer')\ - .orderBy(col('datetimeTransfer').desc()) -``` - -With the above snippet, we are not only specifying how the window frames in the DataFrame are created (with the `partitionBy()`), but we are also specifying how the rows within the window are sorted (with the `orderBy()`). If we update our representation with the above window specification, we get something similar to @fig-window-spec2: - -![Visualizing the window frames - Part 2](./../Figures/window-spec2.png){#fig-window-spec2 width=100%} - -Is worth mentioning that, both `partitionBy()` and `orderBy()` methods accepts multiple columns as input. In other words, you can use a combination of columns both to define how the windows in your DataFrame will be created, and how the rows within these windows will be sorted. - -As an example, the window specification below is saying: 1) that a window frame is created for each unique combination of `dateTransfer` and `clientNumber`; 2) that the rows within each window are ordered accordingly to `transferCurrency` (ascending order) and `datetimeTransfer` (descending order). - -```{python} -window_spec = Window\ - .partitionBy('dateTransfer', 'clientNumber')\ - .orderBy( - col('transferCurrency').asc(), - col('datetimeTransfer').desc() - ) -``` - - -### Partitioning or ordering or none - -Is worth mentioning that both partioning and ordering components of the window specification **are optional**. You can create a window object that contains only a partioning component defined, or, only a ordering component, or, in fact, a window object that basically have neither of them defined. - -As an example, all three objects below (`w1`, `w2` and `w3`) are valid window objects. `w1` have only the partition component defined, while `w2` have only the ordering component defined. However, `w3` have basically none of them defined, because `w3` is partitioned by nothing. In a situation like this, a single window is created, and this window covers the entire DataFrame. It covers all the rows at once. Is like you were not using any window at all. - -```{python} -w1 = Window.partitionBy('x') -w2 = Window.orderBy('x') -w3 = Window.partitionBy() -``` - -So just be aware of this. Be aware that you can cover the entire DataFrame into a single window. Be aware that if you use a window object with neither components defined (`Window.partitionBy()`) your window function basically works with the entire DataFrame at once. In essence, this window function becomes similar to a normal aggregating function. - -## Introducing the `over()` clause - -In order to use a window function you **need to combine an over clause with a window object**. If you pair these two components together, then, the function you are using becomes a window function. - -Since we know now how to define window objects for our DataFrame, we can actually create and use this object to access window functionality, by pairing this window object with an `over()` clause. - -In `pyspark` this `over()` clause is actually a method from the `Column` class. Since all aggregating functions available from the `pyspark.sql.functions` module produces a new `Column` object as output, we tend to use the `over()` method right after the function call. - -For example, if we wanted to calculate the mean of `x` with the `mean()` function, and we had a window object called `window_spec`, we could use the `mean()` as a window function by writing `mean(col('x')).over(window_spec)`. - -```python -from pyspark.sql.window import Window -from pyspark.sql.functions import mean, col -window_spec = Window\ - .partitionBy('y', 'z')\ - .orderBy('t') - -mean(col('x')).over(window_spec) -``` - -If you see this `over()` method after a call of an aggregating function (such as `sum()`, `mean()`, etc.), then, you know that this aggregating function is being called as a window function. - -The `over()` clause is also available in Spark SQL as the SQL keyword `OVER`. This means that you can use window functions in Spark SQL as well. But in Spark SQL, you write the window specification inside parentheses after the `OVER` keyword, and you specify each component with `PARTITION BY` AND `ORDER BY` keywords. We could replicate the above example in Spark SQL like this: - -```sql -SELECT mean(x) OVER (PARTITION BY y, z ORDER BY t ASC) -``` - - - - -## Window functions vs *group by* functions - -Despite their similarities, window functions and *group by* functions are used for different purposes. One big difference between them, is that when you use `groupby()` + `agg()` you get one output row per each input group of rows, but in contrast, a window function outputs one row per input row. In other words, for a window of $n$ input rows a window function outputs $n$ rows that contains the same result (or the same aggregate result). - -For example, lets suppose you want to calculate the total value transfered within each day. If you use a `groupby()` + `agg()` strategy, you get as result a new DataFrame containing one row for each unique date present in the `dateTransfer` column: - -```{python} -from pyspark.sql.functions import sum -transf\ - .orderBy('dateTransfer')\ - .groupBy('dateTransfer')\ - .agg(sum(col('transferValue')).alias('dayTotalTransferValue'))\ - .show(5) -``` - -On the other site, if you use `sum()` as a window function instead, you get as result one row for each transfer. That is, you get one row of output for each input row in the `transf` DataFrame. The value that is present in the new column created (`dayTotalTransferValue`) is the total value transfered for the window (or the range of rows) that corresponds to the date in the `dateTransfer` column. - -In other words, the value `39630.7` below corresponds to the sum of the `transferValue` column when `dateTransfer == "2022-01-01"`: - -```{python} -window_spec = Window.partitionBy('dateTransfer') -transf\ - .select('dateTransfer', 'transferID', 'transferValue')\ - .withColumn( - 'dayTotalTransferValue', - sum(col('transferValue')).over(window_spec) - )\ - .show(5) -``` - -You probably already seen this pattern in other data frameworks. As a quick comparison, if you were using the `tidyverse` framework, you could calculate the exact same result above with the following snippet of R code: - -```r -transf |> - group_by(dateTransfer) |> - mutate( - dayTotalTransferValue = sum(transferValue) - ) -``` - -In contrast, you would need the following snippet of Python code to get the same result in the `pandas` framework: - -```python -transf['dayTotalTransferValue'] = transf['transferValue']\ - .groupby(transf['dateTransfer'])\ - .transform('sum') -``` - - -## Ranking window functions - -The functions `row_number()`, `rank()` and `dense_rank()` from the `pyspark.sql.functions` module are ranking functions, in the sense that they seek to rank each row in the input window according to a ranking system. These functions are identical to their [peers in MySQL](https://dev.mysql.com/doc/refman/8.0/en/window-function-descriptions.html#function_row-number)[^mysql-row-num] `ROW_NUMBER()`, `RANK()` and `DENSE_RANK()`. - -[^mysql-row-num]: - -The function `row_number()` simply returns a unique and sequential number to each row in a window, starting from 1. It is a quick way of marking each row with an unique and sequential number. - -```{python} -from pyspark.sql.functions import row_number -window_spec = Window\ - .partitionBy('dateTransfer')\ - .orderBy('datetimeTransfer') - -transf\ - .select( - 'dateTransfer', - 'datetimeTransfer', - 'transferID' - )\ - .withColumn('rowID', row_number().over(window_spec))\ - .show(5) -``` - -The `row_number()` function is also very useful when you are trying to collect the rows in each window that contains the smallest or biggest value in the window. If the ordering of your window specification is in ascending order, then, the first row in the window will contain the smallest value in the current window. In contrast, if the ordering is in descending order, then, the first row in the window will contain the biggest value in the current window. - -This is interesting, because lets suppose you wanted to find the rows that contained the maximum transfer values in each day. A `groupby()` + `agg()` strategy would tell you which are the maximum transfer values in each day. But it would not tell you where are the rows in the DataFrame that contains these maximum values. A `Window` object + `row_number()` + `filter()` can help you to get this answer. - -```{python} -window_spec = Window\ - .partitionBy('dateTransfer')\ - .orderBy(col('transferValue').desc()) - -# The row with rowID == 1 is the first row in each window -transf\ - .withColumn('rowID', row_number().over(window_spec))\ - .filter(col('rowID') == 1)\ - .select( - 'dateTransfer', 'rowID', - 'transferID', 'transferValue' - )\ - .show(5) -``` - -The `rank()` and `dense_rank()` functions are similar to each other. They both rank the rows with integers, just like `row_number()`. But if there is a tie between two rows (that means that both rows have the same value in the ordering column, so it becomes a tie, we do not know which one of these rows should come first), then, these functions will repeat the same number/index for these rows in tie. Lets use the `df` below as a quick example: - -```{python} -data = [ - (1, 3000), (1, 2400), - (1, 4200), (1, 4200), - (2, 1500), (2, 2000), - (2, 3000), (2, 3000), - (2, 4500), (2, 4600) -] -df = spark.createDataFrame(data, ['id', 'value']) -``` - -If we apply both `rank()` and `dense_rank()` over this DataFrame with the same window specification, we can see the difference between these functions. In essence, `rank()` leave gaps in the indexes that come right after any tied rows, while `dense_rank()` does not. - -```{python} -from pyspark.sql.functions import rank, dense_rank -window_spec = Window\ - .partitionBy('id')\ - .orderBy('value') - -# With rank() there are gaps in the indexes -df.withColumn('with_rank', rank().over(window_spec))\ - .show() -``` - -```{python} -# With dense_rank() there are no gaps in the indexes -df.withColumn('with_dense_rank', dense_rank().over(window_spec))\ - .show() -``` - - -## Agreggating window functions - -In essence, all agreggating functions from the `pyspark.sql.functions` module (like `sum()`, `mean()`, `count()`, `max()` and `min()`) can be used as a window function. So you can apply any agreggating function as a window function. You just need to use the `over()` clause with a `Window` object. - -We could for example see how much each `transferValue` deviates from the daily mean of transfered value. This might be a valuable information in case you are planning to do some statistical inference over this data. Here is an example of what this would looks like in `pyspark`: - -```{python} -from pyspark.sql.functions import mean -window_spec = Window.partitionBy('dateTransfer') - -mean_deviation_expr = ( - col('transferValue') - - mean(col('transferValue')).over(window_spec) -) - -transf\ - .select('dateTransfer', 'transferValue')\ - .withColumn('meanDeviation', mean_deviation_expr)\ - .show(5) -``` - -As another example, you might want to calculate how much a specific transfer value represents of represents of the total amount transferred daily. You could just get the total amount transferred daily by applying the `sum()` function over windows partitioned by `dateTransfer`. Then, you just need to divide the current `transferValue` by the result of this `sum()` function, and you get the proportion you are looking for. - -```{python} -from pyspark.sql.functions import sum -proportion_expr = ( - col('transferValue') - / sum(col('transferValue')).over(window_spec) -) - -transf\ - .select('dateTransfer', 'transferValue')\ - .withColumn('proportionDailyTotal', proportion_expr)\ - .show(5) -``` - -## Getting the next and previous row with `lead()` and `lag()` - -There is one pair functions that is worth talking about in this chapter, which are `lead()` and `lag()`. These functions are very useful in the context of windows, because they return the value in the next and previous rows considering your current position in your DataFrame. - -These functions basically performs the same operation as their peers [`dplyr::lead()` and `dplyr::lag()`](https://dplyr.tidyverse.org/reference/lead-lag.html)[^dplyr-lead] from the `tidyverse` framework. In essence, `lead()` will return the value of the next row, while `lag()` will return the value of the previous row. - -[^dplyr-lead]: - -```{python} -from pyspark.sql.functions import lag, lead -window_spec = Window\ - .partitionBy('dateTransfer')\ - .orderBy('datetimeTransfer') - -lead_expr = lead('transferValue').over(window_spec) -lag_expr = lag('transferValue').over(window_spec) - -transf\ - .withColumn('nextValue', lead_expr)\ - .withColumn('previousValue', lag_expr)\ - .select( - 'datetimeTransfer', - 'transferValue', - 'nextValue', - 'previousValue' - )\ - .show(5) -``` - - - \ No newline at end of file diff --git a/Chapters/references.qmd b/Chapters/references.qmd index 9a394588..925f7c49 100644 --- a/Chapters/references.qmd +++ b/Chapters/references.qmd @@ -1,4 +1,4 @@ -# References {.unnumbered} - -::: {#refs} -::: +# References {.unnumbered} + +::: {#refs} +::: diff --git a/Cover/figures.sh b/Cover/figures.sh index 18b8ba09..0f96e35a 100644 --- a/Cover/figures.sh +++ b/Cover/figures.sh @@ -1,17 +1,17 @@ -#!/bin/bash - - -# Convert is used to concatenate (or append, or merge) two images together -# This command put the python logo in the center of a background of a certain color -# The -extent component defines the size of the final image (or the size of the background if you prefer to understand in this way) -magick convert Images/python.png -gravity center -background '#164E80' -extent 2000x2000 Images/test.png - -# Mogrify is used to modify (or replace) the color of all pixels that match a certain color -# The command below I am replacing all white pixels by a pixel of color "#164E80" -magick mogrify Images/test.png -fill "#164E80" -fuzz 15% -opaque "#FFFFFF" Images/test.png - - -# The command below I am replacing all black pixels by a null (or empty) pixel -magick mogrify Images/test.png -fill none -fuzz 15% -opaque "#000000" Images/test.png - - +#!/bin/bash + + +# Convert is used to concatenate (or append, or merge) two images together +# This command put the python logo in the center of a background of a certain color +# The -extent component defines the size of the final image (or the size of the background if you prefer to understand in this way) +magick convert Images/python.png -gravity center -background '#164E80' -extent 2000x2000 Images/test.png + +# Mogrify is used to modify (or replace) the color of all pixels that match a certain color +# The command below I am replacing all white pixels by a pixel of color "#164E80" +magick mogrify Images/test.png -fill "#164E80" -fuzz 15% -opaque "#FFFFFF" Images/test.png + + +# The command below I am replacing all black pixels by a null (or empty) pixel +magick mogrify Images/test.png -fill none -fuzz 15% -opaque "#000000" Images/test.png + + diff --git a/Data/accounts.csv b/Data/accounts.csv index 55a2558d..2962ebe0 100644 --- a/Data/accounts.csv +++ b/Data/accounts.csv @@ -1,27 +1,27 @@ -clientNumber,clientName,branchNumber,accountNumber,addressCountry,addressCity,adressStreet,adressNumber -6032,Anne Frank,8521,31119-9,Netherlands,Amsterdam,Boomstraat,238 -5764,Michael Scott,1979,27804-4,United States,Scranton,Foster St,129 -3100,Pam Beesly,8521,68418-3,United States,Scranton,Meade Ave,159 -2489,Jim Halpert,1979,62434-3,United States,Scranton,Gunster Ave,349 -5516,Dwight Schrute,1979,68554-4,United States,Scranton,Hawk Pi,433 -1455,Angela Martin,1979,64554-5,United States,Scranton,Ward Pi,270 -1121,Kelly Kapoor,3321,31988-5,United States,Scranton,Bartel St,359 -3715,Ryan Howard,8521,31291-3,United States,Scranton,Penn Ave,430 -1945,Troy Bolton,3321,47807-0,United States,Salt Lake,300 N,105 -2197,Gabriella Montez,4425,25878-3,United States,Salt Lake,Euclid Ave,173 -5986,Sharpay Evans,3321,64697-4,United States,Salt Lake,Patricia Way,225 -1297,Gina Weasley,1979,66914-0,United Kingdom,London,Seymour Rd,171 -1217,Harry Potter,4425,33436-9,United Kingdom,London,Duckett Rd,53 -4023,Hermione Granger,1979,67232-1,United Kingdom,London,Cavendish Rd,236 -4465,Jake Peralta,3321,29708-6,United States,New York,Washington Ave,441 -5188,Rosa Diaz,1979,37161-8,United States,New York,Prescott St,320 -3284,Amy Santiago,3321,65967-4,United States,New York,Spruce St,119 -5832,Gina Linetti,8521,38639-3,United States,New York,Lefferts Rd,103 -2727,Ray Holt,8521,45785-0,United States,New York,Claydon Rd,382 -3795,Charles Boyle,1979,72258-2,United States,New York,Kenwood Rd,258 -4965,Edward Elric,1979,39322-9,Amestris,Central City,Laurel,123 -5987,Alphonse Elric,4425,79244-0,Amestris,Central City,Mullberry,30 -5243,Roy Mustang,3321,39171-6,Amestris,Central City,Avalon,180 -3294,Winry Rockbell,1979,26714-9,Amestris,Central City,Central Ring,135 -4608,Maes Hughes,3321,55407-7,Amestris,Central City,Central Ring,373 -4862,Ling Yao,1979,25474-5,Amestris,Central City,Royal Garden,310 +clientNumber,clientName,branchNumber,accountNumber,addressCountry,addressCity,adressStreet,adressNumber +6032,Anne Frank,8521,31119-9,Netherlands,Amsterdam,Boomstraat,238 +5764,Michael Scott,1979,27804-4,United States,Scranton,Foster St,129 +3100,Pam Beesly,8521,68418-3,United States,Scranton,Meade Ave,159 +2489,Jim Halpert,1979,62434-3,United States,Scranton,Gunster Ave,349 +5516,Dwight Schrute,1979,68554-4,United States,Scranton,Hawk Pi,433 +1455,Angela Martin,1979,64554-5,United States,Scranton,Ward Pi,270 +1121,Kelly Kapoor,3321,31988-5,United States,Scranton,Bartel St,359 +3715,Ryan Howard,8521,31291-3,United States,Scranton,Penn Ave,430 +1945,Troy Bolton,3321,47807-0,United States,Salt Lake,300 N,105 +2197,Gabriella Montez,4425,25878-3,United States,Salt Lake,Euclid Ave,173 +5986,Sharpay Evans,3321,64697-4,United States,Salt Lake,Patricia Way,225 +1297,Gina Weasley,1979,66914-0,United Kingdom,London,Seymour Rd,171 +1217,Harry Potter,4425,33436-9,United Kingdom,London,Duckett Rd,53 +4023,Hermione Granger,1979,67232-1,United Kingdom,London,Cavendish Rd,236 +4465,Jake Peralta,3321,29708-6,United States,New York,Washington Ave,441 +5188,Rosa Diaz,1979,37161-8,United States,New York,Prescott St,320 +3284,Amy Santiago,3321,65967-4,United States,New York,Spruce St,119 +5832,Gina Linetti,8521,38639-3,United States,New York,Lefferts Rd,103 +2727,Ray Holt,8521,45785-0,United States,New York,Claydon Rd,382 +3795,Charles Boyle,1979,72258-2,United States,New York,Kenwood Rd,258 +4965,Edward Elric,1979,39322-9,Amestris,Central City,Laurel,123 +5987,Alphonse Elric,4425,79244-0,Amestris,Central City,Mullberry,30 +5243,Roy Mustang,3321,39171-6,Amestris,Central City,Avalon,180 +3294,Winry Rockbell,1979,26714-9,Amestris,Central City,Central Ring,135 +4608,Maes Hughes,3321,55407-7,Amestris,Central City,Central Ring,373 +4862,Ling Yao,1979,25474-5,Amestris,Central City,Royal Garden,310 diff --git a/Data/books.txt b/Data/books.txt index 936c5675..8d1bc71f 100644 --- a/Data/books.txt +++ b/Data/books.txt @@ -1,5 +1,5 @@ -"Title","Author","Price" -"O Hobbit","J. R. R. Tolkien",40.72 -"Matemática para Economistas","Carl P. Simon and Lawrence Blume",139.74 -"Microeconomia: uma Abordagem Moderna","Hal R. Varian",141.2 -"A Luneta Âmbar","Philip Pullman",42.89 +"Title","Author","Price" +"O Hobbit","J. R. R. Tolkien",40.72 +"Matemática para Economistas","Carl P. Simon and Lawrence Blume",139.74 +"Microeconomia: uma Abordagem Moderna","Hal R. Varian",141.2 +"A Luneta Âmbar","Philip Pullman",42.89 diff --git a/Data/livros.txt b/Data/livros.txt index bf9bfaa6..623012e9 100644 --- a/Data/livros.txt +++ b/Data/livros.txt @@ -1,5 +1,5 @@ -Titulo,Autor,Preco -O Hobbit,J. R. R. Tolkien,40.72 -Matemática para Economistas,Carl P. Simon e Lawrence Blume,139.74 -Microeconomia: uma Abordagem Moderna,Hal R. Varian,141.2 -A Luneta Âmbar,Philip Pullman,42.89 +Titulo,Autor,Preco +O Hobbit,J. R. R. Tolkien,40.72 +Matemática para Economistas,Carl P. Simon e Lawrence Blume,139.74 +Microeconomia: uma Abordagem Moderna,Hal R. Varian,141.2 +A Luneta Âmbar,Philip Pullman,42.89 diff --git a/Data/logs.json b/Data/logs.json index 125285cf..024bf988 100644 --- a/Data/logs.json +++ b/Data/logs.json @@ -1,16 +1,16 @@ -{ "message": "[INFO]: 2022-09-05 03:35:01.43 Looking for workers at South America region" , "ip": " 1.0.104.27 "} -{ "message": "[WARN]: 2022-09-05 03:35:58.007 Workers are unavailable at your region. Waiting 5 minutes before trying again..." , "ip": " 1.0.104.27 "} -{ "message": "[INFO]: 2022-09-05 03:40:59.054 Looking for workers at South America region" , "ip": " 1.0.104.27 "} -{ "message": "[INFO]: 2022-09-05 03:42:24 3 Workers were acquired at IPs: 1.0.102.15, 1.0.102.24, 1.0.102.53" , "ip": " 1.0.104.27 "} -{ "message": "[INFO]: 2022-09-05 03:42:37 Initializing instances in the cluster" , "ip": " 1.0.104.27 "} -{ "message": "[WARN]: 2022-09-05 03:52:02.98 Library \"pandas\" was not located at the local sources. Searching for the library in outside sources..." , "ip": " 1.0.104.27 "} -{ "message": "[INFO]: 2022-09-05 04:00:33.210 Library \"pandas\" was succesfully located at pip servers", "ip": " 1.0.104.27 "} -{ "message": "[INFO]: 2022-09-05 04:01:15 All cluster instances were started, and libraries were installed succesfully", "ip": " 1.0.104.27 "} -{ "message": "[INFO]: 2022-09-05 04:01:35.022 Making API request for Azure to register logs", "ip": " 1.0.104.27 "} -{ "message": "[INFO]: 2022-09-05 04:02:09.05 Libraries installed: pandas, flask, numpy, spark_map, pyspark", "ip": " 1.0.104.27 "} -{ "message": "[INFO]: 2022-09-05 04:02:09.05 The following users logged into the system: pedro.on@gmail.com, maicon@gmail.com, arthur87@gmail.com", "ip": " 1.0.104.27 "} -{ "message": "[INFO]: 2022-09-05 04:02:09.05 An event with value \"2022-09-05 04:01:58|pedro.on@gmail.com|On premisse|I was not able to complete the request\" was registered by onpremisse@mswasdq.yh", "ip": " 1.0.104.27 "} -{ "message": "[ERROR]: 2022-09-05 04:02:12 A task referenced a table called `monitoring.messages_received`, but this table was not found in your Spark SQL context", "ip": " 1.0.104.27 "} -{ "message": "[ERROR]: 2022-09-05 04:02:34.111 Error message - pyspark.sql.utils.AnalysisException: Table or view not found: monitoring.messages_received; 'UnresolvedRelation [monitoring.messages_received], [], false", "ip": " 1.0.104.27 "} -{ "message": "[ERROR]: 2022-09-05 04:02:34.678 Traceback (most recent call last): File \"\", line 1, in ; File \"/opt/spark/python/pyspark/sql/session.py\", line 1055, in table; return DataFrame(self._jsparkSession.table(tableName), self); File \"/opt/spark/python/lib/py4j-0.10.9.5-src.zip/py4j/java_gateway.py\", line 1321, in __call__; File \"/opt/spark/python/pyspark/sql/utils.py\", line 196, in deco; raise converted from None", "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 03:35:01.43 Looking for workers at South America region" , "ip": " 1.0.104.27 "} +{ "message": "[WARN]: 2022-09-05 03:35:58.007 Workers are unavailable at your region. Waiting 5 minutes before trying again..." , "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 03:40:59.054 Looking for workers at South America region" , "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 03:42:24 3 Workers were acquired at IPs: 1.0.102.15, 1.0.102.24, 1.0.102.53" , "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 03:42:37 Initializing instances in the cluster" , "ip": " 1.0.104.27 "} +{ "message": "[WARN]: 2022-09-05 03:52:02.98 Library \"pandas\" was not located at the local sources. Searching for the library in outside sources..." , "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 04:00:33.210 Library \"pandas\" was succesfully located at pip servers", "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 04:01:15 All cluster instances were started, and libraries were installed succesfully", "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 04:01:35.022 Making API request for Azure to register logs", "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 04:02:09.05 Libraries installed: pandas, flask, numpy, spark_map, pyspark", "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 04:02:09.05 The following users logged into the system: pedro.on@gmail.com, maicon@gmail.com, arthur87@gmail.com", "ip": " 1.0.104.27 "} +{ "message": "[INFO]: 2022-09-05 04:02:09.05 An event with value \"2022-09-05 04:01:58|pedro.on@gmail.com|On premisse|I was not able to complete the request\" was registered by onpremisse@mswasdq.yh", "ip": " 1.0.104.27 "} +{ "message": "[ERROR]: 2022-09-05 04:02:12 A task referenced a table called `monitoring.messages_received`, but this table was not found in your Spark SQL context", "ip": " 1.0.104.27 "} +{ "message": "[ERROR]: 2022-09-05 04:02:34.111 Error message - pyspark.sql.utils.AnalysisException: Table or view not found: monitoring.messages_received; 'UnresolvedRelation [monitoring.messages_received], [], false", "ip": " 1.0.104.27 "} +{ "message": "[ERROR]: 2022-09-05 04:02:34.678 Traceback (most recent call last): File \"\", line 1, in ; File \"/opt/spark/python/pyspark/sql/session.py\", line 1055, in table; return DataFrame(self._jsparkSession.table(tableName), self); File \"/opt/spark/python/lib/py4j-0.10.9.5-src.zip/py4j/java_gateway.py\", line 1321, in __call__; File \"/opt/spark/python/pyspark/sql/utils.py\", line 196, in deco; raise converted from None", "ip": " 1.0.104.27 "} { "message": "[ERROR]: 2022-09-05 04:02:35.14 Quitting activity after facing a non-recoverable error", "ip": " 1.0.104.27 "} \ No newline at end of file diff --git a/Data/penguins.csv b/Data/penguins.csv index c4e4cf0e..e214c634 100644 --- a/Data/penguins.csv +++ b/Data/penguins.csv @@ -1,345 +1,345 @@ -species,island,bill_length_mm,bill_depth_mm,flipper_length_mm,body_mass_g,sex,year -Adelie,Torgersen,39.1,18.7,181,3750,male,2007 -Adelie,Torgersen,39.5,17.4,186,3800,female,2007 -Adelie,Torgersen,40.3,18,195,3250,female,2007 -Adelie,Torgersen,,,,,,2007 -Adelie,Torgersen,36.7,19.3,193,3450,female,2007 -Adelie,Torgersen,39.3,20.6,190,3650,male,2007 -Adelie,Torgersen,38.9,17.8,181,3625,female,2007 -Adelie,Torgersen,39.2,19.6,195,4675,male,2007 -Adelie,Torgersen,34.1,18.1,193,3475,,2007 -Adelie,Torgersen,42,20.2,190,4250,,2007 -Adelie,Torgersen,37.8,17.1,186,3300,,2007 -Adelie,Torgersen,37.8,17.3,180,3700,,2007 -Adelie,Torgersen,41.1,17.6,182,3200,female,2007 -Adelie,Torgersen,38.6,21.2,191,3800,male,2007 -Adelie,Torgersen,34.6,21.1,198,4400,male,2007 -Adelie,Torgersen,36.6,17.8,185,3700,female,2007 -Adelie,Torgersen,38.7,19,195,3450,female,2007 -Adelie,Torgersen,42.5,20.7,197,4500,male,2007 -Adelie,Torgersen,34.4,18.4,184,3325,female,2007 -Adelie,Torgersen,46,21.5,194,4200,male,2007 -Adelie,Biscoe,37.8,18.3,174,3400,female,2007 -Adelie,Biscoe,37.7,18.7,180,3600,male,2007 -Adelie,Biscoe,35.9,19.2,189,3800,female,2007 -Adelie,Biscoe,38.2,18.1,185,3950,male,2007 -Adelie,Biscoe,38.8,17.2,180,3800,male,2007 -Adelie,Biscoe,35.3,18.9,187,3800,female,2007 -Adelie,Biscoe,40.6,18.6,183,3550,male,2007 -Adelie,Biscoe,40.5,17.9,187,3200,female,2007 -Adelie,Biscoe,37.9,18.6,172,3150,female,2007 -Adelie,Biscoe,40.5,18.9,180,3950,male,2007 -Adelie,Dream,39.5,16.7,178,3250,female,2007 -Adelie,Dream,37.2,18.1,178,3900,male,2007 -Adelie,Dream,39.5,17.8,188,3300,female,2007 -Adelie,Dream,40.9,18.9,184,3900,male,2007 -Adelie,Dream,36.4,17,195,3325,female,2007 -Adelie,Dream,39.2,21.1,196,4150,male,2007 -Adelie,Dream,38.8,20,190,3950,male,2007 -Adelie,Dream,42.2,18.5,180,3550,female,2007 -Adelie,Dream,37.6,19.3,181,3300,female,2007 -Adelie,Dream,39.8,19.1,184,4650,male,2007 -Adelie,Dream,36.5,18,182,3150,female,2007 -Adelie,Dream,40.8,18.4,195,3900,male,2007 -Adelie,Dream,36,18.5,186,3100,female,2007 -Adelie,Dream,44.1,19.7,196,4400,male,2007 -Adelie,Dream,37,16.9,185,3000,female,2007 -Adelie,Dream,39.6,18.8,190,4600,male,2007 -Adelie,Dream,41.1,19,182,3425,male,2007 -Adelie,Dream,37.5,18.9,179,2975,,2007 -Adelie,Dream,36,17.9,190,3450,female,2007 -Adelie,Dream,42.3,21.2,191,4150,male,2007 -Adelie,Biscoe,39.6,17.7,186,3500,female,2008 -Adelie,Biscoe,40.1,18.9,188,4300,male,2008 -Adelie,Biscoe,35,17.9,190,3450,female,2008 -Adelie,Biscoe,42,19.5,200,4050,male,2008 -Adelie,Biscoe,34.5,18.1,187,2900,female,2008 -Adelie,Biscoe,41.4,18.6,191,3700,male,2008 -Adelie,Biscoe,39,17.5,186,3550,female,2008 -Adelie,Biscoe,40.6,18.8,193,3800,male,2008 -Adelie,Biscoe,36.5,16.6,181,2850,female,2008 -Adelie,Biscoe,37.6,19.1,194,3750,male,2008 -Adelie,Biscoe,35.7,16.9,185,3150,female,2008 -Adelie,Biscoe,41.3,21.1,195,4400,male,2008 -Adelie,Biscoe,37.6,17,185,3600,female,2008 -Adelie,Biscoe,41.1,18.2,192,4050,male,2008 -Adelie,Biscoe,36.4,17.1,184,2850,female,2008 -Adelie,Biscoe,41.6,18,192,3950,male,2008 -Adelie,Biscoe,35.5,16.2,195,3350,female,2008 -Adelie,Biscoe,41.1,19.1,188,4100,male,2008 -Adelie,Torgersen,35.9,16.6,190,3050,female,2008 -Adelie,Torgersen,41.8,19.4,198,4450,male,2008 -Adelie,Torgersen,33.5,19,190,3600,female,2008 -Adelie,Torgersen,39.7,18.4,190,3900,male,2008 -Adelie,Torgersen,39.6,17.2,196,3550,female,2008 -Adelie,Torgersen,45.8,18.9,197,4150,male,2008 -Adelie,Torgersen,35.5,17.5,190,3700,female,2008 -Adelie,Torgersen,42.8,18.5,195,4250,male,2008 -Adelie,Torgersen,40.9,16.8,191,3700,female,2008 -Adelie,Torgersen,37.2,19.4,184,3900,male,2008 -Adelie,Torgersen,36.2,16.1,187,3550,female,2008 -Adelie,Torgersen,42.1,19.1,195,4000,male,2008 -Adelie,Torgersen,34.6,17.2,189,3200,female,2008 -Adelie,Torgersen,42.9,17.6,196,4700,male,2008 -Adelie,Torgersen,36.7,18.8,187,3800,female,2008 -Adelie,Torgersen,35.1,19.4,193,4200,male,2008 -Adelie,Dream,37.3,17.8,191,3350,female,2008 -Adelie,Dream,41.3,20.3,194,3550,male,2008 -Adelie,Dream,36.3,19.5,190,3800,male,2008 -Adelie,Dream,36.9,18.6,189,3500,female,2008 -Adelie,Dream,38.3,19.2,189,3950,male,2008 -Adelie,Dream,38.9,18.8,190,3600,female,2008 -Adelie,Dream,35.7,18,202,3550,female,2008 -Adelie,Dream,41.1,18.1,205,4300,male,2008 -Adelie,Dream,34,17.1,185,3400,female,2008 -Adelie,Dream,39.6,18.1,186,4450,male,2008 -Adelie,Dream,36.2,17.3,187,3300,female,2008 -Adelie,Dream,40.8,18.9,208,4300,male,2008 -Adelie,Dream,38.1,18.6,190,3700,female,2008 -Adelie,Dream,40.3,18.5,196,4350,male,2008 -Adelie,Dream,33.1,16.1,178,2900,female,2008 -Adelie,Dream,43.2,18.5,192,4100,male,2008 -Adelie,Biscoe,35,17.9,192,3725,female,2009 -Adelie,Biscoe,41,20,203,4725,male,2009 -Adelie,Biscoe,37.7,16,183,3075,female,2009 -Adelie,Biscoe,37.8,20,190,4250,male,2009 -Adelie,Biscoe,37.9,18.6,193,2925,female,2009 -Adelie,Biscoe,39.7,18.9,184,3550,male,2009 -Adelie,Biscoe,38.6,17.2,199,3750,female,2009 -Adelie,Biscoe,38.2,20,190,3900,male,2009 -Adelie,Biscoe,38.1,17,181,3175,female,2009 -Adelie,Biscoe,43.2,19,197,4775,male,2009 -Adelie,Biscoe,38.1,16.5,198,3825,female,2009 -Adelie,Biscoe,45.6,20.3,191,4600,male,2009 -Adelie,Biscoe,39.7,17.7,193,3200,female,2009 -Adelie,Biscoe,42.2,19.5,197,4275,male,2009 -Adelie,Biscoe,39.6,20.7,191,3900,female,2009 -Adelie,Biscoe,42.7,18.3,196,4075,male,2009 -Adelie,Torgersen,38.6,17,188,2900,female,2009 -Adelie,Torgersen,37.3,20.5,199,3775,male,2009 -Adelie,Torgersen,35.7,17,189,3350,female,2009 -Adelie,Torgersen,41.1,18.6,189,3325,male,2009 -Adelie,Torgersen,36.2,17.2,187,3150,female,2009 -Adelie,Torgersen,37.7,19.8,198,3500,male,2009 -Adelie,Torgersen,40.2,17,176,3450,female,2009 -Adelie,Torgersen,41.4,18.5,202,3875,male,2009 -Adelie,Torgersen,35.2,15.9,186,3050,female,2009 -Adelie,Torgersen,40.6,19,199,4000,male,2009 -Adelie,Torgersen,38.8,17.6,191,3275,female,2009 -Adelie,Torgersen,41.5,18.3,195,4300,male,2009 -Adelie,Torgersen,39,17.1,191,3050,female,2009 -Adelie,Torgersen,44.1,18,210,4000,male,2009 -Adelie,Torgersen,38.5,17.9,190,3325,female,2009 -Adelie,Torgersen,43.1,19.2,197,3500,male,2009 -Adelie,Dream,36.8,18.5,193,3500,female,2009 -Adelie,Dream,37.5,18.5,199,4475,male,2009 -Adelie,Dream,38.1,17.6,187,3425,female,2009 -Adelie,Dream,41.1,17.5,190,3900,male,2009 -Adelie,Dream,35.6,17.5,191,3175,female,2009 -Adelie,Dream,40.2,20.1,200,3975,male,2009 -Adelie,Dream,37,16.5,185,3400,female,2009 -Adelie,Dream,39.7,17.9,193,4250,male,2009 -Adelie,Dream,40.2,17.1,193,3400,female,2009 -Adelie,Dream,40.6,17.2,187,3475,male,2009 -Adelie,Dream,32.1,15.5,188,3050,female,2009 -Adelie,Dream,40.7,17,190,3725,male,2009 -Adelie,Dream,37.3,16.8,192,3000,female,2009 -Adelie,Dream,39,18.7,185,3650,male,2009 -Adelie,Dream,39.2,18.6,190,4250,male,2009 -Adelie,Dream,36.6,18.4,184,3475,female,2009 -Adelie,Dream,36,17.8,195,3450,female,2009 -Adelie,Dream,37.8,18.1,193,3750,male,2009 -Adelie,Dream,36,17.1,187,3700,female,2009 -Adelie,Dream,41.5,18.5,201,4000,male,2009 -Gentoo,Biscoe,46.1,13.2,211,4500,female,2007 -Gentoo,Biscoe,50,16.3,230,5700,male,2007 -Gentoo,Biscoe,48.7,14.1,210,4450,female,2007 -Gentoo,Biscoe,50,15.2,218,5700,male,2007 -Gentoo,Biscoe,47.6,14.5,215,5400,male,2007 -Gentoo,Biscoe,46.5,13.5,210,4550,female,2007 -Gentoo,Biscoe,45.4,14.6,211,4800,female,2007 -Gentoo,Biscoe,46.7,15.3,219,5200,male,2007 -Gentoo,Biscoe,43.3,13.4,209,4400,female,2007 -Gentoo,Biscoe,46.8,15.4,215,5150,male,2007 -Gentoo,Biscoe,40.9,13.7,214,4650,female,2007 -Gentoo,Biscoe,49,16.1,216,5550,male,2007 -Gentoo,Biscoe,45.5,13.7,214,4650,female,2007 -Gentoo,Biscoe,48.4,14.6,213,5850,male,2007 -Gentoo,Biscoe,45.8,14.6,210,4200,female,2007 -Gentoo,Biscoe,49.3,15.7,217,5850,male,2007 -Gentoo,Biscoe,42,13.5,210,4150,female,2007 -Gentoo,Biscoe,49.2,15.2,221,6300,male,2007 -Gentoo,Biscoe,46.2,14.5,209,4800,female,2007 -Gentoo,Biscoe,48.7,15.1,222,5350,male,2007 -Gentoo,Biscoe,50.2,14.3,218,5700,male,2007 -Gentoo,Biscoe,45.1,14.5,215,5000,female,2007 -Gentoo,Biscoe,46.5,14.5,213,4400,female,2007 -Gentoo,Biscoe,46.3,15.8,215,5050,male,2007 -Gentoo,Biscoe,42.9,13.1,215,5000,female,2007 -Gentoo,Biscoe,46.1,15.1,215,5100,male,2007 -Gentoo,Biscoe,44.5,14.3,216,4100,,2007 -Gentoo,Biscoe,47.8,15,215,5650,male,2007 -Gentoo,Biscoe,48.2,14.3,210,4600,female,2007 -Gentoo,Biscoe,50,15.3,220,5550,male,2007 -Gentoo,Biscoe,47.3,15.3,222,5250,male,2007 -Gentoo,Biscoe,42.8,14.2,209,4700,female,2007 -Gentoo,Biscoe,45.1,14.5,207,5050,female,2007 -Gentoo,Biscoe,59.6,17,230,6050,male,2007 -Gentoo,Biscoe,49.1,14.8,220,5150,female,2008 -Gentoo,Biscoe,48.4,16.3,220,5400,male,2008 -Gentoo,Biscoe,42.6,13.7,213,4950,female,2008 -Gentoo,Biscoe,44.4,17.3,219,5250,male,2008 -Gentoo,Biscoe,44,13.6,208,4350,female,2008 -Gentoo,Biscoe,48.7,15.7,208,5350,male,2008 -Gentoo,Biscoe,42.7,13.7,208,3950,female,2008 -Gentoo,Biscoe,49.6,16,225,5700,male,2008 -Gentoo,Biscoe,45.3,13.7,210,4300,female,2008 -Gentoo,Biscoe,49.6,15,216,4750,male,2008 -Gentoo,Biscoe,50.5,15.9,222,5550,male,2008 -Gentoo,Biscoe,43.6,13.9,217,4900,female,2008 -Gentoo,Biscoe,45.5,13.9,210,4200,female,2008 -Gentoo,Biscoe,50.5,15.9,225,5400,male,2008 -Gentoo,Biscoe,44.9,13.3,213,5100,female,2008 -Gentoo,Biscoe,45.2,15.8,215,5300,male,2008 -Gentoo,Biscoe,46.6,14.2,210,4850,female,2008 -Gentoo,Biscoe,48.5,14.1,220,5300,male,2008 -Gentoo,Biscoe,45.1,14.4,210,4400,female,2008 -Gentoo,Biscoe,50.1,15,225,5000,male,2008 -Gentoo,Biscoe,46.5,14.4,217,4900,female,2008 -Gentoo,Biscoe,45,15.4,220,5050,male,2008 -Gentoo,Biscoe,43.8,13.9,208,4300,female,2008 -Gentoo,Biscoe,45.5,15,220,5000,male,2008 -Gentoo,Biscoe,43.2,14.5,208,4450,female,2008 -Gentoo,Biscoe,50.4,15.3,224,5550,male,2008 -Gentoo,Biscoe,45.3,13.8,208,4200,female,2008 -Gentoo,Biscoe,46.2,14.9,221,5300,male,2008 -Gentoo,Biscoe,45.7,13.9,214,4400,female,2008 -Gentoo,Biscoe,54.3,15.7,231,5650,male,2008 -Gentoo,Biscoe,45.8,14.2,219,4700,female,2008 -Gentoo,Biscoe,49.8,16.8,230,5700,male,2008 -Gentoo,Biscoe,46.2,14.4,214,4650,,2008 -Gentoo,Biscoe,49.5,16.2,229,5800,male,2008 -Gentoo,Biscoe,43.5,14.2,220,4700,female,2008 -Gentoo,Biscoe,50.7,15,223,5550,male,2008 -Gentoo,Biscoe,47.7,15,216,4750,female,2008 -Gentoo,Biscoe,46.4,15.6,221,5000,male,2008 -Gentoo,Biscoe,48.2,15.6,221,5100,male,2008 -Gentoo,Biscoe,46.5,14.8,217,5200,female,2008 -Gentoo,Biscoe,46.4,15,216,4700,female,2008 -Gentoo,Biscoe,48.6,16,230,5800,male,2008 -Gentoo,Biscoe,47.5,14.2,209,4600,female,2008 -Gentoo,Biscoe,51.1,16.3,220,6000,male,2008 -Gentoo,Biscoe,45.2,13.8,215,4750,female,2008 -Gentoo,Biscoe,45.2,16.4,223,5950,male,2008 -Gentoo,Biscoe,49.1,14.5,212,4625,female,2009 -Gentoo,Biscoe,52.5,15.6,221,5450,male,2009 -Gentoo,Biscoe,47.4,14.6,212,4725,female,2009 -Gentoo,Biscoe,50,15.9,224,5350,male,2009 -Gentoo,Biscoe,44.9,13.8,212,4750,female,2009 -Gentoo,Biscoe,50.8,17.3,228,5600,male,2009 -Gentoo,Biscoe,43.4,14.4,218,4600,female,2009 -Gentoo,Biscoe,51.3,14.2,218,5300,male,2009 -Gentoo,Biscoe,47.5,14,212,4875,female,2009 -Gentoo,Biscoe,52.1,17,230,5550,male,2009 -Gentoo,Biscoe,47.5,15,218,4950,female,2009 -Gentoo,Biscoe,52.2,17.1,228,5400,male,2009 -Gentoo,Biscoe,45.5,14.5,212,4750,female,2009 -Gentoo,Biscoe,49.5,16.1,224,5650,male,2009 -Gentoo,Biscoe,44.5,14.7,214,4850,female,2009 -Gentoo,Biscoe,50.8,15.7,226,5200,male,2009 -Gentoo,Biscoe,49.4,15.8,216,4925,male,2009 -Gentoo,Biscoe,46.9,14.6,222,4875,female,2009 -Gentoo,Biscoe,48.4,14.4,203,4625,female,2009 -Gentoo,Biscoe,51.1,16.5,225,5250,male,2009 -Gentoo,Biscoe,48.5,15,219,4850,female,2009 -Gentoo,Biscoe,55.9,17,228,5600,male,2009 -Gentoo,Biscoe,47.2,15.5,215,4975,female,2009 -Gentoo,Biscoe,49.1,15,228,5500,male,2009 -Gentoo,Biscoe,47.3,13.8,216,4725,,2009 -Gentoo,Biscoe,46.8,16.1,215,5500,male,2009 -Gentoo,Biscoe,41.7,14.7,210,4700,female,2009 -Gentoo,Biscoe,53.4,15.8,219,5500,male,2009 -Gentoo,Biscoe,43.3,14,208,4575,female,2009 -Gentoo,Biscoe,48.1,15.1,209,5500,male,2009 -Gentoo,Biscoe,50.5,15.2,216,5000,female,2009 -Gentoo,Biscoe,49.8,15.9,229,5950,male,2009 -Gentoo,Biscoe,43.5,15.2,213,4650,female,2009 -Gentoo,Biscoe,51.5,16.3,230,5500,male,2009 -Gentoo,Biscoe,46.2,14.1,217,4375,female,2009 -Gentoo,Biscoe,55.1,16,230,5850,male,2009 -Gentoo,Biscoe,44.5,15.7,217,4875,,2009 -Gentoo,Biscoe,48.8,16.2,222,6000,male,2009 -Gentoo,Biscoe,47.2,13.7,214,4925,female,2009 -Gentoo,Biscoe,,,,,,2009 -Gentoo,Biscoe,46.8,14.3,215,4850,female,2009 -Gentoo,Biscoe,50.4,15.7,222,5750,male,2009 -Gentoo,Biscoe,45.2,14.8,212,5200,female,2009 -Gentoo,Biscoe,49.9,16.1,213,5400,male,2009 -Chinstrap,Dream,46.5,17.9,192,3500,female,2007 -Chinstrap,Dream,50,19.5,196,3900,male,2007 -Chinstrap,Dream,51.3,19.2,193,3650,male,2007 -Chinstrap,Dream,45.4,18.7,188,3525,female,2007 -Chinstrap,Dream,52.7,19.8,197,3725,male,2007 -Chinstrap,Dream,45.2,17.8,198,3950,female,2007 -Chinstrap,Dream,46.1,18.2,178,3250,female,2007 -Chinstrap,Dream,51.3,18.2,197,3750,male,2007 -Chinstrap,Dream,46,18.9,195,4150,female,2007 -Chinstrap,Dream,51.3,19.9,198,3700,male,2007 -Chinstrap,Dream,46.6,17.8,193,3800,female,2007 -Chinstrap,Dream,51.7,20.3,194,3775,male,2007 -Chinstrap,Dream,47,17.3,185,3700,female,2007 -Chinstrap,Dream,52,18.1,201,4050,male,2007 -Chinstrap,Dream,45.9,17.1,190,3575,female,2007 -Chinstrap,Dream,50.5,19.6,201,4050,male,2007 -Chinstrap,Dream,50.3,20,197,3300,male,2007 -Chinstrap,Dream,58,17.8,181,3700,female,2007 -Chinstrap,Dream,46.4,18.6,190,3450,female,2007 -Chinstrap,Dream,49.2,18.2,195,4400,male,2007 -Chinstrap,Dream,42.4,17.3,181,3600,female,2007 -Chinstrap,Dream,48.5,17.5,191,3400,male,2007 -Chinstrap,Dream,43.2,16.6,187,2900,female,2007 -Chinstrap,Dream,50.6,19.4,193,3800,male,2007 -Chinstrap,Dream,46.7,17.9,195,3300,female,2007 -Chinstrap,Dream,52,19,197,4150,male,2007 -Chinstrap,Dream,50.5,18.4,200,3400,female,2008 -Chinstrap,Dream,49.5,19,200,3800,male,2008 -Chinstrap,Dream,46.4,17.8,191,3700,female,2008 -Chinstrap,Dream,52.8,20,205,4550,male,2008 -Chinstrap,Dream,40.9,16.6,187,3200,female,2008 -Chinstrap,Dream,54.2,20.8,201,4300,male,2008 -Chinstrap,Dream,42.5,16.7,187,3350,female,2008 -Chinstrap,Dream,51,18.8,203,4100,male,2008 -Chinstrap,Dream,49.7,18.6,195,3600,male,2008 -Chinstrap,Dream,47.5,16.8,199,3900,female,2008 -Chinstrap,Dream,47.6,18.3,195,3850,female,2008 -Chinstrap,Dream,52,20.7,210,4800,male,2008 -Chinstrap,Dream,46.9,16.6,192,2700,female,2008 -Chinstrap,Dream,53.5,19.9,205,4500,male,2008 -Chinstrap,Dream,49,19.5,210,3950,male,2008 -Chinstrap,Dream,46.2,17.5,187,3650,female,2008 -Chinstrap,Dream,50.9,19.1,196,3550,male,2008 -Chinstrap,Dream,45.5,17,196,3500,female,2008 -Chinstrap,Dream,50.9,17.9,196,3675,female,2009 -Chinstrap,Dream,50.8,18.5,201,4450,male,2009 -Chinstrap,Dream,50.1,17.9,190,3400,female,2009 -Chinstrap,Dream,49,19.6,212,4300,male,2009 -Chinstrap,Dream,51.5,18.7,187,3250,male,2009 -Chinstrap,Dream,49.8,17.3,198,3675,female,2009 -Chinstrap,Dream,48.1,16.4,199,3325,female,2009 -Chinstrap,Dream,51.4,19,201,3950,male,2009 -Chinstrap,Dream,45.7,17.3,193,3600,female,2009 -Chinstrap,Dream,50.7,19.7,203,4050,male,2009 -Chinstrap,Dream,42.5,17.3,187,3350,female,2009 -Chinstrap,Dream,52.2,18.8,197,3450,male,2009 -Chinstrap,Dream,45.2,16.6,191,3250,female,2009 -Chinstrap,Dream,49.3,19.9,203,4050,male,2009 -Chinstrap,Dream,50.2,18.8,202,3800,male,2009 -Chinstrap,Dream,45.6,19.4,194,3525,female,2009 -Chinstrap,Dream,51.9,19.5,206,3950,male,2009 -Chinstrap,Dream,46.8,16.5,189,3650,female,2009 -Chinstrap,Dream,45.7,17,195,3650,female,2009 -Chinstrap,Dream,55.8,19.8,207,4000,male,2009 -Chinstrap,Dream,43.5,18.1,202,3400,female,2009 -Chinstrap,Dream,49.6,18.2,193,3775,male,2009 -Chinstrap,Dream,50.8,19,210,4100,male,2009 -Chinstrap,Dream,50.2,18.7,198,3775,female,2009 +species,island,bill_length_mm,bill_depth_mm,flipper_length_mm,body_mass_g,sex,year +Adelie,Torgersen,39.1,18.7,181,3750,male,2007 +Adelie,Torgersen,39.5,17.4,186,3800,female,2007 +Adelie,Torgersen,40.3,18,195,3250,female,2007 +Adelie,Torgersen,,,,,,2007 +Adelie,Torgersen,36.7,19.3,193,3450,female,2007 +Adelie,Torgersen,39.3,20.6,190,3650,male,2007 +Adelie,Torgersen,38.9,17.8,181,3625,female,2007 +Adelie,Torgersen,39.2,19.6,195,4675,male,2007 +Adelie,Torgersen,34.1,18.1,193,3475,,2007 +Adelie,Torgersen,42,20.2,190,4250,,2007 +Adelie,Torgersen,37.8,17.1,186,3300,,2007 +Adelie,Torgersen,37.8,17.3,180,3700,,2007 +Adelie,Torgersen,41.1,17.6,182,3200,female,2007 +Adelie,Torgersen,38.6,21.2,191,3800,male,2007 +Adelie,Torgersen,34.6,21.1,198,4400,male,2007 +Adelie,Torgersen,36.6,17.8,185,3700,female,2007 +Adelie,Torgersen,38.7,19,195,3450,female,2007 +Adelie,Torgersen,42.5,20.7,197,4500,male,2007 +Adelie,Torgersen,34.4,18.4,184,3325,female,2007 +Adelie,Torgersen,46,21.5,194,4200,male,2007 +Adelie,Biscoe,37.8,18.3,174,3400,female,2007 +Adelie,Biscoe,37.7,18.7,180,3600,male,2007 +Adelie,Biscoe,35.9,19.2,189,3800,female,2007 +Adelie,Biscoe,38.2,18.1,185,3950,male,2007 +Adelie,Biscoe,38.8,17.2,180,3800,male,2007 +Adelie,Biscoe,35.3,18.9,187,3800,female,2007 +Adelie,Biscoe,40.6,18.6,183,3550,male,2007 +Adelie,Biscoe,40.5,17.9,187,3200,female,2007 +Adelie,Biscoe,37.9,18.6,172,3150,female,2007 +Adelie,Biscoe,40.5,18.9,180,3950,male,2007 +Adelie,Dream,39.5,16.7,178,3250,female,2007 +Adelie,Dream,37.2,18.1,178,3900,male,2007 +Adelie,Dream,39.5,17.8,188,3300,female,2007 +Adelie,Dream,40.9,18.9,184,3900,male,2007 +Adelie,Dream,36.4,17,195,3325,female,2007 +Adelie,Dream,39.2,21.1,196,4150,male,2007 +Adelie,Dream,38.8,20,190,3950,male,2007 +Adelie,Dream,42.2,18.5,180,3550,female,2007 +Adelie,Dream,37.6,19.3,181,3300,female,2007 +Adelie,Dream,39.8,19.1,184,4650,male,2007 +Adelie,Dream,36.5,18,182,3150,female,2007 +Adelie,Dream,40.8,18.4,195,3900,male,2007 +Adelie,Dream,36,18.5,186,3100,female,2007 +Adelie,Dream,44.1,19.7,196,4400,male,2007 +Adelie,Dream,37,16.9,185,3000,female,2007 +Adelie,Dream,39.6,18.8,190,4600,male,2007 +Adelie,Dream,41.1,19,182,3425,male,2007 +Adelie,Dream,37.5,18.9,179,2975,,2007 +Adelie,Dream,36,17.9,190,3450,female,2007 +Adelie,Dream,42.3,21.2,191,4150,male,2007 +Adelie,Biscoe,39.6,17.7,186,3500,female,2008 +Adelie,Biscoe,40.1,18.9,188,4300,male,2008 +Adelie,Biscoe,35,17.9,190,3450,female,2008 +Adelie,Biscoe,42,19.5,200,4050,male,2008 +Adelie,Biscoe,34.5,18.1,187,2900,female,2008 +Adelie,Biscoe,41.4,18.6,191,3700,male,2008 +Adelie,Biscoe,39,17.5,186,3550,female,2008 +Adelie,Biscoe,40.6,18.8,193,3800,male,2008 +Adelie,Biscoe,36.5,16.6,181,2850,female,2008 +Adelie,Biscoe,37.6,19.1,194,3750,male,2008 +Adelie,Biscoe,35.7,16.9,185,3150,female,2008 +Adelie,Biscoe,41.3,21.1,195,4400,male,2008 +Adelie,Biscoe,37.6,17,185,3600,female,2008 +Adelie,Biscoe,41.1,18.2,192,4050,male,2008 +Adelie,Biscoe,36.4,17.1,184,2850,female,2008 +Adelie,Biscoe,41.6,18,192,3950,male,2008 +Adelie,Biscoe,35.5,16.2,195,3350,female,2008 +Adelie,Biscoe,41.1,19.1,188,4100,male,2008 +Adelie,Torgersen,35.9,16.6,190,3050,female,2008 +Adelie,Torgersen,41.8,19.4,198,4450,male,2008 +Adelie,Torgersen,33.5,19,190,3600,female,2008 +Adelie,Torgersen,39.7,18.4,190,3900,male,2008 +Adelie,Torgersen,39.6,17.2,196,3550,female,2008 +Adelie,Torgersen,45.8,18.9,197,4150,male,2008 +Adelie,Torgersen,35.5,17.5,190,3700,female,2008 +Adelie,Torgersen,42.8,18.5,195,4250,male,2008 +Adelie,Torgersen,40.9,16.8,191,3700,female,2008 +Adelie,Torgersen,37.2,19.4,184,3900,male,2008 +Adelie,Torgersen,36.2,16.1,187,3550,female,2008 +Adelie,Torgersen,42.1,19.1,195,4000,male,2008 +Adelie,Torgersen,34.6,17.2,189,3200,female,2008 +Adelie,Torgersen,42.9,17.6,196,4700,male,2008 +Adelie,Torgersen,36.7,18.8,187,3800,female,2008 +Adelie,Torgersen,35.1,19.4,193,4200,male,2008 +Adelie,Dream,37.3,17.8,191,3350,female,2008 +Adelie,Dream,41.3,20.3,194,3550,male,2008 +Adelie,Dream,36.3,19.5,190,3800,male,2008 +Adelie,Dream,36.9,18.6,189,3500,female,2008 +Adelie,Dream,38.3,19.2,189,3950,male,2008 +Adelie,Dream,38.9,18.8,190,3600,female,2008 +Adelie,Dream,35.7,18,202,3550,female,2008 +Adelie,Dream,41.1,18.1,205,4300,male,2008 +Adelie,Dream,34,17.1,185,3400,female,2008 +Adelie,Dream,39.6,18.1,186,4450,male,2008 +Adelie,Dream,36.2,17.3,187,3300,female,2008 +Adelie,Dream,40.8,18.9,208,4300,male,2008 +Adelie,Dream,38.1,18.6,190,3700,female,2008 +Adelie,Dream,40.3,18.5,196,4350,male,2008 +Adelie,Dream,33.1,16.1,178,2900,female,2008 +Adelie,Dream,43.2,18.5,192,4100,male,2008 +Adelie,Biscoe,35,17.9,192,3725,female,2009 +Adelie,Biscoe,41,20,203,4725,male,2009 +Adelie,Biscoe,37.7,16,183,3075,female,2009 +Adelie,Biscoe,37.8,20,190,4250,male,2009 +Adelie,Biscoe,37.9,18.6,193,2925,female,2009 +Adelie,Biscoe,39.7,18.9,184,3550,male,2009 +Adelie,Biscoe,38.6,17.2,199,3750,female,2009 +Adelie,Biscoe,38.2,20,190,3900,male,2009 +Adelie,Biscoe,38.1,17,181,3175,female,2009 +Adelie,Biscoe,43.2,19,197,4775,male,2009 +Adelie,Biscoe,38.1,16.5,198,3825,female,2009 +Adelie,Biscoe,45.6,20.3,191,4600,male,2009 +Adelie,Biscoe,39.7,17.7,193,3200,female,2009 +Adelie,Biscoe,42.2,19.5,197,4275,male,2009 +Adelie,Biscoe,39.6,20.7,191,3900,female,2009 +Adelie,Biscoe,42.7,18.3,196,4075,male,2009 +Adelie,Torgersen,38.6,17,188,2900,female,2009 +Adelie,Torgersen,37.3,20.5,199,3775,male,2009 +Adelie,Torgersen,35.7,17,189,3350,female,2009 +Adelie,Torgersen,41.1,18.6,189,3325,male,2009 +Adelie,Torgersen,36.2,17.2,187,3150,female,2009 +Adelie,Torgersen,37.7,19.8,198,3500,male,2009 +Adelie,Torgersen,40.2,17,176,3450,female,2009 +Adelie,Torgersen,41.4,18.5,202,3875,male,2009 +Adelie,Torgersen,35.2,15.9,186,3050,female,2009 +Adelie,Torgersen,40.6,19,199,4000,male,2009 +Adelie,Torgersen,38.8,17.6,191,3275,female,2009 +Adelie,Torgersen,41.5,18.3,195,4300,male,2009 +Adelie,Torgersen,39,17.1,191,3050,female,2009 +Adelie,Torgersen,44.1,18,210,4000,male,2009 +Adelie,Torgersen,38.5,17.9,190,3325,female,2009 +Adelie,Torgersen,43.1,19.2,197,3500,male,2009 +Adelie,Dream,36.8,18.5,193,3500,female,2009 +Adelie,Dream,37.5,18.5,199,4475,male,2009 +Adelie,Dream,38.1,17.6,187,3425,female,2009 +Adelie,Dream,41.1,17.5,190,3900,male,2009 +Adelie,Dream,35.6,17.5,191,3175,female,2009 +Adelie,Dream,40.2,20.1,200,3975,male,2009 +Adelie,Dream,37,16.5,185,3400,female,2009 +Adelie,Dream,39.7,17.9,193,4250,male,2009 +Adelie,Dream,40.2,17.1,193,3400,female,2009 +Adelie,Dream,40.6,17.2,187,3475,male,2009 +Adelie,Dream,32.1,15.5,188,3050,female,2009 +Adelie,Dream,40.7,17,190,3725,male,2009 +Adelie,Dream,37.3,16.8,192,3000,female,2009 +Adelie,Dream,39,18.7,185,3650,male,2009 +Adelie,Dream,39.2,18.6,190,4250,male,2009 +Adelie,Dream,36.6,18.4,184,3475,female,2009 +Adelie,Dream,36,17.8,195,3450,female,2009 +Adelie,Dream,37.8,18.1,193,3750,male,2009 +Adelie,Dream,36,17.1,187,3700,female,2009 +Adelie,Dream,41.5,18.5,201,4000,male,2009 +Gentoo,Biscoe,46.1,13.2,211,4500,female,2007 +Gentoo,Biscoe,50,16.3,230,5700,male,2007 +Gentoo,Biscoe,48.7,14.1,210,4450,female,2007 +Gentoo,Biscoe,50,15.2,218,5700,male,2007 +Gentoo,Biscoe,47.6,14.5,215,5400,male,2007 +Gentoo,Biscoe,46.5,13.5,210,4550,female,2007 +Gentoo,Biscoe,45.4,14.6,211,4800,female,2007 +Gentoo,Biscoe,46.7,15.3,219,5200,male,2007 +Gentoo,Biscoe,43.3,13.4,209,4400,female,2007 +Gentoo,Biscoe,46.8,15.4,215,5150,male,2007 +Gentoo,Biscoe,40.9,13.7,214,4650,female,2007 +Gentoo,Biscoe,49,16.1,216,5550,male,2007 +Gentoo,Biscoe,45.5,13.7,214,4650,female,2007 +Gentoo,Biscoe,48.4,14.6,213,5850,male,2007 +Gentoo,Biscoe,45.8,14.6,210,4200,female,2007 +Gentoo,Biscoe,49.3,15.7,217,5850,male,2007 +Gentoo,Biscoe,42,13.5,210,4150,female,2007 +Gentoo,Biscoe,49.2,15.2,221,6300,male,2007 +Gentoo,Biscoe,46.2,14.5,209,4800,female,2007 +Gentoo,Biscoe,48.7,15.1,222,5350,male,2007 +Gentoo,Biscoe,50.2,14.3,218,5700,male,2007 +Gentoo,Biscoe,45.1,14.5,215,5000,female,2007 +Gentoo,Biscoe,46.5,14.5,213,4400,female,2007 +Gentoo,Biscoe,46.3,15.8,215,5050,male,2007 +Gentoo,Biscoe,42.9,13.1,215,5000,female,2007 +Gentoo,Biscoe,46.1,15.1,215,5100,male,2007 +Gentoo,Biscoe,44.5,14.3,216,4100,,2007 +Gentoo,Biscoe,47.8,15,215,5650,male,2007 +Gentoo,Biscoe,48.2,14.3,210,4600,female,2007 +Gentoo,Biscoe,50,15.3,220,5550,male,2007 +Gentoo,Biscoe,47.3,15.3,222,5250,male,2007 +Gentoo,Biscoe,42.8,14.2,209,4700,female,2007 +Gentoo,Biscoe,45.1,14.5,207,5050,female,2007 +Gentoo,Biscoe,59.6,17,230,6050,male,2007 +Gentoo,Biscoe,49.1,14.8,220,5150,female,2008 +Gentoo,Biscoe,48.4,16.3,220,5400,male,2008 +Gentoo,Biscoe,42.6,13.7,213,4950,female,2008 +Gentoo,Biscoe,44.4,17.3,219,5250,male,2008 +Gentoo,Biscoe,44,13.6,208,4350,female,2008 +Gentoo,Biscoe,48.7,15.7,208,5350,male,2008 +Gentoo,Biscoe,42.7,13.7,208,3950,female,2008 +Gentoo,Biscoe,49.6,16,225,5700,male,2008 +Gentoo,Biscoe,45.3,13.7,210,4300,female,2008 +Gentoo,Biscoe,49.6,15,216,4750,male,2008 +Gentoo,Biscoe,50.5,15.9,222,5550,male,2008 +Gentoo,Biscoe,43.6,13.9,217,4900,female,2008 +Gentoo,Biscoe,45.5,13.9,210,4200,female,2008 +Gentoo,Biscoe,50.5,15.9,225,5400,male,2008 +Gentoo,Biscoe,44.9,13.3,213,5100,female,2008 +Gentoo,Biscoe,45.2,15.8,215,5300,male,2008 +Gentoo,Biscoe,46.6,14.2,210,4850,female,2008 +Gentoo,Biscoe,48.5,14.1,220,5300,male,2008 +Gentoo,Biscoe,45.1,14.4,210,4400,female,2008 +Gentoo,Biscoe,50.1,15,225,5000,male,2008 +Gentoo,Biscoe,46.5,14.4,217,4900,female,2008 +Gentoo,Biscoe,45,15.4,220,5050,male,2008 +Gentoo,Biscoe,43.8,13.9,208,4300,female,2008 +Gentoo,Biscoe,45.5,15,220,5000,male,2008 +Gentoo,Biscoe,43.2,14.5,208,4450,female,2008 +Gentoo,Biscoe,50.4,15.3,224,5550,male,2008 +Gentoo,Biscoe,45.3,13.8,208,4200,female,2008 +Gentoo,Biscoe,46.2,14.9,221,5300,male,2008 +Gentoo,Biscoe,45.7,13.9,214,4400,female,2008 +Gentoo,Biscoe,54.3,15.7,231,5650,male,2008 +Gentoo,Biscoe,45.8,14.2,219,4700,female,2008 +Gentoo,Biscoe,49.8,16.8,230,5700,male,2008 +Gentoo,Biscoe,46.2,14.4,214,4650,,2008 +Gentoo,Biscoe,49.5,16.2,229,5800,male,2008 +Gentoo,Biscoe,43.5,14.2,220,4700,female,2008 +Gentoo,Biscoe,50.7,15,223,5550,male,2008 +Gentoo,Biscoe,47.7,15,216,4750,female,2008 +Gentoo,Biscoe,46.4,15.6,221,5000,male,2008 +Gentoo,Biscoe,48.2,15.6,221,5100,male,2008 +Gentoo,Biscoe,46.5,14.8,217,5200,female,2008 +Gentoo,Biscoe,46.4,15,216,4700,female,2008 +Gentoo,Biscoe,48.6,16,230,5800,male,2008 +Gentoo,Biscoe,47.5,14.2,209,4600,female,2008 +Gentoo,Biscoe,51.1,16.3,220,6000,male,2008 +Gentoo,Biscoe,45.2,13.8,215,4750,female,2008 +Gentoo,Biscoe,45.2,16.4,223,5950,male,2008 +Gentoo,Biscoe,49.1,14.5,212,4625,female,2009 +Gentoo,Biscoe,52.5,15.6,221,5450,male,2009 +Gentoo,Biscoe,47.4,14.6,212,4725,female,2009 +Gentoo,Biscoe,50,15.9,224,5350,male,2009 +Gentoo,Biscoe,44.9,13.8,212,4750,female,2009 +Gentoo,Biscoe,50.8,17.3,228,5600,male,2009 +Gentoo,Biscoe,43.4,14.4,218,4600,female,2009 +Gentoo,Biscoe,51.3,14.2,218,5300,male,2009 +Gentoo,Biscoe,47.5,14,212,4875,female,2009 +Gentoo,Biscoe,52.1,17,230,5550,male,2009 +Gentoo,Biscoe,47.5,15,218,4950,female,2009 +Gentoo,Biscoe,52.2,17.1,228,5400,male,2009 +Gentoo,Biscoe,45.5,14.5,212,4750,female,2009 +Gentoo,Biscoe,49.5,16.1,224,5650,male,2009 +Gentoo,Biscoe,44.5,14.7,214,4850,female,2009 +Gentoo,Biscoe,50.8,15.7,226,5200,male,2009 +Gentoo,Biscoe,49.4,15.8,216,4925,male,2009 +Gentoo,Biscoe,46.9,14.6,222,4875,female,2009 +Gentoo,Biscoe,48.4,14.4,203,4625,female,2009 +Gentoo,Biscoe,51.1,16.5,225,5250,male,2009 +Gentoo,Biscoe,48.5,15,219,4850,female,2009 +Gentoo,Biscoe,55.9,17,228,5600,male,2009 +Gentoo,Biscoe,47.2,15.5,215,4975,female,2009 +Gentoo,Biscoe,49.1,15,228,5500,male,2009 +Gentoo,Biscoe,47.3,13.8,216,4725,,2009 +Gentoo,Biscoe,46.8,16.1,215,5500,male,2009 +Gentoo,Biscoe,41.7,14.7,210,4700,female,2009 +Gentoo,Biscoe,53.4,15.8,219,5500,male,2009 +Gentoo,Biscoe,43.3,14,208,4575,female,2009 +Gentoo,Biscoe,48.1,15.1,209,5500,male,2009 +Gentoo,Biscoe,50.5,15.2,216,5000,female,2009 +Gentoo,Biscoe,49.8,15.9,229,5950,male,2009 +Gentoo,Biscoe,43.5,15.2,213,4650,female,2009 +Gentoo,Biscoe,51.5,16.3,230,5500,male,2009 +Gentoo,Biscoe,46.2,14.1,217,4375,female,2009 +Gentoo,Biscoe,55.1,16,230,5850,male,2009 +Gentoo,Biscoe,44.5,15.7,217,4875,,2009 +Gentoo,Biscoe,48.8,16.2,222,6000,male,2009 +Gentoo,Biscoe,47.2,13.7,214,4925,female,2009 +Gentoo,Biscoe,,,,,,2009 +Gentoo,Biscoe,46.8,14.3,215,4850,female,2009 +Gentoo,Biscoe,50.4,15.7,222,5750,male,2009 +Gentoo,Biscoe,45.2,14.8,212,5200,female,2009 +Gentoo,Biscoe,49.9,16.1,213,5400,male,2009 +Chinstrap,Dream,46.5,17.9,192,3500,female,2007 +Chinstrap,Dream,50,19.5,196,3900,male,2007 +Chinstrap,Dream,51.3,19.2,193,3650,male,2007 +Chinstrap,Dream,45.4,18.7,188,3525,female,2007 +Chinstrap,Dream,52.7,19.8,197,3725,male,2007 +Chinstrap,Dream,45.2,17.8,198,3950,female,2007 +Chinstrap,Dream,46.1,18.2,178,3250,female,2007 +Chinstrap,Dream,51.3,18.2,197,3750,male,2007 +Chinstrap,Dream,46,18.9,195,4150,female,2007 +Chinstrap,Dream,51.3,19.9,198,3700,male,2007 +Chinstrap,Dream,46.6,17.8,193,3800,female,2007 +Chinstrap,Dream,51.7,20.3,194,3775,male,2007 +Chinstrap,Dream,47,17.3,185,3700,female,2007 +Chinstrap,Dream,52,18.1,201,4050,male,2007 +Chinstrap,Dream,45.9,17.1,190,3575,female,2007 +Chinstrap,Dream,50.5,19.6,201,4050,male,2007 +Chinstrap,Dream,50.3,20,197,3300,male,2007 +Chinstrap,Dream,58,17.8,181,3700,female,2007 +Chinstrap,Dream,46.4,18.6,190,3450,female,2007 +Chinstrap,Dream,49.2,18.2,195,4400,male,2007 +Chinstrap,Dream,42.4,17.3,181,3600,female,2007 +Chinstrap,Dream,48.5,17.5,191,3400,male,2007 +Chinstrap,Dream,43.2,16.6,187,2900,female,2007 +Chinstrap,Dream,50.6,19.4,193,3800,male,2007 +Chinstrap,Dream,46.7,17.9,195,3300,female,2007 +Chinstrap,Dream,52,19,197,4150,male,2007 +Chinstrap,Dream,50.5,18.4,200,3400,female,2008 +Chinstrap,Dream,49.5,19,200,3800,male,2008 +Chinstrap,Dream,46.4,17.8,191,3700,female,2008 +Chinstrap,Dream,52.8,20,205,4550,male,2008 +Chinstrap,Dream,40.9,16.6,187,3200,female,2008 +Chinstrap,Dream,54.2,20.8,201,4300,male,2008 +Chinstrap,Dream,42.5,16.7,187,3350,female,2008 +Chinstrap,Dream,51,18.8,203,4100,male,2008 +Chinstrap,Dream,49.7,18.6,195,3600,male,2008 +Chinstrap,Dream,47.5,16.8,199,3900,female,2008 +Chinstrap,Dream,47.6,18.3,195,3850,female,2008 +Chinstrap,Dream,52,20.7,210,4800,male,2008 +Chinstrap,Dream,46.9,16.6,192,2700,female,2008 +Chinstrap,Dream,53.5,19.9,205,4500,male,2008 +Chinstrap,Dream,49,19.5,210,3950,male,2008 +Chinstrap,Dream,46.2,17.5,187,3650,female,2008 +Chinstrap,Dream,50.9,19.1,196,3550,male,2008 +Chinstrap,Dream,45.5,17,196,3500,female,2008 +Chinstrap,Dream,50.9,17.9,196,3675,female,2009 +Chinstrap,Dream,50.8,18.5,201,4450,male,2009 +Chinstrap,Dream,50.1,17.9,190,3400,female,2009 +Chinstrap,Dream,49,19.6,212,4300,male,2009 +Chinstrap,Dream,51.5,18.7,187,3250,male,2009 +Chinstrap,Dream,49.8,17.3,198,3675,female,2009 +Chinstrap,Dream,48.1,16.4,199,3325,female,2009 +Chinstrap,Dream,51.4,19,201,3950,male,2009 +Chinstrap,Dream,45.7,17.3,193,3600,female,2009 +Chinstrap,Dream,50.7,19.7,203,4050,male,2009 +Chinstrap,Dream,42.5,17.3,187,3350,female,2009 +Chinstrap,Dream,52.2,18.8,197,3450,male,2009 +Chinstrap,Dream,45.2,16.6,191,3250,female,2009 +Chinstrap,Dream,49.3,19.9,203,4050,male,2009 +Chinstrap,Dream,50.2,18.8,202,3800,male,2009 +Chinstrap,Dream,45.6,19.4,194,3525,female,2009 +Chinstrap,Dream,51.9,19.5,206,3950,male,2009 +Chinstrap,Dream,46.8,16.5,189,3650,female,2009 +Chinstrap,Dream,45.7,17,195,3650,female,2009 +Chinstrap,Dream,55.8,19.8,207,4000,male,2009 +Chinstrap,Dream,43.5,18.1,202,3400,female,2009 +Chinstrap,Dream,49.6,18.2,193,3775,male,2009 +Chinstrap,Dream,50.8,19,210,4100,male,2009 +Chinstrap,Dream,50.2,18.7,198,3775,female,2009 diff --git a/Data/people.csv b/Data/people.csv index 45d8f705..4d9b27bf 100644 --- a/Data/people.csv +++ b/Data/people.csv @@ -1,3 +1,3 @@ -name,age,job -Jorge,30,Developer -Bob,32,Developer +name,age,job +Jorge,30,Developer +Bob,32,Developer diff --git a/Data/sales.json b/Data/sales.json index ebf8145b..abde4d6d 100644 --- a/Data/sales.json +++ b/Data/sales.json @@ -1,5 +1,5 @@ -{ "timestamp": "2022-02-01T22:10:02","sale_id": 328711,"product_id": 134,"price": 3.12,"units": 1,"product_name": "Milk 1L Mua" } -{ "timestamp": "2022-02-03T11:42:09","sale_id": 328712,"product_id": 110,"price": 1.22,"units": 3,"product_name": "Coke 350ml" } -{ "timestamp": "2022-02-03T14:22:15","sale_id": 328713,"product_id": 117,"price": 4.65,"units": 1,"product_name": "Pepsi 2L" } -{ "timestamp": "2022-02-03T18:33:08","sale_id": 328714,"product_id": 110,"price": 1.22,"units": 1,"product_name": "Coke 350ml" } -{ "timestamp": "2022-02-04T15:41:36","sale_id": 328715,"product_id": 341,"price": 0.85,"units": 1,"product_name": "Trident Mint" } +{ "timestamp": "2022-02-01T22:10:02","sale_id": 328711,"product_id": 134,"price": 3.12,"units": 1,"product_name": "Milk 1L Mua" } +{ "timestamp": "2022-02-03T11:42:09","sale_id": 328712,"product_id": 110,"price": 1.22,"units": 3,"product_name": "Coke 350ml" } +{ "timestamp": "2022-02-03T14:22:15","sale_id": 328713,"product_id": 117,"price": 4.65,"units": 1,"product_name": "Pepsi 2L" } +{ "timestamp": "2022-02-03T18:33:08","sale_id": 328714,"product_id": 110,"price": 1.22,"units": 1,"product_name": "Coke 350ml" } +{ "timestamp": "2022-02-04T15:41:36","sale_id": 328715,"product_id": 341,"price": 0.85,"units": 1,"product_name": "Trident Mint" } diff --git a/Data/transf.csv b/Data/transf.csv index a046f9f0..4d3fcaec 100644 --- a/Data/transf.csv +++ b/Data/transf.csv @@ -1,2422 +1,2422 @@ -dateTransfer;datetimeTransfer;clientNumber;transferValue;transferCurrency;transferID;transferLog;destinationBankNumber;destinationBankBranch;destinationBankAccount -2022-12-31;2022-12-31T17:00:24Z;5516;7794.31;zing Æ’;20223563;;33;4078;72424-2 -2022-12-31;2022-12-31T13:32:07Z;4965;7919;zing Æ’;20223562;;421;1979;36441-5 -2022-12-31;2022-12-31T10:37:02Z;4608;5603;dollar $;20223561;;666;4425;41323-1 -2022-12-31;2022-12-31T10:35:05Z;1121;4365.22;dollar $;20223560;;666;2400;74120-4 -2022-12-31;2022-12-31T05:53:44Z;1121;4620;dollar $;20223559;;421;1100;39830-0 -2022-12-31;2022-12-31T05:44:46Z;1121;7158;zing Æ’;20223558;;290;1100;35424-4 -2022-12-31;2022-12-31T04:02:06Z;4862;6714;dollar $;20223557;;666;1002;71839-1 -2022-12-31;2022-12-31T03:48:47Z;3294;10882.52;dollar $;20223556;;666;2231;50190-5 -2022-12-30;2022-12-30T22:57:12Z;3294;7559;dollar $;20223555;;33;6317;47255-0 -2022-12-30;2022-12-30T18:42:34Z;4862;1831.81;dollar $;20223554;;421;3321;74241-6 -2022-12-30;2022-12-30T16:03:17Z;5243;7140;dollar $;20223553;;421;1979;59064-5 -2022-12-30;2022-12-30T14:30:23Z;1455;5141;british pound £;20223552;;421;6552;62671-3 -2022-12-30;2022-12-30T09:28:20Z;5764;8533;dollar $;20223551;;33;1200;81855-6 -2022-12-30;2022-12-30T05:35:23Z;5986;6076;british pound £;20223550;;33;4078;83994-4 -2022-12-30;2022-12-30T04:44:53Z;3715;6657;dollar $;20223549;;290;5420;26203-4 -2022-12-30;2022-12-30T03:18:25Z;5832;6333;dollar $;20223548;;666;8800;78901-8 -2022-12-30;2022-12-30T02:15:37Z;1217;4026;dollar $;20223547;;33;6552;56975-9 -2022-12-29;2022-12-29T22:57:14Z;2489;4895.99;dollar $;20223546;;33;9921;84542-1 -2022-12-29;2022-12-29T20:32:12Z;1121;5235;zing Æ’;20223545;;666;3321;34393-9 -2022-12-29;2022-12-29T18:24:04Z;4862;5952;british pound £;20223544;;666;1002;37736-6 -2022-12-29;2022-12-29T17:16:46Z;2197;8771;british pound £;20223543;;33;1200;32390-2 -2022-12-29;2022-12-29T15:46:55Z;2197;7713.23;dollar $;20223542;;33;4078;85197-0 -2022-12-29;2022-12-29T13:22:02Z;2727;4666.25;euro €;20223541;;33;5420;83070-8 -2022-12-29;2022-12-29T11:58:16Z;3100;10433.94;zing Æ’;20223540;;421;4425;71366-2 -2022-12-29;2022-12-29T09:51:24Z;5987;2345;british pound £;20223539;;33;2231;70909-9 -2022-12-29;2022-12-29T06:09:06Z;1945;6355;dollar $;20223538;;290;1100;30264-3 -2022-12-29;2022-12-29T05:59:35Z;1297;5056.33;dollar $;20223537;;666;8521;63092-0 -2022-12-29;2022-12-29T05:54:23Z;2197;5752;british pound £;20223536;;666;8800;54159-1 -2022-12-29;2022-12-29T05:51:35Z;5832;7270.97;zing Æ’;20223535;;666;1979;71173-8 -2022-12-28;2022-12-28T23:23:30Z;2197;5091;dollar $;20223534;;290;5420;49443-9 -2022-12-28;2022-12-28T22:59:03Z;4965;6661;dollar $;20223533;;33;1200;45746-2 -2022-12-28;2022-12-28T21:35:19Z;3294;9448;dollar $;20223532;;33;1979;51713-0 -2022-12-28;2022-12-28T11:26:57Z;5516;5552;dollar $;20223531;;290;9921;51540-4 -2022-12-28;2022-12-28T08:54:01Z;2197;7283;dollar $;20223530;;290;6552;78514-8 -2022-12-28;2022-12-28T01:27:48Z;4465;2102.44;dollar $;20223529;;290;2400;71108-3 -2022-12-27;2022-12-27T22:09:19Z;4023;11879.7;dollar $;20223528;;290;4425;81440-2 -2022-12-27;2022-12-27T17:21:11Z;2489;4982.49;zing Æ’;20223527;;666;6317;27041-4 -2022-12-27;2022-12-27T17:08:01Z;3294;6617.17;dollar $;20223526;;666;2231;49767-2 -2022-12-27;2022-12-27T11:03:28Z;4023;6606;british pound £;20223525;;33;6317;82600-2 -2022-12-27;2022-12-27T10:23:40Z;6032;9552;zing Æ’;20223524;;290;9921;85258-0 -2022-12-27;2022-12-27T07:51:45Z;4862;11379;dollar $;20223523;;33;4425;54796-3 -2022-12-27;2022-12-27T06:58:25Z;5188;7821.69;dollar $;20223522;;33;4078;46571-3 -2022-12-26;2022-12-26T21:28:31Z;4965;5482;zing Æ’;20223521;;290;4078;70247-4 -2022-12-26;2022-12-26T20:17:14Z;5764;1756;dollar $;20223520;;421;6317;28871-8 -2022-12-26;2022-12-26T15:38:18Z;3284;7074.89;euro €;20223519;;290;4425;51930-8 -2022-12-26;2022-12-26T14:37:22Z;4465;9326.95;dollar $;20223518;;666;2231;65442-1 -2022-12-26;2022-12-26T14:25:09Z;5832;8178;euro €;20223517;;290;8521;39648-9 -2022-12-26;2022-12-26T11:42:39Z;1121;2108;dollar $;20223516;;33;9921;52009-2 -2022-12-26;2022-12-26T02:45:02Z;2727;3261.73;british pound £;20223515;;421;6317;66040-9 -2022-12-25;2022-12-25T21:30:42Z;1297;9332.61;zing Æ’;20223514;;666;5420;28225-1 -2022-12-25;2022-12-25T20:48:27Z;5832;11067.91;dollar $;20223513;;290;9921;40478-7 -2022-12-25;2022-12-25T19:48:50Z;2197;6294.72;dollar $;20223512;;290;4078;59131-3 -2022-12-25;2022-12-25T14:03:57Z;3795;8772.61;dollar $;20223511;;33;4078;47492-0 -2022-12-25;2022-12-25T11:51:16Z;4862;8438.78;dollar $;20223510;;421;1200;31321-5 -2022-12-25;2022-12-25T07:59:03Z;5764;11159;zing Æ’;20223509;;421;1979;63332-3 -2022-12-25;2022-12-25T05:38:02Z;1297;7089;british pound £;20223508;;421;4425;61393-9 -2022-12-25;2022-12-25T00:24:36Z;1455;4333.62;zing Æ’;20223507;;290;1200;66835-7 -2022-12-25;2022-12-25T00:11:12Z;3284;10589;dollar $;20223506;;421;1002;69217-9 -2022-12-24;2022-12-24T22:08:44Z;6032;2831;dollar $;20223505;;33;8800;56941-4 -2022-12-24;2022-12-24T18:53:02Z;5986;5370.01;dollar $;20223504;;290;1200;41549-4 -2022-12-24;2022-12-24T15:39:23Z;1945;6814.23;euro €;20223503;;33;1200;59308-4 -2022-12-24;2022-12-24T10:29:37Z;3100;4266;euro €;20223502;;666;1979;67488-0 -2022-12-24;2022-12-24T09:34:34Z;3715;3851;dollar $;20223501;;290;1100;52224-4 -2022-12-24;2022-12-24T08:22:49Z;3100;7659;dollar $;20223500;;33;9921;40154-3 -2022-12-24;2022-12-24T00:56:45Z;4023;7513;dollar $;20223499;;33;2231;65237-8 -2022-12-23;2022-12-23T20:41:22Z;4965;5857;dollar $;20223498;;666;2231;65330-4 -2022-12-23;2022-12-23T09:53:01Z;5987;6918.39;dollar $;20223497;;33;1200;43442-4 -2022-12-23;2022-12-23T08:32:49Z;2727;8042;dollar $;20223496;;290;5420;37759-7 -2022-12-23;2022-12-23T03:08:54Z;5832;8302.48;dollar $;20223495;;33;5420;39884-9 -2022-12-23;2022-12-23T00:42:55Z;6032;8242;dollar $;20223494;;421;6552;86401-9 -2022-12-22;2022-12-22T20:32:48Z;4023;4343;dollar $;20223493;;421;4425;50034-4 -2022-12-22;2022-12-22T15:55:38Z;5516;8348;zing Æ’;20223492;;666;1100;35760-0 -2022-12-22;2022-12-22T15:23:55Z;2489;5803.61;dollar $;20223491;;421;1979;44331-7 -2022-12-22;2022-12-22T09:02:47Z;5188;8175.67;dollar $;20223490;;666;8800;42657-8 -2022-12-22;2022-12-22T04:25:58Z;1121;9226;euro €;20223489;;421;1002;84095-9 -2022-12-22;2022-12-22T00:40:24Z;5243;3062;british pound £;20223488;;33;8521;72140-9 -2022-12-21;2022-12-21T17:24:47Z;3294;4183;dollar $;20223487;;666;3321;51031-6 -2022-12-21;2022-12-21T14:52:50Z;1945;5414;british pound £;20223486;;421;9921;42528-5 -2022-12-21;2022-12-21T01:32:29Z;3100;8995.91;zing Æ’;20223485;;421;1979;71621-5 -2022-12-20;2022-12-20T23:57:10Z;3715;6146.92;dollar $;20223484;;290;9921;59616-6 -2022-12-20;2022-12-20T13:50:08Z;4862;2197.81;british pound £;20223483;;666;1200;63450-5 -2022-12-20;2022-12-20T08:34:38Z;3715;7535;british pound £;20223482;;666;6317;35482-8 -2022-12-20;2022-12-20T06:58:14Z;1455;4212.38;dollar $;20223481;;33;8521;25591-6 -2022-12-20;2022-12-20T04:27:23Z;4965;8087;british pound £;20223480;;33;2400;44401-9 -2022-12-19;2022-12-19T12:44:01Z;1297;7263.63;british pound £;20223479;;666;1100;28916-9 -2022-12-19;2022-12-19T09:52:19Z;1455;8136;dollar $;20223478;;421;1979;50867-6 -2022-12-19;2022-12-19T05:33:58Z;1121;7434.91;dollar $;20223477;;33;8800;64782-4 -2022-12-19;2022-12-19T04:36:02Z;5243;8807.8;dollar $;20223476;;290;5420;65867-2 -2022-12-19;2022-12-19T01:12:24Z;1455;5358;dollar $;20223475;;33;1002;42246-5 -2022-12-18;2022-12-18T23:32:58Z;4862;5574;dollar $;20223474;;666;1100;76872-4 -2022-12-18;2022-12-18T20:01:35Z;4023;4605;dollar $;20223473;;290;1979;37941-0 -2022-12-18;2022-12-18T16:45:47Z;5243;6361;zing Æ’;20223472;;290;9921;81586-3 -2022-12-18;2022-12-18T15:48:39Z;4023;7031.02;zing Æ’;20223471;;421;1200;29174-0 -2022-12-18;2022-12-18T15:10:34Z;3294;8691;zing Æ’;20223470;;290;1979;79938-5 -2022-12-18;2022-12-18T12:22:27Z;5832;8342;zing Æ’;20223469;;290;5420;29438-0 -2022-12-18;2022-12-18T12:13:07Z;6032;6128;dollar $;20223468;;290;6317;47979-3 -2022-12-18;2022-12-18T11:45:30Z;1297;142.66;dollar $;20223467;;421;5420;43088-1 -2022-12-18;2022-12-18T10:58:45Z;1217;5785;dollar $;20223466;;290;4078;81439-3 -2022-12-18;2022-12-18T06:36:31Z;2727;6495.97;british pound £;20223465;;290;6552;57023-9 -2022-12-18;2022-12-18T01:59:29Z;4608;5015.41;dollar $;20223464;;666;1979;39906-4 -2022-12-18;2022-12-18T00:07:40Z;4862;7016;dollar $;20223463;;421;6552;74341-4 -2022-12-17;2022-12-17T20:05:53Z;4608;9293.33;british pound £;20223462;;666;8521;30577-6 -2022-12-17;2022-12-17T17:12:32Z;1945;8630.6;dollar $;20223461;;421;1200;44433-0 -2022-12-17;2022-12-17T07:03:08Z;6032;4743.74;dollar $;20223460;;33;2400;46264-3 -2022-12-17;2022-12-17T06:14:07Z;3795;6271;dollar $;20223459;;290;9921;57265-9 -2022-12-16;2022-12-16T23:01:46Z;5987;10572.56;zing Æ’;20223458;;666;9921;57768-0 -2022-12-16;2022-12-16T22:15:40Z;6032;6797.44;zing Æ’;20223457;;33;1100;73300-1 -2022-12-16;2022-12-16T14:47:01Z;3284;3716.33;zing Æ’;20223456;;33;8800;36993-9 -2022-12-16;2022-12-16T11:58:22Z;4023;3843;british pound £;20223455;;33;9921;83419-9 -2022-12-16;2022-12-16T04:07:57Z;1217;7366.19;dollar $;20223454;;421;2400;73933-7 -2022-12-15;2022-12-15T23:43:51Z;5516;6743;dollar $;20223453;;290;4425;76281-0 -2022-12-15;2022-12-15T22:49:59Z;6032;7245.81;euro €;20223452;;666;8521;55212-6 -2022-12-15;2022-12-15T22:35:02Z;2489;2754.99;dollar $;20223451;;290;2400;86214-9 -2022-12-15;2022-12-15T13:57:42Z;5987;6291;dollar $;20223450;;666;6317;83327-7 -2022-12-15;2022-12-15T04:21:58Z;4023;4236;zing Æ’;20223449;;33;2400;39618-6 -2022-12-15;2022-12-15T01:37:42Z;5188;3651.4;dollar $;20223448;;290;2231;28438-1 -2022-12-15;2022-12-15T01:12:55Z;3795;6095;dollar $;20223447;;666;2231;26723-6 -2022-12-14;2022-12-14T18:19:31Z;3100;3957;dollar $;20223446;;290;8800;64459-6 -2022-12-14;2022-12-14T16:12:23Z;3294;5992;dollar $;20223445;;666;8521;27468-6 -2022-12-14;2022-12-14T15:51:20Z;3284;7639.99;british pound £;20223444;;666;2231;40522-0 -2022-12-14;2022-12-14T06:53:17Z;1217;5763;british pound £;20223443;;666;1200;81812-3 -2022-12-13;2022-12-13T23:44:23Z;5516;992.15;dollar $;20223442;;33;5420;41609-8 -2022-12-13;2022-12-13T16:41:48Z;1297;5106.72;british pound £;20223441;;666;5420;58578-8 -2022-12-13;2022-12-13T16:21:36Z;5243;5139;zing Æ’;20223440;;290;3321;44132-0 -2022-12-13;2022-12-13T12:06:24Z;5832;5876;british pound £;20223439;;33;1002;42088-5 -2022-12-12;2022-12-12T17:59:36Z;1297;4036;dollar $;20223438;;666;4078;28615-4 -2022-12-12;2022-12-12T17:50:43Z;2727;3721.89;euro €;20223437;;666;1979;44857-5 -2022-12-12;2022-12-12T17:04:17Z;2727;9664;zing Æ’;20223436;;666;6317;57297-4 -2022-12-12;2022-12-12T06:38:15Z;1121;6621.07;british pound £;20223435;;421;6317;77598-9 -2022-12-11;2022-12-11T13:53:41Z;3715;7608;dollar $;20223434;;33;9921;27331-0 -2022-12-11;2022-12-11T13:02:53Z;3284;6249;dollar $;20223433;;290;1100;52336-1 -2022-12-11;2022-12-11T02:33:24Z;4965;5840.09;dollar $;20223432;;421;8800;74770-7 -2022-12-10;2022-12-10T21:04:44Z;4608;7173.41;dollar $;20223431;;33;9921;35373-1 -2022-12-10;2022-12-10T20:57:15Z;4965;5243;zing Æ’;20223430;;421;4078;70906-1 -2022-12-10;2022-12-10T17:49:27Z;3795;7472.67;dollar $;20223429;;290;2231;33813-0 -2022-12-10;2022-12-10T10:55:57Z;2727;1569;british pound £;20223428;;666;1100;27510-6 -2022-12-10;2022-12-10T09:47:09Z;3284;4108;dollar $;20223427;;33;3321;78129-9 -2022-12-10;2022-12-10T08:56:20Z;1217;7466.72;dollar $;20223426;;666;4078;34457-3 -2022-12-10;2022-12-10T03:17:48Z;4608;5536;dollar $;20223425;;290;6317;40355-9 -2022-12-09;2022-12-09T22:32:34Z;2197;9406.83;dollar $;20223424;;33;1200;50136-9 -2022-12-09;2022-12-09T21:11:01Z;6032;2788;dollar $;20223423;;33;4425;48631-7 -2022-12-09;2022-12-09T19:01:01Z;1297;3015;british pound £;20223422;;666;1979;55724-7 -2022-12-09;2022-12-09T12:23:41Z;4965;3307.98;dollar $;20223421;;666;2400;77400-8 -2022-12-09;2022-12-09T11:34:02Z;3294;6101;british pound £;20223420;;666;4425;49638-5 -2022-12-09;2022-12-09T10:26:29Z;3715;6093;dollar $;20223419;;666;1100;72008-6 -2022-12-09;2022-12-09T06:07:08Z;5764;7672;zing Æ’;20223418;;421;6552;73596-2 -2022-12-09;2022-12-09T03:46:56Z;5986;10805;dollar $;20223417;;33;1200;27025-2 -2022-12-09;2022-12-09T01:56:29Z;4608;5194;british pound £;20223416;;290;4078;81925-8 -2022-12-09;2022-12-09T01:45:41Z;2489;4572.74;zing Æ’;20223415;;290;1002;50061-0 -2022-12-08;2022-12-08T22:24:59Z;5832;5832;british pound £;20223414;;290;2231;62085-2 -2022-12-08;2022-12-08T21:02:01Z;1297;7831.97;zing Æ’;20223413;;290;1002;61102-1 -2022-12-08;2022-12-08T18:42:18Z;6032;6096.12;dollar $;20223412;;290;2231;62759-9 -2022-12-08;2022-12-08T18:32:35Z;5188;7264.52;dollar $;20223411;;290;9921;55888-1 -2022-12-08;2022-12-08T15:52:40Z;4465;9401.64;dollar $;20223410;;33;6317;76617-9 -2022-12-08;2022-12-08T14:03:40Z;1121;3748;british pound £;20223409;;421;1002;80986-8 -2022-12-08;2022-12-08T12:26:53Z;4965;5461.61;dollar $;20223408;;33;4425;28093-2 -2022-12-08;2022-12-08T01:29:04Z;2489;11268;zing Æ’;20223407;;290;3321;73175-1 -2022-12-07;2022-12-07T23:50:47Z;1121;5034;british pound £;20223406;;33;3321;83634-0 -2022-12-07;2022-12-07T21:20:51Z;2727;3255;zing Æ’;20223405;;666;1200;25123-4 -2022-12-07;2022-12-07T14:22:28Z;4465;2071;zing Æ’;20223404;;666;5420;27345-9 -2022-12-07;2022-12-07T10:38:36Z;3100;5367;dollar $;20223403;;33;1100;44648-3 -2022-12-07;2022-12-07T02:54:48Z;4608;7932.95;dollar $;20223402;;290;2231;28051-0 -2022-12-06;2022-12-06T22:28:54Z;5987;8325.19;dollar $;20223401;;33;1200;82613-0 -2022-12-06;2022-12-06T16:46:38Z;4023;6565.95;dollar $;20223400;;290;1100;80341-8 -2022-12-06;2022-12-06T16:37:45Z;4465;6937;dollar $;20223399;;421;1979;76048-2 -2022-12-06;2022-12-06T14:20:22Z;5987;6768.34;dollar $;20223398;;421;1979;77660-7 -2022-12-06;2022-12-06T06:09:48Z;5764;4715.07;british pound £;20223397;;33;2400;86179-4 -2022-12-06;2022-12-06T04:01:57Z;3100;3018;euro €;20223396;;421;6552;64184-5 -2022-12-06;2022-12-06T02:52:52Z;6032;8421;euro €;20223395;;666;5420;37096-2 -2022-12-06;2022-12-06T00:18:48Z;3795;8336;dollar $;20223394;;666;2231;48058-7 -2022-12-05;2022-12-05T20:32:43Z;5832;5473.96;british pound £;20223393;;666;5420;60013-2 -2022-12-05;2022-12-05T18:27:37Z;3100;7094;dollar $;20223392;;290;1200;28169-1 -2022-12-05;2022-12-05T16:53:03Z;1121;9305;british pound £;20223391;;33;4078;25872-9 -2022-12-05;2022-12-05T16:33:34Z;2727;2634;dollar $;20223390;;33;3321;31445-4 -2022-12-05;2022-12-05T11:03:23Z;1945;7732;british pound £;20223389;;33;5420;27322-5 -2022-12-05;2022-12-05T11:01:40Z;4965;6342.36;dollar $;20223388;;666;9921;31722-7 -2022-12-05;2022-12-05T09:19:57Z;5987;4077.74;euro €;20223387;;33;1100;34322-7 -2022-12-05;2022-12-05T08:50:27Z;4965;5986;british pound £;20223386;;421;1200;54118-1 -2022-12-05;2022-12-05T04:55:07Z;5764;9312;dollar $;20223385;;290;2231;41152-5 -2022-12-05;2022-12-05T04:26:26Z;5188;8136;dollar $;20223384;;33;2231;77465-5 -2022-12-05;2022-12-05T03:51:00Z;2197;8240.62;zing Æ’;20223383;408 Request Timeout;666;1100;58503-9 -2022-12-05;2022-12-05T02:43:06Z;1455;3752.05;dollar $;20223382;;421;6552;47822-4 -2022-12-04;2022-12-04T23:58:30Z;5188;4978.25;zing Æ’;20223381;;421;8800;44076-8 -2022-12-04;2022-12-04T17:31:42Z;4965;8123;dollar $;20223380;;666;3321;54912-2 -2022-12-04;2022-12-04T15:44:00Z;1297;6636;british pound £;20223379;;33;1979;70223-9 -2022-12-04;2022-12-04T10:21:03Z;5987;4587;dollar $;20223378;;33;4078;70243-9 -2022-12-04;2022-12-04T01:04:01Z;2489;7530.69;british pound £;20223377;;666;1979;32838-9 -2022-12-04;2022-12-04T00:02:11Z;5764;8080;dollar $;20223376;;421;4425;83682-8 -2022-12-03;2022-12-03T22:12:40Z;5764;3717;dollar $;20223375;;290;4078;26352-1 -2022-12-03;2022-12-03T16:03:10Z;4862;5421;dollar $;20223374;;33;8800;78655-8 -2022-12-03;2022-12-03T12:19:05Z;4608;6603.81;dollar $;20223373;;33;2231;67255-8 -2022-12-03;2022-12-03T00:08:10Z;5832;6442.72;zing Æ’;20223372;;33;8800;60264-4 -2022-12-02;2022-12-02T21:14:18Z;5243;3773.59;dollar $;20223371;;290;9921;28220-5 -2022-12-02;2022-12-02T20:06:40Z;3294;1072.3;zing Æ’;20223370;;290;3321;78206-9 -2022-12-02;2022-12-02T16:14:31Z;5764;1653;dollar $;20223369;;290;8800;83988-2 -2022-12-02;2022-12-02T16:11:55Z;1455;9489;zing Æ’;20223368;;290;8800;42809-6 -2022-12-02;2022-12-02T09:55:58Z;4862;4828;british pound £;20223367;;421;6317;57446-2 -2022-12-02;2022-12-02T00:45:07Z;3795;4766;dollar $;20223366;;33;4425;26465-7 -2022-12-02;2022-12-02T00:40:45Z;5986;7744;dollar $;20223365;;33;2231;52642-3 -2022-12-01;2022-12-01T22:19:09Z;2489;7622.11;british pound £;20223364;;33;8521;46912-8 -2022-12-01;2022-12-01T17:00:56Z;1945;8914.96;dollar $;20223363;;421;1002;75055-4 -2022-12-01;2022-12-01T12:03:34Z;4608;6333.43;dollar $;20223362;;290;1100;80294-7 -2022-12-01;2022-12-01T05:43:22Z;3715;11926.54;zing Æ’;20223361;;666;8521;60376-3 -2022-12-01;2022-12-01T02:46:12Z;3294;1467.18;dollar $;20223360;;33;5420;51771-8 -2022-12-01;2022-12-01T02:32:44Z;2489;8541.42;dollar $;20223359;;290;6552;51148-8 -2022-12-01;2022-12-01T01:57:13Z;4023;4966;dollar $;20223358;;290;4425;80629-1 -2022-11-30;2022-11-30T23:18:54Z;5188;1482;british pound £;20223357;;290;1002;28755-6 -2022-11-30;2022-11-30T16:43:35Z;1455;5556;dollar $;20223356;;421;8521;51473-8 -2022-11-30;2022-11-30T10:48:09Z;5987;7028.42;zing Æ’;20223355;;421;5420;78535-4 -2022-11-30;2022-11-30T10:48:08Z;5986;2463;dollar $;20223354;;290;4078;52980-1 -2022-11-30;2022-11-30T01:14:38Z;5243;6055.7;british pound £;20223353;;666;4425;59413-4 -2022-11-29;2022-11-29T22:53:23Z;5516;6684;dollar $;20223352;;666;8800;30413-9 -2022-11-29;2022-11-29T19:23:07Z;4862;8060;zing Æ’;20223351;;421;8800;54194-8 -2022-11-29;2022-11-29T16:12:58Z;4023;10356.26;euro €;20223350;;290;5420;74336-9 -2022-11-29;2022-11-29T16:01:04Z;4965;7888;dollar $;20223349;;290;8521;33812-7 -2022-11-29;2022-11-29T09:06:43Z;5764;5645.46;dollar $;20223348;;421;6552;81988-0 -2022-11-29;2022-11-29T06:47:48Z;3100;5428.64;dollar $;20223347;;290;1100;36602-1 -2022-11-29;2022-11-29T06:45:59Z;4965;9752.16;dollar $;20223346;;290;6552;40337-5 -2022-11-29;2022-11-29T05:13:47Z;4465;5268;dollar $;20223345;;666;1100;52942-6 -2022-11-29;2022-11-29T00:15:36Z;4465;7853.27;zing Æ’;20223344;;290;5420;49248-7 -2022-11-28;2022-11-28T22:49:09Z;4965;4768.53;euro €;20223343;;33;5420;77966-1 -2022-11-28;2022-11-28T17:13:19Z;2197;6453.45;dollar $;20223342;;421;6552;29486-0 -2022-11-28;2022-11-28T13:08:42Z;5832;8974;dollar $;20223341;;666;1002;40620-1 -2022-11-28;2022-11-28T11:12:55Z;5764;4907;dollar $;20223340;;421;1100;58863-6 -2022-11-28;2022-11-28T04:42:03Z;3100;4661;dollar $;20223339;;421;8800;48086-0 -2022-11-27;2022-11-27T23:40:33Z;2727;6668;dollar $;20223338;;666;6317;70191-4 -2022-11-27;2022-11-27T22:42:23Z;5764;6013.11;zing Æ’;20223337;;666;6317;80078-1 -2022-11-27;2022-11-27T19:28:11Z;5764;9431.45;british pound £;20223336;;421;3321;82123-1 -2022-11-27;2022-11-27T15:57:34Z;5243;8361.85;dollar $;20223335;;666;1002;84052-5 -2022-11-27;2022-11-27T15:50:33Z;1121;5565;dollar $;20223334;;290;6317;75947-5 -2022-11-27;2022-11-27T07:38:32Z;5188;9290.94;dollar $;20223333;;421;1979;26690-8 -2022-11-27;2022-11-27T05:52:00Z;4465;7304.54;dollar $;20223332;;33;5420;83616-4 -2022-11-27;2022-11-27T04:49:07Z;4862;5786.22;dollar $;20223331;;666;1979;40738-2 -2022-11-27;2022-11-27T04:02:26Z;1297;7226.15;zing Æ’;20223330;;421;1979;55095-2 -2022-11-27;2022-11-27T01:42:13Z;5243;4250.98;dollar $;20223329;;666;6317;33881-8 -2022-11-26;2022-11-26T11:53:57Z;3284;8850;dollar $;20223328;;290;5420;70315-6 -2022-11-26;2022-11-26T00:12:25Z;4608;7111;zing Æ’;20223327;;666;2231;68855-4 -2022-11-25;2022-11-25T23:56:17Z;2197;5759.12;dollar $;20223326;;290;8800;82459-7 -2022-11-25;2022-11-25T23:30:04Z;2489;5417.59;dollar $;20223325;;421;1100;74876-8 -2022-11-25;2022-11-25T13:54:23Z;5987;4836;dollar $;20223324;;33;1200;26860-1 -2022-11-25;2022-11-25T13:52:03Z;1945;7789.7;dollar $;20223323;;33;2400;70310-7 -2022-11-25;2022-11-25T12:36:49Z;2727;2470;dollar $;20223322;;421;4425;64723-7 -2022-11-25;2022-11-25T04:41:10Z;4465;6851;british pound £;20223321;;421;1100;41802-8 -2022-11-25;2022-11-25T04:37:19Z;1945;5906.06;dollar $;20223320;;33;8521;72259-2 -2022-11-24;2022-11-24T23:01:39Z;1945;174.64;dollar $;20223319;;421;2400;34025-8 -2022-11-24;2022-11-24T20:08:17Z;1121;5540.45;zing Æ’;20223318;;666;5420;36206-8 -2022-11-24;2022-11-24T13:03:32Z;5188;8069;zing Æ’;20223317;;33;6317;78466-4 -2022-11-24;2022-11-24T10:53:39Z;5832;10410.21;dollar $;20223316;;421;3321;49019-6 -2022-11-24;2022-11-24T08:29:55Z;3284;4386;dollar $;20223315;;421;8521;36935-4 -2022-11-24;2022-11-24T02:44:19Z;1455;9747.67;dollar $;20223314;;421;9921;53566-2 -2022-11-23;2022-11-23T23:29:20Z;5832;3252.23;dollar $;20223313;;33;1002;64293-8 -2022-11-23;2022-11-23T21:32:27Z;1217;9503;dollar $;20223312;;421;9921;47372-6 -2022-11-23;2022-11-23T21:00:02Z;4608;3711.57;dollar $;20223311;;290;2231;85530-5 -2022-11-23;2022-11-23T20:17:53Z;4023;8646;dollar $;20223310;;421;2400;44867-4 -2022-11-23;2022-11-23T18:30:31Z;2727;3912;zing Æ’;20223309;;666;6317;60173-4 -2022-11-23;2022-11-23T17:56:19Z;4023;6054;dollar $;20223308;;290;2231;70763-1 -2022-11-23;2022-11-23T06:45:46Z;4465;5863;dollar $;20223307;;421;2231;51856-1 -2022-11-23;2022-11-23T04:48:49Z;2727;8935;british pound £;20223306;;666;1200;79185-9 -2022-11-22;2022-11-22T19:57:37Z;3715;6152.89;zing Æ’;20223305;;666;1979;82166-0 -2022-11-22;2022-11-22T18:06:05Z;5188;5813;dollar $;20223304;;290;8521;66706-6 -2022-11-22;2022-11-22T17:05:20Z;2727;2112;dollar $;20223303;;666;4425;60900-5 -2022-11-22;2022-11-22T16:12:54Z;1455;5342;dollar $;20223302;;666;2400;49569-8 -2022-11-22;2022-11-22T14:31:38Z;3100;5076;zing Æ’;20223301;;33;1200;62328-7 -2022-11-22;2022-11-22T09:19:01Z;5516;2710;dollar $;20223300;;666;1200;68673-4 -2022-11-22;2022-11-22T08:18:42Z;5516;10177.2;dollar $;20223299;;290;1002;25003-8 -2022-11-22;2022-11-22T02:46:29Z;1217;11561;dollar $;20223298;;421;8800;71340-1 -2022-11-22;2022-11-22T02:36:31Z;4965;5965.84;british pound £;20223297;;290;2231;65378-6 -2022-11-22;2022-11-22T02:22:24Z;1455;6088;dollar $;20223296;;421;4078;60788-4 -2022-11-21;2022-11-21T22:55:56Z;5516;10740;dollar $;20223295;;421;2231;65420-3 -2022-11-21;2022-11-21T20:37:59Z;3715;4079;dollar $;20223294;;290;9921;55390-2 -2022-11-21;2022-11-21T15:39:58Z;4023;4410.4;british pound £;20223293;;421;6317;72039-0 -2022-11-21;2022-11-21T13:35:43Z;5987;3152.47;zing Æ’;20223292;;33;1979;65809-0 -2022-11-21;2022-11-21T10:52:53Z;2489;10402;dollar $;20223291;;666;6317;76450-6 -2022-11-21;2022-11-21T09:48:04Z;1455;6646.3;dollar $;20223290;;33;4078;73494-3 -2022-11-21;2022-11-21T08:03:19Z;3795;6751.25;dollar $;20223289;;290;6552;48720-2 -2022-11-21;2022-11-21T06:58:43Z;3294;7893;dollar $;20223288;;33;8800;36566-1 -2022-11-21;2022-11-21T06:02:07Z;5986;4511;dollar $;20223287;;290;5420;76440-6 -2022-11-20;2022-11-20T20:57:09Z;5986;6457;zing Æ’;20223286;;666;4425;24627-8 -2022-11-20;2022-11-20T19:39:41Z;1455;8493;dollar $;20223285;;290;2231;32330-8 -2022-11-20;2022-11-20T19:06:19Z;4465;5677.74;zing Æ’;20223284;;290;6317;66067-0 -2022-11-20;2022-11-20T16:01:20Z;2727;7696.11;dollar $;20223283;;666;1200;60202-7 -2022-11-20;2022-11-20T04:53:53Z;4862;4386.29;dollar $;20223282;;666;1002;47043-4 -2022-11-20;2022-11-20T00:03:47Z;3795;4048;dollar $;20223281;;290;4078;67076-9 -2022-11-19;2022-11-19T21:26:41Z;3100;10395;dollar $;20223280;;33;3321;67334-0 -2022-11-19;2022-11-19T20:04:24Z;1217;6198;zing Æ’;20223279;;290;5420;38335-7 -2022-11-19;2022-11-19T19:20:49Z;1455;10693;dollar $;20223278;;290;1200;48999-0 -2022-11-19;2022-11-19T08:42:33Z;5832;5730;zing Æ’;20223277;;290;2400;78245-0 -2022-11-19;2022-11-19T07:52:39Z;3100;8673;euro €;20223276;;290;3321;25454-9 -2022-11-19;2022-11-19T06:22:50Z;1455;2480.83;dollar $;20223275;;290;1100;50096-9 -2022-11-19;2022-11-19T06:20:14Z;2197;6900;british pound £;20223274;;290;1002;40944-0 -2022-11-19;2022-11-19T05:51:19Z;6032;5046;zing Æ’;20223273;;33;1200;77155-6 -2022-11-19;2022-11-19T05:26:36Z;4023;6789;dollar $;20223272;;666;8521;38920-5 -2022-11-18;2022-11-18T23:42:06Z;3795;3751.6;dollar $;20223271;;666;2231;56653-5 -2022-11-18;2022-11-18T21:54:04Z;4023;10621.66;british pound £;20223270;;421;1002;66712-9 -2022-11-18;2022-11-18T19:59:05Z;5764;7921.15;dollar $;20223269;;421;8521;44741-4 -2022-11-18;2022-11-18T18:33:26Z;3294;5720;zing Æ’;20223268;;421;9921;58220-2 -2022-11-18;2022-11-18T08:52:53Z;2489;2600;dollar $;20223267;;33;8521;54199-8 -2022-11-18;2022-11-18T02:35:25Z;5832;1121;british pound £;20223266;;421;6317;85356-5 -2022-11-17;2022-11-17T21:38:13Z;1121;6194.35;zing Æ’;20223265;;290;6552;85050-8 -2022-11-17;2022-11-17T21:21:35Z;4965;7501;zing Æ’;20223264;;33;4078;33513-3 -2022-11-17;2022-11-17T18:34:23Z;2489;5076;dollar $;20223263;;33;6317;77810-4 -2022-11-17;2022-11-17T01:22:36Z;3715;5718.05;zing Æ’;20223262;;666;6552;83021-0 -2022-11-17;2022-11-17T01:07:13Z;2489;6876.94;dollar $;20223261;;421;6317;62495-4 -2022-11-16;2022-11-16T22:06:18Z;5516;3256;zing Æ’;20223260;;666;1002;65827-9 -2022-11-16;2022-11-16T20:29:08Z;5516;7997;british pound £;20223259;;33;8521;81733-2 -2022-11-16;2022-11-16T19:10:54Z;5243;7637;british pound £;20223258;;666;4425;28232-6 -2022-11-16;2022-11-16T17:47:53Z;2489;1824;zing Æ’;20223257;;421;4078;55168-7 -2022-11-16;2022-11-16T15:45:25Z;1121;5547.09;british pound £;20223256;;421;1200;82935-8 -2022-11-16;2022-11-16T14:58:56Z;4023;5146;british pound £;20223255;;666;4078;64820-0 -2022-11-16;2022-11-16T10:27:20Z;2489;3215;dollar $;20223254;;666;8800;27402-3 -2022-11-16;2022-11-16T08:57:05Z;1297;5125.81;dollar $;20223253;;290;6317;55800-5 -2022-11-16;2022-11-16T08:14:57Z;1121;4300.73;dollar $;20223252;;33;5420;71976-0 -2022-11-16;2022-11-16T06:18:13Z;5986;10543.14;dollar $;20223251;;290;9921;39493-2 -2022-11-16;2022-11-16T05:06:39Z;4965;3972;dollar $;20223250;;421;9921;43241-4 -2022-11-15;2022-11-15T23:30:20Z;5987;6623.28;dollar $;20223249;;290;1100;28054-4 -2022-11-15;2022-11-15T23:02:30Z;5832;10332;zing Æ’;20223248;;421;2231;34787-2 -2022-11-15;2022-11-15T03:31:45Z;1121;2514;dollar $;20223247;;290;3321;42573-1 -2022-11-14;2022-11-14T20:54:39Z;1121;9581;dollar $;20223246;;33;1979;83835-7 -2022-11-14;2022-11-14T12:57:46Z;2489;5887;dollar $;20223245;;33;8521;47166-9 -2022-11-14;2022-11-14T12:04:29Z;5764;5597;euro €;20223244;;421;4078;45547-5 -2022-11-14;2022-11-14T09:48:28Z;3284;3939.42;euro €;20223243;;421;2231;46762-2 -2022-11-14;2022-11-14T06:10:49Z;2489;5690.41;dollar $;20223242;;666;4078;48035-8 -2022-11-14;2022-11-14T02:11:47Z;5188;6314.74;dollar $;20223241;;421;8800;82571-8 -2022-11-14;2022-11-14T00:22:50Z;2197;8108.18;dollar $;20223240;;33;4425;56361-8 -2022-11-13;2022-11-13T18:33:48Z;1455;9059.71;dollar $;20223239;;33;8800;28790-2 -2022-11-13;2022-11-13T12:09:47Z;3795;3976.56;dollar $;20223238;;421;5420;69963-2 -2022-11-13;2022-11-13T04:54:55Z;3715;5106.95;british pound £;20223237;;33;3321;46482-8 -2022-11-12;2022-11-12T21:07:39Z;2489;8569.84;dollar $;20223236;;666;4078;68069-6 -2022-11-12;2022-11-12T13:53:10Z;5764;5654.36;dollar $;20223235;;421;4425;30038-7 -2022-11-12;2022-11-12T13:03:12Z;5986;9193.9;zing Æ’;20223234;;33;8800;73823-3 -2022-11-12;2022-11-12T09:04:41Z;4965;7007;zing Æ’;20223233;;666;6317;72780-7 -2022-11-12;2022-11-12T05:12:33Z;1297;8693.33;dollar $;20223232;;421;2231;29102-4 -2022-11-11;2022-11-11T23:00:40Z;1455;3408.08;dollar $;20223231;;666;8521;59242-2 -2022-11-11;2022-11-11T15:42:20Z;1945;6522.6;british pound £;20223230;;290;2231;60279-5 -2022-11-11;2022-11-11T08:30:13Z;4862;10450;dollar $;20223229;;421;1002;53984-6 -2022-11-11;2022-11-11T05:03:40Z;1217;3956.42;dollar $;20223228;;421;6552;64520-1 -2022-11-11;2022-11-11T02:15:48Z;5188;6282.91;dollar $;20223227;;421;4078;44529-0 -2022-11-10;2022-11-10T15:03:37Z;4965;4977.19;zing Æ’;20223226;;290;5420;78534-4 -2022-11-10;2022-11-10T03:46:16Z;1217;5475.81;dollar $;20223225;;421;4425;48388-7 -2022-11-09;2022-11-09T15:22:58Z;5832;4635;zing Æ’;20223224;;421;1200;43953-2 -2022-11-09;2022-11-09T15:02:28Z;4023;7156;zing Æ’;20223223;;33;1100;25615-8 -2022-11-09;2022-11-09T01:41:46Z;5987;7413.92;dollar $;20223222;;421;4078;65834-8 -2022-11-09;2022-11-09T01:32:13Z;3715;11569;zing Æ’;20223221;;290;1100;78674-9 -2022-11-08;2022-11-08T18:20:42Z;2197;3472;dollar $;20223220;;666;8800;49165-5 -2022-11-08;2022-11-08T14:41:50Z;3795;4155;zing Æ’;20223219;;290;1100;61468-6 -2022-11-08;2022-11-08T10:41:44Z;2727;8608.54;zing Æ’;20223218;;421;8521;33579-8 -2022-11-08;2022-11-08T05:16:44Z;4862;9305;zing Æ’;20223217;;421;4425;37232-9 -2022-11-08;2022-11-08T04:32:01Z;4608;4782;dollar $;20223216;;290;2400;44492-2 -2022-11-08;2022-11-08T00:52:31Z;5516;5304.6;euro €;20223215;;290;4078;65012-3 -2022-11-07;2022-11-07T23:33:03Z;5832;4963.09;dollar $;20223214;;666;3321;67444-7 -2022-11-07;2022-11-07T23:12:21Z;4608;7409;dollar $;20223213;;421;8521;86077-4 -2022-11-07;2022-11-07T19:35:57Z;4862;570.69;dollar $;20223212;;290;5420;51165-3 -2022-11-07;2022-11-07T18:57:43Z;3294;6767;dollar $;20223211;;421;2400;28059-7 -2022-11-07;2022-11-07T18:48:01Z;4965;3512;dollar $;20223210;;666;1002;39801-5 -2022-11-07;2022-11-07T12:01:52Z;2489;6456.13;dollar $;20223209;;421;6552;40117-8 -2022-11-07;2022-11-07T11:15:27Z;3294;7891.79;dollar $;20223208;;290;6317;63464-2 -2022-11-07;2022-11-07T05:25:18Z;3715;7503;dollar $;20223207;;33;1002;81515-7 -2022-11-06;2022-11-06T23:23:14Z;4965;5585;zing Æ’;20223206;;666;6552;40027-3 -2022-11-06;2022-11-06T23:14:23Z;4965;7433;dollar $;20223205;;421;9921;57504-3 -2022-11-06;2022-11-06T23:12:23Z;1121;6747.64;zing Æ’;20223204;;666;2231;66800-8 -2022-11-06;2022-11-06T20:04:34Z;6032;5039.42;dollar $;20223203;;666;2400;65328-2 -2022-11-06;2022-11-06T09:21:55Z;1217;5571;dollar $;20223202;;421;8521;79382-3 -2022-11-05;2022-11-05T23:16:38Z;1121;6083;dollar $;20223201;;33;6552;59164-5 -2022-11-05;2022-11-05T18:35:22Z;3795;5633.86;zing Æ’;20223200;;33;5420;51131-0 -2022-11-05;2022-11-05T17:19:09Z;6032;4895;zing Æ’;20223199;;666;6552;75867-5 -2022-11-05;2022-11-05T17:15:00Z;1455;7067.82;dollar $;20223198;;666;8800;78752-9 -2022-11-05;2022-11-05T11:00:37Z;1121;10649.59;dollar $;20223197;;421;3321;40011-2 -2022-11-05;2022-11-05T06:22:24Z;2197;4991.66;dollar $;20223196;;290;5420;33379-5 -2022-11-05;2022-11-05T06:05:22Z;1217;1773;dollar $;20223195;;33;8800;71213-3 -2022-11-04;2022-11-04T23:00:34Z;1297;854;dollar $;20223194;;421;4078;43478-6 -2022-11-04;2022-11-04T21:24:47Z;1455;4317.65;zing Æ’;20223193;;421;1002;34349-7 -2022-11-04;2022-11-04T15:11:21Z;5986;5411.33;zing Æ’;20223192;;33;3321;83344-3 -2022-11-04;2022-11-04T13:00:01Z;4608;7100.46;dollar $;20223191;;421;1979;60553-5 -2022-11-04;2022-11-04T08:05:54Z;5764;5014.4;british pound £;20223190;;421;3321;36095-6 -2022-11-04;2022-11-04T06:54:16Z;3284;4508;dollar $;20223189;;290;1100;83218-6 -2022-11-04;2022-11-04T06:50:05Z;5243;8178.63;dollar $;20223188;;33;1002;46233-4 -2022-11-03;2022-11-03T19:33:42Z;2197;6968.88;dollar $;20223187;;290;1100;27466-1 -2022-11-03;2022-11-03T11:25:08Z;6032;5131;zing Æ’;20223186;;290;1100;45439-0 -2022-11-03;2022-11-03T08:21:21Z;3294;1663.24;dollar $;20223185;;33;8521;62805-5 -2022-11-03;2022-11-03T04:48:53Z;1455;3104;zing Æ’;20223184;;290;1200;78971-5 -2022-11-03;2022-11-03T04:20:24Z;2489;9861;zing Æ’;20223183;;421;6317;36605-3 -2022-11-03;2022-11-03T03:45:15Z;5986;6083.56;dollar $;20223182;;33;6317;69096-5 -2022-11-02;2022-11-02T18:39:59Z;1121;6005.61;euro €;20223181;;290;8521;72355-9 -2022-11-02;2022-11-02T17:55:39Z;1121;2540.08;dollar $;20223180;;421;8800;29669-6 -2022-11-02;2022-11-02T16:47:51Z;4862;7564.48;dollar $;20223179;;421;1979;47283-4 -2022-11-02;2022-11-02T14:32:29Z;1945;5989.01;british pound £;20223178;;290;6317;51518-9 -2022-11-02;2022-11-02T14:20:33Z;6032;8032;dollar $;20223177;;421;6552;53023-5 -2022-11-02;2022-11-02T11:24:16Z;1455;6480;zing Æ’;20223176;;666;1979;25532-8 -2022-11-02;2022-11-02T08:59:38Z;4608;1539.64;zing Æ’;20223175;;421;9921;80245-4 -2022-11-02;2022-11-02T07:32:53Z;6032;2952.23;dollar $;20223174;;666;2231;62083-8 -2022-11-02;2022-11-02T07:29:37Z;4965;6508;dollar $;20223173;;421;8800;36835-9 -2022-11-02;2022-11-02T04:13:35Z;6032;9015.53;dollar $;20223172;;666;6317;54894-2 -2022-11-02;2022-11-02T00:17:22Z;3294;5719;british pound £;20223171;;33;1100;66951-1 -2022-11-01;2022-11-01T23:22:48Z;4465;8785.67;zing Æ’;20223170;;290;8800;55551-3 -2022-11-01;2022-11-01T18:26:19Z;2197;8209;dollar $;20223169;;33;1002;81863-5 -2022-11-01;2022-11-01T14:00:39Z;3294;7686.35;british pound £;20223168;;33;8521;39525-9 -2022-11-01;2022-11-01T11:45:41Z;4023;6315.34;dollar $;20223167;;421;1979;58343-1 -2022-10-31;2022-10-31T21:18:18Z;4023;9846;dollar $;20223166;;33;2400;32638-9 -2022-10-31;2022-10-31T15:09:48Z;5987;7134;zing Æ’;20223165;;666;6317;81300-4 -2022-10-31;2022-10-31T15:04:16Z;5987;6885.59;zing Æ’;20223164;;666;1979;29440-2 -2022-10-31;2022-10-31T13:29:38Z;4023;7460;dollar $;20223163;;421;8521;43319-4 -2022-10-31;2022-10-31T10:45:38Z;1945;9939;dollar $;20223162;;666;6552;73205-5 -2022-10-31;2022-10-31T01:08:24Z;6032;10775;dollar $;20223161;;290;1200;83393-4 -2022-10-30;2022-10-30T23:20:14Z;4608;5894;zing Æ’;20223160;;421;2400;83189-4 -2022-10-30;2022-10-30T15:51:56Z;5243;9652;dollar $;20223159;;666;1100;49590-7 -2022-10-30;2022-10-30T13:55:25Z;3284;7038;euro €;20223158;;421;9921;85262-5 -2022-10-29;2022-10-29T18:39:28Z;4023;6203.95;dollar $;20223157;;33;1002;47227-8 -2022-10-29;2022-10-29T13:26:11Z;4023;7741.04;zing Æ’;20223156;;290;4425;80721-7 -2022-10-29;2022-10-29T12:18:13Z;3715;4440;dollar $;20223155;;33;1002;54325-1 -2022-10-29;2022-10-29T11:21:41Z;1217;842.08;zing Æ’;20223154;;666;4425;58245-7 -2022-10-29;2022-10-29T03:29:01Z;3100;4411;zing Æ’;20223153;;33;6317;41564-8 -2022-10-29;2022-10-29T02:07:04Z;5764;6187.35;zing Æ’;20223152;;421;1100;35581-0 -2022-10-28;2022-10-28T23:34:27Z;1217;8645.22;dollar $;20223151;;290;1100;68660-9 -2022-10-28;2022-10-28T21:57:33Z;2489;5286.69;dollar $;20223150;;290;8521;34642-6 -2022-10-28;2022-10-28T13:23:53Z;1121;8696;dollar $;20223149;;666;8521;82092-6 -2022-10-28;2022-10-28T12:41:41Z;5243;5860;dollar $;20223148;;666;1979;48889-8 -2022-10-28;2022-10-28T09:49:57Z;3795;11657;dollar $;20223147;;33;3321;65878-8 -2022-10-28;2022-10-28T00:28:36Z;4965;4859.72;zing Æ’;20223146;;290;2400;24942-7 -2022-10-27;2022-10-27T15:54:31Z;5188;9872.08;dollar $;20223145;;290;5420;60227-9 -2022-10-27;2022-10-27T15:29:27Z;1297;7335.89;british pound £;20223144;;33;4078;44382-6 -2022-10-27;2022-10-27T13:12:44Z;3715;4653;dollar $;20223143;;666;3321;33000-7 -2022-10-27;2022-10-27T11:02:59Z;1121;8745.47;dollar $;20223142;;421;8521;32197-3 -2022-10-27;2022-10-27T10:39:41Z;5986;4200.62;zing Æ’;20223141;;666;5420;36220-0 -2022-10-27;2022-10-27T02:58:04Z;5188;4518;dollar $;20223140;;666;1200;56064-5 -2022-10-26;2022-10-26T20:34:33Z;2489;6678;dollar $;20223139;;421;2231;32611-0 -2022-10-26;2022-10-26T19:56:51Z;1945;6738;dollar $;20223138;;666;8521;48515-7 -2022-10-26;2022-10-26T18:14:53Z;5243;9561;dollar $;20223137;;421;8800;36418-1 -2022-10-26;2022-10-26T06:22:26Z;2489;5064.47;dollar $;20223136;;33;5420;80668-9 -2022-10-25;2022-10-25T22:21:26Z;2489;1999;british pound £;20223135;;290;6552;62813-6 -2022-10-25;2022-10-25T18:39:45Z;3100;4766;dollar $;20223134;;666;3321;68938-9 -2022-10-25;2022-10-25T16:16:22Z;3715;10062.08;euro €;20223133;;33;2231;40428-0 -2022-10-25;2022-10-25T12:28:52Z;6032;8646;dollar $;20223132;;666;8521;81870-7 -2022-10-25;2022-10-25T09:11:01Z;4965;3698.84;dollar $;20223131;;421;8521;40720-4 -2022-10-25;2022-10-25T08:20:30Z;1121;9104.55;dollar $;20223130;;666;6317;31447-5 -2022-10-25;2022-10-25T06:06:18Z;5764;6255;zing Æ’;20223129;;666;5420;59950-8 -2022-10-25;2022-10-25T03:20:18Z;4862;3910.57;british pound £;20223128;;33;4425;27580-4 -2022-10-24;2022-10-24T22:40:33Z;5764;6490.6;dollar $;20223127;;666;2231;41709-8 -2022-10-24;2022-10-24T19:38:26Z;1945;8640.61;dollar $;20223126;;33;2231;44405-1 -2022-10-24;2022-10-24T19:12:13Z;1217;7694.74;dollar $;20223125;;33;1200;29895-5 -2022-10-24;2022-10-24T17:46:08Z;3100;6714.42;dollar $;20223124;;421;4078;59671-7 -2022-10-24;2022-10-24T15:40:00Z;3795;5144.93;dollar $;20223123;;290;6317;65747-1 -2022-10-24;2022-10-24T13:26:07Z;5764;8082;dollar $;20223122;;666;4078;35904-6 -2022-10-24;2022-10-24T08:51:36Z;1455;9113.91;dollar $;20223121;;421;1002;56886-6 -2022-10-23;2022-10-23T23:13:54Z;1217;9161.07;euro €;20223120;;290;5420;30355-8 -2022-10-23;2022-10-23T22:32:27Z;5986;8746;dollar $;20223119;;666;6317;78175-9 -2022-10-23;2022-10-23T06:45:45Z;5516;3642;dollar $;20223118;;290;3321;77440-4 -2022-10-23;2022-10-23T05:40:02Z;5987;7529;dollar $;20223117;;33;4425;49637-4 -2022-10-23;2022-10-23T04:46:59Z;3795;5573;british pound £;20223116;;290;6317;42664-0 -2022-10-23;2022-10-23T00:38:52Z;5986;4289.09;zing Æ’;20223115;;421;9921;84658-0 -2022-10-22;2022-10-22T22:50:34Z;2197;6597;dollar $;20223114;;666;1002;79378-0 -2022-10-22;2022-10-22T19:44:02Z;4465;7383.81;dollar $;20223113;;33;1002;75652-4 -2022-10-22;2022-10-22T12:54:20Z;2489;9880;zing Æ’;20223112;;33;8521;55094-3 -2022-10-22;2022-10-22T12:17:57Z;4608;4343.18;dollar $;20223111;;421;6317;66688-3 -2022-10-22;2022-10-22T09:44:38Z;5243;3634.06;dollar $;20223110;;290;4425;46432-8 -2022-10-22;2022-10-22T05:40:52Z;2197;8785;dollar $;20223109;;421;2400;38377-6 -2022-10-21;2022-10-21T23:42:51Z;1121;9027.74;dollar $;20223108;;421;4078;42747-7 -2022-10-21;2022-10-21T20:50:56Z;5987;6924;british pound £;20223107;;666;2231;58494-5 -2022-10-21;2022-10-21T20:13:09Z;4862;4187;dollar $;20223106;;666;2231;76724-8 -2022-10-21;2022-10-21T10:01:51Z;1217;7167;zing Æ’;20223105;;666;2400;25840-9 -2022-10-21;2022-10-21T01:01:27Z;3284;4389;dollar $;20223104;;666;1200;32990-4 -2022-10-20;2022-10-20T19:43:51Z;1945;6996.38;dollar $;20223103;;421;2231;59365-6 -2022-10-20;2022-10-20T19:33:45Z;1217;6758.06;dollar $;20223102;;33;9921;70148-6 -2022-10-20;2022-10-20T18:38:30Z;6032;9510;british pound £;20223101;;290;8521;67401-5 -2022-10-20;2022-10-20T08:19:08Z;1945;6623;dollar $;20223100;;290;2231;59267-7 -2022-10-20;2022-10-20T06:10:52Z;1945;4974;british pound £;20223099;;666;1200;56275-1 -2022-10-20;2022-10-20T03:16:20Z;5516;6555;dollar $;20223098;;421;3321;39274-0 -2022-10-19;2022-10-19T22:08:39Z;5987;5622.84;zing Æ’;20223097;;33;8521;82494-1 -2022-10-19;2022-10-19T17:39:21Z;3284;11860.8;dollar $;20223096;;421;6317;28435-5 -2022-10-19;2022-10-19T14:59:11Z;2197;6421;british pound £;20223095;;666;2400;81535-9 -2022-10-19;2022-10-19T14:54:20Z;4965;1327;dollar $;20223094;;290;1979;81719-5 -2022-10-19;2022-10-19T13:55:38Z;6032;6299.87;euro €;20223093;;33;9921;32332-5 -2022-10-19;2022-10-19T00:50:53Z;5516;5011.61;dollar $;20223092;;666;4078;67539-4 -2022-10-19;2022-10-19T00:35:39Z;2197;4497;dollar $;20223091;;421;1002;56931-0 -2022-10-18;2022-10-18T22:24:08Z;5764;9041;dollar $;20223090;;290;4078;65854-9 -2022-10-18;2022-10-18T21:33:56Z;3715;6696.47;euro €;20223089;;33;1002;66975-1 -2022-10-18;2022-10-18T20:59:12Z;3284;6507.1;zing Æ’;20223088;;290;8800;84381-7 -2022-10-18;2022-10-18T15:34:48Z;5764;9658.16;british pound £;20223087;;33;9921;50975-5 -2022-10-18;2022-10-18T14:31:08Z;4862;8440;dollar $;20223086;;33;1002;32300-6 -2022-10-18;2022-10-18T09:32:56Z;1217;2191.75;dollar $;20223085;;666;1100;26583-1 -2022-10-18;2022-10-18T06:40:52Z;4862;3856;zing Æ’;20223084;;33;8521;56155-0 -2022-10-18;2022-10-18T06:15:07Z;6032;8613.61;dollar $;20223083;;33;1979;66610-9 -2022-10-18;2022-10-18T05:13:08Z;5188;4945.73;dollar $;20223082;;290;1200;80458-7 -2022-10-17;2022-10-17T23:23:45Z;4465;5343;dollar $;20223081;;421;4078;81133-2 -2022-10-17;2022-10-17T19:30:49Z;3294;6368;dollar $;20223080;;290;9921;58696-1 -2022-10-17;2022-10-17T16:16:21Z;3795;4041.4;dollar $;20223079;;421;6317;32416-2 -2022-10-17;2022-10-17T09:16:42Z;3294;5822;zing Æ’;20223078;;33;8521;81285-9 -2022-10-17;2022-10-17T08:12:22Z;4862;4180;dollar $;20223077;;421;4078;36396-7 -2022-10-17;2022-10-17T04:17:50Z;2197;6178.51;dollar $;20223076;;290;1979;33223-6 -2022-10-16;2022-10-16T22:40:51Z;3715;7517.88;dollar $;20223075;;290;5420;77813-3 -2022-10-16;2022-10-16T19:42:27Z;5832;255.38;dollar $;20223074;;290;9921;38130-0 -2022-10-16;2022-10-16T14:27:47Z;3284;6590.07;dollar $;20223073;;290;6317;85360-8 -2022-10-16;2022-10-16T12:06:44Z;4465;7373;dollar $;20223072;;290;1002;54512-9 -2022-10-16;2022-10-16T07:44:46Z;1217;10971.13;british pound £;20223071;;666;9921;43672-2 -2022-10-16;2022-10-16T03:15:56Z;3284;3651;dollar $;20223070;;290;6552;81746-5 -2022-10-16;2022-10-16T02:29:59Z;5243;5804;zing Æ’;20223069;;33;2231;66266-0 -2022-10-16;2022-10-16T02:17:24Z;2489;3903;zing Æ’;20223068;;421;8521;77386-2 -2022-10-15;2022-10-15T18:27:15Z;3715;3820.35;dollar $;20223067;;666;1100;63296-3 -2022-10-15;2022-10-15T14:21:17Z;6032;10836.11;dollar $;20223066;;290;6317;31899-2 -2022-10-15;2022-10-15T13:40:26Z;1121;8219.44;dollar $;20223065;;666;6317;43390-4 -2022-10-15;2022-10-15T13:09:24Z;5987;3389.34;dollar $;20223064;;290;4078;69797-9 -2022-10-15;2022-10-15T09:15:38Z;4965;8086.23;dollar $;20223063;;421;5420;82063-1 -2022-10-15;2022-10-15T02:38:40Z;1945;4445.98;dollar $;20223062;;290;1002;80035-9 -2022-10-15;2022-10-15T00:29:56Z;1217;6655.46;dollar $;20223061;;33;5420;57443-1 -2022-10-15;2022-10-15T00:02:15Z;3294;4524;zing Æ’;20223060;;33;4425;47633-3 -2022-10-14;2022-10-14T22:13:09Z;1945;5742.39;dollar $;20223059;;33;1979;30452-9 -2022-10-14;2022-10-14T13:37:58Z;5832;8166;dollar $;20223058;;666;3321;59252-9 -2022-10-14;2022-10-14T12:08:21Z;1945;10139.03;british pound £;20223057;;290;5420;58410-9 -2022-10-14;2022-10-14T05:29:33Z;4465;9294.96;dollar $;20223056;;290;5420;78101-7 -2022-10-14;2022-10-14T04:44:12Z;4862;7385.8;dollar $;20223055;;33;6317;63155-4 -2022-10-14;2022-10-14T00:27:33Z;4608;7255;zing Æ’;20223054;;666;8800;47529-8 -2022-10-13;2022-10-13T22:59:41Z;5764;6510.01;dollar $;20223053;;33;9921;53232-0 -2022-10-13;2022-10-13T22:43:55Z;3294;4426.13;dollar $;20223052;;33;6317;84411-6 -2022-10-13;2022-10-13T19:03:24Z;5243;5106.55;british pound £;20223051;;421;2400;34655-7 -2022-10-13;2022-10-13T13:08:57Z;1121;7360.09;dollar $;20223050;;290;5420;58196-6 -2022-10-13;2022-10-13T10:20:41Z;4465;8531.47;british pound £;20223049;;666;1200;56004-1 -2022-10-13;2022-10-13T09:29:08Z;3284;4571.23;dollar $;20223048;;421;1979;59087-9 -2022-10-13;2022-10-13T07:49:58Z;1217;5293;dollar $;20223047;;33;5420;58925-6 -2022-10-13;2022-10-13T02:58:00Z;3715;7174.07;dollar $;20223046;;290;4078;82363-7 -2022-10-13;2022-10-13T00:19:13Z;1455;5083;dollar $;20223045;;290;8800;73751-2 -2022-10-13;2022-10-13T00:16:16Z;1455;6605.03;dollar $;20223044;;421;3321;67367-0 -2022-10-12;2022-10-12T18:15:22Z;3100;479;dollar $;20223043;;290;6317;63903-6 -2022-10-12;2022-10-12T14:05:09Z;2489;5920;dollar $;20223042;;421;2231;69347-0 -2022-10-12;2022-10-12T11:48:43Z;5243;5460.54;zing Æ’;20223041;;666;9921;82967-6 -2022-10-12;2022-10-12T11:38:27Z;5764;6492.06;zing Æ’;20223040;;33;1200;52054-2 -2022-10-12;2022-10-12T10:37:33Z;2489;9927;dollar $;20223039;;33;4425;70291-6 -2022-10-12;2022-10-12T09:28:52Z;3795;4224.3;dollar $;20223038;;421;8800;37284-3 -2022-10-12;2022-10-12T08:00:01Z;2197;7436;dollar $;20223037;;666;3321;59162-8 -2022-10-12;2022-10-12T06:23:19Z;5516;10291;dollar $;20223036;;33;4078;65364-2 -2022-10-12;2022-10-12T03:51:38Z;1455;6598.74;british pound £;20223035;;666;1200;26370-6 -2022-10-11;2022-10-11T15:59:31Z;1455;7514;dollar $;20223034;;33;4078;31205-8 -2022-10-11;2022-10-11T13:31:18Z;3100;10510;dollar $;20223033;;666;6317;57971-9 -2022-10-11;2022-10-11T07:06:41Z;5516;4315;british pound £;20223032;;666;2231;71700-4 -2022-10-10;2022-10-10T15:21:42Z;3284;2339.86;dollar $;20223031;;421;9921;84693-7 -2022-10-10;2022-10-10T11:04:15Z;5832;6026;euro €;20223030;;290;1200;34569-8 -2022-10-10;2022-10-10T07:33:54Z;5986;6870;zing Æ’;20223029;;33;8521;46208-2 -2022-10-10;2022-10-10T04:24:04Z;5832;6700;zing Æ’;20223028;;421;5420;68777-4 -2022-10-09;2022-10-09T10:33:10Z;5243;6009;dollar $;20223027;;33;4425;55833-4 -2022-10-09;2022-10-09T09:50:05Z;1297;9510;dollar $;20223026;;666;2400;49922-9 -2022-10-09;2022-10-09T07:27:53Z;1297;11481.72;zing Æ’;20223025;;666;9921;68640-0 -2022-10-09;2022-10-09T02:20:45Z;1217;5770;dollar $;20223024;;290;4078;46773-5 -2022-10-08;2022-10-08T23:12:32Z;1297;8636.08;zing Æ’;20223023;;666;8800;69433-1 -2022-10-08;2022-10-08T21:26:38Z;1297;6070;dollar $;20223022;;421;1100;65182-7 -2022-10-08;2022-10-08T14:58:29Z;3795;6201;dollar $;20223021;;421;1200;80449-6 -2022-10-08;2022-10-08T13:01:15Z;4965;2135;dollar $;20223020;;33;1979;73011-7 -2022-10-08;2022-10-08T12:47:08Z;1945;7186.25;dollar $;20223019;;290;8521;74173-8 -2022-10-08;2022-10-08T10:42:17Z;2197;6796;dollar $;20223018;;666;9921;79643-0 -2022-10-08;2022-10-08T09:00:07Z;4608;8931;zing Æ’;20223017;;666;2231;38175-0 -2022-10-08;2022-10-08T08:40:53Z;2197;5885;zing Æ’;20223016;;33;1100;45639-5 -2022-10-08;2022-10-08T06:40:08Z;1455;4667.33;zing Æ’;20223015;;33;4078;47297-9 -2022-10-07;2022-10-07T19:42:54Z;2727;5211;dollar $;20223014;;290;2400;46282-1 -2022-10-07;2022-10-07T17:45:02Z;2197;4473;dollar $;20223013;;33;5420;54529-1 -2022-10-07;2022-10-07T07:22:42Z;5516;8601;dollar $;20223012;;421;1979;51555-7 -2022-10-07;2022-10-07T06:42:12Z;2489;7719.24;zing Æ’;20223011;;666;1100;48856-1 -2022-10-07;2022-10-07T03:57:03Z;5764;2611.25;dollar $;20223010;;421;5420;81741-4 -2022-10-06;2022-10-06T23:02:28Z;4965;7171.29;zing Æ’;20223009;;290;9921;38763-9 -2022-10-06;2022-10-06T16:16:12Z;3715;5897;dollar $;20223008;;33;4425;78756-1 -2022-10-06;2022-10-06T11:10:20Z;1455;6967;british pound £;20223007;;666;6317;35095-4 -2022-10-06;2022-10-06T10:34:37Z;1217;9587.4;dollar $;20223006;;421;4078;60189-3 -2022-10-06;2022-10-06T07:48:33Z;5243;5883.2;british pound £;20223005;;666;6317;78024-1 -2022-10-06;2022-10-06T00:27:22Z;1217;8667.42;dollar $;20223004;;666;2400;30457-8 -2022-10-05;2022-10-05T23:18:35Z;5188;4206;dollar $;20223003;;290;8800;36413-7 -2022-10-05;2022-10-05T18:06:50Z;1121;7865.68;zing Æ’;20223002;;666;6552;78390-4 -2022-10-05;2022-10-05T15:30:53Z;1455;5533.14;british pound £;20223001;;290;4425;34707-9 -2022-10-05;2022-10-05T09:00:30Z;3100;8777;dollar $;20223000;;33;6552;31642-2 -2022-10-05;2022-10-05T06:26:41Z;4023;5196.36;dollar $;20222999;;33;8521;76697-1 -2022-10-05;2022-10-05T03:27:28Z;3284;1788;dollar $;20222998;;666;2400;60319-9 -2022-10-05;2022-10-05T03:08:47Z;3294;8472.99;dollar $;20222997;;666;4078;46079-6 -2022-10-05;2022-10-05T02:21:24Z;2197;8497;dollar $;20222996;;290;9921;64420-9 -2022-10-05;2022-10-05T01:41:33Z;3795;10523.21;british pound £;20222995;;33;6552;25390-2 -2022-10-05;2022-10-05T00:47:34Z;5243;7556;zing Æ’;20222994;;666;4078;84428-4 -2022-10-04;2022-10-04T20:18:43Z;1297;5512;dollar $;20222993;;290;4425;29126-3 -2022-10-04;2022-10-04T15:42:18Z;3715;9641;zing Æ’;20222992;;421;2231;60134-3 -2022-10-04;2022-10-04T14:35:13Z;3100;6458.83;dollar $;20222991;;421;4425;44358-1 -2022-10-04;2022-10-04T09:00:13Z;3100;6369.04;dollar $;20222990;;290;2231;66540-8 -2022-10-04;2022-10-04T06:10:41Z;5832;1964.66;british pound £;20222989;;666;5420;61971-5 -2022-10-04;2022-10-04T04:42:57Z;4608;5208.56;dollar $;20222988;;666;4078;84618-2 -2022-10-04;2022-10-04T04:03:49Z;3715;8220.97;dollar $;20222987;;33;2231;53557-8 -2022-10-04;2022-10-04T01:36:51Z;3294;6024;dollar $;20222986;;421;6317;61023-8 -2022-10-03;2022-10-03T19:53:58Z;3100;5821;dollar $;20222985;;421;4078;39457-8 -2022-10-03;2022-10-03T19:40:41Z;3795;7343.43;dollar $;20222984;;33;3321;85347-2 -2022-10-03;2022-10-03T04:34:38Z;4862;10978.17;dollar $;20222983;;290;4425;51205-8 -2022-10-02;2022-10-02T20:54:51Z;3294;5569;dollar $;20222982;;33;6317;62783-0 -2022-10-02;2022-10-02T02:35:16Z;5987;5807.43;dollar $;20222981;;33;4078;25930-3 -2022-10-01;2022-10-01T18:52:32Z;2727;6175;euro €;20222980;;33;8800;58138-8 -2022-10-01;2022-10-01T16:48:12Z;5832;6445;dollar $;20222979;;33;1100;70127-1 -2022-10-01;2022-10-01T12:57:00Z;6032;8490;zing Æ’;20222978;;421;1200;53962-3 -2022-10-01;2022-10-01T09:32:31Z;2489;10155;dollar $;20222977;;33;2400;62368-7 -2022-09-30;2022-09-30T22:02:15Z;5832;6490.42;zing Æ’;20222976;;33;9921;38469-2 -2022-09-30;2022-09-30T09:31:48Z;2727;5157;dollar $;20222975;;290;2231;31943-6 -2022-09-30;2022-09-30T09:24:52Z;5764;3630;british pound £;20222974;;421;1200;25903-9 -2022-09-30;2022-09-30T00:51:55Z;2489;5030;dollar $;20222973;;290;8800;39033-0 -2022-09-29;2022-09-29T20:42:29Z;2727;10708.27;zing Æ’;20222972;;33;4078;81185-4 -2022-09-29;2022-09-29T18:26:39Z;5243;8694.01;dollar $;20222971;;290;4078;76187-4 -2022-09-29;2022-09-29T13:38:48Z;3715;4043.73;dollar $;20222970;;666;1979;39653-5 -2022-09-29;2022-09-29T04:17:24Z;2489;5756;dollar $;20222969;;421;8521;76539-9 -2022-09-29;2022-09-29T03:54:54Z;4608;9980;zing Æ’;20222968;;666;1100;68219-4 -2022-09-28;2022-09-28T23:34:15Z;2727;6078.26;zing Æ’;20222967;;33;2231;74840-2 -2022-09-28;2022-09-28T20:21:57Z;3100;7541.06;british pound £;20222966;;290;8800;66094-7 -2022-09-28;2022-09-28T16:11:19Z;3284;1903.09;dollar $;20222965;;421;1100;71163-2 -2022-09-28;2022-09-28T15:58:18Z;6032;8311.54;zing Æ’;20222964;;666;6317;60588-4 -2022-09-28;2022-09-28T15:22:20Z;3284;5070.42;zing Æ’;20222963;;421;1100;62724-0 -2022-09-28;2022-09-28T13:31:15Z;5986;6959;dollar $;20222962;;33;5420;81767-4 -2022-09-28;2022-09-28T11:00:47Z;1945;10359;dollar $;20222961;;421;8521;28480-6 -2022-09-28;2022-09-28T06:14:06Z;1121;8830;zing Æ’;20222960;;666;6317;86095-2 -2022-09-28;2022-09-28T04:54:11Z;1121;5952.73;dollar $;20222959;;421;1979;29614-3 -2022-09-27;2022-09-27T12:50:15Z;2727;9716;zing Æ’;20222958;;421;6552;55047-6 -2022-09-27;2022-09-27T07:22:24Z;5832;3915.45;zing Æ’;20222957;;666;2400;69658-9 -2022-09-27;2022-09-27T05:05:03Z;5986;6757.66;dollar $;20222956;;290;4425;36516-1 -2022-09-26;2022-09-26T18:49:38Z;5516;4911.35;dollar $;20222955;;666;1979;28725-7 -2022-09-26;2022-09-26T11:07:38Z;1945;3402;dollar $;20222954;;421;3321;71440-8 -2022-09-26;2022-09-26T09:43:57Z;1455;7169;zing Æ’;20222953;;421;5420;81324-3 -2022-09-26;2022-09-26T04:09:46Z;5516;3204.27;zing Æ’;20222952;;421;6552;44502-5 -2022-09-26;2022-09-26T02:40:26Z;4965;3295.58;dollar $;20222951;;421;1979;79124-9 -2022-09-26;2022-09-26T01:31:46Z;4862;3631.27;dollar $;20222950;;421;6317;37886-6 -2022-09-26;2022-09-26T00:21:50Z;4965;5679.93;dollar $;20222949;;33;3321;82192-7 -2022-09-25;2022-09-25T14:27:08Z;1217;7620.62;dollar $;20222948;;666;8521;26697-9 -2022-09-25;2022-09-25T13:08:03Z;3795;6269.68;dollar $;20222947;;290;2231;63169-9 -2022-09-25;2022-09-25T03:24:30Z;3284;7124.29;zing Æ’;20222946;;290;5420;80234-2 -2022-09-24;2022-09-24T19:44:16Z;1217;7722.88;zing Æ’;20222945;;666;1100;76977-1 -2022-09-24;2022-09-24T16:00:16Z;5188;6820;dollar $;20222944;;421;1200;65783-1 -2022-09-24;2022-09-24T15:18:38Z;5243;5004.13;dollar $;20222943;;33;4425;70386-7 -2022-09-24;2022-09-24T12:30:55Z;3795;4451.67;zing Æ’;20222942;;290;2231;81939-0 -2022-09-24;2022-09-24T09:28:44Z;1217;3873;dollar $;20222941;;421;3321;56147-2 -2022-09-24;2022-09-24T09:26:33Z;5188;5374.41;zing Æ’;20222940;;33;8521;44260-0 -2022-09-24;2022-09-24T01:14:40Z;1945;8936.48;dollar $;20222939;;290;6317;46820-9 -2022-09-23;2022-09-23T22:49:19Z;1121;1327;british pound £;20222938;;290;5420;77350-1 -2022-09-23;2022-09-23T07:22:49Z;3284;9453;dollar $;20222937;;666;4078;72033-2 -2022-09-23;2022-09-23T05:21:28Z;1217;5822;dollar $;20222936;;290;4425;58342-6 -2022-09-22;2022-09-22T20:31:16Z;3795;6410.28;dollar $;20222935;;290;2231;37214-5 -2022-09-22;2022-09-22T15:51:40Z;5188;7453.29;british pound £;20222934;;666;6552;29105-3 -2022-09-22;2022-09-22T14:40:16Z;4862;8192;zing Æ’;20222933;;290;1979;77605-3 -2022-09-22;2022-09-22T11:03:05Z;5832;8812;dollar $;20222932;;33;2400;75719-5 -2022-09-22;2022-09-22T10:29:51Z;3795;6081;zing Æ’;20222931;;666;1002;41888-0 -2022-09-22;2022-09-22T06:33:03Z;2727;10556.87;dollar $;20222930;;290;3321;55787-2 -2022-09-22;2022-09-22T05:49:51Z;3715;7442;euro €;20222929;;290;1979;86058-7 -2022-09-22;2022-09-22T05:33:50Z;1945;7575;dollar $;20222928;;666;2231;25530-4 -2022-09-22;2022-09-22T03:03:51Z;1297;4770;dollar $;20222927;;290;4425;67794-1 -2022-09-21;2022-09-21T22:34:52Z;5764;8615.61;dollar $;20222926;;421;9921;74984-8 -2022-09-21;2022-09-21T10:19:34Z;5987;7212;dollar $;20222925;;290;8521;77242-6 -2022-09-21;2022-09-21T08:34:14Z;3284;7001;dollar $;20222924;;33;3321;40301-3 -2022-09-21;2022-09-21T05:56:42Z;6032;5033;dollar $;20222923;;666;6552;75252-0 -2022-09-21;2022-09-21T04:38:15Z;4023;5957;dollar $;20222922;;290;6552;60527-1 -2022-09-21;2022-09-21T03:50:35Z;2727;4855;dollar $;20222921;;290;1979;35119-7 -2022-09-21;2022-09-21T00:40:04Z;5243;3923.12;dollar $;20222920;;421;6552;65260-1 -2022-09-20;2022-09-20T22:04:09Z;3715;8611.93;dollar $;20222919;;421;8521;86407-9 -2022-09-20;2022-09-20T21:53:24Z;1121;4900;dollar $;20222918;;666;2400;45825-1 -2022-09-20;2022-09-20T21:10:44Z;3284;2644;dollar $;20222917;;33;8800;53471-0 -2022-09-20;2022-09-20T15:20:49Z;5188;6090.7;dollar $;20222916;;290;6317;38573-4 -2022-09-20;2022-09-20T13:53:10Z;5986;11522.49;dollar $;20222915;;421;6317;84388-7 -2022-09-20;2022-09-20T10:11:16Z;4608;5352;dollar $;20222914;;421;6552;37511-6 -2022-09-20;2022-09-20T06:55:47Z;3294;6027;british pound £;20222913;;33;2400;66465-8 -2022-09-20;2022-09-20T00:59:51Z;5188;7583.9;dollar $;20222912;500 Server Unavailable;290;1979;85242-1 -2022-09-19;2022-09-19T19:41:41Z;3715;8503.78;zing Æ’;20222911;;666;5420;60430-3 -2022-09-19;2022-09-19T18:21:28Z;4965;7859;dollar $;20222910;;666;1979;34916-8 -2022-09-19;2022-09-19T15:42:58Z;4862;4979;dollar $;20222909;;421;1002;69192-2 -2022-09-19;2022-09-19T14:39:29Z;5516;3139;zing Æ’;20222908;;33;3321;84389-1 -2022-09-19;2022-09-19T00:20:31Z;5986;4068;zing Æ’;20222907;;33;2231;24830-9 -2022-09-18;2022-09-18T22:09:24Z;4608;3058;dollar $;20222906;;33;6552;65245-1 -2022-09-18;2022-09-18T07:45:36Z;3715;3647.28;dollar $;20222905;;421;8521;82432-5 -2022-09-18;2022-09-18T05:40:53Z;5832;8644.87;zing Æ’;20222904;;33;8800;35213-9 -2022-09-17;2022-09-17T23:52:17Z;5243;8193;dollar $;20222903;;666;6317;58083-9 -2022-09-17;2022-09-17T23:25:46Z;5986;7583.13;dollar $;20222902;;666;1200;61480-7 -2022-09-17;2022-09-17T19:19:52Z;3795;4527;dollar $;20222901;;290;1979;57089-3 -2022-09-17;2022-09-17T08:02:42Z;4023;7984;zing Æ’;20222900;;33;5420;35700-3 -2022-09-17;2022-09-17T03:26:31Z;1121;3520.74;dollar $;20222899;;290;2400;68006-4 -2022-09-17;2022-09-17T03:23:34Z;2197;4179.92;dollar $;20222898;;666;2231;60373-0 -2022-09-17;2022-09-17T00:43:33Z;1297;3894.83;euro €;20222897;;421;4078;35982-6 -2022-09-16;2022-09-16T23:35:40Z;3294;129.09;zing Æ’;20222896;;290;3321;60867-9 -2022-09-16;2022-09-16T20:18:35Z;3100;3677;dollar $;20222895;;33;1002;49558-6 -2022-09-16;2022-09-16T04:31:57Z;4862;3298;dollar $;20222894;;421;1100;80789-5 -2022-09-16;2022-09-16T03:50:34Z;5987;8344;dollar $;20222893;;666;6552;36844-1 -2022-09-16;2022-09-16T03:36:54Z;3100;8541;zing Æ’;20222892;;290;8521;41024-3 -2022-09-16;2022-09-16T03:03:37Z;1121;2276.94;british pound £;20222891;;421;1979;80218-8 -2022-09-16;2022-09-16T00:29:09Z;4965;5647.11;dollar $;20222890;;666;1002;36406-5 -2022-09-15;2022-09-15T18:45:07Z;3795;8226.72;zing Æ’;20222889;;290;4425;39047-7 -2022-09-15;2022-09-15T18:18:19Z;3294;3306.33;dollar $;20222888;;421;1200;81240-5 -2022-09-15;2022-09-15T14:50:41Z;5516;3985;dollar $;20222887;;290;4425;74028-8 -2022-09-15;2022-09-15T07:42:04Z;5986;6861.11;dollar $;20222886;;33;6317;60410-6 -2022-09-15;2022-09-15T02:56:17Z;6032;4634.79;british pound £;20222885;;290;1002;61723-0 -2022-09-14;2022-09-14T22:39:36Z;4465;5410.52;zing Æ’;20222884;;290;1979;72496-9 -2022-09-14;2022-09-14T19:23:43Z;1297;6954;dollar $;20222883;;33;1200;27695-3 -2022-09-14;2022-09-14T13:53:16Z;4965;3212.63;zing Æ’;20222882;;421;1002;36668-4 -2022-09-14;2022-09-14T06:49:46Z;4465;6449;zing Æ’;20222881;;290;4425;62558-2 -2022-09-14;2022-09-14T04:06:30Z;4465;5804;zing Æ’;20222880;;666;1100;52701-6 -2022-09-14;2022-09-14T03:17:02Z;5987;9615;dollar $;20222879;;33;6552;49781-6 -2022-09-14;2022-09-14T03:05:00Z;4862;5846;zing Æ’;20222878;;290;6552;66754-2 -2022-09-13;2022-09-13T21:26:15Z;1217;3889;zing Æ’;20222877;;33;1002;71427-7 -2022-09-13;2022-09-13T20:47:44Z;1455;6744.93;dollar $;20222876;;421;1200;53171-6 -2022-09-13;2022-09-13T16:40:43Z;1121;4654;dollar $;20222875;;290;2231;56796-6 -2022-09-13;2022-09-13T10:25:20Z;4023;7491.27;euro €;20222874;;33;6317;77353-9 -2022-09-13;2022-09-13T06:42:43Z;5243;5853;euro €;20222873;;666;9921;69924-5 -2022-09-13;2022-09-13T06:31:49Z;4862;10887;british pound £;20222872;;290;1979;56527-1 -2022-09-13;2022-09-13T01:15:02Z;2489;6028.02;british pound £;20222871;;33;6317;56088-5 -2022-09-12;2022-09-12T15:02:26Z;5764;5249;dollar $;20222870;;666;8521;32878-1 -2022-09-12;2022-09-12T07:07:59Z;5243;7766.64;zing Æ’;20222869;;33;2231;81838-4 -2022-09-12;2022-09-12T01:11:23Z;1121;8105.03;dollar $;20222868;;421;3321;68191-8 -2022-09-11;2022-09-11T22:12:54Z;3284;8163.75;dollar $;20222867;;290;8800;37111-6 -2022-09-11;2022-09-11T21:48:06Z;4965;5694;zing Æ’;20222866;;290;3321;54295-3 -2022-09-11;2022-09-11T19:22:52Z;3715;4505.83;dollar $;20222865;;421;6552;35994-5 -2022-09-11;2022-09-11T11:50:29Z;2197;3715.48;dollar $;20222864;;421;3321;68879-3 -2022-09-10;2022-09-10T21:16:26Z;5188;2058;british pound £;20222863;;666;8521;49644-7 -2022-09-10;2022-09-10T19:29:05Z;2197;5046.68;dollar $;20222862;;421;5420;84663-4 -2022-09-10;2022-09-10T18:14:53Z;2197;7912.02;dollar $;20222861;;421;6552;32396-3 -2022-09-10;2022-09-10T17:04:49Z;1121;5862.03;dollar $;20222860;;290;1200;60725-5 -2022-09-10;2022-09-10T16:59:21Z;1455;6474;british pound £;20222859;;290;6552;64678-1 -2022-09-10;2022-09-10T16:20:32Z;1217;8420.84;dollar $;20222858;;290;8800;48295-1 -2022-09-10;2022-09-10T15:09:41Z;2197;6271.66;dollar $;20222857;;421;1002;71188-9 -2022-09-10;2022-09-10T05:51:24Z;6032;4408.8;dollar $;20222856;;666;2400;37317-1 -2022-09-10;2022-09-10T05:26:55Z;1945;9012.15;dollar $;20222855;;33;9921;62434-4 -2022-09-10;2022-09-10T04:58:00Z;4465;5705;dollar $;20222854;;290;1002;69160-5 -2022-09-10;2022-09-10T03:47:06Z;3294;4020;dollar $;20222853;;666;9921;27938-8 -2022-09-09;2022-09-09T22:21:47Z;3294;8478;zing Æ’;20222852;;421;1100;64772-4 -2022-09-09;2022-09-09T16:59:53Z;4465;3075;dollar $;20222851;;33;3321;37531-5 -2022-09-09;2022-09-09T11:39:53Z;3715;4307.83;dollar $;20222850;;421;1002;83622-5 -2022-09-09;2022-09-09T07:03:16Z;5188;6679;dollar $;20222849;;666;1979;30369-3 -2022-09-08;2022-09-08T22:05:56Z;5516;8835;dollar $;20222848;;421;1100;80075-6 -2022-09-08;2022-09-08T16:38:30Z;4608;2558;dollar $;20222847;;666;4425;37417-6 -2022-09-08;2022-09-08T07:38:41Z;1217;4245;dollar $;20222846;;290;9921;61312-6 -2022-09-08;2022-09-08T04:04:39Z;4023;9071.03;zing Æ’;20222845;;33;6317;38259-1 -2022-09-07;2022-09-07T22:10:45Z;3284;3714.54;dollar $;20222844;;421;8800;43807-1 -2022-09-07;2022-09-07T20:17:29Z;1455;5714;dollar $;20222843;;290;4078;86244-3 -2022-09-07;2022-09-07T17:38:16Z;1945;9793.74;british pound £;20222842;;33;2231;71046-0 -2022-09-07;2022-09-07T15:28:49Z;5516;8288.58;zing Æ’;20222841;;290;1979;82430-1 -2022-09-07;2022-09-07T13:02:35Z;3795;4992.19;zing Æ’;20222840;;33;2400;34794-9 -2022-09-07;2022-09-07T08:59:00Z;3284;6107.13;zing Æ’;20222839;;33;6552;62757-9 -2022-09-07;2022-09-07T02:29:58Z;5832;12559.35;dollar $;20222838;;290;1979;47195-8 -2022-09-06;2022-09-06T22:39:47Z;5987;4931.74;dollar $;20222837;;290;5420;80990-4 -2022-09-06;2022-09-06T20:08:55Z;5764;7206.07;dollar $;20222836;;33;3321;44982-8 -2022-09-06;2022-09-06T04:53:50Z;3715;885.66;dollar $;20222835;;421;8521;42468-8 -2022-09-06;2022-09-06T04:07:08Z;5516;544.65;dollar $;20222834;;290;3321;39283-8 -2022-09-06;2022-09-06T01:54:41Z;5764;7214.44;dollar $;20222833;;666;6317;80481-0 -2022-09-06;2022-09-06T01:31:16Z;3715;9129.79;british pound £;20222832;;666;3321;84126-9 -2022-09-06;2022-09-06T00:00:11Z;5188;10706;zing Æ’;20222831;;290;8521;28573-7 -2022-09-05;2022-09-05T20:55:05Z;4465;6535.08;dollar $;20222830;;666;4078;76260-9 -2022-09-05;2022-09-05T20:53:24Z;5832;6301.68;dollar $;20222829;;33;5420;69499-7 -2022-09-05;2022-09-05T12:45:43Z;4023;5663.3;british pound £;20222828;;290;6552;37701-9 -2022-09-05;2022-09-05T11:26:48Z;1121;4343;zing Æ’;20222827;;421;4078;64623-4 -2022-09-05;2022-09-05T10:44:38Z;5986;4352.15;dollar $;20222826;;290;1002;28097-3 -2022-09-05;2022-09-05T02:58:57Z;6032;9653;zing Æ’;20222825;;33;3321;24755-1 -2022-09-05;2022-09-05T00:47:32Z;3795;8711.31;british pound £;20222824;;33;1100;51490-0 -2022-09-04;2022-09-04T20:39:48Z;6032;4723.48;dollar $;20222823;;666;8800;81341-0 -2022-09-04;2022-09-04T18:50:24Z;4465;6799.61;dollar $;20222822;;421;5420;78317-9 -2022-09-04;2022-09-04T15:14:09Z;4965;7208.45;dollar $;20222821;;290;1100;63921-3 -2022-09-04;2022-09-04T14:23:02Z;3795;3912.22;zing Æ’;20222820;;666;1979;82358-3 -2022-09-04;2022-09-04T14:09:59Z;2727;12024.24;dollar $;20222819;;666;4425;50911-6 -2022-09-04;2022-09-04T06:14:36Z;5243;6889;dollar $;20222818;;666;6317;47315-1 -2022-09-04;2022-09-04T00:39:45Z;3294;3873.71;dollar $;20222817;;421;3321;77927-4 -2022-09-03;2022-09-03T16:26:14Z;5243;3154;zing Æ’;20222816;;421;1002;46802-5 -2022-09-03;2022-09-03T15:42:02Z;1121;4958.31;zing Æ’;20222815;;666;1002;57243-1 -2022-09-03;2022-09-03T09:07:59Z;3795;3654;zing Æ’;20222814;408 Request Timeout;290;9921;60494-5 -2022-09-03;2022-09-03T06:35:31Z;4023;2605.36;dollar $;20222813;;421;6317;45351-1 -2022-09-03;2022-09-03T04:17:29Z;2489;5452.8;zing Æ’;20222812;;33;2231;56694-2 -2022-09-02;2022-09-02T23:00:47Z;4023;9052;zing Æ’;20222811;;666;8800;81693-0 -2022-09-02;2022-09-02T20:28:43Z;5764;2106.84;british pound £;20222810;;33;6317;58677-3 -2022-09-02;2022-09-02T19:06:24Z;5243;6003.92;dollar $;20222809;;290;9921;63027-4 -2022-09-02;2022-09-02T15:04:46Z;1217;10756;dollar $;20222808;;33;1200;74837-9 -2022-09-02;2022-09-02T11:37:56Z;5764;1667;zing Æ’;20222807;;290;4078;53571-5 -2022-09-02;2022-09-02T11:04:46Z;2727;9115.55;british pound £;20222806;;421;1100;62217-6 -2022-09-02;2022-09-02T02:19:18Z;5986;5843;dollar $;20222805;;421;6552;58179-1 -2022-09-01;2022-09-01T20:35:02Z;2727;6445.69;euro €;20222804;;33;4078;47573-7 -2022-09-01;2022-09-01T19:56:23Z;3294;7349;dollar $;20222803;;33;6552;44032-2 -2022-09-01;2022-09-01T16:23:11Z;1121;6024;british pound £;20222802;;421;6552;28514-4 -2022-09-01;2022-09-01T11:59:54Z;4862;5349.69;british pound £;20222801;;421;5420;69094-5 -2022-09-01;2022-09-01T10:24:59Z;5243;5080.98;zing Æ’;20222800;;421;2231;35030-2 -2022-09-01;2022-09-01T08:44:03Z;3795;6014;dollar $;20222799;;290;6552;37408-3 -2022-09-01;2022-09-01T06:37:12Z;3715;9733;dollar $;20222798;;421;6552;52981-3 -2022-08-31;2022-08-31T16:15:51Z;1297;7376.54;british pound £;20222797;;666;8800;85620-2 -2022-08-31;2022-08-31T15:25:41Z;5987;8425.9;dollar $;20222796;;33;4078;39807-6 -2022-08-31;2022-08-31T13:53:10Z;3284;8402;dollar $;20222795;;290;3321;46858-6 -2022-08-31;2022-08-31T09:41:41Z;1121;3398.73;zing Æ’;20222794;;421;1100;58338-7 -2022-08-31;2022-08-31T00:19:39Z;4862;5707;dollar $;20222793;;290;1979;55654-4 -2022-08-30;2022-08-30T13:11:38Z;5832;5679.89;british pound £;20222792;;290;6552;65896-3 -2022-08-30;2022-08-30T08:24:01Z;5832;5682;zing Æ’;20222791;;33;6552;48325-5 -2022-08-30;2022-08-30T05:28:57Z;5832;8631.76;dollar $;20222790;;290;9921;36735-8 -2022-08-30;2022-08-30T04:45:35Z;5243;6895;dollar $;20222789;;290;4425;75409-8 -2022-08-29;2022-08-29T20:45:25Z;1217;5050;dollar $;20222788;;421;3321;82198-9 -2022-08-29;2022-08-29T20:17:48Z;2197;7373.52;british pound £;20222787;;290;9921;26177-2 -2022-08-29;2022-08-29T19:54:21Z;5188;1240.78;british pound £;20222786;;290;2400;62449-1 -2022-08-29;2022-08-29T16:32:53Z;4862;7185.59;dollar $;20222785;;290;6317;41936-4 -2022-08-29;2022-08-29T15:13:13Z;6032;8346;british pound £;20222784;;421;8521;68083-1 -2022-08-29;2022-08-29T15:00:58Z;3795;8607.46;dollar $;20222783;;290;4078;74764-5 -2022-08-29;2022-08-29T14:30:30Z;3795;7256;dollar $;20222782;;290;1979;78760-1 -2022-08-29;2022-08-29T10:36:29Z;3795;5801;dollar $;20222781;;33;1002;57085-4 -2022-08-29;2022-08-29T09:57:58Z;4965;4534.23;dollar $;20222780;;421;4425;55099-5 -2022-08-29;2022-08-29T01:31:23Z;3100;6517;british pound £;20222779;;421;4078;60724-5 -2022-08-29;2022-08-29T00:28:53Z;5764;4517;dollar $;20222778;;33;6552;83919-5 -2022-08-28;2022-08-28T23:38:27Z;4608;5924.13;zing Æ’;20222777;;33;1979;38871-4 -2022-08-28;2022-08-28T23:19:36Z;3715;8981.5;zing Æ’;20222776;;666;1979;85269-2 -2022-08-28;2022-08-28T23:19:21Z;5243;5040;dollar $;20222775;;421;2400;37557-7 -2022-08-28;2022-08-28T21:09:33Z;2727;3731.83;dollar $;20222774;;666;8800;82287-9 -2022-08-28;2022-08-28T19:28:05Z;4465;2380.64;zing Æ’;20222773;;421;3321;24677-4 -2022-08-28;2022-08-28T15:56:34Z;1945;7323;dollar $;20222772;;666;1200;46749-0 -2022-08-28;2022-08-28T15:22:03Z;3795;5995;dollar $;20222771;;290;2400;77752-6 -2022-08-28;2022-08-28T13:49:24Z;1945;7143.79;dollar $;20222770;;666;1100;55419-3 -2022-08-28;2022-08-28T10:47:47Z;3284;5180;zing Æ’;20222769;;33;1002;66775-4 -2022-08-27;2022-08-27T23:28:15Z;3284;5422.53;dollar $;20222768;;666;1979;77645-1 -2022-08-27;2022-08-27T21:07:19Z;5188;9913;dollar $;20222767;;33;2400;71702-8 -2022-08-27;2022-08-27T20:06:58Z;3294;4627;dollar $;20222766;;666;1002;48778-2 -2022-08-27;2022-08-27T20:06:43Z;3100;4459.62;dollar $;20222765;;421;6552;36644-8 -2022-08-27;2022-08-27T15:48:13Z;3294;7638.95;dollar $;20222764;;33;2400;48381-2 -2022-08-27;2022-08-27T13:29:50Z;2727;11469.37;dollar $;20222763;;666;2400;28322-0 -2022-08-27;2022-08-27T12:13:55Z;5188;3849;british pound £;20222762;;421;6552;80140-9 -2022-08-27;2022-08-27T11:07:08Z;2197;6559;zing Æ’;20222761;;421;5420;73160-8 -2022-08-27;2022-08-27T07:54:01Z;5188;7804.76;dollar $;20222760;;666;1979;83733-0 -2022-08-27;2022-08-27T07:06:19Z;3715;6084.39;dollar $;20222759;;666;2400;38308-4 -2022-08-27;2022-08-27T06:41:11Z;3715;6579;zing Æ’;20222758;;33;2400;52099-4 -2022-08-27;2022-08-27T05:58:34Z;3284;6193;british pound £;20222757;;33;4425;61318-2 -2022-08-27;2022-08-27T02:44:35Z;5188;655.24;dollar $;20222756;;290;2400;37287-6 -2022-08-26;2022-08-26T18:12:56Z;2489;5699;dollar $;20222755;;290;4078;61648-2 -2022-08-26;2022-08-26T15:33:46Z;3795;5798;dollar $;20222754;;666;8800;34284-1 -2022-08-25;2022-08-25T18:00:54Z;1121;6113.13;zing Æ’;20222753;;290;1979;83790-9 -2022-08-25;2022-08-25T02:16:12Z;1121;5332.25;dollar $;20222752;;666;2231;58617-1 -2022-08-25;2022-08-25T00:53:24Z;6032;6008.81;british pound £;20222751;;33;1979;34995-0 -2022-08-24;2022-08-24T21:45:58Z;4023;3885.07;dollar $;20222750;;421;1100;75872-0 -2022-08-24;2022-08-24T20:37:40Z;5986;5922;british pound £;20222749;;421;2231;32192-3 -2022-08-24;2022-08-24T16:51:30Z;1121;1046.93;euro €;20222748;;421;6317;38887-3 -2022-08-24;2022-08-24T14:46:35Z;4862;9945.73;dollar $;20222747;;666;8800;77360-1 -2022-08-24;2022-08-24T09:23:31Z;5188;6857;dollar $;20222746;;290;2400;70199-5 -2022-08-24;2022-08-24T04:37:16Z;2727;5595;zing Æ’;20222745;;33;2231;34990-6 -2022-08-23;2022-08-23T23:41:49Z;5516;3930.42;zing Æ’;20222744;;666;1100;26932-3 -2022-08-23;2022-08-23T18:32:26Z;5986;7186.23;dollar $;20222743;;421;8521;67478-3 -2022-08-23;2022-08-23T07:30:22Z;3294;8225;dollar $;20222742;;421;5420;69888-4 -2022-08-23;2022-08-23T02:03:42Z;6032;5073.04;british pound £;20222741;;33;3321;56970-1 -2022-08-22;2022-08-22T20:53:25Z;1455;5756.52;dollar $;20222740;;421;8521;77249-7 -2022-08-22;2022-08-22T19:06:45Z;1121;8266;dollar $;20222739;;290;5420;28185-4 -2022-08-22;2022-08-22T15:48:02Z;1297;4843.17;dollar $;20222738;;666;6317;68956-2 -2022-08-22;2022-08-22T15:04:47Z;2727;5499;zing Æ’;20222737;;666;1200;72274-7 -2022-08-22;2022-08-22T11:19:41Z;2489;6477;dollar $;20222736;;666;2231;30105-5 -2022-08-22;2022-08-22T09:19:18Z;5764;7416.97;dollar $;20222735;;666;6552;63203-0 -2022-08-22;2022-08-22T08:48:48Z;3284;5050;zing Æ’;20222734;;33;4078;63613-5 -2022-08-22;2022-08-22T05:08:20Z;6032;6096.35;dollar $;20222733;;666;1002;47992-7 -2022-08-22;2022-08-22T02:12:15Z;5987;8683.31;dollar $;20222732;;33;6552;67284-1 -2022-08-21;2022-08-21T13:40:05Z;1455;4292.65;dollar $;20222731;;290;2400;66077-9 -2022-08-21;2022-08-21T08:36:36Z;2197;10155;british pound £;20222730;;666;8800;49485-8 -2022-08-20;2022-08-20T22:03:33Z;3715;4578;dollar $;20222729;;33;1002;60933-7 -2022-08-20;2022-08-20T21:58:38Z;2197;8416.04;dollar $;20222728;;666;2231;78268-9 -2022-08-20;2022-08-20T18:07:28Z;3294;5823;zing Æ’;20222727;;33;6552;56578-6 -2022-08-20;2022-08-20T13:45:18Z;5986;5205.3;dollar $;20222726;;290;8800;63055-4 -2022-08-20;2022-08-20T12:54:41Z;1455;7150;dollar $;20222725;;666;6317;38681-5 -2022-08-20;2022-08-20T12:27:55Z;2727;160;dollar $;20222724;;33;1002;75581-5 -2022-08-20;2022-08-20T06:28:55Z;4465;2363.33;dollar $;20222723;;290;2231;32772-5 -2022-08-20;2022-08-20T03:47:56Z;1455;6028.34;dollar $;20222722;;33;8521;26094-5 -2022-08-19;2022-08-19T23:03:56Z;2727;10007;zing Æ’;20222721;;33;2231;81071-7 -2022-08-19;2022-08-19T19:12:55Z;2197;4466.83;british pound £;20222720;;421;1100;51459-0 -2022-08-19;2022-08-19T16:42:47Z;5987;4618.53;zing Æ’;20222719;;421;4078;28987-5 -2022-08-19;2022-08-19T15:38:43Z;5986;6259;dollar $;20222718;;421;9921;30087-6 -2022-08-19;2022-08-19T14:56:01Z;2727;5895;dollar $;20222717;;33;1200;33706-3 -2022-08-19;2022-08-19T11:45:24Z;5987;6182.73;dollar $;20222716;;421;6317;40817-2 -2022-08-19;2022-08-19T11:19:57Z;3715;7996.41;dollar $;20222715;;290;1979;45402-7 -2022-08-19;2022-08-19T02:16:29Z;1945;8631;zing Æ’;20222714;;290;1200;48328-9 -2022-08-19;2022-08-19T02:11:52Z;5986;4591;zing Æ’;20222713;;33;4078;56581-7 -2022-08-18;2022-08-18T16:57:12Z;1121;11490.37;zing Æ’;20222712;;421;2400;61244-9 -2022-08-18;2022-08-18T15:49:02Z;4965;5418;zing Æ’;20222711;;421;2400;42391-8 -2022-08-18;2022-08-18T15:37:20Z;5188;6901;dollar $;20222710;;290;8521;85943-6 -2022-08-18;2022-08-18T14:17:59Z;3715;7806.85;dollar $;20222709;;290;2231;72127-6 -2022-08-18;2022-08-18T14:01:07Z;3294;4420;dollar $;20222708;;290;2400;27831-8 -2022-08-18;2022-08-18T06:05:35Z;3284;12531.84;dollar $;20222707;;33;2231;26355-6 -2022-08-18;2022-08-18T02:48:22Z;5188;5208;zing Æ’;20222706;;290;2231;52646-6 -2022-08-18;2022-08-18T01:58:32Z;1455;2281.96;dollar $;20222705;;666;1100;44120-4 -2022-08-17;2022-08-17T23:48:06Z;5987;7454.01;zing Æ’;20222704;;33;6317;25302-7 -2022-08-17;2022-08-17T22:26:22Z;1297;6087.01;dollar $;20222703;;666;1002;39697-1 -2022-08-17;2022-08-17T17:02:26Z;5832;3945;euro €;20222702;;290;8800;50724-1 -2022-08-17;2022-08-17T14:01:33Z;5764;2589;dollar $;20222701;;666;6552;42710-4 -2022-08-17;2022-08-17T13:20:49Z;4862;6109.89;zing Æ’;20222700;;33;6552;55495-1 -2022-08-17;2022-08-17T10:18:42Z;4608;5679.48;dollar $;20222699;;290;1979;53860-5 -2022-08-17;2022-08-17T07:19:51Z;4862;6853.46;dollar $;20222698;;421;1002;47004-4 -2022-08-17;2022-08-17T07:03:16Z;1297;1529;dollar $;20222697;;666;6317;50792-1 -2022-08-17;2022-08-17T02:48:54Z;5832;8488;zing Æ’;20222696;;421;1200;34640-9 -2022-08-16;2022-08-16T21:49:54Z;5188;9088;zing Æ’;20222695;;33;6552;25997-8 -2022-08-16;2022-08-16T17:31:56Z;1455;3140.83;dollar $;20222694;;33;2231;34487-8 -2022-08-16;2022-08-16T08:10:30Z;5986;2945;dollar $;20222693;;666;8800;67446-2 -2022-08-16;2022-08-16T01:09:50Z;1297;7301;british pound £;20222692;;666;4078;57411-6 -2022-08-15;2022-08-15T16:59:25Z;3715;8132;dollar $;20222691;;666;4078;45905-5 -2022-08-15;2022-08-15T16:29:23Z;1121;8044;dollar $;20222690;;666;8800;46856-7 -2022-08-15;2022-08-15T11:41:29Z;4862;4038;dollar $;20222689;;290;1002;28308-6 -2022-08-15;2022-08-15T08:23:38Z;1297;2927.51;dollar $;20222688;;421;1100;48696-6 -2022-08-15;2022-08-15T07:06:52Z;3294;8310;dollar $;20222687;;290;2231;82371-9 -2022-08-15;2022-08-15T05:18:29Z;1217;8139.61;dollar $;20222686;;290;1002;70166-7 -2022-08-15;2022-08-15T02:22:50Z;2489;6658.83;dollar $;20222685;;33;8800;75317-5 -2022-08-14;2022-08-14T23:56:29Z;3795;6283.51;zing Æ’;20222684;;33;6552;36363-1 -2022-08-14;2022-08-14T18:56:29Z;1945;6368;zing Æ’;20222683;;290;2231;56891-4 -2022-08-14;2022-08-14T16:32:39Z;5987;7514;dollar $;20222682;;33;1002;61676-5 -2022-08-14;2022-08-14T13:33:01Z;1297;10060.17;british pound £;20222681;;666;1979;39931-3 -2022-08-14;2022-08-14T06:22:48Z;5188;4941;dollar $;20222680;;666;8521;79107-5 -2022-08-14;2022-08-14T05:59:25Z;3795;6379;british pound £;20222679;;421;2400;45442-7 -2022-08-14;2022-08-14T05:56:40Z;3294;8157.94;british pound £;20222678;;33;1002;27187-5 -2022-08-14;2022-08-14T04:23:25Z;5832;7991.08;british pound £;20222677;;666;8800;66537-0 -2022-08-14;2022-08-14T03:10:41Z;5243;10195;zing Æ’;20222676;;33;5420;61551-0 -2022-08-14;2022-08-14T02:50:38Z;2727;6293;dollar $;20222675;;666;1979;57944-1 -2022-08-14;2022-08-14T02:49:49Z;2727;5484.47;zing Æ’;20222674;;421;2400;27094-2 -2022-08-13;2022-08-13T15:24:25Z;4965;7156.96;zing Æ’;20222673;;666;1100;78252-1 -2022-08-13;2022-08-13T14:43:40Z;2489;5484;british pound £;20222672;;421;2231;63454-5 -2022-08-13;2022-08-13T13:03:08Z;3715;6076.22;zing Æ’;20222671;;33;8521;76982-6 -2022-08-13;2022-08-13T12:33:02Z;1455;3390;dollar $;20222670;;290;1979;56108-0 -2022-08-13;2022-08-13T03:53:35Z;4965;2083;british pound £;20222669;;666;4078;46751-4 -2022-08-13;2022-08-13T03:07:31Z;4608;4748;dollar $;20222668;;33;4425;82390-6 -2022-08-12;2022-08-12T21:49:25Z;4023;4788;dollar $;20222667;;290;1100;74500-1 -2022-08-12;2022-08-12T17:40:33Z;1455;8263;british pound £;20222666;;421;1002;55379-5 -2022-08-12;2022-08-12T11:05:11Z;5764;4709;british pound £;20222665;;33;1002;65600-8 -2022-08-12;2022-08-12T05:34:26Z;4023;5093.36;dollar $;20222664;;421;2231;49570-0 -2022-08-12;2022-08-12T03:34:52Z;4023;10005;dollar $;20222663;;33;6552;71686-2 -2022-08-11;2022-08-11T23:02:17Z;4608;6819.67;dollar $;20222662;;666;6317;56809-9 -2022-08-11;2022-08-11T19:58:50Z;4965;6835;dollar $;20222661;;290;5420;26558-2 -2022-08-11;2022-08-11T14:30:55Z;1455;5879;zing Æ’;20222660;;421;4425;45748-6 -2022-08-11;2022-08-11T11:49:01Z;4465;3586;dollar $;20222659;;33;9921;58101-2 -2022-08-11;2022-08-11T05:22:01Z;1945;5536;euro €;20222658;;33;2231;67835-4 -2022-08-11;2022-08-11T00:28:26Z;4965;5252;dollar $;20222657;;421;1002;41213-8 -2022-08-10;2022-08-10T19:26:04Z;5986;8193;euro €;20222656;;290;1002;82511-1 -2022-08-10;2022-08-10T16:16:26Z;4608;5036.94;dollar $;20222655;;421;9921;67548-2 -2022-08-10;2022-08-10T14:17:37Z;5516;6254.82;dollar $;20222654;;290;6552;66037-8 -2022-08-10;2022-08-10T02:43:53Z;3100;5707.66;dollar $;20222653;;290;8521;56734-9 -2022-08-10;2022-08-10T00:15:04Z;2727;7247;dollar $;20222652;;33;1979;74409-2 -2022-08-09;2022-08-09T18:32:39Z;5764;7408;zing Æ’;20222651;;421;3321;47313-5 -2022-08-09;2022-08-09T14:42:17Z;1945;6429;dollar $;20222650;;666;4078;77126-5 -2022-08-09;2022-08-09T13:06:11Z;4023;4909.34;zing Æ’;20222649;;290;1979;76173-6 -2022-08-09;2022-08-09T08:46:14Z;1217;4427;zing Æ’;20222648;;666;5420;80146-9 -2022-08-09;2022-08-09T05:12:50Z;1121;7295;zing Æ’;20222647;;421;5420;59650-1 -2022-08-09;2022-08-09T04:40:53Z;1945;6940;dollar $;20222646;;290;1100;43378-7 -2022-08-09;2022-08-09T01:49:24Z;3284;6289.73;dollar $;20222645;;290;2400;26339-0 -2022-08-08;2022-08-08T22:53:21Z;3284;4530.38;zing Æ’;20222644;;421;1200;44434-8 -2022-08-08;2022-08-08T22:31:44Z;1121;8305;british pound £;20222643;;33;8521;49858-6 -2022-08-08;2022-08-08T05:48:24Z;4965;6189.33;zing Æ’;20222642;;421;2231;76513-1 -2022-08-07;2022-08-07T23:27:36Z;1455;7750.28;dollar $;20222641;;421;3321;86140-6 -2022-08-07;2022-08-07T22:59:52Z;5764;6627;dollar $;20222640;;421;2400;54472-7 -2022-08-07;2022-08-07T19:47:19Z;3795;3949;dollar $;20222639;;421;1979;41136-9 -2022-08-07;2022-08-07T17:20:08Z;1217;3226.19;zing Æ’;20222638;;33;2231;44558-8 -2022-08-07;2022-08-07T16:30:01Z;2197;4497.59;zing Æ’;20222637;;33;4425;69219-0 -2022-08-07;2022-08-07T14:24:52Z;4862;9356.27;dollar $;20222636;;290;1100;67607-4 -2022-08-07;2022-08-07T08:58:46Z;5987;9431.67;dollar $;20222635;;666;9921;32082-0 -2022-08-07;2022-08-07T07:20:24Z;4965;2162;british pound £;20222634;;666;9921;71190-4 -2022-08-07;2022-08-07T03:26:05Z;1455;4591.76;dollar $;20222633;;33;3321;55179-3 -2022-08-07;2022-08-07T01:54:08Z;1121;5676;dollar $;20222632;;666;9921;29882-9 -2022-08-06;2022-08-06T20:41:39Z;5987;4275;zing Æ’;20222631;;421;5420;64849-7 -2022-08-06;2022-08-06T17:32:24Z;4965;4818.64;dollar $;20222630;;290;2231;85797-9 -2022-08-06;2022-08-06T15:42:16Z;2727;9248;dollar $;20222629;;666;8800;28857-8 -2022-08-06;2022-08-06T10:32:08Z;3294;5109;british pound £;20222628;;33;1002;73807-3 -2022-08-06;2022-08-06T09:31:32Z;4862;8968.11;dollar $;20222627;;421;1100;28464-9 -2022-08-06;2022-08-06T05:12:14Z;1945;9174;dollar $;20222626;;421;1100;42746-4 -2022-08-06;2022-08-06T00:22:22Z;2197;8992;british pound £;20222625;;290;1979;55863-5 -2022-08-05;2022-08-05T23:54:54Z;4965;7537.17;dollar $;20222624;;421;6552;34279-4 -2022-08-05;2022-08-05T14:12:36Z;2727;7563;dollar $;20222623;;421;8521;49276-6 -2022-08-05;2022-08-05T11:00:55Z;3294;10113.53;zing Æ’;20222622;;290;8521;47493-2 -2022-08-05;2022-08-05T10:24:08Z;2727;6189.08;zing Æ’;20222621;;290;1200;63987-8 -2022-08-05;2022-08-05T10:21:50Z;1945;5926.79;dollar $;20222620;;290;1200;65063-3 -2022-08-05;2022-08-05T06:07:33Z;5832;5079;dollar $;20222619;;33;4425;70053-6 -2022-08-05;2022-08-05T04:34:37Z;3795;8567.99;british pound £;20222618;;33;2231;70927-1 -2022-08-04;2022-08-04T18:53:41Z;4465;6219;zing Æ’;20222617;;33;1002;61334-9 -2022-08-04;2022-08-04T17:28:36Z;5986;3083.37;zing Æ’;20222616;;290;2400;64107-1 -2022-08-03;2022-08-03T16:14:14Z;1455;4567.68;british pound £;20222615;;33;5420;35104-0 -2022-08-03;2022-08-03T09:48:37Z;3284;6434.33;dollar $;20222614;;666;6552;74513-0 -2022-08-03;2022-08-03T06:38:47Z;3294;9198.11;zing Æ’;20222613;;33;4425;50362-3 -2022-08-03;2022-08-03T04:58:55Z;3715;3061.13;dollar $;20222612;;421;6552;38201-4 -2022-08-02;2022-08-02T22:21:54Z;5188;1856.99;dollar $;20222611;;290;3321;66550-4 -2022-08-02;2022-08-02T18:03:00Z;4608;7766.58;dollar $;20222610;;421;2400;55608-9 -2022-08-02;2022-08-02T17:11:09Z;5243;4893;dollar $;20222609;;421;6552;43912-9 -2022-08-02;2022-08-02T13:24:47Z;4023;7709.75;british pound £;20222608;;421;1002;74910-1 -2022-08-02;2022-08-02T12:57:46Z;2727;8794.42;dollar $;20222607;;290;8800;67388-7 -2022-08-02;2022-08-02T11:01:22Z;2489;5617;dollar $;20222606;;290;1979;83456-1 -2022-08-02;2022-08-02T07:23:35Z;3100;11026.17;dollar $;20222605;;666;1002;48244-2 -2022-08-02;2022-08-02T06:20:54Z;2489;3930.51;dollar $;20222604;;666;3321;54298-3 -2022-08-02;2022-08-02T03:21:38Z;5243;6914;zing Æ’;20222603;;666;3321;53673-5 -2022-08-02;2022-08-02T01:42:41Z;5832;4892;dollar $;20222602;;290;9921;44292-0 -2022-08-01;2022-08-01T19:28:40Z;5986;4449.42;dollar $;20222601;;290;1979;66627-1 -2022-08-01;2022-08-01T10:46:26Z;5987;5511.32;zing Æ’;20222600;;666;6317;79417-6 -2022-08-01;2022-08-01T02:23:32Z;2197;8050.55;dollar $;20222599;;33;1200;63034-0 -2022-07-31;2022-07-31T18:12:34Z;3715;5905.01;british pound £;20222598;;290;1100;71946-9 -2022-07-31;2022-07-31T14:45:21Z;3795;5434.35;dollar $;20222597;;421;1200;34592-1 -2022-07-31;2022-07-31T12:46:44Z;3294;11308.4;dollar $;20222596;;33;2400;46546-7 -2022-07-31;2022-07-31T11:37:29Z;1217;7426;dollar $;20222595;;33;1979;77069-7 -2022-07-31;2022-07-31T09:32:51Z;3715;9747.53;dollar $;20222594;;666;1002;79517-9 -2022-07-31;2022-07-31T07:59:31Z;2727;5763;dollar $;20222593;;290;4078;55572-7 -2022-07-31;2022-07-31T05:22:27Z;1297;6348;dollar $;20222592;;33;6552;82493-7 -2022-07-31;2022-07-31T04:42:29Z;5764;6624;zing Æ’;20222591;;290;5420;30395-4 -2022-07-31;2022-07-31T01:16:52Z;1945;5592;dollar $;20222590;;33;5420;46838-3 -2022-07-31;2022-07-31T01:10:37Z;3294;3856.45;dollar $;20222589;;290;6317;73285-6 -2022-07-31;2022-07-31T00:25:28Z;2197;8509;british pound £;20222588;;421;8800;62722-5 -2022-07-30;2022-07-30T23:26:57Z;4465;1463.88;dollar $;20222587;;666;1979;52455-4 -2022-07-30;2022-07-30T20:45:52Z;1297;9000;dollar $;20222586;;421;6552;37342-3 -2022-07-30;2022-07-30T19:50:44Z;3284;6060.34;dollar $;20222585;;33;3321;71225-1 -2022-07-30;2022-07-30T18:09:57Z;1945;5430.96;zing Æ’;20222584;;33;2400;79028-4 -2022-07-30;2022-07-30T15:27:38Z;5986;8494.64;dollar $;20222583;;290;1002;65179-5 -2022-07-30;2022-07-30T15:20:20Z;5764;7540.67;dollar $;20222582;;33;6317;45344-5 -2022-07-30;2022-07-30T09:51:21Z;4965;8562;dollar $;20222581;;33;6317;52006-7 -2022-07-30;2022-07-30T08:31:07Z;3795;10482.71;dollar $;20222580;;290;4425;50872-3 -2022-07-30;2022-07-30T07:22:45Z;6032;4274.97;british pound £;20222579;;290;1979;33914-2 -2022-07-30;2022-07-30T05:15:13Z;3100;7119;zing Æ’;20222578;;290;1002;69949-9 -2022-07-29;2022-07-29T19:53:48Z;2489;4720.5;dollar $;20222577;;421;4425;74814-5 -2022-07-29;2022-07-29T18:38:40Z;5188;6068;dollar $;20222576;;666;3321;65683-2 -2022-07-29;2022-07-29T18:37:47Z;4023;7210;zing Æ’;20222575;;421;1100;30988-1 -2022-07-29;2022-07-29T18:37:39Z;5832;8755.66;zing Æ’;20222574;;421;1002;64516-6 -2022-07-29;2022-07-29T13:35:08Z;1455;5614.82;dollar $;20222573;;666;1100;49640-7 -2022-07-29;2022-07-29T12:22:50Z;1217;4965;dollar $;20222572;;33;8800;72639-0 -2022-07-29;2022-07-29T08:45:53Z;1945;9489.33;zing Æ’;20222571;;666;2231;40165-3 -2022-07-29;2022-07-29T07:53:15Z;5986;8455.63;dollar $;20222570;;666;3321;81207-2 -2022-07-29;2022-07-29T07:40:14Z;1945;7277.43;dollar $;20222569;;290;4078;42423-6 -2022-07-29;2022-07-29T03:03:44Z;3795;9321;dollar $;20222568;;33;4078;28540-8 -2022-07-28;2022-07-28T19:58:07Z;4608;5449.41;dollar $;20222567;;666;8521;57907-5 -2022-07-28;2022-07-28T14:30:52Z;3795;6543.93;zing Æ’;20222566;;421;1100;75541-2 -2022-07-28;2022-07-28T14:07:22Z;3795;8609.42;british pound £;20222565;;666;8800;44012-6 -2022-07-28;2022-07-28T12:43:05Z;4023;8325;dollar $;20222564;;666;1200;79371-3 -2022-07-28;2022-07-28T00:54:29Z;4608;5172;zing Æ’;20222563;;33;1200;71362-9 -2022-07-27;2022-07-27T11:49:33Z;2197;2153;dollar $;20222562;;666;8800;61689-8 -2022-07-27;2022-07-27T10:32:42Z;5764;5880;dollar $;20222561;;666;1002;37155-0 -2022-07-27;2022-07-27T08:48:55Z;2489;6070.12;dollar $;20222560;;666;8521;25404-0 -2022-07-27;2022-07-27T07:13:43Z;6032;8087.25;dollar $;20222559;;421;1100;35051-7 -2022-07-26;2022-07-26T21:46:31Z;5987;8729;dollar $;20222558;;290;1200;68054-2 -2022-07-26;2022-07-26T19:25:08Z;3284;6998;dollar $;20222557;;666;3321;25612-8 -2022-07-26;2022-07-26T17:25:30Z;3795;2896.78;dollar $;20222556;;290;4425;42928-4 -2022-07-26;2022-07-26T17:16:16Z;1945;5324;dollar $;20222555;;290;9921;51123-8 -2022-07-26;2022-07-26T14:30:26Z;2727;5316.29;dollar $;20222554;;421;6317;67289-6 -2022-07-25;2022-07-25T20:33:00Z;5832;9584.41;zing Æ’;20222553;;421;1200;40661-9 -2022-07-25;2022-07-25T20:21:45Z;1455;5152.21;dollar $;20222552;;290;2400;28006-4 -2022-07-25;2022-07-25T08:03:41Z;3100;12824;dollar $;20222551;;33;2231;39976-2 -2022-07-25;2022-07-25T07:55:21Z;1121;4656;zing Æ’;20222550;;421;8800;24659-4 -2022-07-25;2022-07-25T06:05:20Z;3294;2563.52;british pound £;20222549;;666;8521;59651-8 -2022-07-25;2022-07-25T03:00:15Z;2197;7819;dollar $;20222548;;421;1200;35470-2 -2022-07-25;2022-07-25T02:44:51Z;2197;2630.01;dollar $;20222547;;33;1200;85770-1 -2022-07-24;2022-07-24T20:05:15Z;4862;4921;dollar $;20222546;;290;3321;28198-5 -2022-07-24;2022-07-24T12:45:02Z;4608;5430.64;dollar $;20222545;;33;5420;28080-9 -2022-07-24;2022-07-24T09:59:57Z;4023;4494.75;zing Æ’;20222544;;33;5420;86372-7 -2022-07-24;2022-07-24T09:46:14Z;4862;6305.85;zing Æ’;20222543;;666;6317;35273-4 -2022-07-24;2022-07-24T08:05:48Z;1297;6518.63;dollar $;20222542;;290;8800;81697-4 -2022-07-23;2022-07-23T22:59:39Z;2489;5422.75;dollar $;20222541;;421;5420;28269-9 -2022-07-23;2022-07-23T16:42:08Z;5832;6899;zing Æ’;20222540;;290;1100;46069-7 -2022-07-23;2022-07-23T15:44:03Z;2197;5674;zing Æ’;20222539;;666;9921;45744-0 -2022-07-23;2022-07-23T05:08:47Z;4465;8809.42;british pound £;20222538;;666;8800;69097-2 -2022-07-23;2022-07-23T03:03:27Z;2489;10622;british pound £;20222537;;290;4078;62245-7 -2022-07-23;2022-07-23T01:08:01Z;4465;8086;british pound £;20222536;;290;8521;43381-0 -2022-07-22;2022-07-22T22:05:26Z;1297;4632.35;euro €;20222535;;33;6317;81473-0 -2022-07-22;2022-07-22T19:45:52Z;3100;9592;dollar $;20222534;;33;1200;75881-2 -2022-07-22;2022-07-22T19:06:25Z;3795;60;dollar $;20222533;;290;1100;39925-1 -2022-07-22;2022-07-22T18:33:17Z;4608;6792.99;dollar $;20222532;;666;2231;31803-5 -2022-07-22;2022-07-22T09:46:43Z;5832;8060.06;zing Æ’;20222531;;33;8521;66081-7 -2022-07-22;2022-07-22T06:39:08Z;5243;7790.91;dollar $;20222530;;421;4425;68899-5 -2022-07-22;2022-07-22T04:08:08Z;2197;7308.61;zing Æ’;20222529;;290;6317;77148-7 -2022-07-22;2022-07-22T03:42:39Z;5764;7183.29;dollar $;20222528;;666;1100;65655-9 -2022-07-22;2022-07-22T03:04:59Z;4465;4942;dollar $;20222527;;421;5420;75573-4 -2022-07-22;2022-07-22T02:52:08Z;3795;10469.22;dollar $;20222526;;421;8521;57507-0 -2022-07-22;2022-07-22T01:36:48Z;5764;6211;british pound £;20222525;;33;2400;47608-5 -2022-07-22;2022-07-22T00:09:46Z;3284;8194.12;zing Æ’;20222524;;33;6317;52415-9 -2022-07-21;2022-07-21T21:39:03Z;4862;5404;dollar $;20222523;;421;3321;71526-3 -2022-07-21;2022-07-21T16:17:46Z;5764;5614.33;dollar $;20222522;;33;6317;36036-3 -2022-07-20;2022-07-20T22:47:36Z;3284;6104;zing Æ’;20222521;;33;6552;65107-5 -2022-07-20;2022-07-20T21:49:18Z;1217;6017.25;dollar $;20222520;;33;9921;54589-5 -2022-07-20;2022-07-20T19:58:47Z;5764;4018;british pound £;20222519;;421;2400;61547-4 -2022-07-20;2022-07-20T18:31:23Z;5764;4612.61;dollar $;20222518;;421;6317;34766-8 -2022-07-20;2022-07-20T09:31:13Z;4965;6873;zing Æ’;20222517;;421;1200;49563-6 -2022-07-20;2022-07-20T03:17:03Z;2727;4241;british pound £;20222516;;33;6552;40953-3 -2022-07-20;2022-07-20T00:46:16Z;2197;7176.11;dollar $;20222515;;421;4425;50780-6 -2022-07-20;2022-07-20T00:20:43Z;3795;6448.76;zing Æ’;20222514;;33;1002;27795-7 -2022-07-19;2022-07-19T20:58:02Z;1945;13710;dollar $;20222513;;290;2231;63600-9 -2022-07-19;2022-07-19T19:47:37Z;4023;6480.3;zing Æ’;20222512;;33;2231;46970-7 -2022-07-19;2022-07-19T18:37:51Z;4862;6110;dollar $;20222511;;33;5420;68249-8 -2022-07-19;2022-07-19T14:18:31Z;5832;7237;dollar $;20222510;;666;8521;26288-2 -2022-07-19;2022-07-19T06:53:19Z;5243;6047.65;dollar $;20222509;;290;3321;82919-6 -2022-07-18;2022-07-18T22:33:36Z;3284;5232;dollar $;20222508;;33;1100;52040-3 -2022-07-18;2022-07-18T13:40:14Z;1455;7721.01;zing Æ’;20222507;;290;6317;80654-9 -2022-07-18;2022-07-18T00:45:24Z;5188;6788.89;dollar $;20222506;;666;3321;77131-4 -2022-07-17;2022-07-17T23:07:19Z;1121;2962.67;dollar $;20222505;;290;4078;37892-5 -2022-07-17;2022-07-17T20:12:46Z;3284;10050.65;dollar $;20222504;;421;8521;57083-4 -2022-07-17;2022-07-17T11:23:28Z;5986;5849;zing Æ’;20222503;;290;5420;62872-5 -2022-07-17;2022-07-17T08:25:16Z;4465;686.89;dollar $;20222502;;33;4078;85109-1 -2022-07-17;2022-07-17T00:42:48Z;1297;8196.29;zing Æ’;20222501;;290;2231;62946-6 -2022-07-17;2022-07-17T00:05:41Z;4965;6862;dollar $;20222500;;33;1200;73145-0 -2022-07-16;2022-07-16T20:16:14Z;5516;3666;dollar $;20222499;;290;2400;30531-2 -2022-07-16;2022-07-16T11:47:23Z;1945;7534;zing Æ’;20222498;;421;6552;35337-2 -2022-07-16;2022-07-16T10:46:48Z;4608;4593.15;dollar $;20222497;;666;9921;44592-4 -2022-07-16;2022-07-16T09:05:30Z;5764;4445;dollar $;20222496;;290;1200;55184-8 -2022-07-16;2022-07-16T08:12:45Z;1297;4796;dollar $;20222495;;290;8800;73423-2 -2022-07-16;2022-07-16T04:26:55Z;6032;6139;dollar $;20222494;;290;1979;57157-5 -2022-07-16;2022-07-16T01:38:24Z;1297;5670;dollar $;20222493;;421;4078;50455-2 -2022-07-15;2022-07-15T23:08:36Z;2489;5167;euro €;20222492;;421;3321;57418-7 -2022-07-15;2022-07-15T22:53:05Z;5986;6047.47;dollar $;20222491;;33;8521;28810-8 -2022-07-15;2022-07-15T20:18:58Z;2197;5535.3;dollar $;20222490;;421;2400;61281-0 -2022-07-15;2022-07-15T13:15:34Z;2197;11847.86;dollar $;20222489;;421;6552;31993-6 -2022-07-15;2022-07-15T13:00:17Z;4965;4044;zing Æ’;20222488;;421;8800;77170-8 -2022-07-15;2022-07-15T12:49:03Z;1297;5141.33;dollar $;20222487;;666;9921;42586-4 -2022-07-15;2022-07-15T04:28:07Z;1297;2034.29;dollar $;20222486;;666;6552;49536-6 -2022-07-14;2022-07-14T19:51:55Z;4862;6783.09;dollar $;20222485;;290;1100;71372-1 -2022-07-14;2022-07-14T16:05:57Z;4465;9662;zing Æ’;20222484;;290;9921;60113-7 -2022-07-14;2022-07-14T15:14:23Z;4023;7444.89;dollar $;20222483;;421;6552;68959-7 -2022-07-14;2022-07-14T12:06:54Z;1455;8119;dollar $;20222482;;290;2400;46841-9 -2022-07-14;2022-07-14T08:38:54Z;5516;5120.4;zing Æ’;20222481;;666;6552;52149-5 -2022-07-14;2022-07-14T08:26:18Z;4862;3554;zing Æ’;20222480;;33;3321;50736-0 -2022-07-14;2022-07-14T00:44:29Z;2727;5926.31;british pound £;20222479;;421;6317;71808-8 -2022-07-13;2022-07-13T21:09:44Z;5188;5343.43;dollar $;20222478;;421;3321;24770-9 -2022-07-13;2022-07-13T16:13:47Z;5243;5020;dollar $;20222477;;666;5420;45841-7 -2022-07-13;2022-07-13T06:19:29Z;5987;10575.17;dollar $;20222476;;421;6552;65661-5 -2022-07-13;2022-07-13T03:11:42Z;4608;5982.18;zing Æ’;20222475;;666;1100;37374-2 -2022-07-12;2022-07-12T22:40:07Z;5986;8116;dollar $;20222474;;421;8521;54161-7 -2022-07-12;2022-07-12T14:07:53Z;3100;5896;dollar $;20222473;;290;1979;26806-5 -2022-07-12;2022-07-12T09:04:55Z;1297;4701.64;dollar $;20222472;;33;4078;53582-5 -2022-07-12;2022-07-12T03:45:03Z;5987;8179.67;zing Æ’;20222471;;33;8800;73728-6 -2022-07-12;2022-07-12T00:00:52Z;1121;6902;dollar $;20222470;;290;8800;39610-3 -2022-07-11;2022-07-11T22:56:44Z;3100;12352.37;zing Æ’;20222469;;421;9921;49421-2 -2022-07-11;2022-07-11T17:06:44Z;1121;9371;british pound £;20222468;;666;8521;51135-3 -2022-07-11;2022-07-11T11:05:09Z;3284;5763.97;dollar $;20222467;;421;6552;52507-4 -2022-07-11;2022-07-11T08:17:08Z;4023;5602.54;dollar $;20222466;;666;4078;54545-3 -2022-07-11;2022-07-11T07:21:54Z;5986;7537.49;dollar $;20222465;;33;2400;75978-4 -2022-07-11;2022-07-11T04:06:57Z;5832;8971.98;dollar $;20222464;;666;2231;28237-9 -2022-07-10;2022-07-10T21:30:34Z;1297;5582.36;dollar $;20222463;;290;1002;84448-4 -2022-07-10;2022-07-10T19:26:41Z;1455;1427.7;euro €;20222462;;421;1002;79549-2 -2022-07-10;2022-07-10T19:19:03Z;1945;3689;zing Æ’;20222461;;290;6317;58536-8 -2022-07-10;2022-07-10T18:22:40Z;2197;7994;dollar $;20222460;;290;1200;33753-4 -2022-07-10;2022-07-10T15:18:27Z;5832;11254.37;dollar $;20222459;;290;4078;51599-8 -2022-07-10;2022-07-10T09:39:12Z;1121;9845.66;british pound £;20222458;;666;4425;41353-9 -2022-07-10;2022-07-10T06:58:40Z;5832;11028;dollar $;20222457;;33;1002;64518-4 -2022-07-10;2022-07-10T06:06:55Z;4465;3803.98;dollar $;20222456;;421;8521;33220-9 -2022-07-09;2022-07-09T18:17:01Z;4023;5127;zing Æ’;20222455;;290;9921;40590-5 -2022-07-09;2022-07-09T17:24:49Z;5188;6252;dollar $;20222454;;666;6317;65958-5 -2022-07-09;2022-07-09T16:54:38Z;4965;4173;dollar $;20222453;;290;2231;25453-1 -2022-07-09;2022-07-09T15:34:03Z;3284;9446.55;zing Æ’;20222452;;290;4425;31652-5 -2022-07-09;2022-07-09T05:10:36Z;3715;6423;zing Æ’;20222451;;33;9921;84785-1 -2022-07-08;2022-07-08T18:26:57Z;5764;5973.86;dollar $;20222450;;33;6552;28386-3 -2022-07-08;2022-07-08T14:58:21Z;1297;3420.55;dollar $;20222449;;421;8800;58142-6 -2022-07-08;2022-07-08T10:01:55Z;2727;8973;dollar $;20222448;;421;3321;81714-9 -2022-07-08;2022-07-08T00:58:51Z;4465;7738.31;zing Æ’;20222447;;421;1002;60429-2 -2022-07-07;2022-07-07T22:13:35Z;5832;12105;dollar $;20222446;;421;8800;73092-3 -2022-07-07;2022-07-07T21:52:59Z;5832;7655;british pound £;20222445;;290;5420;55515-2 -2022-07-07;2022-07-07T15:35:51Z;5764;3900;dollar $;20222444;;421;2400;64237-9 -2022-07-07;2022-07-07T15:12:50Z;6032;705.79;dollar $;20222443;;290;1979;64381-2 -2022-07-07;2022-07-07T10:53:14Z;4862;2314;zing Æ’;20222442;;421;6317;49063-0 -2022-07-07;2022-07-07T10:06:08Z;5832;6207.33;dollar $;20222441;;421;2400;30552-5 -2022-07-07;2022-07-07T08:37:41Z;3795;4907.76;british pound £;20222440;;421;9921;38673-7 -2022-07-07;2022-07-07T02:07:06Z;5516;2309.23;dollar $;20222439;;666;8521;54341-0 -2022-07-07;2022-07-07T00:03:35Z;3100;2095.19;dollar $;20222438;;33;6317;45149-4 -2022-07-06;2022-07-06T22:43:26Z;3795;4182.9;zing Æ’;20222437;;666;5420;60944-6 -2022-07-06;2022-07-06T21:55:59Z;1217;3102;british pound £;20222436;;290;8521;75932-7 -2022-07-06;2022-07-06T18:06:49Z;1455;9014.63;dollar $;20222435;;33;2231;43721-2 -2022-07-06;2022-07-06T08:31:35Z;5986;7213.17;dollar $;20222434;;666;1100;47190-3 -2022-07-06;2022-07-06T06:34:13Z;3715;1877;dollar $;20222433;;290;2231;57913-8 -2022-07-06;2022-07-06T03:27:16Z;1297;5493.73;british pound £;20222432;;33;4078;58649-2 -2022-07-06;2022-07-06T01:40:18Z;5188;10469;zing Æ’;20222431;;666;4425;67379-5 -2022-07-06;2022-07-06T00:35:36Z;4023;4494;dollar $;20222430;;33;8521;65256-3 -2022-07-05;2022-07-05T18:27:50Z;5986;6380.1;dollar $;20222429;;290;1200;81028-6 -2022-07-05;2022-07-05T17:44:09Z;5987;8507;dollar $;20222428;;33;2400;45475-0 -2022-07-05;2022-07-05T12:26:06Z;3284;4562;dollar $;20222427;;666;4078;39726-8 -2022-07-05;2022-07-05T09:03:04Z;1945;3006;zing Æ’;20222426;;33;4078;41865-2 -2022-07-05;2022-07-05T08:42:26Z;6032;6638;dollar $;20222425;;421;3321;48114-2 -2022-07-04;2022-07-04T12:30:03Z;4608;6723.02;dollar $;20222424;;421;8521;83491-4 -2022-07-04;2022-07-04T09:23:13Z;4465;7127;zing Æ’;20222423;;33;2231;35883-3 -2022-07-04;2022-07-04T05:44:04Z;5188;7675.38;zing Æ’;20222422;;666;2400;37102-3 -2022-07-04;2022-07-04T05:10:50Z;1217;6270.55;dollar $;20222421;;33;5420;57668-0 -2022-07-04;2022-07-04T03:20:55Z;5243;3578;dollar $;20222420;;33;8800;62391-7 -2022-07-04;2022-07-04T02:22:17Z;4608;4271.83;dollar $;20222419;;33;4078;74345-5 -2022-07-03;2022-07-03T23:02:45Z;3715;1928;dollar $;20222418;;421;1002;48380-4 -2022-07-03;2022-07-03T22:08:35Z;4465;8311.8;dollar $;20222417;;666;4425;64727-4 -2022-07-03;2022-07-03T15:50:34Z;5243;2344;dollar $;20222416;;666;2231;73995-7 -2022-07-03;2022-07-03T07:41:18Z;4862;2604.78;british pound £;20222415;;421;6552;81389-0 -2022-07-03;2022-07-03T04:09:53Z;5188;7652.47;zing Æ’;20222414;;421;9921;31307-4 -2022-07-03;2022-07-03T03:39:39Z;4608;8955.57;zing Æ’;20222413;;33;4078;27079-7 -2022-07-03;2022-07-03T03:39:20Z;1945;8312.9;dollar $;20222412;;421;5420;42062-6 -2022-07-03;2022-07-03T00:34:24Z;5764;3976.27;dollar $;20222411;;33;4425;44422-6 -2022-07-02;2022-07-02T18:46:03Z;4862;4411;dollar $;20222410;;290;3321;80043-8 -2022-07-02;2022-07-02T18:44:42Z;4465;3882;dollar $;20222409;;666;2400;68199-3 -2022-07-02;2022-07-02T18:29:50Z;4465;5294;dollar $;20222408;500 Server Unavailable;421;2400;39070-3 -2022-07-02;2022-07-02T15:00:31Z;5243;9282;zing Æ’;20222407;;421;1200;71674-1 -2022-07-02;2022-07-02T14:52:01Z;5516;7717.62;zing Æ’;20222406;;290;1200;76560-7 -2022-07-02;2022-07-02T14:16:28Z;4965;3976;british pound £;20222405;;290;1100;76315-0 -2022-07-02;2022-07-02T13:05:27Z;3715;7115.57;dollar $;20222404;;290;6317;49250-0 -2022-07-02;2022-07-02T02:04:10Z;2489;2799;british pound £;20222403;;421;6317;81739-1 -2022-07-02;2022-07-02T01:35:09Z;5243;4443.25;zing Æ’;20222402;;33;6552;59501-2 -2022-07-02;2022-07-02T00:50:54Z;5188;8449;dollar $;20222401;;421;1200;66069-1 -2022-07-01;2022-07-01T22:08:11Z;3715;3801.76;dollar $;20222400;;33;1200;48327-0 -2022-07-01;2022-07-01T11:18:30Z;4608;8035;dollar $;20222399;;33;6552;31442-5 -2022-07-01;2022-07-01T09:33:59Z;1297;6296;dollar $;20222398;;666;4425;44605-1 -2022-07-01;2022-07-01T02:09:07Z;5243;8821;dollar $;20222397;;33;4425;67628-5 -2022-06-30;2022-06-30T17:03:22Z;6032;7526;british pound £;20222396;;421;9921;66050-1 -2022-06-30;2022-06-30T13:19:16Z;1455;5596;dollar $;20222395;;33;1002;39841-5 -2022-06-30;2022-06-30T11:34:04Z;2727;4152.92;dollar $;20222394;;421;2400;77330-3 -2022-06-30;2022-06-30T09:23:44Z;1297;9851.63;dollar $;20222393;;33;1979;48083-8 -2022-06-30;2022-06-30T09:20:25Z;2727;10388;euro €;20222392;;666;1979;40945-3 -2022-06-30;2022-06-30T00:44:40Z;1121;5450.96;british pound £;20222391;;33;2400;59812-3 -2022-06-30;2022-06-30T00:08:01Z;3795;5458.02;euro €;20222390;;290;2400;31956-2 -2022-06-29;2022-06-29T23:35:45Z;5764;2734;dollar $;20222389;;421;8800;86343-7 -2022-06-29;2022-06-29T21:48:43Z;4023;5736.5;zing Æ’;20222388;;666;4078;62751-4 -2022-06-29;2022-06-29T16:01:04Z;4608;7323;dollar $;20222387;;666;1200;55126-7 -2022-06-29;2022-06-29T11:58:17Z;1121;9224.97;euro €;20222386;;421;1979;56497-8 -2022-06-29;2022-06-29T08:53:35Z;5188;7100.31;dollar $;20222385;;666;4078;25567-3 -2022-06-29;2022-06-29T07:31:36Z;4862;5037.19;zing Æ’;20222384;;290;4078;27843-2 -2022-06-28;2022-06-28T20:08:41Z;5243;8017;dollar $;20222383;;33;1979;84107-7 -2022-06-28;2022-06-28T18:42:20Z;5832;9670.98;dollar $;20222382;;290;6317;49225-6 -2022-06-28;2022-06-28T16:10:38Z;3284;7039.9;dollar $;20222381;;666;1002;56532-2 -2022-06-28;2022-06-28T10:39:35Z;1455;13336;dollar $;20222380;;421;2231;48451-2 -2022-06-28;2022-06-28T08:33:28Z;5188;3730;zing Æ’;20222379;;666;4078;83723-0 -2022-06-28;2022-06-28T08:31:34Z;5188;5415;dollar $;20222378;;33;6552;51883-0 -2022-06-28;2022-06-28T08:29:53Z;3100;8194.05;dollar $;20222377;;290;2231;64529-1 -2022-06-28;2022-06-28T01:07:43Z;3284;2763.27;british pound £;20222376;;421;4425;40384-7 -2022-06-27;2022-06-27T20:59:13Z;5832;7632;zing Æ’;20222375;;421;5420;68514-8 -2022-06-27;2022-06-27T20:10:32Z;4965;9014.43;zing Æ’;20222374;;33;5420;63515-5 -2022-06-27;2022-06-27T20:10:11Z;4023;8466.6;dollar $;20222373;;290;1200;54411-1 -2022-06-27;2022-06-27T19:36:36Z;3284;11069.41;british pound £;20222372;;666;8521;61977-3 -2022-06-27;2022-06-27T16:45:32Z;4965;5695.85;zing Æ’;20222371;;33;8800;65383-7 -2022-06-27;2022-06-27T12:31:54Z;3294;9987.75;dollar $;20222370;;666;1979;32970-5 -2022-06-27;2022-06-27T09:41:18Z;5188;4565.2;dollar $;20222369;;290;9921;54718-6 -2022-06-27;2022-06-27T09:14:21Z;3100;4751.17;british pound £;20222368;;666;6552;46627-9 -2022-06-27;2022-06-27T07:33:03Z;1297;4725;dollar $;20222367;;290;1979;33718-6 -2022-06-27;2022-06-27T03:40:19Z;1121;7021.81;zing Æ’;20222366;;33;9921;41319-2 -2022-06-26;2022-06-26T20:41:16Z;2727;8324;zing Æ’;20222365;;421;2231;50076-8 -2022-06-26;2022-06-26T03:36:58Z;3715;7148;dollar $;20222364;;421;2400;42682-2 -2022-06-26;2022-06-26T02:41:09Z;5987;6493;dollar $;20222363;;33;1100;50762-3 -2022-06-26;2022-06-26T01:16:17Z;5243;6432.39;british pound £;20222362;;666;4425;82585-4 -2022-06-25;2022-06-25T20:07:08Z;1121;1421;dollar $;20222361;;290;9921;77258-7 -2022-06-25;2022-06-25T17:33:32Z;1455;5554.44;euro €;20222360;;421;4425;42291-1 -2022-06-25;2022-06-25T11:27:51Z;1455;6501;zing Æ’;20222359;;33;1100;27768-7 -2022-06-25;2022-06-25T08:38:02Z;2727;4785;dollar $;20222358;;666;1002;54413-2 -2022-06-25;2022-06-25T07:00:52Z;5832;8578.96;zing Æ’;20222357;;421;6317;62687-8 -2022-06-25;2022-06-25T01:47:39Z;6032;4539;dollar $;20222356;;290;1002;30719-2 -2022-06-25;2022-06-25T01:25:10Z;3284;5419;zing Æ’;20222355;;33;1200;83980-6 -2022-06-24;2022-06-24T17:54:16Z;5987;5300;british pound £;20222354;;421;2400;45971-0 -2022-06-24;2022-06-24T17:29:16Z;3284;6192;zing Æ’;20222353;;33;8800;80431-9 -2022-06-24;2022-06-24T17:21:26Z;5764;11030.35;british pound £;20222352;;33;8800;36592-1 -2022-06-24;2022-06-24T14:56:51Z;3795;4069.81;zing Æ’;20222351;;33;6317;26007-2 -2022-06-24;2022-06-24T10:42:28Z;4023;10687;dollar $;20222350;;421;2231;31294-7 -2022-06-24;2022-06-24T07:43:01Z;3795;4505;dollar $;20222349;;290;1200;26715-2 -2022-06-24;2022-06-24T06:10:38Z;5764;5283;dollar $;20222348;;33;1100;29557-1 -2022-06-24;2022-06-24T00:25:09Z;3795;4622;dollar $;20222347;;666;2400;60369-6 -2022-06-23;2022-06-23T22:01:22Z;2727;5384.66;dollar $;20222346;;421;1100;62513-1 -2022-06-23;2022-06-23T21:37:31Z;5832;6894;dollar $;20222345;;33;1979;25987-2 -2022-06-23;2022-06-23T16:40:17Z;1297;8021;dollar $;20222344;;33;8521;25397-7 -2022-06-23;2022-06-23T01:41:31Z;4608;8811.42;dollar $;20222343;;666;4078;61219-0 -2022-06-23;2022-06-23T00:52:36Z;1217;4282.23;zing Æ’;20222342;;666;5420;46437-2 -2022-06-22;2022-06-22T17:39:19Z;3100;7680;dollar $;20222341;;33;6552;43349-7 -2022-06-22;2022-06-22T16:41:49Z;4862;7060.09;dollar $;20222340;;33;8800;79674-3 -2022-06-22;2022-06-22T15:56:03Z;1455;6332;dollar $;20222339;;666;9921;53655-1 -2022-06-22;2022-06-22T15:55:50Z;3294;1499;dollar $;20222338;;33;4425;76968-6 -2022-06-22;2022-06-22T15:43:12Z;3100;8365.63;zing Æ’;20222337;;666;4078;35815-2 -2022-06-22;2022-06-22T13:30:35Z;1217;5678;dollar $;20222336;;666;5420;60321-9 -2022-06-22;2022-06-22T11:09:28Z;5516;8666;zing Æ’;20222335;;33;1002;74601-1 -2022-06-22;2022-06-22T00:31:21Z;1945;4618.34;british pound £;20222334;;290;1979;80520-1 -2022-06-21;2022-06-21T23:37:31Z;5516;4864.36;dollar $;20222333;;290;8800;79660-7 -2022-06-21;2022-06-21T21:34:03Z;3294;5785;zing Æ’;20222332;;666;5420;40636-2 -2022-06-21;2022-06-21T18:53:46Z;5516;4104;dollar $;20222331;;666;1100;53481-2 -2022-06-21;2022-06-21T17:13:22Z;5516;9400;dollar $;20222330;;290;2400;83753-4 -2022-06-21;2022-06-21T12:30:41Z;2727;9844.13;zing Æ’;20222329;;666;4425;80343-5 -2022-06-21;2022-06-21T10:53:52Z;2727;5510.36;dollar $;20222328;;666;2400;84377-9 -2022-06-21;2022-06-21T09:04:24Z;1455;8359.83;dollar $;20222327;;33;4425;85875-1 -2022-06-21;2022-06-21T07:04:47Z;5832;10815.6;zing Æ’;20222326;;290;4078;31010-6 -2022-06-21;2022-06-21T05:46:01Z;6032;5305;euro €;20222325;;33;2400;67876-0 -2022-06-21;2022-06-21T03:48:54Z;3795;3299;dollar $;20222324;;421;1100;70528-4 -2022-06-20;2022-06-20T19:23:42Z;5986;7182.89;dollar $;20222323;;666;1100;65895-0 -2022-06-20;2022-06-20T17:27:22Z;2197;6441;zing Æ’;20222322;;666;1200;85425-0 -2022-06-20;2022-06-20T16:30:08Z;6032;4861;zing Æ’;20222321;;421;4425;60358-4 -2022-06-20;2022-06-20T15:44:37Z;4608;10833;zing Æ’;20222320;;290;1979;71179-1 -2022-06-20;2022-06-20T13:20:31Z;5516;7919;dollar $;20222319;;421;9921;26161-8 -2022-06-20;2022-06-20T07:13:17Z;5243;4484.62;british pound £;20222318;;666;1002;25393-9 -2022-06-20;2022-06-20T05:49:20Z;3284;8601.15;zing Æ’;20222317;;33;5420;50541-9 -2022-06-20;2022-06-20T04:55:00Z;5986;4775.55;dollar $;20222316;;421;1002;50962-2 -2022-06-20;2022-06-20T02:41:55Z;2727;8557;dollar $;20222315;;33;4078;36787-0 -2022-06-20;2022-06-20T00:23:32Z;5764;3305;zing Æ’;20222314;;290;1002;58586-9 -2022-06-20;2022-06-20T00:00:10Z;5987;3882;zing Æ’;20222313;;666;4078;52218-7 -2022-06-19;2022-06-19T20:21:39Z;5243;6876;dollar $;20222312;;666;8521;75584-0 -2022-06-19;2022-06-19T15:00:09Z;4965;7454.85;zing Æ’;20222311;;666;2400;55580-7 -2022-06-19;2022-06-19T12:57:10Z;5243;3481;dollar $;20222310;;33;4078;54281-6 -2022-06-19;2022-06-19T12:12:05Z;2197;7483.74;dollar $;20222309;;33;1002;64176-0 -2022-06-19;2022-06-19T11:27:36Z;4465;2028.27;dollar $;20222308;;666;4078;58461-6 -2022-06-18;2022-06-18T16:01:22Z;3795;4818.37;dollar $;20222307;;290;8800;85753-9 -2022-06-18;2022-06-18T15:18:29Z;2197;9894;dollar $;20222306;;33;4078;69283-5 -2022-06-18;2022-06-18T11:20:42Z;3795;8909.99;zing Æ’;20222305;;33;9921;81913-3 -2022-06-18;2022-06-18T10:23:55Z;5516;4021.38;dollar $;20222304;;421;1979;39911-6 -2022-06-18;2022-06-18T09:56:44Z;4862;9008;dollar $;20222303;;666;6317;31960-3 -2022-06-18;2022-06-18T04:50:34Z;1945;5599.08;dollar $;20222302;;421;8800;50331-5 -2022-06-18;2022-06-18T04:13:35Z;1217;4112.17;dollar $;20222301;;666;5420;82138-2 -2022-06-17;2022-06-17T23:48:40Z;4965;6732;british pound £;20222300;;290;2231;35152-5 -2022-06-17;2022-06-17T21:35:38Z;5516;6495;british pound £;20222299;;290;5420;31821-6 -2022-06-17;2022-06-17T20:16:39Z;3294;3991.48;zing Æ’;20222298;;666;3321;86365-0 -2022-06-17;2022-06-17T15:21:34Z;4465;5081.16;zing Æ’;20222297;;666;1979;82416-8 -2022-06-17;2022-06-17T12:34:24Z;4465;7884;british pound £;20222296;;290;2231;73006-0 -2022-06-17;2022-06-17T12:29:42Z;3294;4335.96;zing Æ’;20222295;;33;2400;45158-5 -2022-06-17;2022-06-17T11:08:46Z;3795;5930.24;dollar $;20222294;;290;4425;35421-4 -2022-06-17;2022-06-17T10:13:01Z;5986;4365.47;dollar $;20222293;;666;1002;56823-1 -2022-06-17;2022-06-17T02:42:46Z;4965;6619;dollar $;20222292;;421;1100;62411-4 -2022-06-16;2022-06-16T23:41:32Z;2197;5839;zing Æ’;20222291;;666;4078;27256-6 -2022-06-16;2022-06-16T18:20:02Z;1217;6463.78;zing Æ’;20222290;;33;8800;48042-6 -2022-06-16;2022-06-16T11:59:35Z;5764;3687.82;dollar $;20222289;;421;4425;54132-5 -2022-06-16;2022-06-16T08:22:06Z;4608;7973.35;zing Æ’;20222288;;290;9921;33020-9 -2022-06-15;2022-06-15T22:41:32Z;1455;10505.75;dollar $;20222287;;421;8521;67975-1 -2022-06-15;2022-06-15T18:42:28Z;4023;10478;dollar $;20222286;;33;3321;82912-8 -2022-06-15;2022-06-15T17:06:57Z;4965;3688;dollar $;20222285;;666;8800;85035-0 -2022-06-15;2022-06-15T15:38:00Z;2489;7903.48;british pound £;20222284;;290;8521;86418-4 -2022-06-15;2022-06-15T12:31:17Z;1455;5974;zing Æ’;20222283;;421;2400;72669-9 -2022-06-15;2022-06-15T11:12:17Z;5188;9940.55;dollar $;20222282;;421;1002;42384-9 -2022-06-15;2022-06-15T10:49:01Z;4465;8089.49;euro €;20222281;;290;2231;76851-0 -2022-06-15;2022-06-15T08:07:15Z;5832;10788.31;dollar $;20222280;;666;1979;25063-6 -2022-06-15;2022-06-15T05:23:42Z;5986;5888;dollar $;20222279;;33;6552;35569-6 -2022-06-15;2022-06-15T01:45:56Z;3100;5715;dollar $;20222278;;421;4078;43459-6 -2022-06-14;2022-06-14T21:02:54Z;2197;5507.23;dollar $;20222277;;421;5420;67669-7 -2022-06-14;2022-06-14T18:03:08Z;5986;5482.22;zing Æ’;20222276;;421;8521;86148-1 -2022-06-14;2022-06-14T17:24:43Z;6032;6774.67;zing Æ’;20222275;;290;4425;48453-6 -2022-06-14;2022-06-14T13:40:58Z;2489;7983;dollar $;20222274;;33;4425;61701-1 -2022-06-14;2022-06-14T13:21:55Z;1121;7302;dollar $;20222273;408 Request Timeout;666;5420;47709-2 -2022-06-14;2022-06-14T12:56:16Z;5832;2663.71;dollar $;20222272;;290;1002;62664-5 -2022-06-14;2022-06-14T12:45:34Z;3284;5504;dollar $;20222271;;33;1200;84979-8 -2022-06-13;2022-06-13T11:49:45Z;4023;3590;zing Æ’;20222270;;666;4078;78935-8 -2022-06-13;2022-06-13T11:04:56Z;5987;5893;dollar $;20222269;;290;6552;60838-8 -2022-06-13;2022-06-13T10:45:45Z;5516;7847.61;dollar $;20222268;;421;1100;36546-5 -2022-06-13;2022-06-13T06:51:37Z;3100;3579.75;dollar $;20222267;;290;4078;34185-9 -2022-06-13;2022-06-13T00:18:35Z;4862;9702.68;dollar $;20222266;;290;8521;39965-3 -2022-06-12;2022-06-12T23:14:11Z;2727;5119.67;dollar $;20222265;;33;2400;25049-7 -2022-06-12;2022-06-12T20:04:09Z;4965;4487.18;zing Æ’;20222264;;666;8800;55417-3 -2022-06-12;2022-06-12T17:13:44Z;5832;5324;zing Æ’;20222263;;290;2400;71195-9 -2022-06-12;2022-06-12T14:57:29Z;2197;4517.69;dollar $;20222262;;290;3321;29621-1 -2022-06-12;2022-06-12T11:25:20Z;5188;4643;dollar $;20222261;;666;4425;59225-2 -2022-06-12;2022-06-12T09:38:52Z;1121;3268.72;dollar $;20222260;;290;2400;40546-3 -2022-06-11;2022-06-11T23:41:25Z;5516;5787;dollar $;20222259;;33;3321;59503-3 -2022-06-11;2022-06-11T23:22:39Z;5986;8003;zing Æ’;20222258;;666;1979;45927-9 -2022-06-11;2022-06-11T22:22:04Z;5188;5219;dollar $;20222257;;421;6317;47729-7 -2022-06-11;2022-06-11T22:20:52Z;1217;7179.35;dollar $;20222256;;33;4078;53192-3 -2022-06-11;2022-06-11T22:18:35Z;5986;7559;british pound £;20222255;;33;4425;47895-1 -2022-06-11;2022-06-11T19:39:58Z;4023;5527;zing Æ’;20222254;;290;2400;51516-8 -2022-06-11;2022-06-11T18:54:59Z;3715;600.42;dollar $;20222253;;666;6552;41237-9 -2022-06-11;2022-06-11T13:45:07Z;1121;4998;dollar $;20222252;;290;2400;46271-7 -2022-06-11;2022-06-11T11:03:29Z;3294;5709.99;zing Æ’;20222251;;421;2400;58454-7 -2022-06-11;2022-06-11T07:40:07Z;2489;7851;dollar $;20222250;;421;8521;44540-2 -2022-06-11;2022-06-11T05:36:42Z;5243;6661.31;dollar $;20222249;;421;2231;25575-3 -2022-06-11;2022-06-11T03:28:25Z;2489;4891;dollar $;20222248;;290;5420;32925-1 -2022-06-11;2022-06-11T00:56:05Z;3294;3216;dollar $;20222247;;421;5420;48285-7 -2022-06-10;2022-06-10T22:47:31Z;2197;5295;dollar $;20222246;;290;8800;63641-2 -2022-06-10;2022-06-10T18:41:41Z;1455;10684.36;dollar $;20222245;;290;6552;32025-8 -2022-06-10;2022-06-10T14:01:31Z;4862;8068;dollar $;20222244;;290;6317;82684-1 -2022-06-10;2022-06-10T09:50:21Z;2727;5733;dollar $;20222243;;666;2231;79426-9 -2022-06-10;2022-06-10T08:19:27Z;6032;5576.46;dollar $;20222242;;33;5420;44659-3 -2022-06-10;2022-06-10T02:51:39Z;1121;10142;dollar $;20222241;;33;2400;36594-6 -2022-06-09;2022-06-09T23:30:49Z;1455;4575.13;british pound £;20222240;;33;4425;69503-8 -2022-06-09;2022-06-09T15:26:43Z;1297;7750.11;dollar $;20222239;;421;6552;52309-6 -2022-06-09;2022-06-09T13:59:59Z;5987;7320.73;dollar $;20222238;;290;2400;63497-4 -2022-06-09;2022-06-09T11:37:07Z;3294;2990.09;dollar $;20222237;;666;1002;84239-5 -2022-06-09;2022-06-09T10:19:10Z;1217;9852;dollar $;20222236;;666;1100;28370-6 -2022-06-09;2022-06-09T04:39:28Z;6032;1989;dollar $;20222235;;666;1100;28057-4 -2022-06-09;2022-06-09T00:29:24Z;4465;11602.97;zing Æ’;20222234;;290;3321;31373-6 -2022-06-08;2022-06-08T21:52:44Z;4023;6995;british pound £;20222233;;421;2400;50530-5 -2022-06-08;2022-06-08T21:21:05Z;3284;4423;dollar $;20222232;;421;1200;44354-1 -2022-06-08;2022-06-08T20:32:31Z;4023;1064;british pound £;20222231;;33;8800;53724-1 -2022-06-08;2022-06-08T17:05:04Z;2727;3356;dollar $;20222230;;33;2400;70002-4 -2022-06-08;2022-06-08T10:12:07Z;4023;5587.93;dollar $;20222229;;421;9921;58600-0 -2022-06-08;2022-06-08T04:17:36Z;5188;7673;euro €;20222228;;421;1200;77302-3 -2022-06-07;2022-06-07T19:48:53Z;3100;2348;dollar $;20222227;;666;5420;64258-3 -2022-06-07;2022-06-07T16:10:13Z;3795;3819;dollar $;20222226;;33;4078;48383-3 -2022-06-07;2022-06-07T14:31:00Z;2197;6230.14;zing Æ’;20222225;;666;5420;82346-3 -2022-06-07;2022-06-07T09:37:47Z;4862;5481;dollar $;20222224;;666;8521;52785-9 -2022-06-07;2022-06-07T05:38:41Z;3715;8749;dollar $;20222223;;33;6317;42877-0 -2022-06-07;2022-06-07T03:00:21Z;4023;6775.08;dollar $;20222222;;666;9921;78787-0 -2022-06-06;2022-06-06T18:09:14Z;5987;5490.45;dollar $;20222221;;290;1100;40569-4 -2022-06-06;2022-06-06T17:01:45Z;5764;8148.49;dollar $;20222220;;33;1200;35935-8 -2022-06-06;2022-06-06T14:20:56Z;3294;9447.75;dollar $;20222219;;421;1100;46299-1 -2022-06-06;2022-06-06T13:53:21Z;3294;6186;dollar $;20222218;;290;6552;72571-8 -2022-06-06;2022-06-06T13:37:08Z;6032;9197;dollar $;20222217;;33;4078;74795-2 -2022-06-06;2022-06-06T11:27:01Z;1121;6475.39;dollar $;20222216;;421;9921;55142-4 -2022-06-05;2022-06-05T23:31:46Z;5516;3602.2;zing Æ’;20222215;;666;4425;60210-6 -2022-06-05;2022-06-05T22:06:52Z;2197;8343;dollar $;20222214;;666;1002;26453-1 -2022-06-05;2022-06-05T20:50:05Z;1217;6035.49;dollar $;20222213;;33;1979;34769-5 -2022-06-05;2022-06-05T19:23:38Z;1217;6524.77;dollar $;20222212;;290;6552;36774-1 -2022-06-05;2022-06-05T14:53:55Z;1455;6490.76;dollar $;20222211;;33;1979;75558-2 -2022-06-05;2022-06-05T14:15:25Z;5764;2471.18;british pound £;20222210;;666;5420;33750-2 -2022-06-05;2022-06-05T09:31:32Z;1121;8933.32;dollar $;20222209;;290;8800;27265-4 -2022-06-05;2022-06-05T06:04:42Z;4465;4571.04;zing Æ’;20222208;;666;2400;55880-4 -2022-06-05;2022-06-05T03:53:05Z;1455;6217.33;british pound £;20222207;;421;4078;59305-3 -2022-06-04;2022-06-04T22:07:58Z;3100;9648;british pound £;20222206;;290;4425;64148-9 -2022-06-04;2022-06-04T20:15:36Z;5986;7996.26;dollar $;20222205;;421;2231;50934-6 -2022-06-04;2022-06-04T16:40:12Z;5188;6050;dollar $;20222204;;290;1200;56061-4 -2022-06-04;2022-06-04T16:10:01Z;4862;6188.5;dollar $;20222203;;421;3321;51926-0 -2022-06-04;2022-06-04T13:06:57Z;5832;5164.23;dollar $;20222202;;290;8800;50866-1 -2022-06-04;2022-06-04T11:36:18Z;3294;9751.41;zing Æ’;20222201;;666;4078;39253-7 -2022-06-04;2022-06-04T11:35:52Z;1297;8085.52;dollar $;20222200;;290;6317;33277-9 -2022-06-04;2022-06-04T09:12:12Z;1945;4096;british pound £;20222199;;33;1200;50438-7 -2022-06-04;2022-06-04T07:11:38Z;5987;7696.62;dollar $;20222198;;666;8800;82563-1 -2022-06-04;2022-06-04T05:06:24Z;5986;5257.01;zing Æ’;20222197;;290;3321;65697-5 -2022-06-03;2022-06-03T22:27:05Z;6032;6674.03;dollar $;20222196;;666;4078;25710-8 -2022-06-03;2022-06-03T10:43:41Z;5516;7196.57;dollar $;20222195;;421;6317;24786-4 -2022-06-02;2022-06-02T21:24:04Z;5832;3669;dollar $;20222194;;421;6552;64667-7 -2022-06-02;2022-06-02T15:32:06Z;4862;7557.96;dollar $;20222193;;421;1002;59627-0 -2022-06-02;2022-06-02T15:31:03Z;3100;3903;dollar $;20222192;;666;6317;26224-4 -2022-06-02;2022-06-02T14:34:03Z;5243;8209;dollar $;20222191;;666;6317;30017-7 -2022-06-02;2022-06-02T14:08:12Z;1455;6998.07;dollar $;20222190;;666;8521;47622-9 -2022-06-02;2022-06-02T13:15:06Z;2727;7132;dollar $;20222189;;421;2400;30389-9 -2022-06-02;2022-06-02T13:07:54Z;3795;1972;british pound £;20222188;;33;2231;83868-6 -2022-06-02;2022-06-02T07:17:46Z;5516;6652;dollar $;20222187;;421;6552;42231-2 -2022-06-02;2022-06-02T06:18:55Z;5764;2014.4;british pound £;20222186;;421;5420;28598-5 -2022-06-02;2022-06-02T05:38:30Z;1945;8361;dollar $;20222185;;666;1200;64463-9 -2022-06-01;2022-06-01T21:32:07Z;4608;7066;dollar $;20222184;;666;3321;69903-1 -2022-06-01;2022-06-01T19:32:28Z;3294;3154.54;dollar $;20222183;;421;4078;63721-8 -2022-06-01;2022-06-01T17:31:04Z;4608;8474.57;british pound £;20222182;;290;8521;83875-8 -2022-06-01;2022-06-01T10:34:20Z;1945;6243;zing Æ’;20222181;;666;1979;79056-4 -2022-06-01;2022-06-01T06:36:29Z;1455;7756.27;dollar $;20222180;;421;8521;72313-3 -2022-06-01;2022-06-01T03:56:01Z;3795;10566;dollar $;20222179;;33;4425;33639-9 -2022-06-01;2022-06-01T02:42:56Z;4465;9647;dollar $;20222178;;290;1100;80351-3 -2022-06-01;2022-06-01T02:27:08Z;5832;9750.09;zing Æ’;20222177;;421;9921;83535-8 -2022-05-31;2022-05-31T21:04:29Z;3795;4924;zing Æ’;20222176;;421;1200;62056-0 -2022-05-31;2022-05-31T21:00:20Z;3795;6940;dollar $;20222175;;290;6317;82642-4 -2022-05-31;2022-05-31T20:49:09Z;6032;1870;dollar $;20222174;;666;5420;27875-4 -2022-05-31;2022-05-31T09:33:27Z;2197;8332.4;zing Æ’;20222173;;290;6552;25972-6 -2022-05-31;2022-05-31T05:57:50Z;3795;2391;zing Æ’;20222172;;33;5420;25204-8 -2022-05-30;2022-05-30T19:54:22Z;1297;4949;dollar $;20222171;;290;3321;81530-9 -2022-05-30;2022-05-30T11:57:41Z;5516;7134.45;dollar $;20222170;;421;9921;68051-5 -2022-05-30;2022-05-30T08:49:40Z;4465;9672;zing Æ’;20222169;408 Request Timeout;666;2231;58300-0 -2022-05-30;2022-05-30T06:18:41Z;4965;2954;british pound £;20222168;;290;6552;73702-9 -2022-05-30;2022-05-30T05:32:02Z;3100;9866.51;zing Æ’;20222167;;421;6552;59371-2 -2022-05-30;2022-05-30T01:14:21Z;1217;1250;zing Æ’;20222166;;666;2400;68017-6 -2022-05-29;2022-05-29T23:32:03Z;3715;9520;zing Æ’;20222165;;290;2400;59137-9 -2022-05-29;2022-05-29T22:17:16Z;1121;9078.63;zing Æ’;20222164;;290;2400;39417-3 -2022-05-29;2022-05-29T09:35:37Z;3284;7753.8;zing Æ’;20222163;;421;8800;48433-8 -2022-05-28;2022-05-28T23:25:27Z;2727;9933;dollar $;20222162;;33;4078;24848-8 -2022-05-28;2022-05-28T23:05:53Z;5764;7644.51;dollar $;20222161;;33;1100;64082-1 -2022-05-28;2022-05-28T20:39:01Z;4965;6631.45;dollar $;20222160;;421;8521;26393-9 -2022-05-28;2022-05-28T19:39:18Z;4965;9056.06;dollar $;20222159;;421;5420;49698-2 -2022-05-28;2022-05-28T16:11:56Z;5188;4210.76;zing Æ’;20222158;;666;1979;63026-2 -2022-05-28;2022-05-28T11:18:36Z;3795;4928;dollar $;20222157;;421;4078;76911-2 -2022-05-28;2022-05-28T08:32:02Z;5986;11826.25;dollar $;20222156;;421;1979;37726-7 -2022-05-28;2022-05-28T03:49:23Z;1455;10922.69;dollar $;20222155;;666;1200;81112-9 -2022-05-27;2022-05-27T13:10:47Z;1217;10274.38;dollar $;20222154;;290;1002;76522-4 -2022-05-27;2022-05-27T11:15:24Z;5832;7613.92;dollar $;20222153;;33;8521;81806-9 -2022-05-27;2022-05-27T10:23:43Z;5764;5042.13;british pound £;20222152;;666;1200;32246-8 -2022-05-27;2022-05-27T09:48:35Z;4965;4317.17;dollar $;20222151;;290;2231;27424-8 -2022-05-27;2022-05-27T07:32:43Z;5516;7674.19;dollar $;20222150;;421;1002;79966-1 -2022-05-27;2022-05-27T06:39:43Z;4023;10924;euro €;20222149;;666;5420;76466-2 -2022-05-27;2022-05-27T05:40:45Z;1297;5785;dollar $;20222148;;666;5420;81652-0 -2022-05-27;2022-05-27T04:27:49Z;3294;4996.72;zing Æ’;20222147;;421;1200;42262-9 -2022-05-26;2022-05-26T15:41:54Z;4023;6274;dollar $;20222146;;421;6317;71712-7 -2022-05-26;2022-05-26T09:27:47Z;1121;3194.3;dollar $;20222145;;666;2231;71017-5 -2022-05-26;2022-05-26T05:23:44Z;2197;7398;dollar $;20222144;;290;9921;67996-2 -2022-05-26;2022-05-26T04:49:11Z;4465;8381;zing Æ’;20222143;;421;9921;52123-2 -2022-05-26;2022-05-26T01:08:34Z;1455;4868.52;dollar $;20222142;;421;2400;60111-0 -2022-05-25;2022-05-25T22:00:41Z;4965;8425.51;zing Æ’;20222141;;290;6552;38761-1 -2022-05-25;2022-05-25T17:21:20Z;2727;9639;zing Æ’;20222140;;666;5420;85260-1 -2022-05-25;2022-05-25T16:44:13Z;3715;6687;zing Æ’;20222139;;290;6317;63568-1 -2022-05-25;2022-05-25T16:34:22Z;2489;6356.27;dollar $;20222138;;666;8521;44873-6 -2022-05-25;2022-05-25T15:20:21Z;2489;4683.5;dollar $;20222137;;421;2231;79755-4 -2022-05-25;2022-05-25T04:16:37Z;1455;4921.7;zing Æ’;20222136;;421;8521;46423-2 -2022-05-25;2022-05-25T03:00:48Z;1217;5334.72;dollar $;20222135;;33;5420;38955-0 -2022-05-25;2022-05-25T02:33:34Z;5188;6308.31;dollar $;20222134;;421;3321;82593-5 -2022-05-24;2022-05-24T19:57:47Z;1297;4523.56;british pound £;20222133;;666;2231;49684-2 -2022-05-24;2022-05-24T17:36:21Z;2197;6717;british pound £;20222132;;421;4078;75979-6 -2022-05-24;2022-05-24T05:45:10Z;1297;4824.93;dollar $;20222131;;421;9921;74225-6 -2022-05-24;2022-05-24T04:56:31Z;3795;11771.01;dollar $;20222130;;290;6552;40828-0 -2022-05-23;2022-05-23T18:58:10Z;5764;3624.69;dollar $;20222129;;290;8521;86099-7 -2022-05-23;2022-05-23T16:56:42Z;1297;4396;dollar $;20222128;;666;1200;30624-7 -2022-05-23;2022-05-23T14:51:02Z;1121;844.66;british pound £;20222127;;421;1002;32340-0 -2022-05-23;2022-05-23T12:00:21Z;1217;7062.66;dollar $;20222126;;666;4078;34847-3 -2022-05-23;2022-05-23T11:25:02Z;1455;6682.82;dollar $;20222125;;290;6317;58643-7 -2022-05-23;2022-05-23T04:09:42Z;5188;4367;dollar $;20222124;;33;4425;30992-5 -2022-05-22;2022-05-22T19:25:51Z;3715;5949;dollar $;20222123;;290;5420;75671-2 -2022-05-22;2022-05-22T13:39:48Z;3100;7772.32;dollar $;20222122;;290;2231;35363-5 -2022-05-22;2022-05-22T06:01:51Z;1945;10755.4;british pound £;20222121;;290;1200;38194-9 -2022-05-22;2022-05-22T01:36:16Z;3284;2894.31;euro €;20222120;;666;8521;54271-6 -2022-05-22;2022-05-22T00:46:45Z;5764;5326.63;dollar $;20222119;;33;8521;70235-6 -2022-05-22;2022-05-22T00:24:39Z;2727;4951;dollar $;20222118;;290;4425;64976-3 -2022-05-21;2022-05-21T23:53:45Z;2727;8586;dollar $;20222117;;421;4078;78546-3 -2022-05-21;2022-05-21T12:58:06Z;3284;5664;dollar $;20222116;;666;3321;41411-4 -2022-05-21;2022-05-21T11:15:32Z;5764;7546.13;dollar $;20222115;;421;8800;26042-6 -2022-05-21;2022-05-21T09:05:02Z;1945;3871.65;dollar $;20222114;;290;3321;57825-6 -2022-05-21;2022-05-21T08:49:23Z;2489;11910.59;dollar $;20222113;;290;9921;68939-0 -2022-05-21;2022-05-21T07:53:37Z;4862;8551;dollar $;20222112;;666;6552;35642-4 -2022-05-21;2022-05-21T05:57:25Z;1121;6873.79;dollar $;20222111;;666;1979;72533-4 -2022-05-21;2022-05-21T00:30:50Z;4023;6353.51;dollar $;20222110;;290;4425;63772-9 -2022-05-20;2022-05-20T15:19:11Z;3294;4378.21;dollar $;20222109;;290;1200;34873-7 -2022-05-20;2022-05-20T06:50:14Z;4862;8260.11;dollar $;20222108;;421;8800;39374-2 -2022-05-20;2022-05-20T05:47:42Z;5516;4596;euro €;20222107;;290;9921;56115-5 -2022-05-20;2022-05-20T00:49:59Z;4465;7704;dollar $;20222106;;421;4425;71973-1 -2022-05-19;2022-05-19T21:48:21Z;1217;4221;dollar $;20222105;;290;6317;51654-1 -2022-05-19;2022-05-19T18:06:08Z;3284;7144.76;euro €;20222104;;421;1002;28149-0 -2022-05-19;2022-05-19T17:39:51Z;2489;7333.27;dollar $;20222103;;33;4078;49738-3 -2022-05-19;2022-05-19T12:02:09Z;3294;3515;dollar $;20222102;;666;2400;57107-5 -2022-05-19;2022-05-19T11:25:01Z;1121;3725;dollar $;20222101;;666;8521;64464-2 -2022-05-19;2022-05-19T10:56:43Z;1297;10704;zing Æ’;20222100;;290;1002;35827-8 -2022-05-19;2022-05-19T10:05:59Z;5986;9721;british pound £;20222099;;666;8521;50351-4 -2022-05-19;2022-05-19T09:21:34Z;3284;5760.82;zing Æ’;20222098;;666;2231;40853-0 -2022-05-19;2022-05-19T08:24:55Z;5188;7340.83;dollar $;20222097;;290;2231;74868-0 -2022-05-19;2022-05-19T07:21:08Z;1455;6170.73;dollar $;20222096;;33;1100;76738-7 -2022-05-19;2022-05-19T07:18:52Z;2727;11683;british pound £;20222095;;421;4425;73294-7 -2022-05-19;2022-05-19T02:20:06Z;3795;4657;euro €;20222094;;666;8800;65300-6 -2022-05-18;2022-05-18T22:50:09Z;4862;3406.95;zing Æ’;20222093;;33;3321;26076-4 -2022-05-18;2022-05-18T19:44:13Z;1217;6896.77;dollar $;20222092;;666;1100;61795-2 -2022-05-18;2022-05-18T10:31:49Z;3715;6558.08;zing Æ’;20222091;;33;9921;83139-0 -2022-05-18;2022-05-18T09:04:31Z;5243;6787.34;dollar $;20222090;;33;2231;33219-5 -2022-05-18;2022-05-18T09:01:28Z;3100;6988;zing Æ’;20222089;;666;1200;63217-8 -2022-05-18;2022-05-18T07:44:47Z;1121;8863;british pound £;20222088;;33;4425;38721-4 -2022-05-17;2022-05-17T13:56:42Z;3100;4335.05;dollar $;20222087;;666;1002;68375-0 -2022-05-17;2022-05-17T13:27:05Z;1121;10471.23;british pound £;20222086;;666;8521;26534-1 -2022-05-17;2022-05-17T09:17:42Z;5516;3906.73;zing Æ’;20222085;;33;1979;45859-3 -2022-05-16;2022-05-16T18:25:18Z;3100;9798;zing Æ’;20222084;;666;9921;56804-7 -2022-05-16;2022-05-16T16:12:19Z;2489;7178.46;dollar $;20222083;;421;1200;30713-3 -2022-05-16;2022-05-16T14:45:06Z;5188;9534.93;dollar $;20222082;;33;2231;77839-1 -2022-05-16;2022-05-16T08:01:41Z;2197;3809.2;dollar $;20222081;;33;4078;25466-6 -2022-05-16;2022-05-16T02:33:32Z;5243;11559.41;dollar $;20222080;;33;9921;80853-7 -2022-05-15;2022-05-15T15:43:45Z;5987;5104.92;zing Æ’;20222079;;421;4078;67481-3 -2022-05-15;2022-05-15T12:44:19Z;5986;3876;dollar $;20222078;;33;2400;47771-9 -2022-05-15;2022-05-15T12:29:36Z;3795;10348.58;zing Æ’;20222077;;290;3321;77256-8 -2022-05-15;2022-05-15T03:34:20Z;2727;9104;dollar $;20222076;;290;1979;62719-0 -2022-05-15;2022-05-15T03:25:49Z;1121;10356;dollar $;20222075;;33;1979;28234-7 -2022-05-15;2022-05-15T02:17:22Z;5243;4125.3;dollar $;20222074;;290;9921;48324-5 -2022-05-15;2022-05-15T00:50:32Z;5516;3593.49;dollar $;20222073;;33;8521;29994-0 -2022-05-14;2022-05-14T17:01:01Z;5516;8858.9;british pound £;20222072;;666;1100;42814-9 -2022-05-14;2022-05-14T15:47:20Z;5516;10542.48;zing Æ’;20222071;;421;8800;45891-8 -2022-05-14;2022-05-14T12:07:57Z;5986;6491;zing Æ’;20222070;;33;6317;38493-1 -2022-05-13;2022-05-13T23:54:06Z;1121;8212.42;dollar $;20222069;;33;2400;43966-4 -2022-05-13;2022-05-13T19:41:11Z;2489;5364.08;dollar $;20222068;;33;4425;67501-1 -2022-05-13;2022-05-13T19:26:38Z;5832;9626.8;zing Æ’;20222067;;290;3321;34049-7 -2022-05-13;2022-05-13T17:50:05Z;4465;4848;zing Æ’;20222066;;666;3321;32859-1 -2022-05-13;2022-05-13T17:04:32Z;6032;2911;dollar $;20222065;;421;5420;82243-2 -2022-05-13;2022-05-13T08:37:53Z;2489;6028.4;zing Æ’;20222064;;666;4078;68935-5 -2022-05-12;2022-05-12T23:26:37Z;2197;6413.12;zing Æ’;20222063;;421;1100;84965-4 -2022-05-12;2022-05-12T23:06:29Z;2489;8126;dollar $;20222062;;421;4425;71428-5 -2022-05-12;2022-05-12T16:36:08Z;1121;6073;dollar $;20222061;;666;4078;46455-4 -2022-05-12;2022-05-12T14:23:12Z;5764;6338;dollar $;20222060;;33;6317;29303-9 -2022-05-12;2022-05-12T12:44:28Z;4965;5151;dollar $;20222059;;33;9921;51562-8 -2022-05-12;2022-05-12T10:56:18Z;4965;9292.93;zing Æ’;20222058;;33;8521;28727-8 -2022-05-12;2022-05-12T05:59:32Z;5987;1408;dollar $;20222057;;290;2231;50387-9 -2022-05-12;2022-05-12T02:34:16Z;4608;5369.5;british pound £;20222056;;33;1979;83063-4 -2022-05-12;2022-05-12T01:23:33Z;6032;9479;dollar $;20222055;;666;1200;58402-8 -2022-05-11;2022-05-11T22:54:37Z;4608;5970.03;dollar $;20222054;;33;8521;36798-8 -2022-05-11;2022-05-11T18:20:58Z;2197;4315.69;dollar $;20222053;;290;4425;54207-4 -2022-05-11;2022-05-11T16:53:29Z;1945;9030.19;dollar $;20222052;;33;8521;85512-0 -2022-05-11;2022-05-11T15:09:41Z;2489;10612;british pound £;20222051;;290;1002;58225-6 -2022-05-11;2022-05-11T14:43:51Z;4965;3629;dollar $;20222050;;33;6317;67738-4 -2022-05-11;2022-05-11T12:00:09Z;5764;9846;dollar $;20222049;;421;1002;56947-2 -2022-05-11;2022-05-11T09:15:23Z;4465;9269.8;dollar $;20222048;;33;5420;56665-1 -2022-05-11;2022-05-11T04:54:36Z;3294;2506.54;zing Æ’;20222047;;666;4078;29816-8 -2022-05-11;2022-05-11T04:27:40Z;1455;5575;dollar $;20222046;;33;2231;76822-6 -2022-05-11;2022-05-11T04:16:53Z;1217;6790.39;dollar $;20222045;;666;6317;60088-4 -2022-05-11;2022-05-11T03:13:08Z;4465;6573;dollar $;20222044;;421;2400;26694-5 -2022-05-11;2022-05-11T03:01:28Z;5188;7477.51;dollar $;20222043;;421;8521;48442-2 -2022-05-10;2022-05-10T21:31:22Z;1297;6866.17;dollar $;20222042;;421;2231;48998-9 -2022-05-10;2022-05-10T20:08:43Z;1121;4813;dollar $;20222041;;290;2231;32419-4 -2022-05-10;2022-05-10T16:22:08Z;5516;6824;dollar $;20222040;;666;9921;77768-5 -2022-05-10;2022-05-10T14:58:47Z;5987;3217;dollar $;20222039;;666;4425;63446-8 -2022-05-10;2022-05-10T12:03:04Z;5243;6077;dollar $;20222038;;421;2231;73625-3 -2022-05-10;2022-05-10T09:29:50Z;1455;7273;zing Æ’;20222037;;666;5420;29680-9 -2022-05-10;2022-05-10T01:23:16Z;4465;6869.87;dollar $;20222036;;290;8521;79433-8 -2022-05-09;2022-05-09T23:23:31Z;3100;6925.63;dollar $;20222035;;421;6552;64142-2 -2022-05-09;2022-05-09T22:43:24Z;1945;6351.06;british pound £;20222034;;666;1002;50059-0 -2022-05-09;2022-05-09T17:02:15Z;3284;104;dollar $;20222033;;666;2231;74766-2 -2022-05-09;2022-05-09T11:54:30Z;1945;9181.96;dollar $;20222032;;290;1979;64842-4 -2022-05-09;2022-05-09T04:10:51Z;1297;6549.55;zing Æ’;20222031;;666;6552;85282-4 -2022-05-09;2022-05-09T03:14:31Z;3100;5758;british pound £;20222030;;421;6317;31767-1 -2022-05-09;2022-05-09T02:03:33Z;3795;12430;zing Æ’;20222029;;33;1100;50597-7 -2022-05-08;2022-05-08T21:04:16Z;5986;10870;dollar $;20222028;;666;5420;41439-0 -2022-05-08;2022-05-08T14:44:06Z;1121;7108.31;dollar $;20222027;;666;4078;29075-5 -2022-05-08;2022-05-08T03:13:18Z;5243;8772;dollar $;20222026;;33;4425;79021-5 -2022-05-07;2022-05-07T22:50:45Z;1945;4474.31;dollar $;20222025;;666;8800;26040-6 -2022-05-07;2022-05-07T22:26:05Z;4023;4654;zing Æ’;20222024;;421;4078;53772-1 -2022-05-07;2022-05-07T21:01:59Z;1297;7942.56;british pound £;20222023;;290;1979;67594-1 -2022-05-07;2022-05-07T14:54:24Z;4965;4966;dollar $;20222022;;666;3321;51991-4 -2022-05-07;2022-05-07T13:35:40Z;6032;6530;zing Æ’;20222021;;421;1100;74723-1 -2022-05-07;2022-05-07T07:37:42Z;3100;6743.97;dollar $;20222020;;33;8800;85974-9 -2022-05-07;2022-05-07T07:03:15Z;3100;5096;british pound £;20222019;;421;1002;82547-6 -2022-05-07;2022-05-07T02:18:48Z;5188;4472.82;zing Æ’;20222018;;33;9921;83088-3 -2022-05-07;2022-05-07T00:49:16Z;1217;5406.62;british pound £;20222017;;421;9921;63555-2 -2022-05-07;2022-05-07T00:10:14Z;2197;10053;dollar $;20222016;;666;3321;73775-1 -2022-05-06;2022-05-06T22:14:57Z;2489;8981;zing Æ’;20222015;;290;1200;74442-9 -2022-05-06;2022-05-06T22:04:29Z;6032;6136;euro €;20222014;;421;4078;36919-8 -2022-05-06;2022-05-06T20:55:43Z;5243;6614;dollar $;20222013;;421;3321;49521-9 -2022-05-06;2022-05-06T11:05:03Z;6032;2593.89;dollar $;20222012;;421;8800;46376-8 -2022-05-06;2022-05-06T10:24:06Z;5987;8661;dollar $;20222011;;666;2400;64354-7 -2022-05-06;2022-05-06T07:33:17Z;3100;12206;dollar $;20222010;;666;9921;83722-2 -2022-05-06;2022-05-06T06:31:19Z;1297;7881;dollar $;20222009;;290;5420;67729-1 -2022-05-06;2022-05-06T00:40:15Z;4465;10849.95;dollar $;20222008;;666;6552;71109-7 -2022-05-05;2022-05-05T21:07:27Z;1121;5581.41;dollar $;20222007;;421;4078;51650-8 -2022-05-05;2022-05-05T16:26:11Z;1217;3762;british pound £;20222006;;33;1002;47874-8 -2022-05-05;2022-05-05T14:26:35Z;2197;2507;dollar $;20222005;;666;6552;52684-9 -2022-05-05;2022-05-05T12:51:27Z;1945;3712;dollar $;20222004;;290;5420;56210-2 -2022-05-05;2022-05-05T10:38:26Z;5832;3758;british pound £;20222003;;421;6317;79933-7 -2022-05-05;2022-05-05T10:38:20Z;4465;8869;dollar $;20222002;;421;9921;56844-7 -2022-05-05;2022-05-05T08:12:06Z;1217;2459;dollar $;20222001;;421;4078;51214-0 -2022-05-05;2022-05-05T05:29:03Z;4965;7488;dollar $;20222000;;666;3321;85480-8 -2022-05-05;2022-05-05T04:12:11Z;5188;6256.21;dollar $;20221999;;290;2400;44795-5 -2022-05-05;2022-05-05T03:29:42Z;1217;8353.85;zing Æ’;20221998;;33;2400;40133-5 -2022-05-05;2022-05-05T00:49:06Z;4465;7165.62;dollar $;20221997;;421;6552;46108-1 -2022-05-04;2022-05-04T22:27:33Z;3100;7432;dollar $;20221996;;290;1002;60268-7 -2022-05-04;2022-05-04T21:52:22Z;1121;5741;zing Æ’;20221995;;421;1979;57506-2 -2022-05-04;2022-05-04T20:52:38Z;1217;5883;dollar $;20221994;;290;1200;80125-1 -2022-05-04;2022-05-04T14:48:26Z;3100;8164;dollar $;20221993;;33;6552;77620-2 -2022-05-04;2022-05-04T11:24:36Z;5188;8491;euro €;20221992;;666;1002;61216-8 -2022-05-04;2022-05-04T10:09:01Z;5243;1458;dollar $;20221991;;666;5420;81783-7 -2022-05-04;2022-05-04T09:08:50Z;1217;7274;euro €;20221990;;421;6317;49895-1 -2022-05-04;2022-05-04T04:55:24Z;4862;1442;dollar $;20221989;;290;2400;39636-4 -2022-05-03;2022-05-03T19:12:38Z;5243;7450.62;dollar $;20221988;;666;2400;85500-2 -2022-05-03;2022-05-03T10:55:53Z;5986;8806.2;dollar $;20221987;;290;8800;63413-8 -2022-05-03;2022-05-03T10:31:47Z;5764;3887;zing Æ’;20221986;;33;2231;76059-3 -2022-05-03;2022-05-03T10:19:49Z;1297;7129.25;dollar $;20221985;;421;3321;53077-2 -2022-05-03;2022-05-03T08:07:07Z;2727;1340.24;dollar $;20221984;;33;6317;38273-6 -2022-05-02;2022-05-02T18:46:38Z;1297;4632.72;dollar $;20221983;;290;1100;33874-2 -2022-05-02;2022-05-02T17:07:31Z;5764;6532;british pound £;20221982;;666;6552;61724-7 -2022-05-02;2022-05-02T11:03:34Z;3100;5189;dollar $;20221981;;666;1100;68608-0 -2022-05-02;2022-05-02T10:39:24Z;3284;2051;dollar $;20221980;;33;3321;32423-0 -2022-05-01;2022-05-01T22:32:01Z;6032;7914.26;british pound £;20221979;;421;8800;86142-5 -2022-05-01;2022-05-01T10:57:11Z;2197;5007;dollar $;20221978;;421;8521;53916-7 -2022-05-01;2022-05-01T10:05:31Z;1945;6563;dollar $;20221977;;666;3321;80657-1 -2022-05-01;2022-05-01T09:19:19Z;3795;7295;dollar $;20221976;;290;1200;53911-3 -2022-05-01;2022-05-01T07:08:39Z;5764;11149.3;dollar $;20221975;;33;4078;68798-5 -2022-05-01;2022-05-01T04:21:43Z;5764;10502.92;dollar $;20221974;;33;5420;49098-8 -2022-05-01;2022-05-01T02:49:53Z;2489;2178;zing Æ’;20221973;;421;9921;58464-8 -2022-05-01;2022-05-01T02:36:34Z;2489;2231;dollar $;20221972;;33;6552;44205-2 -2022-04-30;2022-04-30T19:33:19Z;5832;6984;euro €;20221971;;290;1979;49795-4 -2022-04-30;2022-04-30T14:39:44Z;1217;3114;dollar $;20221970;;33;5420;43809-0 -2022-04-30;2022-04-30T10:13:37Z;5832;8149;dollar $;20221969;;290;4425;73682-9 -2022-04-30;2022-04-30T08:24:34Z;2489;8652.44;dollar $;20221968;;33;6552;64356-5 -2022-04-30;2022-04-30T06:03:39Z;5188;5679;british pound £;20221967;;290;6317;27731-3 -2022-04-30;2022-04-30T06:02:06Z;3715;5197;british pound £;20221966;;421;6317;77487-1 -2022-04-30;2022-04-30T03:29:01Z;1121;4558;euro €;20221965;;666;6552;63140-6 -2022-04-29;2022-04-29T23:02:04Z;6032;4686;dollar $;20221964;;666;5420;84028-5 -2022-04-29;2022-04-29T20:03:14Z;1217;8979.67;dollar $;20221963;;290;2400;52409-1 -2022-04-29;2022-04-29T19:39:00Z;5188;6946.14;dollar $;20221962;;33;2231;66267-9 -2022-04-29;2022-04-29T18:04:07Z;6032;6297.17;dollar $;20221961;;666;6317;47231-0 -2022-04-29;2022-04-29T14:18:32Z;5188;3991;zing Æ’;20221960;;421;4425;44186-1 -2022-04-29;2022-04-29T13:43:52Z;1217;4901.48;dollar $;20221959;;290;9921;44325-5 -2022-04-29;2022-04-29T13:00:06Z;4023;4309.78;zing Æ’;20221958;;666;2400;29757-0 -2022-04-29;2022-04-29T11:58:14Z;1217;3435;dollar $;20221957;;290;1002;38941-4 -2022-04-29;2022-04-29T09:22:41Z;4023;7901.63;zing Æ’;20221956;;666;8800;38224-8 -2022-04-29;2022-04-29T08:47:30Z;5243;5554;dollar $;20221955;;666;5420;32309-8 -2022-04-29;2022-04-29T08:43:46Z;3284;2485.84;british pound £;20221954;;33;8521;76427-4 -2022-04-29;2022-04-29T07:38:19Z;3284;5634.55;dollar $;20221953;;666;5420;63418-0 -2022-04-29;2022-04-29T07:09:52Z;4465;2754.72;dollar $;20221952;;666;6317;30405-4 -2022-04-28;2022-04-28T20:27:53Z;6032;4913.16;british pound £;20221951;;421;6317;67046-1 -2022-04-28;2022-04-28T18:06:19Z;5832;9491;zing Æ’;20221950;;666;4425;43369-3 -2022-04-28;2022-04-28T15:03:31Z;5188;8469.21;zing Æ’;20221949;;290;1002;45949-8 -2022-04-28;2022-04-28T13:57:42Z;5986;3510;dollar $;20221948;;421;1002;75560-4 -2022-04-28;2022-04-28T13:31:18Z;6032;5453;dollar $;20221947;;666;1100;67806-4 -2022-04-28;2022-04-28T11:47:14Z;6032;7479.6;dollar $;20221946;;421;3321;77655-6 -2022-04-28;2022-04-28T11:18:14Z;5188;2051;dollar $;20221945;;290;4078;45569-1 -2022-04-28;2022-04-28T07:45:41Z;4465;6597.17;dollar $;20221944;;666;2231;37046-8 -2022-04-28;2022-04-28T06:50:06Z;3294;6860;dollar $;20221943;;666;6317;67458-2 -2022-04-28;2022-04-28T06:25:52Z;5516;6886;british pound £;20221942;;290;5420;82846-3 -2022-04-27;2022-04-27T22:11:18Z;3795;11232;dollar $;20221941;;33;8800;77356-6 -2022-04-27;2022-04-27T19:48:21Z;4862;4071.92;british pound £;20221940;;666;5420;60152-0 -2022-04-27;2022-04-27T16:47:07Z;1297;7504;dollar $;20221939;;421;1200;85068-9 -2022-04-27;2022-04-27T13:53:49Z;5188;7741;zing Æ’;20221938;;290;8521;27105-0 -2022-04-27;2022-04-27T09:56:47Z;1455;7230.12;dollar $;20221937;;33;9921;73087-4 -2022-04-27;2022-04-27T07:30:13Z;4465;5853;dollar $;20221936;;666;8521;85186-5 -2022-04-27;2022-04-27T06:49:41Z;5987;6743.55;dollar $;20221935;;421;1200;72480-5 -2022-04-27;2022-04-27T04:01:44Z;4023;6693.15;dollar $;20221934;;666;1002;52816-2 -2022-04-27;2022-04-27T03:41:17Z;5516;8392;dollar $;20221933;;421;1979;75475-1 -2022-04-27;2022-04-27T02:51:31Z;5986;4185;dollar $;20221932;;666;5420;66478-8 -2022-04-26;2022-04-26T21:20:07Z;2489;6602;zing Æ’;20221931;;33;8521;49364-2 -2022-04-26;2022-04-26T20:43:23Z;1297;3992;dollar $;20221930;;666;3321;73952-8 -2022-04-26;2022-04-26T20:18:20Z;3294;3947.63;dollar $;20221929;;33;8521;71136-0 -2022-04-26;2022-04-26T17:59:58Z;1455;3728;zing Æ’;20221928;;421;6317;43053-7 -2022-04-26;2022-04-26T16:48:52Z;5188;4456;dollar $;20221927;;290;2231;64592-0 -2022-04-26;2022-04-26T15:03:23Z;3715;4904.8;dollar $;20221926;;290;8521;71035-1 -2022-04-26;2022-04-26T14:44:34Z;3795;8008.1;zing Æ’;20221925;;33;4425;50634-2 -2022-04-26;2022-04-26T14:04:02Z;5987;5421;dollar $;20221924;;290;5420;30504-6 -2022-04-26;2022-04-26T13:55:06Z;5764;5548.62;dollar $;20221923;;666;1002;39699-9 -2022-04-26;2022-04-26T12:12:45Z;2489;5042;dollar $;20221922;;33;8521;47568-5 -2022-04-26;2022-04-26T06:32:44Z;1217;4831;dollar $;20221921;;290;4425;46308-0 -2022-04-26;2022-04-26T05:58:36Z;4965;4609;british pound £;20221920;;33;2231;28992-5 -2022-04-26;2022-04-26T04:51:23Z;4965;7166;dollar $;20221919;;666;8521;29429-4 -2022-04-25;2022-04-25T23:56:40Z;3795;8490.67;dollar $;20221918;;421;3321;80847-3 -2022-04-25;2022-04-25T18:08:52Z;4862;6448;dollar $;20221917;;421;1200;46881-1 -2022-04-25;2022-04-25T15:17:46Z;2197;5229;zing Æ’;20221916;;421;1002;28881-7 -2022-04-25;2022-04-25T11:56:31Z;4862;9566.73;dollar $;20221915;;33;1200;72170-4 -2022-04-25;2022-04-25T08:36:57Z;4862;4268.35;british pound £;20221914;;33;6552;60251-5 -2022-04-25;2022-04-25T08:07:20Z;5243;3003.31;dollar $;20221913;;290;5420;46429-3 -2022-04-25;2022-04-25T04:01:18Z;5516;8097;dollar $;20221912;;290;4425;45634-5 -2022-04-24;2022-04-24T15:32:47Z;4862;3733.66;dollar $;20221911;;290;1200;49227-9 -2022-04-24;2022-04-24T14:07:46Z;6032;4708;zing Æ’;20221910;;290;1200;73403-2 -2022-04-24;2022-04-24T12:32:28Z;3294;5497.12;dollar $;20221909;;33;9921;81274-7 -2022-04-24;2022-04-24T09:59:30Z;4965;6084;dollar $;20221908;;33;1200;68124-9 -2022-04-24;2022-04-24T06:31:16Z;5987;7515;dollar $;20221907;;290;4078;59577-2 -2022-04-24;2022-04-24T03:18:26Z;2727;775.07;dollar $;20221906;;421;9921;26385-8 -2022-04-23;2022-04-23T22:53:22Z;5764;2398;dollar $;20221905;;290;1100;27399-0 -2022-04-23;2022-04-23T16:05:28Z;4023;6217.43;zing Æ’;20221904;;421;9921;78371-6 -2022-04-23;2022-04-23T08:59:42Z;2727;3539.99;dollar $;20221903;;421;4078;41788-1 -2022-04-23;2022-04-23T07:47:34Z;4965;8066;dollar $;20221902;;290;8800;32432-8 -2022-04-23;2022-04-23T07:31:34Z;5986;8581;zing Æ’;20221901;;421;5420;44897-7 -2022-04-23;2022-04-23T06:03:24Z;1217;2999;dollar $;20221900;;666;1100;80948-4 -2022-04-23;2022-04-23T04:14:37Z;2489;8084.23;british pound £;20221899;;666;3321;79452-5 -2022-04-23;2022-04-23T00:52:00Z;5832;7706.59;british pound £;20221898;;290;1100;43278-2 -2022-04-23;2022-04-23T00:05:23Z;5516;5870.91;dollar $;20221897;;290;6317;24571-1 -2022-04-22;2022-04-22T16:06:15Z;4965;5501;dollar $;20221896;;33;9921;30480-1 -2022-04-22;2022-04-22T13:05:48Z;3100;10294;zing Æ’;20221895;;33;6317;57369-6 -2022-04-22;2022-04-22T10:20:17Z;2489;11102.24;dollar $;20221894;;666;6317;27732-0 -2022-04-22;2022-04-22T04:42:21Z;4965;5214.06;british pound £;20221893;;33;1100;57383-2 -2022-04-22;2022-04-22T03:37:23Z;5516;7548;dollar $;20221892;;666;2231;84053-9 -2022-04-22;2022-04-22T02:30:00Z;3284;5230;british pound £;20221891;;33;1200;34664-3 -2022-04-21;2022-04-21T19:52:01Z;5188;5845;euro €;20221890;;33;2231;43250-8 -2022-04-21;2022-04-21T17:21:15Z;2727;5073;dollar $;20221889;;33;1100;57480-8 -2022-04-21;2022-04-21T15:04:17Z;4023;10283.13;dollar $;20221888;;666;6552;82227-6 -2022-04-21;2022-04-21T14:14:43Z;4965;10830;zing Æ’;20221887;;290;9921;63312-7 -2022-04-21;2022-04-21T03:57:11Z;4862;3335.67;dollar $;20221886;;421;6552;36210-7 -2022-04-21;2022-04-21T03:26:59Z;6032;7437;zing Æ’;20221885;;666;2400;85733-5 -2022-04-20;2022-04-20T18:59:48Z;4608;6206;dollar $;20221884;;421;9921;79637-5 -2022-04-20;2022-04-20T17:42:22Z;4023;7123;dollar $;20221883;;666;6552;46003-0 -2022-04-20;2022-04-20T12:42:07Z;4862;2877.97;zing Æ’;20221882;;290;1100;66131-8 -2022-04-20;2022-04-20T07:29:33Z;2197;6542.58;british pound £;20221881;;666;1979;80298-2 -2022-04-20;2022-04-20T07:27:37Z;5764;4509.77;dollar $;20221880;;666;1002;50039-4 -2022-04-20;2022-04-20T06:29:18Z;3100;7156;british pound £;20221879;;33;3321;78225-4 -2022-04-20;2022-04-20T04:40:20Z;4023;7952;euro €;20221878;;33;6317;27874-0 -2022-04-20;2022-04-20T04:17:09Z;3715;7654;dollar $;20221877;;33;1979;44164-8 -2022-04-19;2022-04-19T22:20:45Z;3795;5580;dollar $;20221876;;666;4425;37593-3 -2022-04-19;2022-04-19T19:13:34Z;3795;8691;dollar $;20221875;;666;1100;41572-3 -2022-04-19;2022-04-19T18:26:41Z;5832;3377;dollar $;20221874;;290;9921;64863-8 -2022-04-19;2022-04-19T17:34:00Z;2727;3139.24;dollar $;20221873;;666;8800;43403-8 -2022-04-19;2022-04-19T16:55:20Z;3100;5822;euro €;20221872;;290;1979;80959-5 -2022-04-19;2022-04-19T16:37:01Z;1217;6820.84;zing Æ’;20221871;;290;6552;36620-5 -2022-04-19;2022-04-19T14:05:43Z;2727;7593.23;zing Æ’;20221870;;421;1979;62188-6 -2022-04-19;2022-04-19T07:53:50Z;1217;5058.24;zing Æ’;20221869;;290;8800;27229-8 -2022-04-19;2022-04-19T04:39:43Z;3294;4885;dollar $;20221868;;666;6552;83866-0 -2022-04-18;2022-04-18T22:33:16Z;4862;8500.3;zing Æ’;20221867;;666;1002;54371-3 -2022-04-18;2022-04-18T17:00:29Z;1217;9286.28;dollar $;20221866;;290;4078;57552-1 -2022-04-18;2022-04-18T12:24:28Z;2197;7962;dollar $;20221865;;666;4425;39889-1 -2022-04-18;2022-04-18T10:56:43Z;4608;3989.02;dollar $;20221864;;666;6317;31849-1 -2022-04-18;2022-04-18T10:05:02Z;3100;2096;british pound £;20221863;;421;1979;40873-7 -2022-04-18;2022-04-18T06:28:12Z;3715;3466.2;dollar $;20221862;;290;6317;62928-2 -2022-04-18;2022-04-18T04:16:02Z;3795;10445;dollar $;20221861;;290;9921;50733-8 -2022-04-18;2022-04-18T03:01:30Z;5986;3514.79;dollar $;20221860;;666;4078;37160-8 -2022-04-17;2022-04-17T23:00:04Z;5986;7273;dollar $;20221859;;666;1200;79761-4 -2022-04-17;2022-04-17T11:42:59Z;1455;13573.99;dollar $;20221858;;666;8800;69564-0 -2022-04-17;2022-04-17T09:14:51Z;5516;6664.95;zing Æ’;20221857;;33;2400;45152-7 -2022-04-17;2022-04-17T04:12:34Z;5987;5611.3;zing Æ’;20221856;;33;2231;29125-2 -2022-04-17;2022-04-17T02:50:39Z;5188;4907.57;dollar $;20221855;;290;1200;42761-5 -2022-04-17;2022-04-17T02:00:41Z;3715;2363.26;dollar $;20221854;;421;1979;53326-6 -2022-04-17;2022-04-17T00:05:40Z;4465;13692.16;dollar $;20221853;;421;1979;70305-4 -2022-04-16;2022-04-16T23:04:52Z;4465;4188;dollar $;20221852;;290;8521;60030-0 -2022-04-16;2022-04-16T21:44:59Z;5764;7396;dollar $;20221851;;666;8800;52406-4 -2022-04-16;2022-04-16T19:55:25Z;4465;10644.55;dollar $;20221850;;290;2231;67085-4 -2022-04-16;2022-04-16T19:47:38Z;5243;2594.95;zing Æ’;20221849;;290;3321;47300-1 -2022-04-16;2022-04-16T19:42:08Z;1121;1808.19;dollar $;20221848;;421;4425;36077-0 -2022-04-16;2022-04-16T16:06:53Z;1455;7519;euro €;20221847;;666;9921;60708-3 -2022-04-16;2022-04-16T15:02:32Z;2489;1984.55;dollar $;20221846;;290;2400;35458-1 -2022-04-16;2022-04-16T14:46:42Z;5987;6645;dollar $;20221845;;666;1100;56398-4 -2022-04-15;2022-04-15T23:51:22Z;3100;2208.53;british pound £;20221844;;33;4425;64854-1 -2022-04-15;2022-04-15T21:39:33Z;1121;6514;dollar $;20221843;;421;2400;78808-0 -2022-04-15;2022-04-15T18:46:36Z;4465;7663;dollar $;20221842;;33;8800;74730-1 -2022-04-15;2022-04-15T09:14:59Z;3294;7009;zing Æ’;20221841;;290;1200;68760-9 -2022-04-15;2022-04-15T07:10:56Z;5243;4240;dollar $;20221840;;666;8521;31854-2 -2022-04-15;2022-04-15T06:22:44Z;1297;9222.23;dollar $;20221839;;290;5420;43501-3 -2022-04-15;2022-04-15T05:27:08Z;2489;5473.54;dollar $;20221838;;290;4425;40212-3 -2022-04-15;2022-04-15T03:31:37Z;2197;3130;zing Æ’;20221837;;33;5420;31396-3 -2022-04-14;2022-04-14T22:47:15Z;5986;8266;zing Æ’;20221836;;421;8521;85939-2 -2022-04-14;2022-04-14T16:44:35Z;4023;4191;zing Æ’;20221835;;666;4425;56758-9 -2022-04-14;2022-04-14T09:56:32Z;5243;7471;zing Æ’;20221834;;33;8800;24820-9 -2022-04-14;2022-04-14T07:44:41Z;2727;7497;dollar $;20221833;;290;5420;44252-5 -2022-04-14;2022-04-14T04:49:54Z;2197;5826.29;dollar $;20221832;;666;9921;85686-8 -2022-04-13;2022-04-13T21:30:29Z;5764;7673;zing Æ’;20221831;;33;5420;49203-3 -2022-04-13;2022-04-13T21:26:20Z;3284;7292;zing Æ’;20221830;;666;1100;57634-9 -2022-04-13;2022-04-13T18:36:04Z;5516;7766.37;zing Æ’;20221829;;33;1200;66316-7 -2022-04-13;2022-04-13T15:48:12Z;5243;7049.88;euro €;20221828;;290;2400;28062-3 -2022-04-13;2022-04-13T15:34:06Z;1297;3842;dollar $;20221827;;421;3321;49722-8 -2022-04-13;2022-04-13T06:36:56Z;5832;7376.21;dollar $;20221826;;290;1100;74557-0 -2022-04-13;2022-04-13T05:25:23Z;1121;5241.6;dollar $;20221825;;421;8800;48782-7 -2022-04-13;2022-04-13T01:12:48Z;3795;4907;zing Æ’;20221824;;33;3321;69518-4 -2022-04-12;2022-04-12T09:03:19Z;4465;8275.21;zing Æ’;20221823;;421;8521;66833-4 -2022-04-12;2022-04-12T08:27:16Z;1297;6975;zing Æ’;20221822;;33;1002;62501-7 -2022-04-12;2022-04-12T03:33:56Z;1945;2517.79;dollar $;20221821;;33;2400;52436-5 -2022-04-12;2022-04-12T02:30:27Z;5243;6070;zing Æ’;20221820;;33;1200;62865-0 -2022-04-12;2022-04-12T01:24:47Z;4465;4907;euro €;20221819;;421;6552;60586-1 -2022-04-12;2022-04-12T00:40:54Z;3284;8053.71;dollar $;20221818;;33;1002;45244-1 -2022-04-11;2022-04-11T22:20:30Z;2489;5249;dollar $;20221817;;421;9921;40803-0 -2022-04-11;2022-04-11T18:06:48Z;4965;1940.43;zing Æ’;20221816;;421;4425;55991-3 -2022-04-11;2022-04-11T13:28:24Z;5516;3553.8;dollar $;20221815;;290;1200;78368-5 -2022-04-11;2022-04-11T08:48:14Z;3284;6458.67;dollar $;20221814;;33;1979;29280-0 -2022-04-11;2022-04-11T05:01:11Z;4965;4698;dollar $;20221813;;33;6552;43509-5 -2022-04-11;2022-04-11T01:27:50Z;2727;5353.18;dollar $;20221812;;666;3321;27519-7 -2022-04-11;2022-04-11T01:08:11Z;4465;9296;dollar $;20221811;;290;1002;58380-6 -2022-04-10;2022-04-10T18:53:20Z;4465;9309.41;zing Æ’;20221810;;666;1200;31178-8 -2022-04-10;2022-04-10T09:53:17Z;2727;6515.38;euro €;20221809;;33;1100;61109-2 -2022-04-10;2022-04-10T08:08:03Z;5986;8802.98;british pound £;20221808;;421;4078;50535-5 -2022-04-10;2022-04-10T00:51:16Z;1455;6788;dollar $;20221807;;33;6552;27457-8 -2022-04-09;2022-04-09T23:52:58Z;5188;7108;dollar $;20221806;;33;2231;35024-2 -2022-04-09;2022-04-09T22:58:53Z;5987;3785;zing Æ’;20221805;;290;2231;79064-7 -2022-04-09;2022-04-09T22:55:20Z;1121;8455.15;dollar $;20221804;;666;6552;78218-0 -2022-04-09;2022-04-09T19:25:54Z;4862;7895.36;dollar $;20221803;;421;8521;30279-9 -2022-04-09;2022-04-09T10:40:43Z;4465;7623.58;british pound £;20221802;;666;1100;72244-0 -2022-04-09;2022-04-09T09:02:36Z;4965;5099;zing Æ’;20221801;;666;9921;37196-7 -2022-04-09;2022-04-09T06:53:14Z;2197;4814;dollar $;20221800;;421;1002;34465-0 -2022-04-09;2022-04-09T00:51:17Z;3795;8872;dollar $;20221799;;33;9921;29188-2 -2022-04-08;2022-04-08T20:17:41Z;1121;7136;british pound £;20221798;;290;8800;52185-2 -2022-04-08;2022-04-08T17:31:17Z;1455;3241.4;dollar $;20221797;;33;8521;32078-9 -2022-04-08;2022-04-08T13:58:58Z;3100;8381.31;zing Æ’;20221796;;33;2231;69513-5 -2022-04-08;2022-04-08T13:53:53Z;4965;7265.9;dollar $;20221795;;421;2231;73826-1 -2022-04-08;2022-04-08T12:37:54Z;2727;4869.59;dollar $;20221794;;666;8800;54243-5 -2022-04-07;2022-04-07T22:42:30Z;1121;5429;dollar $;20221793;;290;4425;75989-4 -2022-04-07;2022-04-07T20:05:56Z;1217;6547.08;dollar $;20221792;;33;1002;63347-8 -2022-04-07;2022-04-07T10:31:09Z;1297;9008.2;dollar $;20221791;;666;8800;49362-6 -2022-04-07;2022-04-07T10:07:59Z;3715;6235;zing Æ’;20221790;;666;8800;50589-9 -2022-04-07;2022-04-07T03:21:35Z;5188;3150.96;dollar $;20221789;;290;5420;85417-1 -2022-04-07;2022-04-07T01:29:08Z;3795;6135;zing Æ’;20221788;;666;4425;42709-4 -2022-04-07;2022-04-07T01:12:42Z;6032;2667.69;dollar $;20221787;;33;1979;29507-0 -2022-04-06;2022-04-06T19:32:39Z;1121;4607.1;british pound £;20221786;;666;4078;81522-2 -2022-04-06;2022-04-06T17:41:07Z;1297;6149;dollar $;20221785;;33;6317;84670-5 -2022-04-06;2022-04-06T16:24:19Z;1121;6912.78;dollar $;20221784;;421;2231;65890-6 -2022-04-06;2022-04-06T16:16:25Z;2727;5858;dollar $;20221783;;421;4078;33218-6 -2022-04-06;2022-04-06T13:32:26Z;5243;7465;british pound £;20221782;;421;6317;76112-8 -2022-04-06;2022-04-06T11:25:30Z;5986;3179;zing Æ’;20221781;;290;9921;75623-9 -2022-04-06;2022-04-06T03:19:24Z;6032;3730;dollar $;20221780;;421;8800;38556-8 -2022-04-05;2022-04-05T20:46:17Z;5764;8524;dollar $;20221779;;666;4425;70945-5 -2022-04-05;2022-04-05T15:52:38Z;3795;9800.1;dollar $;20221778;;290;3321;77774-3 -2022-04-05;2022-04-05T10:32:59Z;6032;5197;zing Æ’;20221777;;666;6317;33207-2 -2022-04-05;2022-04-05T06:33:36Z;5764;7650.03;dollar $;20221776;;290;4078;59360-7 -2022-04-05;2022-04-05T04:23:37Z;1297;11761;british pound £;20221775;;666;6552;34667-9 -2022-04-05;2022-04-05T04:17:17Z;5188;6546.15;dollar $;20221774;;290;1979;60374-8 -2022-04-04;2022-04-04T23:02:25Z;3284;7559.84;british pound £;20221773;;421;8800;25672-6 -2022-04-04;2022-04-04T18:57:24Z;4023;8445.08;dollar $;20221772;;666;2400;86217-5 -2022-04-04;2022-04-04T13:06:43Z;1945;1992;dollar $;20221771;;33;8800;44524-0 -2022-04-04;2022-04-04T10:14:30Z;2727;2251;dollar $;20221770;;421;3321;80407-6 -2022-04-04;2022-04-04T10:00:41Z;3100;5977.93;dollar $;20221769;;290;8521;76741-4 -2022-04-04;2022-04-04T04:53:05Z;1945;5777;dollar $;20221768;;666;4078;69524-6 -2022-04-04;2022-04-04T04:29:30Z;4862;6920;british pound £;20221767;;33;1100;45600-0 -2022-04-04;2022-04-04T03:10:43Z;3284;6582;dollar $;20221766;;666;2231;46569-5 -2022-04-04;2022-04-04T03:10:02Z;1217;7360.1;zing Æ’;20221765;;666;1200;58876-4 -2022-04-04;2022-04-04T03:04:51Z;1297;7372.05;zing Æ’;20221764;;666;8521;78526-1 -2022-04-03;2022-04-03T18:00:50Z;5832;3459;zing Æ’;20221763;;421;8800;27008-6 -2022-04-03;2022-04-03T13:41:36Z;1945;3807;dollar $;20221762;;33;1002;32047-4 -2022-04-03;2022-04-03T12:44:05Z;5987;7970.52;dollar $;20221761;;290;4425;41452-0 -2022-04-03;2022-04-03T11:48:25Z;3715;13276;dollar $;20221760;;290;8521;39609-7 -2022-04-03;2022-04-03T11:30:02Z;1121;5843;zing Æ’;20221759;;666;2400;73713-8 -2022-04-03;2022-04-03T09:15:42Z;4862;7208.22;british pound £;20221758;;666;8800;39899-3 -2022-04-03;2022-04-03T07:39:39Z;3284;5717;dollar $;20221757;;666;6317;37518-8 -2022-04-03;2022-04-03T06:15:18Z;5188;10702.29;zing Æ’;20221756;;33;1002;36547-5 -2022-04-03;2022-04-03T03:17:59Z;1945;7225;dollar $;20221755;;33;6317;56836-0 -2022-04-03;2022-04-03T02:40:30Z;5243;2008;british pound £;20221754;;666;1100;70925-7 -2022-04-02;2022-04-02T21:00:05Z;5987;4310;dollar $;20221753;;33;9921;59169-3 -2022-04-02;2022-04-02T17:07:51Z;5986;7425;dollar $;20221752;;33;9921;55335-7 -2022-04-02;2022-04-02T12:54:01Z;4862;4436.92;british pound £;20221751;;290;2231;74469-9 -2022-04-02;2022-04-02T02:06:01Z;5516;9933;euro €;20221750;;421;1200;44459-1 -2022-04-01;2022-04-01T18:31:21Z;2197;1795.09;british pound £;20221749;;33;2400;83659-9 -2022-04-01;2022-04-01T06:30:48Z;1945;4076.42;dollar $;20221748;;421;6552;47681-1 -2022-04-01;2022-04-01T01:10:03Z;5188;3908.58;zing Æ’;20221747;;33;1200;73069-7 -2022-03-31;2022-03-31T02:18:15Z;3294;7853.7;dollar $;20221746;;421;1979;34919-3 -2022-03-31;2022-03-31T02:15:45Z;1217;8742;dollar $;20221745;;290;8800;39277-9 -2022-03-30;2022-03-30T23:28:42Z;4965;5123;dollar $;20221744;;290;5420;30839-3 -2022-03-30;2022-03-30T22:40:13Z;5987;8412;dollar $;20221743;;33;1100;76683-7 -2022-03-30;2022-03-30T21:21:11Z;3284;9906;dollar $;20221742;;666;1200;69329-2 -2022-03-30;2022-03-30T20:38:23Z;1297;7455;dollar $;20221741;;33;1200;56711-9 -2022-03-30;2022-03-30T19:19:24Z;5832;6955;dollar $;20221740;;290;2231;71545-3 -2022-03-30;2022-03-30T15:16:11Z;5764;7966.54;euro €;20221739;;666;1200;34753-0 -2022-03-30;2022-03-30T14:57:22Z;1121;461;euro €;20221738;;666;6552;35568-9 -2022-03-30;2022-03-30T14:54:20Z;1217;10965;british pound £;20221737;;33;1100;79514-2 -2022-03-30;2022-03-30T13:35:14Z;4965;6914.09;dollar $;20221736;;290;1002;28784-8 -2022-03-30;2022-03-30T13:17:55Z;4862;7011;zing Æ’;20221735;;33;2231;33477-3 -2022-03-30;2022-03-30T11:00:48Z;1945;7124.68;dollar $;20221734;;33;1200;30911-9 -2022-03-30;2022-03-30T09:34:58Z;1455;5310.78;dollar $;20221733;;290;8800;24862-2 -2022-03-30;2022-03-30T01:27:23Z;4023;5683;dollar $;20221732;;421;1100;31535-6 -2022-03-30;2022-03-30T01:17:12Z;3294;7725.35;dollar $;20221731;;666;6317;49863-4 -2022-03-30;2022-03-30T00:33:42Z;5987;7135;dollar $;20221730;;666;1979;60372-6 -2022-03-29;2022-03-29T23:23:11Z;3100;5535;zing Æ’;20221729;;666;1979;69729-4 -2022-03-29;2022-03-29T22:02:29Z;2489;5504.59;dollar $;20221728;;33;6317;52128-5 -2022-03-29;2022-03-29T21:34:50Z;4023;5595.28;zing Æ’;20221727;;421;4078;44006-9 -2022-03-29;2022-03-29T18:10:05Z;5987;3983;dollar $;20221726;;290;4425;60889-7 -2022-03-29;2022-03-29T15:06:59Z;5987;4511.48;euro €;20221725;;33;2231;83314-1 -2022-03-29;2022-03-29T09:55:34Z;3294;3560;dollar $;20221724;;33;1100;41893-3 -2022-03-29;2022-03-29T09:54:13Z;2727;4339;euro €;20221723;;33;1100;36047-0 -2022-03-29;2022-03-29T05:29:10Z;1945;5156;dollar $;20221722;;290;6552;49553-1 -2022-03-28;2022-03-28T23:58:54Z;4465;8995.32;dollar $;20221721;;33;1979;66943-9 -2022-03-28;2022-03-28T23:18:08Z;5987;2598;dollar $;20221720;;33;2231;55737-5 -2022-03-28;2022-03-28T22:26:04Z;4023;7504;dollar $;20221719;;33;2400;35694-1 -2022-03-28;2022-03-28T18:03:20Z;3294;3459;dollar $;20221718;;33;2231;51168-8 -2022-03-28;2022-03-28T17:21:12Z;3284;4623;dollar $;20221717;;666;1979;82728-6 -2022-03-28;2022-03-28T14:57:16Z;4862;6696;dollar $;20221716;;33;6552;33238-6 -2022-03-28;2022-03-28T08:48:27Z;1297;2959.35;dollar $;20221715;;666;9921;83041-5 -2022-03-28;2022-03-28T04:18:21Z;1455;3545;dollar $;20221714;;421;1979;61082-5 -2022-03-27;2022-03-27T20:54:49Z;5832;8028.06;dollar $;20221713;;421;8800;34721-6 -2022-03-27;2022-03-27T18:57:23Z;5516;9213;dollar $;20221712;;33;9921;35625-6 -2022-03-27;2022-03-27T18:53:30Z;4965;3418.63;dollar $;20221711;;421;2231;61826-1 -2022-03-27;2022-03-27T12:55:01Z;3795;4819.02;dollar $;20221710;;290;1979;55517-4 -2022-03-27;2022-03-27T10:50:34Z;3284;6546.81;british pound £;20221709;;666;6552;41061-2 -2022-03-27;2022-03-27T10:15:59Z;1121;2779.51;dollar $;20221708;;666;3321;84672-2 -2022-03-27;2022-03-27T07:20:28Z;1945;5026.4;dollar $;20221707;;33;1200;80191-9 -2022-03-26;2022-03-26T21:30:49Z;3284;5773;zing Æ’;20221706;;290;1002;41336-7 -2022-03-26;2022-03-26T17:02:37Z;6032;8619;british pound £;20221705;;290;1100;41675-7 -2022-03-26;2022-03-26T16:50:05Z;3715;3564.18;zing Æ’;20221704;;421;4425;41745-7 -2022-03-26;2022-03-26T16:38:46Z;4862;5359;dollar $;20221703;;33;4078;34802-1 -2022-03-26;2022-03-26T13:05:08Z;3715;8331;dollar $;20221702;;290;9921;65744-3 -2022-03-26;2022-03-26T09:33:45Z;1945;1788;dollar $;20221701;;290;9921;51835-8 -2022-03-26;2022-03-26T06:09:00Z;6032;5694.04;zing Æ’;20221700;;421;8521;25222-2 -2022-03-26;2022-03-26T00:54:19Z;1455;7802;dollar $;20221699;;421;4078;63206-2 -2022-03-25;2022-03-25T21:15:01Z;4465;5335;zing Æ’;20221698;;33;5420;59270-3 -2022-03-25;2022-03-25T19:20:29Z;6032;6812.52;dollar $;20221697;;666;6552;67228-0 -2022-03-25;2022-03-25T15:20:26Z;4608;8642.44;dollar $;20221696;;33;1979;36139-9 -2022-03-25;2022-03-25T11:57:03Z;4023;10428.55;zing Æ’;20221695;;666;6317;51884-9 -2022-03-25;2022-03-25T04:18:31Z;5764;5618;dollar $;20221694;;421;6317;54101-3 -2022-03-25;2022-03-25T00:25:12Z;1121;9703;dollar $;20221693;;290;1100;36811-4 -2022-03-24;2022-03-24T23:54:09Z;5243;5645.34;dollar $;20221692;;290;8521;79066-8 -2022-03-24;2022-03-24T18:36:33Z;4465;7242;zing Æ’;20221691;;290;6317;68255-2 -2022-03-24;2022-03-24T14:58:56Z;1945;5910;dollar $;20221690;;33;6317;83797-6 -2022-03-24;2022-03-24T08:16:37Z;5986;8841;dollar $;20221689;;33;6552;81257-5 -2022-03-24;2022-03-24T07:49:59Z;2727;3246;zing Æ’;20221688;;33;4425;82565-6 -2022-03-24;2022-03-24T03:57:51Z;1455;6769.98;zing Æ’;20221687;;33;5420;85284-1 -2022-03-23;2022-03-23T23:24:22Z;5986;5721.53;dollar $;20221686;;666;1200;27658-3 -2022-03-23;2022-03-23T22:26:07Z;4608;6262.14;dollar $;20221685;;421;6317;27460-2 -2022-03-23;2022-03-23T19:03:30Z;4862;9360.03;british pound £;20221684;;33;1979;28495-7 -2022-03-23;2022-03-23T18:23:32Z;4608;10846;dollar $;20221683;;666;8800;50277-6 -2022-03-23;2022-03-23T16:14:12Z;5243;7376;euro €;20221682;;33;2400;77344-1 -2022-03-23;2022-03-23T15:11:15Z;5986;8856.56;dollar $;20221681;;290;9921;50539-3 -2022-03-23;2022-03-23T06:20:41Z;4965;10917;dollar $;20221680;;421;6317;80617-2 -2022-03-23;2022-03-23T02:59:14Z;3100;9150.29;dollar $;20221679;;666;8800;34639-1 -2022-03-23;2022-03-23T02:36:46Z;1945;10304;zing Æ’;20221678;;421;1100;28990-4 -2022-03-23;2022-03-23T01:23:52Z;2489;12644.56;zing Æ’;20221677;;421;3321;75669-3 -2022-03-23;2022-03-23T00:17:16Z;2727;4204.1;zing Æ’;20221676;;421;5420;29421-7 -2022-03-22;2022-03-22T16:26:33Z;5832;6976.34;dollar $;20221675;;33;1979;42920-3 -2022-03-22;2022-03-22T09:17:10Z;4465;3853;dollar $;20221674;;290;2400;29095-5 -2022-03-22;2022-03-22T06:53:01Z;6032;8126.04;dollar $;20221673;;666;8521;79807-8 -2022-03-22;2022-03-22T04:47:42Z;3284;6789.19;dollar $;20221672;;33;1200;55851-4 -2022-03-22;2022-03-22T02:48:14Z;3100;5186;dollar $;20221671;;33;2400;70410-8 -2022-03-21;2022-03-21T22:34:41Z;4608;6081.54;british pound £;20221670;;33;2231;77679-4 -2022-03-21;2022-03-21T20:24:05Z;5516;8179;zing Æ’;20221669;;421;4425;57498-5 -2022-03-21;2022-03-21T19:53:01Z;5243;4872.7;zing Æ’;20221668;;421;2231;25097-2 -2022-03-21;2022-03-21T15:43:43Z;4862;9142.24;dollar $;20221667;;666;2400;56244-7 -2022-03-21;2022-03-21T11:13:35Z;2489;7790;dollar $;20221666;;290;2400;57393-9 -2022-03-21;2022-03-21T09:20:37Z;3715;7108;dollar $;20221665;;33;3321;48665-2 -2022-03-20;2022-03-20T19:16:15Z;1297;2330.34;dollar $;20221664;;290;8800;50433-4 -2022-03-20;2022-03-20T17:15:57Z;3284;286.23;dollar $;20221663;;666;2231;71476-8 -2022-03-20;2022-03-20T14:50:28Z;1297;7780.27;dollar $;20221662;;33;5420;63458-6 -2022-03-20;2022-03-20T13:36:11Z;5987;5222.82;dollar $;20221661;;421;1200;46911-5 -2022-03-20;2022-03-20T12:22:54Z;1945;5081;zing Æ’;20221660;;290;6552;81984-9 -2022-03-20;2022-03-20T11:57:39Z;2727;8289.28;dollar $;20221659;;33;1002;67023-9 -2022-03-20;2022-03-20T11:39:28Z;5987;5586.95;zing Æ’;20221658;;421;6317;68170-6 -2022-03-20;2022-03-20T11:35:58Z;2197;7662;dollar $;20221657;;421;1100;25836-3 -2022-03-20;2022-03-20T07:14:48Z;3284;9060.59;dollar $;20221656;;290;8521;54624-3 -2022-03-20;2022-03-20T06:55:17Z;4465;2128;dollar $;20221655;;666;6552;60378-6 -2022-03-20;2022-03-20T05:39:36Z;5986;4441.69;dollar $;20221654;;666;2400;81384-6 -2022-03-20;2022-03-20T02:34:40Z;3795;6053.55;dollar $;20221653;;421;2231;45011-0 -2022-03-20;2022-03-20T02:14:01Z;2489;6716;zing Æ’;20221652;;33;6317;52813-2 -2022-03-19;2022-03-19T23:36:02Z;5188;7426.15;dollar $;20221651;;33;8521;79086-9 -2022-03-19;2022-03-19T21:55:36Z;5832;9670;dollar $;20221650;;666;1002;55400-0 -2022-03-19;2022-03-19T17:47:45Z;1217;9159;dollar $;20221649;;666;1979;80475-8 -2022-03-19;2022-03-19T17:39:17Z;3294;2532.98;dollar $;20221648;;33;1200;39857-3 -2022-03-19;2022-03-19T09:11:03Z;5188;7172;dollar $;20221647;;666;6552;85993-0 -2022-03-18;2022-03-18T23:10:19Z;2727;3711;dollar $;20221646;;290;2231;80071-4 -2022-03-18;2022-03-18T16:25:54Z;5832;7451;dollar $;20221645;;33;3321;79181-1 -2022-03-18;2022-03-18T14:48:22Z;3284;4846;dollar $;20221644;;666;3321;41690-2 -2022-03-18;2022-03-18T11:14:45Z;3795;10323.25;zing Æ’;20221643;;666;2231;67893-4 -2022-03-18;2022-03-18T08:27:05Z;4608;4945.52;british pound £;20221642;;421;5420;71284-3 -2022-03-18;2022-03-18T05:39:07Z;4862;10363.84;zing Æ’;20221641;;666;2400;64441-5 -2022-03-18;2022-03-18T04:30:05Z;5987;6091.12;dollar $;20221640;;421;1979;76893-6 -2022-03-18;2022-03-18T03:39:55Z;4023;6046.03;dollar $;20221639;;33;1200;67113-7 -2022-03-18;2022-03-18T02:45:29Z;2727;7061;british pound £;20221638;;666;5420;44357-5 -2022-03-18;2022-03-18T01:05:21Z;4608;3749.01;dollar $;20221637;;33;1002;37352-7 -2022-03-17;2022-03-17T22:44:26Z;1455;11961;euro €;20221636;;290;1979;69058-6 -2022-03-17;2022-03-17T21:13:53Z;1297;3563;zing Æ’;20221635;;290;4425;27538-5 -2022-03-17;2022-03-17T19:17:13Z;5832;8796;british pound £;20221634;;290;2400;47157-4 -2022-03-17;2022-03-17T12:55:30Z;1455;8498;dollar $;20221633;;33;3321;50645-5 -2022-03-17;2022-03-17T11:56:44Z;5987;11354;dollar $;20221632;;666;5420;46875-6 -2022-03-17;2022-03-17T10:18:49Z;4608;904;dollar $;20221631;;666;6317;65429-2 -2022-03-17;2022-03-17T03:58:30Z;3795;9636.86;british pound £;20221630;;421;4078;55535-7 -2022-03-17;2022-03-17T00:35:10Z;4965;6116;dollar $;20221629;;666;2400;51620-7 -2022-03-16;2022-03-16T20:31:08Z;1945;1942.5;british pound £;20221628;;421;6317;58021-1 -2022-03-16;2022-03-16T17:50:57Z;3284;9180;zing Æ’;20221627;;33;4425;63146-4 -2022-03-16;2022-03-16T15:56:37Z;2197;8654;british pound £;20221626;;666;4425;34157-6 -2022-03-16;2022-03-16T14:32:49Z;5188;11349.05;british pound £;20221625;;421;5420;33766-2 -2022-03-16;2022-03-16T13:07:48Z;1455;6850.2;dollar $;20221624;;290;3321;72787-5 -2022-03-16;2022-03-16T12:24:34Z;5188;6088;dollar $;20221623;;33;1979;85584-8 -2022-03-16;2022-03-16T08:29:38Z;4862;3619.36;dollar $;20221622;;290;3321;36779-9 -2022-03-16;2022-03-16T07:48:20Z;5188;4919;dollar $;20221621;;33;2400;26659-7 -2022-03-16;2022-03-16T06:48:53Z;5987;5730;british pound £;20221620;;33;1100;79130-4 -2022-03-16;2022-03-16T02:11:53Z;4862;3332.45;dollar $;20221619;;421;3321;84562-8 -2022-03-16;2022-03-16T00:36:28Z;5764;7564;british pound £;20221618;;33;5420;79518-9 -2022-03-16;2022-03-16T00:17:18Z;3294;4503;dollar $;20221617;;421;1979;34449-3 -2022-03-15;2022-03-15T22:25:33Z;3795;3366;dollar $;20221616;;33;6317;53301-9 -2022-03-15;2022-03-15T05:26:57Z;3284;6673;dollar $;20221615;;421;2231;43567-8 -2022-03-15;2022-03-15T04:18:34Z;4965;10925;dollar $;20221614;;421;8521;46910-3 -2022-03-15;2022-03-15T01:12:29Z;5243;6902;dollar $;20221613;;33;6317;81213-3 -2022-03-14;2022-03-14T23:57:54Z;1121;7092.87;dollar $;20221612;;33;1100;44276-0 -2022-03-14;2022-03-14T21:47:59Z;3294;8122;british pound £;20221611;;290;1979;28569-9 -2022-03-14;2022-03-14T12:39:31Z;4465;12445;dollar $;20221610;;290;4425;73844-8 -2022-03-14;2022-03-14T10:48:36Z;4862;8666;dollar $;20221609;;421;1100;49647-0 -2022-03-14;2022-03-14T10:44:20Z;4862;3821.5;dollar $;20221608;;666;3321;59505-1 -2022-03-14;2022-03-14T09:41:48Z;5764;4639;dollar $;20221607;;421;1100;45060-1 -2022-03-14;2022-03-14T03:55:18Z;5516;8101.18;british pound £;20221606;;666;6552;25698-4 -2022-03-13;2022-03-13T21:56:41Z;2489;5687;zing Æ’;20221605;;290;8800;36238-6 -2022-03-13;2022-03-13T21:08:42Z;1297;8403.16;dollar $;20221604;;421;1100;43895-1 -2022-03-13;2022-03-13T12:06:53Z;5987;9106.04;zing Æ’;20221603;;421;2231;71869-3 -2022-03-13;2022-03-13T03:15:40Z;5188;9786;dollar $;20221602;;33;1200;62279-5 -2022-03-13;2022-03-13T00:48:09Z;1297;4976;zing Æ’;20221601;;666;9921;43022-2 -2022-03-12;2022-03-12T23:18:07Z;2489;5582;dollar $;20221600;;290;8521;68635-2 -2022-03-12;2022-03-12T14:33:48Z;5764;7521;zing Æ’;20221599;;290;1002;26038-5 -2022-03-12;2022-03-12T08:42:23Z;1121;8273;dollar $;20221598;;421;1979;46101-0 -2022-03-11;2022-03-11T23:31:57Z;5764;7052;zing Æ’;20221597;;33;2231;57894-9 -2022-03-11;2022-03-11T23:23:49Z;2197;8583.35;euro €;20221596;;33;3321;26685-5 -2022-03-11;2022-03-11T21:53:05Z;1121;3876;dollar $;20221595;;666;9921;61162-5 -2022-03-11;2022-03-11T18:49:45Z;3795;4994.02;dollar $;20221594;;666;5420;79247-7 -2022-03-11;2022-03-11T01:17:54Z;1945;8209;dollar $;20221593;;290;2400;38985-0 -2022-03-10;2022-03-10T23:54:01Z;1121;4798;dollar $;20221592;;290;8521;78620-7 -2022-03-10;2022-03-10T23:13:44Z;4023;3547;dollar $;20221591;;421;4425;76860-4 -2022-03-10;2022-03-10T22:43:02Z;4465;7651;dollar $;20221590;;33;9921;47404-5 -2022-03-10;2022-03-10T18:24:42Z;5832;4503;dollar $;20221589;;421;5420;55602-3 -2022-03-10;2022-03-10T17:56:31Z;4965;993.14;dollar $;20221588;;290;4078;26502-1 -2022-03-10;2022-03-10T13:24:57Z;1297;9150.2;dollar $;20221587;;33;3321;61765-1 -2022-03-10;2022-03-10T12:23:13Z;3100;7711.27;dollar $;20221586;;421;3321;28747-9 -2022-03-10;2022-03-10T10:00:50Z;5188;5425;british pound £;20221585;;290;1002;40820-4 -2022-03-10;2022-03-10T04:34:42Z;4023;7734.48;dollar $;20221584;;290;6317;60503-6 -2022-03-09;2022-03-09T18:24:01Z;5764;3332;british pound £;20221583;;666;6552;51233-2 -2022-03-09;2022-03-09T12:41:05Z;2197;6227.75;dollar $;20221582;;290;1002;51775-4 -2022-03-09;2022-03-09T01:24:58Z;3715;2406.98;dollar $;20221581;;290;1100;78226-6 -2022-03-08;2022-03-08T23:16:46Z;4965;6618.51;dollar $;20221580;;421;9921;38736-0 -2022-03-08;2022-03-08T11:47:34Z;5243;6693.93;dollar $;20221579;;421;1200;30566-5 -2022-03-08;2022-03-08T08:52:02Z;5188;7549.97;zing Æ’;20221578;;33;1002;85389-4 -2022-03-08;2022-03-08T07:56:52Z;1945;2200;dollar $;20221577;;33;5420;29394-1 -2022-03-08;2022-03-08T07:49:19Z;5764;4035.39;british pound £;20221576;;666;1200;55264-3 -2022-03-08;2022-03-08T06:14:17Z;1121;3963;dollar $;20221575;;421;2231;86053-3 -2022-03-08;2022-03-08T00:16:31Z;4608;7735.08;dollar $;20221574;;421;6552;83511-4 -2022-03-07;2022-03-07T18:39:40Z;5987;2130;dollar $;20221573;;290;1002;59147-9 -2022-03-07;2022-03-07T18:28:26Z;5986;5552.11;dollar $;20221572;;666;8800;56492-3 -2022-03-07;2022-03-07T17:39:48Z;1121;5735;zing Æ’;20221571;;421;6317;82672-3 -2022-03-07;2022-03-07T15:42:58Z;5243;4059;dollar $;20221570;;290;2400;77880-3 -2022-03-07;2022-03-07T15:02:09Z;1297;3863;dollar $;20221569;;421;6317;71169-6 -2022-03-07;2022-03-07T06:37:38Z;4465;1291.02;dollar $;20221568;;421;3321;77902-1 -2022-03-07;2022-03-07T03:15:14Z;1455;5546.81;dollar $;20221567;;421;4425;71840-7 -2022-03-06;2022-03-06T23:59:18Z;3795;1288.73;dollar $;20221566;;33;8521;39013-3 -2022-03-06;2022-03-06T22:12:23Z;2197;6905;euro €;20221565;;33;9921;37164-4 -2022-03-06;2022-03-06T13:00:14Z;1217;3630;dollar $;20221564;;33;6317;68223-6 -2022-03-06;2022-03-06T11:27:40Z;5516;6740.43;dollar $;20221563;;33;1979;56904-7 -2022-03-06;2022-03-06T07:13:27Z;5243;3234.61;zing Æ’;20221562;;666;1979;57038-6 -2022-03-06;2022-03-06T05:21:42Z;5764;7453;dollar $;20221561;;290;9921;66621-7 -2022-03-06;2022-03-06T03:13:04Z;6032;5149;zing Æ’;20221560;;290;4425;70253-0 -2022-03-06;2022-03-06T01:29:18Z;1121;6304;zing Æ’;20221559;;290;6552;74443-9 -2022-03-05;2022-03-05T21:14:51Z;5987;6389;euro €;20221558;;421;8521;32527-9 -2022-03-05;2022-03-05T21:13:41Z;3715;8111.34;dollar $;20221557;;33;2231;35889-1 -2022-03-05;2022-03-05T20:00:03Z;5987;7049;zing Æ’;20221556;;666;1100;43805-7 -2022-03-05;2022-03-05T13:03:51Z;1217;6814.56;zing Æ’;20221555;;666;8800;83710-9 -2022-03-05;2022-03-05T12:54:38Z;5764;7893;euro €;20221554;;421;6317;37290-3 -2022-03-05;2022-03-05T05:15:15Z;3294;3838.27;dollar $;20221553;;421;5420;74181-8 -2022-03-05;2022-03-05T02:35:31Z;3294;5669.33;dollar $;20221552;;421;9921;51458-2 -2022-03-05;2022-03-05T00:01:36Z;5986;6265;zing Æ’;20221551;;33;1002;82257-8 -2022-03-04;2022-03-04T20:06:44Z;4608;7036;zing Æ’;20221550;;290;2400;53236-5 -2022-03-04;2022-03-04T18:27:34Z;2489;6431;dollar $;20221549;;666;1002;36472-4 -2022-03-04;2022-03-04T17:11:56Z;4023;5345;dollar $;20221548;;666;1100;40790-9 -2022-03-04;2022-03-04T11:20:53Z;5243;5567;zing Æ’;20221547;;421;9921;28278-2 -2022-03-04;2022-03-04T04:02:41Z;1121;2406.93;british pound £;20221546;;33;1100;27629-5 -2022-03-04;2022-03-04T00:26:18Z;4465;5353;zing Æ’;20221545;;666;2231;61906-1 -2022-03-04;2022-03-04T00:23:29Z;3795;3941;dollar $;20221544;;666;2400;65882-4 -2022-03-03;2022-03-03T22:24:23Z;5188;3734.37;dollar $;20221543;;666;1979;45972-6 -2022-03-03;2022-03-03T20:18:52Z;4862;6539.95;zing Æ’;20221542;;666;1002;52067-6 -2022-03-03;2022-03-03T20:09:58Z;5188;9475.29;euro €;20221541;;290;6552;52377-8 -2022-03-03;2022-03-03T20:00:35Z;3715;7266;dollar $;20221540;;290;5420;84551-2 -2022-03-03;2022-03-03T15:46:14Z;3284;6536;dollar $;20221539;;421;2231;39840-6 -2022-03-03;2022-03-03T13:59:47Z;1297;7023.33;dollar $;20221538;;421;1002;67637-3 -2022-03-03;2022-03-03T07:19:47Z;2197;4158;dollar $;20221537;;33;4425;77123-1 -2022-03-03;2022-03-03T03:03:53Z;4608;4288.78;dollar $;20221536;;290;4078;73665-6 -2022-03-03;2022-03-03T01:34:43Z;1217;5739.48;dollar $;20221535;;290;1200;82220-6 -2022-03-02;2022-03-02T23:26:28Z;6032;3864.52;british pound £;20221534;;421;2400;44771-5 -2022-03-02;2022-03-02T19:51:11Z;2197;6325.86;zing Æ’;20221533;;666;8800;46613-4 -2022-03-02;2022-03-02T16:44:34Z;4608;7357.19;zing Æ’;20221532;;33;1100;82607-0 -2022-03-02;2022-03-02T14:42:24Z;1945;3119.87;dollar $;20221531;;290;4425;53216-6 -2022-03-02;2022-03-02T09:27:35Z;3715;4140.58;dollar $;20221530;;421;2231;64918-8 -2022-03-02;2022-03-02T09:01:02Z;4862;5001;dollar $;20221529;;666;8800;73299-2 -2022-03-02;2022-03-02T08:12:33Z;3100;5727.46;dollar $;20221528;;421;2231;80338-9 -2022-03-02;2022-03-02T05:30:27Z;5516;6748;dollar $;20221527;;33;6317;68645-0 -2022-03-02;2022-03-02T05:01:32Z;5243;11026;dollar $;20221526;;33;4425;71893-3 -2022-03-02;2022-03-02T04:25:17Z;5832;3164;dollar $;20221525;;33;1979;31114-2 -2022-03-02;2022-03-02T02:08:01Z;5188;10482;euro €;20221524;;421;1002;79287-5 -2022-03-02;2022-03-02T00:26:31Z;5764;7048.79;dollar $;20221523;;33;2400;43200-0 -2022-03-01;2022-03-01T22:50:33Z;5764;9150.44;zing Æ’;20221522;;421;9921;67534-8 -2022-03-01;2022-03-01T22:22:13Z;4965;6659.44;zing Æ’;20221521;;421;9921;59636-9 -2022-03-01;2022-03-01T22:21:25Z;4965;3154;dollar $;20221520;;421;1200;40745-9 -2022-03-01;2022-03-01T18:16:41Z;4965;4463;zing Æ’;20221519;;290;1100;51431-7 -2022-03-01;2022-03-01T18:03:41Z;4023;6070;zing Æ’;20221518;;33;4078;63505-9 -2022-03-01;2022-03-01T02:50:38Z;5832;12536;british pound £;20221517;;290;2400;49236-0 -2022-03-01;2022-03-01T01:18:52Z;1297;9323.93;dollar $;20221516;;421;2231;36353-1 -2022-02-28;2022-02-28T18:53:54Z;5188;6869.51;british pound £;20221515;;421;4425;26819-4 -2022-02-28;2022-02-28T13:16:09Z;6032;4674;dollar $;20221514;;666;6552;62098-9 -2022-02-28;2022-02-28T11:04:44Z;5188;474;dollar $;20221513;;33;9921;65594-8 -2022-02-28;2022-02-28T10:50:37Z;4023;4182.16;dollar $;20221512;;290;4078;81660-4 -2022-02-28;2022-02-28T10:12:33Z;5243;10761;zing Æ’;20221511;;421;2400;43464-4 -2022-02-28;2022-02-28T07:03:50Z;1945;2925.98;zing Æ’;20221510;;290;9921;75289-6 -2022-02-28;2022-02-28T01:08:45Z;1455;2699;dollar $;20221509;;290;8521;31784-9 -2022-02-27;2022-02-27T23:09:50Z;3100;4648;dollar $;20221508;;666;1002;38684-8 -2022-02-27;2022-02-27T18:46:04Z;1945;3905;zing Æ’;20221507;;33;1200;29323-2 -2022-02-27;2022-02-27T17:14:34Z;1217;4384;dollar $;20221506;;666;2231;45095-2 -2022-02-27;2022-02-27T16:27:44Z;1297;697.21;dollar $;20221505;;421;1100;60414-7 -2022-02-27;2022-02-27T07:21:09Z;3294;8701;dollar $;20221504;;666;8800;55997-8 -2022-02-27;2022-02-27T05:24:47Z;1455;7826.81;dollar $;20221503;;290;2231;37523-6 -2022-02-27;2022-02-27T03:21:53Z;5986;5700;dollar $;20221502;;666;6552;57437-9 -2022-02-26;2022-02-26T23:03:45Z;6032;4700.38;dollar $;20221501;;290;1979;76358-8 -2022-02-26;2022-02-26T17:34:50Z;1217;5427;euro €;20221500;;666;2231;45170-1 -2022-02-26;2022-02-26T15:49:02Z;3795;7265;zing Æ’;20221499;;421;3321;48794-1 -2022-02-26;2022-02-26T06:20:10Z;1455;4772;dollar $;20221498;;421;4425;28268-1 -2022-02-26;2022-02-26T05:49:47Z;5243;4078.84;dollar $;20221497;;666;6317;51186-3 -2022-02-26;2022-02-26T05:38:52Z;1945;9058.54;dollar $;20221496;;33;4078;80139-8 -2022-02-26;2022-02-26T05:33:06Z;2727;1910;dollar $;20221495;;666;8521;41761-7 -2022-02-26;2022-02-26T01:39:45Z;3284;1970;dollar $;20221494;;33;1200;83038-5 -2022-02-25;2022-02-25T20:00:44Z;2727;5349;zing Æ’;20221493;;421;8800;63722-9 -2022-02-25;2022-02-25T18:08:13Z;3795;6628.63;zing Æ’;20221492;;290;6317;71915-0 -2022-02-25;2022-02-25T17:20:25Z;4965;5157.48;dollar $;20221491;;290;8521;70521-2 -2022-02-25;2022-02-25T12:19:42Z;3284;4219;dollar $;20221490;;421;6552;78424-2 -2022-02-25;2022-02-25T12:00:15Z;3294;5396.77;british pound £;20221489;;421;1100;48232-8 -2022-02-25;2022-02-25T10:51:01Z;5516;5042;british pound £;20221488;;666;8521;81085-6 -2022-02-25;2022-02-25T10:35:57Z;5986;8632.57;dollar $;20221487;;421;8800;81588-7 -2022-02-25;2022-02-25T10:08:23Z;3715;4757;dollar $;20221486;;666;1979;79535-1 -2022-02-25;2022-02-25T08:40:18Z;4862;8241.23;dollar $;20221485;;290;1002;84615-5 -2022-02-25;2022-02-25T08:04:28Z;1945;2955.77;dollar $;20221484;;421;8521;25054-7 -2022-02-25;2022-02-25T02:02:18Z;5987;10179;british pound £;20221483;;666;8800;54681-7 -2022-02-25;2022-02-25T01:15:40Z;1217;6285.29;dollar $;20221482;;290;1979;46682-0 -2022-02-24;2022-02-24T22:43:44Z;1297;4464.17;british pound £;20221481;;33;4078;83008-7 -2022-02-24;2022-02-24T17:53:11Z;5986;1111;zing Æ’;20221480;;33;6552;45527-8 -2022-02-24;2022-02-24T09:44:56Z;1121;6985;dollar $;20221479;;421;8521;58541-9 -2022-02-24;2022-02-24T07:36:02Z;1217;767.22;dollar $;20221478;;33;6317;61337-9 -2022-02-24;2022-02-24T00:36:14Z;3294;6719;dollar $;20221477;;33;4425;27601-1 -2022-02-23;2022-02-23T22:16:03Z;2197;5854;british pound £;20221476;;33;1979;47395-0 -2022-02-23;2022-02-23T18:37:03Z;5764;6661.08;dollar $;20221475;;666;9921;29419-0 -2022-02-22;2022-02-22T22:21:28Z;5188;7670;dollar $;20221474;;290;6317;63278-2 -2022-02-22;2022-02-22T17:05:22Z;2727;2670;dollar $;20221473;;421;5420;43203-5 -2022-02-22;2022-02-22T16:54:50Z;5986;6989.77;dollar $;20221472;;666;6317;61697-2 -2022-02-22;2022-02-22T08:56:55Z;3284;10138;dollar $;20221471;;421;3321;58616-6 -2022-02-22;2022-02-22T05:16:45Z;1217;7283;dollar $;20221470;;666;6552;79159-5 -2022-02-22;2022-02-22T03:49:30Z;4608;6491.67;dollar $;20221469;;666;1100;77419-2 -2022-02-22;2022-02-22T02:09:01Z;4465;5510;zing Æ’;20221468;;421;6317;61519-4 -2022-02-21;2022-02-21T20:33:57Z;2489;9129;dollar $;20221467;;290;9921;52756-3 -2022-02-21;2022-02-21T19:18:38Z;4608;8255.15;british pound £;20221466;;421;1979;62349-1 -2022-02-21;2022-02-21T16:36:03Z;4023;7464.47;dollar $;20221465;;421;4078;41559-0 -2022-02-21;2022-02-21T14:45:23Z;5516;832.68;dollar $;20221464;;421;6552;59827-8 -2022-02-21;2022-02-21T13:50:51Z;1297;8896;dollar $;20221463;;290;6552;70746-4 -2022-02-21;2022-02-21T10:49:30Z;4608;5486.48;zing Æ’;20221462;;666;2231;72455-5 -2022-02-21;2022-02-21T10:26:04Z;3294;6626.88;dollar $;20221461;;421;1200;35191-6 -2022-02-21;2022-02-21T10:00:24Z;4965;6626;dollar $;20221460;;421;1200;56230-4 -2022-02-21;2022-02-21T08:39:39Z;3284;4932.62;zing Æ’;20221459;;290;1979;30645-5 -2022-02-21;2022-02-21T08:37:12Z;3100;6041.1;british pound £;20221458;;666;6317;69028-4 -2022-02-21;2022-02-21T03:53:08Z;5987;5057.15;dollar $;20221457;;33;8800;47389-9 -2022-02-21;2022-02-21T03:15:50Z;2197;8856.17;zing Æ’;20221456;;33;6552;74517-4 -2022-02-21;2022-02-21T03:13:01Z;4465;8262;dollar $;20221455;;290;1200;25985-3 -2022-02-20;2022-02-20T22:14:49Z;6032;8979;dollar $;20221454;;421;2400;26755-8 -2022-02-20;2022-02-20T20:25:16Z;5243;6680;dollar $;20221453;;421;4425;80427-5 -2022-02-20;2022-02-20T18:28:21Z;5764;8165.28;dollar $;20221452;;666;1100;25274-2 -2022-02-20;2022-02-20T17:38:41Z;1217;6736.62;zing Æ’;20221451;;666;1002;37088-2 -2022-02-20;2022-02-20T17:01:04Z;1217;3682;zing Æ’;20221450;;666;4425;41243-3 -2022-02-20;2022-02-20T15:16:40Z;4023;6873;dollar $;20221449;;290;4425;80492-3 -2022-02-20;2022-02-20T14:06:57Z;5764;4525.87;dollar $;20221448;;290;1100;77184-7 -2022-02-20;2022-02-20T08:04:29Z;1455;8028.79;british pound £;20221447;;290;5420;46511-7 -2022-02-20;2022-02-20T05:58:58Z;2197;4816.32;zing Æ’;20221446;;666;9921;59113-6 -2022-02-19;2022-02-19T22:50:21Z;5516;9168.15;dollar $;20221445;;33;1979;70246-6 -2022-02-19;2022-02-19T22:41:39Z;1121;8751;dollar $;20221444;;421;5420;62756-5 -2022-02-19;2022-02-19T03:20:57Z;1297;5359;zing Æ’;20221443;;33;1979;63846-5 -2022-02-19;2022-02-19T00:35:16Z;5243;1879;zing Æ’;20221442;;290;2231;62787-6 -2022-02-18;2022-02-18T20:32:46Z;5764;8194;dollar $;20221441;;421;2231;56664-7 -2022-02-18;2022-02-18T17:30:08Z;2727;5450;british pound £;20221440;;290;1100;52609-9 -2022-02-18;2022-02-18T15:37:29Z;5987;6554;dollar $;20221439;;290;2231;41661-2 -2022-02-18;2022-02-18T15:27:15Z;5764;6856.63;euro €;20221438;;33;1979;86110-9 -2022-02-18;2022-02-18T14:18:31Z;1455;7307;dollar $;20221437;;421;8521;74034-0 -2022-02-18;2022-02-18T11:40:07Z;6032;9530.84;dollar $;20221436;;33;5420;84037-9 -2022-02-18;2022-02-18T11:18:12Z;2489;8081;zing Æ’;20221435;;33;8521;37497-2 -2022-02-18;2022-02-18T08:45:56Z;3294;7972.73;dollar $;20221434;;421;9921;85619-9 -2022-02-18;2022-02-18T08:42:46Z;5188;4393;dollar $;20221433;;290;3321;39875-1 -2022-02-17;2022-02-17T22:41:55Z;4965;9039;dollar $;20221432;;666;8800;68799-3 -2022-02-17;2022-02-17T17:38:47Z;2489;4052;dollar $;20221431;;421;3321;68867-5 -2022-02-17;2022-02-17T12:30:35Z;1945;9242.32;british pound £;20221430;;290;5420;74094-3 -2022-02-17;2022-02-17T10:42:12Z;5987;7837.77;zing Æ’;20221429;;666;1100;47933-0 -2022-02-17;2022-02-17T09:59:13Z;5516;6287;dollar $;20221428;;421;8521;31797-7 -2022-02-17;2022-02-17T09:38:09Z;4862;3728.3;dollar $;20221427;;666;2400;58892-5 -2022-02-17;2022-02-17T07:51:43Z;2197;7562.2;zing Æ’;20221426;;33;4425;34603-2 -2022-02-17;2022-02-17T06:12:45Z;2197;5203.88;dollar $;20221425;;290;6317;83576-2 -2022-02-17;2022-02-17T05:53:42Z;6032;6698;dollar $;20221424;;666;1100;85874-6 -2022-02-17;2022-02-17T00:31:39Z;1121;3708.99;dollar $;20221423;;421;6317;61264-7 -2022-02-16;2022-02-16T22:18:19Z;4023;3871;dollar $;20221422;;421;1100;31101-0 -2022-02-16;2022-02-16T16:59:54Z;2197;9554;zing Æ’;20221421;;421;5420;39645-4 -2022-02-16;2022-02-16T16:34:38Z;4465;3438.95;zing Æ’;20221420;;666;6317;27942-6 -2022-02-16;2022-02-16T12:33:55Z;3284;7063.91;british pound £;20221419;;290;2400;84641-6 -2022-02-16;2022-02-16T11:57:13Z;2727;5830;zing Æ’;20221418;;421;8800;37071-0 -2022-02-16;2022-02-16T11:45:26Z;1217;5754;dollar $;20221417;;290;6317;67614-2 -2022-02-16;2022-02-16T10:31:19Z;4023;5866;zing Æ’;20221416;;290;6552;56660-6 -2022-02-16;2022-02-16T07:46:39Z;4608;6733;zing Æ’;20221415;;33;3321;44328-6 -2022-02-15;2022-02-15T23:20:03Z;3100;4862.96;dollar $;20221414;;421;3321;28900-0 -2022-02-15;2022-02-15T11:39:11Z;5188;5945.94;zing Æ’;20221413;;666;1200;67437-6 -2022-02-15;2022-02-15T10:43:15Z;3294;3720.83;dollar $;20221412;;421;6317;74287-4 -2022-02-15;2022-02-15T07:26:26Z;5832;6910.58;dollar $;20221411;;290;8800;51877-3 -2022-02-15;2022-02-15T02:14:59Z;5243;5627;dollar $;20221410;;290;1200;39504-6 -2022-02-15;2022-02-15T01:38:19Z;5516;5934;dollar $;20221409;;666;4078;66315-1 -2022-02-14;2022-02-14T20:45:30Z;5243;5476;euro €;20221408;;666;8521;40292-4 -2022-02-14;2022-02-14T19:56:07Z;2197;10620;zing Æ’;20221407;;290;4078;56961-1 -2022-02-14;2022-02-14T13:07:52Z;3294;4609;british pound £;20221406;;666;2231;49856-9 -2022-02-14;2022-02-14T11:12:59Z;2727;6922;dollar $;20221405;;290;8521;78743-5 -2022-02-14;2022-02-14T06:11:11Z;4465;3910;dollar $;20221404;;421;1002;70531-6 -2022-02-14;2022-02-14T05:51:19Z;1945;4290;dollar $;20221403;;290;1002;40281-9 -2022-02-13;2022-02-13T02:38:52Z;4608;3380.1;dollar $;20221402;;421;2400;69081-0 -2022-02-13;2022-02-13T02:18:23Z;1455;11825;dollar $;20221401;;290;2400;84368-8 -2022-02-13;2022-02-13T01:23:21Z;5986;3588;dollar $;20221400;;666;2231;49235-6 -2022-02-12;2022-02-12T17:14:30Z;4608;4323.54;zing Æ’;20221399;;421;6552;85896-2 -2022-02-12;2022-02-12T11:30:47Z;3294;6946.36;dollar $;20221398;;290;2400;25651-1 -2022-02-11;2022-02-11T20:37:20Z;4465;6394.05;dollar $;20221397;;33;9921;62065-2 -2022-02-11;2022-02-11T17:10:59Z;3284;554.08;zing Æ’;20221396;;421;4425;84306-4 -2022-02-11;2022-02-11T13:47:41Z;1945;12796;british pound £;20221395;;666;8521;81969-5 -2022-02-11;2022-02-11T13:15:32Z;3715;5386;dollar $;20221394;;666;8800;57405-7 -2022-02-11;2022-02-11T12:41:09Z;5987;8395.3;dollar $;20221393;;666;2231;83636-8 -2022-02-11;2022-02-11T08:21:17Z;5516;6745.77;dollar $;20221392;;421;2400;31038-0 -2022-02-11;2022-02-11T04:34:39Z;4862;7704;dollar $;20221391;;666;6552;42513-3 -2022-02-11;2022-02-11T02:09:38Z;3715;9133;dollar $;20221390;;290;2231;27960-5 -2022-02-11;2022-02-11T01:10:55Z;1945;8739.51;dollar $;20221389;;421;6317;52504-0 -2022-02-11;2022-02-11T00:26:14Z;2489;5014.01;dollar $;20221388;;666;6552;41026-6 -2022-02-10;2022-02-10T22:02:50Z;5764;4920;dollar $;20221387;;666;4425;46165-4 -2022-02-10;2022-02-10T18:36:23Z;1297;5949;euro €;20221386;;421;2400;56930-0 -2022-02-10;2022-02-10T18:32:06Z;1297;9882;dollar $;20221385;;290;1200;63647-3 -2022-02-10;2022-02-10T14:09:57Z;4023;3907.84;dollar $;20221384;;33;5420;42494-6 -2022-02-10;2022-02-10T05:54:58Z;2197;3696;british pound £;20221383;;666;6317;29305-0 -2022-02-09;2022-02-09T19:00:39Z;3795;2992;zing Æ’;20221382;;666;6552;49153-2 -2022-02-09;2022-02-09T18:21:04Z;1297;5704.88;zing Æ’;20221381;;666;1979;70686-1 -2022-02-09;2022-02-09T13:41:19Z;5764;6173;zing Æ’;20221380;;421;1200;50704-1 -2022-02-09;2022-02-09T07:18:34Z;5987;6445;dollar $;20221379;;290;1002;67096-9 -2022-02-08;2022-02-08T23:09:26Z;3795;7754.53;zing Æ’;20221378;;666;2231;62282-2 -2022-02-08;2022-02-08T16:16:14Z;4862;4143.01;dollar $;20221377;;33;4425;85731-9 -2022-02-08;2022-02-08T04:32:32Z;6032;10051;dollar $;20221376;;290;9921;57460-3 -2022-02-07;2022-02-07T21:10:29Z;3100;7066.56;british pound £;20221375;;290;8521;47634-7 -2022-02-07;2022-02-07T18:37:17Z;4862;9554.06;dollar $;20221374;;33;1200;44021-0 -2022-02-07;2022-02-07T12:38:17Z;5188;8876.84;dollar $;20221373;;666;4425;44653-2 -2022-02-07;2022-02-07T10:24:01Z;2197;4005;dollar $;20221372;;421;8800;34627-6 -2022-02-07;2022-02-07T06:26:59Z;5516;6968.75;dollar $;20221371;;666;4425;54219-6 -2022-02-06;2022-02-06T15:42:53Z;1121;6969;dollar $;20221370;;421;6317;60192-7 -2022-02-06;2022-02-06T11:07:08Z;6032;5561.53;dollar $;20221369;;421;2400;85579-4 -2022-02-06;2022-02-06T07:56:11Z;4608;10968.31;zing Æ’;20221368;;290;2231;36856-7 -2022-02-06;2022-02-06T04:52:36Z;5986;6655.13;dollar $;20221367;;666;2400;78503-0 -2022-02-05;2022-02-05T05:07:03Z;1455;6839;dollar $;20221366;;666;1200;44112-1 -2022-02-04;2022-02-04T18:12:02Z;1217;9398;dollar $;20221365;;666;1002;61790-1 -2022-02-04;2022-02-04T13:48:32Z;5832;1570.79;dollar $;20221364;;421;1100;59965-0 -2022-02-04;2022-02-04T12:22:07Z;5188;7322.46;zing Æ’;20221363;;421;6552;30134-9 -2022-02-04;2022-02-04T11:03:14Z;2727;4182.76;zing Æ’;20221362;;421;2231;68654-1 -2022-02-04;2022-02-04T07:11:54Z;6032;8129.25;british pound £;20221361;;33;1979;34782-7 -2022-02-04;2022-02-04T02:55:53Z;4965;4775.96;dollar $;20221360;;33;1100;34252-6 -2022-02-03;2022-02-03T21:33:52Z;3294;3459;euro €;20221359;;421;9921;68533-1 -2022-02-03;2022-02-03T15:39:50Z;2489;4050;british pound £;20221358;;421;1100;54112-3 -2022-02-03;2022-02-03T03:47:53Z;2197;3531.68;zing Æ’;20221357;;33;6317;30980-9 -2022-02-02;2022-02-02T18:04:44Z;3294;2530.68;dollar $;20221356;;290;6317;43524-3 -2022-02-02;2022-02-02T13:19:43Z;4965;3928;british pound £;20221355;;666;8800;77435-3 -2022-02-02;2022-02-02T05:00:29Z;1297;9581.95;zing Æ’;20221354;;33;8521;77812-2 -2022-02-02;2022-02-02T01:08:06Z;3100;7461;zing Æ’;20221353;;421;1200;56276-8 -2022-02-02;2022-02-02T00:32:28Z;5764;6363;zing Æ’;20221352;;33;1200;65650-0 -2022-02-01;2022-02-01T22:24:14Z;2727;3176;dollar $;20221351;;290;1200;41685-6 -2022-02-01;2022-02-01T21:02:19Z;4862;5195;zing Æ’;20221350;;666;1002;79788-5 -2022-02-01;2022-02-01T19:40:10Z;3795;3491.61;euro €;20221349;;421;2231;83844-5 -2022-02-01;2022-02-01T13:51:28Z;1217;3742.87;zing Æ’;20221348;;290;8521;72402-8 -2022-02-01;2022-02-01T10:32:40Z;4862;4639.69;dollar $;20221347;;421;3321;81730-5 -2022-02-01;2022-02-01T09:09:24Z;3100;1637;zing Æ’;20221346;;290;3321;38425-7 -2022-02-01;2022-02-01T07:34:59Z;5188;7529.1;dollar $;20221345;;666;5420;54005-8 -2022-01-31;2022-01-31T18:04:00Z;5986;5886;dollar $;20221344;;290;4425;55058-2 -2022-01-31;2022-01-31T09:17:31Z;4608;3959;dollar $;20221343;;666;6317;81136-5 -2022-01-31;2022-01-31T07:07:47Z;1945;6839.35;zing Æ’;20221342;;290;6552;64932-6 -2022-01-31;2022-01-31T07:03:47Z;4465;5210;zing Æ’;20221341;;666;4425;47578-0 -2022-01-30;2022-01-30T23:52:17Z;4862;7432;british pound £;20221340;;33;8521;62776-8 -2022-01-30;2022-01-30T15:06:19Z;5987;2946;dollar $;20221339;;33;8521;57725-8 -2022-01-30;2022-01-30T14:38:35Z;1297;1898.1;dollar $;20221338;;290;3321;58449-9 -2022-01-30;2022-01-30T12:48:39Z;3284;7885;dollar $;20221337;;33;6317;48493-8 -2022-01-29;2022-01-29T21:03:24Z;1297;9074;zing Æ’;20221336;;33;8800;63194-4 -2022-01-29;2022-01-29T10:23:56Z;2727;7081.29;dollar $;20221335;;421;6552;47643-7 -2022-01-29;2022-01-29T04:43:27Z;4862;4859;dollar $;20221334;;290;2400;81356-1 -2022-01-29;2022-01-29T00:44:08Z;5987;7507.1;dollar $;20221333;;666;3321;45599-7 -2022-01-28;2022-01-28T11:05:06Z;1945;10137;dollar $;20221332;;421;6552;27678-9 -2022-01-28;2022-01-28T10:31:40Z;4023;5165.66;dollar $;20221331;;33;4078;68845-1 -2022-01-28;2022-01-28T09:00:51Z;2197;7274;dollar $;20221330;;33;2231;54937-8 -2022-01-28;2022-01-28T08:26:45Z;2489;4951;dollar $;20221329;;290;5420;78358-7 -2022-01-28;2022-01-28T06:08:06Z;5764;4133;dollar $;20221328;;666;4425;31738-2 -2022-01-28;2022-01-28T04:58:40Z;5986;9334;dollar $;20221327;;290;1100;64079-3 -2022-01-28;2022-01-28T03:45:50Z;3795;7718.57;dollar $;20221326;;666;1979;34308-3 -2022-01-27;2022-01-27T22:28:39Z;5243;5554.73;dollar $;20221325;;421;5420;56629-4 -2022-01-27;2022-01-27T11:18:09Z;4023;8927.68;dollar $;20221324;;666;1979;59809-9 -2022-01-27;2022-01-27T08:29:59Z;4608;6235.72;dollar $;20221323;;421;1002;75727-1 -2022-01-27;2022-01-27T07:14:57Z;1297;7256;dollar $;20221322;;33;1200;64735-7 -2022-01-27;2022-01-27T03:55:19Z;4862;2347.25;dollar $;20221321;;290;2400;54719-1 -2022-01-26;2022-01-26T09:37:45Z;3294;6901.18;euro €;20221320;;421;1002;52638-5 -2022-01-26;2022-01-26T02:14:18Z;3284;7304.89;dollar $;20221319;;290;8800;77454-7 -2022-01-25;2022-01-25T13:20:00Z;3715;5826.16;dollar $;20221318;;666;5420;53553-8 -2022-01-25;2022-01-25T09:17:53Z;1455;6587;dollar $;20221317;;33;3321;36961-3 -2022-01-25;2022-01-25T04:00:16Z;5516;10259;british pound £;20221316;;33;1979;49697-2 -2022-01-25;2022-01-25T01:27:20Z;5243;3749.49;british pound £;20221315;;666;1002;62599-1 -2022-01-25;2022-01-25T00:53:36Z;1945;1787.02;dollar $;20221314;;290;8800;46604-9 -2022-01-24;2022-01-24T17:07:56Z;3795;8655.22;zing Æ’;20221313;;421;1200;76062-9 -2022-01-24;2022-01-24T15:28:34Z;5243;6691.28;dollar $;20221312;;33;1002;55414-4 -2022-01-24;2022-01-24T12:15:16Z;5243;6496.27;british pound £;20221311;;290;6552;85395-7 -2022-01-24;2022-01-24T11:36:15Z;5243;5373.07;zing Æ’;20221310;;290;8521;45476-4 -2022-01-24;2022-01-24T09:05:47Z;1121;1779.82;dollar $;20221309;;421;1200;32643-4 -2022-01-24;2022-01-24T04:24:01Z;5832;3804.64;dollar $;20221308;;290;4425;72737-8 -2022-01-24;2022-01-24T02:34:33Z;5516;6897;dollar $;20221307;;421;1002;41712-5 -2022-01-24;2022-01-24T01:41:58Z;3715;1041;dollar $;20221306;;666;4078;25092-2 -2022-01-23;2022-01-23T19:12:48Z;3100;6643.67;zing Æ’;20221305;;421;4078;30141-6 -2022-01-23;2022-01-23T19:05:52Z;3100;6256;dollar $;20221304;;290;4078;74731-2 -2022-01-23;2022-01-23T19:01:44Z;3795;3072;dollar $;20221303;;290;2231;37180-4 -2022-01-23;2022-01-23T18:58:15Z;5832;7254;dollar $;20221302;;421;1979;34792-0 -2022-01-23;2022-01-23T17:02:51Z;2197;8063.98;dollar $;20221301;;421;8521;36295-4 -2022-01-23;2022-01-23T16:40:21Z;4608;6525;dollar $;20221300;;290;9921;69508-5 -2022-01-23;2022-01-23T16:11:28Z;5188;2550.84;dollar $;20221299;;290;1002;49654-5 -2022-01-23;2022-01-23T16:08:15Z;3294;3564;zing Æ’;20221298;;33;1979;82857-6 -2022-01-23;2022-01-23T13:59:29Z;5764;9997.83;dollar $;20221297;;33;3321;34011-0 -2022-01-23;2022-01-23T10:58:23Z;5764;5098.74;british pound £;20221296;;33;6552;58934-7 -2022-01-23;2022-01-23T08:55:37Z;1217;12601;dollar $;20221295;;33;5420;70048-9 -2022-01-23;2022-01-23T07:34:39Z;3795;7129.97;british pound £;20221294;;33;9921;64643-1 -2022-01-23;2022-01-23T06:30:35Z;6032;7522;british pound £;20221293;;33;2400;47505-0 -2022-01-23;2022-01-23T01:31:29Z;3795;10941.73;dollar $;20221292;;666;2400;31872-3 -2022-01-22;2022-01-22T23:00:45Z;4465;4297;dollar $;20221291;;290;1200;51714-9 -2022-01-22;2022-01-22T21:29:24Z;4023;4211.9;dollar $;20221290;;33;1100;24853-3 -2022-01-22;2022-01-22T19:56:38Z;3715;5913.19;british pound £;20221289;;666;1200;73856-6 -2022-01-22;2022-01-22T17:37:47Z;3100;5240.99;zing Æ’;20221288;;290;2231;66641-1 -2022-01-22;2022-01-22T14:04:02Z;3795;7214;dollar $;20221287;;666;2400;53835-7 -2022-01-22;2022-01-22T12:22:47Z;3100;509;zing Æ’;20221286;;421;1979;77431-4 -2022-01-22;2022-01-22T03:13:46Z;3100;3055.19;dollar $;20221285;;666;1002;77559-9 -2022-01-22;2022-01-22T02:52:55Z;4023;2999.85;zing Æ’;20221284;;666;2400;62979-0 -2022-01-21;2022-01-21T21:30:22Z;1455;7250;dollar $;20221283;;290;6317;33950-5 -2022-01-21;2022-01-21T15:57:58Z;1121;7248.5;dollar $;20221282;;666;8800;72162-9 -2022-01-21;2022-01-21T11:36:14Z;1455;4567.06;dollar $;20221281;;290;5420;36130-8 -2022-01-21;2022-01-21T07:56:18Z;1297;4937;dollar $;20221280;;421;1979;62804-7 -2022-01-21;2022-01-21T06:36:35Z;1121;9324.79;dollar $;20221279;;290;1979;55289-6 -2022-01-21;2022-01-21T04:26:48Z;5188;2805.44;zing Æ’;20221278;;33;4078;65384-5 -2022-01-20;2022-01-20T19:44:29Z;3795;5489.95;dollar $;20221277;;290;5420;83530-5 -2022-01-20;2022-01-20T18:33:10Z;3284;5197;dollar $;20221276;;290;4425;25382-8 -2022-01-20;2022-01-20T15:17:46Z;3715;8127;dollar $;20221275;;33;8800;66377-8 -2022-01-20;2022-01-20T11:08:01Z;3100;3850.02;dollar $;20221274;;290;8521;76512-1 -2022-01-20;2022-01-20T06:33:57Z;3100;6798.94;british pound £;20221273;;666;1979;49440-9 -2022-01-19;2022-01-19T17:52:21Z;2489;1862.68;zing Æ’;20221272;;666;2400;33918-3 -2022-01-19;2022-01-19T17:02:05Z;2727;5025;dollar $;20221271;;421;4078;78434-2 -2022-01-19;2022-01-19T16:49:39Z;3795;8235;dollar $;20221270;;666;6552;39847-1 -2022-01-19;2022-01-19T15:42:15Z;2727;8858.1;dollar $;20221269;;290;5420;33101-8 -2022-01-19;2022-01-19T14:36:58Z;3100;7450;dollar $;20221268;;33;6317;37278-4 -2022-01-19;2022-01-19T11:48:15Z;5516;7138.86;dollar $;20221267;;33;1200;30523-1 -2022-01-19;2022-01-19T08:46:42Z;4023;7302.45;zing Æ’;20221266;;33;6317;41726-3 -2022-01-19;2022-01-19T02:36:40Z;5832;6763;dollar $;20221265;;421;1100;84449-3 -2022-01-18;2022-01-18T19:36:03Z;4862;11051;british pound £;20221264;;666;4078;78821-8 -2022-01-18;2022-01-18T16:04:59Z;5516;7839;dollar $;20221263;;421;9921;85793-4 -2022-01-18;2022-01-18T15:05:58Z;5832;10683;dollar $;20221262;;290;2231;66482-9 -2022-01-18;2022-01-18T03:40:26Z;2727;288.81;zing Æ’;20221261;;421;4425;52198-0 -2022-01-18;2022-01-18T00:47:17Z;4862;3424.71;zing Æ’;20221260;;33;2400;44906-0 -2022-01-17;2022-01-17T07:51:50Z;5516;10740;dollar $;20221259;;666;9921;39579-8 -2022-01-16;2022-01-16T23:34:02Z;3284;8463;dollar $;20221258;;421;2400;64126-9 -2022-01-16;2022-01-16T20:52:58Z;3100;9651.5;zing Æ’;20221257;;290;6552;48618-8 -2022-01-16;2022-01-16T20:01:47Z;4465;5506;dollar $;20221256;;666;1979;85550-0 -2022-01-16;2022-01-16T18:37:05Z;5832;6135.66;dollar $;20221255;;421;6552;61379-8 -2022-01-16;2022-01-16T11:18:35Z;5243;4991;dollar $;20221254;;666;2400;62981-6 -2022-01-16;2022-01-16T10:57:26Z;4465;5698;zing Æ’;20221253;;666;5420;63665-8 -2022-01-16;2022-01-16T08:49:48Z;5986;4560.73;zing Æ’;20221252;;33;1002;37626-2 -2022-01-16;2022-01-16T03:49:17Z;2197;8853;euro €;20221251;;33;1979;71648-1 -2022-01-15;2022-01-15T23:27:00Z;2197;8167.46;euro €;20221250;;666;9921;72523-5 -2022-01-15;2022-01-15T21:38:49Z;1455;1949;dollar $;20221249;;290;2231;28684-7 -2022-01-15;2022-01-15T10:08:40Z;3795;8954.38;dollar $;20221248;;290;4078;74166-3 -2022-01-15;2022-01-15T09:58:04Z;3284;6803;dollar $;20221247;;666;4078;42216-3 -2022-01-15;2022-01-15T08:36:20Z;4023;3978;dollar $;20221246;;33;4078;32814-6 -2022-01-15;2022-01-15T01:33:42Z;1217;3232.89;dollar $;20221245;;290;2231;52956-7 -2022-01-15;2022-01-15T01:29:51Z;6032;7861;dollar $;20221244;;290;2400;58485-0 -2022-01-14;2022-01-14T19:57:35Z;5243;9615;british pound £;20221243;;421;6552;74137-9 -2022-01-14;2022-01-14T17:37:52Z;5188;699;zing Æ’;20221242;;33;8521;42610-3 -2022-01-14;2022-01-14T08:16:03Z;4465;2268;dollar $;20221241;;421;4078;66322-4 -2022-01-14;2022-01-14T06:38:47Z;5832;4243.38;zing Æ’;20221240;;421;1100;48067-0 -2022-01-14;2022-01-14T02:20:20Z;1945;6389;dollar $;20221239;;666;9921;37254-6 -2022-01-14;2022-01-14T01:14:34Z;2197;3952.66;dollar $;20221238;;666;1002;77261-8 -2022-01-13;2022-01-13T21:12:16Z;6032;11124;zing Æ’;20221237;;421;8800;61346-3 -2022-01-13;2022-01-13T21:05:16Z;1121;2365.92;dollar $;20221236;;666;2400;37053-8 -2022-01-13;2022-01-13T19:45:18Z;5832;4518;dollar $;20221235;;290;4425;67513-2 -2022-01-13;2022-01-13T17:57:55Z;4608;6263.54;zing Æ’;20221234;;421;4078;77527-6 -2022-01-13;2022-01-13T11:04:18Z;5832;5030;dollar $;20221233;;33;8521;59104-6 -2022-01-12;2022-01-12T22:12:48Z;3294;5886;dollar $;20221232;;290;6552;26466-1 -2022-01-12;2022-01-12T20:40:09Z;4862;4723;dollar $;20221231;;33;8800;58728-2 -2022-01-12;2022-01-12T18:27:41Z;3294;7692;dollar $;20221230;;666;1100;68629-0 -2022-01-12;2022-01-12T16:07:33Z;5986;1047;zing Æ’;20221229;;33;4425;35922-5 -2022-01-12;2022-01-12T12:58:03Z;5243;6293.29;dollar $;20221228;;33;1979;76354-5 -2022-01-12;2022-01-12T01:04:21Z;3795;3076;zing Æ’;20221227;;666;2400;59385-8 -2022-01-11;2022-01-11T22:26:47Z;5243;7739.68;dollar $;20221226;;33;4425;66920-4 -2022-01-11;2022-01-11T21:09:00Z;1455;5364;dollar $;20221225;;33;1979;84062-8 -2022-01-11;2022-01-11T14:54:26Z;1121;4007.17;dollar $;20221224;;666;6317;60347-8 -2022-01-11;2022-01-11T14:42:55Z;1945;8426;dollar $;20221223;;421;4425;31428-6 -2022-01-11;2022-01-11T12:56:12Z;4965;3474;dollar $;20221222;;33;6317;26883-4 -2022-01-11;2022-01-11T12:48:14Z;3284;10482.2;dollar $;20221221;;421;8800;37431-3 -2022-01-11;2022-01-11T11:11:18Z;4023;9677;british pound £;20221220;;33;6552;50209-3 -2022-01-11;2022-01-11T03:38:00Z;3100;7390.7;dollar $;20221219;;666;8800;61297-8 -2022-01-11;2022-01-11T01:37:26Z;5243;6774;dollar $;20221218;;290;4078;57178-7 -2022-01-10;2022-01-10T20:46:18Z;3795;9499;dollar $;20221217;;421;9921;51336-6 -2022-01-10;2022-01-10T11:46:34Z;1297;4964;euro €;20221216;;421;4078;77334-0 -2022-01-10;2022-01-10T10:49:47Z;1217;7623;british pound £;20221215;;421;9921;32894-9 -2022-01-10;2022-01-10T08:08:34Z;3294;4977.93;zing Æ’;20221214;;666;1100;83245-9 -2022-01-10;2022-01-10T06:54:58Z;2489;9932.32;dollar $;20221213;;33;3321;81979-1 -2022-01-10;2022-01-10T02:02:43Z;3795;5451;dollar $;20221212;;666;2231;28188-9 -2022-01-09;2022-01-09T22:41:35Z;1945;2293.74;dollar $;20221211;;421;2231;44887-0 -2022-01-09;2022-01-09T22:28:49Z;1945;7615;dollar $;20221210;;290;6552;27886-9 -2022-01-09;2022-01-09T19:45:24Z;4965;6854;dollar $;20221209;;421;8800;83282-2 -2022-01-09;2022-01-09T17:24:13Z;3715;5024.2;dollar $;20221208;;290;1100;59799-2 -2022-01-09;2022-01-09T14:04:39Z;4862;7023.65;dollar $;20221207;;421;2231;61125-3 -2022-01-09;2022-01-09T08:39:12Z;3100;9173;zing Æ’;20221206;;666;8521;79877-6 -2022-01-09;2022-01-09T02:31:42Z;1121;10059.45;zing Æ’;20221205;;421;9921;36834-5 -2022-01-09;2022-01-09T02:02:23Z;4862;2806;dollar $;20221204;;666;4078;53663-6 -2022-01-09;2022-01-09T00:22:56Z;5832;5978;zing Æ’;20221203;;33;8800;80591-5 -2022-01-08;2022-01-08T22:51:49Z;1297;2817;dollar $;20221202;;666;1100;45773-5 -2022-01-08;2022-01-08T22:46:23Z;5516;5264;dollar $;20221201;;666;4425;79335-9 -2022-01-08;2022-01-08T20:41:21Z;5764;5700;dollar $;20221200;;666;5420;73004-3 -2022-01-08;2022-01-08T17:25:01Z;5188;4577;zing Æ’;20221199;;421;4078;45603-6 -2022-01-08;2022-01-08T16:55:48Z;5764;10927.03;dollar $;20221198;;33;4078;71732-0 -2022-01-08;2022-01-08T13:41:29Z;5516;5843;zing Æ’;20221197;;421;5420;38693-3 -2022-01-08;2022-01-08T12:53:03Z;5764;4627.25;dollar $;20221196;;421;8521;65078-9 -2022-01-08;2022-01-08T08:11:27Z;6032;6139.96;dollar $;20221195;;421;5420;73885-2 -2022-01-08;2022-01-08T04:03:30Z;4023;6508;dollar $;20221194;;290;1200;24859-7 -2022-01-08;2022-01-08T03:44:53Z;6032;5188.7;dollar $;20221193;;33;1100;73765-0 -2022-01-07;2022-01-07T20:12:27Z;5516;8412.56;dollar $;20221192;;666;6317;80754-5 -2022-01-07;2022-01-07T16:15:04Z;1945;6284;dollar $;20221191;;666;1200;44424-7 -2022-01-07;2022-01-07T16:13:11Z;1121;3897;dollar $;20221190;;666;4078;28719-3 -2022-01-07;2022-01-07T02:12:12Z;1945;6739;dollar $;20221189;;290;5420;72653-4 -2022-01-06;2022-01-06T18:23:21Z;1121;4610;dollar $;20221188;;421;8800;85573-5 -2022-01-06;2022-01-06T15:51:16Z;2727;5958;dollar $;20221187;;290;1979;48400-9 -2022-01-06;2022-01-06T14:05:24Z;5832;4761;zing Æ’;20221186;;33;1002;66076-7 -2022-01-06;2022-01-06T09:12:34Z;5986;5282.88;dollar $;20221185;;290;4078;45181-0 -2022-01-06;2022-01-06T06:57:55Z;5516;7144.74;euro €;20221184;;666;5420;46351-2 -2022-01-06;2022-01-06T02:21:52Z;3795;6357;dollar $;20221183;;666;1100;59952-0 -2022-01-06;2022-01-06T00:02:38Z;2727;6273;zing Æ’;20221182;;33;1002;78347-4 -2022-01-05;2022-01-05T20:10:04Z;3294;7667.84;dollar $;20221181;;290;1979;59375-9 -2022-01-05;2022-01-05T16:16:42Z;3284;5719.67;zing Æ’;20221180;;421;1002;69617-6 -2022-01-05;2022-01-05T15:15:22Z;1455;9606;zing Æ’;20221179;;290;3321;28637-5 -2022-01-05;2022-01-05T11:09:01Z;2197;4821;dollar $;20221178;;33;8800;67128-2 -2022-01-05;2022-01-05T10:09:46Z;4862;6966.53;british pound £;20221177;;421;6552;36816-7 -2022-01-05;2022-01-05T06:26:52Z;2197;6333;dollar $;20221176;;666;1979;58427-7 -2022-01-05;2022-01-05T00:15:44Z;3715;5968;british pound £;20221175;;666;1002;54686-7 -2022-01-04;2022-01-04T20:41:18Z;5516;5388.88;dollar $;20221174;;666;1100;29790-6 -2022-01-04;2022-01-04T20:38:28Z;4465;7283.58;zing Æ’;20221173;;290;1979;32550-9 -2022-01-04;2022-01-04T13:54:38Z;4023;9051;british pound £;20221172;;421;8521;60427-0 -2022-01-04;2022-01-04T13:20:48Z;5764;6867;zing Æ’;20221171;;421;1002;69045-1 -2022-01-04;2022-01-04T13:06:08Z;5987;6320.07;dollar $;20221170;;666;2231;71116-7 -2022-01-04;2022-01-04T08:35:27Z;3284;4414;dollar $;20221169;;33;3321;41233-7 -2022-01-04;2022-01-04T05:30:13Z;5516;8795.81;euro €;20221168;;421;9921;57331-2 -2022-01-04;2022-01-04T01:02:15Z;2197;7948;dollar $;20221167;;421;4078;48112-1 -2022-01-03;2022-01-03T19:15:49Z;4965;7240;zing Æ’;20221166;;33;1002;51683-7 -2022-01-03;2022-01-03T19:12:07Z;6032;8705.65;dollar $;20221165;;421;8800;43688-9 -2022-01-03;2022-01-03T12:48:14Z;3294;7225.24;british pound £;20221164;;421;9921;27461-9 -2022-01-03;2022-01-03T09:29:58Z;5832;5509;zing Æ’;20221163;;290;4078;62720-5 -2022-01-03;2022-01-03T02:18:47Z;4023;7828.1;zing Æ’;20221162;;33;8800;26519-1 -2022-01-03;2022-01-03T01:37:25Z;5764;5763;zing Æ’;20221161;;666;1979;86240-2 -2022-01-03;2022-01-03T01:33:11Z;6032;8686.88;dollar $;20221160;;290;5420;35809-4 -2022-01-02;2022-01-02T17:23:47Z;3294;3749;dollar $;20221159;;33;4425;52526-8 -2022-01-02;2022-01-02T16:12:39Z;5832;5363.17;british pound £;20221158;;666;6317;34142-5 -2022-01-02;2022-01-02T14:28:30Z;5987;10855.01;zing Æ’;20221157;;421;4078;30711-4 -2022-01-02;2022-01-02T10:59:06Z;5243;7024.83;euro €;20221156;;290;4425;75306-8 -2022-01-02;2022-01-02T09:50:39Z;3715;6797.87;dollar $;20221155;;290;8521;28563-1 -2022-01-02;2022-01-02T08:49:40Z;1945;6609;british pound £;20221154;;290;9921;52172-4 -2022-01-02;2022-01-02T04:39:31Z;3715;4694;zing Æ’;20221153;;666;2231;64953-8 -2022-01-02;2022-01-02T02:48:38Z;4465;7276.58;dollar $;20221152;;33;2400;67674-4 -2022-01-02;2022-01-02T01:04:37Z;1297;6590;zing Æ’;20221151;;290;6552;30200-9 -2022-01-02;2022-01-02T00:37:32Z;5986;5134;dollar $;20221150;;666;4425;71601-8 -2022-01-02;2022-01-02T00:03:41Z;1455;5938;zing Æ’;20221149;;421;1200;30574-2 -2022-01-01;2022-01-01T20:18:43Z;2727;5547.13;dollar $;20221148;;421;3321;83006-2 -2022-01-01;2022-01-01T19:14:30Z;4862;9941;dollar $;20221147;;421;8521;60923-9 -2022-01-01;2022-01-01T13:17:04Z;4023;5419.9;dollar $;20221146;;666;4425;79079-4 -2022-01-01;2022-01-01T12:00:18Z;3284;5006;dollar $;20221145;;666;9921;53844-1 -2022-01-01;2022-01-01T07:07:44Z;5987;8640.06;dollar $;20221144;;666;6552;70021-4 -2022-01-01;2022-01-01T06:56:58Z;6032;5076.61;dollar $;20221143;;33;8800;41326-5 +dateTransfer;datetimeTransfer;clientNumber;transferValue;transferCurrency;transferID;transferLog;destinationBankNumber;destinationBankBranch;destinationBankAccount +2022-12-31;2022-12-31T17:00:24Z;5516;7794.31;zing Æ’;20223563;;33;4078;72424-2 +2022-12-31;2022-12-31T13:32:07Z;4965;7919;zing Æ’;20223562;;421;1979;36441-5 +2022-12-31;2022-12-31T10:37:02Z;4608;5603;dollar $;20223561;;666;4425;41323-1 +2022-12-31;2022-12-31T10:35:05Z;1121;4365.22;dollar $;20223560;;666;2400;74120-4 +2022-12-31;2022-12-31T05:53:44Z;1121;4620;dollar $;20223559;;421;1100;39830-0 +2022-12-31;2022-12-31T05:44:46Z;1121;7158;zing Æ’;20223558;;290;1100;35424-4 +2022-12-31;2022-12-31T04:02:06Z;4862;6714;dollar $;20223557;;666;1002;71839-1 +2022-12-31;2022-12-31T03:48:47Z;3294;10882.52;dollar $;20223556;;666;2231;50190-5 +2022-12-30;2022-12-30T22:57:12Z;3294;7559;dollar $;20223555;;33;6317;47255-0 +2022-12-30;2022-12-30T18:42:34Z;4862;1831.81;dollar $;20223554;;421;3321;74241-6 +2022-12-30;2022-12-30T16:03:17Z;5243;7140;dollar $;20223553;;421;1979;59064-5 +2022-12-30;2022-12-30T14:30:23Z;1455;5141;british pound £;20223552;;421;6552;62671-3 +2022-12-30;2022-12-30T09:28:20Z;5764;8533;dollar $;20223551;;33;1200;81855-6 +2022-12-30;2022-12-30T05:35:23Z;5986;6076;british pound £;20223550;;33;4078;83994-4 +2022-12-30;2022-12-30T04:44:53Z;3715;6657;dollar $;20223549;;290;5420;26203-4 +2022-12-30;2022-12-30T03:18:25Z;5832;6333;dollar $;20223548;;666;8800;78901-8 +2022-12-30;2022-12-30T02:15:37Z;1217;4026;dollar $;20223547;;33;6552;56975-9 +2022-12-29;2022-12-29T22:57:14Z;2489;4895.99;dollar $;20223546;;33;9921;84542-1 +2022-12-29;2022-12-29T20:32:12Z;1121;5235;zing Æ’;20223545;;666;3321;34393-9 +2022-12-29;2022-12-29T18:24:04Z;4862;5952;british pound £;20223544;;666;1002;37736-6 +2022-12-29;2022-12-29T17:16:46Z;2197;8771;british pound £;20223543;;33;1200;32390-2 +2022-12-29;2022-12-29T15:46:55Z;2197;7713.23;dollar $;20223542;;33;4078;85197-0 +2022-12-29;2022-12-29T13:22:02Z;2727;4666.25;euro €;20223541;;33;5420;83070-8 +2022-12-29;2022-12-29T11:58:16Z;3100;10433.94;zing Æ’;20223540;;421;4425;71366-2 +2022-12-29;2022-12-29T09:51:24Z;5987;2345;british pound £;20223539;;33;2231;70909-9 +2022-12-29;2022-12-29T06:09:06Z;1945;6355;dollar $;20223538;;290;1100;30264-3 +2022-12-29;2022-12-29T05:59:35Z;1297;5056.33;dollar $;20223537;;666;8521;63092-0 +2022-12-29;2022-12-29T05:54:23Z;2197;5752;british pound £;20223536;;666;8800;54159-1 +2022-12-29;2022-12-29T05:51:35Z;5832;7270.97;zing Æ’;20223535;;666;1979;71173-8 +2022-12-28;2022-12-28T23:23:30Z;2197;5091;dollar $;20223534;;290;5420;49443-9 +2022-12-28;2022-12-28T22:59:03Z;4965;6661;dollar $;20223533;;33;1200;45746-2 +2022-12-28;2022-12-28T21:35:19Z;3294;9448;dollar $;20223532;;33;1979;51713-0 +2022-12-28;2022-12-28T11:26:57Z;5516;5552;dollar $;20223531;;290;9921;51540-4 +2022-12-28;2022-12-28T08:54:01Z;2197;7283;dollar $;20223530;;290;6552;78514-8 +2022-12-28;2022-12-28T01:27:48Z;4465;2102.44;dollar $;20223529;;290;2400;71108-3 +2022-12-27;2022-12-27T22:09:19Z;4023;11879.7;dollar $;20223528;;290;4425;81440-2 +2022-12-27;2022-12-27T17:21:11Z;2489;4982.49;zing Æ’;20223527;;666;6317;27041-4 +2022-12-27;2022-12-27T17:08:01Z;3294;6617.17;dollar $;20223526;;666;2231;49767-2 +2022-12-27;2022-12-27T11:03:28Z;4023;6606;british pound £;20223525;;33;6317;82600-2 +2022-12-27;2022-12-27T10:23:40Z;6032;9552;zing Æ’;20223524;;290;9921;85258-0 +2022-12-27;2022-12-27T07:51:45Z;4862;11379;dollar $;20223523;;33;4425;54796-3 +2022-12-27;2022-12-27T06:58:25Z;5188;7821.69;dollar $;20223522;;33;4078;46571-3 +2022-12-26;2022-12-26T21:28:31Z;4965;5482;zing Æ’;20223521;;290;4078;70247-4 +2022-12-26;2022-12-26T20:17:14Z;5764;1756;dollar $;20223520;;421;6317;28871-8 +2022-12-26;2022-12-26T15:38:18Z;3284;7074.89;euro €;20223519;;290;4425;51930-8 +2022-12-26;2022-12-26T14:37:22Z;4465;9326.95;dollar $;20223518;;666;2231;65442-1 +2022-12-26;2022-12-26T14:25:09Z;5832;8178;euro €;20223517;;290;8521;39648-9 +2022-12-26;2022-12-26T11:42:39Z;1121;2108;dollar $;20223516;;33;9921;52009-2 +2022-12-26;2022-12-26T02:45:02Z;2727;3261.73;british pound £;20223515;;421;6317;66040-9 +2022-12-25;2022-12-25T21:30:42Z;1297;9332.61;zing Æ’;20223514;;666;5420;28225-1 +2022-12-25;2022-12-25T20:48:27Z;5832;11067.91;dollar $;20223513;;290;9921;40478-7 +2022-12-25;2022-12-25T19:48:50Z;2197;6294.72;dollar $;20223512;;290;4078;59131-3 +2022-12-25;2022-12-25T14:03:57Z;3795;8772.61;dollar $;20223511;;33;4078;47492-0 +2022-12-25;2022-12-25T11:51:16Z;4862;8438.78;dollar $;20223510;;421;1200;31321-5 +2022-12-25;2022-12-25T07:59:03Z;5764;11159;zing Æ’;20223509;;421;1979;63332-3 +2022-12-25;2022-12-25T05:38:02Z;1297;7089;british pound £;20223508;;421;4425;61393-9 +2022-12-25;2022-12-25T00:24:36Z;1455;4333.62;zing Æ’;20223507;;290;1200;66835-7 +2022-12-25;2022-12-25T00:11:12Z;3284;10589;dollar $;20223506;;421;1002;69217-9 +2022-12-24;2022-12-24T22:08:44Z;6032;2831;dollar $;20223505;;33;8800;56941-4 +2022-12-24;2022-12-24T18:53:02Z;5986;5370.01;dollar $;20223504;;290;1200;41549-4 +2022-12-24;2022-12-24T15:39:23Z;1945;6814.23;euro €;20223503;;33;1200;59308-4 +2022-12-24;2022-12-24T10:29:37Z;3100;4266;euro €;20223502;;666;1979;67488-0 +2022-12-24;2022-12-24T09:34:34Z;3715;3851;dollar $;20223501;;290;1100;52224-4 +2022-12-24;2022-12-24T08:22:49Z;3100;7659;dollar $;20223500;;33;9921;40154-3 +2022-12-24;2022-12-24T00:56:45Z;4023;7513;dollar $;20223499;;33;2231;65237-8 +2022-12-23;2022-12-23T20:41:22Z;4965;5857;dollar $;20223498;;666;2231;65330-4 +2022-12-23;2022-12-23T09:53:01Z;5987;6918.39;dollar $;20223497;;33;1200;43442-4 +2022-12-23;2022-12-23T08:32:49Z;2727;8042;dollar $;20223496;;290;5420;37759-7 +2022-12-23;2022-12-23T03:08:54Z;5832;8302.48;dollar $;20223495;;33;5420;39884-9 +2022-12-23;2022-12-23T00:42:55Z;6032;8242;dollar $;20223494;;421;6552;86401-9 +2022-12-22;2022-12-22T20:32:48Z;4023;4343;dollar $;20223493;;421;4425;50034-4 +2022-12-22;2022-12-22T15:55:38Z;5516;8348;zing Æ’;20223492;;666;1100;35760-0 +2022-12-22;2022-12-22T15:23:55Z;2489;5803.61;dollar $;20223491;;421;1979;44331-7 +2022-12-22;2022-12-22T09:02:47Z;5188;8175.67;dollar $;20223490;;666;8800;42657-8 +2022-12-22;2022-12-22T04:25:58Z;1121;9226;euro €;20223489;;421;1002;84095-9 +2022-12-22;2022-12-22T00:40:24Z;5243;3062;british pound £;20223488;;33;8521;72140-9 +2022-12-21;2022-12-21T17:24:47Z;3294;4183;dollar $;20223487;;666;3321;51031-6 +2022-12-21;2022-12-21T14:52:50Z;1945;5414;british pound £;20223486;;421;9921;42528-5 +2022-12-21;2022-12-21T01:32:29Z;3100;8995.91;zing Æ’;20223485;;421;1979;71621-5 +2022-12-20;2022-12-20T23:57:10Z;3715;6146.92;dollar $;20223484;;290;9921;59616-6 +2022-12-20;2022-12-20T13:50:08Z;4862;2197.81;british pound £;20223483;;666;1200;63450-5 +2022-12-20;2022-12-20T08:34:38Z;3715;7535;british pound £;20223482;;666;6317;35482-8 +2022-12-20;2022-12-20T06:58:14Z;1455;4212.38;dollar $;20223481;;33;8521;25591-6 +2022-12-20;2022-12-20T04:27:23Z;4965;8087;british pound £;20223480;;33;2400;44401-9 +2022-12-19;2022-12-19T12:44:01Z;1297;7263.63;british pound £;20223479;;666;1100;28916-9 +2022-12-19;2022-12-19T09:52:19Z;1455;8136;dollar $;20223478;;421;1979;50867-6 +2022-12-19;2022-12-19T05:33:58Z;1121;7434.91;dollar $;20223477;;33;8800;64782-4 +2022-12-19;2022-12-19T04:36:02Z;5243;8807.8;dollar $;20223476;;290;5420;65867-2 +2022-12-19;2022-12-19T01:12:24Z;1455;5358;dollar $;20223475;;33;1002;42246-5 +2022-12-18;2022-12-18T23:32:58Z;4862;5574;dollar $;20223474;;666;1100;76872-4 +2022-12-18;2022-12-18T20:01:35Z;4023;4605;dollar $;20223473;;290;1979;37941-0 +2022-12-18;2022-12-18T16:45:47Z;5243;6361;zing Æ’;20223472;;290;9921;81586-3 +2022-12-18;2022-12-18T15:48:39Z;4023;7031.02;zing Æ’;20223471;;421;1200;29174-0 +2022-12-18;2022-12-18T15:10:34Z;3294;8691;zing Æ’;20223470;;290;1979;79938-5 +2022-12-18;2022-12-18T12:22:27Z;5832;8342;zing Æ’;20223469;;290;5420;29438-0 +2022-12-18;2022-12-18T12:13:07Z;6032;6128;dollar $;20223468;;290;6317;47979-3 +2022-12-18;2022-12-18T11:45:30Z;1297;142.66;dollar $;20223467;;421;5420;43088-1 +2022-12-18;2022-12-18T10:58:45Z;1217;5785;dollar $;20223466;;290;4078;81439-3 +2022-12-18;2022-12-18T06:36:31Z;2727;6495.97;british pound £;20223465;;290;6552;57023-9 +2022-12-18;2022-12-18T01:59:29Z;4608;5015.41;dollar $;20223464;;666;1979;39906-4 +2022-12-18;2022-12-18T00:07:40Z;4862;7016;dollar $;20223463;;421;6552;74341-4 +2022-12-17;2022-12-17T20:05:53Z;4608;9293.33;british pound £;20223462;;666;8521;30577-6 +2022-12-17;2022-12-17T17:12:32Z;1945;8630.6;dollar $;20223461;;421;1200;44433-0 +2022-12-17;2022-12-17T07:03:08Z;6032;4743.74;dollar $;20223460;;33;2400;46264-3 +2022-12-17;2022-12-17T06:14:07Z;3795;6271;dollar $;20223459;;290;9921;57265-9 +2022-12-16;2022-12-16T23:01:46Z;5987;10572.56;zing Æ’;20223458;;666;9921;57768-0 +2022-12-16;2022-12-16T22:15:40Z;6032;6797.44;zing Æ’;20223457;;33;1100;73300-1 +2022-12-16;2022-12-16T14:47:01Z;3284;3716.33;zing Æ’;20223456;;33;8800;36993-9 +2022-12-16;2022-12-16T11:58:22Z;4023;3843;british pound £;20223455;;33;9921;83419-9 +2022-12-16;2022-12-16T04:07:57Z;1217;7366.19;dollar $;20223454;;421;2400;73933-7 +2022-12-15;2022-12-15T23:43:51Z;5516;6743;dollar $;20223453;;290;4425;76281-0 +2022-12-15;2022-12-15T22:49:59Z;6032;7245.81;euro €;20223452;;666;8521;55212-6 +2022-12-15;2022-12-15T22:35:02Z;2489;2754.99;dollar $;20223451;;290;2400;86214-9 +2022-12-15;2022-12-15T13:57:42Z;5987;6291;dollar $;20223450;;666;6317;83327-7 +2022-12-15;2022-12-15T04:21:58Z;4023;4236;zing Æ’;20223449;;33;2400;39618-6 +2022-12-15;2022-12-15T01:37:42Z;5188;3651.4;dollar $;20223448;;290;2231;28438-1 +2022-12-15;2022-12-15T01:12:55Z;3795;6095;dollar $;20223447;;666;2231;26723-6 +2022-12-14;2022-12-14T18:19:31Z;3100;3957;dollar $;20223446;;290;8800;64459-6 +2022-12-14;2022-12-14T16:12:23Z;3294;5992;dollar $;20223445;;666;8521;27468-6 +2022-12-14;2022-12-14T15:51:20Z;3284;7639.99;british pound £;20223444;;666;2231;40522-0 +2022-12-14;2022-12-14T06:53:17Z;1217;5763;british pound £;20223443;;666;1200;81812-3 +2022-12-13;2022-12-13T23:44:23Z;5516;992.15;dollar $;20223442;;33;5420;41609-8 +2022-12-13;2022-12-13T16:41:48Z;1297;5106.72;british pound £;20223441;;666;5420;58578-8 +2022-12-13;2022-12-13T16:21:36Z;5243;5139;zing Æ’;20223440;;290;3321;44132-0 +2022-12-13;2022-12-13T12:06:24Z;5832;5876;british pound £;20223439;;33;1002;42088-5 +2022-12-12;2022-12-12T17:59:36Z;1297;4036;dollar $;20223438;;666;4078;28615-4 +2022-12-12;2022-12-12T17:50:43Z;2727;3721.89;euro €;20223437;;666;1979;44857-5 +2022-12-12;2022-12-12T17:04:17Z;2727;9664;zing Æ’;20223436;;666;6317;57297-4 +2022-12-12;2022-12-12T06:38:15Z;1121;6621.07;british pound £;20223435;;421;6317;77598-9 +2022-12-11;2022-12-11T13:53:41Z;3715;7608;dollar $;20223434;;33;9921;27331-0 +2022-12-11;2022-12-11T13:02:53Z;3284;6249;dollar $;20223433;;290;1100;52336-1 +2022-12-11;2022-12-11T02:33:24Z;4965;5840.09;dollar $;20223432;;421;8800;74770-7 +2022-12-10;2022-12-10T21:04:44Z;4608;7173.41;dollar $;20223431;;33;9921;35373-1 +2022-12-10;2022-12-10T20:57:15Z;4965;5243;zing Æ’;20223430;;421;4078;70906-1 +2022-12-10;2022-12-10T17:49:27Z;3795;7472.67;dollar $;20223429;;290;2231;33813-0 +2022-12-10;2022-12-10T10:55:57Z;2727;1569;british pound £;20223428;;666;1100;27510-6 +2022-12-10;2022-12-10T09:47:09Z;3284;4108;dollar $;20223427;;33;3321;78129-9 +2022-12-10;2022-12-10T08:56:20Z;1217;7466.72;dollar $;20223426;;666;4078;34457-3 +2022-12-10;2022-12-10T03:17:48Z;4608;5536;dollar $;20223425;;290;6317;40355-9 +2022-12-09;2022-12-09T22:32:34Z;2197;9406.83;dollar $;20223424;;33;1200;50136-9 +2022-12-09;2022-12-09T21:11:01Z;6032;2788;dollar $;20223423;;33;4425;48631-7 +2022-12-09;2022-12-09T19:01:01Z;1297;3015;british pound £;20223422;;666;1979;55724-7 +2022-12-09;2022-12-09T12:23:41Z;4965;3307.98;dollar $;20223421;;666;2400;77400-8 +2022-12-09;2022-12-09T11:34:02Z;3294;6101;british pound £;20223420;;666;4425;49638-5 +2022-12-09;2022-12-09T10:26:29Z;3715;6093;dollar $;20223419;;666;1100;72008-6 +2022-12-09;2022-12-09T06:07:08Z;5764;7672;zing Æ’;20223418;;421;6552;73596-2 +2022-12-09;2022-12-09T03:46:56Z;5986;10805;dollar $;20223417;;33;1200;27025-2 +2022-12-09;2022-12-09T01:56:29Z;4608;5194;british pound £;20223416;;290;4078;81925-8 +2022-12-09;2022-12-09T01:45:41Z;2489;4572.74;zing Æ’;20223415;;290;1002;50061-0 +2022-12-08;2022-12-08T22:24:59Z;5832;5832;british pound £;20223414;;290;2231;62085-2 +2022-12-08;2022-12-08T21:02:01Z;1297;7831.97;zing Æ’;20223413;;290;1002;61102-1 +2022-12-08;2022-12-08T18:42:18Z;6032;6096.12;dollar $;20223412;;290;2231;62759-9 +2022-12-08;2022-12-08T18:32:35Z;5188;7264.52;dollar $;20223411;;290;9921;55888-1 +2022-12-08;2022-12-08T15:52:40Z;4465;9401.64;dollar $;20223410;;33;6317;76617-9 +2022-12-08;2022-12-08T14:03:40Z;1121;3748;british pound £;20223409;;421;1002;80986-8 +2022-12-08;2022-12-08T12:26:53Z;4965;5461.61;dollar $;20223408;;33;4425;28093-2 +2022-12-08;2022-12-08T01:29:04Z;2489;11268;zing Æ’;20223407;;290;3321;73175-1 +2022-12-07;2022-12-07T23:50:47Z;1121;5034;british pound £;20223406;;33;3321;83634-0 +2022-12-07;2022-12-07T21:20:51Z;2727;3255;zing Æ’;20223405;;666;1200;25123-4 +2022-12-07;2022-12-07T14:22:28Z;4465;2071;zing Æ’;20223404;;666;5420;27345-9 +2022-12-07;2022-12-07T10:38:36Z;3100;5367;dollar $;20223403;;33;1100;44648-3 +2022-12-07;2022-12-07T02:54:48Z;4608;7932.95;dollar $;20223402;;290;2231;28051-0 +2022-12-06;2022-12-06T22:28:54Z;5987;8325.19;dollar $;20223401;;33;1200;82613-0 +2022-12-06;2022-12-06T16:46:38Z;4023;6565.95;dollar $;20223400;;290;1100;80341-8 +2022-12-06;2022-12-06T16:37:45Z;4465;6937;dollar $;20223399;;421;1979;76048-2 +2022-12-06;2022-12-06T14:20:22Z;5987;6768.34;dollar $;20223398;;421;1979;77660-7 +2022-12-06;2022-12-06T06:09:48Z;5764;4715.07;british pound £;20223397;;33;2400;86179-4 +2022-12-06;2022-12-06T04:01:57Z;3100;3018;euro €;20223396;;421;6552;64184-5 +2022-12-06;2022-12-06T02:52:52Z;6032;8421;euro €;20223395;;666;5420;37096-2 +2022-12-06;2022-12-06T00:18:48Z;3795;8336;dollar $;20223394;;666;2231;48058-7 +2022-12-05;2022-12-05T20:32:43Z;5832;5473.96;british pound £;20223393;;666;5420;60013-2 +2022-12-05;2022-12-05T18:27:37Z;3100;7094;dollar $;20223392;;290;1200;28169-1 +2022-12-05;2022-12-05T16:53:03Z;1121;9305;british pound £;20223391;;33;4078;25872-9 +2022-12-05;2022-12-05T16:33:34Z;2727;2634;dollar $;20223390;;33;3321;31445-4 +2022-12-05;2022-12-05T11:03:23Z;1945;7732;british pound £;20223389;;33;5420;27322-5 +2022-12-05;2022-12-05T11:01:40Z;4965;6342.36;dollar $;20223388;;666;9921;31722-7 +2022-12-05;2022-12-05T09:19:57Z;5987;4077.74;euro €;20223387;;33;1100;34322-7 +2022-12-05;2022-12-05T08:50:27Z;4965;5986;british pound £;20223386;;421;1200;54118-1 +2022-12-05;2022-12-05T04:55:07Z;5764;9312;dollar $;20223385;;290;2231;41152-5 +2022-12-05;2022-12-05T04:26:26Z;5188;8136;dollar $;20223384;;33;2231;77465-5 +2022-12-05;2022-12-05T03:51:00Z;2197;8240.62;zing Æ’;20223383;408 Request Timeout;666;1100;58503-9 +2022-12-05;2022-12-05T02:43:06Z;1455;3752.05;dollar $;20223382;;421;6552;47822-4 +2022-12-04;2022-12-04T23:58:30Z;5188;4978.25;zing Æ’;20223381;;421;8800;44076-8 +2022-12-04;2022-12-04T17:31:42Z;4965;8123;dollar $;20223380;;666;3321;54912-2 +2022-12-04;2022-12-04T15:44:00Z;1297;6636;british pound £;20223379;;33;1979;70223-9 +2022-12-04;2022-12-04T10:21:03Z;5987;4587;dollar $;20223378;;33;4078;70243-9 +2022-12-04;2022-12-04T01:04:01Z;2489;7530.69;british pound £;20223377;;666;1979;32838-9 +2022-12-04;2022-12-04T00:02:11Z;5764;8080;dollar $;20223376;;421;4425;83682-8 +2022-12-03;2022-12-03T22:12:40Z;5764;3717;dollar $;20223375;;290;4078;26352-1 +2022-12-03;2022-12-03T16:03:10Z;4862;5421;dollar $;20223374;;33;8800;78655-8 +2022-12-03;2022-12-03T12:19:05Z;4608;6603.81;dollar $;20223373;;33;2231;67255-8 +2022-12-03;2022-12-03T00:08:10Z;5832;6442.72;zing Æ’;20223372;;33;8800;60264-4 +2022-12-02;2022-12-02T21:14:18Z;5243;3773.59;dollar $;20223371;;290;9921;28220-5 +2022-12-02;2022-12-02T20:06:40Z;3294;1072.3;zing Æ’;20223370;;290;3321;78206-9 +2022-12-02;2022-12-02T16:14:31Z;5764;1653;dollar $;20223369;;290;8800;83988-2 +2022-12-02;2022-12-02T16:11:55Z;1455;9489;zing Æ’;20223368;;290;8800;42809-6 +2022-12-02;2022-12-02T09:55:58Z;4862;4828;british pound £;20223367;;421;6317;57446-2 +2022-12-02;2022-12-02T00:45:07Z;3795;4766;dollar $;20223366;;33;4425;26465-7 +2022-12-02;2022-12-02T00:40:45Z;5986;7744;dollar $;20223365;;33;2231;52642-3 +2022-12-01;2022-12-01T22:19:09Z;2489;7622.11;british pound £;20223364;;33;8521;46912-8 +2022-12-01;2022-12-01T17:00:56Z;1945;8914.96;dollar $;20223363;;421;1002;75055-4 +2022-12-01;2022-12-01T12:03:34Z;4608;6333.43;dollar $;20223362;;290;1100;80294-7 +2022-12-01;2022-12-01T05:43:22Z;3715;11926.54;zing Æ’;20223361;;666;8521;60376-3 +2022-12-01;2022-12-01T02:46:12Z;3294;1467.18;dollar $;20223360;;33;5420;51771-8 +2022-12-01;2022-12-01T02:32:44Z;2489;8541.42;dollar $;20223359;;290;6552;51148-8 +2022-12-01;2022-12-01T01:57:13Z;4023;4966;dollar $;20223358;;290;4425;80629-1 +2022-11-30;2022-11-30T23:18:54Z;5188;1482;british pound £;20223357;;290;1002;28755-6 +2022-11-30;2022-11-30T16:43:35Z;1455;5556;dollar $;20223356;;421;8521;51473-8 +2022-11-30;2022-11-30T10:48:09Z;5987;7028.42;zing Æ’;20223355;;421;5420;78535-4 +2022-11-30;2022-11-30T10:48:08Z;5986;2463;dollar $;20223354;;290;4078;52980-1 +2022-11-30;2022-11-30T01:14:38Z;5243;6055.7;british pound £;20223353;;666;4425;59413-4 +2022-11-29;2022-11-29T22:53:23Z;5516;6684;dollar $;20223352;;666;8800;30413-9 +2022-11-29;2022-11-29T19:23:07Z;4862;8060;zing Æ’;20223351;;421;8800;54194-8 +2022-11-29;2022-11-29T16:12:58Z;4023;10356.26;euro €;20223350;;290;5420;74336-9 +2022-11-29;2022-11-29T16:01:04Z;4965;7888;dollar $;20223349;;290;8521;33812-7 +2022-11-29;2022-11-29T09:06:43Z;5764;5645.46;dollar $;20223348;;421;6552;81988-0 +2022-11-29;2022-11-29T06:47:48Z;3100;5428.64;dollar $;20223347;;290;1100;36602-1 +2022-11-29;2022-11-29T06:45:59Z;4965;9752.16;dollar $;20223346;;290;6552;40337-5 +2022-11-29;2022-11-29T05:13:47Z;4465;5268;dollar $;20223345;;666;1100;52942-6 +2022-11-29;2022-11-29T00:15:36Z;4465;7853.27;zing Æ’;20223344;;290;5420;49248-7 +2022-11-28;2022-11-28T22:49:09Z;4965;4768.53;euro €;20223343;;33;5420;77966-1 +2022-11-28;2022-11-28T17:13:19Z;2197;6453.45;dollar $;20223342;;421;6552;29486-0 +2022-11-28;2022-11-28T13:08:42Z;5832;8974;dollar $;20223341;;666;1002;40620-1 +2022-11-28;2022-11-28T11:12:55Z;5764;4907;dollar $;20223340;;421;1100;58863-6 +2022-11-28;2022-11-28T04:42:03Z;3100;4661;dollar $;20223339;;421;8800;48086-0 +2022-11-27;2022-11-27T23:40:33Z;2727;6668;dollar $;20223338;;666;6317;70191-4 +2022-11-27;2022-11-27T22:42:23Z;5764;6013.11;zing Æ’;20223337;;666;6317;80078-1 +2022-11-27;2022-11-27T19:28:11Z;5764;9431.45;british pound £;20223336;;421;3321;82123-1 +2022-11-27;2022-11-27T15:57:34Z;5243;8361.85;dollar $;20223335;;666;1002;84052-5 +2022-11-27;2022-11-27T15:50:33Z;1121;5565;dollar $;20223334;;290;6317;75947-5 +2022-11-27;2022-11-27T07:38:32Z;5188;9290.94;dollar $;20223333;;421;1979;26690-8 +2022-11-27;2022-11-27T05:52:00Z;4465;7304.54;dollar $;20223332;;33;5420;83616-4 +2022-11-27;2022-11-27T04:49:07Z;4862;5786.22;dollar $;20223331;;666;1979;40738-2 +2022-11-27;2022-11-27T04:02:26Z;1297;7226.15;zing Æ’;20223330;;421;1979;55095-2 +2022-11-27;2022-11-27T01:42:13Z;5243;4250.98;dollar $;20223329;;666;6317;33881-8 +2022-11-26;2022-11-26T11:53:57Z;3284;8850;dollar $;20223328;;290;5420;70315-6 +2022-11-26;2022-11-26T00:12:25Z;4608;7111;zing Æ’;20223327;;666;2231;68855-4 +2022-11-25;2022-11-25T23:56:17Z;2197;5759.12;dollar $;20223326;;290;8800;82459-7 +2022-11-25;2022-11-25T23:30:04Z;2489;5417.59;dollar $;20223325;;421;1100;74876-8 +2022-11-25;2022-11-25T13:54:23Z;5987;4836;dollar $;20223324;;33;1200;26860-1 +2022-11-25;2022-11-25T13:52:03Z;1945;7789.7;dollar $;20223323;;33;2400;70310-7 +2022-11-25;2022-11-25T12:36:49Z;2727;2470;dollar $;20223322;;421;4425;64723-7 +2022-11-25;2022-11-25T04:41:10Z;4465;6851;british pound £;20223321;;421;1100;41802-8 +2022-11-25;2022-11-25T04:37:19Z;1945;5906.06;dollar $;20223320;;33;8521;72259-2 +2022-11-24;2022-11-24T23:01:39Z;1945;174.64;dollar $;20223319;;421;2400;34025-8 +2022-11-24;2022-11-24T20:08:17Z;1121;5540.45;zing Æ’;20223318;;666;5420;36206-8 +2022-11-24;2022-11-24T13:03:32Z;5188;8069;zing Æ’;20223317;;33;6317;78466-4 +2022-11-24;2022-11-24T10:53:39Z;5832;10410.21;dollar $;20223316;;421;3321;49019-6 +2022-11-24;2022-11-24T08:29:55Z;3284;4386;dollar $;20223315;;421;8521;36935-4 +2022-11-24;2022-11-24T02:44:19Z;1455;9747.67;dollar $;20223314;;421;9921;53566-2 +2022-11-23;2022-11-23T23:29:20Z;5832;3252.23;dollar $;20223313;;33;1002;64293-8 +2022-11-23;2022-11-23T21:32:27Z;1217;9503;dollar $;20223312;;421;9921;47372-6 +2022-11-23;2022-11-23T21:00:02Z;4608;3711.57;dollar $;20223311;;290;2231;85530-5 +2022-11-23;2022-11-23T20:17:53Z;4023;8646;dollar $;20223310;;421;2400;44867-4 +2022-11-23;2022-11-23T18:30:31Z;2727;3912;zing Æ’;20223309;;666;6317;60173-4 +2022-11-23;2022-11-23T17:56:19Z;4023;6054;dollar $;20223308;;290;2231;70763-1 +2022-11-23;2022-11-23T06:45:46Z;4465;5863;dollar $;20223307;;421;2231;51856-1 +2022-11-23;2022-11-23T04:48:49Z;2727;8935;british pound £;20223306;;666;1200;79185-9 +2022-11-22;2022-11-22T19:57:37Z;3715;6152.89;zing Æ’;20223305;;666;1979;82166-0 +2022-11-22;2022-11-22T18:06:05Z;5188;5813;dollar $;20223304;;290;8521;66706-6 +2022-11-22;2022-11-22T17:05:20Z;2727;2112;dollar $;20223303;;666;4425;60900-5 +2022-11-22;2022-11-22T16:12:54Z;1455;5342;dollar $;20223302;;666;2400;49569-8 +2022-11-22;2022-11-22T14:31:38Z;3100;5076;zing Æ’;20223301;;33;1200;62328-7 +2022-11-22;2022-11-22T09:19:01Z;5516;2710;dollar $;20223300;;666;1200;68673-4 +2022-11-22;2022-11-22T08:18:42Z;5516;10177.2;dollar $;20223299;;290;1002;25003-8 +2022-11-22;2022-11-22T02:46:29Z;1217;11561;dollar $;20223298;;421;8800;71340-1 +2022-11-22;2022-11-22T02:36:31Z;4965;5965.84;british pound £;20223297;;290;2231;65378-6 +2022-11-22;2022-11-22T02:22:24Z;1455;6088;dollar $;20223296;;421;4078;60788-4 +2022-11-21;2022-11-21T22:55:56Z;5516;10740;dollar $;20223295;;421;2231;65420-3 +2022-11-21;2022-11-21T20:37:59Z;3715;4079;dollar $;20223294;;290;9921;55390-2 +2022-11-21;2022-11-21T15:39:58Z;4023;4410.4;british pound £;20223293;;421;6317;72039-0 +2022-11-21;2022-11-21T13:35:43Z;5987;3152.47;zing Æ’;20223292;;33;1979;65809-0 +2022-11-21;2022-11-21T10:52:53Z;2489;10402;dollar $;20223291;;666;6317;76450-6 +2022-11-21;2022-11-21T09:48:04Z;1455;6646.3;dollar $;20223290;;33;4078;73494-3 +2022-11-21;2022-11-21T08:03:19Z;3795;6751.25;dollar $;20223289;;290;6552;48720-2 +2022-11-21;2022-11-21T06:58:43Z;3294;7893;dollar $;20223288;;33;8800;36566-1 +2022-11-21;2022-11-21T06:02:07Z;5986;4511;dollar $;20223287;;290;5420;76440-6 +2022-11-20;2022-11-20T20:57:09Z;5986;6457;zing Æ’;20223286;;666;4425;24627-8 +2022-11-20;2022-11-20T19:39:41Z;1455;8493;dollar $;20223285;;290;2231;32330-8 +2022-11-20;2022-11-20T19:06:19Z;4465;5677.74;zing Æ’;20223284;;290;6317;66067-0 +2022-11-20;2022-11-20T16:01:20Z;2727;7696.11;dollar $;20223283;;666;1200;60202-7 +2022-11-20;2022-11-20T04:53:53Z;4862;4386.29;dollar $;20223282;;666;1002;47043-4 +2022-11-20;2022-11-20T00:03:47Z;3795;4048;dollar $;20223281;;290;4078;67076-9 +2022-11-19;2022-11-19T21:26:41Z;3100;10395;dollar $;20223280;;33;3321;67334-0 +2022-11-19;2022-11-19T20:04:24Z;1217;6198;zing Æ’;20223279;;290;5420;38335-7 +2022-11-19;2022-11-19T19:20:49Z;1455;10693;dollar $;20223278;;290;1200;48999-0 +2022-11-19;2022-11-19T08:42:33Z;5832;5730;zing Æ’;20223277;;290;2400;78245-0 +2022-11-19;2022-11-19T07:52:39Z;3100;8673;euro €;20223276;;290;3321;25454-9 +2022-11-19;2022-11-19T06:22:50Z;1455;2480.83;dollar $;20223275;;290;1100;50096-9 +2022-11-19;2022-11-19T06:20:14Z;2197;6900;british pound £;20223274;;290;1002;40944-0 +2022-11-19;2022-11-19T05:51:19Z;6032;5046;zing Æ’;20223273;;33;1200;77155-6 +2022-11-19;2022-11-19T05:26:36Z;4023;6789;dollar $;20223272;;666;8521;38920-5 +2022-11-18;2022-11-18T23:42:06Z;3795;3751.6;dollar $;20223271;;666;2231;56653-5 +2022-11-18;2022-11-18T21:54:04Z;4023;10621.66;british pound £;20223270;;421;1002;66712-9 +2022-11-18;2022-11-18T19:59:05Z;5764;7921.15;dollar $;20223269;;421;8521;44741-4 +2022-11-18;2022-11-18T18:33:26Z;3294;5720;zing Æ’;20223268;;421;9921;58220-2 +2022-11-18;2022-11-18T08:52:53Z;2489;2600;dollar $;20223267;;33;8521;54199-8 +2022-11-18;2022-11-18T02:35:25Z;5832;1121;british pound £;20223266;;421;6317;85356-5 +2022-11-17;2022-11-17T21:38:13Z;1121;6194.35;zing Æ’;20223265;;290;6552;85050-8 +2022-11-17;2022-11-17T21:21:35Z;4965;7501;zing Æ’;20223264;;33;4078;33513-3 +2022-11-17;2022-11-17T18:34:23Z;2489;5076;dollar $;20223263;;33;6317;77810-4 +2022-11-17;2022-11-17T01:22:36Z;3715;5718.05;zing Æ’;20223262;;666;6552;83021-0 +2022-11-17;2022-11-17T01:07:13Z;2489;6876.94;dollar $;20223261;;421;6317;62495-4 +2022-11-16;2022-11-16T22:06:18Z;5516;3256;zing Æ’;20223260;;666;1002;65827-9 +2022-11-16;2022-11-16T20:29:08Z;5516;7997;british pound £;20223259;;33;8521;81733-2 +2022-11-16;2022-11-16T19:10:54Z;5243;7637;british pound £;20223258;;666;4425;28232-6 +2022-11-16;2022-11-16T17:47:53Z;2489;1824;zing Æ’;20223257;;421;4078;55168-7 +2022-11-16;2022-11-16T15:45:25Z;1121;5547.09;british pound £;20223256;;421;1200;82935-8 +2022-11-16;2022-11-16T14:58:56Z;4023;5146;british pound £;20223255;;666;4078;64820-0 +2022-11-16;2022-11-16T10:27:20Z;2489;3215;dollar $;20223254;;666;8800;27402-3 +2022-11-16;2022-11-16T08:57:05Z;1297;5125.81;dollar $;20223253;;290;6317;55800-5 +2022-11-16;2022-11-16T08:14:57Z;1121;4300.73;dollar $;20223252;;33;5420;71976-0 +2022-11-16;2022-11-16T06:18:13Z;5986;10543.14;dollar $;20223251;;290;9921;39493-2 +2022-11-16;2022-11-16T05:06:39Z;4965;3972;dollar $;20223250;;421;9921;43241-4 +2022-11-15;2022-11-15T23:30:20Z;5987;6623.28;dollar $;20223249;;290;1100;28054-4 +2022-11-15;2022-11-15T23:02:30Z;5832;10332;zing Æ’;20223248;;421;2231;34787-2 +2022-11-15;2022-11-15T03:31:45Z;1121;2514;dollar $;20223247;;290;3321;42573-1 +2022-11-14;2022-11-14T20:54:39Z;1121;9581;dollar $;20223246;;33;1979;83835-7 +2022-11-14;2022-11-14T12:57:46Z;2489;5887;dollar $;20223245;;33;8521;47166-9 +2022-11-14;2022-11-14T12:04:29Z;5764;5597;euro €;20223244;;421;4078;45547-5 +2022-11-14;2022-11-14T09:48:28Z;3284;3939.42;euro €;20223243;;421;2231;46762-2 +2022-11-14;2022-11-14T06:10:49Z;2489;5690.41;dollar $;20223242;;666;4078;48035-8 +2022-11-14;2022-11-14T02:11:47Z;5188;6314.74;dollar $;20223241;;421;8800;82571-8 +2022-11-14;2022-11-14T00:22:50Z;2197;8108.18;dollar $;20223240;;33;4425;56361-8 +2022-11-13;2022-11-13T18:33:48Z;1455;9059.71;dollar $;20223239;;33;8800;28790-2 +2022-11-13;2022-11-13T12:09:47Z;3795;3976.56;dollar $;20223238;;421;5420;69963-2 +2022-11-13;2022-11-13T04:54:55Z;3715;5106.95;british pound £;20223237;;33;3321;46482-8 +2022-11-12;2022-11-12T21:07:39Z;2489;8569.84;dollar $;20223236;;666;4078;68069-6 +2022-11-12;2022-11-12T13:53:10Z;5764;5654.36;dollar $;20223235;;421;4425;30038-7 +2022-11-12;2022-11-12T13:03:12Z;5986;9193.9;zing Æ’;20223234;;33;8800;73823-3 +2022-11-12;2022-11-12T09:04:41Z;4965;7007;zing Æ’;20223233;;666;6317;72780-7 +2022-11-12;2022-11-12T05:12:33Z;1297;8693.33;dollar $;20223232;;421;2231;29102-4 +2022-11-11;2022-11-11T23:00:40Z;1455;3408.08;dollar $;20223231;;666;8521;59242-2 +2022-11-11;2022-11-11T15:42:20Z;1945;6522.6;british pound £;20223230;;290;2231;60279-5 +2022-11-11;2022-11-11T08:30:13Z;4862;10450;dollar $;20223229;;421;1002;53984-6 +2022-11-11;2022-11-11T05:03:40Z;1217;3956.42;dollar $;20223228;;421;6552;64520-1 +2022-11-11;2022-11-11T02:15:48Z;5188;6282.91;dollar $;20223227;;421;4078;44529-0 +2022-11-10;2022-11-10T15:03:37Z;4965;4977.19;zing Æ’;20223226;;290;5420;78534-4 +2022-11-10;2022-11-10T03:46:16Z;1217;5475.81;dollar $;20223225;;421;4425;48388-7 +2022-11-09;2022-11-09T15:22:58Z;5832;4635;zing Æ’;20223224;;421;1200;43953-2 +2022-11-09;2022-11-09T15:02:28Z;4023;7156;zing Æ’;20223223;;33;1100;25615-8 +2022-11-09;2022-11-09T01:41:46Z;5987;7413.92;dollar $;20223222;;421;4078;65834-8 +2022-11-09;2022-11-09T01:32:13Z;3715;11569;zing Æ’;20223221;;290;1100;78674-9 +2022-11-08;2022-11-08T18:20:42Z;2197;3472;dollar $;20223220;;666;8800;49165-5 +2022-11-08;2022-11-08T14:41:50Z;3795;4155;zing Æ’;20223219;;290;1100;61468-6 +2022-11-08;2022-11-08T10:41:44Z;2727;8608.54;zing Æ’;20223218;;421;8521;33579-8 +2022-11-08;2022-11-08T05:16:44Z;4862;9305;zing Æ’;20223217;;421;4425;37232-9 +2022-11-08;2022-11-08T04:32:01Z;4608;4782;dollar $;20223216;;290;2400;44492-2 +2022-11-08;2022-11-08T00:52:31Z;5516;5304.6;euro €;20223215;;290;4078;65012-3 +2022-11-07;2022-11-07T23:33:03Z;5832;4963.09;dollar $;20223214;;666;3321;67444-7 +2022-11-07;2022-11-07T23:12:21Z;4608;7409;dollar $;20223213;;421;8521;86077-4 +2022-11-07;2022-11-07T19:35:57Z;4862;570.69;dollar $;20223212;;290;5420;51165-3 +2022-11-07;2022-11-07T18:57:43Z;3294;6767;dollar $;20223211;;421;2400;28059-7 +2022-11-07;2022-11-07T18:48:01Z;4965;3512;dollar $;20223210;;666;1002;39801-5 +2022-11-07;2022-11-07T12:01:52Z;2489;6456.13;dollar $;20223209;;421;6552;40117-8 +2022-11-07;2022-11-07T11:15:27Z;3294;7891.79;dollar $;20223208;;290;6317;63464-2 +2022-11-07;2022-11-07T05:25:18Z;3715;7503;dollar $;20223207;;33;1002;81515-7 +2022-11-06;2022-11-06T23:23:14Z;4965;5585;zing Æ’;20223206;;666;6552;40027-3 +2022-11-06;2022-11-06T23:14:23Z;4965;7433;dollar $;20223205;;421;9921;57504-3 +2022-11-06;2022-11-06T23:12:23Z;1121;6747.64;zing Æ’;20223204;;666;2231;66800-8 +2022-11-06;2022-11-06T20:04:34Z;6032;5039.42;dollar $;20223203;;666;2400;65328-2 +2022-11-06;2022-11-06T09:21:55Z;1217;5571;dollar $;20223202;;421;8521;79382-3 +2022-11-05;2022-11-05T23:16:38Z;1121;6083;dollar $;20223201;;33;6552;59164-5 +2022-11-05;2022-11-05T18:35:22Z;3795;5633.86;zing Æ’;20223200;;33;5420;51131-0 +2022-11-05;2022-11-05T17:19:09Z;6032;4895;zing Æ’;20223199;;666;6552;75867-5 +2022-11-05;2022-11-05T17:15:00Z;1455;7067.82;dollar $;20223198;;666;8800;78752-9 +2022-11-05;2022-11-05T11:00:37Z;1121;10649.59;dollar $;20223197;;421;3321;40011-2 +2022-11-05;2022-11-05T06:22:24Z;2197;4991.66;dollar $;20223196;;290;5420;33379-5 +2022-11-05;2022-11-05T06:05:22Z;1217;1773;dollar $;20223195;;33;8800;71213-3 +2022-11-04;2022-11-04T23:00:34Z;1297;854;dollar $;20223194;;421;4078;43478-6 +2022-11-04;2022-11-04T21:24:47Z;1455;4317.65;zing Æ’;20223193;;421;1002;34349-7 +2022-11-04;2022-11-04T15:11:21Z;5986;5411.33;zing Æ’;20223192;;33;3321;83344-3 +2022-11-04;2022-11-04T13:00:01Z;4608;7100.46;dollar $;20223191;;421;1979;60553-5 +2022-11-04;2022-11-04T08:05:54Z;5764;5014.4;british pound £;20223190;;421;3321;36095-6 +2022-11-04;2022-11-04T06:54:16Z;3284;4508;dollar $;20223189;;290;1100;83218-6 +2022-11-04;2022-11-04T06:50:05Z;5243;8178.63;dollar $;20223188;;33;1002;46233-4 +2022-11-03;2022-11-03T19:33:42Z;2197;6968.88;dollar $;20223187;;290;1100;27466-1 +2022-11-03;2022-11-03T11:25:08Z;6032;5131;zing Æ’;20223186;;290;1100;45439-0 +2022-11-03;2022-11-03T08:21:21Z;3294;1663.24;dollar $;20223185;;33;8521;62805-5 +2022-11-03;2022-11-03T04:48:53Z;1455;3104;zing Æ’;20223184;;290;1200;78971-5 +2022-11-03;2022-11-03T04:20:24Z;2489;9861;zing Æ’;20223183;;421;6317;36605-3 +2022-11-03;2022-11-03T03:45:15Z;5986;6083.56;dollar $;20223182;;33;6317;69096-5 +2022-11-02;2022-11-02T18:39:59Z;1121;6005.61;euro €;20223181;;290;8521;72355-9 +2022-11-02;2022-11-02T17:55:39Z;1121;2540.08;dollar $;20223180;;421;8800;29669-6 +2022-11-02;2022-11-02T16:47:51Z;4862;7564.48;dollar $;20223179;;421;1979;47283-4 +2022-11-02;2022-11-02T14:32:29Z;1945;5989.01;british pound £;20223178;;290;6317;51518-9 +2022-11-02;2022-11-02T14:20:33Z;6032;8032;dollar $;20223177;;421;6552;53023-5 +2022-11-02;2022-11-02T11:24:16Z;1455;6480;zing Æ’;20223176;;666;1979;25532-8 +2022-11-02;2022-11-02T08:59:38Z;4608;1539.64;zing Æ’;20223175;;421;9921;80245-4 +2022-11-02;2022-11-02T07:32:53Z;6032;2952.23;dollar $;20223174;;666;2231;62083-8 +2022-11-02;2022-11-02T07:29:37Z;4965;6508;dollar $;20223173;;421;8800;36835-9 +2022-11-02;2022-11-02T04:13:35Z;6032;9015.53;dollar $;20223172;;666;6317;54894-2 +2022-11-02;2022-11-02T00:17:22Z;3294;5719;british pound £;20223171;;33;1100;66951-1 +2022-11-01;2022-11-01T23:22:48Z;4465;8785.67;zing Æ’;20223170;;290;8800;55551-3 +2022-11-01;2022-11-01T18:26:19Z;2197;8209;dollar $;20223169;;33;1002;81863-5 +2022-11-01;2022-11-01T14:00:39Z;3294;7686.35;british pound £;20223168;;33;8521;39525-9 +2022-11-01;2022-11-01T11:45:41Z;4023;6315.34;dollar $;20223167;;421;1979;58343-1 +2022-10-31;2022-10-31T21:18:18Z;4023;9846;dollar $;20223166;;33;2400;32638-9 +2022-10-31;2022-10-31T15:09:48Z;5987;7134;zing Æ’;20223165;;666;6317;81300-4 +2022-10-31;2022-10-31T15:04:16Z;5987;6885.59;zing Æ’;20223164;;666;1979;29440-2 +2022-10-31;2022-10-31T13:29:38Z;4023;7460;dollar $;20223163;;421;8521;43319-4 +2022-10-31;2022-10-31T10:45:38Z;1945;9939;dollar $;20223162;;666;6552;73205-5 +2022-10-31;2022-10-31T01:08:24Z;6032;10775;dollar $;20223161;;290;1200;83393-4 +2022-10-30;2022-10-30T23:20:14Z;4608;5894;zing Æ’;20223160;;421;2400;83189-4 +2022-10-30;2022-10-30T15:51:56Z;5243;9652;dollar $;20223159;;666;1100;49590-7 +2022-10-30;2022-10-30T13:55:25Z;3284;7038;euro €;20223158;;421;9921;85262-5 +2022-10-29;2022-10-29T18:39:28Z;4023;6203.95;dollar $;20223157;;33;1002;47227-8 +2022-10-29;2022-10-29T13:26:11Z;4023;7741.04;zing Æ’;20223156;;290;4425;80721-7 +2022-10-29;2022-10-29T12:18:13Z;3715;4440;dollar $;20223155;;33;1002;54325-1 +2022-10-29;2022-10-29T11:21:41Z;1217;842.08;zing Æ’;20223154;;666;4425;58245-7 +2022-10-29;2022-10-29T03:29:01Z;3100;4411;zing Æ’;20223153;;33;6317;41564-8 +2022-10-29;2022-10-29T02:07:04Z;5764;6187.35;zing Æ’;20223152;;421;1100;35581-0 +2022-10-28;2022-10-28T23:34:27Z;1217;8645.22;dollar $;20223151;;290;1100;68660-9 +2022-10-28;2022-10-28T21:57:33Z;2489;5286.69;dollar $;20223150;;290;8521;34642-6 +2022-10-28;2022-10-28T13:23:53Z;1121;8696;dollar $;20223149;;666;8521;82092-6 +2022-10-28;2022-10-28T12:41:41Z;5243;5860;dollar $;20223148;;666;1979;48889-8 +2022-10-28;2022-10-28T09:49:57Z;3795;11657;dollar $;20223147;;33;3321;65878-8 +2022-10-28;2022-10-28T00:28:36Z;4965;4859.72;zing Æ’;20223146;;290;2400;24942-7 +2022-10-27;2022-10-27T15:54:31Z;5188;9872.08;dollar $;20223145;;290;5420;60227-9 +2022-10-27;2022-10-27T15:29:27Z;1297;7335.89;british pound £;20223144;;33;4078;44382-6 +2022-10-27;2022-10-27T13:12:44Z;3715;4653;dollar $;20223143;;666;3321;33000-7 +2022-10-27;2022-10-27T11:02:59Z;1121;8745.47;dollar $;20223142;;421;8521;32197-3 +2022-10-27;2022-10-27T10:39:41Z;5986;4200.62;zing Æ’;20223141;;666;5420;36220-0 +2022-10-27;2022-10-27T02:58:04Z;5188;4518;dollar $;20223140;;666;1200;56064-5 +2022-10-26;2022-10-26T20:34:33Z;2489;6678;dollar $;20223139;;421;2231;32611-0 +2022-10-26;2022-10-26T19:56:51Z;1945;6738;dollar $;20223138;;666;8521;48515-7 +2022-10-26;2022-10-26T18:14:53Z;5243;9561;dollar $;20223137;;421;8800;36418-1 +2022-10-26;2022-10-26T06:22:26Z;2489;5064.47;dollar $;20223136;;33;5420;80668-9 +2022-10-25;2022-10-25T22:21:26Z;2489;1999;british pound £;20223135;;290;6552;62813-6 +2022-10-25;2022-10-25T18:39:45Z;3100;4766;dollar $;20223134;;666;3321;68938-9 +2022-10-25;2022-10-25T16:16:22Z;3715;10062.08;euro €;20223133;;33;2231;40428-0 +2022-10-25;2022-10-25T12:28:52Z;6032;8646;dollar $;20223132;;666;8521;81870-7 +2022-10-25;2022-10-25T09:11:01Z;4965;3698.84;dollar $;20223131;;421;8521;40720-4 +2022-10-25;2022-10-25T08:20:30Z;1121;9104.55;dollar $;20223130;;666;6317;31447-5 +2022-10-25;2022-10-25T06:06:18Z;5764;6255;zing Æ’;20223129;;666;5420;59950-8 +2022-10-25;2022-10-25T03:20:18Z;4862;3910.57;british pound £;20223128;;33;4425;27580-4 +2022-10-24;2022-10-24T22:40:33Z;5764;6490.6;dollar $;20223127;;666;2231;41709-8 +2022-10-24;2022-10-24T19:38:26Z;1945;8640.61;dollar $;20223126;;33;2231;44405-1 +2022-10-24;2022-10-24T19:12:13Z;1217;7694.74;dollar $;20223125;;33;1200;29895-5 +2022-10-24;2022-10-24T17:46:08Z;3100;6714.42;dollar $;20223124;;421;4078;59671-7 +2022-10-24;2022-10-24T15:40:00Z;3795;5144.93;dollar $;20223123;;290;6317;65747-1 +2022-10-24;2022-10-24T13:26:07Z;5764;8082;dollar $;20223122;;666;4078;35904-6 +2022-10-24;2022-10-24T08:51:36Z;1455;9113.91;dollar $;20223121;;421;1002;56886-6 +2022-10-23;2022-10-23T23:13:54Z;1217;9161.07;euro €;20223120;;290;5420;30355-8 +2022-10-23;2022-10-23T22:32:27Z;5986;8746;dollar $;20223119;;666;6317;78175-9 +2022-10-23;2022-10-23T06:45:45Z;5516;3642;dollar $;20223118;;290;3321;77440-4 +2022-10-23;2022-10-23T05:40:02Z;5987;7529;dollar $;20223117;;33;4425;49637-4 +2022-10-23;2022-10-23T04:46:59Z;3795;5573;british pound £;20223116;;290;6317;42664-0 +2022-10-23;2022-10-23T00:38:52Z;5986;4289.09;zing Æ’;20223115;;421;9921;84658-0 +2022-10-22;2022-10-22T22:50:34Z;2197;6597;dollar $;20223114;;666;1002;79378-0 +2022-10-22;2022-10-22T19:44:02Z;4465;7383.81;dollar $;20223113;;33;1002;75652-4 +2022-10-22;2022-10-22T12:54:20Z;2489;9880;zing Æ’;20223112;;33;8521;55094-3 +2022-10-22;2022-10-22T12:17:57Z;4608;4343.18;dollar $;20223111;;421;6317;66688-3 +2022-10-22;2022-10-22T09:44:38Z;5243;3634.06;dollar $;20223110;;290;4425;46432-8 +2022-10-22;2022-10-22T05:40:52Z;2197;8785;dollar $;20223109;;421;2400;38377-6 +2022-10-21;2022-10-21T23:42:51Z;1121;9027.74;dollar $;20223108;;421;4078;42747-7 +2022-10-21;2022-10-21T20:50:56Z;5987;6924;british pound £;20223107;;666;2231;58494-5 +2022-10-21;2022-10-21T20:13:09Z;4862;4187;dollar $;20223106;;666;2231;76724-8 +2022-10-21;2022-10-21T10:01:51Z;1217;7167;zing Æ’;20223105;;666;2400;25840-9 +2022-10-21;2022-10-21T01:01:27Z;3284;4389;dollar $;20223104;;666;1200;32990-4 +2022-10-20;2022-10-20T19:43:51Z;1945;6996.38;dollar $;20223103;;421;2231;59365-6 +2022-10-20;2022-10-20T19:33:45Z;1217;6758.06;dollar $;20223102;;33;9921;70148-6 +2022-10-20;2022-10-20T18:38:30Z;6032;9510;british pound £;20223101;;290;8521;67401-5 +2022-10-20;2022-10-20T08:19:08Z;1945;6623;dollar $;20223100;;290;2231;59267-7 +2022-10-20;2022-10-20T06:10:52Z;1945;4974;british pound £;20223099;;666;1200;56275-1 +2022-10-20;2022-10-20T03:16:20Z;5516;6555;dollar $;20223098;;421;3321;39274-0 +2022-10-19;2022-10-19T22:08:39Z;5987;5622.84;zing Æ’;20223097;;33;8521;82494-1 +2022-10-19;2022-10-19T17:39:21Z;3284;11860.8;dollar $;20223096;;421;6317;28435-5 +2022-10-19;2022-10-19T14:59:11Z;2197;6421;british pound £;20223095;;666;2400;81535-9 +2022-10-19;2022-10-19T14:54:20Z;4965;1327;dollar $;20223094;;290;1979;81719-5 +2022-10-19;2022-10-19T13:55:38Z;6032;6299.87;euro €;20223093;;33;9921;32332-5 +2022-10-19;2022-10-19T00:50:53Z;5516;5011.61;dollar $;20223092;;666;4078;67539-4 +2022-10-19;2022-10-19T00:35:39Z;2197;4497;dollar $;20223091;;421;1002;56931-0 +2022-10-18;2022-10-18T22:24:08Z;5764;9041;dollar $;20223090;;290;4078;65854-9 +2022-10-18;2022-10-18T21:33:56Z;3715;6696.47;euro €;20223089;;33;1002;66975-1 +2022-10-18;2022-10-18T20:59:12Z;3284;6507.1;zing Æ’;20223088;;290;8800;84381-7 +2022-10-18;2022-10-18T15:34:48Z;5764;9658.16;british pound £;20223087;;33;9921;50975-5 +2022-10-18;2022-10-18T14:31:08Z;4862;8440;dollar $;20223086;;33;1002;32300-6 +2022-10-18;2022-10-18T09:32:56Z;1217;2191.75;dollar $;20223085;;666;1100;26583-1 +2022-10-18;2022-10-18T06:40:52Z;4862;3856;zing Æ’;20223084;;33;8521;56155-0 +2022-10-18;2022-10-18T06:15:07Z;6032;8613.61;dollar $;20223083;;33;1979;66610-9 +2022-10-18;2022-10-18T05:13:08Z;5188;4945.73;dollar $;20223082;;290;1200;80458-7 +2022-10-17;2022-10-17T23:23:45Z;4465;5343;dollar $;20223081;;421;4078;81133-2 +2022-10-17;2022-10-17T19:30:49Z;3294;6368;dollar $;20223080;;290;9921;58696-1 +2022-10-17;2022-10-17T16:16:21Z;3795;4041.4;dollar $;20223079;;421;6317;32416-2 +2022-10-17;2022-10-17T09:16:42Z;3294;5822;zing Æ’;20223078;;33;8521;81285-9 +2022-10-17;2022-10-17T08:12:22Z;4862;4180;dollar $;20223077;;421;4078;36396-7 +2022-10-17;2022-10-17T04:17:50Z;2197;6178.51;dollar $;20223076;;290;1979;33223-6 +2022-10-16;2022-10-16T22:40:51Z;3715;7517.88;dollar $;20223075;;290;5420;77813-3 +2022-10-16;2022-10-16T19:42:27Z;5832;255.38;dollar $;20223074;;290;9921;38130-0 +2022-10-16;2022-10-16T14:27:47Z;3284;6590.07;dollar $;20223073;;290;6317;85360-8 +2022-10-16;2022-10-16T12:06:44Z;4465;7373;dollar $;20223072;;290;1002;54512-9 +2022-10-16;2022-10-16T07:44:46Z;1217;10971.13;british pound £;20223071;;666;9921;43672-2 +2022-10-16;2022-10-16T03:15:56Z;3284;3651;dollar $;20223070;;290;6552;81746-5 +2022-10-16;2022-10-16T02:29:59Z;5243;5804;zing Æ’;20223069;;33;2231;66266-0 +2022-10-16;2022-10-16T02:17:24Z;2489;3903;zing Æ’;20223068;;421;8521;77386-2 +2022-10-15;2022-10-15T18:27:15Z;3715;3820.35;dollar $;20223067;;666;1100;63296-3 +2022-10-15;2022-10-15T14:21:17Z;6032;10836.11;dollar $;20223066;;290;6317;31899-2 +2022-10-15;2022-10-15T13:40:26Z;1121;8219.44;dollar $;20223065;;666;6317;43390-4 +2022-10-15;2022-10-15T13:09:24Z;5987;3389.34;dollar $;20223064;;290;4078;69797-9 +2022-10-15;2022-10-15T09:15:38Z;4965;8086.23;dollar $;20223063;;421;5420;82063-1 +2022-10-15;2022-10-15T02:38:40Z;1945;4445.98;dollar $;20223062;;290;1002;80035-9 +2022-10-15;2022-10-15T00:29:56Z;1217;6655.46;dollar $;20223061;;33;5420;57443-1 +2022-10-15;2022-10-15T00:02:15Z;3294;4524;zing Æ’;20223060;;33;4425;47633-3 +2022-10-14;2022-10-14T22:13:09Z;1945;5742.39;dollar $;20223059;;33;1979;30452-9 +2022-10-14;2022-10-14T13:37:58Z;5832;8166;dollar $;20223058;;666;3321;59252-9 +2022-10-14;2022-10-14T12:08:21Z;1945;10139.03;british pound £;20223057;;290;5420;58410-9 +2022-10-14;2022-10-14T05:29:33Z;4465;9294.96;dollar $;20223056;;290;5420;78101-7 +2022-10-14;2022-10-14T04:44:12Z;4862;7385.8;dollar $;20223055;;33;6317;63155-4 +2022-10-14;2022-10-14T00:27:33Z;4608;7255;zing Æ’;20223054;;666;8800;47529-8 +2022-10-13;2022-10-13T22:59:41Z;5764;6510.01;dollar $;20223053;;33;9921;53232-0 +2022-10-13;2022-10-13T22:43:55Z;3294;4426.13;dollar $;20223052;;33;6317;84411-6 +2022-10-13;2022-10-13T19:03:24Z;5243;5106.55;british pound £;20223051;;421;2400;34655-7 +2022-10-13;2022-10-13T13:08:57Z;1121;7360.09;dollar $;20223050;;290;5420;58196-6 +2022-10-13;2022-10-13T10:20:41Z;4465;8531.47;british pound £;20223049;;666;1200;56004-1 +2022-10-13;2022-10-13T09:29:08Z;3284;4571.23;dollar $;20223048;;421;1979;59087-9 +2022-10-13;2022-10-13T07:49:58Z;1217;5293;dollar $;20223047;;33;5420;58925-6 +2022-10-13;2022-10-13T02:58:00Z;3715;7174.07;dollar $;20223046;;290;4078;82363-7 +2022-10-13;2022-10-13T00:19:13Z;1455;5083;dollar $;20223045;;290;8800;73751-2 +2022-10-13;2022-10-13T00:16:16Z;1455;6605.03;dollar $;20223044;;421;3321;67367-0 +2022-10-12;2022-10-12T18:15:22Z;3100;479;dollar $;20223043;;290;6317;63903-6 +2022-10-12;2022-10-12T14:05:09Z;2489;5920;dollar $;20223042;;421;2231;69347-0 +2022-10-12;2022-10-12T11:48:43Z;5243;5460.54;zing Æ’;20223041;;666;9921;82967-6 +2022-10-12;2022-10-12T11:38:27Z;5764;6492.06;zing Æ’;20223040;;33;1200;52054-2 +2022-10-12;2022-10-12T10:37:33Z;2489;9927;dollar $;20223039;;33;4425;70291-6 +2022-10-12;2022-10-12T09:28:52Z;3795;4224.3;dollar $;20223038;;421;8800;37284-3 +2022-10-12;2022-10-12T08:00:01Z;2197;7436;dollar $;20223037;;666;3321;59162-8 +2022-10-12;2022-10-12T06:23:19Z;5516;10291;dollar $;20223036;;33;4078;65364-2 +2022-10-12;2022-10-12T03:51:38Z;1455;6598.74;british pound £;20223035;;666;1200;26370-6 +2022-10-11;2022-10-11T15:59:31Z;1455;7514;dollar $;20223034;;33;4078;31205-8 +2022-10-11;2022-10-11T13:31:18Z;3100;10510;dollar $;20223033;;666;6317;57971-9 +2022-10-11;2022-10-11T07:06:41Z;5516;4315;british pound £;20223032;;666;2231;71700-4 +2022-10-10;2022-10-10T15:21:42Z;3284;2339.86;dollar $;20223031;;421;9921;84693-7 +2022-10-10;2022-10-10T11:04:15Z;5832;6026;euro €;20223030;;290;1200;34569-8 +2022-10-10;2022-10-10T07:33:54Z;5986;6870;zing Æ’;20223029;;33;8521;46208-2 +2022-10-10;2022-10-10T04:24:04Z;5832;6700;zing Æ’;20223028;;421;5420;68777-4 +2022-10-09;2022-10-09T10:33:10Z;5243;6009;dollar $;20223027;;33;4425;55833-4 +2022-10-09;2022-10-09T09:50:05Z;1297;9510;dollar $;20223026;;666;2400;49922-9 +2022-10-09;2022-10-09T07:27:53Z;1297;11481.72;zing Æ’;20223025;;666;9921;68640-0 +2022-10-09;2022-10-09T02:20:45Z;1217;5770;dollar $;20223024;;290;4078;46773-5 +2022-10-08;2022-10-08T23:12:32Z;1297;8636.08;zing Æ’;20223023;;666;8800;69433-1 +2022-10-08;2022-10-08T21:26:38Z;1297;6070;dollar $;20223022;;421;1100;65182-7 +2022-10-08;2022-10-08T14:58:29Z;3795;6201;dollar $;20223021;;421;1200;80449-6 +2022-10-08;2022-10-08T13:01:15Z;4965;2135;dollar $;20223020;;33;1979;73011-7 +2022-10-08;2022-10-08T12:47:08Z;1945;7186.25;dollar $;20223019;;290;8521;74173-8 +2022-10-08;2022-10-08T10:42:17Z;2197;6796;dollar $;20223018;;666;9921;79643-0 +2022-10-08;2022-10-08T09:00:07Z;4608;8931;zing Æ’;20223017;;666;2231;38175-0 +2022-10-08;2022-10-08T08:40:53Z;2197;5885;zing Æ’;20223016;;33;1100;45639-5 +2022-10-08;2022-10-08T06:40:08Z;1455;4667.33;zing Æ’;20223015;;33;4078;47297-9 +2022-10-07;2022-10-07T19:42:54Z;2727;5211;dollar $;20223014;;290;2400;46282-1 +2022-10-07;2022-10-07T17:45:02Z;2197;4473;dollar $;20223013;;33;5420;54529-1 +2022-10-07;2022-10-07T07:22:42Z;5516;8601;dollar $;20223012;;421;1979;51555-7 +2022-10-07;2022-10-07T06:42:12Z;2489;7719.24;zing Æ’;20223011;;666;1100;48856-1 +2022-10-07;2022-10-07T03:57:03Z;5764;2611.25;dollar $;20223010;;421;5420;81741-4 +2022-10-06;2022-10-06T23:02:28Z;4965;7171.29;zing Æ’;20223009;;290;9921;38763-9 +2022-10-06;2022-10-06T16:16:12Z;3715;5897;dollar $;20223008;;33;4425;78756-1 +2022-10-06;2022-10-06T11:10:20Z;1455;6967;british pound £;20223007;;666;6317;35095-4 +2022-10-06;2022-10-06T10:34:37Z;1217;9587.4;dollar $;20223006;;421;4078;60189-3 +2022-10-06;2022-10-06T07:48:33Z;5243;5883.2;british pound £;20223005;;666;6317;78024-1 +2022-10-06;2022-10-06T00:27:22Z;1217;8667.42;dollar $;20223004;;666;2400;30457-8 +2022-10-05;2022-10-05T23:18:35Z;5188;4206;dollar $;20223003;;290;8800;36413-7 +2022-10-05;2022-10-05T18:06:50Z;1121;7865.68;zing Æ’;20223002;;666;6552;78390-4 +2022-10-05;2022-10-05T15:30:53Z;1455;5533.14;british pound £;20223001;;290;4425;34707-9 +2022-10-05;2022-10-05T09:00:30Z;3100;8777;dollar $;20223000;;33;6552;31642-2 +2022-10-05;2022-10-05T06:26:41Z;4023;5196.36;dollar $;20222999;;33;8521;76697-1 +2022-10-05;2022-10-05T03:27:28Z;3284;1788;dollar $;20222998;;666;2400;60319-9 +2022-10-05;2022-10-05T03:08:47Z;3294;8472.99;dollar $;20222997;;666;4078;46079-6 +2022-10-05;2022-10-05T02:21:24Z;2197;8497;dollar $;20222996;;290;9921;64420-9 +2022-10-05;2022-10-05T01:41:33Z;3795;10523.21;british pound £;20222995;;33;6552;25390-2 +2022-10-05;2022-10-05T00:47:34Z;5243;7556;zing Æ’;20222994;;666;4078;84428-4 +2022-10-04;2022-10-04T20:18:43Z;1297;5512;dollar $;20222993;;290;4425;29126-3 +2022-10-04;2022-10-04T15:42:18Z;3715;9641;zing Æ’;20222992;;421;2231;60134-3 +2022-10-04;2022-10-04T14:35:13Z;3100;6458.83;dollar $;20222991;;421;4425;44358-1 +2022-10-04;2022-10-04T09:00:13Z;3100;6369.04;dollar $;20222990;;290;2231;66540-8 +2022-10-04;2022-10-04T06:10:41Z;5832;1964.66;british pound £;20222989;;666;5420;61971-5 +2022-10-04;2022-10-04T04:42:57Z;4608;5208.56;dollar $;20222988;;666;4078;84618-2 +2022-10-04;2022-10-04T04:03:49Z;3715;8220.97;dollar $;20222987;;33;2231;53557-8 +2022-10-04;2022-10-04T01:36:51Z;3294;6024;dollar $;20222986;;421;6317;61023-8 +2022-10-03;2022-10-03T19:53:58Z;3100;5821;dollar $;20222985;;421;4078;39457-8 +2022-10-03;2022-10-03T19:40:41Z;3795;7343.43;dollar $;20222984;;33;3321;85347-2 +2022-10-03;2022-10-03T04:34:38Z;4862;10978.17;dollar $;20222983;;290;4425;51205-8 +2022-10-02;2022-10-02T20:54:51Z;3294;5569;dollar $;20222982;;33;6317;62783-0 +2022-10-02;2022-10-02T02:35:16Z;5987;5807.43;dollar $;20222981;;33;4078;25930-3 +2022-10-01;2022-10-01T18:52:32Z;2727;6175;euro €;20222980;;33;8800;58138-8 +2022-10-01;2022-10-01T16:48:12Z;5832;6445;dollar $;20222979;;33;1100;70127-1 +2022-10-01;2022-10-01T12:57:00Z;6032;8490;zing Æ’;20222978;;421;1200;53962-3 +2022-10-01;2022-10-01T09:32:31Z;2489;10155;dollar $;20222977;;33;2400;62368-7 +2022-09-30;2022-09-30T22:02:15Z;5832;6490.42;zing Æ’;20222976;;33;9921;38469-2 +2022-09-30;2022-09-30T09:31:48Z;2727;5157;dollar $;20222975;;290;2231;31943-6 +2022-09-30;2022-09-30T09:24:52Z;5764;3630;british pound £;20222974;;421;1200;25903-9 +2022-09-30;2022-09-30T00:51:55Z;2489;5030;dollar $;20222973;;290;8800;39033-0 +2022-09-29;2022-09-29T20:42:29Z;2727;10708.27;zing Æ’;20222972;;33;4078;81185-4 +2022-09-29;2022-09-29T18:26:39Z;5243;8694.01;dollar $;20222971;;290;4078;76187-4 +2022-09-29;2022-09-29T13:38:48Z;3715;4043.73;dollar $;20222970;;666;1979;39653-5 +2022-09-29;2022-09-29T04:17:24Z;2489;5756;dollar $;20222969;;421;8521;76539-9 +2022-09-29;2022-09-29T03:54:54Z;4608;9980;zing Æ’;20222968;;666;1100;68219-4 +2022-09-28;2022-09-28T23:34:15Z;2727;6078.26;zing Æ’;20222967;;33;2231;74840-2 +2022-09-28;2022-09-28T20:21:57Z;3100;7541.06;british pound £;20222966;;290;8800;66094-7 +2022-09-28;2022-09-28T16:11:19Z;3284;1903.09;dollar $;20222965;;421;1100;71163-2 +2022-09-28;2022-09-28T15:58:18Z;6032;8311.54;zing Æ’;20222964;;666;6317;60588-4 +2022-09-28;2022-09-28T15:22:20Z;3284;5070.42;zing Æ’;20222963;;421;1100;62724-0 +2022-09-28;2022-09-28T13:31:15Z;5986;6959;dollar $;20222962;;33;5420;81767-4 +2022-09-28;2022-09-28T11:00:47Z;1945;10359;dollar $;20222961;;421;8521;28480-6 +2022-09-28;2022-09-28T06:14:06Z;1121;8830;zing Æ’;20222960;;666;6317;86095-2 +2022-09-28;2022-09-28T04:54:11Z;1121;5952.73;dollar $;20222959;;421;1979;29614-3 +2022-09-27;2022-09-27T12:50:15Z;2727;9716;zing Æ’;20222958;;421;6552;55047-6 +2022-09-27;2022-09-27T07:22:24Z;5832;3915.45;zing Æ’;20222957;;666;2400;69658-9 +2022-09-27;2022-09-27T05:05:03Z;5986;6757.66;dollar $;20222956;;290;4425;36516-1 +2022-09-26;2022-09-26T18:49:38Z;5516;4911.35;dollar $;20222955;;666;1979;28725-7 +2022-09-26;2022-09-26T11:07:38Z;1945;3402;dollar $;20222954;;421;3321;71440-8 +2022-09-26;2022-09-26T09:43:57Z;1455;7169;zing Æ’;20222953;;421;5420;81324-3 +2022-09-26;2022-09-26T04:09:46Z;5516;3204.27;zing Æ’;20222952;;421;6552;44502-5 +2022-09-26;2022-09-26T02:40:26Z;4965;3295.58;dollar $;20222951;;421;1979;79124-9 +2022-09-26;2022-09-26T01:31:46Z;4862;3631.27;dollar $;20222950;;421;6317;37886-6 +2022-09-26;2022-09-26T00:21:50Z;4965;5679.93;dollar $;20222949;;33;3321;82192-7 +2022-09-25;2022-09-25T14:27:08Z;1217;7620.62;dollar $;20222948;;666;8521;26697-9 +2022-09-25;2022-09-25T13:08:03Z;3795;6269.68;dollar $;20222947;;290;2231;63169-9 +2022-09-25;2022-09-25T03:24:30Z;3284;7124.29;zing Æ’;20222946;;290;5420;80234-2 +2022-09-24;2022-09-24T19:44:16Z;1217;7722.88;zing Æ’;20222945;;666;1100;76977-1 +2022-09-24;2022-09-24T16:00:16Z;5188;6820;dollar $;20222944;;421;1200;65783-1 +2022-09-24;2022-09-24T15:18:38Z;5243;5004.13;dollar $;20222943;;33;4425;70386-7 +2022-09-24;2022-09-24T12:30:55Z;3795;4451.67;zing Æ’;20222942;;290;2231;81939-0 +2022-09-24;2022-09-24T09:28:44Z;1217;3873;dollar $;20222941;;421;3321;56147-2 +2022-09-24;2022-09-24T09:26:33Z;5188;5374.41;zing Æ’;20222940;;33;8521;44260-0 +2022-09-24;2022-09-24T01:14:40Z;1945;8936.48;dollar $;20222939;;290;6317;46820-9 +2022-09-23;2022-09-23T22:49:19Z;1121;1327;british pound £;20222938;;290;5420;77350-1 +2022-09-23;2022-09-23T07:22:49Z;3284;9453;dollar $;20222937;;666;4078;72033-2 +2022-09-23;2022-09-23T05:21:28Z;1217;5822;dollar $;20222936;;290;4425;58342-6 +2022-09-22;2022-09-22T20:31:16Z;3795;6410.28;dollar $;20222935;;290;2231;37214-5 +2022-09-22;2022-09-22T15:51:40Z;5188;7453.29;british pound £;20222934;;666;6552;29105-3 +2022-09-22;2022-09-22T14:40:16Z;4862;8192;zing Æ’;20222933;;290;1979;77605-3 +2022-09-22;2022-09-22T11:03:05Z;5832;8812;dollar $;20222932;;33;2400;75719-5 +2022-09-22;2022-09-22T10:29:51Z;3795;6081;zing Æ’;20222931;;666;1002;41888-0 +2022-09-22;2022-09-22T06:33:03Z;2727;10556.87;dollar $;20222930;;290;3321;55787-2 +2022-09-22;2022-09-22T05:49:51Z;3715;7442;euro €;20222929;;290;1979;86058-7 +2022-09-22;2022-09-22T05:33:50Z;1945;7575;dollar $;20222928;;666;2231;25530-4 +2022-09-22;2022-09-22T03:03:51Z;1297;4770;dollar $;20222927;;290;4425;67794-1 +2022-09-21;2022-09-21T22:34:52Z;5764;8615.61;dollar $;20222926;;421;9921;74984-8 +2022-09-21;2022-09-21T10:19:34Z;5987;7212;dollar $;20222925;;290;8521;77242-6 +2022-09-21;2022-09-21T08:34:14Z;3284;7001;dollar $;20222924;;33;3321;40301-3 +2022-09-21;2022-09-21T05:56:42Z;6032;5033;dollar $;20222923;;666;6552;75252-0 +2022-09-21;2022-09-21T04:38:15Z;4023;5957;dollar $;20222922;;290;6552;60527-1 +2022-09-21;2022-09-21T03:50:35Z;2727;4855;dollar $;20222921;;290;1979;35119-7 +2022-09-21;2022-09-21T00:40:04Z;5243;3923.12;dollar $;20222920;;421;6552;65260-1 +2022-09-20;2022-09-20T22:04:09Z;3715;8611.93;dollar $;20222919;;421;8521;86407-9 +2022-09-20;2022-09-20T21:53:24Z;1121;4900;dollar $;20222918;;666;2400;45825-1 +2022-09-20;2022-09-20T21:10:44Z;3284;2644;dollar $;20222917;;33;8800;53471-0 +2022-09-20;2022-09-20T15:20:49Z;5188;6090.7;dollar $;20222916;;290;6317;38573-4 +2022-09-20;2022-09-20T13:53:10Z;5986;11522.49;dollar $;20222915;;421;6317;84388-7 +2022-09-20;2022-09-20T10:11:16Z;4608;5352;dollar $;20222914;;421;6552;37511-6 +2022-09-20;2022-09-20T06:55:47Z;3294;6027;british pound £;20222913;;33;2400;66465-8 +2022-09-20;2022-09-20T00:59:51Z;5188;7583.9;dollar $;20222912;500 Server Unavailable;290;1979;85242-1 +2022-09-19;2022-09-19T19:41:41Z;3715;8503.78;zing Æ’;20222911;;666;5420;60430-3 +2022-09-19;2022-09-19T18:21:28Z;4965;7859;dollar $;20222910;;666;1979;34916-8 +2022-09-19;2022-09-19T15:42:58Z;4862;4979;dollar $;20222909;;421;1002;69192-2 +2022-09-19;2022-09-19T14:39:29Z;5516;3139;zing Æ’;20222908;;33;3321;84389-1 +2022-09-19;2022-09-19T00:20:31Z;5986;4068;zing Æ’;20222907;;33;2231;24830-9 +2022-09-18;2022-09-18T22:09:24Z;4608;3058;dollar $;20222906;;33;6552;65245-1 +2022-09-18;2022-09-18T07:45:36Z;3715;3647.28;dollar $;20222905;;421;8521;82432-5 +2022-09-18;2022-09-18T05:40:53Z;5832;8644.87;zing Æ’;20222904;;33;8800;35213-9 +2022-09-17;2022-09-17T23:52:17Z;5243;8193;dollar $;20222903;;666;6317;58083-9 +2022-09-17;2022-09-17T23:25:46Z;5986;7583.13;dollar $;20222902;;666;1200;61480-7 +2022-09-17;2022-09-17T19:19:52Z;3795;4527;dollar $;20222901;;290;1979;57089-3 +2022-09-17;2022-09-17T08:02:42Z;4023;7984;zing Æ’;20222900;;33;5420;35700-3 +2022-09-17;2022-09-17T03:26:31Z;1121;3520.74;dollar $;20222899;;290;2400;68006-4 +2022-09-17;2022-09-17T03:23:34Z;2197;4179.92;dollar $;20222898;;666;2231;60373-0 +2022-09-17;2022-09-17T00:43:33Z;1297;3894.83;euro €;20222897;;421;4078;35982-6 +2022-09-16;2022-09-16T23:35:40Z;3294;129.09;zing Æ’;20222896;;290;3321;60867-9 +2022-09-16;2022-09-16T20:18:35Z;3100;3677;dollar $;20222895;;33;1002;49558-6 +2022-09-16;2022-09-16T04:31:57Z;4862;3298;dollar $;20222894;;421;1100;80789-5 +2022-09-16;2022-09-16T03:50:34Z;5987;8344;dollar $;20222893;;666;6552;36844-1 +2022-09-16;2022-09-16T03:36:54Z;3100;8541;zing Æ’;20222892;;290;8521;41024-3 +2022-09-16;2022-09-16T03:03:37Z;1121;2276.94;british pound £;20222891;;421;1979;80218-8 +2022-09-16;2022-09-16T00:29:09Z;4965;5647.11;dollar $;20222890;;666;1002;36406-5 +2022-09-15;2022-09-15T18:45:07Z;3795;8226.72;zing Æ’;20222889;;290;4425;39047-7 +2022-09-15;2022-09-15T18:18:19Z;3294;3306.33;dollar $;20222888;;421;1200;81240-5 +2022-09-15;2022-09-15T14:50:41Z;5516;3985;dollar $;20222887;;290;4425;74028-8 +2022-09-15;2022-09-15T07:42:04Z;5986;6861.11;dollar $;20222886;;33;6317;60410-6 +2022-09-15;2022-09-15T02:56:17Z;6032;4634.79;british pound £;20222885;;290;1002;61723-0 +2022-09-14;2022-09-14T22:39:36Z;4465;5410.52;zing Æ’;20222884;;290;1979;72496-9 +2022-09-14;2022-09-14T19:23:43Z;1297;6954;dollar $;20222883;;33;1200;27695-3 +2022-09-14;2022-09-14T13:53:16Z;4965;3212.63;zing Æ’;20222882;;421;1002;36668-4 +2022-09-14;2022-09-14T06:49:46Z;4465;6449;zing Æ’;20222881;;290;4425;62558-2 +2022-09-14;2022-09-14T04:06:30Z;4465;5804;zing Æ’;20222880;;666;1100;52701-6 +2022-09-14;2022-09-14T03:17:02Z;5987;9615;dollar $;20222879;;33;6552;49781-6 +2022-09-14;2022-09-14T03:05:00Z;4862;5846;zing Æ’;20222878;;290;6552;66754-2 +2022-09-13;2022-09-13T21:26:15Z;1217;3889;zing Æ’;20222877;;33;1002;71427-7 +2022-09-13;2022-09-13T20:47:44Z;1455;6744.93;dollar $;20222876;;421;1200;53171-6 +2022-09-13;2022-09-13T16:40:43Z;1121;4654;dollar $;20222875;;290;2231;56796-6 +2022-09-13;2022-09-13T10:25:20Z;4023;7491.27;euro €;20222874;;33;6317;77353-9 +2022-09-13;2022-09-13T06:42:43Z;5243;5853;euro €;20222873;;666;9921;69924-5 +2022-09-13;2022-09-13T06:31:49Z;4862;10887;british pound £;20222872;;290;1979;56527-1 +2022-09-13;2022-09-13T01:15:02Z;2489;6028.02;british pound £;20222871;;33;6317;56088-5 +2022-09-12;2022-09-12T15:02:26Z;5764;5249;dollar $;20222870;;666;8521;32878-1 +2022-09-12;2022-09-12T07:07:59Z;5243;7766.64;zing Æ’;20222869;;33;2231;81838-4 +2022-09-12;2022-09-12T01:11:23Z;1121;8105.03;dollar $;20222868;;421;3321;68191-8 +2022-09-11;2022-09-11T22:12:54Z;3284;8163.75;dollar $;20222867;;290;8800;37111-6 +2022-09-11;2022-09-11T21:48:06Z;4965;5694;zing Æ’;20222866;;290;3321;54295-3 +2022-09-11;2022-09-11T19:22:52Z;3715;4505.83;dollar $;20222865;;421;6552;35994-5 +2022-09-11;2022-09-11T11:50:29Z;2197;3715.48;dollar $;20222864;;421;3321;68879-3 +2022-09-10;2022-09-10T21:16:26Z;5188;2058;british pound £;20222863;;666;8521;49644-7 +2022-09-10;2022-09-10T19:29:05Z;2197;5046.68;dollar $;20222862;;421;5420;84663-4 +2022-09-10;2022-09-10T18:14:53Z;2197;7912.02;dollar $;20222861;;421;6552;32396-3 +2022-09-10;2022-09-10T17:04:49Z;1121;5862.03;dollar $;20222860;;290;1200;60725-5 +2022-09-10;2022-09-10T16:59:21Z;1455;6474;british pound £;20222859;;290;6552;64678-1 +2022-09-10;2022-09-10T16:20:32Z;1217;8420.84;dollar $;20222858;;290;8800;48295-1 +2022-09-10;2022-09-10T15:09:41Z;2197;6271.66;dollar $;20222857;;421;1002;71188-9 +2022-09-10;2022-09-10T05:51:24Z;6032;4408.8;dollar $;20222856;;666;2400;37317-1 +2022-09-10;2022-09-10T05:26:55Z;1945;9012.15;dollar $;20222855;;33;9921;62434-4 +2022-09-10;2022-09-10T04:58:00Z;4465;5705;dollar $;20222854;;290;1002;69160-5 +2022-09-10;2022-09-10T03:47:06Z;3294;4020;dollar $;20222853;;666;9921;27938-8 +2022-09-09;2022-09-09T22:21:47Z;3294;8478;zing Æ’;20222852;;421;1100;64772-4 +2022-09-09;2022-09-09T16:59:53Z;4465;3075;dollar $;20222851;;33;3321;37531-5 +2022-09-09;2022-09-09T11:39:53Z;3715;4307.83;dollar $;20222850;;421;1002;83622-5 +2022-09-09;2022-09-09T07:03:16Z;5188;6679;dollar $;20222849;;666;1979;30369-3 +2022-09-08;2022-09-08T22:05:56Z;5516;8835;dollar $;20222848;;421;1100;80075-6 +2022-09-08;2022-09-08T16:38:30Z;4608;2558;dollar $;20222847;;666;4425;37417-6 +2022-09-08;2022-09-08T07:38:41Z;1217;4245;dollar $;20222846;;290;9921;61312-6 +2022-09-08;2022-09-08T04:04:39Z;4023;9071.03;zing Æ’;20222845;;33;6317;38259-1 +2022-09-07;2022-09-07T22:10:45Z;3284;3714.54;dollar $;20222844;;421;8800;43807-1 +2022-09-07;2022-09-07T20:17:29Z;1455;5714;dollar $;20222843;;290;4078;86244-3 +2022-09-07;2022-09-07T17:38:16Z;1945;9793.74;british pound £;20222842;;33;2231;71046-0 +2022-09-07;2022-09-07T15:28:49Z;5516;8288.58;zing Æ’;20222841;;290;1979;82430-1 +2022-09-07;2022-09-07T13:02:35Z;3795;4992.19;zing Æ’;20222840;;33;2400;34794-9 +2022-09-07;2022-09-07T08:59:00Z;3284;6107.13;zing Æ’;20222839;;33;6552;62757-9 +2022-09-07;2022-09-07T02:29:58Z;5832;12559.35;dollar $;20222838;;290;1979;47195-8 +2022-09-06;2022-09-06T22:39:47Z;5987;4931.74;dollar $;20222837;;290;5420;80990-4 +2022-09-06;2022-09-06T20:08:55Z;5764;7206.07;dollar $;20222836;;33;3321;44982-8 +2022-09-06;2022-09-06T04:53:50Z;3715;885.66;dollar $;20222835;;421;8521;42468-8 +2022-09-06;2022-09-06T04:07:08Z;5516;544.65;dollar $;20222834;;290;3321;39283-8 +2022-09-06;2022-09-06T01:54:41Z;5764;7214.44;dollar $;20222833;;666;6317;80481-0 +2022-09-06;2022-09-06T01:31:16Z;3715;9129.79;british pound £;20222832;;666;3321;84126-9 +2022-09-06;2022-09-06T00:00:11Z;5188;10706;zing Æ’;20222831;;290;8521;28573-7 +2022-09-05;2022-09-05T20:55:05Z;4465;6535.08;dollar $;20222830;;666;4078;76260-9 +2022-09-05;2022-09-05T20:53:24Z;5832;6301.68;dollar $;20222829;;33;5420;69499-7 +2022-09-05;2022-09-05T12:45:43Z;4023;5663.3;british pound £;20222828;;290;6552;37701-9 +2022-09-05;2022-09-05T11:26:48Z;1121;4343;zing Æ’;20222827;;421;4078;64623-4 +2022-09-05;2022-09-05T10:44:38Z;5986;4352.15;dollar $;20222826;;290;1002;28097-3 +2022-09-05;2022-09-05T02:58:57Z;6032;9653;zing Æ’;20222825;;33;3321;24755-1 +2022-09-05;2022-09-05T00:47:32Z;3795;8711.31;british pound £;20222824;;33;1100;51490-0 +2022-09-04;2022-09-04T20:39:48Z;6032;4723.48;dollar $;20222823;;666;8800;81341-0 +2022-09-04;2022-09-04T18:50:24Z;4465;6799.61;dollar $;20222822;;421;5420;78317-9 +2022-09-04;2022-09-04T15:14:09Z;4965;7208.45;dollar $;20222821;;290;1100;63921-3 +2022-09-04;2022-09-04T14:23:02Z;3795;3912.22;zing Æ’;20222820;;666;1979;82358-3 +2022-09-04;2022-09-04T14:09:59Z;2727;12024.24;dollar $;20222819;;666;4425;50911-6 +2022-09-04;2022-09-04T06:14:36Z;5243;6889;dollar $;20222818;;666;6317;47315-1 +2022-09-04;2022-09-04T00:39:45Z;3294;3873.71;dollar $;20222817;;421;3321;77927-4 +2022-09-03;2022-09-03T16:26:14Z;5243;3154;zing Æ’;20222816;;421;1002;46802-5 +2022-09-03;2022-09-03T15:42:02Z;1121;4958.31;zing Æ’;20222815;;666;1002;57243-1 +2022-09-03;2022-09-03T09:07:59Z;3795;3654;zing Æ’;20222814;408 Request Timeout;290;9921;60494-5 +2022-09-03;2022-09-03T06:35:31Z;4023;2605.36;dollar $;20222813;;421;6317;45351-1 +2022-09-03;2022-09-03T04:17:29Z;2489;5452.8;zing Æ’;20222812;;33;2231;56694-2 +2022-09-02;2022-09-02T23:00:47Z;4023;9052;zing Æ’;20222811;;666;8800;81693-0 +2022-09-02;2022-09-02T20:28:43Z;5764;2106.84;british pound £;20222810;;33;6317;58677-3 +2022-09-02;2022-09-02T19:06:24Z;5243;6003.92;dollar $;20222809;;290;9921;63027-4 +2022-09-02;2022-09-02T15:04:46Z;1217;10756;dollar $;20222808;;33;1200;74837-9 +2022-09-02;2022-09-02T11:37:56Z;5764;1667;zing Æ’;20222807;;290;4078;53571-5 +2022-09-02;2022-09-02T11:04:46Z;2727;9115.55;british pound £;20222806;;421;1100;62217-6 +2022-09-02;2022-09-02T02:19:18Z;5986;5843;dollar $;20222805;;421;6552;58179-1 +2022-09-01;2022-09-01T20:35:02Z;2727;6445.69;euro €;20222804;;33;4078;47573-7 +2022-09-01;2022-09-01T19:56:23Z;3294;7349;dollar $;20222803;;33;6552;44032-2 +2022-09-01;2022-09-01T16:23:11Z;1121;6024;british pound £;20222802;;421;6552;28514-4 +2022-09-01;2022-09-01T11:59:54Z;4862;5349.69;british pound £;20222801;;421;5420;69094-5 +2022-09-01;2022-09-01T10:24:59Z;5243;5080.98;zing Æ’;20222800;;421;2231;35030-2 +2022-09-01;2022-09-01T08:44:03Z;3795;6014;dollar $;20222799;;290;6552;37408-3 +2022-09-01;2022-09-01T06:37:12Z;3715;9733;dollar $;20222798;;421;6552;52981-3 +2022-08-31;2022-08-31T16:15:51Z;1297;7376.54;british pound £;20222797;;666;8800;85620-2 +2022-08-31;2022-08-31T15:25:41Z;5987;8425.9;dollar $;20222796;;33;4078;39807-6 +2022-08-31;2022-08-31T13:53:10Z;3284;8402;dollar $;20222795;;290;3321;46858-6 +2022-08-31;2022-08-31T09:41:41Z;1121;3398.73;zing Æ’;20222794;;421;1100;58338-7 +2022-08-31;2022-08-31T00:19:39Z;4862;5707;dollar $;20222793;;290;1979;55654-4 +2022-08-30;2022-08-30T13:11:38Z;5832;5679.89;british pound £;20222792;;290;6552;65896-3 +2022-08-30;2022-08-30T08:24:01Z;5832;5682;zing Æ’;20222791;;33;6552;48325-5 +2022-08-30;2022-08-30T05:28:57Z;5832;8631.76;dollar $;20222790;;290;9921;36735-8 +2022-08-30;2022-08-30T04:45:35Z;5243;6895;dollar $;20222789;;290;4425;75409-8 +2022-08-29;2022-08-29T20:45:25Z;1217;5050;dollar $;20222788;;421;3321;82198-9 +2022-08-29;2022-08-29T20:17:48Z;2197;7373.52;british pound £;20222787;;290;9921;26177-2 +2022-08-29;2022-08-29T19:54:21Z;5188;1240.78;british pound £;20222786;;290;2400;62449-1 +2022-08-29;2022-08-29T16:32:53Z;4862;7185.59;dollar $;20222785;;290;6317;41936-4 +2022-08-29;2022-08-29T15:13:13Z;6032;8346;british pound £;20222784;;421;8521;68083-1 +2022-08-29;2022-08-29T15:00:58Z;3795;8607.46;dollar $;20222783;;290;4078;74764-5 +2022-08-29;2022-08-29T14:30:30Z;3795;7256;dollar $;20222782;;290;1979;78760-1 +2022-08-29;2022-08-29T10:36:29Z;3795;5801;dollar $;20222781;;33;1002;57085-4 +2022-08-29;2022-08-29T09:57:58Z;4965;4534.23;dollar $;20222780;;421;4425;55099-5 +2022-08-29;2022-08-29T01:31:23Z;3100;6517;british pound £;20222779;;421;4078;60724-5 +2022-08-29;2022-08-29T00:28:53Z;5764;4517;dollar $;20222778;;33;6552;83919-5 +2022-08-28;2022-08-28T23:38:27Z;4608;5924.13;zing Æ’;20222777;;33;1979;38871-4 +2022-08-28;2022-08-28T23:19:36Z;3715;8981.5;zing Æ’;20222776;;666;1979;85269-2 +2022-08-28;2022-08-28T23:19:21Z;5243;5040;dollar $;20222775;;421;2400;37557-7 +2022-08-28;2022-08-28T21:09:33Z;2727;3731.83;dollar $;20222774;;666;8800;82287-9 +2022-08-28;2022-08-28T19:28:05Z;4465;2380.64;zing Æ’;20222773;;421;3321;24677-4 +2022-08-28;2022-08-28T15:56:34Z;1945;7323;dollar $;20222772;;666;1200;46749-0 +2022-08-28;2022-08-28T15:22:03Z;3795;5995;dollar $;20222771;;290;2400;77752-6 +2022-08-28;2022-08-28T13:49:24Z;1945;7143.79;dollar $;20222770;;666;1100;55419-3 +2022-08-28;2022-08-28T10:47:47Z;3284;5180;zing Æ’;20222769;;33;1002;66775-4 +2022-08-27;2022-08-27T23:28:15Z;3284;5422.53;dollar $;20222768;;666;1979;77645-1 +2022-08-27;2022-08-27T21:07:19Z;5188;9913;dollar $;20222767;;33;2400;71702-8 +2022-08-27;2022-08-27T20:06:58Z;3294;4627;dollar $;20222766;;666;1002;48778-2 +2022-08-27;2022-08-27T20:06:43Z;3100;4459.62;dollar $;20222765;;421;6552;36644-8 +2022-08-27;2022-08-27T15:48:13Z;3294;7638.95;dollar $;20222764;;33;2400;48381-2 +2022-08-27;2022-08-27T13:29:50Z;2727;11469.37;dollar $;20222763;;666;2400;28322-0 +2022-08-27;2022-08-27T12:13:55Z;5188;3849;british pound £;20222762;;421;6552;80140-9 +2022-08-27;2022-08-27T11:07:08Z;2197;6559;zing Æ’;20222761;;421;5420;73160-8 +2022-08-27;2022-08-27T07:54:01Z;5188;7804.76;dollar $;20222760;;666;1979;83733-0 +2022-08-27;2022-08-27T07:06:19Z;3715;6084.39;dollar $;20222759;;666;2400;38308-4 +2022-08-27;2022-08-27T06:41:11Z;3715;6579;zing Æ’;20222758;;33;2400;52099-4 +2022-08-27;2022-08-27T05:58:34Z;3284;6193;british pound £;20222757;;33;4425;61318-2 +2022-08-27;2022-08-27T02:44:35Z;5188;655.24;dollar $;20222756;;290;2400;37287-6 +2022-08-26;2022-08-26T18:12:56Z;2489;5699;dollar $;20222755;;290;4078;61648-2 +2022-08-26;2022-08-26T15:33:46Z;3795;5798;dollar $;20222754;;666;8800;34284-1 +2022-08-25;2022-08-25T18:00:54Z;1121;6113.13;zing Æ’;20222753;;290;1979;83790-9 +2022-08-25;2022-08-25T02:16:12Z;1121;5332.25;dollar $;20222752;;666;2231;58617-1 +2022-08-25;2022-08-25T00:53:24Z;6032;6008.81;british pound £;20222751;;33;1979;34995-0 +2022-08-24;2022-08-24T21:45:58Z;4023;3885.07;dollar $;20222750;;421;1100;75872-0 +2022-08-24;2022-08-24T20:37:40Z;5986;5922;british pound £;20222749;;421;2231;32192-3 +2022-08-24;2022-08-24T16:51:30Z;1121;1046.93;euro €;20222748;;421;6317;38887-3 +2022-08-24;2022-08-24T14:46:35Z;4862;9945.73;dollar $;20222747;;666;8800;77360-1 +2022-08-24;2022-08-24T09:23:31Z;5188;6857;dollar $;20222746;;290;2400;70199-5 +2022-08-24;2022-08-24T04:37:16Z;2727;5595;zing Æ’;20222745;;33;2231;34990-6 +2022-08-23;2022-08-23T23:41:49Z;5516;3930.42;zing Æ’;20222744;;666;1100;26932-3 +2022-08-23;2022-08-23T18:32:26Z;5986;7186.23;dollar $;20222743;;421;8521;67478-3 +2022-08-23;2022-08-23T07:30:22Z;3294;8225;dollar $;20222742;;421;5420;69888-4 +2022-08-23;2022-08-23T02:03:42Z;6032;5073.04;british pound £;20222741;;33;3321;56970-1 +2022-08-22;2022-08-22T20:53:25Z;1455;5756.52;dollar $;20222740;;421;8521;77249-7 +2022-08-22;2022-08-22T19:06:45Z;1121;8266;dollar $;20222739;;290;5420;28185-4 +2022-08-22;2022-08-22T15:48:02Z;1297;4843.17;dollar $;20222738;;666;6317;68956-2 +2022-08-22;2022-08-22T15:04:47Z;2727;5499;zing Æ’;20222737;;666;1200;72274-7 +2022-08-22;2022-08-22T11:19:41Z;2489;6477;dollar $;20222736;;666;2231;30105-5 +2022-08-22;2022-08-22T09:19:18Z;5764;7416.97;dollar $;20222735;;666;6552;63203-0 +2022-08-22;2022-08-22T08:48:48Z;3284;5050;zing Æ’;20222734;;33;4078;63613-5 +2022-08-22;2022-08-22T05:08:20Z;6032;6096.35;dollar $;20222733;;666;1002;47992-7 +2022-08-22;2022-08-22T02:12:15Z;5987;8683.31;dollar $;20222732;;33;6552;67284-1 +2022-08-21;2022-08-21T13:40:05Z;1455;4292.65;dollar $;20222731;;290;2400;66077-9 +2022-08-21;2022-08-21T08:36:36Z;2197;10155;british pound £;20222730;;666;8800;49485-8 +2022-08-20;2022-08-20T22:03:33Z;3715;4578;dollar $;20222729;;33;1002;60933-7 +2022-08-20;2022-08-20T21:58:38Z;2197;8416.04;dollar $;20222728;;666;2231;78268-9 +2022-08-20;2022-08-20T18:07:28Z;3294;5823;zing Æ’;20222727;;33;6552;56578-6 +2022-08-20;2022-08-20T13:45:18Z;5986;5205.3;dollar $;20222726;;290;8800;63055-4 +2022-08-20;2022-08-20T12:54:41Z;1455;7150;dollar $;20222725;;666;6317;38681-5 +2022-08-20;2022-08-20T12:27:55Z;2727;160;dollar $;20222724;;33;1002;75581-5 +2022-08-20;2022-08-20T06:28:55Z;4465;2363.33;dollar $;20222723;;290;2231;32772-5 +2022-08-20;2022-08-20T03:47:56Z;1455;6028.34;dollar $;20222722;;33;8521;26094-5 +2022-08-19;2022-08-19T23:03:56Z;2727;10007;zing Æ’;20222721;;33;2231;81071-7 +2022-08-19;2022-08-19T19:12:55Z;2197;4466.83;british pound £;20222720;;421;1100;51459-0 +2022-08-19;2022-08-19T16:42:47Z;5987;4618.53;zing Æ’;20222719;;421;4078;28987-5 +2022-08-19;2022-08-19T15:38:43Z;5986;6259;dollar $;20222718;;421;9921;30087-6 +2022-08-19;2022-08-19T14:56:01Z;2727;5895;dollar $;20222717;;33;1200;33706-3 +2022-08-19;2022-08-19T11:45:24Z;5987;6182.73;dollar $;20222716;;421;6317;40817-2 +2022-08-19;2022-08-19T11:19:57Z;3715;7996.41;dollar $;20222715;;290;1979;45402-7 +2022-08-19;2022-08-19T02:16:29Z;1945;8631;zing Æ’;20222714;;290;1200;48328-9 +2022-08-19;2022-08-19T02:11:52Z;5986;4591;zing Æ’;20222713;;33;4078;56581-7 +2022-08-18;2022-08-18T16:57:12Z;1121;11490.37;zing Æ’;20222712;;421;2400;61244-9 +2022-08-18;2022-08-18T15:49:02Z;4965;5418;zing Æ’;20222711;;421;2400;42391-8 +2022-08-18;2022-08-18T15:37:20Z;5188;6901;dollar $;20222710;;290;8521;85943-6 +2022-08-18;2022-08-18T14:17:59Z;3715;7806.85;dollar $;20222709;;290;2231;72127-6 +2022-08-18;2022-08-18T14:01:07Z;3294;4420;dollar $;20222708;;290;2400;27831-8 +2022-08-18;2022-08-18T06:05:35Z;3284;12531.84;dollar $;20222707;;33;2231;26355-6 +2022-08-18;2022-08-18T02:48:22Z;5188;5208;zing Æ’;20222706;;290;2231;52646-6 +2022-08-18;2022-08-18T01:58:32Z;1455;2281.96;dollar $;20222705;;666;1100;44120-4 +2022-08-17;2022-08-17T23:48:06Z;5987;7454.01;zing Æ’;20222704;;33;6317;25302-7 +2022-08-17;2022-08-17T22:26:22Z;1297;6087.01;dollar $;20222703;;666;1002;39697-1 +2022-08-17;2022-08-17T17:02:26Z;5832;3945;euro €;20222702;;290;8800;50724-1 +2022-08-17;2022-08-17T14:01:33Z;5764;2589;dollar $;20222701;;666;6552;42710-4 +2022-08-17;2022-08-17T13:20:49Z;4862;6109.89;zing Æ’;20222700;;33;6552;55495-1 +2022-08-17;2022-08-17T10:18:42Z;4608;5679.48;dollar $;20222699;;290;1979;53860-5 +2022-08-17;2022-08-17T07:19:51Z;4862;6853.46;dollar $;20222698;;421;1002;47004-4 +2022-08-17;2022-08-17T07:03:16Z;1297;1529;dollar $;20222697;;666;6317;50792-1 +2022-08-17;2022-08-17T02:48:54Z;5832;8488;zing Æ’;20222696;;421;1200;34640-9 +2022-08-16;2022-08-16T21:49:54Z;5188;9088;zing Æ’;20222695;;33;6552;25997-8 +2022-08-16;2022-08-16T17:31:56Z;1455;3140.83;dollar $;20222694;;33;2231;34487-8 +2022-08-16;2022-08-16T08:10:30Z;5986;2945;dollar $;20222693;;666;8800;67446-2 +2022-08-16;2022-08-16T01:09:50Z;1297;7301;british pound £;20222692;;666;4078;57411-6 +2022-08-15;2022-08-15T16:59:25Z;3715;8132;dollar $;20222691;;666;4078;45905-5 +2022-08-15;2022-08-15T16:29:23Z;1121;8044;dollar $;20222690;;666;8800;46856-7 +2022-08-15;2022-08-15T11:41:29Z;4862;4038;dollar $;20222689;;290;1002;28308-6 +2022-08-15;2022-08-15T08:23:38Z;1297;2927.51;dollar $;20222688;;421;1100;48696-6 +2022-08-15;2022-08-15T07:06:52Z;3294;8310;dollar $;20222687;;290;2231;82371-9 +2022-08-15;2022-08-15T05:18:29Z;1217;8139.61;dollar $;20222686;;290;1002;70166-7 +2022-08-15;2022-08-15T02:22:50Z;2489;6658.83;dollar $;20222685;;33;8800;75317-5 +2022-08-14;2022-08-14T23:56:29Z;3795;6283.51;zing Æ’;20222684;;33;6552;36363-1 +2022-08-14;2022-08-14T18:56:29Z;1945;6368;zing Æ’;20222683;;290;2231;56891-4 +2022-08-14;2022-08-14T16:32:39Z;5987;7514;dollar $;20222682;;33;1002;61676-5 +2022-08-14;2022-08-14T13:33:01Z;1297;10060.17;british pound £;20222681;;666;1979;39931-3 +2022-08-14;2022-08-14T06:22:48Z;5188;4941;dollar $;20222680;;666;8521;79107-5 +2022-08-14;2022-08-14T05:59:25Z;3795;6379;british pound £;20222679;;421;2400;45442-7 +2022-08-14;2022-08-14T05:56:40Z;3294;8157.94;british pound £;20222678;;33;1002;27187-5 +2022-08-14;2022-08-14T04:23:25Z;5832;7991.08;british pound £;20222677;;666;8800;66537-0 +2022-08-14;2022-08-14T03:10:41Z;5243;10195;zing Æ’;20222676;;33;5420;61551-0 +2022-08-14;2022-08-14T02:50:38Z;2727;6293;dollar $;20222675;;666;1979;57944-1 +2022-08-14;2022-08-14T02:49:49Z;2727;5484.47;zing Æ’;20222674;;421;2400;27094-2 +2022-08-13;2022-08-13T15:24:25Z;4965;7156.96;zing Æ’;20222673;;666;1100;78252-1 +2022-08-13;2022-08-13T14:43:40Z;2489;5484;british pound £;20222672;;421;2231;63454-5 +2022-08-13;2022-08-13T13:03:08Z;3715;6076.22;zing Æ’;20222671;;33;8521;76982-6 +2022-08-13;2022-08-13T12:33:02Z;1455;3390;dollar $;20222670;;290;1979;56108-0 +2022-08-13;2022-08-13T03:53:35Z;4965;2083;british pound £;20222669;;666;4078;46751-4 +2022-08-13;2022-08-13T03:07:31Z;4608;4748;dollar $;20222668;;33;4425;82390-6 +2022-08-12;2022-08-12T21:49:25Z;4023;4788;dollar $;20222667;;290;1100;74500-1 +2022-08-12;2022-08-12T17:40:33Z;1455;8263;british pound £;20222666;;421;1002;55379-5 +2022-08-12;2022-08-12T11:05:11Z;5764;4709;british pound £;20222665;;33;1002;65600-8 +2022-08-12;2022-08-12T05:34:26Z;4023;5093.36;dollar $;20222664;;421;2231;49570-0 +2022-08-12;2022-08-12T03:34:52Z;4023;10005;dollar $;20222663;;33;6552;71686-2 +2022-08-11;2022-08-11T23:02:17Z;4608;6819.67;dollar $;20222662;;666;6317;56809-9 +2022-08-11;2022-08-11T19:58:50Z;4965;6835;dollar $;20222661;;290;5420;26558-2 +2022-08-11;2022-08-11T14:30:55Z;1455;5879;zing Æ’;20222660;;421;4425;45748-6 +2022-08-11;2022-08-11T11:49:01Z;4465;3586;dollar $;20222659;;33;9921;58101-2 +2022-08-11;2022-08-11T05:22:01Z;1945;5536;euro €;20222658;;33;2231;67835-4 +2022-08-11;2022-08-11T00:28:26Z;4965;5252;dollar $;20222657;;421;1002;41213-8 +2022-08-10;2022-08-10T19:26:04Z;5986;8193;euro €;20222656;;290;1002;82511-1 +2022-08-10;2022-08-10T16:16:26Z;4608;5036.94;dollar $;20222655;;421;9921;67548-2 +2022-08-10;2022-08-10T14:17:37Z;5516;6254.82;dollar $;20222654;;290;6552;66037-8 +2022-08-10;2022-08-10T02:43:53Z;3100;5707.66;dollar $;20222653;;290;8521;56734-9 +2022-08-10;2022-08-10T00:15:04Z;2727;7247;dollar $;20222652;;33;1979;74409-2 +2022-08-09;2022-08-09T18:32:39Z;5764;7408;zing Æ’;20222651;;421;3321;47313-5 +2022-08-09;2022-08-09T14:42:17Z;1945;6429;dollar $;20222650;;666;4078;77126-5 +2022-08-09;2022-08-09T13:06:11Z;4023;4909.34;zing Æ’;20222649;;290;1979;76173-6 +2022-08-09;2022-08-09T08:46:14Z;1217;4427;zing Æ’;20222648;;666;5420;80146-9 +2022-08-09;2022-08-09T05:12:50Z;1121;7295;zing Æ’;20222647;;421;5420;59650-1 +2022-08-09;2022-08-09T04:40:53Z;1945;6940;dollar $;20222646;;290;1100;43378-7 +2022-08-09;2022-08-09T01:49:24Z;3284;6289.73;dollar $;20222645;;290;2400;26339-0 +2022-08-08;2022-08-08T22:53:21Z;3284;4530.38;zing Æ’;20222644;;421;1200;44434-8 +2022-08-08;2022-08-08T22:31:44Z;1121;8305;british pound £;20222643;;33;8521;49858-6 +2022-08-08;2022-08-08T05:48:24Z;4965;6189.33;zing Æ’;20222642;;421;2231;76513-1 +2022-08-07;2022-08-07T23:27:36Z;1455;7750.28;dollar $;20222641;;421;3321;86140-6 +2022-08-07;2022-08-07T22:59:52Z;5764;6627;dollar $;20222640;;421;2400;54472-7 +2022-08-07;2022-08-07T19:47:19Z;3795;3949;dollar $;20222639;;421;1979;41136-9 +2022-08-07;2022-08-07T17:20:08Z;1217;3226.19;zing Æ’;20222638;;33;2231;44558-8 +2022-08-07;2022-08-07T16:30:01Z;2197;4497.59;zing Æ’;20222637;;33;4425;69219-0 +2022-08-07;2022-08-07T14:24:52Z;4862;9356.27;dollar $;20222636;;290;1100;67607-4 +2022-08-07;2022-08-07T08:58:46Z;5987;9431.67;dollar $;20222635;;666;9921;32082-0 +2022-08-07;2022-08-07T07:20:24Z;4965;2162;british pound £;20222634;;666;9921;71190-4 +2022-08-07;2022-08-07T03:26:05Z;1455;4591.76;dollar $;20222633;;33;3321;55179-3 +2022-08-07;2022-08-07T01:54:08Z;1121;5676;dollar $;20222632;;666;9921;29882-9 +2022-08-06;2022-08-06T20:41:39Z;5987;4275;zing Æ’;20222631;;421;5420;64849-7 +2022-08-06;2022-08-06T17:32:24Z;4965;4818.64;dollar $;20222630;;290;2231;85797-9 +2022-08-06;2022-08-06T15:42:16Z;2727;9248;dollar $;20222629;;666;8800;28857-8 +2022-08-06;2022-08-06T10:32:08Z;3294;5109;british pound £;20222628;;33;1002;73807-3 +2022-08-06;2022-08-06T09:31:32Z;4862;8968.11;dollar $;20222627;;421;1100;28464-9 +2022-08-06;2022-08-06T05:12:14Z;1945;9174;dollar $;20222626;;421;1100;42746-4 +2022-08-06;2022-08-06T00:22:22Z;2197;8992;british pound £;20222625;;290;1979;55863-5 +2022-08-05;2022-08-05T23:54:54Z;4965;7537.17;dollar $;20222624;;421;6552;34279-4 +2022-08-05;2022-08-05T14:12:36Z;2727;7563;dollar $;20222623;;421;8521;49276-6 +2022-08-05;2022-08-05T11:00:55Z;3294;10113.53;zing Æ’;20222622;;290;8521;47493-2 +2022-08-05;2022-08-05T10:24:08Z;2727;6189.08;zing Æ’;20222621;;290;1200;63987-8 +2022-08-05;2022-08-05T10:21:50Z;1945;5926.79;dollar $;20222620;;290;1200;65063-3 +2022-08-05;2022-08-05T06:07:33Z;5832;5079;dollar $;20222619;;33;4425;70053-6 +2022-08-05;2022-08-05T04:34:37Z;3795;8567.99;british pound £;20222618;;33;2231;70927-1 +2022-08-04;2022-08-04T18:53:41Z;4465;6219;zing Æ’;20222617;;33;1002;61334-9 +2022-08-04;2022-08-04T17:28:36Z;5986;3083.37;zing Æ’;20222616;;290;2400;64107-1 +2022-08-03;2022-08-03T16:14:14Z;1455;4567.68;british pound £;20222615;;33;5420;35104-0 +2022-08-03;2022-08-03T09:48:37Z;3284;6434.33;dollar $;20222614;;666;6552;74513-0 +2022-08-03;2022-08-03T06:38:47Z;3294;9198.11;zing Æ’;20222613;;33;4425;50362-3 +2022-08-03;2022-08-03T04:58:55Z;3715;3061.13;dollar $;20222612;;421;6552;38201-4 +2022-08-02;2022-08-02T22:21:54Z;5188;1856.99;dollar $;20222611;;290;3321;66550-4 +2022-08-02;2022-08-02T18:03:00Z;4608;7766.58;dollar $;20222610;;421;2400;55608-9 +2022-08-02;2022-08-02T17:11:09Z;5243;4893;dollar $;20222609;;421;6552;43912-9 +2022-08-02;2022-08-02T13:24:47Z;4023;7709.75;british pound £;20222608;;421;1002;74910-1 +2022-08-02;2022-08-02T12:57:46Z;2727;8794.42;dollar $;20222607;;290;8800;67388-7 +2022-08-02;2022-08-02T11:01:22Z;2489;5617;dollar $;20222606;;290;1979;83456-1 +2022-08-02;2022-08-02T07:23:35Z;3100;11026.17;dollar $;20222605;;666;1002;48244-2 +2022-08-02;2022-08-02T06:20:54Z;2489;3930.51;dollar $;20222604;;666;3321;54298-3 +2022-08-02;2022-08-02T03:21:38Z;5243;6914;zing Æ’;20222603;;666;3321;53673-5 +2022-08-02;2022-08-02T01:42:41Z;5832;4892;dollar $;20222602;;290;9921;44292-0 +2022-08-01;2022-08-01T19:28:40Z;5986;4449.42;dollar $;20222601;;290;1979;66627-1 +2022-08-01;2022-08-01T10:46:26Z;5987;5511.32;zing Æ’;20222600;;666;6317;79417-6 +2022-08-01;2022-08-01T02:23:32Z;2197;8050.55;dollar $;20222599;;33;1200;63034-0 +2022-07-31;2022-07-31T18:12:34Z;3715;5905.01;british pound £;20222598;;290;1100;71946-9 +2022-07-31;2022-07-31T14:45:21Z;3795;5434.35;dollar $;20222597;;421;1200;34592-1 +2022-07-31;2022-07-31T12:46:44Z;3294;11308.4;dollar $;20222596;;33;2400;46546-7 +2022-07-31;2022-07-31T11:37:29Z;1217;7426;dollar $;20222595;;33;1979;77069-7 +2022-07-31;2022-07-31T09:32:51Z;3715;9747.53;dollar $;20222594;;666;1002;79517-9 +2022-07-31;2022-07-31T07:59:31Z;2727;5763;dollar $;20222593;;290;4078;55572-7 +2022-07-31;2022-07-31T05:22:27Z;1297;6348;dollar $;20222592;;33;6552;82493-7 +2022-07-31;2022-07-31T04:42:29Z;5764;6624;zing Æ’;20222591;;290;5420;30395-4 +2022-07-31;2022-07-31T01:16:52Z;1945;5592;dollar $;20222590;;33;5420;46838-3 +2022-07-31;2022-07-31T01:10:37Z;3294;3856.45;dollar $;20222589;;290;6317;73285-6 +2022-07-31;2022-07-31T00:25:28Z;2197;8509;british pound £;20222588;;421;8800;62722-5 +2022-07-30;2022-07-30T23:26:57Z;4465;1463.88;dollar $;20222587;;666;1979;52455-4 +2022-07-30;2022-07-30T20:45:52Z;1297;9000;dollar $;20222586;;421;6552;37342-3 +2022-07-30;2022-07-30T19:50:44Z;3284;6060.34;dollar $;20222585;;33;3321;71225-1 +2022-07-30;2022-07-30T18:09:57Z;1945;5430.96;zing Æ’;20222584;;33;2400;79028-4 +2022-07-30;2022-07-30T15:27:38Z;5986;8494.64;dollar $;20222583;;290;1002;65179-5 +2022-07-30;2022-07-30T15:20:20Z;5764;7540.67;dollar $;20222582;;33;6317;45344-5 +2022-07-30;2022-07-30T09:51:21Z;4965;8562;dollar $;20222581;;33;6317;52006-7 +2022-07-30;2022-07-30T08:31:07Z;3795;10482.71;dollar $;20222580;;290;4425;50872-3 +2022-07-30;2022-07-30T07:22:45Z;6032;4274.97;british pound £;20222579;;290;1979;33914-2 +2022-07-30;2022-07-30T05:15:13Z;3100;7119;zing Æ’;20222578;;290;1002;69949-9 +2022-07-29;2022-07-29T19:53:48Z;2489;4720.5;dollar $;20222577;;421;4425;74814-5 +2022-07-29;2022-07-29T18:38:40Z;5188;6068;dollar $;20222576;;666;3321;65683-2 +2022-07-29;2022-07-29T18:37:47Z;4023;7210;zing Æ’;20222575;;421;1100;30988-1 +2022-07-29;2022-07-29T18:37:39Z;5832;8755.66;zing Æ’;20222574;;421;1002;64516-6 +2022-07-29;2022-07-29T13:35:08Z;1455;5614.82;dollar $;20222573;;666;1100;49640-7 +2022-07-29;2022-07-29T12:22:50Z;1217;4965;dollar $;20222572;;33;8800;72639-0 +2022-07-29;2022-07-29T08:45:53Z;1945;9489.33;zing Æ’;20222571;;666;2231;40165-3 +2022-07-29;2022-07-29T07:53:15Z;5986;8455.63;dollar $;20222570;;666;3321;81207-2 +2022-07-29;2022-07-29T07:40:14Z;1945;7277.43;dollar $;20222569;;290;4078;42423-6 +2022-07-29;2022-07-29T03:03:44Z;3795;9321;dollar $;20222568;;33;4078;28540-8 +2022-07-28;2022-07-28T19:58:07Z;4608;5449.41;dollar $;20222567;;666;8521;57907-5 +2022-07-28;2022-07-28T14:30:52Z;3795;6543.93;zing Æ’;20222566;;421;1100;75541-2 +2022-07-28;2022-07-28T14:07:22Z;3795;8609.42;british pound £;20222565;;666;8800;44012-6 +2022-07-28;2022-07-28T12:43:05Z;4023;8325;dollar $;20222564;;666;1200;79371-3 +2022-07-28;2022-07-28T00:54:29Z;4608;5172;zing Æ’;20222563;;33;1200;71362-9 +2022-07-27;2022-07-27T11:49:33Z;2197;2153;dollar $;20222562;;666;8800;61689-8 +2022-07-27;2022-07-27T10:32:42Z;5764;5880;dollar $;20222561;;666;1002;37155-0 +2022-07-27;2022-07-27T08:48:55Z;2489;6070.12;dollar $;20222560;;666;8521;25404-0 +2022-07-27;2022-07-27T07:13:43Z;6032;8087.25;dollar $;20222559;;421;1100;35051-7 +2022-07-26;2022-07-26T21:46:31Z;5987;8729;dollar $;20222558;;290;1200;68054-2 +2022-07-26;2022-07-26T19:25:08Z;3284;6998;dollar $;20222557;;666;3321;25612-8 +2022-07-26;2022-07-26T17:25:30Z;3795;2896.78;dollar $;20222556;;290;4425;42928-4 +2022-07-26;2022-07-26T17:16:16Z;1945;5324;dollar $;20222555;;290;9921;51123-8 +2022-07-26;2022-07-26T14:30:26Z;2727;5316.29;dollar $;20222554;;421;6317;67289-6 +2022-07-25;2022-07-25T20:33:00Z;5832;9584.41;zing Æ’;20222553;;421;1200;40661-9 +2022-07-25;2022-07-25T20:21:45Z;1455;5152.21;dollar $;20222552;;290;2400;28006-4 +2022-07-25;2022-07-25T08:03:41Z;3100;12824;dollar $;20222551;;33;2231;39976-2 +2022-07-25;2022-07-25T07:55:21Z;1121;4656;zing Æ’;20222550;;421;8800;24659-4 +2022-07-25;2022-07-25T06:05:20Z;3294;2563.52;british pound £;20222549;;666;8521;59651-8 +2022-07-25;2022-07-25T03:00:15Z;2197;7819;dollar $;20222548;;421;1200;35470-2 +2022-07-25;2022-07-25T02:44:51Z;2197;2630.01;dollar $;20222547;;33;1200;85770-1 +2022-07-24;2022-07-24T20:05:15Z;4862;4921;dollar $;20222546;;290;3321;28198-5 +2022-07-24;2022-07-24T12:45:02Z;4608;5430.64;dollar $;20222545;;33;5420;28080-9 +2022-07-24;2022-07-24T09:59:57Z;4023;4494.75;zing Æ’;20222544;;33;5420;86372-7 +2022-07-24;2022-07-24T09:46:14Z;4862;6305.85;zing Æ’;20222543;;666;6317;35273-4 +2022-07-24;2022-07-24T08:05:48Z;1297;6518.63;dollar $;20222542;;290;8800;81697-4 +2022-07-23;2022-07-23T22:59:39Z;2489;5422.75;dollar $;20222541;;421;5420;28269-9 +2022-07-23;2022-07-23T16:42:08Z;5832;6899;zing Æ’;20222540;;290;1100;46069-7 +2022-07-23;2022-07-23T15:44:03Z;2197;5674;zing Æ’;20222539;;666;9921;45744-0 +2022-07-23;2022-07-23T05:08:47Z;4465;8809.42;british pound £;20222538;;666;8800;69097-2 +2022-07-23;2022-07-23T03:03:27Z;2489;10622;british pound £;20222537;;290;4078;62245-7 +2022-07-23;2022-07-23T01:08:01Z;4465;8086;british pound £;20222536;;290;8521;43381-0 +2022-07-22;2022-07-22T22:05:26Z;1297;4632.35;euro €;20222535;;33;6317;81473-0 +2022-07-22;2022-07-22T19:45:52Z;3100;9592;dollar $;20222534;;33;1200;75881-2 +2022-07-22;2022-07-22T19:06:25Z;3795;60;dollar $;20222533;;290;1100;39925-1 +2022-07-22;2022-07-22T18:33:17Z;4608;6792.99;dollar $;20222532;;666;2231;31803-5 +2022-07-22;2022-07-22T09:46:43Z;5832;8060.06;zing Æ’;20222531;;33;8521;66081-7 +2022-07-22;2022-07-22T06:39:08Z;5243;7790.91;dollar $;20222530;;421;4425;68899-5 +2022-07-22;2022-07-22T04:08:08Z;2197;7308.61;zing Æ’;20222529;;290;6317;77148-7 +2022-07-22;2022-07-22T03:42:39Z;5764;7183.29;dollar $;20222528;;666;1100;65655-9 +2022-07-22;2022-07-22T03:04:59Z;4465;4942;dollar $;20222527;;421;5420;75573-4 +2022-07-22;2022-07-22T02:52:08Z;3795;10469.22;dollar $;20222526;;421;8521;57507-0 +2022-07-22;2022-07-22T01:36:48Z;5764;6211;british pound £;20222525;;33;2400;47608-5 +2022-07-22;2022-07-22T00:09:46Z;3284;8194.12;zing Æ’;20222524;;33;6317;52415-9 +2022-07-21;2022-07-21T21:39:03Z;4862;5404;dollar $;20222523;;421;3321;71526-3 +2022-07-21;2022-07-21T16:17:46Z;5764;5614.33;dollar $;20222522;;33;6317;36036-3 +2022-07-20;2022-07-20T22:47:36Z;3284;6104;zing Æ’;20222521;;33;6552;65107-5 +2022-07-20;2022-07-20T21:49:18Z;1217;6017.25;dollar $;20222520;;33;9921;54589-5 +2022-07-20;2022-07-20T19:58:47Z;5764;4018;british pound £;20222519;;421;2400;61547-4 +2022-07-20;2022-07-20T18:31:23Z;5764;4612.61;dollar $;20222518;;421;6317;34766-8 +2022-07-20;2022-07-20T09:31:13Z;4965;6873;zing Æ’;20222517;;421;1200;49563-6 +2022-07-20;2022-07-20T03:17:03Z;2727;4241;british pound £;20222516;;33;6552;40953-3 +2022-07-20;2022-07-20T00:46:16Z;2197;7176.11;dollar $;20222515;;421;4425;50780-6 +2022-07-20;2022-07-20T00:20:43Z;3795;6448.76;zing Æ’;20222514;;33;1002;27795-7 +2022-07-19;2022-07-19T20:58:02Z;1945;13710;dollar $;20222513;;290;2231;63600-9 +2022-07-19;2022-07-19T19:47:37Z;4023;6480.3;zing Æ’;20222512;;33;2231;46970-7 +2022-07-19;2022-07-19T18:37:51Z;4862;6110;dollar $;20222511;;33;5420;68249-8 +2022-07-19;2022-07-19T14:18:31Z;5832;7237;dollar $;20222510;;666;8521;26288-2 +2022-07-19;2022-07-19T06:53:19Z;5243;6047.65;dollar $;20222509;;290;3321;82919-6 +2022-07-18;2022-07-18T22:33:36Z;3284;5232;dollar $;20222508;;33;1100;52040-3 +2022-07-18;2022-07-18T13:40:14Z;1455;7721.01;zing Æ’;20222507;;290;6317;80654-9 +2022-07-18;2022-07-18T00:45:24Z;5188;6788.89;dollar $;20222506;;666;3321;77131-4 +2022-07-17;2022-07-17T23:07:19Z;1121;2962.67;dollar $;20222505;;290;4078;37892-5 +2022-07-17;2022-07-17T20:12:46Z;3284;10050.65;dollar $;20222504;;421;8521;57083-4 +2022-07-17;2022-07-17T11:23:28Z;5986;5849;zing Æ’;20222503;;290;5420;62872-5 +2022-07-17;2022-07-17T08:25:16Z;4465;686.89;dollar $;20222502;;33;4078;85109-1 +2022-07-17;2022-07-17T00:42:48Z;1297;8196.29;zing Æ’;20222501;;290;2231;62946-6 +2022-07-17;2022-07-17T00:05:41Z;4965;6862;dollar $;20222500;;33;1200;73145-0 +2022-07-16;2022-07-16T20:16:14Z;5516;3666;dollar $;20222499;;290;2400;30531-2 +2022-07-16;2022-07-16T11:47:23Z;1945;7534;zing Æ’;20222498;;421;6552;35337-2 +2022-07-16;2022-07-16T10:46:48Z;4608;4593.15;dollar $;20222497;;666;9921;44592-4 +2022-07-16;2022-07-16T09:05:30Z;5764;4445;dollar $;20222496;;290;1200;55184-8 +2022-07-16;2022-07-16T08:12:45Z;1297;4796;dollar $;20222495;;290;8800;73423-2 +2022-07-16;2022-07-16T04:26:55Z;6032;6139;dollar $;20222494;;290;1979;57157-5 +2022-07-16;2022-07-16T01:38:24Z;1297;5670;dollar $;20222493;;421;4078;50455-2 +2022-07-15;2022-07-15T23:08:36Z;2489;5167;euro €;20222492;;421;3321;57418-7 +2022-07-15;2022-07-15T22:53:05Z;5986;6047.47;dollar $;20222491;;33;8521;28810-8 +2022-07-15;2022-07-15T20:18:58Z;2197;5535.3;dollar $;20222490;;421;2400;61281-0 +2022-07-15;2022-07-15T13:15:34Z;2197;11847.86;dollar $;20222489;;421;6552;31993-6 +2022-07-15;2022-07-15T13:00:17Z;4965;4044;zing Æ’;20222488;;421;8800;77170-8 +2022-07-15;2022-07-15T12:49:03Z;1297;5141.33;dollar $;20222487;;666;9921;42586-4 +2022-07-15;2022-07-15T04:28:07Z;1297;2034.29;dollar $;20222486;;666;6552;49536-6 +2022-07-14;2022-07-14T19:51:55Z;4862;6783.09;dollar $;20222485;;290;1100;71372-1 +2022-07-14;2022-07-14T16:05:57Z;4465;9662;zing Æ’;20222484;;290;9921;60113-7 +2022-07-14;2022-07-14T15:14:23Z;4023;7444.89;dollar $;20222483;;421;6552;68959-7 +2022-07-14;2022-07-14T12:06:54Z;1455;8119;dollar $;20222482;;290;2400;46841-9 +2022-07-14;2022-07-14T08:38:54Z;5516;5120.4;zing Æ’;20222481;;666;6552;52149-5 +2022-07-14;2022-07-14T08:26:18Z;4862;3554;zing Æ’;20222480;;33;3321;50736-0 +2022-07-14;2022-07-14T00:44:29Z;2727;5926.31;british pound £;20222479;;421;6317;71808-8 +2022-07-13;2022-07-13T21:09:44Z;5188;5343.43;dollar $;20222478;;421;3321;24770-9 +2022-07-13;2022-07-13T16:13:47Z;5243;5020;dollar $;20222477;;666;5420;45841-7 +2022-07-13;2022-07-13T06:19:29Z;5987;10575.17;dollar $;20222476;;421;6552;65661-5 +2022-07-13;2022-07-13T03:11:42Z;4608;5982.18;zing Æ’;20222475;;666;1100;37374-2 +2022-07-12;2022-07-12T22:40:07Z;5986;8116;dollar $;20222474;;421;8521;54161-7 +2022-07-12;2022-07-12T14:07:53Z;3100;5896;dollar $;20222473;;290;1979;26806-5 +2022-07-12;2022-07-12T09:04:55Z;1297;4701.64;dollar $;20222472;;33;4078;53582-5 +2022-07-12;2022-07-12T03:45:03Z;5987;8179.67;zing Æ’;20222471;;33;8800;73728-6 +2022-07-12;2022-07-12T00:00:52Z;1121;6902;dollar $;20222470;;290;8800;39610-3 +2022-07-11;2022-07-11T22:56:44Z;3100;12352.37;zing Æ’;20222469;;421;9921;49421-2 +2022-07-11;2022-07-11T17:06:44Z;1121;9371;british pound £;20222468;;666;8521;51135-3 +2022-07-11;2022-07-11T11:05:09Z;3284;5763.97;dollar $;20222467;;421;6552;52507-4 +2022-07-11;2022-07-11T08:17:08Z;4023;5602.54;dollar $;20222466;;666;4078;54545-3 +2022-07-11;2022-07-11T07:21:54Z;5986;7537.49;dollar $;20222465;;33;2400;75978-4 +2022-07-11;2022-07-11T04:06:57Z;5832;8971.98;dollar $;20222464;;666;2231;28237-9 +2022-07-10;2022-07-10T21:30:34Z;1297;5582.36;dollar $;20222463;;290;1002;84448-4 +2022-07-10;2022-07-10T19:26:41Z;1455;1427.7;euro €;20222462;;421;1002;79549-2 +2022-07-10;2022-07-10T19:19:03Z;1945;3689;zing Æ’;20222461;;290;6317;58536-8 +2022-07-10;2022-07-10T18:22:40Z;2197;7994;dollar $;20222460;;290;1200;33753-4 +2022-07-10;2022-07-10T15:18:27Z;5832;11254.37;dollar $;20222459;;290;4078;51599-8 +2022-07-10;2022-07-10T09:39:12Z;1121;9845.66;british pound £;20222458;;666;4425;41353-9 +2022-07-10;2022-07-10T06:58:40Z;5832;11028;dollar $;20222457;;33;1002;64518-4 +2022-07-10;2022-07-10T06:06:55Z;4465;3803.98;dollar $;20222456;;421;8521;33220-9 +2022-07-09;2022-07-09T18:17:01Z;4023;5127;zing Æ’;20222455;;290;9921;40590-5 +2022-07-09;2022-07-09T17:24:49Z;5188;6252;dollar $;20222454;;666;6317;65958-5 +2022-07-09;2022-07-09T16:54:38Z;4965;4173;dollar $;20222453;;290;2231;25453-1 +2022-07-09;2022-07-09T15:34:03Z;3284;9446.55;zing Æ’;20222452;;290;4425;31652-5 +2022-07-09;2022-07-09T05:10:36Z;3715;6423;zing Æ’;20222451;;33;9921;84785-1 +2022-07-08;2022-07-08T18:26:57Z;5764;5973.86;dollar $;20222450;;33;6552;28386-3 +2022-07-08;2022-07-08T14:58:21Z;1297;3420.55;dollar $;20222449;;421;8800;58142-6 +2022-07-08;2022-07-08T10:01:55Z;2727;8973;dollar $;20222448;;421;3321;81714-9 +2022-07-08;2022-07-08T00:58:51Z;4465;7738.31;zing Æ’;20222447;;421;1002;60429-2 +2022-07-07;2022-07-07T22:13:35Z;5832;12105;dollar $;20222446;;421;8800;73092-3 +2022-07-07;2022-07-07T21:52:59Z;5832;7655;british pound £;20222445;;290;5420;55515-2 +2022-07-07;2022-07-07T15:35:51Z;5764;3900;dollar $;20222444;;421;2400;64237-9 +2022-07-07;2022-07-07T15:12:50Z;6032;705.79;dollar $;20222443;;290;1979;64381-2 +2022-07-07;2022-07-07T10:53:14Z;4862;2314;zing Æ’;20222442;;421;6317;49063-0 +2022-07-07;2022-07-07T10:06:08Z;5832;6207.33;dollar $;20222441;;421;2400;30552-5 +2022-07-07;2022-07-07T08:37:41Z;3795;4907.76;british pound £;20222440;;421;9921;38673-7 +2022-07-07;2022-07-07T02:07:06Z;5516;2309.23;dollar $;20222439;;666;8521;54341-0 +2022-07-07;2022-07-07T00:03:35Z;3100;2095.19;dollar $;20222438;;33;6317;45149-4 +2022-07-06;2022-07-06T22:43:26Z;3795;4182.9;zing Æ’;20222437;;666;5420;60944-6 +2022-07-06;2022-07-06T21:55:59Z;1217;3102;british pound £;20222436;;290;8521;75932-7 +2022-07-06;2022-07-06T18:06:49Z;1455;9014.63;dollar $;20222435;;33;2231;43721-2 +2022-07-06;2022-07-06T08:31:35Z;5986;7213.17;dollar $;20222434;;666;1100;47190-3 +2022-07-06;2022-07-06T06:34:13Z;3715;1877;dollar $;20222433;;290;2231;57913-8 +2022-07-06;2022-07-06T03:27:16Z;1297;5493.73;british pound £;20222432;;33;4078;58649-2 +2022-07-06;2022-07-06T01:40:18Z;5188;10469;zing Æ’;20222431;;666;4425;67379-5 +2022-07-06;2022-07-06T00:35:36Z;4023;4494;dollar $;20222430;;33;8521;65256-3 +2022-07-05;2022-07-05T18:27:50Z;5986;6380.1;dollar $;20222429;;290;1200;81028-6 +2022-07-05;2022-07-05T17:44:09Z;5987;8507;dollar $;20222428;;33;2400;45475-0 +2022-07-05;2022-07-05T12:26:06Z;3284;4562;dollar $;20222427;;666;4078;39726-8 +2022-07-05;2022-07-05T09:03:04Z;1945;3006;zing Æ’;20222426;;33;4078;41865-2 +2022-07-05;2022-07-05T08:42:26Z;6032;6638;dollar $;20222425;;421;3321;48114-2 +2022-07-04;2022-07-04T12:30:03Z;4608;6723.02;dollar $;20222424;;421;8521;83491-4 +2022-07-04;2022-07-04T09:23:13Z;4465;7127;zing Æ’;20222423;;33;2231;35883-3 +2022-07-04;2022-07-04T05:44:04Z;5188;7675.38;zing Æ’;20222422;;666;2400;37102-3 +2022-07-04;2022-07-04T05:10:50Z;1217;6270.55;dollar $;20222421;;33;5420;57668-0 +2022-07-04;2022-07-04T03:20:55Z;5243;3578;dollar $;20222420;;33;8800;62391-7 +2022-07-04;2022-07-04T02:22:17Z;4608;4271.83;dollar $;20222419;;33;4078;74345-5 +2022-07-03;2022-07-03T23:02:45Z;3715;1928;dollar $;20222418;;421;1002;48380-4 +2022-07-03;2022-07-03T22:08:35Z;4465;8311.8;dollar $;20222417;;666;4425;64727-4 +2022-07-03;2022-07-03T15:50:34Z;5243;2344;dollar $;20222416;;666;2231;73995-7 +2022-07-03;2022-07-03T07:41:18Z;4862;2604.78;british pound £;20222415;;421;6552;81389-0 +2022-07-03;2022-07-03T04:09:53Z;5188;7652.47;zing Æ’;20222414;;421;9921;31307-4 +2022-07-03;2022-07-03T03:39:39Z;4608;8955.57;zing Æ’;20222413;;33;4078;27079-7 +2022-07-03;2022-07-03T03:39:20Z;1945;8312.9;dollar $;20222412;;421;5420;42062-6 +2022-07-03;2022-07-03T00:34:24Z;5764;3976.27;dollar $;20222411;;33;4425;44422-6 +2022-07-02;2022-07-02T18:46:03Z;4862;4411;dollar $;20222410;;290;3321;80043-8 +2022-07-02;2022-07-02T18:44:42Z;4465;3882;dollar $;20222409;;666;2400;68199-3 +2022-07-02;2022-07-02T18:29:50Z;4465;5294;dollar $;20222408;500 Server Unavailable;421;2400;39070-3 +2022-07-02;2022-07-02T15:00:31Z;5243;9282;zing Æ’;20222407;;421;1200;71674-1 +2022-07-02;2022-07-02T14:52:01Z;5516;7717.62;zing Æ’;20222406;;290;1200;76560-7 +2022-07-02;2022-07-02T14:16:28Z;4965;3976;british pound £;20222405;;290;1100;76315-0 +2022-07-02;2022-07-02T13:05:27Z;3715;7115.57;dollar $;20222404;;290;6317;49250-0 +2022-07-02;2022-07-02T02:04:10Z;2489;2799;british pound £;20222403;;421;6317;81739-1 +2022-07-02;2022-07-02T01:35:09Z;5243;4443.25;zing Æ’;20222402;;33;6552;59501-2 +2022-07-02;2022-07-02T00:50:54Z;5188;8449;dollar $;20222401;;421;1200;66069-1 +2022-07-01;2022-07-01T22:08:11Z;3715;3801.76;dollar $;20222400;;33;1200;48327-0 +2022-07-01;2022-07-01T11:18:30Z;4608;8035;dollar $;20222399;;33;6552;31442-5 +2022-07-01;2022-07-01T09:33:59Z;1297;6296;dollar $;20222398;;666;4425;44605-1 +2022-07-01;2022-07-01T02:09:07Z;5243;8821;dollar $;20222397;;33;4425;67628-5 +2022-06-30;2022-06-30T17:03:22Z;6032;7526;british pound £;20222396;;421;9921;66050-1 +2022-06-30;2022-06-30T13:19:16Z;1455;5596;dollar $;20222395;;33;1002;39841-5 +2022-06-30;2022-06-30T11:34:04Z;2727;4152.92;dollar $;20222394;;421;2400;77330-3 +2022-06-30;2022-06-30T09:23:44Z;1297;9851.63;dollar $;20222393;;33;1979;48083-8 +2022-06-30;2022-06-30T09:20:25Z;2727;10388;euro €;20222392;;666;1979;40945-3 +2022-06-30;2022-06-30T00:44:40Z;1121;5450.96;british pound £;20222391;;33;2400;59812-3 +2022-06-30;2022-06-30T00:08:01Z;3795;5458.02;euro €;20222390;;290;2400;31956-2 +2022-06-29;2022-06-29T23:35:45Z;5764;2734;dollar $;20222389;;421;8800;86343-7 +2022-06-29;2022-06-29T21:48:43Z;4023;5736.5;zing Æ’;20222388;;666;4078;62751-4 +2022-06-29;2022-06-29T16:01:04Z;4608;7323;dollar $;20222387;;666;1200;55126-7 +2022-06-29;2022-06-29T11:58:17Z;1121;9224.97;euro €;20222386;;421;1979;56497-8 +2022-06-29;2022-06-29T08:53:35Z;5188;7100.31;dollar $;20222385;;666;4078;25567-3 +2022-06-29;2022-06-29T07:31:36Z;4862;5037.19;zing Æ’;20222384;;290;4078;27843-2 +2022-06-28;2022-06-28T20:08:41Z;5243;8017;dollar $;20222383;;33;1979;84107-7 +2022-06-28;2022-06-28T18:42:20Z;5832;9670.98;dollar $;20222382;;290;6317;49225-6 +2022-06-28;2022-06-28T16:10:38Z;3284;7039.9;dollar $;20222381;;666;1002;56532-2 +2022-06-28;2022-06-28T10:39:35Z;1455;13336;dollar $;20222380;;421;2231;48451-2 +2022-06-28;2022-06-28T08:33:28Z;5188;3730;zing Æ’;20222379;;666;4078;83723-0 +2022-06-28;2022-06-28T08:31:34Z;5188;5415;dollar $;20222378;;33;6552;51883-0 +2022-06-28;2022-06-28T08:29:53Z;3100;8194.05;dollar $;20222377;;290;2231;64529-1 +2022-06-28;2022-06-28T01:07:43Z;3284;2763.27;british pound £;20222376;;421;4425;40384-7 +2022-06-27;2022-06-27T20:59:13Z;5832;7632;zing Æ’;20222375;;421;5420;68514-8 +2022-06-27;2022-06-27T20:10:32Z;4965;9014.43;zing Æ’;20222374;;33;5420;63515-5 +2022-06-27;2022-06-27T20:10:11Z;4023;8466.6;dollar $;20222373;;290;1200;54411-1 +2022-06-27;2022-06-27T19:36:36Z;3284;11069.41;british pound £;20222372;;666;8521;61977-3 +2022-06-27;2022-06-27T16:45:32Z;4965;5695.85;zing Æ’;20222371;;33;8800;65383-7 +2022-06-27;2022-06-27T12:31:54Z;3294;9987.75;dollar $;20222370;;666;1979;32970-5 +2022-06-27;2022-06-27T09:41:18Z;5188;4565.2;dollar $;20222369;;290;9921;54718-6 +2022-06-27;2022-06-27T09:14:21Z;3100;4751.17;british pound £;20222368;;666;6552;46627-9 +2022-06-27;2022-06-27T07:33:03Z;1297;4725;dollar $;20222367;;290;1979;33718-6 +2022-06-27;2022-06-27T03:40:19Z;1121;7021.81;zing Æ’;20222366;;33;9921;41319-2 +2022-06-26;2022-06-26T20:41:16Z;2727;8324;zing Æ’;20222365;;421;2231;50076-8 +2022-06-26;2022-06-26T03:36:58Z;3715;7148;dollar $;20222364;;421;2400;42682-2 +2022-06-26;2022-06-26T02:41:09Z;5987;6493;dollar $;20222363;;33;1100;50762-3 +2022-06-26;2022-06-26T01:16:17Z;5243;6432.39;british pound £;20222362;;666;4425;82585-4 +2022-06-25;2022-06-25T20:07:08Z;1121;1421;dollar $;20222361;;290;9921;77258-7 +2022-06-25;2022-06-25T17:33:32Z;1455;5554.44;euro €;20222360;;421;4425;42291-1 +2022-06-25;2022-06-25T11:27:51Z;1455;6501;zing Æ’;20222359;;33;1100;27768-7 +2022-06-25;2022-06-25T08:38:02Z;2727;4785;dollar $;20222358;;666;1002;54413-2 +2022-06-25;2022-06-25T07:00:52Z;5832;8578.96;zing Æ’;20222357;;421;6317;62687-8 +2022-06-25;2022-06-25T01:47:39Z;6032;4539;dollar $;20222356;;290;1002;30719-2 +2022-06-25;2022-06-25T01:25:10Z;3284;5419;zing Æ’;20222355;;33;1200;83980-6 +2022-06-24;2022-06-24T17:54:16Z;5987;5300;british pound £;20222354;;421;2400;45971-0 +2022-06-24;2022-06-24T17:29:16Z;3284;6192;zing ƒ;20222353;;33;8800;80431-9 +2022-06-24;2022-06-24T17:21:26Z;5764;11030.35;british pound £;20222352;;33;8800;36592-1 +2022-06-24;2022-06-24T14:56:51Z;3795;4069.81;zing ƒ;20222351;;33;6317;26007-2 +2022-06-24;2022-06-24T10:42:28Z;4023;10687;dollar $;20222350;;421;2231;31294-7 +2022-06-24;2022-06-24T07:43:01Z;3795;4505;dollar $;20222349;;290;1200;26715-2 +2022-06-24;2022-06-24T06:10:38Z;5764;5283;dollar $;20222348;;33;1100;29557-1 +2022-06-24;2022-06-24T00:25:09Z;3795;4622;dollar $;20222347;;666;2400;60369-6 +2022-06-23;2022-06-23T22:01:22Z;2727;5384.66;dollar $;20222346;;421;1100;62513-1 +2022-06-23;2022-06-23T21:37:31Z;5832;6894;dollar $;20222345;;33;1979;25987-2 +2022-06-23;2022-06-23T16:40:17Z;1297;8021;dollar $;20222344;;33;8521;25397-7 +2022-06-23;2022-06-23T01:41:31Z;4608;8811.42;dollar $;20222343;;666;4078;61219-0 +2022-06-23;2022-06-23T00:52:36Z;1217;4282.23;zing ƒ;20222342;;666;5420;46437-2 +2022-06-22;2022-06-22T17:39:19Z;3100;7680;dollar $;20222341;;33;6552;43349-7 +2022-06-22;2022-06-22T16:41:49Z;4862;7060.09;dollar $;20222340;;33;8800;79674-3 +2022-06-22;2022-06-22T15:56:03Z;1455;6332;dollar $;20222339;;666;9921;53655-1 +2022-06-22;2022-06-22T15:55:50Z;3294;1499;dollar $;20222338;;33;4425;76968-6 +2022-06-22;2022-06-22T15:43:12Z;3100;8365.63;zing ƒ;20222337;;666;4078;35815-2 +2022-06-22;2022-06-22T13:30:35Z;1217;5678;dollar $;20222336;;666;5420;60321-9 +2022-06-22;2022-06-22T11:09:28Z;5516;8666;zing ƒ;20222335;;33;1002;74601-1 +2022-06-22;2022-06-22T00:31:21Z;1945;4618.34;british pound £;20222334;;290;1979;80520-1 +2022-06-21;2022-06-21T23:37:31Z;5516;4864.36;dollar $;20222333;;290;8800;79660-7 +2022-06-21;2022-06-21T21:34:03Z;3294;5785;zing ƒ;20222332;;666;5420;40636-2 +2022-06-21;2022-06-21T18:53:46Z;5516;4104;dollar $;20222331;;666;1100;53481-2 +2022-06-21;2022-06-21T17:13:22Z;5516;9400;dollar $;20222330;;290;2400;83753-4 +2022-06-21;2022-06-21T12:30:41Z;2727;9844.13;zing ƒ;20222329;;666;4425;80343-5 +2022-06-21;2022-06-21T10:53:52Z;2727;5510.36;dollar $;20222328;;666;2400;84377-9 +2022-06-21;2022-06-21T09:04:24Z;1455;8359.83;dollar $;20222327;;33;4425;85875-1 +2022-06-21;2022-06-21T07:04:47Z;5832;10815.6;zing ƒ;20222326;;290;4078;31010-6 +2022-06-21;2022-06-21T05:46:01Z;6032;5305;euro €;20222325;;33;2400;67876-0 +2022-06-21;2022-06-21T03:48:54Z;3795;3299;dollar $;20222324;;421;1100;70528-4 +2022-06-20;2022-06-20T19:23:42Z;5986;7182.89;dollar $;20222323;;666;1100;65895-0 +2022-06-20;2022-06-20T17:27:22Z;2197;6441;zing ƒ;20222322;;666;1200;85425-0 +2022-06-20;2022-06-20T16:30:08Z;6032;4861;zing ƒ;20222321;;421;4425;60358-4 +2022-06-20;2022-06-20T15:44:37Z;4608;10833;zing ƒ;20222320;;290;1979;71179-1 +2022-06-20;2022-06-20T13:20:31Z;5516;7919;dollar $;20222319;;421;9921;26161-8 +2022-06-20;2022-06-20T07:13:17Z;5243;4484.62;british pound £;20222318;;666;1002;25393-9 +2022-06-20;2022-06-20T05:49:20Z;3284;8601.15;zing ƒ;20222317;;33;5420;50541-9 +2022-06-20;2022-06-20T04:55:00Z;5986;4775.55;dollar $;20222316;;421;1002;50962-2 +2022-06-20;2022-06-20T02:41:55Z;2727;8557;dollar $;20222315;;33;4078;36787-0 +2022-06-20;2022-06-20T00:23:32Z;5764;3305;zing ƒ;20222314;;290;1002;58586-9 +2022-06-20;2022-06-20T00:00:10Z;5987;3882;zing ƒ;20222313;;666;4078;52218-7 +2022-06-19;2022-06-19T20:21:39Z;5243;6876;dollar $;20222312;;666;8521;75584-0 +2022-06-19;2022-06-19T15:00:09Z;4965;7454.85;zing ƒ;20222311;;666;2400;55580-7 +2022-06-19;2022-06-19T12:57:10Z;5243;3481;dollar $;20222310;;33;4078;54281-6 +2022-06-19;2022-06-19T12:12:05Z;2197;7483.74;dollar $;20222309;;33;1002;64176-0 +2022-06-19;2022-06-19T11:27:36Z;4465;2028.27;dollar $;20222308;;666;4078;58461-6 +2022-06-18;2022-06-18T16:01:22Z;3795;4818.37;dollar $;20222307;;290;8800;85753-9 +2022-06-18;2022-06-18T15:18:29Z;2197;9894;dollar $;20222306;;33;4078;69283-5 +2022-06-18;2022-06-18T11:20:42Z;3795;8909.99;zing ƒ;20222305;;33;9921;81913-3 +2022-06-18;2022-06-18T10:23:55Z;5516;4021.38;dollar $;20222304;;421;1979;39911-6 +2022-06-18;2022-06-18T09:56:44Z;4862;9008;dollar $;20222303;;666;6317;31960-3 +2022-06-18;2022-06-18T04:50:34Z;1945;5599.08;dollar $;20222302;;421;8800;50331-5 +2022-06-18;2022-06-18T04:13:35Z;1217;4112.17;dollar $;20222301;;666;5420;82138-2 +2022-06-17;2022-06-17T23:48:40Z;4965;6732;british pound £;20222300;;290;2231;35152-5 +2022-06-17;2022-06-17T21:35:38Z;5516;6495;british pound £;20222299;;290;5420;31821-6 +2022-06-17;2022-06-17T20:16:39Z;3294;3991.48;zing ƒ;20222298;;666;3321;86365-0 +2022-06-17;2022-06-17T15:21:34Z;4465;5081.16;zing ƒ;20222297;;666;1979;82416-8 +2022-06-17;2022-06-17T12:34:24Z;4465;7884;british pound £;20222296;;290;2231;73006-0 +2022-06-17;2022-06-17T12:29:42Z;3294;4335.96;zing ƒ;20222295;;33;2400;45158-5 +2022-06-17;2022-06-17T11:08:46Z;3795;5930.24;dollar $;20222294;;290;4425;35421-4 +2022-06-17;2022-06-17T10:13:01Z;5986;4365.47;dollar $;20222293;;666;1002;56823-1 +2022-06-17;2022-06-17T02:42:46Z;4965;6619;dollar $;20222292;;421;1100;62411-4 +2022-06-16;2022-06-16T23:41:32Z;2197;5839;zing ƒ;20222291;;666;4078;27256-6 +2022-06-16;2022-06-16T18:20:02Z;1217;6463.78;zing ƒ;20222290;;33;8800;48042-6 +2022-06-16;2022-06-16T11:59:35Z;5764;3687.82;dollar $;20222289;;421;4425;54132-5 +2022-06-16;2022-06-16T08:22:06Z;4608;7973.35;zing ƒ;20222288;;290;9921;33020-9 +2022-06-15;2022-06-15T22:41:32Z;1455;10505.75;dollar $;20222287;;421;8521;67975-1 +2022-06-15;2022-06-15T18:42:28Z;4023;10478;dollar $;20222286;;33;3321;82912-8 +2022-06-15;2022-06-15T17:06:57Z;4965;3688;dollar $;20222285;;666;8800;85035-0 +2022-06-15;2022-06-15T15:38:00Z;2489;7903.48;british pound £;20222284;;290;8521;86418-4 +2022-06-15;2022-06-15T12:31:17Z;1455;5974;zing ƒ;20222283;;421;2400;72669-9 +2022-06-15;2022-06-15T11:12:17Z;5188;9940.55;dollar $;20222282;;421;1002;42384-9 +2022-06-15;2022-06-15T10:49:01Z;4465;8089.49;euro €;20222281;;290;2231;76851-0 +2022-06-15;2022-06-15T08:07:15Z;5832;10788.31;dollar $;20222280;;666;1979;25063-6 +2022-06-15;2022-06-15T05:23:42Z;5986;5888;dollar $;20222279;;33;6552;35569-6 +2022-06-15;2022-06-15T01:45:56Z;3100;5715;dollar $;20222278;;421;4078;43459-6 +2022-06-14;2022-06-14T21:02:54Z;2197;5507.23;dollar $;20222277;;421;5420;67669-7 +2022-06-14;2022-06-14T18:03:08Z;5986;5482.22;zing ƒ;20222276;;421;8521;86148-1 +2022-06-14;2022-06-14T17:24:43Z;6032;6774.67;zing ƒ;20222275;;290;4425;48453-6 +2022-06-14;2022-06-14T13:40:58Z;2489;7983;dollar $;20222274;;33;4425;61701-1 +2022-06-14;2022-06-14T13:21:55Z;1121;7302;dollar $;20222273;408 Request Timeout;666;5420;47709-2 +2022-06-14;2022-06-14T12:56:16Z;5832;2663.71;dollar $;20222272;;290;1002;62664-5 +2022-06-14;2022-06-14T12:45:34Z;3284;5504;dollar $;20222271;;33;1200;84979-8 +2022-06-13;2022-06-13T11:49:45Z;4023;3590;zing ƒ;20222270;;666;4078;78935-8 +2022-06-13;2022-06-13T11:04:56Z;5987;5893;dollar $;20222269;;290;6552;60838-8 +2022-06-13;2022-06-13T10:45:45Z;5516;7847.61;dollar $;20222268;;421;1100;36546-5 +2022-06-13;2022-06-13T06:51:37Z;3100;3579.75;dollar $;20222267;;290;4078;34185-9 +2022-06-13;2022-06-13T00:18:35Z;4862;9702.68;dollar $;20222266;;290;8521;39965-3 +2022-06-12;2022-06-12T23:14:11Z;2727;5119.67;dollar $;20222265;;33;2400;25049-7 +2022-06-12;2022-06-12T20:04:09Z;4965;4487.18;zing ƒ;20222264;;666;8800;55417-3 +2022-06-12;2022-06-12T17:13:44Z;5832;5324;zing ƒ;20222263;;290;2400;71195-9 +2022-06-12;2022-06-12T14:57:29Z;2197;4517.69;dollar $;20222262;;290;3321;29621-1 +2022-06-12;2022-06-12T11:25:20Z;5188;4643;dollar $;20222261;;666;4425;59225-2 +2022-06-12;2022-06-12T09:38:52Z;1121;3268.72;dollar $;20222260;;290;2400;40546-3 +2022-06-11;2022-06-11T23:41:25Z;5516;5787;dollar $;20222259;;33;3321;59503-3 +2022-06-11;2022-06-11T23:22:39Z;5986;8003;zing ƒ;20222258;;666;1979;45927-9 +2022-06-11;2022-06-11T22:22:04Z;5188;5219;dollar $;20222257;;421;6317;47729-7 +2022-06-11;2022-06-11T22:20:52Z;1217;7179.35;dollar $;20222256;;33;4078;53192-3 +2022-06-11;2022-06-11T22:18:35Z;5986;7559;british pound £;20222255;;33;4425;47895-1 +2022-06-11;2022-06-11T19:39:58Z;4023;5527;zing ƒ;20222254;;290;2400;51516-8 +2022-06-11;2022-06-11T18:54:59Z;3715;600.42;dollar $;20222253;;666;6552;41237-9 +2022-06-11;2022-06-11T13:45:07Z;1121;4998;dollar $;20222252;;290;2400;46271-7 +2022-06-11;2022-06-11T11:03:29Z;3294;5709.99;zing ƒ;20222251;;421;2400;58454-7 +2022-06-11;2022-06-11T07:40:07Z;2489;7851;dollar $;20222250;;421;8521;44540-2 +2022-06-11;2022-06-11T05:36:42Z;5243;6661.31;dollar $;20222249;;421;2231;25575-3 +2022-06-11;2022-06-11T03:28:25Z;2489;4891;dollar $;20222248;;290;5420;32925-1 +2022-06-11;2022-06-11T00:56:05Z;3294;3216;dollar $;20222247;;421;5420;48285-7 +2022-06-10;2022-06-10T22:47:31Z;2197;5295;dollar $;20222246;;290;8800;63641-2 +2022-06-10;2022-06-10T18:41:41Z;1455;10684.36;dollar $;20222245;;290;6552;32025-8 +2022-06-10;2022-06-10T14:01:31Z;4862;8068;dollar $;20222244;;290;6317;82684-1 +2022-06-10;2022-06-10T09:50:21Z;2727;5733;dollar $;20222243;;666;2231;79426-9 +2022-06-10;2022-06-10T08:19:27Z;6032;5576.46;dollar $;20222242;;33;5420;44659-3 +2022-06-10;2022-06-10T02:51:39Z;1121;10142;dollar $;20222241;;33;2400;36594-6 +2022-06-09;2022-06-09T23:30:49Z;1455;4575.13;british pound £;20222240;;33;4425;69503-8 +2022-06-09;2022-06-09T15:26:43Z;1297;7750.11;dollar $;20222239;;421;6552;52309-6 +2022-06-09;2022-06-09T13:59:59Z;5987;7320.73;dollar $;20222238;;290;2400;63497-4 +2022-06-09;2022-06-09T11:37:07Z;3294;2990.09;dollar $;20222237;;666;1002;84239-5 +2022-06-09;2022-06-09T10:19:10Z;1217;9852;dollar $;20222236;;666;1100;28370-6 +2022-06-09;2022-06-09T04:39:28Z;6032;1989;dollar $;20222235;;666;1100;28057-4 +2022-06-09;2022-06-09T00:29:24Z;4465;11602.97;zing ƒ;20222234;;290;3321;31373-6 +2022-06-08;2022-06-08T21:52:44Z;4023;6995;british pound £;20222233;;421;2400;50530-5 +2022-06-08;2022-06-08T21:21:05Z;3284;4423;dollar $;20222232;;421;1200;44354-1 +2022-06-08;2022-06-08T20:32:31Z;4023;1064;british pound £;20222231;;33;8800;53724-1 +2022-06-08;2022-06-08T17:05:04Z;2727;3356;dollar $;20222230;;33;2400;70002-4 +2022-06-08;2022-06-08T10:12:07Z;4023;5587.93;dollar $;20222229;;421;9921;58600-0 +2022-06-08;2022-06-08T04:17:36Z;5188;7673;euro €;20222228;;421;1200;77302-3 +2022-06-07;2022-06-07T19:48:53Z;3100;2348;dollar $;20222227;;666;5420;64258-3 +2022-06-07;2022-06-07T16:10:13Z;3795;3819;dollar $;20222226;;33;4078;48383-3 +2022-06-07;2022-06-07T14:31:00Z;2197;6230.14;zing ƒ;20222225;;666;5420;82346-3 +2022-06-07;2022-06-07T09:37:47Z;4862;5481;dollar $;20222224;;666;8521;52785-9 +2022-06-07;2022-06-07T05:38:41Z;3715;8749;dollar $;20222223;;33;6317;42877-0 +2022-06-07;2022-06-07T03:00:21Z;4023;6775.08;dollar $;20222222;;666;9921;78787-0 +2022-06-06;2022-06-06T18:09:14Z;5987;5490.45;dollar $;20222221;;290;1100;40569-4 +2022-06-06;2022-06-06T17:01:45Z;5764;8148.49;dollar $;20222220;;33;1200;35935-8 +2022-06-06;2022-06-06T14:20:56Z;3294;9447.75;dollar $;20222219;;421;1100;46299-1 +2022-06-06;2022-06-06T13:53:21Z;3294;6186;dollar $;20222218;;290;6552;72571-8 +2022-06-06;2022-06-06T13:37:08Z;6032;9197;dollar $;20222217;;33;4078;74795-2 +2022-06-06;2022-06-06T11:27:01Z;1121;6475.39;dollar $;20222216;;421;9921;55142-4 +2022-06-05;2022-06-05T23:31:46Z;5516;3602.2;zing ƒ;20222215;;666;4425;60210-6 +2022-06-05;2022-06-05T22:06:52Z;2197;8343;dollar $;20222214;;666;1002;26453-1 +2022-06-05;2022-06-05T20:50:05Z;1217;6035.49;dollar $;20222213;;33;1979;34769-5 +2022-06-05;2022-06-05T19:23:38Z;1217;6524.77;dollar $;20222212;;290;6552;36774-1 +2022-06-05;2022-06-05T14:53:55Z;1455;6490.76;dollar $;20222211;;33;1979;75558-2 +2022-06-05;2022-06-05T14:15:25Z;5764;2471.18;british pound £;20222210;;666;5420;33750-2 +2022-06-05;2022-06-05T09:31:32Z;1121;8933.32;dollar $;20222209;;290;8800;27265-4 +2022-06-05;2022-06-05T06:04:42Z;4465;4571.04;zing ƒ;20222208;;666;2400;55880-4 +2022-06-05;2022-06-05T03:53:05Z;1455;6217.33;british pound £;20222207;;421;4078;59305-3 +2022-06-04;2022-06-04T22:07:58Z;3100;9648;british pound £;20222206;;290;4425;64148-9 +2022-06-04;2022-06-04T20:15:36Z;5986;7996.26;dollar $;20222205;;421;2231;50934-6 +2022-06-04;2022-06-04T16:40:12Z;5188;6050;dollar $;20222204;;290;1200;56061-4 +2022-06-04;2022-06-04T16:10:01Z;4862;6188.5;dollar $;20222203;;421;3321;51926-0 +2022-06-04;2022-06-04T13:06:57Z;5832;5164.23;dollar $;20222202;;290;8800;50866-1 +2022-06-04;2022-06-04T11:36:18Z;3294;9751.41;zing ƒ;20222201;;666;4078;39253-7 +2022-06-04;2022-06-04T11:35:52Z;1297;8085.52;dollar $;20222200;;290;6317;33277-9 +2022-06-04;2022-06-04T09:12:12Z;1945;4096;british pound £;20222199;;33;1200;50438-7 +2022-06-04;2022-06-04T07:11:38Z;5987;7696.62;dollar $;20222198;;666;8800;82563-1 +2022-06-04;2022-06-04T05:06:24Z;5986;5257.01;zing ƒ;20222197;;290;3321;65697-5 +2022-06-03;2022-06-03T22:27:05Z;6032;6674.03;dollar $;20222196;;666;4078;25710-8 +2022-06-03;2022-06-03T10:43:41Z;5516;7196.57;dollar $;20222195;;421;6317;24786-4 +2022-06-02;2022-06-02T21:24:04Z;5832;3669;dollar $;20222194;;421;6552;64667-7 +2022-06-02;2022-06-02T15:32:06Z;4862;7557.96;dollar $;20222193;;421;1002;59627-0 +2022-06-02;2022-06-02T15:31:03Z;3100;3903;dollar $;20222192;;666;6317;26224-4 +2022-06-02;2022-06-02T14:34:03Z;5243;8209;dollar $;20222191;;666;6317;30017-7 +2022-06-02;2022-06-02T14:08:12Z;1455;6998.07;dollar $;20222190;;666;8521;47622-9 +2022-06-02;2022-06-02T13:15:06Z;2727;7132;dollar $;20222189;;421;2400;30389-9 +2022-06-02;2022-06-02T13:07:54Z;3795;1972;british pound £;20222188;;33;2231;83868-6 +2022-06-02;2022-06-02T07:17:46Z;5516;6652;dollar $;20222187;;421;6552;42231-2 +2022-06-02;2022-06-02T06:18:55Z;5764;2014.4;british pound £;20222186;;421;5420;28598-5 +2022-06-02;2022-06-02T05:38:30Z;1945;8361;dollar $;20222185;;666;1200;64463-9 +2022-06-01;2022-06-01T21:32:07Z;4608;7066;dollar $;20222184;;666;3321;69903-1 +2022-06-01;2022-06-01T19:32:28Z;3294;3154.54;dollar $;20222183;;421;4078;63721-8 +2022-06-01;2022-06-01T17:31:04Z;4608;8474.57;british pound £;20222182;;290;8521;83875-8 +2022-06-01;2022-06-01T10:34:20Z;1945;6243;zing ƒ;20222181;;666;1979;79056-4 +2022-06-01;2022-06-01T06:36:29Z;1455;7756.27;dollar $;20222180;;421;8521;72313-3 +2022-06-01;2022-06-01T03:56:01Z;3795;10566;dollar $;20222179;;33;4425;33639-9 +2022-06-01;2022-06-01T02:42:56Z;4465;9647;dollar $;20222178;;290;1100;80351-3 +2022-06-01;2022-06-01T02:27:08Z;5832;9750.09;zing ƒ;20222177;;421;9921;83535-8 +2022-05-31;2022-05-31T21:04:29Z;3795;4924;zing ƒ;20222176;;421;1200;62056-0 +2022-05-31;2022-05-31T21:00:20Z;3795;6940;dollar $;20222175;;290;6317;82642-4 +2022-05-31;2022-05-31T20:49:09Z;6032;1870;dollar $;20222174;;666;5420;27875-4 +2022-05-31;2022-05-31T09:33:27Z;2197;8332.4;zing ƒ;20222173;;290;6552;25972-6 +2022-05-31;2022-05-31T05:57:50Z;3795;2391;zing ƒ;20222172;;33;5420;25204-8 +2022-05-30;2022-05-30T19:54:22Z;1297;4949;dollar $;20222171;;290;3321;81530-9 +2022-05-30;2022-05-30T11:57:41Z;5516;7134.45;dollar $;20222170;;421;9921;68051-5 +2022-05-30;2022-05-30T08:49:40Z;4465;9672;zing ƒ;20222169;408 Request Timeout;666;2231;58300-0 +2022-05-30;2022-05-30T06:18:41Z;4965;2954;british pound £;20222168;;290;6552;73702-9 +2022-05-30;2022-05-30T05:32:02Z;3100;9866.51;zing ƒ;20222167;;421;6552;59371-2 +2022-05-30;2022-05-30T01:14:21Z;1217;1250;zing ƒ;20222166;;666;2400;68017-6 +2022-05-29;2022-05-29T23:32:03Z;3715;9520;zing ƒ;20222165;;290;2400;59137-9 +2022-05-29;2022-05-29T22:17:16Z;1121;9078.63;zing ƒ;20222164;;290;2400;39417-3 +2022-05-29;2022-05-29T09:35:37Z;3284;7753.8;zing ƒ;20222163;;421;8800;48433-8 +2022-05-28;2022-05-28T23:25:27Z;2727;9933;dollar $;20222162;;33;4078;24848-8 +2022-05-28;2022-05-28T23:05:53Z;5764;7644.51;dollar $;20222161;;33;1100;64082-1 +2022-05-28;2022-05-28T20:39:01Z;4965;6631.45;dollar $;20222160;;421;8521;26393-9 +2022-05-28;2022-05-28T19:39:18Z;4965;9056.06;dollar $;20222159;;421;5420;49698-2 +2022-05-28;2022-05-28T16:11:56Z;5188;4210.76;zing ƒ;20222158;;666;1979;63026-2 +2022-05-28;2022-05-28T11:18:36Z;3795;4928;dollar $;20222157;;421;4078;76911-2 +2022-05-28;2022-05-28T08:32:02Z;5986;11826.25;dollar $;20222156;;421;1979;37726-7 +2022-05-28;2022-05-28T03:49:23Z;1455;10922.69;dollar $;20222155;;666;1200;81112-9 +2022-05-27;2022-05-27T13:10:47Z;1217;10274.38;dollar $;20222154;;290;1002;76522-4 +2022-05-27;2022-05-27T11:15:24Z;5832;7613.92;dollar $;20222153;;33;8521;81806-9 +2022-05-27;2022-05-27T10:23:43Z;5764;5042.13;british pound £;20222152;;666;1200;32246-8 +2022-05-27;2022-05-27T09:48:35Z;4965;4317.17;dollar $;20222151;;290;2231;27424-8 +2022-05-27;2022-05-27T07:32:43Z;5516;7674.19;dollar $;20222150;;421;1002;79966-1 +2022-05-27;2022-05-27T06:39:43Z;4023;10924;euro €;20222149;;666;5420;76466-2 +2022-05-27;2022-05-27T05:40:45Z;1297;5785;dollar $;20222148;;666;5420;81652-0 +2022-05-27;2022-05-27T04:27:49Z;3294;4996.72;zing ƒ;20222147;;421;1200;42262-9 +2022-05-26;2022-05-26T15:41:54Z;4023;6274;dollar $;20222146;;421;6317;71712-7 +2022-05-26;2022-05-26T09:27:47Z;1121;3194.3;dollar $;20222145;;666;2231;71017-5 +2022-05-26;2022-05-26T05:23:44Z;2197;7398;dollar $;20222144;;290;9921;67996-2 +2022-05-26;2022-05-26T04:49:11Z;4465;8381;zing ƒ;20222143;;421;9921;52123-2 +2022-05-26;2022-05-26T01:08:34Z;1455;4868.52;dollar $;20222142;;421;2400;60111-0 +2022-05-25;2022-05-25T22:00:41Z;4965;8425.51;zing ƒ;20222141;;290;6552;38761-1 +2022-05-25;2022-05-25T17:21:20Z;2727;9639;zing ƒ;20222140;;666;5420;85260-1 +2022-05-25;2022-05-25T16:44:13Z;3715;6687;zing ƒ;20222139;;290;6317;63568-1 +2022-05-25;2022-05-25T16:34:22Z;2489;6356.27;dollar $;20222138;;666;8521;44873-6 +2022-05-25;2022-05-25T15:20:21Z;2489;4683.5;dollar $;20222137;;421;2231;79755-4 +2022-05-25;2022-05-25T04:16:37Z;1455;4921.7;zing ƒ;20222136;;421;8521;46423-2 +2022-05-25;2022-05-25T03:00:48Z;1217;5334.72;dollar $;20222135;;33;5420;38955-0 +2022-05-25;2022-05-25T02:33:34Z;5188;6308.31;dollar $;20222134;;421;3321;82593-5 +2022-05-24;2022-05-24T19:57:47Z;1297;4523.56;british pound £;20222133;;666;2231;49684-2 +2022-05-24;2022-05-24T17:36:21Z;2197;6717;british pound £;20222132;;421;4078;75979-6 +2022-05-24;2022-05-24T05:45:10Z;1297;4824.93;dollar $;20222131;;421;9921;74225-6 +2022-05-24;2022-05-24T04:56:31Z;3795;11771.01;dollar $;20222130;;290;6552;40828-0 +2022-05-23;2022-05-23T18:58:10Z;5764;3624.69;dollar $;20222129;;290;8521;86099-7 +2022-05-23;2022-05-23T16:56:42Z;1297;4396;dollar $;20222128;;666;1200;30624-7 +2022-05-23;2022-05-23T14:51:02Z;1121;844.66;british pound £;20222127;;421;1002;32340-0 +2022-05-23;2022-05-23T12:00:21Z;1217;7062.66;dollar $;20222126;;666;4078;34847-3 +2022-05-23;2022-05-23T11:25:02Z;1455;6682.82;dollar $;20222125;;290;6317;58643-7 +2022-05-23;2022-05-23T04:09:42Z;5188;4367;dollar $;20222124;;33;4425;30992-5 +2022-05-22;2022-05-22T19:25:51Z;3715;5949;dollar $;20222123;;290;5420;75671-2 +2022-05-22;2022-05-22T13:39:48Z;3100;7772.32;dollar $;20222122;;290;2231;35363-5 +2022-05-22;2022-05-22T06:01:51Z;1945;10755.4;british pound £;20222121;;290;1200;38194-9 +2022-05-22;2022-05-22T01:36:16Z;3284;2894.31;euro €;20222120;;666;8521;54271-6 +2022-05-22;2022-05-22T00:46:45Z;5764;5326.63;dollar $;20222119;;33;8521;70235-6 +2022-05-22;2022-05-22T00:24:39Z;2727;4951;dollar $;20222118;;290;4425;64976-3 +2022-05-21;2022-05-21T23:53:45Z;2727;8586;dollar $;20222117;;421;4078;78546-3 +2022-05-21;2022-05-21T12:58:06Z;3284;5664;dollar $;20222116;;666;3321;41411-4 +2022-05-21;2022-05-21T11:15:32Z;5764;7546.13;dollar $;20222115;;421;8800;26042-6 +2022-05-21;2022-05-21T09:05:02Z;1945;3871.65;dollar $;20222114;;290;3321;57825-6 +2022-05-21;2022-05-21T08:49:23Z;2489;11910.59;dollar $;20222113;;290;9921;68939-0 +2022-05-21;2022-05-21T07:53:37Z;4862;8551;dollar $;20222112;;666;6552;35642-4 +2022-05-21;2022-05-21T05:57:25Z;1121;6873.79;dollar $;20222111;;666;1979;72533-4 +2022-05-21;2022-05-21T00:30:50Z;4023;6353.51;dollar $;20222110;;290;4425;63772-9 +2022-05-20;2022-05-20T15:19:11Z;3294;4378.21;dollar $;20222109;;290;1200;34873-7 +2022-05-20;2022-05-20T06:50:14Z;4862;8260.11;dollar $;20222108;;421;8800;39374-2 +2022-05-20;2022-05-20T05:47:42Z;5516;4596;euro €;20222107;;290;9921;56115-5 +2022-05-20;2022-05-20T00:49:59Z;4465;7704;dollar $;20222106;;421;4425;71973-1 +2022-05-19;2022-05-19T21:48:21Z;1217;4221;dollar $;20222105;;290;6317;51654-1 +2022-05-19;2022-05-19T18:06:08Z;3284;7144.76;euro €;20222104;;421;1002;28149-0 +2022-05-19;2022-05-19T17:39:51Z;2489;7333.27;dollar $;20222103;;33;4078;49738-3 +2022-05-19;2022-05-19T12:02:09Z;3294;3515;dollar $;20222102;;666;2400;57107-5 +2022-05-19;2022-05-19T11:25:01Z;1121;3725;dollar $;20222101;;666;8521;64464-2 +2022-05-19;2022-05-19T10:56:43Z;1297;10704;zing ƒ;20222100;;290;1002;35827-8 +2022-05-19;2022-05-19T10:05:59Z;5986;9721;british pound £;20222099;;666;8521;50351-4 +2022-05-19;2022-05-19T09:21:34Z;3284;5760.82;zing ƒ;20222098;;666;2231;40853-0 +2022-05-19;2022-05-19T08:24:55Z;5188;7340.83;dollar $;20222097;;290;2231;74868-0 +2022-05-19;2022-05-19T07:21:08Z;1455;6170.73;dollar $;20222096;;33;1100;76738-7 +2022-05-19;2022-05-19T07:18:52Z;2727;11683;british pound £;20222095;;421;4425;73294-7 +2022-05-19;2022-05-19T02:20:06Z;3795;4657;euro €;20222094;;666;8800;65300-6 +2022-05-18;2022-05-18T22:50:09Z;4862;3406.95;zing ƒ;20222093;;33;3321;26076-4 +2022-05-18;2022-05-18T19:44:13Z;1217;6896.77;dollar $;20222092;;666;1100;61795-2 +2022-05-18;2022-05-18T10:31:49Z;3715;6558.08;zing ƒ;20222091;;33;9921;83139-0 +2022-05-18;2022-05-18T09:04:31Z;5243;6787.34;dollar $;20222090;;33;2231;33219-5 +2022-05-18;2022-05-18T09:01:28Z;3100;6988;zing ƒ;20222089;;666;1200;63217-8 +2022-05-18;2022-05-18T07:44:47Z;1121;8863;british pound £;20222088;;33;4425;38721-4 +2022-05-17;2022-05-17T13:56:42Z;3100;4335.05;dollar $;20222087;;666;1002;68375-0 +2022-05-17;2022-05-17T13:27:05Z;1121;10471.23;british pound £;20222086;;666;8521;26534-1 +2022-05-17;2022-05-17T09:17:42Z;5516;3906.73;zing ƒ;20222085;;33;1979;45859-3 +2022-05-16;2022-05-16T18:25:18Z;3100;9798;zing ƒ;20222084;;666;9921;56804-7 +2022-05-16;2022-05-16T16:12:19Z;2489;7178.46;dollar $;20222083;;421;1200;30713-3 +2022-05-16;2022-05-16T14:45:06Z;5188;9534.93;dollar $;20222082;;33;2231;77839-1 +2022-05-16;2022-05-16T08:01:41Z;2197;3809.2;dollar $;20222081;;33;4078;25466-6 +2022-05-16;2022-05-16T02:33:32Z;5243;11559.41;dollar $;20222080;;33;9921;80853-7 +2022-05-15;2022-05-15T15:43:45Z;5987;5104.92;zing ƒ;20222079;;421;4078;67481-3 +2022-05-15;2022-05-15T12:44:19Z;5986;3876;dollar $;20222078;;33;2400;47771-9 +2022-05-15;2022-05-15T12:29:36Z;3795;10348.58;zing ƒ;20222077;;290;3321;77256-8 +2022-05-15;2022-05-15T03:34:20Z;2727;9104;dollar $;20222076;;290;1979;62719-0 +2022-05-15;2022-05-15T03:25:49Z;1121;10356;dollar $;20222075;;33;1979;28234-7 +2022-05-15;2022-05-15T02:17:22Z;5243;4125.3;dollar $;20222074;;290;9921;48324-5 +2022-05-15;2022-05-15T00:50:32Z;5516;3593.49;dollar $;20222073;;33;8521;29994-0 +2022-05-14;2022-05-14T17:01:01Z;5516;8858.9;british pound £;20222072;;666;1100;42814-9 +2022-05-14;2022-05-14T15:47:20Z;5516;10542.48;zing ƒ;20222071;;421;8800;45891-8 +2022-05-14;2022-05-14T12:07:57Z;5986;6491;zing ƒ;20222070;;33;6317;38493-1 +2022-05-13;2022-05-13T23:54:06Z;1121;8212.42;dollar $;20222069;;33;2400;43966-4 +2022-05-13;2022-05-13T19:41:11Z;2489;5364.08;dollar $;20222068;;33;4425;67501-1 +2022-05-13;2022-05-13T19:26:38Z;5832;9626.8;zing ƒ;20222067;;290;3321;34049-7 +2022-05-13;2022-05-13T17:50:05Z;4465;4848;zing ƒ;20222066;;666;3321;32859-1 +2022-05-13;2022-05-13T17:04:32Z;6032;2911;dollar $;20222065;;421;5420;82243-2 +2022-05-13;2022-05-13T08:37:53Z;2489;6028.4;zing ƒ;20222064;;666;4078;68935-5 +2022-05-12;2022-05-12T23:26:37Z;2197;6413.12;zing ƒ;20222063;;421;1100;84965-4 +2022-05-12;2022-05-12T23:06:29Z;2489;8126;dollar $;20222062;;421;4425;71428-5 +2022-05-12;2022-05-12T16:36:08Z;1121;6073;dollar $;20222061;;666;4078;46455-4 +2022-05-12;2022-05-12T14:23:12Z;5764;6338;dollar $;20222060;;33;6317;29303-9 +2022-05-12;2022-05-12T12:44:28Z;4965;5151;dollar $;20222059;;33;9921;51562-8 +2022-05-12;2022-05-12T10:56:18Z;4965;9292.93;zing ƒ;20222058;;33;8521;28727-8 +2022-05-12;2022-05-12T05:59:32Z;5987;1408;dollar $;20222057;;290;2231;50387-9 +2022-05-12;2022-05-12T02:34:16Z;4608;5369.5;british pound £;20222056;;33;1979;83063-4 +2022-05-12;2022-05-12T01:23:33Z;6032;9479;dollar $;20222055;;666;1200;58402-8 +2022-05-11;2022-05-11T22:54:37Z;4608;5970.03;dollar $;20222054;;33;8521;36798-8 +2022-05-11;2022-05-11T18:20:58Z;2197;4315.69;dollar $;20222053;;290;4425;54207-4 +2022-05-11;2022-05-11T16:53:29Z;1945;9030.19;dollar $;20222052;;33;8521;85512-0 +2022-05-11;2022-05-11T15:09:41Z;2489;10612;british pound £;20222051;;290;1002;58225-6 +2022-05-11;2022-05-11T14:43:51Z;4965;3629;dollar $;20222050;;33;6317;67738-4 +2022-05-11;2022-05-11T12:00:09Z;5764;9846;dollar $;20222049;;421;1002;56947-2 +2022-05-11;2022-05-11T09:15:23Z;4465;9269.8;dollar $;20222048;;33;5420;56665-1 +2022-05-11;2022-05-11T04:54:36Z;3294;2506.54;zing ƒ;20222047;;666;4078;29816-8 +2022-05-11;2022-05-11T04:27:40Z;1455;5575;dollar $;20222046;;33;2231;76822-6 +2022-05-11;2022-05-11T04:16:53Z;1217;6790.39;dollar $;20222045;;666;6317;60088-4 +2022-05-11;2022-05-11T03:13:08Z;4465;6573;dollar $;20222044;;421;2400;26694-5 +2022-05-11;2022-05-11T03:01:28Z;5188;7477.51;dollar $;20222043;;421;8521;48442-2 +2022-05-10;2022-05-10T21:31:22Z;1297;6866.17;dollar $;20222042;;421;2231;48998-9 +2022-05-10;2022-05-10T20:08:43Z;1121;4813;dollar $;20222041;;290;2231;32419-4 +2022-05-10;2022-05-10T16:22:08Z;5516;6824;dollar $;20222040;;666;9921;77768-5 +2022-05-10;2022-05-10T14:58:47Z;5987;3217;dollar $;20222039;;666;4425;63446-8 +2022-05-10;2022-05-10T12:03:04Z;5243;6077;dollar $;20222038;;421;2231;73625-3 +2022-05-10;2022-05-10T09:29:50Z;1455;7273;zing ƒ;20222037;;666;5420;29680-9 +2022-05-10;2022-05-10T01:23:16Z;4465;6869.87;dollar $;20222036;;290;8521;79433-8 +2022-05-09;2022-05-09T23:23:31Z;3100;6925.63;dollar $;20222035;;421;6552;64142-2 +2022-05-09;2022-05-09T22:43:24Z;1945;6351.06;british pound £;20222034;;666;1002;50059-0 +2022-05-09;2022-05-09T17:02:15Z;3284;104;dollar $;20222033;;666;2231;74766-2 +2022-05-09;2022-05-09T11:54:30Z;1945;9181.96;dollar $;20222032;;290;1979;64842-4 +2022-05-09;2022-05-09T04:10:51Z;1297;6549.55;zing ƒ;20222031;;666;6552;85282-4 +2022-05-09;2022-05-09T03:14:31Z;3100;5758;british pound £;20222030;;421;6317;31767-1 +2022-05-09;2022-05-09T02:03:33Z;3795;12430;zing ƒ;20222029;;33;1100;50597-7 +2022-05-08;2022-05-08T21:04:16Z;5986;10870;dollar $;20222028;;666;5420;41439-0 +2022-05-08;2022-05-08T14:44:06Z;1121;7108.31;dollar $;20222027;;666;4078;29075-5 +2022-05-08;2022-05-08T03:13:18Z;5243;8772;dollar $;20222026;;33;4425;79021-5 +2022-05-07;2022-05-07T22:50:45Z;1945;4474.31;dollar $;20222025;;666;8800;26040-6 +2022-05-07;2022-05-07T22:26:05Z;4023;4654;zing ƒ;20222024;;421;4078;53772-1 +2022-05-07;2022-05-07T21:01:59Z;1297;7942.56;british pound £;20222023;;290;1979;67594-1 +2022-05-07;2022-05-07T14:54:24Z;4965;4966;dollar $;20222022;;666;3321;51991-4 +2022-05-07;2022-05-07T13:35:40Z;6032;6530;zing ƒ;20222021;;421;1100;74723-1 +2022-05-07;2022-05-07T07:37:42Z;3100;6743.97;dollar $;20222020;;33;8800;85974-9 +2022-05-07;2022-05-07T07:03:15Z;3100;5096;british pound £;20222019;;421;1002;82547-6 +2022-05-07;2022-05-07T02:18:48Z;5188;4472.82;zing ƒ;20222018;;33;9921;83088-3 +2022-05-07;2022-05-07T00:49:16Z;1217;5406.62;british pound £;20222017;;421;9921;63555-2 +2022-05-07;2022-05-07T00:10:14Z;2197;10053;dollar $;20222016;;666;3321;73775-1 +2022-05-06;2022-05-06T22:14:57Z;2489;8981;zing ƒ;20222015;;290;1200;74442-9 +2022-05-06;2022-05-06T22:04:29Z;6032;6136;euro €;20222014;;421;4078;36919-8 +2022-05-06;2022-05-06T20:55:43Z;5243;6614;dollar $;20222013;;421;3321;49521-9 +2022-05-06;2022-05-06T11:05:03Z;6032;2593.89;dollar $;20222012;;421;8800;46376-8 +2022-05-06;2022-05-06T10:24:06Z;5987;8661;dollar $;20222011;;666;2400;64354-7 +2022-05-06;2022-05-06T07:33:17Z;3100;12206;dollar $;20222010;;666;9921;83722-2 +2022-05-06;2022-05-06T06:31:19Z;1297;7881;dollar $;20222009;;290;5420;67729-1 +2022-05-06;2022-05-06T00:40:15Z;4465;10849.95;dollar $;20222008;;666;6552;71109-7 +2022-05-05;2022-05-05T21:07:27Z;1121;5581.41;dollar $;20222007;;421;4078;51650-8 +2022-05-05;2022-05-05T16:26:11Z;1217;3762;british pound £;20222006;;33;1002;47874-8 +2022-05-05;2022-05-05T14:26:35Z;2197;2507;dollar $;20222005;;666;6552;52684-9 +2022-05-05;2022-05-05T12:51:27Z;1945;3712;dollar $;20222004;;290;5420;56210-2 +2022-05-05;2022-05-05T10:38:26Z;5832;3758;british pound £;20222003;;421;6317;79933-7 +2022-05-05;2022-05-05T10:38:20Z;4465;8869;dollar $;20222002;;421;9921;56844-7 +2022-05-05;2022-05-05T08:12:06Z;1217;2459;dollar $;20222001;;421;4078;51214-0 +2022-05-05;2022-05-05T05:29:03Z;4965;7488;dollar $;20222000;;666;3321;85480-8 +2022-05-05;2022-05-05T04:12:11Z;5188;6256.21;dollar $;20221999;;290;2400;44795-5 +2022-05-05;2022-05-05T03:29:42Z;1217;8353.85;zing ƒ;20221998;;33;2400;40133-5 +2022-05-05;2022-05-05T00:49:06Z;4465;7165.62;dollar $;20221997;;421;6552;46108-1 +2022-05-04;2022-05-04T22:27:33Z;3100;7432;dollar $;20221996;;290;1002;60268-7 +2022-05-04;2022-05-04T21:52:22Z;1121;5741;zing ƒ;20221995;;421;1979;57506-2 +2022-05-04;2022-05-04T20:52:38Z;1217;5883;dollar $;20221994;;290;1200;80125-1 +2022-05-04;2022-05-04T14:48:26Z;3100;8164;dollar $;20221993;;33;6552;77620-2 +2022-05-04;2022-05-04T11:24:36Z;5188;8491;euro €;20221992;;666;1002;61216-8 +2022-05-04;2022-05-04T10:09:01Z;5243;1458;dollar $;20221991;;666;5420;81783-7 +2022-05-04;2022-05-04T09:08:50Z;1217;7274;euro €;20221990;;421;6317;49895-1 +2022-05-04;2022-05-04T04:55:24Z;4862;1442;dollar $;20221989;;290;2400;39636-4 +2022-05-03;2022-05-03T19:12:38Z;5243;7450.62;dollar $;20221988;;666;2400;85500-2 +2022-05-03;2022-05-03T10:55:53Z;5986;8806.2;dollar $;20221987;;290;8800;63413-8 +2022-05-03;2022-05-03T10:31:47Z;5764;3887;zing ƒ;20221986;;33;2231;76059-3 +2022-05-03;2022-05-03T10:19:49Z;1297;7129.25;dollar $;20221985;;421;3321;53077-2 +2022-05-03;2022-05-03T08:07:07Z;2727;1340.24;dollar $;20221984;;33;6317;38273-6 +2022-05-02;2022-05-02T18:46:38Z;1297;4632.72;dollar $;20221983;;290;1100;33874-2 +2022-05-02;2022-05-02T17:07:31Z;5764;6532;british pound £;20221982;;666;6552;61724-7 +2022-05-02;2022-05-02T11:03:34Z;3100;5189;dollar $;20221981;;666;1100;68608-0 +2022-05-02;2022-05-02T10:39:24Z;3284;2051;dollar $;20221980;;33;3321;32423-0 +2022-05-01;2022-05-01T22:32:01Z;6032;7914.26;british pound £;20221979;;421;8800;86142-5 +2022-05-01;2022-05-01T10:57:11Z;2197;5007;dollar $;20221978;;421;8521;53916-7 +2022-05-01;2022-05-01T10:05:31Z;1945;6563;dollar $;20221977;;666;3321;80657-1 +2022-05-01;2022-05-01T09:19:19Z;3795;7295;dollar $;20221976;;290;1200;53911-3 +2022-05-01;2022-05-01T07:08:39Z;5764;11149.3;dollar $;20221975;;33;4078;68798-5 +2022-05-01;2022-05-01T04:21:43Z;5764;10502.92;dollar $;20221974;;33;5420;49098-8 +2022-05-01;2022-05-01T02:49:53Z;2489;2178;zing ƒ;20221973;;421;9921;58464-8 +2022-05-01;2022-05-01T02:36:34Z;2489;2231;dollar $;20221972;;33;6552;44205-2 +2022-04-30;2022-04-30T19:33:19Z;5832;6984;euro €;20221971;;290;1979;49795-4 +2022-04-30;2022-04-30T14:39:44Z;1217;3114;dollar $;20221970;;33;5420;43809-0 +2022-04-30;2022-04-30T10:13:37Z;5832;8149;dollar $;20221969;;290;4425;73682-9 +2022-04-30;2022-04-30T08:24:34Z;2489;8652.44;dollar $;20221968;;33;6552;64356-5 +2022-04-30;2022-04-30T06:03:39Z;5188;5679;british pound £;20221967;;290;6317;27731-3 +2022-04-30;2022-04-30T06:02:06Z;3715;5197;british pound £;20221966;;421;6317;77487-1 +2022-04-30;2022-04-30T03:29:01Z;1121;4558;euro €;20221965;;666;6552;63140-6 +2022-04-29;2022-04-29T23:02:04Z;6032;4686;dollar $;20221964;;666;5420;84028-5 +2022-04-29;2022-04-29T20:03:14Z;1217;8979.67;dollar $;20221963;;290;2400;52409-1 +2022-04-29;2022-04-29T19:39:00Z;5188;6946.14;dollar $;20221962;;33;2231;66267-9 +2022-04-29;2022-04-29T18:04:07Z;6032;6297.17;dollar $;20221961;;666;6317;47231-0 +2022-04-29;2022-04-29T14:18:32Z;5188;3991;zing ƒ;20221960;;421;4425;44186-1 +2022-04-29;2022-04-29T13:43:52Z;1217;4901.48;dollar $;20221959;;290;9921;44325-5 +2022-04-29;2022-04-29T13:00:06Z;4023;4309.78;zing ƒ;20221958;;666;2400;29757-0 +2022-04-29;2022-04-29T11:58:14Z;1217;3435;dollar $;20221957;;290;1002;38941-4 +2022-04-29;2022-04-29T09:22:41Z;4023;7901.63;zing ƒ;20221956;;666;8800;38224-8 +2022-04-29;2022-04-29T08:47:30Z;5243;5554;dollar $;20221955;;666;5420;32309-8 +2022-04-29;2022-04-29T08:43:46Z;3284;2485.84;british pound £;20221954;;33;8521;76427-4 +2022-04-29;2022-04-29T07:38:19Z;3284;5634.55;dollar $;20221953;;666;5420;63418-0 +2022-04-29;2022-04-29T07:09:52Z;4465;2754.72;dollar $;20221952;;666;6317;30405-4 +2022-04-28;2022-04-28T20:27:53Z;6032;4913.16;british pound £;20221951;;421;6317;67046-1 +2022-04-28;2022-04-28T18:06:19Z;5832;9491;zing ƒ;20221950;;666;4425;43369-3 +2022-04-28;2022-04-28T15:03:31Z;5188;8469.21;zing ƒ;20221949;;290;1002;45949-8 +2022-04-28;2022-04-28T13:57:42Z;5986;3510;dollar $;20221948;;421;1002;75560-4 +2022-04-28;2022-04-28T13:31:18Z;6032;5453;dollar $;20221947;;666;1100;67806-4 +2022-04-28;2022-04-28T11:47:14Z;6032;7479.6;dollar $;20221946;;421;3321;77655-6 +2022-04-28;2022-04-28T11:18:14Z;5188;2051;dollar $;20221945;;290;4078;45569-1 +2022-04-28;2022-04-28T07:45:41Z;4465;6597.17;dollar $;20221944;;666;2231;37046-8 +2022-04-28;2022-04-28T06:50:06Z;3294;6860;dollar $;20221943;;666;6317;67458-2 +2022-04-28;2022-04-28T06:25:52Z;5516;6886;british pound £;20221942;;290;5420;82846-3 +2022-04-27;2022-04-27T22:11:18Z;3795;11232;dollar $;20221941;;33;8800;77356-6 +2022-04-27;2022-04-27T19:48:21Z;4862;4071.92;british pound £;20221940;;666;5420;60152-0 +2022-04-27;2022-04-27T16:47:07Z;1297;7504;dollar $;20221939;;421;1200;85068-9 +2022-04-27;2022-04-27T13:53:49Z;5188;7741;zing ƒ;20221938;;290;8521;27105-0 +2022-04-27;2022-04-27T09:56:47Z;1455;7230.12;dollar $;20221937;;33;9921;73087-4 +2022-04-27;2022-04-27T07:30:13Z;4465;5853;dollar $;20221936;;666;8521;85186-5 +2022-04-27;2022-04-27T06:49:41Z;5987;6743.55;dollar $;20221935;;421;1200;72480-5 +2022-04-27;2022-04-27T04:01:44Z;4023;6693.15;dollar $;20221934;;666;1002;52816-2 +2022-04-27;2022-04-27T03:41:17Z;5516;8392;dollar $;20221933;;421;1979;75475-1 +2022-04-27;2022-04-27T02:51:31Z;5986;4185;dollar $;20221932;;666;5420;66478-8 +2022-04-26;2022-04-26T21:20:07Z;2489;6602;zing ƒ;20221931;;33;8521;49364-2 +2022-04-26;2022-04-26T20:43:23Z;1297;3992;dollar $;20221930;;666;3321;73952-8 +2022-04-26;2022-04-26T20:18:20Z;3294;3947.63;dollar $;20221929;;33;8521;71136-0 +2022-04-26;2022-04-26T17:59:58Z;1455;3728;zing ƒ;20221928;;421;6317;43053-7 +2022-04-26;2022-04-26T16:48:52Z;5188;4456;dollar $;20221927;;290;2231;64592-0 +2022-04-26;2022-04-26T15:03:23Z;3715;4904.8;dollar $;20221926;;290;8521;71035-1 +2022-04-26;2022-04-26T14:44:34Z;3795;8008.1;zing ƒ;20221925;;33;4425;50634-2 +2022-04-26;2022-04-26T14:04:02Z;5987;5421;dollar $;20221924;;290;5420;30504-6 +2022-04-26;2022-04-26T13:55:06Z;5764;5548.62;dollar $;20221923;;666;1002;39699-9 +2022-04-26;2022-04-26T12:12:45Z;2489;5042;dollar $;20221922;;33;8521;47568-5 +2022-04-26;2022-04-26T06:32:44Z;1217;4831;dollar $;20221921;;290;4425;46308-0 +2022-04-26;2022-04-26T05:58:36Z;4965;4609;british pound £;20221920;;33;2231;28992-5 +2022-04-26;2022-04-26T04:51:23Z;4965;7166;dollar $;20221919;;666;8521;29429-4 +2022-04-25;2022-04-25T23:56:40Z;3795;8490.67;dollar $;20221918;;421;3321;80847-3 +2022-04-25;2022-04-25T18:08:52Z;4862;6448;dollar $;20221917;;421;1200;46881-1 +2022-04-25;2022-04-25T15:17:46Z;2197;5229;zing ƒ;20221916;;421;1002;28881-7 +2022-04-25;2022-04-25T11:56:31Z;4862;9566.73;dollar $;20221915;;33;1200;72170-4 +2022-04-25;2022-04-25T08:36:57Z;4862;4268.35;british pound £;20221914;;33;6552;60251-5 +2022-04-25;2022-04-25T08:07:20Z;5243;3003.31;dollar $;20221913;;290;5420;46429-3 +2022-04-25;2022-04-25T04:01:18Z;5516;8097;dollar $;20221912;;290;4425;45634-5 +2022-04-24;2022-04-24T15:32:47Z;4862;3733.66;dollar $;20221911;;290;1200;49227-9 +2022-04-24;2022-04-24T14:07:46Z;6032;4708;zing ƒ;20221910;;290;1200;73403-2 +2022-04-24;2022-04-24T12:32:28Z;3294;5497.12;dollar $;20221909;;33;9921;81274-7 +2022-04-24;2022-04-24T09:59:30Z;4965;6084;dollar $;20221908;;33;1200;68124-9 +2022-04-24;2022-04-24T06:31:16Z;5987;7515;dollar $;20221907;;290;4078;59577-2 +2022-04-24;2022-04-24T03:18:26Z;2727;775.07;dollar $;20221906;;421;9921;26385-8 +2022-04-23;2022-04-23T22:53:22Z;5764;2398;dollar $;20221905;;290;1100;27399-0 +2022-04-23;2022-04-23T16:05:28Z;4023;6217.43;zing ƒ;20221904;;421;9921;78371-6 +2022-04-23;2022-04-23T08:59:42Z;2727;3539.99;dollar $;20221903;;421;4078;41788-1 +2022-04-23;2022-04-23T07:47:34Z;4965;8066;dollar $;20221902;;290;8800;32432-8 +2022-04-23;2022-04-23T07:31:34Z;5986;8581;zing ƒ;20221901;;421;5420;44897-7 +2022-04-23;2022-04-23T06:03:24Z;1217;2999;dollar $;20221900;;666;1100;80948-4 +2022-04-23;2022-04-23T04:14:37Z;2489;8084.23;british pound £;20221899;;666;3321;79452-5 +2022-04-23;2022-04-23T00:52:00Z;5832;7706.59;british pound £;20221898;;290;1100;43278-2 +2022-04-23;2022-04-23T00:05:23Z;5516;5870.91;dollar $;20221897;;290;6317;24571-1 +2022-04-22;2022-04-22T16:06:15Z;4965;5501;dollar $;20221896;;33;9921;30480-1 +2022-04-22;2022-04-22T13:05:48Z;3100;10294;zing ƒ;20221895;;33;6317;57369-6 +2022-04-22;2022-04-22T10:20:17Z;2489;11102.24;dollar $;20221894;;666;6317;27732-0 +2022-04-22;2022-04-22T04:42:21Z;4965;5214.06;british pound £;20221893;;33;1100;57383-2 +2022-04-22;2022-04-22T03:37:23Z;5516;7548;dollar $;20221892;;666;2231;84053-9 +2022-04-22;2022-04-22T02:30:00Z;3284;5230;british pound £;20221891;;33;1200;34664-3 +2022-04-21;2022-04-21T19:52:01Z;5188;5845;euro €;20221890;;33;2231;43250-8 +2022-04-21;2022-04-21T17:21:15Z;2727;5073;dollar $;20221889;;33;1100;57480-8 +2022-04-21;2022-04-21T15:04:17Z;4023;10283.13;dollar $;20221888;;666;6552;82227-6 +2022-04-21;2022-04-21T14:14:43Z;4965;10830;zing ƒ;20221887;;290;9921;63312-7 +2022-04-21;2022-04-21T03:57:11Z;4862;3335.67;dollar $;20221886;;421;6552;36210-7 +2022-04-21;2022-04-21T03:26:59Z;6032;7437;zing ƒ;20221885;;666;2400;85733-5 +2022-04-20;2022-04-20T18:59:48Z;4608;6206;dollar $;20221884;;421;9921;79637-5 +2022-04-20;2022-04-20T17:42:22Z;4023;7123;dollar $;20221883;;666;6552;46003-0 +2022-04-20;2022-04-20T12:42:07Z;4862;2877.97;zing ƒ;20221882;;290;1100;66131-8 +2022-04-20;2022-04-20T07:29:33Z;2197;6542.58;british pound £;20221881;;666;1979;80298-2 +2022-04-20;2022-04-20T07:27:37Z;5764;4509.77;dollar $;20221880;;666;1002;50039-4 +2022-04-20;2022-04-20T06:29:18Z;3100;7156;british pound £;20221879;;33;3321;78225-4 +2022-04-20;2022-04-20T04:40:20Z;4023;7952;euro €;20221878;;33;6317;27874-0 +2022-04-20;2022-04-20T04:17:09Z;3715;7654;dollar $;20221877;;33;1979;44164-8 +2022-04-19;2022-04-19T22:20:45Z;3795;5580;dollar $;20221876;;666;4425;37593-3 +2022-04-19;2022-04-19T19:13:34Z;3795;8691;dollar $;20221875;;666;1100;41572-3 +2022-04-19;2022-04-19T18:26:41Z;5832;3377;dollar $;20221874;;290;9921;64863-8 +2022-04-19;2022-04-19T17:34:00Z;2727;3139.24;dollar $;20221873;;666;8800;43403-8 +2022-04-19;2022-04-19T16:55:20Z;3100;5822;euro €;20221872;;290;1979;80959-5 +2022-04-19;2022-04-19T16:37:01Z;1217;6820.84;zing ƒ;20221871;;290;6552;36620-5 +2022-04-19;2022-04-19T14:05:43Z;2727;7593.23;zing ƒ;20221870;;421;1979;62188-6 +2022-04-19;2022-04-19T07:53:50Z;1217;5058.24;zing ƒ;20221869;;290;8800;27229-8 +2022-04-19;2022-04-19T04:39:43Z;3294;4885;dollar $;20221868;;666;6552;83866-0 +2022-04-18;2022-04-18T22:33:16Z;4862;8500.3;zing ƒ;20221867;;666;1002;54371-3 +2022-04-18;2022-04-18T17:00:29Z;1217;9286.28;dollar $;20221866;;290;4078;57552-1 +2022-04-18;2022-04-18T12:24:28Z;2197;7962;dollar $;20221865;;666;4425;39889-1 +2022-04-18;2022-04-18T10:56:43Z;4608;3989.02;dollar $;20221864;;666;6317;31849-1 +2022-04-18;2022-04-18T10:05:02Z;3100;2096;british pound £;20221863;;421;1979;40873-7 +2022-04-18;2022-04-18T06:28:12Z;3715;3466.2;dollar $;20221862;;290;6317;62928-2 +2022-04-18;2022-04-18T04:16:02Z;3795;10445;dollar $;20221861;;290;9921;50733-8 +2022-04-18;2022-04-18T03:01:30Z;5986;3514.79;dollar $;20221860;;666;4078;37160-8 +2022-04-17;2022-04-17T23:00:04Z;5986;7273;dollar $;20221859;;666;1200;79761-4 +2022-04-17;2022-04-17T11:42:59Z;1455;13573.99;dollar $;20221858;;666;8800;69564-0 +2022-04-17;2022-04-17T09:14:51Z;5516;6664.95;zing ƒ;20221857;;33;2400;45152-7 +2022-04-17;2022-04-17T04:12:34Z;5987;5611.3;zing ƒ;20221856;;33;2231;29125-2 +2022-04-17;2022-04-17T02:50:39Z;5188;4907.57;dollar $;20221855;;290;1200;42761-5 +2022-04-17;2022-04-17T02:00:41Z;3715;2363.26;dollar $;20221854;;421;1979;53326-6 +2022-04-17;2022-04-17T00:05:40Z;4465;13692.16;dollar $;20221853;;421;1979;70305-4 +2022-04-16;2022-04-16T23:04:52Z;4465;4188;dollar $;20221852;;290;8521;60030-0 +2022-04-16;2022-04-16T21:44:59Z;5764;7396;dollar $;20221851;;666;8800;52406-4 +2022-04-16;2022-04-16T19:55:25Z;4465;10644.55;dollar $;20221850;;290;2231;67085-4 +2022-04-16;2022-04-16T19:47:38Z;5243;2594.95;zing ƒ;20221849;;290;3321;47300-1 +2022-04-16;2022-04-16T19:42:08Z;1121;1808.19;dollar $;20221848;;421;4425;36077-0 +2022-04-16;2022-04-16T16:06:53Z;1455;7519;euro €;20221847;;666;9921;60708-3 +2022-04-16;2022-04-16T15:02:32Z;2489;1984.55;dollar $;20221846;;290;2400;35458-1 +2022-04-16;2022-04-16T14:46:42Z;5987;6645;dollar $;20221845;;666;1100;56398-4 +2022-04-15;2022-04-15T23:51:22Z;3100;2208.53;british pound £;20221844;;33;4425;64854-1 +2022-04-15;2022-04-15T21:39:33Z;1121;6514;dollar $;20221843;;421;2400;78808-0 +2022-04-15;2022-04-15T18:46:36Z;4465;7663;dollar $;20221842;;33;8800;74730-1 +2022-04-15;2022-04-15T09:14:59Z;3294;7009;zing ƒ;20221841;;290;1200;68760-9 +2022-04-15;2022-04-15T07:10:56Z;5243;4240;dollar $;20221840;;666;8521;31854-2 +2022-04-15;2022-04-15T06:22:44Z;1297;9222.23;dollar $;20221839;;290;5420;43501-3 +2022-04-15;2022-04-15T05:27:08Z;2489;5473.54;dollar $;20221838;;290;4425;40212-3 +2022-04-15;2022-04-15T03:31:37Z;2197;3130;zing ƒ;20221837;;33;5420;31396-3 +2022-04-14;2022-04-14T22:47:15Z;5986;8266;zing ƒ;20221836;;421;8521;85939-2 +2022-04-14;2022-04-14T16:44:35Z;4023;4191;zing ƒ;20221835;;666;4425;56758-9 +2022-04-14;2022-04-14T09:56:32Z;5243;7471;zing ƒ;20221834;;33;8800;24820-9 +2022-04-14;2022-04-14T07:44:41Z;2727;7497;dollar $;20221833;;290;5420;44252-5 +2022-04-14;2022-04-14T04:49:54Z;2197;5826.29;dollar $;20221832;;666;9921;85686-8 +2022-04-13;2022-04-13T21:30:29Z;5764;7673;zing ƒ;20221831;;33;5420;49203-3 +2022-04-13;2022-04-13T21:26:20Z;3284;7292;zing ƒ;20221830;;666;1100;57634-9 +2022-04-13;2022-04-13T18:36:04Z;5516;7766.37;zing ƒ;20221829;;33;1200;66316-7 +2022-04-13;2022-04-13T15:48:12Z;5243;7049.88;euro €;20221828;;290;2400;28062-3 +2022-04-13;2022-04-13T15:34:06Z;1297;3842;dollar $;20221827;;421;3321;49722-8 +2022-04-13;2022-04-13T06:36:56Z;5832;7376.21;dollar $;20221826;;290;1100;74557-0 +2022-04-13;2022-04-13T05:25:23Z;1121;5241.6;dollar $;20221825;;421;8800;48782-7 +2022-04-13;2022-04-13T01:12:48Z;3795;4907;zing ƒ;20221824;;33;3321;69518-4 +2022-04-12;2022-04-12T09:03:19Z;4465;8275.21;zing ƒ;20221823;;421;8521;66833-4 +2022-04-12;2022-04-12T08:27:16Z;1297;6975;zing ƒ;20221822;;33;1002;62501-7 +2022-04-12;2022-04-12T03:33:56Z;1945;2517.79;dollar $;20221821;;33;2400;52436-5 +2022-04-12;2022-04-12T02:30:27Z;5243;6070;zing ƒ;20221820;;33;1200;62865-0 +2022-04-12;2022-04-12T01:24:47Z;4465;4907;euro €;20221819;;421;6552;60586-1 +2022-04-12;2022-04-12T00:40:54Z;3284;8053.71;dollar $;20221818;;33;1002;45244-1 +2022-04-11;2022-04-11T22:20:30Z;2489;5249;dollar $;20221817;;421;9921;40803-0 +2022-04-11;2022-04-11T18:06:48Z;4965;1940.43;zing ƒ;20221816;;421;4425;55991-3 +2022-04-11;2022-04-11T13:28:24Z;5516;3553.8;dollar $;20221815;;290;1200;78368-5 +2022-04-11;2022-04-11T08:48:14Z;3284;6458.67;dollar $;20221814;;33;1979;29280-0 +2022-04-11;2022-04-11T05:01:11Z;4965;4698;dollar $;20221813;;33;6552;43509-5 +2022-04-11;2022-04-11T01:27:50Z;2727;5353.18;dollar $;20221812;;666;3321;27519-7 +2022-04-11;2022-04-11T01:08:11Z;4465;9296;dollar $;20221811;;290;1002;58380-6 +2022-04-10;2022-04-10T18:53:20Z;4465;9309.41;zing ƒ;20221810;;666;1200;31178-8 +2022-04-10;2022-04-10T09:53:17Z;2727;6515.38;euro €;20221809;;33;1100;61109-2 +2022-04-10;2022-04-10T08:08:03Z;5986;8802.98;british pound £;20221808;;421;4078;50535-5 +2022-04-10;2022-04-10T00:51:16Z;1455;6788;dollar $;20221807;;33;6552;27457-8 +2022-04-09;2022-04-09T23:52:58Z;5188;7108;dollar $;20221806;;33;2231;35024-2 +2022-04-09;2022-04-09T22:58:53Z;5987;3785;zing ƒ;20221805;;290;2231;79064-7 +2022-04-09;2022-04-09T22:55:20Z;1121;8455.15;dollar $;20221804;;666;6552;78218-0 +2022-04-09;2022-04-09T19:25:54Z;4862;7895.36;dollar $;20221803;;421;8521;30279-9 +2022-04-09;2022-04-09T10:40:43Z;4465;7623.58;british pound £;20221802;;666;1100;72244-0 +2022-04-09;2022-04-09T09:02:36Z;4965;5099;zing ƒ;20221801;;666;9921;37196-7 +2022-04-09;2022-04-09T06:53:14Z;2197;4814;dollar $;20221800;;421;1002;34465-0 +2022-04-09;2022-04-09T00:51:17Z;3795;8872;dollar $;20221799;;33;9921;29188-2 +2022-04-08;2022-04-08T20:17:41Z;1121;7136;british pound £;20221798;;290;8800;52185-2 +2022-04-08;2022-04-08T17:31:17Z;1455;3241.4;dollar $;20221797;;33;8521;32078-9 +2022-04-08;2022-04-08T13:58:58Z;3100;8381.31;zing ƒ;20221796;;33;2231;69513-5 +2022-04-08;2022-04-08T13:53:53Z;4965;7265.9;dollar $;20221795;;421;2231;73826-1 +2022-04-08;2022-04-08T12:37:54Z;2727;4869.59;dollar $;20221794;;666;8800;54243-5 +2022-04-07;2022-04-07T22:42:30Z;1121;5429;dollar $;20221793;;290;4425;75989-4 +2022-04-07;2022-04-07T20:05:56Z;1217;6547.08;dollar $;20221792;;33;1002;63347-8 +2022-04-07;2022-04-07T10:31:09Z;1297;9008.2;dollar $;20221791;;666;8800;49362-6 +2022-04-07;2022-04-07T10:07:59Z;3715;6235;zing ƒ;20221790;;666;8800;50589-9 +2022-04-07;2022-04-07T03:21:35Z;5188;3150.96;dollar $;20221789;;290;5420;85417-1 +2022-04-07;2022-04-07T01:29:08Z;3795;6135;zing ƒ;20221788;;666;4425;42709-4 +2022-04-07;2022-04-07T01:12:42Z;6032;2667.69;dollar $;20221787;;33;1979;29507-0 +2022-04-06;2022-04-06T19:32:39Z;1121;4607.1;british pound £;20221786;;666;4078;81522-2 +2022-04-06;2022-04-06T17:41:07Z;1297;6149;dollar $;20221785;;33;6317;84670-5 +2022-04-06;2022-04-06T16:24:19Z;1121;6912.78;dollar $;20221784;;421;2231;65890-6 +2022-04-06;2022-04-06T16:16:25Z;2727;5858;dollar $;20221783;;421;4078;33218-6 +2022-04-06;2022-04-06T13:32:26Z;5243;7465;british pound £;20221782;;421;6317;76112-8 +2022-04-06;2022-04-06T11:25:30Z;5986;3179;zing ƒ;20221781;;290;9921;75623-9 +2022-04-06;2022-04-06T03:19:24Z;6032;3730;dollar $;20221780;;421;8800;38556-8 +2022-04-05;2022-04-05T20:46:17Z;5764;8524;dollar $;20221779;;666;4425;70945-5 +2022-04-05;2022-04-05T15:52:38Z;3795;9800.1;dollar $;20221778;;290;3321;77774-3 +2022-04-05;2022-04-05T10:32:59Z;6032;5197;zing ƒ;20221777;;666;6317;33207-2 +2022-04-05;2022-04-05T06:33:36Z;5764;7650.03;dollar $;20221776;;290;4078;59360-7 +2022-04-05;2022-04-05T04:23:37Z;1297;11761;british pound £;20221775;;666;6552;34667-9 +2022-04-05;2022-04-05T04:17:17Z;5188;6546.15;dollar $;20221774;;290;1979;60374-8 +2022-04-04;2022-04-04T23:02:25Z;3284;7559.84;british pound £;20221773;;421;8800;25672-6 +2022-04-04;2022-04-04T18:57:24Z;4023;8445.08;dollar $;20221772;;666;2400;86217-5 +2022-04-04;2022-04-04T13:06:43Z;1945;1992;dollar $;20221771;;33;8800;44524-0 +2022-04-04;2022-04-04T10:14:30Z;2727;2251;dollar $;20221770;;421;3321;80407-6 +2022-04-04;2022-04-04T10:00:41Z;3100;5977.93;dollar $;20221769;;290;8521;76741-4 +2022-04-04;2022-04-04T04:53:05Z;1945;5777;dollar $;20221768;;666;4078;69524-6 +2022-04-04;2022-04-04T04:29:30Z;4862;6920;british pound £;20221767;;33;1100;45600-0 +2022-04-04;2022-04-04T03:10:43Z;3284;6582;dollar $;20221766;;666;2231;46569-5 +2022-04-04;2022-04-04T03:10:02Z;1217;7360.1;zing ƒ;20221765;;666;1200;58876-4 +2022-04-04;2022-04-04T03:04:51Z;1297;7372.05;zing ƒ;20221764;;666;8521;78526-1 +2022-04-03;2022-04-03T18:00:50Z;5832;3459;zing ƒ;20221763;;421;8800;27008-6 +2022-04-03;2022-04-03T13:41:36Z;1945;3807;dollar $;20221762;;33;1002;32047-4 +2022-04-03;2022-04-03T12:44:05Z;5987;7970.52;dollar $;20221761;;290;4425;41452-0 +2022-04-03;2022-04-03T11:48:25Z;3715;13276;dollar $;20221760;;290;8521;39609-7 +2022-04-03;2022-04-03T11:30:02Z;1121;5843;zing ƒ;20221759;;666;2400;73713-8 +2022-04-03;2022-04-03T09:15:42Z;4862;7208.22;british pound £;20221758;;666;8800;39899-3 +2022-04-03;2022-04-03T07:39:39Z;3284;5717;dollar $;20221757;;666;6317;37518-8 +2022-04-03;2022-04-03T06:15:18Z;5188;10702.29;zing ƒ;20221756;;33;1002;36547-5 +2022-04-03;2022-04-03T03:17:59Z;1945;7225;dollar $;20221755;;33;6317;56836-0 +2022-04-03;2022-04-03T02:40:30Z;5243;2008;british pound £;20221754;;666;1100;70925-7 +2022-04-02;2022-04-02T21:00:05Z;5987;4310;dollar $;20221753;;33;9921;59169-3 +2022-04-02;2022-04-02T17:07:51Z;5986;7425;dollar $;20221752;;33;9921;55335-7 +2022-04-02;2022-04-02T12:54:01Z;4862;4436.92;british pound £;20221751;;290;2231;74469-9 +2022-04-02;2022-04-02T02:06:01Z;5516;9933;euro €;20221750;;421;1200;44459-1 +2022-04-01;2022-04-01T18:31:21Z;2197;1795.09;british pound £;20221749;;33;2400;83659-9 +2022-04-01;2022-04-01T06:30:48Z;1945;4076.42;dollar $;20221748;;421;6552;47681-1 +2022-04-01;2022-04-01T01:10:03Z;5188;3908.58;zing ƒ;20221747;;33;1200;73069-7 +2022-03-31;2022-03-31T02:18:15Z;3294;7853.7;dollar $;20221746;;421;1979;34919-3 +2022-03-31;2022-03-31T02:15:45Z;1217;8742;dollar $;20221745;;290;8800;39277-9 +2022-03-30;2022-03-30T23:28:42Z;4965;5123;dollar $;20221744;;290;5420;30839-3 +2022-03-30;2022-03-30T22:40:13Z;5987;8412;dollar $;20221743;;33;1100;76683-7 +2022-03-30;2022-03-30T21:21:11Z;3284;9906;dollar $;20221742;;666;1200;69329-2 +2022-03-30;2022-03-30T20:38:23Z;1297;7455;dollar $;20221741;;33;1200;56711-9 +2022-03-30;2022-03-30T19:19:24Z;5832;6955;dollar $;20221740;;290;2231;71545-3 +2022-03-30;2022-03-30T15:16:11Z;5764;7966.54;euro €;20221739;;666;1200;34753-0 +2022-03-30;2022-03-30T14:57:22Z;1121;461;euro €;20221738;;666;6552;35568-9 +2022-03-30;2022-03-30T14:54:20Z;1217;10965;british pound £;20221737;;33;1100;79514-2 +2022-03-30;2022-03-30T13:35:14Z;4965;6914.09;dollar $;20221736;;290;1002;28784-8 +2022-03-30;2022-03-30T13:17:55Z;4862;7011;zing ƒ;20221735;;33;2231;33477-3 +2022-03-30;2022-03-30T11:00:48Z;1945;7124.68;dollar $;20221734;;33;1200;30911-9 +2022-03-30;2022-03-30T09:34:58Z;1455;5310.78;dollar $;20221733;;290;8800;24862-2 +2022-03-30;2022-03-30T01:27:23Z;4023;5683;dollar $;20221732;;421;1100;31535-6 +2022-03-30;2022-03-30T01:17:12Z;3294;7725.35;dollar $;20221731;;666;6317;49863-4 +2022-03-30;2022-03-30T00:33:42Z;5987;7135;dollar $;20221730;;666;1979;60372-6 +2022-03-29;2022-03-29T23:23:11Z;3100;5535;zing ƒ;20221729;;666;1979;69729-4 +2022-03-29;2022-03-29T22:02:29Z;2489;5504.59;dollar $;20221728;;33;6317;52128-5 +2022-03-29;2022-03-29T21:34:50Z;4023;5595.28;zing ƒ;20221727;;421;4078;44006-9 +2022-03-29;2022-03-29T18:10:05Z;5987;3983;dollar $;20221726;;290;4425;60889-7 +2022-03-29;2022-03-29T15:06:59Z;5987;4511.48;euro €;20221725;;33;2231;83314-1 +2022-03-29;2022-03-29T09:55:34Z;3294;3560;dollar $;20221724;;33;1100;41893-3 +2022-03-29;2022-03-29T09:54:13Z;2727;4339;euro €;20221723;;33;1100;36047-0 +2022-03-29;2022-03-29T05:29:10Z;1945;5156;dollar $;20221722;;290;6552;49553-1 +2022-03-28;2022-03-28T23:58:54Z;4465;8995.32;dollar $;20221721;;33;1979;66943-9 +2022-03-28;2022-03-28T23:18:08Z;5987;2598;dollar $;20221720;;33;2231;55737-5 +2022-03-28;2022-03-28T22:26:04Z;4023;7504;dollar $;20221719;;33;2400;35694-1 +2022-03-28;2022-03-28T18:03:20Z;3294;3459;dollar $;20221718;;33;2231;51168-8 +2022-03-28;2022-03-28T17:21:12Z;3284;4623;dollar $;20221717;;666;1979;82728-6 +2022-03-28;2022-03-28T14:57:16Z;4862;6696;dollar $;20221716;;33;6552;33238-6 +2022-03-28;2022-03-28T08:48:27Z;1297;2959.35;dollar $;20221715;;666;9921;83041-5 +2022-03-28;2022-03-28T04:18:21Z;1455;3545;dollar $;20221714;;421;1979;61082-5 +2022-03-27;2022-03-27T20:54:49Z;5832;8028.06;dollar $;20221713;;421;8800;34721-6 +2022-03-27;2022-03-27T18:57:23Z;5516;9213;dollar $;20221712;;33;9921;35625-6 +2022-03-27;2022-03-27T18:53:30Z;4965;3418.63;dollar $;20221711;;421;2231;61826-1 +2022-03-27;2022-03-27T12:55:01Z;3795;4819.02;dollar $;20221710;;290;1979;55517-4 +2022-03-27;2022-03-27T10:50:34Z;3284;6546.81;british pound £;20221709;;666;6552;41061-2 +2022-03-27;2022-03-27T10:15:59Z;1121;2779.51;dollar $;20221708;;666;3321;84672-2 +2022-03-27;2022-03-27T07:20:28Z;1945;5026.4;dollar $;20221707;;33;1200;80191-9 +2022-03-26;2022-03-26T21:30:49Z;3284;5773;zing ƒ;20221706;;290;1002;41336-7 +2022-03-26;2022-03-26T17:02:37Z;6032;8619;british pound £;20221705;;290;1100;41675-7 +2022-03-26;2022-03-26T16:50:05Z;3715;3564.18;zing ƒ;20221704;;421;4425;41745-7 +2022-03-26;2022-03-26T16:38:46Z;4862;5359;dollar $;20221703;;33;4078;34802-1 +2022-03-26;2022-03-26T13:05:08Z;3715;8331;dollar $;20221702;;290;9921;65744-3 +2022-03-26;2022-03-26T09:33:45Z;1945;1788;dollar $;20221701;;290;9921;51835-8 +2022-03-26;2022-03-26T06:09:00Z;6032;5694.04;zing ƒ;20221700;;421;8521;25222-2 +2022-03-26;2022-03-26T00:54:19Z;1455;7802;dollar $;20221699;;421;4078;63206-2 +2022-03-25;2022-03-25T21:15:01Z;4465;5335;zing ƒ;20221698;;33;5420;59270-3 +2022-03-25;2022-03-25T19:20:29Z;6032;6812.52;dollar $;20221697;;666;6552;67228-0 +2022-03-25;2022-03-25T15:20:26Z;4608;8642.44;dollar $;20221696;;33;1979;36139-9 +2022-03-25;2022-03-25T11:57:03Z;4023;10428.55;zing ƒ;20221695;;666;6317;51884-9 +2022-03-25;2022-03-25T04:18:31Z;5764;5618;dollar $;20221694;;421;6317;54101-3 +2022-03-25;2022-03-25T00:25:12Z;1121;9703;dollar $;20221693;;290;1100;36811-4 +2022-03-24;2022-03-24T23:54:09Z;5243;5645.34;dollar $;20221692;;290;8521;79066-8 +2022-03-24;2022-03-24T18:36:33Z;4465;7242;zing ƒ;20221691;;290;6317;68255-2 +2022-03-24;2022-03-24T14:58:56Z;1945;5910;dollar $;20221690;;33;6317;83797-6 +2022-03-24;2022-03-24T08:16:37Z;5986;8841;dollar $;20221689;;33;6552;81257-5 +2022-03-24;2022-03-24T07:49:59Z;2727;3246;zing ƒ;20221688;;33;4425;82565-6 +2022-03-24;2022-03-24T03:57:51Z;1455;6769.98;zing ƒ;20221687;;33;5420;85284-1 +2022-03-23;2022-03-23T23:24:22Z;5986;5721.53;dollar $;20221686;;666;1200;27658-3 +2022-03-23;2022-03-23T22:26:07Z;4608;6262.14;dollar $;20221685;;421;6317;27460-2 +2022-03-23;2022-03-23T19:03:30Z;4862;9360.03;british pound £;20221684;;33;1979;28495-7 +2022-03-23;2022-03-23T18:23:32Z;4608;10846;dollar $;20221683;;666;8800;50277-6 +2022-03-23;2022-03-23T16:14:12Z;5243;7376;euro €;20221682;;33;2400;77344-1 +2022-03-23;2022-03-23T15:11:15Z;5986;8856.56;dollar $;20221681;;290;9921;50539-3 +2022-03-23;2022-03-23T06:20:41Z;4965;10917;dollar $;20221680;;421;6317;80617-2 +2022-03-23;2022-03-23T02:59:14Z;3100;9150.29;dollar $;20221679;;666;8800;34639-1 +2022-03-23;2022-03-23T02:36:46Z;1945;10304;zing ƒ;20221678;;421;1100;28990-4 +2022-03-23;2022-03-23T01:23:52Z;2489;12644.56;zing ƒ;20221677;;421;3321;75669-3 +2022-03-23;2022-03-23T00:17:16Z;2727;4204.1;zing ƒ;20221676;;421;5420;29421-7 +2022-03-22;2022-03-22T16:26:33Z;5832;6976.34;dollar $;20221675;;33;1979;42920-3 +2022-03-22;2022-03-22T09:17:10Z;4465;3853;dollar $;20221674;;290;2400;29095-5 +2022-03-22;2022-03-22T06:53:01Z;6032;8126.04;dollar $;20221673;;666;8521;79807-8 +2022-03-22;2022-03-22T04:47:42Z;3284;6789.19;dollar $;20221672;;33;1200;55851-4 +2022-03-22;2022-03-22T02:48:14Z;3100;5186;dollar $;20221671;;33;2400;70410-8 +2022-03-21;2022-03-21T22:34:41Z;4608;6081.54;british pound £;20221670;;33;2231;77679-4 +2022-03-21;2022-03-21T20:24:05Z;5516;8179;zing ƒ;20221669;;421;4425;57498-5 +2022-03-21;2022-03-21T19:53:01Z;5243;4872.7;zing ƒ;20221668;;421;2231;25097-2 +2022-03-21;2022-03-21T15:43:43Z;4862;9142.24;dollar $;20221667;;666;2400;56244-7 +2022-03-21;2022-03-21T11:13:35Z;2489;7790;dollar $;20221666;;290;2400;57393-9 +2022-03-21;2022-03-21T09:20:37Z;3715;7108;dollar $;20221665;;33;3321;48665-2 +2022-03-20;2022-03-20T19:16:15Z;1297;2330.34;dollar $;20221664;;290;8800;50433-4 +2022-03-20;2022-03-20T17:15:57Z;3284;286.23;dollar $;20221663;;666;2231;71476-8 +2022-03-20;2022-03-20T14:50:28Z;1297;7780.27;dollar $;20221662;;33;5420;63458-6 +2022-03-20;2022-03-20T13:36:11Z;5987;5222.82;dollar $;20221661;;421;1200;46911-5 +2022-03-20;2022-03-20T12:22:54Z;1945;5081;zing ƒ;20221660;;290;6552;81984-9 +2022-03-20;2022-03-20T11:57:39Z;2727;8289.28;dollar $;20221659;;33;1002;67023-9 +2022-03-20;2022-03-20T11:39:28Z;5987;5586.95;zing ƒ;20221658;;421;6317;68170-6 +2022-03-20;2022-03-20T11:35:58Z;2197;7662;dollar $;20221657;;421;1100;25836-3 +2022-03-20;2022-03-20T07:14:48Z;3284;9060.59;dollar $;20221656;;290;8521;54624-3 +2022-03-20;2022-03-20T06:55:17Z;4465;2128;dollar $;20221655;;666;6552;60378-6 +2022-03-20;2022-03-20T05:39:36Z;5986;4441.69;dollar $;20221654;;666;2400;81384-6 +2022-03-20;2022-03-20T02:34:40Z;3795;6053.55;dollar $;20221653;;421;2231;45011-0 +2022-03-20;2022-03-20T02:14:01Z;2489;6716;zing ƒ;20221652;;33;6317;52813-2 +2022-03-19;2022-03-19T23:36:02Z;5188;7426.15;dollar $;20221651;;33;8521;79086-9 +2022-03-19;2022-03-19T21:55:36Z;5832;9670;dollar $;20221650;;666;1002;55400-0 +2022-03-19;2022-03-19T17:47:45Z;1217;9159;dollar $;20221649;;666;1979;80475-8 +2022-03-19;2022-03-19T17:39:17Z;3294;2532.98;dollar $;20221648;;33;1200;39857-3 +2022-03-19;2022-03-19T09:11:03Z;5188;7172;dollar $;20221647;;666;6552;85993-0 +2022-03-18;2022-03-18T23:10:19Z;2727;3711;dollar $;20221646;;290;2231;80071-4 +2022-03-18;2022-03-18T16:25:54Z;5832;7451;dollar $;20221645;;33;3321;79181-1 +2022-03-18;2022-03-18T14:48:22Z;3284;4846;dollar $;20221644;;666;3321;41690-2 +2022-03-18;2022-03-18T11:14:45Z;3795;10323.25;zing ƒ;20221643;;666;2231;67893-4 +2022-03-18;2022-03-18T08:27:05Z;4608;4945.52;british pound £;20221642;;421;5420;71284-3 +2022-03-18;2022-03-18T05:39:07Z;4862;10363.84;zing ƒ;20221641;;666;2400;64441-5 +2022-03-18;2022-03-18T04:30:05Z;5987;6091.12;dollar $;20221640;;421;1979;76893-6 +2022-03-18;2022-03-18T03:39:55Z;4023;6046.03;dollar $;20221639;;33;1200;67113-7 +2022-03-18;2022-03-18T02:45:29Z;2727;7061;british pound £;20221638;;666;5420;44357-5 +2022-03-18;2022-03-18T01:05:21Z;4608;3749.01;dollar $;20221637;;33;1002;37352-7 +2022-03-17;2022-03-17T22:44:26Z;1455;11961;euro €;20221636;;290;1979;69058-6 +2022-03-17;2022-03-17T21:13:53Z;1297;3563;zing ƒ;20221635;;290;4425;27538-5 +2022-03-17;2022-03-17T19:17:13Z;5832;8796;british pound £;20221634;;290;2400;47157-4 +2022-03-17;2022-03-17T12:55:30Z;1455;8498;dollar $;20221633;;33;3321;50645-5 +2022-03-17;2022-03-17T11:56:44Z;5987;11354;dollar $;20221632;;666;5420;46875-6 +2022-03-17;2022-03-17T10:18:49Z;4608;904;dollar $;20221631;;666;6317;65429-2 +2022-03-17;2022-03-17T03:58:30Z;3795;9636.86;british pound £;20221630;;421;4078;55535-7 +2022-03-17;2022-03-17T00:35:10Z;4965;6116;dollar $;20221629;;666;2400;51620-7 +2022-03-16;2022-03-16T20:31:08Z;1945;1942.5;british pound £;20221628;;421;6317;58021-1 +2022-03-16;2022-03-16T17:50:57Z;3284;9180;zing ƒ;20221627;;33;4425;63146-4 +2022-03-16;2022-03-16T15:56:37Z;2197;8654;british pound £;20221626;;666;4425;34157-6 +2022-03-16;2022-03-16T14:32:49Z;5188;11349.05;british pound £;20221625;;421;5420;33766-2 +2022-03-16;2022-03-16T13:07:48Z;1455;6850.2;dollar $;20221624;;290;3321;72787-5 +2022-03-16;2022-03-16T12:24:34Z;5188;6088;dollar $;20221623;;33;1979;85584-8 +2022-03-16;2022-03-16T08:29:38Z;4862;3619.36;dollar $;20221622;;290;3321;36779-9 +2022-03-16;2022-03-16T07:48:20Z;5188;4919;dollar $;20221621;;33;2400;26659-7 +2022-03-16;2022-03-16T06:48:53Z;5987;5730;british pound £;20221620;;33;1100;79130-4 +2022-03-16;2022-03-16T02:11:53Z;4862;3332.45;dollar $;20221619;;421;3321;84562-8 +2022-03-16;2022-03-16T00:36:28Z;5764;7564;british pound £;20221618;;33;5420;79518-9 +2022-03-16;2022-03-16T00:17:18Z;3294;4503;dollar $;20221617;;421;1979;34449-3 +2022-03-15;2022-03-15T22:25:33Z;3795;3366;dollar $;20221616;;33;6317;53301-9 +2022-03-15;2022-03-15T05:26:57Z;3284;6673;dollar $;20221615;;421;2231;43567-8 +2022-03-15;2022-03-15T04:18:34Z;4965;10925;dollar $;20221614;;421;8521;46910-3 +2022-03-15;2022-03-15T01:12:29Z;5243;6902;dollar $;20221613;;33;6317;81213-3 +2022-03-14;2022-03-14T23:57:54Z;1121;7092.87;dollar $;20221612;;33;1100;44276-0 +2022-03-14;2022-03-14T21:47:59Z;3294;8122;british pound £;20221611;;290;1979;28569-9 +2022-03-14;2022-03-14T12:39:31Z;4465;12445;dollar $;20221610;;290;4425;73844-8 +2022-03-14;2022-03-14T10:48:36Z;4862;8666;dollar $;20221609;;421;1100;49647-0 +2022-03-14;2022-03-14T10:44:20Z;4862;3821.5;dollar $;20221608;;666;3321;59505-1 +2022-03-14;2022-03-14T09:41:48Z;5764;4639;dollar $;20221607;;421;1100;45060-1 +2022-03-14;2022-03-14T03:55:18Z;5516;8101.18;british pound £;20221606;;666;6552;25698-4 +2022-03-13;2022-03-13T21:56:41Z;2489;5687;zing ƒ;20221605;;290;8800;36238-6 +2022-03-13;2022-03-13T21:08:42Z;1297;8403.16;dollar $;20221604;;421;1100;43895-1 +2022-03-13;2022-03-13T12:06:53Z;5987;9106.04;zing ƒ;20221603;;421;2231;71869-3 +2022-03-13;2022-03-13T03:15:40Z;5188;9786;dollar $;20221602;;33;1200;62279-5 +2022-03-13;2022-03-13T00:48:09Z;1297;4976;zing ƒ;20221601;;666;9921;43022-2 +2022-03-12;2022-03-12T23:18:07Z;2489;5582;dollar $;20221600;;290;8521;68635-2 +2022-03-12;2022-03-12T14:33:48Z;5764;7521;zing ƒ;20221599;;290;1002;26038-5 +2022-03-12;2022-03-12T08:42:23Z;1121;8273;dollar $;20221598;;421;1979;46101-0 +2022-03-11;2022-03-11T23:31:57Z;5764;7052;zing ƒ;20221597;;33;2231;57894-9 +2022-03-11;2022-03-11T23:23:49Z;2197;8583.35;euro €;20221596;;33;3321;26685-5 +2022-03-11;2022-03-11T21:53:05Z;1121;3876;dollar $;20221595;;666;9921;61162-5 +2022-03-11;2022-03-11T18:49:45Z;3795;4994.02;dollar $;20221594;;666;5420;79247-7 +2022-03-11;2022-03-11T01:17:54Z;1945;8209;dollar $;20221593;;290;2400;38985-0 +2022-03-10;2022-03-10T23:54:01Z;1121;4798;dollar $;20221592;;290;8521;78620-7 +2022-03-10;2022-03-10T23:13:44Z;4023;3547;dollar $;20221591;;421;4425;76860-4 +2022-03-10;2022-03-10T22:43:02Z;4465;7651;dollar $;20221590;;33;9921;47404-5 +2022-03-10;2022-03-10T18:24:42Z;5832;4503;dollar $;20221589;;421;5420;55602-3 +2022-03-10;2022-03-10T17:56:31Z;4965;993.14;dollar $;20221588;;290;4078;26502-1 +2022-03-10;2022-03-10T13:24:57Z;1297;9150.2;dollar $;20221587;;33;3321;61765-1 +2022-03-10;2022-03-10T12:23:13Z;3100;7711.27;dollar $;20221586;;421;3321;28747-9 +2022-03-10;2022-03-10T10:00:50Z;5188;5425;british pound £;20221585;;290;1002;40820-4 +2022-03-10;2022-03-10T04:34:42Z;4023;7734.48;dollar $;20221584;;290;6317;60503-6 +2022-03-09;2022-03-09T18:24:01Z;5764;3332;british pound £;20221583;;666;6552;51233-2 +2022-03-09;2022-03-09T12:41:05Z;2197;6227.75;dollar $;20221582;;290;1002;51775-4 +2022-03-09;2022-03-09T01:24:58Z;3715;2406.98;dollar $;20221581;;290;1100;78226-6 +2022-03-08;2022-03-08T23:16:46Z;4965;6618.51;dollar $;20221580;;421;9921;38736-0 +2022-03-08;2022-03-08T11:47:34Z;5243;6693.93;dollar $;20221579;;421;1200;30566-5 +2022-03-08;2022-03-08T08:52:02Z;5188;7549.97;zing ƒ;20221578;;33;1002;85389-4 +2022-03-08;2022-03-08T07:56:52Z;1945;2200;dollar $;20221577;;33;5420;29394-1 +2022-03-08;2022-03-08T07:49:19Z;5764;4035.39;british pound £;20221576;;666;1200;55264-3 +2022-03-08;2022-03-08T06:14:17Z;1121;3963;dollar $;20221575;;421;2231;86053-3 +2022-03-08;2022-03-08T00:16:31Z;4608;7735.08;dollar $;20221574;;421;6552;83511-4 +2022-03-07;2022-03-07T18:39:40Z;5987;2130;dollar $;20221573;;290;1002;59147-9 +2022-03-07;2022-03-07T18:28:26Z;5986;5552.11;dollar $;20221572;;666;8800;56492-3 +2022-03-07;2022-03-07T17:39:48Z;1121;5735;zing ƒ;20221571;;421;6317;82672-3 +2022-03-07;2022-03-07T15:42:58Z;5243;4059;dollar $;20221570;;290;2400;77880-3 +2022-03-07;2022-03-07T15:02:09Z;1297;3863;dollar $;20221569;;421;6317;71169-6 +2022-03-07;2022-03-07T06:37:38Z;4465;1291.02;dollar $;20221568;;421;3321;77902-1 +2022-03-07;2022-03-07T03:15:14Z;1455;5546.81;dollar $;20221567;;421;4425;71840-7 +2022-03-06;2022-03-06T23:59:18Z;3795;1288.73;dollar $;20221566;;33;8521;39013-3 +2022-03-06;2022-03-06T22:12:23Z;2197;6905;euro €;20221565;;33;9921;37164-4 +2022-03-06;2022-03-06T13:00:14Z;1217;3630;dollar $;20221564;;33;6317;68223-6 +2022-03-06;2022-03-06T11:27:40Z;5516;6740.43;dollar $;20221563;;33;1979;56904-7 +2022-03-06;2022-03-06T07:13:27Z;5243;3234.61;zing ƒ;20221562;;666;1979;57038-6 +2022-03-06;2022-03-06T05:21:42Z;5764;7453;dollar $;20221561;;290;9921;66621-7 +2022-03-06;2022-03-06T03:13:04Z;6032;5149;zing ƒ;20221560;;290;4425;70253-0 +2022-03-06;2022-03-06T01:29:18Z;1121;6304;zing ƒ;20221559;;290;6552;74443-9 +2022-03-05;2022-03-05T21:14:51Z;5987;6389;euro €;20221558;;421;8521;32527-9 +2022-03-05;2022-03-05T21:13:41Z;3715;8111.34;dollar $;20221557;;33;2231;35889-1 +2022-03-05;2022-03-05T20:00:03Z;5987;7049;zing ƒ;20221556;;666;1100;43805-7 +2022-03-05;2022-03-05T13:03:51Z;1217;6814.56;zing ƒ;20221555;;666;8800;83710-9 +2022-03-05;2022-03-05T12:54:38Z;5764;7893;euro €;20221554;;421;6317;37290-3 +2022-03-05;2022-03-05T05:15:15Z;3294;3838.27;dollar $;20221553;;421;5420;74181-8 +2022-03-05;2022-03-05T02:35:31Z;3294;5669.33;dollar $;20221552;;421;9921;51458-2 +2022-03-05;2022-03-05T00:01:36Z;5986;6265;zing ƒ;20221551;;33;1002;82257-8 +2022-03-04;2022-03-04T20:06:44Z;4608;7036;zing ƒ;20221550;;290;2400;53236-5 +2022-03-04;2022-03-04T18:27:34Z;2489;6431;dollar $;20221549;;666;1002;36472-4 +2022-03-04;2022-03-04T17:11:56Z;4023;5345;dollar $;20221548;;666;1100;40790-9 +2022-03-04;2022-03-04T11:20:53Z;5243;5567;zing ƒ;20221547;;421;9921;28278-2 +2022-03-04;2022-03-04T04:02:41Z;1121;2406.93;british pound £;20221546;;33;1100;27629-5 +2022-03-04;2022-03-04T00:26:18Z;4465;5353;zing ƒ;20221545;;666;2231;61906-1 +2022-03-04;2022-03-04T00:23:29Z;3795;3941;dollar $;20221544;;666;2400;65882-4 +2022-03-03;2022-03-03T22:24:23Z;5188;3734.37;dollar $;20221543;;666;1979;45972-6 +2022-03-03;2022-03-03T20:18:52Z;4862;6539.95;zing ƒ;20221542;;666;1002;52067-6 +2022-03-03;2022-03-03T20:09:58Z;5188;9475.29;euro €;20221541;;290;6552;52377-8 +2022-03-03;2022-03-03T20:00:35Z;3715;7266;dollar $;20221540;;290;5420;84551-2 +2022-03-03;2022-03-03T15:46:14Z;3284;6536;dollar $;20221539;;421;2231;39840-6 +2022-03-03;2022-03-03T13:59:47Z;1297;7023.33;dollar $;20221538;;421;1002;67637-3 +2022-03-03;2022-03-03T07:19:47Z;2197;4158;dollar $;20221537;;33;4425;77123-1 +2022-03-03;2022-03-03T03:03:53Z;4608;4288.78;dollar $;20221536;;290;4078;73665-6 +2022-03-03;2022-03-03T01:34:43Z;1217;5739.48;dollar $;20221535;;290;1200;82220-6 +2022-03-02;2022-03-02T23:26:28Z;6032;3864.52;british pound £;20221534;;421;2400;44771-5 +2022-03-02;2022-03-02T19:51:11Z;2197;6325.86;zing ƒ;20221533;;666;8800;46613-4 +2022-03-02;2022-03-02T16:44:34Z;4608;7357.19;zing ƒ;20221532;;33;1100;82607-0 +2022-03-02;2022-03-02T14:42:24Z;1945;3119.87;dollar $;20221531;;290;4425;53216-6 +2022-03-02;2022-03-02T09:27:35Z;3715;4140.58;dollar $;20221530;;421;2231;64918-8 +2022-03-02;2022-03-02T09:01:02Z;4862;5001;dollar $;20221529;;666;8800;73299-2 +2022-03-02;2022-03-02T08:12:33Z;3100;5727.46;dollar $;20221528;;421;2231;80338-9 +2022-03-02;2022-03-02T05:30:27Z;5516;6748;dollar $;20221527;;33;6317;68645-0 +2022-03-02;2022-03-02T05:01:32Z;5243;11026;dollar $;20221526;;33;4425;71893-3 +2022-03-02;2022-03-02T04:25:17Z;5832;3164;dollar $;20221525;;33;1979;31114-2 +2022-03-02;2022-03-02T02:08:01Z;5188;10482;euro €;20221524;;421;1002;79287-5 +2022-03-02;2022-03-02T00:26:31Z;5764;7048.79;dollar $;20221523;;33;2400;43200-0 +2022-03-01;2022-03-01T22:50:33Z;5764;9150.44;zing ƒ;20221522;;421;9921;67534-8 +2022-03-01;2022-03-01T22:22:13Z;4965;6659.44;zing ƒ;20221521;;421;9921;59636-9 +2022-03-01;2022-03-01T22:21:25Z;4965;3154;dollar $;20221520;;421;1200;40745-9 +2022-03-01;2022-03-01T18:16:41Z;4965;4463;zing ƒ;20221519;;290;1100;51431-7 +2022-03-01;2022-03-01T18:03:41Z;4023;6070;zing ƒ;20221518;;33;4078;63505-9 +2022-03-01;2022-03-01T02:50:38Z;5832;12536;british pound £;20221517;;290;2400;49236-0 +2022-03-01;2022-03-01T01:18:52Z;1297;9323.93;dollar $;20221516;;421;2231;36353-1 +2022-02-28;2022-02-28T18:53:54Z;5188;6869.51;british pound £;20221515;;421;4425;26819-4 +2022-02-28;2022-02-28T13:16:09Z;6032;4674;dollar $;20221514;;666;6552;62098-9 +2022-02-28;2022-02-28T11:04:44Z;5188;474;dollar $;20221513;;33;9921;65594-8 +2022-02-28;2022-02-28T10:50:37Z;4023;4182.16;dollar $;20221512;;290;4078;81660-4 +2022-02-28;2022-02-28T10:12:33Z;5243;10761;zing ƒ;20221511;;421;2400;43464-4 +2022-02-28;2022-02-28T07:03:50Z;1945;2925.98;zing ƒ;20221510;;290;9921;75289-6 +2022-02-28;2022-02-28T01:08:45Z;1455;2699;dollar $;20221509;;290;8521;31784-9 +2022-02-27;2022-02-27T23:09:50Z;3100;4648;dollar $;20221508;;666;1002;38684-8 +2022-02-27;2022-02-27T18:46:04Z;1945;3905;zing ƒ;20221507;;33;1200;29323-2 +2022-02-27;2022-02-27T17:14:34Z;1217;4384;dollar $;20221506;;666;2231;45095-2 +2022-02-27;2022-02-27T16:27:44Z;1297;697.21;dollar $;20221505;;421;1100;60414-7 +2022-02-27;2022-02-27T07:21:09Z;3294;8701;dollar $;20221504;;666;8800;55997-8 +2022-02-27;2022-02-27T05:24:47Z;1455;7826.81;dollar $;20221503;;290;2231;37523-6 +2022-02-27;2022-02-27T03:21:53Z;5986;5700;dollar $;20221502;;666;6552;57437-9 +2022-02-26;2022-02-26T23:03:45Z;6032;4700.38;dollar $;20221501;;290;1979;76358-8 +2022-02-26;2022-02-26T17:34:50Z;1217;5427;euro €;20221500;;666;2231;45170-1 +2022-02-26;2022-02-26T15:49:02Z;3795;7265;zing ƒ;20221499;;421;3321;48794-1 +2022-02-26;2022-02-26T06:20:10Z;1455;4772;dollar $;20221498;;421;4425;28268-1 +2022-02-26;2022-02-26T05:49:47Z;5243;4078.84;dollar $;20221497;;666;6317;51186-3 +2022-02-26;2022-02-26T05:38:52Z;1945;9058.54;dollar $;20221496;;33;4078;80139-8 +2022-02-26;2022-02-26T05:33:06Z;2727;1910;dollar $;20221495;;666;8521;41761-7 +2022-02-26;2022-02-26T01:39:45Z;3284;1970;dollar $;20221494;;33;1200;83038-5 +2022-02-25;2022-02-25T20:00:44Z;2727;5349;zing ƒ;20221493;;421;8800;63722-9 +2022-02-25;2022-02-25T18:08:13Z;3795;6628.63;zing ƒ;20221492;;290;6317;71915-0 +2022-02-25;2022-02-25T17:20:25Z;4965;5157.48;dollar $;20221491;;290;8521;70521-2 +2022-02-25;2022-02-25T12:19:42Z;3284;4219;dollar $;20221490;;421;6552;78424-2 +2022-02-25;2022-02-25T12:00:15Z;3294;5396.77;british pound £;20221489;;421;1100;48232-8 +2022-02-25;2022-02-25T10:51:01Z;5516;5042;british pound £;20221488;;666;8521;81085-6 +2022-02-25;2022-02-25T10:35:57Z;5986;8632.57;dollar $;20221487;;421;8800;81588-7 +2022-02-25;2022-02-25T10:08:23Z;3715;4757;dollar $;20221486;;666;1979;79535-1 +2022-02-25;2022-02-25T08:40:18Z;4862;8241.23;dollar $;20221485;;290;1002;84615-5 +2022-02-25;2022-02-25T08:04:28Z;1945;2955.77;dollar $;20221484;;421;8521;25054-7 +2022-02-25;2022-02-25T02:02:18Z;5987;10179;british pound £;20221483;;666;8800;54681-7 +2022-02-25;2022-02-25T01:15:40Z;1217;6285.29;dollar $;20221482;;290;1979;46682-0 +2022-02-24;2022-02-24T22:43:44Z;1297;4464.17;british pound £;20221481;;33;4078;83008-7 +2022-02-24;2022-02-24T17:53:11Z;5986;1111;zing ƒ;20221480;;33;6552;45527-8 +2022-02-24;2022-02-24T09:44:56Z;1121;6985;dollar $;20221479;;421;8521;58541-9 +2022-02-24;2022-02-24T07:36:02Z;1217;767.22;dollar $;20221478;;33;6317;61337-9 +2022-02-24;2022-02-24T00:36:14Z;3294;6719;dollar $;20221477;;33;4425;27601-1 +2022-02-23;2022-02-23T22:16:03Z;2197;5854;british pound £;20221476;;33;1979;47395-0 +2022-02-23;2022-02-23T18:37:03Z;5764;6661.08;dollar $;20221475;;666;9921;29419-0 +2022-02-22;2022-02-22T22:21:28Z;5188;7670;dollar $;20221474;;290;6317;63278-2 +2022-02-22;2022-02-22T17:05:22Z;2727;2670;dollar $;20221473;;421;5420;43203-5 +2022-02-22;2022-02-22T16:54:50Z;5986;6989.77;dollar $;20221472;;666;6317;61697-2 +2022-02-22;2022-02-22T08:56:55Z;3284;10138;dollar $;20221471;;421;3321;58616-6 +2022-02-22;2022-02-22T05:16:45Z;1217;7283;dollar $;20221470;;666;6552;79159-5 +2022-02-22;2022-02-22T03:49:30Z;4608;6491.67;dollar $;20221469;;666;1100;77419-2 +2022-02-22;2022-02-22T02:09:01Z;4465;5510;zing ƒ;20221468;;421;6317;61519-4 +2022-02-21;2022-02-21T20:33:57Z;2489;9129;dollar $;20221467;;290;9921;52756-3 +2022-02-21;2022-02-21T19:18:38Z;4608;8255.15;british pound £;20221466;;421;1979;62349-1 +2022-02-21;2022-02-21T16:36:03Z;4023;7464.47;dollar $;20221465;;421;4078;41559-0 +2022-02-21;2022-02-21T14:45:23Z;5516;832.68;dollar $;20221464;;421;6552;59827-8 +2022-02-21;2022-02-21T13:50:51Z;1297;8896;dollar $;20221463;;290;6552;70746-4 +2022-02-21;2022-02-21T10:49:30Z;4608;5486.48;zing ƒ;20221462;;666;2231;72455-5 +2022-02-21;2022-02-21T10:26:04Z;3294;6626.88;dollar $;20221461;;421;1200;35191-6 +2022-02-21;2022-02-21T10:00:24Z;4965;6626;dollar $;20221460;;421;1200;56230-4 +2022-02-21;2022-02-21T08:39:39Z;3284;4932.62;zing ƒ;20221459;;290;1979;30645-5 +2022-02-21;2022-02-21T08:37:12Z;3100;6041.1;british pound £;20221458;;666;6317;69028-4 +2022-02-21;2022-02-21T03:53:08Z;5987;5057.15;dollar $;20221457;;33;8800;47389-9 +2022-02-21;2022-02-21T03:15:50Z;2197;8856.17;zing ƒ;20221456;;33;6552;74517-4 +2022-02-21;2022-02-21T03:13:01Z;4465;8262;dollar $;20221455;;290;1200;25985-3 +2022-02-20;2022-02-20T22:14:49Z;6032;8979;dollar $;20221454;;421;2400;26755-8 +2022-02-20;2022-02-20T20:25:16Z;5243;6680;dollar $;20221453;;421;4425;80427-5 +2022-02-20;2022-02-20T18:28:21Z;5764;8165.28;dollar $;20221452;;666;1100;25274-2 +2022-02-20;2022-02-20T17:38:41Z;1217;6736.62;zing ƒ;20221451;;666;1002;37088-2 +2022-02-20;2022-02-20T17:01:04Z;1217;3682;zing ƒ;20221450;;666;4425;41243-3 +2022-02-20;2022-02-20T15:16:40Z;4023;6873;dollar $;20221449;;290;4425;80492-3 +2022-02-20;2022-02-20T14:06:57Z;5764;4525.87;dollar $;20221448;;290;1100;77184-7 +2022-02-20;2022-02-20T08:04:29Z;1455;8028.79;british pound £;20221447;;290;5420;46511-7 +2022-02-20;2022-02-20T05:58:58Z;2197;4816.32;zing ƒ;20221446;;666;9921;59113-6 +2022-02-19;2022-02-19T22:50:21Z;5516;9168.15;dollar $;20221445;;33;1979;70246-6 +2022-02-19;2022-02-19T22:41:39Z;1121;8751;dollar $;20221444;;421;5420;62756-5 +2022-02-19;2022-02-19T03:20:57Z;1297;5359;zing ƒ;20221443;;33;1979;63846-5 +2022-02-19;2022-02-19T00:35:16Z;5243;1879;zing ƒ;20221442;;290;2231;62787-6 +2022-02-18;2022-02-18T20:32:46Z;5764;8194;dollar $;20221441;;421;2231;56664-7 +2022-02-18;2022-02-18T17:30:08Z;2727;5450;british pound £;20221440;;290;1100;52609-9 +2022-02-18;2022-02-18T15:37:29Z;5987;6554;dollar $;20221439;;290;2231;41661-2 +2022-02-18;2022-02-18T15:27:15Z;5764;6856.63;euro €;20221438;;33;1979;86110-9 +2022-02-18;2022-02-18T14:18:31Z;1455;7307;dollar $;20221437;;421;8521;74034-0 +2022-02-18;2022-02-18T11:40:07Z;6032;9530.84;dollar $;20221436;;33;5420;84037-9 +2022-02-18;2022-02-18T11:18:12Z;2489;8081;zing ƒ;20221435;;33;8521;37497-2 +2022-02-18;2022-02-18T08:45:56Z;3294;7972.73;dollar $;20221434;;421;9921;85619-9 +2022-02-18;2022-02-18T08:42:46Z;5188;4393;dollar $;20221433;;290;3321;39875-1 +2022-02-17;2022-02-17T22:41:55Z;4965;9039;dollar $;20221432;;666;8800;68799-3 +2022-02-17;2022-02-17T17:38:47Z;2489;4052;dollar $;20221431;;421;3321;68867-5 +2022-02-17;2022-02-17T12:30:35Z;1945;9242.32;british pound £;20221430;;290;5420;74094-3 +2022-02-17;2022-02-17T10:42:12Z;5987;7837.77;zing ƒ;20221429;;666;1100;47933-0 +2022-02-17;2022-02-17T09:59:13Z;5516;6287;dollar $;20221428;;421;8521;31797-7 +2022-02-17;2022-02-17T09:38:09Z;4862;3728.3;dollar $;20221427;;666;2400;58892-5 +2022-02-17;2022-02-17T07:51:43Z;2197;7562.2;zing ƒ;20221426;;33;4425;34603-2 +2022-02-17;2022-02-17T06:12:45Z;2197;5203.88;dollar $;20221425;;290;6317;83576-2 +2022-02-17;2022-02-17T05:53:42Z;6032;6698;dollar $;20221424;;666;1100;85874-6 +2022-02-17;2022-02-17T00:31:39Z;1121;3708.99;dollar $;20221423;;421;6317;61264-7 +2022-02-16;2022-02-16T22:18:19Z;4023;3871;dollar $;20221422;;421;1100;31101-0 +2022-02-16;2022-02-16T16:59:54Z;2197;9554;zing ƒ;20221421;;421;5420;39645-4 +2022-02-16;2022-02-16T16:34:38Z;4465;3438.95;zing ƒ;20221420;;666;6317;27942-6 +2022-02-16;2022-02-16T12:33:55Z;3284;7063.91;british pound £;20221419;;290;2400;84641-6 +2022-02-16;2022-02-16T11:57:13Z;2727;5830;zing ƒ;20221418;;421;8800;37071-0 +2022-02-16;2022-02-16T11:45:26Z;1217;5754;dollar $;20221417;;290;6317;67614-2 +2022-02-16;2022-02-16T10:31:19Z;4023;5866;zing ƒ;20221416;;290;6552;56660-6 +2022-02-16;2022-02-16T07:46:39Z;4608;6733;zing ƒ;20221415;;33;3321;44328-6 +2022-02-15;2022-02-15T23:20:03Z;3100;4862.96;dollar $;20221414;;421;3321;28900-0 +2022-02-15;2022-02-15T11:39:11Z;5188;5945.94;zing ƒ;20221413;;666;1200;67437-6 +2022-02-15;2022-02-15T10:43:15Z;3294;3720.83;dollar $;20221412;;421;6317;74287-4 +2022-02-15;2022-02-15T07:26:26Z;5832;6910.58;dollar $;20221411;;290;8800;51877-3 +2022-02-15;2022-02-15T02:14:59Z;5243;5627;dollar $;20221410;;290;1200;39504-6 +2022-02-15;2022-02-15T01:38:19Z;5516;5934;dollar $;20221409;;666;4078;66315-1 +2022-02-14;2022-02-14T20:45:30Z;5243;5476;euro €;20221408;;666;8521;40292-4 +2022-02-14;2022-02-14T19:56:07Z;2197;10620;zing ƒ;20221407;;290;4078;56961-1 +2022-02-14;2022-02-14T13:07:52Z;3294;4609;british pound £;20221406;;666;2231;49856-9 +2022-02-14;2022-02-14T11:12:59Z;2727;6922;dollar $;20221405;;290;8521;78743-5 +2022-02-14;2022-02-14T06:11:11Z;4465;3910;dollar $;20221404;;421;1002;70531-6 +2022-02-14;2022-02-14T05:51:19Z;1945;4290;dollar $;20221403;;290;1002;40281-9 +2022-02-13;2022-02-13T02:38:52Z;4608;3380.1;dollar $;20221402;;421;2400;69081-0 +2022-02-13;2022-02-13T02:18:23Z;1455;11825;dollar $;20221401;;290;2400;84368-8 +2022-02-13;2022-02-13T01:23:21Z;5986;3588;dollar $;20221400;;666;2231;49235-6 +2022-02-12;2022-02-12T17:14:30Z;4608;4323.54;zing ƒ;20221399;;421;6552;85896-2 +2022-02-12;2022-02-12T11:30:47Z;3294;6946.36;dollar $;20221398;;290;2400;25651-1 +2022-02-11;2022-02-11T20:37:20Z;4465;6394.05;dollar $;20221397;;33;9921;62065-2 +2022-02-11;2022-02-11T17:10:59Z;3284;554.08;zing ƒ;20221396;;421;4425;84306-4 +2022-02-11;2022-02-11T13:47:41Z;1945;12796;british pound £;20221395;;666;8521;81969-5 +2022-02-11;2022-02-11T13:15:32Z;3715;5386;dollar $;20221394;;666;8800;57405-7 +2022-02-11;2022-02-11T12:41:09Z;5987;8395.3;dollar $;20221393;;666;2231;83636-8 +2022-02-11;2022-02-11T08:21:17Z;5516;6745.77;dollar $;20221392;;421;2400;31038-0 +2022-02-11;2022-02-11T04:34:39Z;4862;7704;dollar $;20221391;;666;6552;42513-3 +2022-02-11;2022-02-11T02:09:38Z;3715;9133;dollar $;20221390;;290;2231;27960-5 +2022-02-11;2022-02-11T01:10:55Z;1945;8739.51;dollar $;20221389;;421;6317;52504-0 +2022-02-11;2022-02-11T00:26:14Z;2489;5014.01;dollar $;20221388;;666;6552;41026-6 +2022-02-10;2022-02-10T22:02:50Z;5764;4920;dollar $;20221387;;666;4425;46165-4 +2022-02-10;2022-02-10T18:36:23Z;1297;5949;euro €;20221386;;421;2400;56930-0 +2022-02-10;2022-02-10T18:32:06Z;1297;9882;dollar $;20221385;;290;1200;63647-3 +2022-02-10;2022-02-10T14:09:57Z;4023;3907.84;dollar $;20221384;;33;5420;42494-6 +2022-02-10;2022-02-10T05:54:58Z;2197;3696;british pound £;20221383;;666;6317;29305-0 +2022-02-09;2022-02-09T19:00:39Z;3795;2992;zing ƒ;20221382;;666;6552;49153-2 +2022-02-09;2022-02-09T18:21:04Z;1297;5704.88;zing ƒ;20221381;;666;1979;70686-1 +2022-02-09;2022-02-09T13:41:19Z;5764;6173;zing ƒ;20221380;;421;1200;50704-1 +2022-02-09;2022-02-09T07:18:34Z;5987;6445;dollar $;20221379;;290;1002;67096-9 +2022-02-08;2022-02-08T23:09:26Z;3795;7754.53;zing ƒ;20221378;;666;2231;62282-2 +2022-02-08;2022-02-08T16:16:14Z;4862;4143.01;dollar $;20221377;;33;4425;85731-9 +2022-02-08;2022-02-08T04:32:32Z;6032;10051;dollar $;20221376;;290;9921;57460-3 +2022-02-07;2022-02-07T21:10:29Z;3100;7066.56;british pound £;20221375;;290;8521;47634-7 +2022-02-07;2022-02-07T18:37:17Z;4862;9554.06;dollar $;20221374;;33;1200;44021-0 +2022-02-07;2022-02-07T12:38:17Z;5188;8876.84;dollar $;20221373;;666;4425;44653-2 +2022-02-07;2022-02-07T10:24:01Z;2197;4005;dollar $;20221372;;421;8800;34627-6 +2022-02-07;2022-02-07T06:26:59Z;5516;6968.75;dollar $;20221371;;666;4425;54219-6 +2022-02-06;2022-02-06T15:42:53Z;1121;6969;dollar $;20221370;;421;6317;60192-7 +2022-02-06;2022-02-06T11:07:08Z;6032;5561.53;dollar $;20221369;;421;2400;85579-4 +2022-02-06;2022-02-06T07:56:11Z;4608;10968.31;zing ƒ;20221368;;290;2231;36856-7 +2022-02-06;2022-02-06T04:52:36Z;5986;6655.13;dollar $;20221367;;666;2400;78503-0 +2022-02-05;2022-02-05T05:07:03Z;1455;6839;dollar $;20221366;;666;1200;44112-1 +2022-02-04;2022-02-04T18:12:02Z;1217;9398;dollar $;20221365;;666;1002;61790-1 +2022-02-04;2022-02-04T13:48:32Z;5832;1570.79;dollar $;20221364;;421;1100;59965-0 +2022-02-04;2022-02-04T12:22:07Z;5188;7322.46;zing ƒ;20221363;;421;6552;30134-9 +2022-02-04;2022-02-04T11:03:14Z;2727;4182.76;zing ƒ;20221362;;421;2231;68654-1 +2022-02-04;2022-02-04T07:11:54Z;6032;8129.25;british pound £;20221361;;33;1979;34782-7 +2022-02-04;2022-02-04T02:55:53Z;4965;4775.96;dollar $;20221360;;33;1100;34252-6 +2022-02-03;2022-02-03T21:33:52Z;3294;3459;euro €;20221359;;421;9921;68533-1 +2022-02-03;2022-02-03T15:39:50Z;2489;4050;british pound £;20221358;;421;1100;54112-3 +2022-02-03;2022-02-03T03:47:53Z;2197;3531.68;zing ƒ;20221357;;33;6317;30980-9 +2022-02-02;2022-02-02T18:04:44Z;3294;2530.68;dollar $;20221356;;290;6317;43524-3 +2022-02-02;2022-02-02T13:19:43Z;4965;3928;british pound £;20221355;;666;8800;77435-3 +2022-02-02;2022-02-02T05:00:29Z;1297;9581.95;zing ƒ;20221354;;33;8521;77812-2 +2022-02-02;2022-02-02T01:08:06Z;3100;7461;zing ƒ;20221353;;421;1200;56276-8 +2022-02-02;2022-02-02T00:32:28Z;5764;6363;zing ƒ;20221352;;33;1200;65650-0 +2022-02-01;2022-02-01T22:24:14Z;2727;3176;dollar $;20221351;;290;1200;41685-6 +2022-02-01;2022-02-01T21:02:19Z;4862;5195;zing ƒ;20221350;;666;1002;79788-5 +2022-02-01;2022-02-01T19:40:10Z;3795;3491.61;euro €;20221349;;421;2231;83844-5 +2022-02-01;2022-02-01T13:51:28Z;1217;3742.87;zing ƒ;20221348;;290;8521;72402-8 +2022-02-01;2022-02-01T10:32:40Z;4862;4639.69;dollar $;20221347;;421;3321;81730-5 +2022-02-01;2022-02-01T09:09:24Z;3100;1637;zing ƒ;20221346;;290;3321;38425-7 +2022-02-01;2022-02-01T07:34:59Z;5188;7529.1;dollar $;20221345;;666;5420;54005-8 +2022-01-31;2022-01-31T18:04:00Z;5986;5886;dollar $;20221344;;290;4425;55058-2 +2022-01-31;2022-01-31T09:17:31Z;4608;3959;dollar $;20221343;;666;6317;81136-5 +2022-01-31;2022-01-31T07:07:47Z;1945;6839.35;zing ƒ;20221342;;290;6552;64932-6 +2022-01-31;2022-01-31T07:03:47Z;4465;5210;zing ƒ;20221341;;666;4425;47578-0 +2022-01-30;2022-01-30T23:52:17Z;4862;7432;british pound £;20221340;;33;8521;62776-8 +2022-01-30;2022-01-30T15:06:19Z;5987;2946;dollar $;20221339;;33;8521;57725-8 +2022-01-30;2022-01-30T14:38:35Z;1297;1898.1;dollar $;20221338;;290;3321;58449-9 +2022-01-30;2022-01-30T12:48:39Z;3284;7885;dollar $;20221337;;33;6317;48493-8 +2022-01-29;2022-01-29T21:03:24Z;1297;9074;zing ƒ;20221336;;33;8800;63194-4 +2022-01-29;2022-01-29T10:23:56Z;2727;7081.29;dollar $;20221335;;421;6552;47643-7 +2022-01-29;2022-01-29T04:43:27Z;4862;4859;dollar $;20221334;;290;2400;81356-1 +2022-01-29;2022-01-29T00:44:08Z;5987;7507.1;dollar $;20221333;;666;3321;45599-7 +2022-01-28;2022-01-28T11:05:06Z;1945;10137;dollar $;20221332;;421;6552;27678-9 +2022-01-28;2022-01-28T10:31:40Z;4023;5165.66;dollar $;20221331;;33;4078;68845-1 +2022-01-28;2022-01-28T09:00:51Z;2197;7274;dollar $;20221330;;33;2231;54937-8 +2022-01-28;2022-01-28T08:26:45Z;2489;4951;dollar $;20221329;;290;5420;78358-7 +2022-01-28;2022-01-28T06:08:06Z;5764;4133;dollar $;20221328;;666;4425;31738-2 +2022-01-28;2022-01-28T04:58:40Z;5986;9334;dollar $;20221327;;290;1100;64079-3 +2022-01-28;2022-01-28T03:45:50Z;3795;7718.57;dollar $;20221326;;666;1979;34308-3 +2022-01-27;2022-01-27T22:28:39Z;5243;5554.73;dollar $;20221325;;421;5420;56629-4 +2022-01-27;2022-01-27T11:18:09Z;4023;8927.68;dollar $;20221324;;666;1979;59809-9 +2022-01-27;2022-01-27T08:29:59Z;4608;6235.72;dollar $;20221323;;421;1002;75727-1 +2022-01-27;2022-01-27T07:14:57Z;1297;7256;dollar $;20221322;;33;1200;64735-7 +2022-01-27;2022-01-27T03:55:19Z;4862;2347.25;dollar $;20221321;;290;2400;54719-1 +2022-01-26;2022-01-26T09:37:45Z;3294;6901.18;euro €;20221320;;421;1002;52638-5 +2022-01-26;2022-01-26T02:14:18Z;3284;7304.89;dollar $;20221319;;290;8800;77454-7 +2022-01-25;2022-01-25T13:20:00Z;3715;5826.16;dollar $;20221318;;666;5420;53553-8 +2022-01-25;2022-01-25T09:17:53Z;1455;6587;dollar $;20221317;;33;3321;36961-3 +2022-01-25;2022-01-25T04:00:16Z;5516;10259;british pound £;20221316;;33;1979;49697-2 +2022-01-25;2022-01-25T01:27:20Z;5243;3749.49;british pound £;20221315;;666;1002;62599-1 +2022-01-25;2022-01-25T00:53:36Z;1945;1787.02;dollar $;20221314;;290;8800;46604-9 +2022-01-24;2022-01-24T17:07:56Z;3795;8655.22;zing ƒ;20221313;;421;1200;76062-9 +2022-01-24;2022-01-24T15:28:34Z;5243;6691.28;dollar $;20221312;;33;1002;55414-4 +2022-01-24;2022-01-24T12:15:16Z;5243;6496.27;british pound £;20221311;;290;6552;85395-7 +2022-01-24;2022-01-24T11:36:15Z;5243;5373.07;zing ƒ;20221310;;290;8521;45476-4 +2022-01-24;2022-01-24T09:05:47Z;1121;1779.82;dollar $;20221309;;421;1200;32643-4 +2022-01-24;2022-01-24T04:24:01Z;5832;3804.64;dollar $;20221308;;290;4425;72737-8 +2022-01-24;2022-01-24T02:34:33Z;5516;6897;dollar $;20221307;;421;1002;41712-5 +2022-01-24;2022-01-24T01:41:58Z;3715;1041;dollar $;20221306;;666;4078;25092-2 +2022-01-23;2022-01-23T19:12:48Z;3100;6643.67;zing ƒ;20221305;;421;4078;30141-6 +2022-01-23;2022-01-23T19:05:52Z;3100;6256;dollar $;20221304;;290;4078;74731-2 +2022-01-23;2022-01-23T19:01:44Z;3795;3072;dollar $;20221303;;290;2231;37180-4 +2022-01-23;2022-01-23T18:58:15Z;5832;7254;dollar $;20221302;;421;1979;34792-0 +2022-01-23;2022-01-23T17:02:51Z;2197;8063.98;dollar $;20221301;;421;8521;36295-4 +2022-01-23;2022-01-23T16:40:21Z;4608;6525;dollar $;20221300;;290;9921;69508-5 +2022-01-23;2022-01-23T16:11:28Z;5188;2550.84;dollar $;20221299;;290;1002;49654-5 +2022-01-23;2022-01-23T16:08:15Z;3294;3564;zing ƒ;20221298;;33;1979;82857-6 +2022-01-23;2022-01-23T13:59:29Z;5764;9997.83;dollar $;20221297;;33;3321;34011-0 +2022-01-23;2022-01-23T10:58:23Z;5764;5098.74;british pound £;20221296;;33;6552;58934-7 +2022-01-23;2022-01-23T08:55:37Z;1217;12601;dollar $;20221295;;33;5420;70048-9 +2022-01-23;2022-01-23T07:34:39Z;3795;7129.97;british pound £;20221294;;33;9921;64643-1 +2022-01-23;2022-01-23T06:30:35Z;6032;7522;british pound £;20221293;;33;2400;47505-0 +2022-01-23;2022-01-23T01:31:29Z;3795;10941.73;dollar $;20221292;;666;2400;31872-3 +2022-01-22;2022-01-22T23:00:45Z;4465;4297;dollar $;20221291;;290;1200;51714-9 +2022-01-22;2022-01-22T21:29:24Z;4023;4211.9;dollar $;20221290;;33;1100;24853-3 +2022-01-22;2022-01-22T19:56:38Z;3715;5913.19;british pound £;20221289;;666;1200;73856-6 +2022-01-22;2022-01-22T17:37:47Z;3100;5240.99;zing ƒ;20221288;;290;2231;66641-1 +2022-01-22;2022-01-22T14:04:02Z;3795;7214;dollar $;20221287;;666;2400;53835-7 +2022-01-22;2022-01-22T12:22:47Z;3100;509;zing ƒ;20221286;;421;1979;77431-4 +2022-01-22;2022-01-22T03:13:46Z;3100;3055.19;dollar $;20221285;;666;1002;77559-9 +2022-01-22;2022-01-22T02:52:55Z;4023;2999.85;zing ƒ;20221284;;666;2400;62979-0 +2022-01-21;2022-01-21T21:30:22Z;1455;7250;dollar $;20221283;;290;6317;33950-5 +2022-01-21;2022-01-21T15:57:58Z;1121;7248.5;dollar $;20221282;;666;8800;72162-9 +2022-01-21;2022-01-21T11:36:14Z;1455;4567.06;dollar $;20221281;;290;5420;36130-8 +2022-01-21;2022-01-21T07:56:18Z;1297;4937;dollar $;20221280;;421;1979;62804-7 +2022-01-21;2022-01-21T06:36:35Z;1121;9324.79;dollar $;20221279;;290;1979;55289-6 +2022-01-21;2022-01-21T04:26:48Z;5188;2805.44;zing ƒ;20221278;;33;4078;65384-5 +2022-01-20;2022-01-20T19:44:29Z;3795;5489.95;dollar $;20221277;;290;5420;83530-5 +2022-01-20;2022-01-20T18:33:10Z;3284;5197;dollar $;20221276;;290;4425;25382-8 +2022-01-20;2022-01-20T15:17:46Z;3715;8127;dollar $;20221275;;33;8800;66377-8 +2022-01-20;2022-01-20T11:08:01Z;3100;3850.02;dollar $;20221274;;290;8521;76512-1 +2022-01-20;2022-01-20T06:33:57Z;3100;6798.94;british pound £;20221273;;666;1979;49440-9 +2022-01-19;2022-01-19T17:52:21Z;2489;1862.68;zing ƒ;20221272;;666;2400;33918-3 +2022-01-19;2022-01-19T17:02:05Z;2727;5025;dollar $;20221271;;421;4078;78434-2 +2022-01-19;2022-01-19T16:49:39Z;3795;8235;dollar $;20221270;;666;6552;39847-1 +2022-01-19;2022-01-19T15:42:15Z;2727;8858.1;dollar $;20221269;;290;5420;33101-8 +2022-01-19;2022-01-19T14:36:58Z;3100;7450;dollar $;20221268;;33;6317;37278-4 +2022-01-19;2022-01-19T11:48:15Z;5516;7138.86;dollar $;20221267;;33;1200;30523-1 +2022-01-19;2022-01-19T08:46:42Z;4023;7302.45;zing ƒ;20221266;;33;6317;41726-3 +2022-01-19;2022-01-19T02:36:40Z;5832;6763;dollar $;20221265;;421;1100;84449-3 +2022-01-18;2022-01-18T19:36:03Z;4862;11051;british pound £;20221264;;666;4078;78821-8 +2022-01-18;2022-01-18T16:04:59Z;5516;7839;dollar $;20221263;;421;9921;85793-4 +2022-01-18;2022-01-18T15:05:58Z;5832;10683;dollar $;20221262;;290;2231;66482-9 +2022-01-18;2022-01-18T03:40:26Z;2727;288.81;zing ƒ;20221261;;421;4425;52198-0 +2022-01-18;2022-01-18T00:47:17Z;4862;3424.71;zing ƒ;20221260;;33;2400;44906-0 +2022-01-17;2022-01-17T07:51:50Z;5516;10740;dollar $;20221259;;666;9921;39579-8 +2022-01-16;2022-01-16T23:34:02Z;3284;8463;dollar $;20221258;;421;2400;64126-9 +2022-01-16;2022-01-16T20:52:58Z;3100;9651.5;zing ƒ;20221257;;290;6552;48618-8 +2022-01-16;2022-01-16T20:01:47Z;4465;5506;dollar $;20221256;;666;1979;85550-0 +2022-01-16;2022-01-16T18:37:05Z;5832;6135.66;dollar $;20221255;;421;6552;61379-8 +2022-01-16;2022-01-16T11:18:35Z;5243;4991;dollar $;20221254;;666;2400;62981-6 +2022-01-16;2022-01-16T10:57:26Z;4465;5698;zing ƒ;20221253;;666;5420;63665-8 +2022-01-16;2022-01-16T08:49:48Z;5986;4560.73;zing ƒ;20221252;;33;1002;37626-2 +2022-01-16;2022-01-16T03:49:17Z;2197;8853;euro €;20221251;;33;1979;71648-1 +2022-01-15;2022-01-15T23:27:00Z;2197;8167.46;euro €;20221250;;666;9921;72523-5 +2022-01-15;2022-01-15T21:38:49Z;1455;1949;dollar $;20221249;;290;2231;28684-7 +2022-01-15;2022-01-15T10:08:40Z;3795;8954.38;dollar $;20221248;;290;4078;74166-3 +2022-01-15;2022-01-15T09:58:04Z;3284;6803;dollar $;20221247;;666;4078;42216-3 +2022-01-15;2022-01-15T08:36:20Z;4023;3978;dollar $;20221246;;33;4078;32814-6 +2022-01-15;2022-01-15T01:33:42Z;1217;3232.89;dollar $;20221245;;290;2231;52956-7 +2022-01-15;2022-01-15T01:29:51Z;6032;7861;dollar $;20221244;;290;2400;58485-0 +2022-01-14;2022-01-14T19:57:35Z;5243;9615;british pound £;20221243;;421;6552;74137-9 +2022-01-14;2022-01-14T17:37:52Z;5188;699;zing ƒ;20221242;;33;8521;42610-3 +2022-01-14;2022-01-14T08:16:03Z;4465;2268;dollar $;20221241;;421;4078;66322-4 +2022-01-14;2022-01-14T06:38:47Z;5832;4243.38;zing ƒ;20221240;;421;1100;48067-0 +2022-01-14;2022-01-14T02:20:20Z;1945;6389;dollar $;20221239;;666;9921;37254-6 +2022-01-14;2022-01-14T01:14:34Z;2197;3952.66;dollar $;20221238;;666;1002;77261-8 +2022-01-13;2022-01-13T21:12:16Z;6032;11124;zing ƒ;20221237;;421;8800;61346-3 +2022-01-13;2022-01-13T21:05:16Z;1121;2365.92;dollar $;20221236;;666;2400;37053-8 +2022-01-13;2022-01-13T19:45:18Z;5832;4518;dollar $;20221235;;290;4425;67513-2 +2022-01-13;2022-01-13T17:57:55Z;4608;6263.54;zing ƒ;20221234;;421;4078;77527-6 +2022-01-13;2022-01-13T11:04:18Z;5832;5030;dollar $;20221233;;33;8521;59104-6 +2022-01-12;2022-01-12T22:12:48Z;3294;5886;dollar $;20221232;;290;6552;26466-1 +2022-01-12;2022-01-12T20:40:09Z;4862;4723;dollar $;20221231;;33;8800;58728-2 +2022-01-12;2022-01-12T18:27:41Z;3294;7692;dollar $;20221230;;666;1100;68629-0 +2022-01-12;2022-01-12T16:07:33Z;5986;1047;zing ƒ;20221229;;33;4425;35922-5 +2022-01-12;2022-01-12T12:58:03Z;5243;6293.29;dollar $;20221228;;33;1979;76354-5 +2022-01-12;2022-01-12T01:04:21Z;3795;3076;zing ƒ;20221227;;666;2400;59385-8 +2022-01-11;2022-01-11T22:26:47Z;5243;7739.68;dollar $;20221226;;33;4425;66920-4 +2022-01-11;2022-01-11T21:09:00Z;1455;5364;dollar $;20221225;;33;1979;84062-8 +2022-01-11;2022-01-11T14:54:26Z;1121;4007.17;dollar $;20221224;;666;6317;60347-8 +2022-01-11;2022-01-11T14:42:55Z;1945;8426;dollar $;20221223;;421;4425;31428-6 +2022-01-11;2022-01-11T12:56:12Z;4965;3474;dollar $;20221222;;33;6317;26883-4 +2022-01-11;2022-01-11T12:48:14Z;3284;10482.2;dollar $;20221221;;421;8800;37431-3 +2022-01-11;2022-01-11T11:11:18Z;4023;9677;british pound £;20221220;;33;6552;50209-3 +2022-01-11;2022-01-11T03:38:00Z;3100;7390.7;dollar $;20221219;;666;8800;61297-8 +2022-01-11;2022-01-11T01:37:26Z;5243;6774;dollar $;20221218;;290;4078;57178-7 +2022-01-10;2022-01-10T20:46:18Z;3795;9499;dollar $;20221217;;421;9921;51336-6 +2022-01-10;2022-01-10T11:46:34Z;1297;4964;euro €;20221216;;421;4078;77334-0 +2022-01-10;2022-01-10T10:49:47Z;1217;7623;british pound £;20221215;;421;9921;32894-9 +2022-01-10;2022-01-10T08:08:34Z;3294;4977.93;zing ƒ;20221214;;666;1100;83245-9 +2022-01-10;2022-01-10T06:54:58Z;2489;9932.32;dollar $;20221213;;33;3321;81979-1 +2022-01-10;2022-01-10T02:02:43Z;3795;5451;dollar $;20221212;;666;2231;28188-9 +2022-01-09;2022-01-09T22:41:35Z;1945;2293.74;dollar $;20221211;;421;2231;44887-0 +2022-01-09;2022-01-09T22:28:49Z;1945;7615;dollar $;20221210;;290;6552;27886-9 +2022-01-09;2022-01-09T19:45:24Z;4965;6854;dollar $;20221209;;421;8800;83282-2 +2022-01-09;2022-01-09T17:24:13Z;3715;5024.2;dollar $;20221208;;290;1100;59799-2 +2022-01-09;2022-01-09T14:04:39Z;4862;7023.65;dollar $;20221207;;421;2231;61125-3 +2022-01-09;2022-01-09T08:39:12Z;3100;9173;zing ƒ;20221206;;666;8521;79877-6 +2022-01-09;2022-01-09T02:31:42Z;1121;10059.45;zing ƒ;20221205;;421;9921;36834-5 +2022-01-09;2022-01-09T02:02:23Z;4862;2806;dollar $;20221204;;666;4078;53663-6 +2022-01-09;2022-01-09T00:22:56Z;5832;5978;zing ƒ;20221203;;33;8800;80591-5 +2022-01-08;2022-01-08T22:51:49Z;1297;2817;dollar $;20221202;;666;1100;45773-5 +2022-01-08;2022-01-08T22:46:23Z;5516;5264;dollar $;20221201;;666;4425;79335-9 +2022-01-08;2022-01-08T20:41:21Z;5764;5700;dollar $;20221200;;666;5420;73004-3 +2022-01-08;2022-01-08T17:25:01Z;5188;4577;zing ƒ;20221199;;421;4078;45603-6 +2022-01-08;2022-01-08T16:55:48Z;5764;10927.03;dollar $;20221198;;33;4078;71732-0 +2022-01-08;2022-01-08T13:41:29Z;5516;5843;zing ƒ;20221197;;421;5420;38693-3 +2022-01-08;2022-01-08T12:53:03Z;5764;4627.25;dollar $;20221196;;421;8521;65078-9 +2022-01-08;2022-01-08T08:11:27Z;6032;6139.96;dollar $;20221195;;421;5420;73885-2 +2022-01-08;2022-01-08T04:03:30Z;4023;6508;dollar $;20221194;;290;1200;24859-7 +2022-01-08;2022-01-08T03:44:53Z;6032;5188.7;dollar $;20221193;;33;1100;73765-0 +2022-01-07;2022-01-07T20:12:27Z;5516;8412.56;dollar $;20221192;;666;6317;80754-5 +2022-01-07;2022-01-07T16:15:04Z;1945;6284;dollar $;20221191;;666;1200;44424-7 +2022-01-07;2022-01-07T16:13:11Z;1121;3897;dollar $;20221190;;666;4078;28719-3 +2022-01-07;2022-01-07T02:12:12Z;1945;6739;dollar $;20221189;;290;5420;72653-4 +2022-01-06;2022-01-06T18:23:21Z;1121;4610;dollar $;20221188;;421;8800;85573-5 +2022-01-06;2022-01-06T15:51:16Z;2727;5958;dollar $;20221187;;290;1979;48400-9 +2022-01-06;2022-01-06T14:05:24Z;5832;4761;zing ƒ;20221186;;33;1002;66076-7 +2022-01-06;2022-01-06T09:12:34Z;5986;5282.88;dollar $;20221185;;290;4078;45181-0 +2022-01-06;2022-01-06T06:57:55Z;5516;7144.74;euro €;20221184;;666;5420;46351-2 +2022-01-06;2022-01-06T02:21:52Z;3795;6357;dollar $;20221183;;666;1100;59952-0 +2022-01-06;2022-01-06T00:02:38Z;2727;6273;zing ƒ;20221182;;33;1002;78347-4 +2022-01-05;2022-01-05T20:10:04Z;3294;7667.84;dollar $;20221181;;290;1979;59375-9 +2022-01-05;2022-01-05T16:16:42Z;3284;5719.67;zing ƒ;20221180;;421;1002;69617-6 +2022-01-05;2022-01-05T15:15:22Z;1455;9606;zing ƒ;20221179;;290;3321;28637-5 +2022-01-05;2022-01-05T11:09:01Z;2197;4821;dollar $;20221178;;33;8800;67128-2 +2022-01-05;2022-01-05T10:09:46Z;4862;6966.53;british pound £;20221177;;421;6552;36816-7 +2022-01-05;2022-01-05T06:26:52Z;2197;6333;dollar $;20221176;;666;1979;58427-7 +2022-01-05;2022-01-05T00:15:44Z;3715;5968;british pound £;20221175;;666;1002;54686-7 +2022-01-04;2022-01-04T20:41:18Z;5516;5388.88;dollar $;20221174;;666;1100;29790-6 +2022-01-04;2022-01-04T20:38:28Z;4465;7283.58;zing ƒ;20221173;;290;1979;32550-9 +2022-01-04;2022-01-04T13:54:38Z;4023;9051;british pound £;20221172;;421;8521;60427-0 +2022-01-04;2022-01-04T13:20:48Z;5764;6867;zing ƒ;20221171;;421;1002;69045-1 +2022-01-04;2022-01-04T13:06:08Z;5987;6320.07;dollar $;20221170;;666;2231;71116-7 +2022-01-04;2022-01-04T08:35:27Z;3284;4414;dollar $;20221169;;33;3321;41233-7 +2022-01-04;2022-01-04T05:30:13Z;5516;8795.81;euro €;20221168;;421;9921;57331-2 +2022-01-04;2022-01-04T01:02:15Z;2197;7948;dollar $;20221167;;421;4078;48112-1 +2022-01-03;2022-01-03T19:15:49Z;4965;7240;zing ƒ;20221166;;33;1002;51683-7 +2022-01-03;2022-01-03T19:12:07Z;6032;8705.65;dollar $;20221165;;421;8800;43688-9 +2022-01-03;2022-01-03T12:48:14Z;3294;7225.24;british pound £;20221164;;421;9921;27461-9 +2022-01-03;2022-01-03T09:29:58Z;5832;5509;zing ƒ;20221163;;290;4078;62720-5 +2022-01-03;2022-01-03T02:18:47Z;4023;7828.1;zing ƒ;20221162;;33;8800;26519-1 +2022-01-03;2022-01-03T01:37:25Z;5764;5763;zing ƒ;20221161;;666;1979;86240-2 +2022-01-03;2022-01-03T01:33:11Z;6032;8686.88;dollar $;20221160;;290;5420;35809-4 +2022-01-02;2022-01-02T17:23:47Z;3294;3749;dollar $;20221159;;33;4425;52526-8 +2022-01-02;2022-01-02T16:12:39Z;5832;5363.17;british pound £;20221158;;666;6317;34142-5 +2022-01-02;2022-01-02T14:28:30Z;5987;10855.01;zing ƒ;20221157;;421;4078;30711-4 +2022-01-02;2022-01-02T10:59:06Z;5243;7024.83;euro €;20221156;;290;4425;75306-8 +2022-01-02;2022-01-02T09:50:39Z;3715;6797.87;dollar $;20221155;;290;8521;28563-1 +2022-01-02;2022-01-02T08:49:40Z;1945;6609;british pound £;20221154;;290;9921;52172-4 +2022-01-02;2022-01-02T04:39:31Z;3715;4694;zing ƒ;20221153;;666;2231;64953-8 +2022-01-02;2022-01-02T02:48:38Z;4465;7276.58;dollar $;20221152;;33;2400;67674-4 +2022-01-02;2022-01-02T01:04:37Z;1297;6590;zing ƒ;20221151;;290;6552;30200-9 +2022-01-02;2022-01-02T00:37:32Z;5986;5134;dollar $;20221150;;666;4425;71601-8 +2022-01-02;2022-01-02T00:03:41Z;1455;5938;zing ƒ;20221149;;421;1200;30574-2 +2022-01-01;2022-01-01T20:18:43Z;2727;5547.13;dollar $;20221148;;421;3321;83006-2 +2022-01-01;2022-01-01T19:14:30Z;4862;9941;dollar $;20221147;;421;8521;60923-9 +2022-01-01;2022-01-01T13:17:04Z;4023;5419.9;dollar $;20221146;;666;4425;79079-4 +2022-01-01;2022-01-01T12:00:18Z;3284;5006;dollar $;20221145;;666;9921;53844-1 +2022-01-01;2022-01-01T07:07:44Z;5987;8640.06;dollar $;20221144;;666;6552;70021-4 +2022-01-01;2022-01-01T06:56:58Z;6032;5076.61;dollar $;20221143;;33;8800;41326-5 diff --git a/Data/transf_reform.csv b/Data/transf_reform.csv index 65d49289..d8873f15 100644 --- a/Data/transf_reform.csv +++ b/Data/transf_reform.csv @@ -1,20012 +1,20012 @@ -datetime;user;value;transferid;country;description -2018-12-06T22:19:19Z;Eduardo;598.5984;116241629;Germany; -2018-12-06T22:10:34Z;Júlio;4610.955;115586504;Germany; -2018-12-06T21:59:50Z;Nathália;4417.866;115079280;Germany; -2018-12-06T21:54:13Z;Júlio;2739.618;114972398;Germany; -2018-12-06T21:41:27Z;Ana;1408.261;116262934;Germany; -2018-12-06T21:18:40Z;Nathália;5051.828;115710402;Germany; -2018-12-06T20:54:32Z;Eduardo;5665.214;114830203;Germany; -2018-12-06T20:15:46Z;Sandra;1474.44;116323455;Germany; -2018-12-06T20:04:35Z;Armando;8905.509;115304382;Germany; -2018-12-22T20:00:56Z;Armando;18521.2;114513684;Germany; -2018-12-06T19:48:39Z;Ana;4588.665;116281690;Germany; -2018-12-06T19:39:07Z;Júlio;6224.433;116187120;Germany; -2018-12-06T19:32:58Z;nathalia;5504.082;115790569;Germany; -2018-12-06T19:10:34Z;nathalia;2627.581;116212216;Germany; -2018-12-06T19:07:50Z;Eduardo;9560.668;115917812;Germany; -2018-12-06T18:48:29Z;Ana;8747.758;114255039;Germany; -2018-12-21T18:46:59Z;Júlio Cesar;16226.42;116279014;Germany; -2018-12-06T18:45:32Z;Ana;3284.617;115459852;Germany; -2018-12-06T18:09:15Z;Júlio Cesar;387.596;114894102;Germany; -2018-12-06T17:58:17Z;Ana;14890.19;115036903;Germany; -2018-12-21T17:41:48Z;Nathália;17583.29;115748273;Germany; -2018-12-06T17:41:45Z;Nathália;2111.781;115975046;Germany; -2018-12-06T17:34:49Z;Armando;5726.127;114489509;Germany; -2018-12-06T17:19:19Z;Júlio;5776.826;115301425;Germany; -2018-12-06T17:02:13Z;Júlio;10536.53;116268187;Germany; -2018-12-06T16:59:38Z;Eduardo;11758.72;115580064;Germany; -2018-12-06T16:46:29Z;Sandra;7320.383;115682194;Germany; -2018-12-06T16:36:07Z;Júlio Cesar;1405.381;114362991;Germany; -2018-12-06T16:08:53Z;nathalia;9927.734;115180759;Germany; -2018-12-06T15:53:15Z;Ana;7650.648;114736144;Germany; -2018-12-06T15:21:36Z;Eduardo;4436.112;114425893;Germany; -2018-12-06T15:12:50Z;Ana;14197.76;114409645;Germany; -2018-12-06T15:11:13Z;Júlio Cesar;2431.26;115332324;Germany; -2018-12-06T14:55:06Z;Nathália;2469.03;114816281;Germany; -2018-12-06T14:47:25Z;Ana;482.8322;114387526;Germany; -2018-12-06T14:45:23Z;Júlio Cesar;909.7389;114690249;Germany; -2018-12-06T14:35:13Z;Sandra;2895.098;114948013;Germany; -2018-12-06T14:28:33Z;Ana;2271.775;114279693;Germany; -2018-12-06T13:50:11Z;Armando;818.6205;115148416;Germany; -2018-12-06T13:43:59Z;Júlio Cesar;8937.424;114239805;Germany; -2018-12-06T13:40:48Z;Nathália;1212.638;116063458;Germany; -2018-12-06T13:33:08Z;Sandra;5793.4;115289761;Germany; -2018-12-06T13:06:40Z;Ana;3428.746;116347342;Germany; -2018-12-06T12:59:58Z;Ana;206.9737;115615456;Germany; -2018-12-06T12:57:36Z;Nathália;5819.066;115237461;Germany; -2018-12-06T11:43:49Z;Ana;5244.354;114403850;Germany; -2018-12-06T10:05:21Z;Eduardo;707.6096;114746955;Germany; -2018-12-06T09:50:03Z;Eduardo;1586.594;114796170;Germany; -2018-12-23T09:46:23Z;Júlio;15395.68;115272184;Germany; -2018-12-06T09:37:04Z;Nathália;1739.667;115549066;Germany; -2018-12-06T09:29:45Z;Eduardo;163.8242;114947643;Germany; -2018-12-06T09:14:28Z;Ana;13091.65;115324557;Germany; -2018-12-06T09:00:57Z;Nathália;855.7494;114781229;Germany; -2018-12-06T08:43:31Z;Júlio Cesar;5385.843;114951246;Germany; -2018-12-06T08:17:22Z;Armando;1540.353;116256690;Germany; -2018-12-06T08:10:14Z;Ana;4941.265;114674585;Germany; -2018-12-06T07:56:48Z;Sandra;4922.733;114899468;Germany; -2018-12-06T07:23:32Z;Armando;6140.51;114640335;Germany; -2018-12-06T07:00:22Z;Armando;11654.86;114566119;Germany; -2018-12-06T06:44:46Z;Júlio Cesar;1005.012;114233841;Germany; -2018-12-21T06:38:20Z;Júlio Cesar;17554.83;114983226;Germany; -2018-12-06T06:34:15Z;Nathália;7240.652;116323536;Germany; -2018-12-06T06:06:27Z;Nathália;2883.703;116354046;Germany; -2018-12-06T05:33:48Z;Ana;2886.069;114637858;Germany; -2018-12-06T04:40:09Z;Eduardo;13446.57;114944812;Germany; -2018-12-06T04:34:50Z;Armando;5800.231;114934674;Germany; -2018-12-06T04:07:51Z;Ana;1642.719;116128032;Germany; -2018-12-06T04:02:13Z;Armando;4358.199;114811640;Germany; -2018-12-06T04:01:46Z;Júlio;614.0541;115747831;Germany; -2018-12-06T03:58:51Z;Sandra;8439.984;114937215;Germany; -2018-12-06T03:52:02Z;Eduardo;13521.27;115327599;Germany; -2018-12-06T03:41:34Z;Júlio Cesar;10032.62;115293798;Germany; -2018-12-06T03:35:50Z;Armando;11994.7;114643817;Germany; -2018-12-06T02:24:49Z;nathalia;2664.823;114841914;Germany; -2018-12-06T02:08:30Z;Ana;8378.197;116035802;Germany; -2018-12-06T01:43:15Z;Júlio Cesar;1244.145;115606491;Germany; -2018-12-06T01:38:20Z;Ana;5992.922;114577041;Germany; -2018-12-06T01:36:19Z;nathalia;11326.09;114619848;Germany; -2018-12-06T01:18:08Z;Júlio;992.4471;114980626;Germany; -2018-12-06T01:07:52Z;Eduardo;994.4858;116334049;Germany; -2018-12-06T01:05:47Z;Sandra;2035.962;116139985;Germany; -2018-12-06T01:02:19Z;Ana;5106.057;114300904;Germany; -2018-12-06T00:30:32Z;Armando;6650.33;115356527;Germany; -2018-12-06T00:29:51Z;Júlio;12687.14;115073073;Germany; -2018-12-06T00:24:57Z;nathalia;1036.568;116031982;Germany; -2018-12-06T00:22:00Z;Eduardo;3729.228;115228735;Germany; -2018-12-06T00:10:41Z;Ana;5054.067;114499847;Germany; -2018-12-05T23:29:46Z;nathalia;6499.092;116343921;Germany; -2018-12-05T23:15:49Z;Nathália;4294.701;115688852;Germany; -2018-12-05T23:06:35Z;Sandra;227.7063;116054794;Germany; -2018-12-05T22:47:26Z;Nathália;4097.364;115288958;Germany; -2018-12-05T22:39:23Z;Júlio;13685.16;114742172;Germany; -2018-12-05T22:36:20Z;Eduardo;2736.315;115001493;Germany; -2018-12-05T22:19:13Z;Júlio;1500.571;116368666;Germany; -2018-12-05T22:07:19Z;Armando;2728.407;115217550;Germany; -2018-12-05T22:02:49Z;Eduardo;1287.721;114442169;Germany; -2018-12-05T21:56:00Z;Nathália;5941.938;115382933;Germany; -2018-12-05T21:44:47Z;Júlio Cesar;14732.41;115821445;Germany; -2018-12-05T21:37:19Z;Sandra;7677.049;116186289;Germany; -2018-12-05T21:23:09Z;Júlio;171.1975;115409527;Germany; -2018-12-05T20:54:55Z;Eduardo;8663.315;114284753;Germany; -2018-12-05T20:54:44Z;Armando;2168.055;114983201;Germany; -2018-12-05T20:45:02Z;Nathália;12752.44;114764377;Germany; -2018-12-05T20:34:16Z;Sandra;544.0504;116317496;Germany; -2018-12-05T20:34:03Z;Nathália;2567.497;114907683;Germany; -2018-12-05T19:53:07Z;Nathália;4274.125;114692367;Germany; -2018-12-05T19:31:55Z;Júlio Cesar;1973.385;114582321;Germany; -2018-12-05T19:20:41Z;Armando;1419.35;115161584;Germany; -2018-12-05T19:06:14Z;Júlio;3721.95;116231025;Germany; -2018-12-05T18:42:57Z;Júlio Cesar;7676.298;115636912;Germany; -2018-12-23T18:11:27Z;Eduardo;17218.64;115904797;Germany; -2018-12-05T18:09:23Z;nathalia;1782.647;114741551;Germany; -2018-12-05T17:53:40Z;Júlio;8401.113;114675204;Germany; -2018-12-05T17:24:24Z;Nathália;14653.67;114367100;Germany; -2018-12-05T16:46:51Z;Eduardo;6941.532;114379248;Germany; -2018-12-05T16:39:29Z;Júlio;10956.92;114760067;Germany; -2018-12-05T16:15:26Z;Nathália;392.1602;116379338;Germany; -2018-12-05T15:52:57Z;Nathália;11129.93;114593665;Germany; -2018-12-05T15:48:58Z;Armando;72.47059;114837959;Germany; -2018-12-05T15:01:52Z;Nathália;842.5875;114749986;Germany; -2018-12-05T13:55:56Z;Ana;1334.152;116177560;Germany; -2018-12-05T13:46:36Z;Sandra;81.92041;115629964;Germany; -2018-12-05T13:46:16Z;Sandra;830.7528;114239434;Germany; -2018-12-05T13:43:24Z;Ana;2247.028;116281402;Germany; -2018-12-05T13:24:17Z;Júlio;7919.96;115326452;Germany; -2018-12-22T13:09:13Z;Eduardo;16254.78;114520578;Germany; -2018-12-05T12:57:53Z;Ana;1612.684;115202897;Germany; -2018-12-05T12:57:30Z;Ana;8.918594;115045150;Germany; -2018-12-05T12:48:46Z;Armando;2371.272;114490434;Germany; -2018-12-05T12:42:25Z;Eduardo;9892.522;116134274;Germany; -2018-12-05T12:26:23Z;Ana;4064.246;115174964;Germany; -2018-12-05T12:19:50Z;Ana;6560.538;116083367;Germany; -2018-12-05T12:13:23Z;Júlio Cesar;313.501;115680946;Germany; -2018-12-05T12:11:29Z;Armando;3092.44;115489172;Germany; -2018-12-05T12:09:38Z;Eduardo;788.5108;114593594;Germany; -2018-12-05T11:52:48Z;Sandra;7810.831;115208817;Germany; -2018-12-05T11:41:02Z;Ana;1272.677;114434461;Germany; -2018-12-05T11:36:53Z;Ana;2328.719;116242639;Germany; -2018-12-05T11:30:28Z;Júlio;1165.272;114578994;Germany; -2018-12-05T11:21:13Z;Júlio Cesar;9270.92;115012449;Germany; -2018-12-05T11:13:43Z;Eduardo;5695.942;114286284;Germany; -2018-12-05T11:07:04Z;Júlio Cesar;1321.421;116397598;Germany; -2018-12-05T11:00:31Z;Ana;335.8082;114585343;Germany; -2018-12-23T10:59:50Z;Júlio Cesar;15093.32;115919119;Germany; -2018-12-05T10:57:08Z;Nathália;10833.49;114689484;Germany; -2018-12-05T10:54:05Z;Armando;2748.092;114205606;Germany; -2018-12-05T10:30:34Z;Júlio;13257.21;115482943;Germany; -2018-12-23T10:29:34Z;Sandra;19240.76;114665132;Germany; -2018-12-05T10:19:45Z;Eduardo;86.36331;114506627;Germany; -2018-12-05T10:16:49Z;Nathália;7087.815;115503241;Germany; -2018-12-05T10:06:35Z;Júlio Cesar;8667.195;114545627;Germany; -2018-12-05T09:33:32Z;Júlio Cesar;2276.229;114423735;Germany; -2018-12-05T09:28:36Z;Júlio;3685.356;114485601;Germany; -2018-12-05T08:59:57Z;Júlio Cesar;3701.165;114235282;Germany; -2018-12-05T08:34:46Z;nathalia;3229.058;115003274;Germany; -2018-12-05T08:28:27Z;nathalia;729.8646;115582647;Germany; -2018-12-05T08:02:06Z;Júlio Cesar;11946.71;114580292;Germany; -2018-12-05T07:50:03Z;Júlio Cesar;601.0857;114937747;Germany; -2018-12-05T07:26:08Z;Eduardo;4356.216;114415016;Germany; -2018-12-05T06:58:31Z;Ana;4017.285;114230914;Germany; -2018-12-05T06:46:49Z;Eduardo;10449.94;114732991;Germany; -2018-12-05T06:22:41Z;nathalia;4768.083;114329623;Germany; -2018-12-05T06:19:35Z;Nathália;1012.323;114325824;Germany; -2018-12-05T06:14:38Z;Ana;2621.461;116262439;Germany; -2018-12-21T06:04:49Z;Júlio Cesar;18938.43;116281869;Germany; -2018-12-05T05:22:30Z;Eduardo;6255.905;114591071;Germany; -2018-12-05T05:14:50Z;Armando;2072.195;114999851;Germany; -2018-12-05T04:42:30Z;Júlio;4126.797;114247955;Germany; -2018-12-05T03:36:41Z;nathalia;3160.758;114626777;Germany; -2018-12-05T02:19:55Z;Ana;6822.907;116232243;Germany; -2018-12-05T02:11:07Z;Júlio;9026.468;114820184;Germany; -2018-12-05T02:10:59Z;Sandra;6560.551;116389403;Germany; -2018-12-05T02:00:49Z;Sandra;974.3924;116287805;Germany; -2018-12-05T01:31:29Z;Eduardo;9051.252;114395997;Germany; -2018-12-05T01:13:04Z;nathalia;1084.998;116062097;Germany; -2018-12-05T01:12:25Z;Nathália;188.6754;114261011;Germany; -2018-12-05T00:49:43Z;nathalia;9868.121;115816970;Germany; -2018-12-05T00:22:18Z;Armando;2952.136;115393287;Germany; -2018-12-05T00:21:59Z;Eduardo;351.1456;116068139;Germany; -2018-12-05T00:20:58Z;Sandra;3935.209;116396809;Germany; -2018-12-05T00:14:48Z;Armando;3320.938;114355399;Germany; -2018-12-05T00:06:58Z;Júlio Cesar;10166.15;114444077;Germany; -2018-12-04T23:04:30Z;Júlio Cesar;6356.449;115731803;Germany; -2018-12-04T22:54:27Z;Júlio;883.8175;115876666;Germany; -2018-12-04T22:20:45Z;Eduardo;11658.93;114644088;Germany; -2018-12-04T22:08:46Z;Nathália;1799.708;114569259;Germany; -2018-12-04T21:32:17Z;Nathália;365.6024;115796134;Germany; -2018-12-04T21:07:33Z;Nathália;11163.98;114711861;Germany; -2018-12-04T20:24:30Z;Sandra;4669.346;114736457;Germany; -2018-12-04T20:05:59Z;Armando;5535.463;114724138;Germany; -2018-12-04T19:57:52Z;Júlio Cesar;213.4395;116323609;Germany; -2018-12-04T19:33:04Z;nathalia;2072.271;115087077;Germany; -2018-12-04T18:03:46Z;Nathália;5301.707;114261689;Germany; -2018-12-04T18:02:07Z;Nathália;6187.43;116345025;Germany; -2018-12-04T17:56:01Z;Júlio Cesar;143.3839;115383257;Germany; -2018-12-04T17:22:08Z;Eduardo;2051.278;114923013;Germany; -2018-12-04T16:42:58Z;Júlio;4542.332;115712382;Germany; -2018-12-04T16:06:53Z;Armando;7243.48;114438969;Germany; -2018-12-04T15:59:01Z;nathalia;1262.802;115073439;Germany; -2018-12-04T15:49:31Z;Júlio Cesar;3433.8;115223093;Germany; -2018-12-04T15:44:21Z;Armando;6366.137;115515472;Germany; -2018-12-04T15:39:02Z;Sandra;10614.43;115533502;Germany; -2018-12-04T15:07:40Z;Ana;9129.829;115670512;Germany; -2018-12-04T14:27:18Z;Armando;10141.11;116265577;Germany; -2018-12-04T14:12:00Z;Sandra;7389.818;114579844;Germany; -2018-12-04T14:06:09Z;Júlio;451.4505;114861767;Germany; -2018-12-04T13:57:48Z;Ana;1765.761;114707938;Germany; -2018-12-04T13:54:46Z;Armando;12300.34;114815235;Germany; -2018-12-04T13:47:00Z;Eduardo;1772.508;114983025;Germany; -2018-12-04T13:39:31Z;Júlio;2398.464;114331677;Germany; -2018-12-04T13:39:03Z;Sandra;1742.178;115441760;Germany; -2018-12-04T13:35:12Z;Júlio;12254.1;114888549;Germany; -2018-12-04T13:12:54Z;Sandra;372.1562;115126789;Germany; -2018-12-04T13:12:31Z;nathalia;8628.162;114853069;Germany; -2018-12-04T13:11:20Z;Eduardo;1750.922;114961561;Germany; -2018-12-04T12:55:28Z;Ana;4886.327;114371321;Germany; -2018-12-04T12:34:07Z;Armando;8940.425;114624500;Germany; -2018-12-04T11:49:41Z;Armando;6675.921;115782133;Germany; -2018-12-04T11:43:10Z;Júlio Cesar;3808.404;115989665;Germany; -2018-12-04T11:34:20Z;Nathália;1147.908;115049368;Germany; -2018-12-04T11:28:38Z;nathalia;10687.16;114576355;Germany; -2018-12-04T11:04:47Z;Júlio Cesar;7573.9;116210794;Germany; -2018-12-04T10:53:01Z;Armando;6277.825;115131185;Germany; -2018-12-04T10:15:26Z;Eduardo;5009.019;115343933;Germany; -2018-12-04T10:03:17Z;Júlio Cesar;4929.523;115837542;Germany; -2018-12-04T09:44:54Z;Júlio;5510.083;114787911;Germany; -2018-12-04T09:15:05Z;Júlio;5789.812;114892930;Germany; -2018-12-04T08:49:01Z;Nathália;4713.447;114579871;Germany; -2018-12-04T08:47:29Z;Nathália;11087.49;115404988;Germany; -2018-12-04T08:20:01Z;Armando;5287.33;115844074;Germany; -2018-12-04T07:52:47Z;Eduardo;756.7086;114301388;Germany; -2018-12-04T07:35:03Z;Júlio;3729.391;115252570;Germany; -2018-12-04T07:24:18Z;Júlio Cesar;1910.468;114257594;Germany; -2018-12-04T07:23:11Z;Júlio;9754.642;114706935;Germany; -2018-12-04T07:02:18Z;Júlio Cesar;6621.935;115263987;Germany; -2018-12-04T06:53:29Z;Armando;1095.991;114902256;Germany; -2018-12-04T06:52:35Z;Armando;4432.173;115220150;Germany; -2018-12-04T06:51:30Z;nathalia;13894.11;115500534;Germany; -2018-12-04T06:33:06Z;nathalia;2815.795;116187040;Germany; -2018-12-04T06:27:01Z;nathalia;1363.69;114336382;Germany; -2018-12-23T06:18:32Z;nathalia;17889.06;114279893;Germany; -2018-12-04T06:13:25Z;Armando;4352.172;114463650;Germany; -2018-12-04T05:11:26Z;Armando;2236.466;115843236;Germany; -2018-12-04T05:01:39Z;Júlio Cesar;1801.488;115041934;Germany; -2018-12-04T04:57:00Z;Júlio;12271.89;115296265;Germany; -2018-12-04T04:52:36Z;Ana;11029.8;116330556;Germany; -2018-12-04T04:36:16Z;Nathália;1648.773;115204733;Germany; -2018-12-04T04:34:45Z;Júlio Cesar;4671.183;115951901;Germany; -2018-12-04T04:33:12Z;Armando;11878.69;116392061;Germany; -2018-12-04T04:10:11Z;Sandra;12740.28;114751835;Germany; -2018-12-04T04:09:44Z;Sandra;12131.69;115794937;Germany; -2018-12-04T03:54:23Z;Nathália;3745.014;115079279;Germany; -2018-12-04T03:15:49Z;nathalia;13242.14;115585687;Germany; -2018-12-04T02:23:42Z;Júlio Cesar;1618.513;114954678;Germany; -2018-12-04T02:21:19Z;Nathália;13179.01;115303137;Germany; -2018-12-04T02:09:42Z;Sandra;864.0935;114279003;Germany; -2018-12-04T02:04:57Z;Nathália;8865.756;114840809;Germany; -2018-12-04T01:42:16Z;Júlio Cesar;5929.995;114641275;Germany; -2018-12-04T01:41:15Z;Sandra;10532.29;116323569;Germany; -2018-12-04T01:09:24Z;Júlio;1566.305;115996976;Germany; -2018-12-04T01:07:11Z;Ana;1764.458;115113958;Germany; -2018-12-04T00:31:26Z;Eduardo;11295.76;114660325;Germany; -2018-12-04T00:30:59Z;Eduardo;13802.12;114625237;Germany; -2018-12-04T00:09:18Z;Júlio;10972.46;115844703;Germany; -2018-12-04T00:08:16Z;Sandra;1127.045;115873020;Germany; -2018-12-03T23:19:16Z;Eduardo;5332.138;115682322;Germany; -2018-12-03T23:10:20Z;Júlio Cesar;2301.423;114391783;Germany; -2018-12-03T23:09:02Z;Júlio;3419.696;114627997;Germany; -2018-12-03T22:55:47Z;Nathália;3174.975;114493606;Germany; -2018-12-03T22:26:03Z;Ana;7532.529;116388371;Germany; -2018-12-03T22:23:59Z;nathalia;3689.943;115022565;Germany; -2018-12-03T21:42:17Z;nathalia;958.8695;115469455;Germany; -2018-12-03T21:41:11Z;Eduardo;291.1187;116318041;Germany; -2018-12-03T21:20:54Z;Júlio;2589.435;115869517;Germany; -2018-12-03T20:53:28Z;Armando;1919.776;114285819;Germany; -2018-12-03T20:47:02Z;Eduardo;10091.46;114798970;Germany; -2018-12-03T20:40:25Z;Armando;13938.88;114689587;Germany; -2018-12-03T20:32:47Z;Eduardo;72.95417;115413726;Germany; -2018-12-03T20:15:52Z;Sandra;143.782;115574339;Germany; -2018-12-03T19:59:48Z;Sandra;1208.335;114247333;Germany; -2018-12-03T19:46:27Z;Júlio Cesar;1613.393;114773555;Germany; -2018-12-03T19:38:12Z;Nathália;9324.992;114870434;Germany; -2018-12-03T19:10:54Z;nathalia;5213.671;115370655;Germany; -2018-12-03T19:06:31Z;Nathália;212.4548;115749600;Germany; -2018-12-03T19:02:46Z;Júlio Cesar;437.9153;115054625;Germany; -2018-12-03T18:47:38Z;Sandra;383.0518;114626010;Germany; -2018-12-03T18:28:11Z;Júlio Cesar;544.452;114999145;Germany; -2018-12-03T18:22:44Z;Júlio Cesar;11714.65;114832455;Germany; -2018-12-03T17:42:11Z;Ana;12394.81;115651304;Germany; -2018-12-03T17:06:25Z;Eduardo;235.5252;114650334;Germany; -2018-12-03T16:39:35Z;Eduardo;5852.184;116061301;Germany; -2018-12-03T16:23:21Z;Nathália;1422.869;114676892;Germany; -2018-12-03T15:41:08Z;Júlio Cesar;9666.576;114262433;Germany; -2018-12-03T15:24:59Z;Armando;5081.988;115528779;Germany; -2018-12-03T15:17:41Z;Sandra;5014.208;114896580;Germany; -2018-12-03T15:15:35Z;Armando;5965.632;116205402;Germany; -2018-12-03T15:13:25Z;Júlio;12334.83;115595432;Germany; -2018-12-03T15:05:32Z;Armando;1943.33;115870689;Germany; -2018-12-03T14:51:17Z;Armando;8890.002;115260362;Germany; -2018-12-03T14:16:46Z;Júlio;5716.905;114385656;Germany; -2018-12-03T13:48:11Z;Ana;152.0274;115641725;Germany; -2018-12-03T13:46:32Z;Armando;4821.835;114981711;Germany; -2018-12-03T13:30:28Z;Júlio;2949.379;114809211;Germany; -2018-12-03T13:06:50Z;Nathália;4139.896;116336324;Germany; -2018-12-03T13:01:16Z;Sandra;6932.452;115966030;Germany; -2018-12-03T12:38:48Z;Júlio Cesar;50.55539;115046054;Germany; -2018-12-23T12:18:59Z;Sandra;28104.95;115656060;Germany; -2018-12-03T12:10:56Z;Ana;11681.65;115316899;Germany; -2018-12-03T11:58:55Z;Sandra;1753.24;115149420;Germany; -2018-12-03T11:45:16Z;Sandra;251.7631;115700407;Germany; -2018-12-03T11:24:50Z;Ana;8176.449;115789312;Germany; -2018-12-03T11:19:57Z;Armando;1259.335;116281378;Germany; -2018-12-03T10:52:21Z;nathalia;7001.131;114956209;Germany; -2018-12-03T10:08:00Z;Armando;6682.538;115627842;Germany; -2018-12-03T10:02:53Z;nathalia;5386.291;114680044;Germany; -2018-12-03T09:49:07Z;Sandra;3761.526;115683584;Germany; -2018-12-03T09:28:30Z;Sandra;5305.419;115712597;Germany; -2018-12-03T09:27:09Z;Sandra;6159.171;116393038;Germany; -2018-12-21T09:21:14Z;Nathália;16234.83;115258524;Germany; -2018-12-03T08:56:11Z;Nathália;3698.38;116168480;Germany; -2018-12-03T08:54:40Z;Ana;4401.509;116040612;Germany; -2018-12-03T07:50:29Z;nathalia;431.6454;115534073;Germany; -2018-12-03T06:47:43Z;Armando;532.5195;115477685;Germany; -2018-12-03T06:10:32Z;Júlio Cesar;10099.05;114956234;Germany; -2018-12-03T05:41:00Z;Sandra;2434.899;114456714;Germany; -2018-12-03T05:21:19Z;Ana;4521.914;115061649;Germany; -2018-12-03T05:17:14Z;Júlio;792.026;115353227;Germany; -2018-12-03T05:15:15Z;nathalia;75.46291;114514516;Germany; -2018-12-03T05:09:52Z;nathalia;2229.995;115430887;Germany; -2018-12-03T05:04:38Z;nathalia;4590.149;115736488;Germany; -2018-12-03T05:03:51Z;Sandra;6192.293;114935747;Germany; -2018-12-03T05:03:51Z;nathalia;5885.122;116366451;Germany; -2018-12-03T04:43:20Z;Júlio Cesar;204.3403;115669931;Germany; -2018-12-03T04:21:53Z;Armando;7609.942;116049596;Germany; -2018-12-03T04:07:47Z;nathalia;1918.529;114737743;Germany; -2018-12-03T03:41:48Z;nathalia;793.0327;114422364;Germany; -2018-12-03T03:07:08Z;Nathália;6543.08;115185564;Germany; -2018-12-03T02:53:29Z;Júlio Cesar;3766.27;115420684;Germany; -2018-12-03T02:51:05Z;Sandra;6312.346;114687888;Germany; -2018-12-03T02:47:13Z;Eduardo;820.1387;114421345;Germany; -2018-12-03T02:43:06Z;Júlio Cesar;1660.712;115547737;Germany; -2018-12-03T02:31:48Z;Júlio;5032;115411977;Germany; -2018-12-03T02:27:40Z;Júlio Cesar;7592.495;114353703;Germany; -2018-12-03T02:25:57Z;Armando;7223.507;114531658;Germany; -2018-12-22T02:07:14Z;Júlio Cesar;23776.22;115091989;Germany; -2018-12-03T02:05:51Z;Ana;5498.87;115895766;Germany; -2018-12-03T02:00:43Z;Júlio;2575.695;115979227;Germany; -2018-12-03T01:31:55Z;Júlio Cesar;4341.282;114614739;Germany; -2018-12-03T01:25:30Z;Nathália;6037.095;115492379;Germany; -2018-12-03T01:14:26Z;Ana;5877.145;114671842;Germany; -2018-12-03T01:11:45Z;Júlio Cesar;4868.88;115577898;Germany; -2018-12-03T01:11:11Z;Eduardo;5082.512;115620124;Germany; -2018-12-03T00:50:37Z;Júlio;1626.101;115982118;Germany; -2018-12-03T00:38:58Z;Júlio Cesar;9905.043;115561053;Germany; -2018-12-02T23:43:36Z;Eduardo;1421.553;114291316;Germany; -2018-12-02T23:39:54Z;Armando;1701.364;115052444;Germany; -2018-12-02T22:51:02Z;Júlio;2930.251;114698089;Germany; -2018-12-02T22:50:40Z;Júlio Cesar;3950.919;115982052;Germany; -2018-12-02T22:49:52Z;nathalia;6391.657;115845429;Germany; -2018-12-02T22:27:29Z;nathalia;4919.566;116383783;Germany; -2018-12-02T22:23:07Z;nathalia;2744.914;114871855;Germany; -2018-12-02T21:30:10Z;Júlio;10293.76;115751757;Germany; -2018-12-02T21:25:10Z;Armando;1682.896;116274304;Germany; -2018-12-02T21:19:32Z;nathalia;1095.957;115185849;Germany; -2018-12-21T21:06:22Z;Eduardo;19351.65;114623941;Germany; -2018-12-02T20:34:18Z;Sandra;549.3851;116306679;Germany; -2018-12-02T20:18:22Z;Júlio Cesar;13477.53;115064909;Germany; -2018-12-02T19:52:09Z;Sandra;123.3124;114435614;Germany; -2018-12-02T19:45:30Z;Júlio;14492.81;115180535;Germany; -2018-12-02T19:03:39Z;Armando;939.1154;116106518;Germany; -2018-12-02T18:41:15Z;Eduardo;3989.242;116296272;Germany; -2018-12-02T18:31:20Z;Armando;7893.093;115845850;Germany; -2018-12-02T18:12:59Z;Júlio Cesar;1076.062;115413770;Germany; -2018-12-02T18:00:21Z;Eduardo;1625.817;115564568;Germany; -2018-12-02T17:57:50Z;Júlio Cesar;7062.248;114974426;Germany; -2018-12-02T17:42:01Z;Sandra;457.9107;114861291;Germany; -2018-12-02T17:25:29Z;Nathália;12723.33;114579808;Germany; -2018-12-02T17:21:05Z;Júlio;2101.448;115368127;Germany; -2018-12-02T16:30:27Z;Júlio;4140.416;114839101;Germany; -2018-12-02T16:23:06Z;Armando;986.3393;114713467;Germany; -2018-12-02T16:07:54Z;nathalia;8794.512;115444504;Germany; -2018-12-02T16:07:02Z;Sandra;7369.065;114937324;Germany; -2018-12-02T15:58:15Z;Ana;10041.04;114824469;Germany; -2018-12-02T14:57:16Z;Júlio Cesar;268.3668;115550335;Germany; -2018-12-02T14:50:31Z;Armando;84.63673;116149991;Germany; -2018-12-02T14:41:35Z;nathalia;5524.239;116207039;Germany; -2018-12-02T14:27:51Z;Nathália;4551.706;115112015;Germany; -2018-12-02T13:54:43Z;Eduardo;9459.855;114460440;Germany; -2018-12-02T13:30:28Z;Sandra;933.206;115670950;Germany; -2018-12-23T13:24:29Z;Júlio Cesar;24575.71;115640551;Germany; -2018-12-02T13:15:11Z;Júlio;14049.24;116203818;Germany; -2018-12-02T13:13:13Z;Júlio Cesar;5729.531;116282509;Germany; -2018-12-02T12:52:28Z;Sandra;1146.14;114734891;Germany; -2018-12-02T12:51:00Z;Sandra;4620.926;115911380;Germany; -2018-12-02T12:38:29Z;Ana;1876.938;114308464;Germany; -2018-12-02T12:35:35Z;Júlio Cesar;4451.581;115919018;Germany; -2018-12-02T12:16:26Z;Júlio;1002.629;116148992;Germany; -2018-12-02T11:05:09Z;Júlio Cesar;8772.059;115804066;Germany; -2018-12-02T11:00:06Z;Eduardo;14962.7;114432852;Germany; -2018-12-02T10:58:48Z;nathalia;762.676;114681656;Germany; -2018-12-21T10:51:18Z;nathalia;20167.26;114462726;Germany; -2018-12-02T10:32:12Z;Júlio;9012.772;116058357;Germany; -2018-12-02T10:23:39Z;Nathália;9719.784;116162023;Germany; -2018-12-02T10:06:34Z;Ana;8577.839;114992964;Germany; -2018-12-02T09:35:48Z;Nathália;2732.188;114534467;Germany; -2018-12-02T09:18:31Z;Ana;438.976;115730891;Germany; -2018-12-02T08:42:39Z;Ana;4507.084;116276460;Germany; -2018-12-02T08:41:13Z;Armando;408.3757;114572430;Germany; -2018-12-02T08:08:30Z;Júlio Cesar;6149.071;115880261;Germany; -2018-12-02T08:06:22Z;Ana;521.7861;114733950;Germany; -2018-12-02T07:49:34Z;nathalia;2391.641;115807544;Germany; -2018-12-02T07:24:46Z;nathalia;10062.79;114792600;Germany; -2018-12-02T07:09:53Z;Armando;1070.312;115820850;Germany; -2018-12-02T07:07:18Z;Sandra;4398.521;116312099;Germany; -2018-12-02T07:00:40Z;Ana;4795.517;114660169;Germany; -2018-12-02T06:57:50Z;Nathália;1632.581;114277009;Germany; -2018-12-02T06:57:44Z;Eduardo;4294.121;116391323;Germany; -2018-12-02T06:48:52Z;Júlio Cesar;1295.856;115198777;Germany; -2018-12-02T06:08:38Z;Sandra;9253.092;116223207;Germany; -2018-12-02T05:59:41Z;Ana;2056.496;115034252;Germany; -2018-12-02T05:56:16Z;Ana;1522.839;116017346;Germany; -2018-12-02T05:19:41Z;Sandra;11191.17;114821743;Germany; -2018-12-02T05:09:35Z;Sandra;3041.646;115178011;Germany; -2018-12-02T04:38:08Z;Ana;10025.81;115499134;Germany; -2018-12-02T04:10:12Z;Júlio Cesar;13883.17;114334528;Germany; -2018-12-23T04:08:09Z;Sandra;21812.09;116355163;Germany; -2018-12-02T04:07:17Z;Armando;6678.181;115824205;Germany; -2018-12-02T03:33:19Z;Júlio;3020.782;114529423;Germany; -2018-12-02T03:33:17Z;Sandra;8476.968;115370267;Germany; -2018-12-02T02:56:19Z;Júlio Cesar;1704.056;115705020;Germany; -2018-12-02T02:50:33Z;Ana;9756.225;114257728;Germany; -2018-12-02T01:43:29Z;Sandra;5813.184;114286057;Germany; -2018-12-02T01:21:11Z;Sandra;11660.79;115402769;Germany; -2018-12-02T01:18:26Z;Armando;986.802;115929232;Germany; -2018-12-02T01:06:06Z;Nathália;5566.946;114430527;Germany; -2018-12-02T00:39:51Z;nathalia;7239.163;115183861;Germany; -2018-12-02T00:26:49Z;Eduardo;705.4824;114265256;Germany; -2018-12-02T00:26:17Z;nathalia;715.4967;116222262;Germany; -2018-12-02T00:18:04Z;Júlio;7633.908;115998204;Germany; -2018-12-22T00:09:46Z;Sandra;15517.86;115281191;Germany; -2018-12-02T00:08:28Z;Armando;11479.88;115306391;Germany; -2018-12-01T23:07:22Z;Sandra;1922.399;115821478;Germany; -2018-12-22T23:02:54Z;Nathália;16996.44;115099573;Germany; -2018-12-22T22:49:16Z;Sandra;20395.91;116180169;Germany; -2018-12-01T22:16:45Z;Sandra;4998.191;116291331;Germany; -2018-12-01T21:47:39Z;Júlio;5661.737;114583491;Germany; -2018-12-01T21:21:57Z;Eduardo;870.6883;115121851;Germany; -2018-12-01T21:18:07Z;Sandra;4046.946;115046414;Germany; -2018-12-01T21:17:50Z;Eduardo;5745.372;115385188;Germany; -2018-12-01T21:08:27Z;Júlio Cesar;4455.104;114257189;Germany; -2018-12-01T21:05:44Z;Eduardo;2401.743;114240235;Germany; -2018-12-01T20:27:50Z;Júlio Cesar;416.2418;114467850;Germany; -2018-12-01T20:04:11Z;Armando;4277.995;115453541;Germany; -2018-12-01T20:00:49Z;Sandra;719.8938;116168389;Germany; -2018-12-01T18:56:38Z;Nathália;5019.796;115870832;Germany; -2018-12-01T18:45:26Z;nathalia;655.7477;114683107;Germany; -2018-12-01T18:26:51Z;Júlio;4130.847;114806448;Germany; -2018-12-01T18:06:29Z;nathalia;2914.612;115072971;Germany; -2018-12-01T17:52:37Z;Ana;10117.83;115536053;Germany; -2018-12-01T17:39:50Z;Eduardo;3139.334;114811901;Germany; -2018-12-01T16:39:29Z;Ana;11558.43;114902274;Germany; -2018-12-01T16:36:08Z;Sandra;4697.308;114975315;Germany; -2018-12-01T16:07:22Z;Ana;1720.044;115806813;Germany; -2018-12-01T16:02:03Z;Júlio;6765.29;114570259;Germany; -2018-12-01T15:59:12Z;Júlio;2066.41;116051463;Germany; -2018-12-01T15:45:46Z;Júlio;3658.357;115895158;Germany; -2018-12-01T15:28:52Z;Sandra;2439.273;114710544;Germany; -2018-12-22T14:44:40Z;Eduardo;17187.45;115629126;Germany; -2018-12-01T14:41:06Z;Eduardo;2307.232;116114874;Germany; -2018-12-01T14:27:25Z;Sandra;7604.379;114248644;Germany; -2018-12-01T14:17:51Z;nathalia;7175.026;114408879;Germany; -2018-12-01T14:10:59Z;Armando;4304.441;116163885;Germany; -2018-12-01T13:54:45Z;Nathália;13426.85;115607870;Germany; -2018-12-01T13:27:41Z;Sandra;641.7949;115416626;Germany; -2018-12-01T13:24:21Z;Nathália;167.0903;114411463;Germany; -2018-12-01T13:07:22Z;Nathália;8574.615;115613861;Germany; -2018-12-01T13:01:57Z;Júlio Cesar;851.7705;114938986;Germany; -2018-12-01T12:42:31Z;Sandra;3397.469;115608954;Germany; -2018-12-01T12:34:03Z;Sandra;9877.985;115580610;Germany; -2018-12-01T12:21:07Z;Júlio Cesar;5228.201;115021248;Germany; -2018-12-01T12:02:22Z;nathalia;2119.961;115433987;Germany; -2018-12-01T11:24:58Z;Júlio Cesar;1076.164;114996984;Germany; -2018-12-01T11:04:59Z;nathalia;6536.728;114229446;Germany; -2018-12-01T11:04:40Z;Júlio;985.6835;115308299;Germany; -2018-12-01T10:59:30Z;Armando;858.6639;115698290;Germany; -2018-12-01T10:53:26Z;Júlio;8978.456;114653094;Germany; -2018-12-01T10:34:00Z;Sandra;10803.8;115672500;Germany; -2018-12-23T10:09:56Z;Nathália;15418.33;115791670;Germany; -2018-12-01T10:01:32Z;Armando;10890.18;115871861;Germany; -2018-12-01T10:00:58Z;Sandra;239.0987;115891091;Germany; -2018-12-01T09:38:07Z;nathalia;4945.285;114213865;Germany; -2018-12-01T09:19:47Z;Armando;4294.828;116055827;Germany; -2018-12-21T09:19:19Z;Armando;17527.49;114478980;Germany; -2018-12-01T09:17:06Z;Nathália;3660.385;115076212;Germany; -2018-12-01T08:51:34Z;Sandra;12238.05;114373257;Germany; -2018-12-21T08:27:40Z;Júlio;21770.43;115818883;Germany; -2018-12-01T08:07:10Z;Júlio Cesar;10688.41;116375597;Germany; -2018-12-01T07:55:38Z;nathalia;1821.278;114306871;Germany; -2018-12-01T07:46:45Z;Eduardo;11653.28;114369792;Germany; -2018-12-01T06:53:27Z;Ana;10544.53;114203138;Germany; -2018-12-01T06:42:46Z;Sandra;2360.124;114789217;Germany; -2018-12-01T06:21:43Z;Nathália;2944.624;114748815;Germany; -2018-12-01T06:15:06Z;Eduardo;7646.506;115832745;Germany; -2018-12-01T06:11:28Z;Nathália;9579.093;115973613;Germany; -2018-12-01T05:48:53Z;nathalia;2128.994;115103385;Germany; -2018-12-01T04:16:12Z;Armando;7226.974;116342338;Germany; -2018-12-01T03:43:25Z;nathalia;2860.983;114264618;Germany; -2018-12-01T03:27:33Z;Nathália;13966.75;114402347;Germany; -2018-12-01T03:26:40Z;Nathália;2491.99;115038539;Germany; -2018-12-01T03:07:40Z;Ana;2979.307;116310491;Germany; -2018-12-01T03:06:01Z;Armando;3075.814;114968698;Germany; -2018-12-01T03:05:38Z;Eduardo;8008.576;114338318;Germany; -2018-12-01T02:33:31Z;Nathália;1202.345;114216947;Germany; -2018-12-01T02:27:33Z;Nathália;11135.97;114462674;Germany; -2018-12-01T02:24:23Z;Júlio Cesar;7367.364;115344797;Germany; -2018-12-01T02:24:04Z;Sandra;2688.196;115276748;Germany; -2018-12-01T01:53:37Z;nathalia;3414.159;115741312;Germany; -2018-12-01T01:16:03Z;Armando;1610.278;114938536;Germany; -2018-12-01T01:01:30Z;Júlio;3585.666;115591500;Germany; -2018-12-01T00:48:51Z;Eduardo;156.0642;116355462;Germany; -2018-12-01T00:14:41Z;Júlio;941.6191;115602176;Germany; -2018-12-01T00:13:14Z;Eduardo;2713.387;114245824;Germany; -2018-11-30T23:37:02Z;Ana;490.162;114335286;Germany; -2018-11-30T23:26:41Z;Júlio;3363.372;115985424;Germany; -2018-11-30T23:26:11Z;Eduardo;2005.063;114930472;Germany; -2018-11-30T22:41:48Z;Júlio Cesar;751.0853;114576106;Germany; -2018-11-30T22:38:21Z;Ana;601.3763;115427457;Germany; -2018-11-30T22:20:51Z;nathalia;5116.098;114204304;Germany; -2018-11-30T21:56:42Z;Júlio Cesar;2287.802;115153160;Germany; -2018-11-30T21:47:51Z;Ana;8598.648;116100686;Germany; -2018-11-30T21:46:14Z;Sandra;209.6255;115989149;Germany; -2018-11-30T21:22:15Z;Júlio Cesar;12499.59;114528653;Germany; -2018-11-30T20:58:09Z;Júlio Cesar;5823.812;115159028;Germany; -2018-11-30T20:50:18Z;Sandra;8972.749;115013106;Germany; -2018-11-30T20:20:51Z;Ana;81.48606;114314354;Germany; -2018-11-30T20:15:55Z;Júlio;2022.718;114768117;Germany; -2018-11-30T20:08:01Z;Eduardo;994.4847;115002959;Germany; -2018-11-30T20:07:55Z;Júlio;199.2327;116268383;Germany; -2018-11-30T19:41:54Z;Armando;4724.423;116178977;Germany; -2018-11-30T19:40:13Z;Nathália;5249.502;115090076;Germany; -2018-11-30T19:39:18Z;nathalia;10077.49;115702107;Germany; -2018-11-30T19:32:21Z;Sandra;7308.059;115195195;Germany; -2018-11-30T19:00:43Z;Sandra;4178.431;115064864;Germany; -2018-11-30T18:57:02Z;Nathália;413.5358;115780354;Germany; -2018-11-30T18:43:05Z;Nathália;7833.62;114310573;Germany; -2018-11-30T18:42:09Z;Nathália;1719.121;114877723;Germany; -2018-11-30T18:27:07Z;Sandra;776.2147;114987574;Germany; -2018-11-30T17:53:13Z;Ana;160.0746;114919271;Germany; -2018-11-30T17:44:39Z;Sandra;4338.573;114784571;Germany; -2018-11-30T17:39:47Z;Eduardo;579.1148;114993086;Germany; -2018-11-30T17:35:28Z;Júlio;392.2556;114754569;Germany; -2018-11-30T17:04:27Z;Sandra;10796.77;116127539;Germany; -2018-11-30T17:02:23Z;Nathália;10689.67;115120647;Germany; -2018-11-30T16:51:25Z;Júlio Cesar;6446.376;116183449;Germany; -2018-11-30T16:34:42Z;nathalia;3534.106;116258493;Germany; -2018-11-30T16:34:26Z;Júlio;1911.963;115262719;Germany; -2018-11-30T16:21:29Z;Sandra;8425.407;114878960;Germany; -2018-11-30T16:18:57Z;Ana;3514.798;115442586;Germany; -2018-11-30T15:33:44Z;Júlio;67.9122;116028194;Germany; -2018-11-30T15:27:04Z;Sandra;2413.585;116312423;Germany; -2018-11-30T15:08:54Z;Júlio;10525.86;116334327;Germany; -2018-11-30T14:30:45Z;Sandra;2530.846;116207621;Germany; -2018-11-30T14:30:08Z;Armando;878.6337;115159666;Germany; -2018-11-30T14:11:47Z;Júlio Cesar;4722.079;114480764;Germany; -2018-11-30T14:07:35Z;Júlio;2917.065;116098053;Germany; -2018-11-30T14:00:17Z;Nathália;12294.21;115383575;Germany; -2018-11-30T13:55:42Z;Ana;3380.295;115375968;Germany; -2018-11-30T13:24:30Z;Armando;4773.315;115538499;Germany; -2018-11-30T12:33:53Z;Júlio Cesar;981.4791;115295257;Germany; -2018-11-30T12:28:38Z;Júlio;268.1497;116004303;Germany; -2018-12-22T12:26:44Z;Júlio Cesar;17545.89;115753858;Germany; -2018-11-30T12:07:39Z;nathalia;9846.493;114895377;Germany; -2018-11-30T11:53:16Z;Ana;9982.073;116024223;Germany; -2018-11-30T11:31:55Z;Ana;3512.301;115096679;Germany; -2018-11-30T11:14:33Z;Armando;11724.57;114550234;Germany; -2018-11-30T10:33:31Z;Eduardo;7130.626;115408383;Germany; -2018-11-30T09:43:02Z;Armando;517.331;114495531;Germany; -2018-11-30T09:30:18Z;Armando;7687.379;116388128;Germany; -2018-11-30T09:29:15Z;Ana;4447.802;114814382;Germany; -2018-11-30T09:05:40Z;Júlio Cesar;8566.701;115449903;Germany; -2018-11-30T09:03:10Z;Júlio;5990.135;114435119;Germany; -2018-11-30T09:02:41Z;Júlio;1184.399;115211824;Germany; -2018-11-30T08:40:52Z;Eduardo;8592.488;116150166;Germany; -2018-11-30T08:23:12Z;Armando;4666.175;115182239;Germany; -2018-11-30T08:21:53Z;Júlio Cesar;5362.632;115284291;Germany; -2018-11-30T07:54:48Z;nathalia;4105.676;116374631;Germany; -2018-11-30T07:33:28Z;Júlio Cesar;8148.264;114292932;Germany; -2018-11-30T07:07:11Z;Armando;6563.355;114273386;Germany; -2018-11-30T06:55:15Z;Nathália;5738.568;115909644;Germany; -2018-11-30T06:38:24Z;nathalia;3897.346;116056409;Germany; -2018-11-30T06:33:12Z;Júlio Cesar;1673.136;114364523;Germany; -2018-11-30T06:29:22Z;Nathália;3732.059;114967718;Germany; -2018-11-30T06:13:43Z;nathalia;7000.235;114979307;Germany; -2018-11-30T05:11:45Z;Júlio;749.9136;115862881;Germany; -2018-11-30T05:01:49Z;Ana;8444.9;116027732;Germany; -2018-11-30T04:59:47Z;Sandra;965.8175;115776442;Germany; -2018-11-30T04:26:44Z;Nathália;1578.551;114513933;Germany; -2018-11-30T04:22:09Z;Sandra;12258.3;115854387;Germany; -2018-11-30T04:06:29Z;Júlio Cesar;2336.003;115227913;Germany; -2018-11-30T03:58:10Z;Júlio;3760.849;114442514;Germany; -2018-11-30T03:43:59Z;nathalia;1671.905;114459686;Germany; -2018-11-30T03:32:43Z;Armando;1610.789;114897030;Germany; -2018-11-30T03:30:01Z;Ana;2003.584;114563988;Germany; -2018-11-30T03:29:27Z;Eduardo;5961.506;116075198;Germany; -2018-11-30T02:33:16Z;Armando;4723.184;114892032;Germany; -2018-11-30T02:27:43Z;Eduardo;1895.72;116056506;Germany; -2018-11-30T02:04:23Z;Eduardo;5323.137;116377427;Germany; -2018-11-30T01:57:44Z;Ana;949.3477;114369603;Germany; -2018-11-30T01:43:44Z;Eduardo;8209.799;115735193;Germany; -2018-11-30T01:08:46Z;Júlio;6777.472;115210184;Germany; -2018-11-30T00:49:21Z;Ana;8821.888;116246976;Germany; -2018-11-30T00:46:20Z;nathalia;334.7918;114262354;Germany; -2018-11-30T00:28:27Z;nathalia;553.2293;114396490;Germany; -2018-11-30T00:14:58Z;Ana;6014.755;116032007;Germany; -2018-11-29T23:51:15Z;Sandra;160.3946;116221177;Germany; -2018-11-29T23:48:16Z;Armando;4346.526;115788285;Germany; -2018-11-29T23:44:26Z;Nathália;6765.482;115082167;Germany; -2018-11-29T23:40:17Z;Júlio;7912.971;114855897;Germany; -2018-11-29T22:57:24Z;Eduardo;2817.488;115709348;Germany; -2018-11-29T22:39:24Z;Júlio;3211.878;115890981;Germany; -2018-11-29T22:22:32Z;Armando;2651.996;116284047;Germany; -2018-11-29T22:18:20Z;Ana;3827.615;114561452;Germany; -2018-11-29T22:18:17Z;Júlio;7463.326;114425336;Germany; -2018-11-29T22:02:16Z;nathalia;5204.679;116093864;Germany; -2018-11-29T21:28:27Z;Júlio;320.5632;115537560;Germany; -2018-11-29T20:46:19Z;nathalia;4160.275;115073747;Germany; -2018-11-29T20:07:55Z;Nathália;1618.245;114415761;Germany; -2018-11-29T20:00:06Z;Ana;121.545;114988298;Germany; -2018-11-29T19:40:00Z;Armando;4980.913;115035139;Germany; -2018-11-29T19:33:32Z;Armando;310.3127;114862802;Germany; -2018-11-29T19:32:43Z;Eduardo;4071.194;115566426;Germany; -2018-11-29T19:20:38Z;Eduardo;957.6468;116096346;Germany; -2018-11-29T18:49:59Z;Armando;432.9862;114682431;Germany; -2018-11-29T18:12:28Z;Ana;9470.862;115295728;Germany; -2018-11-29T17:49:58Z;Júlio Cesar;8819.399;115819486;Germany; -2018-11-29T17:36:51Z;nathalia;4041.655;115575871;Germany; -2018-12-22T16:42:42Z;Júlio Cesar;25637.47;115374749;Germany; -2018-11-29T16:23:54Z;Ana;1610.462;114254753;Germany; -2018-11-29T16:22:32Z;Júlio Cesar;5524.77;116300131;Germany; -2018-11-29T16:18:32Z;nathalia;9037.916;114537634;Germany; -2018-11-29T15:32:57Z;Sandra;11747.66;114476300;Germany; -2018-11-29T15:03:03Z;nathalia;2613.612;115078200;Germany; -2018-11-29T15:01:45Z;Sandra;4341.741;114427837;Germany; -2018-11-29T14:57:22Z;Armando;4917.197;114204510;Germany; -2018-11-29T14:48:05Z;Júlio Cesar;7446.28;114599206;Germany; -2018-11-29T14:45:57Z;Júlio Cesar;1203.32;115378913;Germany; -2018-11-29T14:25:35Z;Armando;2741.157;116247613;Germany; -2018-11-29T14:24:21Z;Sandra;5150.226;115471225;Germany; -2018-11-29T14:21:29Z;Armando;528.0695;115245707;Germany; -2018-12-23T14:21:14Z;Júlio Cesar;17160.09;114202544;Germany; -2018-11-29T14:03:13Z;Júlio Cesar;6974.153;114362318;Germany; -2018-11-29T13:28:42Z;Sandra;247.1269;116192446;Germany; -2018-11-29T13:22:04Z;Nathália;14987.67;115957709;Germany; -2018-11-29T12:56:10Z;Ana;6594.328;115360373;Germany; -2018-11-29T12:55:14Z;Ana;13847.81;115213127;Germany; -2018-11-29T12:01:08Z;nathalia;598.0141;115410991;Germany; -2018-11-29T11:45:05Z;Nathália;2796.852;114211801;Germany; -2018-11-29T11:30:03Z;Armando;5594.935;115499254;Germany; -2018-12-22T11:15:18Z;Ana;23480.62;114675861;Germany; -2018-11-29T11:15:02Z;nathalia;9337.543;115922454;Germany; -2018-11-29T10:42:25Z;Armando;14272.12;116232909;Germany; -2018-11-29T10:42:00Z;Júlio Cesar;7910.654;115957505;Germany; -2018-11-29T10:39:38Z;Armando;8581.386;114324891;Germany; -2018-11-29T10:21:05Z;Sandra;1783.884;115892214;Germany; -2018-11-29T10:13:01Z;Eduardo;13135.78;114952359;Germany; -2018-11-29T10:08:19Z;Ana;1047.721;114231407;Germany; -2018-11-29T09:57:34Z;Eduardo;345.1416;114277466;Germany; -2018-12-23T09:55:16Z;Eduardo;19757.83;115924572;Germany; -2018-11-29T09:31:59Z;Sandra;1464.009;116314836;Germany; -2018-11-29T09:19:01Z;Nathália;11862.01;116058449;Germany; -2018-11-29T09:16:33Z;Eduardo;8212.426;115891862;Germany; -2018-11-29T08:49:45Z;Eduardo;13821.09;114546586;Germany; -2018-11-29T08:34:35Z;Ana;2897.699;114886575;Germany; -2018-11-29T08:25:01Z;Júlio Cesar;202.1801;116364550;Germany; -2018-11-29T08:16:00Z;Nathália;1547.021;114563380;Germany; -2018-11-29T07:48:53Z;Eduardo;5442.791;115791088;Germany; -2018-11-29T07:44:21Z;nathalia;111.4837;115223828;Germany; -2018-11-29T07:37:02Z;Nathália;678.6401;116129147;Germany; -2018-12-21T07:33:38Z;Júlio Cesar;17691.81;116074282;Germany; -2018-11-29T07:08:03Z;Eduardo;5842.675;116337237;Germany; -2018-11-29T06:49:30Z;Sandra;4225.469;115736744;Germany; -2018-11-29T06:33:45Z;Júlio Cesar;4083.569;115930723;Germany; -2018-11-29T06:25:16Z;Ana;6953.733;115014927;Germany; -2018-12-22T06:08:06Z;Ana;17904.13;114792536;Germany; -2018-12-22T06:07:01Z;nathalia;16500.83;114584065;Germany; -2018-11-29T06:06:14Z;Nathália;9203.598;116021770;Germany; -2018-11-29T05:29:49Z;Armando;8103.755;116225470;Germany; -2018-11-29T05:10:00Z;Ana;3225.06;114942563;Germany; -2018-11-29T04:38:26Z;Júlio Cesar;4817.946;114800575;Germany; -2018-11-29T04:19:54Z;Armando;8166.184;114467246;Germany; -2018-11-29T03:50:18Z;Nathália;14827.81;115651814;Germany; -2018-11-29T03:48:24Z;Armando;4013.26;114513262;Germany; -2018-11-29T02:44:43Z;Eduardo;5508.17;115689242;Germany; -2018-11-29T02:30:34Z;Júlio Cesar;355.1151;114295948;Germany; -2018-11-29T02:22:59Z;Nathália;678.2858;114707470;Germany; -2018-11-29T02:03:08Z;Eduardo;3705.928;114815373;Germany; -2018-11-29T02:02:29Z;Eduardo;9625.301;115037047;Germany; -2018-11-29T01:57:27Z;Júlio;2650.113;114593132;Germany; -2018-11-29T01:46:59Z;Júlio Cesar;1726.941;114324978;Germany; -2018-11-29T01:35:10Z;Júlio Cesar;364.5317;115594273;Germany; -2018-11-29T01:22:28Z;nathalia;2903.827;114658097;Germany; -2018-11-29T01:15:15Z;Eduardo;3755.434;114354949;Germany; -2018-11-29T01:14:19Z;Júlio Cesar;2601.523;114237225;Germany; -2018-11-29T01:03:47Z;Ana;3043.201;116267542;Germany; -2018-11-29T01:03:42Z;Eduardo;2674.248;115536434;Germany; -2018-11-29T00:52:56Z;Nathália;6708.969;115234371;Germany; -2018-11-29T00:11:31Z;Sandra;3624.739;115702059;Germany; -2018-11-29T00:11:14Z;Eduardo;4052.331;116147534;Germany; -2018-11-28T23:41:09Z;Júlio;1534.856;115040341;Germany; -2018-11-28T23:18:03Z;nathalia;4432.301;114779636;Germany; -2018-11-28T23:16:44Z;Sandra;6935.423;116385343;Germany; -2018-11-28T23:16:25Z;Eduardo;2077.262;114329814;Germany; -2018-11-28T22:47:13Z;Nathália;201.8541;116130147;Germany; -2018-11-28T22:42:27Z;Armando;3845.745;114763780;Germany; -2018-11-28T22:20:58Z;Júlio Cesar;7314.457;115910519;Germany; -2018-11-28T21:59:18Z;Júlio Cesar;234.7624;114861091;Germany; -2018-11-28T21:58:20Z;Júlio Cesar;11249.26;115478470;Germany; -2018-11-28T21:56:36Z;Júlio Cesar;8055.467;115088556;Germany; -2018-11-28T21:52:44Z;Ana;2863.177;115048958;Germany; -2018-11-28T21:31:34Z;Armando;6696.065;114534546;Germany; -2018-11-28T21:16:49Z;Sandra;12450.06;116071232;Germany; -2018-11-28T21:09:27Z;Armando;2537.445;115423868;Germany; -2018-11-28T21:06:54Z;Júlio Cesar;114.3372;116274525;Germany; -2018-12-21T20:54:46Z;Ana;17075.13;115037200;Germany; -2018-11-28T20:49:20Z;Armando;2541.055;116018289;Germany; -2018-11-28T20:33:03Z;nathalia;11574.99;116041088;Germany; -2018-12-22T19:41:25Z;Armando;19141.7;114867090;Germany; -2018-11-28T19:26:09Z;Ana;11123.38;114204575;Germany; -2018-12-21T19:21:49Z;Eduardo;18288.5;116013840;Germany; -2018-11-28T19:07:48Z;Ana;10078;114207520;Germany; -2018-11-28T18:51:23Z;nathalia;4252.022;115466026;Germany; -2018-11-28T18:24:48Z;nathalia;3287.594;114206384;Germany; -2018-11-28T18:18:43Z;Nathália;12065.98;116120428;Germany; -2018-12-22T18:10:20Z;Júlio;15799.76;114652465;Germany; -2018-11-28T17:56:24Z;Armando;137.0891;115384107;Germany; -2018-11-28T17:55:59Z;Júlio Cesar;11212.52;115845302;Germany; -2018-11-28T17:41:52Z;Sandra;10749.07;116219744;Germany; -2018-11-28T17:37:31Z;nathalia;1741.92;114989691;Germany; -2018-11-28T17:23:12Z;Júlio Cesar;768.1226;115144148;Germany; -2018-12-22T17:05:26Z;Nathália;15709.75;115879700;Germany; -2018-11-28T16:58:33Z;Sandra;3392.33;114714066;Germany; -2018-11-28T16:54:25Z;Júlio;10022.88;114895735;Germany; -2018-11-28T16:44:02Z;nathalia;4398.496;115165778;Germany; -2018-11-28T16:32:41Z;Eduardo;3047.907;116271896;Germany; -2018-11-28T16:09:30Z;nathalia;365.2464;115172357;Germany; -2018-11-28T15:35:32Z;Júlio;7673.377;115791163;Germany; -2018-12-22T15:23:41Z;Sandra;18676.5;114456032;Germany; -2018-11-28T14:26:11Z;Júlio Cesar;1629.224;115002890;Germany; -2018-11-28T14:02:04Z;Júlio;5590.597;115998903;Germany; -2018-11-28T14:00:53Z;nathalia;1919.689;115957898;Germany; -2018-11-28T13:38:56Z;nathalia;324.2754;114762268;Germany; -2018-11-28T13:37:51Z;Eduardo;10841.68;115538189;Germany; -2018-12-21T13:17:59Z;nathalia;18681.29;115902614;Germany; -2018-11-28T13:06:10Z;Ana;11858.15;115031545;Germany; -2018-11-28T13:00:06Z;Nathália;929.2175;116151052;Germany; -2018-11-28T12:45:56Z;Nathália;3037.428;115686220;Germany; -2018-11-28T12:31:01Z;Júlio Cesar;4945.043;115155501;Germany; -2018-11-28T12:30:27Z;Ana;11171.2;114506217;Germany; -2018-11-28T11:59:12Z;Armando;5.12707;114718477;Germany; -2018-11-28T11:37:27Z;Sandra;4044.213;115580350;Germany; -2018-11-28T10:32:29Z;Armando;7892.055;115238944;Germany; -2018-11-28T10:20:46Z;Eduardo;6438.608;115207683;Germany; -2018-11-28T10:19:53Z;nathalia;1883.368;115709804;Germany; -2018-11-28T10:19:43Z;Júlio;1443.653;115272588;Germany; -2018-11-28T10:12:37Z;Sandra;2119.479;114587736;Germany; -2018-11-28T09:59:18Z;Sandra;257.3608;115006866;Germany; -2018-11-28T09:43:56Z;Ana;3018.668;115369207;Germany; -2018-11-28T09:40:58Z;Júlio;406.6687;114684006;Germany; -2018-11-28T09:37:54Z;Ana;3570.302;114334115;Germany; -2018-11-28T09:19:19Z;Eduardo;1449.775;114505603;Germany; -2018-11-28T09:17:53Z;Nathália;6919.213;115419955;Germany; -2018-11-28T08:54:44Z;Júlio Cesar;13938.62;116037512;Germany; -2018-11-28T08:02:34Z;Ana;7502.236;114410161;Germany; -2018-11-28T07:55:48Z;nathalia;3170.378;114259071;Germany; -2018-12-22T07:42:21Z;nathalia;18746.15;115236863;Germany; -2018-11-28T07:36:27Z;Armando;2262.528;116330201;Germany; -2018-11-28T07:29:41Z;Júlio Cesar;2464.215;115496822;Germany; -2018-11-28T07:11:38Z;Sandra;11725.2;114977765;Germany; -2018-11-28T06:30:12Z;Sandra;6949.329;115216775;Germany; -2018-11-28T05:57:31Z;Júlio Cesar;3507.133;114680368;Germany; -2018-11-28T05:51:34Z;Júlio Cesar;223.6074;114673082;Germany; -2018-12-21T05:29:47Z;Eduardo;16583.05;116219550;Germany; -2018-11-28T05:23:16Z;Nathália;5505.619;116376676;Germany; -2018-11-28T05:09:42Z;Júlio;3799.091;115905953;Germany; -2018-11-28T05:07:41Z;Nathália;7450.193;115060954;Germany; -2018-11-28T04:54:00Z;nathalia;5946.985;116222992;Germany; -2018-11-28T04:41:40Z;Nathália;2156.902;114916654;Germany; -2018-11-28T04:27:55Z;Júlio Cesar;7471.584;115580503;Germany; -2018-11-28T04:21:07Z;Eduardo;6804.428;115253290;Germany; -2018-11-28T04:20:53Z;nathalia;5169.385;114845174;Germany; -2018-11-28T04:09:28Z;Eduardo;1814.51;115534942;Germany; -2018-11-28T03:43:12Z;nathalia;5692.223;114904974;Germany; -2018-12-21T03:41:17Z;Armando;15399.75;115519112;Germany; -2018-11-28T03:35:49Z;Ana;9612.636;115036562;Germany; -2018-11-28T03:33:31Z;Nathália;239.981;114974021;Germany; -2018-11-28T03:04:53Z;Sandra;13722.82;115873235;Germany; -2018-11-28T02:50:40Z;Sandra;9474.134;115292896;Germany; -2018-11-28T02:31:06Z;Sandra;444.375;116116757;Germany; -2018-11-28T02:16:02Z;Júlio;12381.64;116073487;Germany; -2018-11-28T01:53:43Z;Ana;2557.56;116003207;Germany; -2018-11-28T01:46:24Z;Ana;1699.945;115342752;Germany; -2018-12-23T01:29:50Z;Júlio Cesar;15913.79;116380933;Germany; -2018-11-28T00:59:51Z;Júlio Cesar;6459.931;116015134;Germany; -2018-11-28T00:58:04Z;Ana;13176.12;115592650;Germany; -2018-11-28T00:54:25Z;Eduardo;1866.062;114786545;Germany; -2018-11-28T00:39:31Z;nathalia;7336.243;116263379;Germany; -2018-11-28T00:17:58Z;Ana;1353.27;115282624;Germany; -2018-11-28T00:01:30Z;Nathália;2538.948;116011349;Germany; -2018-11-27T23:20:45Z;Nathália;1475.377;114840789;Germany; -2018-11-27T23:14:45Z;Armando;1286.241;115570797;Germany; -2018-11-27T22:50:28Z;Ana;7852.935;115335991;Germany; -2018-11-27T22:31:02Z;Nathália;5552.766;115779244;Germany; -2018-11-27T22:30:06Z;Júlio Cesar;5826.615;114600029;Germany; -2018-11-27T22:17:20Z;Eduardo;4199.866;115385993;Germany; -2018-11-27T22:07:34Z;Eduardo;598.0575;114329268;Germany; -2018-11-27T21:54:25Z;Nathália;2439.059;116325259;Germany; -2018-11-27T21:40:53Z;Nathália;1230.368;115732474;Germany; -2018-12-21T21:06:59Z;Júlio;19915.66;115330625;Germany; -2018-11-27T21:01:04Z;nathalia;460.8904;115070651;Germany; -2018-11-27T20:44:58Z;nathalia;2428.108;116025278;Germany; -2018-11-27T20:41:13Z;Eduardo;2138.379;115042042;Germany; -2018-11-27T20:27:56Z;nathalia;2523.64;115305917;Germany; -2018-11-27T20:16:17Z;Ana;496.2849;115120786;Germany; -2018-11-27T20:00:12Z;Ana;12099.53;115022403;Germany; -2018-11-27T19:47:42Z;Eduardo;7528.194;114901660;Germany; -2018-11-27T19:44:19Z;Eduardo;1612.173;114201509;Germany; -2018-11-27T19:38:43Z;Júlio Cesar;4155.418;114339846;Germany; -2018-11-27T19:32:06Z;nathalia;12716.72;115777670;Germany; -2018-11-27T19:24:55Z;Nathália;3239.517;116310622;Germany; -2018-11-27T19:08:28Z;nathalia;3365.912;114209657;Germany; -2018-11-27T18:52:34Z;Armando;1886.754;116176558;Germany; -2018-11-27T18:19:37Z;Nathália;5535.441;115941398;Germany; -2018-11-27T18:03:40Z;Eduardo;270.7148;114978148;Germany; -2018-11-27T17:34:07Z;Armando;4979.199;115633222;Germany; -2018-11-27T17:27:44Z;nathalia;4307.214;114766650;Germany; -2018-11-27T17:21:50Z;Júlio Cesar;11229.9;115250307;Germany; -2018-11-27T16:12:44Z;Júlio;2625.335;116253849;Germany; -2018-11-27T15:32:10Z;nathalia;11590.11;114489918;Germany; -2018-11-27T15:29:29Z;Nathália;6319.588;115910355;Germany; -2018-11-27T15:26:26Z;Júlio Cesar;5145.815;114905081;Germany; -2018-11-27T15:09:40Z;Ana;2269.033;115029791;Germany; -2018-11-27T14:18:02Z;Ana;1049.308;115456739;Germany; -2018-11-27T14:12:52Z;Júlio Cesar;5730.898;114641579;Germany; -2018-11-27T13:56:55Z;Nathália;3992.797;114903696;Germany; -2018-11-27T13:49:50Z;Júlio Cesar;10443.29;114910239;Germany; -2018-11-27T13:43:21Z;Nathália;118.6266;115988267;Germany; -2018-11-27T13:22:34Z;nathalia;816.2153;115674184;Germany; -2018-11-27T12:41:43Z;nathalia;181.9166;114221361;Germany; -2018-11-27T12:18:51Z;nathalia;7448.223;114919315;Germany; -2018-11-27T11:50:25Z;Júlio Cesar;2700.824;115966550;Germany; -2018-11-27T11:29:05Z;Sandra;10752.13;114267667;Germany; -2018-11-27T11:09:35Z;Eduardo;3924.859;116370652;Germany; -2018-11-27T11:04:53Z;Sandra;2980.729;116350628;Germany; -2018-11-27T11:03:30Z;Júlio;9189.11;114335652;Germany; -2018-11-27T10:57:51Z;Júlio;1063.978;115872930;Germany; -2018-11-27T10:27:05Z;Eduardo;225.0814;114929027;Germany; -2018-11-27T10:25:10Z;Júlio Cesar;2669.175;115577024;Germany; -2018-11-27T10:19:02Z;Eduardo;3664.586;115879774;Germany; -2018-11-27T10:11:41Z;Sandra;2058.927;115650158;Germany; -2018-11-27T10:10:07Z;Ana;6957.135;114892974;Germany; -2018-11-27T09:19:18Z;Júlio;6011.523;115568637;Germany; -2018-11-27T09:13:51Z;Júlio;1220.899;115797716;Germany; -2018-11-27T09:04:51Z;Sandra;5364.644;114255292;Germany; -2018-11-27T09:02:54Z;Júlio;4903.589;115011913;Germany; -2018-11-27T08:51:49Z;Ana;5351.877;114385487;Germany; -2018-11-27T08:35:10Z;Armando;1834.465;114875468;Germany; -2018-11-27T08:29:23Z;Nathália;6723.196;115407030;Germany; -2018-11-27T07:39:14Z;Armando;4554.917;115040719;Germany; -2018-11-27T07:27:35Z;Sandra;522.7602;114497576;Germany; -2018-11-27T07:25:19Z;Sandra;632.4789;114348941;Germany; -2018-11-27T07:21:30Z;Júlio;1305.739;114572833;Germany; -2018-11-27T07:08:02Z;Sandra;3109.765;115345963;Germany; -2018-11-27T06:25:18Z;Júlio Cesar;3761.235;116144004;Germany; -2018-11-27T05:57:30Z;Armando;11646.41;114585381;Germany; -2018-11-27T05:33:52Z;Nathália;4069.84;114612319;Germany; -2018-11-27T05:28:40Z;nathalia;8157.039;116231567;Germany; -2018-11-27T04:43:10Z;Armando;8719.823;116023844;Germany; -2018-11-27T04:35:57Z;Armando;1719.965;116066772;Germany; -2018-12-23T04:16:19Z;Júlio Cesar;15299.22;116112402;Germany; -2018-11-27T03:42:37Z;Júlio;14342.99;115658283;Germany; -2018-11-27T03:39:26Z;Sandra;6586.061;116258487;Germany; -2018-11-27T03:21:59Z;Sandra;10501.53;115479171;Germany; -2018-11-27T02:50:47Z;Júlio;11939.22;115978704;Germany; -2018-11-27T02:41:09Z;Nathália;62.83854;116326588;Germany; -2018-11-27T01:52:16Z;Nathália;470.411;115114845;Germany; -2018-11-27T01:47:26Z;Ana;7933.974;114611959;Germany; -2018-11-27T01:37:00Z;Nathália;8218.782;114931874;Germany; -2018-11-27T01:34:09Z;nathalia;2771.106;115207146;Germany; -2018-11-27T01:22:30Z;Nathália;7006.429;115199669;Germany; -2018-11-27T00:56:35Z;Júlio Cesar;4462.338;114499601;Germany; -2018-11-27T00:49:04Z;Eduardo;461.0623;115262645;Germany; -2018-11-27T00:38:24Z;Sandra;1420.461;115768917;Germany; -2018-11-27T00:29:16Z;Sandra;8258.002;114259276;Germany; -2018-11-27T00:20:36Z;Júlio;3556.553;115736139;Germany; -2018-11-27T00:01:41Z;Nathália;11.71982;114901941;Germany; -2018-11-26T23:58:22Z;Júlio;9381.439;116187641;Germany; -2018-12-22T23:35:23Z;Nathália;17931.88;116192356;Germany; -2018-11-26T23:32:34Z;Nathália;1745.493;116007051;Germany; -2018-11-26T22:32:06Z;Ana;533.7104;116282675;Germany; -2018-11-26T21:54:17Z;Eduardo;601.6077;115895000;Germany; -2018-11-26T21:47:39Z;Armando;5879.714;115555726;Germany; -2018-11-26T21:47:19Z;Júlio;5586.525;116262958;Germany; -2018-11-26T21:36:54Z;Nathália;1159.589;115296015;Germany; -2018-11-26T21:17:59Z;Júlio Cesar;177.1056;115049209;Germany; -2018-11-26T20:42:30Z;nathalia;3251.228;115357764;Germany; -2018-11-26T19:44:32Z;Eduardo;2370.583;115331837;Germany; -2018-11-26T19:37:48Z;Sandra;9350.187;114771883;Germany; -2018-11-26T19:25:27Z;Armando;9831.324;115000433;Germany; -2018-11-26T19:25:11Z;nathalia;4623.547;114429282;Germany; -2018-11-26T18:36:02Z;Armando;3963.446;114984710;Germany; -2018-11-26T18:31:00Z;Nathália;6380.126;115047685;Germany; -2018-11-26T18:02:57Z;Júlio Cesar;2639.492;115962406;Germany; -2018-11-26T17:31:58Z;nathalia;14971.22;114271408;Germany; -2018-11-26T17:28:24Z;Armando;859.9866;114201614;Germany; -2018-11-26T16:31:18Z;Júlio;3642.297;114802425;Germany; -2018-11-26T16:23:32Z;Nathália;3331.732;115742046;Germany; -2018-11-26T15:56:59Z;Júlio Cesar;6007.973;116133657;Germany; -2018-12-23T14:59:27Z;Júlio Cesar;16330.4;115739121;Germany; -2018-11-26T14:40:42Z;Ana;71.52538;115529341;Germany; -2018-11-26T14:33:30Z;Júlio Cesar;1419.226;114681648;Germany; -2018-11-26T14:00:50Z;nathalia;10213.65;115707183;Germany; -2018-11-26T13:46:48Z;Júlio Cesar;673.0252;116082407;Germany; -2018-11-26T13:02:24Z;Armando;10181.7;114548560;Germany; -2018-11-26T12:49:45Z;Júlio Cesar;3212.013;114467867;Germany; -2018-11-26T12:34:56Z;Sandra;3782.608;114566151;Germany; -2018-11-26T12:08:32Z;Nathália;5854.064;116387199;Germany; -2018-11-26T11:57:47Z;Júlio;5313.919;114741849;Germany; -2018-11-26T11:42:29Z;Armando;2014.781;115948843;Germany; -2018-11-26T11:38:28Z;Armando;1644.046;115601203;Germany; -2018-12-23T11:31:47Z;Ana;17611.48;115949209;Germany; -2018-11-26T11:31:29Z;Júlio;1639.761;116230583;Germany; -2018-11-26T10:36:18Z;Ana;937.6809;114459931;Germany; -2018-11-26T10:09:03Z;Nathália;5256.972;114798585;Germany; -2018-11-26T09:44:09Z;Júlio Cesar;187.7601;115209934;Germany; -2018-11-26T09:21:03Z;Sandra;8130.525;116122714;Germany; -2018-11-26T08:48:07Z;nathalia;10819.77;115775749;Germany; -2018-11-26T08:47:10Z;Sandra;2277.593;116119160;Germany; -2018-11-26T08:33:26Z;Júlio Cesar;14401.78;116159041;Germany; -2018-11-26T08:11:42Z;Júlio;9816.245;115724610;Germany; -2018-11-26T07:17:53Z;Armando;310.93;115410837;Germany; -2018-11-26T07:09:16Z;Júlio;2957.416;114975935;Germany; -2018-12-21T07:07:43Z;Armando;16535.75;115412979;Germany; -2018-12-23T06:55:43Z;Júlio;16905.65;114895888;Germany; -2018-11-26T06:40:03Z;Júlio;2617.576;114705580;Germany; -2018-11-26T06:02:56Z;Eduardo;8190.552;114679915;Germany; -2018-11-26T06:00:41Z;Ana;8843.565;115693965;Germany; -2018-11-26T04:54:06Z;Eduardo;1358.53;115500384;Germany; -2018-11-26T04:52:20Z;Sandra;14119.01;115943290;Germany; -2018-11-26T04:50:01Z;Júlio;459.7206;115575805;Germany; -2018-11-26T04:33:40Z;Eduardo;1757.755;116253751;Germany; -2018-11-26T04:22:52Z;nathalia;14306.35;114465766;Germany; -2018-11-26T03:57:29Z;Armando;12586.96;115331269;Germany; -2018-11-26T02:55:52Z;Júlio Cesar;1525.52;114289297;Germany; -2018-11-26T02:36:56Z;Júlio;1819.176;115355376;Germany; -2018-11-26T01:58:57Z;Ana;64.58443;115627761;Germany; -2018-11-26T01:58:21Z;Sandra;8217.287;114805508;Germany; -2018-11-26T01:25:26Z;nathalia;1226.514;115998582;Germany; -2018-11-26T01:22:24Z;Júlio Cesar;207.5327;115087806;Germany; -2018-11-26T01:19:39Z;nathalia;2696.101;114309259;Germany; -2018-11-26T01:12:57Z;Júlio;886.8744;116391949;Germany; -2018-11-26T01:00:56Z;Nathália;4085.616;114898808;Germany; -2018-11-26T00:26:06Z;Ana;1805.701;116083634;Germany; -2018-11-25T23:58:49Z;Eduardo;4988.241;115022037;Germany; -2018-11-25T23:20:55Z;Júlio;453.9448;114550272;Germany; -2018-11-25T23:19:58Z;nathalia;588.0441;115534815;Germany; -2018-11-25T23:00:55Z;Júlio;321.4491;115346078;Germany; -2018-11-25T22:46:58Z;nathalia;51.18801;116077422;Germany; -2018-11-25T22:44:35Z;Nathália;7270.541;116373509;Germany; -2018-11-25T22:42:06Z;Armando;147.3084;114404446;Germany; -2018-11-25T22:40:53Z;Júlio Cesar;9017.604;115608122;Germany; -2018-11-25T22:39:59Z;Eduardo;5883.329;115711414;Germany; -2018-11-25T21:50:02Z;Júlio;14888.44;115489715;Germany; -2018-11-25T21:24:34Z;Júlio;8935.807;114980457;Germany; -2018-11-25T21:10:07Z;Eduardo;5163.482;114875455;Germany; -2018-11-25T21:09:56Z;nathalia;6569.929;116374091;Germany; -2018-11-25T21:07:36Z;Júlio Cesar;9243.251;116004689;Germany; -2018-11-25T21:05:21Z;Nathália;6114.591;115097651;Germany; -2018-11-25T20:27:39Z;Armando;12180.61;114345020;Germany; -2018-11-25T20:23:36Z;Armando;320.9624;114859252;Germany; -2018-11-25T20:02:29Z;Eduardo;10737.93;114660459;Germany; -2018-11-25T19:49:40Z;Armando;12839.61;115432385;Germany; -2018-11-25T19:47:35Z;Ana;9876.327;115780339;Germany; -2018-11-25T19:14:05Z;Nathália;2127.805;115861619;Germany; -2018-11-25T19:04:12Z;Armando;11028.6;115210579;Germany; -2018-11-25T19:00:05Z;Eduardo;12.01261;116305752;Germany; -2018-11-25T18:58:55Z;Armando;351.3507;114502743;Germany; -2018-11-25T18:47:20Z;Nathália;41.35239;114594657;Germany; -2018-11-25T18:28:40Z;Sandra;441.5414;115686967;Germany; -2018-11-25T18:26:59Z;Júlio Cesar;10206.19;116101034;Germany; -2018-11-25T18:23:56Z;Eduardo;1255.4;116073100;Germany; -2018-11-25T18:16:43Z;Júlio;1906.134;115981329;Germany; -2018-11-25T18:13:02Z;Ana;6105.513;114679238;Germany; -2018-11-25T17:46:00Z;Eduardo;216.9216;116399842;Germany; -2018-11-25T17:43:48Z;Nathália;11933.3;114659935;Germany; -2018-11-25T17:43:22Z;Armando;8841.73;115384742;Germany; -2018-11-25T17:37:39Z;Ana;2531.6;114583926;Germany; -2018-11-25T17:24:52Z;Armando;51.19748;116057845;Germany; -2018-11-25T17:17:51Z;Ana;470.3418;114460778;Germany; -2018-11-25T17:14:55Z;Eduardo;8025.089;115421270;Germany; -2018-11-25T16:50:09Z;Nathália;669.0076;115158762;Germany; -2018-11-25T16:09:00Z;Armando;5547.13;115698356;Germany; -2018-11-25T15:42:39Z;Ana;3208.445;115398842;Germany; -2018-11-25T15:39:50Z;Ana;690.4958;116305245;Germany; -2018-11-25T14:59:16Z;Sandra;11470.57;114628209;Germany; -2018-11-25T14:52:56Z;Eduardo;4274.486;114564823;Germany; -2018-11-25T14:16:14Z;Armando;6288.227;116029156;Germany; -2018-11-25T14:11:59Z;nathalia;8132.808;115587299;Germany; -2018-11-25T13:56:09Z;Ana;10625.81;115457340;Germany; -2018-12-23T13:55:11Z;Armando;19917.03;114990838;Germany; -2018-11-25T12:52:05Z;Nathália;1085.019;116225182;Germany; -2018-11-25T12:38:19Z;Armando;9561.346;115250279;Germany; -2018-11-25T12:36:49Z;Ana;3656.846;116046920;Germany; -2018-11-25T12:28:20Z;Nathália;2710.111;114583916;Germany; -2018-11-25T12:16:55Z;Nathália;8194.996;115460460;Germany; -2018-11-25T12:07:23Z;Nathália;12774.8;115411302;Germany; -2018-11-25T12:00:32Z;Nathália;109.9287;116028678;Germany; -2018-12-21T11:57:17Z;Armando;15985.72;116059543;Germany; -2018-11-25T11:56:36Z;nathalia;9352.857;115335427;Germany; -2018-11-25T11:33:15Z;Ana;2515.589;114883574;Germany; -2018-11-25T10:55:59Z;Ana;5816.281;115677118;Germany; -2018-11-25T10:55:47Z;Júlio;176.0689;114922004;Germany; -2018-12-22T10:30:05Z;Eduardo;16299.55;114977004;Germany; -2018-11-25T10:26:56Z;Júlio;13618.26;114973903;Germany; -2018-11-25T10:10:14Z;Ana;11303.39;115660157;Germany; -2018-11-25T10:08:00Z;Júlio;3.728507;116091554;Germany; -2018-11-25T09:46:01Z;nathalia;7867.733;114486226;Germany; -2018-11-25T09:43:31Z;Júlio;672.5368;115597244;Germany; -2018-11-25T09:21:45Z;nathalia;8861.036;116193940;Germany; -2018-11-25T09:05:34Z;Armando;7040.359;114241292;Germany; -2018-11-25T08:25:34Z;Ana;2695.896;116385803;Germany; -2018-11-25T08:17:17Z;nathalia;5214.799;114433209;Germany; -2018-11-25T07:31:32Z;nathalia;5335.137;115239272;Germany; -2018-11-25T07:15:51Z;Armando;9156.46;115246094;Germany; -2018-11-25T07:15:36Z;Ana;8253.979;115410027;Germany; -2018-11-25T07:14:26Z;nathalia;3291.91;114351080;Germany; -2018-11-25T06:55:39Z;Armando;6909.146;116139111;Germany; -2018-11-25T06:53:15Z;Ana;182.6833;114905283;Germany; -2018-11-25T06:32:06Z;Júlio Cesar;7725.758;115477286;Germany; -2018-11-25T06:27:05Z;nathalia;13738.28;115856252;Germany; -2018-11-25T06:24:31Z;nathalia;3005.181;115292089;Germany; -2018-11-25T06:12:07Z;Sandra;3318.017;115558030;Germany; -2018-11-25T05:51:45Z;Eduardo;1119.659;115102735;Germany; -2018-11-25T05:11:49Z;Nathália;583.4834;114200032;Germany; -2018-11-25T04:56:58Z;Sandra;3199.14;114973608;Germany; -2018-11-25T04:53:26Z;Armando;8040.278;114857924;Germany; -2018-11-25T04:44:17Z;Ana;4552.171;116057461;Germany; -2018-11-25T04:22:28Z;Armando;66.87239;115818024;Germany; -2018-11-25T04:19:02Z;Sandra;8382.856;115759710;Germany; -2018-11-25T04:18:09Z;Júlio;959.5445;115007847;Germany; -2018-11-25T04:12:20Z;Armando;3573.896;116182131;Germany; -2018-11-25T03:57:18Z;Júlio;14711.63;116223006;Germany; -2018-11-25T03:52:10Z;Júlio;6056.948;116142266;Germany; -2018-11-25T03:25:31Z;nathalia;3858.247;115459965;Germany; -2018-11-25T03:15:42Z;Sandra;958.1162;116382210;Germany; -2018-12-21T03:03:08Z;Ana;19198.26;114686725;Germany; -2018-11-25T02:53:59Z;Ana;3867.922;114641254;Germany; -2018-11-25T02:46:44Z;Armando;5362.655;115804983;Germany; -2018-11-25T02:32:17Z;Armando;9388.527;116030754;Germany; -2018-11-25T01:55:38Z;nathalia;9057.999;116236253;Germany; -2018-11-25T01:20:53Z;Nathália;2425.317;116235842;Germany; -2018-11-25T01:03:07Z;Júlio;5829.837;115749385;Germany; -2018-11-25T00:56:14Z;Ana;53.16614;115867066;Germany; -2018-11-25T00:48:48Z;Armando;1674.299;114875697;Germany; -2018-11-25T00:32:00Z;Júlio Cesar;4709.386;115628341;Germany; -2018-11-25T00:24:22Z;Eduardo;2883.269;115980072;Germany; -2018-11-25T00:19:22Z;Ana;12412.12;115101045;Germany; -2018-11-25T00:07:24Z;Armando;2360.792;115214170;Germany; -2018-11-24T23:11:34Z;Armando;4902.508;115737578;Germany; -2018-11-24T22:28:41Z;Júlio Cesar;863.203;114290437;Germany; -2018-12-23T22:06:50Z;Ana;16169.2;115756250;Germany; -2018-11-24T21:30:49Z;Júlio;10227.46;116368332;Germany; -2018-11-24T21:13:54Z;Armando;13796.42;116038286;Germany; -2018-11-24T21:13:35Z;Ana;9177.014;116073542;Germany; -2018-11-24T21:11:38Z;Nathália;9510.99;116109053;Germany; -2018-11-24T20:33:43Z;nathalia;10258.53;115989168;Germany; -2018-12-21T20:11:32Z;Sandra;21874.22;115272916;Germany; -2018-11-24T20:04:35Z;Sandra;8637.562;115313849;Germany; -2018-11-24T19:11:44Z;Sandra;2533.903;115409922;Germany; -2018-12-23T18:54:36Z;Armando;17629.99;114268959;Germany; -2018-11-24T18:47:27Z;Nathália;4967.713;115975599;Germany; -2018-11-24T18:40:44Z;Sandra;9359.381;115670380;Germany; -2018-11-24T18:31:13Z;Armando;14210.15;115701825;Germany; -2018-11-24T18:30:21Z;Júlio;4004.184;114386914;Germany; -2018-11-24T18:06:26Z;Júlio Cesar;9429.591;115907483;Germany; -2018-11-24T17:57:01Z;Júlio Cesar;1388.502;114342111;Germany; -2018-12-22T17:56:46Z;nathalia;15445.21;115930604;Germany; -2018-11-24T17:56:01Z;Eduardo;991.3199;115826660;Germany; -2018-11-24T17:43:40Z;Júlio;5204.694;115737205;Germany; -2018-11-24T17:42:39Z;Júlio;567.5489;114237115;Germany; -2018-11-24T17:37:33Z;nathalia;5907.436;115041615;Germany; -2018-11-24T17:10:28Z;Sandra;7520.798;114229269;Germany; -2018-11-24T16:46:19Z;Armando;12789.92;115405958;Germany; -2018-11-24T16:29:38Z;Armando;3057.91;115564273;Germany; -2018-11-24T16:00:31Z;Ana;2809.265;114683440;Germany; -2018-11-24T15:48:15Z;Júlio Cesar;3637.731;115609205;Germany; -2018-11-24T15:21:29Z;Ana;7177.049;115404494;Germany; -2018-11-24T15:05:59Z;Sandra;4379.427;114201822;Germany; -2018-11-24T14:54:02Z;nathalia;4284.299;114385939;Germany; -2018-11-24T14:29:24Z;Júlio Cesar;6795.326;115383444;Germany; -2018-11-24T14:08:02Z;Júlio;75.314;116055149;Germany; -2018-11-24T14:05:14Z;Júlio;1556.158;116083713;Germany; -2018-11-24T13:55:56Z;Sandra;586;114338844;Germany; -2018-11-24T13:54:22Z;Nathália;4807.926;115335621;Germany; -2018-11-24T13:27:48Z;Sandra;6382.127;114672679;Germany; -2018-11-24T12:59:35Z;Armando;11866.8;115314116;Germany; -2018-11-24T12:56:26Z;nathalia;2053.366;115533787;Germany; -2018-12-22T12:48:11Z;Júlio Cesar;24028.08;115757804;Germany; -2018-12-22T12:26:52Z;Sandra;15901.63;116254201;Germany; -2018-11-24T12:04:03Z;Nathália;667.4176;115049025;Germany; -2018-11-24T11:43:45Z;Nathália;7208.499;115990944;Germany; -2018-11-24T11:24:58Z;Júlio;3106.986;115506938;Germany; -2018-11-24T11:14:25Z;Armando;598.8936;115145543;Germany; -2018-11-24T10:51:03Z;Nathália;2922.776;115119278;Germany; -2018-11-24T10:28:37Z;Júlio;172.659;114576991;Germany; -2018-11-24T10:20:26Z;Eduardo;2048.874;115180229;Germany; -2018-11-24T09:56:52Z;nathalia;4066.865;114584771;Germany; -2018-11-24T09:52:34Z;Ana;3296.279;115555805;Germany; -2018-11-24T09:26:23Z;Júlio;147.7499;114675784;Germany; -2018-11-24T09:06:43Z;Júlio;891.0801;115526696;Germany; -2018-11-24T08:41:01Z;Júlio Cesar;3141.938;115786460;Germany; -2018-11-24T08:35:32Z;Sandra;987.4909;114498126;Germany; -2018-11-24T08:15:08Z;Sandra;3944.835;114728439;Germany; -2018-11-24T07:59:08Z;nathalia;620.9036;115947819;Germany; -2018-11-24T07:26:43Z;Sandra;5679.866;115205696;Germany; -2018-11-24T07:06:10Z;Júlio Cesar;5541.997;115955151;Germany; -2018-11-24T06:35:52Z;Armando;1014.282;115490040;Germany; -2018-11-24T06:32:23Z;Sandra;369.7593;114751940;Germany; -2018-11-24T06:06:01Z;Armando;624.1283;116072136;Germany; -2018-11-24T06:01:55Z;Júlio Cesar;6515.003;114637434;Germany; -2018-11-24T05:26:21Z;Ana;4341.013;114344638;Germany; -2018-11-24T04:45:12Z;Sandra;6917.768;114630157;Germany; -2018-11-24T04:41:40Z;nathalia;7879.486;115260229;Germany; -2018-11-24T04:21:41Z;Nathália;843.4995;114802579;Germany; -2018-11-24T03:54:13Z;Sandra;10484.43;114565619;Germany; -2018-11-24T03:40:07Z;Eduardo;7244.325;116236109;Germany; -2018-11-24T03:33:59Z;Júlio;12456.08;114738362;Germany; -2018-11-24T03:19:11Z;Armando;1480.745;114502500;Germany; -2018-11-24T03:08:20Z;Nathália;6003.985;115736037;Germany; -2018-11-24T02:52:54Z;Júlio;11210.86;115194445;Germany; -2018-11-24T02:34:21Z;Sandra;749.8904;115062884;Germany; -2018-11-24T02:23:06Z;nathalia;149.1988;114399315;Germany; -2018-11-24T02:09:56Z;Sandra;11394.19;116263661;Germany; -2018-11-24T01:59:57Z;Júlio Cesar;4875.538;115782760;Germany; -2018-11-24T01:58:37Z;Júlio;2947.566;114707898;Germany; -2018-11-24T01:37:09Z;nathalia;10839.05;115789916;Germany; -2018-11-24T01:05:29Z;Eduardo;2850.3;114439745;Germany; -2018-11-24T01:02:48Z;Júlio Cesar;10237;114256224;Germany; -2018-11-24T00:57:01Z;Nathália;1142.173;114772296;Germany; -2018-11-24T00:43:57Z;Armando;823.9671;114524652;Germany; -2018-11-24T00:36:44Z;Ana;7678.392;114616334;Germany; -2018-11-24T00:04:44Z;Júlio Cesar;8193.764;115991802;Germany; -2018-11-23T23:54:14Z;Sandra;9478.407;114531330;Germany; -2018-11-23T23:53:32Z;Ana;11758.77;115401328;Germany; -2018-12-22T23:49:49Z;Júlio;15488.46;114851843;Germany; -2018-11-23T23:28:56Z;Nathália;5201.378;115776502;Germany; -2018-11-23T23:18:33Z;nathalia;70.54052;114561617;Germany; -2018-11-23T23:15:03Z;Sandra;8442.737;115729302;Germany; -2018-11-23T22:59:24Z;Nathália;7678.064;116398820;Germany; -2018-11-23T22:41:39Z;Júlio;394.644;115057147;Germany; -2018-11-23T22:17:02Z;Sandra;222.6566;115876874;Germany; -2018-11-23T22:13:47Z;Nathália;2298.229;115402403;Germany; -2018-11-23T22:09:48Z;Nathália;1677.364;115472082;Germany; -2018-11-23T22:07:35Z;Armando;1650.352;114487280;Germany; -2018-11-23T21:40:36Z;Nathália;3330.129;114622236;Germany; -2018-11-23T21:34:22Z;Ana;10285.82;114430180;Germany; -2018-11-23T21:31:49Z;Nathália;763.7831;115453984;Germany; -2018-12-23T21:12:50Z;Nathália;17620.86;114970801;Germany; -2018-11-23T21:11:46Z;Sandra;14309.78;114300885;Germany; -2018-11-23T20:57:12Z;Eduardo;861.4552;114318577;Germany; -2018-11-23T20:33:48Z;Eduardo;10846.85;114785345;Germany; -2018-11-23T19:54:07Z;Júlio;7991.611;115787645;Germany; -2018-11-23T18:55:33Z;Eduardo;6196.504;114422322;Germany; -2018-11-23T18:35:41Z;Nathália;5960.79;115458896;Germany; -2018-11-23T17:50:36Z;Eduardo;5681.499;114593771;Germany; -2018-11-23T17:42:51Z;nathalia;880.5465;115703243;Germany; -2018-11-23T17:38:14Z;Júlio;1354.738;116102908;Germany; -2018-11-23T17:30:20Z;Eduardo;836.9297;114643687;Germany; -2018-11-23T16:54:00Z;Júlio;11405.92;115346849;Germany; -2018-11-23T16:43:53Z;Armando;4522.659;115899242;Germany; -2018-11-23T16:26:32Z;Eduardo;1987.68;115486267;Germany; -2018-11-23T16:21:05Z;Sandra;993.2946;115623542;Germany; -2018-11-23T16:07:41Z;nathalia;2120.204;116009659;Germany; -2018-11-23T15:24:44Z;Eduardo;3551.575;114993259;Germany; -2018-11-23T15:10:34Z;Júlio;457.4792;114677741;Germany; -2018-11-23T14:52:23Z;Júlio Cesar;3559.439;116038429;Germany; -2018-11-23T14:31:34Z;Nathália;3782.847;115536916;Germany; -2018-11-23T14:31:17Z;Nathália;3505.782;115828561;Germany; -2018-11-23T14:25:30Z;Sandra;1377.701;115814325;Germany; -2018-11-23T14:25:24Z;Júlio Cesar;1064.788;115694798;Germany; -2018-11-23T14:13:18Z;nathalia;1410.493;114357069;Germany; -2018-11-23T14:05:08Z;Júlio;3007.531;115549563;Germany; -2018-11-23T13:33:54Z;Sandra;4899.014;115290900;Germany; -2018-11-23T13:32:41Z;Ana;2377.69;115160619;Germany; -2018-11-23T13:24:09Z;Júlio Cesar;194.0687;116064334;Germany; -2018-11-23T13:07:29Z;Sandra;211.3366;115384718;Germany; -2018-11-23T13:06:51Z;Júlio;13671.38;115671461;Germany; -2018-11-23T12:56:46Z;Ana;779.5483;114653756;Germany; -2018-11-23T12:55:24Z;Ana;747.8596;114778036;Germany; -2018-11-23T12:26:14Z;nathalia;1308.351;115907970;Germany; -2018-11-23T12:11:45Z;Nathália;588.8726;114223603;Germany; -2018-11-23T11:32:18Z;Nathália;2331.25;114929728;Germany; -2018-11-23T11:30:52Z;Ana;1919.781;116297813;Germany; -2018-11-23T11:07:33Z;Sandra;12125.11;116084201;Germany; -2018-11-23T10:42:02Z;Armando;985.4022;114404504;Germany; -2018-11-23T10:30:01Z;Sandra;1236.371;116390386;Germany; -2018-11-23T09:55:46Z;Júlio Cesar;83.06658;114266276;Germany; -2018-11-23T09:44:03Z;Armando;7942.452;115977572;Germany; -2018-11-23T09:33:23Z;Júlio;8379.178;114824842;Germany; -2018-11-23T09:27:36Z;Júlio;3308.654;114806504;Germany; -2018-11-23T08:04:16Z;nathalia;6900.269;116105263;Germany; -2018-11-23T07:04:43Z;Eduardo;2532.34;115200054;Germany; -2018-11-23T06:57:55Z;Nathália;6119.813;115535210;Germany; -2018-11-23T06:56:12Z;Ana;11820.18;115567776;Germany; -2018-12-21T06:43:52Z;Ana;19345.87;116280255;Germany; -2018-11-23T06:39:41Z;Armando;3452.3;115394573;Germany; -2018-11-23T05:30:10Z;Eduardo;1271.673;114387356;Germany; -2018-11-23T05:09:26Z;Júlio;2684.594;114599175;Germany; -2018-11-23T04:55:32Z;Sandra;4409.709;115926241;Germany; -2018-11-23T04:38:29Z;Júlio Cesar;2966.191;115760896;Germany; -2018-11-23T04:36:30Z;nathalia;523.5378;115559357;Germany; -2018-11-23T04:08:14Z;Nathália;12319.22;115317352;Germany; -2018-11-23T03:31:21Z;Sandra;6420.087;114208869;Germany; -2018-11-23T03:22:03Z;Júlio;1132.537;115436102;Germany; -2018-11-23T03:05:14Z;Sandra;633.1343;115925090;Germany; -2018-11-23T03:00:37Z;Júlio Cesar;13988.89;115410316;Germany; -2018-12-21T02:46:22Z;Sandra;17587.26;116095281;Germany; -2018-11-23T02:37:53Z;Armando;6745.643;116165821;Germany; -2018-11-23T02:32:26Z;nathalia;1998.413;114981737;Germany; -2018-11-23T02:10:49Z;Nathália;568.7385;115578253;Germany; -2018-11-23T02:06:57Z;Sandra;994.0443;114371447;Germany; -2018-11-23T01:49:17Z;nathalia;5868.36;114290478;Germany; -2018-11-23T01:07:29Z;Júlio;6417.876;114941383;Germany; -2018-11-23T01:00:54Z;Sandra;2030.206;114360528;Germany; -2018-11-23T00:58:28Z;Sandra;10852.14;116050692;Germany; -2018-11-23T00:28:55Z;Eduardo;4862.626;114323574;Germany; -2018-11-23T00:23:47Z;Júlio Cesar;4860.277;115025228;Germany; -2018-11-23T00:04:45Z;Eduardo;2967.017;115491531;Germany; -2018-11-22T23:44:43Z;Eduardo;1230.931;114552801;Germany; -2018-11-22T23:29:58Z;Armando;780.0659;115113364;Germany; -2018-11-22T23:00:01Z;Júlio;1792.204;115524072;Germany; -2018-11-22T22:58:17Z;Armando;897.354;116102732;Germany; -2018-11-22T22:35:46Z;Júlio;9726.07;115365678;Germany; -2018-11-22T21:58:34Z;Júlio Cesar;8075.06;116391918;Germany; -2018-11-22T21:24:11Z;Armando;72.37086;115350453;Germany; -2018-11-22T21:09:35Z;Júlio Cesar;1868.748;116240180;Germany; -2018-11-22T20:49:49Z;Sandra;3586.665;114295388;Germany; -2018-11-22T20:46:03Z;Júlio;11681.98;114882235;Germany; -2018-11-22T19:41:05Z;Ana;4499.838;115005942;Germany; -2018-11-22T19:29:32Z;Armando;9038.404;115972847;Germany; -2018-11-22T18:49:58Z;Júlio;9036.944;115315755;Germany; -2018-11-22T18:43:44Z;Júlio;5406.551;115635516;Germany; -2018-11-22T18:28:56Z;Júlio;4605.316;115900348;Germany; -2018-11-22T18:19:32Z;Júlio Cesar;7541.167;115194747;Germany; -2018-11-22T18:05:54Z;Sandra;731.7139;114345171;Germany; -2018-11-22T17:58:41Z;Júlio;5659.39;115193922;Germany; -2018-11-22T17:54:45Z;Armando;6722.848;114801957;Germany; -2018-11-22T17:45:07Z;nathalia;1519.287;115702015;Germany; -2018-12-22T17:40:41Z;Armando;15949.1;114508506;Germany; -2018-12-22T17:27:25Z;Ana;34570.14;114287261;Germany; -2018-11-22T17:00:57Z;Nathália;1513.539;116365984;Germany; -2018-11-22T16:33:25Z;Nathália;10322.54;115411930;Germany; -2018-11-22T16:07:49Z;nathalia;686.3374;115185325;Germany; -2018-11-22T16:06:57Z;Ana;6185.361;115698440;Germany; -2018-11-22T16:05:13Z;Nathália;2696.747;115510225;Germany; -2018-11-22T15:53:45Z;Sandra;3284.423;116346615;Germany; -2018-11-22T15:52:02Z;Nathália;7842.925;115748087;Germany; -2018-11-22T15:48:13Z;Nathália;14036.16;115603822;Germany; -2018-11-22T15:27:14Z;Júlio Cesar;3185.763;114230574;Germany; -2018-11-22T15:25:27Z;Ana;4249.08;115776723;Germany; -2018-11-22T15:24:24Z;Júlio;9806.321;116174631;Germany; -2018-11-22T15:11:00Z;nathalia;85.55536;115317866;Germany; -2018-12-23T15:06:39Z;Armando;21398.15;116343080;Germany; -2018-11-22T14:41:20Z;nathalia;251.9845;115730739;Germany; -2018-11-22T14:41:04Z;Júlio Cesar;321.2215;115329277;Germany; -2018-11-22T14:22:45Z;Armando;3239.814;115525747;Germany; -2018-11-22T14:20:08Z;Júlio Cesar;9368.113;116086433;Germany; -2018-11-22T14:11:52Z;nathalia;11013.46;115680448;Germany; -2018-11-22T14:10:41Z;nathalia;6023.808;115748942;Germany; -2018-11-22T13:55:39Z;Júlio;6577.724;114487753;Germany; -2018-11-22T13:31:38Z;Júlio;4558.878;115519992;Germany; -2018-11-22T13:27:28Z;Júlio Cesar;12042.11;114911602;Germany; -2018-11-22T12:13:38Z;Júlio Cesar;1645.552;114446061;Germany; -2018-11-22T12:03:56Z;Ana;9771.603;115435533;Germany; -2018-11-22T11:58:23Z;Armando;684.4383;115706574;Germany; -2018-11-22T11:39:08Z;Eduardo;13262.15;115725912;Germany; -2018-11-22T11:38:18Z;Nathália;4017.025;114467065;Germany; -2018-12-22T11:34:05Z;nathalia;15688.54;115571744;Germany; -2018-11-22T11:06:11Z;Eduardo;3478.387;114256896;Germany; -2018-12-23T10:46:26Z;Armando;18812.59;114998617;Germany; -2018-11-22T10:36:23Z;Eduardo;11927.48;116126047;Germany; -2018-11-22T10:09:53Z;Nathália;8924.605;114982881;Germany; -2018-11-22T10:05:08Z;nathalia;6474.033;114766327;Germany; -2018-12-21T10:01:11Z;Armando;15989.12;115248743;Germany; -2018-11-22T09:44:34Z;Júlio Cesar;7279.15;116284091;Germany; -2018-11-22T09:40:10Z;nathalia;14812.52;115092046;Germany; -2018-11-22T09:22:00Z;Armando;1914.03;114627011;Germany; -2018-11-22T09:19:44Z;Júlio;723.1071;116309883;Germany; -2018-11-22T08:59:49Z;Nathália;2022.309;114593884;Germany; -2018-12-22T08:08:21Z;Armando;15030.93;115196850;Germany; -2018-11-22T07:59:51Z;Armando;5016.804;114626364;Germany; -2018-11-22T07:47:45Z;Nathália;3252.658;115156770;Germany; -2018-11-22T07:42:14Z;Ana;5111.383;116211452;Germany; -2018-11-22T07:34:37Z;Júlio Cesar;6623.364;115626213;Germany; -2018-12-22T07:32:23Z;Sandra;19115.38;114988428;Germany; -2018-11-22T07:30:03Z;Sandra;3063.213;115769623;Germany; -2018-11-22T07:17:51Z;Júlio;13535.53;115010641;Germany; -2018-11-22T06:36:26Z;Eduardo;3129.979;115433383;Germany; -2018-11-22T06:33:03Z;Armando;345.2869;114482235;Germany; -2018-11-22T06:24:40Z;Sandra;2782.472;114353181;Germany; -2018-11-22T05:59:47Z;Nathália;495.4042;115367055;Germany; -2018-11-22T05:52:41Z;Sandra;4349.703;114840200;Germany; -2018-12-21T05:18:39Z;Nathália;17501.38;116002111;Germany; -2018-12-22T05:12:50Z;Sandra;24339.66;114879172;Germany; -2018-11-22T05:09:39Z;Nathália;5532.706;115766013;Germany; -2018-11-22T04:51:13Z;Sandra;6789.211;115134228;Germany; -2018-11-22T04:48:37Z;Eduardo;1693.229;115014449;Germany; -2018-11-22T04:33:19Z;Júlio Cesar;1457.399;114283924;Germany; -2018-11-22T04:22:21Z;Nathália;12103.5;114851819;Germany; -2018-11-22T04:02:33Z;Nathália;926.2583;115375931;Germany; -2018-11-22T03:54:46Z;Sandra;985.2706;114800762;Germany; -2018-11-22T03:43:28Z;Ana;210.8563;116381771;Germany; -2018-11-22T03:38:40Z;Ana;935.9882;114924372;Germany; -2018-11-22T03:27:59Z;Ana;6689.877;115312263;Germany; -2018-11-22T03:20:48Z;nathalia;259.0705;114276873;Germany; -2018-11-22T03:18:36Z;Júlio Cesar;3722.676;115640053;Germany; -2018-11-22T03:13:02Z;Armando;5659.241;114703684;Germany; -2018-11-22T03:05:43Z;Nathália;1149.662;114468511;Germany; -2018-11-22T02:56:33Z;Júlio Cesar;321.0284;114632471;Germany; -2018-11-22T02:49:12Z;Júlio Cesar;5344.475;116326532;Germany; -2018-11-22T02:48:38Z;Júlio Cesar;3272.756;115294894;Germany; -2018-11-22T02:45:25Z;nathalia;9.693261;115906387;Germany; -2018-11-22T02:28:23Z;Eduardo;1857.208;115257812;Germany; -2018-11-22T02:22:01Z;Júlio;2746.366;115418102;Germany; -2018-11-22T01:52:30Z;Júlio;2440.43;114920857;Germany; -2018-11-22T01:36:12Z;Ana;5148.961;116241136;Germany; -2018-11-22T01:32:51Z;Júlio;965.9699;115175630;Germany; -2018-11-22T01:06:10Z;Armando;1798.833;116233817;Germany; -2018-11-22T01:05:57Z;Júlio Cesar;682.0124;115975859;Germany; -2018-11-22T01:04:48Z;Nathália;875.9609;114704748;Germany; -2018-11-22T01:00:51Z;nathalia;3877.037;115846694;Germany; -2018-11-22T00:19:01Z;nathalia;7005.906;114966705;Germany; -2018-11-22T00:18:19Z;Eduardo;2605.835;115011209;Germany; -2018-11-22T00:08:43Z;Júlio;1778.898;115977914;Germany; -2018-12-21T00:06:08Z;Júlio;16795.65;114873025;Germany; -2018-11-21T23:29:37Z;Nathália;3350.147;115314773;Germany; -2018-11-21T23:21:54Z;Sandra;7416.777;114532285;Germany; -2018-11-21T23:07:54Z;Eduardo;5920.318;115258134;Germany; -2018-11-21T22:48:48Z;Júlio;56.89331;114899751;Germany; -2018-11-21T22:12:34Z;Nathália;3934.766;115190500;Germany; -2018-11-21T22:08:49Z;Ana;13708.18;114689179;Germany; -2018-11-21T22:08:14Z;nathalia;5769.686;116084818;Germany; -2018-11-21T21:44:37Z;Ana;2289.869;115913906;Germany; -2018-11-21T21:27:08Z;Nathália;4576.016;114942438;Germany; -2018-11-21T21:23:07Z;nathalia;7363.484;115200080;Germany; -2018-11-21T21:20:37Z;Júlio;10451.78;114406294;Germany; -2018-11-21T20:13:14Z;Júlio;10234.52;115043562;Germany; -2018-11-21T20:11:46Z;Armando;2572.94;114226338;Germany; -2018-11-21T19:11:31Z;Júlio;1683.821;116243116;Germany; -2018-11-21T19:07:32Z;nathalia;9297.212;115824626;Germany; -2018-11-21T19:02:22Z;Júlio;9572.757;115188723;Germany; -2018-11-21T19:01:30Z;Sandra;12053.91;114716199;Germany; -2018-11-21T18:46:43Z;Júlio Cesar;3027.744;115357969;Germany; -2018-11-21T18:41:17Z;Eduardo;3818.451;115704633;Germany; -2018-11-21T18:33:26Z;Nathália;203.0508;116062813;Germany; -2018-11-21T18:31:36Z;Armando;5921.396;114534539;Germany; -2018-12-22T17:52:41Z;Eduardo;18371.14;115204054;Germany; -2018-11-21T17:50:42Z;Sandra;523.3528;116125098;Germany; -2018-11-21T17:47:57Z;Nathália;888.3716;115210934;Germany; -2018-11-21T16:52:45Z;Júlio;6423.972;116232338;Germany; -2018-11-21T16:37:16Z;Nathália;8018.214;115537108;Germany; -2018-11-21T15:45:03Z;Júlio Cesar;12765.86;114906739;Germany; -2018-11-21T15:43:31Z;Sandra;809.3964;115904640;Germany; -2018-11-21T15:37:58Z;Nathália;3417.747;115007079;Germany; -2018-11-21T15:35:59Z;Nathália;663.9007;116107434;Germany; -2018-11-21T15:26:41Z;Ana;7448.182;114206651;Germany; -2018-11-21T15:24:08Z;Nathália;1338.276;114818724;Germany; -2018-11-21T15:23:33Z;Júlio;4218.322;115905393;Germany; -2018-11-21T15:21:05Z;Sandra;4098.537;115618399;Germany; -2018-11-21T15:10:01Z;Eduardo;471.176;114524152;Germany; -2018-11-21T15:08:55Z;Eduardo;6190.364;114787269;Germany; -2018-11-21T14:45:38Z;Armando;4877.938;114428257;Germany; -2018-11-21T14:07:44Z;Nathália;13816.19;116339247;Germany; -2018-11-21T14:07:18Z;Ana;459.9028;115684428;Germany; -2018-11-21T13:58:01Z;Eduardo;3884.507;114675070;Germany; -2018-11-21T13:32:40Z;Júlio;3194.238;115361870;Germany; -2018-11-21T13:16:38Z;nathalia;325.7546;114859131;Germany; -2018-11-21T12:35:54Z;Júlio Cesar;8974.314;114998776;Germany; -2018-11-21T12:30:34Z;Armando;2739.766;115378207;Germany; -2018-11-21T12:16:09Z;Armando;3566.788;115881199;Germany; -2018-11-21T12:14:06Z;Nathália;1991.593;114881720;Germany; -2018-11-21T12:12:39Z;Ana;1207.128;115304171;Germany; -2018-11-21T11:40:06Z;Júlio;7286.926;115642443;Germany; -2018-11-21T11:29:28Z;nathalia;10600.91;114535706;Germany; -2018-11-21T11:19:48Z;Ana;931.3548;115497806;Germany; -2018-11-21T11:16:23Z;Armando;9218.554;115446706;Germany; -2018-11-21T11:16:14Z;Ana;1282.232;115356361;Germany; -2018-11-21T11:04:49Z;Armando;4712.753;115596179;Germany; -2018-11-21T08:46:25Z;Júlio;8205.497;115874751;Germany; -2018-11-21T08:23:34Z;Ana;11265.17;114651567;Germany; -2018-11-21T08:16:33Z;Nathália;2312.958;115558176;Germany; -2018-11-21T08:06:11Z;Eduardo;1091.252;115426717;Germany; -2018-12-22T08:04:13Z;nathalia;15913.16;115151715;Germany; -2018-11-21T08:02:43Z;Armando;14432.76;115111964;Germany; -2018-11-21T07:56:33Z;Nathália;11446.75;114438004;Germany; -2018-11-21T07:38:26Z;Júlio;11025.36;115246767;Germany; -2018-11-21T07:29:10Z;nathalia;1633.869;116053613;Germany; -2018-11-21T07:22:12Z;Nathália;10815.14;114527642;Germany; -2018-11-21T07:16:47Z;nathalia;7199.758;116255968;Germany; -2018-11-21T06:54:54Z;Nathália;5943.735;116013545;Germany; -2018-11-21T06:44:02Z;Eduardo;335.2585;114494864;Germany; -2018-12-22T06:14:56Z;Júlio;23723.41;114876118;Germany; -2018-11-21T06:01:59Z;Júlio Cesar;2680.002;115153235;Germany; -2018-11-21T05:01:22Z;Armando;7608.405;116118199;Germany; -2018-11-21T04:57:10Z;Júlio Cesar;6379.603;116128520;Germany; -2018-12-21T04:43:03Z;Sandra;17442.42;114681067;Germany; -2018-11-21T04:30:14Z;Nathália;8045.874;115432215;Germany; -2018-11-21T04:21:21Z;Ana;4473.253;115657847;Germany; -2018-11-21T04:13:51Z;Júlio Cesar;5666.926;115366237;Germany; -2018-11-21T03:57:47Z;nathalia;8402.473;115423094;Germany; -2018-11-21T03:35:22Z;Júlio;1104.091;114352438;Germany; -2018-11-21T03:35:02Z;Sandra;4152.147;115715777;Germany; -2018-11-21T03:18:05Z;Armando;8526.217;114948470;Germany; -2018-11-21T02:57:35Z;Eduardo;11258.74;114230295;Germany; -2018-11-21T02:46:31Z;Ana;266.5022;114983174;Germany; -2018-11-21T02:28:54Z;Ana;13455.76;114266746;Germany; -2018-11-21T02:05:24Z;Sandra;14113.46;114945945;Germany; -2018-11-21T00:44:28Z;nathalia;2305.884;116124382;Germany; -2018-11-21T00:41:01Z;Júlio;146.0719;116384832;Germany; -2018-11-21T00:40:45Z;nathalia;748.6256;114498204;Germany; -2018-11-21T00:35:49Z;Júlio;14083.61;115433628;Germany; -2018-11-21T00:34:01Z;Nathália;5830.794;115188727;Germany; -2018-11-21T00:13:37Z;Sandra;203.9451;114667913;Germany; -2018-11-21T00:06:20Z;Nathália;5626.051;116165197;Germany; -2018-11-21T00:01:45Z;Nathália;5612.072;116076015;Germany; -2018-11-20T23:55:06Z;nathalia;3291.664;114978254;Germany; -2018-11-20T23:31:55Z;Ana;2007.186;115921297;Germany; -2018-11-20T23:26:00Z;Sandra;2016.964;115626782;Germany; -2018-11-20T23:14:49Z;Nathália;6474.745;115109405;Germany; -2018-11-20T22:52:35Z;Júlio Cesar;6410.996;114573717;Germany; -2018-11-20T22:51:55Z;Júlio Cesar;2357.872;114659356;Germany; -2018-11-20T22:51:49Z;Armando;8901.312;115254856;Germany; -2018-11-20T22:51:18Z;Júlio;6013.357;114845929;Germany; -2018-11-20T22:38:30Z;Sandra;10017.03;116261368;Germany; -2018-11-20T22:06:57Z;Sandra;1733.473;115517120;Germany; -2018-11-20T21:54:03Z;Júlio;10169.27;116080530;Germany; -2018-11-20T21:22:12Z;Armando;1096.011;115659344;Germany; -2018-11-20T21:05:45Z;Ana;1494.492;116214731;Germany; -2018-11-20T20:38:23Z;Nathália;231.2895;115051542;Germany; -2018-11-20T19:12:58Z;Sandra;11152.94;114725549;Germany; -2018-11-20T19:03:42Z;Júlio Cesar;2694.984;115521134;Germany; -2018-11-20T18:49:22Z;Ana;11178.66;115350978;Germany; -2018-11-20T18:10:39Z;Ana;6101.199;114986590;Germany; -2018-11-20T18:05:02Z;Júlio;8014.894;116218471;Germany; -2018-11-20T17:57:59Z;Júlio;4984.047;115729842;Germany; -2018-11-20T17:47:53Z;Sandra;286.6793;114448803;Germany; -2018-11-20T17:37:20Z;Júlio;8432.353;116147971;Germany; -2018-11-20T17:10:16Z;nathalia;10230.25;114232561;Germany; -2018-11-20T17:04:08Z;Eduardo;5135.494;115172991;Germany; -2018-11-20T17:01:58Z;Eduardo;2974.591;115684945;Germany; -2018-11-20T16:46:37Z;Eduardo;2391.068;115137870;Germany; -2018-11-20T16:38:24Z;Ana;363.3244;115921516;Germany; -2018-11-20T16:33:10Z;Eduardo;11408.38;115145118;Germany; -2018-11-20T16:30:16Z;Nathália;1075.831;116065733;Germany; -2018-12-22T15:57:46Z;nathalia;17520.19;115944774;Germany; -2018-11-20T15:54:34Z;Nathália;8958.454;115410883;Germany; -2018-11-20T15:53:01Z;nathalia;12377.84;114815806;Germany; -2018-11-20T15:27:21Z;Sandra;4762.193;115222797;Germany; -2018-11-20T15:13:52Z;Armando;1787.346;114273424;Germany; -2018-11-20T15:06:40Z;Sandra;10061.05;115884122;Germany; -2018-11-20T14:34:58Z;Júlio Cesar;2894.453;114671307;Germany; -2018-11-20T14:15:18Z;Sandra;938.795;115192172;Germany; -2018-11-20T14:06:15Z;Nathália;1994.062;114205608;Germany; -2018-11-20T13:58:37Z;Armando;7468.077;115292575;Germany; -2018-11-20T13:57:32Z;Nathália;7059.196;116094362;Germany; -2018-11-20T13:48:10Z;Eduardo;5393.954;116112162;Germany; -2018-11-20T13:37:02Z;Sandra;1483.36;115590166;Germany; -2018-11-20T13:25:34Z;Júlio Cesar;2515.123;114961280;Germany; -2018-11-20T13:14:19Z;Armando;10642.41;114773521;Germany; -2018-11-20T13:11:03Z;Nathália;2296.721;115628329;Germany; -2018-11-20T13:02:19Z;Júlio;629.6086;116006496;Germany; -2018-11-20T12:56:13Z;Júlio;7765.986;114236969;Germany; -2018-11-20T12:28:59Z;Sandra;696.5971;115445870;Germany; -2018-11-20T12:19:07Z;Nathália;2999.454;114895368;Germany; -2018-11-20T11:38:54Z;Nathália;5658.182;114483818;Germany; -2018-11-20T11:32:49Z;Júlio;3956.138;115355834;Germany; -2018-11-20T11:27:51Z;Sandra;376.3016;114667774;Germany; -2018-11-20T11:21:19Z;Júlio;4863.33;115334512;Germany; -2018-11-20T11:16:19Z;nathalia;1889.803;114892669;Germany; -2018-11-20T10:58:53Z;Júlio;1260.345;114836285;Germany; -2018-12-21T10:41:13Z;nathalia;16415.66;115645203;Germany; -2018-11-20T10:27:18Z;nathalia;3201.586;114714007;Germany; -2018-11-20T10:07:28Z;Ana;5920.261;115595465;Germany; -2018-11-20T10:00:56Z;Júlio Cesar;541.7855;114509809;Germany; -2018-11-20T09:57:36Z;Sandra;8106.588;114984608;Germany; -2018-11-20T09:39:17Z;Ana;1210.619;114740767;Germany; -2018-11-20T08:58:10Z;Eduardo;14442.33;115576032;Germany; -2018-11-20T08:46:23Z;Armando;1456.008;114769347;Germany; -2018-11-20T08:41:42Z;Eduardo;6856.369;115824604;Germany; -2018-11-20T07:51:27Z;Armando;6934.11;115714662;Germany; -2018-11-20T07:43:27Z;Sandra;4816.751;115424268;Germany; -2018-11-20T07:39:35Z;Júlio;279.5674;114524244;Germany; -2018-12-21T07:20:32Z;Júlio;17686.48;115294233;Germany; -2018-11-20T07:05:55Z;Armando;566.5899;116394945;Germany; -2018-11-20T06:59:33Z;Nathália;1356.023;116363040;Germany; -2018-11-20T06:55:11Z;Nathália;13801.6;116127097;Germany; -2018-11-20T06:51:31Z;Ana;1483.517;115969934;Germany; -2018-11-20T05:46:17Z;Júlio;8074.569;114265698;Germany; -2018-11-20T05:12:29Z;Eduardo;695.7244;115197954;Germany; -2018-11-20T04:52:31Z;Júlio Cesar;6753.734;114267303;Germany; -2018-11-20T04:51:00Z;Eduardo;4250.465;116272119;Germany; -2018-11-20T04:45:14Z;nathalia;5158.375;114865451;Germany; -2018-11-20T04:13:01Z;nathalia;3864.205;114919339;Germany; -2018-11-20T04:12:33Z;Ana;8673.318;116291356;Germany; -2018-11-20T03:44:24Z;Júlio;5766.504;115944015;Germany; -2018-11-20T03:43:48Z;Sandra;2539.497;115831724;Germany; -2018-11-20T03:36:39Z;Sandra;4193.869;115242754;Germany; -2018-11-20T03:32:16Z;Júlio Cesar;1377.703;114542507;Germany; -2018-11-20T03:06:49Z;Nathália;7353.179;116248784;Germany; -2018-11-20T02:45:42Z;nathalia;2689.631;115930845;Germany; -2018-11-20T02:44:55Z;Nathália;789.4383;115124482;Germany; -2018-11-20T02:35:28Z;Ana;2297.937;115757795;Germany; -2018-11-20T02:08:28Z;Júlio;10427.74;115349873;Germany; -2018-11-20T02:00:16Z;Armando;1355.445;116054416;Germany; -2018-11-20T01:47:24Z;nathalia;3306.686;115554320;Germany; -2018-11-20T01:41:44Z;Eduardo;6068.847;114699712;Germany; -2018-11-20T01:01:12Z;Júlio;9719.73;115419454;Germany; -2018-11-20T00:55:51Z;Júlio Cesar;1081.236;116056800;Germany; -2018-11-20T00:11:31Z;Sandra;8194.232;114509715;Germany; -2018-12-23T23:49:44Z;Eduardo;16982.81;115188827;Germany; -2018-11-19T23:37:40Z;Eduardo;392.62;114932303;Germany; -2018-11-19T23:10:13Z;Júlio Cesar;217.2376;115673579;Germany; -2018-11-19T22:49:56Z;nathalia;6992.008;115679450;Germany; -2018-11-19T22:40:04Z;Armando;4160.157;115586289;Germany; -2018-11-19T22:38:10Z;Ana;14424.35;115495864;Germany; -2018-11-19T21:57:49Z;Ana;2142.745;115330461;Germany; -2018-11-19T21:30:59Z;Ana;2366.778;115470763;Germany; -2018-11-19T21:06:25Z;Eduardo;1780.242;115535000;Germany; -2018-11-19T21:01:35Z;Armando;4964.563;114412401;Germany; -2018-11-19T20:57:19Z;Júlio;7674.665;114589711;Germany; -2018-11-19T20:54:58Z;Júlio Cesar;1873.907;116342731;Germany; -2018-11-19T20:48:35Z;nathalia;1710.401;115232214;Germany; -2018-11-19T20:35:24Z;nathalia;234.1241;114393300;Germany; -2018-11-19T20:27:32Z;Júlio Cesar;14136.25;115749379;Germany; -2018-11-19T20:16:45Z;Nathália;4732.799;116035685;Germany; -2018-11-19T20:02:55Z;Júlio;955.5635;116357459;Germany; -2018-11-19T20:02:11Z;Júlio Cesar;70.80179;115352674;Germany; -2018-11-19T18:59:18Z;Eduardo;4149.064;115718572;Germany; -2018-11-19T18:52:35Z;Nathália;3946.279;116121527;Germany; -2018-12-21T18:34:41Z;Eduardo;23683.45;115811800;Germany; -2018-11-19T18:10:56Z;nathalia;4967.499;114880672;Germany; -2018-11-19T17:42:32Z;Sandra;13491.2;114708633;Germany; -2018-11-19T17:41:03Z;Ana;7736.608;115729120;Germany; -2018-11-19T17:28:53Z;Ana;6993.587;114339168;Germany; -2018-11-19T17:22:29Z;nathalia;12186.2;115927140;Germany; -2018-11-19T16:44:57Z;Ana;928.3721;116304390;Germany; -2018-11-19T16:24:30Z;Ana;6984.538;114823878;Germany; -2018-11-19T16:22:05Z;Júlio Cesar;4579.04;115541407;Germany; -2018-11-19T16:02:20Z;Armando;272.6539;114649202;Germany; -2018-11-19T15:59:38Z;Sandra;4854.211;114704285;Germany; -2018-11-19T15:52:50Z;Armando;466.4895;114336049;Germany; -2018-11-19T15:37:33Z;nathalia;5504.869;115166576;Germany; -2018-12-23T15:37:26Z;Armando;18433.65;114850147;Germany; -2018-12-22T15:36:22Z;Eduardo;15784.13;115791086;Germany; -2018-11-19T15:24:48Z;Eduardo;78.91556;114781522;Germany; -2018-11-19T15:07:44Z;nathalia;4436.094;114360565;Germany; -2018-11-19T15:05:26Z;Sandra;11715.14;115695825;Germany; -2018-11-19T14:56:00Z;Armando;14124.09;114742829;Germany; -2018-11-19T14:11:52Z;Nathália;3849.09;115845122;Germany; -2018-11-19T14:11:22Z;Eduardo;585.0769;115756514;Germany; -2018-12-23T13:58:31Z;Sandra;19517.49;115056917;Germany; -2018-11-19T13:47:02Z;Nathália;6552.883;115067120;Germany; -2018-11-19T13:35:05Z;Eduardo;1308.548;116174625;Germany; -2018-11-19T13:35:02Z;Júlio;9832.12;115839741;Germany; -2018-11-19T13:35:00Z;Armando;5921.678;114245879;Germany; -2018-11-19T13:32:34Z;Sandra;687.1385;114592383;Germany; -2018-11-19T13:30:02Z;Nathália;4116.845;114720290;Germany; -2018-12-23T13:29:04Z;Júlio;15613.52;114836120;Germany; -2018-11-19T13:21:53Z;Sandra;8267.76;114270374;Germany; -2018-11-19T13:20:00Z;Júlio;6162.435;116154488;Germany; -2018-11-19T13:15:53Z;Ana;119.21;115196782;Germany; -2018-11-19T13:02:18Z;Sandra;896.8501;115686764;Germany; -2018-11-19T13:01:29Z;nathalia;12581.82;114597641;Germany; -2018-11-19T12:56:35Z;Nathália;1344.536;116061130;Germany; -2018-11-19T12:53:38Z;Ana;49.11065;116231029;Germany; -2018-11-19T12:28:06Z;nathalia;4123.922;115493930;Germany; -2018-11-19T12:22:36Z;Armando;372.1112;115879991;Germany; -2018-11-19T12:12:40Z;Armando;10664.52;115362945;Germany; -2018-11-19T11:05:42Z;Sandra;1478.109;115482672;Germany; -2018-11-19T10:32:09Z;nathalia;197.1881;116195096;Germany; -2018-12-21T10:12:57Z;nathalia;20179.08;115689706;Germany; -2018-11-19T10:00:48Z;Nathália;3979.258;115130914;Germany; -2018-12-23T09:57:50Z;Ana;16977.99;116150669;Germany; -2018-11-19T09:55:29Z;Eduardo;5829.351;114764117;Germany; -2018-11-19T09:44:41Z;Júlio Cesar;7459.197;115140193;Germany; -2018-11-19T09:43:36Z;Júlio Cesar;7040.336;115367069;Germany; -2018-11-19T09:33:21Z;Armando;6358.772;114219016;Germany; -2018-11-19T09:22:55Z;Armando;1160.68;115942239;Germany; -2018-11-19T09:13:33Z;Júlio;2820.376;114540185;Germany; -2018-11-19T09:10:01Z;Armando;299.1398;114966119;Germany; -2018-11-19T08:53:13Z;Nathália;1083.162;115041616;Germany; -2018-11-19T08:51:45Z;Sandra;2280.657;115188515;Germany; -2018-11-19T08:50:39Z;Ana;2738.889;116185056;Germany; -2018-11-19T08:42:03Z;Sandra;12010.37;114683312;Germany; -2018-11-19T08:19:29Z;nathalia;14090.53;116043686;Germany; -2018-11-19T08:17:00Z;Ana;13108.97;115752542;Germany; -2018-11-19T08:08:24Z;Armando;849.2241;115215328;Germany; -2018-11-19T08:03:14Z;nathalia;6712.436;114441699;Germany; -2018-11-19T07:51:56Z;Eduardo;3773.592;114537227;Germany; -2018-11-19T07:23:44Z;Ana;2842.405;115669457;Germany; -2018-12-23T07:05:01Z;Sandra;16887.26;114304476;Germany; -2018-11-19T06:30:28Z;Armando;1243.997;114627436;Germany; -2018-11-19T06:06:02Z;nathalia;6448.54;115456678;Germany; -2018-12-21T06:00:15Z;Eduardo;15406.87;115421493;Germany; -2018-11-19T05:54:49Z;Júlio Cesar;3109.416;114916438;Germany; -2018-11-19T05:45:59Z;nathalia;4711.476;114764160;Germany; -2018-11-19T05:33:26Z;nathalia;3720.876;115894089;Germany; -2018-11-19T05:24:33Z;Nathália;418.6202;116113831;Germany; -2018-11-19T05:20:57Z;Armando;7308.964;114393396;Germany; -2018-11-19T03:55:50Z;nathalia;8339.607;114524600;Germany; -2018-11-19T03:49:12Z;Eduardo;1224.548;115280183;Germany; -2018-11-19T03:28:43Z;Júlio Cesar;4128.864;115250516;Germany; -2018-11-19T03:17:40Z;nathalia;1831.197;114252764;Germany; -2018-11-19T03:17:32Z;Júlio;9581.241;114348088;Germany; -2018-11-19T03:01:01Z;Armando;3459.623;115103970;Germany; -2018-11-19T02:35:20Z;Sandra;6234.324;114257384;Germany; -2018-11-19T02:29:06Z;Armando;7771.192;114644643;Germany; -2018-11-19T01:26:47Z;nathalia;9409.179;115225427;Germany; -2018-11-19T01:22:29Z;Júlio Cesar;446.3815;114343996;Germany; -2018-11-19T01:09:26Z;nathalia;14289.12;114803083;Germany; -2018-11-19T00:50:15Z;Eduardo;12753.24;115302728;Germany; -2018-12-22T00:32:34Z;Ana;15000.67;115701372;Germany; -2018-11-19T00:28:43Z;Eduardo;8297.62;115414739;Germany; -2018-11-18T23:05:56Z;Ana;4287.21;114407876;Germany; -2018-11-18T22:44:16Z;Sandra;6818.724;114363880;Germany; -2018-11-18T22:44:11Z;Nathália;4604.691;114252111;Germany; -2018-11-18T22:43:47Z;Eduardo;2956.422;114346289;Germany; -2018-11-18T22:38:01Z;Eduardo;9529.053;114511336;Germany; -2018-11-18T22:37:23Z;Sandra;2057.583;114983263;Germany; -2018-11-18T22:18:52Z;Nathália;11846.26;115874056;Germany; -2018-11-18T22:09:09Z;Júlio;8301.584;115555494;Germany; -2018-11-18T21:56:44Z;Eduardo;5531.976;114974810;Germany; -2018-11-18T21:56:19Z;Nathália;1957.972;114958603;Germany; -2018-11-18T21:49:10Z;Ana;2372.736;115034763;Germany; -2018-12-21T21:48:49Z;Júlio Cesar;19019.74;114552424;Germany; -2018-11-18T21:43:35Z;nathalia;13595.79;114447973;Germany; -2018-11-18T21:40:44Z;Armando;3515.353;116306302;Germany; -2018-11-18T20:35:24Z;nathalia;415.1189;116049912;Germany; -2018-11-18T18:41:04Z;Júlio Cesar;8237.129;115064794;Germany; -2018-11-18T18:32:59Z;nathalia;11551.78;115169730;Germany; -2018-11-18T18:18:55Z;Júlio;1929.84;115558816;Germany; -2018-12-23T17:59:44Z;Sandra;16081.24;114979909;Germany; -2018-11-18T17:47:19Z;Nathália;769.9918;115723163;Germany; -2018-11-18T17:35:10Z;Júlio;3829.419;115205026;Germany; -2018-12-21T17:21:04Z;Sandra;22459.53;115986384;Germany; -2018-12-23T17:14:16Z;Sandra;15761.96;114372775;Germany; -2018-11-18T17:01:02Z;Armando;421.755;116216977;Germany; -2018-11-18T16:45:31Z;Ana;3330.218;114335960;Germany; -2018-12-22T16:07:47Z;Nathália;16371.63;116005787;Germany; -2018-11-18T15:49:13Z;Eduardo;245.3182;114870347;Germany; -2018-11-18T15:36:52Z;Júlio Cesar;13869.35;114207477;Germany; -2018-11-18T15:14:16Z;nathalia;1106.546;115362801;Germany; -2018-11-18T14:57:56Z;nathalia;6577.837;114370079;Germany; -2018-11-18T14:47:49Z;Armando;3352.721;114326626;Germany; -2018-11-18T13:49:09Z;nathalia;1954.816;116019841;Germany; -2018-11-18T13:48:52Z;nathalia;8879.223;114441477;Germany; -2018-11-18T13:41:43Z;Sandra;5722.153;114933459;Germany; -2018-11-18T13:11:15Z;Armando;14213.17;115427026;Germany; -2018-11-18T12:33:56Z;Júlio Cesar;3791.512;115048260;Germany; -2018-11-18T12:27:39Z;Eduardo;13027.29;114277403;Germany; -2018-12-22T12:23:52Z;Nathália;25572.09;115049528;Germany; -2018-11-18T12:17:33Z;Júlio Cesar;5089.261;115613638;Germany; -2018-11-18T12:01:23Z;Eduardo;117.4554;115596219;Germany; -2018-12-22T11:36:57Z;Armando;15318.86;115870657;Germany; -2018-11-18T11:25:03Z;Nathália;4755.349;115936299;Germany; -2018-11-18T10:52:22Z;nathalia;132.9423;116290649;Germany; -2018-11-18T10:46:32Z;Ana;2463.747;116209367;Germany; -2018-11-18T10:30:37Z;Sandra;2614.845;116317414;Germany; -2018-11-18T10:18:37Z;Júlio;351.2777;115366864;Germany; -2018-11-18T10:15:51Z;Nathália;2867.199;115145635;Germany; -2018-11-18T09:49:24Z;Júlio;2903.228;115928420;Germany; -2018-11-18T09:30:54Z;Ana;14382.2;115426125;Germany; -2018-11-18T09:16:07Z;Ana;1466.078;116221168;Germany; -2018-11-18T08:57:58Z;Eduardo;3990.86;114353812;Germany; -2018-11-18T08:44:28Z;Armando;5033.177;114833454;Germany; -2018-11-18T08:25:42Z;Eduardo;482.3575;115584132;Germany; -2018-11-18T07:58:35Z;Armando;1038.226;114966556;Germany; -2018-11-18T07:39:09Z;Ana;8233.055;114234465;Germany; -2018-11-18T07:21:28Z;Nathália;9311.927;115694107;Germany; -2018-11-18T07:11:06Z;Sandra;1025.754;114944562;Germany; -2018-11-18T07:02:56Z;Júlio;513.5844;116026913;Germany; -2018-11-18T06:53:11Z;Nathália;1223.608;116109066;Germany; -2018-12-22T06:21:50Z;Eduardo;16190.62;115793519;Germany; -2018-11-18T06:06:39Z;nathalia;6805.581;115667057;Germany; -2018-11-18T05:32:26Z;Eduardo;2655.102;115515348;Germany; -2018-11-18T05:15:32Z;Sandra;4209.568;115767550;Germany; -2018-11-18T03:57:32Z;Ana;11563.09;115814885;Germany; -2018-11-18T03:06:57Z;Júlio Cesar;2049.991;114484018;Germany; -2018-11-18T02:43:05Z;Eduardo;8322.59;115551197;Germany; -2018-11-18T02:34:19Z;Júlio Cesar;8247.848;116263239;Germany; -2018-11-18T02:30:19Z;Sandra;7021.883;115365925;Germany; -2018-11-18T02:12:59Z;Eduardo;1053.88;115809530;Germany; -2018-11-18T01:30:03Z;Júlio Cesar;4973.359;115776157;Germany; -2018-11-18T01:07:43Z;Armando;6150.995;115136658;Germany; -2018-11-18T01:03:37Z;Júlio;2074.387;115269885;Germany; -2018-11-18T01:01:45Z;nathalia;9879.698;114938291;Germany; -2018-11-18T00:52:00Z;Júlio;14910.49;114938341;Germany; -2018-11-18T00:36:15Z;Júlio Cesar;7918.685;116196296;Germany; -2018-11-18T00:35:07Z;Júlio Cesar;1026.635;115251336;Germany; -2018-11-18T00:19:05Z;Ana;1594.116;115204873;Germany; -2018-11-18T00:17:16Z;Júlio Cesar;14566.73;114601451;Germany; -2018-11-18T00:16:03Z;Júlio;11880.06;115344928;Germany; -2018-11-18T00:11:23Z;Nathália;1972.134;115004320;Germany; -2018-11-17T23:43:18Z;Sandra;2148.889;114563742;Germany; -2018-11-17T22:35:14Z;nathalia;1842.76;115895243;Germany; -2018-11-17T22:25:02Z;Armando;673.458;114253186;Germany; -2018-11-17T22:22:58Z;Júlio Cesar;211.9209;115716108;Germany; -2018-11-17T21:49:29Z;Júlio;8993.969;115726736;Germany; -2018-11-17T21:47:23Z;Eduardo;728.8835;115647677;Germany; -2018-11-17T21:07:02Z;Júlio;13469.83;114466773;Germany; -2018-11-17T20:53:20Z;Eduardo;1057.546;115387529;Germany; -2018-11-17T20:45:28Z;Júlio Cesar;117.294;114705604;Germany; -2018-11-17T20:23:24Z;Sandra;6683.513;115012882;Germany; -2018-11-17T20:21:48Z;Sandra;7550.059;114825865;Germany; -2018-11-17T20:20:24Z;Nathália;4926.238;115772523;Germany; -2018-12-23T20:17:38Z;Júlio Cesar;16601.17;115054244;Germany; -2018-11-17T19:57:52Z;Nathália;11275.98;114396593;Germany; -2018-11-17T19:50:55Z;Júlio Cesar;764.7001;116146796;Germany; -2018-11-17T19:48:15Z;Sandra;385.852;114470306;Germany; -2018-11-17T19:22:33Z;Sandra;2851.444;115770562;Germany; -2018-11-17T19:02:13Z;Júlio Cesar;1050.76;115992490;Germany; -2018-11-17T18:55:12Z;nathalia;2968.088;114415602;Germany; -2018-11-17T18:18:20Z;Sandra;1997.215;115609613;Germany; -2018-11-17T18:10:24Z;Júlio Cesar;7475.208;115496397;Germany; -2018-11-17T18:10:14Z;Eduardo;1307.673;115660443;Germany; -2018-11-17T18:04:27Z;Sandra;3540.068;115147619;Germany; -2018-11-17T17:53:55Z;Ana;1920.067;115883296;Germany; -2018-11-17T17:18:10Z;Ana;1410.451;115480991;Germany; -2018-11-17T16:51:45Z;Eduardo;3648.766;116292629;Germany; -2018-11-17T16:30:23Z;Júlio Cesar;483.3882;116256739;Germany; -2018-11-17T16:27:07Z;Sandra;1217.562;114538031;Germany; -2018-11-17T15:55:19Z;nathalia;5797.006;114385539;Germany; -2018-11-17T15:36:19Z;Ana;12924.26;114865282;Germany; -2018-11-17T15:33:49Z;Júlio;5071.296;115988676;Germany; -2018-11-17T15:03:29Z;Sandra;7559.418;114880104;Germany; -2018-11-17T14:59:14Z;Ana;2472.853;115552224;Germany; -2018-11-17T14:29:10Z;Eduardo;10763.07;115169910;Germany; -2018-11-17T14:01:04Z;Sandra;10248.85;114496066;Germany; -2018-11-17T13:06:02Z;nathalia;1250.44;114278568;Germany; -2018-11-17T12:55:14Z;Sandra;3512.515;116394317;Germany; -2018-11-17T12:49:15Z;Júlio Cesar;6977.764;115097758;Germany; -2018-11-17T12:40:33Z;Eduardo;13539.16;115219048;Germany; -2018-11-17T12:29:25Z;Nathália;8058.057;115138750;Germany; -2018-11-17T12:05:57Z;Eduardo;9948.394;116072098;Germany; -2018-12-21T11:25:44Z;Júlio;27625.27;116064051;Germany; -2018-11-17T11:06:06Z;Eduardo;1707.883;115691669;Germany; -2018-11-17T10:50:15Z;Eduardo;13371.49;114506765;Germany; -2018-11-17T10:34:45Z;nathalia;844.83;115756725;Germany; -2018-12-21T10:33:57Z;Ana;17728.23;116080795;Germany; -2018-11-17T10:23:09Z;Sandra;6301.211;114832034;Germany; -2018-11-17T09:53:16Z;Eduardo;121.5288;115424545;Germany; -2018-11-17T09:41:37Z;Eduardo;3389.631;114930869;Germany; -2018-11-17T09:31:16Z;nathalia;134.6918;115083398;Germany; -2018-11-17T09:30:08Z;Armando;798.0029;114749239;Germany; -2018-11-17T09:18:07Z;Armando;5423.42;115025441;Germany; -2018-11-17T08:53:02Z;Nathália;5431.501;114837036;Germany; -2018-11-17T08:32:44Z;Sandra;6454.697;114735299;Germany; -2018-11-17T08:26:29Z;Sandra;13595.87;114608225;Germany; -2018-11-17T08:07:04Z;nathalia;3274.752;114963710;Germany; -2018-11-17T07:58:28Z;nathalia;1820.501;115283274;Germany; -2018-11-17T07:43:06Z;Armando;907.5617;115790437;Germany; -2018-11-17T07:37:19Z;Sandra;12174.08;115818531;Germany; -2018-11-17T07:36:14Z;Nathália;960.7618;116121794;Germany; -2018-11-17T07:11:44Z;Ana;9256.257;114398091;Germany; -2018-11-17T06:19:09Z;Nathália;14027.37;115187256;Germany; -2018-11-17T05:31:10Z;Armando;4801.895;115638879;Germany; -2018-11-17T05:16:53Z;Ana;13554.62;115207566;Germany; -2018-11-17T04:32:42Z;nathalia;2716.493;115006040;Germany; -2018-11-17T04:08:05Z;Júlio;5321.126;116243989;Germany; -2018-12-22T04:06:34Z;Nathália;24107.88;116017852;Germany; -2018-11-17T03:56:46Z;Júlio Cesar;6452.529;114669718;Germany; -2018-11-17T03:16:27Z;Sandra;245.1944;115095576;Germany; -2018-11-17T02:49:23Z;nathalia;9487.075;114889577;Germany; -2018-11-17T02:43:57Z;Júlio Cesar;8041.911;114721692;Germany; -2018-11-17T02:36:56Z;Júlio;9495.628;115330498;Germany; -2018-11-17T02:19:55Z;Armando;5774.867;115491450;Germany; -2018-11-17T02:11:08Z;Armando;5296.843;116279195;Germany; -2018-11-17T02:02:38Z;Ana;1010.793;115961431;Germany; -2018-11-17T01:52:04Z;Nathália;13945.69;115443378;Germany; -2018-11-17T01:40:37Z;Ana;7548.984;115005957;Germany; -2018-11-17T01:39:51Z;Júlio;5776.948;116278970;Germany; -2018-11-17T01:37:37Z;Ana;6973.396;114728253;Germany; -2018-11-17T01:30:04Z;Júlio;8564.321;114356675;Germany; -2018-11-17T01:18:23Z;nathalia;2850.175;115827342;Germany; -2018-12-22T00:41:04Z;Armando;16790.54;116022063;Germany; -2018-11-17T00:39:34Z;Ana;1927.645;114444100;Germany; -2018-11-17T00:38:27Z;Júlio Cesar;3138.342;115522871;Germany; -2018-12-23T00:36:13Z;nathalia;18314.03;114557273;Germany; -2018-11-17T00:26:49Z;Nathália;4521.855;114809205;Germany; -2018-11-16T23:57:00Z;Júlio Cesar;9513.641;115876213;Germany; -2018-11-16T23:46:51Z;Júlio Cesar;6386.356;115377725;Germany; -2018-12-22T23:39:30Z;Nathália;19036.03;114681041;Germany; -2018-11-16T21:38:40Z;Júlio Cesar;13283.04;116285057;Germany; -2018-11-16T21:16:28Z;Júlio Cesar;6600.162;115611394;Germany; -2018-11-16T21:04:00Z;Nathália;5314.548;115674405;Germany; -2018-11-16T20:24:40Z;Júlio Cesar;10597.45;115028256;Germany; -2018-11-16T20:08:57Z;Sandra;1954.768;115979815;Germany; -2018-11-16T19:50:53Z;nathalia;5663.091;114957204;Germany; -2018-11-16T19:50:09Z;Sandra;1228.787;115089001;Germany; -2018-11-16T19:46:50Z;Ana;5923.828;116248748;Germany; -2018-11-16T19:09:37Z;Júlio Cesar;4861.472;115683738;Germany; -2018-11-16T19:01:15Z;nathalia;6595.348;115094514;Germany; -2018-11-16T18:45:08Z;nathalia;11489.15;115611004;Germany; -2018-11-16T18:38:45Z;Júlio;2573.084;114508338;Germany; -2018-11-16T18:28:57Z;Júlio Cesar;14092.86;115154045;Germany; -2018-11-16T18:28:07Z;Sandra;2051.357;115395552;Germany; -2018-11-16T18:22:53Z;Sandra;1979.847;115811875;Germany; -2018-11-16T18:11:18Z;Ana;2856.559;115212905;Germany; -2018-11-16T17:57:03Z;Eduardo;4563.571;114790703;Germany; -2018-11-16T17:41:47Z;nathalia;8107.292;114395767;Germany; -2018-11-16T16:58:31Z;Júlio Cesar;11692.64;115115310;Germany; -2018-11-16T16:37:33Z;Nathália;9895.11;115253489;Germany; -2018-11-16T16:33:43Z;Nathália;9591.618;115223824;Germany; -2018-11-16T16:20:19Z;Júlio;10484.54;115768146;Germany; -2018-11-16T15:47:54Z;Armando;1804.665;115749538;Germany; -2018-12-23T15:29:54Z;Ana;18532.01;115710458;Germany; -2018-11-16T15:24:12Z;Júlio Cesar;4585.957;114229303;Germany; -2018-11-16T15:23:12Z;Ana;56.47365;115875273;Germany; -2018-11-16T15:21:33Z;Eduardo;5844.015;115832631;Germany; -2018-11-16T15:17:06Z;Sandra;8600.831;114351686;Germany; -2018-11-16T15:04:33Z;Júlio;3511.154;114723316;Germany; -2018-11-16T15:01:52Z;Armando;6755.56;115428623;Germany; -2018-12-21T14:41:18Z;Nathália;24155.6;114818476;Germany; -2018-11-16T14:28:07Z;Júlio;15.86144;114733441;Germany; -2018-11-16T14:24:02Z;Armando;696.8099;114764267;Germany; -2018-11-16T14:24:00Z;Júlio Cesar;4291.626;114241893;Germany; -2018-11-16T14:17:24Z;Armando;1177.763;114538120;Germany; -2018-11-16T14:12:38Z;Júlio Cesar;2126.124;115112810;Germany; -2018-11-16T14:11:02Z;Armando;91.98039;114690469;Germany; -2018-11-16T13:58:39Z;Sandra;7507.086;115279463;Germany; -2018-11-16T13:52:32Z;Júlio Cesar;7303.42;115885579;Germany; -2018-11-16T13:42:19Z;Sandra;448.7458;115184946;Germany; -2018-11-16T13:41:25Z;Ana;2947.758;116114940;Germany; -2018-11-16T13:15:19Z;Nathália;8413.523;114814476;Germany; -2018-11-16T13:12:59Z;Júlio;6042.354;115866418;Germany; -2018-11-16T13:01:26Z;Sandra;8806.965;114571064;Germany; -2018-11-16T12:59:38Z;Nathália;2359.534;115446206;Germany; -2018-11-16T12:38:03Z;Nathália;2970.346;115702368;Germany; -2018-11-16T12:29:15Z;Júlio Cesar;888.7759;115152404;Germany; -2018-11-16T12:27:27Z;Ana;10732.67;115589969;Germany; -2018-11-16T12:14:45Z;Sandra;636.3141;116369439;Germany; -2018-11-16T11:38:10Z;nathalia;10589.96;114416530;Germany; -2018-11-16T11:21:57Z;Júlio;11160.87;116210206;Germany; -2018-11-16T11:07:23Z;Eduardo;1480.718;115919432;Germany; -2018-11-16T11:05:51Z;Júlio;6537.492;114573284;Germany; -2018-11-16T10:45:10Z;Júlio Cesar;1572.285;114305688;Germany; -2018-11-16T10:29:42Z;nathalia;2895.944;115042031;Germany; -2018-11-16T10:26:54Z;Ana;1015.219;116006415;Germany; -2018-11-16T09:41:15Z;Nathália;8790.178;114515597;Germany; -2018-11-16T08:59:07Z;Sandra;3.923598;114979133;Germany; -2018-11-16T08:56:23Z;Júlio Cesar;9096.229;115997548;Germany; -2018-12-22T08:53:28Z;Ana;22140.08;116365474;Germany; -2018-11-16T08:45:43Z;Júlio Cesar;88.56061;114249423;Germany; -2018-11-16T08:20:01Z;Sandra;8496.837;116118136;Germany; -2018-11-16T08:00:05Z;Nathália;4536.088;116229563;Germany; -2018-12-22T07:41:17Z;Armando;24780.2;115482281;Germany; -2018-11-16T07:28:58Z;Júlio;3168.337;115032840;Germany; -2018-11-16T06:54:16Z;Júlio;10192.15;114805090;Germany; -2018-11-16T06:44:46Z;Júlio Cesar;11837.44;115200238;Germany; -2018-11-16T06:30:00Z;Armando;6501.559;114816575;Germany; -2018-11-16T05:49:24Z;Armando;8679.735;116218049;Germany; -2018-11-16T05:22:23Z;Eduardo;3103.07;116026974;Germany; -2018-11-16T04:58:36Z;Eduardo;4316.695;114222872;Germany; -2018-11-16T04:54:08Z;Ana;4749.517;116049752;Germany; -2018-11-16T04:49:56Z;nathalia;2412.199;115197368;Germany; -2018-12-21T04:10:09Z;Ana;21901.98;115653639;Germany; -2018-11-16T03:44:13Z;Eduardo;5808.917;115979656;Germany; -2018-11-16T03:14:18Z;Eduardo;549.9599;114859758;Germany; -2018-11-16T03:10:09Z;Júlio;1658.65;114600381;Germany; -2018-11-16T03:09:29Z;Ana;6350.586;115036199;Germany; -2018-11-16T03:07:26Z;Armando;5328.971;116294611;Germany; -2018-12-22T02:49:52Z;Júlio;20255.84;115638396;Germany; -2018-11-16T02:23:58Z;Júlio Cesar;6576.034;114439375;Germany; -2018-11-16T02:21:09Z;Eduardo;1141.53;114341366;Germany; -2018-11-16T02:11:57Z;Nathália;11241.47;115495770;Germany; -2018-11-16T02:01:28Z;Armando;209.3923;115390991;Germany; -2018-11-16T01:57:16Z;Júlio;355.655;114774056;Germany; -2018-11-16T01:51:41Z;Armando;5878.6;116261788;Germany; -2018-11-16T01:48:56Z;Sandra;1020.755;114412802;Germany; -2018-11-16T01:33:38Z;nathalia;3595.866;115644175;Germany; -2018-11-16T01:31:01Z;Ana;734.1556;114695448;Germany; -2018-11-16T01:18:53Z;Armando;361.849;115242664;Germany; -2018-11-16T01:15:15Z;nathalia;3261.314;114361524;Germany; -2018-11-16T00:51:25Z;nathalia;293.5474;114765472;Germany; -2018-11-16T00:44:57Z;Nathália;2904.092;115048668;Germany; -2018-11-16T00:43:35Z;Armando;2922.498;115389707;Germany; -2018-11-16T00:36:32Z;Júlio;5207.491;116157188;Germany; -2018-11-16T00:29:08Z;Sandra;4242.4;115516414;Germany; -2018-11-16T00:24:18Z;nathalia;7123.695;115345646;Germany; -2018-11-15T23:58:07Z;Eduardo;6337.908;115183084;Germany; -2018-11-15T23:37:56Z;nathalia;141.3026;114964575;Germany; -2018-11-15T23:16:21Z;Júlio;5705.202;115228904;Germany; -2018-11-15T22:41:03Z;Ana;1306.355;115468255;Germany; -2018-11-15T22:38:58Z;Armando;4925.718;116369774;Germany; -2018-11-15T22:24:25Z;Eduardo;2265.683;114358249;Germany; -2018-11-15T22:16:24Z;Sandra;14774.18;114275924;Germany; -2018-11-15T21:58:46Z;nathalia;2746.175;114362054;Germany; -2018-11-15T21:42:52Z;Eduardo;6815.031;114745831;Germany; -2018-11-15T20:34:52Z;Júlio Cesar;1514.392;115879987;Germany; -2018-11-15T20:32:57Z;Ana;2999.275;115938755;Germany; -2018-11-15T20:21:14Z;Júlio Cesar;6420.678;114665826;Germany; -2018-11-15T20:19:10Z;Júlio Cesar;368.0483;115847743;Germany; -2018-11-15T20:02:39Z;Armando;1667.978;114852464;Germany; -2018-11-15T19:55:06Z;nathalia;1694.073;114394748;Germany; -2018-11-15T19:46:29Z;Nathália;1757.56;114384543;Germany; -2018-11-15T19:39:40Z;Armando;5631.807;114808567;Germany; -2018-11-15T19:31:46Z;Ana;3569.197;115608990;Germany; -2018-12-21T18:23:50Z;Júlio;17996.9;115313307;Germany; -2018-11-15T18:15:36Z;Eduardo;7983.551;116042531;Germany; -2018-11-15T18:11:09Z;nathalia;3402.473;115533450;Germany; -2018-11-15T17:44:54Z;Ana;5032.043;115165048;Germany; -2018-11-15T17:17:03Z;nathalia;1762.966;114424202;Germany; -2018-11-15T17:05:11Z;Júlio Cesar;7824.288;114263136;Germany; -2018-11-15T17:03:38Z;Nathália;3243.889;115159296;Germany; -2018-11-15T16:29:35Z;Armando;537.7509;115589126;Germany; -2018-11-15T16:05:45Z;Júlio Cesar;4728.216;115923395;Germany; -2018-11-15T16:02:40Z;Júlio;1385.168;115114758;Germany; -2018-11-15T15:50:53Z;Júlio Cesar;3467.393;115980418;Germany; -2018-11-15T15:41:41Z;nathalia;1110.513;114577432;Germany; -2018-12-22T15:31:37Z;nathalia;26700.81;116109390;Germany; -2018-11-15T15:29:11Z;Sandra;3699.65;115424895;Germany; -2018-11-15T15:25:05Z;Sandra;5816.625;114899531;Germany; -2018-11-15T15:11:55Z;Sandra;5500.038;114889858;Germany; -2018-11-15T15:00:59Z;Armando;13411.4;115483176;Germany; -2018-11-15T14:56:25Z;Júlio Cesar;3389.526;114554984;Germany; -2018-11-15T14:55:59Z;Eduardo;1755.994;115130142;Germany; -2018-11-15T14:37:29Z;Sandra;4931.562;115876310;Germany; -2018-11-15T14:21:03Z;Júlio;9816.759;115707021;Germany; -2018-11-15T14:13:36Z;Sandra;475.5921;115470009;Germany; -2018-11-15T14:08:22Z;Júlio;3235.139;116163435;Germany; -2018-11-15T14:04:26Z;Nathália;743.4785;114545725;Germany; -2018-11-15T13:16:09Z;nathalia;12762.97;116372968;Germany; -2018-11-15T12:34:45Z;Nathália;2066.063;115095947;Germany; -2018-11-15T12:10:08Z;Sandra;56.16124;115363592;Germany; -2018-11-15T11:11:57Z;Armando;8639.944;114618574;Germany; -2018-11-15T10:24:58Z;Nathália;10913.33;116074575;Germany; -2018-11-15T10:17:37Z;Ana;1262.274;114700588;Germany; -2018-11-15T09:54:04Z;Júlio;6146.49;116114297;Germany; -2018-11-15T09:43:04Z;nathalia;1141.82;114454236;Germany; -2018-11-15T09:30:43Z;Armando;2909.574;114427234;Germany; -2018-11-15T09:29:15Z;Sandra;3838.917;114794878;Germany; -2018-11-15T09:26:36Z;Ana;2540.928;115675417;Germany; -2018-11-15T09:14:44Z;Eduardo;11749.5;115773048;Germany; -2018-11-15T08:27:57Z;Nathália;3315.168;115149240;Germany; -2018-11-15T07:53:52Z;Armando;660.223;115373224;Germany; -2018-12-22T07:52:53Z;Sandra;23286.3;114691955;Germany; -2018-11-15T06:44:15Z;Sandra;5672.536;115581656;Germany; -2018-11-15T06:36:34Z;Júlio Cesar;9002.27;114227247;Germany; -2018-11-15T06:21:34Z;Armando;2848.649;115134867;Germany; -2018-11-15T06:13:35Z;Armando;621.5813;115858608;Germany; -2018-11-15T05:57:29Z;Nathália;10256.37;114430118;Germany; -2018-11-15T04:48:14Z;Ana;5719.896;115941094;Germany; -2018-11-15T04:47:55Z;Armando;2105.282;115414703;Germany; -2018-11-15T04:45:58Z;Eduardo;14082.57;115533601;Germany; -2018-11-15T04:36:10Z;Eduardo;4909.799;115057326;Germany; -2018-11-15T04:17:00Z;Ana;2299.091;116059693;Germany; -2018-11-15T03:55:55Z;Sandra;6420.889;114689990;Germany; -2018-11-15T03:53:06Z;Ana;1176.88;115436199;Germany; -2018-11-15T03:52:41Z;nathalia;970.7286;115641655;Germany; -2018-11-15T03:43:12Z;nathalia;7949.26;115956109;Germany; -2018-11-15T03:19:29Z;Júlio Cesar;961.5824;114702873;Germany; -2018-11-15T03:18:27Z;nathalia;6096.433;115626070;Germany; -2018-11-15T02:54:50Z;Júlio;809.4191;115997381;Germany; -2018-11-15T02:31:29Z;Sandra;7249.504;116307640;Germany; -2018-11-15T02:30:54Z;Ana;9533.62;115230204;Germany; -2018-12-22T02:08:21Z;Júlio;19616.85;114415815;Germany; -2018-11-15T02:02:55Z;Nathália;5957.934;114552799;Germany; -2018-12-21T01:25:13Z;Júlio;17974.57;115895795;Germany; -2018-11-15T01:23:31Z;Armando;6256.952;114333803;Germany; -2018-11-15T01:03:56Z;Ana;12527.03;115599003;Germany; -2018-11-15T00:27:04Z;Ana;8630.76;114236813;Germany; -2018-11-15T00:22:00Z;Nathália;1957.769;114749678;Germany; -2018-12-22T00:21:20Z;nathalia;16879.15;115079184;Germany; -2018-11-15T00:03:02Z;nathalia;3891.035;116358447;Germany; -2018-11-15T00:02:19Z;Nathália;9883.204;115721598;Germany; -2018-11-14T23:59:24Z;Júlio Cesar;7866.679;115183460;Germany; -2018-11-14T23:59:03Z;Eduardo;897.7832;116062100;Germany; -2018-11-14T23:57:15Z;Júlio Cesar;11987.92;114654013;Germany; -2018-11-14T22:39:37Z;Júlio;8141.397;114409923;Germany; -2018-11-14T21:17:29Z;Sandra;6035.007;115585559;Germany; -2018-11-14T20:49:40Z;nathalia;1415.533;115121698;Germany; -2018-11-14T20:49:29Z;Ana;10800.92;114393448;Germany; -2018-11-14T20:34:55Z;Júlio Cesar;3266.221;115197651;Germany; -2018-11-14T20:32:22Z;Armando;294.7183;114216584;Germany; -2018-11-14T20:30:41Z;nathalia;9234.933;116277385;Germany; -2018-11-14T20:29:12Z;Nathália;6624.888;115607789;Germany; -2018-11-14T20:18:57Z;Sandra;1883.802;114288506;Germany; -2018-11-14T19:56:39Z;Eduardo;3323.475;116063758;Germany; -2018-11-14T19:36:34Z;Armando;8092.102;115088577;Germany; -2018-11-14T19:34:19Z;Armando;2404.848;114817481;Germany; -2018-11-14T18:48:28Z;nathalia;386.6605;116136273;Germany; -2018-12-21T18:43:10Z;Sandra;16633.26;114646925;Germany; -2018-11-14T18:42:22Z;Ana;3552.853;115853267;Germany; -2018-11-14T18:22:48Z;Júlio;338.2286;115486890;Germany; -2018-12-21T18:09:30Z;Ana;18170.35;114293362;Germany; -2018-11-14T17:51:28Z;Júlio Cesar;103.5398;116263452;Germany; -2018-12-23T17:48:23Z;nathalia;15255.64;115476749;Germany; -2018-11-14T17:21:45Z;Armando;745.0749;116273956;Germany; -2018-11-14T16:44:57Z;nathalia;1714.325;115097533;Germany; -2018-11-14T16:29:58Z;Júlio Cesar;2660.625;114469739;Germany; -2018-11-14T15:39:36Z;Eduardo;395.4616;114980042;Germany; -2018-11-14T15:17:22Z;Armando;12294.12;114936719;Germany; -2018-12-21T15:16:55Z;Sandra;17241.07;114410732;Germany; -2018-11-14T14:58:35Z;Júlio;5349.563;115372027;Germany; -2018-12-23T14:57:46Z;Ana;16773.69;116006269;Germany; -2018-11-14T14:37:04Z;Sandra;7153.129;116083064;Germany; -2018-11-14T14:26:27Z;Sandra;12968.55;116054394;Germany; -2018-11-14T14:23:54Z;Eduardo;1988.357;115634058;Germany; -2018-11-14T14:07:18Z;Ana;9468.677;115351354;Germany; -2018-11-14T13:09:59Z;Júlio;8164.862;114648512;Germany; -2018-11-14T13:05:03Z;Nathália;12954.82;114978643;Germany; -2018-11-14T12:52:26Z;Ana;6386.185;114698245;Germany; -2018-11-14T12:39:47Z;Júlio;13725.44;115033055;Germany; -2018-11-14T12:37:34Z;Júlio Cesar;4898.131;115194611;Germany; -2018-11-14T12:36:26Z;Júlio;1003.21;116367911;Germany; -2018-11-14T12:30:01Z;Júlio Cesar;1439.353;115877876;Germany; -2018-11-14T11:55:08Z;Armando;6324.405;115118747;Germany; -2018-11-14T11:46:16Z;Eduardo;5822.691;114804455;Germany; -2018-12-22T11:41:00Z;Júlio Cesar;18391.27;114730414;Germany; -2018-11-14T11:18:34Z;Sandra;12887.58;115867573;Germany; -2018-11-14T11:14:36Z;nathalia;2042.937;115670518;Germany; -2018-11-14T11:13:33Z;nathalia;3551.062;116228581;Germany; -2018-11-14T10:03:50Z;Sandra;1358.837;115964193;Germany; -2018-11-14T09:53:45Z;Eduardo;902.3259;114280674;Germany; -2018-11-14T09:33:11Z;Júlio;404.5094;116009018;Germany; -2018-11-14T09:22:32Z;Eduardo;238.621;115372033;Germany; -2018-11-14T09:09:43Z;Nathália;2147.643;114462324;Germany; -2018-11-14T09:08:31Z;Nathália;3336.8;116105899;Germany; -2018-11-14T08:33:10Z;Ana;2964.765;114574296;Germany; -2018-11-14T08:15:25Z;Eduardo;10062.37;116141764;Germany; -2018-11-14T07:59:07Z;Sandra;2334.646;115542314;Germany; -2018-11-14T07:56:05Z;Armando;7206.13;114477575;Germany; -2018-12-23T07:44:44Z;Armando;17504.38;114882611;Germany; -2018-11-14T07:20:37Z;Eduardo;2913.135;114409176;Germany; -2018-11-14T07:12:27Z;Júlio Cesar;2812.025;114330177;Germany; -2018-11-14T07:08:55Z;Armando;1276.749;116256110;Germany; -2018-11-14T07:06:13Z;Nathália;1018.299;114508668;Germany; -2018-11-14T06:52:12Z;Ana;2236.385;114381078;Germany; -2018-11-14T06:46:46Z;Armando;6216.906;114740506;Germany; -2018-11-14T06:07:53Z;Júlio Cesar;4879.306;116156704;Germany; -2018-11-14T06:05:48Z;nathalia;6117.037;115619094;Germany; -2018-11-14T05:40:05Z;Ana;3520.078;115579561;Germany; -2018-11-14T05:39:49Z;nathalia;1611.636;115477251;Germany; -2018-11-14T05:36:34Z;Ana;5126.537;115181099;Germany; -2018-11-14T05:36:18Z;Júlio;3764.525;114825139;Germany; -2018-11-14T05:29:58Z;nathalia;336.3867;114687315;Germany; -2018-11-14T05:29:25Z;nathalia;9443.726;115144076;Germany; -2018-11-14T05:11:36Z;Sandra;4965.763;114788774;Germany; -2018-11-14T04:29:44Z;nathalia;776.4901;114361630;Germany; -2018-12-23T04:08:00Z;Ana;19266.01;116036870;Germany; -2018-11-14T04:07:43Z;Armando;713.5153;116386901;Germany; -2018-11-14T03:55:25Z;Sandra;780.4592;115696389;Germany; -2018-11-14T03:23:58Z;nathalia;10947.95;114952634;Germany; -2018-11-14T03:13:32Z;Armando;1095.306;116073122;Germany; -2018-11-14T03:11:28Z;Sandra;1108.743;115224542;Germany; -2018-11-14T02:36:23Z;Júlio Cesar;3956.951;114910706;Germany; -2018-11-14T01:34:25Z;Ana;7852.622;115010166;Germany; -2018-11-14T01:14:28Z;Eduardo;5165.377;114881283;Germany; -2018-11-14T01:07:11Z;Júlio;2037.021;116108331;Germany; -2018-11-14T00:55:16Z;Armando;14350.56;114785508;Germany; -2018-11-14T00:13:45Z;Nathália;1809.568;116328288;Germany; -2018-11-14T00:01:40Z;Júlio Cesar;2523.091;116202034;Germany; -2018-11-13T23:54:35Z;Sandra;14395.09;114655250;Germany; -2018-11-13T22:59:18Z;Júlio Cesar;1370.603;115998272;Germany; -2018-11-13T22:56:57Z;nathalia;2252.045;114711361;Germany; -2018-11-13T22:45:35Z;nathalia;11520.28;115378859;Germany; -2018-11-13T22:23:52Z;Ana;1841.261;114323507;Germany; -2018-11-13T22:07:08Z;Nathália;2713.692;114507792;Germany; -2018-11-13T21:58:23Z;Júlio;3927.462;116216055;Germany; -2018-12-21T21:38:37Z;Ana;20088.54;115784659;Germany; -2018-11-13T21:36:18Z;Armando;2734.34;114900860;Germany; -2018-11-13T21:22:49Z;Sandra;27.82874;115183481;Germany; -2018-11-13T21:16:12Z;Júlio;923.7382;114909076;Germany; -2018-11-13T21:05:29Z;nathalia;137.6208;115659995;Germany; -2018-11-13T20:52:45Z;nathalia;14377.63;115088728;Germany; -2018-11-13T20:41:03Z;Eduardo;7864.042;115161393;Germany; -2018-11-13T19:51:25Z;Armando;482.1704;114480470;Germany; -2018-11-13T19:42:24Z;Ana;4848.738;114367001;Germany; -2018-11-13T18:41:37Z;Sandra;6781.258;114872427;Germany; -2018-11-13T18:13:31Z;Ana;382.8488;115584709;Germany; -2018-11-13T18:13:10Z;Júlio Cesar;3395.096;114909158;Germany; -2018-11-13T18:11:53Z;Sandra;12619.12;115346634;Germany; -2018-11-13T17:58:12Z;Sandra;1275.988;114205682;Germany; -2018-11-13T17:57:52Z;Ana;1543.172;115022006;Germany; -2018-11-13T17:45:21Z;Nathália;7785.007;114664310;Germany; -2018-11-13T17:13:23Z;Ana;11159.8;114218974;Germany; -2018-11-13T17:08:16Z;Ana;8255.931;115088064;Germany; -2018-11-13T17:04:58Z;Nathália;139.4624;115884531;Germany; -2018-11-13T17:02:24Z;Sandra;4200.118;116206654;Germany; -2018-11-13T16:55:23Z;nathalia;7014.631;115542478;Germany; -2018-11-13T16:33:53Z;Armando;857.6594;114762811;Germany; -2018-11-13T16:29:45Z;Eduardo;2613.913;116363907;Germany; -2018-11-13T16:10:21Z;Eduardo;9621.391;115147102;Germany; -2018-11-13T16:00:10Z;Eduardo;6925.098;115324958;Germany; -2018-11-13T15:59:59Z;Ana;259.3806;114437280;Germany; -2018-11-13T15:37:55Z;Eduardo;319.1369;115445208;Germany; -2018-11-13T15:31:45Z;Nathália;1390.566;116357257;Germany; -2018-11-13T15:30:24Z;Ana;4133.18;115022188;Germany; -2018-11-13T15:12:30Z;nathalia;7509.318;114636858;Germany; -2018-11-13T15:09:15Z;nathalia;12422.85;115922930;Germany; -2018-11-13T14:52:53Z;Eduardo;1646.9;116059252;Germany; -2018-11-13T14:49:34Z;Júlio;500.8558;114527622;Germany; -2018-11-13T14:47:44Z;Eduardo;8428.306;115385791;Germany; -2018-11-13T14:39:39Z;nathalia;5055.443;114371484;Germany; -2018-11-13T14:25:29Z;Armando;1352.492;114665829;Germany; -2018-11-13T14:20:26Z;nathalia;3037.471;114889169;Germany; -2018-11-13T14:16:33Z;Eduardo;2341.027;116320767;Germany; -2018-11-13T13:56:09Z;Ana;6342.02;114709395;Germany; -2018-11-13T13:11:51Z;Armando;2296.033;114495823;Germany; -2018-11-13T13:05:26Z;nathalia;632.3493;114614060;Germany; -2018-11-13T12:57:59Z;Ana;5605.802;115331090;Germany; -2018-11-13T12:05:16Z;Eduardo;3710.642;114288546;Germany; -2018-11-13T12:04:41Z;Nathália;12251.57;116156115;Germany; -2018-11-13T10:53:36Z;Júlio Cesar;4714.162;114783296;Germany; -2018-11-13T10:49:08Z;Júlio;8264.857;114305007;Germany; -2018-11-13T10:33:05Z;Armando;7516.316;115368642;Germany; -2018-11-13T10:31:59Z;Sandra;759.3634;115336362;Germany; -2018-11-13T10:10:00Z;Armando;1789.912;114355455;Germany; -2018-11-13T10:07:49Z;Sandra;2298.475;116055397;Germany; -2018-11-13T10:05:41Z;Sandra;485.8386;114879891;Germany; -2018-11-13T09:55:05Z;Ana;3277.515;115690767;Germany; -2018-12-23T09:29:07Z;Armando;19998.89;115556665;Germany; -2018-11-13T09:21:49Z;Sandra;8835.987;114950534;Germany; -2018-11-13T08:20:50Z;nathalia;726.4552;114788186;Germany; -2018-11-13T08:11:39Z;Júlio Cesar;1263.961;114448631;Germany; -2018-11-13T07:48:28Z;Júlio;8855.189;115763128;Germany; -2018-11-13T07:28:52Z;Nathália;1155.666;115575425;Germany; -2018-11-13T07:23:42Z;nathalia;300.4882;114766196;Germany; -2018-11-13T06:45:20Z;Armando;11429.06;116375286;Germany; -2018-11-13T06:44:18Z;Armando;2972.758;115941580;Germany; -2018-11-13T06:25:35Z;Nathália;4182.784;115718784;Germany; -2018-11-13T06:14:49Z;Armando;3339.851;115768488;Germany; -2018-11-13T06:07:28Z;Júlio Cesar;6444.627;115751832;Germany; -2018-11-13T05:49:04Z;Nathália;4041.693;115119666;Germany; -2018-11-13T05:38:26Z;Ana;3520.285;114459572;Germany; -2018-11-13T05:36:45Z;Nathália;3060.721;115310090;Germany; -2018-11-13T05:09:17Z;nathalia;2976.381;115000688;Germany; -2018-11-13T05:06:44Z;nathalia;5771.563;115725104;Germany; -2018-11-13T05:05:07Z;Sandra;9991.668;114558048;Germany; -2018-11-13T04:58:46Z;Júlio;2981.504;114413387;Germany; -2018-11-13T03:23:34Z;Júlio Cesar;12901.83;115394179;Germany; -2018-11-13T03:22:10Z;Ana;7536.459;115830249;Germany; -2018-11-13T02:59:26Z;Nathália;10090.37;114291468;Germany; -2018-11-13T02:56:01Z;Eduardo;5561.498;114928119;Germany; -2018-11-13T02:36:32Z;Armando;61.15459;116143169;Germany; -2018-11-13T01:31:33Z;Nathália;8278.936;116220001;Germany; -2018-11-13T01:05:37Z;Júlio;5359.708;115182950;Germany; -2018-11-13T00:43:02Z;Nathália;3254.994;116195561;Germany; -2018-12-06T22:30:17Z;Júlio;1303.276;114451079;Argentina; -2018-12-06T21:36:50Z;Armando;2921.636;115947951;Argentina; -2018-12-06T21:31:41Z;Nathália;73.26413;114200468;Argentina; -2018-12-06T21:23:47Z;Eduardo;116.5774;115062471;Argentina; -2018-12-06T20:46:33Z;Júlio Cesar;1050.223;115367613;Argentina; -2018-12-06T20:43:05Z;Ana;1144.626;116365040;Argentina; -2018-12-06T20:34:21Z;Sandra;996.2072;114601872;Argentina; -2018-12-06T20:19:45Z;Nathália;1457.272;114593372;Argentina; -2018-12-06T19:43:48Z;Eduardo;1996.834;116090236;Argentina; -2018-12-06T19:31:07Z;Ana;69.75648;114902555;Argentina; -2018-12-06T19:18:27Z;nathalia;1085.252;115960195;Argentina; -2018-12-06T19:02:59Z;Ana;2022.59;115426609;Argentina; -2018-12-06T18:44:57Z;Nathália;2278.652;115301484;Argentina; -2018-12-06T17:52:01Z;Eduardo;1034.117;116318031;Argentina; -2018-12-06T17:33:06Z;Ana;1029.744;114531652;Argentina; -2018-12-06T17:30:05Z;Júlio Cesar;114.2292;116306204;Argentina; -2018-12-06T17:09:27Z;Armando;1134.537;116330594;Argentina; -2018-12-06T17:00:10Z;Nathália;1310.124;115693295;Argentina; -2018-12-06T16:35:49Z;Sandra;2545.774;115387490;Argentina; -2018-12-06T15:46:38Z;Eduardo;1629.927;116391815;Argentina; -2018-12-06T15:36:34Z;Nathália;462.6917;115750534;Argentina; -2018-12-06T14:49:53Z;Sandra;1249.497;115109516;Argentina; -2018-12-06T14:48:51Z;Júlio Cesar;1167.3;114668791;Argentina; -2018-12-06T14:38:08Z;nathalia;2404.077;115499142;Argentina; -2018-12-06T14:11:01Z;nathalia;1200.927;116305293;Argentina; -2018-12-06T13:59:15Z;Armando;1685.756;114376353;Argentina; -2018-12-06T13:52:58Z;nathalia;90.10366;114707029;Argentina; -2018-12-06T13:32:06Z;Ana;821.1849;116060248;Argentina; -2018-12-06T13:09:13Z;Sandra;1281.758;115967000;Argentina; -2018-12-06T12:48:35Z;nathalia;2187.079;116260750;Argentina; -2018-12-06T12:40:56Z;Ana;2933.887;115342638;Argentina; -2018-12-06T12:37:54Z;Ana;3029.134;114736638;Argentina; -2018-12-06T11:52:38Z;Sandra;5495.263;116263224;Argentina; -2018-12-06T11:49:42Z;Armando;1580.589;115826484;Argentina; -2018-12-06T11:16:31Z;nathalia;2549.391;115917347;Argentina; -2018-12-06T11:14:06Z;Júlio;1254.602;115399019;Argentina; -2018-12-06T10:54:52Z;Sandra;523.0528;115598200;Argentina; -2018-12-06T10:23:35Z;Ana;284.0349;114709174;Argentina; -2018-12-06T10:17:08Z;Júlio;1635.938;115876678;Argentina; -2018-12-06T10:13:29Z;Sandra;292.7701;116204339;Argentina; -2018-12-06T10:04:43Z;Armando;1361.051;116374119;Argentina; -2018-12-06T09:27:48Z;Nathália;443.4436;114554644;Argentina; -2018-12-06T09:26:24Z;Ana;1210.066;116139699;Argentina; -2018-12-06T09:15:22Z;nathalia;982.3839;115904133;Argentina; -2018-12-06T09:15:19Z;Armando;403.723;115737897;Argentina; -2018-12-06T08:49:27Z;Armando;604.2508;116318691;Argentina; -2018-12-06T08:45:22Z;Eduardo;1131.97;114560027;Argentina; -2018-12-06T08:02:35Z;Nathália;2938.698;115752763;Argentina; -2018-12-06T08:00:49Z;Armando;1266.773;114877285;Argentina; -2018-12-06T07:53:13Z;Sandra;3240.567;115023114;Argentina; -2018-12-06T07:52:26Z;Sandra;2300.209;116135596;Argentina; -2018-12-06T07:50:07Z;Júlio;1853.207;114926330;Argentina; -2018-12-06T07:46:32Z;nathalia;1340.106;115219546;Argentina; -2018-12-06T07:32:50Z;Nathália;236.1968;114527247;Argentina; -2018-12-06T07:23:59Z;Júlio Cesar;1954.667;116344606;Argentina; -2018-12-06T07:08:05Z;Nathália;2030.007;114598508;Argentina; -2018-12-06T06:43:22Z;Júlio;3001.686;115823266;Argentina; -2018-12-06T06:31:31Z;Nathália;2506.641;114781224;Argentina; -2018-12-06T06:26:36Z;Ana;2172.69;115164053;Argentina; -2018-12-06T05:38:14Z;Sandra;1304.365;116284691;Argentina; -2018-12-06T05:26:02Z;Sandra;454.6265;115534802;Argentina; -2018-12-06T05:17:04Z;Sandra;1374.95;114810573;Argentina; -2018-12-06T05:02:51Z;Armando;3804.967;114260988;Argentina; -2018-12-06T04:49:02Z;nathalia;136.0802;115106453;Argentina; -2018-12-06T04:02:52Z;Júlio Cesar;1058.176;114285237;Argentina; -2018-12-06T03:59:53Z;Ana;1104.785;115140845;Argentina; -2018-12-06T03:47:19Z;Nathália;1438.296;115721586;Argentina; -2018-12-06T03:29:28Z;Júlio;1449.143;115121797;Argentina; -2018-12-06T03:05:59Z;Nathália;1514.896;115812845;Argentina; -2018-12-06T03:02:40Z;Júlio;3841.321;116338519;Argentina; -2018-12-06T02:41:31Z;Nathália;506.2324;115648378;Argentina; -2018-12-06T02:10:33Z;Eduardo;1570.443;115929130;Argentina; -2018-12-06T02:06:19Z;Eduardo;1433.806;115372717;Argentina; -2018-12-06T02:05:47Z;Júlio Cesar;1426.853;115100737;Argentina; -2018-12-06T01:41:17Z;Júlio;1389.924;114717143;Argentina; -2018-12-06T01:39:34Z;Ana;3545.229;114348048;Argentina; -2018-12-06T01:33:47Z;Júlio Cesar;705.1295;114323962;Argentina; -2018-12-06T01:22:51Z;Júlio Cesar;2324.734;114652507;Argentina; -2018-12-06T01:03:44Z;Eduardo;4061.701;114476865;Argentina; -2018-12-06T00:34:52Z;Júlio Cesar;696.0065;114837266;Argentina; -2018-12-06T00:13:08Z;Júlio;2838.478;115256748;Argentina; -2018-12-06T00:05:21Z;Eduardo;441.141;114980690;Argentina; -2018-12-05T23:49:42Z;nathalia;213.5982;115715501;Argentina; -2018-12-05T23:47:05Z;Júlio Cesar;674.8593;115363063;Argentina; -2018-12-05T23:26:45Z;Eduardo;2839.38;115025113;Argentina; -2018-12-05T22:58:37Z;Armando;13.9558;115018098;Argentina; -2018-12-05T22:58:24Z;Júlio Cesar;2629.812;115001976;Argentina; -2018-12-05T22:44:08Z;Eduardo;2519.465;116207533;Argentina; -2018-12-05T22:41:51Z;Júlio;367.8082;116387293;Argentina; -2018-12-05T22:14:44Z;Nathália;4273.834;115639203;Argentina; -2018-12-05T22:14:25Z;Armando;1318.294;114741940;Argentina; -2018-12-05T22:10:53Z;Sandra;370.9583;114736847;Argentina; -2018-12-05T21:57:07Z;Nathália;2398.189;116179200;Argentina; -2018-12-05T21:51:51Z;Júlio Cesar;843.7593;115268659;Argentina; -2018-12-05T21:46:19Z;Sandra;765.3663;114532274;Argentina; -2018-12-05T21:24:59Z;Nathália;916.2736;115638509;Argentina; -2018-12-05T21:09:44Z;Ana;44.53515;114851071;Argentina; -2018-12-05T20:53:31Z;Ana;3158.874;115385296;Argentina; -2018-12-05T20:49:40Z;Eduardo;480.5263;115323419;Argentina; -2018-12-05T20:44:54Z;Nathália;1392.196;115738140;Argentina; -2018-12-05T20:32:58Z;Nathália;676.0007;115744494;Argentina; -2018-12-05T20:07:45Z;Ana;2783.344;116282929;Argentina; -2018-12-05T19:51:58Z;Nathália;291.1572;114794758;Argentina; -2018-12-05T19:44:46Z;Júlio Cesar;62.6324;114908959;Argentina; -2018-12-05T19:42:14Z;nathalia;52.73622;114222649;Argentina; -2018-12-05T19:34:54Z;Ana;914.8183;114468929;Argentina; -2018-12-05T19:33:19Z;Sandra;2856.651;114443520;Argentina; -2018-12-05T19:31:25Z;Júlio;3063.241;115251949;Argentina; -2018-12-05T19:29:59Z;nathalia;1831.343;114596980;Argentina; -2018-12-05T19:13:51Z;Armando;409.1821;116093982;Argentina; -2018-12-05T19:03:40Z;Júlio Cesar;1728.863;115748159;Argentina; -2018-12-05T18:47:19Z;Júlio Cesar;545.0317;114965908;Argentina; -2018-12-05T18:33:27Z;Nathália;373.4352;115811365;Argentina; -2018-12-05T18:18:26Z;Sandra;1484.847;114393160;Argentina; -2018-12-05T17:43:57Z;Júlio Cesar;401.1105;116001131;Argentina; -2018-12-05T17:40:09Z;Armando;1439.031;116381462;Argentina; -2018-12-05T17:33:38Z;Armando;279.5763;116067181;Argentina; -2018-12-05T17:07:44Z;Sandra;312.1052;115605343;Argentina; -2018-12-05T16:55:15Z;Sandra;3888.841;115487761;Argentina; -2018-12-05T16:48:22Z;Nathália;1092.208;115799931;Argentina; -2018-12-05T16:21:46Z;Armando;686.2221;114323885;Argentina; -2018-12-05T16:19:33Z;Eduardo;727.5364;114417085;Argentina; -2018-12-05T16:19:25Z;Armando;470.8533;114536455;Argentina; -2018-12-05T16:19:06Z;Ana;1131.454;114532753;Argentina; -2018-12-05T16:05:41Z;Nathália;2869.05;116372880;Argentina; -2018-12-05T16:02:59Z;Sandra;962.9318;116210148;Argentina; -2018-12-05T15:40:06Z;Eduardo;4170.372;114645962;Argentina; -2018-12-05T15:17:34Z;Eduardo;707.1628;115287186;Argentina; -2018-12-05T15:17:12Z;Júlio Cesar;1062.11;115027355;Argentina; -2018-12-05T15:16:30Z;Júlio;3885.162;115036596;Argentina; -2018-12-05T15:09:09Z;Eduardo;530.4002;115871658;Argentina; -2018-12-05T14:46:56Z;Júlio;2134.752;114658871;Argentina; -2018-12-05T14:39:51Z;Júlio;755.5879;115724490;Argentina; -2018-12-05T14:22:15Z;Júlio;3616.845;115044785;Argentina; -2018-12-05T14:09:08Z;Ana;2091.146;114913745;Argentina; -2018-12-05T14:07:57Z;Sandra;2345.991;114394170;Argentina; -2018-12-05T13:37:59Z;Ana;2657.203;115468024;Argentina; -2018-12-05T13:27:32Z;nathalia;559.6965;115870927;Argentina; -2018-12-05T13:23:01Z;Nathália;1843.817;116196433;Argentina; -2018-12-05T13:21:08Z;Eduardo;6.896101;116178348;Argentina; -2018-12-05T13:13:23Z;Júlio Cesar;1706.486;115620452;Argentina; -2018-12-05T13:05:53Z;Júlio Cesar;350.8676;115584603;Argentina; -2018-12-05T12:51:23Z;Nathália;1926.552;114672067;Argentina; -2018-12-05T12:35:17Z;Nathália;1742.142;115131008;Argentina; -2018-12-05T12:02:46Z;Ana;1672.723;114575595;Argentina; -2018-12-05T10:53:43Z;Júlio Cesar;2499.428;116318091;Argentina; -2018-12-05T10:40:21Z;Júlio;1824.685;114539627;Argentina; -2018-12-05T10:32:11Z;Júlio;2313.155;114984231;Argentina; -2018-12-05T10:29:51Z;Sandra;2806.62;115173682;Argentina; -2018-12-05T09:14:19Z;Armando;1851.671;115971147;Argentina; -2018-12-05T09:08:35Z;Júlio Cesar;3062.923;115733804;Argentina; -2018-12-05T08:17:20Z;Nathália;1585.052;114898452;Argentina; -2018-12-05T08:10:41Z;Eduardo;1167.898;114815707;Argentina; -2018-12-05T07:19:25Z;Júlio;1378.544;115368725;Argentina; -2018-12-05T07:06:39Z;Ana;2704.625;116310684;Argentina; -2018-12-05T06:40:24Z;Júlio Cesar;43.47375;114369668;Argentina; -2018-12-05T06:12:19Z;Ana;2541.516;116342778;Argentina; -2018-12-05T05:42:47Z;Júlio Cesar;452.7552;115938525;Argentina; -2018-12-05T05:17:23Z;nathalia;6.778134;115888890;Argentina; -2018-12-05T05:10:48Z;Ana;10.18504;115388002;Argentina; -2018-12-05T05:10:05Z;Eduardo;922.3147;115249127;Argentina; -2018-12-05T05:08:13Z;Júlio;1549.029;115268440;Argentina; -2018-12-05T05:01:05Z;Júlio Cesar;809.3323;115736909;Argentina; -2018-12-05T04:59:42Z;Ana;2932.807;115154907;Argentina; -2018-12-05T04:52:59Z;nathalia;3611.01;115449147;Argentina; -2018-12-05T04:52:24Z;Armando;2328.134;115363169;Argentina; -2018-12-05T04:34:25Z;Sandra;113.7536;116198512;Argentina; -2018-12-05T04:14:15Z;Armando;1415.448;115215404;Argentina; -2018-12-05T03:34:03Z;Ana;4053.255;115113323;Argentina; -2018-12-05T03:30:15Z;Eduardo;1636.718;114411655;Argentina; -2018-12-05T03:26:43Z;nathalia;3545.331;114710484;Argentina; -2018-12-05T03:01:16Z;nathalia;175.3351;115891638;Argentina; -2018-12-05T02:35:00Z;Eduardo;2709.554;115462807;Argentina; -2018-12-05T02:31:56Z;nathalia;612.1039;115228320;Argentina; -2018-12-05T02:29:24Z;Eduardo;866.5072;115332809;Argentina; -2018-12-05T02:11:55Z;Ana;1339.888;114453924;Argentina; -2018-12-05T02:05:09Z;Eduardo;1035.954;114696919;Argentina; -2018-12-05T02:04:47Z;Armando;1084.131;116256911;Argentina; -2018-12-05T02:02:36Z;Ana;61.75724;114770220;Argentina; -2018-12-05T01:58:22Z;Júlio Cesar;3150.743;115357309;Argentina; -2018-12-05T01:31:28Z;Nathália;1628.55;115202658;Argentina; -2018-12-05T01:25:56Z;Júlio;1657.356;115567729;Argentina; -2018-12-05T01:02:20Z;Armando;768.6669;114308012;Argentina; -2018-12-05T00:59:18Z;Nathália;3633.46;114691787;Argentina; -2018-12-05T00:37:56Z;Júlio;1050.49;115506096;Argentina; -2018-12-05T00:34:01Z;Nathália;1200.816;115194896;Argentina; -2018-12-05T00:31:45Z;nathalia;2635.439;115861147;Argentina; -2018-12-05T00:17:56Z;Júlio;1497.275;115444094;Argentina; -2018-12-05T00:06:32Z;Nathália;2601.747;115070564;Argentina; -2018-12-05T00:00:29Z;Armando;2446.891;114693675;Argentina; -2018-12-04T23:30:57Z;Armando;231.5363;115865730;Argentina; -2018-12-04T23:23:21Z;Ana;3749.879;115502819;Argentina; -2018-12-04T23:14:12Z;Eduardo;441.329;115159739;Argentina; -2018-12-04T23:04:51Z;Eduardo;2573.398;114390529;Argentina; -2018-12-04T23:01:22Z;Júlio Cesar;772.8914;115456230;Argentina; -2018-12-04T20:51:58Z;Eduardo;588.8684;115495406;Argentina; -2018-12-04T20:24:37Z;Nathália;2155.283;116235517;Argentina; -2018-12-04T20:03:56Z;nathalia;1206.825;115443935;Argentina; -2018-12-04T19:45:10Z;Eduardo;536.4108;116185454;Argentina; -2018-12-04T19:35:39Z;Nathália;2236.833;115878059;Argentina; -2018-12-04T19:20:26Z;Eduardo;703.8993;114362005;Argentina; -2018-12-04T18:47:37Z;Nathália;756.1542;116032590;Argentina; -2018-12-04T18:34:58Z;Júlio Cesar;2600.195;115959055;Argentina; -2018-12-04T18:19:35Z;nathalia;30.09758;114474349;Argentina; -2018-12-04T17:38:43Z;Sandra;977.4636;115763392;Argentina; -2018-12-04T17:35:55Z;nathalia;3168.28;114467159;Argentina; -2018-12-04T17:17:26Z;Júlio Cesar;1856.078;115903921;Argentina; -2018-12-04T16:44:00Z;Júlio Cesar;219.5209;114954500;Argentina; -2018-12-04T16:36:19Z;Ana;1327.654;115716392;Argentina; -2018-12-04T16:33:27Z;Armando;7.517018;116204496;Argentina; -2018-12-04T16:19:46Z;Armando;1695.4;115713212;Argentina; -2018-12-04T15:50:15Z;Júlio;1853.718;115305060;Argentina; -2018-12-04T15:30:17Z;Eduardo;1727.597;115149020;Argentina; -2018-12-04T15:25:10Z;Júlio;234.9213;115137953;Argentina; -2018-12-04T15:23:59Z;Júlio Cesar;204.66;115083592;Argentina; -2018-12-04T15:18:49Z;Armando;732.0641;115877853;Argentina; -2018-12-04T15:05:19Z;Júlio Cesar;601.7391;115602826;Argentina; -2018-12-04T14:19:25Z;Júlio Cesar;275.374;116316582;Argentina; -2018-12-04T13:45:17Z;Ana;593.7932;114922530;Argentina; -2018-12-04T13:32:13Z;Eduardo;4660.241;115307230;Argentina; -2018-12-04T12:23:28Z;Eduardo;2140.483;114490698;Argentina; -2018-12-04T12:11:05Z;Nathália;526.253;114975592;Argentina; -2018-12-04T11:53:57Z;Sandra;1015.355;115030355;Argentina; -2018-12-04T11:49:11Z;nathalia;1696.919;115925919;Argentina; -2018-12-04T11:32:10Z;Eduardo;2806.147;114645552;Argentina; -2018-12-04T11:21:30Z;Júlio Cesar;2511.937;115534520;Argentina; -2018-12-04T11:16:07Z;Júlio Cesar;2275.844;115035465;Argentina; -2018-12-04T10:51:08Z;Nathália;293.2121;115682719;Argentina; -2018-12-04T10:40:02Z;Nathália;1117.161;115163923;Argentina; -2018-12-04T10:33:33Z;Sandra;437.7294;115714525;Argentina; -2018-12-04T10:21:12Z;Sandra;558.0683;114445726;Argentina; -2018-12-04T09:33:24Z;Eduardo;2409.044;114897338;Argentina; -2018-12-04T09:03:30Z;Eduardo;3672.954;114573645;Argentina; -2018-12-04T08:50:16Z;Armando;495.5908;115068112;Argentina; -2018-12-04T08:33:20Z;Ana;3259.153;115670596;Argentina; -2018-12-04T08:24:01Z;Júlio;829.1136;114311328;Argentina; -2018-12-04T08:20:12Z;Ana;1366.917;115005523;Argentina; -2018-12-04T07:52:29Z;Júlio Cesar;2654.453;114436400;Argentina; -2018-12-04T07:33:22Z;Armando;3705.454;115324747;Argentina; -2018-12-04T07:26:28Z;Júlio;1379.528;115395442;Argentina; -2018-12-04T07:12:08Z;Júlio;144.2785;114486168;Argentina; -2018-12-04T07:11:50Z;nathalia;647.2285;114256024;Argentina; -2018-12-04T07:10:55Z;nathalia;165.8206;114649275;Argentina; -2018-12-04T07:09:16Z;Júlio Cesar;863.6672;115458168;Argentina; -2018-12-04T07:08:54Z;Armando;754.0025;115082310;Argentina; -2018-12-04T07:02:24Z;Júlio;3517.705;116193678;Argentina; -2018-12-04T06:36:39Z;nathalia;434.3045;114850717;Argentina; -2018-12-04T06:34:32Z;Sandra;1078.794;115315930;Argentina; -2018-12-04T05:56:51Z;Sandra;1276.747;116278832;Argentina; -2018-12-04T05:53:31Z;nathalia;478.7358;115481932;Argentina; -2018-12-04T05:52:22Z;Ana;2212.443;115483641;Argentina; -2018-12-04T05:50:50Z;Júlio;21.85994;114744966;Argentina; -2018-12-04T05:47:59Z;Ana;303.8893;115250248;Argentina; -2018-12-04T05:46:39Z;Júlio Cesar;1041.051;116349352;Argentina; -2018-12-04T05:34:13Z;Sandra;879.2497;115451266;Argentina; -2018-12-04T05:10:52Z;Júlio Cesar;874.3951;115729631;Argentina; -2018-12-04T05:07:15Z;Júlio Cesar;1800.699;116131937;Argentina; -2018-12-04T05:06:27Z;Júlio;1097.258;114209005;Argentina; -2018-12-04T04:23:33Z;Júlio;90.77291;114810303;Argentina; -2018-12-04T04:22:39Z;Ana;3400.16;116116564;Argentina; -2018-12-04T03:52:56Z;Ana;775.7335;116322293;Argentina; -2018-12-04T03:50:31Z;Armando;2473.716;114466774;Argentina; -2018-12-04T03:48:13Z;Nathália;354.9763;115515826;Argentina; -2018-12-04T03:34:44Z;Sandra;128.9297;115852444;Argentina; -2018-12-04T03:15:46Z;Ana;64.6756;116075642;Argentina; -2018-12-04T03:15:07Z;Eduardo;406.2166;116296850;Argentina; -2018-12-04T02:58:19Z;Júlio Cesar;1838.581;114447483;Argentina; -2018-12-04T02:51:53Z;Eduardo;2377.909;115919174;Argentina; -2018-12-04T01:54:32Z;nathalia;1587.033;116340098;Argentina; -2018-12-04T01:46:30Z;Armando;1653.436;115490375;Argentina; -2018-12-04T01:26:24Z;Ana;745.86;115339839;Argentina; -2018-12-04T01:22:29Z;Eduardo;41.74836;115828054;Argentina; -2018-12-04T01:08:18Z;Sandra;3125.124;116117953;Argentina; -2018-12-04T00:54:57Z;Armando;614.0077;114741672;Argentina; -2018-12-04T00:54:14Z;nathalia;1605.621;116109457;Argentina; -2018-12-04T00:52:27Z;Armando;2109.344;114703744;Argentina; -2018-12-04T00:38:46Z;Eduardo;1144.778;115233147;Argentina; -2018-12-04T00:36:32Z;Nathália;503.9609;114527871;Argentina; -2018-12-04T00:34:05Z;Júlio;2969.67;116306169;Argentina; -2018-12-04T00:05:30Z;Sandra;649.0305;115529202;Argentina; -2018-12-04T00:05:24Z;Armando;1662.516;114594522;Argentina; -2018-12-04T00:04:31Z;Júlio;5058.184;114356568;Argentina; -2018-12-04T00:02:19Z;Júlio;2719.109;114899738;Argentina; -2018-12-03T23:47:23Z;nathalia;1537.746;115095215;Argentina; -2018-12-03T23:27:46Z;Sandra;3131.75;115145735;Argentina; -2018-12-03T22:43:36Z;Eduardo;2440.468;116152821;Argentina; -2018-12-03T22:14:57Z;nathalia;400.7977;115229186;Argentina; -2018-12-03T22:02:32Z;nathalia;1679.927;115550273;Argentina; -2018-12-03T21:44:36Z;Sandra;711.3317;115745134;Argentina; -2018-12-03T21:28:38Z;Sandra;464.7053;114759660;Argentina; -2018-12-03T21:26:57Z;Júlio;751.2916;115660226;Argentina; -2018-12-03T20:49:21Z;nathalia;2681.158;114474099;Argentina; -2018-12-03T20:30:04Z;Sandra;3124.398;114905467;Argentina; -2018-12-03T20:27:01Z;Eduardo;1371.47;114251000;Argentina; -2018-12-03T20:18:20Z;Júlio Cesar;1070.274;115353403;Argentina; -2018-12-03T19:22:42Z;nathalia;2833.29;115119651;Argentina; -2018-12-03T19:06:11Z;Nathália;1140.641;116390691;Argentina; -2018-12-03T18:57:10Z;Armando;1908.253;116059275;Argentina; -2018-12-03T18:54:21Z;Júlio;2936.438;114355613;Argentina; -2018-12-03T18:39:57Z;Sandra;722.7239;115400725;Argentina; -2018-12-03T18:29:54Z;Armando;615.5093;116028644;Argentina; -2018-12-03T18:24:31Z;Sandra;35.49019;115328209;Argentina; -2018-12-03T18:18:30Z;Nathália;3511.161;115622457;Argentina; -2018-12-03T18:14:14Z;nathalia;1995.904;115458941;Argentina; -2018-12-03T18:09:22Z;Nathália;913.8065;115096815;Argentina; -2018-12-03T17:46:37Z;Sandra;1857.134;115602022;Argentina; -2018-12-03T17:25:40Z;Eduardo;1290.883;115727342;Argentina; -2018-12-03T17:24:18Z;Eduardo;219.4658;115700824;Argentina; -2018-12-03T16:52:51Z;Sandra;2488.222;114688940;Argentina; -2018-12-03T16:47:05Z;Sandra;1846.092;114526403;Argentina; -2018-12-03T16:41:09Z;nathalia;178.9587;116320339;Argentina; -2018-12-03T16:38:46Z;Sandra;39.16889;115407489;Argentina; -2018-12-03T16:35:55Z;Sandra;180.2967;114444057;Argentina; -2018-12-03T15:51:50Z;Ana;2422.882;115505303;Argentina; -2018-12-03T15:45:28Z;Júlio Cesar;583.4672;115034689;Argentina; -2018-12-03T14:53:08Z;Júlio;27.60187;114919344;Argentina; -2018-12-03T14:49:53Z;Júlio Cesar;1185.057;115029771;Argentina; -2018-12-03T14:42:28Z;Sandra;65.12809;115929140;Argentina; -2018-12-03T14:26:20Z;Nathália;574.7341;115355943;Argentina; -2018-12-03T13:56:51Z;Júlio;342.3776;114389964;Argentina; -2018-12-03T13:31:11Z;Sandra;1118.707;114530272;Argentina; -2018-12-03T12:54:59Z;Júlio;2450.082;115784499;Argentina; -2018-12-03T12:35:38Z;Ana;48.1421;115772335;Argentina; -2018-12-03T12:26:51Z;Júlio;1144.508;114646299;Argentina; -2018-12-03T12:20:26Z;Eduardo;476.4846;115130664;Argentina; -2018-12-03T12:20:22Z;Nathália;1286.547;115026689;Argentina; -2018-12-03T12:18:46Z;Sandra;1178.45;116234108;Argentina; -2018-12-03T11:40:47Z;nathalia;1567.18;115151398;Argentina; -2018-12-03T11:34:31Z;Júlio;28.00889;115758772;Argentina; -2018-12-03T11:16:21Z;Sandra;4551.141;116105238;Argentina; -2018-12-03T11:15:45Z;Júlio Cesar;122.2133;114544569;Argentina; -2018-12-03T11:10:21Z;Eduardo;1820.987;115569981;Argentina; -2018-12-03T10:55:24Z;Eduardo;1081.007;115359081;Argentina; -2018-12-03T10:46:49Z;Sandra;1701.878;114567910;Argentina; -2018-12-03T10:25:18Z;Nathália;288.2905;114731770;Argentina; -2018-12-03T09:59:07Z;Ana;2211.903;114622204;Argentina; -2018-12-03T09:54:35Z;Sandra;2218.079;115549651;Argentina; -2018-12-03T09:43:34Z;nathalia;3736.31;115517409;Argentina; -2018-12-03T08:36:50Z;Ana;618.7846;116324686;Argentina; -2018-12-03T08:33:19Z;Ana;100.565;114923021;Argentina; -2018-12-03T08:26:02Z;Nathália;129.1703;114940149;Argentina; -2018-12-03T08:20:29Z;nathalia;872.5223;114741166;Argentina; -2018-12-03T07:51:20Z;Sandra;3523.743;114565093;Argentina; -2018-12-03T07:43:16Z;Eduardo;872.9588;115693872;Argentina; -2018-12-03T07:14:47Z;Júlio;74.8114;115817817;Argentina; -2018-12-03T07:09:43Z;Ana;53.37102;115199818;Argentina; -2018-12-03T07:08:40Z;Nathália;1221.885;115243874;Argentina; -2018-12-03T07:05:33Z;Júlio;2122.569;115573156;Argentina; -2018-12-03T06:59:43Z;Júlio;980.1153;115487764;Argentina; -2018-12-03T06:30:16Z;Armando;1047.869;115527453;Argentina; -2018-12-03T06:22:16Z;Ana;2139.868;114425906;Argentina; -2018-12-03T06:17:20Z;Eduardo;61.22747;114279813;Argentina; -2018-12-03T06:06:12Z;Sandra;1022.745;115980173;Argentina; -2018-12-03T05:33:37Z;Júlio Cesar;1871.986;115526819;Argentina; -2018-12-03T05:30:45Z;Armando;2726.336;115166966;Argentina; -2018-12-03T05:20:50Z;Ana;1237.239;115255198;Argentina; -2018-12-03T04:48:10Z;nathalia;1598.104;115858224;Argentina; -2018-12-03T04:26:34Z;nathalia;2043.411;115024421;Argentina; -2018-12-03T03:53:13Z;nathalia;647.3786;115509633;Argentina; -2018-12-03T03:04:13Z;Eduardo;1664.129;115007254;Argentina; -2018-12-03T02:38:00Z;Júlio;820.1561;115100438;Argentina; -2018-12-03T02:22:37Z;Eduardo;1637.462;115522506;Argentina; -2018-12-03T00:33:13Z;Ana;2600.648;115589815;Argentina; -2018-12-03T00:25:06Z;Ana;1795.111;115697167;Argentina; -2018-12-03T00:24:48Z;Eduardo;1792.283;114228575;Argentina; -2018-12-03T00:11:05Z;Nathália;1108.139;115292454;Argentina; -2018-12-03T00:04:46Z;Ana;32.25969;116352533;Argentina; -2018-12-02T23:47:19Z;Armando;865.9511;115747099;Argentina; -2018-12-02T23:36:28Z;Júlio Cesar;1307.011;114399712;Argentina; -2018-12-02T23:34:11Z;Ana;555.3898;114899123;Argentina; -2018-12-02T23:27:05Z;Júlio Cesar;2535.982;115713823;Argentina; -2018-12-02T23:21:44Z;Júlio Cesar;893.3708;115501531;Argentina; -2018-12-02T23:14:55Z;Júlio Cesar;615.7089;114431631;Argentina; -2018-12-02T22:58:48Z;Sandra;505.2148;115614607;Argentina; -2018-12-02T22:55:23Z;Armando;1635.827;115016693;Argentina; -2018-12-02T22:50:18Z;Júlio;1815.794;115867890;Argentina; -2018-12-02T22:43:17Z;Armando;1196.598;115381184;Argentina; -2018-12-02T22:40:13Z;Júlio Cesar;2520.944;114733233;Argentina; -2018-12-02T22:20:34Z;Sandra;381.6458;116311043;Argentina; -2018-12-02T22:19:25Z;Armando;103.6519;115184925;Argentina; -2018-12-02T22:16:55Z;Júlio;2044.076;114672002;Argentina; -2018-12-02T22:11:53Z;Ana;88.63403;116074102;Argentina; -2018-12-02T22:08:28Z;Júlio Cesar;265.594;115775308;Argentina; -2018-12-02T21:36:33Z;nathalia;291.2572;114941500;Argentina; -2018-12-02T21:25:51Z;Júlio;773.1611;116087430;Argentina; -2018-12-02T20:57:45Z;Nathália;1392.296;115823693;Argentina; -2018-12-02T20:43:26Z;Armando;2204.236;115901705;Argentina; -2018-12-02T20:34:49Z;Júlio;5413.935;115190458;Argentina; -2018-12-02T20:30:20Z;Nathália;393.2266;115762766;Argentina; -2018-12-02T20:10:27Z;Ana;1197.182;116036784;Argentina; -2018-12-02T19:46:26Z;Eduardo;2252.369;115343600;Argentina; -2018-12-02T19:44:54Z;Nathália;2358.414;115851203;Argentina; -2018-12-02T19:00:35Z;Ana;248.463;115378266;Argentina; -2018-12-02T18:32:44Z;Sandra;476.9269;116341994;Argentina; -2018-12-02T17:21:55Z;Nathália;254.6274;114746901;Argentina; -2018-12-02T17:20:13Z;Júlio Cesar;414.2557;115209957;Argentina; -2018-12-02T17:10:15Z;Eduardo;1985.725;115949084;Argentina; -2018-12-02T16:45:54Z;Sandra;1616.299;115942003;Argentina; -2018-12-02T16:14:48Z;Armando;3842.044;115738019;Argentina; -2018-12-02T15:29:20Z;Eduardo;1020.518;115040237;Argentina; -2018-12-02T14:51:50Z;Ana;1306.145;114263701;Argentina; -2018-12-02T14:26:31Z;Eduardo;449.3448;116100933;Argentina; -2018-12-02T14:22:12Z;Júlio Cesar;4028.128;114960947;Argentina; -2018-12-02T14:11:59Z;Sandra;667.3203;114291150;Argentina; -2018-12-02T14:03:22Z;Júlio Cesar;1357.876;114403925;Argentina; -2018-12-02T13:53:24Z;Nathália;1892.717;115681646;Argentina; -2018-12-02T13:50:35Z;Júlio Cesar;1127.472;116331253;Argentina; -2018-12-02T13:43:35Z;Ana;659.8594;115643935;Argentina; -2018-12-02T13:21:23Z;Armando;796.8996;115976645;Argentina; -2018-12-02T12:46:16Z;Júlio Cesar;828.5468;114284821;Argentina; -2018-12-02T12:39:00Z;Armando;2478.469;114434618;Argentina; -2018-12-02T12:36:49Z;Armando;10.26639;114316498;Argentina; -2018-12-02T12:35:00Z;Nathália;491.5219;114498440;Argentina; -2018-12-02T12:28:15Z;Júlio Cesar;3352.08;115371611;Argentina; -2018-12-02T12:26:21Z;Eduardo;2374.896;116350285;Argentina; -2018-12-02T12:25:10Z;Júlio;2396.248;116095632;Argentina; -2018-12-02T12:18:58Z;Armando;3406.903;114500048;Argentina; -2018-12-02T12:11:11Z;nathalia;1510.886;114484786;Argentina; -2018-12-02T12:06:32Z;nathalia;1053.332;115978663;Argentina; -2018-12-02T11:59:11Z;Júlio Cesar;2263.322;115604337;Argentina; -2018-12-02T11:26:19Z;Eduardo;563.1796;115038761;Argentina; -2018-12-02T10:50:17Z;Eduardo;996.8269;114582571;Argentina; -2018-12-02T10:23:58Z;Júlio;1850.818;114764139;Argentina; -2018-12-02T10:17:35Z;nathalia;2761.095;114509667;Argentina; -2018-12-02T09:46:24Z;Eduardo;2860.855;115224803;Argentina; -2018-12-02T09:43:26Z;Júlio Cesar;428.599;115933240;Argentina; -2018-12-02T09:22:22Z;Júlio;1971.244;114822569;Argentina; -2018-12-02T09:20:17Z;Ana;1592.525;115389913;Argentina; -2018-12-02T09:13:14Z;nathalia;559.1595;116087902;Argentina; -2018-12-02T07:44:41Z;Nathália;303.7809;115821916;Argentina; -2018-12-02T07:27:05Z;Nathália;355.7779;114721854;Argentina; -2018-12-02T07:13:46Z;Júlio Cesar;1720.816;115758789;Argentina; -2018-12-02T07:09:30Z;Ana;1813.801;114998964;Argentina; -2018-12-02T06:45:30Z;Júlio;521.2174;115591159;Argentina; -2018-12-02T06:13:24Z;Júlio Cesar;1627.182;116247125;Argentina; -2018-12-02T05:48:06Z;Ana;4425.395;114930047;Argentina; -2018-12-02T05:44:31Z;Armando;4128.638;116132549;Argentina; -2018-12-02T05:43:23Z;Sandra;1309.281;114340292;Argentina; -2018-12-02T05:20:09Z;nathalia;287.1188;115113326;Argentina; -2018-12-02T05:12:58Z;Eduardo;3955.743;116100162;Argentina; -2018-12-02T05:00:35Z;nathalia;2593.647;115678948;Argentina; -2018-12-02T04:51:28Z;nathalia;15.9209;115583893;Argentina; -2018-12-02T04:51:24Z;Ana;1750.472;115077012;Argentina; -2018-12-02T04:45:02Z;nathalia;87.0347;114917586;Argentina; -2018-12-02T04:31:31Z;Sandra;911.6051;114772623;Argentina; -2018-12-02T04:31:30Z;Sandra;521.5486;115211888;Argentina; -2018-12-02T04:15:36Z;Nathália;319.5926;114351725;Argentina; -2018-12-02T04:12:46Z;Júlio;1829.694;114460694;Argentina; -2018-12-02T03:29:27Z;Eduardo;3436.289;114775587;Argentina; -2018-12-02T03:16:28Z;Sandra;2493.788;116096716;Argentina; -2018-12-02T03:09:14Z;Júlio;597.3451;114531914;Argentina; -2018-12-02T03:02:19Z;Armando;791.9601;115252093;Argentina; -2018-12-02T02:41:53Z;Eduardo;59.98733;114664483;Argentina; -2018-12-02T02:36:10Z;Ana;2036.257;114490528;Argentina; -2018-12-02T02:15:55Z;Sandra;423.5019;115698546;Argentina; -2018-12-02T02:13:01Z;Júlio Cesar;128.9215;114291480;Argentina; -2018-12-02T01:52:05Z;Júlio Cesar;976.2389;116201581;Argentina; -2018-12-02T01:48:01Z;Júlio;99.04927;114984734;Argentina; -2018-12-02T01:46:35Z;Júlio;2845.154;114627085;Argentina; -2018-12-02T01:31:06Z;Eduardo;1137.263;114597962;Argentina; -2018-12-02T01:25:17Z;Júlio Cesar;1015.234;116334209;Argentina; -2018-12-02T01:01:15Z;nathalia;240.9052;115184244;Argentina; -2018-12-02T00:59:44Z;nathalia;1186.277;114906140;Argentina; -2018-12-02T00:24:27Z;Nathália;1470.886;114336106;Argentina; -2018-12-01T23:17:31Z;nathalia;577.4668;114243980;Argentina; -2018-12-01T23:09:51Z;Sandra;395.9681;115958206;Argentina; -2018-12-01T22:56:47Z;nathalia;552.5413;114306220;Argentina; -2018-12-01T22:30:22Z;Armando;346.2899;115716617;Argentina; -2018-12-01T22:28:31Z;Armando;952.8055;114529954;Argentina; -2018-12-01T21:55:33Z;Sandra;202.7341;115882677;Argentina; -2018-12-01T21:51:36Z;Eduardo;348.5186;115258973;Argentina; -2018-12-01T21:35:29Z;Júlio Cesar;415.0371;115531004;Argentina; -2018-12-01T21:29:36Z;Nathália;2353.978;115840291;Argentina; -2018-12-01T21:08:44Z;Eduardo;196.0631;115290476;Argentina; -2018-12-01T21:04:36Z;Armando;1128.145;116356775;Argentina; -2018-12-01T20:39:16Z;Armando;2565.454;115259687;Argentina; -2018-12-01T20:39:11Z;Eduardo;51.12836;115958432;Argentina; -2018-12-01T20:27:57Z;Eduardo;731.7466;115870392;Argentina; -2018-12-01T20:27:44Z;nathalia;1727.35;115925821;Argentina; -2018-12-01T20:08:20Z;Sandra;1291.477;115634841;Argentina; -2018-12-01T19:31:48Z;Ana;352.5668;115668568;Argentina; -2018-12-01T19:29:29Z;Nathália;1700.257;114383365;Argentina; -2018-12-01T18:41:04Z;Sandra;569.972;115078901;Argentina; -2018-12-01T18:22:04Z;Eduardo;2077.384;116128487;Argentina; -2018-12-01T18:21:17Z;Júlio;2289.125;114957359;Argentina; -2018-12-01T18:10:57Z;Sandra;368.2817;114859331;Argentina; -2018-12-01T18:02:57Z;Eduardo;88.63436;116090076;Argentina; -2018-12-01T17:58:38Z;Eduardo;195.8808;114891671;Argentina; -2018-12-01T17:53:49Z;Júlio;2247.383;114867315;Argentina; -2018-12-01T17:38:21Z;Ana;2404.14;114643545;Argentina; -2018-12-01T17:08:44Z;Armando;4758.525;114803908;Argentina; -2018-12-01T16:52:42Z;Júlio;972.7297;114378709;Argentina; -2018-12-01T16:40:24Z;Sandra;1095.2;116063312;Argentina; -2018-12-01T16:27:50Z;Nathália;1691.085;114906197;Argentina; -2018-12-01T16:11:38Z;Ana;788.7845;114965663;Argentina; -2018-12-01T16:01:20Z;Júlio;640.6358;115826525;Argentina; -2018-12-01T15:49:35Z;Eduardo;3562.739;115479835;Argentina; -2018-12-01T15:21:30Z;nathalia;754.1962;116094756;Argentina; -2018-12-01T15:15:04Z;Júlio;168.645;116345736;Argentina; -2018-12-01T14:57:06Z;Ana;2925.427;115849689;Argentina; -2018-12-01T14:49:58Z;Armando;540.1937;114775313;Argentina; -2018-12-01T14:14:14Z;Nathália;2629.785;115374767;Argentina; -2018-12-01T14:13:30Z;Júlio Cesar;131.6159;114808450;Argentina; -2018-12-01T14:12:13Z;Júlio Cesar;686.8677;114824362;Argentina; -2018-12-01T14:00:55Z;Ana;2379.213;114798200;Argentina; -2018-12-01T13:03:34Z;Sandra;2043.539;115291276;Argentina; -2018-12-01T13:02:59Z;Ana;1549.662;114871443;Argentina; -2018-12-01T12:53:56Z;Júlio Cesar;2233.592;116328811;Argentina; -2018-12-01T12:45:54Z;Armando;424.9369;114956999;Argentina; -2018-12-01T12:44:17Z;Nathália;463.6072;114493289;Argentina; -2018-12-01T12:01:49Z;Nathália;3087.692;116118304;Argentina; -2018-12-01T11:52:24Z;Sandra;2030.602;114306153;Argentina; -2018-12-01T11:34:11Z;Ana;2762.244;116168012;Argentina; -2018-12-01T11:30:20Z;Ana;279.0793;115617745;Argentina; -2018-12-01T11:25:42Z;Nathália;2858.842;115237665;Argentina; -2018-12-01T11:22:57Z;Sandra;130.9528;115165680;Argentina; -2018-12-01T11:17:25Z;Júlio;1954.767;115657914;Argentina; -2018-12-01T11:06:18Z;Sandra;1766.885;115510836;Argentina; -2018-12-01T11:03:33Z;nathalia;27.16219;115360003;Argentina; -2018-12-01T10:53:00Z;Nathália;41.21212;114767456;Argentina; -2018-12-01T10:45:27Z;Júlio;2384.766;115200153;Argentina; -2018-12-01T10:42:15Z;Armando;582.6196;115004333;Argentina; -2018-12-01T10:41:24Z;Armando;1218.296;115008317;Argentina; -2018-12-01T10:15:54Z;Júlio Cesar;2219.25;115467886;Argentina; -2018-12-01T10:07:01Z;Ana;1034.364;115082096;Argentina; -2018-12-01T09:57:39Z;Sandra;1469.094;114939948;Argentina; -2018-12-01T09:56:36Z;Eduardo;778.3011;114534784;Argentina; -2018-12-01T09:30:12Z;Eduardo;2330.46;115646197;Argentina; -2018-12-01T09:24:44Z;Júlio;2821.108;115799713;Argentina; -2018-12-01T09:07:59Z;Armando;527.4416;114284266;Argentina; -2018-12-01T09:04:25Z;Nathália;584.4833;114495018;Argentina; -2018-12-01T09:03:12Z;Nathália;541.2371;116372886;Argentina; -2018-12-01T08:59:48Z;Armando;2715.132;114384701;Argentina; -2018-12-01T08:48:08Z;Nathália;2510.838;114272144;Argentina; -2018-12-01T08:40:29Z;Sandra;1067.624;114302260;Argentina; -2018-12-01T08:20:08Z;Eduardo;2763.117;115653389;Argentina; -2018-12-01T08:15:43Z;Eduardo;1173.489;114851012;Argentina; -2018-12-01T08:14:40Z;Armando;240.0547;115974862;Argentina; -2018-12-01T08:07:03Z;Armando;983.7196;116053923;Argentina; -2018-12-01T08:04:04Z;Armando;139.9285;114372685;Argentina; -2018-12-01T07:58:31Z;Nathália;798.3067;115378114;Argentina; -2018-12-01T07:31:32Z;nathalia;2026.068;115722466;Argentina; -2018-12-01T06:27:03Z;nathalia;2402.165;114280203;Argentina; -2018-12-01T05:37:19Z;nathalia;2275.725;115171747;Argentina; -2018-12-01T05:36:55Z;Júlio Cesar;241.0071;115325235;Argentina; -2018-12-01T05:22:41Z;nathalia;3017.14;114706861;Argentina; -2018-12-01T05:02:30Z;Júlio Cesar;4819.897;116261637;Argentina; -2018-12-01T04:45:50Z;Sandra;1420.674;115914068;Argentina; -2018-12-01T04:42:11Z;nathalia;431.6952;114950058;Argentina; -2018-12-01T04:25:44Z;Armando;2355.341;115137650;Argentina; -2018-12-01T04:24:40Z;Eduardo;163.645;114205544;Argentina; -2018-12-01T04:22:40Z;nathalia;1470.585;116133350;Argentina; -2018-12-01T04:04:53Z;Júlio;1555.2;115256843;Argentina; -2018-12-01T03:26:43Z;Nathália;1633.554;114248957;Argentina; -2018-12-01T03:26:17Z;Sandra;96.84376;114633417;Argentina; -2018-12-01T03:19:55Z;Nathália;769.3656;114503057;Argentina; -2018-12-01T03:09:58Z;Armando;283.1021;115728883;Argentina; -2018-12-01T03:02:44Z;Sandra;1136.289;114883780;Argentina; -2018-12-01T02:58:53Z;nathalia;3107.263;116280903;Argentina; -2018-12-01T02:39:23Z;Nathália;1472.477;116355615;Argentina; -2018-12-01T02:03:15Z;Sandra;25.8869;114904311;Argentina; -2018-12-01T01:48:17Z;Eduardo;1350.354;114584796;Argentina; -2018-12-01T01:32:42Z;Ana;128.035;116008267;Argentina; -2018-12-01T01:05:31Z;Sandra;1179.922;114421555;Argentina; -2018-12-01T00:56:31Z;Eduardo;2884.491;116315157;Argentina; -2018-12-01T00:50:21Z;Nathália;2961.192;115750949;Argentina; -2018-12-01T00:48:56Z;Nathália;1287.315;114834013;Argentina; -2018-12-01T00:24:17Z;Eduardo;2451.184;115508894;Argentina; -2018-11-30T23:57:54Z;Armando;1157.844;116155132;Argentina; -2018-11-30T23:20:04Z;Armando;2168.555;114285877;Argentina; -2018-11-30T23:18:42Z;Sandra;561.8723;116271536;Argentina; -2018-11-30T23:11:15Z;Júlio;1603.046;116206730;Argentina; -2018-11-30T22:40:22Z;nathalia;3604.468;115816135;Argentina; -2018-11-30T22:36:39Z;Armando;926.8318;114226666;Argentina; -2018-11-30T22:16:04Z;Eduardo;107.0856;114424955;Argentina; -2018-11-30T21:58:08Z;Armando;3836.365;114206313;Argentina; -2018-11-30T21:45:54Z;Ana;243.496;115149179;Argentina; -2018-11-30T21:38:39Z;nathalia;1338.902;116203394;Argentina; -2018-11-30T21:15:52Z;Ana;179.7499;114219082;Argentina; -2018-11-30T20:25:40Z;Sandra;541.2346;116149507;Argentina; -2018-11-30T20:21:56Z;nathalia;1998.499;114347296;Argentina; -2018-11-30T20:19:36Z;Júlio Cesar;327.8192;115384046;Argentina; -2018-11-30T20:15:45Z;Júlio Cesar;876.0936;114985027;Argentina; -2018-11-30T20:04:10Z;Júlio;252.8308;115890495;Argentina; -2018-11-30T19:54:17Z;Eduardo;1423.076;114777529;Argentina; -2018-11-30T19:52:22Z;Ana;2044.421;114788881;Argentina; -2018-11-30T19:24:34Z;Sandra;3030.264;115578311;Argentina; -2018-11-30T19:16:31Z;Nathália;2699.734;115355453;Argentina; -2018-11-30T19:12:19Z;Ana;3115.972;114305958;Argentina; -2018-11-30T19:00:38Z;nathalia;87.56483;114438784;Argentina; -2018-11-30T18:00:58Z;Nathália;850.0462;114641817;Argentina; -2018-11-30T17:50:40Z;Eduardo;2449.202;115842614;Argentina; -2018-11-30T17:21:39Z;Ana;1165.195;115877049;Argentina; -2018-11-30T16:51:02Z;Nathália;723.1678;115162492;Argentina; -2018-11-30T16:49:43Z;Júlio Cesar;4569.789;115653653;Argentina; -2018-11-30T16:38:47Z;Ana;2711.546;115340059;Argentina; -2018-11-30T16:01:42Z;Ana;788.5222;114929342;Argentina; -2018-11-30T15:55:16Z;Eduardo;346.9147;114410375;Argentina; -2018-11-30T15:54:45Z;Júlio;1260.621;115303203;Argentina; -2018-11-30T15:46:58Z;Eduardo;300.2193;115706102;Argentina; -2018-11-30T15:32:47Z;Eduardo;872.2564;115966520;Argentina; -2018-11-30T15:04:44Z;nathalia;278.7676;115998225;Argentina; -2018-11-30T14:48:36Z;Júlio Cesar;883.9856;114884073;Argentina; -2018-11-30T14:37:45Z;Júlio Cesar;826.9802;114684122;Argentina; -2018-11-30T14:36:55Z;Sandra;723.9306;114708915;Argentina; -2018-11-30T14:32:45Z;Nathália;1871.577;116105298;Argentina; -2018-11-30T14:06:52Z;Nathália;3645.393;114792816;Argentina; -2018-11-30T14:06:32Z;Júlio;399.015;115484395;Argentina; -2018-11-30T13:54:57Z;Júlio;14.23021;115704556;Argentina; -2018-11-30T13:46:34Z;nathalia;3190.509;116381724;Argentina; -2018-11-30T12:37:02Z;Eduardo;201.7534;115999265;Argentina; -2018-11-30T12:13:06Z;Júlio Cesar;365.7493;115557879;Argentina; -2018-11-30T12:08:33Z;Sandra;545.3981;116300797;Argentina; -2018-11-30T11:43:03Z;nathalia;3756.932;115103432;Argentina; -2018-11-30T11:02:30Z;Eduardo;79.57708;115551289;Argentina; -2018-11-30T10:43:23Z;Ana;1931.085;115325031;Argentina; -2018-11-30T10:39:04Z;Júlio;344.7298;115734019;Argentina; -2018-11-30T10:30:23Z;Nathália;3271.114;115677973;Argentina; -2018-11-30T10:28:02Z;Júlio Cesar;3951.35;115398586;Argentina; -2018-11-30T10:16:28Z;nathalia;1342.241;115938105;Argentina; -2018-11-30T10:11:01Z;Nathália;597.1422;116323140;Argentina; -2018-11-30T10:06:02Z;Eduardo;255.0263;116202797;Argentina; -2018-11-30T09:42:53Z;nathalia;481.8823;114600498;Argentina; -2018-11-30T09:42:19Z;Eduardo;1668.506;114867009;Argentina; -2018-11-30T09:12:08Z;Sandra;110.4089;115163155;Argentina; -2018-11-30T09:07:13Z;Armando;2823.74;116000306;Argentina; -2018-11-30T08:38:48Z;Júlio Cesar;669.1238;115392356;Argentina; -2018-11-30T08:16:52Z;Nathália;117.3314;116035226;Argentina; -2018-11-30T07:49:06Z;Eduardo;1461.926;115926630;Argentina; -2018-11-30T07:32:32Z;Eduardo;1114.503;115070906;Argentina; -2018-11-30T07:29:06Z;nathalia;1390.099;115613128;Argentina; -2018-11-30T07:09:54Z;nathalia;5619.847;115005190;Argentina; -2018-11-30T07:02:51Z;Eduardo;778.9048;114650774;Argentina; -2018-11-30T06:40:50Z;Nathália;136.5106;114724159;Argentina; -2018-11-30T06:37:52Z;Ana;2323.901;115232866;Argentina; -2018-11-30T06:30:16Z;Júlio;184.0015;114359913;Argentina; -2018-11-30T05:05:59Z;Eduardo;213.5252;115861397;Argentina; -2018-11-30T04:39:16Z;nathalia;1437.112;115781210;Argentina; -2018-11-30T04:17:33Z;Nathália;2933.682;115494892;Argentina; -2018-11-30T03:35:53Z;nathalia;477.2104;114717598;Argentina; -2018-11-30T01:26:32Z;Sandra;628.8601;115474740;Argentina; -2018-11-30T01:24:46Z;Júlio Cesar;1368.297;115097299;Argentina; -2018-11-30T01:21:54Z;Armando;3218.463;114799318;Argentina; -2018-11-30T00:51:42Z;Eduardo;96.86764;114440617;Argentina; -2018-11-30T00:48:42Z;Sandra;1583.514;114891474;Argentina; -2018-11-30T00:36:14Z;Armando;1507.638;115328298;Argentina; -2018-11-30T00:28:31Z;Ana;1262.883;115460515;Argentina; -2018-11-29T23:58:37Z;Nathália;2817.223;116159109;Argentina; -2018-11-29T23:53:02Z;Eduardo;2932.948;116367952;Argentina; -2018-11-29T23:18:09Z;Júlio;1960.877;114740128;Argentina; -2018-11-29T23:14:44Z;Nathália;1428.866;114251115;Argentina; -2018-11-29T22:41:47Z;Nathália;1836.157;114428577;Argentina; -2018-11-29T22:39:52Z;Sandra;126.7338;116107219;Argentina; -2018-11-29T22:36:35Z;Armando;1069.015;116320454;Argentina; -2018-11-29T22:17:45Z;Armando;548.4313;115350046;Argentina; -2018-11-29T22:10:24Z;Eduardo;1271.387;114938828;Argentina; -2018-11-29T20:58:09Z;Ana;1115.876;114798895;Argentina; -2018-11-29T20:52:07Z;Sandra;1029.432;116096067;Argentina; -2018-11-29T20:51:08Z;Eduardo;815.9234;115873399;Argentina; -2018-11-29T20:46:24Z;Eduardo;223.3679;116216491;Argentina; -2018-11-29T20:43:23Z;Nathália;1060.202;115062303;Argentina; -2018-11-29T19:42:19Z;Ana;16.37672;114352750;Argentina; -2018-11-29T19:39:25Z;Eduardo;113.5479;115953670;Argentina; -2018-11-29T19:26:42Z;Sandra;1359.027;116261498;Argentina; -2018-11-29T19:24:36Z;Ana;1009.352;116125783;Argentina; -2018-11-29T19:01:29Z;Nathália;237.119;115749080;Argentina; -2018-11-29T18:57:43Z;Nathália;835.6755;115569753;Argentina; -2018-11-29T18:45:33Z;Sandra;3869.204;115249499;Argentina; -2018-11-29T18:44:39Z;nathalia;668.4905;115653386;Argentina; -2018-11-29T18:25:39Z;Eduardo;1012.273;114529148;Argentina; -2018-11-29T17:52:50Z;Ana;706.9057;114582567;Argentina; -2018-11-29T17:50:17Z;nathalia;2539.875;116257081;Argentina; -2018-11-29T17:28:34Z;Ana;1586.154;116056335;Argentina; -2018-11-29T17:24:49Z;Armando;280.0061;114903052;Argentina; -2018-11-29T17:10:41Z;Nathália;2139.043;114286368;Argentina; -2018-11-29T16:47:26Z;Armando;495.5628;115982325;Argentina; -2018-11-29T16:26:32Z;Nathália;1022.448;114866187;Argentina; -2018-11-29T16:06:05Z;Júlio Cesar;2925.45;116132077;Argentina; -2018-11-29T15:49:14Z;Júlio;482.2216;115795371;Argentina; -2018-11-29T15:48:16Z;Júlio Cesar;1307.117;115331340;Argentina; -2018-11-29T15:31:02Z;Nathália;491.0044;114666010;Argentina; -2018-11-29T14:38:50Z;Júlio Cesar;387.3718;115495591;Argentina; -2018-11-29T14:19:51Z;nathalia;3222.258;115987386;Argentina; -2018-11-29T14:16:51Z;Júlio;1094.458;114873580;Argentina; -2018-11-29T13:58:53Z;nathalia;1209.619;114420434;Argentina; -2018-11-29T13:47:55Z;Nathália;3593.621;116356231;Argentina; -2018-11-29T13:08:04Z;Nathália;1100.983;116125414;Argentina; -2018-11-29T13:05:20Z;Júlio;831.8928;115625339;Argentina; -2018-11-29T12:57:03Z;Sandra;1914.439;114935593;Argentina; -2018-11-29T12:51:52Z;Ana;1714.49;115155441;Argentina; -2018-11-29T12:13:36Z;Sandra;3357.458;116057776;Argentina; -2018-11-29T12:11:20Z;Eduardo;1861.052;115429386;Argentina; -2018-11-29T12:04:37Z;Nathália;3375.534;114370290;Argentina; -2018-11-29T11:51:10Z;Ana;633.8086;114270171;Argentina; -2018-11-29T11:50:15Z;Eduardo;3052.724;114470003;Argentina; -2018-11-29T11:46:57Z;Armando;1467.116;115625719;Argentina; -2018-11-29T11:30:35Z;Armando;61.03228;114575658;Argentina; -2018-11-29T11:26:46Z;Júlio;513.7526;115348758;Argentina; -2018-11-29T10:57:48Z;nathalia;1289.568;114410393;Argentina; -2018-11-29T10:56:58Z;Nathália;11.82555;115677754;Argentina; -2018-11-29T10:53:52Z;Armando;1406.207;116249388;Argentina; -2018-11-29T10:50:48Z;Armando;3200.512;115443620;Argentina; -2018-11-29T10:21:20Z;Júlio;4187.346;114581262;Argentina; -2018-11-29T10:11:04Z;nathalia;327.0682;115099311;Argentina; -2018-11-29T10:06:44Z;Armando;1042.899;115486421;Argentina; -2018-11-29T09:53:07Z;Júlio Cesar;345.7136;115794460;Argentina; -2018-11-29T09:42:58Z;Armando;1563.811;115953301;Argentina; -2018-11-29T09:29:36Z;Nathália;8.758345;114301980;Argentina; -2018-11-29T09:29:32Z;Sandra;2752.055;114307836;Argentina; -2018-11-29T09:02:46Z;Eduardo;225.9816;114894016;Argentina; -2018-11-29T08:56:16Z;Júlio Cesar;1067.748;114831974;Argentina; -2018-11-29T08:51:15Z;Nathália;319.9354;114910083;Argentina; -2018-11-29T08:16:40Z;nathalia;3269.451;115706812;Argentina; -2018-11-29T08:12:52Z;Nathália;326.4671;115681814;Argentina; -2018-11-29T08:03:43Z;Ana;3224.544;114277002;Argentina; -2018-11-29T08:02:26Z;nathalia;1677.013;115326716;Argentina; -2018-11-29T07:54:57Z;nathalia;700.7136;115868502;Argentina; -2018-11-29T07:39:14Z;Sandra;1554.373;115578275;Argentina; -2018-11-29T07:32:53Z;Júlio Cesar;1310.676;115544935;Argentina; -2018-11-29T07:29:16Z;Ana;361.3381;116126586;Argentina; -2018-11-29T07:26:59Z;nathalia;1575.29;114586417;Argentina; -2018-11-29T07:23:37Z;Sandra;3917.224;114673896;Argentina; -2018-11-29T07:03:09Z;Sandra;1668.074;115469391;Argentina; -2018-11-29T06:48:56Z;Júlio Cesar;3069.212;115446073;Argentina; -2018-11-29T06:42:35Z;Eduardo;1188.824;115909706;Argentina; -2018-11-29T06:20:25Z;Eduardo;2973.337;114405843;Argentina; -2018-11-29T06:16:18Z;Nathália;921.9651;115044848;Argentina; -2018-11-29T06:14:29Z;Júlio;768.3418;114659887;Argentina; -2018-11-29T06:12:54Z;Júlio;3446.028;115375990;Argentina; -2018-11-29T06:12:02Z;Sandra;6392.988;114228397;Argentina; -2018-11-29T05:45:47Z;Sandra;1545.997;116266591;Argentina; -2018-11-29T05:34:47Z;Nathália;2310.663;115336883;Argentina; -2018-11-29T05:13:41Z;Nathália;2316.541;116209326;Argentina; -2018-11-29T05:07:20Z;Sandra;1843.8;114923553;Argentina; -2018-11-29T05:05:19Z;Ana;1603.807;114641908;Argentina; -2018-11-29T04:46:33Z;Eduardo;101.0957;116328212;Argentina; -2018-11-29T04:36:45Z;Armando;432.3981;115477553;Argentina; -2018-11-29T04:30:17Z;Júlio Cesar;243.8528;114823748;Argentina; -2018-11-29T04:24:36Z;Eduardo;1609.453;115858458;Argentina; -2018-11-29T03:52:02Z;Júlio Cesar;2492.899;114289642;Argentina; -2018-11-29T03:18:37Z;Júlio Cesar;778.5577;116067818;Argentina; -2018-11-29T03:07:59Z;Ana;2028.404;114673384;Argentina; -2018-11-29T02:21:14Z;Ana;1521.009;114442075;Argentina; -2018-11-29T02:00:41Z;Júlio Cesar;136.8156;114281434;Argentina; -2018-11-29T01:42:14Z;Armando;1949.524;115819987;Argentina; -2018-11-29T01:26:52Z;Nathália;617.575;114942451;Argentina; -2018-11-29T01:25:30Z;Júlio Cesar;777.6264;114356663;Argentina; -2018-11-29T01:02:18Z;Eduardo;7.943355;115153935;Argentina; -2018-11-29T00:54:21Z;Sandra;98.11175;114342772;Argentina; -2018-11-29T00:38:37Z;Eduardo;293.5911;114850054;Argentina; -2018-11-29T00:03:21Z;Sandra;1500.935;115916448;Argentina; -2018-11-28T23:58:44Z;Eduardo;1069.131;115541605;Argentina; -2018-11-28T23:48:58Z;Júlio;5848.946;115614840;Argentina; -2018-11-28T23:45:29Z;Júlio Cesar;1401.351;116118320;Argentina; -2018-11-28T23:19:10Z;Armando;1148.825;116078688;Argentina; -2018-11-28T23:16:57Z;Sandra;4081.583;114827902;Argentina; -2018-11-28T23:14:06Z;Eduardo;3206.048;115176707;Argentina; -2018-11-28T23:11:56Z;Nathália;351.3748;114349217;Argentina; -2018-11-28T23:01:10Z;Júlio;776.8878;114458405;Argentina; -2018-11-28T22:13:38Z;Ana;1469.394;115440578;Argentina; -2018-11-28T22:08:34Z;Júlio;537.8513;115570215;Argentina; -2018-11-28T21:46:16Z;Ana;290.0602;114501572;Argentina; -2018-11-28T21:35:34Z;Eduardo;493.7691;116378314;Argentina; -2018-11-28T21:34:19Z;Nathália;1887.507;114491909;Argentina; -2018-11-28T21:17:21Z;Armando;801.6006;115441552;Argentina; -2018-11-28T21:11:58Z;Nathália;2485.017;115999958;Argentina; -2018-11-28T21:04:23Z;Ana;1901.488;114356078;Argentina; -2018-11-28T20:49:18Z;Nathália;2716.926;115154769;Argentina; -2018-11-28T20:31:13Z;Sandra;3795.228;114333441;Argentina; -2018-11-28T20:07:48Z;nathalia;1007.838;114446559;Argentina; -2018-11-28T19:29:20Z;Nathália;30.10687;115217781;Argentina; -2018-11-28T19:02:23Z;Nathália;1490.944;115749761;Argentina; -2018-11-28T18:55:43Z;nathalia;3186.966;115834887;Argentina; -2018-11-28T18:44:41Z;Armando;31.89929;116342149;Argentina; -2018-11-28T18:43:48Z;Armando;883.321;115123259;Argentina; -2018-11-28T18:31:21Z;Eduardo;1475.264;116320362;Argentina; -2018-11-28T18:31:12Z;Armando;1454.718;114843081;Argentina; -2018-11-28T18:22:51Z;Sandra;7.322955;115428382;Argentina; -2018-11-28T17:51:48Z;Armando;441.09;115152541;Argentina; -2018-11-28T17:50:22Z;Júlio;534.223;116264473;Argentina; -2018-11-28T17:48:12Z;Armando;107.8221;115012531;Argentina; -2018-11-28T17:47:22Z;Nathália;174.7347;114278791;Argentina; -2018-11-28T17:42:35Z;Armando;2384.758;114531247;Argentina; -2018-11-28T17:27:36Z;Júlio;152.463;115291007;Argentina; -2018-11-28T17:24:24Z;Júlio;138.1763;114889006;Argentina; -2018-11-28T17:15:40Z;Armando;69.654;114998160;Argentina; -2018-11-28T17:01:54Z;Nathália;3318.478;114757530;Argentina; -2018-11-28T16:59:04Z;Júlio;745.7828;114323398;Argentina; -2018-11-28T16:52:31Z;Eduardo;1454.415;115740729;Argentina; -2018-11-28T16:32:34Z;Sandra;1207.101;115499587;Argentina; -2018-11-28T16:24:22Z;Armando;1159.734;115973517;Argentina; -2018-11-28T16:07:22Z;Nathália;865.9957;114877628;Argentina; -2018-11-28T16:05:09Z;Sandra;4008.485;114582354;Argentina; -2018-11-28T15:41:21Z;Nathália;202.5756;116085033;Argentina; -2018-11-28T15:34:28Z;Júlio Cesar;1461.23;115529362;Argentina; -2018-11-28T15:12:54Z;nathalia;454.7022;116100848;Argentina; -2018-11-28T13:45:51Z;Ana;2898.587;114365077;Argentina; -2018-11-28T13:35:15Z;nathalia;3808.15;115183501;Argentina; -2018-11-28T13:30:18Z;Ana;1571.882;114703010;Argentina; -2018-11-28T13:25:47Z;Júlio Cesar;75.17037;115780922;Argentina; -2018-11-28T13:23:53Z;Júlio;17.65088;115023874;Argentina; -2018-11-28T12:47:25Z;Sandra;1396.085;114458077;Argentina; -2018-11-28T12:35:16Z;Ana;965.9442;114406092;Argentina; -2018-11-28T12:30:59Z;Júlio;2202.372;114912379;Argentina; -2018-11-28T12:19:37Z;Sandra;1541.981;115595513;Argentina; -2018-11-28T11:49:15Z;Armando;118.8529;116022963;Argentina; -2018-11-28T11:46:28Z;Júlio;1083.281;114695769;Argentina; -2018-11-28T11:11:21Z;Júlio;2324.539;115153348;Argentina; -2018-11-28T10:44:37Z;Armando;697.9949;116279447;Argentina; -2018-11-28T10:31:16Z;Eduardo;314.004;114878494;Argentina; -2018-11-28T10:29:51Z;Eduardo;2727.877;115156497;Argentina; -2018-11-28T10:16:51Z;nathalia;842.9795;115991172;Argentina; -2018-11-28T09:43:34Z;Eduardo;410.9847;115718604;Argentina; -2018-11-28T09:37:56Z;Nathália;809.3277;114990564;Argentina; -2018-11-28T09:35:17Z;Sandra;1632.701;115673498;Argentina; -2018-11-28T09:03:24Z;Nathália;3538.317;116295649;Argentina; -2018-11-28T08:05:22Z;Sandra;2962.254;115996401;Argentina; -2018-11-28T06:58:38Z;Armando;1361.96;116272050;Argentina; -2018-11-28T06:35:22Z;Júlio Cesar;2240.736;115596261;Argentina; -2018-11-28T06:34:31Z;Ana;1538.311;115321703;Argentina; -2018-11-28T06:20:47Z;Eduardo;600.4031;114567197;Argentina; -2018-11-28T06:12:49Z;nathalia;577.1848;115219610;Argentina; -2018-11-28T06:10:59Z;Eduardo;321.8505;114565233;Argentina; -2018-11-28T05:54:25Z;Ana;549.6683;116044564;Argentina; -2018-11-28T05:19:34Z;Júlio;1888.071;116069882;Argentina; -2018-11-28T04:40:50Z;Sandra;359.2996;114855443;Argentina; -2018-11-28T03:22:23Z;Júlio Cesar;452.9178;114923962;Argentina; -2018-11-28T03:09:51Z;nathalia;1181.175;115001057;Argentina; -2018-11-28T03:07:49Z;Ana;2228.97;115893748;Argentina; -2018-11-28T02:56:44Z;nathalia;2601.694;115380005;Argentina; -2018-11-28T02:53:51Z;nathalia;2035.15;115618995;Argentina; -2018-11-28T02:50:26Z;nathalia;409.428;115166639;Argentina; -2018-11-28T02:10:44Z;Armando;228.898;114541708;Argentina; -2018-11-28T02:07:56Z;nathalia;1128.217;115478304;Argentina; -2018-11-28T01:49:06Z;Júlio Cesar;1918.199;114378724;Argentina; -2018-11-28T01:40:46Z;Armando;1659.228;115261120;Argentina; -2018-11-28T01:36:42Z;Ana;286.6755;114504700;Argentina; -2018-11-28T01:23:09Z;nathalia;2697.976;115211343;Argentina; -2018-11-28T01:20:40Z;Júlio Cesar;3055.477;115234094;Argentina; -2018-11-28T00:58:02Z;Júlio;921.0801;114451094;Argentina; -2018-11-28T00:51:00Z;Nathália;728.1869;115853524;Argentina; -2018-11-28T00:27:59Z;Nathália;23.14273;115626002;Argentina; -2018-11-28T00:00:41Z;Armando;1157.566;114316509;Argentina; -2018-11-27T23:54:31Z;Júlio;2342.668;114733763;Argentina; -2018-11-27T23:52:43Z;Júlio Cesar;1642.462;115187338;Argentina; -2018-11-27T23:51:56Z;Júlio Cesar;498.5176;114448941;Argentina; -2018-11-27T23:11:51Z;Nathália;2392.268;115723695;Argentina; -2018-11-27T23:11:51Z;Nathália;1637.761;116293513;Argentina; -2018-11-27T22:34:21Z;Armando;1565.029;115326955;Argentina; -2018-11-27T22:33:36Z;Júlio Cesar;2631.301;116243836;Argentina; -2018-11-27T22:25:31Z;Júlio;346.8099;116317796;Argentina; -2018-11-27T22:19:55Z;Júlio Cesar;2110.687;114220345;Argentina; -2018-11-27T21:19:25Z;Eduardo;3173.939;115082094;Argentina; -2018-11-27T20:51:08Z;Eduardo;1078.762;114466719;Argentina; -2018-11-27T20:47:21Z;Armando;1544.343;114642843;Argentina; -2018-11-27T20:44:23Z;Nathália;2275.941;115842661;Argentina; -2018-11-27T20:19:08Z;Nathália;767.0167;115600827;Argentina; -2018-11-27T19:43:40Z;Armando;117.6576;115886270;Argentina; -2018-11-27T18:53:17Z;Eduardo;545.498;115811063;Argentina; -2018-11-27T17:42:41Z;Júlio Cesar;232.07;114249019;Argentina; -2018-11-27T17:37:47Z;Eduardo;570.6536;115715525;Argentina; -2018-11-27T17:19:21Z;Júlio Cesar;2989.608;115880311;Argentina; -2018-11-27T17:16:22Z;Sandra;3201.301;116077833;Argentina; -2018-11-27T16:42:35Z;Ana;138.309;116388001;Argentina; -2018-11-27T16:36:49Z;Armando;777.6755;115231382;Argentina; -2018-11-27T15:55:16Z;Eduardo;609.4086;114464700;Argentina; -2018-11-27T15:36:50Z;Armando;213.3038;116084439;Argentina; -2018-11-27T15:35:50Z;Júlio;915.5246;116052872;Argentina; -2018-11-27T15:32:24Z;Nathália;2613.858;115287651;Argentina; -2018-11-27T15:14:07Z;Júlio Cesar;558.0786;116199716;Argentina; -2018-11-27T14:41:35Z;Armando;3049.041;115386107;Argentina; -2018-11-27T14:37:15Z;Eduardo;437.0158;116005899;Argentina; -2018-11-27T14:09:37Z;nathalia;1137.87;115029697;Argentina; -2018-11-27T14:04:55Z;Sandra;1327.439;114650030;Argentina; -2018-11-27T14:01:19Z;nathalia;2640.309;116237133;Argentina; -2018-11-27T13:55:32Z;nathalia;5051.505;114202728;Argentina; -2018-11-27T13:31:34Z;Armando;1467.7;115260120;Argentina; -2018-11-27T13:21:56Z;Armando;1530.486;115740966;Argentina; -2018-11-27T13:04:21Z;Eduardo;335.192;116094957;Argentina; -2018-11-27T12:43:30Z;Ana;3190.348;115142724;Argentina; -2018-11-27T12:37:48Z;Sandra;575.2206;114794622;Argentina; -2018-11-27T12:26:30Z;Ana;40.88233;115033434;Argentina; -2018-11-27T11:44:05Z;Nathália;673.8342;114944460;Argentina; -2018-11-27T11:40:09Z;Júlio Cesar;360.002;115717409;Argentina; -2018-11-27T11:38:54Z;Júlio;433.6535;116248665;Argentina; -2018-11-27T11:21:36Z;Eduardo;81.68159;114213183;Argentina; -2018-11-27T11:18:38Z;Eduardo;1915.147;115234762;Argentina; -2018-11-27T11:03:14Z;Júlio;4603.301;114555671;Argentina; -2018-11-27T10:50:34Z;Júlio Cesar;243.0605;116344357;Argentina; -2018-11-27T09:41:42Z;Armando;542.1817;115166681;Argentina; -2018-11-27T09:33:06Z;Ana;1813.259;115878521;Argentina; -2018-11-27T08:48:33Z;Armando;240.4366;114213357;Argentina; -2018-11-27T08:48:07Z;Júlio Cesar;76.86892;116223258;Argentina; -2018-11-27T08:46:42Z;Armando;705.1334;114360758;Argentina; -2018-11-27T08:44:08Z;Sandra;482.3255;115444836;Argentina; -2018-11-27T08:19:21Z;Sandra;1501.587;114869787;Argentina; -2018-11-27T07:59:59Z;Ana;232.4725;114833526;Argentina; -2018-11-27T07:29:33Z;Eduardo;3347.313;115747279;Argentina; -2018-11-27T07:17:05Z;Júlio Cesar;2809.021;115586277;Argentina; -2018-11-27T06:50:37Z;Eduardo;761.619;115910762;Argentina; -2018-11-27T06:33:51Z;Júlio Cesar;1183.666;114458111;Argentina; -2018-11-27T06:28:12Z;Ana;202.7347;115777952;Argentina; -2018-11-27T05:47:47Z;Júlio Cesar;1028.99;115158708;Argentina; -2018-11-27T05:41:56Z;Nathália;798.6996;115928305;Argentina; -2018-11-27T05:38:39Z;Júlio;1404.864;115499139;Argentina; -2018-11-27T05:08:25Z;Ana;1387.938;115317396;Argentina; -2018-11-27T05:02:36Z;Júlio Cesar;5.824781;115405454;Argentina; -2018-11-27T04:36:06Z;Júlio;2237.272;115355653;Argentina; -2018-11-27T04:16:16Z;Ana;3655.245;114920431;Argentina; -2018-11-27T04:14:57Z;Armando;767.301;114987655;Argentina; -2018-11-27T03:58:15Z;Júlio Cesar;3641.355;115165017;Argentina; -2018-11-27T03:57:22Z;Eduardo;1251.19;116274352;Argentina; -2018-11-27T03:53:29Z;nathalia;3032.205;114465048;Argentina; -2018-11-27T03:44:38Z;Júlio;1764.74;114322478;Argentina; -2018-11-27T03:43:31Z;Armando;1036.524;114942591;Argentina; -2018-11-27T03:20:59Z;Armando;1941.148;114771426;Argentina; -2018-11-27T03:17:30Z;Júlio;3140.974;116327885;Argentina; -2018-11-27T02:52:57Z;Sandra;529.6016;115862621;Argentina; -2018-11-27T02:28:45Z;Ana;1946.639;115848607;Argentina; -2018-11-27T02:28:22Z;Armando;786.4236;114496114;Argentina; -2018-11-27T02:19:54Z;Júlio Cesar;2432.142;115010096;Argentina; -2018-11-27T01:55:41Z;Nathália;1070.388;114759202;Argentina; -2018-11-27T01:54:16Z;nathalia;100.5514;116026750;Argentina; -2018-11-27T01:46:32Z;Nathália;2030.914;114903464;Argentina; -2018-11-27T01:43:11Z;Júlio;2642.27;115618984;Argentina; -2018-11-27T01:25:53Z;Ana;2572.549;116372565;Argentina; -2018-11-27T00:48:51Z;Júlio;232.7193;115649698;Argentina; -2018-11-26T23:49:04Z;Júlio Cesar;4071.206;115953743;Argentina; -2018-11-26T23:48:06Z;Armando;1248.814;115027121;Argentina; -2018-11-26T23:43:20Z;Armando;1291.368;115538933;Argentina; -2018-11-26T23:38:55Z;Nathália;796.8383;115454510;Argentina; -2018-11-26T23:29:12Z;Armando;1968.49;116211343;Argentina; -2018-11-26T23:18:22Z;Júlio;590.8922;115788870;Argentina; -2018-11-26T23:17:00Z;Nathália;301.6369;114624566;Argentina; -2018-11-26T23:13:58Z;Nathália;1498.262;115425216;Argentina; -2018-11-26T22:48:41Z;Sandra;242.8795;114629305;Argentina; -2018-11-26T22:47:58Z;Júlio Cesar;2244.969;114331537;Argentina; -2018-11-26T22:19:41Z;Ana;32.09543;115884823;Argentina; -2018-11-26T22:08:47Z;Júlio;1466.427;116289188;Argentina; -2018-11-26T21:42:10Z;Júlio;1146.187;115909847;Argentina; -2018-11-26T21:23:09Z;Ana;2072.835;115522557;Argentina; -2018-11-26T20:42:36Z;Júlio;4579.584;115915725;Argentina; -2018-11-26T20:30:21Z;Eduardo;2315.244;115276529;Argentina; -2018-11-26T20:23:50Z;Eduardo;570.4389;114911316;Argentina; -2018-11-26T19:58:01Z;Eduardo;2459.157;116057167;Argentina; -2018-11-26T19:41:03Z;Ana;3097.16;114252419;Argentina; -2018-11-26T19:29:30Z;Ana;763.134;114888383;Argentina; -2018-11-26T17:57:02Z;Ana;442.0472;116213957;Argentina; -2018-11-26T17:46:21Z;Eduardo;1792.975;114548838;Argentina; -2018-11-26T17:40:55Z;Júlio;65.30879;116055350;Argentina; -2018-11-26T17:36:40Z;Júlio Cesar;1098.484;114905095;Argentina; -2018-11-26T17:29:21Z;Júlio;1794.458;115468104;Argentina; -2018-11-26T17:09:36Z;nathalia;3371.771;114987518;Argentina; -2018-11-26T16:50:13Z;Eduardo;105.2505;116179749;Argentina; -2018-11-26T16:33:53Z;Ana;520.9356;114410034;Argentina; -2018-11-26T16:24:58Z;Sandra;384.7855;115445083;Argentina; -2018-11-26T16:19:51Z;nathalia;1389.357;114694259;Argentina; -2018-11-26T15:57:02Z;Ana;222.4476;116265736;Argentina; -2018-11-26T14:50:34Z;Júlio;73.10909;115992998;Argentina; -2018-11-26T14:48:15Z;Armando;354.1773;114265876;Argentina; -2018-11-26T14:40:11Z;Eduardo;2426.277;116296431;Argentina; -2018-11-26T14:37:44Z;Júlio;2505.974;115578160;Argentina; -2018-11-26T14:31:47Z;Ana;2996.971;114278851;Argentina; -2018-11-26T13:56:17Z;nathalia;3076.172;115744893;Argentina; -2018-11-26T13:18:31Z;nathalia;2046.675;115339108;Argentina; -2018-11-26T12:44:19Z;Sandra;30.96392;114621276;Argentina; -2018-11-26T12:42:34Z;Júlio;2409.981;114468804;Argentina; -2018-11-26T12:07:58Z;Júlio;3105.109;115588990;Argentina; -2018-11-26T12:00:52Z;Ana;1302.488;114258819;Argentina; -2018-11-26T11:48:50Z;Júlio Cesar;1791.83;114722695;Argentina; -2018-11-26T11:20:11Z;Nathália;1071.093;114612615;Argentina; -2018-11-26T10:42:47Z;Júlio;1150.177;114638049;Argentina; -2018-11-26T10:22:38Z;nathalia;279.4087;115185946;Argentina; -2018-11-26T10:17:40Z;Júlio Cesar;158.779;115303531;Argentina; -2018-11-26T10:04:28Z;Armando;611.8702;115957601;Argentina; -2018-11-26T09:47:33Z;Júlio Cesar;3878.441;114816193;Argentina; -2018-11-26T09:41:08Z;Sandra;1908.024;115582808;Argentina; -2018-11-26T09:34:39Z;Nathália;939.4086;115186294;Argentina; -2018-11-26T09:26:56Z;nathalia;1256.698;114700578;Argentina; -2018-11-26T09:14:56Z;nathalia;1997.754;115472736;Argentina; -2018-11-26T09:14:45Z;Ana;248.8698;115701460;Argentina; -2018-11-26T09:09:20Z;Nathália;382.3355;115064691;Argentina; -2018-11-26T09:00:59Z;Júlio;2887.801;114741674;Argentina; -2018-11-26T08:41:51Z;Júlio;206.4105;115172320;Argentina; -2018-11-26T08:30:10Z;nathalia;1853.046;114741490;Argentina; -2018-11-26T07:56:27Z;Armando;1222.935;115755253;Argentina; -2018-11-26T07:47:34Z;Júlio Cesar;2063.792;114901340;Argentina; -2018-11-26T06:45:55Z;Armando;1247.316;114802855;Argentina; -2018-11-26T06:17:09Z;Júlio Cesar;157.8629;114624787;Argentina; -2018-11-26T05:50:00Z;Júlio;1187.788;115824975;Argentina; -2018-11-26T05:47:06Z;Armando;59.83118;115109733;Argentina; -2018-11-26T05:36:03Z;Júlio Cesar;1148.14;114387987;Argentina; -2018-11-26T05:33:52Z;nathalia;458.2251;115526220;Argentina; -2018-11-26T04:17:08Z;Eduardo;2437.309;114282865;Argentina; -2018-11-26T04:11:35Z;Nathália;291.7943;115150853;Argentina; -2018-11-26T03:52:55Z;Júlio Cesar;2314.166;116364674;Argentina; -2018-11-26T03:25:11Z;Júlio Cesar;647.8413;114601998;Argentina; -2018-11-26T03:12:35Z;Júlio;1642.235;114782514;Argentina; -2018-11-26T03:12:03Z;Eduardo;1535.227;116240066;Argentina; -2018-11-26T03:09:22Z;Nathália;2241.695;114849751;Argentina; -2018-11-26T02:56:00Z;Júlio Cesar;540.4025;114858934;Argentina; -2018-11-26T02:27:47Z;Ana;1836.98;114252137;Argentina; -2018-11-26T02:23:00Z;Armando;1788.688;115112259;Argentina; -2018-11-26T02:18:35Z;Nathália;2459.277;114616398;Argentina; -2018-11-26T01:51:48Z;Júlio;2097.121;114951781;Argentina; -2018-11-26T01:45:05Z;Ana;1596.874;115998968;Argentina; -2018-11-26T01:41:01Z;Armando;163.2235;116023723;Argentina; -2018-11-26T01:25:49Z;Sandra;2193.448;115320646;Argentina; -2018-11-26T01:24:42Z;Armando;163.9314;114943554;Argentina; -2018-11-26T01:20:50Z;Sandra;1465.278;115238118;Argentina; -2018-11-26T00:45:19Z;nathalia;3512.276;115249643;Argentina; -2018-11-26T00:29:55Z;nathalia;3746.158;114956475;Argentina; -2018-11-26T00:11:42Z;Júlio;4039.243;115976991;Argentina; -2018-11-25T23:53:28Z;Eduardo;933.3217;116038320;Argentina; -2018-11-25T23:29:42Z;Sandra;0.2996283;114302779;Argentina; -2018-11-25T23:06:04Z;Eduardo;863.8684;116122420;Argentina; -2018-11-25T22:34:04Z;Júlio;1504.871;114731276;Argentina; -2018-11-25T22:17:35Z;Sandra;5878.487;115167688;Argentina; -2018-11-25T21:51:47Z;Ana;2276.289;115639172;Argentina; -2018-11-25T21:26:59Z;Armando;875.9157;114803665;Argentina; -2018-11-25T21:15:29Z;Júlio;2767.689;114638084;Argentina; -2018-11-25T21:06:35Z;Júlio Cesar;266.4556;116272066;Argentina; -2018-11-25T20:40:14Z;Júlio;2105.953;115121237;Argentina; -2018-11-25T20:31:12Z;Armando;3307.57;116237249;Argentina; -2018-11-25T19:55:36Z;nathalia;1850.035;115357461;Argentina; -2018-11-25T19:40:54Z;Sandra;101.0087;115512754;Argentina; -2018-11-25T19:30:24Z;nathalia;1076.311;114750421;Argentina; -2018-11-25T19:17:34Z;nathalia;867.0244;115819150;Argentina; -2018-11-25T19:08:49Z;Sandra;3178.714;116220360;Argentina; -2018-11-25T18:49:26Z;Armando;792.3433;114773625;Argentina; -2018-11-25T18:44:00Z;Nathália;216.7875;115240229;Argentina; -2018-11-25T18:42:10Z;Armando;3677.649;115778433;Argentina; -2018-11-25T18:39:16Z;Eduardo;208.8982;114692119;Argentina; -2018-11-25T18:28:56Z;nathalia;1783.071;115068115;Argentina; -2018-11-25T17:58:55Z;nathalia;1086.881;115468999;Argentina; -2018-11-25T17:57:16Z;Ana;2182.777;114937410;Argentina; -2018-11-25T17:54:24Z;Júlio Cesar;742.8603;115613114;Argentina; -2018-11-25T17:50:12Z;Júlio Cesar;1233.399;115072633;Argentina; -2018-11-25T17:26:54Z;nathalia;2023.224;116360499;Argentina; -2018-11-25T17:21:23Z;Ana;588.8464;114380232;Argentina; -2018-11-25T17:13:48Z;Júlio Cesar;810.0366;115192997;Argentina; -2018-11-25T16:58:30Z;Nathália;478.4627;115582602;Argentina; -2018-11-25T16:31:41Z;nathalia;416.9285;114228094;Argentina; -2018-11-25T16:24:17Z;Júlio;2259.033;114953532;Argentina; -2018-11-25T16:14:34Z;Júlio;3268.823;114998056;Argentina; -2018-11-25T16:12:32Z;Sandra;1577.535;114625106;Argentina; -2018-11-25T15:52:51Z;Júlio;2467.623;115758508;Argentina; -2018-11-25T15:26:29Z;Júlio;2898.22;116245552;Argentina; -2018-11-25T15:21:51Z;nathalia;128.6407;116271771;Argentina; -2018-11-25T15:19:54Z;Ana;1402.683;114536961;Argentina; -2018-11-25T15:02:08Z;Júlio;365.6263;114469864;Argentina; -2018-11-25T14:48:06Z;Sandra;961.8484;115052645;Argentina; -2018-11-25T14:45:32Z;Júlio Cesar;691.6376;116292466;Argentina; -2018-11-25T14:30:21Z;Júlio Cesar;1158.496;115127727;Argentina; -2018-11-25T14:27:58Z;Armando;1334.779;115417978;Argentina; -2018-11-25T14:20:42Z;Armando;1950.319;115753778;Argentina; -2018-11-25T14:20:36Z;Júlio;266.1088;115090075;Argentina; -2018-11-25T14:20:33Z;Júlio Cesar;2512.019;115526604;Argentina; -2018-11-25T13:53:45Z;Nathália;1629.831;114561448;Argentina; -2018-11-25T13:47:59Z;Júlio Cesar;271.3109;114523970;Argentina; -2018-11-25T13:45:55Z;Nathália;1789.648;115007110;Argentina; -2018-11-25T13:23:36Z;Nathália;633.9062;115003439;Argentina; -2018-11-25T13:06:12Z;Armando;586.2532;114927915;Argentina; -2018-11-25T12:57:57Z;Ana;2006.328;115974150;Argentina; -2018-11-25T12:54:20Z;Júlio Cesar;631.9007;114886432;Argentina; -2018-11-25T12:26:56Z;Ana;2692.694;114330910;Argentina; -2018-11-25T12:15:56Z;Júlio;4074.554;116027838;Argentina; -2018-11-25T11:51:55Z;Nathália;208.8591;115954368;Argentina; -2018-11-25T11:47:12Z;Júlio Cesar;2854.439;116151895;Argentina; -2018-11-25T11:24:47Z;nathalia;4380.871;115783791;Argentina; -2018-11-25T11:04:20Z;Eduardo;1864.579;115464538;Argentina; -2018-11-25T10:56:39Z;Júlio;33.58579;116355580;Argentina; -2018-11-25T10:32:15Z;nathalia;681.1128;116348222;Argentina; -2018-11-25T10:27:42Z;Sandra;791.1909;115399068;Argentina; -2018-11-25T10:25:55Z;Júlio Cesar;106.4465;115599749;Argentina; -2018-11-25T10:13:30Z;Júlio;3200.838;114838024;Argentina; -2018-11-25T09:47:51Z;Júlio;351.3701;114478562;Argentina; -2018-11-25T09:38:47Z;Ana;218.6728;116185639;Argentina; -2018-11-25T09:36:35Z;Eduardo;1.645455;115666767;Argentina; -2018-11-25T09:32:03Z;Júlio;1552.956;114243817;Argentina; -2018-11-25T09:31:29Z;Ana;3386.314;114832442;Argentina; -2018-11-25T09:24:01Z;nathalia;4791.479;115690689;Argentina; -2018-11-25T09:23:10Z;nathalia;999.9903;115221900;Argentina; -2018-11-25T09:12:59Z;Sandra;439.937;114878499;Argentina; -2018-11-25T08:51:21Z;Sandra;46.05136;115660022;Argentina; -2018-11-25T08:46:47Z;Júlio;2346.173;114511112;Argentina; -2018-11-25T08:29:59Z;Sandra;174.3112;114529596;Argentina; -2018-11-25T08:24:20Z;Ana;3763.859;116206211;Argentina; -2018-11-25T07:50:42Z;Júlio Cesar;1941.727;114540320;Argentina; -2018-11-25T07:28:49Z;Júlio Cesar;2268.969;114641419;Argentina; -2018-11-25T07:18:01Z;Sandra;1374.517;115041593;Argentina; -2018-11-25T07:14:00Z;Nathália;3097.59;116194464;Argentina; -2018-11-25T06:43:24Z;Júlio Cesar;3061.066;116020414;Argentina; -2018-11-25T06:24:30Z;Armando;1797.71;114438123;Argentina; -2018-11-25T06:04:38Z;Ana;2054.757;114958164;Argentina; -2018-11-25T05:38:56Z;Júlio Cesar;460.1395;115950981;Argentina; -2018-11-25T05:23:54Z;nathalia;597.4173;114922463;Argentina; -2018-11-25T04:58:20Z;Armando;1074.661;114459288;Argentina; -2018-11-25T04:55:56Z;Júlio Cesar;158.541;114551535;Argentina; -2018-11-25T04:51:17Z;Armando;5491.527;115668582;Argentina; -2018-11-25T04:50:22Z;nathalia;220.0787;114816233;Argentina; -2018-11-25T04:43:49Z;Júlio Cesar;1420.973;115861677;Argentina; -2018-11-25T04:36:07Z;Ana;956.3857;115769909;Argentina; -2018-11-25T04:31:24Z;Nathália;59.98786;115222719;Argentina; -2018-11-25T04:30:23Z;Eduardo;816.476;115566641;Argentina; -2018-11-25T04:27:59Z;nathalia;1337.864;116085814;Argentina; -2018-11-25T04:27:24Z;Sandra;875.1635;115240001;Argentina; -2018-11-25T04:16:51Z;nathalia;1126.335;114763315;Argentina; -2018-11-25T04:12:37Z;Sandra;657.9709;114307407;Argentina; -2018-11-25T03:35:34Z;Sandra;528.1851;115381228;Argentina; -2018-11-25T03:29:35Z;Júlio;538.6996;116303194;Argentina; -2018-11-25T03:22:49Z;Eduardo;881.3016;114425695;Argentina; -2018-11-25T02:54:08Z;Ana;1867.372;114578710;Argentina; -2018-11-25T02:52:19Z;Sandra;188.4679;114975700;Argentina; -2018-11-25T02:40:37Z;Ana;317.3782;114352431;Argentina; -2018-11-25T02:38:04Z;Ana;4436.058;114586157;Argentina; -2018-11-25T02:33:07Z;Júlio Cesar;404.124;115851409;Argentina; -2018-11-25T02:06:30Z;Sandra;1650.166;114797120;Argentina; -2018-11-25T01:53:46Z;Ana;2089.489;116089121;Argentina; -2018-11-25T01:30:20Z;Ana;489.4662;115845510;Argentina; -2018-11-25T01:23:04Z;Nathália;329.4356;116140661;Argentina; -2018-11-25T01:08:07Z;Ana;1795.958;114256596;Argentina; -2018-11-25T01:00:16Z;Nathália;332.0401;115076979;Argentina; -2018-11-25T00:16:02Z;Eduardo;796.7011;114301295;Argentina; -2018-11-25T00:08:51Z;Ana;2516.727;114379392;Argentina; -2018-11-24T23:53:27Z;Júlio Cesar;800.954;115947464;Argentina; -2018-11-24T23:13:28Z;Eduardo;2341.946;115776998;Argentina; -2018-11-24T23:11:57Z;Nathália;4047.532;115507372;Argentina; -2018-11-24T22:36:07Z;Ana;1282.14;115843134;Argentina; -2018-11-24T22:23:16Z;Júlio;637.5702;116066584;Argentina; -2018-11-24T21:49:27Z;Ana;777.4899;116246310;Argentina; -2018-11-24T21:17:25Z;Nathália;835.3894;114893620;Argentina; -2018-11-24T21:16:21Z;nathalia;1833.269;114946542;Argentina; -2018-11-24T21:14:38Z;Eduardo;2171.382;115931886;Argentina; -2018-11-24T20:58:39Z;Júlio;3112.006;115427483;Argentina; -2018-11-24T20:44:40Z;Nathália;3245.739;114728223;Argentina; -2018-11-24T20:31:00Z;Sandra;1190.229;114358803;Argentina; -2018-11-24T20:28:30Z;Júlio Cesar;1693.893;115872307;Argentina; -2018-11-24T20:26:57Z;Júlio;1316.91;116388661;Argentina; -2018-11-24T20:01:21Z;Armando;2092.347;114658598;Argentina; -2018-11-24T19:57:15Z;Eduardo;967.3296;116307931;Argentina; -2018-11-24T19:55:13Z;nathalia;2443.553;115685995;Argentina; -2018-11-24T19:33:21Z;Sandra;2279.675;114558772;Argentina; -2018-11-24T19:12:57Z;Eduardo;1014.862;115074461;Argentina; -2018-11-24T18:07:40Z;Sandra;3359.773;114277274;Argentina; -2018-11-24T18:05:09Z;nathalia;569.5643;115650045;Argentina; -2018-11-24T17:52:47Z;Júlio;4145.889;115239186;Argentina; -2018-11-24T17:42:53Z;Armando;873.4097;114993807;Argentina; -2018-11-24T17:25:54Z;Nathália;1296.537;114651990;Argentina; -2018-11-24T17:20:30Z;Ana;440.1134;114255795;Argentina; -2018-11-24T17:11:02Z;nathalia;1388.207;114274547;Argentina; -2018-11-24T16:20:40Z;Armando;440.694;114562245;Argentina; -2018-11-24T16:11:03Z;Nathália;218.0914;114916653;Argentina; -2018-11-24T16:05:34Z;nathalia;206.5422;114619702;Argentina; -2018-11-24T16:00:33Z;nathalia;1597.142;116165391;Argentina; -2018-11-24T16:00:04Z;Júlio Cesar;614.2689;115170050;Argentina; -2018-11-24T15:42:13Z;nathalia;4085.451;114504293;Argentina; -2018-11-24T15:39:26Z;Júlio Cesar;130.222;115657877;Argentina; -2018-11-24T15:35:33Z;Ana;671.2765;114534333;Argentina; -2018-11-24T15:24:59Z;Ana;223.0473;116036390;Argentina; -2018-11-24T14:37:29Z;Júlio;2411.626;116365191;Argentina; -2018-11-24T13:57:25Z;Júlio;632.725;115796452;Argentina; -2018-11-24T13:49:38Z;Ana;396.22;114811957;Argentina; -2018-11-24T13:47:47Z;Júlio;2436.654;115420875;Argentina; -2018-11-24T13:32:49Z;nathalia;1337.777;114329416;Argentina; -2018-11-24T13:32:02Z;Júlio Cesar;727.7448;115008644;Argentina; -2018-11-24T13:19:08Z;Júlio Cesar;3828.613;114679319;Argentina; -2018-11-24T13:17:29Z;Júlio Cesar;2138.424;116136965;Argentina; -2018-11-24T13:05:53Z;Sandra;3686.968;116180827;Argentina; -2018-11-24T12:34:21Z;Eduardo;2367.019;116135521;Argentina; -2018-11-24T12:24:50Z;nathalia;2058.812;116123123;Argentina; -2018-11-24T12:03:49Z;Eduardo;987.9418;114433131;Argentina; -2018-11-24T11:43:27Z;nathalia;783.5499;114977985;Argentina; -2018-11-24T11:32:43Z;Júlio;1105.425;114443696;Argentina; -2018-11-24T11:26:01Z;Sandra;118.5418;115451307;Argentina; -2018-11-24T10:47:49Z;Júlio;3601.065;114850071;Argentina; -2018-11-24T10:43:47Z;Eduardo;2140.699;115389810;Argentina; -2018-11-24T10:14:46Z;Sandra;299.2106;114675058;Argentina; -2018-11-24T10:10:46Z;nathalia;59.86805;115331553;Argentina; -2018-11-24T09:46:45Z;Armando;253.2757;115007904;Argentina; -2018-11-24T09:19:47Z;Júlio;51.39782;115715654;Argentina; -2018-11-24T09:10:41Z;Ana;2700.169;114660844;Argentina; -2018-11-24T08:28:49Z;Eduardo;643.3806;114844048;Argentina; -2018-11-24T08:21:42Z;Armando;1791.066;115301477;Argentina; -2018-11-24T08:03:57Z;Nathália;1640.763;115387362;Argentina; -2018-11-24T07:56:57Z;nathalia;1327.248;114670433;Argentina; -2018-11-24T06:55:07Z;nathalia;1259.221;115794769;Argentina; -2018-11-24T06:46:54Z;Sandra;1380.16;115359854;Argentina; -2018-11-24T06:36:17Z;Armando;315.4922;116372681;Argentina; -2018-11-24T06:27:49Z;Sandra;4240.218;115291438;Argentina; -2018-11-24T06:01:09Z;Júlio;1780.286;116330551;Argentina; -2018-11-24T05:39:38Z;Sandra;3011.45;115512357;Argentina; -2018-11-24T05:39:32Z;nathalia;439.9893;115435316;Argentina; -2018-11-24T05:19:33Z;Júlio Cesar;1714.6;114486379;Argentina; -2018-11-24T05:14:09Z;Eduardo;1755;114779431;Argentina; -2018-11-24T05:14:07Z;nathalia;2476.536;114209328;Argentina; -2018-11-24T04:41:37Z;Ana;1315.984;116148650;Argentina; -2018-11-24T04:31:06Z;Ana;881.4898;115968763;Argentina; -2018-11-24T04:01:58Z;Nathália;2735.957;115688669;Argentina; -2018-11-24T03:56:44Z;Sandra;1589.867;115635412;Argentina; -2018-11-24T03:39:12Z;Ana;331.6258;114438063;Argentina; -2018-11-24T03:24:09Z;Eduardo;1463.232;115821773;Argentina; -2018-11-24T03:18:46Z;Nathália;3398.59;115532089;Argentina; -2018-11-24T03:01:08Z;Eduardo;2110.671;115707671;Argentina; -2018-11-24T02:57:22Z;Nathália;2101.804;115840070;Argentina; -2018-11-24T02:46:57Z;Nathália;1044.421;116092770;Argentina; -2018-11-24T02:45:43Z;Júlio;976.5758;116003580;Argentina; -2018-11-24T02:23:45Z;Armando;1101.277;114409188;Argentina; -2018-11-24T01:48:13Z;Júlio;1427.512;115173022;Argentina; -2018-11-24T01:25:06Z;Júlio;261.8763;116187716;Argentina; -2018-11-24T00:27:29Z;Nathália;1357.123;116105399;Argentina; -2018-11-24T00:25:31Z;Júlio Cesar;873.3985;114882884;Argentina; -2018-11-24T00:23:35Z;Nathália;2053.4;114866741;Argentina; -2018-11-24T00:11:28Z;Júlio Cesar;1178.746;114796008;Argentina; -2018-11-23T23:50:10Z;Júlio Cesar;871.9561;114203004;Argentina; -2018-11-23T23:30:50Z;Nathália;1982.62;114558073;Argentina; -2018-11-23T23:25:19Z;Armando;1115.687;115253053;Argentina; -2018-11-23T23:20:16Z;Nathália;1272.538;115927099;Argentina; -2018-11-23T22:56:04Z;Júlio;1284.596;116398828;Argentina; -2018-11-23T22:52:52Z;Júlio Cesar;750.2034;115172545;Argentina; -2018-11-23T22:34:29Z;Sandra;2020.357;116280624;Argentina; -2018-11-23T22:15:12Z;Júlio;454.7068;115663425;Argentina; -2018-11-23T22:01:12Z;Armando;843.6352;115344042;Argentina; -2018-11-23T21:59:25Z;Sandra;1496.144;115396705;Argentina; -2018-11-23T21:51:03Z;Armando;2003.881;115444708;Argentina; -2018-11-23T21:46:37Z;Eduardo;168.0709;114293101;Argentina; -2018-11-23T21:38:37Z;Eduardo;173.4005;115088297;Argentina; -2018-11-23T20:36:40Z;Júlio;97.85804;115522460;Argentina; -2018-11-23T20:36:34Z;Armando;1548.88;115933417;Argentina; -2018-11-23T20:19:33Z;Armando;106.4559;115224907;Argentina; -2018-11-23T19:56:11Z;nathalia;2712.338;114553129;Argentina; -2018-11-23T19:32:49Z;Armando;2682.201;114829512;Argentina; -2018-11-23T19:22:01Z;nathalia;1019.878;115974023;Argentina; -2018-11-23T19:06:47Z;nathalia;381.0863;115654953;Argentina; -2018-11-23T18:57:13Z;Júlio Cesar;1555.004;116177898;Argentina; -2018-11-23T18:54:09Z;Eduardo;1134.785;114550981;Argentina; -2018-11-23T18:53:10Z;nathalia;703.8425;115169031;Argentina; -2018-11-23T18:47:54Z;Ana;23.16343;115530550;Argentina; -2018-11-23T18:27:35Z;nathalia;2743.948;115584206;Argentina; -2018-11-23T18:23:20Z;Sandra;1161.858;114296431;Argentina; -2018-11-23T18:15:36Z;Eduardo;481.0402;115929206;Argentina; -2018-11-23T18:08:27Z;Júlio Cesar;2416.013;116120301;Argentina; -2018-11-23T17:58:54Z;Ana;146.4007;115741820;Argentina; -2018-11-23T17:47:40Z;Nathália;2211.003;114854923;Argentina; -2018-11-23T17:37:39Z;Júlio;682.331;114973850;Argentina; -2018-11-23T17:34:08Z;Júlio;441.5761;115932401;Argentina; -2018-11-23T17:29:15Z;Júlio;3072.597;115585019;Argentina; -2018-11-23T17:28:20Z;nathalia;40.41607;115663301;Argentina; -2018-11-23T17:20:21Z;Júlio Cesar;1527.675;114761118;Argentina; -2018-11-23T16:37:56Z;Armando;579.8284;114699888;Argentina; -2018-11-23T16:27:37Z;Eduardo;3553.533;114242107;Argentina; -2018-11-23T16:06:06Z;Ana;296.1585;116241276;Argentina; -2018-11-23T15:56:58Z;Sandra;1448.859;116137704;Argentina; -2018-11-23T15:43:57Z;nathalia;304.6237;114607814;Argentina; -2018-11-23T15:41:30Z;Júlio Cesar;3155.834;115101166;Argentina; -2018-11-23T15:38:46Z;Júlio Cesar;310.8572;116172222;Argentina; -2018-11-23T15:29:50Z;Armando;1011.286;115439644;Argentina; -2018-11-23T15:13:06Z;Júlio Cesar;737.971;115898226;Argentina; -2018-11-23T15:06:39Z;Júlio Cesar;614.2751;114729790;Argentina; -2018-11-23T15:01:37Z;Nathália;402.1836;114674887;Argentina; -2018-11-23T15:01:33Z;Armando;23.2697;115888045;Argentina; -2018-11-23T14:36:47Z;nathalia;1855.948;114793423;Argentina; -2018-11-23T13:48:54Z;Júlio;3677.729;115872037;Argentina; -2018-11-23T13:20:37Z;Armando;138.5049;115471266;Argentina; -2018-11-23T13:16:48Z;Armando;57.91932;115903601;Argentina; -2018-11-23T13:12:41Z;Júlio Cesar;1128.334;114470583;Argentina; -2018-11-23T12:45:18Z;Júlio Cesar;3690.25;115050180;Argentina; -2018-11-23T12:39:50Z;Júlio;551.005;115043463;Argentina; -2018-11-23T12:28:26Z;Nathália;85.38813;116048375;Argentina; -2018-11-23T12:08:32Z;Eduardo;1014.622;114754350;Argentina; -2018-11-23T11:58:52Z;Eduardo;439.0286;114338952;Argentina; -2018-11-23T11:48:30Z;nathalia;380.5026;115184969;Argentina; -2018-11-23T11:23:54Z;nathalia;995.0294;116263774;Argentina; -2018-11-23T11:03:11Z;Júlio Cesar;836.7239;115732791;Argentina; -2018-11-23T10:47:36Z;Sandra;1453.196;114584433;Argentina; -2018-11-23T10:41:33Z;Eduardo;817.4262;115463418;Argentina; -2018-11-23T10:35:29Z;Sandra;313.0061;115985613;Argentina; -2018-11-23T10:07:27Z;Sandra;2666.174;115460141;Argentina; -2018-11-23T10:00:48Z;Sandra;539.2872;115562275;Argentina; -2018-11-23T08:18:32Z;Armando;225.1583;114931020;Argentina; -2018-11-23T08:12:28Z;Eduardo;1529.19;114757295;Argentina; -2018-11-23T08:04:57Z;Júlio Cesar;4028.204;114585094;Argentina; -2018-11-23T07:44:22Z;Júlio;74.40599;114655897;Argentina; -2018-11-23T07:14:16Z;Nathália;3391.199;115099943;Argentina; -2018-11-23T07:03:12Z;Nathália;3663.854;115006403;Argentina; -2018-11-23T06:04:08Z;nathalia;620.1261;114380936;Argentina; -2018-11-23T05:57:26Z;Eduardo;1751.212;115144580;Argentina; -2018-11-23T05:17:51Z;Eduardo;555.5115;115135169;Argentina; -2018-11-23T05:13:14Z;Sandra;477.671;116007857;Argentina; -2018-11-23T04:56:08Z;Sandra;867.1405;114569349;Argentina; -2018-11-23T03:57:47Z;Ana;392.2628;115407504;Argentina; -2018-11-23T03:27:35Z;Júlio Cesar;102.4695;114784824;Argentina; -2018-11-23T03:08:27Z;Armando;793.4774;114869859;Argentina; -2018-11-23T02:49:32Z;nathalia;4536.177;116177605;Argentina; -2018-11-23T02:48:50Z;Júlio;14.89947;114822840;Argentina; -2018-11-23T02:30:52Z;Ana;2971.288;115230971;Argentina; -2018-11-23T01:51:48Z;Armando;2031.955;115755493;Argentina; -2018-11-23T01:41:29Z;Júlio Cesar;1139.424;114910542;Argentina; -2018-11-23T01:16:31Z;nathalia;3411.381;116307828;Argentina; -2018-11-23T01:13:38Z;Nathália;2351.945;114204742;Argentina; -2018-11-23T01:12:38Z;Eduardo;257.7663;114442098;Argentina; -2018-11-23T00:22:10Z;Júlio;986.794;115700730;Argentina; -2018-11-23T00:21:34Z;Júlio;45.28949;114325343;Argentina; -2018-11-22T23:50:50Z;Júlio;397.687;114939857;Argentina; -2018-11-22T23:48:24Z;Eduardo;529.8411;115227711;Argentina; -2018-11-22T22:59:42Z;Ana;1980.34;115853350;Argentina; -2018-11-22T22:50:30Z;Sandra;1320.998;114274686;Argentina; -2018-11-22T22:39:15Z;Eduardo;2420.616;115675985;Argentina; -2018-11-22T22:34:29Z;Sandra;596.6136;114460349;Argentina; -2018-11-22T21:44:24Z;Júlio Cesar;880.1484;115342331;Argentina; -2018-11-22T21:41:08Z;Ana;2875.025;115153409;Argentina; -2018-11-22T21:24:17Z;Eduardo;145.711;115265711;Argentina; -2018-11-22T21:23:00Z;Júlio Cesar;244.2271;115576732;Argentina; -2018-11-22T21:15:04Z;nathalia;160.1683;114473874;Argentina; -2018-11-22T21:08:39Z;Nathália;1273.77;115688560;Argentina; -2018-11-22T21:02:02Z;Nathália;3821.495;116390209;Argentina; -2018-11-22T20:53:05Z;Sandra;151.3957;114916661;Argentina; -2018-11-22T20:20:37Z;Armando;618.1485;115797156;Argentina; -2018-11-22T20:16:49Z;Ana;401.2621;114861439;Argentina; -2018-11-22T20:08:25Z;Nathália;840.0945;115555299;Argentina; -2018-11-22T19:34:11Z;Nathália;3408.202;115353534;Argentina; -2018-11-22T19:24:11Z;Ana;728.1167;114341428;Argentina; -2018-11-22T19:09:42Z;Júlio Cesar;3757.255;114819901;Argentina; -2018-11-22T19:02:16Z;Eduardo;1261.173;114830138;Argentina; -2018-11-22T18:51:38Z;Júlio Cesar;674.0051;114759967;Argentina; -2018-11-22T18:38:10Z;Sandra;113.7117;115122485;Argentina; -2018-11-22T18:07:20Z;Nathália;495.7566;114679185;Argentina; -2018-11-22T17:23:05Z;Ana;478.2745;114998193;Argentina; -2018-11-22T17:12:29Z;Nathália;1283.483;116166604;Argentina; -2018-11-22T17:02:21Z;Nathália;788.1224;114900373;Argentina; -2018-11-22T16:54:17Z;Júlio Cesar;1155.25;115092668;Argentina; -2018-11-22T16:49:04Z;Júlio;1927.617;114946383;Argentina; -2018-11-22T16:40:59Z;Armando;1352.191;114255626;Argentina; -2018-11-22T16:38:28Z;Eduardo;2220.611;115987794;Argentina; -2018-11-22T16:21:32Z;Ana;2136.909;114451485;Argentina; -2018-11-22T15:39:11Z;Ana;1312.09;116118318;Argentina; -2018-11-22T15:28:04Z;Ana;2599.016;115279028;Argentina; -2018-11-22T14:58:53Z;nathalia;525.8056;114872255;Argentina; -2018-11-22T14:30:10Z;nathalia;3393.107;115282906;Argentina; -2018-11-22T14:10:19Z;Eduardo;420.0807;114671013;Argentina; -2018-11-22T13:48:39Z;Ana;530.4148;115733374;Argentina; -2018-11-22T13:47:19Z;Júlio Cesar;768.9268;114389659;Argentina; -2018-11-22T13:27:14Z;Júlio Cesar;2045.054;115953263;Argentina; -2018-11-22T13:20:17Z;Ana;187.1843;114729024;Argentina; -2018-11-22T13:16:32Z;Armando;446.1337;115792784;Argentina; -2018-11-22T12:56:47Z;Nathália;1100.192;114283424;Argentina; -2018-11-22T12:55:22Z;Ana;3666.292;115747739;Argentina; -2018-11-22T12:53:08Z;Eduardo;3936.428;115457646;Argentina; -2018-11-22T12:23:10Z;Armando;2810.22;115710645;Argentina; -2018-11-22T12:23:00Z;nathalia;502.9554;114548754;Argentina; -2018-11-22T11:39:52Z;Eduardo;364.8774;115973767;Argentina; -2018-11-22T10:14:31Z;Júlio;1647.706;114400226;Argentina; -2018-11-22T09:20:51Z;Ana;1420.105;114682096;Argentina; -2018-11-22T09:13:21Z;Ana;2251.877;116117343;Argentina; -2018-11-22T09:04:26Z;Nathália;881.6674;115113166;Argentina; -2018-11-22T08:33:42Z;Sandra;2305.14;115929600;Argentina; -2018-11-22T08:31:41Z;Eduardo;3549.468;114267538;Argentina; -2018-11-22T08:01:50Z;Armando;2820.224;115231399;Argentina; -2018-11-22T07:45:05Z;Nathália;1304.705;116328071;Argentina; -2018-11-22T07:40:27Z;Ana;2286.164;115721431;Argentina; -2018-11-22T07:37:54Z;Júlio;1028.079;114905998;Argentina; -2018-11-22T07:32:41Z;Armando;1727.645;115053418;Argentina; -2018-11-22T07:32:15Z;Armando;331.3871;116236979;Argentina; -2018-11-22T07:24:32Z;Sandra;2113.306;116299165;Argentina; -2018-11-22T07:21:05Z;Eduardo;4151.471;115941119;Argentina; -2018-11-22T07:15:56Z;Sandra;1561.651;115421026;Argentina; -2018-11-22T05:18:51Z;Sandra;669.2641;115557884;Argentina; -2018-11-22T04:55:17Z;Ana;2659.971;114707221;Argentina; -2018-11-22T04:47:23Z;Júlio Cesar;1473.564;116084127;Argentina; -2018-11-22T04:33:35Z;Armando;1169.353;116134852;Argentina; -2018-11-22T04:29:27Z;Armando;1320.967;116203204;Argentina; -2018-11-22T04:25:26Z;Júlio Cesar;1644.545;115437382;Argentina; -2018-11-22T04:23:44Z;Ana;510.0569;116298092;Argentina; -2018-11-22T04:13:06Z;Júlio;2369.3;115932689;Argentina; -2018-11-22T04:07:17Z;nathalia;1185.605;115320102;Argentina; -2018-11-22T04:06:54Z;Eduardo;1277.189;116290804;Argentina; -2018-11-22T03:55:44Z;Eduardo;1162.201;114387985;Argentina; -2018-11-22T03:20:33Z;Nathália;2085.66;114453903;Argentina; -2018-11-22T03:09:08Z;Júlio Cesar;247.8273;114205685;Argentina; -2018-11-22T02:51:20Z;Júlio;646.9728;115072085;Argentina; -2018-11-22T02:44:39Z;Ana;834.2334;115034433;Argentina; -2018-11-22T02:34:49Z;Armando;1110.285;115030264;Argentina; -2018-11-22T02:26:43Z;Sandra;1317.645;115911251;Argentina; -2018-11-22T02:05:48Z;Júlio;3409.77;115495939;Argentina; -2018-11-22T02:03:39Z;Sandra;2512.498;115284155;Argentina; -2018-11-22T01:47:03Z;Júlio;1024.986;115829751;Argentina; -2018-11-22T01:44:20Z;Ana;3029.39;116091251;Argentina; -2018-11-22T00:58:08Z;Eduardo;613.6728;114803104;Argentina; -2018-11-22T00:50:33Z;Sandra;329.1629;115866761;Argentina; -2018-11-22T00:43:53Z;Júlio;2078.831;115406528;Argentina; -2018-11-22T00:43:35Z;Eduardo;513.257;115522716;Argentina; -2018-11-22T00:40:04Z;Nathália;1194.175;114466874;Argentina; -2018-11-22T00:33:55Z;Júlio;2411.269;116191283;Argentina; -2018-11-21T23:48:24Z;Ana;2859.656;114930676;Argentina; -2018-11-21T22:13:44Z;Ana;207.7685;115671172;Argentina; -2018-11-21T22:06:49Z;Armando;495.9765;114721906;Argentina; -2018-11-21T21:54:03Z;Júlio Cesar;1704.402;114580147;Argentina; -2018-11-21T21:06:19Z;Armando;1219.063;115529773;Argentina; -2018-11-21T20:58:42Z;Júlio;3069.705;114285112;Argentina; -2018-11-21T20:41:43Z;Eduardo;18.31123;116326609;Argentina; -2018-11-21T20:40:56Z;nathalia;527.0967;114652253;Argentina; -2018-11-21T20:35:47Z;Armando;1257.505;115842857;Argentina; -2018-11-21T19:41:02Z;Eduardo;2066.928;115992939;Argentina; -2018-11-21T19:39:54Z;Ana;3921.237;116042252;Argentina; -2018-11-21T19:16:45Z;Sandra;2392.26;114451741;Argentina; -2018-11-21T19:09:48Z;Júlio;1126.778;115864309;Argentina; -2018-11-21T19:04:21Z;Ana;296.1351;115575510;Argentina; -2018-11-21T19:01:22Z;Júlio;425.8056;115045586;Argentina; -2018-11-21T18:54:31Z;Júlio Cesar;1691.701;115355360;Argentina; -2018-11-21T18:39:34Z;Armando;2146.475;114226678;Argentina; -2018-11-21T18:24:20Z;nathalia;2698.45;115200444;Argentina; -2018-11-21T18:21:49Z;Ana;634.0165;115621633;Argentina; -2018-11-21T18:20:22Z;Nathália;2554.091;115494941;Argentina; -2018-11-21T18:17:52Z;Armando;1151.379;115112528;Argentina; -2018-11-21T18:15:05Z;Júlio;996.3518;114487334;Argentina; -2018-11-21T18:05:24Z;Sandra;629.9478;115657904;Argentina; -2018-11-21T18:04:21Z;Júlio;1128.233;115383249;Argentina; -2018-11-21T17:47:23Z;Nathália;2871.143;114385702;Argentina; -2018-11-21T17:38:21Z;Sandra;592.7568;114691916;Argentina; -2018-11-21T17:28:39Z;Eduardo;793.367;115157282;Argentina; -2018-11-21T17:10:35Z;Eduardo;878.0287;114458928;Argentina; -2018-11-21T17:02:16Z;Ana;3730.537;114357383;Argentina; -2018-11-21T16:56:49Z;Ana;2219.237;114774156;Argentina; -2018-11-21T16:55:10Z;Eduardo;138.9895;115967153;Argentina; -2018-11-21T16:42:23Z;Armando;4366.907;115272026;Argentina; -2018-11-21T16:15:43Z;Júlio;1250.926;116192445;Argentina; -2018-11-21T16:13:11Z;Ana;274.8815;116067256;Argentina; -2018-11-21T15:55:04Z;Nathália;1419.007;115560049;Argentina; -2018-11-21T15:42:59Z;nathalia;1012.286;116218355;Argentina; -2018-11-21T15:25:15Z;nathalia;393.5621;116339697;Argentina; -2018-11-21T15:23:23Z;Armando;444.4696;116057592;Argentina; -2018-11-21T15:14:48Z;Nathália;2349.237;115980213;Argentina; -2018-11-21T15:11:53Z;Ana;1937.927;116280703;Argentina; -2018-11-21T15:11:17Z;Júlio;1115.462;116337374;Argentina; -2018-11-21T14:53:40Z;nathalia;603.3541;115346353;Argentina; -2018-11-21T14:48:09Z;Sandra;1570.567;114551117;Argentina; -2018-11-21T14:46:40Z;Júlio;1630.56;114942904;Argentina; -2018-11-21T14:33:17Z;Nathália;977.3716;114509900;Argentina; -2018-11-21T14:14:04Z;Nathália;606.3647;115730217;Argentina; -2018-11-21T14:04:38Z;Júlio Cesar;2314.633;115377704;Argentina; -2018-11-21T13:49:21Z;Júlio Cesar;2869.072;115432541;Argentina; -2018-11-21T13:13:40Z;Armando;2083.676;115158227;Argentina; -2018-11-21T13:01:34Z;Armando;2434.918;116292504;Argentina; -2018-11-21T12:10:15Z;Júlio;2964.806;114217025;Argentina; -2018-11-21T11:52:39Z;Eduardo;1134.106;115275658;Argentina; -2018-11-21T11:24:43Z;Júlio Cesar;4160.467;115699366;Argentina; -2018-11-21T10:35:18Z;Ana;1175.507;115241390;Argentina; -2018-11-21T10:32:31Z;Júlio Cesar;1875.344;115623377;Argentina; -2018-11-21T10:26:12Z;Eduardo;1444.551;116355962;Argentina; -2018-11-21T10:26:08Z;Júlio;232.7301;115119424;Argentina; -2018-11-21T09:53:14Z;Júlio Cesar;3101.515;114579914;Argentina; -2018-11-21T09:39:36Z;Nathália;691.7144;115492444;Argentina; -2018-11-21T09:35:52Z;Sandra;585.3112;116151569;Argentina; -2018-11-21T09:20:54Z;Nathália;3056.315;115255539;Argentina; -2018-11-21T08:54:58Z;Armando;2080.777;115341129;Argentina; -2018-11-21T08:25:17Z;Armando;764.3102;115047509;Argentina; -2018-11-21T07:58:55Z;Ana;1256.018;116339158;Argentina; -2018-11-21T07:56:47Z;Eduardo;1546.544;114334540;Argentina; -2018-11-21T07:21:05Z;Ana;207.6462;116037178;Argentina; -2018-11-21T07:06:36Z;Armando;1829.076;116151995;Argentina; -2018-11-21T06:59:02Z;Nathália;1143.543;115481395;Argentina; -2018-11-21T06:46:58Z;Eduardo;4061.294;114468210;Argentina; -2018-11-21T06:32:03Z;nathalia;732.8535;115989456;Argentina; -2018-11-21T06:28:16Z;Sandra;1510.079;115994413;Argentina; -2018-11-21T06:11:31Z;Armando;1512.966;114888219;Argentina; -2018-11-21T05:15:16Z;Nathália;1736.153;115522468;Argentina; -2018-11-21T05:03:57Z;nathalia;301.0129;115728244;Argentina; -2018-11-21T04:34:16Z;nathalia;2400.233;116102329;Argentina; -2018-11-21T03:52:50Z;Eduardo;1661.458;115042002;Argentina; -2018-11-21T03:46:36Z;Júlio Cesar;3901.566;114763142;Argentina; -2018-11-21T03:44:22Z;nathalia;1312.176;114756062;Argentina; -2018-11-21T03:28:21Z;Armando;1224.743;116382854;Argentina; -2018-11-21T03:12:56Z;Nathália;3079.626;114420436;Argentina; -2018-11-21T03:00:21Z;Júlio Cesar;2489.032;115367748;Argentina; -2018-11-21T02:56:06Z;Ana;210.7257;115346908;Argentina; -2018-11-21T02:14:04Z;Ana;180.1383;115466460;Argentina; -2018-11-21T01:52:41Z;Ana;1728.412;114865315;Argentina; -2018-11-21T01:28:30Z;Armando;695.5713;114552742;Argentina; -2018-11-21T00:59:48Z;Ana;1242.952;115394147;Argentina; -2018-11-21T00:56:47Z;Sandra;341.8358;115565559;Argentina; -2018-11-21T00:49:13Z;Sandra;2327.407;115187309;Argentina; -2018-11-21T00:41:43Z;Eduardo;1009.433;115466933;Argentina; -2018-11-21T00:24:16Z;Eduardo;1851.677;115119948;Argentina; -2018-11-20T23:53:37Z;Sandra;2343.333;115808585;Argentina; -2018-11-20T23:48:33Z;Armando;2641.955;114446485;Argentina; -2018-11-20T23:21:31Z;Ana;3616.06;114916418;Argentina; -2018-11-20T23:07:09Z;Sandra;1395.065;114520856;Argentina; -2018-11-20T23:06:27Z;Nathália;1906.661;114767620;Argentina; -2018-11-20T22:37:20Z;Ana;2442.177;115641499;Argentina; -2018-11-20T22:37:16Z;Nathália;1047.051;115865346;Argentina; -2018-11-20T22:33:26Z;Júlio Cesar;579.812;114753929;Argentina; -2018-11-20T22:24:28Z;nathalia;670.8739;115974360;Argentina; -2018-11-20T22:00:14Z;Júlio Cesar;658.4501;114325251;Argentina; -2018-11-20T21:57:42Z;Ana;1288.102;116048013;Argentina; -2018-11-20T21:57:03Z;Nathália;2211.648;115956252;Argentina; -2018-11-20T21:45:09Z;Nathália;3517.317;114365428;Argentina; -2018-11-20T21:15:48Z;Sandra;733.7466;115665980;Argentina; -2018-11-20T21:14:59Z;Nathália;2240.029;114342529;Argentina; -2018-11-20T21:11:00Z;Sandra;3471.652;116372021;Argentina; -2018-11-20T20:40:12Z;Eduardo;1101.349;116165594;Argentina; -2018-11-20T20:04:02Z;Eduardo;536.9352;115906514;Argentina; -2018-11-20T20:03:49Z;nathalia;1036.519;116111522;Argentina; -2018-11-20T19:27:17Z;Eduardo;793.0324;115201635;Argentina; -2018-11-20T19:25:39Z;Ana;810.6341;115162833;Argentina; -2018-11-20T19:22:30Z;Júlio;1028.137;116392034;Argentina; -2018-11-20T19:04:20Z;Júlio;4505.573;114486053;Argentina; -2018-11-20T18:47:53Z;Armando;1809.256;114226518;Argentina; -2018-11-20T18:38:07Z;Júlio Cesar;879.1062;116045764;Argentina; -2018-11-20T18:36:00Z;Júlio;455.2305;115294562;Argentina; -2018-11-20T18:34:01Z;Nathália;746.7285;115704918;Argentina; -2018-11-20T18:26:01Z;Armando;1476.354;115838051;Argentina; -2018-11-20T18:20:25Z;Ana;2751.67;115892772;Argentina; -2018-11-20T17:52:17Z;Ana;1300.992;115999803;Argentina; -2018-11-20T17:36:29Z;Ana;121.485;114408256;Argentina; -2018-11-20T17:28:24Z;Nathália;2231.184;114203821;Argentina; -2018-11-20T17:23:17Z;nathalia;2223.995;115044021;Argentina; -2018-11-20T16:58:25Z;Júlio;4300.038;115329095;Argentina; -2018-11-20T16:56:09Z;Sandra;887.1456;116322324;Argentina; -2018-11-20T16:55:26Z;Júlio Cesar;207.7399;115129990;Argentina; -2018-11-20T16:49:24Z;Nathália;1262.349;115448600;Argentina; -2018-11-20T16:41:59Z;Júlio Cesar;1365.832;115532829;Argentina; -2018-11-20T16:29:21Z;Sandra;2286.618;114351675;Argentina; -2018-11-20T16:24:19Z;nathalia;659.0694;114219772;Argentina; -2018-11-20T15:59:17Z;Nathália;29.39082;114415804;Argentina; -2018-11-20T14:27:54Z;Ana;1797.334;115779919;Argentina; -2018-11-20T14:00:49Z;nathalia;1475.304;115057783;Argentina; -2018-11-20T13:46:55Z;Júlio Cesar;546.5477;115413524;Argentina; -2018-11-20T13:46:45Z;Sandra;1478.841;114803620;Argentina; -2018-11-20T13:37:57Z;Sandra;608.2753;114326845;Argentina; -2018-11-20T13:31:53Z;Nathália;2706.095;115899395;Argentina; -2018-11-20T13:17:55Z;Sandra;2853.372;116361732;Argentina; -2018-11-20T12:40:06Z;Armando;865.3736;115639277;Argentina; -2018-11-20T12:29:32Z;Ana;983.8527;114436727;Argentina; -2018-11-20T12:16:11Z;Eduardo;1750.378;115390834;Argentina; -2018-11-20T12:10:53Z;Nathália;245.6565;115456778;Argentina; -2018-11-20T11:11:28Z;nathalia;561.3959;116054164;Argentina; -2018-11-20T10:50:07Z;Nathália;3416.803;115564500;Argentina; -2018-11-20T10:32:07Z;nathalia;4601.941;114849145;Argentina; -2018-11-20T10:25:03Z;Eduardo;2885.349;115146591;Argentina; -2018-11-20T09:58:25Z;Nathália;331.3351;114466324;Argentina; -2018-11-20T08:47:00Z;Júlio;218.524;116187604;Argentina; -2018-11-20T08:30:26Z;Sandra;666.6345;114844406;Argentina; -2018-11-20T08:24:26Z;Eduardo;1471.318;115704912;Argentina; -2018-11-20T08:22:51Z;Ana;560.6607;115714887;Argentina; -2018-11-20T08:21:41Z;Eduardo;534.1132;115363365;Argentina; -2018-11-20T08:08:50Z;Eduardo;2304.327;114909613;Argentina; -2018-11-20T07:48:27Z;Ana;4141.615;115335691;Argentina; -2018-11-20T07:43:01Z;Eduardo;2197.027;115150333;Argentina; -2018-11-20T07:37:23Z;nathalia;2632.011;116339574;Argentina; -2018-11-20T06:52:59Z;Armando;226.0524;114829826;Argentina; -2018-11-20T06:51:18Z;Sandra;1386.707;115109493;Argentina; -2018-11-20T06:44:31Z;Armando;313.2337;115511696;Argentina; -2018-11-20T06:36:59Z;nathalia;3833.08;115245711;Argentina; -2018-11-20T06:26:36Z;Júlio Cesar;13.64041;116070327;Argentina; -2018-11-20T06:21:44Z;Eduardo;882.9152;114833769;Argentina; -2018-11-20T06:19:56Z;Ana;1289.864;114938491;Argentina; -2018-11-20T06:17:12Z;Armando;2720.85;114927785;Argentina; -2018-11-20T06:05:41Z;Júlio Cesar;2776.627;115514247;Argentina; -2018-11-20T06:00:05Z;Nathália;4818.735;114618959;Argentina; -2018-11-20T05:56:32Z;Ana;2148.748;115180108;Argentina; -2018-11-20T05:41:03Z;Eduardo;1950.947;115144392;Argentina; -2018-11-20T05:38:13Z;Ana;1515.69;116275901;Argentina; -2018-11-20T04:51:04Z;Armando;1518.09;116130373;Argentina; -2018-11-20T04:45:27Z;Júlio;2686.147;114340175;Argentina; -2018-11-20T03:59:04Z;Armando;1671.765;115062830;Argentina; -2018-11-20T03:26:21Z;Eduardo;249.7175;115602213;Argentina; -2018-11-20T03:20:58Z;Júlio Cesar;80.76253;115901269;Argentina; -2018-11-20T03:05:10Z;Armando;489.0775;115054553;Argentina; -2018-11-20T02:47:39Z;Júlio Cesar;3097.788;114872368;Argentina; -2018-11-20T02:41:58Z;Sandra;22.01918;114319493;Argentina; -2018-11-20T02:35:50Z;nathalia;461.9805;115338486;Argentina; -2018-11-20T02:35:33Z;nathalia;95.63245;115522090;Argentina; -2018-11-20T02:00:20Z;Armando;1703.093;116385729;Argentina; -2018-11-20T01:29:46Z;Eduardo;1932.128;114885412;Argentina; -2018-11-20T01:05:35Z;Nathália;398.9562;116335425;Argentina; -2018-11-20T00:38:16Z;Ana;2421.44;116060707;Argentina; -2018-11-20T00:33:54Z;Ana;1586.335;116032252;Argentina; -2018-11-20T00:00:33Z;Júlio;383.1495;114733089;Argentina; -2018-11-19T23:58:06Z;Sandra;84.40238;115910361;Argentina; -2018-11-19T23:57:38Z;Eduardo;1887.804;116062968;Argentina; -2018-11-19T23:47:39Z;Júlio;1569.391;115415908;Argentina; -2018-11-19T23:22:33Z;Nathália;1046.902;114521509;Argentina; -2018-11-19T22:46:25Z;Armando;722.1357;114499483;Argentina; -2018-11-19T22:17:37Z;nathalia;3075.457;116031278;Argentina; -2018-11-19T22:16:19Z;Júlio;919.0026;116003146;Argentina; -2018-11-19T22:14:54Z;nathalia;412.3809;115409163;Argentina; -2018-11-19T21:37:33Z;nathalia;1035.298;115234984;Argentina; -2018-11-19T21:30:32Z;Júlio Cesar;591.3195;114408558;Argentina; -2018-11-19T21:26:44Z;nathalia;264.2303;116294117;Argentina; -2018-11-19T21:25:25Z;Armando;1142.26;115288510;Argentina; -2018-11-19T20:38:10Z;Ana;784.8319;115673052;Argentina; -2018-11-19T20:26:00Z;Sandra;310.5803;114884224;Argentina; -2018-11-19T20:22:07Z;Sandra;157.8263;115798786;Argentina; -2018-11-19T19:28:26Z;Eduardo;1983.918;115472040;Argentina; -2018-11-19T19:23:11Z;Armando;71.34737;114755234;Argentina; -2018-11-19T18:29:55Z;Júlio Cesar;2311.466;115186306;Argentina; -2018-11-19T17:52:31Z;Sandra;2843.355;114786513;Argentina; -2018-11-19T17:28:16Z;Júlio;2718.741;115857833;Argentina; -2018-11-19T17:25:41Z;Júlio;3382.2;114685143;Argentina; -2018-11-19T17:19:46Z;Eduardo;2267.279;115647654;Argentina; -2018-11-19T17:07:53Z;Júlio Cesar;1719.9;115759426;Argentina; -2018-11-19T16:35:43Z;Júlio Cesar;523.4923;115578692;Argentina; -2018-11-19T15:58:49Z;Sandra;1718.975;114429732;Argentina; -2018-11-19T15:45:30Z;Ana;123.5384;115689373;Argentina; -2018-11-19T15:43:24Z;Júlio;197.6397;114904252;Argentina; -2018-11-19T15:32:56Z;nathalia;502.5111;115335147;Argentina; -2018-11-19T15:02:49Z;Eduardo;2518.327;115294651;Argentina; -2018-11-19T14:50:05Z;Júlio;2490.111;116302867;Argentina; -2018-11-19T14:31:49Z;Ana;1329.422;115633995;Argentina; -2018-11-19T14:21:09Z;Júlio Cesar;582.4841;115235203;Argentina; -2018-11-19T14:15:42Z;Júlio;2402.734;115257211;Argentina; -2018-11-19T13:58:54Z;nathalia;902.6706;116065767;Argentina; -2018-11-19T13:56:21Z;Nathália;1348.444;115644611;Argentina; -2018-11-19T13:51:06Z;Armando;2192.529;114377864;Argentina; -2018-11-19T13:33:06Z;Ana;1180.417;115968266;Argentina; -2018-11-19T13:31:08Z;Júlio;1617.095;115822272;Argentina; -2018-11-19T13:05:21Z;Ana;2207.573;114396140;Argentina; -2018-11-19T12:53:36Z;Eduardo;289.2193;114497905;Argentina; -2018-11-19T12:32:18Z;Eduardo;932.4265;115228720;Argentina; -2018-11-19T12:26:11Z;Júlio Cesar;344.1525;114565759;Argentina; -2018-11-19T12:24:41Z;nathalia;781.2832;114966918;Argentina; -2018-11-19T12:18:57Z;Ana;195.8334;114568346;Argentina; -2018-11-19T12:04:58Z;Ana;2293.535;115815132;Argentina; -2018-11-19T11:52:53Z;Ana;658.7503;114360008;Argentina; -2018-11-19T11:46:01Z;nathalia;1042.453;114222633;Argentina; -2018-11-19T11:26:18Z;Eduardo;2115.947;114538974;Argentina; -2018-11-19T11:21:22Z;Ana;1173.972;114234669;Argentina; -2018-11-19T11:19:02Z;Sandra;3230.28;116378094;Argentina; -2018-11-19T10:58:26Z;Nathália;2313.839;114277947;Argentina; -2018-11-19T10:56:01Z;Sandra;1614.013;114220537;Argentina; -2018-11-19T10:54:32Z;nathalia;2487.898;116370634;Argentina; -2018-11-19T10:11:01Z;nathalia;325.2331;115368292;Argentina; -2018-11-19T10:10:44Z;Nathália;331.4639;116267562;Argentina; -2018-11-19T09:43:50Z;Armando;399.5396;115134565;Argentina; -2018-11-19T09:40:44Z;Sandra;1697.99;115756593;Argentina; -2018-11-19T09:38:58Z;Sandra;194.8617;115869286;Argentina; -2018-11-19T09:23:35Z;Eduardo;269.9008;114674794;Argentina; -2018-11-19T09:08:17Z;Sandra;2255.686;115318250;Argentina; -2018-11-19T09:01:33Z;Júlio Cesar;914.6211;116063601;Argentina; -2018-11-19T08:52:34Z;Eduardo;2557.764;114653318;Argentina; -2018-11-19T08:42:13Z;Armando;408.8028;115811576;Argentina; -2018-11-19T08:37:14Z;Júlio Cesar;2691.333;115238039;Argentina; -2018-11-19T08:36:02Z;Nathália;1470.829;116061494;Argentina; -2018-11-19T08:27:51Z;Júlio Cesar;1255.485;115554766;Argentina; -2018-11-19T08:18:20Z;Eduardo;2392.472;114492358;Argentina; -2018-11-19T07:25:52Z;Júlio Cesar;1267.764;116063965;Argentina; -2018-11-19T06:59:44Z;Nathália;1842.836;114299649;Argentina; -2018-11-19T06:55:20Z;Armando;706.9335;114623797;Argentina; -2018-11-19T06:52:42Z;Júlio Cesar;1398.695;114489890;Argentina; -2018-11-19T06:40:13Z;Nathália;1867.308;116115675;Argentina; -2018-11-19T06:21:00Z;Eduardo;921.092;115990577;Argentina; -2018-11-19T06:12:50Z;Eduardo;1885.839;115807792;Argentina; -2018-11-19T05:54:17Z;Nathália;584.9855;114700606;Argentina; -2018-11-19T05:28:26Z;Júlio;1410.428;115559397;Argentina; -2018-11-19T05:24:17Z;Armando;1285.876;115008395;Argentina; -2018-11-19T05:15:51Z;Júlio;90.09443;116191993;Argentina; -2018-11-19T05:15:02Z;Nathália;403.6522;115814236;Argentina; -2018-11-19T05:12:27Z;Armando;364.4216;115513073;Argentina; -2018-11-19T04:55:03Z;Sandra;1139.056;114213032;Argentina; -2018-11-19T04:33:42Z;Sandra;2455.022;115744649;Argentina; -2018-11-19T03:18:43Z;Júlio;540.7;115128805;Argentina; -2018-11-19T03:07:55Z;Armando;2787.389;115484044;Argentina; -2018-11-19T02:50:36Z;Júlio Cesar;183.2929;116041391;Argentina; -2018-11-19T02:48:30Z;Nathália;537.3579;116317115;Argentina; -2018-11-19T02:44:52Z;Júlio;1186.475;114454466;Argentina; -2018-11-19T02:20:16Z;nathalia;243.0754;115352839;Argentina; -2018-11-19T01:36:37Z;Eduardo;360.699;114736883;Argentina; -2018-11-19T01:24:45Z;nathalia;1786.578;114488676;Argentina; -2018-11-19T01:23:03Z;nathalia;94.93628;115868488;Argentina; -2018-11-19T01:05:03Z;Ana;329.1368;115825417;Argentina; -2018-11-19T00:23:37Z;Nathália;440.442;115126884;Argentina; -2018-11-19T00:05:54Z;Armando;63.90838;114912829;Argentina; -2018-11-18T23:57:46Z;Júlio;549.6268;115949862;Argentina; -2018-11-18T23:55:51Z;Nathália;366.2542;115805409;Argentina; -2018-11-18T23:50:07Z;Sandra;2161.202;115420426;Argentina; -2018-11-18T23:46:08Z;Eduardo;2680.55;115987758;Argentina; -2018-11-18T23:24:49Z;Armando;1161.677;115351113;Argentina; -2018-11-18T23:23:28Z;nathalia;158.5225;114872025;Argentina; -2018-11-18T23:13:17Z;Júlio;2690.769;115783845;Argentina; -2018-11-18T22:58:17Z;Armando;998.3409;114294749;Argentina; -2018-11-18T22:42:25Z;Júlio Cesar;1077.369;115579084;Argentina; -2018-11-18T22:27:46Z;Armando;1294.61;115196053;Argentina; -2018-11-18T22:26:35Z;Eduardo;2810.391;115886141;Argentina; -2018-11-18T21:50:26Z;nathalia;305.8451;114913165;Argentina; -2018-11-18T21:47:03Z;Ana;3087.755;115304331;Argentina; -2018-11-18T21:46:42Z;Júlio Cesar;2164.139;116034832;Argentina; -2018-11-18T21:43:51Z;Nathália;3371.312;114700383;Argentina; -2018-11-18T21:43:42Z;Armando;6.740609;115830326;Argentina; -2018-11-18T21:28:27Z;Júlio;3086.877;114532396;Argentina; -2018-11-18T21:24:18Z;Sandra;949.1749;114551804;Argentina; -2018-11-18T20:41:53Z;Ana;2931.614;114726287;Argentina; -2018-11-18T20:23:33Z;Sandra;167.1424;114766418;Argentina; -2018-11-18T20:17:32Z;Armando;120.7509;116308560;Argentina; -2018-11-18T19:55:04Z;nathalia;1699.299;114690611;Argentina; -2018-11-18T19:52:59Z;Ana;1790.657;116196377;Argentina; -2018-11-18T19:51:54Z;Nathália;1293.268;114799779;Argentina; -2018-11-18T19:35:19Z;Ana;242.3144;115775493;Argentina; -2018-11-18T19:19:30Z;Sandra;3790.827;115422887;Argentina; -2018-11-18T18:52:05Z;Eduardo;2559.081;114226624;Argentina; -2018-11-18T18:49:22Z;Júlio Cesar;2535.615;114253047;Argentina; -2018-11-18T18:30:03Z;Júlio;920.9117;115252467;Argentina; -2018-11-18T18:03:06Z;Júlio Cesar;1879.157;114679623;Argentina; -2018-11-18T17:59:21Z;Sandra;84.03948;115917230;Argentina; -2018-11-18T17:22:41Z;Júlio;1048.233;114557179;Argentina; -2018-11-18T17:20:44Z;Ana;3714.711;114642658;Argentina; -2018-11-18T17:16:16Z;Júlio;691.6618;115068042;Argentina; -2018-11-18T17:03:18Z;Eduardo;151.6944;114652461;Argentina; -2018-11-18T16:28:50Z;nathalia;1476.633;116105658;Argentina; -2018-11-18T16:11:45Z;nathalia;1027.151;114449846;Argentina; -2018-11-18T15:58:05Z;Júlio;358.0819;116169281;Argentina; -2018-11-18T15:46:17Z;Júlio;408.6839;115847249;Argentina; -2018-11-18T15:23:01Z;nathalia;1137.616;115173714;Argentina; -2018-11-18T15:19:21Z;Armando;2501.018;115813527;Argentina; -2018-11-18T15:04:04Z;nathalia;2525.473;116172629;Argentina; -2018-11-18T14:50:15Z;nathalia;529.25;114837016;Argentina; -2018-11-18T14:39:44Z;Eduardo;2903.08;115152398;Argentina; -2018-11-18T14:07:51Z;Armando;2078.513;115617069;Argentina; -2018-11-18T14:04:15Z;Júlio Cesar;281.9299;114373735;Argentina; -2018-11-18T13:51:52Z;Armando;1915.231;115255334;Argentina; -2018-11-18T13:40:29Z;Júlio Cesar;1479.161;115274608;Argentina; -2018-11-18T13:08:27Z;nathalia;1803.711;114423683;Argentina; -2018-11-18T13:02:00Z;Armando;586.6117;115645556;Argentina; -2018-11-18T12:51:21Z;Júlio Cesar;3120.887;115172491;Argentina; -2018-11-18T12:33:48Z;Sandra;1106.374;115244570;Argentina; -2018-11-18T12:19:09Z;Nathália;714.2748;116358792;Argentina; -2018-11-18T12:06:35Z;nathalia;509.8515;114464226;Argentina; -2018-11-18T12:01:35Z;Ana;127.1037;116270771;Argentina; -2018-11-18T11:51:47Z;Ana;1240.144;116344825;Argentina; -2018-11-18T11:35:06Z;nathalia;13.813;114538065;Argentina; -2018-11-18T11:29:19Z;Júlio Cesar;345.3219;115251805;Argentina; -2018-11-18T11:26:14Z;Júlio;895.4185;115764093;Argentina; -2018-11-18T11:24:27Z;Armando;4333.141;115792137;Argentina; -2018-11-18T11:22:54Z;Armando;2903.275;116343068;Argentina; -2018-11-18T11:20:26Z;Ana;524.6785;115020877;Argentina; -2018-11-18T11:12:46Z;Eduardo;291.6121;116028150;Argentina; -2018-11-18T10:58:52Z;Sandra;571.637;115530100;Argentina; -2018-11-18T10:54:15Z;Eduardo;2644.755;116390320;Argentina; -2018-11-18T10:41:43Z;Sandra;292.1537;116073745;Argentina; -2018-11-18T10:30:35Z;Sandra;3195.205;115005216;Argentina; -2018-11-18T10:17:57Z;Júlio;2349.527;115923566;Argentina; -2018-11-18T10:11:17Z;Sandra;1457.478;115810830;Argentina; -2018-11-18T10:09:04Z;Nathália;1014.268;115196846;Argentina; -2018-11-18T10:08:45Z;Júlio Cesar;1837.161;114631493;Argentina; -2018-11-18T09:59:02Z;Sandra;316.1518;116152210;Argentina; -2018-11-18T09:44:15Z;Armando;512.0168;115452416;Argentina; -2018-11-18T09:22:35Z;Júlio;65.5641;115598914;Argentina; -2018-11-18T09:18:58Z;Júlio;2082.785;116214480;Argentina; -2018-11-18T09:05:14Z;Eduardo;632.91010000000006;115167432;Argentina; -2018-11-18T09:04:25Z;Eduardo;3319.751;115152164;Argentina; -2018-11-18T08:57:52Z;Armando;1966.072;116368561;Argentina; -2018-11-18T08:47:31Z;Sandra;691.9968;114575057;Argentina; -2018-11-18T08:34:07Z;Sandra;243.2012;115452096;Argentina; -2018-11-18T08:31:35Z;Ana;451.3204;114340251;Argentina; -2018-11-18T08:07:36Z;Júlio;2043.331;116294494;Argentina; -2018-11-18T07:59:18Z;Nathália;191.393;116100592;Argentina; -2018-11-18T07:51:38Z;Júlio Cesar;1154.203;114465839;Argentina; -2018-11-18T07:45:41Z;Ana;481.7826;116027321;Argentina; -2018-11-18T07:37:44Z;Júlio Cesar;721.4314;114479389;Argentina; -2018-11-18T07:35:37Z;Júlio Cesar;1411.337;115380711;Argentina; -2018-11-18T07:22:58Z;Ana;2086.234;115428251;Argentina; -2018-11-18T07:11:58Z;Eduardo;1915.351;114648341;Argentina; -2018-11-18T06:40:54Z;Júlio;1659.628;116350998;Argentina; -2018-11-18T06:05:13Z;Júlio;1698.661;116328557;Argentina; -2018-11-18T04:54:24Z;Ana;300.2577;116099557;Argentina; -2018-11-18T04:42:54Z;Eduardo;1870.141;115116970;Argentina; -2018-11-18T04:41:05Z;Júlio;1273.516;116067076;Argentina; -2018-11-18T04:39:29Z;Ana;2989.207;116155159;Argentina; -2018-11-18T03:58:41Z;Nathália;2271.91;114452366;Argentina; -2018-11-18T03:36:21Z;nathalia;179.4367;115458625;Argentina; -2018-11-18T03:13:24Z;Ana;1969.919;114749502;Argentina; -2018-11-18T02:47:38Z;Eduardo;1419.387;114918975;Argentina; -2018-11-18T02:46:42Z;Júlio Cesar;2104.136;114580536;Argentina; -2018-11-18T02:45:42Z;nathalia;2905.951;114575463;Argentina; -2018-11-18T02:29:35Z;Júlio;174.7356;114793470;Argentina; -2018-11-18T02:27:13Z;Armando;955.7148;114846648;Argentina; -2018-11-18T02:15:10Z;Júlio Cesar;829.7145;115285063;Argentina; -2018-11-18T02:13:13Z;Eduardo;2198.853;114968186;Argentina; -2018-11-18T02:10:50Z;Júlio;276.9516;114385636;Argentina; -2018-11-18T01:50:28Z;Júlio Cesar;2731.595;116120771;Argentina; -2018-11-18T01:43:12Z;Júlio;170.7222;114829342;Argentina; -2018-11-18T01:42:34Z;Júlio;532.0046;114323468;Argentina; -2018-11-18T01:13:20Z;Júlio;2484.161;116116142;Argentina; -2018-11-18T01:07:56Z;nathalia;460.4026;114704610;Argentina; -2018-11-18T01:05:03Z;Júlio Cesar;113.8005;114582987;Argentina; -2018-11-18T00:21:28Z;nathalia;1297.732;114282632;Argentina; -2018-11-18T00:20:37Z;Sandra;1174.609;115258080;Argentina; -2018-11-18T00:16:52Z;Júlio;2485.725;114409648;Argentina; -2018-11-18T00:12:38Z;Eduardo;4396.741;116142014;Argentina; -2018-11-18T00:04:25Z;Eduardo;817.4184;115379484;Argentina; -2018-11-17T23:43:41Z;Ana;861.841;114319228;Argentina; -2018-11-17T23:30:14Z;Armando;2443.386;116085112;Argentina; -2018-11-17T22:47:43Z;Júlio Cesar;2468.533;114717534;Argentina; -2018-11-17T22:31:46Z;Sandra;3193.704;116255251;Argentina; -2018-11-17T22:25:22Z;Júlio Cesar;2.733641;115021558;Argentina; -2018-11-17T22:20:22Z;Nathália;1947.674;115366502;Argentina; -2018-11-17T22:13:45Z;nathalia;1999.966;115475925;Argentina; -2018-11-17T21:44:01Z;Eduardo;1679.214;114668044;Argentina; -2018-11-17T21:43:07Z;Nathália;1528.078;115848277;Argentina; -2018-11-17T21:42:36Z;Júlio;800.7373;114232324;Argentina; -2018-11-17T21:32:43Z;Sandra;193.21;114370166;Argentina; -2018-11-17T21:21:08Z;nathalia;1685.127;115764019;Argentina; -2018-11-17T21:07:51Z;Nathália;914.9638;114921426;Argentina; -2018-11-17T21:07:49Z;Armando;2206.32;116140172;Argentina; -2018-11-17T20:55:40Z;Sandra;271.9225;115847992;Argentina; -2018-11-17T20:40:02Z;nathalia;39.79764;114360393;Argentina; -2018-11-17T20:35:43Z;nathalia;134.1084;115106963;Argentina; -2018-11-17T20:28:41Z;nathalia;2900.577;115819266;Argentina; -2018-11-17T19:56:04Z;Nathália;569.3472;115897072;Argentina; -2018-11-17T19:43:17Z;Júlio Cesar;3441.843;115364760;Argentina; -2018-11-17T19:04:54Z;Sandra;1134.326;114831222;Argentina; -2018-11-17T19:02:20Z;Júlio Cesar;636.2448;116256457;Argentina; -2018-11-17T19:01:57Z;Armando;619.9431;115282053;Argentina; -2018-11-17T18:53:36Z;Júlio;2767.805;115557067;Argentina; -2018-11-17T18:53:28Z;Nathália;347.2852;115839917;Argentina; -2018-11-17T18:36:47Z;Armando;1558.75;115951691;Argentina; -2018-11-17T18:27:39Z;Ana;3212.877;114366078;Argentina; -2018-11-17T17:54:45Z;Ana;109.8931;114544691;Argentina; -2018-11-17T17:49:57Z;Júlio Cesar;196.8596;116008067;Argentina; -2018-11-17T17:38:59Z;Sandra;1111.289;116114022;Argentina; -2018-11-17T17:08:26Z;Armando;651.5529;114772807;Argentina; -2018-11-17T17:05:40Z;Armando;2079.414;114987586;Argentina; -2018-11-17T17:04:16Z;Nathália;3261.501;115707182;Argentina; -2018-11-17T17:01:48Z;Sandra;912.0678;115320150;Argentina; -2018-11-17T16:58:55Z;Júlio Cesar;36.22226;115488905;Argentina; -2018-11-17T16:58:15Z;Eduardo;1714.636;115818604;Argentina; -2018-11-17T16:23:45Z;Sandra;2652.496;114934392;Argentina; -2018-11-17T16:15:43Z;Júlio;253.7771;115415786;Argentina; -2018-11-17T16:08:14Z;Júlio Cesar;2665.597;115747042;Argentina; -2018-11-17T15:46:29Z;Armando;832.6009;115216249;Argentina; -2018-11-17T15:34:42Z;Sandra;1099.128;114914576;Argentina; -2018-11-17T15:15:15Z;Ana;368.7332;115158462;Argentina; -2018-11-17T13:57:39Z;Armando;1421.995;116294259;Argentina; -2018-11-17T13:02:38Z;Júlio Cesar;1587.701;116265218;Argentina; -2018-11-17T12:48:04Z;Ana;2971.807;115018162;Argentina; -2018-11-17T12:47:18Z;Eduardo;334.2091;114836675;Argentina; -2018-11-17T12:46:35Z;Sandra;819.848;115513428;Argentina; -2018-11-17T12:20:39Z;Júlio;1758.433;114931862;Argentina; -2018-11-17T11:24:36Z;Sandra;4115.353;116249993;Argentina; -2018-11-17T11:07:55Z;Eduardo;2615.455;115861201;Argentina; -2018-11-17T10:31:32Z;Ana;2420.643;115689806;Argentina; -2018-11-17T10:13:17Z;nathalia;3211.395;115114835;Argentina; -2018-11-17T09:43:39Z;Júlio Cesar;1534.089;115619282;Argentina; -2018-11-17T09:41:31Z;Júlio Cesar;302.3435;114405621;Argentina; -2018-11-17T09:28:18Z;nathalia;1722.872;115722094;Argentina; -2018-11-17T09:17:09Z;Nathália;2835.815;115967729;Argentina; -2018-11-17T08:30:21Z;nathalia;817.2664;115905957;Argentina; -2018-11-17T07:41:06Z;Eduardo;322.0617;114279952;Argentina; -2018-11-17T07:35:29Z;nathalia;2229.426;116126301;Argentina; -2018-11-17T07:11:32Z;Sandra;2867.274;114302636;Argentina; -2018-11-17T07:09:35Z;Armando;1001.591;114359891;Argentina; -2018-11-17T06:39:10Z;nathalia;1445.848;116384039;Argentina; -2018-11-17T06:34:50Z;nathalia;2521.809;115145684;Argentina; -2018-11-17T06:03:42Z;nathalia;2793.156;114849105;Argentina; -2018-11-17T05:53:16Z;Eduardo;2767.046;114435193;Argentina; -2018-11-17T05:43:56Z;Júlio;4201.124;116392483;Argentina; -2018-11-17T05:25:04Z;Nathália;333.6477;115266750;Argentina; -2018-11-17T05:17:46Z;Eduardo;2592.111;114928990;Argentina; -2018-11-17T05:11:59Z;Ana;235.381;114816506;Argentina; -2018-11-17T05:03:28Z;Eduardo;1475.038;115277029;Argentina; -2018-11-17T04:56:26Z;nathalia;2831.034;114239133;Argentina; -2018-11-17T04:48:49Z;Júlio;369.5415;114270704;Argentina; -2018-11-17T04:17:41Z;Sandra;363.1437;114523153;Argentina; -2018-11-17T04:13:58Z;nathalia;2931.263;115867353;Argentina; -2018-11-17T04:03:05Z;Júlio Cesar;1569.136;114723926;Argentina; -2018-11-17T04:02:01Z;Júlio;2136.731;114901720;Argentina; -2018-11-17T03:57:01Z;Júlio Cesar;16.13323;115800595;Argentina; -2018-11-17T03:56:10Z;nathalia;512.4991;116169362;Argentina; -2018-11-17T03:18:29Z;Eduardo;901.042;114775180;Argentina; -2018-11-17T02:59:02Z;Nathália;1902.492;115480029;Argentina; -2018-11-17T02:42:39Z;Eduardo;2505.747;116303219;Argentina; -2018-11-17T02:37:54Z;nathalia;593.6603;114644159;Argentina; -2018-11-17T02:32:12Z;Armando;2222.249;115840831;Argentina; -2018-11-17T02:30:56Z;Armando;3520.032;114823911;Argentina; -2018-11-17T02:22:22Z;Ana;1524.156;115372474;Argentina; -2018-11-17T02:07:27Z;Eduardo;1510.684;115777371;Argentina; -2018-11-17T02:05:24Z;Eduardo;1938.88;114339357;Argentina; -2018-11-17T01:57:02Z;Júlio Cesar;4063.992;114534314;Argentina; -2018-11-17T01:41:33Z;Sandra;110.274;114409786;Argentina; -2018-11-17T01:12:47Z;Júlio Cesar;2245.907;115215909;Argentina; -2018-11-17T00:41:53Z;Armando;1115.541;115230818;Argentina; -2018-11-17T00:36:08Z;Sandra;1940.665;116139827;Argentina; -2018-11-17T00:33:20Z;Nathália;956.4824;116108482;Argentina; -2018-11-17T00:28:35Z;Nathália;1156.748;114204212;Argentina; -2018-11-17T00:24:14Z;Eduardo;2335.184;116281831;Argentina; -2018-11-17T00:18:56Z;Ana;564.8034;115447412;Argentina; -2018-11-17T00:13:56Z;Armando;2319.48;114876757;Argentina; -2018-11-17T00:03:35Z;Sandra;1231.847;115897661;Argentina; -2018-11-16T23:57:24Z;Ana;554.9617;115231102;Argentina; -2018-11-16T23:50:11Z;Nathália;2765.068;114801023;Argentina; -2018-11-16T23:48:37Z;Ana;414.7584;115316402;Argentina; -2018-11-16T23:19:00Z;Júlio;4022.027;114704108;Argentina; -2018-11-16T23:15:27Z;Armando;805.1254;115773960;Argentina; -2018-11-16T23:13:34Z;Armando;3254.914;114267913;Argentina; -2018-11-16T22:48:05Z;Júlio;197.0114;114981893;Argentina; -2018-11-16T22:26:15Z;Júlio Cesar;3905.819;115934345;Argentina; -2018-11-16T22:26:06Z;Nathália;2780.349;114297826;Argentina; -2018-11-16T22:21:19Z;Sandra;693.6704;114295900;Argentina; -2018-11-16T22:14:49Z;Ana;2028.17;115979766;Argentina; -2018-11-16T21:57:02Z;Nathália;981.165;115114827;Argentina; -2018-11-16T21:57:00Z;Ana;1499.718;115079245;Argentina; -2018-11-16T21:40:38Z;Júlio Cesar;3430.554;115193142;Argentina; -2018-11-16T21:27:19Z;nathalia;3098.113;115036267;Argentina; -2018-11-16T21:22:03Z;Sandra;2328.525;114390731;Argentina; -2018-11-16T20:42:07Z;Nathália;901.1867;116358055;Argentina; -2018-11-16T20:31:30Z;Armando;67.07511;115503148;Argentina; -2018-11-16T19:51:55Z;Júlio;1000.079;116138576;Argentina; -2018-11-16T19:29:07Z;nathalia;1684.358;116295290;Argentina; -2018-11-16T19:13:31Z;Nathália;726.2406;115662693;Argentina; -2018-11-16T19:00:53Z;nathalia;2484.11;115906079;Argentina; -2018-11-16T18:31:42Z;Ana;116.472;114538254;Argentina; -2018-11-16T17:31:05Z;Júlio;4152.848;115785246;Argentina; -2018-11-16T17:29:22Z;Júlio Cesar;2793.71;115150199;Argentina; -2018-11-16T16:27:56Z;Ana;184.3304;115416536;Argentina; -2018-11-16T16:19:55Z;Ana;2963.664;115247066;Argentina; -2018-11-16T16:17:22Z;Sandra;445.0501;114432316;Argentina; -2018-11-16T16:05:38Z;Júlio Cesar;1880.541;114523426;Argentina; -2018-11-16T16:03:22Z;Júlio;2496.892;114646468;Argentina; -2018-11-16T16:00:52Z;Júlio;949.332;114665398;Argentina; -2018-11-16T15:51:00Z;Armando;416.0439;115129568;Argentina; -2018-11-16T15:45:56Z;Júlio;1518.648;115131277;Argentina; -2018-11-16T15:23:19Z;Nathália;1152.266;115176349;Argentina; -2018-11-16T15:10:48Z;Júlio Cesar;1385.175;116363538;Argentina; -2018-11-16T15:08:40Z;Ana;695.7733;116349561;Argentina; -2018-11-16T14:57:21Z;Sandra;832.6436;115780438;Argentina; -2018-11-16T14:50:30Z;Armando;1413.239;115369019;Argentina; -2018-11-16T14:23:48Z;Sandra;588.5444;115884983;Argentina; -2018-11-16T13:45:40Z;Júlio;411.3428;114516063;Argentina; -2018-11-16T13:36:36Z;Sandra;1114.463;114295954;Argentina; -2018-11-16T13:19:59Z;Nathália;1377.627;114595810;Argentina; -2018-11-16T13:07:03Z;nathalia;276.5507;114997244;Argentina; -2018-11-16T12:50:13Z;nathalia;577.2299;115322658;Argentina; -2018-11-16T12:48:58Z;Nathália;150.5068;115819831;Argentina; -2018-11-16T12:43:17Z;Sandra;813.702;114487323;Argentina; -2018-11-16T12:37:35Z;nathalia;2057.777;116149751;Argentina; -2018-11-16T11:51:16Z;nathalia;2028.124;114641492;Argentina; -2018-11-16T11:36:07Z;Sandra;451.2341;114499208;Argentina; -2018-11-16T11:14:27Z;Ana;2281.529;115771050;Argentina; -2018-11-16T10:03:57Z;Sandra;1732.719;115097037;Argentina; -2018-11-16T09:45:56Z;nathalia;2865.273;115380330;Argentina; -2018-11-16T09:21:36Z;Eduardo;1025.268;115480053;Argentina; -2018-11-16T09:13:37Z;Ana;2354.648;114876714;Argentina; -2018-11-16T09:12:09Z;Ana;329.1951;114949211;Argentina; -2018-11-16T09:03:59Z;Ana;1639.759;114305044;Argentina; -2018-11-16T08:53:25Z;Sandra;1693.28;115241609;Argentina; -2018-11-16T08:37:14Z;Armando;24.68104;115181820;Argentina; -2018-11-16T08:29:20Z;Eduardo;2730.862;114245511;Argentina; -2018-11-16T08:11:56Z;Nathália;1772.499;116077913;Argentina; -2018-11-16T08:00:53Z;Eduardo;3011.691;114931674;Argentina; -2018-11-16T07:48:19Z;Nathália;577.2499;115858665;Argentina; -2018-11-16T06:56:50Z;Nathália;2604.833;114531339;Argentina; -2018-11-16T06:53:18Z;Nathália;1197.436;114779022;Argentina; -2018-11-16T06:48:32Z;Júlio Cesar;1529.763;115421910;Argentina; -2018-11-16T06:38:40Z;Júlio;261.6505;114250654;Argentina; -2018-11-16T06:00:43Z;Júlio;229.8305;114365823;Argentina; -2018-11-16T05:28:51Z;Júlio;1127.198;114923866;Argentina; -2018-11-16T05:24:21Z;Eduardo;725.8969;114968333;Argentina; -2018-11-16T04:16:06Z;Júlio Cesar;586.3299;115765431;Argentina; -2018-11-16T04:12:10Z;Armando;1887.763;114526854;Argentina; -2018-11-16T04:10:21Z;Júlio;3799.028;115589797;Argentina; -2018-11-16T03:17:10Z;Sandra;432.8691;116349809;Argentina; -2018-11-16T03:06:49Z;Ana;799.7858;115524252;Argentina; -2018-11-16T02:51:16Z;Nathália;4900.203;114207163;Argentina; -2018-11-16T02:28:28Z;nathalia;1619.935;114273329;Argentina; -2018-11-16T01:58:43Z;Armando;1771.263;114641364;Argentina; -2018-11-16T01:52:28Z;Eduardo;1450.283;114867414;Argentina; -2018-11-16T01:49:21Z;Sandra;3068.584;115684821;Argentina; -2018-11-16T01:22:46Z;Sandra;222.4998;114780042;Argentina; -2018-11-16T01:13:07Z;nathalia;1586.559;115553560;Argentina; -2018-11-16T01:12:43Z;Sandra;1095.375;116204097;Argentina; -2018-11-16T00:08:02Z;Armando;134.5894;115941554;Argentina; -2018-11-15T23:57:53Z;nathalia;264.637;114227426;Argentina; -2018-11-15T22:58:54Z;Júlio;1666.538;114970488;Argentina; -2018-11-15T22:58:18Z;Sandra;88.7472;115618558;Argentina; -2018-11-15T22:37:15Z;Eduardo;1227.862;115731632;Argentina; -2018-11-15T21:53:49Z;Júlio;703.5965;114223316;Argentina; -2018-11-15T21:01:17Z;Júlio Cesar;1838.827;116298323;Argentina; -2018-11-15T20:59:55Z;Ana;705.365;116073436;Argentina; -2018-11-15T20:51:48Z;Nathália;1426.411;116160539;Argentina; -2018-11-15T20:47:12Z;Eduardo;57.21035;114331395;Argentina; -2018-11-15T20:31:39Z;nathalia;1665.839;115599471;Argentina; -2018-11-15T20:26:09Z;Júlio Cesar;3946.428;116198920;Argentina; -2018-11-15T20:04:28Z;Nathália;2958.333;115878153;Argentina; -2018-11-15T20:01:51Z;Sandra;1989.682;115969319;Argentina; -2018-11-15T19:51:45Z;nathalia;1395.42;114759200;Argentina; -2018-11-15T19:47:00Z;Júlio Cesar;3144.621;115305554;Argentina; -2018-11-15T18:49:18Z;Sandra;1209.971;114862834;Argentina; -2018-11-15T18:44:45Z;Júlio;87.63129;115360811;Argentina; -2018-11-15T18:20:12Z;nathalia;3024.333;116293506;Argentina; -2018-11-15T18:15:19Z;Nathália;1208.397;114938406;Argentina; -2018-11-15T18:12:19Z;Nathália;1823.906;116351872;Argentina; -2018-11-15T17:55:53Z;Júlio Cesar;3101.016;114726406;Argentina; -2018-11-15T17:42:29Z;Nathália;3339.882;116212973;Argentina; -2018-11-15T17:40:13Z;Júlio;750.1511;116054744;Argentina; -2018-11-15T17:39:15Z;nathalia;814.6319;114616651;Argentina; -2018-11-15T17:37:42Z;nathalia;83.2089;115714885;Argentina; -2018-11-15T17:28:58Z;Sandra;3044.329;115795270;Argentina; -2018-11-15T16:36:22Z;Ana;2853.212;116342086;Argentina; -2018-11-15T16:10:27Z;Júlio Cesar;677.7079;114885050;Argentina; -2018-11-15T15:32:42Z;Eduardo;1707.079;115769387;Argentina; -2018-11-15T14:28:17Z;nathalia;1671.294;114738685;Argentina; -2018-11-15T13:49:36Z;nathalia;1815.923;114463684;Argentina; -2018-11-15T13:44:13Z;Eduardo;1710.54;115298352;Argentina; -2018-11-15T13:14:05Z;Ana;654.7335;114348469;Argentina; -2018-11-15T13:05:48Z;Ana;1993.663;115711431;Argentina; -2018-11-15T12:19:39Z;Eduardo;4535.466;114590031;Argentina; -2018-11-15T11:47:48Z;Sandra;1759.979;116115530;Argentina; -2018-11-15T11:39:31Z;Armando;2732.153;116233835;Argentina; -2018-11-15T11:22:17Z;Nathália;3644.178;116262148;Argentina; -2018-11-15T11:08:18Z;Armando;3378.478;116050018;Argentina; -2018-11-15T11:03:07Z;Júlio;281.0332;114359858;Argentina; -2018-11-15T10:17:08Z;Júlio Cesar;1614.281;114688117;Argentina; -2018-11-15T10:08:28Z;Júlio;552.0556;114458406;Argentina; -2018-11-15T09:59:59Z;Sandra;603.3846;116088699;Argentina; -2018-11-15T09:58:50Z;nathalia;1220.02;115328588;Argentina; -2018-11-15T09:40:38Z;Júlio;325.8957;116205483;Argentina; -2018-11-15T08:57:23Z;Armando;1947.434;114207825;Argentina; -2018-11-15T08:41:19Z;Eduardo;688.1437;115643835;Argentina; -2018-11-15T08:28:33Z;Sandra;815.1119;115020116;Argentina; -2018-11-15T08:26:45Z;Eduardo;509.944;115961619;Argentina; -2018-11-15T08:12:43Z;Sandra;345.0724;115304086;Argentina; -2018-11-15T07:35:47Z;Armando;58.3265;116372406;Argentina; -2018-11-15T07:17:39Z;Nathália;780.9275;114430114;Argentina; -2018-11-15T07:13:21Z;Ana;2462.489;115059030;Argentina; -2018-11-15T06:21:24Z;Sandra;755.9904;114875106;Argentina; -2018-11-15T06:13:51Z;Eduardo;1705.638;115553264;Argentina; -2018-11-15T05:54:05Z;Nathália;2858.874;116230444;Argentina; -2018-11-15T05:53:06Z;Júlio;3702.692;116394888;Argentina; -2018-11-15T05:52:19Z;Eduardo;2903.395;116058089;Argentina; -2018-11-15T05:42:53Z;Júlio;513.6604;115439025;Argentina; -2018-11-15T05:10:08Z;nathalia;2605.654;114331917;Argentina; -2018-11-15T05:10:00Z;Sandra;95.86499;115574740;Argentina; -2018-11-15T04:34:36Z;Nathália;755.4637;115689989;Argentina; -2018-11-15T04:31:51Z;Júlio Cesar;1003.258;116219393;Argentina; -2018-11-15T04:23:35Z;Júlio;340.4602;116132474;Argentina; -2018-11-15T04:12:14Z;Armando;263.1901;114902034;Argentina; -2018-11-15T04:05:59Z;Eduardo;969.5282;115310341;Argentina; -2018-11-15T03:48:00Z;Eduardo;308.2202;116345279;Argentina; -2018-11-15T03:46:49Z;Júlio;237.1608;114892100;Argentina; -2018-11-15T03:44:33Z;Júlio;162.5607;115606559;Argentina; -2018-11-15T03:38:41Z;Júlio Cesar;903.9161;114729031;Argentina; -2018-11-15T03:23:57Z;Armando;24.41603;114833456;Argentina; -2018-11-15T03:13:45Z;Júlio;1021.077;115823019;Argentina; -2018-11-15T02:37:20Z;Júlio;1951.182;114694990;Argentina; -2018-11-15T02:26:22Z;Sandra;4391.63;114207760;Argentina; -2018-11-15T02:22:21Z;Júlio Cesar;98.02554;115644074;Argentina; -2018-11-15T02:16:50Z;Eduardo;145.5438;114995860;Argentina; -2018-11-15T02:02:49Z;Ana;359.7493;116397869;Argentina; -2018-11-15T01:59:20Z;Nathália;532.4928;115640876;Argentina; -2018-11-15T01:47:31Z;nathalia;392.2077;114430715;Argentina; -2018-11-15T01:40:45Z;Sandra;342.4256;116339979;Argentina; -2018-11-15T01:31:19Z;nathalia;122.5658;115206264;Argentina; -2018-11-15T01:23:20Z;Sandra;282.59;114691642;Argentina; -2018-11-15T01:08:07Z;nathalia;652.6657;115868300;Argentina; -2018-11-15T00:55:23Z;Júlio;1501.939;115520722;Argentina; -2018-11-15T00:51:50Z;Júlio Cesar;2265.686;115784627;Argentina; -2018-11-15T00:25:55Z;Eduardo;1708.162;115844475;Argentina; -2018-11-15T00:08:51Z;nathalia;2264.948;115869567;Argentina; -2018-11-15T00:01:55Z;Júlio;2077.326;115643653;Argentina; -2018-11-14T23:50:29Z;Júlio Cesar;825.1771;115914981;Argentina; -2018-11-14T23:34:29Z;Nathália;404.5109;116108506;Argentina; -2018-11-14T23:19:51Z;Armando;1087.193;116269688;Argentina; -2018-11-14T23:18:26Z;Sandra;1139.725;115585666;Argentina; -2018-11-14T23:15:08Z;Júlio;198.7637;115934137;Argentina; -2018-11-14T22:52:03Z;Sandra;149.6872;115436389;Argentina; -2018-11-14T22:28:39Z;Nathália;764.5165;115157987;Argentina; -2018-11-14T22:20:20Z;Júlio;1780.78;116108029;Argentina; -2018-11-14T22:15:29Z;Júlio;1821.521;115703757;Argentina; -2018-11-14T21:55:24Z;Eduardo;389.0832;114720646;Argentina; -2018-11-14T21:32:30Z;Eduardo;6084.194;114220305;Argentina; -2018-11-14T20:59:25Z;nathalia;1936.033;115656070;Argentina; -2018-11-14T20:56:20Z;Júlio Cesar;1141.673;115366954;Argentina; -2018-11-14T20:54:08Z;Eduardo;1606.894;114928353;Argentina; -2018-11-14T20:18:57Z;Eduardo;482.7313;116227040;Argentina; -2018-11-14T20:13:33Z;Armando;628.0985;115267964;Argentina; -2018-11-14T20:07:40Z;nathalia;1781.575;114985797;Argentina; -2018-11-14T19:54:19Z;Armando;80.72508;114546202;Argentina; -2018-11-14T19:00:26Z;Júlio;590.6059;116045664;Argentina; -2018-11-14T18:55:22Z;Armando;941.1076;115106477;Argentina; -2018-11-14T18:31:41Z;Sandra;2336.107;115268974;Argentina; -2018-11-14T18:26:15Z;Nathália;79.59686;114671029;Argentina; -2018-11-14T18:02:49Z;Júlio Cesar;5428.885;114220643;Argentina; -2018-11-14T17:57:34Z;Eduardo;1803.14;114540669;Argentina; -2018-11-14T17:46:24Z;Nathália;298.9274;114328625;Argentina; -2018-11-14T17:45:41Z;Nathália;3803.671;116097523;Argentina; -2018-11-14T17:22:35Z;nathalia;1159.596;115156194;Argentina; -2018-11-14T17:16:55Z;Júlio;1012.768;114246271;Argentina; -2018-11-14T17:13:13Z;Júlio;462.5644;115028381;Argentina; -2018-11-14T16:17:30Z;Júlio Cesar;465.2172;114612413;Argentina; -2018-11-14T15:57:10Z;nathalia;2602.808;116231050;Argentina; -2018-11-14T15:48:03Z;Armando;3438.344;115314230;Argentina; -2018-11-14T14:55:14Z;nathalia;1635.011;115377186;Argentina; -2018-11-14T14:46:24Z;Júlio Cesar;2232.544;114505893;Argentina; -2018-11-14T14:45:36Z;Júlio Cesar;1406.059;116052792;Argentina; -2018-11-14T14:26:56Z;Ana;2251.576;116167414;Argentina; -2018-11-14T14:10:23Z;Armando;428.018;114980561;Argentina; -2018-11-14T13:29:04Z;Sandra;2040.174;114709730;Argentina; -2018-11-14T13:25:30Z;Ana;1457.968;114506155;Argentina; -2018-11-14T13:10:28Z;Armando;4233.069;115338760;Argentina; -2018-11-14T12:31:11Z;Júlio Cesar;3884.918;115925768;Argentina; -2018-11-14T12:27:41Z;Armando;935.1758;116347980;Argentina; -2018-11-14T12:11:52Z;Armando;1619.142;114254158;Argentina; -2018-11-14T11:56:25Z;Eduardo;135.9858;114954828;Argentina; -2018-11-14T11:32:43Z;Júlio;1271.751;115456289;Argentina; -2018-11-14T11:28:14Z;Nathália;500.6347;116188496;Argentina; -2018-11-14T11:10:14Z;Júlio;1031.509;115915439;Argentina; -2018-11-14T10:43:35Z;Sandra;441.2978;115706250;Argentina; -2018-11-14T10:35:20Z;Júlio Cesar;1484.839;114337623;Argentina; -2018-11-14T10:33:54Z;nathalia;2182.605;114936740;Argentina; -2018-11-14T10:03:39Z;Sandra;613.1208;116034772;Argentina; -2018-11-14T09:28:05Z;Eduardo;81.65876;114289846;Argentina; -2018-11-14T07:31:32Z;Júlio;1368.744;115179732;Argentina; -2018-11-14T06:21:46Z;Sandra;2086.585;115373617;Argentina; -2018-11-14T06:09:37Z;nathalia;1772.386;114602166;Argentina; -2018-11-14T05:50:26Z;Júlio;116.4904;116035946;Argentina; -2018-11-14T05:43:09Z;Armando;2460.505;116304907;Argentina; -2018-11-14T05:33:36Z;Sandra;1675.002;114501445;Argentina; -2018-11-14T05:21:02Z;Sandra;480.0224;115632345;Argentina; -2018-11-14T04:45:15Z;Armando;2861.49;114547998;Argentina; -2018-11-14T04:42:46Z;Eduardo;98.07179;115232651;Argentina; -2018-11-14T04:27:45Z;Armando;2654.577;114896395;Argentina; -2018-11-14T04:05:06Z;Ana;583.8103;115203342;Argentina; -2018-11-14T03:50:08Z;nathalia;932.1822;115489560;Argentina; -2018-11-14T03:37:29Z;Armando;2148.133;115012877;Argentina; -2018-11-14T03:37:09Z;Eduardo;2547.097;115791978;Argentina; -2018-11-14T03:34:57Z;Júlio Cesar;1347.246;115650770;Argentina; -2018-11-14T03:28:43Z;Júlio;1440.967;115613709;Argentina; -2018-11-14T03:16:00Z;Nathália;1514.437;115415242;Argentina; -2018-11-14T02:58:33Z;Júlio Cesar;313.8438;115064779;Argentina; -2018-11-14T02:26:03Z;Eduardo;1743.323;114256847;Argentina; -2018-11-14T01:44:54Z;Eduardo;163.2289;114224547;Argentina; -2018-11-14T01:40:01Z;nathalia;4284.891;115584622;Argentina; -2018-11-14T01:32:02Z;Nathália;4626.239;115000120;Argentina; -2018-11-14T01:26:38Z;Nathália;2689.555;114388631;Argentina; -2018-11-14T01:23:52Z;Armando;1976.585;114782988;Argentina; -2018-11-14T01:01:19Z;Júlio Cesar;1065.549;115513478;Argentina; -2018-11-14T00:17:50Z;Júlio;720.7294;115058462;Argentina; -2018-11-13T23:50:48Z;Nathália;82.56565;114288269;Argentina; -2018-11-13T23:26:08Z;Júlio;1177.962;114487650;Argentina; -2018-11-13T23:25:51Z;Armando;1104.33;114572450;Argentina; -2018-11-13T22:55:23Z;nathalia;1149.813;116264745;Argentina; -2018-11-13T22:00:23Z;Júlio Cesar;959.5002;114228455;Argentina; -2018-11-13T21:54:18Z;Eduardo;4636.419;114268154;Argentina; -2018-11-13T21:51:14Z;Júlio Cesar;1014.059;114262689;Argentina; -2018-11-13T21:18:30Z;Ana;1999.646;115050741;Argentina; -2018-11-13T21:12:34Z;Armando;306.167;115926640;Argentina; -2018-11-13T20:13:52Z;Eduardo;12.14038;115182839;Argentina; -2018-11-13T19:58:32Z;Nathália;183.9197;115041993;Argentina; -2018-11-13T19:57:29Z;Sandra;833.6432;114289008;Argentina; -2018-11-13T19:55:00Z;Júlio;2264.025;115956072;Argentina; -2018-11-13T19:50:38Z;Júlio Cesar;678.7232;115429416;Argentina; -2018-11-13T19:34:20Z;Eduardo;1455.712;114311315;Argentina; -2018-11-13T19:22:22Z;Armando;1432.835;114542014;Argentina; -2018-11-13T18:55:45Z;Júlio;3072.466;115450054;Argentina; -2018-11-13T18:43:20Z;Júlio;3265.348;116302590;Argentina; -2018-11-13T18:31:35Z;Sandra;250.2368;114256059;Argentina; -2018-11-13T18:29:35Z;Nathália;1775.805;114320359;Argentina; -2018-11-13T18:06:14Z;Júlio;924.8864;116029327;Argentina; -2018-11-13T17:52:16Z;Júlio;1016.474;115540800;Argentina; -2018-11-13T17:33:09Z;Armando;187.1877;116226086;Argentina; -2018-11-13T17:25:39Z;Armando;1976.069;115060165;Argentina; -2018-11-13T17:13:50Z;nathalia;1758.709;114291201;Argentina; -2018-11-13T17:11:46Z;Eduardo;392.5492;115972204;Argentina; -2018-11-13T16:56:47Z;Ana;3159.442;115464348;Argentina; -2018-11-13T16:28:40Z;Sandra;1498.918;114701003;Argentina; -2018-11-13T16:26:56Z;Ana;4578.981;116155385;Argentina; -2018-11-13T16:15:20Z;Sandra;3447.984;115434625;Argentina; -2018-11-13T16:08:50Z;Armando;652.4635;116304152;Argentina; -2018-11-13T16:08:29Z;nathalia;1149.794;114253976;Argentina; -2018-11-13T16:00:20Z;nathalia;1436.962;114555432;Argentina; -2018-11-13T15:59:25Z;Nathália;327.0465;115442009;Argentina; -2018-11-13T15:38:32Z;Sandra;2392.243;116214681;Argentina; -2018-11-13T15:35:44Z;Júlio Cesar;1583.931;114783614;Argentina; -2018-11-13T15:31:41Z;Armando;731.0492;114302290;Argentina; -2018-11-13T15:16:39Z;Ana;1316.072;115869582;Argentina; -2018-11-13T14:53:53Z;Sandra;1187.457;114880996;Argentina; -2018-11-13T14:46:59Z;Júlio Cesar;355.0302;114575074;Argentina; -2018-11-13T14:34:25Z;Armando;792.7657;115566759;Argentina; -2018-11-13T14:34:12Z;Nathália;1514.846;115283318;Argentina; -2018-11-13T13:50:57Z;Armando;507.6456;114909472;Argentina; -2018-11-13T13:39:21Z;Eduardo;1286.023;114632753;Argentina; -2018-11-13T13:19:42Z;nathalia;1840.335;116356941;Argentina; -2018-11-13T13:19:16Z;Júlio Cesar;2568.065;114557717;Argentina; -2018-11-13T13:05:30Z;Nathália;3325.069;114294253;Argentina; -2018-11-13T12:45:53Z;Eduardo;404.9558;115625820;Argentina; -2018-11-13T12:35:14Z;Júlio;144.5366;115284885;Argentina; -2018-11-13T12:31:33Z;Ana;1405.747;115948179;Argentina; -2018-11-13T12:03:56Z;nathalia;1136.255;114411879;Argentina; -2018-11-13T11:55:42Z;Júlio;268.7513;114379658;Argentina; -2018-11-13T11:27:54Z;Sandra;4417.969;114340640;Argentina; -2018-11-13T11:17:39Z;Júlio Cesar;1411.075;114861934;Argentina; -2018-11-13T11:10:52Z;Nathália;78.51963;115393868;Argentina; -2018-11-13T10:53:21Z;Armando;398.8063;115457720;Argentina; -2018-11-13T10:38:45Z;Júlio Cesar;2170.002;114695753;Argentina; -2018-11-13T10:37:05Z;nathalia;263.0139;115300768;Argentina; -2018-11-13T10:17:12Z;Ana;1334.409;116102051;Argentina; -2018-11-13T09:47:31Z;Júlio Cesar;485.02;114382633;Argentina; -2018-11-13T09:34:15Z;Júlio;535.7842;115871214;Argentina; -2018-11-13T09:30:31Z;Eduardo;949.6117;115135186;Argentina; -2018-11-13T09:30:08Z;nathalia;2330.819;114571479;Argentina; -2018-11-13T09:20:03Z;Júlio Cesar;1732.252;115966645;Argentina; -2018-11-13T08:59:29Z;Ana;3744.059;114863805;Argentina; -2018-11-13T08:01:22Z;Sandra;974.4139;114766928;Argentina; -2018-11-13T07:49:29Z;nathalia;5115.103;114355109;Argentina; -2018-11-13T07:46:30Z;Júlio;2088.925;114391400;Argentina; -2018-11-13T06:55:13Z;Eduardo;2169.592;115573933;Argentina; -2018-11-13T06:17:37Z;Júlio Cesar;1858.495;114220421;Argentina; -2018-11-13T06:09:34Z;Armando;1440.441;114413868;Argentina; -2018-11-13T06:05:58Z;nathalia;1048.27;115753198;Argentina; -2018-11-13T06:03:32Z;Armando;1890.555;115928427;Argentina; -2018-11-13T05:56:57Z;Armando;340.179;115987975;Argentina; -2018-11-13T05:56:40Z;Júlio Cesar;82.523;114920260;Argentina; -2018-11-13T05:49:57Z;Júlio;740.3333;115163384;Argentina; -2018-11-13T05:44:46Z;Sandra;882.6109;115247928;Argentina; -2018-11-13T05:36:22Z;Eduardo;2595.887;115639514;Argentina; -2018-11-13T05:27:38Z;Ana;4009.129;114573955;Argentina; -2018-11-13T04:44:20Z;nathalia;1561.374;114937219;Argentina; -2018-11-13T04:08:50Z;Ana;1076.124;115455373;Argentina; -2018-11-13T04:06:21Z;Armando;483.7888;115895874;Argentina; -2018-11-13T04:01:44Z;Armando;219.0125;115346904;Argentina; -2018-11-13T03:42:23Z;Ana;875.5596;115484299;Argentina; -2018-11-13T03:32:38Z;Júlio Cesar;1643.735;116344538;Argentina; -2018-11-13T03:03:29Z;Eduardo;3828.103;116202771;Argentina; -2018-11-13T02:44:53Z;Júlio;3955.63;114247460;Argentina; -2018-11-13T02:18:27Z;Nathália;2774.321;115570596;Argentina; -2018-11-13T02:18:06Z;Eduardo;2542.432;114421655;Argentina; -2018-11-13T01:59:49Z;nathalia;52.85781;115848408;Argentina; -2018-11-13T01:17:29Z;Nathália;418.6678;114694999;Argentina; -2018-11-13T00:59:17Z;Júlio Cesar;1936.066;115625049;Argentina; -2018-11-13T00:54:11Z;Eduardo;3629.648;114403606;Argentina; -2018-12-06T22:22:43Z;Nathália;3788.112;114378977;Brazil; -2018-12-06T22:21:47Z;Eduardo;3064.626;115447615;Brazil; -2018-12-06T22:10:31Z;Armando;2946.018;116248100;Brazil; -2018-12-06T21:13:57Z;Armando;4576.155;114495336;Brazil; -2018-12-06T21:02:56Z;Júlio Cesar;359.8087;115163507;Brazil; -2018-12-06T20:53:48Z;Eduardo;1543.311;115020005;Brazil; -2018-12-06T20:47:17Z;Sandra;2334.213;114453377;Brazil; -2018-12-06T20:46:11Z;nathalia;2087.946;114432662;Brazil; -2018-12-06T20:45:22Z;Ana;975.3062;116057123;Brazil; -2018-12-06T20:44:15Z;Armando;2663.926;115573977;Brazil; -2018-12-06T20:38:20Z;nathalia;936.9258;114388596;Brazil; -2018-12-06T20:06:50Z;nathalia;3068.755;115489544;Brazil; -2018-12-06T19:59:15Z;Armando;606.589;115430833;Brazil; -2018-12-06T19:58:51Z;Ana;2809.813;114765453;Brazil; -2018-12-06T19:46:26Z;Júlio;834.6792;116246274;Brazil; -2018-12-06T19:25:20Z;Ana;600.7287;115851056;Brazil; -2018-12-06T19:14:33Z;Armando;264.8002;115445825;Brazil; -2018-12-06T19:12:36Z;Ana;4478.503;114807824;Brazil; -2018-12-06T18:42:19Z;Júlio Cesar;944.0788;115317294;Brazil; -2018-12-06T18:39:10Z;Eduardo;3977.996;115759033;Brazil; -2018-12-06T17:55:10Z;Ana;2288.675;114426501;Brazil; -2018-12-06T17:49:16Z;nathalia;3897.263;116005935;Brazil; -2018-12-06T17:37:18Z;Armando;4067.727;114283082;Brazil; -2018-12-06T16:53:06Z;Armando;1511.412;114312088;Brazil; -2018-12-06T16:34:30Z;Ana;3084.13;115139786;Brazil; -2018-12-06T15:32:59Z;Sandra;2949.688;114297335;Brazil; -2018-12-06T15:26:49Z;Eduardo;2491.714;116388929;Brazil; -2018-12-06T15:24:38Z;Eduardo;4014.489;115404534;Brazil; -2018-12-06T14:00:47Z;Eduardo;74.54787;114785689;Brazil; -2018-12-06T13:57:11Z;nathalia;4115.66;114804671;Brazil; -2018-12-06T13:33:13Z;Armando;1495.523;114442060;Brazil; -2018-12-06T13:27:53Z;Júlio Cesar;2582.672;114323905;Brazil; -2018-12-06T13:23:37Z;Nathália;933.9076;115317570;Brazil; -2018-12-06T13:23:31Z;Júlio;1453.441;114640308;Brazil; -2018-12-06T13:21:19Z;Júlio;3291.401;116252220;Brazil; -2018-12-06T13:16:57Z;Nathália;2313.205;115415800;Brazil; -2018-12-06T13:05:36Z;Armando;3476.601;115507798;Brazil; -2018-12-06T12:26:07Z;Nathália;1365.061;115616767;Brazil; -2018-12-06T12:25:31Z;Eduardo;3247.101;115843629;Brazil; -2018-12-06T12:19:21Z;Ana;3995.263;114642971;Brazil; -2018-12-06T11:57:56Z;Júlio Cesar;1997.464;115960787;Brazil; -2018-12-06T11:48:50Z;nathalia;1215.733;114524168;Brazil; -2018-12-06T11:38:21Z;Nathália;1946.625;116211589;Brazil; -2018-12-06T11:37:48Z;Eduardo;1672.399;114850755;Brazil; -2018-12-06T11:19:07Z;Sandra;901.1072;114857263;Brazil; -2018-12-06T10:35:22Z;Eduardo;1993.386;114587527;Brazil; -2018-12-06T10:23:59Z;Sandra;3163.714;115665164;Brazil; -2018-12-06T09:34:57Z;Nathália;5008.189;115335006;Brazil; -2018-12-06T09:25:22Z;Eduardo;1661.654;114688147;Brazil; -2018-12-06T09:14:25Z;Armando;781.5686;114953204;Brazil; -2018-12-06T09:12:27Z;Ana;777.6153;114955946;Brazil; -2018-12-06T09:06:42Z;Júlio;2955.241;115028922;Brazil; -2018-12-06T08:45:13Z;Sandra;1222.135;115129587;Brazil; -2018-12-06T08:41:31Z;Nathália;2683.064;115198833;Brazil; -2018-12-06T08:37:53Z;Nathália;1868.527;114437940;Brazil; -2018-12-06T07:43:04Z;Sandra;2600.868;114658935;Brazil; -2018-12-06T07:31:49Z;Eduardo;2324.137;114976982;Brazil; -2018-12-06T06:52:38Z;nathalia;358.4158;116081454;Brazil; -2018-12-06T06:51:25Z;Júlio Cesar;1689.41;115780702;Brazil; -2018-12-06T06:26:24Z;Armando;4424.479;115038710;Brazil; -2018-12-06T06:09:45Z;Sandra;677.1779;114594477;Brazil; -2018-12-06T06:03:23Z;Sandra;1111.128;114555777;Brazil; -2018-12-06T05:59:44Z;Sandra;3703.082;114618082;Brazil; -2018-12-06T05:56:08Z;Eduardo;1360.97;115055797;Brazil; -2018-12-06T05:32:51Z;Nathália;624.3505;115442472;Brazil; -2018-12-06T05:15:03Z;Ana;1188.244;114812637;Brazil; -2018-12-06T05:07:39Z;Eduardo;2337.243;115521940;Brazil; -2018-12-06T04:53:46Z;Júlio Cesar;3136.962;114783139;Brazil; -2018-12-06T04:40:50Z;Eduardo;5240.404;114416148;Brazil; -2018-12-06T04:39:16Z;Ana;3362.536;116026711;Brazil; -2018-12-06T04:38:39Z;Júlio;4183.517;114453492;Brazil; -2018-12-06T04:33:39Z;nathalia;2214.159;115723615;Brazil; -2018-12-06T04:28:51Z;Eduardo;1362.533;114277053;Brazil; -2018-12-06T03:01:34Z;Ana;2527.549;115196443;Brazil; -2018-12-06T02:52:42Z;Sandra;3144.967;115724843;Brazil; -2018-12-06T02:52:34Z;Nathália;3524.795;115668633;Brazil; -2018-12-06T02:43:24Z;nathalia;1706.357;116341334;Brazil; -2018-12-06T01:55:34Z;nathalia;1912.997;116374523;Brazil; -2018-12-06T01:13:46Z;nathalia;1402.974;115914828;Brazil; -2018-12-06T00:29:59Z;nathalia;2305.513;114298090;Brazil; -2018-12-06T00:27:43Z;Nathália;2467.842;115023295;Brazil; -2018-12-06T00:15:41Z;Nathália;2092.768;114952716;Brazil; -2018-12-06T00:02:47Z;Ana;662.2095;115669308;Brazil; -2018-12-06T00:01:09Z;Sandra;3376.896;115450711;Brazil; -2018-12-05T23:54:54Z;Ana;2089.599;115890618;Brazil; -2018-12-05T23:41:32Z;Júlio;2656.32;114436132;Brazil; -2018-12-05T23:39:53Z;Sandra;1380.653;116243692;Brazil; -2018-12-05T23:29:54Z;Júlio Cesar;2130.101;115382742;Brazil; -2018-12-05T23:03:28Z;Eduardo;1498.687;114667826;Brazil; -2018-12-05T23:02:06Z;Nathália;1832.044;114735804;Brazil; -2018-12-05T22:44:08Z;Armando;3136.034;116364023;Brazil; -2018-12-05T22:43:34Z;Eduardo;2021.885;115728388;Brazil; -2018-12-05T22:41:36Z;Ana;3358.442;114760425;Brazil; -2018-12-05T22:30:36Z;Júlio;1725.949;115943570;Brazil; -2018-12-05T22:21:24Z;Armando;280.4698;114251277;Brazil; -2018-12-05T22:19:51Z;nathalia;1148.454;115214689;Brazil; -2018-12-05T22:14:11Z;Armando;2578.979;115739178;Brazil; -2018-12-05T22:05:02Z;nathalia;2885.558;114651468;Brazil; -2018-12-05T22:03:03Z;Armando;391.8826;114214880;Brazil; -2018-12-05T21:58:43Z;Nathália;100.7172;116094324;Brazil; -2018-12-05T21:56:14Z;Júlio Cesar;4433.243;116266669;Brazil; -2018-12-05T21:42:44Z;Armando;1959.994;115738302;Brazil; -2018-12-05T21:39:43Z;Eduardo;3094.432;115790280;Brazil; -2018-12-05T21:32:18Z;Eduardo;3403.945;115430543;Brazil; -2018-12-05T20:55:00Z;Eduardo;422.832;115120371;Brazil; -2018-12-05T20:40:14Z;Ana;921.1245;114592220;Brazil; -2018-12-05T20:30:43Z;Júlio;1396.086;114675827;Brazil; -2018-12-05T19:58:02Z;Ana;360.1317;116391189;Brazil; -2018-12-05T19:42:16Z;Ana;2165.91;115676304;Brazil; -2018-12-05T19:29:17Z;nathalia;2308.447;114544384;Brazil; -2018-12-05T19:07:37Z;Sandra;873.2758;115055746;Brazil; -2018-12-05T19:05:23Z;nathalia;1453.824;115575016;Brazil; -2018-12-05T19:00:54Z;Sandra;4006.254;115542358;Brazil; -2018-12-05T18:57:57Z;Nathália;4745.627;115585014;Brazil; -2018-12-05T18:44:35Z;Armando;4846.209;116178822;Brazil; -2018-12-05T18:41:23Z;nathalia;2624.928;115064363;Brazil; -2018-12-05T18:38:41Z;Júlio Cesar;1523.474;115658977;Brazil; -2018-12-05T18:29:29Z;Júlio Cesar;3272.708;114781574;Brazil; -2018-12-05T18:03:05Z;nathalia;2781.663;115621066;Brazil; -2018-12-05T17:58:52Z;Armando;1799.872;114607557;Brazil; -2018-12-05T17:26:36Z;Júlio Cesar;280.5668;114424438;Brazil; -2018-12-05T17:06:22Z;Júlio Cesar;4297.276;115854080;Brazil; -2018-12-05T16:32:37Z;nathalia;1528.681;114537143;Brazil; -2018-12-05T16:15:28Z;Ana;469.3545;116287566;Brazil; -2018-12-05T16:12:52Z;Eduardo;23.65436;114706389;Brazil; -2018-12-05T15:53:09Z;Armando;3772.092;114487926;Brazil; -2018-12-05T15:53:00Z;Júlio Cesar;3132.058;114860570;Brazil; -2018-12-05T15:47:17Z;nathalia;2676.88;115819530;Brazil; -2018-12-05T14:59:46Z;Eduardo;729.4454;115857204;Brazil; -2018-12-05T14:54:53Z;nathalia;1207.576;116007749;Brazil; -2018-12-05T14:53:32Z;Júlio;4019.381;114756823;Brazil; -2018-12-05T14:51:11Z;Armando;588.1971;116310780;Brazil; -2018-12-05T14:23:58Z;nathalia;3104.094;114885356;Brazil; -2018-12-05T14:13:15Z;Júlio;827.8456;116341610;Brazil; -2018-12-05T14:07:10Z;Júlio;1528.109;114573182;Brazil; -2018-12-05T13:59:37Z;Eduardo;4325.141;114400776;Brazil; -2018-12-05T13:43:28Z;Sandra;3192.097;114278455;Brazil; -2018-12-05T13:32:37Z;Nathália;1368.117;114518979;Brazil; -2018-12-05T13:19:09Z;Ana;3478.585;114790783;Brazil; -2018-12-05T13:06:54Z;Júlio Cesar;1565.127;114207185;Brazil; -2018-12-05T13:06:06Z;Sandra;250.02;114799987;Brazil; -2018-12-05T12:56:54Z;Júlio Cesar;1975.836;115489204;Brazil; -2018-12-05T12:53:16Z;Nathália;2496.396;114755957;Brazil; -2018-12-05T12:47:59Z;Armando;1888.981;114305194;Brazil; -2018-12-05T12:42:03Z;Sandra;570.5406;114528977;Brazil; -2018-12-05T12:21:26Z;Júlio;122.4622;114757099;Brazil; -2018-12-05T12:15:18Z;Armando;2084.236;114638491;Brazil; -2018-12-05T12:13:16Z;nathalia;2164.013;115965416;Brazil; -2018-12-05T11:57:14Z;Eduardo;1764.389;115421267;Brazil; -2018-12-05T11:52:53Z;Armando;4987.474;115976591;Brazil; -2018-12-05T11:49:25Z;Júlio;1715.736;115773037;Brazil; -2018-12-05T11:42:59Z;Sandra;4399.128;114286071;Brazil; -2018-12-05T11:18:28Z;Armando;295.8061;115955755;Brazil; -2018-12-05T11:13:50Z;Sandra;3467.555;115497389;Brazil; -2018-12-05T11:11:36Z;Júlio;3072.756;115749921;Brazil; -2018-12-05T11:02:43Z;Nathália;2881.262;114524005;Brazil; -2018-12-05T10:58:46Z;Júlio;809.8027;114824668;Brazil; -2018-12-05T10:42:43Z;Júlio;3933.958;115550826;Brazil; -2018-12-05T10:21:32Z;Armando;875.5384;114666343;Brazil; -2018-12-05T10:18:14Z;Júlio;2844.502;114577857;Brazil; -2018-12-05T10:13:16Z;Sandra;850.9607;115903388;Brazil; -2018-12-05T10:12:40Z;Júlio Cesar;3685.751;115181291;Brazil; -2018-12-05T09:45:53Z;Sandra;504.8752;115455711;Brazil; -2018-12-05T09:21:05Z;nathalia;2609.126;115467943;Brazil; -2018-12-05T08:28:11Z;Júlio;189.8306;115783352;Brazil; -2018-12-05T08:12:50Z;Sandra;868.7383;115845818;Brazil; -2018-12-05T08:07:47Z;Júlio;3863.249;115393689;Brazil; -2018-12-05T08:06:48Z;Sandra;2304.758;115695056;Brazil; -2018-12-05T07:56:51Z;Armando;4313.259;116219925;Brazil; -2018-12-05T07:56:28Z;nathalia;166.9179;115689322;Brazil; -2018-12-05T07:20:21Z;Sandra;704.2922;115793091;Brazil; -2018-12-05T06:26:00Z;Nathália;2240.169;116022185;Brazil; -2018-12-05T06:08:03Z;Ana;2725.723;115460531;Brazil; -2018-12-05T06:02:31Z;Júlio Cesar;554.9166;115227131;Brazil; -2018-12-05T05:57:30Z;Ana;3336.74;115970375;Brazil; -2018-12-05T05:24:17Z;nathalia;886.7371;114404237;Brazil; -2018-12-05T05:15:05Z;Armando;1808.819;116234026;Brazil; -2018-12-05T05:01:14Z;Armando;386.9365;116299352;Brazil; -2018-12-05T04:53:33Z;Ana;378.1572;114215157;Brazil; -2018-12-05T04:48:50Z;Ana;4791.19;115672126;Brazil; -2018-12-05T04:37:17Z;Ana;1203.84;115573544;Brazil; -2018-12-05T04:18:23Z;Júlio;3520.08;115573778;Brazil; -2018-12-05T04:00:55Z;Nathália;4097.276;114521471;Brazil; -2018-12-05T03:58:49Z;nathalia;3817.564;115652513;Brazil; -2018-12-05T03:55:29Z;Eduardo;1219.923;115670528;Brazil; -2018-12-05T03:50:20Z;nathalia;90.44805;114480927;Brazil; -2018-12-05T03:32:18Z;Júlio Cesar;1506.3;115613801;Brazil; -2018-12-05T03:14:19Z;Nathália;1023.928;115164860;Brazil; -2018-12-05T03:05:27Z;Eduardo;1773.907;116132973;Brazil; -2018-12-05T02:34:30Z;nathalia;2619.055;115645303;Brazil; -2018-12-05T02:03:59Z;Júlio Cesar;1845.759;114462086;Brazil; -2018-12-05T01:49:16Z;Júlio Cesar;3522.861;114296333;Brazil; -2018-12-05T00:54:17Z;nathalia;2391.895;114293381;Brazil; -2018-12-05T00:53:29Z;Júlio Cesar;3187.49;115737805;Brazil; -2018-12-05T00:51:06Z;Júlio Cesar;1326.13;114791226;Brazil; -2018-12-05T00:00:16Z;Ana;1230.413;114625633;Brazil; -2018-12-04T23:58:43Z;Armando;1742.339;114531905;Brazil; -2018-12-04T23:37:35Z;Sandra;4092.111;114587409;Brazil; -2018-12-04T23:19:35Z;Ana;1439.631;115754332;Brazil; -2018-12-04T22:47:40Z;nathalia;2330.058;115675365;Brazil; -2018-12-04T22:31:56Z;Júlio Cesar;1436.583;116233879;Brazil; -2018-12-04T22:27:36Z;Sandra;3050.891;114967481;Brazil; -2018-12-04T22:20:59Z;Eduardo;4469.637;114275506;Brazil; -2018-12-04T22:12:01Z;Nathália;2814.357;116084023;Brazil; -2018-12-04T22:00:31Z;Júlio;2222.526;115866111;Brazil; -2018-12-04T21:51:23Z;Nathália;424.4041;114730371;Brazil; -2018-12-04T21:34:51Z;Armando;2422.568;116086992;Brazil; -2018-12-04T21:30:54Z;Nathália;621.9473;115662193;Brazil; -2018-12-04T21:29:26Z;Eduardo;1633.652;115822421;Brazil; -2018-12-04T21:29:16Z;Armando;2482.361;114889799;Brazil; -2018-12-04T21:24:43Z;Armando;3058.648;115017793;Brazil; -2018-12-04T21:22:07Z;Júlio Cesar;125.1347;115150227;Brazil; -2018-12-04T21:13:58Z;Júlio Cesar;2150.726;115929330;Brazil; -2018-12-04T21:06:58Z;Ana;682.9381;115546968;Brazil; -2018-12-04T20:42:24Z;Armando;1407.249;115397637;Brazil; -2018-12-04T20:01:35Z;Eduardo;3758.165;114472152;Brazil; -2018-12-04T19:56:13Z;Eduardo;3136.14;115674506;Brazil; -2018-12-04T19:52:30Z;Ana;2952.557;114826965;Brazil; -2018-12-04T19:51:20Z;Eduardo;416.6055;116252992;Brazil; -2018-12-04T19:19:04Z;Eduardo;3910.359;115986401;Brazil; -2018-12-04T18:14:29Z;Eduardo;756.7408;114216850;Brazil; -2018-12-04T18:01:59Z;Ana;1840.763;115998830;Brazil; -2018-12-04T17:40:32Z;Armando;2803.598;115516816;Brazil; -2018-12-04T17:33:34Z;Nathália;1269.814;115281140;Brazil; -2018-12-04T17:07:54Z;Eduardo;2818.148;115104377;Brazil; -2018-12-04T17:03:32Z;Júlio Cesar;4778.969;114579985;Brazil; -2018-12-04T16:57:42Z;Eduardo;2869.521;115963565;Brazil; -2018-12-04T16:48:21Z;Júlio Cesar;104.3373;114825607;Brazil; -2018-12-04T16:41:22Z;Júlio;1323.457;115400160;Brazil; -2018-12-04T16:38:50Z;Armando;1887.701;115639597;Brazil; -2018-12-04T16:37:32Z;Júlio Cesar;862.8341;114243013;Brazil; -2018-12-04T16:29:47Z;Eduardo;3438.267;116147007;Brazil; -2018-12-04T15:30:20Z;Ana;4549.454;115534671;Brazil; -2018-12-04T15:14:38Z;Nathália;1413.932;116052256;Brazil; -2018-12-04T15:07:33Z;Nathália;1113.124;115023611;Brazil; -2018-12-04T14:52:33Z;Júlio;3868.416;114519255;Brazil; -2018-12-04T14:50:22Z;Nathália;904.9109;115728459;Brazil; -2018-12-04T14:40:27Z;nathalia;4810.288;114953676;Brazil; -2018-12-04T14:13:52Z;Júlio;2872.192;115228855;Brazil; -2018-12-04T13:58:29Z;Armando;2804.249;116208955;Brazil; -2018-12-04T13:47:51Z;Ana;139.0063;115937608;Brazil; -2018-12-04T13:29:45Z;nathalia;2942.975;114866521;Brazil; -2018-12-04T12:53:54Z;Armando;1320.202;115032790;Brazil; -2018-12-04T12:31:31Z;Eduardo;2131.677;115920764;Brazil; -2018-12-04T12:21:18Z;Armando;3420.873;115039098;Brazil; -2018-12-04T11:19:12Z;Júlio Cesar;697.5405;115493803;Brazil; -2018-12-04T11:12:52Z;Nathália;1738.633;114586767;Brazil; -2018-12-04T11:09:18Z;Nathália;2588.846;116129483;Brazil; -2018-12-04T10:33:25Z;Nathália;322.3394;115285158;Brazil; -2018-12-04T10:30:25Z;nathalia;493.2626;114709566;Brazil; -2018-12-04T10:27:02Z;Júlio;1036.252;114848936;Brazil; -2018-12-04T10:11:43Z;Júlio;4376.026;116350634;Brazil; -2018-12-04T10:02:43Z;Nathália;4647.306;114242448;Brazil; -2018-12-04T09:51:36Z;Júlio Cesar;4096.478;116355076;Brazil; -2018-12-04T09:44:17Z;Júlio;959.0533;115849934;Brazil; -2018-12-04T09:12:01Z;nathalia;2535.795;115638974;Brazil; -2018-12-04T09:06:17Z;Ana;2562.663;114793659;Brazil; -2018-12-04T08:32:14Z;Júlio;1180.672;114666716;Brazil; -2018-12-04T08:08:00Z;Nathália;702.9329;116007207;Brazil; -2018-12-04T08:03:26Z;Sandra;3100.472;114603225;Brazil; -2018-12-04T06:28:30Z;Ana;384.5174;116293657;Brazil; -2018-12-04T06:20:52Z;Armando;487.824;115600481;Brazil; -2018-12-04T06:17:53Z;Armando;1777.798;115693748;Brazil; -2018-12-04T06:13:57Z;Eduardo;762.6905;114406503;Brazil; -2018-12-04T05:41:59Z;Armando;2337.803;114524333;Brazil; -2018-12-04T05:32:46Z;Júlio Cesar;555.4654;115024545;Brazil; -2018-12-04T05:04:08Z;Armando;1535.392;115774090;Brazil; -2018-12-04T04:40:18Z;Eduardo;2528.287;116306101;Brazil; -2018-12-04T04:32:38Z;Ana;913.9284;115597038;Brazil; -2018-12-04T04:30:04Z;Nathália;783.5757;116170384;Brazil; -2018-12-04T04:28:04Z;Armando;3114.783;114420494;Brazil; -2018-12-04T03:52:23Z;Nathália;2418.51;116158902;Brazil; -2018-12-04T03:48:44Z;Nathália;1834.011;114838321;Brazil; -2018-12-04T03:39:15Z;Eduardo;756.3358;116145306;Brazil; -2018-12-04T03:00:10Z;nathalia;3225.306;114459652;Brazil; -2018-12-04T02:34:24Z;Júlio;1908.97;115798854;Brazil; -2018-12-04T02:32:08Z;Júlio;3860.525;116352774;Brazil; -2018-12-04T02:14:56Z;Júlio;1338.793;115531370;Brazil; -2018-12-04T01:53:19Z;Ana;339.2993;114852762;Brazil; -2018-12-04T01:44:49Z;nathalia;1587.11;115091051;Brazil; -2018-12-04T01:09:10Z;Júlio;2486.364;115837953;Brazil; -2018-12-04T00:46:10Z;Nathália;2476.671;115336736;Brazil; -2018-12-04T00:41:34Z;Nathália;3122.508;115676636;Brazil; -2018-12-03T23:27:01Z;Eduardo;2931.469;114653587;Brazil; -2018-12-03T23:23:28Z;Sandra;3102.086;115383507;Brazil; -2018-12-03T22:32:06Z;Sandra;1150.39;115083075;Brazil; -2018-12-03T22:06:58Z;Sandra;2919.201;115083373;Brazil; -2018-12-03T21:45:50Z;Nathália;993.3542;115136996;Brazil; -2018-12-03T21:02:34Z;Júlio;3236.803;116239328;Brazil; -2018-12-03T20:50:48Z;Eduardo;2555.072;114405283;Brazil; -2018-12-03T20:32:53Z;Júlio Cesar;547.0967;115922468;Brazil; -2018-12-03T20:26:20Z;Nathália;3369.887;116335188;Brazil; -2018-12-03T20:19:40Z;Júlio;249.0803;116044884;Brazil; -2018-12-03T20:17:41Z;Sandra;3473.202;114277398;Brazil; -2018-12-03T20:07:01Z;Eduardo;2353.19;115038700;Brazil; -2018-12-03T20:02:43Z;Sandra;753.9848;115023431;Brazil; -2018-12-03T19:42:55Z;Nathália;3044.468;115792946;Brazil; -2018-12-03T19:35:47Z;Eduardo;1607.487;115034519;Brazil; -2018-12-03T19:22:25Z;Armando;1049.316;115180145;Brazil; -2018-12-03T18:46:28Z;Sandra;774.5426;115342439;Brazil; -2018-12-03T18:31:06Z;Sandra;1495;115348427;Brazil; -2018-12-03T18:25:54Z;Armando;4922.253;114890347;Brazil; -2018-12-03T17:57:06Z;Armando;2020.326;115281074;Brazil; -2018-12-03T17:55:01Z;Sandra;1819.794;116349250;Brazil; -2018-12-03T17:54:35Z;Ana;2641.481;115687401;Brazil; -2018-12-03T17:30:11Z;Armando;2307.093;115576861;Brazil; -2018-12-03T17:20:18Z;Sandra;1237.038;116087703;Brazil; -2018-12-03T16:56:01Z;Júlio;3056.349;115515899;Brazil; -2018-12-03T16:42:59Z;nathalia;3184.904;115023847;Brazil; -2018-12-03T16:38:46Z;Júlio Cesar;3341.502;115346035;Brazil; -2018-12-03T15:39:55Z;Júlio;1973.222;114794482;Brazil; -2018-12-03T15:19:43Z;nathalia;4628.772;114282136;Brazil; -2018-12-03T15:06:45Z;Júlio;910.8997;115216428;Brazil; -2018-12-03T15:02:02Z;Ana;3358.79;115492578;Brazil; -2018-12-03T14:38:08Z;Sandra;1873.37;114651111;Brazil; -2018-12-03T14:05:55Z;nathalia;2935.315;115951141;Brazil; -2018-12-03T14:03:45Z;Júlio;4259.018;115798105;Brazil; -2018-12-03T13:57:50Z;Júlio Cesar;1004.532;116135242;Brazil; -2018-12-03T13:57:44Z;Nathália;1889.233;114993272;Brazil; -2018-12-03T13:55:07Z;Júlio;3083.367;114965936;Brazil; -2018-12-03T13:37:30Z;Armando;2977.598;115435405;Brazil; -2018-12-03T13:07:21Z;Sandra;965.9149;115328525;Brazil; -2018-12-03T13:00:19Z;Eduardo;2461.01;115454148;Brazil; -2018-12-03T12:45:18Z;Ana;3197.956;116201922;Brazil; -2018-12-03T12:26:39Z;Nathália;1983.959;115070670;Brazil; -2018-12-03T11:58:59Z;Ana;4473.393;114200833;Brazil; -2018-12-03T11:53:36Z;Sandra;1606.542;115466797;Brazil; -2018-12-03T11:46:23Z;Júlio Cesar;5052.408;116199448;Brazil; -2018-12-03T11:26:15Z;Nathália;2050.252;116382408;Brazil; -2018-12-03T11:12:39Z;Sandra;1601.298;114947730;Brazil; -2018-12-03T11:11:15Z;Nathália;2024.626;115388303;Brazil; -2018-12-03T10:54:06Z;nathalia;1425.913;114227263;Brazil; -2018-12-03T10:02:42Z;Eduardo;1002.355;116061424;Brazil; -2018-12-03T09:46:17Z;Eduardo;965.5795;115605667;Brazil; -2018-12-03T09:16:48Z;Júlio Cesar;80.67139;116286344;Brazil; -2018-12-03T08:53:00Z;Júlio Cesar;5619.372;115670456;Brazil; -2018-12-03T08:31:40Z;Nathália;3294.183;114818345;Brazil; -2018-12-03T08:30:53Z;Ana;3936.342;116072485;Brazil; -2018-12-03T07:02:56Z;Júlio;758.8009;114928406;Brazil; -2018-12-03T06:55:57Z;Sandra;1701.604;114640449;Brazil; -2018-12-03T06:50:23Z;Armando;1168.396;115986218;Brazil; -2018-12-03T06:36:09Z;Eduardo;181.2835;115593249;Brazil; -2018-12-03T06:05:52Z;Armando;3363.771;115522168;Brazil; -2018-12-03T06:01:48Z;Ana;4215.315;115168758;Brazil; -2018-12-03T05:51:09Z;Nathália;3769.394;115560359;Brazil; -2018-12-03T05:37:37Z;Eduardo;631.7015;115038114;Brazil; -2018-12-03T05:28:02Z;Eduardo;2177.108;115888533;Brazil; -2018-12-03T05:04:38Z;Armando;1883.607;114958764;Brazil; -2018-12-03T04:38:13Z;Júlio;2217.687;115078770;Brazil; -2018-12-03T04:29:37Z;Ana;1897.361;114465123;Brazil; -2018-12-03T04:18:44Z;Júlio;481.7772;116099919;Brazil; -2018-12-03T04:12:08Z;Sandra;3452.34;115598694;Brazil; -2018-12-03T04:11:13Z;Sandra;1144.166;116051726;Brazil; -2018-12-03T03:54:42Z;Ana;2814.173;116099191;Brazil; -2018-12-03T03:12:27Z;Armando;3016.95;115013189;Brazil; -2018-12-03T03:09:23Z;Armando;862.7405;115374338;Brazil; -2018-12-03T03:02:03Z;Júlio;3143.427;115823110;Brazil; -2018-12-03T02:47:24Z;Júlio Cesar;2312.768;114492167;Brazil; -2018-12-03T02:42:00Z;Sandra;3122.613;116209228;Brazil; -2018-12-03T02:34:55Z;Sandra;3611.027;114475506;Brazil; -2018-12-03T01:47:17Z;Armando;225.0461;115480462;Brazil; -2018-12-03T01:45:46Z;Sandra;1596.553;114256891;Brazil; -2018-12-03T01:31:48Z;Armando;3309.164;115287226;Brazil; -2018-12-03T01:27:16Z;Eduardo;4166.626;115475340;Brazil; -2018-12-03T01:24:47Z;Nathália;4488.87;115185967;Brazil; -2018-12-03T01:13:10Z;Eduardo;3843.17;115670671;Brazil; -2018-12-03T00:47:09Z;nathalia;2879.707;114535278;Brazil; -2018-12-03T00:08:44Z;Ana;3557.048;116074871;Brazil; -2018-12-03T00:02:50Z;Nathália;3314.35;114510125;Brazil; -2018-12-03T00:02:20Z;Júlio Cesar;2357.779;115947170;Brazil; -2018-12-02T23:28:16Z;Nathália;3083.995;115917152;Brazil; -2018-12-02T23:03:10Z;nathalia;2492.146;115557120;Brazil; -2018-12-02T22:47:03Z;Júlio Cesar;825.7653;115013410;Brazil; -2018-12-02T22:39:06Z;Júlio;1960.796;114629491;Brazil; -2018-12-02T22:34:24Z;Sandra;1551.987;116035175;Brazil; -2018-12-02T21:46:42Z;Sandra;1953.082;115753974;Brazil; -2018-12-02T20:49:24Z;Júlio;599.494;114687653;Brazil; -2018-12-02T20:42:21Z;Júlio Cesar;3533.631;115934963;Brazil; -2018-12-02T20:08:49Z;Armando;3057.519;115891972;Brazil; -2018-12-02T19:55:20Z;Eduardo;1088.584;114730175;Brazil; -2018-12-02T19:48:50Z;Júlio;240.3961;115098333;Brazil; -2018-12-02T18:50:25Z;Júlio Cesar;117.5429;114781670;Brazil; -2018-12-02T18:18:23Z;Júlio Cesar;1822.233;114785726;Brazil; -2018-12-02T18:16:25Z;Eduardo;4267.457;114494812;Brazil; -2018-12-02T17:43:31Z;Júlio Cesar;2673.554;114524281;Brazil; -2018-12-02T17:28:58Z;Nathália;191.2809;116042977;Brazil; -2018-12-02T17:13:11Z;Ana;982.7412;114482712;Brazil; -2018-12-02T17:03:50Z;Eduardo;187.05;116112048;Brazil; -2018-12-02T16:29:11Z;Júlio;2430.894;115277080;Brazil; -2018-12-02T16:20:47Z;Júlio Cesar;355.7094;115409600;Brazil; -2018-12-02T16:18:52Z;Nathália;177.473;115008769;Brazil; -2018-12-02T16:14:55Z;Ana;1110.92;115419534;Brazil; -2018-12-02T16:11:46Z;nathalia;2906.947;114881462;Brazil; -2018-12-02T15:59:51Z;Júlio;4438.333;114981509;Brazil; -2018-12-02T15:50:31Z;Júlio Cesar;1452.864;114780936;Brazil; -2018-12-02T15:39:37Z;Eduardo;648.7108;115376499;Brazil; -2018-12-02T15:36:59Z;Ana;1435.65;115399996;Brazil; -2018-12-02T15:31:10Z;Júlio;1579.241;115863180;Brazil; -2018-12-02T15:02:51Z;Nathália;1771.969;115052213;Brazil; -2018-12-02T15:02:36Z;Nathália;4643.17;115407129;Brazil; -2018-12-02T14:49:42Z;nathalia;707.8268;114567953;Brazil; -2018-12-02T14:16:42Z;Ana;2214.578;115281206;Brazil; -2018-12-02T14:12:25Z;Sandra;3223.431;115963158;Brazil; -2018-12-02T13:51:57Z;Ana;929.5536;114558928;Brazil; -2018-12-02T13:43:40Z;Eduardo;434.4705;115009722;Brazil; -2018-12-02T13:23:52Z;Júlio Cesar;502.654;115476729;Brazil; -2018-12-02T13:19:42Z;Júlio Cesar;2771.551;116104986;Brazil; -2018-12-02T13:18:24Z;Sandra;1601.341;115239254;Brazil; -2018-12-02T12:42:20Z;nathalia;277.1234;114415579;Brazil; -2018-12-02T11:45:47Z;Armando;1538.269;116099292;Brazil; -2018-12-02T11:22:23Z;nathalia;3262.803;115077226;Brazil; -2018-12-02T11:16:27Z;Nathália;3310.26;115875574;Brazil; -2018-12-02T11:12:56Z;nathalia;1699.29;115534492;Brazil; -2018-12-02T11:12:46Z;Nathália;1663.671;114678978;Brazil; -2018-12-02T11:09:37Z;nathalia;2892.443;114420760;Brazil; -2018-12-02T10:58:52Z;nathalia;143.6505;116356011;Brazil; -2018-12-02T10:50:40Z;Sandra;2416.552;115792167;Brazil; -2018-12-02T10:44:29Z;Eduardo;2683.811;115732459;Brazil; -2018-12-02T10:24:40Z;Eduardo;4141.185;114287525;Brazil; -2018-12-02T09:48:22Z;Júlio;2305.414;115068811;Brazil; -2018-12-02T08:36:43Z;Júlio;1207.962;116362051;Brazil; -2018-12-02T08:33:12Z;Júlio Cesar;3889.437;114261514;Brazil; -2018-12-02T08:08:00Z;Ana;4664.999;114386731;Brazil; -2018-12-02T08:02:33Z;Júlio Cesar;4317.265;115976303;Brazil; -2018-12-02T07:51:22Z;Júlio;545.4781;115950044;Brazil; -2018-12-02T07:40:52Z;Eduardo;1246.82;114617476;Brazil; -2018-12-02T07:31:18Z;Júlio Cesar;2371.726;115393805;Brazil; -2018-12-02T07:28:12Z;Ana;3457.966;114871657;Brazil; -2018-12-02T07:25:33Z;Eduardo;137.7832;116115768;Brazil; -2018-12-02T07:18:49Z;Júlio;5595.21;116349731;Brazil; -2018-12-02T07:17:39Z;Júlio;6019.557;115733599;Brazil; -2018-12-02T05:33:57Z;Armando;1362.773;115826356;Brazil; -2018-12-02T05:28:46Z;Armando;2117.953;115476472;Brazil; -2018-12-02T05:27:39Z;Sandra;2134.401;115885110;Brazil; -2018-12-02T05:21:12Z;nathalia;3047.63;115090474;Brazil; -2018-12-02T05:19:34Z;Nathália;2100.244;115599940;Brazil; -2018-12-02T04:59:22Z;Nathália;3408.3;115705313;Brazil; -2018-12-02T04:57:18Z;Júlio Cesar;3420.066;116170925;Brazil; -2018-12-02T04:40:15Z;Ana;1585.596;114241862;Brazil; -2018-12-02T03:53:54Z;Ana;189.9438;115227718;Brazil; -2018-12-02T03:48:35Z;Júlio;3497.167;115642199;Brazil; -2018-12-02T03:25:59Z;Eduardo;4248.254;114734877;Brazil; -2018-12-02T03:11:53Z;Armando;3455.497;115389412;Brazil; -2018-12-02T02:37:29Z;Armando;284.0323;115290221;Brazil; -2018-12-02T02:34:38Z;Nathália;1141.774;115011394;Brazil; -2018-12-02T02:17:10Z;Eduardo;1446.644;115832590;Brazil; -2018-12-02T02:13:23Z;Armando;1753.816;114944117;Brazil; -2018-12-02T01:59:53Z;nathalia;3706.751;115267228;Brazil; -2018-12-02T01:55:16Z;Sandra;4349.216;115886229;Brazil; -2018-12-02T01:51:12Z;Júlio Cesar;3355.98;116100225;Brazil; -2018-12-02T01:45:58Z;Armando;3845.359;114782304;Brazil; -2018-12-02T00:51:50Z;Eduardo;3915.063;115224900;Brazil; -2018-12-02T00:36:50Z;Júlio;2823.387;114610024;Brazil; -2018-12-02T00:09:47Z;Sandra;3180.97;114496573;Brazil; -2018-12-01T23:48:44Z;Eduardo;2133.438;114758792;Brazil; -2018-12-01T23:48:31Z;nathalia;3598.314;115152731;Brazil; -2018-12-01T23:34:55Z;Sandra;4921.572;114613695;Brazil; -2018-12-01T23:32:46Z;Ana;758.8724;116120262;Brazil; -2018-12-01T23:18:06Z;Eduardo;2578.911;114475593;Brazil; -2018-12-01T22:59:26Z;Júlio Cesar;2162.13;114256236;Brazil; -2018-12-01T22:55:46Z;nathalia;409.6535;115024587;Brazil; -2018-12-01T22:44:30Z;Júlio Cesar;2778.89;115886602;Brazil; -2018-12-01T22:32:20Z;Sandra;1986.708;114299461;Brazil; -2018-12-01T22:25:20Z;Júlio Cesar;2456.798;116243137;Brazil; -2018-12-01T22:09:02Z;Armando;825.3077;114719174;Brazil; -2018-12-01T21:54:00Z;Armando;2698.451;116130886;Brazil; -2018-12-01T21:45:58Z;nathalia;1877.157;115088138;Brazil; -2018-12-01T21:42:55Z;Armando;2040.934;114538970;Brazil; -2018-12-01T21:39:38Z;Nathália;1662.376;114295751;Brazil; -2018-12-01T21:09:02Z;Ana;1418.72;116084799;Brazil; -2018-12-01T21:02:43Z;nathalia;942.8708;115914836;Brazil; -2018-12-01T20:39:20Z;Júlio;2568.911;116123787;Brazil; -2018-12-01T20:34:36Z;Ana;3188.494;114609491;Brazil; -2018-12-01T20:27:47Z;Sandra;1301.792;115985891;Brazil; -2018-12-01T20:27:46Z;Júlio Cesar;2975.233;114234138;Brazil; -2018-12-01T19:55:39Z;Nathália;3321.73;114662517;Brazil; -2018-12-01T19:41:29Z;nathalia;3844.626;114243448;Brazil; -2018-12-01T19:40:58Z;Júlio Cesar;1951.754;116017182;Brazil; -2018-12-01T19:33:06Z;Júlio Cesar;1193.165;114682492;Brazil; -2018-12-01T19:32:43Z;Eduardo;185.8392;116288654;Brazil; -2018-12-01T19:13:50Z;Eduardo;2568.091;115837320;Brazil; -2018-12-01T19:04:52Z;Júlio Cesar;1228.41;114571495;Brazil; -2018-12-01T19:01:11Z;Sandra;1477.398;115141692;Brazil; -2018-12-01T18:58:57Z;Eduardo;2687.235;116393491;Brazil; -2018-12-01T18:19:45Z;Júlio;1672.014;115467975;Brazil; -2018-12-01T18:11:38Z;Sandra;3694.313;116087295;Brazil; -2018-12-01T17:19:37Z;Armando;1015.021;115843328;Brazil; -2018-12-01T17:00:27Z;Sandra;103.1427;115182586;Brazil; -2018-12-01T16:43:27Z;Eduardo;4515.189;114623522;Brazil; -2018-12-01T16:42:40Z;Júlio Cesar;1646.962;114508551;Brazil; -2018-12-01T16:23:46Z;Sandra;2692.49;115221553;Brazil; -2018-12-01T16:21:28Z;Ana;1461.217;115090418;Brazil; -2018-12-01T16:09:06Z;Júlio;3552.671;116314139;Brazil; -2018-12-01T15:59:54Z;Júlio Cesar;2272.121;114675720;Brazil; -2018-12-01T15:47:00Z;Júlio Cesar;3381.481;116329571;Brazil; -2018-12-01T15:44:51Z;Ana;1448.061;114673905;Brazil; -2018-12-01T15:43:34Z;Júlio;4643.099;114729336;Brazil; -2018-12-01T15:41:40Z;Sandra;1149.811;114978855;Brazil; -2018-12-01T15:12:09Z;Eduardo;1428.793;114831871;Brazil; -2018-12-01T14:43:00Z;Ana;4966.194;115519346;Brazil; -2018-12-01T14:34:51Z;Júlio;1203.206;114510969;Brazil; -2018-12-01T14:04:53Z;Nathália;2625.192;115096738;Brazil; -2018-12-01T14:01:40Z;nathalia;1232.922;116132249;Brazil; -2018-12-01T14:01:22Z;Ana;738.3926;114217187;Brazil; -2018-12-01T13:43:58Z;Nathália;1209.977;115102613;Brazil; -2018-12-01T13:23:22Z;Júlio;3832.769;114777208;Brazil; -2018-12-01T13:21:56Z;Júlio Cesar;4988.726;116277898;Brazil; -2018-12-01T13:19:02Z;Sandra;1074.949;114888084;Brazil; -2018-12-01T12:47:15Z;Ana;989.9199;114506840;Brazil; -2018-12-01T12:39:44Z;Armando;1381.299;116107395;Brazil; -2018-12-01T12:34:30Z;Eduardo;3682.678;116257317;Brazil; -2018-12-01T12:29:52Z;nathalia;2444.199;114940516;Brazil; -2018-12-01T11:52:02Z;Júlio Cesar;4208.188;116383137;Brazil; -2018-12-01T11:10:32Z;Ana;2563.66;114853984;Brazil; -2018-12-01T11:00:35Z;Júlio;3949.602;114675309;Brazil; -2018-12-01T10:55:47Z;nathalia;880.4718;115553216;Brazil; -2018-12-01T10:54:50Z;Eduardo;1103.868;116100953;Brazil; -2018-12-01T10:46:40Z;Ana;363.6587;115409316;Brazil; -2018-12-01T10:22:57Z;Júlio Cesar;2464.185;114543632;Brazil; -2018-12-01T08:55:03Z;Sandra;2037.742;115484689;Brazil; -2018-12-01T08:47:01Z;nathalia;295.0869;114340421;Brazil; -2018-12-01T08:21:29Z;Armando;4459.649;115030832;Brazil; -2018-12-01T08:06:12Z;Nathália;1063.28;114330890;Brazil; -2018-12-01T07:51:22Z;Júlio;66.96945;116361975;Brazil; -2018-12-01T07:50:09Z;Ana;3341.583;115620515;Brazil; -2018-12-01T07:43:25Z;nathalia;2958.961;115329592;Brazil; -2018-12-01T07:29:31Z;Júlio;460.4836;115671616;Brazil; -2018-12-01T06:26:16Z;nathalia;4064.811;115189726;Brazil; -2018-12-01T06:11:55Z;Ana;1634.827;115517839;Brazil; -2018-12-01T05:41:38Z;Ana;87.15394;115652451;Brazil; -2018-12-01T05:30:33Z;Eduardo;1244.633;115532310;Brazil; -2018-12-01T05:16:52Z;Nathália;798.4934;115439514;Brazil; -2018-12-01T05:00:47Z;Júlio;2499.84;115252526;Brazil; -2018-12-01T04:45:19Z;Armando;1604.847;115588349;Brazil; -2018-12-01T04:40:43Z;Armando;2906.335;115367902;Brazil; -2018-12-01T04:27:35Z;Nathália;2940.417;114458359;Brazil; -2018-12-01T04:10:25Z;Ana;1715.192;115982213;Brazil; -2018-12-01T04:04:27Z;Sandra;3156.735;115752811;Brazil; -2018-12-01T03:56:59Z;Ana;2531.414;114605660;Brazil; -2018-12-01T03:45:54Z;Sandra;2780.7;115592281;Brazil; -2018-12-01T03:45:21Z;Sandra;31.10036;114523491;Brazil; -2018-12-01T03:34:34Z;Nathália;3119.882;115459314;Brazil; -2018-12-01T02:33:36Z;Eduardo;2692.18;115587312;Brazil; -2018-12-01T01:59:04Z;nathalia;2365.724;115428738;Brazil; -2018-12-01T01:46:16Z;Nathália;4442.256;115652212;Brazil; -2018-12-01T01:43:19Z;Júlio Cesar;4568.9;115772640;Brazil; -2018-12-01T01:21:44Z;Eduardo;64.89045;115178229;Brazil; -2018-12-01T01:21:15Z;Armando;2635.834;116265095;Brazil; -2018-12-01T01:08:35Z;Júlio Cesar;703.1246;115516545;Brazil; -2018-12-01T01:05:23Z;Eduardo;441.7383;114549558;Brazil; -2018-12-01T01:00:06Z;nathalia;469.3616;114306424;Brazil; -2018-12-01T00:43:49Z;Sandra;5109.592;116255910;Brazil; -2018-12-01T00:14:07Z;Sandra;4400.041;114423921;Brazil; -2018-12-01T00:02:18Z;nathalia;2326.997;115417457;Brazil; -2018-11-30T23:07:26Z;nathalia;4251.275;115096392;Brazil; -2018-11-30T22:58:47Z;Armando;1517.298;115086531;Brazil; -2018-11-30T22:53:00Z;nathalia;769.1566;115432556;Brazil; -2018-11-30T22:42:03Z;Ana;2021.374;114926767;Brazil; -2018-11-30T22:39:51Z;Sandra;2208.544;115986119;Brazil; -2018-11-30T22:14:25Z;nathalia;1566.527;116087935;Brazil; -2018-11-30T21:19:20Z;nathalia;1653.368;116314949;Brazil; -2018-11-30T20:11:30Z;Sandra;1561.578;114274558;Brazil; -2018-11-30T19:50:38Z;Armando;2585.992;116103658;Brazil; -2018-11-30T19:18:09Z;Júlio Cesar;4101.777;116391481;Brazil; -2018-11-30T19:01:09Z;Sandra;2108.867;114776861;Brazil; -2018-11-30T18:56:48Z;nathalia;964.6027;116299360;Brazil; -2018-11-30T18:44:52Z;Sandra;3965.474;115346948;Brazil; -2018-11-30T18:37:16Z;Armando;3860.34;114636897;Brazil; -2018-11-30T18:26:52Z;Nathália;248.3123;116242303;Brazil; -2018-11-30T17:48:32Z;Armando;1301.761;116146077;Brazil; -2018-11-30T17:46:31Z;Sandra;762.7971;114603512;Brazil; -2018-11-30T17:19:04Z;Ana;1995.044;114355603;Brazil; -2018-11-30T17:13:40Z;Armando;4065.966;115366729;Brazil; -2018-11-30T16:06:02Z;Júlio Cesar;4303.122;116105621;Brazil; -2018-11-30T16:03:03Z;Júlio;310.1203;115476285;Brazil; -2018-11-30T15:47:25Z;nathalia;3204.81;115141943;Brazil; -2018-11-30T15:42:16Z;Armando;2726.769;115984391;Brazil; -2018-11-30T15:37:25Z;Eduardo;2687.419;114697499;Brazil; -2018-11-30T15:28:57Z;Ana;3505.334;116293454;Brazil; -2018-11-30T15:26:15Z;Ana;1657.321;116229174;Brazil; -2018-11-30T15:24:44Z;Eduardo;1448.681;115378661;Brazil; -2018-11-30T15:22:07Z;Eduardo;3915.461;115352326;Brazil; -2018-11-30T15:15:04Z;Armando;1141.11;115103056;Brazil; -2018-11-30T15:05:58Z;Sandra;2975.772;115969099;Brazil; -2018-11-30T14:42:33Z;nathalia;443.0448;115987134;Brazil; -2018-11-30T14:41:35Z;nathalia;3242.344;115163910;Brazil; -2018-11-30T14:31:28Z;Sandra;2619.596;114258643;Brazil; -2018-11-30T14:27:17Z;Armando;2458.882;115163257;Brazil; -2018-11-30T14:21:22Z;Júlio;5253.662;114463642;Brazil; -2018-11-30T14:07:39Z;Sandra;4029.838;115438350;Brazil; -2018-11-30T13:20:11Z;Sandra;3632.123;114655151;Brazil; -2018-11-30T13:11:32Z;Eduardo;2473.37;114612807;Brazil; -2018-11-30T13:05:51Z;Armando;2184.115;115651648;Brazil; -2018-11-30T13:01:56Z;Armando;2487.104;114599531;Brazil; -2018-11-30T12:54:49Z;Eduardo;3302.484;115060695;Brazil; -2018-11-30T12:28:39Z;Júlio Cesar;1135.427;116168601;Brazil; -2018-11-30T12:22:03Z;Nathália;1798.593;115904035;Brazil; -2018-11-30T12:11:43Z;Eduardo;2829.522;114750999;Brazil; -2018-11-30T11:51:25Z;Eduardo;38.18458;115132844;Brazil; -2018-11-30T11:50:21Z;Nathália;3103.162;114518841;Brazil; -2018-11-30T11:38:23Z;nathalia;2173.47;115892997;Brazil; -2018-11-30T11:30:27Z;Ana;577.2761;115307388;Brazil; -2018-11-30T11:23:04Z;Armando;4033.823;114703827;Brazil; -2018-11-30T11:05:36Z;Sandra;2717.749;115076558;Brazil; -2018-11-30T10:42:13Z;Sandra;1905.383;115666592;Brazil; -2018-11-30T10:40:03Z;nathalia;3192.924;114680702;Brazil; -2018-11-30T10:22:56Z;Nathália;2139.873;115422511;Brazil; -2018-11-30T09:34:14Z;Sandra;3868.26;114344774;Brazil; -2018-11-30T09:31:36Z;Sandra;1680.433;114922039;Brazil; -2018-11-30T09:20:02Z;Júlio;5294.88;115726797;Brazil; -2018-11-30T08:26:29Z;Armando;572.7409;115644381;Brazil; -2018-11-30T08:22:11Z;Júlio;1014.696;115990923;Brazil; -2018-11-30T08:15:58Z;Júlio;1176.067;116248059;Brazil; -2018-11-30T08:12:21Z;nathalia;760.5461;114906541;Brazil; -2018-11-30T08:03:35Z;Sandra;801.13;115154881;Brazil; -2018-11-30T07:49:38Z;Eduardo;2186.368;114755837;Brazil; -2018-11-30T07:24:52Z;Eduardo;4683.262;115424065;Brazil; -2018-11-30T06:50:32Z;nathalia;688.215;114777345;Brazil; -2018-11-30T06:40:55Z;nathalia;2844.808;114694417;Brazil; -2018-11-30T06:22:34Z;Nathália;1978.84;115662865;Brazil; -2018-11-30T06:10:58Z;Armando;123.5038;114203607;Brazil; -2018-11-30T06:06:06Z;Eduardo;3582.618;115435054;Brazil; -2018-11-30T05:56:06Z;Eduardo;78.31184;115573983;Brazil; -2018-11-30T05:53:16Z;Nathália;1727.307;114864737;Brazil; -2018-11-30T05:40:37Z;Sandra;2734.26;115062264;Brazil; -2018-11-30T05:26:40Z;nathalia;1002.973;116368535;Brazil; -2018-11-30T04:59:43Z;Eduardo;3528.957;116034855;Brazil; -2018-11-30T04:42:06Z;Nathália;1263.896;116086088;Brazil; -2018-11-30T04:39:06Z;Eduardo;528.1305;114927369;Brazil; -2018-11-30T04:03:52Z;Eduardo;1683.094;115080163;Brazil; -2018-11-30T03:32:25Z;Armando;1992.244;115130248;Brazil; -2018-11-30T02:57:31Z;Ana;2036.621;115725173;Brazil; -2018-11-30T02:46:55Z;Sandra;1444.093;116201586;Brazil; -2018-11-30T02:39:27Z;Ana;687.8733;115645254;Brazil; -2018-11-30T02:38:59Z;Ana;4185.897;116091402;Brazil; -2018-11-30T02:20:20Z;Armando;545.6843;114961726;Brazil; -2018-11-30T02:19:17Z;Sandra;1630.26;115856037;Brazil; -2018-11-30T01:53:27Z;Armando;2675.511;116093112;Brazil; -2018-11-30T01:45:34Z;Eduardo;4384.157;115068456;Brazil; -2018-11-30T01:34:34Z;Júlio;129.8684;114454729;Brazil; -2018-11-30T01:02:04Z;Nathália;1342.833;116121686;Brazil; -2018-11-30T01:01:49Z;Sandra;1008.676;115042380;Brazil; -2018-11-30T00:57:21Z;Ana;2232.205;116225265;Brazil; -2018-11-30T00:55:02Z;Ana;976.5957;114912465;Brazil; -2018-11-30T00:40:05Z;Armando;3662.378;115643053;Brazil; -2018-11-30T00:38:53Z;Armando;3847.776;114338350;Brazil; -2018-11-30T00:38:04Z;Júlio;1044.975;114623323;Brazil; -2018-11-30T00:00:37Z;Ana;2386.771;115002019;Brazil; -2018-11-29T23:59:11Z;Ana;2481.424;115137233;Brazil; -2018-11-29T23:49:18Z;Armando;3435.329;116388675;Brazil; -2018-11-29T23:40:58Z;Eduardo;1797.483;115795248;Brazil; -2018-11-29T23:22:21Z;Júlio;2308.843;114375729;Brazil; -2018-11-29T23:09:19Z;Ana;2850.521;114319201;Brazil; -2018-11-29T22:56:55Z;Ana;1651.686;115128427;Brazil; -2018-11-29T22:36:34Z;Eduardo;3743.367;114966557;Brazil; -2018-11-29T22:30:56Z;nathalia;3902.739;115324519;Brazil; -2018-11-29T21:42:19Z;Júlio Cesar;2839.626;114258970;Brazil; -2018-11-29T21:39:49Z;Júlio;2981.902;115660761;Brazil; -2018-11-29T21:13:36Z;Armando;2280.011;116105970;Brazil; -2018-11-29T20:58:35Z;Eduardo;96.43975;116379791;Brazil; -2018-11-29T20:09:40Z;Armando;2571.119;116074459;Brazil; -2018-11-29T19:53:56Z;Eduardo;1264.302;114549729;Brazil; -2018-11-29T19:31:47Z;Júlio;4000.946;114341966;Brazil; -2018-11-29T19:00:21Z;Júlio Cesar;2164.023;115133485;Brazil; -2018-11-29T18:53:44Z;Júlio Cesar;3495.16;114601786;Brazil; -2018-11-29T18:43:40Z;Eduardo;2869.182;114326072;Brazil; -2018-11-29T18:33:31Z;Júlio;2753.901;114730627;Brazil; -2018-11-29T18:08:46Z;Júlio Cesar;3215.951;114532701;Brazil; -2018-11-29T18:00:02Z;Ana;558.4554;115372256;Brazil; -2018-11-29T17:28:46Z;Júlio;5369.729;115191202;Brazil; -2018-11-29T17:22:35Z;Júlio Cesar;4069.203;114305817;Brazil; -2018-11-29T17:19:06Z;Armando;2749.582;116074307;Brazil; -2018-11-29T17:16:31Z;Júlio;2569.718;114989601;Brazil; -2018-11-29T17:10:13Z;nathalia;2339.47;116060291;Brazil; -2018-11-29T17:09:28Z;Eduardo;56.48112;114998270;Brazil; -2018-11-29T16:51:40Z;Júlio;2734.283;114865167;Brazil; -2018-11-29T16:49:18Z;Armando;2666.65;115418376;Brazil; -2018-11-29T16:48:32Z;Júlio;1299.345;114216308;Brazil; -2018-11-29T16:47:37Z;Ana;1704.176;115907792;Brazil; -2018-11-29T16:23:36Z;Júlio;1670.003;115885205;Brazil; -2018-11-29T15:38:51Z;Nathália;3005.587;116196622;Brazil; -2018-11-29T15:37:15Z;Nathália;678.6085;115868143;Brazil; -2018-11-29T15:29:42Z;Armando;2659.042;116234139;Brazil; -2018-11-29T15:06:19Z;Sandra;3709.529;114954051;Brazil; -2018-11-29T14:56:10Z;Eduardo;2751.589;114857991;Brazil; -2018-11-29T14:27:28Z;Júlio;1532.603;114468881;Brazil; -2018-11-29T14:16:21Z;nathalia;3495.284;115054186;Brazil; -2018-11-29T13:26:26Z;Nathália;1767.755;115550163;Brazil; -2018-11-29T13:24:08Z;Nathália;2313.679;115659059;Brazil; -2018-11-29T12:41:02Z;Sandra;456.6059;114408260;Brazil; -2018-11-29T12:32:31Z;Ana;1868.981;114440744;Brazil; -2018-11-29T12:30:02Z;Ana;3543.596;114347579;Brazil; -2018-11-29T11:19:08Z;Júlio;4195.328;116116336;Brazil; -2018-11-29T11:12:04Z;Nathália;1893.205;115475464;Brazil; -2018-11-29T10:53:55Z;Nathália;3126.46;114966263;Brazil; -2018-11-29T10:53:04Z;Nathália;3286.898;115514271;Brazil; -2018-11-29T10:42:39Z;Armando;390.3291;114385296;Brazil; -2018-11-29T10:26:06Z;Ana;1257.055;114279492;Brazil; -2018-11-29T10:20:09Z;Eduardo;2152.717;115714892;Brazil; -2018-11-29T09:39:52Z;Ana;1981.97;116292529;Brazil; -2018-11-29T09:28:20Z;Eduardo;1009.168;114545790;Brazil; -2018-11-29T08:59:58Z;Armando;3692.722;116047771;Brazil; -2018-11-29T08:58:32Z;Júlio;454.4032;115214510;Brazil; -2018-11-29T08:52:48Z;Eduardo;25.34347;116337894;Brazil; -2018-11-29T08:15:25Z;Júlio;2766.295;115931750;Brazil; -2018-11-29T08:15:14Z;Armando;894.8725;115563416;Brazil; -2018-11-29T08:12:51Z;Ana;3567.268;114345242;Brazil; -2018-11-29T08:04:18Z;Eduardo;5888.468;114597872;Brazil; -2018-11-29T07:35:03Z;Ana;3895.425;114233775;Brazil; -2018-11-29T07:33:34Z;Sandra;1630.45;114589557;Brazil; -2018-11-29T07:14:41Z;Júlio Cesar;3979.826;115004478;Brazil; -2018-11-29T06:50:33Z;nathalia;921.0106;115294216;Brazil; -2018-11-29T06:09:22Z;nathalia;4556.487;115628098;Brazil; -2018-11-29T05:48:47Z;Eduardo;2025.041;115730386;Brazil; -2018-11-29T05:41:21Z;Eduardo;719.6092;114888733;Brazil; -2018-11-29T05:37:40Z;Eduardo;1371.507;115076695;Brazil; -2018-11-29T05:28:58Z;Sandra;812.136;114795489;Brazil; -2018-11-29T05:06:27Z;nathalia;1076.61;116399681;Brazil; -2018-11-29T04:47:14Z;Júlio Cesar;3465.23;114798572;Brazil; -2018-11-29T04:22:06Z;Eduardo;1040.691;115230148;Brazil; -2018-11-29T04:07:48Z;Júlio;4183.772;115602981;Brazil; -2018-11-29T04:07:21Z;Júlio Cesar;3770.775;115423718;Brazil; -2018-11-29T04:03:56Z;nathalia;911.8372;116254362;Brazil; -2018-11-29T03:22:55Z;Sandra;6449.501;115639612;Brazil; -2018-11-29T03:22:19Z;Eduardo;634.4885;116179008;Brazil; -2018-11-29T03:14:00Z;Ana;2020.654;114776387;Brazil; -2018-11-29T03:09:17Z;Júlio Cesar;77.74237;115674410;Brazil; -2018-11-29T03:08:46Z;Sandra;2292.733;115661925;Brazil; -2018-11-29T02:01:35Z;Júlio Cesar;2139.158;116144713;Brazil; -2018-11-29T01:35:26Z;nathalia;3567.824;115279472;Brazil; -2018-11-29T01:27:58Z;Sandra;856.9148;115509605;Brazil; -2018-11-29T01:18:45Z;nathalia;3509.275;115850229;Brazil; -2018-11-29T01:13:00Z;nathalia;1122.122;115462415;Brazil; -2018-11-29T00:33:49Z;Júlio Cesar;1767.441;114724243;Brazil; -2018-11-29T00:21:36Z;Nathália;2056.945;115311835;Brazil; -2018-11-29T00:04:38Z;Nathália;285.1673;115314179;Brazil; -2018-11-28T23:58:21Z;Júlio Cesar;1595.887;115108058;Brazil; -2018-11-28T23:58:15Z;Ana;3822.207;116184415;Brazil; -2018-11-28T23:32:35Z;Nathália;23.87525;115469016;Brazil; -2018-11-28T23:13:47Z;Nathália;2027.662;116183593;Brazil; -2018-11-28T23:10:24Z;Nathália;997.2131;114733075;Brazil; -2018-11-28T22:59:30Z;Ana;2584.693;115184953;Brazil; -2018-11-28T22:17:56Z;Armando;3001.496;116294095;Brazil; -2018-11-28T22:04:36Z;Nathália;2307.154;114415027;Brazil; -2018-11-28T21:51:20Z;Júlio Cesar;1169.681;115159840;Brazil; -2018-11-28T21:27:17Z;Júlio;1430.07;114494157;Brazil; -2018-11-28T21:24:35Z;nathalia;2689.612;115163463;Brazil; -2018-11-28T21:04:01Z;Nathália;3540.598;116331030;Brazil; -2018-11-28T21:01:01Z;Sandra;2619.135;116250554;Brazil; -2018-11-28T20:58:17Z;nathalia;3168.395;115574371;Brazil; -2018-11-28T20:57:33Z;Ana;1949.124;115460963;Brazil; -2018-11-28T20:31:26Z;Sandra;3533.915;114771887;Brazil; -2018-11-28T20:22:18Z;nathalia;2811.335;116257676;Brazil; -2018-11-28T20:03:46Z;Nathália;4387.277;114332509;Brazil; -2018-11-28T19:59:29Z;Armando;2369.379;114621670;Brazil; -2018-11-28T19:56:04Z;Nathália;254.9142;116167437;Brazil; -2018-11-28T19:53:06Z;nathalia;3004.188;114476128;Brazil; -2018-11-28T19:40:52Z;Nathália;2621.814;115826219;Brazil; -2018-11-28T19:08:38Z;Eduardo;660.2368;115363843;Brazil; -2018-11-28T19:07:36Z;Eduardo;2165.653;116237413;Brazil; -2018-11-28T19:07:22Z;Ana;121.1665;115597002;Brazil; -2018-11-28T18:48:38Z;Eduardo;1608.822;114506900;Brazil; -2018-11-28T18:20:46Z;Júlio Cesar;3038.44;114856662;Brazil; -2018-11-28T18:08:23Z;Nathália;3264.685;115298045;Brazil; -2018-11-28T18:05:24Z;nathalia;647.7194;115374506;Brazil; -2018-11-28T17:52:17Z;Júlio Cesar;255.4719;115030702;Brazil; -2018-11-28T17:49:14Z;Nathália;1597.267;114849697;Brazil; -2018-11-28T17:46:49Z;Júlio Cesar;243.1904;116371244;Brazil; -2018-11-28T17:44:56Z;Júlio Cesar;3360.418;115701414;Brazil; -2018-11-28T17:42:12Z;Armando;2035.604;114272646;Brazil; -2018-11-28T17:35:52Z;Eduardo;3572.141;114953745;Brazil; -2018-11-28T17:24:25Z;Nathália;2169.266;114495478;Brazil; -2018-11-28T17:22:42Z;Júlio;2584.051;115574150;Brazil; -2018-11-28T17:14:21Z;Ana;3484.215;115543353;Brazil; -2018-11-28T17:13:18Z;Armando;2392.174;115574349;Brazil; -2018-11-28T17:11:42Z;Júlio;1730.869;115264969;Brazil; -2018-11-28T17:03:02Z;Sandra;1230.203;115164776;Brazil; -2018-11-28T16:56:38Z;Nathália;3697.761;114795492;Brazil; -2018-11-28T16:40:31Z;Júlio Cesar;3676.242;116225488;Brazil; -2018-11-28T16:29:53Z;Ana;2309.434;115173576;Brazil; -2018-11-28T15:45:06Z;Ana;3573.699;115766418;Brazil; -2018-11-28T15:43:25Z;Armando;3517.791;116349738;Brazil; -2018-11-28T14:39:21Z;Eduardo;809.5975;115128378;Brazil; -2018-11-28T14:31:17Z;Júlio Cesar;3630.878;114518723;Brazil; -2018-11-28T14:01:29Z;Eduardo;2319.276;114508269;Brazil; -2018-11-28T13:25:44Z;Júlio Cesar;623.5201;114789691;Brazil; -2018-11-28T13:00:54Z;nathalia;2343.021;115483216;Brazil; -2018-11-28T13:00:04Z;Ana;1608.635;114314022;Brazil; -2018-11-28T12:57:15Z;Nathália;2404.579;114606401;Brazil; -2018-11-28T12:43:22Z;Júlio;3978.464;114222265;Brazil; -2018-11-28T11:53:38Z;Júlio Cesar;3073.307;114981928;Brazil; -2018-11-28T11:51:36Z;Sandra;2358.616;116146490;Brazil; -2018-11-28T11:48:34Z;Nathália;280.1271;114314233;Brazil; -2018-11-28T11:08:01Z;Eduardo;753.5013;115853782;Brazil; -2018-11-28T11:03:23Z;Armando;3985.131;115758148;Brazil; -2018-11-28T11:00:18Z;Júlio Cesar;302.5353;115411916;Brazil; -2018-11-28T10:33:10Z;Júlio;1679.461;116348882;Brazil; -2018-11-28T10:07:34Z;Júlio;3444.405;115109289;Brazil; -2018-11-28T09:58:01Z;Armando;2022.749;115885275;Brazil; -2018-11-28T09:39:10Z;Júlio Cesar;2459.587;115069756;Brazil; -2018-11-28T09:11:56Z;Júlio Cesar;818.2986;115500862;Brazil; -2018-11-28T08:55:38Z;Júlio Cesar;5443.221;114344249;Brazil; -2018-11-28T08:39:48Z;Júlio Cesar;5300.128;114767013;Brazil; -2018-11-28T08:36:25Z;nathalia;206.4436;114598122;Brazil; -2018-11-28T08:28:06Z;Júlio Cesar;2947.989;115415240;Brazil; -2018-11-28T08:26:54Z;Nathália;3290.025;115328128;Brazil; -2018-11-28T07:15:16Z;Júlio;3069.456;114706321;Brazil; -2018-11-28T06:15:16Z;Júlio Cesar;3122.326;115095972;Brazil; -2018-11-28T06:15:15Z;Júlio Cesar;3267.253;114955473;Brazil; -2018-11-28T06:08:59Z;Nathália;3945.674;115892045;Brazil; -2018-11-28T06:03:14Z;Júlio Cesar;3319.416;115889630;Brazil; -2018-11-28T05:17:18Z;Nathália;630.8861;116078840;Brazil; -2018-11-28T04:52:45Z;Sandra;711.3892;115587734;Brazil; -2018-11-28T04:12:09Z;Júlio;3922.437;116270588;Brazil; -2018-11-28T04:11:57Z;Eduardo;720.6647;115706965;Brazil; -2018-11-28T03:37:27Z;Júlio;1105.837;116114489;Brazil; -2018-11-28T03:20:03Z;Armando;1054.459;114469760;Brazil; -2018-11-28T03:09:53Z;Sandra;3960.574;116030196;Brazil; -2018-11-28T03:08:37Z;Júlio;4547.776;115655341;Brazil; -2018-11-28T03:03:45Z;Ana;484.8931;114509488;Brazil; -2018-11-28T03:00:26Z;Júlio Cesar;693.0893;115704002;Brazil; -2018-11-28T02:56:45Z;Júlio Cesar;792.6322;115247387;Brazil; -2018-11-28T02:40:32Z;nathalia;2871.105;114738245;Brazil; -2018-11-28T02:25:18Z;Júlio;3663.796;116061901;Brazil; -2018-11-28T01:59:19Z;Júlio;4134.462;115469182;Brazil; -2018-11-28T01:52:23Z;Júlio;3377.839;115111989;Brazil; -2018-11-28T01:45:10Z;Júlio Cesar;3278.96;115605139;Brazil; -2018-11-28T01:41:15Z;Júlio;2398.829;114404109;Brazil; -2018-11-28T01:29:56Z;nathalia;229.7824;116204590;Brazil; -2018-11-28T01:15:40Z;Eduardo;3616.144;115392422;Brazil; -2018-11-28T00:59:27Z;Armando;3546.331;115904187;Brazil; -2018-11-28T00:56:13Z;Sandra;3915.211;114708363;Brazil; -2018-11-28T00:51:35Z;Júlio Cesar;463.7062;114561478;Brazil; -2018-11-28T00:19:30Z;nathalia;4538.838;115130033;Brazil; -2018-11-27T23:54:42Z;Sandra;4478.621;116088983;Brazil; -2018-11-27T23:51:50Z;Nathália;2189.605;116243405;Brazil; -2018-11-27T23:47:15Z;nathalia;2125.242;115125079;Brazil; -2018-11-27T23:21:11Z;Júlio Cesar;2584.001;114703590;Brazil; -2018-11-27T23:17:22Z;Sandra;3340.038;115291572;Brazil; -2018-11-27T22:57:57Z;Ana;3220.907;115089899;Brazil; -2018-11-27T22:33:48Z;Júlio;2773.564;115038165;Brazil; -2018-11-27T22:03:35Z;Armando;1566.011;115815465;Brazil; -2018-11-27T22:02:34Z;Júlio;1901.346;114942542;Brazil; -2018-11-27T21:52:13Z;nathalia;973.1983;116054685;Brazil; -2018-11-27T21:27:19Z;Sandra;1258.512;116208021;Brazil; -2018-11-27T21:17:55Z;Júlio;2789.898;115782489;Brazil; -2018-11-27T20:31:56Z;Armando;3324.14;116076706;Brazil; -2018-11-27T20:29:50Z;Júlio;869.8265;114989058;Brazil; -2018-11-27T20:25:11Z;Nathália;3926.487;116201038;Brazil; -2018-11-27T20:16:30Z;nathalia;4059.805;114467022;Brazil; -2018-11-27T19:52:17Z;Sandra;3779.525;115060013;Brazil; -2018-11-27T19:48:13Z;Sandra;2120.628;116377696;Brazil; -2018-11-27T19:38:31Z;Júlio Cesar;1180.95;116093956;Brazil; -2018-11-27T19:32:46Z;Eduardo;2077.079;114901225;Brazil; -2018-11-27T19:20:26Z;Ana;2197.798;114562547;Brazil; -2018-11-27T19:15:14Z;Armando;3266.255;114346004;Brazil; -2018-11-27T18:47:28Z;Nathália;3578.759;114298590;Brazil; -2018-11-27T18:44:03Z;Júlio Cesar;4017.93;115318806;Brazil; -2018-11-27T18:25:50Z;Júlio Cesar;1530.429;115300169;Brazil; -2018-11-27T18:03:48Z;Eduardo;2056.664;116365809;Brazil; -2018-11-27T17:35:00Z;nathalia;712.9306;114778497;Brazil; -2018-11-27T17:20:58Z;Júlio;2902.447;114774039;Brazil; -2018-11-27T17:20:41Z;Ana;2567.667;115091990;Brazil; -2018-11-27T16:21:45Z;Nathália;1891.221;115329306;Brazil; -2018-11-27T16:20:59Z;Armando;3523.035;116056437;Brazil; -2018-11-27T16:11:40Z;Sandra;1845.835;114392477;Brazil; -2018-11-27T16:10:08Z;Júlio Cesar;1333.973;114982595;Brazil; -2018-11-27T15:48:47Z;Júlio Cesar;2118.157;115080937;Brazil; -2018-11-27T15:45:50Z;Júlio;2352.694;116324921;Brazil; -2018-11-27T15:40:52Z;Júlio Cesar;399.0209;115822915;Brazil; -2018-11-27T15:03:30Z;Eduardo;2078.605;114612154;Brazil; -2018-11-27T14:41:24Z;Eduardo;1533.397;116136174;Brazil; -2018-11-27T14:16:34Z;Eduardo;23.21265;115306612;Brazil; -2018-11-27T14:05:00Z;Nathália;2584.529;116150687;Brazil; -2018-11-27T13:34:37Z;Ana;1223.202;114812905;Brazil; -2018-11-27T13:29:55Z;Júlio;564.7625;115918407;Brazil; -2018-11-27T13:27:49Z;Júlio;2949.184;115303668;Brazil; -2018-11-27T13:18:54Z;Nathália;174.9521;115110284;Brazil; -2018-11-27T13:17:00Z;Júlio Cesar;883.3726;115574804;Brazil; -2018-11-27T12:39:10Z;Nathália;2004.126;115090379;Brazil; -2018-11-27T12:35:31Z;Nathália;573.444;114407016;Brazil; -2018-11-27T12:08:58Z;Eduardo;797.6373;115703171;Brazil; -2018-11-27T11:49:10Z;nathalia;4563.78;115893613;Brazil; -2018-11-27T11:11:41Z;Nathália;3188.405;114270630;Brazil; -2018-11-27T11:00:39Z;Armando;3964.639;115179017;Brazil; -2018-11-27T10:55:12Z;Júlio Cesar;1380.324;116149191;Brazil; -2018-11-27T10:39:47Z;Sandra;2598.769;114938208;Brazil; -2018-11-27T10:34:53Z;Eduardo;2790.859;116061611;Brazil; -2018-11-27T10:06:37Z;Júlio Cesar;2201.962;115154329;Brazil; -2018-11-27T10:05:19Z;Ana;862.2389;116243097;Brazil; -2018-11-27T09:38:24Z;nathalia;1305.726;115723549;Brazil; -2018-11-27T09:28:05Z;Júlio;812.3138;116293950;Brazil; -2018-11-27T09:09:47Z;Nathália;1579.291;114749741;Brazil; -2018-11-27T08:45:43Z;Eduardo;2673.204;115590175;Brazil; -2018-11-27T08:45:13Z;Sandra;2144.972;114971366;Brazil; -2018-11-27T08:38:32Z;Sandra;3995.967;115290059;Brazil; -2018-11-27T07:53:40Z;Júlio Cesar;1348.713;114217957;Brazil; -2018-11-27T07:46:11Z;Nathália;513.5585;116230048;Brazil; -2018-11-27T07:25:19Z;nathalia;5208.023;114564283;Brazil; -2018-11-27T07:10:24Z;Sandra;281.017;114564804;Brazil; -2018-11-27T06:43:19Z;Júlio Cesar;84.2773;114365073;Brazil; -2018-11-27T06:06:03Z;Ana;2782.506;115579061;Brazil; -2018-11-27T05:01:30Z;Júlio;2218.421;115291502;Brazil; -2018-11-27T04:59:45Z;Nathália;1355.187;114240955;Brazil; -2018-11-27T04:55:46Z;Júlio;2585.774;116189931;Brazil; -2018-11-27T04:42:12Z;nathalia;1454.593;114299471;Brazil; -2018-11-27T03:38:05Z;Nathália;624.9519;114586228;Brazil; -2018-11-27T03:26:09Z;Ana;1862.283;115821828;Brazil; -2018-11-27T03:12:47Z;Ana;3536.204;116358611;Brazil; -2018-11-27T02:51:26Z;Eduardo;2223.142;115102172;Brazil; -2018-11-27T02:46:22Z;Sandra;1911.087;115129538;Brazil; -2018-11-27T02:11:47Z;Sandra;3650.055;115663151;Brazil; -2018-11-27T01:20:52Z;Nathália;3189.728;115752584;Brazil; -2018-11-27T00:54:05Z;Júlio;2849.033;116338385;Brazil; -2018-11-27T00:47:16Z;Armando;2601.345;115543218;Brazil; -2018-11-27T00:41:55Z;Nathália;3279.021;115582527;Brazil; -2018-11-26T22:54:23Z;Armando;2243.963;115949952;Brazil; -2018-11-26T22:53:44Z;Nathália;2253.061;114529479;Brazil; -2018-11-26T22:31:30Z;Sandra;2018.56;114617467;Brazil; -2018-11-26T22:15:58Z;Nathália;3635.655;115485350;Brazil; -2018-11-26T22:02:49Z;Eduardo;583.6736;115818084;Brazil; -2018-11-26T21:50:14Z;Nathália;2213.248;115768691;Brazil; -2018-11-26T21:45:13Z;Ana;971.2748;115839587;Brazil; -2018-11-26T21:18:07Z;Nathália;4686.173;116316692;Brazil; -2018-11-26T21:17:09Z;Nathália;1019.27;115920344;Brazil; -2018-11-26T21:12:23Z;Ana;3751.898;116240233;Brazil; -2018-11-26T21:05:24Z;nathalia;221.6742;116295315;Brazil; -2018-11-26T20:40:03Z;Júlio;2838.588;116191915;Brazil; -2018-11-26T20:31:18Z;nathalia;2941.941;115050174;Brazil; -2018-11-26T20:28:51Z;Armando;2080.133;114293181;Brazil; -2018-11-26T20:18:06Z;Júlio Cesar;469.047;115873624;Brazil; -2018-11-26T20:11:07Z;Armando;3456.622;116349395;Brazil; -2018-11-26T19:34:43Z;Nathália;1536.675;114947903;Brazil; -2018-11-26T19:28:22Z;Eduardo;4790.505;116018702;Brazil; -2018-11-26T19:23:35Z;nathalia;764.0492;114968304;Brazil; -2018-11-26T19:08:37Z;Nathália;1022.628;114874492;Brazil; -2018-11-26T19:06:21Z;nathalia;322.641;115255603;Brazil; -2018-11-26T18:59:41Z;Eduardo;2579.908;114227216;Brazil; -2018-11-26T18:33:18Z;Ana;88.31696;114738317;Brazil; -2018-11-26T17:54:49Z;Sandra;2097.994;114654341;Brazil; -2018-11-26T17:35:32Z;Sandra;3537.484;116117942;Brazil; -2018-11-26T17:14:40Z;Nathália;1374.89;115381173;Brazil; -2018-11-26T16:52:05Z;Sandra;4312.855;114831359;Brazil; -2018-11-26T16:46:17Z;nathalia;44.29901;116132983;Brazil; -2018-11-26T16:43:20Z;Nathália;2678.467;115982846;Brazil; -2018-11-26T16:39:47Z;Ana;3622.647;115497437;Brazil; -2018-11-26T16:36:40Z;Armando;1908.235;115393933;Brazil; -2018-11-26T16:15:56Z;Júlio;1219.538;114289971;Brazil; -2018-11-26T16:05:37Z;Sandra;2159.619;115411130;Brazil; -2018-11-26T15:55:30Z;Júlio;2362.229;115498805;Brazil; -2018-11-26T15:53:23Z;Júlio Cesar;2104.705;114356050;Brazil; -2018-11-26T15:41:11Z;Armando;2313.694;115088032;Brazil; -2018-11-26T15:00:41Z;Ana;3225.182;114225326;Brazil; -2018-11-26T14:56:55Z;Sandra;4514.191;115036950;Brazil; -2018-11-26T14:31:54Z;Nathália;4024.82;114829159;Brazil; -2018-11-26T14:19:37Z;nathalia;2030.268;114425706;Brazil; -2018-11-26T13:05:09Z;Sandra;1758.365;114518675;Brazil; -2018-11-26T13:01:20Z;Ana;1531.051;116080783;Brazil; -2018-11-26T12:49:26Z;nathalia;5007.694;114636549;Brazil; -2018-11-26T12:39:03Z;Armando;3855.031;114750506;Brazil; -2018-11-26T12:36:41Z;Júlio;3710.103;116197470;Brazil; -2018-11-26T12:00:11Z;Armando;2116.432;114341557;Brazil; -2018-11-26T11:21:53Z;Sandra;473.9442;115467750;Brazil; -2018-11-26T10:37:35Z;Júlio;2287.276;114618597;Brazil; -2018-11-26T10:08:41Z;Armando;2013.645;115574860;Brazil; -2018-11-26T09:47:49Z;Eduardo;2014.585;115412449;Brazil; -2018-11-26T09:33:23Z;Eduardo;1065.311;115516670;Brazil; -2018-11-26T08:54:37Z;nathalia;689.9285;115492024;Brazil; -2018-11-26T08:51:26Z;Sandra;1699.368;116314277;Brazil; -2018-11-26T08:40:45Z;Ana;788.0413;115256278;Brazil; -2018-11-26T08:33:50Z;nathalia;2860.478;114747301;Brazil; -2018-11-26T08:13:48Z;Armando;4709.461;115377639;Brazil; -2018-11-26T08:12:18Z;nathalia;1831.942;114291894;Brazil; -2018-11-26T08:06:25Z;Ana;3852.025;114468595;Brazil; -2018-11-26T07:55:54Z;Sandra;169.2931;115868818;Brazil; -2018-11-26T06:48:16Z;Eduardo;1578.663;114273730;Brazil; -2018-11-26T06:48:03Z;Júlio;64.37715;116125897;Brazil; -2018-11-26T06:27:52Z;Júlio Cesar;2977.674;116260649;Brazil; -2018-11-26T06:20:36Z;Armando;3693.406;115597317;Brazil; -2018-11-26T06:17:26Z;Eduardo;3554.624;116171876;Brazil; -2018-11-26T05:52:47Z;Armando;1576.853;114415147;Brazil; -2018-11-26T05:52:31Z;Ana;2960.239;114584090;Brazil; -2018-11-26T05:42:34Z;Júlio;2972.559;115126160;Brazil; -2018-11-26T05:24:49Z;Nathália;1526.705;114455596;Brazil; -2018-11-26T05:09:23Z;Armando;3288.053;115462258;Brazil; -2018-11-26T04:49:12Z;Nathália;4716.095;114943854;Brazil; -2018-11-26T04:46:00Z;Ana;4217.236;114826301;Brazil; -2018-11-26T04:02:27Z;Armando;1472.055;115919226;Brazil; -2018-11-26T03:52:12Z;Armando;2781.066;116193260;Brazil; -2018-11-26T03:27:32Z;Júlio;1737.889;115173071;Brazil; -2018-11-26T03:19:36Z;Eduardo;3714.47;116067185;Brazil; -2018-11-26T03:06:54Z;Ana;3504.066;115584773;Brazil; -2018-11-26T03:02:59Z;Júlio;3094.505;115484638;Brazil; -2018-11-26T03:01:02Z;Armando;491.8687;115306996;Brazil; -2018-11-26T02:52:46Z;Nathália;2472.328;114232588;Brazil; -2018-11-26T02:42:38Z;Júlio Cesar;3334.425;115376911;Brazil; -2018-11-26T02:16:33Z;Júlio Cesar;2013.025;115523742;Brazil; -2018-11-26T01:55:13Z;Nathália;4755.231;114936433;Brazil; -2018-11-26T01:42:48Z;Júlio;452.1219;114975386;Brazil; -2018-11-26T01:15:39Z;Júlio Cesar;3454.682;114805562;Brazil; -2018-11-26T01:00:10Z;Júlio Cesar;157.2474;114407480;Brazil; -2018-11-26T00:34:43Z;Sandra;2017.858;115712812;Brazil; -2018-11-26T00:15:15Z;Eduardo;2287.494;116012702;Brazil; -2018-11-26T00:04:17Z;Eduardo;2153.672;114501927;Brazil; -2018-11-26T00:04:08Z;Ana;1315.949;115468558;Brazil; -2018-11-25T23:52:24Z;Júlio Cesar;2952.651;116128588;Brazil; -2018-11-25T23:05:49Z;Armando;4216.454;114755759;Brazil; -2018-11-25T22:40:00Z;Eduardo;1821.382;114283577;Brazil; -2018-11-25T22:13:14Z;Júlio Cesar;1022.66;114595033;Brazil; -2018-11-25T22:13:00Z;Júlio;138.6879;114762408;Brazil; -2018-11-25T22:08:26Z;Nathália;1240.255;115366397;Brazil; -2018-11-25T22:00:05Z;Eduardo;1176.149;116286067;Brazil; -2018-11-25T21:02:33Z;Eduardo;340.4857;115719735;Brazil; -2018-11-25T21:00:39Z;Júlio Cesar;1105.796;114945227;Brazil; -2018-11-25T20:43:01Z;nathalia;307.8327;115890863;Brazil; -2018-11-25T20:28:38Z;Sandra;3779.98;116041466;Brazil; -2018-11-25T20:24:40Z;Armando;3152.666;115528078;Brazil; -2018-11-25T19:38:00Z;Eduardo;3763.348;114885116;Brazil; -2018-11-25T19:23:43Z;Nathália;4873.288;116149809;Brazil; -2018-11-25T19:17:32Z;Júlio;2431.915;116226682;Brazil; -2018-11-25T18:38:09Z;Ana;2672.099;115733887;Brazil; -2018-11-25T18:13:20Z;Ana;4084.399;115969000;Brazil; -2018-11-25T18:08:21Z;Nathália;1168.117;114666614;Brazil; -2018-11-25T17:44:14Z;Eduardo;1277.606;115698702;Brazil; -2018-11-25T17:37:44Z;Armando;1307.071;116281663;Brazil; -2018-11-25T17:24:52Z;Sandra;269.752;115677096;Brazil; -2018-11-25T17:24:08Z;Júlio;949.3718;115082380;Brazil; -2018-11-25T17:10:50Z;Júlio Cesar;2354.218;115701944;Brazil; -2018-11-25T17:03:32Z;Sandra;540.3763;115498856;Brazil; -2018-11-25T16:29:43Z;Ana;296.5301;114382790;Brazil; -2018-11-25T16:29:19Z;Ana;2464.86;116085544;Brazil; -2018-11-25T16:25:47Z;Ana;135.7752;116153162;Brazil; -2018-11-25T16:22:20Z;Eduardo;2065.189;114558446;Brazil; -2018-11-25T15:54:33Z;Sandra;66.02526;114407467;Brazil; -2018-11-25T15:53:10Z;Júlio Cesar;1349.39;114252514;Brazil; -2018-11-25T15:20:18Z;Eduardo;3191.457;114751348;Brazil; -2018-11-25T15:19:52Z;Ana;1026.994;115732465;Brazil; -2018-11-25T15:17:50Z;nathalia;2322.469;115483165;Brazil; -2018-11-25T15:04:42Z;nathalia;2236.557;116307996;Brazil; -2018-11-25T14:45:26Z;nathalia;1771.27;116063867;Brazil; -2018-11-25T14:38:37Z;Armando;455.8957;115843461;Brazil; -2018-11-25T14:23:24Z;Sandra;3929.343;116121245;Brazil; -2018-11-25T14:13:58Z;Armando;1636.98;115469425;Brazil; -2018-11-25T14:05:49Z;Nathália;1270.55;114503283;Brazil; -2018-11-25T14:00:33Z;Sandra;1610.894;115790147;Brazil; -2018-11-25T13:42:08Z;Júlio Cesar;2928.064;115048466;Brazil; -2018-11-25T13:25:37Z;Eduardo;3155.3;114314798;Brazil; -2018-11-25T13:24:24Z;nathalia;172.3867;114949703;Brazil; -2018-11-25T13:15:50Z;Eduardo;3963.374;115082126;Brazil; -2018-11-25T13:13:33Z;Ana;3804.202;115785565;Brazil; -2018-11-25T12:33:36Z;Sandra;3188.129;114460083;Brazil; -2018-11-25T11:55:08Z;Sandra;3250.396;114634081;Brazil; -2018-11-25T11:37:18Z;Júlio;1875.203;114827383;Brazil; -2018-11-25T10:40:54Z;Armando;2205.713;115638253;Brazil; -2018-11-25T10:30:37Z;Sandra;2500.196;114470019;Brazil; -2018-11-25T10:24:34Z;Júlio Cesar;4174.305;116006276;Brazil; -2018-11-25T10:23:27Z;Júlio;377.4008;114868428;Brazil; -2018-11-25T10:22:57Z;Armando;811.7406;114222752;Brazil; -2018-11-25T10:09:33Z;Júlio;3400.336;116359019;Brazil; -2018-11-25T09:13:58Z;Eduardo;1237.077;114272712;Brazil; -2018-11-25T09:13:15Z;Nathália;1483.447;115816264;Brazil; -2018-11-25T09:09:51Z;Ana;4006.801;114541210;Brazil; -2018-11-25T08:47:26Z;Armando;699.534;114553746;Brazil; -2018-11-25T08:43:23Z;nathalia;2432.595;114894488;Brazil; -2018-11-25T08:02:07Z;Júlio;3039.378;115710585;Brazil; -2018-11-25T07:42:58Z;Júlio;2231.575;114709317;Brazil; -2018-11-25T07:09:23Z;Júlio Cesar;3458.577;115512301;Brazil; -2018-11-25T06:41:51Z;Ana;1701.991;115861192;Brazil; -2018-11-25T06:00:25Z;Júlio;389.757;116004325;Brazil; -2018-11-25T05:47:30Z;Sandra;1221.139;114601772;Brazil; -2018-11-25T05:17:59Z;Armando;3586.452;115751176;Brazil; -2018-11-25T04:54:29Z;Sandra;2568.901;115627071;Brazil; -2018-11-25T04:49:57Z;Júlio Cesar;1733.022;114355560;Brazil; -2018-11-25T04:00:09Z;Armando;1217.805;116121819;Brazil; -2018-11-25T03:28:57Z;Júlio;783.4923;115128428;Brazil; -2018-11-25T03:22:32Z;Júlio Cesar;3660.321;114639599;Brazil; -2018-11-25T03:12:05Z;Ana;203.8878;116260225;Brazil; -2018-11-25T03:02:37Z;Sandra;2939.913;116319075;Brazil; -2018-11-25T01:38:38Z;Armando;1903.049;115955117;Brazil; -2018-11-25T01:23:26Z;Júlio Cesar;2520.363;115244722;Brazil; -2018-11-25T01:23:04Z;Júlio Cesar;2977.921;115556899;Brazil; -2018-11-25T01:16:40Z;Júlio Cesar;1576.411;114905368;Brazil; -2018-11-25T01:05:46Z;Júlio Cesar;2344.802;114510474;Brazil; -2018-11-25T00:55:08Z;Ana;1232.966;115625714;Brazil; -2018-11-24T23:49:03Z;Júlio;138.1259;114785256;Brazil; -2018-11-24T23:26:44Z;Sandra;884.3443;114619611;Brazil; -2018-11-24T23:25:08Z;Ana;1030.62;114561790;Brazil; -2018-11-24T22:53:47Z;nathalia;2561.315;114207645;Brazil; -2018-11-24T22:41:04Z;Armando;3756.433;115829661;Brazil; -2018-11-24T22:26:41Z;Júlio;2235.442;114672430;Brazil; -2018-11-24T22:04:22Z;Júlio;1088.583;115346960;Brazil; -2018-11-24T22:03:39Z;Júlio;1541.274;115180232;Brazil; -2018-11-24T21:57:52Z;Nathália;1374.871;115587281;Brazil; -2018-11-24T21:55:18Z;Júlio Cesar;4124.346;115451451;Brazil; -2018-11-24T21:15:58Z;Júlio;1687.778;116167045;Brazil; -2018-11-24T21:11:04Z;Sandra;1151.557;115907708;Brazil; -2018-11-24T21:10:30Z;Sandra;779.6808;114510685;Brazil; -2018-11-24T20:34:49Z;Júlio Cesar;2348.558;116097379;Brazil; -2018-11-24T19:58:25Z;Eduardo;3576.473;114900533;Brazil; -2018-11-24T19:44:40Z;Ana;2400.174;115774560;Brazil; -2018-11-24T19:39:53Z;Ana;4927.429;115062965;Brazil; -2018-11-24T19:01:44Z;nathalia;4007.584;115206532;Brazil; -2018-11-24T19:00:32Z;nathalia;38.04792;115610749;Brazil; -2018-11-24T17:44:16Z;Júlio;2944.241;114246956;Brazil; -2018-11-24T17:30:18Z;Ana;4157.933;115244708;Brazil; -2018-11-24T17:10:57Z;Sandra;2841.072;114265582;Brazil; -2018-11-24T17:04:02Z;Júlio Cesar;2280.097;116071305;Brazil; -2018-11-24T16:55:04Z;Sandra;599.7726;114721572;Brazil; -2018-11-24T16:54:54Z;nathalia;2570.091;116052505;Brazil; -2018-11-24T16:26:48Z;Júlio;3129.591;115080151;Brazil; -2018-11-24T16:22:32Z;Júlio;3309.762;114478267;Brazil; -2018-11-24T16:11:27Z;Ana;661.8445;115112677;Brazil; -2018-11-24T15:59:06Z;Eduardo;77.84448;116226493;Brazil; -2018-11-24T15:53:15Z;Júlio;2703.646;114634560;Brazil; -2018-11-24T15:48:48Z;Sandra;1016.631;115100217;Brazil; -2018-11-24T15:10:12Z;Nathália;1152.374;116055554;Brazil; -2018-11-24T14:51:19Z;nathalia;2854.595;116024558;Brazil; -2018-11-24T14:13:52Z;Eduardo;2749.782;115832324;Brazil; -2018-11-24T14:08:03Z;Júlio;632.2433;115816083;Brazil; -2018-11-24T14:06:58Z;Nathália;2674.802;115711610;Brazil; -2018-11-24T13:36:33Z;Júlio Cesar;3154.446;115685976;Brazil; -2018-11-24T13:29:58Z;Sandra;4101.024;115688214;Brazil; -2018-11-24T12:51:57Z;nathalia;1481.216;114503881;Brazil; -2018-11-24T12:03:38Z;Armando;2188.235;114582852;Brazil; -2018-11-24T11:16:49Z;Armando;3067.407;114748848;Brazil; -2018-11-24T11:12:12Z;Nathália;2248.548;116242785;Brazil; -2018-11-24T11:08:33Z;Eduardo;373.3835;115041301;Brazil; -2018-11-24T11:07:51Z;Ana;2570.128;114502538;Brazil; -2018-11-24T11:01:13Z;Nathália;2582.335;114591365;Brazil; -2018-11-24T10:52:42Z;Júlio Cesar;403.7657;114630732;Brazil; -2018-11-24T10:11:55Z;Júlio;739.8403;115962459;Brazil; -2018-11-24T10:03:20Z;Júlio Cesar;2224.472;115765485;Brazil; -2018-11-24T09:51:08Z;Armando;1328.101;115122402;Brazil; -2018-11-24T09:38:28Z;Nathália;2121.742;115088272;Brazil; -2018-11-24T09:30:50Z;nathalia;3884.917;115402253;Brazil; -2018-11-24T09:13:06Z;Nathália;1096.724;114996961;Brazil; -2018-11-24T09:10:46Z;Júlio Cesar;3212.057;114395233;Brazil; -2018-11-24T09:07:05Z;Ana;1785.446;114735293;Brazil; -2018-11-24T09:01:30Z;Eduardo;1350.742;115057177;Brazil; -2018-11-24T09:00:11Z;Sandra;3181.775;115635678;Brazil; -2018-11-24T08:47:39Z;Júlio;2499.266;114824168;Brazil; -2018-11-24T08:26:30Z;Eduardo;4510.746;115556995;Brazil; -2018-11-24T08:06:55Z;nathalia;1396.273;114284968;Brazil; -2018-11-24T08:06:20Z;Nathália;522.6721;115075912;Brazil; -2018-11-24T07:38:50Z;nathalia;2184.818;114296974;Brazil; -2018-11-24T07:29:19Z;Júlio Cesar;916.6883;115843469;Brazil; -2018-11-24T07:16:56Z;Ana;2253.015;114805063;Brazil; -2018-11-24T07:06:18Z;Eduardo;361.172;115626624;Brazil; -2018-11-24T07:05:21Z;Nathália;3603.582;114340278;Brazil; -2018-11-24T07:05:10Z;Eduardo;512.6723;115917565;Brazil; -2018-11-24T06:58:18Z;Nathália;1073.971;115713242;Brazil; -2018-11-24T06:57:11Z;Sandra;2704.173;115820050;Brazil; -2018-11-24T06:43:53Z;Armando;3222.337;114597608;Brazil; -2018-11-24T06:43:32Z;Júlio;477.8882;115207928;Brazil; -2018-11-24T06:35:37Z;Sandra;1808.423;116239176;Brazil; -2018-11-24T06:29:36Z;Júlio;670.8815;114872358;Brazil; -2018-11-24T06:13:10Z;Júlio Cesar;1423.572;115829470;Brazil; -2018-11-24T05:58:15Z;Ana;1853.056;115268520;Brazil; -2018-11-24T05:43:25Z;Júlio Cesar;2466.173;114689920;Brazil; -2018-11-24T05:31:46Z;nathalia;1045.444;116329381;Brazil; -2018-11-24T05:30:05Z;Ana;546.521;114265442;Brazil; -2018-11-24T04:56:28Z;Eduardo;1360.435;114528491;Brazil; -2018-11-24T04:39:12Z;Eduardo;407.1698;114941528;Brazil; -2018-11-24T04:25:30Z;Armando;715.9961;114418451;Brazil; -2018-11-24T04:07:55Z;Júlio;2476.821;114579377;Brazil; -2018-11-24T03:38:06Z;Júlio Cesar;943.4735;114480210;Brazil; -2018-11-24T03:35:40Z;Júlio Cesar;4764.426;115926361;Brazil; -2018-11-24T02:34:58Z;Nathália;3601.85;115052641;Brazil; -2018-11-24T02:18:21Z;Júlio Cesar;3710.706;114502048;Brazil; -2018-11-24T01:41:26Z;Júlio;3089.221;114418582;Brazil; -2018-11-24T01:40:04Z;Nathália;2041.967;114337446;Brazil; -2018-11-24T01:02:41Z;Sandra;164.3445;114752421;Brazil; -2018-11-24T00:31:21Z;Armando;667.5191;115417080;Brazil; -2018-11-24T00:25:08Z;Eduardo;1617.944;115128198;Brazil; -2018-11-24T00:23:07Z;Júlio;2794.497;115221192;Brazil; -2018-11-24T00:21:14Z;Eduardo;1743.691;114352857;Brazil; -2018-11-23T23:57:03Z;Sandra;1468.699;115220578;Brazil; -2018-11-23T23:49:24Z;Júlio;1737.241;115951417;Brazil; -2018-11-23T23:28:14Z;Armando;857.6489;115113455;Brazil; -2018-11-23T23:21:30Z;Ana;564.1246;116390533;Brazil; -2018-11-23T22:56:15Z;Ana;1020.17;115899656;Brazil; -2018-11-23T22:31:44Z;Júlio;93.77431;114405501;Brazil; -2018-11-23T22:31:33Z;Nathália;1034.297;114519910;Brazil; -2018-11-23T22:28:22Z;nathalia;1499.339;116067874;Brazil; -2018-11-23T22:22:49Z;Sandra;2113.314;116332771;Brazil; -2018-11-23T22:22:24Z;Armando;2277.84;114916247;Brazil; -2018-11-23T21:45:29Z;Armando;1846.299;116173056;Brazil; -2018-11-23T21:43:58Z;Ana;410.5805;114739163;Brazil; -2018-11-23T21:34:07Z;nathalia;1650.234;116324003;Brazil; -2018-11-23T21:14:59Z;Armando;2369.714;116223953;Brazil; -2018-11-23T20:40:03Z;Júlio Cesar;1116.283;115392942;Brazil; -2018-11-23T20:34:39Z;Ana;1923.491;114363440;Brazil; -2018-11-23T20:33:22Z;Nathália;284.6136;114745724;Brazil; -2018-11-23T20:31:08Z;nathalia;1554.96;115410045;Brazil; -2018-11-23T20:30:24Z;Eduardo;38.30605;115150458;Brazil; -2018-11-23T19:42:43Z;Ana;62.229730000000004;114730994;Brazil; -2018-11-23T19:39:53Z;Armando;3673;114920681;Brazil; -2018-11-23T19:24:02Z;Sandra;2606.534;114756538;Brazil; -2018-11-23T19:18:45Z;Ana;582.499;114864156;Brazil; -2018-11-23T19:16:09Z;Júlio;893.8715;115949450;Brazil; -2018-11-23T18:27:25Z;Ana;3839.711;115825696;Brazil; -2018-11-23T18:02:30Z;Armando;3185.564;114400149;Brazil; -2018-11-23T17:35:22Z;Nathália;4209.459;114298318;Brazil; -2018-11-23T17:25:54Z;Armando;886.5116;115729664;Brazil; -2018-11-23T16:59:20Z;Eduardo;1142.136;114250704;Brazil; -2018-11-23T16:55:42Z;Ana;1645.19;115954354;Brazil; -2018-11-23T16:40:50Z;Armando;1320.6;115132477;Brazil; -2018-11-23T16:38:41Z;Júlio;750.0999;114738973;Brazil; -2018-11-23T15:57:40Z;Sandra;3111.196;114632691;Brazil; -2018-11-23T15:51:16Z;nathalia;800.7515;115100329;Brazil; -2018-11-23T15:28:24Z;Sandra;724.2288;115536317;Brazil; -2018-11-23T15:02:07Z;Ana;4181.477;116301516;Brazil; -2018-11-23T14:44:07Z;Ana;162.766;116025923;Brazil; -2018-11-23T14:41:46Z;Sandra;2539.505;114712398;Brazil; -2018-11-23T14:33:34Z;Sandra;371.2917;114995211;Brazil; -2018-11-23T14:25:51Z;nathalia;256.6854;115679929;Brazil; -2018-11-23T14:20:26Z;Armando;1484.119;115175971;Brazil; -2018-11-23T12:55:56Z;Ana;1642.766;114305280;Brazil; -2018-11-23T12:27:06Z;Júlio;1816.049;115555424;Brazil; -2018-11-23T12:25:15Z;nathalia;3265.301;115781100;Brazil; -2018-11-23T11:55:36Z;nathalia;348.67;115436416;Brazil; -2018-11-23T11:54:34Z;Eduardo;1324.847;115689730;Brazil; -2018-11-23T11:32:06Z;Nathália;410.5798;115879716;Brazil; -2018-11-23T11:22:38Z;Nathália;3148.374;116238051;Brazil; -2018-11-23T11:12:50Z;Armando;3127.874;116104406;Brazil; -2018-11-23T11:01:01Z;Sandra;1433.378;114709184;Brazil; -2018-11-23T10:44:50Z;Armando;3437.236;115123558;Brazil; -2018-11-23T10:26:23Z;Sandra;2626.248;115985880;Brazil; -2018-11-23T09:57:08Z;Júlio;470.2215;114316842;Brazil; -2018-11-23T09:51:26Z;Júlio Cesar;84.1195;114606526;Brazil; -2018-11-23T09:51:08Z;Nathália;419.738;114367727;Brazil; -2018-11-23T09:39:01Z;Eduardo;3329.795;115316000;Brazil; -2018-11-23T09:22:51Z;Eduardo;1691.278;114235343;Brazil; -2018-11-23T09:16:43Z;nathalia;3503.417;115460422;Brazil; -2018-11-23T09:07:07Z;Armando;2204.448;114770622;Brazil; -2018-11-23T08:53:48Z;nathalia;1069.981;114256717;Brazil; -2018-11-23T08:38:17Z;Eduardo;1603.047;115051545;Brazil; -2018-11-23T08:31:25Z;Nathália;327.8549;116085746;Brazil; -2018-11-23T08:21:45Z;nathalia;2998.544;114489808;Brazil; -2018-11-23T08:02:44Z;Eduardo;1893.439;116301706;Brazil; -2018-11-23T07:56:54Z;nathalia;1726.818;115030658;Brazil; -2018-11-23T07:18:42Z;Júlio;1225.646;114791967;Brazil; -2018-11-23T06:55:14Z;Júlio Cesar;2659.21;115327832;Brazil; -2018-11-23T06:50:16Z;Júlio Cesar;1102.267;116016962;Brazil; -2018-11-23T06:21:33Z;Eduardo;4162.305;116309093;Brazil; -2018-11-23T05:46:28Z;Nathália;135.7612;114405975;Brazil; -2018-11-23T05:37:18Z;Eduardo;3148.92;115519483;Brazil; -2018-11-23T05:28:15Z;Júlio Cesar;657.0086;115000889;Brazil; -2018-11-23T05:05:46Z;Sandra;2593.508;116026807;Brazil; -2018-11-23T05:00:29Z;Nathália;61.52666;115851237;Brazil; -2018-11-23T04:58:50Z;Armando;4251.814;115919125;Brazil; -2018-11-23T04:57:17Z;Júlio;2052.955;116131272;Brazil; -2018-11-23T04:38:57Z;Armando;3074.216;116312987;Brazil; -2018-11-23T04:31:02Z;Júlio;1025.291;115527085;Brazil; -2018-11-23T04:30:36Z;Ana;2682.073;116324401;Brazil; -2018-11-23T04:10:54Z;Júlio Cesar;4152.917;115615437;Brazil; -2018-11-23T04:08:45Z;nathalia;267.039;114949520;Brazil; -2018-11-23T03:52:37Z;Sandra;2376.61;115948189;Brazil; -2018-11-23T03:46:23Z;Eduardo;1138.954;115463388;Brazil; -2018-11-23T03:15:34Z;Júlio;2829.37;114249898;Brazil; -2018-11-23T03:11:03Z;Júlio Cesar;414.1947;116153903;Brazil; -2018-11-23T02:34:05Z;Armando;3865.329;115914810;Brazil; -2018-11-23T02:24:32Z;Eduardo;60.50507;115556441;Brazil; -2018-11-23T02:11:46Z;Nathália;1035.725;115465386;Brazil; -2018-11-23T01:42:20Z;Nathália;2290.201;115577294;Brazil; -2018-11-23T01:36:04Z;Júlio Cesar;1455.239;115621928;Brazil; -2018-11-23T01:30:41Z;Ana;319.8704;115136832;Brazil; -2018-11-23T01:09:10Z;Nathália;2952.497;114471027;Brazil; -2018-11-23T01:06:41Z;Sandra;3415.553;116334502;Brazil; -2018-11-23T00:49:13Z;Ana;2421.178;115010170;Brazil; -2018-11-23T00:35:16Z;Júlio Cesar;423.9429;115954643;Brazil; -2018-11-23T00:28:07Z;Júlio;3515.201;115210486;Brazil; -2018-11-23T00:13:49Z;Armando;3526.307;116016022;Brazil; -2018-11-22T23:42:32Z;nathalia;3290.897;116023222;Brazil; -2018-11-22T23:36:54Z;Ana;1892.652;114562821;Brazil; -2018-11-22T23:35:06Z;nathalia;1068.794;115473219;Brazil; -2018-11-22T23:23:32Z;Ana;1895.853;116171812;Brazil; -2018-11-22T23:22:51Z;nathalia;3451.879;115411758;Brazil; -2018-11-22T23:20:48Z;Júlio;201.766;115700638;Brazil; -2018-11-22T23:13:50Z;Armando;833.4765;114945002;Brazil; -2018-11-22T22:56:28Z;nathalia;1092.637;115958890;Brazil; -2018-11-22T22:43:19Z;Nathália;1494.004;115420870;Brazil; -2018-11-22T22:29:19Z;Ana;2867.984;114520260;Brazil; -2018-11-22T22:27:42Z;Júlio Cesar;4389.871;115848619;Brazil; -2018-11-22T22:26:48Z;Nathália;566.7118;115084348;Brazil; -2018-11-22T21:47:05Z;Eduardo;3201.351;116150520;Brazil; -2018-11-22T20:52:23Z;Eduardo;418.4171;115031169;Brazil; -2018-11-22T20:36:00Z;Ana;1208.75;114775660;Brazil; -2018-11-22T19:56:58Z;nathalia;949.1075;115336360;Brazil; -2018-11-22T19:08:23Z;Sandra;4796.867;115040340;Brazil; -2018-11-22T18:55:47Z;Júlio Cesar;3126.396;115707514;Brazil; -2018-11-22T18:42:32Z;Júlio;1293.191;116333666;Brazil; -2018-11-22T18:39:17Z;Eduardo;616.259;115796786;Brazil; -2018-11-22T18:35:53Z;Júlio Cesar;638.4508;115253434;Brazil; -2018-11-22T18:05:11Z;Eduardo;280.5852;115244879;Brazil; -2018-11-22T17:39:25Z;nathalia;2060.025;116021172;Brazil; -2018-11-22T17:21:29Z;Júlio Cesar;673.3273;115228529;Brazil; -2018-11-22T16:54:32Z;nathalia;1242.528;115706289;Brazil; -2018-11-22T16:31:28Z;Eduardo;1933.46;115479029;Brazil; -2018-11-22T15:44:23Z;Eduardo;792.1503;115111503;Brazil; -2018-11-22T14:45:20Z;Júlio Cesar;3579.35;114980482;Brazil; -2018-11-22T14:43:56Z;Júlio;1116.521;114972411;Brazil; -2018-11-22T14:43:44Z;nathalia;2358.44;114201812;Brazil; -2018-11-22T14:37:27Z;Nathália;2086.883;116043527;Brazil; -2018-11-22T14:36:02Z;Sandra;935.3775;115418165;Brazil; -2018-11-22T14:29:22Z;Nathália;1794.957;114366524;Brazil; -2018-11-22T14:26:01Z;nathalia;5285.319;115547336;Brazil; -2018-11-22T14:16:26Z;Sandra;1100.346;114999714;Brazil; -2018-11-22T14:15:51Z;Júlio;1671.062;116385865;Brazil; -2018-11-22T13:01:36Z;Eduardo;892.0701;114479865;Brazil; -2018-11-22T13:00:21Z;Júlio Cesar;1161.536;115554102;Brazil; -2018-11-22T12:57:51Z;Júlio Cesar;1152.186;114233710;Brazil; -2018-11-22T12:42:33Z;Sandra;3477.308;114994149;Brazil; -2018-11-22T12:32:03Z;Armando;364.2905;114619042;Brazil; -2018-11-22T12:08:58Z;Júlio Cesar;603.494;114866729;Brazil; -2018-11-22T11:59:50Z;nathalia;2838.628;114715700;Brazil; -2018-11-22T11:50:41Z;Armando;442.1763;115992806;Brazil; -2018-11-22T11:32:40Z;nathalia;2817.996;114670529;Brazil; -2018-11-22T11:28:54Z;nathalia;445.0588;114363445;Brazil; -2018-11-22T11:25:16Z;Sandra;640.4774;115910020;Brazil; -2018-11-22T11:24:08Z;Ana;1934.936;115641925;Brazil; -2018-11-22T11:17:14Z;Sandra;1538.007;116298286;Brazil; -2018-11-22T11:08:33Z;Nathália;381.7991;114441856;Brazil; -2018-11-22T10:44:29Z;Armando;1839.895;114464382;Brazil; -2018-11-22T10:41:10Z;Júlio Cesar;3281.047;115920524;Brazil; -2018-11-22T10:13:47Z;Júlio Cesar;4784.838;116368317;Brazil; -2018-11-22T10:11:44Z;nathalia;1929.869;116104221;Brazil; -2018-11-22T10:10:04Z;Sandra;1638.939;116219540;Brazil; -2018-11-22T09:55:06Z;Nathália;1464.552;116111406;Brazil; -2018-11-22T09:26:11Z;Nathália;3505.831;114664592;Brazil; -2018-11-22T09:04:07Z;Eduardo;2105.074;114459649;Brazil; -2018-11-22T08:34:46Z;Júlio Cesar;3289.309;115984576;Brazil; -2018-11-22T08:26:20Z;Ana;234.0393;115996974;Brazil; -2018-11-22T08:17:27Z;Eduardo;3093.021;114506079;Brazil; -2018-11-22T07:54:22Z;Ana;3003.832;115180602;Brazil; -2018-11-22T07:40:43Z;Júlio;582.109;114413200;Brazil; -2018-11-22T07:10:25Z;Eduardo;2610.831;116078427;Brazil; -2018-11-22T06:59:33Z;Júlio;2804.185;114908953;Brazil; -2018-11-22T06:57:11Z;Júlio Cesar;2580.87;114747289;Brazil; -2018-11-22T06:22:54Z;Ana;3463.004;116054443;Brazil; -2018-11-22T05:05:58Z;nathalia;1162.039;115547664;Brazil; -2018-11-22T04:38:38Z;Nathália;3075.379;116247046;Brazil; -2018-11-22T04:38:06Z;Nathália;1431.24;116367729;Brazil; -2018-11-22T04:03:35Z;Ana;1347.571;114243577;Brazil; -2018-11-22T04:01:53Z;Júlio;3947.382;115045679;Brazil; -2018-11-22T03:19:27Z;Júlio;270.7077;115098174;Brazil; -2018-11-22T03:10:14Z;nathalia;1966.426;115516071;Brazil; -2018-11-22T03:03:48Z;Nathália;3945.4;114293408;Brazil; -2018-11-22T02:37:29Z;Júlio Cesar;1568.679;114643022;Brazil; -2018-11-22T02:36:55Z;Júlio;3230.356;114227763;Brazil; -2018-11-22T02:31:21Z;Júlio Cesar;454.592;114653199;Brazil; -2018-11-22T02:10:28Z;nathalia;2802.816;114535725;Brazil; -2018-11-22T01:56:39Z;Eduardo;2452.26;115249791;Brazil; -2018-11-22T01:37:12Z;Ana;267.1979;114898921;Brazil; -2018-11-22T01:29:30Z;Júlio;3631.883;114644793;Brazil; -2018-11-22T01:27:54Z;Júlio;4279.31;116000407;Brazil; -2018-11-22T00:39:13Z;Eduardo;195.5072;115372979;Brazil; -2018-11-22T00:36:07Z;Nathália;1921.944;116241382;Brazil; -2018-11-22T00:23:01Z;Armando;1660.135;114621751;Brazil; -2018-11-22T00:12:55Z;Nathália;1445.611;116126127;Brazil; -2018-11-22T00:07:18Z;Eduardo;282.9106;115331285;Brazil; -2018-11-21T23:56:12Z;Ana;4213.21;114882576;Brazil; -2018-11-21T23:47:32Z;Ana;1153.468;115320756;Brazil; -2018-11-21T23:36:46Z;Júlio Cesar;3346.973;114376093;Brazil; -2018-11-21T22:24:05Z;Nathália;1708.38;116089592;Brazil; -2018-11-21T22:09:44Z;Ana;3333.15;114341283;Brazil; -2018-11-21T21:48:51Z;Armando;2924.853;115629271;Brazil; -2018-11-21T21:30:12Z;Ana;2411.334;115975108;Brazil; -2018-11-21T20:58:47Z;Ana;2409.912;114978035;Brazil; -2018-11-21T20:50:51Z;Eduardo;1306.833;116069751;Brazil; -2018-11-21T20:45:45Z;Ana;153.2914;115034004;Brazil; -2018-11-21T20:40:48Z;Nathália;3602.272;116249103;Brazil; -2018-11-21T20:34:46Z;Júlio;2644.802;115400941;Brazil; -2018-11-21T20:32:47Z;Sandra;1682.463;115723178;Brazil; -2018-11-21T20:18:44Z;nathalia;4349.815;115164070;Brazil; -2018-11-21T20:16:36Z;Ana;2107.469;115556375;Brazil; -2018-11-21T19:46:18Z;Nathália;4431.751;116240222;Brazil; -2018-11-21T17:52:27Z;Júlio Cesar;4056.778;116346485;Brazil; -2018-11-21T17:51:37Z;Júlio Cesar;1117.543;114599921;Brazil; -2018-11-21T17:39:09Z;Armando;4197.762;115803342;Brazil; -2018-11-21T17:34:06Z;Júlio Cesar;2766.093;114936772;Brazil; -2018-11-21T17:28:08Z;Sandra;1393.354;115634142;Brazil; -2018-11-21T17:25:32Z;Ana;1041.244;114505883;Brazil; -2018-11-21T16:50:07Z;Júlio;2330.661;116158649;Brazil; -2018-11-21T16:41:57Z;Nathália;2707.428;116202028;Brazil; -2018-11-21T16:30:02Z;Eduardo;1648.823;116092629;Brazil; -2018-11-21T16:24:32Z;nathalia;145.1669;115400452;Brazil; -2018-11-21T16:12:04Z;Júlio Cesar;1334.258;115011318;Brazil; -2018-11-21T16:10:30Z;Eduardo;1094.808;115816903;Brazil; -2018-11-21T16:04:26Z;Sandra;859.3263;115634031;Brazil; -2018-11-21T15:37:10Z;Nathália;1185.608;114823797;Brazil; -2018-11-21T15:33:13Z;Ana;1216.695;116245516;Brazil; -2018-11-21T15:30:41Z;Eduardo;3370.996;114413467;Brazil; -2018-11-21T15:28:17Z;Eduardo;4498.879;115887600;Brazil; -2018-11-21T14:49:16Z;Armando;3871.976;115962349;Brazil; -2018-11-21T14:20:11Z;Sandra;735.7156;115382829;Brazil; -2018-11-21T13:58:25Z;Júlio Cesar;856.5472;115829880;Brazil; -2018-11-21T13:52:28Z;Sandra;1614.939;114550282;Brazil; -2018-11-21T13:29:47Z;Júlio Cesar;2150.951;115073748;Brazil; -2018-11-21T13:22:19Z;Júlio Cesar;1583.922;115755582;Brazil; -2018-11-21T13:18:35Z;Sandra;1156.838;115130896;Brazil; -2018-11-21T12:56:29Z;Júlio Cesar;4812.353;115854196;Brazil; -2018-11-21T12:54:51Z;Sandra;1661.481;116064556;Brazil; -2018-11-21T12:43:48Z;Ana;922.8529;115618116;Brazil; -2018-11-21T12:21:44Z;Júlio;2381.234;115254468;Brazil; -2018-11-21T11:47:11Z;Júlio Cesar;1274.16;114579071;Brazil; -2018-11-21T10:53:35Z;Júlio;631.6559;116378142;Brazil; -2018-11-21T10:50:51Z;Júlio;482.4798;115816705;Brazil; -2018-11-21T10:42:17Z;Eduardo;2607.451;114393368;Brazil; -2018-11-21T10:37:15Z;Júlio Cesar;2762.919;116094874;Brazil; -2018-11-21T10:15:19Z;Júlio Cesar;125.6826;115602908;Brazil; -2018-11-21T09:47:01Z;Ana;4396.584;114973142;Brazil; -2018-11-21T09:02:40Z;Júlio;948.1181;115719998;Brazil; -2018-11-21T08:38:02Z;Armando;711.0736;115394370;Brazil; -2018-11-21T07:47:24Z;Júlio;2911.009;115428963;Brazil; -2018-11-21T07:33:59Z;Júlio Cesar;2569.473;115533727;Brazil; -2018-11-21T07:16:47Z;Ana;2897.012;116019560;Brazil; -2018-11-21T06:38:32Z;Júlio Cesar;3238.021;115469527;Brazil; -2018-11-21T06:32:56Z;nathalia;1315.721;116316091;Brazil; -2018-11-21T06:27:18Z;Júlio Cesar;1691.873;115036062;Brazil; -2018-11-21T05:59:53Z;Júlio;2864.446;115762447;Brazil; -2018-11-21T05:48:33Z;Nathália;1209.768;116003712;Brazil; -2018-11-21T05:38:51Z;Ana;1323.957;114556368;Brazil; -2018-11-21T05:38:33Z;Júlio;4681.101;115391456;Brazil; -2018-11-21T05:30:07Z;nathalia;1741.874;114826194;Brazil; -2018-11-21T05:29:44Z;Armando;864.6214;116026054;Brazil; -2018-11-21T05:06:50Z;Sandra;2392.46;114463389;Brazil; -2018-11-21T04:51:54Z;Ana;1008.715;115908564;Brazil; -2018-11-21T04:39:34Z;Ana;153.3433;115461168;Brazil; -2018-11-21T04:31:12Z;Ana;2402.775;115724427;Brazil; -2018-11-21T04:30:02Z;Sandra;1751.294;115356963;Brazil; -2018-11-21T03:18:02Z;Júlio;2142.968;114987627;Brazil; -2018-11-21T02:59:16Z;Júlio;1430.687;116384133;Brazil; -2018-11-21T02:42:17Z;Nathália;3859.329;115433271;Brazil; -2018-11-21T02:37:26Z;Júlio Cesar;3238.045;114907280;Brazil; -2018-11-21T02:22:36Z;Armando;2273.632;116083944;Brazil; -2018-11-21T01:50:22Z;Júlio Cesar;2006.072;115465775;Brazil; -2018-11-21T01:37:21Z;Júlio;1654.143;115481244;Brazil; -2018-11-21T01:14:07Z;Ana;1423.938;115198002;Brazil; -2018-11-21T00:25:17Z;Eduardo;275.273;115969490;Brazil; -2018-11-21T00:19:20Z;Júlio;3193.297;116018776;Brazil; -2018-11-20T23:27:31Z;nathalia;316.138;114413019;Brazil; -2018-11-20T23:25:38Z;Ana;3620.616;114445580;Brazil; -2018-11-20T23:20:29Z;Ana;3162.376;114493894;Brazil; -2018-11-20T23:20:03Z;Júlio;3928.336;115105213;Brazil; -2018-11-20T23:18:16Z;Armando;2704.792;116205383;Brazil; -2018-11-20T23:10:52Z;Sandra;2904.184;114312067;Brazil; -2018-11-20T23:05:20Z;Armando;1680.963;115108180;Brazil; -2018-11-20T22:35:06Z;Sandra;1263.506;114549868;Brazil; -2018-11-20T22:04:46Z;Sandra;3674.865;116048636;Brazil; -2018-11-20T21:47:04Z;nathalia;2779.645;116191672;Brazil; -2018-11-20T21:45:22Z;Sandra;2589.041;114531191;Brazil; -2018-11-20T21:23:03Z;Júlio Cesar;1660.124;115085129;Brazil; -2018-11-20T21:00:28Z;Armando;1050.129;115079657;Brazil; -2018-11-20T20:51:20Z;Nathália;5533.189;115518817;Brazil; -2018-11-20T20:32:48Z;Sandra;4138.987;114492015;Brazil; -2018-11-20T20:13:13Z;Sandra;3938.985;114899184;Brazil; -2018-11-20T20:10:33Z;Ana;97.85954;115134772;Brazil; -2018-11-20T19:55:23Z;Armando;4412.668;115703974;Brazil; -2018-11-20T19:30:37Z;Sandra;3558.133;115595906;Brazil; -2018-11-20T19:15:16Z;Júlio Cesar;2070.796;115885296;Brazil; -2018-11-20T19:10:58Z;Sandra;406.3004;115922221;Brazil; -2018-11-20T19:02:00Z;Júlio Cesar;3076.957;114873202;Brazil; -2018-11-20T18:31:59Z;Júlio Cesar;3643.76;115247440;Brazil; -2018-11-20T18:29:30Z;Nathália;1055.741;114767762;Brazil; -2018-11-20T18:20:23Z;nathalia;3346.502;115116583;Brazil; -2018-11-20T18:10:58Z;Eduardo;3068.809;114312311;Brazil; -2018-11-20T17:29:43Z;Ana;2754.473;115547827;Brazil; -2018-11-20T16:43:29Z;Armando;1571.394;114709713;Brazil; -2018-11-20T16:21:46Z;nathalia;2437.16;114439591;Brazil; -2018-11-20T16:16:07Z;Ana;3156.855;116201868;Brazil; -2018-11-20T15:59:16Z;Júlio Cesar;709.3889;114828944;Brazil; -2018-11-20T15:58:30Z;Júlio Cesar;809.5952;114447072;Brazil; -2018-11-20T15:51:57Z;Eduardo;2463.717;116285093;Brazil; -2018-11-20T15:46:34Z;Júlio;3856.789;116072477;Brazil; -2018-11-20T15:45:52Z;Júlio Cesar;1743.276;116202559;Brazil; -2018-11-20T14:50:15Z;Júlio;3331.293;114427380;Brazil; -2018-11-20T14:33:15Z;nathalia;4055.575;115787969;Brazil; -2018-11-20T14:24:12Z;nathalia;920.9135;114646879;Brazil; -2018-11-20T14:20:00Z;Armando;3236.934;114462174;Brazil; -2018-11-20T14:00:32Z;Ana;1905.064;115534742;Brazil; -2018-11-20T13:59:10Z;Nathália;1567.617;115781126;Brazil; -2018-11-20T13:56:29Z;Nathália;1500.443;114290489;Brazil; -2018-11-20T13:31:56Z;Júlio;2088.819;115815726;Brazil; -2018-11-20T13:07:23Z;Nathália;734.9672;115425733;Brazil; -2018-11-20T13:05:58Z;Eduardo;3748.928;114884677;Brazil; -2018-11-20T12:56:51Z;Júlio Cesar;680.7443;115456805;Brazil; -2018-11-20T12:38:07Z;Eduardo;3542.065;114786247;Brazil; -2018-11-20T12:35:11Z;Júlio Cesar;3489.077;115535289;Brazil; -2018-11-20T12:23:23Z;Eduardo;3473.541;116374269;Brazil; -2018-11-20T12:08:13Z;Júlio Cesar;2473.664;115747497;Brazil; -2018-11-20T11:18:07Z;nathalia;2115.204;116257689;Brazil; -2018-11-20T11:07:16Z;Eduardo;4194.123;115332114;Brazil; -2018-11-20T10:56:48Z;nathalia;605.1091;114845412;Brazil; -2018-11-20T10:52:22Z;Ana;4163.944;114814138;Brazil; -2018-11-20T10:33:36Z;Júlio Cesar;2997.306;114875584;Brazil; -2018-11-20T10:24:50Z;nathalia;2624.471;115183323;Brazil; -2018-11-20T10:03:11Z;Armando;3486.47;115170364;Brazil; -2018-11-20T09:52:51Z;Ana;4211.818;115884501;Brazil; -2018-11-20T09:48:26Z;Nathália;1304.091;116141711;Brazil; -2018-11-20T09:23:06Z;nathalia;253.6054;114266272;Brazil; -2018-11-20T09:13:41Z;Armando;454.6056;115828336;Brazil; -2018-11-20T09:11:35Z;Nathália;194.131;114728245;Brazil; -2018-11-20T09:05:02Z;Sandra;2808.202;115619219;Brazil; -2018-11-20T08:15:45Z;Eduardo;2494;116175928;Brazil; -2018-11-20T08:15:03Z;Armando;2212.051;115573084;Brazil; -2018-11-20T06:57:11Z;Armando;811.5674;114350699;Brazil; -2018-11-20T06:53:31Z;Ana;900.229;115792116;Brazil; -2018-11-20T06:22:22Z;Júlio;772.7537;116322755;Brazil; -2018-11-20T06:11:21Z;nathalia;3591.608;114819224;Brazil; -2018-11-20T05:56:51Z;Armando;1007.978;116033955;Brazil; -2018-11-20T05:54:11Z;Eduardo;1329.886;114421333;Brazil; -2018-11-20T05:39:18Z;Ana;2299.991;115831790;Brazil; -2018-11-20T05:35:00Z;Nathália;2140.061;114733092;Brazil; -2018-11-20T05:11:07Z;Júlio;5792.334;114935876;Brazil; -2018-11-20T04:53:12Z;Júlio;314.5375;115426288;Brazil; -2018-11-20T04:47:58Z;Eduardo;3497.897;116131418;Brazil; -2018-11-20T04:47:31Z;Eduardo;1103.163;115149975;Brazil; -2018-11-20T04:18:23Z;nathalia;4115.53;115099191;Brazil; -2018-11-20T03:47:14Z;Nathália;2379.52;115289354;Brazil; -2018-11-20T03:42:34Z;Nathália;3378.25;115756079;Brazil; -2018-11-20T02:55:20Z;Armando;3935.808;115333611;Brazil; -2018-11-20T02:36:26Z;Júlio Cesar;945.5048;114234574;Brazil; -2018-11-20T02:33:29Z;Sandra;3375.024;115775172;Brazil; -2018-11-20T02:27:33Z;Júlio;1591.962;114655317;Brazil; -2018-11-20T02:11:02Z;Júlio Cesar;3146.578;115806779;Brazil; -2018-11-20T01:54:15Z;nathalia;809.476;116077061;Brazil; -2018-11-20T01:48:12Z;nathalia;1606.907;115591893;Brazil; -2018-11-20T01:35:27Z;Ana;239.1395;115416968;Brazil; -2018-11-20T00:52:20Z;nathalia;1138.994;115236222;Brazil; -2018-11-20T00:48:13Z;Júlio;3915.868;114623629;Brazil; -2018-11-19T23:29:42Z;Júlio Cesar;271.9174;114335059;Brazil; -2018-11-19T23:24:18Z;Armando;3079.63;114608433;Brazil; -2018-11-19T23:11:07Z;Armando;2268.813;114324662;Brazil; -2018-11-19T23:08:55Z;nathalia;437.6142;114514609;Brazil; -2018-11-19T23:01:23Z;Eduardo;4507.174;115037216;Brazil; -2018-11-19T22:59:48Z;nathalia;654.15;114401031;Brazil; -2018-11-19T22:19:54Z;nathalia;103.9899;115455301;Brazil; -2018-11-19T22:17:11Z;Armando;3406.528;115201924;Brazil; -2018-11-19T21:29:52Z;Armando;5199.033;114860781;Brazil; -2018-11-19T20:58:26Z;Sandra;1540.369;116128098;Brazil; -2018-11-19T20:36:59Z;Eduardo;1158.464;114788734;Brazil; -2018-11-19T20:26:12Z;nathalia;2990.193;114292585;Brazil; -2018-11-19T19:51:12Z;Nathália;845.9606;114645342;Brazil; -2018-11-19T19:37:48Z;Ana;4815.974;115495076;Brazil; -2018-11-19T19:35:28Z;nathalia;3079.129;114518716;Brazil; -2018-11-19T19:25:21Z;Júlio;1984.42;114399144;Brazil; -2018-11-19T19:06:40Z;Ana;241.8642;115420309;Brazil; -2018-11-19T18:49:26Z;Sandra;2458.128;114642013;Brazil; -2018-11-19T18:31:26Z;Júlio;4051.807;116385295;Brazil; -2018-11-19T18:29:39Z;Armando;3560.956;114668372;Brazil; -2018-11-19T18:11:12Z;Ana;2756.329;115036911;Brazil; -2018-11-19T17:49:53Z;Sandra;2182.995;115878592;Brazil; -2018-11-19T17:45:24Z;Nathália;4906.569;115730245;Brazil; -2018-11-19T17:39:43Z;Ana;1472.362;116007768;Brazil; -2018-11-19T17:28:32Z;Eduardo;3407.591;114611652;Brazil; -2018-11-19T17:21:16Z;Júlio Cesar;2163.563;114555803;Brazil; -2018-11-19T17:13:44Z;Ana;2270.666;114303343;Brazil; -2018-11-19T17:07:08Z;Sandra;3655.107;115833168;Brazil; -2018-11-19T15:51:23Z;Armando;1781.6;115732471;Brazil; -2018-11-19T15:37:01Z;Eduardo;3156.006;115548110;Brazil; -2018-11-19T14:56:36Z;Júlio Cesar;613.51;115366448;Brazil; -2018-11-19T14:41:56Z;nathalia;4320.967;114302942;Brazil; -2018-11-19T14:35:59Z;Júlio Cesar;3580.343;115604964;Brazil; -2018-11-19T14:35:41Z;Nathália;3486.365;115683202;Brazil; -2018-11-19T14:34:31Z;nathalia;3290.1;114404762;Brazil; -2018-11-19T14:28:55Z;Eduardo;508.0994;116132756;Brazil; -2018-11-19T14:04:52Z;Sandra;1533.363;115076765;Brazil; -2018-11-19T13:42:18Z;Eduardo;2888.815;115022008;Brazil; -2018-11-19T13:24:36Z;Júlio;99.61349;115147693;Brazil; -2018-11-19T13:01:31Z;Nathália;633.3579;115866090;Brazil; -2018-11-19T12:56:06Z;Júlio Cesar;3201.072;115218996;Brazil; -2018-11-19T12:15:09Z;Ana;2060.781;114213512;Brazil; -2018-11-19T12:11:38Z;Ana;2359.54;116384062;Brazil; -2018-11-19T12:07:43Z;Ana;215.5716;115948218;Brazil; -2018-11-19T11:36:54Z;Sandra;2560.435;115364232;Brazil; -2018-11-19T11:32:51Z;Eduardo;1321.519;116381864;Brazil; -2018-11-19T11:27:20Z;nathalia;3257.688;114725721;Brazil; -2018-11-19T11:19:03Z;Sandra;3006.108;114750955;Brazil; -2018-11-19T11:14:58Z;Nathália;2213.126;115915871;Brazil; -2018-11-19T10:50:17Z;Nathália;1207.244;116316314;Brazil; -2018-11-19T10:34:44Z;nathalia;518.907;115155754;Brazil; -2018-11-19T10:27:51Z;Armando;2444.767;115310220;Brazil; -2018-11-19T10:25:35Z;nathalia;585.2971;114674638;Brazil; -2018-11-19T10:15:59Z;nathalia;2330.288;115019731;Brazil; -2018-11-19T10:14:00Z;nathalia;3199.507;114642999;Brazil; -2018-11-19T10:05:55Z;Sandra;559.5828;114687066;Brazil; -2018-11-19T09:59:15Z;Sandra;1225.601;114777376;Brazil; -2018-11-19T09:42:47Z;Júlio;778.8651;115680910;Brazil; -2018-11-19T09:37:00Z;Nathália;2197.729;114653638;Brazil; -2018-11-19T09:20:59Z;Eduardo;1335.631;114688235;Brazil; -2018-11-19T09:09:10Z;Júlio;1972.187;114274215;Brazil; -2018-11-19T09:08:34Z;Ana;3128.319;115703046;Brazil; -2018-11-19T08:01:31Z;Júlio;299.2305;115750414;Brazil; -2018-11-19T07:54:11Z;nathalia;3037.33;115531964;Brazil; -2018-11-19T07:47:40Z;Eduardo;2987.551;116018339;Brazil; -2018-11-19T07:26:38Z;Sandra;5246.174;114483016;Brazil; -2018-11-19T07:25:48Z;Júlio;3065.109;115645400;Brazil; -2018-11-19T07:11:35Z;Júlio;1478.705;115875874;Brazil; -2018-11-19T07:00:34Z;Armando;1448.178;115805847;Brazil; -2018-11-19T06:58:32Z;Nathália;404.0687;115800829;Brazil; -2018-11-19T06:55:20Z;Ana;2660.427;115627505;Brazil; -2018-11-19T06:47:39Z;Sandra;2725.272;114363023;Brazil; -2018-11-19T06:18:51Z;Júlio;778.224;115365043;Brazil; -2018-11-19T05:59:07Z;Ana;4050.498;115126391;Brazil; -2018-11-19T05:54:48Z;Armando;1271.361;115831077;Brazil; -2018-11-19T05:26:52Z;Armando;3858.377;115115522;Brazil; -2018-11-19T04:47:13Z;Júlio;391.4814;114932585;Brazil; -2018-11-19T04:40:44Z;Armando;2413.931;114912778;Brazil; -2018-11-19T04:38:14Z;Sandra;1915.704;116284452;Brazil; -2018-11-19T03:47:39Z;Ana;534.7265;115798917;Brazil; -2018-11-19T03:04:13Z;Nathália;4092.535;114428143;Brazil; -2018-11-19T02:55:31Z;Júlio;2385.538;116145131;Brazil; -2018-11-19T02:45:49Z;Júlio Cesar;1288.912;115184069;Brazil; -2018-11-19T02:44:24Z;nathalia;2586.078;115687300;Brazil; -2018-11-19T02:38:23Z;Júlio Cesar;2101.36;116219061;Brazil; -2018-11-19T02:37:23Z;Eduardo;1888.948;114531376;Brazil; -2018-11-19T02:33:08Z;Nathália;3658.041;114455853;Brazil; -2018-11-19T02:04:19Z;Eduardo;2581.572;115314751;Brazil; -2018-11-19T01:59:22Z;Ana;2848.167;115844608;Brazil; -2018-11-19T01:53:41Z;Júlio Cesar;1123.289;114263643;Brazil; -2018-11-19T01:49:28Z;Nathália;1683.087;114474820;Brazil; -2018-11-19T01:31:15Z;Sandra;1458.475;115209524;Brazil; -2018-11-19T01:23:48Z;Júlio;1511.249;114614204;Brazil; -2018-11-19T01:10:16Z;Júlio;301.8966;115813360;Brazil; -2018-11-19T01:08:14Z;Júlio;399.6706;115607355;Brazil; -2018-11-19T01:06:33Z;Júlio Cesar;2318.09;116207715;Brazil; -2018-11-19T00:38:04Z;Ana;2902.129;114264306;Brazil; -2018-11-19T00:27:45Z;Nathália;1042.656;114206205;Brazil; -2018-11-19T00:15:23Z;Eduardo;4403.538;116337755;Brazil; -2018-11-19T00:12:42Z;Armando;902.3113;116262449;Brazil; -2018-11-19T00:03:42Z;Sandra;4768.246;114242440;Brazil; -2018-11-18T23:52:18Z;Nathália;1432.243;114673209;Brazil; -2018-11-18T23:49:27Z;Júlio Cesar;2600.423;116397394;Brazil; -2018-11-18T23:48:11Z;Eduardo;1508.869;115992845;Brazil; -2018-11-18T23:36:36Z;nathalia;2375.451;115693210;Brazil; -2018-11-18T23:28:47Z;Nathália;181.4342;114306876;Brazil; -2018-11-18T23:23:58Z;Armando;373.4734;116094897;Brazil; -2018-11-18T23:19:43Z;Sandra;1195.662;115323610;Brazil; -2018-11-18T23:11:25Z;Sandra;124.4823;115094083;Brazil; -2018-11-18T23:06:51Z;Ana;1963.502;114981456;Brazil; -2018-11-18T22:52:05Z;Sandra;4579.309;114327641;Brazil; -2018-11-18T22:26:11Z;Sandra;2932.036;115556084;Brazil; -2018-11-18T22:00:34Z;Júlio;5608.167;114554962;Brazil; -2018-11-18T21:26:27Z;Júlio;1206.266;114627153;Brazil; -2018-11-18T21:12:26Z;Sandra;2860.064;114495229;Brazil; -2018-11-18T20:46:48Z;Sandra;798.1919;114257078;Brazil; -2018-11-18T20:45:14Z;Sandra;2615.842;115232513;Brazil; -2018-11-18T20:43:25Z;Sandra;1325.864;115237741;Brazil; -2018-11-18T20:41:33Z;Ana;601.0223;115147920;Brazil; -2018-11-18T20:37:48Z;Júlio Cesar;3025.986;115162491;Brazil; -2018-11-18T20:20:41Z;Sandra;1484.326;115246066;Brazil; -2018-11-18T20:11:21Z;Júlio;945.624;114406753;Brazil; -2018-11-18T20:01:04Z;Armando;2745.379;114763132;Brazil; -2018-11-18T19:48:03Z;Armando;2479.195;115678013;Brazil; -2018-11-18T18:46:41Z;Júlio Cesar;704.1608;114311952;Brazil; -2018-11-18T18:44:01Z;nathalia;4828.633;116379698;Brazil; -2018-11-18T18:31:23Z;Júlio Cesar;1401.346;115434381;Brazil; -2018-11-18T18:14:07Z;Nathália;2857.977;116276307;Brazil; -2018-11-18T17:21:45Z;Eduardo;680.4644;115236645;Brazil; -2018-11-18T17:18:13Z;Eduardo;4070.745;115821865;Brazil; -2018-11-18T16:57:11Z;Nathália;2184.102;114664643;Brazil; -2018-11-18T16:32:45Z;Júlio;3858.539;116035278;Brazil; -2018-11-18T16:25:37Z;Ana;1943.463;114907149;Brazil; -2018-11-18T16:17:46Z;Sandra;348.6592;116132400;Brazil; -2018-11-18T16:07:24Z;Ana;440.3634;114383941;Brazil; -2018-11-18T15:41:50Z;Armando;565.7677;114792952;Brazil; -2018-11-18T15:39:00Z;Júlio;1267.635;115484290;Brazil; -2018-11-18T15:27:47Z;Ana;2040.669;115890149;Brazil; -2018-11-18T15:26:46Z;Júlio Cesar;3830.577;114791582;Brazil; -2018-11-18T15:24:12Z;Júlio;1598.6;115350098;Brazil; -2018-11-18T15:00:11Z;Sandra;2262.192;116326978;Brazil; -2018-11-18T14:37:36Z;Júlio;2261.809;116153933;Brazil; -2018-11-18T14:32:24Z;Nathália;597.6538;115060680;Brazil; -2018-11-18T14:25:21Z;Nathália;1128.868;116175509;Brazil; -2018-11-18T14:23:23Z;Armando;1808.775;115259629;Brazil; -2018-11-18T13:34:04Z;Ana;3367.081;115044453;Brazil; -2018-11-18T12:58:33Z;Armando;1719.544;115513156;Brazil; -2018-11-18T12:26:47Z;Eduardo;1289.776;114368066;Brazil; -2018-11-18T12:24:02Z;Sandra;1362.045;115521297;Brazil; -2018-11-18T11:56:23Z;Sandra;2927.692;114920173;Brazil; -2018-11-18T11:43:30Z;Ana;2113.086;115347532;Brazil; -2018-11-18T11:40:52Z;Júlio Cesar;920.207;115729407;Brazil; -2018-11-18T11:26:56Z;Eduardo;1160.285;114625752;Brazil; -2018-11-18T11:14:27Z;Nathália;3225.589;114544566;Brazil; -2018-11-18T10:52:08Z;Júlio;4699.935;115614721;Brazil; -2018-11-18T10:47:09Z;Armando;555.4732;116127747;Brazil; -2018-11-18T10:21:00Z;Júlio;1322.256;114705497;Brazil; -2018-11-18T10:16:55Z;nathalia;1436.732;115342580;Brazil; -2018-11-18T10:04:35Z;Júlio Cesar;245.4542;114978521;Brazil; -2018-11-18T09:44:43Z;Eduardo;3570.404;114454210;Brazil; -2018-11-18T09:38:28Z;Nathália;1142.35;116026415;Brazil; -2018-11-18T09:33:11Z;Nathália;2864.325;114639998;Brazil; -2018-11-18T09:07:48Z;nathalia;3676.544;116075135;Brazil; -2018-11-18T08:25:39Z;Nathália;967.2658;114919937;Brazil; -2018-11-18T08:19:50Z;Júlio Cesar;1998.314;115130984;Brazil; -2018-11-18T08:17:16Z;nathalia;150.4715;115777294;Brazil; -2018-11-18T08:14:44Z;nathalia;1503.038;115397628;Brazil; -2018-11-18T07:26:14Z;Eduardo;1172.717;114724655;Brazil; -2018-11-18T07:23:26Z;Armando;2921.335;115355426;Brazil; -2018-11-18T07:14:46Z;Júlio Cesar;1232.814;114306392;Brazil; -2018-11-18T07:00:42Z;Júlio Cesar;1388.813;116397844;Brazil; -2018-11-18T07:00:35Z;Sandra;4114.376;116320013;Brazil; -2018-11-18T06:49:53Z;Ana;2336.58;115729496;Brazil; -2018-11-18T06:28:17Z;nathalia;314.3727;115311458;Brazil; -2018-11-18T06:26:39Z;Júlio;2865.201;116348530;Brazil; -2018-11-18T06:16:01Z;Armando;1654.751;114363689;Brazil; -2018-11-18T05:55:25Z;Armando;583.3796;116248365;Brazil; -2018-11-18T05:44:35Z;nathalia;498.6173;114331697;Brazil; -2018-11-18T05:26:08Z;Armando;1181.517;115878211;Brazil; -2018-11-18T05:11:10Z;Júlio;3818.031;115993530;Brazil; -2018-11-18T05:02:58Z;Júlio;2934.144;114257862;Brazil; -2018-11-18T04:59:38Z;Armando;476.259;115740863;Brazil; -2018-11-18T04:26:14Z;Nathália;4126.289;114361437;Brazil; -2018-11-18T04:19:09Z;Sandra;2591.038;114635827;Brazil; -2018-11-18T03:47:43Z;Ana;1627.636;115372127;Brazil; -2018-11-18T03:33:01Z;Sandra;3536.788;116310965;Brazil; -2018-11-18T03:30:42Z;Júlio Cesar;2085.604;114842399;Brazil; -2018-11-18T03:17:59Z;Sandra;3602.311;115093852;Brazil; -2018-11-18T02:39:32Z;nathalia;1048.891;114632292;Brazil; -2018-11-18T02:17:02Z;Sandra;1414.682;114481338;Brazil; -2018-11-18T01:57:10Z;Júlio;3837.019;115083927;Brazil; -2018-11-18T01:56:50Z;Nathália;849.4204;115983604;Brazil; -2018-11-18T01:50:53Z;Sandra;2011.239;116218741;Brazil; -2018-11-18T01:32:49Z;Armando;1748.318;115140832;Brazil; -2018-11-18T01:06:03Z;Nathália;3239.46;116092881;Brazil; -2018-11-18T00:42:05Z;nathalia;3106.355;116246086;Brazil; -2018-11-18T00:41:18Z;Júlio;2417.773;115629739;Brazil; -2018-11-18T00:07:26Z;Nathália;2016.668;114774072;Brazil; -2018-11-18T00:06:14Z;Júlio;2716.951;115678937;Brazil; -2018-11-17T23:26:40Z;Armando;1084.091;114765625;Brazil; -2018-11-17T23:13:55Z;nathalia;2156.605;114331810;Brazil; -2018-11-17T23:06:45Z;nathalia;1085.155;114644239;Brazil; -2018-11-17T23:04:58Z;Ana;1439.105;116368935;Brazil; -2018-11-17T23:01:47Z;Júlio Cesar;2324.387;115965195;Brazil; -2018-11-17T22:59:30Z;Nathália;3425.397;114657349;Brazil; -2018-11-17T22:46:23Z;Ana;2113.075;115161620;Brazil; -2018-11-17T22:44:02Z;Sandra;2851.041;114847391;Brazil; -2018-11-17T22:43:22Z;Nathália;2202.724;116159039;Brazil; -2018-11-17T22:42:16Z;Ana;911.9307;115486534;Brazil; -2018-11-17T22:37:56Z;nathalia;3122.284;115661178;Brazil; -2018-11-17T22:28:28Z;Eduardo;3762.278;115789522;Brazil; -2018-11-17T22:13:15Z;Ana;2433.33;114952095;Brazil; -2018-11-17T22:12:40Z;Armando;446.3951;114977271;Brazil; -2018-11-17T21:27:53Z;Eduardo;2568.48;115770105;Brazil; -2018-11-17T20:48:15Z;Nathália;4268.251;116079523;Brazil; -2018-11-17T19:58:38Z;Júlio Cesar;6119.406;115318711;Brazil; -2018-11-17T19:56:11Z;Júlio Cesar;807.9134;115423819;Brazil; -2018-11-17T19:51:15Z;nathalia;2468.4;115868355;Brazil; -2018-11-17T19:46:02Z;Júlio;1955.671;115595638;Brazil; -2018-11-17T19:29:58Z;Júlio;5283.712;115389934;Brazil; -2018-11-17T19:26:54Z;Ana;2871.106;115121156;Brazil; -2018-11-17T18:37:50Z;Júlio Cesar;1723.002;114542592;Brazil; -2018-11-17T18:35:32Z;nathalia;259.0002;114239953;Brazil; -2018-11-17T18:19:13Z;Júlio Cesar;1054.008;114888720;Brazil; -2018-11-17T17:57:19Z;Armando;265.9301;116203035;Brazil; -2018-11-17T17:49:52Z;Armando;994.5769;114880551;Brazil; -2018-11-17T17:42:51Z;Sandra;3517.222;114919371;Brazil; -2018-11-17T17:37:56Z;Eduardo;2746.87;115228327;Brazil; -2018-11-17T17:29:18Z;Júlio;1443.211;115584106;Brazil; -2018-11-17T17:26:14Z;nathalia;3939.306;115604466;Brazil; -2018-11-17T17:25:45Z;Júlio Cesar;2509.137;114330603;Brazil; -2018-11-17T17:15:30Z;Júlio;297.5778;116351727;Brazil; -2018-11-17T16:58:29Z;Ana;1063.673;114925625;Brazil; -2018-11-17T16:39:39Z;Nathália;1925.905;116071021;Brazil; -2018-11-17T16:39:18Z;Eduardo;148.6251;115543644;Brazil; -2018-11-17T16:38:11Z;Ana;2840.014;115123901;Brazil; -2018-11-17T16:33:39Z;nathalia;78.45818;114480067;Brazil; -2018-11-17T16:22:29Z;Júlio;1656.34;115577991;Brazil; -2018-11-17T16:18:18Z;Júlio Cesar;3290.945;116365862;Brazil; -2018-11-17T15:36:22Z;Júlio Cesar;1931.489;115888816;Brazil; -2018-11-17T15:18:46Z;Nathália;3077.604;114396119;Brazil; -2018-11-17T15:00:26Z;nathalia;2105.846;115181619;Brazil; -2018-11-17T14:58:18Z;Armando;4472.105;114465138;Brazil; -2018-11-17T14:29:49Z;nathalia;1697.239;114904869;Brazil; -2018-11-17T14:23:30Z;Eduardo;1216.916;115891687;Brazil; -2018-11-17T13:30:47Z;Nathália;3607.987;116163052;Brazil; -2018-11-17T13:23:51Z;Armando;902.531;115019749;Brazil; -2018-11-17T13:23:34Z;Armando;856.5958;115264012;Brazil; -2018-11-17T13:15:19Z;Sandra;491.5136;115285815;Brazil; -2018-11-17T13:05:14Z;Armando;356.073;114205952;Brazil; -2018-11-17T12:54:39Z;Armando;1657.056;114520580;Brazil; -2018-11-17T12:33:35Z;Júlio Cesar;3403.271;115124598;Brazil; -2018-11-17T12:16:57Z;Armando;3011.596;114764944;Brazil; -2018-11-17T11:33:40Z;Eduardo;2173.338;115593144;Brazil; -2018-11-17T10:47:45Z;Armando;1558.444;115566344;Brazil; -2018-11-17T10:23:28Z;Eduardo;3277.992;115643369;Brazil; -2018-11-17T10:17:53Z;nathalia;443.1374;114235100;Brazil; -2018-11-17T09:55:12Z;Nathália;515.0945;115324327;Brazil; -2018-11-17T09:52:37Z;Armando;1000.814;115392710;Brazil; -2018-11-17T09:40:33Z;Nathália;3382.197;114598338;Brazil; -2018-11-17T09:29:20Z;Sandra;1681.335;115322695;Brazil; -2018-11-17T09:16:44Z;Júlio;3123.851;116350187;Brazil; -2018-11-17T09:11:57Z;Armando;1174.897;115575687;Brazil; -2018-11-17T09:02:32Z;Nathália;1531.146;116107037;Brazil; -2018-11-17T08:23:44Z;Ana;4136.131;115640194;Brazil; -2018-11-17T08:21:39Z;Nathália;48.05867;115797382;Brazil; -2018-11-17T07:11:09Z;Júlio;2527.536;114983923;Brazil; -2018-11-17T06:57:20Z;Júlio;3258.107;114995398;Brazil; -2018-11-17T06:48:08Z;nathalia;3444.102;115700009;Brazil; -2018-11-17T06:32:13Z;Nathália;1896.59;114943738;Brazil; -2018-11-17T05:29:56Z;Júlio Cesar;537.0818;116218098;Brazil; -2018-11-17T05:19:35Z;Armando;1101.559;116255160;Brazil; -2018-11-17T05:19:01Z;Ana;1146.045;114967582;Brazil; -2018-11-17T04:20:23Z;Júlio;1969.403;115908373;Brazil; -2018-11-17T03:51:17Z;Júlio;3460.184;115984592;Brazil; -2018-11-17T03:32:37Z;Sandra;1180.131;114217833;Brazil; -2018-11-17T03:20:55Z;Armando;2025.232;116352782;Brazil; -2018-11-17T03:12:31Z;Nathália;2262.919;115241041;Brazil; -2018-11-17T02:54:01Z;Júlio Cesar;3802.287;114940750;Brazil; -2018-11-17T02:53:44Z;nathalia;3346.983;115252483;Brazil; -2018-11-17T02:30:54Z;Ana;2951.77;115175345;Brazil; -2018-11-17T02:29:04Z;Nathália;188.6141;115165501;Brazil; -2018-11-17T02:28:04Z;Nathália;2652.848;114494257;Brazil; -2018-11-17T02:22:16Z;Sandra;2270.075;114636441;Brazil; -2018-11-17T02:04:58Z;Júlio;294.9832;115072518;Brazil; -2018-11-17T01:25:05Z;Sandra;1640.711;114215568;Brazil; -2018-11-17T00:58:47Z;Nathália;3148.547;115825252;Brazil; -2018-11-17T00:44:53Z;nathalia;3161.525;115258801;Brazil; -2018-11-17T00:42:16Z;Júlio Cesar;883.962;115407035;Brazil; -2018-11-17T00:29:21Z;Armando;1537.748;115516802;Brazil; -2018-11-17T00:27:04Z;nathalia;1052.944;115386228;Brazil; -2018-11-17T00:15:10Z;Júlio;335.3159;114540358;Brazil; -2018-11-17T00:10:26Z;Armando;2786.286;116088796;Brazil; -2018-11-17T00:03:00Z;Eduardo;2041.862;114746408;Brazil; -2018-11-16T23:52:30Z;Ana;1731.922;114369888;Brazil; -2018-11-16T23:26:18Z;Júlio;809.9099;114568588;Brazil; -2018-11-16T23:25:39Z;nathalia;1582.239;115559198;Brazil; -2018-11-16T23:18:41Z;nathalia;808.2741;114394667;Brazil; -2018-11-16T22:57:29Z;Sandra;2620.215;115201521;Brazil; -2018-11-16T22:34:33Z;Armando;2274.655;114604863;Brazil; -2018-11-16T22:27:53Z;Sandra;2152.972;115983681;Brazil; -2018-11-16T22:21:43Z;Júlio;2922.35;114301739;Brazil; -2018-11-16T22:19:24Z;nathalia;4239.303;115412985;Brazil; -2018-11-16T22:17:20Z;Júlio Cesar;2156.105;116213722;Brazil; -2018-11-16T22:06:39Z;Eduardo;3416.193;116238630;Brazil; -2018-11-16T22:06:35Z;Ana;2765.757;116229849;Brazil; -2018-11-16T22:00:59Z;Armando;341.5802;114795766;Brazil; -2018-11-16T21:32:52Z;Ana;719.0099;115590504;Brazil; -2018-11-16T21:31:13Z;nathalia;2652.608;114743787;Brazil; -2018-11-16T21:10:51Z;nathalia;3758.483;115591145;Brazil; -2018-11-16T21:10:19Z;Nathália;4035.927;115962046;Brazil; -2018-11-16T20:51:10Z;Ana;952.9197;115936252;Brazil; -2018-11-16T20:31:32Z;Júlio;5109.031;114250956;Brazil; -2018-11-16T20:29:53Z;Nathália;4362.915;115876359;Brazil; -2018-11-16T20:16:43Z;nathalia;3117.858;114486433;Brazil; -2018-11-16T20:14:59Z;Júlio;192.3549;116047476;Brazil; -2018-11-16T20:02:08Z;Júlio;2773.349;114426649;Brazil; -2018-11-16T19:58:32Z;Júlio;2485.771;116235207;Brazil; -2018-11-16T19:32:01Z;Nathália;2115.574;116060245;Brazil; -2018-11-16T19:27:33Z;Ana;2247.047;115858311;Brazil; -2018-11-16T18:59:21Z;Nathália;1310.423;115653742;Brazil; -2018-11-16T18:55:25Z;nathalia;1108.139;115602909;Brazil; -2018-11-16T18:44:40Z;Armando;2258.852;116345624;Brazil; -2018-11-16T18:43:22Z;Eduardo;3502.633;115795202;Brazil; -2018-11-16T18:09:46Z;Eduardo;1144.528;114670601;Brazil; -2018-11-16T17:58:25Z;Armando;2327.416;114460262;Brazil; -2018-11-16T17:54:05Z;Eduardo;3270.925;115908879;Brazil; -2018-11-16T17:53:21Z;Nathália;2816.286;114328074;Brazil; -2018-11-16T17:53:07Z;Eduardo;2047.982;114926709;Brazil; -2018-11-16T17:52:38Z;Ana;1557.175;115391586;Brazil; -2018-11-16T17:25:59Z;Júlio Cesar;2090.269;114671302;Brazil; -2018-11-16T17:17:53Z;Júlio Cesar;409.579;115534607;Brazil; -2018-11-16T16:44:59Z;Júlio;1552.093;114690477;Brazil; -2018-11-16T16:39:30Z;Sandra;1603.103;115537620;Brazil; -2018-11-16T16:29:03Z;nathalia;4500.068;114819036;Brazil; -2018-11-16T16:11:46Z;Ana;4729.153;115218928;Brazil; -2018-11-16T16:01:57Z;nathalia;1488.618;116266206;Brazil; -2018-11-16T15:49:55Z;Júlio;2891.41;114366607;Brazil; -2018-11-16T15:23:15Z;Ana;2236.581;114604653;Brazil; -2018-11-16T15:14:15Z;Sandra;273.5393;114707544;Brazil; -2018-11-16T15:13:11Z;Nathália;2353.286;116057691;Brazil; -2018-11-16T15:07:58Z;nathalia;5104.2;115022499;Brazil; -2018-11-16T14:48:17Z;Ana;2676.911;114294473;Brazil; -2018-11-16T14:38:00Z;Júlio;5205.706;115674501;Brazil; -2018-11-16T14:27:54Z;Ana;1138.839;115900962;Brazil; -2018-11-16T14:25:06Z;Nathália;4251.048;114470475;Brazil; -2018-11-16T14:20:23Z;Armando;3850.762;115486301;Brazil; -2018-11-16T14:20:10Z;Nathália;1356.07;115493788;Brazil; -2018-11-16T14:17:08Z;Júlio;982.3801;115274588;Brazil; -2018-11-16T14:06:52Z;Armando;92.64345;115812673;Brazil; -2018-11-16T14:06:25Z;Júlio Cesar;1381.025;116099225;Brazil; -2018-11-16T13:35:33Z;Nathália;2177.088;115702272;Brazil; -2018-11-16T12:47:25Z;Júlio;865.0779;115190149;Brazil; -2018-11-16T12:42:58Z;Armando;2578.719;114407811;Brazil; -2018-11-16T12:35:14Z;Ana;1761.291;115226872;Brazil; -2018-11-16T11:52:29Z;nathalia;176.0622;115492424;Brazil; -2018-11-16T11:42:03Z;Júlio;1635.675;114417519;Brazil; -2018-11-16T11:36:42Z;Eduardo;1065.031;115749693;Brazil; -2018-11-16T11:35:22Z;Júlio Cesar;2322.733;115231619;Brazil; -2018-11-16T11:00:09Z;Ana;2491.91;115621346;Brazil; -2018-11-16T10:41:12Z;Sandra;3012.043;115386002;Brazil; -2018-11-16T10:37:29Z;Júlio;2238.27;114678107;Brazil; -2018-11-16T10:30:32Z;Júlio;201.3029;115725559;Brazil; -2018-11-16T09:42:14Z;nathalia;406.1847;114991162;Brazil; -2018-11-16T09:09:39Z;Eduardo;1924.587;114245393;Brazil; -2018-11-16T08:52:30Z;Sandra;714.4144;114300371;Brazil; -2018-11-16T08:01:42Z;Ana;6268.804;114306293;Brazil; -2018-11-16T07:47:55Z;Júlio Cesar;5358.006;114706441;Brazil; -2018-11-16T07:18:37Z;Ana;1239.093;114905582;Brazil; -2018-11-16T06:17:34Z;Nathália;2547.221;114787926;Brazil; -2018-11-16T06:08:04Z;Eduardo;4092.477;115906039;Brazil; -2018-11-16T06:04:45Z;Armando;4404.607;115776797;Brazil; -2018-11-16T05:59:03Z;Ana;805.0361;114989133;Brazil; -2018-11-16T05:53:52Z;Júlio;2516.214;114979084;Brazil; -2018-11-16T05:45:58Z;Ana;1923.592;116212600;Brazil; -2018-11-16T05:41:51Z;Nathália;1140.45;114622030;Brazil; -2018-11-16T05:14:06Z;nathalia;206.9558;114248826;Brazil; -2018-11-16T04:40:05Z;Júlio;3146.523;115627939;Brazil; -2018-11-16T04:10:53Z;Júlio;2247.061;114645005;Brazil; -2018-11-16T03:55:06Z;Ana;204.1207;116258986;Brazil; -2018-11-16T03:40:18Z;Júlio Cesar;593.1046;116038159;Brazil; -2018-11-16T02:54:23Z;Eduardo;1533.039;114778035;Brazil; -2018-11-16T01:16:25Z;Armando;2117.035;115324204;Brazil; -2018-11-16T01:03:50Z;Nathália;2003.709;115788721;Brazil; -2018-11-16T00:40:05Z;Armando;2130.24;114337236;Brazil; -2018-11-16T00:25:27Z;nathalia;1400.054;116302507;Brazil; -2018-11-16T00:14:15Z;Júlio;1165.185;114545182;Brazil; -2018-11-15T23:41:32Z;Júlio;2986.76;115378986;Brazil; -2018-11-15T23:02:38Z;Armando;2215.282;116090486;Brazil; -2018-11-15T22:51:30Z;nathalia;41.94572;115292776;Brazil; -2018-11-15T22:48:17Z;Nathália;3227.429;115335836;Brazil; -2018-11-15T22:47:53Z;Sandra;1887.479;115890803;Brazil; -2018-11-15T22:41:15Z;Nathália;3431.546;116335915;Brazil; -2018-11-15T22:31:37Z;Júlio;1456.18;115282227;Brazil; -2018-11-15T22:23:43Z;Sandra;2138.909;115053964;Brazil; -2018-11-15T22:12:10Z;Armando;1975.974;115802460;Brazil; -2018-11-15T21:22:08Z;Eduardo;715.5232;115461254;Brazil; -2018-11-15T20:44:09Z;Sandra;1352.45;115409072;Brazil; -2018-11-15T20:29:03Z;Ana;1177.628;115591954;Brazil; -2018-11-15T19:49:48Z;Júlio Cesar;922.1975;116271027;Brazil; -2018-11-15T19:44:01Z;Júlio Cesar;1569.368;114461297;Brazil; -2018-11-15T19:31:31Z;Nathália;3776.093;116168099;Brazil; -2018-11-15T19:26:04Z;Armando;721.5913;116034911;Brazil; -2018-11-15T19:19:00Z;Júlio Cesar;3136.281;115991262;Brazil; -2018-11-15T18:58:31Z;Armando;2194.438;116162939;Brazil; -2018-11-15T18:17:38Z;nathalia;1455.362;115047984;Brazil; -2018-11-15T18:12:38Z;Júlio;59.72338;116388289;Brazil; -2018-11-15T18:10:38Z;Júlio Cesar;70.27087;114512944;Brazil; -2018-11-15T18:09:31Z;Nathália;1793.149;115484261;Brazil; -2018-11-15T18:08:17Z;Ana;4153.306;115991062;Brazil; -2018-11-15T18:05:12Z;Armando;1630.019;116016715;Brazil; -2018-11-15T17:51:59Z;Armando;662.1314;114245302;Brazil; -2018-11-15T17:47:02Z;Ana;239.7655;115322550;Brazil; -2018-11-15T16:54:38Z;Júlio Cesar;480.187;114249390;Brazil; -2018-11-15T16:53:30Z;Ana;2712.629;114591276;Brazil; -2018-11-15T16:20:42Z;Nathália;2238.452;114668505;Brazil; -2018-11-15T16:08:41Z;Sandra;1545.215;114663213;Brazil; -2018-11-15T15:08:14Z;Armando;3833.391;115218480;Brazil; -2018-11-15T14:38:47Z;Júlio Cesar;47.86036;114227324;Brazil; -2018-11-15T14:32:29Z;Nathália;3566.227;114362047;Brazil; -2018-11-15T13:54:05Z;nathalia;4461.38;116056190;Brazil; -2018-11-15T13:51:48Z;Júlio;3365.356;114967177;Brazil; -2018-11-15T13:48:48Z;Júlio;514.5605;115577874;Brazil; -2018-11-15T13:29:44Z;Júlio Cesar;4168.903;115136706;Brazil; -2018-11-15T13:07:11Z;Júlio Cesar;3330.107;114946924;Brazil; -2018-11-15T12:51:20Z;Eduardo;1570.961;114803423;Brazil; -2018-11-15T12:12:54Z;Eduardo;331.1663;115656986;Brazil; -2018-11-15T12:12:00Z;Júlio;2324.973;115805241;Brazil; -2018-11-15T11:50:21Z;Ana;129.6082;116388756;Brazil; -2018-11-15T11:34:07Z;Ana;2916.469;115399030;Brazil; -2018-11-15T11:23:31Z;nathalia;2430.033;116060416;Brazil; -2018-11-15T11:08:36Z;Armando;3423.832;114935704;Brazil; -2018-11-15T10:27:49Z;Eduardo;415.4581;115898087;Brazil; -2018-11-15T10:21:21Z;Nathália;64.75847;114501245;Brazil; -2018-11-15T10:03:03Z;Nathália;1624.958;116320686;Brazil; -2018-11-15T09:57:01Z;Ana;3799.706;114703519;Brazil; -2018-11-15T09:41:19Z;Júlio Cesar;399.2161;114932369;Brazil; -2018-11-15T09:34:22Z;Sandra;4254.04;114639108;Brazil; -2018-11-15T09:22:02Z;nathalia;1530.392;115941857;Brazil; -2018-11-15T09:14:21Z;Júlio Cesar;1489.795;115563318;Brazil; -2018-11-15T09:04:38Z;Nathália;3395.949;116338082;Brazil; -2018-11-15T09:04:29Z;Armando;1915.562;114489762;Brazil; -2018-11-15T08:39:42Z;Nathália;4216.141;115321844;Brazil; -2018-11-15T08:11:05Z;Sandra;1275.895;115470970;Brazil; -2018-11-15T07:51:14Z;Nathália;3919.078;114549758;Brazil; -2018-11-15T07:16:27Z;Nathália;1864.139;115557495;Brazil; -2018-11-15T07:06:44Z;Armando;3198.893;114419796;Brazil; -2018-11-15T06:44:38Z;Ana;2604.183;114921169;Brazil; -2018-11-15T06:06:41Z;Júlio Cesar;368.9681;116355563;Brazil; -2018-11-15T06:06:41Z;Sandra;191.1034;114772089;Brazil; -2018-11-15T05:26:01Z;Ana;3122.53;116157072;Brazil; -2018-11-15T05:19:22Z;Júlio Cesar;48.7709;114336865;Brazil; -2018-11-15T04:47:22Z;Júlio Cesar;1151.585;116186805;Brazil; -2018-11-15T04:30:20Z;Nathália;1843.662;116014985;Brazil; -2018-11-15T04:27:07Z;Júlio;4755.476;114829534;Brazil; -2018-11-15T04:26:57Z;Armando;1959.652;115805995;Brazil; -2018-11-15T04:05:58Z;Armando;4048.563;116129861;Brazil; -2018-11-15T04:02:40Z;Eduardo;1362.953;114716014;Brazil; -2018-11-15T03:48:43Z;Armando;476.2967;115189696;Brazil; -2018-11-15T03:40:04Z;nathalia;2832.674;114803869;Brazil; -2018-11-15T03:27:09Z;Armando;1501.569;115327312;Brazil; -2018-11-15T03:26:40Z;Júlio Cesar;2382.233;115690649;Brazil; -2018-11-15T03:08:38Z;Eduardo;2913.794;116124237;Brazil; -2018-11-15T03:02:18Z;Júlio;770.5236;115228334;Brazil; -2018-11-15T02:58:52Z;Sandra;2011.287;115836896;Brazil; -2018-11-15T02:45:41Z;Júlio Cesar;1651.524;114817078;Brazil; -2018-11-15T02:38:34Z;Ana;4284.448;116087842;Brazil; -2018-11-15T02:22:33Z;Eduardo;4368.432;115523851;Brazil; -2018-11-15T01:56:46Z;Júlio;1880.526;115010244;Brazil; -2018-11-15T01:50:04Z;Armando;1062.884;115164992;Brazil; -2018-11-15T01:48:25Z;Armando;3985.601;116344476;Brazil; -2018-11-15T01:46:54Z;Sandra;2498.466;116130692;Brazil; -2018-11-15T01:45:53Z;Armando;751.3166;115022749;Brazil; -2018-11-15T01:41:45Z;nathalia;2942.579;115250584;Brazil; -2018-11-15T01:37:43Z;Ana;1988.405;115456114;Brazil; -2018-11-15T01:22:58Z;Sandra;4713.648;115330435;Brazil; -2018-11-15T00:48:46Z;Júlio;896.4866;114704809;Brazil; -2018-11-15T00:46:34Z;Eduardo;2402.284;115028916;Brazil; -2018-11-15T00:43:43Z;Júlio;31.42833;114257657;Brazil; -2018-11-15T00:29:51Z;Armando;3065.447;114291540;Brazil; -2018-11-15T00:26:24Z;Eduardo;1211.986;114413681;Brazil; -2018-11-15T00:24:39Z;Júlio Cesar;1477.257;115798473;Brazil; -2018-11-15T00:24:27Z;Ana;2726.895;115309421;Brazil; -2018-11-15T00:22:51Z;Ana;1744.582;115165847;Brazil; -2018-11-14T23:58:39Z;Júlio;4322.814;114607815;Brazil; -2018-11-14T23:52:28Z;Ana;3591.779;114794534;Brazil; -2018-11-14T23:33:29Z;Ana;238.639;115942619;Brazil; -2018-11-14T23:32:43Z;Sandra;696.3366;115038847;Brazil; -2018-11-14T23:19:50Z;nathalia;642.5955;114230159;Brazil; -2018-11-14T23:15:13Z;Armando;1584.813;116077775;Brazil; -2018-11-14T22:36:31Z;Armando;3162.973;115298514;Brazil; -2018-11-14T22:20:23Z;Armando;4564.87;115570446;Brazil; -2018-11-14T21:52:44Z;Ana;1263.78;115330774;Brazil; -2018-11-14T21:47:25Z;Sandra;3916.323;116211217;Brazil; -2018-11-14T21:45:05Z;Júlio Cesar;2014.862;115658097;Brazil; -2018-11-14T21:40:48Z;Júlio;3472.549;115038379;Brazil; -2018-11-14T21:32:10Z;nathalia;2009.038;115834979;Brazil; -2018-11-14T20:22:28Z;Júlio Cesar;2706.146;116151863;Brazil; -2018-11-14T20:16:20Z;nathalia;2863.995;116157748;Brazil; -2018-11-14T20:14:43Z;Sandra;3472.177;116308390;Brazil; -2018-11-14T20:13:19Z;Júlio;1905.038;115196146;Brazil; -2018-11-14T20:01:45Z;Eduardo;1236.831;115189427;Brazil; -2018-11-14T19:53:40Z;Eduardo;694.676;114209012;Brazil; -2018-11-14T19:53:13Z;Eduardo;3704.082;114838307;Brazil; -2018-11-14T19:46:52Z;Ana;35.80027;114225417;Brazil; -2018-11-14T19:21:49Z;Ana;2112.513;115151866;Brazil; -2018-11-14T19:21:25Z;nathalia;3161.605;115881174;Brazil; -2018-11-14T19:12:10Z;Ana;3534.745;115271673;Brazil; -2018-11-14T19:10:12Z;Sandra;392.6213;114888686;Brazil; -2018-11-14T18:49:02Z;Sandra;4322.46;115103928;Brazil; -2018-11-14T18:48:22Z;nathalia;2169.458;116256489;Brazil; -2018-11-14T18:20:18Z;Sandra;2070.417;114807457;Brazil; -2018-11-14T17:54:48Z;Nathália;123.9841;116100493;Brazil; -2018-11-14T17:46:19Z;Júlio Cesar;4549.706;114455394;Brazil; -2018-11-14T17:34:18Z;Júlio Cesar;1597.172;114343340;Brazil; -2018-11-14T17:24:04Z;Armando;1949.894;114748641;Brazil; -2018-11-14T17:14:14Z;Júlio Cesar;3147.379;116199556;Brazil; -2018-11-14T17:06:23Z;Ana;3611.473;114545041;Brazil; -2018-11-14T16:58:04Z;Júlio Cesar;3647.337;116162139;Brazil; -2018-11-14T16:37:21Z;Júlio;1772.536;114360622;Brazil; -2018-11-14T16:13:04Z;Sandra;343.621;114458013;Brazil; -2018-11-14T15:49:14Z;Sandra;231.1357;114803997;Brazil; -2018-11-14T15:49:10Z;Ana;3909.642;114633783;Brazil; -2018-11-14T15:16:58Z;Nathália;2186.003;114231116;Brazil; -2018-11-14T15:15:34Z;Eduardo;3464.621;115044720;Brazil; -2018-11-14T15:12:21Z;Ana;3362.025;116205985;Brazil; -2018-11-14T14:54:46Z;Júlio Cesar;2175.03;115709101;Brazil; -2018-11-14T14:32:23Z;Júlio Cesar;735.0973;115533483;Brazil; -2018-11-14T14:20:50Z;Armando;3268.675;115480971;Brazil; -2018-11-14T14:15:40Z;Nathália;1435.452;115724819;Brazil; -2018-11-14T13:44:37Z;Ana;3925.741;116270392;Brazil; -2018-11-14T13:35:39Z;Júlio;5666.419;114696700;Brazil; -2018-11-14T12:53:58Z;nathalia;2885.928;114721540;Brazil; -2018-11-14T12:42:11Z;Júlio Cesar;3060.974;116256860;Brazil; -2018-11-14T12:30:30Z;nathalia;3535.131;115182730;Brazil; -2018-11-14T12:28:29Z;Nathália;904.4023;114298915;Brazil; -2018-11-14T12:27:54Z;Sandra;1708.537;115518481;Brazil; -2018-11-14T12:18:31Z;Ana;2262.655;115332230;Brazil; -2018-11-14T12:06:48Z;Nathália;3831.634;116288202;Brazil; -2018-11-14T11:34:51Z;Ana;770.5151;114710724;Brazil; -2018-11-14T11:10:22Z;Nathália;1873.244;115713210;Brazil; -2018-11-14T11:02:57Z;Eduardo;1444.846;114342658;Brazil; -2018-11-14T10:45:58Z;Júlio;4530.048;116091737;Brazil; -2018-11-14T10:42:30Z;Ana;2865.591;115733079;Brazil; -2018-11-14T10:15:23Z;Nathália;3429.25;114226368;Brazil; -2018-11-14T09:48:03Z;Nathália;2975.492;114689954;Brazil; -2018-11-14T09:36:33Z;Júlio;1519.039;115137954;Brazil; -2018-11-14T09:36:28Z;Sandra;3569.07;115573437;Brazil; -2018-11-14T09:26:10Z;Armando;3104.188;115845235;Brazil; -2018-11-14T09:22:16Z;Júlio Cesar;3811.581;115282217;Brazil; -2018-11-14T09:13:20Z;Armando;1811.065;115807408;Brazil; -2018-11-14T09:04:46Z;nathalia;4521.979;116060966;Brazil; -2018-11-14T08:41:38Z;Ana;2345.533;116171660;Brazil; -2018-11-14T08:39:17Z;Júlio Cesar;1636.936;114282540;Brazil; -2018-11-14T08:27:59Z;Sandra;1813.826;114992105;Brazil; -2018-11-14T08:23:21Z;Júlio;345.1135;115739157;Brazil; -2018-11-14T08:00:40Z;Sandra;413.2849;114473246;Brazil; -2018-11-14T07:32:59Z;Júlio;1239.505;115043291;Brazil; -2018-11-14T07:16:53Z;Júlio Cesar;2876.161;115866356;Brazil; -2018-11-14T06:46:19Z;Júlio Cesar;2235.77;115467063;Brazil; -2018-11-14T06:45:06Z;Júlio;407.9886;115382116;Brazil; -2018-11-14T05:12:58Z;Armando;4274.52;114329550;Brazil; -2018-11-14T05:05:12Z;Nathália;1575.476;116233539;Brazil; -2018-11-14T05:00:08Z;Nathália;2197.804;115724555;Brazil; -2018-11-14T04:52:41Z;Júlio;779.1928;115986710;Brazil; -2018-11-14T04:19:15Z;nathalia;4521.904;115224470;Brazil; -2018-11-14T04:08:26Z;Sandra;1376.738;115283411;Brazil; -2018-11-14T03:44:02Z;Armando;4652.532;115561348;Brazil; -2018-11-14T03:18:39Z;Eduardo;1743.832;114368299;Brazil; -2018-11-14T03:18:31Z;Júlio;1797.311;116184479;Brazil; -2018-11-14T02:47:40Z;Armando;1548.294;114880252;Brazil; -2018-11-14T02:35:27Z;Sandra;2672.533;115536057;Brazil; -2018-11-14T01:54:42Z;Júlio Cesar;4329.155;115399901;Brazil; -2018-11-14T01:26:56Z;Eduardo;1263.553;114453089;Brazil; -2018-11-14T01:11:50Z;Júlio;1855.331;114449317;Brazil; -2018-11-14T01:02:54Z;Armando;204.0976;115977130;Brazil; -2018-11-14T00:58:06Z;Júlio;2602.317;115913479;Brazil; -2018-11-14T00:53:01Z;Sandra;3778.966;115960241;Brazil; -2018-11-14T00:38:50Z;Ana;4765.465;114379896;Brazil; -2018-11-14T00:29:41Z;nathalia;302.3997;115128635;Brazil; -2018-11-14T00:05:52Z;nathalia;4179.223;115200395;Brazil; -2018-11-13T23:55:41Z;Ana;2640.092;115263403;Brazil; -2018-11-13T23:47:33Z;nathalia;2747.426;114675180;Brazil; -2018-11-13T23:14:48Z;Sandra;523.086;115299474;Brazil; -2018-11-13T22:53:34Z;nathalia;1191.483;115696108;Brazil; -2018-11-13T22:53:17Z;Sandra;1458.071;115771908;Brazil; -2018-11-13T22:43:24Z;Ana;3097.379;116265378;Brazil; -2018-11-13T22:09:52Z;Nathália;5826.647;115284800;Brazil; -2018-11-13T22:05:22Z;Eduardo;1571.248;114333518;Brazil; -2018-11-13T22:04:34Z;Júlio;1345.186;114263964;Brazil; -2018-11-13T21:48:06Z;Ana;1423.125;115253454;Brazil; -2018-11-13T21:42:49Z;Júlio Cesar;778.331;115838204;Brazil; -2018-11-13T21:36:28Z;nathalia;194.788;114336876;Brazil; -2018-11-13T21:32:38Z;nathalia;2268.527;116269201;Brazil; -2018-11-13T21:26:26Z;Armando;3091.723;115410496;Brazil; -2018-11-13T20:54:43Z;Armando;451.5525;114419918;Brazil; -2018-11-13T20:33:20Z;Ana;3891.374;114217943;Brazil; -2018-11-13T20:31:34Z;Armando;415.3772;116122465;Brazil; -2018-11-13T20:15:48Z;Ana;2365.101;114316663;Brazil; -2018-11-13T19:43:13Z;Júlio;3705.809;116300452;Brazil; -2018-11-13T19:18:02Z;Júlio Cesar;234.4381;114656684;Brazil; -2018-11-13T18:44:40Z;Júlio Cesar;472.9714;115782706;Brazil; -2018-11-13T18:43:42Z;Sandra;3377.985;114802917;Brazil; -2018-11-13T18:14:46Z;Sandra;5492.345;115063183;Brazil; -2018-11-13T17:55:39Z;Ana;737.1944;115177036;Brazil; -2018-11-13T17:52:34Z;Ana;351.9123;116181055;Brazil; -2018-11-13T17:10:20Z;Júlio;948.8227;115484154;Brazil; -2018-11-13T16:44:58Z;Ana;3688.763;114613349;Brazil; -2018-11-13T15:21:39Z;Júlio;613.8187;115888176;Brazil; -2018-11-13T15:11:40Z;nathalia;1138.542;114658478;Brazil; -2018-11-13T14:53:58Z;Nathália;4018.966;114330745;Brazil; -2018-11-13T14:44:13Z;Ana;1373.991;116093774;Brazil; -2018-11-13T14:40:48Z;Armando;2205.489;114814090;Brazil; -2018-11-13T14:38:06Z;Eduardo;1535.751;114829922;Brazil; -2018-11-13T14:24:33Z;Sandra;3950.971;114817106;Brazil; -2018-11-13T14:01:24Z;nathalia;39.12215;114804267;Brazil; -2018-11-13T13:51:57Z;Júlio Cesar;409.3475;115249947;Brazil; -2018-11-13T13:43:24Z;Sandra;3667.085;115468274;Brazil; -2018-11-13T13:33:10Z;Eduardo;939.3918;116051908;Brazil; -2018-11-13T13:25:30Z;Armando;1027.638;115498029;Brazil; -2018-11-13T13:06:02Z;Sandra;2605.842;114336721;Brazil; -2018-11-13T12:50:23Z;Armando;2837.044;114259268;Brazil; -2018-11-13T12:49:39Z;Sandra;636.9661;116289853;Brazil; -2018-11-13T12:18:19Z;Armando;2360.251;114452641;Brazil; -2018-11-13T12:10:26Z;Sandra;2441.701;115197863;Brazil; -2018-11-13T11:41:43Z;Nathália;686.0183;116110924;Brazil; -2018-11-13T11:14:53Z;Sandra;1926.918;115525758;Brazil; -2018-11-13T10:39:00Z;Nathália;1948.905;115824973;Brazil; -2018-11-13T10:16:52Z;Júlio;2714.205;115259728;Brazil; -2018-11-13T10:16:14Z;Júlio Cesar;3520.575;114485335;Brazil; -2018-11-13T10:07:07Z;Armando;302.3893;114816476;Brazil; -2018-11-13T09:35:16Z;nathalia;1370.102;115661362;Brazil; -2018-11-13T08:42:17Z;Sandra;3202.557;115663816;Brazil; -2018-11-13T08:41:00Z;Armando;729.8551;114266644;Brazil; -2018-11-13T07:27:25Z;Sandra;3505.366;116180091;Brazil; -2018-11-13T07:14:11Z;Nathália;225.6531;115715044;Brazil; -2018-11-13T06:02:28Z;Ana;1844.744;115027814;Brazil; -2018-11-13T05:58:25Z;nathalia;1382.636;116057346;Brazil; -2018-11-13T05:43:49Z;nathalia;2855.719;115037648;Brazil; -2018-11-13T05:22:32Z;Armando;4256.504;114467168;Brazil; -2018-11-13T05:03:39Z;Júlio Cesar;1772.547;114635064;Brazil; -2018-11-13T04:51:48Z;Eduardo;566.3267;114663779;Brazil; -2018-11-13T04:45:33Z;Ana;3339.099;114711944;Brazil; -2018-11-13T04:21:18Z;Armando;2787.48;114680740;Brazil; -2018-11-13T04:11:45Z;Sandra;2005.19;115384326;Brazil; -2018-11-13T03:32:56Z;Armando;2805.944;114344755;Brazil; -2018-11-13T03:17:50Z;Júlio Cesar;3086.532;115178270;Brazil; -2018-11-13T03:01:34Z;Júlio Cesar;3079.369;115971781;Brazil; -2018-11-13T02:35:38Z;Sandra;2406.327;114274944;Brazil; -2018-11-13T01:46:00Z;Eduardo;2924.732;115501215;Brazil; -2018-11-13T01:00:42Z;Júlio Cesar;1059.319;116341955;Brazil; -2018-11-13T00:53:27Z;Júlio;469.5485;115808740;Brazil; -2018-11-13T00:45:28Z;Júlio;3501.999;114260142;Brazil; -2018-12-06T21:50:27Z;Ana;352.0382;114251309;Colombia; -2018-12-06T21:31:03Z;Eduardo;248.5324;115398234;Colombia; -2018-12-06T21:07:39Z;nathalia;114.064;115053432;Colombia; -2018-12-06T21:03:13Z;Júlio;6256.889;116280697;Colombia; -2018-12-06T20:49:12Z;Sandra;310.7893;114885324;Colombia; -2018-12-06T20:43:34Z;Armando;1534.191;114339592;Colombia; -2018-12-06T20:13:55Z;Júlio;5669.946;114785551;Colombia; -2018-12-06T19:59:08Z;Sandra;1986.292;114316787;Colombia; -2018-12-06T19:50:50Z;Sandra;2606.804;116150215;Colombia; -2018-12-06T19:43:23Z;Sandra;264.1802;114665579;Colombia; -2018-12-06T19:15:24Z;Júlio Cesar;2361.957;115436876;Colombia; -2018-12-06T19:10:09Z;Júlio Cesar;2864.804;115060265;Colombia; -2018-12-06T19:06:29Z;Nathália;7569.304;114850907;Colombia; -2018-12-06T18:50:04Z;Júlio Cesar;1081.016;115527998;Colombia; -2018-12-06T18:37:49Z;nathalia;838.3155;115662792;Colombia; -2018-12-06T17:47:24Z;nathalia;644.0639;115349538;Colombia; -2018-12-06T17:46:07Z;Eduardo;1052.402;115048566;Colombia; -2018-12-06T17:45:58Z;Ana;124.0503;114929518;Colombia; -2018-12-06T17:41:31Z;Júlio;1451.556;115001720;Colombia; -2018-12-06T17:30:41Z;nathalia;10255.2;115406530;Colombia; -2018-12-06T16:50:53Z;Ana;131.7833;115046182;Colombia; -2018-12-06T16:43:45Z;nathalia;3394.968;115992292;Colombia; -2018-12-06T16:24:10Z;Armando;1730.666;116350753;Colombia; -2018-12-06T16:14:04Z;Júlio Cesar;543.6743;115774409;Colombia; -2018-12-06T16:11:58Z;Eduardo;585.1767;115728010;Colombia; -2018-12-06T15:52:12Z;Ana;394.2519;116019377;Colombia; -2018-12-06T15:40:07Z;nathalia;934.803;114847481;Colombia; -2018-12-06T15:36:53Z;Júlio Cesar;3873.012;115783085;Colombia; -2018-12-06T14:52:39Z;Nathália;1741.853;115839709;Colombia; -2018-12-06T14:32:25Z;Armando;147.8771;115909767;Colombia; -2018-12-06T14:31:33Z;Eduardo;1209.771;114441628;Colombia; -2018-12-06T14:03:10Z;Júlio Cesar;1271.027;114739010;Colombia; -2018-12-06T13:58:52Z;Júlio Cesar;8006.17;114536452;Colombia; -2018-12-06T13:13:16Z;Eduardo;4648.406;114937472;Colombia; -2018-12-06T12:29:22Z;Júlio Cesar;8839.323;114615421;Colombia; -2018-12-06T12:28:56Z;Eduardo;710.3531;115306959;Colombia; -2018-12-06T12:12:46Z;Eduardo;785.187;114717451;Colombia; -2018-12-06T12:12:15Z;Sandra;3605.509;114237867;Colombia; -2018-12-06T10:14:42Z;Sandra;1198.851;116052994;Colombia; -2018-12-06T09:40:39Z;Sandra;1713.143;114369319;Colombia; -2018-12-06T08:49:30Z;Eduardo;2148.894;116139705;Colombia; -2018-12-06T08:30:33Z;nathalia;5121.444;114223272;Colombia; -2018-12-06T08:27:20Z;Júlio;646.8237;115755749;Colombia; -2018-12-06T08:20:22Z;Júlio;8496.389;114407078;Colombia; -2018-12-06T07:28:48Z;Nathália;2699.21;114530949;Colombia; -2018-12-06T06:29:48Z;Júlio;2188.688;114733277;Colombia; -2018-12-06T06:20:32Z;Júlio;8843.713;114329132;Colombia; -2018-12-06T05:53:24Z;Armando;1328.442;114826861;Colombia; -2018-12-06T05:45:20Z;Armando;7954.809;115914411;Colombia; -2018-12-06T05:38:15Z;Nathália;1920.194;115796177;Colombia; -2018-12-06T05:35:36Z;Ana;476.917;114840785;Colombia; -2018-12-06T05:33:58Z;Júlio Cesar;20.17318;116388482;Colombia; -2018-12-06T05:26:06Z;Armando;450.7138;115315185;Colombia; -2018-12-06T05:22:06Z;Júlio;107.233;114610699;Colombia; -2018-12-06T05:14:28Z;Eduardo;1013.54;114741701;Colombia; -2018-12-06T05:01:52Z;Eduardo;4612.831;114367849;Colombia; -2018-12-06T04:33:24Z;Nathália;4236.387;116380784;Colombia; -2018-12-06T04:32:22Z;Júlio Cesar;3209.694;115010874;Colombia; -2018-12-06T04:27:46Z;Ana;2664.661;114852163;Colombia; -2018-12-06T04:24:42Z;Eduardo;6354.662;115833157;Colombia; -2018-12-06T04:19:21Z;Armando;6534.203;115654617;Colombia; -2018-12-06T04:16:15Z;Armando;742.7524;115911826;Colombia; -2018-12-06T03:47:33Z;Nathália;635.5315;115255957;Colombia; -2018-12-06T03:24:59Z;Júlio Cesar;119.8659;114981593;Colombia; -2018-12-06T03:21:18Z;Júlio Cesar;1938.882;114574654;Colombia; -2018-12-06T03:19:50Z;Eduardo;866.2919;115846503;Colombia; -2018-12-06T02:55:30Z;Armando;699.093;114296565;Colombia; -2018-12-06T02:24:10Z;Eduardo;3443.923;114666522;Colombia; -2018-12-06T01:47:57Z;Armando;1182.663;114909599;Colombia; -2018-12-06T01:46:55Z;nathalia;86.10185;115365301;Colombia; -2018-12-06T01:43:35Z;Sandra;514.6662;115762840;Colombia; -2018-12-06T01:30:20Z;Eduardo;11351.88;115854282;Colombia; -2018-12-06T01:24:58Z;Armando;2989.231;115666452;Colombia; -2018-12-06T01:17:37Z;Júlio;2470.83;114686917;Colombia; -2018-12-06T01:07:26Z;nathalia;12302.18;115883390;Colombia; -2018-12-06T00:42:20Z;nathalia;897.4802;115743814;Colombia; -2018-12-06T00:40:46Z;nathalia;1422.723;116062815;Colombia; -2018-12-06T00:37:45Z;Júlio Cesar;3831.448;114540656;Colombia; -2018-12-06T00:22:11Z;Sandra;6106.687;116309582;Colombia; -2018-12-06T00:14:33Z;Júlio Cesar;2874.487;115292449;Colombia; -2018-12-05T23:37:30Z;nathalia;1137.883;114390977;Colombia; -2018-12-05T23:36:32Z;Nathália;261.9989;114581492;Colombia; -2018-12-05T23:29:09Z;Eduardo;3313.725;116191082;Colombia; -2018-12-05T23:26:30Z;Ana;4292.305;115001243;Colombia; -2018-12-05T23:23:03Z;Sandra;147.0341;115185525;Colombia; -2018-12-05T23:21:43Z;Ana;7061.143;114798614;Colombia; -2018-12-05T23:03:21Z;Nathália;127.6535;114933669;Colombia; -2018-12-05T22:52:43Z;Júlio;6449.397;115776422;Colombia; -2018-12-05T22:46:46Z;Nathália;933.5451;114878754;Colombia; -2018-12-05T22:42:25Z;Júlio Cesar;1172.233;114234689;Colombia; -2018-12-05T22:23:33Z;Nathália;3393.447;115594711;Colombia; -2018-12-05T22:06:08Z;Júlio Cesar;3529.42;114593220;Colombia; -2018-12-05T22:04:00Z;nathalia;72.6957;115851657;Colombia; -2018-12-05T21:57:57Z;nathalia;1530.671;116335918;Colombia; -2018-12-05T21:25:28Z;nathalia;1492.649;115841185;Colombia; -2018-12-05T20:56:52Z;Júlio;2890.046;115612615;Colombia; -2018-12-05T20:43:58Z;Júlio Cesar;603.4912;114752335;Colombia; -2018-12-05T20:36:37Z;Armando;4877.966;115803930;Colombia; -2018-12-05T20:24:52Z;Nathália;1983.953;115492905;Colombia; -2018-12-05T20:07:20Z;Nathália;145.4616;114451522;Colombia; -2018-12-05T19:56:39Z;nathalia;6001.424;114729154;Colombia; -2018-12-05T19:52:31Z;nathalia;5110.888;114983617;Colombia; -2018-12-05T19:40:59Z;Armando;7476.326;115120505;Colombia; -2018-12-05T19:17:57Z;Armando;3074.834;116334176;Colombia; -2018-12-05T18:56:43Z;Júlio Cesar;8062.597;114283492;Colombia; -2018-12-05T18:36:28Z;Júlio Cesar;5313.696;116394972;Colombia; -2018-12-05T18:33:46Z;Sandra;417.6529;114867075;Colombia; -2018-12-05T18:19:13Z;Sandra;135.2105;114476479;Colombia; -2018-12-05T18:12:33Z;Sandra;1620.14;114495100;Colombia; -2018-12-05T18:09:05Z;Ana;1055.463;115170078;Colombia; -2018-12-05T18:01:31Z;nathalia;2454.583;115400369;Colombia; -2018-12-05T17:57:46Z;Ana;1217.878;115363198;Colombia; -2018-12-05T17:49:24Z;Nathália;1336.967;115290507;Colombia; -2018-12-05T17:25:23Z;Sandra;3547.994;115523642;Colombia; -2018-12-05T17:12:19Z;Ana;766.9558;114462814;Colombia; -2018-12-05T16:59:39Z;Nathália;888.1748;114299219;Colombia; -2018-12-05T16:42:49Z;Sandra;1241.297;114517606;Colombia; -2018-12-05T16:35:46Z;Júlio;1153.081;116241008;Colombia; -2018-12-05T16:11:58Z;Nathália;345.7515;114983448;Colombia; -2018-12-05T15:34:22Z;Sandra;286.2946;115197577;Colombia; -2018-12-05T15:29:21Z;Eduardo;715.6516;116189316;Colombia; -2018-12-05T15:27:07Z;Armando;10554.32;114814060;Colombia; -2018-12-05T15:26:55Z;nathalia;8812.883;114876886;Colombia; -2018-12-05T15:12:40Z;nathalia;1657.219;114200025;Colombia; -2018-12-05T15:09:34Z;Armando;2517.129;115513494;Colombia; -2018-12-05T15:01:02Z;Nathália;3333.999;114210149;Colombia; -2018-12-05T14:51:22Z;Armando;6.144416;114456620;Colombia; -2018-12-05T14:31:21Z;Sandra;1056.895;115662008;Colombia; -2018-12-05T14:28:29Z;Armando;4508.5;115062429;Colombia; -2018-12-05T14:11:38Z;Sandra;1481.401;115393759;Colombia; -2018-12-05T14:09:26Z;Sandra;3616.073;114359850;Colombia; -2018-12-05T13:28:04Z;Armando;10772.18;116264392;Colombia; -2018-12-05T13:22:12Z;Sandra;1658.981;114244164;Colombia; -2018-12-05T12:42:57Z;Nathália;2768.973;116386319;Colombia; -2018-12-05T12:04:37Z;Júlio;7006.546;115657894;Colombia; -2018-12-05T11:39:31Z;Eduardo;851.6789;116389062;Colombia; -2018-12-05T11:37:39Z;Nathália;1542.43;114992095;Colombia; -2018-12-05T11:32:58Z;Eduardo;1779.206;116022381;Colombia; -2018-12-05T11:29:04Z;Armando;2955.147;114454114;Colombia; -2018-12-05T11:22:41Z;Armando;3127.933;115395029;Colombia; -2018-12-05T10:57:57Z;Ana;4503.278;115189697;Colombia; -2018-12-05T10:57:14Z;Eduardo;1826.217;115622738;Colombia; -2018-12-05T10:29:22Z;Júlio Cesar;4006.381;114539380;Colombia; -2018-12-05T10:03:13Z;Júlio;938.8383;114696529;Colombia; -2018-12-05T09:41:52Z;Ana;5435.514;116193056;Colombia; -2018-12-05T09:20:19Z;Nathália;6007.118;114917267;Colombia; -2018-12-05T08:30:37Z;Sandra;42.40469;114670550;Colombia; -2018-12-05T08:21:27Z;nathalia;297.921;116107521;Colombia; -2018-12-05T08:19:43Z;Eduardo;3903.344;116047225;Colombia; -2018-12-05T07:24:40Z;Júlio Cesar;9938.514;114934169;Colombia; -2018-12-05T07:20:17Z;Ana;643.0315;115438481;Colombia; -2018-12-05T07:04:19Z;nathalia;967.8232;115464987;Colombia; -2018-12-05T06:37:58Z;Júlio Cesar;11.63983;115901848;Colombia; -2018-12-05T06:21:41Z;Nathália;290.4098;115844293;Colombia; -2018-12-05T06:21:01Z;nathalia;10557.37;114297304;Colombia; -2018-12-05T06:16:39Z;Nathália;6452.358;115132463;Colombia; -2018-12-05T06:05:42Z;Júlio Cesar;171.6003;115193692;Colombia; -2018-12-05T05:57:19Z;Júlio;8295.743;115702840;Colombia; -2018-12-05T05:54:15Z;nathalia;1325.179;114698976;Colombia; -2018-12-05T05:48:41Z;Nathália;474.7355;116006377;Colombia; -2018-12-05T05:30:27Z;nathalia;4981.093;115729669;Colombia; -2018-12-05T05:19:03Z;Nathália;13956.24;116274264;Colombia; -2018-12-05T04:12:49Z;Armando;108.7387;114959624;Colombia; -2018-12-05T03:51:26Z;Júlio;7081.167;115608338;Colombia; -2018-12-05T03:49:20Z;Nathália;2367.338;114233514;Colombia; -2018-12-05T03:37:56Z;Eduardo;1852.44;115971994;Colombia; -2018-12-05T03:29:51Z;Eduardo;4763.674;116088458;Colombia; -2018-12-05T03:29:07Z;Armando;2033.092;114683012;Colombia; -2018-12-05T03:12:35Z;Sandra;267.6736;115343496;Colombia; -2018-12-05T03:12:22Z;Armando;740.682;115134095;Colombia; -2018-12-05T02:41:55Z;Júlio Cesar;7404.849;115585567;Colombia; -2018-12-05T02:37:54Z;Sandra;6802.429;114277016;Colombia; -2018-12-05T02:12:19Z;Sandra;2458.737;114217164;Colombia; -2018-12-05T02:03:37Z;Sandra;3190.89;116083565;Colombia; -2018-12-05T01:48:59Z;Eduardo;707.3938;115902163;Colombia; -2018-12-05T01:45:11Z;Júlio;903.863;115118447;Colombia; -2018-12-05T01:34:31Z;Eduardo;11258.59;116242511;Colombia; -2018-12-05T01:32:05Z;Sandra;992.827;115388947;Colombia; -2018-12-05T01:31:06Z;Sandra;9810.116;116292600;Colombia; -2018-12-05T01:30:55Z;nathalia;87.11205;115815126;Colombia; -2018-12-05T00:52:30Z;Júlio;2332.884;115628450;Colombia; -2018-12-04T23:51:56Z;Ana;6312.647;114687850;Colombia; -2018-12-04T23:44:22Z;Sandra;7388.355;115361272;Colombia; -2018-12-04T23:41:51Z;nathalia;1848.701;115640651;Colombia; -2018-12-04T23:38:59Z;Nathália;405.6002;114839317;Colombia; -2018-12-04T23:36:42Z;Júlio Cesar;585.8538;114483974;Colombia; -2018-12-04T23:24:38Z;Eduardo;5264.135;115549281;Colombia; -2018-12-04T22:43:56Z;Ana;1843.348;115435124;Colombia; -2018-12-04T21:09:39Z;Júlio Cesar;9765.968;114882858;Colombia; -2018-12-04T21:06:45Z;Nathália;1094.645;115288089;Colombia; -2018-12-04T20:51:07Z;Ana;448.8608;114631878;Colombia; -2018-12-04T20:22:38Z;Sandra;5879.388;116071556;Colombia; -2018-12-04T20:09:32Z;Júlio;2271.257;115327890;Colombia; -2018-12-04T19:34:12Z;Eduardo;1519.755;114527680;Colombia; -2018-12-04T19:33:39Z;Eduardo;5224.163;114877518;Colombia; -2018-12-04T19:25:58Z;Sandra;2902.053;115103032;Colombia; -2018-12-04T19:16:31Z;Júlio Cesar;295.1722;114540854;Colombia; -2018-12-04T19:09:44Z;Ana;4471.535;116235029;Colombia; -2018-12-04T19:07:17Z;Sandra;951.6965;115706412;Colombia; -2018-12-04T18:56:13Z;nathalia;561.6748;115091218;Colombia; -2018-12-04T18:49:26Z;Ana;1932.048;116160832;Colombia; -2018-12-04T18:26:41Z;Ana;224.6032;114487801;Colombia; -2018-12-04T18:14:45Z;Armando;3708.051;115234185;Colombia; -2018-12-04T17:40:19Z;Eduardo;1809.104;114846716;Colombia; -2018-12-04T17:25:02Z;Armando;5419.401;116034710;Colombia; -2018-12-04T17:16:31Z;Eduardo;1439.263;116006076;Colombia; -2018-12-04T17:02:26Z;nathalia;1714.173;115380504;Colombia; -2018-12-04T16:45:51Z;Armando;7229.156;116261391;Colombia; -2018-12-04T16:33:02Z;Ana;6754.906;115192060;Colombia; -2018-12-04T16:08:49Z;Armando;1251.754;115689120;Colombia; -2018-12-04T15:03:40Z;Júlio;471.7474;116280601;Colombia; -2018-12-04T14:14:26Z;Nathália;13133.08;116317973;Colombia; -2018-12-04T13:56:32Z;Armando;6864.954;114778303;Colombia; -2018-12-04T13:53:59Z;Júlio Cesar;4193.615;115085283;Colombia; -2018-12-04T13:47:41Z;nathalia;452.6504;116288397;Colombia; -2018-12-04T13:35:36Z;Armando;444.9529;116121146;Colombia; -2018-12-04T13:09:49Z;Eduardo;13.60266;114848153;Colombia; -2018-12-04T12:54:26Z;Júlio Cesar;125.541;115556354;Colombia; -2018-12-04T12:39:01Z;Júlio;3183.596;114276702;Colombia; -2018-12-04T12:39:00Z;Armando;11025.24;115511161;Colombia; -2018-12-04T12:35:02Z;Sandra;5983.859;114456452;Colombia; -2018-12-04T12:25:49Z;Armando;1891.105;115618863;Colombia; -2018-12-04T12:21:41Z;Sandra;456.8404;114526042;Colombia; -2018-12-04T12:21:38Z;Eduardo;823.8576;116093937;Colombia; -2018-12-04T12:12:13Z;Júlio Cesar;1503.408;114778206;Colombia; -2018-12-04T12:06:08Z;nathalia;1060.119;116279926;Colombia; -2018-12-04T12:04:58Z;Eduardo;1363.948;115532351;Colombia; -2018-12-04T12:03:22Z;Ana;1395.814;114789601;Colombia; -2018-12-04T11:14:17Z;Júlio;5339.843;116263532;Colombia; -2018-12-04T11:03:15Z;Eduardo;248.7126;115717973;Colombia; -2018-12-04T11:03:12Z;nathalia;2572.997;115848398;Colombia; -2018-12-04T10:41:47Z;Ana;2043.036;115071557;Colombia; -2018-12-04T10:03:42Z;Armando;4201.983;115878126;Colombia; -2018-12-04T09:50:18Z;Nathália;7855.888;116095727;Colombia; -2018-12-04T09:20:52Z;Armando;1003.186;114780700;Colombia; -2018-12-04T09:18:46Z;Eduardo;4455.148;115822829;Colombia; -2018-12-04T09:18:23Z;Sandra;1293.292;114374485;Colombia; -2018-12-04T08:51:48Z;Sandra;179.6342;114327246;Colombia; -2018-12-04T08:36:57Z;Eduardo;7274.341;116007927;Colombia; -2018-12-04T08:24:17Z;Eduardo;2089.612;115705606;Colombia; -2018-12-04T07:28:49Z;Júlio;6181.772;116057935;Colombia; -2018-12-04T07:26:02Z;Eduardo;5126.067;115553960;Colombia; -2018-12-04T07:21:07Z;Armando;40.5392;115387714;Colombia; -2018-12-04T07:02:57Z;Eduardo;443.1848;114788017;Colombia; -2018-12-04T07:02:24Z;Júlio;1147.535;115994535;Colombia; -2018-12-04T07:02:19Z;Armando;9901.588;115702927;Colombia; -2018-12-04T07:00:40Z;Júlio;142.6017;115230600;Colombia; -2018-12-04T06:48:10Z;Júlio Cesar;1152.286;115797172;Colombia; -2018-12-04T06:14:32Z;Júlio Cesar;6638.84;114458150;Colombia; -2018-12-04T05:54:55Z;Armando;438.2616;114761415;Colombia; -2018-12-04T05:43:12Z;nathalia;33.07619;116361888;Colombia; -2018-12-04T05:36:24Z;Ana;8987.063;115738081;Colombia; -2018-12-04T05:34:21Z;Sandra;4766.366;116258118;Colombia; -2018-12-04T05:13:05Z;Júlio Cesar;623.656;115538962;Colombia; -2018-12-04T05:02:29Z;Sandra;7862.851;115469408;Colombia; -2018-12-04T04:58:48Z;Eduardo;391.7075;115556383;Colombia; -2018-12-04T04:28:54Z;nathalia;2806.727;114518840;Colombia; -2018-12-04T03:36:53Z;Nathália;181.1053;116156537;Colombia; -2018-12-04T03:29:23Z;Ana;2834.939;116019487;Colombia; -2018-12-04T03:21:04Z;Nathália;7632.245;114910779;Colombia; -2018-12-04T03:02:30Z;Armando;1182.568;115076157;Colombia; -2018-12-04T02:47:17Z;nathalia;208.2191;115754128;Colombia; -2018-12-04T02:16:08Z;Armando;1127.937;115127422;Colombia; -2018-12-04T02:09:40Z;Sandra;37.30656;115652951;Colombia; -2018-12-04T02:00:54Z;Júlio Cesar;999.3613;115970626;Colombia; -2018-12-04T01:28:41Z;Eduardo;2916.406;114323042;Colombia; -2018-12-04T01:17:37Z;Armando;298.1681;114821543;Colombia; -2018-12-04T01:17:00Z;Nathália;3860.285;115710111;Colombia; -2018-12-04T01:07:31Z;Júlio Cesar;3143.124;114270286;Colombia; -2018-12-04T00:32:43Z;nathalia;8898.145;114499973;Colombia; -2018-12-04T00:26:03Z;Armando;1751.417;115969234;Colombia; -2018-12-04T00:12:26Z;nathalia;1756.615;115015850;Colombia; -2018-12-04T00:07:22Z;Nathália;9326.83;115998377;Colombia; -2018-12-03T23:59:07Z;Sandra;1914.564;115539153;Colombia; -2018-12-03T23:45:01Z;Sandra;5133.147;115391725;Colombia; -2018-12-03T23:22:37Z;nathalia;4783.675;115682712;Colombia; -2018-12-03T23:11:54Z;Júlio;4944.98;115012425;Colombia; -2018-12-03T22:53:36Z;Sandra;152.7087;114477545;Colombia; -2018-12-03T22:37:46Z;Júlio;692.1936;115523087;Colombia; -2018-12-03T22:31:50Z;Nathália;4897.928;116246967;Colombia; -2018-12-03T22:26:10Z;Júlio Cesar;450.0549;115505567;Colombia; -2018-12-03T22:16:45Z;Eduardo;4179.729;115470178;Colombia; -2018-12-03T21:47:20Z;Nathália;73.37863;114518677;Colombia; -2018-12-03T20:35:24Z;Júlio Cesar;1073.547;115807745;Colombia; -2018-12-03T20:14:48Z;nathalia;1355.757;114879982;Colombia; -2018-12-03T19:56:31Z;Júlio Cesar;86.44113;115548303;Colombia; -2018-12-03T19:26:41Z;Eduardo;713.1629;114259716;Colombia; -2018-12-03T19:17:18Z;Júlio Cesar;2568.903;116322344;Colombia; -2018-12-03T19:13:23Z;Nathália;940.5996;115393424;Colombia; -2018-12-03T19:03:29Z;nathalia;824.3378;116339141;Colombia; -2018-12-03T18:18:06Z;Nathália;647.9645;115532290;Colombia; -2018-12-03T17:59:57Z;Júlio;8215.2;115866514;Colombia; -2018-12-03T17:42:51Z;Eduardo;5818.004;114463470;Colombia; -2018-12-03T17:36:50Z;nathalia;5.34816;114645072;Colombia; -2018-12-03T17:23:02Z;Júlio Cesar;509.6135;114571481;Colombia; -2018-12-03T17:20:59Z;Sandra;192.0825;116063133;Colombia; -2018-12-03T16:52:55Z;Júlio Cesar;3760.094;114666298;Colombia; -2018-12-03T15:49:28Z;Eduardo;2998.279;115511277;Colombia; -2018-12-03T15:48:57Z;Ana;261.923;115998676;Colombia; -2018-12-03T15:22:29Z;Sandra;4000.425;115193129;Colombia; -2018-12-03T15:10:20Z;Ana;852.9988;115992369;Colombia; -2018-12-03T14:59:58Z;Ana;3713.609;116295979;Colombia; -2018-12-03T14:45:14Z;Sandra;0.8746537;114953149;Colombia; -2018-12-03T14:40:02Z;Eduardo;8089.291;114830486;Colombia; -2018-12-03T13:57:16Z;nathalia;4276.886;114706341;Colombia; -2018-12-03T13:46:25Z;nathalia;426.0702;116298952;Colombia; -2018-12-03T13:02:43Z;nathalia;44.85968;114431530;Colombia; -2018-12-03T13:01:44Z;Armando;2882.147;115439362;Colombia; -2018-12-03T12:58:44Z;Eduardo;403.2663;116226391;Colombia; -2018-12-03T12:45:26Z;Eduardo;506.624;116213480;Colombia; -2018-12-03T12:42:12Z;Júlio;684.6861;115460127;Colombia; -2018-12-03T12:33:27Z;Nathália;3540.922;115048490;Colombia; -2018-12-03T12:28:11Z;Júlio;733.4138;114979005;Colombia; -2018-12-03T12:03:57Z;Júlio;643.2357;114732244;Colombia; -2018-12-03T11:30:53Z;Júlio;727.5952;114987456;Colombia; -2018-12-03T11:07:58Z;Sandra;4241.834;114466180;Colombia; -2018-12-03T10:49:46Z;nathalia;916.1154;114301543;Colombia; -2018-12-03T10:38:34Z;nathalia;7504.546;115579496;Colombia; -2018-12-03T10:34:13Z;Júlio Cesar;720.6441;114760588;Colombia; -2018-12-03T10:30:34Z;Armando;11540.92;114952115;Colombia; -2018-12-03T09:42:58Z;nathalia;4148.986;114574071;Colombia; -2018-12-03T09:18:05Z;Eduardo;478.7289;115775873;Colombia; -2018-12-03T09:02:44Z;Armando;3551.943;116158194;Colombia; -2018-12-03T08:56:44Z;Eduardo;6110.492;116167284;Colombia; -2018-12-03T08:55:46Z;nathalia;4394.581;116000364;Colombia; -2018-12-03T08:44:32Z;Júlio Cesar;1337.048;115479495;Colombia; -2018-12-03T08:26:50Z;Sandra;10543.54;114763979;Colombia; -2018-12-03T08:23:31Z;Eduardo;7353.148;115758743;Colombia; -2018-12-03T08:01:11Z;Nathália;259.9096;115905694;Colombia; -2018-12-03T07:57:17Z;Armando;1678.628;116283890;Colombia; -2018-12-03T07:57:14Z;Sandra;138.4677;115117501;Colombia; -2018-12-03T07:49:55Z;Eduardo;2201.145;114797361;Colombia; -2018-12-03T07:01:46Z;nathalia;11662.35;115049405;Colombia; -2018-12-03T06:51:04Z;Júlio;4063.087;116196423;Colombia; -2018-12-03T06:17:43Z;Ana;360.1651;115749219;Colombia; -2018-12-03T05:47:26Z;Nathália;10899.84;116168037;Colombia; -2018-12-03T05:35:42Z;Eduardo;1147.715;115022228;Colombia; -2018-12-03T05:34:59Z;Ana;479.8077;115179434;Colombia; -2018-12-03T05:27:51Z;Júlio Cesar;8.512549;115562156;Colombia; -2018-12-03T05:21:41Z;Sandra;416.5673;115008488;Colombia; -2018-12-03T04:48:52Z;Nathália;2488.457;114929666;Colombia; -2018-12-03T04:41:18Z;Júlio Cesar;1837.476;114733475;Colombia; -2018-12-03T04:31:45Z;Eduardo;1063.22;115694805;Colombia; -2018-12-03T04:30:14Z;Júlio Cesar;287.9909;114272277;Colombia; -2018-12-03T04:29:33Z;Nathália;5737.447;115688950;Colombia; -2018-12-03T04:27:28Z;Ana;7354.097;115190086;Colombia; -2018-12-03T03:16:06Z;Ana;588.7466;115646744;Colombia; -2018-12-03T03:15:56Z;nathalia;143.7585;115919197;Colombia; -2018-12-03T02:55:49Z;Júlio;711.5165;115867850;Colombia; -2018-12-03T02:47:45Z;Júlio Cesar;751.4166;115091943;Colombia; -2018-12-03T02:29:14Z;Eduardo;1860.783;114626488;Colombia; -2018-12-03T02:21:59Z;nathalia;2746.029;115976993;Colombia; -2018-12-03T02:17:04Z;Eduardo;2863.385;115770732;Colombia; -2018-12-03T02:13:37Z;Sandra;210.7472;114833155;Colombia; -2018-12-03T01:51:48Z;Eduardo;2015.826;115600906;Colombia; -2018-12-03T01:18:25Z;nathalia;10837.09;115807852;Colombia; -2018-12-03T01:01:11Z;Armando;449.9387;114899552;Colombia; -2018-12-03T00:46:17Z;Ana;2060.88;116067624;Colombia; -2018-12-03T00:33:40Z;Eduardo;5424.131;115825530;Colombia; -2018-12-03T00:24:45Z;nathalia;753.0523;115563624;Colombia; -2018-12-03T00:18:57Z;nathalia;2350.314;114415977;Colombia; -2018-12-02T23:14:44Z;Júlio Cesar;631.863;114549248;Colombia; -2018-12-02T22:59:55Z;Ana;1506.253;115675201;Colombia; -2018-12-02T22:44:25Z;Eduardo;4219.735;114759918;Colombia; -2018-12-02T22:24:23Z;Sandra;1964.636;115550087;Colombia; -2018-12-02T22:22:07Z;Nathália;5055.364;115767608;Colombia; -2018-12-02T22:08:51Z;Júlio Cesar;8048.255;115711715;Colombia; -2018-12-02T21:46:39Z;Júlio Cesar;694.6389;114698171;Colombia; -2018-12-02T21:19:30Z;Júlio Cesar;9618.458;116014966;Colombia; -2018-12-02T21:02:40Z;Nathália;389.933;115056239;Colombia; -2018-12-02T20:56:21Z;Ana;2962.52;115020003;Colombia; -2018-12-02T20:48:52Z;Sandra;155.7232;115323065;Colombia; -2018-12-02T20:35:25Z;Ana;3427.598;115091255;Colombia; -2018-12-02T20:08:21Z;Armando;446.6944;115228012;Colombia; -2018-12-02T19:15:25Z;Ana;7836.039;116279746;Colombia; -2018-12-02T18:30:09Z;Armando;1414.177;115911477;Colombia; -2018-12-02T18:17:04Z;Júlio;5864.798;115681746;Colombia; -2018-12-02T18:15:42Z;Armando;1343.403;115617774;Colombia; -2018-12-02T17:53:38Z;Sandra;259.0799;115518806;Colombia; -2018-12-02T17:01:56Z;Ana;1340.889;116370418;Colombia; -2018-12-02T16:51:01Z;Nathália;514.9653;114773629;Colombia; -2018-12-02T16:34:52Z;Júlio;3599.533;114705792;Colombia; -2018-12-02T16:23:31Z;Eduardo;3144.66;114451668;Colombia; -2018-12-02T16:07:44Z;nathalia;103.4637;116236850;Colombia; -2018-12-02T15:47:37Z;Sandra;2126.951;115223930;Colombia; -2018-12-02T15:37:43Z;Júlio;4280.023;115510547;Colombia; -2018-12-02T15:28:34Z;nathalia;6271.748;116370131;Colombia; -2018-12-02T15:23:02Z;Armando;6372.125;114683545;Colombia; -2018-12-02T14:38:40Z;Júlio Cesar;7542.591;116289266;Colombia; -2018-12-02T14:34:20Z;Nathália;1060.95;114978944;Colombia; -2018-12-02T14:30:18Z;Júlio Cesar;2382.397;114891095;Colombia; -2018-12-02T14:15:22Z;Júlio;4713.43;115083076;Colombia; -2018-12-02T14:13:51Z;Armando;2726.325;115445246;Colombia; -2018-12-02T14:04:54Z;nathalia;8764.707;115531113;Colombia; -2018-12-02T13:30:33Z;Eduardo;2442.603;114879265;Colombia; -2018-12-02T13:16:51Z;Armando;288.7171;115767421;Colombia; -2018-12-02T13:02:47Z;Nathália;10535.8;115733081;Colombia; -2018-12-02T12:24:41Z;Ana;8430.813;114285503;Colombia; -2018-12-02T12:02:11Z;Eduardo;509.475;114672065;Colombia; -2018-12-02T11:50:02Z;Ana;11552.22;116063229;Colombia; -2018-12-02T11:42:43Z;Armando;3843.941;116281790;Colombia; -2018-12-02T11:35:09Z;Eduardo;3132.776;116080929;Colombia; -2018-12-02T11:21:52Z;nathalia;1500.139;114223816;Colombia; -2018-12-02T11:07:21Z;Sandra;4299.738;114873365;Colombia; -2018-12-02T10:54:26Z;Júlio;501.1319;116054455;Colombia; -2018-12-02T10:49:01Z;Sandra;338.664;114254851;Colombia; -2018-12-02T10:44:57Z;nathalia;339.3922;116128667;Colombia; -2018-12-02T10:32:16Z;Armando;3527.724;115607854;Colombia; -2018-12-02T10:24:55Z;Júlio Cesar;785.434;114747197;Colombia; -2018-12-02T10:16:46Z;Eduardo;947.1626;116178842;Colombia; -2018-12-02T09:55:45Z;Júlio;5161.43;115272866;Colombia; -2018-12-02T09:00:45Z;Sandra;627.6138;115686654;Colombia; -2018-12-02T08:56:51Z;Armando;5047.675;114341230;Colombia; -2018-12-02T08:47:45Z;Júlio Cesar;2419.109;115306564;Colombia; -2018-12-02T08:36:25Z;Eduardo;3.907456;115604500;Colombia; -2018-12-02T08:27:51Z;Júlio Cesar;1955.466;115191357;Colombia; -2018-12-02T08:15:58Z;Sandra;1749.126;114371720;Colombia; -2018-12-02T07:11:13Z;Armando;3458.172;115383388;Colombia; -2018-12-02T06:47:16Z;nathalia;1322.392;114753928;Colombia; -2018-12-02T06:44:41Z;nathalia;2625.35;115039638;Colombia; -2018-12-02T06:43:29Z;Nathália;2760.997;115367981;Colombia; -2018-12-02T06:25:28Z;Armando;1533.002;114467948;Colombia; -2018-12-02T05:51:27Z;Nathália;3894.054;116265171;Colombia; -2018-12-02T05:31:37Z;Júlio Cesar;1376.07;116327753;Colombia; -2018-12-02T05:30:57Z;Nathália;2644.05;114448764;Colombia; -2018-12-02T05:02:47Z;Júlio Cesar;46.98931;116337692;Colombia; -2018-12-02T04:57:21Z;Júlio Cesar;1368.402;114380200;Colombia; -2018-12-02T04:45:21Z;Júlio;7773.911;114414143;Colombia; -2018-12-02T04:41:16Z;Júlio Cesar;9602.25;114886237;Colombia; -2018-12-02T04:33:54Z;Júlio Cesar;2342.321;114440758;Colombia; -2018-12-02T04:25:08Z;Nathália;685.2515;114680237;Colombia; -2018-12-02T04:08:02Z;Júlio;6209.286;114719653;Colombia; -2018-12-02T04:02:50Z;Eduardo;53.87137;114243341;Colombia; -2018-12-02T04:00:02Z;Ana;2286.779;114786590;Colombia; -2018-12-02T03:45:21Z;nathalia;6602.411;114989256;Colombia; -2018-12-02T03:44:13Z;Eduardo;496.7825;116131615;Colombia; -2018-12-02T03:28:09Z;Armando;2793.289;115309715;Colombia; -2018-12-02T02:57:23Z;nathalia;11387.22;114492149;Colombia; -2018-12-02T02:16:02Z;Armando;2399.252;115644666;Colombia; -2018-12-02T02:01:32Z;Sandra;9693.395;114450009;Colombia; -2018-12-02T01:57:47Z;Armando;1318.133;115746251;Colombia; -2018-12-02T01:55:56Z;Júlio;3137.841;114807422;Colombia; -2018-12-02T01:54:48Z;Armando;2829.743;114390467;Colombia; -2018-12-02T01:53:46Z;nathalia;9227.423;115132585;Colombia; -2018-12-02T01:36:48Z;Sandra;898.0975;114946068;Colombia; -2018-12-02T01:31:17Z;Eduardo;823.0326;114755959;Colombia; -2018-12-02T01:22:24Z;Armando;2096.944;115077180;Colombia; -2018-12-02T01:19:34Z;nathalia;1566.627;116323667;Colombia; -2018-12-02T00:59:18Z;nathalia;49.37912;116077761;Colombia; -2018-12-02T00:49:54Z;Nathália;2533.279;115963677;Colombia; -2018-12-02T00:30:31Z;Eduardo;831.7154;114322786;Colombia; -2018-12-02T00:17:10Z;Sandra;2957.148;115338118;Colombia; -2018-12-01T23:58:31Z;Sandra;8376.758;115648204;Colombia; -2018-12-01T23:57:02Z;Nathália;2226.412;115001749;Colombia; -2018-12-01T23:32:46Z;Júlio;849.963;116212991;Colombia; -2018-12-01T23:18:22Z;Nathália;4338.981;114748231;Colombia; -2018-12-01T22:40:37Z;Júlio;2396.515;115375842;Colombia; -2018-12-01T22:21:36Z;Júlio Cesar;5507.777;116027024;Colombia; -2018-12-01T21:40:39Z;Nathália;4272.548;115281845;Colombia; -2018-12-01T21:34:42Z;Ana;7392.735;115054343;Colombia; -2018-12-01T21:21:00Z;nathalia;6872.071;116365303;Colombia; -2018-12-01T21:13:08Z;Júlio Cesar;113.779;114249236;Colombia; -2018-12-01T21:02:15Z;nathalia;28.57263;114518884;Colombia; -2018-12-01T20:59:33Z;Júlio;4492.244;115437364;Colombia; -2018-12-01T20:57:45Z;nathalia;1050.743;116104821;Colombia; -2018-12-01T20:55:35Z;Júlio;293.6953;115995447;Colombia; -2018-12-01T20:47:35Z;Júlio Cesar;158.4772;114646380;Colombia; -2018-12-01T20:42:06Z;Sandra;2602.772;115486623;Colombia; -2018-12-01T20:27:14Z;Armando;524.2213;114302719;Colombia; -2018-12-01T19:59:19Z;Armando;2702.89;114280785;Colombia; -2018-12-01T19:44:35Z;Armando;805.2046;116281668;Colombia; -2018-12-01T19:43:21Z;Armando;1776.857;116244781;Colombia; -2018-12-01T19:37:04Z;Júlio Cesar;990.5703;116201312;Colombia; -2018-12-01T19:23:56Z;Ana;4447.533;114864801;Colombia; -2018-12-01T18:58:38Z;Sandra;443.4071;115063291;Colombia; -2018-12-01T18:17:31Z;Júlio Cesar;4999.799;114423594;Colombia; -2018-12-01T18:03:12Z;Júlio;2510.605;115177577;Colombia; -2018-12-01T17:53:06Z;Júlio Cesar;9313.869;115941388;Colombia; -2018-12-01T17:32:28Z;Ana;1037.192;114247786;Colombia; -2018-12-01T16:52:02Z;nathalia;14417.42;115041604;Colombia; -2018-12-01T16:44:23Z;Ana;754.4697;114711985;Colombia; -2018-12-01T16:15:51Z;Júlio Cesar;9079.898;115488876;Colombia; -2018-12-01T16:01:48Z;nathalia;7854.91;115424489;Colombia; -2018-12-01T15:35:48Z;Júlio;579.076;114908608;Colombia; -2018-12-01T15:10:18Z;Sandra;9422.95;116185451;Colombia; -2018-12-01T14:26:10Z;Júlio Cesar;3398.224;115401010;Colombia; -2018-12-01T14:16:08Z;Sandra;8288.952;115780584;Colombia; -2018-12-01T14:10:10Z;Ana;4701.073;114963082;Colombia; -2018-12-01T13:13:04Z;Sandra;2505.092;115502846;Colombia; -2018-12-01T12:51:23Z;Sandra;624.5817;114473991;Colombia; -2018-12-01T12:34:25Z;Júlio Cesar;5644.798;116157031;Colombia; -2018-12-01T12:21:18Z;Júlio;41.89189;115409941;Colombia; -2018-12-01T11:56:08Z;Eduardo;1705.3;115546959;Colombia; -2018-12-01T11:31:19Z;nathalia;2569.639;115458194;Colombia; -2018-12-01T11:23:52Z;Júlio Cesar;313.1059;114803023;Colombia; -2018-12-01T11:21:01Z;Ana;1830.842;115075645;Colombia; -2018-12-01T10:41:14Z;Nathália;440.6855;116025744;Colombia; -2018-12-01T10:16:22Z;nathalia;747.0106;116161252;Colombia; -2018-12-01T10:13:04Z;Júlio Cesar;1410.707;114654177;Colombia; -2018-12-01T09:57:47Z;Eduardo;11752.67;115538809;Colombia; -2018-12-01T09:52:54Z;nathalia;3690.59;115372797;Colombia; -2018-12-01T09:48:51Z;Ana;3457.751;115098451;Colombia; -2018-12-01T09:47:32Z;Júlio Cesar;8955.162;114527480;Colombia; -2018-12-01T09:22:20Z;Júlio;886.553;115590383;Colombia; -2018-12-01T09:13:00Z;Júlio Cesar;3296.753;115693045;Colombia; -2018-12-01T09:08:38Z;Ana;31.68253;115830725;Colombia; -2018-12-01T08:56:12Z;Ana;4335.527;115076433;Colombia; -2018-12-01T08:53:59Z;Ana;2153.882;115669443;Colombia; -2018-12-01T08:15:06Z;Sandra;471.0402;115225366;Colombia; -2018-12-01T07:48:27Z;Júlio Cesar;908.7495;115000592;Colombia; -2018-12-01T07:21:14Z;Júlio;2147.155;114595413;Colombia; -2018-12-01T07:20:23Z;Júlio Cesar;4052.615;115523617;Colombia; -2018-12-01T07:11:36Z;Nathália;4713.664;116393982;Colombia; -2018-12-01T07:03:54Z;Júlio Cesar;2339.542;116299043;Colombia; -2018-12-01T06:56:58Z;Nathália;1945.554;114929333;Colombia; -2018-12-01T06:41:08Z;Júlio;5533.725;115112014;Colombia; -2018-12-01T06:33:47Z;nathalia;290.3275;114753618;Colombia; -2018-12-01T06:14:33Z;Júlio;6159.488;115553400;Colombia; -2018-12-01T05:48:51Z;Sandra;5615.611;115112202;Colombia; -2018-12-01T05:44:34Z;Ana;2216.606;115876473;Colombia; -2018-12-01T05:35:46Z;nathalia;2600.186;116269717;Colombia; -2018-12-01T05:17:57Z;Nathália;3256.773;115464852;Colombia; -2018-12-01T05:15:44Z;Júlio;2338.573;115166017;Colombia; -2018-12-01T04:54:25Z;Sandra;3833.976;115810433;Colombia; -2018-12-01T04:53:12Z;Júlio;607.4401;114330635;Colombia; -2018-12-01T03:57:45Z;Sandra;563.3674;116347037;Colombia; -2018-12-01T03:47:31Z;Ana;2879.669;115202116;Colombia; -2018-12-01T03:43:50Z;Ana;9368.432;115606148;Colombia; -2018-12-01T03:43:38Z;Ana;2247.706;116022316;Colombia; -2018-12-01T03:22:00Z;Ana;2877.574;114618870;Colombia; -2018-12-01T03:13:26Z;Armando;6021.852;114823805;Colombia; -2018-12-01T02:59:30Z;Nathália;8076.596;114257172;Colombia; -2018-12-01T02:56:46Z;nathalia;1627.925;115114993;Colombia; -2018-12-01T02:54:00Z;Júlio;502.7024;115347927;Colombia; -2018-12-01T02:45:33Z;Sandra;1663.569;116073364;Colombia; -2018-12-01T02:24:00Z;Nathália;5074.343;115170022;Colombia; -2018-12-01T02:19:57Z;Eduardo;6470.276;115027233;Colombia; -2018-12-01T02:19:54Z;Sandra;3684.781;114790712;Colombia; -2018-12-01T01:44:48Z;Armando;2999.014;114573270;Colombia; -2018-12-01T01:38:04Z;Júlio Cesar;2802.917;114601659;Colombia; -2018-12-01T01:31:05Z;Armando;4213.598;114355367;Colombia; -2018-12-01T01:29:42Z;nathalia;24.62318;115566111;Colombia; -2018-12-01T01:04:31Z;Armando;116.9062;115999788;Colombia; -2018-12-01T00:34:42Z;Armando;6990.7;116334349;Colombia; -2018-12-01T00:30:11Z;Ana;106.6841;116229237;Colombia; -2018-12-01T00:17:16Z;Eduardo;553.8004;115364779;Colombia; -2018-12-01T00:09:55Z;nathalia;1804.221;115763229;Colombia; -2018-11-30T23:46:14Z;nathalia;2865.206;115442323;Colombia; -2018-11-30T23:37:40Z;nathalia;1875.025;116371169;Colombia; -2018-11-30T23:30:45Z;Ana;1548.714;114520565;Colombia; -2018-11-30T23:13:14Z;Nathália;631.4383;114625504;Colombia; -2018-11-30T23:05:27Z;Júlio;0.7078436;114436170;Colombia; -2018-11-30T23:01:06Z;Eduardo;4602.35;115898577;Colombia; -2018-11-30T22:52:35Z;Júlio;5449.21;115101845;Colombia; -2018-11-30T22:28:10Z;Nathália;3043.481;115886097;Colombia; -2018-11-30T22:23:48Z;Armando;5085.562;115843006;Colombia; -2018-11-30T22:19:53Z;nathalia;7153.114;115771698;Colombia; -2018-11-30T22:13:04Z;Eduardo;986.6385;116240282;Colombia; -2018-11-30T22:03:52Z;nathalia;9177.38;114714108;Colombia; -2018-11-30T21:48:06Z;Nathália;2045.503;115394987;Colombia; -2018-11-30T21:45:13Z;Júlio Cesar;6057.763;114656540;Colombia; -2018-11-30T21:39:40Z;Armando;1116.565;115612408;Colombia; -2018-11-30T21:27:14Z;Júlio Cesar;2133.888;116012433;Colombia; -2018-11-30T21:19:37Z;Júlio;5555.338;114694861;Colombia; -2018-11-30T21:11:42Z;Júlio Cesar;3235.012;115630098;Colombia; -2018-11-30T21:11:19Z;Júlio Cesar;681.9401;115143013;Colombia; -2018-11-30T21:05:11Z;Júlio;2772.987;115809663;Colombia; -2018-11-30T20:22:49Z;Sandra;7072.302;115146905;Colombia; -2018-11-30T20:19:39Z;Eduardo;1025.11;115927648;Colombia; -2018-11-30T20:18:41Z;Júlio Cesar;5658.8;115461613;Colombia; -2018-11-30T20:15:46Z;Sandra;3930.393;116063682;Colombia; -2018-11-30T20:13:09Z;Júlio Cesar;972.6416;114504603;Colombia; -2018-11-30T20:04:59Z;Júlio Cesar;1730.284;114287251;Colombia; -2018-11-30T19:49:33Z;Júlio;5881.708;115810406;Colombia; -2018-11-30T19:24:37Z;Armando;490.8612;114997479;Colombia; -2018-11-30T19:12:35Z;Ana;9153.624;114746662;Colombia; -2018-11-30T19:09:23Z;nathalia;3556.586;115231752;Colombia; -2018-11-30T19:00:23Z;Nathália;3215.653;114533798;Colombia; -2018-11-30T18:28:14Z;nathalia;8893.397;114256229;Colombia; -2018-11-30T18:13:46Z;Armando;4115.363;116326984;Colombia; -2018-11-30T18:08:21Z;nathalia;997.7785;114864280;Colombia; -2018-11-30T17:16:11Z;Nathália;2640.668;114897369;Colombia; -2018-11-30T16:46:49Z;Eduardo;699.4832;115905064;Colombia; -2018-11-30T16:43:59Z;Nathália;1574.219;114672866;Colombia; -2018-11-30T16:35:29Z;Eduardo;6421.611;114385900;Colombia; -2018-11-30T16:29:21Z;Eduardo;8618.269;114681686;Colombia; -2018-11-30T15:43:07Z;Ana;4903.882;116201029;Colombia; -2018-11-30T15:20:54Z;Júlio;768.8341;115333624;Colombia; -2018-11-30T15:09:57Z;Júlio Cesar;727.0739;114746132;Colombia; -2018-11-30T14:33:26Z;Armando;3902.754;114830477;Colombia; -2018-11-30T14:26:49Z;nathalia;2028.152;115956148;Colombia; -2018-11-30T14:21:10Z;Júlio Cesar;1164.151;114330192;Colombia; -2018-11-30T14:18:31Z;Nathália;6046.273;115629830;Colombia; -2018-11-30T14:04:53Z;nathalia;5715.289;115450612;Colombia; -2018-11-30T13:23:58Z;Armando;87.19411;116082947;Colombia; -2018-11-30T13:01:59Z;Júlio Cesar;255.3579;114510605;Colombia; -2018-11-30T12:52:34Z;Nathália;7236.013;115882875;Colombia; -2018-11-30T12:48:15Z;Nathália;386.1985;115480773;Colombia; -2018-11-30T12:36:42Z;Armando;2696.79;115692611;Colombia; -2018-11-30T12:26:54Z;nathalia;34.99069;115424087;Colombia; -2018-11-30T12:24:41Z;Júlio;2223.014;115188183;Colombia; -2018-11-30T12:19:13Z;Sandra;351.9942;114794989;Colombia; -2018-11-30T11:54:18Z;Ana;6020.48;114601675;Colombia; -2018-11-30T11:33:47Z;nathalia;6336.421;115899470;Colombia; -2018-11-30T11:13:26Z;Júlio Cesar;3579.934;115302458;Colombia; -2018-11-30T10:55:53Z;Júlio;1549.517;116088731;Colombia; -2018-11-30T10:50:51Z;Eduardo;7337.76;114425788;Colombia; -2018-11-30T09:44:08Z;Júlio;2533.301;115472874;Colombia; -2018-11-30T09:40:31Z;Armando;1584.57;116100626;Colombia; -2018-11-30T09:13:37Z;Sandra;1688.156;115956019;Colombia; -2018-11-30T09:05:04Z;Armando;5725.368;115936659;Colombia; -2018-11-30T08:58:26Z;Ana;7528.882;114275788;Colombia; -2018-11-30T08:58:20Z;Júlio Cesar;110.5175;114593222;Colombia; -2018-11-30T08:49:01Z;Ana;1354.366;114838110;Colombia; -2018-11-30T08:33:15Z;Ana;3878.787;115741146;Colombia; -2018-11-30T08:13:54Z;Júlio;1035.377;115943548;Colombia; -2018-11-30T07:48:57Z;Júlio;347.2258;116319165;Colombia; -2018-11-30T07:35:01Z;Júlio;734.3335;114663500;Colombia; -2018-11-30T07:32:27Z;Júlio Cesar;7448.445;114997428;Colombia; -2018-11-30T07:23:48Z;Armando;1451.886;114404909;Colombia; -2018-11-30T07:22:28Z;Ana;260.8488;116354036;Colombia; -2018-11-30T07:13:28Z;nathalia;7580.324;115980576;Colombia; -2018-11-30T07:08:29Z;Nathália;4266.57;115397870;Colombia; -2018-11-30T06:12:30Z;Júlio Cesar;3505.219;115610368;Colombia; -2018-11-30T06:04:08Z;Nathália;523.2045;115574379;Colombia; -2018-11-30T05:50:03Z;Eduardo;173.346;115358784;Colombia; -2018-11-30T05:45:20Z;Ana;894.7283;114928019;Colombia; -2018-11-30T05:36:36Z;Nathália;3266.083;116293421;Colombia; -2018-11-30T05:30:16Z;Eduardo;4300.239;116106089;Colombia; -2018-11-30T05:23:00Z;Nathália;1860.81;116137982;Colombia; -2018-11-30T04:44:54Z;Nathália;5293.681;115358131;Colombia; -2018-11-30T04:29:33Z;Eduardo;4650.428;114216204;Colombia; -2018-11-30T04:19:53Z;Júlio Cesar;2078.317;115972488;Colombia; -2018-11-30T04:05:11Z;Júlio Cesar;8564.543;114460726;Colombia; -2018-11-30T03:30:02Z;Júlio Cesar;6241.534;114752417;Colombia; -2018-11-30T03:10:30Z;Sandra;5188.032;115103266;Colombia; -2018-11-30T02:21:12Z;Nathália;2277.938;114548114;Colombia; -2018-11-30T01:58:04Z;Júlio;2382.364;114719018;Colombia; -2018-11-30T01:55:31Z;Nathália;2183.72;115672864;Colombia; -2018-11-30T01:53:19Z;Júlio Cesar;3265.277;115148589;Colombia; -2018-11-30T01:42:40Z;Nathália;546.8317;115219599;Colombia; -2018-11-30T01:17:37Z;Júlio Cesar;964.0419;115155548;Colombia; -2018-11-30T01:02:05Z;Ana;3250.078;114712207;Colombia; -2018-11-30T00:32:22Z;Nathália;7056.682;116173417;Colombia; -2018-11-30T00:30:25Z;Sandra;156.8856;114366469;Colombia; -2018-11-30T00:25:57Z;Armando;202.7685;116147981;Colombia; -2018-11-29T23:57:16Z;Júlio;2751.5;115317320;Colombia; -2018-11-29T23:53:14Z;nathalia;2713.061;114500956;Colombia; -2018-11-29T23:45:41Z;nathalia;3729.137;114419939;Colombia; -2018-11-29T23:25:56Z;Júlio Cesar;2135.011;115352872;Colombia; -2018-11-29T23:14:30Z;Armando;542.4925;115208723;Colombia; -2018-11-29T23:01:06Z;Sandra;4029.769;114960284;Colombia; -2018-11-29T22:46:50Z;Sandra;5276.131;114608027;Colombia; -2018-11-29T21:43:28Z;Júlio;3057.539;115466660;Colombia; -2018-11-29T21:40:41Z;Júlio Cesar;3159.478;115927618;Colombia; -2018-11-29T21:39:30Z;Armando;5689.734;116231255;Colombia; -2018-11-29T20:39:41Z;Júlio;3755.444;115676249;Colombia; -2018-11-29T19:02:25Z;Eduardo;486.6479;115681386;Colombia; -2018-11-29T18:41:22Z;nathalia;3600.464;114757157;Colombia; -2018-11-29T18:35:51Z;Júlio;425.8626;115511061;Colombia; -2018-11-29T18:32:32Z;Ana;3440.053;114385534;Colombia; -2018-11-29T18:14:38Z;Júlio Cesar;1789.57;115786702;Colombia; -2018-11-29T17:57:28Z;Júlio Cesar;1738.634;115435568;Colombia; -2018-11-29T17:06:05Z;Júlio Cesar;2734.414;114935083;Colombia; -2018-11-29T16:53:30Z;Armando;613.1406;115422284;Colombia; -2018-11-29T16:42:44Z;Júlio;3242.457;115435538;Colombia; -2018-11-29T16:27:31Z;Eduardo;167.3409;115604815;Colombia; -2018-11-29T16:22:15Z;Armando;1940.158;114529842;Colombia; -2018-11-29T16:02:05Z;Nathália;2973.678;115132102;Colombia; -2018-11-29T15:22:01Z;Eduardo;1496.058;114421901;Colombia; -2018-11-29T15:09:20Z;Armando;133.5044;115990431;Colombia; -2018-11-29T14:50:50Z;Júlio Cesar;960.6887;115513926;Colombia; -2018-11-29T14:42:38Z;Júlio Cesar;4165.292;115226169;Colombia; -2018-11-29T14:33:36Z;nathalia;3339.377;115249853;Colombia; -2018-11-29T14:31:32Z;nathalia;214.8837;116187881;Colombia; -2018-11-29T12:42:54Z;Sandra;7765.425;116266994;Colombia; -2018-11-29T12:36:03Z;Júlio Cesar;117.066;114626696;Colombia; -2018-11-29T12:33:19Z;Nathália;2194.371;116014828;Colombia; -2018-11-29T12:01:45Z;Júlio;3859.446;115017787;Colombia; -2018-11-29T11:53:22Z;Armando;1580.791;115949631;Colombia; -2018-11-29T11:30:25Z;Júlio Cesar;342.2322;115259283;Colombia; -2018-11-29T11:03:28Z;Armando;1887.51;115023323;Colombia; -2018-11-29T10:52:53Z;Ana;619.8252;116276948;Colombia; -2018-11-29T10:39:20Z;Sandra;390.1884;115603988;Colombia; -2018-11-29T10:11:34Z;Armando;1163.588;116295530;Colombia; -2018-11-29T09:58:55Z;Júlio Cesar;119.086;114211236;Colombia; -2018-11-29T09:43:36Z;Sandra;4600.001;115252159;Colombia; -2018-11-29T08:47:06Z;Sandra;1553.305;114335346;Colombia; -2018-11-29T08:40:02Z;nathalia;1517.465;115327517;Colombia; -2018-11-29T08:35:11Z;Ana;1354.656;114903817;Colombia; -2018-11-29T08:25:59Z;nathalia;822.7431;114218505;Colombia; -2018-11-29T08:20:43Z;Júlio Cesar;196.2692;114625743;Colombia; -2018-11-29T07:59:10Z;Eduardo;6717.884;116196131;Colombia; -2018-11-29T07:48:01Z;Júlio;10991;116330587;Colombia; -2018-11-29T07:46:48Z;Nathália;193.2123;115728895;Colombia; -2018-11-29T07:40:30Z;Eduardo;3690.833;114952254;Colombia; -2018-11-29T07:08:03Z;Eduardo;4094.25;116158311;Colombia; -2018-11-29T06:34:49Z;Armando;1717.18;114425479;Colombia; -2018-11-29T06:22:14Z;Nathália;1594.933;114597115;Colombia; -2018-11-29T06:17:45Z;Armando;277.8089;115304790;Colombia; -2018-11-29T06:06:45Z;Júlio;2359.426;115907107;Colombia; -2018-11-29T06:05:45Z;Eduardo;98.71488;115464138;Colombia; -2018-11-29T06:01:52Z;Eduardo;7121.476;114518930;Colombia; -2018-11-29T05:44:27Z;Ana;2573.127;114337147;Colombia; -2018-11-29T05:34:48Z;Ana;593.8844;114544903;Colombia; -2018-11-29T05:21:27Z;Ana;1461.638;114247445;Colombia; -2018-11-29T05:11:56Z;Júlio;2917.74;115244463;Colombia; -2018-11-29T05:06:28Z;Nathália;7835.009;114237133;Colombia; -2018-11-29T05:03:23Z;Júlio Cesar;2967.08;115203439;Colombia; -2018-11-29T04:39:20Z;nathalia;6894.646;114719420;Colombia; -2018-11-29T04:33:31Z;nathalia;455.4224;116162293;Colombia; -2018-11-29T04:32:16Z;Eduardo;6229.479;114863517;Colombia; -2018-11-29T04:07:00Z;Nathália;8850.881;114235711;Colombia; -2018-11-29T03:26:07Z;Sandra;366.3944;114906534;Colombia; -2018-11-29T02:44:38Z;Sandra;593.7706;114819814;Colombia; -2018-11-29T01:51:21Z;Ana;4627.995;115931124;Colombia; -2018-11-29T01:23:19Z;Júlio Cesar;21.12341;116086769;Colombia; -2018-11-29T01:21:20Z;Ana;5301.68;116066967;Colombia; -2018-11-29T01:09:55Z;Júlio;4294.331;115731044;Colombia; -2018-11-29T00:55:07Z;nathalia;3826.212;115206404;Colombia; -2018-11-29T00:42:28Z;Nathália;4557.611;115840893;Colombia; -2018-11-29T00:35:03Z;Ana;872.1548;114478958;Colombia; -2018-11-29T00:06:24Z;Ana;835.4811;116183912;Colombia; -2018-11-28T23:50:59Z;Nathália;7021.496;116099122;Colombia; -2018-11-28T23:42:27Z;Ana;165.2039;116255733;Colombia; -2018-11-28T22:46:37Z;Ana;339.2439;114331858;Colombia; -2018-11-28T22:45:01Z;Sandra;3192.644;115602268;Colombia; -2018-11-28T22:31:05Z;Nathália;6536.628;115133884;Colombia; -2018-11-28T22:21:26Z;Ana;7153.488;114555600;Colombia; -2018-11-28T22:19:00Z;Júlio Cesar;2726.778;115083181;Colombia; -2018-11-28T22:18:58Z;Eduardo;931.639;115936637;Colombia; -2018-11-28T22:03:23Z;Eduardo;113.736;115329797;Colombia; -2018-11-28T21:51:16Z;Armando;218.3149;114592982;Colombia; -2018-11-28T21:02:00Z;Sandra;512.7131;116193817;Colombia; -2018-11-28T21:01:29Z;Eduardo;46.41333;115233812;Colombia; -2018-11-28T20:45:35Z;Ana;2226.989;116194797;Colombia; -2018-11-28T20:45:04Z;Júlio Cesar;3432.176;114771511;Colombia; -2018-11-28T20:21:31Z;nathalia;1323.307;114335067;Colombia; -2018-11-28T19:41:30Z;Nathália;191.0815;114924769;Colombia; -2018-11-28T19:29:34Z;Nathália;3866.938;115582859;Colombia; -2018-11-28T19:18:48Z;Júlio;3381.392;115135220;Colombia; -2018-11-28T18:37:16Z;Eduardo;996.5026;115665578;Colombia; -2018-11-28T18:23:56Z;Ana;8264.222;116356450;Colombia; -2018-11-28T18:13:48Z;Eduardo;139.3534;114276798;Colombia; -2018-11-28T18:04:48Z;Sandra;3554.935;114342834;Colombia; -2018-11-28T18:00:47Z;Nathália;1003.6;116047899;Colombia; -2018-11-28T17:37:03Z;nathalia;7792.048;115909649;Colombia; -2018-11-28T17:10:00Z;Sandra;1633.002;116030688;Colombia; -2018-11-28T16:47:27Z;Júlio;32.02722;116100136;Colombia; -2018-11-28T16:43:48Z;Sandra;8874.386;116151621;Colombia; -2018-11-28T16:35:37Z;Armando;3041.463;114242118;Colombia; -2018-11-28T16:33:37Z;nathalia;8237.579;114772324;Colombia; -2018-11-28T16:27:40Z;Ana;1557.726;115000595;Colombia; -2018-11-28T16:21:39Z;Nathália;670.7377;114912174;Colombia; -2018-11-28T15:54:29Z;Eduardo;5728.077;115889379;Colombia; -2018-11-28T15:26:08Z;Júlio Cesar;5472.975;115955565;Colombia; -2018-11-28T15:16:00Z;Júlio Cesar;7866.872;115000204;Colombia; -2018-11-28T14:58:31Z;Eduardo;9841.781;115662722;Colombia; -2018-11-28T14:55:36Z;Ana;1294.402;115185709;Colombia; -2018-11-28T14:55:18Z;Júlio;2924.116;115114330;Colombia; -2018-11-28T14:40:33Z;Júlio;3463.84;115973477;Colombia; -2018-11-28T14:29:46Z;Armando;2440.609;115760599;Colombia; -2018-11-28T14:13:06Z;Sandra;597.4797;115422197;Colombia; -2018-11-28T14:01:23Z;Armando;833.4649;116394758;Colombia; -2018-11-28T13:57:53Z;Ana;888.4579;114300782;Colombia; -2018-11-28T13:46:35Z;nathalia;3619.113;115142485;Colombia; -2018-11-28T13:10:51Z;Eduardo;91.01539;116135815;Colombia; -2018-11-28T12:57:26Z;Júlio Cesar;217.2162;114856438;Colombia; -2018-11-28T12:34:19Z;Sandra;148.7926;115626335;Colombia; -2018-11-28T12:22:52Z;nathalia;742.3341;115067136;Colombia; -2018-11-28T12:16:39Z;Júlio;1.49915;114482602;Colombia; -2018-11-28T11:54:19Z;Eduardo;2011.085;114751992;Colombia; -2018-11-28T11:14:06Z;Júlio;9704.504;114627068;Colombia; -2018-11-28T10:29:01Z;nathalia;3184.238;114762067;Colombia; -2018-11-28T10:10:23Z;Júlio Cesar;5792.686;115567209;Colombia; -2018-11-28T10:00:29Z;Sandra;117.1951;114587877;Colombia; -2018-11-28T09:41:43Z;Nathália;2621.092;116279896;Colombia; -2018-11-28T09:31:36Z;Ana;10491.41;115111586;Colombia; -2018-11-28T09:24:09Z;Júlio;3182.928;114639433;Colombia; -2018-11-28T08:47:30Z;Nathália;3754.061;114507997;Colombia; -2018-11-28T08:15:42Z;Júlio Cesar;1429.87;115940533;Colombia; -2018-11-28T08:07:21Z;Nathália;1252.317;114835736;Colombia; -2018-11-28T07:52:16Z;Nathália;4004.389;114608697;Colombia; -2018-11-28T06:38:05Z;Sandra;3679.903;115430275;Colombia; -2018-11-28T06:20:38Z;Nathália;5577.219;115016170;Colombia; -2018-11-28T06:02:06Z;nathalia;6579.501;114777278;Colombia; -2018-11-28T06:01:27Z;Ana;4890.907;115674649;Colombia; -2018-11-28T05:59:39Z;Armando;4571.956;114468725;Colombia; -2018-11-28T05:46:43Z;Eduardo;1059.474;115491125;Colombia; -2018-11-28T05:22:32Z;Sandra;2661.968;116041930;Colombia; -2018-11-28T05:12:43Z;Armando;4924.611;115376869;Colombia; -2018-11-28T04:47:24Z;Júlio;258.9252;115667755;Colombia; -2018-11-28T03:25:18Z;Júlio Cesar;927.7435;116213829;Colombia; -2018-11-28T03:16:08Z;Ana;5126.342;114309781;Colombia; -2018-11-28T02:58:54Z;Júlio Cesar;998.0814;115955898;Colombia; -2018-11-28T02:37:57Z;Sandra;2129.567;115220034;Colombia; -2018-11-28T02:02:27Z;Júlio;630.3421;115898514;Colombia; -2018-11-28T01:58:15Z;Sandra;531.6878;115653674;Colombia; -2018-11-28T01:12:54Z;Eduardo;1515.85;115087876;Colombia; -2018-11-28T01:10:57Z;Júlio Cesar;3615.659;114218894;Colombia; -2018-11-28T00:32:12Z;Sandra;2867.258;115396544;Colombia; -2018-11-28T00:24:29Z;Ana;4529.626;114217231;Colombia; -2018-11-27T23:12:14Z;nathalia;3207.099;114853664;Colombia; -2018-11-27T22:18:43Z;Armando;5554.377;114710201;Colombia; -2018-11-27T22:14:05Z;Nathália;6757.502;114870471;Colombia; -2018-11-27T22:13:44Z;Sandra;8348.969;114717988;Colombia; -2018-11-27T22:07:25Z;Armando;918.7415;115776465;Colombia; -2018-11-27T22:01:28Z;Armando;15.15248;114653556;Colombia; -2018-11-27T21:02:20Z;Nathália;261.8614;114568770;Colombia; -2018-11-27T20:56:07Z;Nathália;2.405109;114823535;Colombia; -2018-11-27T20:51:06Z;Nathália;2629.6;115510174;Colombia; -2018-11-27T20:31:24Z;Eduardo;6459.821;115451732;Colombia; -2018-11-27T20:12:19Z;Nathália;640.0454;116350262;Colombia; -2018-11-27T20:03:52Z;Nathália;4302.448;115316222;Colombia; -2018-11-27T19:46:29Z;Sandra;1235.696;116209040;Colombia; -2018-11-27T19:15:57Z;Nathália;1854.472;116246028;Colombia; -2018-11-27T19:00:13Z;Ana;3260.819;115774538;Colombia; -2018-11-27T18:46:54Z;Nathália;6099.985;114519092;Colombia; -2018-11-27T18:26:02Z;Sandra;194.5718;114236873;Colombia; -2018-11-27T18:24:02Z;nathalia;2023.235;116271842;Colombia; -2018-11-27T17:46:25Z;Júlio Cesar;12002.4;115430382;Colombia; -2018-11-27T17:38:07Z;Sandra;1764.075;114748554;Colombia; -2018-11-27T17:32:04Z;Ana;1393.873;114566687;Colombia; -2018-11-27T16:48:09Z;Júlio;2324.126;115178699;Colombia; -2018-11-27T16:46:36Z;Sandra;3849.391;114417389;Colombia; -2018-11-27T16:16:27Z;Júlio;1336.963;114332076;Colombia; -2018-11-27T15:52:56Z;Armando;275.8482;115619773;Colombia; -2018-11-27T15:38:53Z;Nathália;624.9548;115316805;Colombia; -2018-11-27T15:30:51Z;Júlio Cesar;9275.999;114238287;Colombia; -2018-11-27T15:10:53Z;Armando;1061.51;114263764;Colombia; -2018-11-27T14:54:05Z;Ana;1633.589;114293518;Colombia; -2018-11-27T13:15:56Z;Júlio Cesar;1046.319;116022362;Colombia; -2018-11-27T12:56:40Z;Eduardo;134.2327;114890994;Colombia; -2018-11-27T12:49:23Z;Júlio Cesar;3474.071;116091738;Colombia; -2018-11-27T12:40:57Z;nathalia;1478.851;115854994;Colombia; -2018-11-27T12:24:44Z;Ana;1619.273;115205747;Colombia; -2018-11-27T12:16:33Z;Júlio;1569.713;115332767;Colombia; -2018-11-27T12:05:01Z;Júlio;4759.325;115732757;Colombia; -2018-11-27T11:41:10Z;Nathália;1680.19;114418703;Colombia; -2018-11-27T11:30:44Z;Nathália;602.1632;115513091;Colombia; -2018-11-27T11:14:57Z;Júlio Cesar;912.7985;114754530;Colombia; -2018-11-27T11:01:01Z;Eduardo;2776.857;115207825;Colombia; -2018-11-27T10:59:12Z;Eduardo;5973.26;115630920;Colombia; -2018-11-27T10:55:00Z;Ana;758.6595;114670948;Colombia; -2018-11-27T10:53:02Z;Eduardo;1801.361;116346001;Colombia; -2018-11-27T10:31:52Z;nathalia;1307.783;114738184;Colombia; -2018-11-27T10:26:50Z;Nathália;1968.657;114486746;Colombia; -2018-11-27T09:55:12Z;Sandra;3706.251;115736237;Colombia; -2018-11-27T09:50:27Z;Júlio Cesar;125.9267;116131015;Colombia; -2018-11-27T09:12:31Z;nathalia;1635.177;115520877;Colombia; -2018-11-27T09:08:50Z;Ana;1242.812;116248801;Colombia; -2018-11-27T09:06:03Z;Ana;2300.47;114589879;Colombia; -2018-11-27T08:53:28Z;Ana;32.44551;114502673;Colombia; -2018-11-27T08:51:23Z;Eduardo;446.3404;115872902;Colombia; -2018-11-27T08:28:15Z;Eduardo;385.0911;115666115;Colombia; -2018-11-27T08:18:26Z;Eduardo;5021.299;115353174;Colombia; -2018-11-27T08:18:04Z;Armando;2097.446;115850177;Colombia; -2018-11-27T08:04:51Z;Júlio Cesar;3281.531;115842313;Colombia; -2018-11-27T07:47:42Z;nathalia;427.0845;114629777;Colombia; -2018-11-27T07:40:57Z;nathalia;453.2051;116186462;Colombia; -2018-11-27T07:26:38Z;Ana;892.8588;114483512;Colombia; -2018-11-27T07:07:12Z;Sandra;1494.814;115074974;Colombia; -2018-11-27T07:06:43Z;nathalia;1242.431;115532531;Colombia; -2018-11-27T06:42:15Z;Armando;11957.43;114367251;Colombia; -2018-11-27T06:35:00Z;Júlio Cesar;14.94031;116183132;Colombia; -2018-11-27T06:26:05Z;Ana;3360.612;114528594;Colombia; -2018-11-27T06:25:16Z;Eduardo;609.6833;114373619;Colombia; -2018-11-27T05:58:53Z;nathalia;2436.585;114983657;Colombia; -2018-11-27T05:53:47Z;Sandra;3215.674;115522073;Colombia; -2018-11-27T05:53:13Z;Ana;317.6156;116374122;Colombia; -2018-11-27T05:53:10Z;Nathália;5143.185;116317175;Colombia; -2018-11-27T05:00:51Z;nathalia;570.9795;116318379;Colombia; -2018-11-27T05:00:50Z;Júlio Cesar;7554.648;115913671;Colombia; -2018-11-27T04:53:27Z;Sandra;204.2976;114457724;Colombia; -2018-11-27T04:45:55Z;Sandra;4762.483;115076117;Colombia; -2018-11-27T03:53:58Z;Ana;1648.62;116128220;Colombia; -2018-11-27T03:47:44Z;Eduardo;902.2407;116142417;Colombia; -2018-11-27T03:19:34Z;Ana;7605.065;115672004;Colombia; -2018-11-27T03:09:52Z;Sandra;4377.607;114355807;Colombia; -2018-11-27T02:33:41Z;nathalia;4018.114;114585050;Colombia; -2018-11-27T02:20:08Z;Sandra;1339.135;115539130;Colombia; -2018-11-27T02:00:39Z;Armando;414.7667;114979671;Colombia; -2018-11-27T01:48:46Z;nathalia;242.4334;115268223;Colombia; -2018-11-27T01:37:35Z;Ana;1263.181;115439727;Colombia; -2018-11-27T01:30:14Z;Sandra;12537.89;115986560;Colombia; -2018-11-27T01:27:32Z;nathalia;12214.77;114413280;Colombia; -2018-11-27T01:24:55Z;Júlio;8466.807;114703619;Colombia; -2018-11-27T01:10:55Z;Nathália;5710.387;114421012;Colombia; -2018-11-27T01:07:38Z;Eduardo;82.90571;115838850;Colombia; -2018-11-27T01:02:03Z;nathalia;2770.532;115861405;Colombia; -2018-11-27T01:01:26Z;Ana;230.5683;115913468;Colombia; -2018-11-27T00:58:54Z;Sandra;6137.822;115996117;Colombia; -2018-11-27T00:42:59Z;Sandra;915.875;116380744;Colombia; -2018-11-27T00:36:50Z;Júlio;4931.842;114992956;Colombia; -2018-11-26T23:47:49Z;Júlio Cesar;5817.05;116271812;Colombia; -2018-11-26T23:46:42Z;Eduardo;2517.897;115944034;Colombia; -2018-11-26T23:27:56Z;nathalia;1808.547;114795940;Colombia; -2018-11-26T23:25:13Z;Armando;644.614;114615683;Colombia; -2018-11-26T23:22:59Z;Eduardo;1693.719;114620147;Colombia; -2018-11-26T23:11:52Z;nathalia;1299.658;115929528;Colombia; -2018-11-26T23:02:45Z;Sandra;4515.524;115743229;Colombia; -2018-11-26T22:45:53Z;Eduardo;1207.329;115436577;Colombia; -2018-11-26T22:42:00Z;Júlio Cesar;687.8356;114961532;Colombia; -2018-11-26T22:35:11Z;Júlio;741.2126;114695697;Colombia; -2018-11-26T22:08:12Z;Ana;1353.073;115054344;Colombia; -2018-11-26T21:58:13Z;nathalia;3401.691;114716043;Colombia; -2018-11-26T21:52:39Z;nathalia;8628.037;115402754;Colombia; -2018-11-26T21:50:24Z;Armando;6420.494;115749412;Colombia; -2018-11-26T21:36:23Z;Nathália;1799.371;116326921;Colombia; -2018-11-26T21:09:18Z;Sandra;5238.63;114899570;Colombia; -2018-11-26T21:01:19Z;Júlio Cesar;5772.307;115805030;Colombia; -2018-11-26T20:34:18Z;Júlio Cesar;13754.09;116355989;Colombia; -2018-11-26T20:29:52Z;Sandra;841.6418;116117346;Colombia; -2018-11-26T19:53:41Z;Júlio;2214.129;114465994;Colombia; -2018-11-26T19:50:50Z;Armando;1194.707;114985051;Colombia; -2018-11-26T19:21:42Z;Ana;7167.332;114458360;Colombia; -2018-11-26T18:58:24Z;Eduardo;71.42128;115980922;Colombia; -2018-11-26T18:53:08Z;Armando;422.9312;114711124;Colombia; -2018-11-26T18:17:35Z;Ana;941.607;116214122;Colombia; -2018-11-26T17:53:50Z;nathalia;3336.734;116243134;Colombia; -2018-11-26T17:46:03Z;Ana;545.5582;115131330;Colombia; -2018-11-26T17:28:23Z;Júlio;1930.501;115868505;Colombia; -2018-11-26T17:21:45Z;Júlio;27.08792;114592107;Colombia; -2018-11-26T16:48:00Z;Júlio Cesar;10896.87;115832950;Colombia; -2018-11-26T16:38:57Z;Armando;6085.732;115489231;Colombia; -2018-11-26T16:30:50Z;Nathália;1070.984;115469315;Colombia; -2018-11-26T16:23:32Z;Armando;310.8692;114845566;Colombia; -2018-11-26T16:20:00Z;Armando;2774.912;116049812;Colombia; -2018-11-26T16:13:16Z;Júlio;11.3448;115111815;Colombia; -2018-11-26T15:56:07Z;Sandra;1333.221;115435280;Colombia; -2018-11-26T15:43:43Z;Armando;9579.369;115551119;Colombia; -2018-11-26T15:30:37Z;Armando;4822.333;115991988;Colombia; -2018-11-26T15:29:27Z;Eduardo;2730.598;114435375;Colombia; -2018-11-26T15:28:11Z;Eduardo;1034.217;116383597;Colombia; -2018-11-26T14:44:31Z;nathalia;1683.808;115206570;Colombia; -2018-11-26T14:43:09Z;Eduardo;5393.45;115632618;Colombia; -2018-11-26T14:35:32Z;Ana;4684.748;115843989;Colombia; -2018-11-26T14:23:03Z;Sandra;294.1586;115643910;Colombia; -2018-11-26T14:10:36Z;Armando;5841.644;114959808;Colombia; -2018-11-26T14:05:02Z;Eduardo;2932.178;115877420;Colombia; -2018-11-26T13:39:27Z;Ana;2722.256;116137395;Colombia; -2018-11-26T13:30:35Z;Eduardo;475.8577;114558553;Colombia; -2018-11-26T13:11:13Z;nathalia;1198.525;116089630;Colombia; -2018-11-26T13:09:24Z;Armando;2320.655;114422435;Colombia; -2018-11-26T13:02:40Z;Nathália;705.964;114871489;Colombia; -2018-11-26T12:52:52Z;Armando;4797.482;115908412;Colombia; -2018-11-26T12:52:37Z;Ana;3913.16;115447753;Colombia; -2018-11-26T12:27:53Z;Armando;437.4738;114836317;Colombia; -2018-11-26T12:18:08Z;Nathália;2143.365;116114598;Colombia; -2018-11-26T12:03:16Z;Júlio Cesar;2835.517;116232416;Colombia; -2018-11-26T12:02:03Z;Eduardo;999.9935;114561456;Colombia; -2018-11-26T11:44:55Z;Nathália;5753.838;116151993;Colombia; -2018-11-26T11:29:03Z;Armando;1008.644;116225037;Colombia; -2018-11-26T11:08:03Z;Ana;6056.031;116256016;Colombia; -2018-11-26T11:01:44Z;Júlio;2722.278;114505600;Colombia; -2018-11-26T10:34:45Z;Eduardo;1164.377;116366054;Colombia; -2018-11-26T10:31:12Z;Ana;598.1894;115484871;Colombia; -2018-11-26T10:18:12Z;Ana;23.50983;115619684;Colombia; -2018-11-26T10:09:31Z;Sandra;615.5242;114909431;Colombia; -2018-11-26T09:42:06Z;Ana;206.5032;115743833;Colombia; -2018-11-26T09:19:52Z;Armando;2968.016;116137981;Colombia; -2018-11-26T09:00:49Z;Júlio;9758.659;115932324;Colombia; -2018-11-26T08:51:14Z;Júlio;850.4709;115820319;Colombia; -2018-11-26T07:49:26Z;Armando;928.704;114787306;Colombia; -2018-11-26T07:05:57Z;nathalia;11992.8;115428207;Colombia; -2018-11-26T07:00:27Z;Sandra;581.6742;115608736;Colombia; -2018-11-26T06:55:58Z;Nathália;821.5439;114346532;Colombia; -2018-11-26T06:45:44Z;Eduardo;4062.09;116017055;Colombia; -2018-11-26T06:12:13Z;Sandra;224.8004;114348691;Colombia; -2018-11-26T06:04:57Z;Eduardo;3991.422;116102578;Colombia; -2018-11-26T06:02:41Z;nathalia;1026.07;114576242;Colombia; -2018-11-26T05:49:22Z;Sandra;4243.573;114934088;Colombia; -2018-11-26T05:16:05Z;Nathália;2520.826;115208182;Colombia; -2018-11-26T04:40:13Z;Nathália;1033.003;115377454;Colombia; -2018-11-26T04:29:57Z;nathalia;2972.25;115554726;Colombia; -2018-11-26T04:22:56Z;Júlio Cesar;7654.558;115742408;Colombia; -2018-11-26T04:03:33Z;Nathália;6508.256;115165140;Colombia; -2018-11-26T03:51:44Z;Armando;1094.873;115670957;Colombia; -2018-11-26T03:51:32Z;Júlio;3853.982;115719884;Colombia; -2018-11-26T03:39:31Z;Sandra;778.4492;116322697;Colombia; -2018-11-26T03:25:17Z;Nathália;1535.449;114281649;Colombia; -2018-11-26T03:24:02Z;Sandra;2708.61;115084723;Colombia; -2018-11-26T03:12:21Z;Eduardo;738.9507;115271811;Colombia; -2018-11-26T02:54:47Z;Júlio Cesar;2330.136;115096076;Colombia; -2018-11-26T02:54:20Z;Armando;360.2682;115802937;Colombia; -2018-11-26T02:52:57Z;Eduardo;147.2793;114929983;Colombia; -2018-11-26T02:11:18Z;nathalia;2462.034;114756442;Colombia; -2018-11-26T01:21:00Z;Sandra;162.0304;114853950;Colombia; -2018-11-26T01:00:30Z;Armando;3877.289;114254524;Colombia; -2018-11-26T00:49:14Z;Júlio;85.51389;115016270;Colombia; -2018-11-25T23:58:41Z;Ana;4076.826;115554861;Colombia; -2018-11-25T23:46:07Z;Júlio;205.6474;116035597;Colombia; -2018-11-25T23:41:45Z;Armando;1094.375;116131496;Colombia; -2018-11-25T23:30:10Z;Sandra;4220.084;114516681;Colombia; -2018-11-25T23:04:27Z;Júlio Cesar;6502.131;115638094;Colombia; -2018-11-25T22:46:30Z;Júlio;110.81;115499013;Colombia; -2018-11-25T22:26:12Z;Armando;3076.514;114961455;Colombia; -2018-11-25T22:07:36Z;Sandra;2300.31;114831350;Colombia; -2018-11-25T21:26:13Z;Armando;478.2547;115462051;Colombia; -2018-11-25T20:41:40Z;Júlio;916.3621;115515443;Colombia; -2018-11-25T20:27:52Z;Sandra;57.26822;115776522;Colombia; -2018-11-25T20:22:24Z;Eduardo;7961.804;115385648;Colombia; -2018-11-25T20:21:04Z;Eduardo;773.5418;114284382;Colombia; -2018-11-25T19:25:59Z;nathalia;6441.449;115799091;Colombia; -2018-11-25T19:19:23Z;Eduardo;4962.744;115555859;Colombia; -2018-11-25T19:15:46Z;Nathália;71.91045;115796129;Colombia; -2018-11-25T18:31:24Z;Armando;41.79765;115023904;Colombia; -2018-11-25T18:23:35Z;Júlio Cesar;1090.609;114366330;Colombia; -2018-11-25T17:39:54Z;Júlio;6767.496;114377177;Colombia; -2018-11-25T17:28:07Z;Júlio;6772.428;114958202;Colombia; -2018-11-25T17:22:42Z;Nathália;3076.253;115213168;Colombia; -2018-11-25T17:19:47Z;Armando;2110.199;114435102;Colombia; -2018-11-25T16:43:30Z;Ana;475.7024;116246132;Colombia; -2018-11-25T16:26:41Z;nathalia;1926.99;116365792;Colombia; -2018-11-25T16:22:03Z;Nathália;1223.006;114364480;Colombia; -2018-11-25T16:15:42Z;Armando;4794.666;115516551;Colombia; -2018-11-25T16:06:03Z;nathalia;693.5715;114489624;Colombia; -2018-11-25T15:56:05Z;Júlio;1389.096;115625641;Colombia; -2018-11-25T15:50:29Z;Armando;1512.051;115753569;Colombia; -2018-11-25T15:50:27Z;Sandra;3819.825;114874122;Colombia; -2018-11-25T15:40:24Z;Eduardo;7099.978;116041872;Colombia; -2018-11-25T15:18:07Z;Nathália;1576.772;114257997;Colombia; -2018-11-25T15:04:20Z;Sandra;3263.557;115813784;Colombia; -2018-11-25T13:50:47Z;Júlio;3094.037;116122166;Colombia; -2018-11-25T13:50:18Z;Nathália;1551.5;115469395;Colombia; -2018-11-25T13:33:38Z;Armando;10890.25;115944176;Colombia; -2018-11-25T13:24:22Z;Armando;2970.104;115452128;Colombia; -2018-11-25T13:16:15Z;Nathália;84.66993;114590017;Colombia; -2018-11-25T13:11:42Z;Júlio Cesar;35.24556;114283276;Colombia; -2018-11-25T12:49:09Z;nathalia;6701.628;114235169;Colombia; -2018-11-25T12:05:04Z;Júlio;1796.105;115255000;Colombia; -2018-11-25T11:26:34Z;Júlio;2442.285;114718966;Colombia; -2018-11-25T11:15:20Z;Júlio;1445.363;114957802;Colombia; -2018-11-25T10:48:53Z;Nathália;3817.699;114867673;Colombia; -2018-11-25T10:43:21Z;Júlio;302.0998;114203158;Colombia; -2018-11-25T10:43:14Z;Ana;935.9401;115158025;Colombia; -2018-11-25T10:16:41Z;Ana;1091.047;116107488;Colombia; -2018-11-25T09:49:50Z;Ana;433.4767;115257387;Colombia; -2018-11-25T09:24:59Z;Armando;287.9152;115861893;Colombia; -2018-11-25T09:17:57Z;Eduardo;2215.267;116066706;Colombia; -2018-11-25T09:12:55Z;Ana;82.25638;115018148;Colombia; -2018-11-25T08:53:27Z;Nathália;8846.757;115300954;Colombia; -2018-11-25T08:42:10Z;Ana;1079.107;115748059;Colombia; -2018-11-25T08:18:20Z;Júlio;4988.359;114669880;Colombia; -2018-11-25T08:13:50Z;Júlio Cesar;1794.194;116280328;Colombia; -2018-11-25T08:03:48Z;Armando;678.3656;116250342;Colombia; -2018-11-25T07:55:45Z;Eduardo;8060.424;115836176;Colombia; -2018-11-25T07:53:21Z;Eduardo;3107.409;115685666;Colombia; -2018-11-25T07:49:32Z;Armando;1656.339;115049587;Colombia; -2018-11-25T07:41:04Z;Ana;2436.852;115312102;Colombia; -2018-11-25T07:17:11Z;Júlio;1439.754;116134734;Colombia; -2018-11-25T07:16:59Z;Júlio Cesar;1578.06;114302817;Colombia; -2018-11-25T06:59:52Z;Eduardo;5455.516;114909804;Colombia; -2018-11-25T06:58:30Z;nathalia;1153.113;114307489;Colombia; -2018-11-25T06:34:09Z;Júlio;595.6967;115250871;Colombia; -2018-11-25T06:23:01Z;Ana;2570.01;115218839;Colombia; -2018-11-25T05:50:29Z;nathalia;51.18524;115835943;Colombia; -2018-11-25T05:31:56Z;Júlio Cesar;7585.664;115573147;Colombia; -2018-11-25T05:10:59Z;Sandra;7842.781;115677682;Colombia; -2018-11-25T04:44:50Z;Ana;2136.42;116340951;Colombia; -2018-11-25T04:42:12Z;Nathália;1034.859;116386932;Colombia; -2018-11-25T04:33:29Z;Júlio;3151.369;115473301;Colombia; -2018-11-25T04:23:58Z;Ana;6392.615;115950136;Colombia; -2018-11-25T03:37:40Z;Sandra;4295.116;115982320;Colombia; -2018-11-25T03:36:05Z;Nathália;100.351;115987921;Colombia; -2018-11-25T03:28:46Z;Armando;4150.023;114311230;Colombia; -2018-11-25T03:20:04Z;Júlio Cesar;1124.143;114425026;Colombia; -2018-11-25T03:17:30Z;Júlio;1187.625;115194011;Colombia; -2018-11-25T03:11:30Z;Nathália;4371;115756765;Colombia; -2018-11-25T03:04:29Z;Nathália;241.0349;115476739;Colombia; -2018-11-25T02:52:14Z;Ana;1760.981;114980310;Colombia; -2018-11-25T02:25:45Z;Eduardo;826.1519;115036501;Colombia; -2018-11-25T02:03:17Z;Armando;3855.949;116394980;Colombia; -2018-11-25T01:40:30Z;Júlio Cesar;12441.83;114802379;Colombia; -2018-11-25T01:04:21Z;Armando;7152.909;115773974;Colombia; -2018-11-25T00:49:13Z;Júlio Cesar;1363.357;116129693;Colombia; -2018-11-25T00:31:22Z;Sandra;3536.201;115672469;Colombia; -2018-11-25T00:20:59Z;Armando;273.8049;115445285;Colombia; -2018-11-24T23:56:46Z;Nathália;2632.102;115317852;Colombia; -2018-11-24T23:43:19Z;Júlio;2793.304;115914721;Colombia; -2018-11-24T23:24:36Z;Júlio;760.676;115983385;Colombia; -2018-11-24T22:58:55Z;Nathália;3990.031;114821527;Colombia; -2018-11-24T22:19:06Z;Nathália;2131.438;114227744;Colombia; -2018-11-24T22:17:29Z;Júlio;7942.125;114263937;Colombia; -2018-11-24T22:08:23Z;Sandra;5062.708;115738586;Colombia; -2018-11-24T21:54:01Z;Júlio;5698.268;116372996;Colombia; -2018-11-24T21:46:07Z;Ana;1685.878;115890615;Colombia; -2018-11-24T21:28:08Z;Júlio;2090.956;114638425;Colombia; -2018-11-24T21:22:37Z;Ana;4820.617;115799133;Colombia; -2018-11-24T21:13:51Z;Eduardo;5271.572;114443922;Colombia; -2018-11-24T21:08:32Z;Eduardo;1361.22;116324641;Colombia; -2018-11-24T20:36:14Z;Júlio Cesar;11500.93;116227220;Colombia; -2018-11-24T20:28:14Z;Nathália;6527.364;114439505;Colombia; -2018-11-24T20:15:36Z;Ana;576.3389;116198383;Colombia; -2018-11-24T20:08:58Z;Júlio Cesar;84.17297;114472352;Colombia; -2018-11-24T20:06:07Z;Eduardo;3038.147;115206217;Colombia; -2018-11-24T19:57:06Z;Armando;77.76776;115922335;Colombia; -2018-11-24T19:38:45Z;Eduardo;1164.007;115909359;Colombia; -2018-11-24T19:36:46Z;Eduardo;2178.108;115908390;Colombia; -2018-11-24T19:20:43Z;Ana;5786.133;115038212;Colombia; -2018-11-24T19:16:21Z;Eduardo;8582.072;115644592;Colombia; -2018-11-24T17:53:55Z;Armando;5550.158;115313654;Colombia; -2018-11-24T17:45:45Z;Nathália;1159.514;115749743;Colombia; -2018-11-24T17:33:04Z;Nathália;544.0363;115555863;Colombia; -2018-11-24T17:02:47Z;Sandra;4456.71;115209280;Colombia; -2018-11-24T16:54:52Z;Júlio Cesar;3292.893;115183508;Colombia; -2018-11-24T16:53:35Z;Nathália;1775.924;114955542;Colombia; -2018-11-24T16:49:49Z;Eduardo;3399.667;115200948;Colombia; -2018-11-24T16:35:22Z;Eduardo;74.32144;115591455;Colombia; -2018-11-24T16:29:36Z;Júlio Cesar;19.86605;115550615;Colombia; -2018-11-24T16:27:52Z;Ana;1385.386;115407503;Colombia; -2018-11-24T15:50:29Z;Eduardo;188.9536;115973601;Colombia; -2018-11-24T15:25:14Z;Nathália;3210.261;116286630;Colombia; -2018-11-24T15:19:47Z;Eduardo;1752.908;114419177;Colombia; -2018-11-24T15:15:57Z;nathalia;3268.581;114234429;Colombia; -2018-11-24T14:43:56Z;Ana;4896.144;116000437;Colombia; -2018-11-24T14:31:13Z;Eduardo;4196.984;115076311;Colombia; -2018-11-24T14:10:17Z;Júlio;1669.26;116010220;Colombia; -2018-11-24T14:03:39Z;Júlio;3125.89;115679912;Colombia; -2018-11-24T13:56:07Z;Júlio;804.7952;115362124;Colombia; -2018-11-24T13:37:21Z;Armando;602.8762;115890844;Colombia; -2018-11-24T13:28:06Z;Ana;7095.034;114657600;Colombia; -2018-11-24T13:13:23Z;Eduardo;2097.657;115044395;Colombia; -2018-11-24T12:45:56Z;Sandra;312.6534;116303633;Colombia; -2018-11-24T12:30:22Z;Nathália;79.74989;115577622;Colombia; -2018-11-24T12:18:45Z;nathalia;3317.255;115047338;Colombia; -2018-11-24T12:11:30Z;Armando;2020.201;115137429;Colombia; -2018-11-24T12:06:14Z;Júlio;2920.026;115727405;Colombia; -2018-11-24T11:39:32Z;Ana;9929.414;115740248;Colombia; -2018-11-24T11:28:28Z;Ana;4264.829;115714820;Colombia; -2018-11-24T10:52:23Z;Nathália;6167.744;115161973;Colombia; -2018-11-24T10:39:28Z;Sandra;1715.191;116039604;Colombia; -2018-11-24T09:53:38Z;Ana;685.7496;115550227;Colombia; -2018-11-24T09:48:55Z;Eduardo;632.0654;116053526;Colombia; -2018-11-24T09:19:36Z;Júlio;3863.114;115902702;Colombia; -2018-11-24T09:03:42Z;Sandra;3736.602;114890725;Colombia; -2018-11-24T08:56:11Z;Armando;2940.442;115243047;Colombia; -2018-11-24T08:52:31Z;Armando;35.53955;114889138;Colombia; -2018-11-24T08:07:21Z;Júlio;6370.493;115937477;Colombia; -2018-11-24T08:00:12Z;Eduardo;1476.657;114753150;Colombia; -2018-11-24T07:11:33Z;Nathália;842.597;114712857;Colombia; -2018-11-24T07:06:42Z;Nathália;2488.761;116032122;Colombia; -2018-11-24T06:57:55Z;Armando;1464.704;116198689;Colombia; -2018-11-24T06:51:48Z;Eduardo;3902.628;115261616;Colombia; -2018-11-24T06:45:48Z;Sandra;2188.95;115247762;Colombia; -2018-11-24T06:26:35Z;Nathália;2833.366;115089096;Colombia; -2018-11-24T05:29:50Z;nathalia;2962.691;115061106;Colombia; -2018-11-24T05:28:42Z;Ana;2638.952;116040560;Colombia; -2018-11-24T04:58:27Z;nathalia;3436.431;116372131;Colombia; -2018-11-24T04:36:47Z;Júlio;477.5911;115173768;Colombia; -2018-11-24T04:33:55Z;Nathália;1382.298;115208677;Colombia; -2018-11-24T04:12:10Z;nathalia;2050.707;115116359;Colombia; -2018-11-24T04:10:53Z;Júlio;3778.18;115493530;Colombia; -2018-11-24T04:07:43Z;Nathália;1800.525;114794136;Colombia; -2018-11-24T03:40:43Z;Ana;159.9513;114639153;Colombia; -2018-11-24T03:24:57Z;nathalia;3405.086;116092215;Colombia; -2018-11-24T03:21:49Z;Júlio Cesar;364.2163;115445474;Colombia; -2018-11-24T03:10:00Z;nathalia;10204.98;114764005;Colombia; -2018-11-24T02:56:48Z;Ana;7637.541;115165894;Colombia; -2018-11-24T02:51:00Z;nathalia;2773.542;114376778;Colombia; -2018-11-24T02:26:21Z;Júlio;298.5934;115957977;Colombia; -2018-11-24T01:32:58Z;Sandra;175.6115;116202584;Colombia; -2018-11-24T00:36:49Z;Sandra;1384.1;116188608;Colombia; -2018-11-24T00:35:23Z;Eduardo;481.7965;115535748;Colombia; -2018-11-24T00:16:23Z;Armando;1133.395;114717947;Colombia; -2018-11-24T00:13:13Z;Nathália;505.2359;114665866;Colombia; -2018-11-23T23:38:30Z;Júlio Cesar;1617.434;116247863;Colombia; -2018-11-23T23:31:33Z;nathalia;498.3638;115109966;Colombia; -2018-11-23T22:33:34Z;Nathália;626.8438;114970036;Colombia; -2018-11-23T22:29:53Z;Júlio;499.8869;114353871;Colombia; -2018-11-23T22:27:10Z;Nathália;5042.057;115750062;Colombia; -2018-11-23T22:15:47Z;Sandra;63.22975;115112304;Colombia; -2018-11-23T22:10:39Z;nathalia;8934.129;114587000;Colombia; -2018-11-23T22:05:26Z;Júlio;5522.397;116088589;Colombia; -2018-11-23T21:59:42Z;Eduardo;5769.683;114646565;Colombia; -2018-11-23T21:51:18Z;Júlio Cesar;5913.832;115239798;Colombia; -2018-11-23T21:45:55Z;Júlio Cesar;16766.63;115151126;Colombia; -2018-11-23T21:43:43Z;Júlio Cesar;30.5004;116019488;Colombia; -2018-11-23T21:41:47Z;Nathália;4886.378;115693582;Colombia; -2018-11-23T21:31:21Z;Júlio Cesar;4771.721;116293665;Colombia; -2018-11-23T21:23:14Z;nathalia;417.6904;115461564;Colombia; -2018-11-23T21:03:40Z;Armando;110.9679;115281493;Colombia; -2018-11-23T21:03:08Z;Júlio Cesar;6208.568;116279117;Colombia; -2018-11-23T20:31:32Z;Nathália;9745.18;114353234;Colombia; -2018-11-23T20:22:57Z;Sandra;2229.541;114606089;Colombia; -2018-11-23T20:21:05Z;Sandra;67.51459;114470293;Colombia; -2018-11-23T20:20:43Z;Armando;1378.883;114822421;Colombia; -2018-11-23T20:08:40Z;Eduardo;1571.389;116315074;Colombia; -2018-11-23T20:05:12Z;Júlio Cesar;1619.253;115057727;Colombia; -2018-11-23T20:03:02Z;Júlio Cesar;140.0364;116147168;Colombia; -2018-11-23T19:56:12Z;Júlio;7536.069;116374954;Colombia; -2018-11-23T19:49:54Z;Júlio;4019.992;114946693;Colombia; -2018-11-23T19:43:18Z;Júlio Cesar;2170.519;116293785;Colombia; -2018-11-23T19:22:47Z;Sandra;1863.68;115929524;Colombia; -2018-11-23T19:22:14Z;Armando;802.667;115489321;Colombia; -2018-11-23T19:01:52Z;Sandra;2397.151;114827801;Colombia; -2018-11-23T18:58:34Z;Armando;4232.272;115241175;Colombia; -2018-11-23T18:55:52Z;Nathália;1453.974;115096961;Colombia; -2018-11-23T18:46:18Z;nathalia;5713.109;114708371;Colombia; -2018-11-23T18:40:24Z;Nathália;5345.415;114953527;Colombia; -2018-11-23T18:35:45Z;nathalia;60.26795;116281122;Colombia; -2018-11-23T18:25:36Z;Nathália;3655.299;115135156;Colombia; -2018-11-23T18:16:26Z;Sandra;920.9177;115903254;Colombia; -2018-11-23T17:57:42Z;Nathália;5810.676;115140155;Colombia; -2018-11-23T17:50:31Z;Sandra;8101.323;114274133;Colombia; -2018-11-23T17:48:37Z;Júlio;878.2434;115385112;Colombia; -2018-11-23T17:13:33Z;Eduardo;2839.686;114331518;Colombia; -2018-11-23T15:55:08Z;Sandra;358.1566;115143926;Colombia; -2018-11-23T15:32:21Z;Armando;3888.582;116288571;Colombia; -2018-11-23T15:08:12Z;Eduardo;2847.259;115432882;Colombia; -2018-11-23T14:57:00Z;Nathália;1135.842;116372002;Colombia; -2018-11-23T14:51:05Z;Júlio Cesar;2973.51;114956413;Colombia; -2018-11-23T14:42:59Z;Ana;4524.816;115403522;Colombia; -2018-11-23T14:20:36Z;Sandra;1905.86;115050799;Colombia; -2018-11-23T14:15:24Z;Júlio;5769.008;114375160;Colombia; -2018-11-23T14:00:09Z;Sandra;9852.526;115159834;Colombia; -2018-11-23T13:50:27Z;Eduardo;571.866;114642881;Colombia; -2018-11-23T13:20:32Z;Armando;2450.226;115583059;Colombia; -2018-11-23T13:13:16Z;Eduardo;1915.518;116207517;Colombia; -2018-11-23T12:50:19Z;Sandra;4613.652;114869263;Colombia; -2018-11-23T12:38:25Z;Sandra;7294.737;114387584;Colombia; -2018-11-23T12:33:53Z;nathalia;1234.5;116121251;Colombia; -2018-11-23T12:29:40Z;nathalia;2361.387;114989182;Colombia; -2018-11-23T12:16:32Z;Armando;5068.239;115250485;Colombia; -2018-11-23T11:58:36Z;Eduardo;6078.745;114723274;Colombia; -2018-11-23T11:53:19Z;Ana;8504.721;114454435;Colombia; -2018-11-23T11:51:40Z;Júlio Cesar;31.87846;114717800;Colombia; -2018-11-23T11:06:27Z;Júlio Cesar;243.9354;114878302;Colombia; -2018-11-23T11:02:41Z;Ana;316.5815;116208441;Colombia; -2018-11-23T10:54:01Z;Júlio Cesar;202.5797;115495763;Colombia; -2018-11-23T10:49:39Z;Júlio Cesar;105.6358;115069065;Colombia; -2018-11-23T10:32:56Z;Júlio;4002.366;115885990;Colombia; -2018-11-23T10:21:57Z;Armando;1154.37;114372873;Colombia; -2018-11-23T10:09:03Z;Sandra;16676.49;114634852;Colombia; -2018-11-23T10:02:45Z;Eduardo;1309.687;114215390;Colombia; -2018-11-23T09:41:36Z;Eduardo;2516.793;114585560;Colombia; -2018-11-23T09:35:15Z;Ana;11623.25;115548193;Colombia; -2018-11-23T09:19:54Z;Armando;1320.95;115775936;Colombia; -2018-11-23T09:16:29Z;nathalia;3180.976;114264890;Colombia; -2018-11-23T09:13:20Z;Júlio Cesar;1451.711;114401720;Colombia; -2018-11-23T09:07:57Z;Sandra;127.1391;115763293;Colombia; -2018-11-23T08:57:29Z;Júlio;320.2934;115759713;Colombia; -2018-11-23T08:36:10Z;Ana;895.9304;115078172;Colombia; -2018-11-23T08:26:25Z;Nathália;5427.792;116040684;Colombia; -2018-11-23T08:26:11Z;Eduardo;705.8183;114567562;Colombia; -2018-11-23T08:03:43Z;Ana;10478.84;115779099;Colombia; -2018-11-23T08:02:07Z;Sandra;5436.95;115211587;Colombia; -2018-11-23T07:45:18Z;Sandra;1370.461;114837678;Colombia; -2018-11-23T07:15:23Z;Ana;3875.774;115292778;Colombia; -2018-11-23T06:55:25Z;Nathália;6634.961;115738262;Colombia; -2018-11-23T06:38:19Z;Júlio Cesar;8463.912;115047975;Colombia; -2018-11-23T06:04:00Z;Júlio Cesar;1705.193;114782971;Colombia; -2018-11-23T05:52:35Z;Nathália;1564.614;114236065;Colombia; -2018-11-23T05:40:23Z;Ana;655.3743;114365949;Colombia; -2018-11-23T04:52:17Z;Eduardo;92.47406;115478843;Colombia; -2018-11-23T04:49:24Z;Armando;1824.7;115977098;Colombia; -2018-11-23T04:47:02Z;Nathália;1247.172;115549285;Colombia; -2018-11-23T04:42:42Z;Ana;524.8627;115023628;Colombia; -2018-11-23T04:11:39Z;nathalia;1131.814;114460218;Colombia; -2018-11-23T03:43:31Z;Armando;3596.777;114601554;Colombia; -2018-11-23T03:08:19Z;Sandra;589.9871;116187490;Colombia; -2018-11-23T03:06:22Z;Júlio Cesar;2746.828;115137619;Colombia; -2018-11-23T02:50:23Z;nathalia;8098.709;115558735;Colombia; -2018-11-23T02:36:40Z;Armando;1794.331;116002607;Colombia; -2018-11-23T01:55:39Z;Júlio;5728.477;114530130;Colombia; -2018-11-23T01:22:10Z;Júlio Cesar;3547.958;114501157;Colombia; -2018-11-23T01:17:09Z;Sandra;2786.772;116243573;Colombia; -2018-11-23T00:38:12Z;Sandra;1800.277;115627232;Colombia; -2018-11-23T00:27:24Z;Júlio Cesar;2705.811;114441590;Colombia; -2018-11-23T00:10:23Z;Nathália;4247.86;115914178;Colombia; -2018-11-23T00:04:16Z;Júlio Cesar;10298.17;114208895;Colombia; -2018-11-23T00:02:31Z;Júlio Cesar;1216.848;114329118;Colombia; -2018-11-22T23:49:02Z;Sandra;4061.339;116344062;Colombia; -2018-11-22T23:45:55Z;Sandra;3722.808;115085575;Colombia; -2018-11-22T23:32:11Z;Júlio;718.8211;114606732;Colombia; -2018-11-22T23:16:49Z;Júlio;6641.174;115698089;Colombia; -2018-11-22T22:59:13Z;Ana;4437.887;115052826;Colombia; -2018-11-22T22:07:09Z;Armando;3069.873;114885958;Colombia; -2018-11-22T21:48:28Z;Júlio Cesar;4696.167;114899086;Colombia; -2018-11-22T21:30:01Z;Eduardo;63.26558;115962371;Colombia; -2018-11-22T21:09:52Z;nathalia;2993.933;115993807;Colombia; -2018-11-22T21:05:54Z;Júlio;5719.771;115035183;Colombia; -2018-11-22T20:56:19Z;Júlio;9719.817;114987213;Colombia; -2018-11-22T20:46:37Z;nathalia;945.5543;115632500;Colombia; -2018-11-22T20:41:33Z;nathalia;3708.814;116321353;Colombia; -2018-11-22T20:30:15Z;Ana;1544.099;115368246;Colombia; -2018-11-22T20:21:32Z;Sandra;2279.927;115616670;Colombia; -2018-11-22T19:46:23Z;Eduardo;5124.103;115576103;Colombia; -2018-11-22T18:59:14Z;Júlio;3552.285;115622637;Colombia; -2018-11-22T18:49:10Z;Júlio Cesar;7724.384;115172234;Colombia; -2018-11-22T18:29:21Z;Nathália;2666.657;116151757;Colombia; -2018-11-22T17:56:32Z;Sandra;3206.345;116228571;Colombia; -2018-11-22T17:56:22Z;Júlio;4446.127;116296340;Colombia; -2018-11-22T17:44:59Z;nathalia;1373.182;114343473;Colombia; -2018-11-22T17:34:44Z;Júlio Cesar;1592.765;116184329;Colombia; -2018-11-22T17:27:10Z;Eduardo;14769.65;115706425;Colombia; -2018-11-22T17:25:49Z;Júlio Cesar;375.3113;115555788;Colombia; -2018-11-22T17:21:00Z;Sandra;3965.956;115231203;Colombia; -2018-11-22T17:06:50Z;Júlio Cesar;494.1137;116389415;Colombia; -2018-11-22T16:52:54Z;Júlio Cesar;6184.134;115113114;Colombia; -2018-11-22T16:49:44Z;Nathália;8224.758;114725360;Colombia; -2018-11-22T16:49:27Z;Júlio Cesar;4538.688;115731243;Colombia; -2018-11-22T16:16:07Z;Armando;4220.608;115172532;Colombia; -2018-11-22T15:44:13Z;Eduardo;4295.312;115464246;Colombia; -2018-11-22T15:20:50Z;Armando;12410.59;114818431;Colombia; -2018-11-22T14:39:32Z;nathalia;5882.639;116059477;Colombia; -2018-11-22T14:31:03Z;Júlio;661.6124;116300022;Colombia; -2018-11-22T14:05:39Z;Ana;775.4522;116295799;Colombia; -2018-11-22T13:54:31Z;nathalia;9768.408;116084495;Colombia; -2018-11-22T13:41:53Z;Eduardo;5189.272;114211788;Colombia; -2018-11-22T13:38:35Z;Júlio Cesar;8371.163;115462452;Colombia; -2018-11-22T13:31:27Z;Sandra;2355.673;115871086;Colombia; -2018-11-22T13:24:36Z;Nathália;4551.147;114608173;Colombia; -2018-11-22T12:37:57Z;nathalia;2415.752;115393989;Colombia; -2018-11-22T12:09:41Z;Júlio;2520.053;115377758;Colombia; -2018-11-22T12:08:16Z;Júlio Cesar;3345.76;116132464;Colombia; -2018-11-22T11:38:06Z;nathalia;6022.791;115266121;Colombia; -2018-11-22T11:00:17Z;Júlio Cesar;3595.366;114450850;Colombia; -2018-11-22T10:51:01Z;Júlio Cesar;21.52411;115622017;Colombia; -2018-11-22T10:33:27Z;Armando;1378.664;114602290;Colombia; -2018-11-22T09:46:15Z;Armando;3311.804;115072765;Colombia; -2018-11-22T09:36:50Z;nathalia;527.4223;114564870;Colombia; -2018-11-22T09:16:40Z;Armando;2662.876;116242610;Colombia; -2018-11-22T09:00:35Z;Júlio Cesar;6921.156;115159150;Colombia; -2018-11-22T08:49:17Z;Eduardo;5672.805;115446608;Colombia; -2018-11-22T08:33:24Z;Sandra;4043.685;114747190;Colombia; -2018-11-22T08:09:17Z;Armando;4364.884;114663507;Colombia; -2018-11-22T08:01:16Z;Nathália;5276.528;116241558;Colombia; -2018-11-22T07:50:17Z;Armando;3522.138;114219072;Colombia; -2018-11-22T07:43:13Z;nathalia;3180.338;115113230;Colombia; -2018-11-22T07:43:02Z;Ana;396.9614;116347361;Colombia; -2018-11-22T06:52:13Z;Eduardo;254.5325;115125903;Colombia; -2018-11-22T06:36:30Z;Sandra;311.452;115330639;Colombia; -2018-11-22T06:20:50Z;Armando;1939.171;115818774;Colombia; -2018-11-22T06:06:00Z;Sandra;1618.215;115943945;Colombia; -2018-11-22T05:48:38Z;Sandra;4777.219;114897617;Colombia; -2018-11-22T05:17:54Z;Nathália;1717.518;114566839;Colombia; -2018-11-22T04:42:13Z;Armando;40.19536;114476837;Colombia; -2018-11-22T04:21:55Z;Júlio;2482.76;114839883;Colombia; -2018-11-22T04:16:16Z;Nathália;1196.11;116318323;Colombia; -2018-11-22T02:14:15Z;Sandra;4555.899;115889205;Colombia; -2018-11-22T01:54:04Z;Júlio Cesar;1344.131;115903001;Colombia; -2018-11-22T01:49:10Z;Sandra;146.5895;114903211;Colombia; -2018-11-22T01:35:24Z;Sandra;3932.76;114307056;Colombia; -2018-11-22T01:06:34Z;Nathália;659.9751;115029628;Colombia; -2018-11-22T01:05:54Z;Júlio Cesar;4659.158;115033061;Colombia; -2018-11-22T00:15:25Z;Eduardo;4798.065;114447118;Colombia; -2018-11-21T23:40:24Z;Armando;211.9418;115562361;Colombia; -2018-11-21T23:24:20Z;nathalia;3885.54;115789830;Colombia; -2018-11-21T23:21:02Z;Júlio;2212.781;116175468;Colombia; -2018-11-21T23:19:36Z;Ana;288.2747;116165017;Colombia; -2018-11-21T23:13:05Z;nathalia;3431.808;114682075;Colombia; -2018-11-21T23:12:45Z;Ana;2358.415;115043665;Colombia; -2018-11-21T23:04:43Z;Ana;916.9821;116236114;Colombia; -2018-11-21T22:56:44Z;Júlio Cesar;62.26592;115116761;Colombia; -2018-11-21T22:50:53Z;Eduardo;3395.758;115676950;Colombia; -2018-11-21T22:48:09Z;Eduardo;4853.893;114967287;Colombia; -2018-11-21T22:46:11Z;Júlio Cesar;2011.823;115702331;Colombia; -2018-11-21T22:34:52Z;Armando;1030.916;115941248;Colombia; -2018-11-21T22:28:35Z;nathalia;3984.646;115567370;Colombia; -2018-11-21T22:27:44Z;Armando;260.019;115633826;Colombia; -2018-11-21T22:22:19Z;Sandra;2862.43;115766004;Colombia; -2018-11-21T22:14:30Z;Ana;731.5583;115469688;Colombia; -2018-11-21T21:56:19Z;Sandra;627.4984;115738402;Colombia; -2018-11-21T21:45:23Z;Júlio;3040.136;115110494;Colombia; -2018-11-21T21:36:49Z;Eduardo;2404.305;114801471;Colombia; -2018-11-21T21:27:24Z;Armando;271.9652;115996646;Colombia; -2018-11-21T21:00:10Z;Eduardo;8897.077;114757059;Colombia; -2018-11-21T20:59:44Z;Nathália;7615.356;116192639;Colombia; -2018-11-21T20:50:21Z;Júlio;315.4268;115826405;Colombia; -2018-11-21T20:27:09Z;Sandra;680.772;114273776;Colombia; -2018-11-21T19:30:54Z;Júlio;10.1695;115606599;Colombia; -2018-11-21T19:19:03Z;Júlio;4922.495;115871102;Colombia; -2018-11-21T18:21:26Z;Nathália;1546.982;114874570;Colombia; -2018-11-21T18:14:13Z;Nathália;2519.412;115899966;Colombia; -2018-11-21T18:13:21Z;nathalia;120.4914;114992545;Colombia; -2018-11-21T17:23:50Z;Eduardo;631.1033;115642158;Colombia; -2018-11-21T17:13:45Z;Ana;5764.148;115247243;Colombia; -2018-11-21T17:12:23Z;Ana;5205.555;116179042;Colombia; -2018-11-21T17:02:25Z;Nathália;4147.299;116242949;Colombia; -2018-11-21T16:39:52Z;Sandra;9356.514;115692308;Colombia; -2018-11-21T16:32:53Z;Eduardo;4264.66;115957170;Colombia; -2018-11-21T16:18:23Z;Sandra;1551.736;116178447;Colombia; -2018-11-21T16:04:03Z;nathalia;3432.822;114603059;Colombia; -2018-11-21T15:52:44Z;Ana;2902.314;114918846;Colombia; -2018-11-21T15:42:29Z;Armando;12965.56;115157187;Colombia; -2018-11-21T15:38:12Z;Armando;400.0189;114662021;Colombia; -2018-11-21T14:43:11Z;Armando;2327.243;116330593;Colombia; -2018-11-21T14:38:10Z;Eduardo;3120.325;116399325;Colombia; -2018-11-21T14:35:12Z;Eduardo;939.5531;114314689;Colombia; -2018-11-21T14:23:31Z;Armando;296.4077;114606119;Colombia; -2018-11-21T14:21:32Z;Armando;645.805;114773216;Colombia; -2018-11-21T14:04:09Z;Sandra;4124.098;116392079;Colombia; -2018-11-21T13:54:15Z;Júlio Cesar;2154.905;115088690;Colombia; -2018-11-21T13:52:46Z;Armando;577.4278;115487119;Colombia; -2018-11-21T13:25:49Z;Júlio;396.8033;115658539;Colombia; -2018-11-21T13:21:36Z;Eduardo;10323.88;115198262;Colombia; -2018-11-21T13:13:11Z;Júlio Cesar;18.76464;115091261;Colombia; -2018-11-21T13:10:07Z;Sandra;6715.512;114875587;Colombia; -2018-11-21T12:58:29Z;Nathália;312.6511;115827289;Colombia; -2018-11-21T12:54:36Z;Armando;1075.021;115031208;Colombia; -2018-11-21T12:53:19Z;Nathália;352.2498;115656062;Colombia; -2018-11-21T12:24:07Z;Ana;7382.3;115950296;Colombia; -2018-11-21T12:09:45Z;Sandra;3708.693;114654551;Colombia; -2018-11-21T11:57:16Z;Sandra;1830.478;116360016;Colombia; -2018-11-21T11:51:53Z;Armando;7673.175;115207441;Colombia; -2018-11-21T11:50:15Z;Sandra;7947.295;114697742;Colombia; -2018-11-21T11:38:12Z;Júlio Cesar;3549.271;114502586;Colombia; -2018-11-21T11:22:18Z;Ana;1400.615;114678123;Colombia; -2018-11-21T11:14:39Z;Eduardo;1940.089;116392044;Colombia; -2018-11-21T11:14:33Z;Sandra;2560.162;114354596;Colombia; -2018-11-21T10:08:28Z;Júlio Cesar;1649.647;115132509;Colombia; -2018-11-21T10:02:21Z;Armando;8718.866;116083825;Colombia; -2018-11-21T09:51:31Z;Ana;437.9904;115615502;Colombia; -2018-11-21T09:41:37Z;Júlio Cesar;1498.79;114786369;Colombia; -2018-11-21T08:29:59Z;Nathália;205.4315;115219454;Colombia; -2018-11-21T07:44:06Z;Júlio;1015.171;114354122;Colombia; -2018-11-21T07:35:28Z;nathalia;117.9427;115768278;Colombia; -2018-11-21T07:33:45Z;Nathália;4588.286;114282570;Colombia; -2018-11-21T07:25:18Z;Sandra;1123.621;115854955;Colombia; -2018-11-21T07:24:56Z;Ana;4363.496;115458756;Colombia; -2018-11-21T06:59:01Z;Eduardo;3649.742;114532235;Colombia; -2018-11-21T06:19:27Z;Eduardo;4189.416;115299392;Colombia; -2018-11-21T06:05:16Z;Eduardo;7155.061;115711229;Colombia; -2018-11-21T05:58:08Z;Nathália;3414.446;115494186;Colombia; -2018-11-21T05:24:10Z;Ana;6152.156;115254345;Colombia; -2018-11-21T05:01:08Z;Júlio Cesar;3902.947;114582597;Colombia; -2018-11-21T04:54:53Z;Júlio;13577.78;114455544;Colombia; -2018-11-21T04:53:31Z;Nathália;9252.075;115650965;Colombia; -2018-11-21T04:48:16Z;Nathália;4756.972;115032895;Colombia; -2018-11-21T04:37:12Z;nathalia;884.6706;115254697;Colombia; -2018-11-21T04:37:07Z;Nathália;4434.361;114672902;Colombia; -2018-11-21T04:23:12Z;Júlio;2021.323;115648918;Colombia; -2018-11-21T04:16:48Z;Sandra;3981.645;116156067;Colombia; -2018-11-21T04:15:40Z;Nathália;707.7848;116162854;Colombia; -2018-11-21T04:04:12Z;Nathália;290.6914;115629473;Colombia; -2018-11-21T04:02:37Z;Júlio;6249.016;114364867;Colombia; -2018-11-21T03:36:06Z;Júlio;5954.111;114990832;Colombia; -2018-11-21T03:22:43Z;Ana;176.9333;115416702;Colombia; -2018-11-21T02:48:37Z;nathalia;3073.322;115468534;Colombia; -2018-11-21T02:00:10Z;nathalia;5722.315;114279112;Colombia; -2018-11-21T01:30:38Z;Sandra;5038.002;115644766;Colombia; -2018-11-21T01:24:14Z;Nathália;4089.815;114784649;Colombia; -2018-11-21T01:23:15Z;Júlio;2007.979;114369654;Colombia; -2018-11-21T00:57:43Z;Armando;3952.6;115564720;Colombia; -2018-11-21T00:55:42Z;Eduardo;11153.63;114295534;Colombia; -2018-11-21T00:55:27Z;Ana;1567.382;115875613;Colombia; -2018-11-21T00:53:28Z;Sandra;683.3626;116012128;Colombia; -2018-11-21T00:16:40Z;Júlio;2311.096;115501788;Colombia; -2018-11-21T00:12:13Z;Sandra;1066.275;115822983;Colombia; -2018-11-21T00:02:55Z;Júlio;640.3435;115442825;Colombia; -2018-11-20T23:29:55Z;nathalia;236.5359;115443637;Colombia; -2018-11-20T22:46:54Z;Eduardo;3239.762;115827539;Colombia; -2018-11-20T22:15:25Z;Sandra;10923.84;115974882;Colombia; -2018-11-20T22:10:47Z;Eduardo;2109.821;114256290;Colombia; -2018-11-20T22:04:46Z;Júlio;10853.39;115264089;Colombia; -2018-11-20T20:25:56Z;Júlio;1980.486;115641769;Colombia; -2018-11-20T20:25:38Z;Nathália;3400.968;115342218;Colombia; -2018-11-20T20:04:48Z;Ana;2863.686;115044121;Colombia; -2018-11-20T20:00:54Z;Nathália;88.08591;114869921;Colombia; -2018-11-20T19:49:38Z;Nathália;183.5247;114640672;Colombia; -2018-11-20T19:49:16Z;nathalia;2143.714;114404932;Colombia; -2018-11-20T19:40:00Z;Sandra;13106.86;114851363;Colombia; -2018-11-20T19:39:38Z;Sandra;1601.815;115808608;Colombia; -2018-11-20T19:11:23Z;Júlio;575.1436;115581740;Colombia; -2018-11-20T18:57:44Z;Sandra;875.5247;114691356;Colombia; -2018-11-20T18:55:21Z;Júlio Cesar;2511.988;115785045;Colombia; -2018-11-20T18:40:38Z;Sandra;2221.526;114359402;Colombia; -2018-11-20T18:34:10Z;Júlio Cesar;2406.837;114969920;Colombia; -2018-11-20T18:33:21Z;nathalia;7743.647;114742166;Colombia; -2018-11-20T18:32:45Z;Júlio;1708.917;114434430;Colombia; -2018-11-20T18:32:23Z;nathalia;100.297;114673577;Colombia; -2018-11-20T18:04:14Z;Armando;1024.733;115404572;Colombia; -2018-11-20T18:03:55Z;Ana;456.5387;115694703;Colombia; -2018-11-20T18:02:07Z;Nathália;644.2328;115663153;Colombia; -2018-11-20T17:55:57Z;Armando;6798.053;115808301;Colombia; -2018-11-20T17:40:18Z;Nathália;5116.501;116114687;Colombia; -2018-11-20T17:39:49Z;nathalia;2055.647;115429293;Colombia; -2018-11-20T17:33:27Z;Júlio;3938.49;114903085;Colombia; -2018-11-20T17:30:22Z;Nathália;7050.73;116348113;Colombia; -2018-11-20T17:20:56Z;Júlio Cesar;4444.114;116109096;Colombia; -2018-11-20T17:13:13Z;nathalia;11220.11;115810475;Colombia; -2018-11-20T16:54:03Z;Ana;1765.726;115056604;Colombia; -2018-11-20T16:46:14Z;nathalia;1596.978;115827045;Colombia; -2018-11-20T16:34:45Z;Júlio Cesar;137.4904;115133345;Colombia; -2018-11-20T16:22:39Z;Nathália;576.4717;114807875;Colombia; -2018-11-20T16:22:04Z;nathalia;676.4055;114978971;Colombia; -2018-11-20T16:08:10Z;nathalia;1862.204;114541603;Colombia; -2018-11-20T15:29:52Z;Sandra;3963.8;114282394;Colombia; -2018-11-20T15:17:23Z;Sandra;9291.129;115570823;Colombia; -2018-11-20T14:57:31Z;Júlio Cesar;3390.279;114327846;Colombia; -2018-11-20T14:51:37Z;Nathália;10040.38;115086941;Colombia; -2018-11-20T14:49:06Z;Júlio Cesar;1813.018;115321413;Colombia; -2018-11-20T14:07:58Z;Eduardo;1911.904;115695829;Colombia; -2018-11-20T14:01:48Z;Ana;1724.19;116005433;Colombia; -2018-11-20T13:57:59Z;nathalia;2981.922;115241820;Colombia; -2018-11-20T13:38:30Z;Júlio;1903.306;114507862;Colombia; -2018-11-20T13:27:24Z;Armando;8640.371;114442985;Colombia; -2018-11-20T13:21:59Z;Júlio Cesar;287.2745;116279900;Colombia; -2018-11-20T13:20:54Z;Sandra;2979.176;115485957;Colombia; -2018-11-20T13:01:38Z;Júlio Cesar;33.15591;114781930;Colombia; -2018-11-20T12:40:03Z;nathalia;3096.666;116116124;Colombia; -2018-11-20T12:38:28Z;Júlio Cesar;3330.545;115744913;Colombia; -2018-11-20T12:21:10Z;nathalia;5059.729;115789804;Colombia; -2018-11-20T11:51:47Z;Júlio;165.0712;116179722;Colombia; -2018-11-20T11:43:42Z;Eduardo;799.8047;114539295;Colombia; -2018-11-20T11:42:29Z;Eduardo;3385.63;115293749;Colombia; -2018-11-20T11:41:52Z;Sandra;3944.572;114776144;Colombia; -2018-11-20T11:39:00Z;Júlio;2579.591;114500089;Colombia; -2018-11-20T10:39:39Z;Eduardo;262.3733;114569469;Colombia; -2018-11-20T09:29:43Z;nathalia;2023.353;116041743;Colombia; -2018-11-20T08:57:42Z;nathalia;640.5345;115573145;Colombia; -2018-11-20T08:55:22Z;Júlio;3035.756;114368831;Colombia; -2018-11-20T08:45:30Z;Armando;4633.133;115196066;Colombia; -2018-11-20T08:27:19Z;Armando;767.9483;114338573;Colombia; -2018-11-20T07:57:37Z;Ana;457.7602;116143925;Colombia; -2018-11-20T07:27:37Z;Eduardo;488.6971;115898156;Colombia; -2018-11-20T07:21:17Z;Armando;2224.435;115760791;Colombia; -2018-11-20T06:03:56Z;nathalia;959.4203;114459695;Colombia; -2018-11-20T05:50:18Z;Nathália;3412.808;115917321;Colombia; -2018-11-20T05:43:44Z;Eduardo;703.5548;116045859;Colombia; -2018-11-20T05:04:58Z;Júlio Cesar;262.9548;116358282;Colombia; -2018-11-20T04:30:26Z;Nathália;5062.208;116118147;Colombia; -2018-11-20T04:22:07Z;Ana;1704.424;116136757;Colombia; -2018-11-20T04:02:22Z;Nathália;1560.999;115783862;Colombia; -2018-11-20T03:48:59Z;Eduardo;680.7435;115883817;Colombia; -2018-11-20T03:14:21Z;Júlio Cesar;1771.424;115010817;Colombia; -2018-11-20T03:09:43Z;Júlio;3731.653;114709648;Colombia; -2018-11-20T03:02:16Z;Sandra;787.893;115515402;Colombia; -2018-11-20T03:00:09Z;Sandra;389.7657;114445803;Colombia; -2018-11-20T02:44:38Z;Nathália;65.47264;116248239;Colombia; -2018-11-20T02:44:17Z;Sandra;4507.634;116011047;Colombia; -2018-11-20T02:21:54Z;Júlio Cesar;5677.659;114232120;Colombia; -2018-11-20T02:14:58Z;nathalia;5054.569;116164598;Colombia; -2018-11-20T02:11:41Z;Júlio;5693.75;114910596;Colombia; -2018-11-20T01:40:45Z;Sandra;1098.063;115148395;Colombia; -2018-11-20T01:36:23Z;nathalia;341.2012;114394968;Colombia; -2018-11-20T01:26:50Z;Nathália;1356.595;114850471;Colombia; -2018-11-20T01:18:46Z;Sandra;3017.736;115871020;Colombia; -2018-11-20T01:14:09Z;nathalia;808.8132;114339678;Colombia; -2018-11-20T01:13:25Z;Nathália;20968.6;114839218;Colombia; -2018-11-20T01:11:13Z;Júlio;1014.966;116351723;Colombia; -2018-11-20T00:23:21Z;Júlio;30.55986;115975653;Colombia; -2018-11-19T23:43:29Z;Sandra;3874.594;116115917;Colombia; -2018-11-19T23:43:00Z;Sandra;10337.29;115187296;Colombia; -2018-11-19T23:37:31Z;Nathália;1661.549;115054648;Colombia; -2018-11-19T23:18:29Z;Nathália;6476.241;115230708;Colombia; -2018-11-19T23:18:25Z;Eduardo;8079.657;116304649;Colombia; -2018-11-19T22:52:49Z;Júlio Cesar;1427.345;115329489;Colombia; -2018-11-19T22:46:35Z;Ana;940.3509;116312223;Colombia; -2018-11-19T22:41:52Z;Sandra;622.0566;115830196;Colombia; -2018-11-19T22:22:26Z;Júlio Cesar;7886.397;114563709;Colombia; -2018-11-19T22:19:13Z;Armando;151.9191;115752533;Colombia; -2018-11-19T21:58:26Z;Ana;1325.698;114749469;Colombia; -2018-11-19T21:16:25Z;Júlio Cesar;9039.956;116376934;Colombia; -2018-11-19T21:14:43Z;Júlio Cesar;3729.814;114474571;Colombia; -2018-11-19T20:56:14Z;Júlio Cesar;1515.491;115333281;Colombia; -2018-11-19T20:53:40Z;Nathália;112.9674;114944573;Colombia; -2018-11-19T20:38:34Z;Armando;211.5739;115179930;Colombia; -2018-11-19T20:31:23Z;Nathália;6510.304;114274512;Colombia; -2018-11-19T20:24:55Z;Armando;4005.118;115544941;Colombia; -2018-11-19T20:12:25Z;nathalia;11104.38;114874890;Colombia; -2018-11-19T19:48:56Z;Armando;547.9653;116161327;Colombia; -2018-11-19T19:09:28Z;Júlio Cesar;5637.131;115290910;Colombia; -2018-11-19T18:58:13Z;Sandra;1309.843;116385109;Colombia; -2018-11-19T18:54:37Z;Júlio;4575.093;115367727;Colombia; -2018-11-19T18:33:55Z;Armando;5580.309;115310240;Colombia; -2018-11-19T18:30:24Z;Eduardo;2386.497;116016914;Colombia; -2018-11-19T18:23:30Z;Júlio;4338.597;115988509;Colombia; -2018-11-19T18:08:40Z;Júlio;159.0736;114321131;Colombia; -2018-11-19T17:39:31Z;Eduardo;2439.808;115851663;Colombia; -2018-11-19T17:24:57Z;Eduardo;3026.521;114344861;Colombia; -2018-11-19T17:02:12Z;Sandra;117.3218;114530323;Colombia; -2018-11-19T16:50:11Z;Sandra;722.6101;116341030;Colombia; -2018-11-19T16:40:48Z;Sandra;1212.45;114825975;Colombia; -2018-11-19T16:02:15Z;Ana;51.07896;115046979;Colombia; -2018-11-19T15:54:20Z;Nathália;849.0232;116391161;Colombia; -2018-11-19T15:29:14Z;nathalia;2737.873;114321011;Colombia; -2018-11-19T14:54:30Z;nathalia;984.0742;114862072;Colombia; -2018-11-19T14:42:39Z;Júlio;3558.256;114825535;Colombia; -2018-11-19T14:42:10Z;Sandra;4589.317;114776836;Colombia; -2018-11-19T14:40:42Z;Júlio Cesar;2979.834;114958563;Colombia; -2018-11-19T13:52:15Z;Armando;1108.609;115136237;Colombia; -2018-11-19T13:38:57Z;Nathália;2295.216;116123063;Colombia; -2018-11-19T13:10:36Z;Eduardo;7050.669;115673210;Colombia; -2018-11-19T12:50:58Z;Ana;1185.573;115760642;Colombia; -2018-11-19T12:14:54Z;Júlio;7295.026;115327495;Colombia; -2018-11-19T12:10:34Z;Júlio;677.8602;115369041;Colombia; -2018-11-19T12:00:00Z;nathalia;335.732;115622918;Colombia; -2018-11-19T11:22:22Z;Júlio;563.5186;115969188;Colombia; -2018-11-19T11:16:48Z;Sandra;672.9202;115023125;Colombia; -2018-11-19T10:54:59Z;Nathália;2157.486;115448545;Colombia; -2018-11-19T10:34:39Z;Ana;872.6968;115883115;Colombia; -2018-11-19T10:25:26Z;Nathália;4300.11;115119091;Colombia; -2018-11-19T10:15:21Z;Armando;444.6421;115903255;Colombia; -2018-11-19T09:42:06Z;Eduardo;2575.977;115860349;Colombia; -2018-11-19T09:29:21Z;Nathália;4356.755;114368723;Colombia; -2018-11-19T08:41:53Z;Nathália;438.5126;114616275;Colombia; -2018-11-19T08:41:21Z;nathalia;9379.742;115172416;Colombia; -2018-11-19T08:32:07Z;Júlio Cesar;17113.99;116027189;Colombia; -2018-11-19T08:28:32Z;Nathália;430.7367;115179879;Colombia; -2018-11-19T08:28:08Z;Nathália;6350.192;116214287;Colombia; -2018-11-19T08:06:59Z;nathalia;760.3296;115960602;Colombia; -2018-11-19T07:28:50Z;Júlio;9503.565;114207882;Colombia; -2018-11-19T07:04:57Z;Nathália;5127.224;114998318;Colombia; -2018-11-19T06:39:39Z;Armando;3254.665;114610188;Colombia; -2018-11-19T06:24:29Z;Nathália;9445.226;115953842;Colombia; -2018-11-19T06:12:32Z;Sandra;9364.414;115978185;Colombia; -2018-11-19T06:04:34Z;Nathália;1530.554;115540922;Colombia; -2018-11-19T05:57:28Z;Sandra;12426.65;114280541;Colombia; -2018-11-19T05:49:24Z;Nathália;559.3975;116202774;Colombia; -2018-11-19T05:48:31Z;Nathália;352.1966;115719749;Colombia; -2018-11-19T05:00:39Z;Júlio;6834.245;114775053;Colombia; -2018-11-19T04:46:41Z;nathalia;2495.738;115963750;Colombia; -2018-11-19T04:36:08Z;Júlio;395.7294;115464391;Colombia; -2018-11-19T04:24:46Z;Sandra;1023.534;115597811;Colombia; -2018-11-19T04:06:04Z;Ana;485.1225;116340974;Colombia; -2018-11-19T04:03:08Z;Júlio Cesar;699.0397;114715028;Colombia; -2018-11-19T03:58:46Z;Sandra;241.9004;116003126;Colombia; -2018-11-19T03:23:59Z;Júlio;1613.545;115161924;Colombia; -2018-11-19T03:00:26Z;Ana;588.6903;114668795;Colombia; -2018-11-19T02:49:09Z;Sandra;1133.487;116204172;Colombia; -2018-11-19T02:14:38Z;Eduardo;700.2562;116319076;Colombia; -2018-11-19T02:08:47Z;Júlio;1771.337;116137525;Colombia; -2018-11-19T02:07:28Z;Sandra;4658.223;114857861;Colombia; -2018-11-19T01:29:53Z;Nathália;792.5746;114418879;Colombia; -2018-11-19T01:07:04Z;Sandra;227.6753;114658780;Colombia; -2018-11-19T00:49:10Z;Ana;2476.486;114209793;Colombia; -2018-11-19T00:46:13Z;nathalia;1890.882;115330213;Colombia; -2018-11-19T00:38:44Z;Júlio;1030.634;115138722;Colombia; -2018-11-19T00:27:30Z;nathalia;1059.858;115609764;Colombia; -2018-11-19T00:08:07Z;Sandra;4901.467;115955770;Colombia; -2018-11-19T00:01:25Z;Eduardo;4762.89;115816090;Colombia; -2018-11-18T23:47:05Z;Armando;3811.011;114352338;Colombia; -2018-11-18T23:46:01Z;Eduardo;483.1601;114501286;Colombia; -2018-11-18T22:33:42Z;Armando;1218.981;115462684;Colombia; -2018-11-18T22:31:09Z;nathalia;6957.287;114504267;Colombia; -2018-11-18T22:04:34Z;Eduardo;7728.155;116303880;Colombia; -2018-11-18T21:43:23Z;Armando;9098.702;115253918;Colombia; -2018-11-18T21:27:50Z;Nathália;126.4794;115307726;Colombia; -2018-11-18T20:56:33Z;Sandra;4584.336;115325217;Colombia; -2018-11-18T20:53:52Z;nathalia;3407.497;114625003;Colombia; -2018-11-18T20:48:23Z;Júlio Cesar;1461.455;115139738;Colombia; -2018-11-18T20:19:18Z;Armando;1495.831;115449389;Colombia; -2018-11-18T20:16:10Z;Nathália;647.9663;116023958;Colombia; -2018-11-18T20:14:54Z;Nathália;5444.204;114247393;Colombia; -2018-11-18T20:08:27Z;Nathália;2309.857;115401173;Colombia; -2018-11-18T19:57:06Z;nathalia;625.8334;115537323;Colombia; -2018-11-18T19:52:20Z;Nathália;4950.228;114360421;Colombia; -2018-11-18T19:26:50Z;Sandra;1448.372;114771639;Colombia; -2018-11-18T19:15:48Z;Sandra;7498.256;114468456;Colombia; -2018-11-18T19:08:31Z;Júlio Cesar;5327.127;114461029;Colombia; -2018-11-18T18:45:32Z;Nathália;125.342;114594091;Colombia; -2018-11-18T18:42:53Z;Júlio;1509.674;115495249;Colombia; -2018-11-18T17:19:50Z;Júlio;500.0798;114350018;Colombia; -2018-11-18T17:13:51Z;Júlio Cesar;1946.26;115264717;Colombia; -2018-11-18T17:02:05Z;Eduardo;545.8296;114344941;Colombia; -2018-11-18T17:00:35Z;Júlio;203.4463;116137816;Colombia; -2018-11-18T16:50:27Z;Ana;607.3561;115344114;Colombia; -2018-11-18T16:36:03Z;Júlio Cesar;1784.309;115281043;Colombia; -2018-11-18T16:28:46Z;Armando;689.8021;115371969;Colombia; -2018-11-18T16:16:24Z;Nathália;288.6605;116072215;Colombia; -2018-11-18T16:10:45Z;Eduardo;258.219;115659168;Colombia; -2018-11-18T15:49:25Z;Nathália;2470.193;115015192;Colombia; -2018-11-18T15:23:16Z;Armando;259.1711;114259052;Colombia; -2018-11-18T15:03:12Z;Armando;5326.356;114483771;Colombia; -2018-11-18T15:00:32Z;Armando;1210.404;114314565;Colombia; -2018-11-18T14:38:46Z;Júlio Cesar;4292.044;116114083;Colombia; -2018-11-18T14:36:11Z;Júlio;950.6483;114292523;Colombia; -2018-11-18T14:28:26Z;Nathália;6230.47;116225274;Colombia; -2018-11-18T14:17:50Z;Eduardo;2606.234;114260787;Colombia; -2018-11-18T13:52:05Z;Eduardo;383.3099;115955409;Colombia; -2018-11-18T13:26:34Z;Júlio;10867.04;116229076;Colombia; -2018-11-18T13:05:09Z;Eduardo;2902.252;114742716;Colombia; -2018-11-18T12:59:24Z;Sandra;4253.174;114322071;Colombia; -2018-11-18T12:58:08Z;Armando;3248.685;115651545;Colombia; -2018-11-18T12:26:15Z;Armando;519.6098;115881393;Colombia; -2018-11-18T12:22:03Z;nathalia;390.0127;114471197;Colombia; -2018-11-18T11:29:22Z;Nathália;2982.341;116065871;Colombia; -2018-11-18T11:25:06Z;nathalia;2098.773;115532335;Colombia; -2018-11-18T10:49:55Z;Ana;1468.774;115392137;Colombia; -2018-11-18T10:48:49Z;Ana;1357.498;114267227;Colombia; -2018-11-18T10:23:48Z;Nathália;3566.945;114719462;Colombia; -2018-11-18T10:05:40Z;Eduardo;7475.264;114224705;Colombia; -2018-11-18T09:10:35Z;Eduardo;736.4177;116028524;Colombia; -2018-11-18T08:45:51Z;Ana;4226.261;116374006;Colombia; -2018-11-18T08:39:49Z;Ana;2345.823;115235743;Colombia; -2018-11-18T08:17:27Z;Júlio Cesar;3101.508;114204418;Colombia; -2018-11-18T08:13:27Z;Júlio Cesar;6259.296;114935425;Colombia; -2018-11-18T07:51:49Z;nathalia;9265.154;115498126;Colombia; -2018-11-18T07:38:37Z;Nathália;5575.97;115994356;Colombia; -2018-11-18T07:33:51Z;Sandra;911.2562;116222946;Colombia; -2018-11-18T07:24:29Z;Ana;57.39407;116236194;Colombia; -2018-11-18T06:58:58Z;Júlio;7971.702;115732482;Colombia; -2018-11-18T06:55:31Z;nathalia;608.7547;114892445;Colombia; -2018-11-18T06:47:53Z;Júlio;15230.64;115335198;Colombia; -2018-11-18T06:19:50Z;Júlio Cesar;710.9522;114828327;Colombia; -2018-11-18T06:19:49Z;nathalia;1865.372;114222451;Colombia; -2018-11-18T05:55:58Z;Ana;4450.074;115135300;Colombia; -2018-11-18T05:31:49Z;Júlio Cesar;3712.805;114992912;Colombia; -2018-11-18T05:28:42Z;Ana;4976.705;115033312;Colombia; -2018-11-18T04:56:43Z;Júlio Cesar;44.90074;115673437;Colombia; -2018-11-18T04:31:17Z;Ana;92.92069;115204355;Colombia; -2018-11-18T04:21:36Z;Nathália;4228.28;115847532;Colombia; -2018-11-18T04:08:09Z;nathalia;6302.578;115675816;Colombia; -2018-11-18T04:02:51Z;Armando;1472.072;114391003;Colombia; -2018-11-18T03:50:54Z;Sandra;5317.445;115977820;Colombia; -2018-11-18T03:39:36Z;Armando;621.296;115355592;Colombia; -2018-11-18T03:39:08Z;Eduardo;2291.884;115635868;Colombia; -2018-11-18T03:19:49Z;Nathália;990.8055;114219985;Colombia; -2018-11-18T03:03:11Z;Sandra;4878.273;115362353;Colombia; -2018-11-18T02:58:51Z;Júlio Cesar;229.032;114750775;Colombia; -2018-11-18T02:55:11Z;Júlio Cesar;3120.184;115157433;Colombia; -2018-11-18T02:49:25Z;Nathália;2801.758;114847496;Colombia; -2018-11-18T02:26:53Z;Sandra;1937.626;116059938;Colombia; -2018-11-18T02:19:43Z;Ana;2043.799;114450314;Colombia; -2018-11-18T02:13:12Z;Eduardo;14817.9;116158769;Colombia; -2018-11-18T02:12:56Z;Nathália;1568.105;115799880;Colombia; -2018-11-18T02:03:58Z;nathalia;7213.115;114806534;Colombia; -2018-11-18T01:56:19Z;Júlio;8360.055;114717973;Colombia; -2018-11-18T01:38:14Z;Nathália;681.446;116276984;Colombia; -2018-11-18T00:47:41Z;Júlio Cesar;2642.504;114990640;Colombia; -2018-11-18T00:41:14Z;Nathália;417.8381;114826722;Colombia; -2018-11-18T00:33:53Z;nathalia;742.3303;114592084;Colombia; -2018-11-18T00:24:46Z;Júlio;15682.56;115759583;Colombia; -2018-11-18T00:23:44Z;Júlio Cesar;3109.934;115640059;Colombia; -2018-11-17T23:51:08Z;Sandra;631.0943;115814747;Colombia; -2018-11-17T23:36:21Z;Armando;7161.344;115910022;Colombia; -2018-11-17T23:11:35Z;Eduardo;509.1924;115000070;Colombia; -2018-11-17T22:59:08Z;Ana;1319.872;115204409;Colombia; -2018-11-17T22:54:21Z;Armando;69.35116;116219810;Colombia; -2018-11-17T22:33:07Z;Eduardo;1287.722;114797339;Colombia; -2018-11-17T22:29:19Z;Júlio Cesar;1968.725;114528544;Colombia; -2018-11-17T21:58:32Z;Armando;11750.13;115123114;Colombia; -2018-11-17T21:29:21Z;Armando;1525.148;114651584;Colombia; -2018-11-17T21:16:43Z;Júlio Cesar;863.351;114862381;Colombia; -2018-11-17T21:10:16Z;Júlio;480.3313;115665247;Colombia; -2018-11-17T20:45:16Z;nathalia;7155.469;114747497;Colombia; -2018-11-17T20:45:04Z;Ana;418.0462;115198418;Colombia; -2018-11-17T20:17:25Z;Júlio;1866.222;114920010;Colombia; -2018-11-17T20:13:59Z;nathalia;1787.964;115771250;Colombia; -2018-11-17T19:54:16Z;Júlio Cesar;3752.891;115036880;Colombia; -2018-11-17T19:50:18Z;Sandra;5810.391;114250214;Colombia; -2018-11-17T19:45:51Z;Júlio Cesar;1108.827;115512405;Colombia; -2018-11-17T19:26:39Z;Armando;1046.405;115930718;Colombia; -2018-11-17T19:16:05Z;Armando;2242.337;116043904;Colombia; -2018-11-17T19:07:17Z;Nathália;762.9241;115000665;Colombia; -2018-11-17T19:04:16Z;Júlio Cesar;620.5022;114526227;Colombia; -2018-11-17T18:54:00Z;Armando;6865.985;115618032;Colombia; -2018-11-17T18:52:49Z;Júlio;2892.864;115687252;Colombia; -2018-11-17T18:19:54Z;Júlio;1636.034;116298767;Colombia; -2018-11-17T17:41:23Z;Ana;1857.943;114274467;Colombia; -2018-11-17T17:22:16Z;nathalia;4927.6;114287499;Colombia; -2018-11-17T17:18:21Z;Júlio;4303.285;115745675;Colombia; -2018-11-17T17:01:58Z;Júlio Cesar;1054.59;114316148;Colombia; -2018-11-17T16:24:57Z;Eduardo;8979.227;115779226;Colombia; -2018-11-17T16:02:30Z;Júlio;1141.849;115155859;Colombia; -2018-11-17T15:21:36Z;Júlio Cesar;4910.059;115129623;Colombia; -2018-11-17T15:10:36Z;Júlio Cesar;117.0156;114208883;Colombia; -2018-11-17T14:47:59Z;Armando;10754.04;114658926;Colombia; -2018-11-17T14:25:20Z;Júlio Cesar;1888.761;115558187;Colombia; -2018-11-17T14:11:12Z;nathalia;6752.77;114333151;Colombia; -2018-11-17T14:02:27Z;Nathália;7493.605;115969539;Colombia; -2018-11-17T13:51:44Z;Ana;1246.431;116228677;Colombia; -2018-11-17T13:45:31Z;Nathália;4680.366;115925826;Colombia; -2018-11-17T13:35:03Z;Júlio;2423.154;114649806;Colombia; -2018-11-17T13:29:15Z;Ana;661.0593;114566664;Colombia; -2018-11-17T13:10:57Z;Ana;4431.985;114273509;Colombia; -2018-11-17T13:07:12Z;Ana;15205.03;115702326;Colombia; -2018-11-17T12:46:12Z;Eduardo;4150.244;114884017;Colombia; -2018-11-17T11:53:38Z;Nathália;8128.519;116050064;Colombia; -2018-11-17T11:51:56Z;Sandra;11020.17;115131915;Colombia; -2018-11-17T11:24:49Z;Júlio Cesar;3695.426;114266724;Colombia; -2018-11-17T11:13:27Z;Ana;8459.706;115740906;Colombia; -2018-11-17T11:11:45Z;Armando;7487.231;116179919;Colombia; -2018-11-17T10:59:06Z;nathalia;5635.043;115118402;Colombia; -2018-11-17T10:56:48Z;Armando;2884.692;114525738;Colombia; -2018-11-17T10:42:31Z;Armando;1122.878;114853601;Colombia; -2018-11-17T10:41:07Z;Eduardo;195.7432;114763443;Colombia; -2018-11-17T10:21:17Z;Eduardo;8028.907;114815169;Colombia; -2018-11-17T10:06:10Z;Eduardo;897.4629;115135278;Colombia; -2018-11-17T09:48:16Z;Júlio Cesar;11608.48;115282461;Colombia; -2018-11-17T09:11:45Z;Eduardo;168.9395;115782306;Colombia; -2018-11-17T09:07:06Z;Júlio Cesar;9693.868;115233265;Colombia; -2018-11-17T09:02:26Z;Júlio;698.842;115017566;Colombia; -2018-11-17T09:01:33Z;Nathália;4277.604;114842658;Colombia; -2018-11-17T08:37:40Z;Nathália;3857.086;115285855;Colombia; -2018-11-17T07:54:32Z;Sandra;7831.263;114226369;Colombia; -2018-11-17T07:40:21Z;Eduardo;1497.611;115027875;Colombia; -2018-11-17T07:37:50Z;Júlio Cesar;8520.928;115778766;Colombia; -2018-11-17T07:35:00Z;Armando;621.9272;114590963;Colombia; -2018-11-17T07:25:54Z;Ana;1407.874;115877070;Colombia; -2018-11-17T07:22:45Z;Júlio;4604.145;115938117;Colombia; -2018-11-17T07:19:29Z;nathalia;4440.16;115935522;Colombia; -2018-11-17T07:13:42Z;Eduardo;1939.202;116204923;Colombia; -2018-11-17T07:08:44Z;Sandra;1264.921;115201961;Colombia; -2018-11-17T07:07:48Z;Nathália;4650.846;114671047;Colombia; -2018-11-17T07:07:12Z;Júlio Cesar;518.5727;115595456;Colombia; -2018-11-17T07:05:27Z;Eduardo;227.7459;115933749;Colombia; -2018-11-17T07:01:01Z;Júlio;1696.296;116117473;Colombia; -2018-11-17T06:52:14Z;Eduardo;414.4005;114689256;Colombia; -2018-11-17T06:12:08Z;Nathália;75.99901;115453893;Colombia; -2018-11-17T06:05:19Z;Armando;3737.484;114446686;Colombia; -2018-11-17T05:47:21Z;Nathália;6044.489;115155745;Colombia; -2018-11-17T05:39:47Z;nathalia;1726.748;115681768;Colombia; -2018-11-17T05:28:56Z;Júlio;753.8849;115498697;Colombia; -2018-11-17T05:17:40Z;Armando;8454.478;115734077;Colombia; -2018-11-17T05:17:18Z;nathalia;3208.764;115572356;Colombia; -2018-11-17T04:32:30Z;Eduardo;6042.13;115750269;Colombia; -2018-11-17T04:31:37Z;Armando;9538.075;115440687;Colombia; -2018-11-17T04:29:56Z;Ana;3273.324;114675840;Colombia; -2018-11-17T04:16:23Z;Júlio Cesar;90.52192;114467485;Colombia; -2018-11-17T04:12:09Z;Júlio Cesar;1733.266;115674430;Colombia; -2018-11-17T03:11:54Z;Armando;4111.712;116324448;Colombia; -2018-11-17T02:59:14Z;Armando;1002.695;115216789;Colombia; -2018-11-17T02:53:01Z;Ana;3454.647;114640525;Colombia; -2018-11-17T02:35:33Z;Ana;2640.163;115853387;Colombia; -2018-11-17T02:22:04Z;Eduardo;2285.167;116335251;Colombia; -2018-11-17T02:17:56Z;Ana;5519.973;116200129;Colombia; -2018-11-17T01:32:00Z;Júlio Cesar;7324.161;115536851;Colombia; -2018-11-17T00:53:48Z;nathalia;4596.957;115637247;Colombia; -2018-11-17T00:26:08Z;Sandra;595.8119;114858973;Colombia; -2018-11-17T00:05:31Z;Júlio Cesar;1961.423;114208874;Colombia; -2018-11-17T00:05:02Z;Nathália;3552.916;116398106;Colombia; -2018-11-16T23:38:42Z;nathalia;1884.675;115703447;Colombia; -2018-11-16T23:35:24Z;Armando;5614.601;115236692;Colombia; -2018-11-16T23:27:28Z;Ana;6110.726;115601780;Colombia; -2018-11-16T23:25:12Z;Sandra;420.0433;115134991;Colombia; -2018-11-16T22:39:15Z;Júlio Cesar;3159.156;116383099;Colombia; -2018-11-16T22:36:03Z;Nathália;335.1931;116251217;Colombia; -2018-11-16T22:00:10Z;nathalia;2233.656;115685057;Colombia; -2018-11-16T21:52:54Z;Júlio;897.3372;115611162;Colombia; -2018-11-16T21:42:35Z;Ana;8744.307;115325095;Colombia; -2018-11-16T21:37:44Z;Júlio Cesar;1825.874;114855735;Colombia; -2018-11-16T21:24:38Z;nathalia;1443.163;115441006;Colombia; -2018-11-16T21:17:42Z;Sandra;1761.66;114685465;Colombia; -2018-11-16T20:54:20Z;Sandra;8265.242;115731940;Colombia; -2018-11-16T20:51:15Z;Armando;457.4854;115672508;Colombia; -2018-11-16T19:08:34Z;Nathália;8573.867;115144257;Colombia; -2018-11-16T18:58:32Z;Ana;963.3646;114640349;Colombia; -2018-11-16T18:47:28Z;Júlio Cesar;1092.059;114524688;Colombia; -2018-11-16T18:43:20Z;Júlio Cesar;10102.37;115445060;Colombia; -2018-11-16T18:41:08Z;Eduardo;4426.654;114500706;Colombia; -2018-11-16T18:04:42Z;Armando;49.90802;115499726;Colombia; -2018-11-16T17:44:02Z;Armando;967.7986;114773575;Colombia; -2018-11-16T17:35:42Z;Nathália;1108.743;116256471;Colombia; -2018-11-16T17:25:17Z;Nathália;7226.67;115319435;Colombia; -2018-11-16T16:54:11Z;nathalia;1765.864;116126153;Colombia; -2018-11-16T16:51:22Z;Júlio Cesar;6547.845;114275669;Colombia; -2018-11-16T16:49:02Z;Armando;4142.421;115536096;Colombia; -2018-11-16T16:42:09Z;Ana;1018.905;115878906;Colombia; -2018-11-16T16:41:03Z;Júlio;3669.922;116027264;Colombia; -2018-11-16T16:35:16Z;nathalia;1179.266;115235979;Colombia; -2018-11-16T16:13:11Z;Júlio Cesar;4509.879;115741657;Colombia; -2018-11-16T15:56:01Z;Eduardo;9166.882;115665389;Colombia; -2018-11-16T15:53:05Z;nathalia;1805.401;114891658;Colombia; -2018-11-16T15:45:55Z;nathalia;7212.929;116092211;Colombia; -2018-11-16T15:01:22Z;Júlio;7877.646;115936135;Colombia; -2018-11-16T14:57:13Z;Nathália;718.1376;115240043;Colombia; -2018-11-16T14:47:53Z;Nathália;1752.557;116267615;Colombia; -2018-11-16T14:42:25Z;Júlio Cesar;5724.243;114296449;Colombia; -2018-11-16T14:19:51Z;Júlio Cesar;546.3997;115012366;Colombia; -2018-11-16T14:18:15Z;Sandra;12343.41;115286060;Colombia; -2018-11-16T14:16:14Z;Ana;451.1443;115755968;Colombia; -2018-11-16T13:20:51Z;Sandra;5190.142;114691901;Colombia; -2018-11-16T13:08:59Z;Ana;7628.924;116317053;Colombia; -2018-11-16T13:02:36Z;Júlio;2431.41;115011177;Colombia; -2018-11-16T12:40:50Z;Júlio Cesar;9475.304;115135541;Colombia; -2018-11-16T12:35:25Z;Nathália;5555.76;115215369;Colombia; -2018-11-16T12:29:58Z;nathalia;5859.946;115602122;Colombia; -2018-11-16T11:32:10Z;Eduardo;1609.59;115473854;Colombia; -2018-11-16T11:15:20Z;Eduardo;3492.085;115850598;Colombia; -2018-11-16T10:14:56Z;Armando;9232.85;115917353;Colombia; -2018-11-16T09:36:48Z;nathalia;2634.627;114823376;Colombia; -2018-11-16T09:11:49Z;Nathália;7275.412;114885954;Colombia; -2018-11-16T09:10:05Z;Ana;2731.248;114950706;Colombia; -2018-11-16T08:36:42Z;Ana;7576.938;116292520;Colombia; -2018-11-16T08:30:32Z;Júlio;855.9809;116383564;Colombia; -2018-11-16T08:23:01Z;Ana;3334.81;116189434;Colombia; -2018-11-16T08:14:27Z;Nathália;3773.359;114220960;Colombia; -2018-11-16T07:52:58Z;Armando;1614.833;116224115;Colombia; -2018-11-16T06:20:59Z;Armando;2603.608;115604284;Colombia; -2018-11-16T05:27:37Z;Júlio;4890.05;116251819;Colombia; -2018-11-16T04:58:21Z;Ana;423.2361;116091338;Colombia; -2018-11-16T04:44:15Z;Eduardo;1307.425;115750866;Colombia; -2018-11-16T04:39:39Z;nathalia;1269.841;114515218;Colombia; -2018-11-16T04:16:32Z;Ana;220.2819;115326180;Colombia; -2018-11-16T03:45:41Z;Sandra;1080.061;114876747;Colombia; -2018-11-16T03:29:13Z;Sandra;680.9183;115787615;Colombia; -2018-11-16T03:18:39Z;Sandra;5750.28;115385788;Colombia; -2018-11-16T03:11:11Z;Armando;5703.583;115808511;Colombia; -2018-11-16T02:54:18Z;Sandra;9248.909;114802349;Colombia; -2018-11-16T02:28:04Z;Eduardo;1008.12;116379139;Colombia; -2018-11-16T02:03:31Z;Eduardo;2017.519;115135704;Colombia; -2018-11-16T01:12:14Z;Nathália;2674.138;116262563;Colombia; -2018-11-16T01:07:59Z;Sandra;4749.048;115656123;Colombia; -2018-11-16T01:02:33Z;Nathália;1342.242;116373669;Colombia; -2018-11-16T01:00:27Z;Júlio;4589.405;114333063;Colombia; -2018-11-16T00:38:13Z;Ana;1939.613;115905260;Colombia; -2018-11-16T00:26:12Z;Júlio Cesar;1085.057;115700435;Colombia; -2018-11-16T00:07:05Z;nathalia;1807.648;115732557;Colombia; -2018-11-15T23:59:02Z;Ana;100.1163;114851963;Colombia; -2018-11-15T23:36:24Z;Júlio Cesar;3038.609;115410559;Colombia; -2018-11-15T23:33:18Z;Ana;44.66163;115911527;Colombia; -2018-11-15T23:24:21Z;Ana;731.5747;114597084;Colombia; -2018-11-15T23:05:30Z;Sandra;475.138;115215839;Colombia; -2018-11-15T23:03:51Z;Júlio Cesar;2673.693;115934297;Colombia; -2018-11-15T21:59:18Z;Júlio;245.0772;114530169;Colombia; -2018-11-15T21:58:41Z;Ana;1464.214;116236367;Colombia; -2018-11-15T21:56:46Z;Nathália;4104.195;116290431;Colombia; -2018-11-15T21:40:32Z;Júlio;1881.191;114698822;Colombia; -2018-11-15T20:56:53Z;Nathália;3129.329;115211633;Colombia; -2018-11-15T20:54:50Z;Armando;16220.82;115873537;Colombia; -2018-11-15T20:40:19Z;Eduardo;1180.943;114518937;Colombia; -2018-11-15T20:05:42Z;Júlio;2567.908;115397007;Colombia; -2018-11-15T19:57:47Z;Ana;202.3874;115275502;Colombia; -2018-11-15T19:42:32Z;Eduardo;8330.537;115759867;Colombia; -2018-11-15T19:17:37Z;Júlio Cesar;1215.882;115855885;Colombia; -2018-11-15T19:06:33Z;Júlio;1258.79;114222760;Colombia; -2018-11-15T18:34:51Z;Júlio Cesar;2752.9;116080953;Colombia; -2018-11-15T18:33:58Z;Júlio;9654.737;114469278;Colombia; -2018-11-15T18:32:18Z;Armando;633.5046;116219404;Colombia; -2018-11-15T18:06:25Z;nathalia;1907.263;116100017;Colombia; -2018-11-15T17:10:23Z;Júlio;3021.692;114959852;Colombia; -2018-11-15T17:08:24Z;nathalia;2221.132;114715528;Colombia; -2018-11-15T17:01:51Z;Ana;3807.741;116056043;Colombia; -2018-11-15T16:41:36Z;Armando;764.2429;116000044;Colombia; -2018-11-15T16:39:30Z;nathalia;1091.697;114627407;Colombia; -2018-11-15T16:25:06Z;nathalia;3200.679;115277527;Colombia; -2018-11-15T16:13:12Z;nathalia;561.686;114469244;Colombia; -2018-11-15T16:03:26Z;Sandra;2002.658;114819895;Colombia; -2018-11-15T15:02:12Z;Eduardo;15909.85;115573492;Colombia; -2018-11-15T14:16:39Z;nathalia;4143.325;114615077;Colombia; -2018-11-15T14:10:26Z;Eduardo;8651.159;116067986;Colombia; -2018-11-15T14:09:51Z;Armando;4906.756;115071009;Colombia; -2018-11-15T13:40:08Z;Armando;2814.83;115910512;Colombia; -2018-11-15T13:32:28Z;Eduardo;5954.717;115804732;Colombia; -2018-11-15T13:26:11Z;Júlio Cesar;5210.334;116111962;Colombia; -2018-11-15T13:25:01Z;Armando;474.5602;116270710;Colombia; -2018-11-15T12:48:07Z;Júlio;138.6076;114257031;Colombia; -2018-11-15T12:38:02Z;Eduardo;826.9007;115608311;Colombia; -2018-11-15T12:36:16Z;Nathália;4491.178;114201644;Colombia; -2018-11-15T12:34:11Z;Ana;10773.44;115938587;Colombia; -2018-11-15T12:29:43Z;Júlio;1070.614;116028843;Colombia; -2018-11-15T12:27:50Z;Júlio;10915.51;115559185;Colombia; -2018-11-15T12:27:33Z;Armando;4012.926;115998739;Colombia; -2018-11-15T12:13:04Z;Eduardo;11266.86;115962288;Colombia; -2018-11-15T11:52:10Z;Sandra;233.4147;114955455;Colombia; -2018-11-15T11:49:04Z;Armando;2988.122;115500202;Colombia; -2018-11-15T11:42:50Z;Nathália;7316.643;115189868;Colombia; -2018-11-15T11:13:52Z;Júlio;5506.346;115962952;Colombia; -2018-11-15T11:08:15Z;Sandra;13142.94;115234076;Colombia; -2018-11-15T10:39:25Z;nathalia;1422.159;116188327;Colombia; -2018-11-15T09:35:47Z;Ana;2228.927;114374490;Colombia; -2018-11-15T09:34:47Z;Júlio;450.7072;114921444;Colombia; -2018-11-15T09:24:09Z;Ana;13615.53;114996258;Colombia; -2018-11-15T09:15:19Z;Armando;10685.84;115880478;Colombia; -2018-11-15T08:38:19Z;nathalia;1461.701;115034380;Colombia; -2018-11-15T07:42:43Z;Júlio Cesar;328.7631;114912609;Colombia; -2018-11-15T07:40:19Z;Ana;1439.094;115257202;Colombia; -2018-11-15T07:28:29Z;Ana;5182.937;114298223;Colombia; -2018-11-15T07:26:08Z;Júlio;7977.975;115422513;Colombia; -2018-11-15T07:25:39Z;Ana;154.8076;116260585;Colombia; -2018-11-15T06:47:53Z;Armando;1839.759;115698855;Colombia; -2018-11-15T06:43:53Z;Armando;4629.483;114260381;Colombia; -2018-11-15T06:21:08Z;Eduardo;72.75405;116231328;Colombia; -2018-11-15T06:11:29Z;Ana;21321.02;115562608;Colombia; -2018-11-15T05:59:01Z;Sandra;1568.635;114852093;Colombia; -2018-11-15T05:47:29Z;Armando;2156.215;114559557;Colombia; -2018-11-15T05:41:10Z;nathalia;3130.163;114263437;Colombia; -2018-11-15T05:26:17Z;Nathália;28.95637;114989213;Colombia; -2018-11-15T04:29:55Z;Eduardo;154.0514;116372900;Colombia; -2018-11-15T04:24:33Z;Nathália;161.2148;114319480;Colombia; -2018-11-15T04:15:02Z;Sandra;637.7739;114635031;Colombia; -2018-11-15T04:06:41Z;nathalia;1575.652;114386293;Colombia; -2018-11-15T03:48:42Z;Ana;14472.63;115478621;Colombia; -2018-11-15T03:43:55Z;Armando;4013.971;115505932;Colombia; -2018-11-15T03:34:14Z;Júlio Cesar;1649.495;114331606;Colombia; -2018-11-15T03:08:22Z;nathalia;6302.209;114602459;Colombia; -2018-11-15T02:40:54Z;nathalia;6222.226;115877018;Colombia; -2018-11-15T02:27:02Z;Ana;1776.984;116149358;Colombia; -2018-11-15T02:21:49Z;Armando;1557.599;114422599;Colombia; -2018-11-15T01:32:09Z;Júlio Cesar;2780.86;115352277;Colombia; -2018-11-15T01:07:29Z;Armando;403.1564;115801337;Colombia; -2018-11-15T01:02:18Z;Eduardo;606.8125;115307288;Colombia; -2018-11-15T01:02:06Z;Ana;395.5423;115351024;Colombia; -2018-11-15T01:01:02Z;Júlio;827.4333;116281348;Colombia; -2018-11-15T00:38:21Z;Eduardo;5645.522;115762025;Colombia; -2018-11-15T00:19:07Z;Júlio;3837.454;116113434;Colombia; -2018-11-15T00:10:37Z;Armando;6833.777;116004759;Colombia; -2018-11-14T23:55:59Z;Júlio;3206.013;115647668;Colombia; -2018-11-14T23:38:53Z;Eduardo;8748.96;114914107;Colombia; -2018-11-14T23:27:15Z;Nathália;10752.42;115730086;Colombia; -2018-11-14T23:21:54Z;nathalia;1406.417;115560385;Colombia; -2018-11-14T23:01:43Z;Júlio Cesar;296.6515;114898674;Colombia; -2018-11-14T22:50:12Z;Armando;1636.545;115066933;Colombia; -2018-11-14T22:32:29Z;Eduardo;8906.443;115965598;Colombia; -2018-11-14T22:05:50Z;Júlio Cesar;3210.994;115929341;Colombia; -2018-11-14T22:03:03Z;Sandra;517.1775;116251739;Colombia; -2018-11-14T21:22:59Z;Sandra;1608.642;115628368;Colombia; -2018-11-14T21:21:27Z;nathalia;914.7871;116207523;Colombia; -2018-11-14T21:08:34Z;Ana;4189.162;115282322;Colombia; -2018-11-14T21:05:55Z;Júlio Cesar;14.14336;116345564;Colombia; -2018-11-14T20:50:04Z;Armando;632.542;115137001;Colombia; -2018-11-14T20:30:48Z;Nathália;1243.821;115647664;Colombia; -2018-11-14T20:12:27Z;Eduardo;5289.698;116339120;Colombia; -2018-11-14T20:01:27Z;Sandra;6596.622;115377090;Colombia; -2018-11-14T19:45:05Z;Eduardo;5357.97;114417436;Colombia; -2018-11-14T19:35:05Z;Ana;2249.669;115214457;Colombia; -2018-11-14T19:16:25Z;Armando;2123.508;116349670;Colombia; -2018-11-14T19:07:22Z;Júlio Cesar;529.9545;114538623;Colombia; -2018-11-14T18:53:39Z;Nathália;3641.167;115828238;Colombia; -2018-11-14T18:50:17Z;Júlio Cesar;595.7215;114951139;Colombia; -2018-11-14T18:41:26Z;Nathália;3463.911;114650665;Colombia; -2018-11-14T18:35:50Z;Sandra;4615.466;116023365;Colombia; -2018-11-14T18:25:07Z;Nathália;4918.644;114488947;Colombia; -2018-11-14T18:10:20Z;Eduardo;2764.011;114346881;Colombia; -2018-11-14T17:56:12Z;Júlio Cesar;3881.362;114947638;Colombia; -2018-11-14T17:53:16Z;Eduardo;44.90703;114974197;Colombia; -2018-11-14T17:48:58Z;Nathália;617.2539;114560231;Colombia; -2018-11-14T17:30:55Z;nathalia;5058.151;115358030;Colombia; -2018-11-14T17:20:04Z;Sandra;1721.654;115976555;Colombia; -2018-11-14T17:09:11Z;Júlio;319.4594;114511661;Colombia; -2018-11-14T16:51:30Z;Nathália;5551.946;115842111;Colombia; -2018-11-14T16:42:47Z;Sandra;1614.455;114326743;Colombia; -2018-11-14T16:12:18Z;Eduardo;1370.056;116130194;Colombia; -2018-11-14T16:10:41Z;Júlio;4422.75;114425090;Colombia; -2018-11-14T15:41:15Z;Eduardo;2379.11;114459061;Colombia; -2018-11-14T15:39:34Z;nathalia;1042.447;116253647;Colombia; -2018-11-14T15:38:08Z;Armando;165.0076;115989222;Colombia; -2018-11-14T15:31:12Z;Nathália;162.0955;114605477;Colombia; -2018-11-14T14:46:32Z;nathalia;7208.11;116167340;Colombia; -2018-11-14T14:31:02Z;Sandra;915.0462;114287823;Colombia; -2018-11-14T14:28:36Z;Júlio;125.2251;115354429;Colombia; -2018-11-14T14:15:28Z;Eduardo;1506.458;114720952;Colombia; -2018-11-14T14:15:02Z;Armando;1183.996;116181455;Colombia; -2018-11-14T14:09:57Z;nathalia;394.5688;115859648;Colombia; -2018-11-14T13:53:19Z;Nathália;342.8352;116152370;Colombia; -2018-11-14T13:46:49Z;Júlio Cesar;2517.593;115837610;Colombia; -2018-11-14T13:41:49Z;Sandra;4294.198;115166633;Colombia; -2018-11-14T13:09:40Z;Nathália;6430.287;114533603;Colombia; -2018-11-14T13:03:21Z;Armando;6074.748;115798142;Colombia; -2018-11-14T12:32:04Z;Nathália;2897.85;115208318;Colombia; -2018-11-14T12:19:32Z;nathalia;3471.41;115574816;Colombia; -2018-11-14T11:51:15Z;Armando;2982.708;114726058;Colombia; -2018-11-14T11:01:05Z;Eduardo;10236.33;116031092;Colombia; -2018-11-14T10:57:11Z;Nathália;889.3307;116026143;Colombia; -2018-11-14T10:35:24Z;Nathália;2523.901;114824243;Colombia; -2018-11-14T09:57:12Z;Ana;474.3625;115865531;Colombia; -2018-11-14T09:19:43Z;Ana;1531.638;115663731;Colombia; -2018-11-14T08:50:51Z;Júlio;7557.517;115951518;Colombia; -2018-11-14T08:35:48Z;Ana;8292.971;116235224;Colombia; -2018-11-14T08:33:32Z;Nathália;3991.943;114902174;Colombia; -2018-11-14T08:11:19Z;Armando;790.1183;116335138;Colombia; -2018-11-14T08:04:52Z;Eduardo;5545.659;116095787;Colombia; -2018-11-14T08:03:59Z;Júlio Cesar;14.61191;114569902;Colombia; -2018-11-14T07:51:56Z;Júlio;1217.507;114631227;Colombia; -2018-11-14T07:32:33Z;Júlio Cesar;1744.546;114514145;Colombia; -2018-11-14T07:30:16Z;Júlio Cesar;1367.054;116217932;Colombia; -2018-11-14T07:18:57Z;Sandra;2046.334;116230777;Colombia; -2018-11-14T07:13:05Z;nathalia;2450.914;114753914;Colombia; -2018-11-14T07:12:51Z;Nathália;132.3729;114440293;Colombia; -2018-11-14T06:12:36Z;Ana;1140.925;114797619;Colombia; -2018-11-14T06:04:19Z;Júlio Cesar;70.20546;114408004;Colombia; -2018-11-14T05:38:24Z;nathalia;5353.61;116061184;Colombia; -2018-11-14T05:25:26Z;Júlio Cesar;728.8208;116267634;Colombia; -2018-11-14T05:14:49Z;Sandra;2528.64;115750159;Colombia; -2018-11-14T05:10:17Z;Nathália;5677.767;115265527;Colombia; -2018-11-14T04:35:43Z;Júlio Cesar;9545.536;114913340;Colombia; -2018-11-14T04:00:35Z;Armando;1917.659;114593629;Colombia; -2018-11-14T03:55:08Z;Ana;935.2244;116320235;Colombia; -2018-11-14T03:47:33Z;Júlio Cesar;2155.253;114954968;Colombia; -2018-11-14T03:33:25Z;Ana;5577.491;116316932;Colombia; -2018-11-14T03:33:05Z;Júlio Cesar;7.478812;116033576;Colombia; -2018-11-14T03:27:26Z;Sandra;11399.25;115371585;Colombia; -2018-11-14T03:25:41Z;nathalia;2898.312;115108768;Colombia; -2018-11-14T03:14:26Z;Nathália;4112.56;114274563;Colombia; -2018-11-14T02:45:28Z;Eduardo;3342.597;114908747;Colombia; -2018-11-14T02:31:24Z;Júlio;5252.894;116183642;Colombia; -2018-11-14T02:06:24Z;Eduardo;194.8426;115173722;Colombia; -2018-11-14T01:47:59Z;Armando;1916.409;115469719;Colombia; -2018-11-14T01:34:10Z;nathalia;1309.535;114853804;Colombia; -2018-11-14T01:20:13Z;Nathália;13111.8;114970523;Colombia; -2018-11-14T01:16:50Z;Sandra;1748.474;115443781;Colombia; -2018-11-14T00:31:23Z;nathalia;1233.977;116138885;Colombia; -2018-11-14T00:28:21Z;Armando;167.5305;115730573;Colombia; -2018-11-14T00:25:53Z;nathalia;6785.577;116199678;Colombia; -2018-11-14T00:25:41Z;Sandra;392.012;114348953;Colombia; -2018-11-13T23:37:00Z;nathalia;2303.436;114383595;Colombia; -2018-11-13T23:27:19Z;Sandra;1313.397;114940092;Colombia; -2018-11-13T23:15:44Z;Nathália;3622.518;114462379;Colombia; -2018-11-13T23:02:40Z;Nathália;3120.268;116362727;Colombia; -2018-11-13T22:47:37Z;Ana;1365.995;114745200;Colombia; -2018-11-13T22:37:06Z;Sandra;58.61971;114975416;Colombia; -2018-11-13T22:35:27Z;Sandra;1909.434;115295954;Colombia; -2018-11-13T22:28:51Z;Eduardo;6036.232;115791856;Colombia; -2018-11-13T22:28:31Z;Armando;1428.196;115872670;Colombia; -2018-11-13T22:13:14Z;Nathália;3515.535;114822390;Colombia; -2018-11-13T22:12:18Z;Sandra;763.8414;115147478;Colombia; -2018-11-13T22:01:51Z;Júlio;5109.028;116139122;Colombia; -2018-11-13T21:24:26Z;Ana;1103.998;114632901;Colombia; -2018-11-13T21:16:50Z;Júlio Cesar;6234.228;114954952;Colombia; -2018-11-13T21:13:33Z;Eduardo;10974.64;115115924;Colombia; -2018-11-13T21:09:55Z;nathalia;2818.381;115894138;Colombia; -2018-11-13T20:54:35Z;nathalia;4005.776;114444644;Colombia; -2018-11-13T19:49:38Z;Armando;1320.061;114405272;Colombia; -2018-11-13T19:48:37Z;Ana;4096.13;116305701;Colombia; -2018-11-13T19:33:37Z;Eduardo;3451.921;115512841;Colombia; -2018-11-13T19:17:44Z;Ana;5538.343;115685755;Colombia; -2018-11-13T18:51:01Z;Ana;4811.874;114674992;Colombia; -2018-11-13T18:08:09Z;Eduardo;217.7628;114411955;Colombia; -2018-11-13T17:51:24Z;Júlio;3273.131;116345028;Colombia; -2018-11-13T17:26:19Z;Júlio;7468.728;116110539;Colombia; -2018-11-13T17:14:02Z;Júlio Cesar;574.7145;115561582;Colombia; -2018-11-13T16:25:59Z;Sandra;4011.409;115584063;Colombia; -2018-11-13T16:23:32Z;Sandra;3413.751;114456569;Colombia; -2018-11-13T16:01:00Z;Júlio Cesar;1400.673;116311124;Colombia; -2018-11-13T15:57:35Z;Júlio;6032.337;114432327;Colombia; -2018-11-13T15:17:37Z;Sandra;39.12584;114260972;Colombia; -2018-11-13T15:08:04Z;Nathália;656.199;114528614;Colombia; -2018-11-13T14:58:14Z;Sandra;3314.701;114597356;Colombia; -2018-11-13T14:53:41Z;Armando;1154.986;114618294;Colombia; -2018-11-13T14:49:03Z;Ana;1680.603;116271745;Colombia; -2018-11-13T14:26:04Z;Sandra;9625.724;114852059;Colombia; -2018-11-13T12:57:12Z;Armando;143.4712;115684118;Colombia; -2018-11-13T12:54:42Z;Sandra;4985.493;115137314;Colombia; -2018-11-13T11:27:23Z;Eduardo;5548.074;114597141;Colombia; -2018-11-13T11:20:32Z;Armando;3044.438;115008889;Colombia; -2018-11-13T11:14:02Z;Ana;286.623;115193909;Colombia; -2018-11-13T11:04:50Z;Ana;6605.721;115559839;Colombia; -2018-11-13T10:23:48Z;nathalia;146.2368;116238125;Colombia; -2018-11-13T10:22:07Z;Ana;4763.624;115950602;Colombia; -2018-11-13T10:21:21Z;Júlio;1.025818;116308967;Colombia; -2018-11-13T10:16:59Z;Sandra;2712.007;115107048;Colombia; -2018-11-13T10:03:32Z;Júlio Cesar;597.5725;115853541;Colombia; -2018-11-13T09:42:07Z;Nathália;6841.148;115977305;Colombia; -2018-11-13T08:55:00Z;nathalia;1544.323;114803678;Colombia; -2018-11-13T08:36:48Z;Sandra;482.9355;115194299;Colombia; -2018-11-13T08:29:46Z;Nathália;3828.704;114792279;Colombia; -2018-11-13T08:29:21Z;Eduardo;1892.091;115623693;Colombia; -2018-11-13T07:57:39Z;Nathália;551.1411;115359505;Colombia; -2018-11-13T07:49:27Z;Eduardo;822.1083;114219176;Colombia; -2018-11-13T07:37:53Z;Júlio Cesar;2463.742;114285698;Colombia; -2018-11-13T07:36:17Z;Júlio Cesar;2264.865;115757109;Colombia; -2018-11-13T07:31:34Z;Armando;4392.509;116257536;Colombia; -2018-11-13T07:23:58Z;Eduardo;460.2667;115239880;Colombia; -2018-11-13T07:04:26Z;nathalia;5632.797;115316508;Colombia; -2018-11-13T07:01:27Z;nathalia;942.5478;114974258;Colombia; -2018-11-13T06:57:51Z;Eduardo;7064.861;114453710;Colombia; -2018-11-13T06:57:27Z;Eduardo;1122.004;115907631;Colombia; -2018-11-13T06:49:19Z;Eduardo;2621.201;116394215;Colombia; -2018-11-13T06:41:17Z;Eduardo;4034.337;115777170;Colombia; -2018-11-13T06:22:37Z;nathalia;2930.782;116217711;Colombia; -2018-11-13T06:10:02Z;Sandra;1893.38;116157599;Colombia; -2018-11-13T06:04:10Z;Eduardo;2284.305;116155391;Colombia; -2018-11-13T05:54:18Z;Júlio Cesar;103.9755;115648718;Colombia; -2018-11-13T05:32:12Z;Nathália;3023.157;115114465;Colombia; -2018-11-13T04:56:03Z;Eduardo;778.7297;115990805;Colombia; -2018-11-13T04:53:21Z;Eduardo;7116.92;116070766;Colombia; -2018-11-13T04:09:00Z;Ana;6355.504;116193343;Colombia; -2018-11-13T04:03:03Z;Sandra;3172.415;115155910;Colombia; -2018-11-13T03:21:27Z;Nathália;4051.12;115949830;Colombia; -2018-11-13T03:09:17Z;Ana;6244.548;115203668;Colombia; -2018-11-13T02:33:17Z;nathalia;379.6849;115720646;Colombia; -2018-11-13T02:17:01Z;nathalia;3169.614;115970964;Colombia; -2018-11-13T02:06:58Z;Sandra;1031.052;114908928;Colombia; -2018-11-13T02:06:04Z;Nathália;2396.367;116273413;Colombia; -2018-11-13T01:48:06Z;Nathália;5609.019;116038384;Colombia; -2018-11-13T01:40:57Z;Júlio Cesar;743.8331;116217294;Colombia; -2018-11-13T01:15:30Z;Nathália;5667.354;114752261;Colombia; -2018-11-13T01:06:54Z;Armando;5085.951;116298667;Colombia; -2018-11-13T01:01:45Z;Sandra;3888.472;115396776;Colombia; -2018-12-06T21:40:21Z;Ana;2945.025;115946034;Ecuador; -2018-12-06T21:36:58Z;Ana;434.6674;115298688;Ecuador; -2018-12-06T21:31:57Z;Júlio;11440.45;116231558;Ecuador; -2018-12-06T21:20:39Z;nathalia;43.56889;115192862;Ecuador; -2018-12-06T21:13:07Z;Nathália;1796.085;114550616;Ecuador; -2018-12-06T21:11:11Z;Júlio Cesar;9903.41;115298265;Ecuador; -2018-12-06T20:46:13Z;Eduardo;1692.126;115903161;Ecuador; -2018-12-06T20:23:58Z;Nathália;259.1644;114387164;Ecuador; -2018-12-06T20:23:53Z;Armando;2803.404;114596395;Ecuador; -2018-12-06T20:18:21Z;Armando;3922.746;115502415;Ecuador; -2018-12-06T20:05:50Z;Sandra;1373.082;114342767;Ecuador; -2018-12-06T19:56:19Z;Eduardo;1713.252;114288333;Ecuador; -2018-12-06T19:54:25Z;Eduardo;30.75461;115571944;Ecuador; -2018-12-06T19:54:07Z;Ana;6071.445;115786009;Ecuador; -2018-12-06T19:43:38Z;Armando;18709.85;114526985;Ecuador; -2018-12-06T19:14:32Z;Júlio Cesar;4038.378;114336995;Ecuador; -2018-12-06T19:07:57Z;Eduardo;5915.661;114212524;Ecuador; -2018-12-06T18:59:45Z;Júlio;3377.698;115268581;Ecuador; -2018-12-06T18:58:27Z;Ana;1073.637;114543377;Ecuador; -2018-12-06T18:56:29Z;Eduardo;3147.128;114647641;Ecuador; -2018-12-06T18:54:25Z;Júlio Cesar;6367.99;116274376;Ecuador; -2018-12-06T18:39:51Z;Armando;1105.191;115066736;Ecuador; -2018-12-06T18:11:49Z;Sandra;5862.902;115840001;Ecuador; -2018-12-06T17:56:48Z;Júlio;22537.52;115837352;Ecuador; -2018-12-06T17:56:34Z;Ana;5573.222;115040008;Ecuador; -2018-12-06T17:48:30Z;nathalia;2437.746;114366552;Ecuador; -2018-12-06T17:41:38Z;Eduardo;25748.7;114531961;Ecuador; -2018-12-06T17:23:02Z;nathalia;3178.423;114391415;Ecuador; -2018-12-06T16:47:19Z;Armando;8987.987;114822548;Ecuador; -2018-12-06T16:45:40Z;Nathália;350.2107;115815378;Ecuador; -2018-12-06T16:03:21Z;Nathália;3103.525;115291391;Ecuador; -2018-12-06T16:01:21Z;Nathália;14840.3;114485180;Ecuador; -2018-12-06T15:19:35Z;Nathália;6117.547;114810659;Ecuador; -2018-12-06T15:15:33Z;Nathália;2171.26;116166022;Ecuador; -2018-12-06T15:11:33Z;Ana;9604.828;115550293;Ecuador; -2018-12-06T14:33:53Z;Júlio Cesar;8779.484;115905460;Ecuador; -2018-12-06T14:30:29Z;Sandra;7451.193;116221182;Ecuador; -2018-12-06T14:29:22Z;Sandra;345.8352;115021068;Ecuador; -2018-12-06T14:23:41Z;Júlio;3356.031;114473429;Ecuador; -2018-12-06T14:23:24Z;Nathália;7824.44;116041134;Ecuador; -2018-12-06T14:22:48Z;nathalia;165.0783;114917055;Ecuador; -2018-12-06T13:51:09Z;nathalia;19111.09;115880865;Ecuador; -2018-12-06T13:36:53Z;nathalia;3427.566;114246430;Ecuador; -2018-12-06T13:32:39Z;Armando;991.3576;115310623;Ecuador; -2018-12-06T13:19:19Z;Eduardo;1387.906;116323792;Ecuador; -2018-12-06T13:17:39Z;Armando;584.0444;114405404;Ecuador; -2018-12-06T13:05:45Z;Nathália;7153.234;114912166;Ecuador; -2018-12-06T13:03:49Z;Ana;4296.432;116313687;Ecuador; -2018-12-06T12:45:55Z;Eduardo;18293.61;114511384;Ecuador; -2018-12-06T12:20:06Z;Sandra;2037.673;114410008;Ecuador; -2018-12-06T12:01:44Z;Ana;539.9627;115013797;Ecuador; -2018-12-06T10:59:05Z;nathalia;93.55501;114821221;Ecuador; -2018-12-06T10:41:24Z;Armando;2398.578;116187169;Ecuador; -2018-12-06T10:29:56Z;Júlio Cesar;27707.44;115990702;Ecuador; -2018-12-06T10:28:26Z;Ana;410.9497;115032513;Ecuador; -2018-12-06T10:22:48Z;Nathália;4716.871;115213049;Ecuador; -2018-12-06T09:41:51Z;nathalia;5922.654;115960191;Ecuador; -2018-12-06T09:32:40Z;Nathália;10378.98;115183193;Ecuador; -2018-12-06T09:15:17Z;Nathália;9896.662;115390023;Ecuador; -2018-12-06T09:09:50Z;Nathália;29413.89;114872505;Ecuador; -2018-12-06T08:50:58Z;Sandra;2158.148;115635585;Ecuador; -2018-12-06T08:31:28Z;Eduardo;751.5381;114460684;Ecuador; -2018-12-06T08:31:25Z;Júlio Cesar;2675.747;114967489;Ecuador; -2018-12-06T08:05:53Z;Júlio Cesar;17433.96;116069061;Ecuador; -2018-12-06T07:58:16Z;Júlio;1934.206;114226088;Ecuador; -2018-12-06T07:46:35Z;Nathália;5639.339;115704462;Ecuador; -2018-12-06T07:42:29Z;Armando;5167.388;115553820;Ecuador; -2018-12-06T06:54:10Z;Nathália;20614.07;115905544;Ecuador; -2018-12-06T06:52:18Z;nathalia;3503.305;114290747;Ecuador; -2018-12-06T06:48:15Z;nathalia;298.4899;114367689;Ecuador; -2018-12-06T06:47:46Z;Sandra;7317.377;114914700;Ecuador; -2018-12-06T06:46:17Z;Sandra;10865.98;114998992;Ecuador; -2018-12-06T06:29:54Z;nathalia;1068.744;115535671;Ecuador; -2018-12-06T06:22:08Z;Sandra;2660.575;116323399;Ecuador; -2018-12-06T06:18:23Z;nathalia;9477.656;116134842;Ecuador; -2018-12-06T06:11:34Z;nathalia;15241.7;114986018;Ecuador; -2018-12-06T06:05:09Z;Ana;8031.837;114402589;Ecuador; -2018-12-06T05:43:31Z;Nathália;2356.528;114857460;Ecuador; -2018-12-06T05:18:19Z;Nathália;2027.531;114534086;Ecuador; -2018-12-06T05:04:24Z;Júlio Cesar;3152.6;115225662;Ecuador; -2018-12-06T04:54:01Z;Sandra;7244.081;114837836;Ecuador; -2018-12-06T04:51:14Z;Nathália;2747.938;114376581;Ecuador; -2018-12-06T04:29:33Z;Eduardo;875.6664;115027431;Ecuador; -2018-12-06T04:06:18Z;Armando;310.0596;114606276;Ecuador; -2018-12-06T04:00:26Z;Júlio Cesar;11867.06;114213999;Ecuador; -2018-12-06T03:58:30Z;Eduardo;4168.881;116174557;Ecuador; -2018-12-06T03:57:47Z;Júlio Cesar;272.7976;115505185;Ecuador; -2018-12-06T03:55:54Z;Ana;15760.73;114980858;Ecuador; -2018-12-06T03:14:03Z;Armando;3151.869;116361955;Ecuador; -2018-12-06T02:56:44Z;Júlio Cesar;15907.95;115238442;Ecuador; -2018-12-06T02:56:11Z;Júlio;17377.94;114487803;Ecuador; -2018-12-06T02:52:55Z;Nathália;6840.836;114821713;Ecuador; -2018-12-06T02:48:41Z;Sandra;4156.602;114898801;Ecuador; -2018-12-06T02:35:31Z;Júlio;13315.48;115682532;Ecuador; -2018-12-06T02:17:07Z;Nathália;31802.05;116149033;Ecuador; -2018-12-06T02:16:47Z;Nathália;23512.16;115244323;Ecuador; -2018-12-06T02:06:42Z;nathalia;3596.626;115933515;Ecuador; -2018-12-06T02:00:36Z;Júlio;10764.3;115894567;Ecuador; -2018-12-06T01:27:42Z;nathalia;17150.23;114329826;Ecuador; -2018-12-06T01:21:37Z;nathalia;9692.031;115117926;Ecuador; -2018-12-06T00:29:33Z;nathalia;9966.621;115452160;Ecuador; -2018-12-06T00:17:08Z;Júlio;4284.006;114923252;Ecuador; -2018-12-06T00:04:44Z;Sandra;6885.113;115653787;Ecuador; -2018-12-05T23:49:10Z;Ana;20693.48;114563386;Ecuador; -2018-12-05T23:31:51Z;Eduardo;3748.432;116269995;Ecuador; -2018-12-05T23:31:21Z;Nathália;8707.427;115499120;Ecuador; -2018-12-05T23:13:34Z;Nathália;869.3058;114912217;Ecuador; -2018-12-05T22:56:15Z;Armando;8169.702;114825299;Ecuador; -2018-12-05T22:24:38Z;Ana;10071.44;115994010;Ecuador; -2018-12-05T22:07:50Z;Eduardo;6308.928;114309064;Ecuador; -2018-12-05T21:11:15Z;Nathália;6181.383;115439012;Ecuador; -2018-12-05T20:25:16Z;Sandra;12907.83;116283997;Ecuador; -2018-12-05T19:44:28Z;Júlio Cesar;3394.55;115547426;Ecuador; -2018-12-05T19:42:48Z;Ana;297.1686;116231775;Ecuador; -2018-12-05T19:33:56Z;Ana;3396.435;116177121;Ecuador; -2018-12-05T19:16:17Z;Armando;22030.25;114784095;Ecuador; -2018-12-05T18:51:36Z;Júlio;10125.68;114677682;Ecuador; -2018-12-05T18:50:30Z;Armando;3801.03;115674442;Ecuador; -2018-12-05T17:52:07Z;Júlio Cesar;11240.11;115467275;Ecuador; -2018-12-05T17:00:31Z;Sandra;315.9008;115347552;Ecuador; -2018-12-05T16:57:30Z;Armando;5444.671;115401020;Ecuador; -2018-12-05T16:09:02Z;nathalia;2425.74;115661789;Ecuador; -2018-12-05T15:56:40Z;Eduardo;576.172;115680343;Ecuador; -2018-12-05T15:38:25Z;Júlio Cesar;18818.21;115935680;Ecuador; -2018-12-05T15:36:05Z;Júlio Cesar;4436.981;115131739;Ecuador; -2018-12-05T14:55:19Z;Júlio;9830.602;115346064;Ecuador; -2018-12-05T14:35:42Z;Nathália;4255.61;114823041;Ecuador; -2018-12-05T14:29:07Z;Armando;166.8393;115246288;Ecuador; -2018-12-05T14:28:07Z;Sandra;18530.47;114335689;Ecuador; -2018-12-05T14:19:45Z;nathalia;19419.65;114411416;Ecuador; -2018-12-05T14:11:35Z;nathalia;499.1162;114864089;Ecuador; -2018-12-05T13:45:56Z;Eduardo;3185.365;115762350;Ecuador; -2018-12-05T12:53:25Z;nathalia;17081.18;116051419;Ecuador; -2018-12-05T12:45:58Z;Sandra;540.2684;114396580;Ecuador; -2018-12-05T12:18:34Z;nathalia;6753.773;116158457;Ecuador; -2018-12-05T11:43:23Z;Júlio Cesar;4890.107;115144897;Ecuador; -2018-12-05T11:09:50Z;Armando;19746.41;114453874;Ecuador; -2018-12-05T11:08:50Z;Júlio;13537.63;114517909;Ecuador; -2018-12-05T10:41:37Z;Júlio;3615.8;116150612;Ecuador; -2018-12-05T10:35:45Z;nathalia;13225.83;115054487;Ecuador; -2018-12-05T10:26:40Z;Sandra;6926.587;114663494;Ecuador; -2018-12-05T10:09:24Z;Armando;10361.73;115593848;Ecuador; -2018-12-05T10:04:52Z;nathalia;12773.3;115638036;Ecuador; -2018-12-05T09:54:04Z;Eduardo;5238.666;115345694;Ecuador; -2018-12-05T09:37:21Z;Eduardo;17745.47;115781269;Ecuador; -2018-12-05T09:31:59Z;Sandra;7887.855;114584098;Ecuador; -2018-12-05T09:15:39Z;Ana;1163.357;114503933;Ecuador; -2018-12-05T09:07:26Z;Ana;3111.354;115109458;Ecuador; -2018-12-05T09:06:03Z;Nathália;1577.117;116034336;Ecuador; -2018-12-05T08:45:22Z;nathalia;1371.992;115134191;Ecuador; -2018-12-05T08:23:53Z;Armando;7798.018;115331687;Ecuador; -2018-12-05T07:35:23Z;Júlio Cesar;18495.51;116291909;Ecuador; -2018-12-05T07:35:10Z;Armando;4947.475;114328542;Ecuador; -2018-12-05T06:47:23Z;Sandra;14949.33;114578341;Ecuador; -2018-12-05T06:45:18Z;Armando;12273.66;115155442;Ecuador; -2018-12-05T06:12:06Z;Nathália;500.6769;116066089;Ecuador; -2018-12-05T06:10:03Z;Ana;9335.852;114381447;Ecuador; -2018-12-05T05:45:12Z;Sandra;21513.07;114686786;Ecuador; -2018-12-05T05:03:14Z;Armando;1307.276;115126310;Ecuador; -2018-12-05T04:59:05Z;Eduardo;10356.47;116219592;Ecuador; -2018-12-05T04:41:14Z;nathalia;8683.816;116214153;Ecuador; -2018-12-05T04:37:59Z;Ana;11302.04;114988390;Ecuador; -2018-12-05T04:35:09Z;Nathália;2808.859;114793326;Ecuador; -2018-12-05T04:22:30Z;Armando;6061.887;114995928;Ecuador; -2018-12-05T04:19:53Z;Nathália;5410.321;116206352;Ecuador; -2018-12-05T03:33:48Z;Júlio;8602.174;115988122;Ecuador; -2018-12-05T03:19:47Z;Armando;3454.426;116214654;Ecuador; -2018-12-05T03:18:10Z;nathalia;1362.31;115722294;Ecuador; -2018-12-05T03:00:01Z;Júlio;3390.407;114566004;Ecuador; -2018-12-05T02:50:05Z;Nathália;11501.45;115814447;Ecuador; -2018-12-05T02:24:00Z;Eduardo;2027.151;116014298;Ecuador; -2018-12-05T02:12:21Z;nathalia;3952.461;115158894;Ecuador; -2018-12-05T02:09:45Z;Sandra;3091.833;115995877;Ecuador; -2018-12-05T01:52:09Z;Sandra;2427.375;114230002;Ecuador; -2018-12-05T01:21:47Z;Ana;5436.507;115733610;Ecuador; -2018-12-05T01:20:24Z;Nathália;6933.089;114244686;Ecuador; -2018-12-05T01:20:02Z;Armando;509.7808;114637947;Ecuador; -2018-12-05T01:19:25Z;Armando;7075.696;115549628;Ecuador; -2018-12-05T01:03:51Z;Júlio;10035.27;116356534;Ecuador; -2018-12-05T00:22:24Z;Júlio;15235.58;114739075;Ecuador; -2018-12-05T00:21:41Z;Armando;13323.09;116124758;Ecuador; -2018-12-05T00:18:56Z;Júlio Cesar;3083.382;114406602;Ecuador; -2018-12-05T00:09:53Z;Nathália;4969.137;114612834;Ecuador; -2018-12-04T23:59:57Z;Sandra;2627.55;116240426;Ecuador; -2018-12-04T23:41:34Z;Sandra;4915.564;115626185;Ecuador; -2018-12-04T23:22:05Z;Eduardo;1968.233;115938760;Ecuador; -2018-12-04T23:03:26Z;Nathália;10069.87;114865404;Ecuador; -2018-12-04T22:58:12Z;Júlio;15958.6;114458347;Ecuador; -2018-12-04T22:39:13Z;Eduardo;9650.261;115613650;Ecuador; -2018-12-04T22:21:49Z;Nathália;600.1466;115717421;Ecuador; -2018-12-04T22:09:09Z;nathalia;6118.281;115218105;Ecuador; -2018-12-04T22:05:47Z;Nathália;17534.28;114337602;Ecuador; -2018-12-04T21:51:06Z;Ana;6775.054;114520510;Ecuador; -2018-12-04T21:38:35Z;Júlio;18265.74;114230636;Ecuador; -2018-12-04T21:12:39Z;Ana;10781.4;114446372;Ecuador; -2018-12-04T21:04:20Z;Sandra;12305.77;115544813;Ecuador; -2018-12-04T20:51:41Z;Júlio Cesar;16648.01;116285558;Ecuador; -2018-12-04T20:34:52Z;Armando;357.052;116035167;Ecuador; -2018-12-04T20:13:34Z;Sandra;146.0742;115134724;Ecuador; -2018-12-04T20:05:34Z;Sandra;2672.382;115106622;Ecuador; -2018-12-04T19:32:41Z;Armando;517.8544;115133911;Ecuador; -2018-12-04T19:29:10Z;nathalia;11513.19;115903727;Ecuador; -2018-12-04T19:11:49Z;Nathália;18864.63;115375890;Ecuador; -2018-12-04T18:30:43Z;Eduardo;2215.845;115380501;Ecuador; -2018-12-04T17:34:06Z;Ana;5959.418;116242444;Ecuador; -2018-12-04T17:17:54Z;Ana;3314.894;114292078;Ecuador; -2018-12-04T17:11:14Z;Júlio Cesar;10358.23;115965247;Ecuador; -2018-12-04T16:31:44Z;Nathália;3889.227;116010911;Ecuador; -2018-12-04T16:23:16Z;Ana;5397.777;114717146;Ecuador; -2018-12-04T16:11:14Z;nathalia;227.4836;116284720;Ecuador; -2018-12-04T16:08:54Z;Júlio Cesar;10356.46;114637483;Ecuador; -2018-12-04T16:08:50Z;Júlio;13271.74;115104876;Ecuador; -2018-12-04T16:07:34Z;Ana;699.5798;115094863;Ecuador; -2018-12-04T15:41:35Z;Sandra;736.6865;115124669;Ecuador; -2018-12-04T15:36:36Z;Armando;5736.355;115115625;Ecuador; -2018-12-04T15:31:14Z;nathalia;2611.167;115204572;Ecuador; -2018-12-04T15:21:13Z;Eduardo;12526.21;116171514;Ecuador; -2018-12-04T15:14:40Z;Armando;18581.75;115111218;Ecuador; -2018-12-04T14:05:25Z;nathalia;11026.9;114357042;Ecuador; -2018-12-04T13:59:17Z;Ana;178.0058;114766522;Ecuador; -2018-12-04T13:28:51Z;Nathália;3485.658;114866157;Ecuador; -2018-12-04T13:25:57Z;Júlio;16207.39;115187242;Ecuador; -2018-12-04T13:17:14Z;Sandra;348.0299;114546885;Ecuador; -2018-12-04T12:59:52Z;Armando;2795.598;116181432;Ecuador; -2018-12-04T11:58:41Z;Júlio;3768.083;115998220;Ecuador; -2018-12-04T11:51:29Z;Armando;2969.425;116396670;Ecuador; -2018-12-04T11:44:06Z;Eduardo;19715.56;116051242;Ecuador; -2018-12-04T11:39:27Z;Armando;13140.01;116132293;Ecuador; -2018-12-04T11:35:30Z;Eduardo;11140.13;114273455;Ecuador; -2018-12-04T11:25:17Z;nathalia;5426.249;115496439;Ecuador; -2018-12-04T11:24:13Z;Armando;586.9929;116298687;Ecuador; -2018-12-04T11:22:11Z;Armando;3833.234;116374791;Ecuador; -2018-12-04T11:14:06Z;Ana;523.3825;115879255;Ecuador; -2018-12-04T10:31:36Z;Júlio;2256.51;115232916;Ecuador; -2018-12-04T10:25:59Z;Júlio Cesar;184.4248;114560746;Ecuador; -2018-12-04T10:17:48Z;Júlio;10938.43;116370116;Ecuador; -2018-12-04T10:09:50Z;Nathália;2347.251;115644891;Ecuador; -2018-12-04T09:50:41Z;Armando;338.4853;114527167;Ecuador; -2018-12-04T09:33:46Z;Júlio;265.264;114726782;Ecuador; -2018-12-04T08:53:18Z;Armando;3349.982;114605803;Ecuador; -2018-12-04T08:15:05Z;Júlio;1853.06;116249455;Ecuador; -2018-12-04T08:03:44Z;Ana;791.4844;114423158;Ecuador; -2018-12-04T07:48:15Z;Nathália;1293.447;114240685;Ecuador; -2018-12-04T07:47:37Z;Júlio;20370.65;115749060;Ecuador; -2018-12-04T07:47:24Z;Sandra;5769.649;116110621;Ecuador; -2018-12-04T07:43:15Z;Eduardo;8963.113;115749944;Ecuador; -2018-12-04T07:41:02Z;Sandra;10870.91;115409997;Ecuador; -2018-12-04T07:30:34Z;Júlio Cesar;10439.62;116212419;Ecuador; -2018-12-04T07:23:10Z;Ana;1710.647;116278535;Ecuador; -2018-12-04T07:03:16Z;Nathália;15832.16;115902937;Ecuador; -2018-12-04T06:52:18Z;Armando;6915.361;114601020;Ecuador; -2018-12-04T06:34:53Z;Armando;3841.574;114337300;Ecuador; -2018-12-04T06:10:01Z;Júlio Cesar;37.31482;116173404;Ecuador; -2018-12-04T05:10:45Z;Sandra;821.2551;114653354;Ecuador; -2018-12-04T04:12:23Z;Armando;1612.309;116313101;Ecuador; -2018-12-04T04:04:02Z;Ana;10098.65;115477104;Ecuador; -2018-12-04T04:03:41Z;Sandra;5143.278;114606440;Ecuador; -2018-12-04T04:00:26Z;nathalia;434.6349;116074906;Ecuador; -2018-12-04T03:56:47Z;Sandra;2605.276;116146543;Ecuador; -2018-12-04T03:51:07Z;Júlio Cesar;1574.003;115938138;Ecuador; -2018-12-04T03:48:19Z;Ana;1716.593;115234077;Ecuador; -2018-12-04T03:42:00Z;Eduardo;11398.46;115573982;Ecuador; -2018-12-04T03:40:14Z;Júlio Cesar;404.152;115912188;Ecuador; -2018-12-04T03:32:35Z;Armando;12747.02;116081813;Ecuador; -2018-12-04T03:23:39Z;Armando;4298.99;114915068;Ecuador; -2018-12-04T03:21:50Z;Sandra;1513.028;115456939;Ecuador; -2018-12-04T03:13:45Z;Nathália;681.0102;114831080;Ecuador; -2018-12-04T03:02:14Z;Júlio Cesar;3328.827;114200612;Ecuador; -2018-12-04T02:56:19Z;Júlio Cesar;1370.362;114801790;Ecuador; -2018-12-04T02:51:56Z;nathalia;4317.54;114949864;Ecuador; -2018-12-04T02:44:32Z;Júlio;9427.16;114965197;Ecuador; -2018-12-04T02:39:38Z;Sandra;9854.935;115068490;Ecuador; -2018-12-04T02:36:25Z;Nathália;17673.79;115155401;Ecuador; -2018-12-04T02:31:04Z;Sandra;1548.539;114802297;Ecuador; -2018-12-04T02:26:34Z;Ana;9097.784;114780609;Ecuador; -2018-12-04T02:21:50Z;Eduardo;2075.805;116258559;Ecuador; -2018-12-04T02:20:30Z;nathalia;14610.04;114599944;Ecuador; -2018-12-04T02:07:21Z;Júlio;2339.171;114874255;Ecuador; -2018-12-04T01:47:10Z;Ana;8341.278;114965327;Ecuador; -2018-12-04T01:21:25Z;Júlio;1115.164;114274940;Ecuador; -2018-12-04T01:15:15Z;nathalia;216.7988;114403725;Ecuador; -2018-12-04T00:52:27Z;Nathália;15614.36;115570060;Ecuador; -2018-12-04T00:45:48Z;Nathália;2436.948;116064936;Ecuador; -2018-12-04T00:18:59Z;Eduardo;10207.95;115001015;Ecuador; -2018-12-03T23:47:53Z;Júlio Cesar;3877.628;114910054;Ecuador; -2018-12-03T23:47:17Z;Eduardo;4842.112;115118553;Ecuador; -2018-12-03T23:39:27Z;Armando;1461.382;115863241;Ecuador; -2018-12-03T23:19:08Z;Ana;13627.83;114613993;Ecuador; -2018-12-03T23:15:57Z;Júlio Cesar;7567.516;114921451;Ecuador; -2018-12-03T22:48:04Z;Ana;538.8256;115041357;Ecuador; -2018-12-03T21:44:54Z;Júlio Cesar;5583.443;115558606;Ecuador; -2018-12-03T21:19:46Z;Ana;3656.669;114333238;Ecuador; -2018-12-03T21:18:15Z;Ana;2476.697;115293058;Ecuador; -2018-12-03T21:17:16Z;Eduardo;3147.777;114697585;Ecuador; -2018-12-03T20:52:31Z;Nathália;2311.876;115125717;Ecuador; -2018-12-03T20:51:52Z;Eduardo;11642.42;114872339;Ecuador; -2018-12-03T20:27:24Z;Júlio Cesar;978.5043;114244455;Ecuador; -2018-12-03T20:01:47Z;nathalia;2476.577;114776713;Ecuador; -2018-12-03T19:54:43Z;Júlio;4353.668;114443387;Ecuador; -2018-12-03T19:32:26Z;Eduardo;10131.22;115834852;Ecuador; -2018-12-03T19:31:31Z;Nathália;619.1951;114512198;Ecuador; -2018-12-03T19:30:46Z;Eduardo;411.5841;116250712;Ecuador; -2018-12-03T19:11:23Z;Armando;10327.72;115910914;Ecuador; -2018-12-03T19:08:41Z;Júlio;8827.955;115675309;Ecuador; -2018-12-03T18:58:03Z;Eduardo;10976.28;114384247;Ecuador; -2018-12-03T18:49:53Z;Ana;13115.06;114550587;Ecuador; -2018-12-03T18:46:59Z;Júlio;2170.229;114322272;Ecuador; -2018-12-03T18:16:58Z;Júlio;135.3001;115369581;Ecuador; -2018-12-03T18:02:20Z;Ana;397.0472;114858411;Ecuador; -2018-12-03T17:25:04Z;Eduardo;2404.634;115921683;Ecuador; -2018-12-03T17:24:14Z;Eduardo;673.7312;114936191;Ecuador; -2018-12-03T17:15:34Z;nathalia;4636.584;114612498;Ecuador; -2018-12-03T16:48:42Z;Eduardo;7842.258;114806664;Ecuador; -2018-12-03T16:36:31Z;nathalia;3553.982;115416430;Ecuador; -2018-12-03T16:17:13Z;nathalia;4164.952;114657445;Ecuador; -2018-12-03T16:14:38Z;Eduardo;1619.194;114335023;Ecuador; -2018-12-03T16:03:11Z;Ana;12035.31;116048287;Ecuador; -2018-12-03T15:49:27Z;Nathália;7814.211;115387710;Ecuador; -2018-12-03T15:23:10Z;Armando;8284.329;114421469;Ecuador; -2018-12-03T14:30:59Z;Armando;2123.909;114583148;Ecuador; -2018-12-03T14:23:24Z;Nathália;4785.398;115590722;Ecuador; -2018-12-03T14:22:29Z;nathalia;3995.609;114569177;Ecuador; -2018-12-03T14:18:20Z;Armando;6011.943;116259184;Ecuador; -2018-12-03T14:14:35Z;Júlio;9202.591;115879152;Ecuador; -2018-12-03T14:11:39Z;Eduardo;17587.58;114882824;Ecuador; -2018-12-03T14:07:52Z;Júlio;7557.033;116391527;Ecuador; -2018-12-03T14:00:02Z;Nathália;13038.6;116333016;Ecuador; -2018-12-03T13:58:55Z;Armando;6402.459;115673577;Ecuador; -2018-12-03T13:47:52Z;Eduardo;2478.043;115986206;Ecuador; -2018-12-03T13:40:51Z;nathalia;1455.94;116121797;Ecuador; -2018-12-03T13:22:24Z;Júlio Cesar;1726.632;115836137;Ecuador; -2018-12-03T13:15:58Z;Júlio Cesar;1635.363;115745222;Ecuador; -2018-12-03T13:08:04Z;Eduardo;20469.64;114849034;Ecuador; -2018-12-03T12:41:13Z;Júlio Cesar;1048.263;116156437;Ecuador; -2018-12-03T12:31:20Z;Júlio;286.6002;115896672;Ecuador; -2018-12-03T12:03:31Z;Júlio Cesar;2188.583;114411982;Ecuador; -2018-12-03T11:50:45Z;Nathália;2521.786;115142747;Ecuador; -2018-12-03T11:49:59Z;Sandra;9259.029;114702676;Ecuador; -2018-12-03T11:47:36Z;Sandra;17446.48;114729956;Ecuador; -2018-12-03T11:44:40Z;nathalia;11487.8;114432161;Ecuador; -2018-12-03T11:34:04Z;Júlio;23129.47;115539317;Ecuador; -2018-12-03T11:24:02Z;Júlio;4157.314;115891216;Ecuador; -2018-12-03T11:20:52Z;Sandra;5743.321;115804106;Ecuador; -2018-12-03T11:16:28Z;Júlio Cesar;845.9567;114723237;Ecuador; -2018-12-03T11:14:28Z;Eduardo;1565.074;114268216;Ecuador; -2018-12-03T11:12:33Z;Ana;11406.85;115362537;Ecuador; -2018-12-03T11:03:52Z;Eduardo;4015.236;114847282;Ecuador; -2018-12-03T11:01:17Z;Ana;5345.073;115567504;Ecuador; -2018-12-03T10:55:32Z;Júlio;5498.435;115920996;Ecuador; -2018-12-03T10:36:53Z;Júlio;12116.6;115423485;Ecuador; -2018-12-03T10:06:21Z;nathalia;11947.09;115617777;Ecuador; -2018-12-03T10:05:11Z;Armando;7713.225;115150335;Ecuador; -2018-12-03T09:45:32Z;Sandra;1402.636;114904734;Ecuador; -2018-12-03T09:45:27Z;Júlio;91.48641;114982104;Ecuador; -2018-12-03T09:42:52Z;Armando;2939.044;115330042;Ecuador; -2018-12-03T09:41:16Z;Eduardo;15324.54;115157252;Ecuador; -2018-12-03T09:35:25Z;Júlio;10310.89;114244986;Ecuador; -2018-12-03T09:13:13Z;Eduardo;16029.45;116337407;Ecuador; -2018-12-03T08:44:10Z;Ana;5915.951;114674323;Ecuador; -2018-12-03T08:43:15Z;nathalia;4853.534;114640785;Ecuador; -2018-12-03T08:26:03Z;Júlio;11803.63;114316086;Ecuador; -2018-12-03T08:24:12Z;Sandra;2237.661;115726549;Ecuador; -2018-12-03T07:36:36Z;Armando;2912.792;115250804;Ecuador; -2018-12-03T06:47:28Z;Nathália;2069.649;115741621;Ecuador; -2018-12-03T06:25:52Z;Ana;7748.037;116272121;Ecuador; -2018-12-03T06:20:51Z;Júlio;11068.76;115458501;Ecuador; -2018-12-03T05:51:45Z;Sandra;1685.824;115444584;Ecuador; -2018-12-03T05:39:50Z;Sandra;4449.242;116341312;Ecuador; -2018-12-03T05:36:12Z;Armando;2316.607;114610679;Ecuador; -2018-12-03T05:21:39Z;Ana;4948.161;116148545;Ecuador; -2018-12-03T05:03:23Z;Ana;961.9732;115006568;Ecuador; -2018-12-03T04:46:25Z;Armando;1153.772;116020639;Ecuador; -2018-12-03T04:34:49Z;Ana;1128.385;114215081;Ecuador; -2018-12-03T04:29:32Z;Júlio;12.40382;116099979;Ecuador; -2018-12-03T04:16:36Z;Armando;179.4376;115039246;Ecuador; -2018-12-03T04:15:15Z;Sandra;23558.27;115569228;Ecuador; -2018-12-03T03:23:14Z;Sandra;13994.99;114941250;Ecuador; -2018-12-03T03:20:34Z;Ana;23169.48;114838112;Ecuador; -2018-12-03T02:54:06Z;nathalia;18489.46;115597766;Ecuador; -2018-12-03T02:09:43Z;nathalia;1626.844;114847703;Ecuador; -2018-12-03T02:08:08Z;Eduardo;8862.513;115650593;Ecuador; -2018-12-03T01:36:19Z;Ana;8021.571;115884231;Ecuador; -2018-12-03T01:25:39Z;Armando;2863.878;116220184;Ecuador; -2018-12-03T01:19:20Z;Nathália;14518.74;115242437;Ecuador; -2018-12-03T01:17:25Z;Eduardo;918.3204;115107770;Ecuador; -2018-12-03T01:17:07Z;Júlio Cesar;10801.47;114619200;Ecuador; -2018-12-03T01:05:15Z;Eduardo;12938.45;114755619;Ecuador; -2018-12-03T01:02:41Z;Júlio;1723.953;115632743;Ecuador; -2018-12-02T23:48:03Z;Ana;8610.795;116118131;Ecuador; -2018-12-02T23:16:01Z;Júlio;5626.099;115940436;Ecuador; -2018-12-02T22:56:22Z;Júlio;13512.81;115790613;Ecuador; -2018-12-02T22:33:22Z;Armando;2212.299;115851907;Ecuador; -2018-12-02T22:13:20Z;Júlio Cesar;12742.01;114987051;Ecuador; -2018-12-02T21:19:39Z;Eduardo;8086.909;116131107;Ecuador; -2018-12-02T21:07:27Z;Ana;4047.438;114726429;Ecuador; -2018-12-02T20:20:36Z;Júlio Cesar;2003.592;114294133;Ecuador; -2018-12-02T19:47:33Z;Armando;918.8474;114424274;Ecuador; -2018-12-02T19:25:25Z;Sandra;20704.73;115036588;Ecuador; -2018-12-02T19:24:55Z;Júlio;1066.173;115485689;Ecuador; -2018-12-02T18:48:55Z;Armando;17830.46;114715957;Ecuador; -2018-12-02T18:07:32Z;nathalia;23099.46;115126710;Ecuador; -2018-12-02T17:28:52Z;Ana;1274.8;115028269;Ecuador; -2018-12-02T17:10:19Z;Sandra;17071.81;115768727;Ecuador; -2018-12-02T17:05:31Z;Júlio Cesar;5910.297;114975454;Ecuador; -2018-12-02T16:45:13Z;Eduardo;17025.8;115781169;Ecuador; -2018-12-02T15:41:41Z;Nathália;99.69326;115180273;Ecuador; -2018-12-02T14:26:31Z;Júlio;2425.112;116040412;Ecuador; -2018-12-02T14:17:56Z;Eduardo;4130.019;114874383;Ecuador; -2018-12-02T14:17:09Z;Júlio;10417.48;115146040;Ecuador; -2018-12-02T14:14:29Z;Sandra;7391.134;115700224;Ecuador; -2018-12-02T13:22:53Z;Eduardo;1683.054;116032336;Ecuador; -2018-12-02T13:19:24Z;Sandra;684.1989;115606387;Ecuador; -2018-12-02T13:12:17Z;Sandra;4615.554;116342127;Ecuador; -2018-12-02T12:20:22Z;Nathália;1660.589;114931783;Ecuador; -2018-12-02T12:14:33Z;Nathália;5407.167;115343455;Ecuador; -2018-12-02T11:53:57Z;Eduardo;11578.98;115123750;Ecuador; -2018-12-02T11:44:17Z;Nathália;2189.591;116194020;Ecuador; -2018-12-02T11:43:16Z;nathalia;1037.137;116115460;Ecuador; -2018-12-02T11:15:56Z;Sandra;2492.095;115749666;Ecuador; -2018-12-02T11:10:44Z;Sandra;7825.731;114739039;Ecuador; -2018-12-02T10:19:09Z;nathalia;489.563;114402731;Ecuador; -2018-12-02T09:59:22Z;Júlio;392.79;115669586;Ecuador; -2018-12-02T09:54:59Z;Júlio Cesar;1325.869;115155653;Ecuador; -2018-12-02T09:20:04Z;Eduardo;124.2226;115141573;Ecuador; -2018-12-02T09:14:36Z;Armando;957.3491;114428178;Ecuador; -2018-12-02T09:09:23Z;Nathália;1759.791;115449329;Ecuador; -2018-12-02T09:03:38Z;Ana;12911.82;114929364;Ecuador; -2018-12-02T08:51:44Z;Ana;6630.361;115198166;Ecuador; -2018-12-02T08:51:02Z;nathalia;2644.463;115171067;Ecuador; -2018-12-02T08:38:50Z;nathalia;148.0407;114253412;Ecuador; -2018-12-02T08:37:49Z;Júlio Cesar;2513.54;116187582;Ecuador; -2018-12-02T08:34:31Z;nathalia;11883.17;115139936;Ecuador; -2018-12-02T08:26:20Z;nathalia;16248.08;115355704;Ecuador; -2018-12-02T07:57:45Z;Eduardo;1314.812;116257229;Ecuador; -2018-12-02T07:40:05Z;Ana;4399.45;115001843;Ecuador; -2018-12-02T07:30:59Z;nathalia;16722.07;114976653;Ecuador; -2018-12-02T07:29:16Z;Sandra;1651.997;114856267;Ecuador; -2018-12-02T07:22:48Z;nathalia;4730.556;114790625;Ecuador; -2018-12-02T06:59:19Z;Eduardo;20545.15;115466888;Ecuador; -2018-12-02T06:46:14Z;Júlio;6877.735;115639054;Ecuador; -2018-12-02T06:35:31Z;Armando;17846.62;115679134;Ecuador; -2018-12-02T06:32:41Z;Eduardo;2424.42;115824686;Ecuador; -2018-12-02T05:51:38Z;Sandra;10820.24;115123786;Ecuador; -2018-12-02T05:24:49Z;Ana;8275.811;116149527;Ecuador; -2018-12-02T05:12:46Z;nathalia;4353.24;116330140;Ecuador; -2018-12-02T04:58:37Z;Armando;24988.71;115706955;Ecuador; -2018-12-02T04:42:21Z;Júlio Cesar;4693.496;114290791;Ecuador; -2018-12-02T04:37:51Z;Nathália;1562.412;114807272;Ecuador; -2018-12-02T04:31:08Z;Júlio Cesar;8156.568;115373478;Ecuador; -2018-12-02T04:21:17Z;Armando;4318.844;114520828;Ecuador; -2018-12-02T03:58:13Z;Ana;1639.471;115905363;Ecuador; -2018-12-02T03:56:09Z;Ana;3109.572;116344537;Ecuador; -2018-12-02T03:54:30Z;Sandra;2783.207;114450338;Ecuador; -2018-12-02T03:46:44Z;nathalia;6280.765;114397579;Ecuador; -2018-12-02T03:43:43Z;Nathália;770.6122;114977418;Ecuador; -2018-12-02T03:31:43Z;Armando;12087.01;114922716;Ecuador; -2018-12-02T02:57:25Z;Júlio Cesar;9468.334;115206674;Ecuador; -2018-12-02T02:41:48Z;Eduardo;7745.748;115435548;Ecuador; -2018-12-02T02:06:32Z;Nathália;259.6673;115708023;Ecuador; -2018-12-02T02:02:44Z;Júlio Cesar;14281.36;115389711;Ecuador; -2018-12-02T01:50:43Z;Ana;252.7725;115402964;Ecuador; -2018-12-02T01:36:38Z;Sandra;194.7576;114428919;Ecuador; -2018-12-02T01:23:33Z;Júlio Cesar;18903.92;114715160;Ecuador; -2018-12-02T01:15:19Z;Júlio Cesar;414.774;114345921;Ecuador; -2018-12-02T00:39:24Z;Armando;12470.14;115290877;Ecuador; -2018-12-02T00:35:32Z;Júlio Cesar;12552.26;115362209;Ecuador; -2018-12-02T00:35:05Z;Ana;3910.803;116123626;Ecuador; -2018-12-02T00:23:12Z;Nathália;6117.164;115422870;Ecuador; -2018-12-01T23:55:56Z;Eduardo;5087.528;115524170;Ecuador; -2018-12-01T23:24:51Z;nathalia;1183.034;115942014;Ecuador; -2018-12-01T23:23:44Z;Armando;1330.158;115116374;Ecuador; -2018-12-01T22:52:30Z;Júlio Cesar;127.6605;115242380;Ecuador; -2018-12-01T22:28:01Z;Nathália;20887.4;115393262;Ecuador; -2018-12-01T22:00:36Z;Sandra;3908.813;116082125;Ecuador; -2018-12-01T21:56:38Z;Nathália;5800.984;114397772;Ecuador; -2018-12-01T21:51:08Z;Júlio;10476.98;115849400;Ecuador; -2018-12-01T21:45:48Z;Sandra;9926.68;115971823;Ecuador; -2018-12-01T21:35:36Z;Ana;7434.077;116345921;Ecuador; -2018-12-01T20:59:49Z;Júlio;434.9505;114239140;Ecuador; -2018-12-01T20:55:50Z;Sandra;2149.358;115482783;Ecuador; -2018-12-01T20:15:54Z;Nathália;5124.122;116195967;Ecuador; -2018-12-01T19:45:43Z;Júlio Cesar;915.6324;115786789;Ecuador; -2018-12-01T19:34:24Z;Nathália;1753.379;116135780;Ecuador; -2018-12-01T19:27:03Z;Armando;11155.43;114702711;Ecuador; -2018-12-01T19:26:44Z;nathalia;3752.032;115925316;Ecuador; -2018-12-01T19:14:43Z;nathalia;13181.63;115685707;Ecuador; -2018-12-01T18:46:45Z;Ana;1396.173;115733700;Ecuador; -2018-12-01T18:37:12Z;Nathália;128.1015;115172606;Ecuador; -2018-12-01T18:34:01Z;Nathália;4808.204;114684516;Ecuador; -2018-12-01T18:24:19Z;Armando;1248.619;114326119;Ecuador; -2018-12-01T18:18:34Z;Armando;2196.026;115119698;Ecuador; -2018-12-01T17:52:59Z;Sandra;2704.813;115547914;Ecuador; -2018-12-01T17:44:09Z;Júlio;13556.53;116367837;Ecuador; -2018-12-01T17:38:15Z;Júlio Cesar;17285.23;115778022;Ecuador; -2018-12-01T16:58:56Z;Eduardo;775.1948;115316981;Ecuador; -2018-12-01T15:56:57Z;Júlio;855.1135;116369208;Ecuador; -2018-12-01T15:42:18Z;Nathália;17080.54;114490544;Ecuador; -2018-12-01T15:34:10Z;Júlio Cesar;9667.225;114511996;Ecuador; -2018-12-01T15:31:59Z;Eduardo;27088.5;115685552;Ecuador; -2018-12-01T15:25:52Z;Júlio;255.4001;115325714;Ecuador; -2018-12-01T15:24:38Z;Armando;1608.661;114262764;Ecuador; -2018-12-01T14:40:22Z;Júlio;6083.286;114231969;Ecuador; -2018-12-01T14:27:11Z;nathalia;2606.966;115934014;Ecuador; -2018-12-01T14:21:50Z;nathalia;27574.98;116216082;Ecuador; -2018-12-01T14:18:16Z;Armando;4180.381;114729834;Ecuador; -2018-12-01T14:17:11Z;Eduardo;10650.68;115211262;Ecuador; -2018-12-01T14:14:10Z;Júlio Cesar;6529.907;114541403;Ecuador; -2018-12-01T13:53:48Z;Sandra;24801.48;116370035;Ecuador; -2018-12-01T13:52:51Z;Nathália;19189.29;115013161;Ecuador; -2018-12-01T13:46:32Z;Júlio;1022.179;115423331;Ecuador; -2018-12-01T13:36:49Z;nathalia;8329.245;114329961;Ecuador; -2018-12-01T13:17:08Z;Nathália;2259.329;115575305;Ecuador; -2018-12-01T12:59:30Z;Sandra;2768.83;114301336;Ecuador; -2018-12-01T12:52:21Z;Sandra;7118.034;115625184;Ecuador; -2018-12-01T12:47:07Z;Ana;21765.77;115837777;Ecuador; -2018-12-01T12:31:49Z;Armando;2784.752;116215334;Ecuador; -2018-12-01T12:18:43Z;Eduardo;2532.88;114763849;Ecuador; -2018-12-01T12:08:41Z;nathalia;182.7697;114820108;Ecuador; -2018-12-01T11:49:31Z;Júlio Cesar;1693.288;114803671;Ecuador; -2018-12-01T11:41:10Z;Nathália;973.9292;115631044;Ecuador; -2018-12-01T11:18:04Z;Eduardo;8727.47;115181900;Ecuador; -2018-12-01T11:07:54Z;nathalia;1059.37;114872183;Ecuador; -2018-12-01T10:49:22Z;Armando;5294.443;115082145;Ecuador; -2018-12-01T10:34:57Z;Júlio Cesar;7152.498;116195065;Ecuador; -2018-12-01T10:28:13Z;nathalia;9930.746;114458866;Ecuador; -2018-12-01T10:25:14Z;Nathália;997.5674;115926069;Ecuador; -2018-12-01T09:42:35Z;Sandra;5554.151;115124095;Ecuador; -2018-12-01T09:39:41Z;Ana;991.6856;115925083;Ecuador; -2018-12-01T08:31:25Z;nathalia;2395.907;115513466;Ecuador; -2018-12-01T08:22:27Z;nathalia;5688.318;116271268;Ecuador; -2018-12-01T07:58:49Z;Júlio Cesar;11681.02;115875970;Ecuador; -2018-12-01T07:31:02Z;nathalia;16255.77;115626973;Ecuador; -2018-12-01T06:44:48Z;Ana;16000.74;114718507;Ecuador; -2018-12-01T06:14:16Z;Ana;6448.345;115794888;Ecuador; -2018-12-01T06:09:49Z;Sandra;11880.93;114858750;Ecuador; -2018-12-01T05:50:20Z;Eduardo;9350.525;115613123;Ecuador; -2018-12-01T05:39:53Z;Ana;18827.74;114334976;Ecuador; -2018-12-01T05:24:15Z;nathalia;8123.381;115563461;Ecuador; -2018-12-01T05:06:15Z;Sandra;8956.542;116281597;Ecuador; -2018-12-01T04:26:03Z;nathalia;4812.952;115014440;Ecuador; -2018-12-01T04:22:36Z;Júlio Cesar;739.0753;116162785;Ecuador; -2018-12-01T04:09:32Z;Júlio Cesar;2844.602;115833721;Ecuador; -2018-12-01T03:55:47Z;nathalia;2817.85;116221843;Ecuador; -2018-12-01T03:49:39Z;nathalia;2560.415;116161578;Ecuador; -2018-12-01T03:33:10Z;Júlio Cesar;1723.509;114530330;Ecuador; -2018-12-01T03:12:57Z;Nathália;1313.054;115891589;Ecuador; -2018-12-01T03:08:13Z;Nathália;1690.813;115940896;Ecuador; -2018-12-01T02:59:40Z;nathalia;479.7445;114823392;Ecuador; -2018-12-01T02:45:41Z;Ana;1700.781;115231685;Ecuador; -2018-12-01T02:21:57Z;Sandra;2743.897;115320810;Ecuador; -2018-12-01T02:19:34Z;nathalia;10853.51;114219482;Ecuador; -2018-12-01T02:13:44Z;Ana;3040.668;115133395;Ecuador; -2018-12-01T02:07:56Z;Júlio Cesar;5065.509;114555841;Ecuador; -2018-12-01T01:56:59Z;Júlio;158.6405;116111472;Ecuador; -2018-12-01T01:37:02Z;Sandra;1141.148;114738377;Ecuador; -2018-12-01T01:30:22Z;Sandra;787.5089;115635513;Ecuador; -2018-12-01T01:20:25Z;Ana;3541.465;114856486;Ecuador; -2018-12-01T00:49:36Z;Ana;1862.307;116142753;Ecuador; -2018-12-01T00:49:03Z;nathalia;8981.385;114214642;Ecuador; -2018-12-01T00:43:29Z;Júlio;6250.792;115612009;Ecuador; -2018-12-01T00:19:32Z;Eduardo;25411.64;114446534;Ecuador; -2018-12-01T00:15:27Z;Ana;289.4874;115514558;Ecuador; -2018-12-01T00:09:36Z;Nathália;24215.25;114635653;Ecuador; -2018-11-30T23:39:33Z;Ana;1518.323;116174712;Ecuador; -2018-11-30T23:37:32Z;Júlio Cesar;2684.13;114229993;Ecuador; -2018-11-30T23:34:29Z;Eduardo;557.7104;114981571;Ecuador; -2018-11-30T22:23:36Z;Sandra;7032.31;115815083;Ecuador; -2018-11-30T22:18:48Z;Eduardo;7110.45;114468524;Ecuador; -2018-11-30T21:32:40Z;nathalia;14926.16;115466882;Ecuador; -2018-11-30T21:32:11Z;Nathália;604.4642;115042825;Ecuador; -2018-11-30T21:07:51Z;Júlio;1807.753;115872537;Ecuador; -2018-11-30T20:41:55Z;nathalia;503.8089;114383751;Ecuador; -2018-11-30T20:33:22Z;Ana;1639.869;115365044;Ecuador; -2018-11-30T20:26:16Z;Nathália;8797.559;115837678;Ecuador; -2018-11-30T20:08:14Z;Sandra;9023.686;114356077;Ecuador; -2018-11-30T19:30:27Z;Ana;4354.51;115403183;Ecuador; -2018-11-30T19:15:27Z;Júlio Cesar;4772.64;115347741;Ecuador; -2018-11-30T18:48:49Z;Júlio;1658.041;116213375;Ecuador; -2018-11-30T18:45:11Z;Eduardo;5415.387;116284008;Ecuador; -2018-11-30T18:29:29Z;Ana;14640.98;114645155;Ecuador; -2018-11-30T18:11:44Z;Júlio;9219.076;114392383;Ecuador; -2018-11-30T17:47:32Z;Eduardo;905.2576;115780237;Ecuador; -2018-11-30T17:32:38Z;Eduardo;20466.52;115942448;Ecuador; -2018-11-30T17:26:08Z;Eduardo;4313.411;114745385;Ecuador; -2018-11-30T17:13:00Z;Júlio;11200.97;114224858;Ecuador; -2018-11-30T17:02:53Z;Nathália;4572.146;115553472;Ecuador; -2018-11-30T17:00:53Z;Nathália;7992.795;115328926;Ecuador; -2018-11-30T16:58:30Z;Júlio;3044.99;115814979;Ecuador; -2018-11-30T16:53:15Z;nathalia;13890.96;114933733;Ecuador; -2018-11-30T16:46:08Z;Ana;3350.223;114492700;Ecuador; -2018-11-30T15:58:45Z;Júlio;9416.75;114479628;Ecuador; -2018-11-30T15:26:13Z;Nathália;16338.63;114489472;Ecuador; -2018-11-30T15:16:52Z;Eduardo;4736.998;116398903;Ecuador; -2018-11-30T15:09:50Z;Armando;6311.217;114867490;Ecuador; -2018-11-30T15:05:12Z;nathalia;2657.913;115696427;Ecuador; -2018-11-30T14:55:31Z;nathalia;7403.694;116377602;Ecuador; -2018-11-30T14:52:14Z;Nathália;1279.077;115914866;Ecuador; -2018-11-30T14:39:57Z;Ana;4096.984;115452480;Ecuador; -2018-11-30T14:30:16Z;Júlio;1058.372;115058465;Ecuador; -2018-11-30T13:19:38Z;Júlio Cesar;27233.78;116161652;Ecuador; -2018-11-30T12:19:30Z;Nathália;2181.66;116343488;Ecuador; -2018-11-30T12:04:10Z;Nathália;8887.766;114910348;Ecuador; -2018-11-30T11:46:56Z;Sandra;518.226;115644158;Ecuador; -2018-11-30T11:33:03Z;Sandra;6366.954;114612993;Ecuador; -2018-11-30T09:58:18Z;Júlio;262.4645;116293966;Ecuador; -2018-11-30T09:42:09Z;Nathália;2066.986;116130212;Ecuador; -2018-11-30T09:09:21Z;Sandra;3167.111;115987662;Ecuador; -2018-11-30T09:01:02Z;Armando;688.7549;115852380;Ecuador; -2018-11-30T08:54:36Z;Nathália;4603.934;116208366;Ecuador; -2018-11-30T08:52:08Z;Júlio;22716.74;115030950;Ecuador; -2018-11-30T08:11:50Z;Júlio;2513.08;115107210;Ecuador; -2018-11-30T08:10:42Z;Nathália;9741.517;115930239;Ecuador; -2018-11-30T08:04:14Z;Eduardo;3667.122;115667373;Ecuador; -2018-11-30T07:42:17Z;nathalia;8467.117;115115999;Ecuador; -2018-11-30T07:24:11Z;Ana;15226.99;114347005;Ecuador; -2018-11-30T07:19:24Z;nathalia;3127.863;114484033;Ecuador; -2018-11-30T07:00:07Z;Nathália;716.3962;116067352;Ecuador; -2018-11-30T06:39:49Z;Nathália;4381.435;115974864;Ecuador; -2018-11-30T06:36:52Z;Júlio Cesar;3573.855;115850878;Ecuador; -2018-11-30T06:29:12Z;Nathália;1043.871;114719337;Ecuador; -2018-11-30T06:12:55Z;Júlio;2731.351;116242958;Ecuador; -2018-11-30T06:11:27Z;nathalia;3170.771;115606679;Ecuador; -2018-11-30T06:08:01Z;Armando;7199.012;116199144;Ecuador; -2018-11-30T05:46:59Z;Júlio;615.52;114544961;Ecuador; -2018-11-30T05:24:51Z;Armando;384.2636;115286251;Ecuador; -2018-11-30T05:17:37Z;nathalia;4970.612;114492025;Ecuador; -2018-11-30T04:13:44Z;Ana;9946.41;116286586;Ecuador; -2018-11-30T03:27:32Z;Ana;538.2323;116350063;Ecuador; -2018-11-30T03:16:10Z;Armando;5893.743;115833149;Ecuador; -2018-11-30T02:54:40Z;Armando;3902.111;115688766;Ecuador; -2018-11-30T02:49:48Z;nathalia;8146.414;116330259;Ecuador; -2018-11-30T02:38:09Z;Júlio;5326.235;116346149;Ecuador; -2018-11-30T02:35:51Z;Ana;1608.885;114287092;Ecuador; -2018-11-30T02:21:11Z;Júlio;15077.32;115069399;Ecuador; -2018-11-30T02:05:23Z;Nathália;4927.636;115026507;Ecuador; -2018-11-30T01:40:12Z;Eduardo;4946.269;116335806;Ecuador; -2018-11-30T01:36:07Z;Júlio Cesar;4951.282;115838205;Ecuador; -2018-11-30T01:29:42Z;Júlio Cesar;13433.71;114426990;Ecuador; -2018-11-30T01:02:08Z;Júlio;4884.05;116104276;Ecuador; -2018-11-30T00:34:39Z;Armando;507.1303;116312625;Ecuador; -2018-11-29T23:46:38Z;Eduardo;11719.2;116051691;Ecuador; -2018-11-29T23:44:21Z;Eduardo;4187.165;116016785;Ecuador; -2018-11-29T23:42:59Z;Eduardo;7889.505;116021853;Ecuador; -2018-11-29T23:31:21Z;Nathália;7162.16;115155995;Ecuador; -2018-11-29T23:29:35Z;Ana;6614.691;116079627;Ecuador; -2018-11-29T23:05:53Z;Sandra;681.8796;115806873;Ecuador; -2018-11-29T22:28:42Z;Sandra;5960.934;116205879;Ecuador; -2018-11-29T22:25:43Z;Júlio Cesar;770.775;115058402;Ecuador; -2018-11-29T22:21:16Z;Armando;10566.23;114532684;Ecuador; -2018-11-29T22:13:10Z;Armando;2608.466;114875380;Ecuador; -2018-11-29T22:08:47Z;Nathália;12547.52;115547093;Ecuador; -2018-11-29T22:06:10Z;Ana;106.1692;114861106;Ecuador; -2018-11-29T21:44:56Z;Sandra;674.6691;115362710;Ecuador; -2018-11-29T21:43:46Z;Júlio Cesar;4699.959;115567531;Ecuador; -2018-11-29T21:40:33Z;Sandra;76.62342;115385902;Ecuador; -2018-11-29T21:29:22Z;Júlio;1328.547;114473303;Ecuador; -2018-11-29T21:27:49Z;Ana;6187.799;115883181;Ecuador; -2018-11-29T21:19:03Z;Eduardo;7203.168;116170264;Ecuador; -2018-11-29T21:13:13Z;Nathália;4051.991;115025032;Ecuador; -2018-11-29T20:33:47Z;Nathália;4301.486;116260813;Ecuador; -2018-11-29T20:32:37Z;Sandra;6583.266;115256685;Ecuador; -2018-11-29T20:29:10Z;Nathália;3845.157;115687231;Ecuador; -2018-11-29T20:28:30Z;Nathália;7377.881;115246828;Ecuador; -2018-11-29T20:26:11Z;Ana;4504.02;115640791;Ecuador; -2018-11-29T19:48:52Z;Nathália;4980.954;114870296;Ecuador; -2018-11-29T19:39:42Z;Júlio Cesar;10241.24;114367185;Ecuador; -2018-11-29T19:28:56Z;Ana;4797.718;114500470;Ecuador; -2018-11-29T19:20:58Z;Nathália;2678.036;116384192;Ecuador; -2018-11-29T19:20:34Z;Júlio;1085.622;114979309;Ecuador; -2018-11-29T18:38:23Z;Eduardo;4649.126;115921562;Ecuador; -2018-11-29T18:32:29Z;Armando;2788.624;114519040;Ecuador; -2018-11-29T18:27:38Z;Júlio Cesar;14658.22;114626819;Ecuador; -2018-11-29T18:02:06Z;nathalia;6185.545;114383796;Ecuador; -2018-11-29T18:00:29Z;Eduardo;15213.97;114645416;Ecuador; -2018-11-29T17:29:46Z;Sandra;8653.894;114485135;Ecuador; -2018-11-29T17:20:09Z;Eduardo;11478.12;115671772;Ecuador; -2018-11-29T16:59:48Z;Júlio Cesar;2852.264;114488516;Ecuador; -2018-11-29T16:49:04Z;Sandra;3448.266;114513341;Ecuador; -2018-11-29T16:34:14Z;Sandra;81.05269;115452050;Ecuador; -2018-11-29T16:31:18Z;Nathália;16492.26;114979289;Ecuador; -2018-11-29T15:47:42Z;Eduardo;9858.999;116206385;Ecuador; -2018-11-29T15:15:58Z;Nathália;6278.792;114610368;Ecuador; -2018-11-29T15:00:39Z;nathalia;11618.22;115140841;Ecuador; -2018-11-29T14:43:24Z;nathalia;23.75722;115356286;Ecuador; -2018-11-29T14:18:17Z;Júlio;1437.377;114666493;Ecuador; -2018-11-29T13:33:38Z;Júlio Cesar;7544.491;116343522;Ecuador; -2018-11-29T13:23:24Z;Nathália;19898.93;114954350;Ecuador; -2018-11-29T13:21:34Z;Nathália;2092.324;116356147;Ecuador; -2018-11-29T13:15:26Z;Ana;760.4785;115920954;Ecuador; -2018-11-29T13:14:45Z;nathalia;6357.782;115066866;Ecuador; -2018-11-29T13:10:08Z;Sandra;1698.844;116092769;Ecuador; -2018-11-29T13:00:08Z;Nathália;9891.589;114479560;Ecuador; -2018-11-29T12:57:56Z;Eduardo;5619.168;114684846;Ecuador; -2018-11-29T12:56:23Z;nathalia;8134.302;116028176;Ecuador; -2018-11-29T12:40:23Z;Armando;4309.903;114767766;Ecuador; -2018-11-29T12:39:31Z;Sandra;9428.099;114980730;Ecuador; -2018-11-29T12:37:06Z;Júlio;1540.154;115357234;Ecuador; -2018-11-29T12:20:44Z;Sandra;134.6485;114575941;Ecuador; -2018-11-29T12:11:19Z;nathalia;7958.737;115502198;Ecuador; -2018-11-29T12:00:43Z;Nathália;55.78103;115518902;Ecuador; -2018-11-29T11:39:01Z;Júlio Cesar;18618.98;116335866;Ecuador; -2018-11-29T11:33:42Z;Armando;10928.21;115333223;Ecuador; -2018-11-29T10:33:20Z;Sandra;19352.84;114590451;Ecuador; -2018-11-29T10:20:43Z;Júlio Cesar;2623.18;116329220;Ecuador; -2018-11-29T09:57:07Z;Sandra;13440.32;116026840;Ecuador; -2018-11-29T09:54:51Z;Júlio;3432.003;115039920;Ecuador; -2018-11-29T09:22:02Z;Armando;2093.894;116089940;Ecuador; -2018-11-29T09:11:00Z;Sandra;12908.38;115975887;Ecuador; -2018-11-29T09:02:10Z;Ana;3608.458;115537594;Ecuador; -2018-11-29T08:57:19Z;Armando;28427.76;114747111;Ecuador; -2018-11-29T08:32:38Z;Ana;8573.548;115794755;Ecuador; -2018-11-29T08:26:32Z;Armando;4658.568;114926570;Ecuador; -2018-11-29T07:36:15Z;Sandra;11788.99;115086026;Ecuador; -2018-11-29T07:33:06Z;Júlio Cesar;1883.258;115383720;Ecuador; -2018-11-29T07:27:38Z;Nathália;7464.921;116136151;Ecuador; -2018-11-29T07:17:50Z;Júlio;7207.46;114491153;Ecuador; -2018-11-29T06:56:16Z;nathalia;7718.82;115599013;Ecuador; -2018-11-29T06:46:56Z;Júlio;11374.06;115251907;Ecuador; -2018-11-29T06:41:31Z;Nathália;3938.99;114252156;Ecuador; -2018-11-29T06:08:12Z;nathalia;14043.22;115764319;Ecuador; -2018-11-29T06:03:09Z;nathalia;1822.061;114492154;Ecuador; -2018-11-29T05:20:45Z;nathalia;6422.629;114697405;Ecuador; -2018-11-29T05:09:23Z;Armando;3148.364;116215156;Ecuador; -2018-11-29T04:58:07Z;Sandra;10881.35;115657430;Ecuador; -2018-11-29T04:28:01Z;Ana;10171.42;114713965;Ecuador; -2018-11-29T04:27:23Z;Júlio Cesar;10709.63;114873720;Ecuador; -2018-11-29T04:04:42Z;Sandra;302.9964;114546779;Ecuador; -2018-11-29T04:01:13Z;Sandra;2919.843;115404407;Ecuador; -2018-11-29T03:36:02Z;nathalia;11974.73;114731035;Ecuador; -2018-11-29T03:34:32Z;nathalia;1912.232;114338358;Ecuador; -2018-11-29T03:20:38Z;Júlio Cesar;3161.366;115982925;Ecuador; -2018-11-29T03:08:14Z;nathalia;1232.537;114486903;Ecuador; -2018-11-29T02:55:26Z;Sandra;11080.99;114450697;Ecuador; -2018-11-29T02:07:20Z;nathalia;9089.187;115025741;Ecuador; -2018-11-29T01:59:21Z;nathalia;1718.172;115588158;Ecuador; -2018-11-29T01:46:21Z;Júlio;19281.81;114227794;Ecuador; -2018-11-29T00:25:37Z;Júlio;600.2421;115711071;Ecuador; -2018-11-29T00:24:52Z;Ana;5073.819;114350292;Ecuador; -2018-11-29T00:17:51Z;Eduardo;993.1991;116330271;Ecuador; -2018-11-28T23:50:25Z;Sandra;9880.428;114860847;Ecuador; -2018-11-28T23:41:13Z;Armando;15104.83;115010382;Ecuador; -2018-11-28T23:28:01Z;Armando;4474.756;115796122;Ecuador; -2018-11-28T23:19:30Z;Eduardo;4321.37;115019411;Ecuador; -2018-11-28T22:52:29Z;Sandra;9163.255;114723850;Ecuador; -2018-11-28T22:40:56Z;Armando;2211.977;114382237;Ecuador; -2018-11-28T22:29:37Z;Armando;3992.838;116070529;Ecuador; -2018-11-28T21:48:03Z;Sandra;243.5312;115397078;Ecuador; -2018-11-28T21:46:21Z;Sandra;10416.94;116121181;Ecuador; -2018-11-28T21:35:01Z;Júlio;1722.827;114766783;Ecuador; -2018-11-28T21:30:47Z;Sandra;3319.018;114925293;Ecuador; -2018-11-28T20:45:02Z;Ana;1006.964;114234486;Ecuador; -2018-11-28T20:43:16Z;Júlio Cesar;2287.07;116033082;Ecuador; -2018-11-28T20:03:54Z;Sandra;15719.45;115621770;Ecuador; -2018-11-28T19:51:08Z;Eduardo;4017.066;115933185;Ecuador; -2018-11-28T19:50:22Z;Nathália;6364.469;115349961;Ecuador; -2018-11-28T19:17:39Z;Júlio;641.3218;115630668;Ecuador; -2018-11-28T18:59:46Z;Júlio Cesar;569.54;115187226;Ecuador; -2018-11-28T18:18:49Z;Sandra;7473.911;114314958;Ecuador; -2018-11-28T18:10:34Z;nathalia;10536.9;115217859;Ecuador; -2018-11-28T18:09:46Z;Júlio;22581.24;116254151;Ecuador; -2018-11-28T17:57:54Z;Sandra;4223.483;115228818;Ecuador; -2018-11-28T17:44:29Z;Armando;14532.45;115964214;Ecuador; -2018-11-28T17:15:40Z;Sandra;1001.053;115534373;Ecuador; -2018-11-28T16:51:50Z;Nathália;8033.019;115056096;Ecuador; -2018-11-28T16:49:29Z;Ana;10376.79;115474229;Ecuador; -2018-11-28T16:30:43Z;Ana;3981.483;114514951;Ecuador; -2018-11-28T15:43:45Z;Eduardo;5503.165;115690590;Ecuador; -2018-11-28T15:22:47Z;Júlio;3356.769;115106239;Ecuador; -2018-11-28T15:21:32Z;Eduardo;9421.651;114817864;Ecuador; -2018-11-28T15:18:39Z;Júlio Cesar;7160.826;115830853;Ecuador; -2018-11-28T15:05:40Z;Nathália;3929.323;116015560;Ecuador; -2018-11-28T15:02:18Z;Júlio;5947.499;115977539;Ecuador; -2018-11-28T14:46:57Z;nathalia;11968.34;115090497;Ecuador; -2018-11-28T14:42:21Z;Armando;20426.18;115997111;Ecuador; -2018-11-28T14:18:35Z;Júlio;6374.797;114440166;Ecuador; -2018-11-28T14:14:55Z;nathalia;9919.168;114586712;Ecuador; -2018-11-28T13:50:14Z;nathalia;5427.691;115302544;Ecuador; -2018-11-28T13:26:09Z;Ana;6949.324;115032534;Ecuador; -2018-11-28T13:21:42Z;Eduardo;8133.497;114628609;Ecuador; -2018-11-28T13:07:23Z;Nathália;15978.06;114717904;Ecuador; -2018-11-28T13:02:08Z;Júlio;671.5131;115906683;Ecuador; -2018-11-28T12:56:06Z;Sandra;2882.246;115689707;Ecuador; -2018-11-28T12:41:27Z;Armando;714.1616;115563110;Ecuador; -2018-11-28T11:46:51Z;Júlio Cesar;1733.856;115294250;Ecuador; -2018-11-28T11:46:01Z;Júlio;12367.55;114868089;Ecuador; -2018-11-28T11:21:13Z;Júlio Cesar;136.0753;115303740;Ecuador; -2018-11-28T11:14:14Z;Nathália;7765.655;115835105;Ecuador; -2018-11-28T10:58:01Z;nathalia;1177.145;114852773;Ecuador; -2018-11-28T10:53:17Z;Eduardo;3460.535;114841049;Ecuador; -2018-11-28T10:49:48Z;Eduardo;2869.321;116017271;Ecuador; -2018-11-28T10:20:25Z;Eduardo;1044.451;115204027;Ecuador; -2018-11-28T10:16:36Z;nathalia;13279.2;115137371;Ecuador; -2018-11-28T10:09:16Z;Sandra;826.9388;115709498;Ecuador; -2018-11-28T09:53:42Z;Júlio Cesar;17881.46;114328308;Ecuador; -2018-11-28T09:41:04Z;Eduardo;18344.24;115399272;Ecuador; -2018-11-28T09:38:09Z;Eduardo;3245.86;115516287;Ecuador; -2018-11-28T08:48:18Z;Ana;1427.936;114495846;Ecuador; -2018-11-28T08:47:55Z;Ana;12919.56;115645068;Ecuador; -2018-11-28T08:42:57Z;Sandra;525.6511;115732638;Ecuador; -2018-11-28T08:23:00Z;Ana;3444.534;115123103;Ecuador; -2018-11-28T07:40:51Z;Eduardo;13577.34;115403142;Ecuador; -2018-11-28T07:36:30Z;Sandra;2276.122;115506242;Ecuador; -2018-11-28T07:20:10Z;Nathália;9300.135;114441853;Ecuador; -2018-11-28T07:00:05Z;Júlio;349.731;116096800;Ecuador; -2018-11-28T06:57:19Z;Júlio Cesar;4735.189;114395007;Ecuador; -2018-11-28T06:49:01Z;Júlio;8060.725;114372823;Ecuador; -2018-11-28T06:09:05Z;Júlio;1471.387;114399536;Ecuador; -2018-11-28T05:57:09Z;Sandra;7659.628;115468199;Ecuador; -2018-11-28T05:53:36Z;Armando;4855.962;116254655;Ecuador; -2018-11-28T05:43:58Z;Júlio;11168.8;115339960;Ecuador; -2018-11-28T05:38:28Z;Sandra;8821.584;114912475;Ecuador; -2018-11-28T05:19:11Z;Júlio Cesar;1283.431;114426601;Ecuador; -2018-11-28T05:04:44Z;Sandra;5232.115;115720145;Ecuador; -2018-11-28T05:03:00Z;Nathália;16532.29;114211171;Ecuador; -2018-11-28T04:53:27Z;Júlio Cesar;11665.82;116364001;Ecuador; -2018-11-28T04:43:10Z;Júlio Cesar;13023.25;115032380;Ecuador; -2018-11-28T04:42:42Z;Armando;3749.549;116216020;Ecuador; -2018-11-28T03:54:48Z;Ana;6677.167;116164816;Ecuador; -2018-11-28T03:47:45Z;Sandra;5567.024;116235299;Ecuador; -2018-11-28T03:35:35Z;nathalia;1288.38;115563294;Ecuador; -2018-11-28T03:07:54Z;Eduardo;4417.574;115181850;Ecuador; -2018-11-28T02:58:54Z;Ana;20310.83;114730870;Ecuador; -2018-11-28T02:53:13Z;Sandra;19000.13;116032694;Ecuador; -2018-11-28T02:20:26Z;Júlio Cesar;2175.268;114509176;Ecuador; -2018-11-28T01:27:28Z;Ana;12260.62;114527505;Ecuador; -2018-11-28T00:40:25Z;Nathália;5437.55;115623000;Ecuador; -2018-11-28T00:17:44Z;nathalia;459.8403;115746247;Ecuador; -2018-11-27T23:54:37Z;Armando;6725.45;115955750;Ecuador; -2018-11-27T23:31:31Z;Júlio;9716.01;116110928;Ecuador; -2018-11-27T22:45:56Z;Sandra;9204.775;115242037;Ecuador; -2018-11-27T22:31:09Z;Ana;5089.051;116035891;Ecuador; -2018-11-27T22:28:47Z;Armando;14448.54;114271380;Ecuador; -2018-11-27T22:18:55Z;Sandra;25116.19;114629752;Ecuador; -2018-11-27T22:05:19Z;Nathália;17371.95;114374308;Ecuador; -2018-11-27T21:11:51Z;Nathália;9295.124;116157845;Ecuador; -2018-11-27T21:07:23Z;Júlio Cesar;2430.734;114818348;Ecuador; -2018-11-27T20:56:58Z;Júlio;3453.926;116019792;Ecuador; -2018-11-27T20:46:34Z;Nathália;5994.066;114511708;Ecuador; -2018-11-27T20:34:19Z;Armando;11000.47;115855310;Ecuador; -2018-11-27T20:15:56Z;Júlio Cesar;13836.71;114572367;Ecuador; -2018-11-27T20:10:36Z;Nathália;1215.239;115103332;Ecuador; -2018-11-27T20:05:22Z;Ana;3708.171;116195129;Ecuador; -2018-11-27T20:00:13Z;Ana;309.201;114752900;Ecuador; -2018-11-27T19:58:01Z;Nathália;16384.73;114244725;Ecuador; -2018-11-27T19:51:58Z;Nathália;6105.137;114600974;Ecuador; -2018-11-27T19:41:46Z;nathalia;57.00109;116069941;Ecuador; -2018-11-27T19:36:15Z;Sandra;6255.012;116067010;Ecuador; -2018-11-27T19:01:22Z;nathalia;7020.05;114854638;Ecuador; -2018-11-27T18:52:10Z;Júlio Cesar;22694.69;114809713;Ecuador; -2018-11-27T18:47:28Z;Ana;10000.42;114376707;Ecuador; -2018-11-27T18:37:03Z;Júlio;4065.922;115863020;Ecuador; -2018-11-27T18:35:41Z;Júlio;2107.461;115848320;Ecuador; -2018-11-27T18:26:22Z;Eduardo;550.6449;115267823;Ecuador; -2018-11-27T18:12:28Z;Júlio Cesar;12637;116028558;Ecuador; -2018-11-27T18:11:04Z;Eduardo;5604.916;114810349;Ecuador; -2018-11-27T18:03:25Z;Júlio;10189.95;115281169;Ecuador; -2018-11-27T18:01:35Z;Ana;11937.08;115175335;Ecuador; -2018-11-27T17:26:26Z;Sandra;16933.89;114497746;Ecuador; -2018-11-27T17:24:04Z;Júlio Cesar;2954.27;116249647;Ecuador; -2018-11-27T17:11:43Z;Eduardo;4102.438;114769793;Ecuador; -2018-11-27T16:54:10Z;nathalia;12420.03;115692451;Ecuador; -2018-11-27T16:53:22Z;Nathália;10256.54;115201762;Ecuador; -2018-11-27T16:50:53Z;Ana;10995.4;116229559;Ecuador; -2018-11-27T16:44:09Z;nathalia;11139.48;115623250;Ecuador; -2018-11-27T16:40:30Z;Eduardo;18520.54;115316289;Ecuador; -2018-11-27T16:21:20Z;nathalia;964.3251;115579196;Ecuador; -2018-11-27T16:16:56Z;Nathália;4544.761;116150300;Ecuador; -2018-11-27T15:56:44Z;Júlio Cesar;15905.64;115062909;Ecuador; -2018-11-27T15:53:35Z;Júlio Cesar;4281.793;114499651;Ecuador; -2018-11-27T14:56:01Z;Sandra;1578.531;114274114;Ecuador; -2018-11-27T14:36:48Z;Eduardo;144.7978;115109672;Ecuador; -2018-11-27T14:08:46Z;Nathália;12349.47;114873097;Ecuador; -2018-11-27T14:05:09Z;Eduardo;7220.984;114233250;Ecuador; -2018-11-27T14:01:21Z;Ana;7160.333;114476308;Ecuador; -2018-11-27T13:55:54Z;nathalia;1931.416;114502049;Ecuador; -2018-11-27T13:54:47Z;Eduardo;1619.896;115301359;Ecuador; -2018-11-27T13:52:26Z;Júlio Cesar;1637.161;115884118;Ecuador; -2018-11-27T13:52:16Z;Nathália;2021.349;116126767;Ecuador; -2018-11-27T13:40:28Z;Sandra;10252.12;115966032;Ecuador; -2018-11-27T13:12:40Z;Eduardo;11381.09;116213272;Ecuador; -2018-11-27T13:05:24Z;Armando;8640.646;115239814;Ecuador; -2018-11-27T13:04:06Z;Armando;4662.481;115288577;Ecuador; -2018-11-27T12:12:07Z;Eduardo;8721.156;115730078;Ecuador; -2018-11-27T12:10:12Z;Júlio;7876.368;116390839;Ecuador; -2018-11-27T11:31:23Z;Júlio;1596.318;114879482;Ecuador; -2018-11-27T11:25:47Z;Ana;17402.99;115864730;Ecuador; -2018-11-27T10:33:14Z;Nathália;1880.995;115464503;Ecuador; -2018-11-27T10:32:09Z;Eduardo;11042.52;115745614;Ecuador; -2018-11-27T10:27:09Z;Eduardo;6246.459;115401305;Ecuador; -2018-11-27T10:04:28Z;Júlio Cesar;2954.319;114827998;Ecuador; -2018-11-27T09:42:48Z;Júlio Cesar;3668.976;115614491;Ecuador; -2018-11-27T09:08:16Z;Armando;5224.458;114843526;Ecuador; -2018-11-27T08:33:03Z;Júlio Cesar;30134.21;114706528;Ecuador; -2018-11-27T08:29:03Z;Armando;3472.886;115396189;Ecuador; -2018-11-27T08:21:05Z;nathalia;9291.363;114603313;Ecuador; -2018-11-27T07:47:56Z;nathalia;10231.95;114775670;Ecuador; -2018-11-27T07:44:36Z;Eduardo;21847.15;114771816;Ecuador; -2018-11-27T07:41:49Z;Júlio;5829.711;115950694;Ecuador; -2018-11-27T07:37:14Z;Armando;13063.7;115673692;Ecuador; -2018-11-27T07:34:00Z;Ana;4844.319;115519675;Ecuador; -2018-11-27T07:32:23Z;Júlio Cesar;18331.12;114896988;Ecuador; -2018-11-27T07:20:52Z;Sandra;1634.751;114369163;Ecuador; -2018-11-27T07:18:18Z;Júlio;497.053;114912402;Ecuador; -2018-11-27T07:10:01Z;Sandra;20349.17;114904221;Ecuador; -2018-11-27T07:00:02Z;nathalia;9273.308;114725653;Ecuador; -2018-11-27T06:36:59Z;Júlio;2823.322;114233574;Ecuador; -2018-11-27T06:26:18Z;Armando;630.8797;114434514;Ecuador; -2018-11-27T06:05:38Z;Eduardo;12416.84;116131723;Ecuador; -2018-11-27T05:59:17Z;Júlio;1746.073;114724660;Ecuador; -2018-11-27T05:53:05Z;Sandra;22024.07;116184767;Ecuador; -2018-11-27T05:48:44Z;nathalia;10434.25;114349317;Ecuador; -2018-11-27T05:40:13Z;Sandra;9577.606;114653123;Ecuador; -2018-11-27T05:20:09Z;Sandra;2538.478;116008538;Ecuador; -2018-11-27T05:13:35Z;Júlio Cesar;6343.497;114291560;Ecuador; -2018-11-27T05:02:17Z;Nathália;12668.85;115620189;Ecuador; -2018-11-27T04:56:47Z;Sandra;5536.871;114431231;Ecuador; -2018-11-27T04:30:34Z;Nathália;5552.93;114837127;Ecuador; -2018-11-27T04:29:13Z;Armando;302.9202;115809646;Ecuador; -2018-11-27T04:24:30Z;nathalia;7456.513;114695059;Ecuador; -2018-11-27T03:22:55Z;nathalia;692.2075;114968591;Ecuador; -2018-11-27T03:19:12Z;Armando;3207.346;116229639;Ecuador; -2018-11-27T03:13:40Z;Ana;2172.993;115900828;Ecuador; -2018-11-27T03:04:12Z;Ana;10395.79;115183068;Ecuador; -2018-11-27T02:55:42Z;Eduardo;11147.72;115713324;Ecuador; -2018-11-27T02:50:16Z;Sandra;7720.217;115499749;Ecuador; -2018-11-27T02:48:14Z;nathalia;3348.586;115452522;Ecuador; -2018-11-27T02:46:47Z;Nathália;6289.693;116358569;Ecuador; -2018-11-27T01:58:09Z;Júlio;5598.7;115682809;Ecuador; -2018-11-27T01:12:58Z;Júlio;5682.407;115942571;Ecuador; -2018-11-27T01:10:17Z;Armando;14957.42;114478713;Ecuador; -2018-11-27T01:06:37Z;Ana;2657.236;114213938;Ecuador; -2018-11-27T01:01:05Z;Ana;1333.251;114328191;Ecuador; -2018-11-27T00:41:33Z;Ana;3310.408;114573529;Ecuador; -2018-11-27T00:40:14Z;Armando;2158;116155561;Ecuador; -2018-11-27T00:39:56Z;Armando;990.0665;115952872;Ecuador; -2018-11-27T00:39:26Z;Armando;1161.749;115767743;Ecuador; -2018-11-27T00:32:06Z;Sandra;5849.194;114531657;Ecuador; -2018-11-27T00:18:04Z;Nathália;422.2657;115626608;Ecuador; -2018-11-26T23:49:21Z;Júlio Cesar;1503.491;114303760;Ecuador; -2018-11-26T23:38:48Z;Eduardo;19429.99;116157855;Ecuador; -2018-11-26T23:28:47Z;Eduardo;11232.3;114427749;Ecuador; -2018-11-26T23:23:52Z;nathalia;962.542;114383123;Ecuador; -2018-11-26T23:14:33Z;Sandra;5611.468;116027741;Ecuador; -2018-11-26T22:19:08Z;Nathália;10316.64;114647945;Ecuador; -2018-11-26T22:07:16Z;Ana;2815.668;115674654;Ecuador; -2018-11-26T21:55:06Z;Júlio Cesar;1838.388;115407793;Ecuador; -2018-11-26T21:51:13Z;Ana;1561.441;116215071;Ecuador; -2018-11-26T21:48:05Z;Sandra;4346.053;116351375;Ecuador; -2018-11-26T21:26:33Z;Eduardo;128.5062;115393600;Ecuador; -2018-11-26T21:25:33Z;nathalia;10240.83;115734744;Ecuador; -2018-11-26T21:00:33Z;Armando;361.9302;114920003;Ecuador; -2018-11-26T20:38:23Z;Ana;17890.18;115044259;Ecuador; -2018-11-26T20:29:14Z;Nathália;4586.219;116294263;Ecuador; -2018-11-26T20:26:13Z;Sandra;19480.35;114637236;Ecuador; -2018-11-26T20:25:22Z;Júlio Cesar;8365.474;115065949;Ecuador; -2018-11-26T19:35:47Z;Sandra;2462.821;115033551;Ecuador; -2018-11-26T19:24:22Z;nathalia;4834.671;114797725;Ecuador; -2018-11-26T19:21:47Z;nathalia;5856.519;114437417;Ecuador; -2018-11-26T19:04:34Z;Nathália;4350.903;115557640;Ecuador; -2018-11-26T18:52:08Z;Ana;5367.623;115733528;Ecuador; -2018-11-26T18:37:56Z;Eduardo;604.5717;115945411;Ecuador; -2018-11-26T18:00:43Z;nathalia;42.52915;114439712;Ecuador; -2018-11-26T17:49:17Z;Eduardo;19490.94;115387373;Ecuador; -2018-11-26T17:31:20Z;Júlio Cesar;378.5125;116115958;Ecuador; -2018-11-26T17:15:05Z;Sandra;689.7764;114306155;Ecuador; -2018-11-26T17:11:43Z;Nathália;2878.994;115025567;Ecuador; -2018-11-26T17:02:51Z;Júlio Cesar;16220.31;115681716;Ecuador; -2018-11-26T16:57:15Z;Sandra;10870.5;115190996;Ecuador; -2018-11-26T16:52:21Z;Armando;28415.98;114564148;Ecuador; -2018-11-26T16:33:33Z;Ana;5896.232;115789374;Ecuador; -2018-11-26T16:32:34Z;nathalia;10187.05;115361337;Ecuador; -2018-11-26T16:21:09Z;Ana;25918.72;115344126;Ecuador; -2018-11-26T16:09:48Z;Júlio Cesar;8066.371;114304636;Ecuador; -2018-11-26T15:41:42Z;Nathália;9316.211;115539922;Ecuador; -2018-11-26T15:40:53Z;Ana;3502.585;116380564;Ecuador; -2018-11-26T15:39:01Z;Júlio;5125.792;116097243;Ecuador; -2018-11-26T15:35:51Z;Ana;7068.116;114755279;Ecuador; -2018-11-26T15:31:02Z;Eduardo;15852.9;115581933;Ecuador; -2018-11-26T14:46:34Z;Júlio;4790.865;114594844;Ecuador; -2018-11-26T14:35:13Z;Eduardo;6688.312;115196909;Ecuador; -2018-11-26T14:10:33Z;Eduardo;13103.62;114776789;Ecuador; -2018-11-26T13:30:14Z;Sandra;17981.55;114936063;Ecuador; -2018-11-26T13:26:56Z;Sandra;3894.829;114511157;Ecuador; -2018-11-26T13:09:34Z;Eduardo;753.3727;114433494;Ecuador; -2018-11-26T13:08:56Z;Júlio Cesar;8739.365;115034742;Ecuador; -2018-11-26T13:06:29Z;Eduardo;14468.52;115538633;Ecuador; -2018-11-26T12:43:33Z;Nathália;15294.88;114278327;Ecuador; -2018-11-26T12:33:30Z;Ana;11564.19;116359162;Ecuador; -2018-11-26T12:23:08Z;nathalia;15335.5;114585511;Ecuador; -2018-11-26T12:13:32Z;Sandra;15878.6;114225875;Ecuador; -2018-11-26T11:38:29Z;Sandra;5703.633;115462505;Ecuador; -2018-11-26T11:23:55Z;Ana;10211.24;114645937;Ecuador; -2018-11-26T10:55:19Z;nathalia;11918.15;115962320;Ecuador; -2018-11-26T10:53:41Z;Ana;1082.855;114565371;Ecuador; -2018-11-26T10:23:48Z;Ana;3047.557;116248782;Ecuador; -2018-11-26T10:19:57Z;Nathália;9810.996;115908532;Ecuador; -2018-11-26T09:36:09Z;Júlio;3148.449;114254786;Ecuador; -2018-11-26T09:18:47Z;Sandra;4921.78;115274393;Ecuador; -2018-11-26T09:13:50Z;Sandra;9668.402;114662679;Ecuador; -2018-11-26T09:11:57Z;Sandra;17451.69;116001487;Ecuador; -2018-11-26T08:56:08Z;Eduardo;5177.928;115157453;Ecuador; -2018-11-26T08:55:49Z;Júlio Cesar;2779.583;114555845;Ecuador; -2018-11-26T08:42:50Z;Júlio;7198.041;115546070;Ecuador; -2018-11-26T08:31:13Z;Júlio;1104.616;114747707;Ecuador; -2018-11-26T08:16:56Z;nathalia;8216.311;115208544;Ecuador; -2018-11-26T07:57:56Z;Júlio;9378.253;116272936;Ecuador; -2018-11-26T07:38:56Z;Sandra;195.6166;116282572;Ecuador; -2018-11-26T07:13:16Z;Nathália;3477.749;115069026;Ecuador; -2018-11-26T06:55:29Z;Sandra;23163.01;115746472;Ecuador; -2018-11-26T06:25:11Z;Sandra;10028.75;114550404;Ecuador; -2018-11-26T06:25:06Z;Nathália;823.617;114407821;Ecuador; -2018-11-26T05:11:13Z;Nathália;6533.028;114998267;Ecuador; -2018-11-26T05:05:24Z;Nathália;2644.91;115659034;Ecuador; -2018-11-26T04:56:00Z;Nathália;21218.77;115852454;Ecuador; -2018-11-26T04:36:10Z;Eduardo;1777.453;116100718;Ecuador; -2018-11-26T04:33:38Z;Júlio Cesar;8653.38;115916218;Ecuador; -2018-11-26T04:05:25Z;nathalia;8174.533;115471682;Ecuador; -2018-11-26T03:23:21Z;Júlio Cesar;25558.31;114392538;Ecuador; -2018-11-26T03:07:07Z;Sandra;2177.72;114456940;Ecuador; -2018-11-26T03:05:13Z;Ana;10976.35;116102645;Ecuador; -2018-11-26T02:06:56Z;Armando;768.5214;114712134;Ecuador; -2018-11-26T02:00:40Z;nathalia;21326.12;114653347;Ecuador; -2018-11-26T01:35:08Z;Armando;14402.24;114261131;Ecuador; -2018-11-26T01:05:59Z;Júlio;479.8161;114407196;Ecuador; -2018-11-26T00:49:54Z;Ana;1744.596;114245776;Ecuador; -2018-11-26T00:33:13Z;Júlio Cesar;2145.661;115570753;Ecuador; -2018-11-26T00:20:12Z;Sandra;11376.31;115876950;Ecuador; -2018-11-25T23:55:59Z;Armando;3759.191;114908122;Ecuador; -2018-11-25T23:36:26Z;Eduardo;1523.652;116087578;Ecuador; -2018-11-25T23:35:30Z;Júlio Cesar;13693.55;116395590;Ecuador; -2018-11-25T23:34:32Z;Nathália;689.7035;116108236;Ecuador; -2018-11-25T23:33:33Z;Armando;7979.503;116197940;Ecuador; -2018-11-25T23:25:26Z;Nathália;10177.88;116047516;Ecuador; -2018-11-25T23:23:08Z;Eduardo;1294.179;115105298;Ecuador; -2018-11-25T23:15:57Z;Júlio;3243.574;116091800;Ecuador; -2018-11-25T23:04:35Z;Eduardo;666.7359;115706720;Ecuador; -2018-11-25T22:45:29Z;Sandra;213.1901;114380029;Ecuador; -2018-11-25T22:39:48Z;Ana;11224.29;114491930;Ecuador; -2018-11-25T22:27:44Z;nathalia;25374.85;114367708;Ecuador; -2018-11-25T22:12:20Z;nathalia;8123.235;114999789;Ecuador; -2018-11-25T21:54:19Z;Júlio Cesar;2872.529;115482044;Ecuador; -2018-11-25T21:48:34Z;Ana;4530.657;114375416;Ecuador; -2018-11-25T21:45:44Z;Eduardo;18925.71;116343883;Ecuador; -2018-11-25T21:36:46Z;Ana;376.836;114556996;Ecuador; -2018-11-25T21:29:25Z;Júlio;12869.55;114674595;Ecuador; -2018-11-25T21:26:43Z;nathalia;9461.4;114725912;Ecuador; -2018-11-25T20:39:24Z;Ana;19903.56;115850017;Ecuador; -2018-11-25T20:33:11Z;Júlio Cesar;2270.621;115628976;Ecuador; -2018-11-25T20:30:13Z;Nathália;205.427;115266478;Ecuador; -2018-11-25T20:16:31Z;Ana;8655.542;115629204;Ecuador; -2018-11-25T19:52:49Z;Sandra;4870.034;114283621;Ecuador; -2018-11-25T19:30:10Z;Armando;15689.37;116345408;Ecuador; -2018-11-25T19:27:23Z;nathalia;1007.345;116324251;Ecuador; -2018-11-25T19:10:37Z;Ana;18303.73;115658107;Ecuador; -2018-11-25T19:03:18Z;Sandra;14711.77;114294560;Ecuador; -2018-11-25T18:56:21Z;Ana;2176.829;116257584;Ecuador; -2018-11-25T18:23:46Z;nathalia;1000.106;114283158;Ecuador; -2018-11-25T18:22:33Z;Eduardo;10946.67;114620306;Ecuador; -2018-11-25T17:51:46Z;Nathália;5732.924;115442487;Ecuador; -2018-11-25T17:47:32Z;Nathália;18030.95;115524590;Ecuador; -2018-11-25T17:47:02Z;Sandra;2122.32;115134634;Ecuador; -2018-11-25T17:36:57Z;Ana;12469.86;115549196;Ecuador; -2018-11-25T17:25:03Z;nathalia;5849.683;115386423;Ecuador; -2018-11-25T17:20:26Z;Júlio;8089.86;115017198;Ecuador; -2018-11-25T17:00:02Z;Armando;689.4778;115666770;Ecuador; -2018-11-25T16:54:02Z;nathalia;15316.03;115955927;Ecuador; -2018-11-25T16:00:49Z;Nathália;15388.86;115986610;Ecuador; -2018-11-25T15:52:25Z;Júlio Cesar;10638.34;114414219;Ecuador; -2018-11-25T15:15:40Z;Ana;25516.68;115725801;Ecuador; -2018-11-25T15:09:50Z;Eduardo;15330.47;115535751;Ecuador; -2018-11-25T15:07:58Z;nathalia;4715.761;114647455;Ecuador; -2018-11-25T14:15:38Z;Júlio Cesar;4983.168;114619317;Ecuador; -2018-11-25T13:58:22Z;Sandra;599.4711;114545996;Ecuador; -2018-11-25T13:50:18Z;Ana;10381.87;115718895;Ecuador; -2018-11-25T13:40:03Z;Ana;6883.818;114524031;Ecuador; -2018-11-25T12:20:32Z;Ana;3560.262;115864075;Ecuador; -2018-11-25T12:12:41Z;Ana;6732.764;114497942;Ecuador; -2018-11-25T10:36:50Z;Eduardo;9174.508;115599281;Ecuador; -2018-11-25T10:30:30Z;Eduardo;3097.04;116068743;Ecuador; -2018-11-25T09:38:39Z;Armando;12839.17;115414884;Ecuador; -2018-11-25T09:37:02Z;Armando;8765.673;114786673;Ecuador; -2018-11-25T09:25:11Z;Eduardo;7957.607;116358061;Ecuador; -2018-11-25T09:21:18Z;Ana;25673.23;116334352;Ecuador; -2018-11-25T09:09:25Z;Júlio;812.5319;114843066;Ecuador; -2018-11-25T08:38:41Z;Júlio Cesar;4154.644;115455559;Ecuador; -2018-11-25T07:59:32Z;Ana;4866.125;116303501;Ecuador; -2018-11-25T07:37:15Z;Nathália;3977.848;115707053;Ecuador; -2018-11-25T07:21:20Z;Júlio;2354.779;116252869;Ecuador; -2018-11-25T07:19:01Z;Nathália;6958.635;115879531;Ecuador; -2018-11-25T07:05:39Z;Júlio;1138.834;116293585;Ecuador; -2018-11-25T06:48:33Z;nathalia;2981.531;114938203;Ecuador; -2018-11-25T06:37:23Z;Eduardo;8364.478;115765652;Ecuador; -2018-11-25T06:18:33Z;Ana;6111.567;115608209;Ecuador; -2018-11-25T05:30:15Z;nathalia;16666.38;115861865;Ecuador; -2018-11-25T05:28:19Z;Sandra;3495.093;116287124;Ecuador; -2018-11-25T05:03:07Z;Eduardo;14547.32;115074985;Ecuador; -2018-11-25T05:01:52Z;Eduardo;969.6588;115755531;Ecuador; -2018-11-25T04:51:12Z;Eduardo;9794.391;114812824;Ecuador; -2018-11-25T04:40:03Z;Nathália;14395.14;115552102;Ecuador; -2018-11-25T04:39:57Z;Júlio Cesar;161.2185;115215269;Ecuador; -2018-11-25T04:33:47Z;Nathália;14835.18;115023473;Ecuador; -2018-11-25T04:22:24Z;Sandra;5285.95;115821203;Ecuador; -2018-11-25T04:18:02Z;Nathália;4645.447;114887131;Ecuador; -2018-11-25T04:15:54Z;Ana;6184.252;114506809;Ecuador; -2018-11-25T03:56:14Z;nathalia;13931.45;115220307;Ecuador; -2018-11-25T03:47:16Z;Ana;12533.26;115664615;Ecuador; -2018-11-25T03:45:46Z;Júlio;10421.13;115699632;Ecuador; -2018-11-25T03:27:13Z;Sandra;7673.489;114581583;Ecuador; -2018-11-25T02:45:20Z;Júlio Cesar;18414.73;115328938;Ecuador; -2018-11-25T02:15:04Z;Júlio;1227.86;114291187;Ecuador; -2018-11-25T02:09:41Z;Eduardo;18206.91;114320856;Ecuador; -2018-11-25T02:06:12Z;Ana;4012.901;115198126;Ecuador; -2018-11-25T01:52:24Z;Sandra;13859.62;115782812;Ecuador; -2018-11-25T01:40:24Z;nathalia;6824.737;116049205;Ecuador; -2018-11-25T01:09:55Z;Armando;3528.286;115889582;Ecuador; -2018-11-25T00:50:53Z;Ana;164.0484;116084721;Ecuador; -2018-11-25T00:50:43Z;Ana;8902.671;115731127;Ecuador; -2018-11-25T00:31:21Z;Júlio Cesar;18397.7;116374250;Ecuador; -2018-11-25T00:09:33Z;Nathália;4193.857;116324259;Ecuador; -2018-11-25T00:06:53Z;Armando;1361.204;114436715;Ecuador; -2018-11-24T23:59:00Z;Nathália;6503.689;116361780;Ecuador; -2018-11-24T23:56:05Z;Ana;5922.873;115047444;Ecuador; -2018-11-24T23:54:59Z;Júlio Cesar;2760.761;116101652;Ecuador; -2018-11-24T23:52:13Z;Armando;8457.29;115562108;Ecuador; -2018-11-24T23:21:35Z;Nathália;8606.251;114887735;Ecuador; -2018-11-24T22:47:09Z;Júlio Cesar;1067.028;114441433;Ecuador; -2018-11-24T22:34:45Z;Armando;1051.334;115813102;Ecuador; -2018-11-24T22:13:52Z;nathalia;9972.333;115670348;Ecuador; -2018-11-24T22:09:13Z;Armando;2832.625;115313956;Ecuador; -2018-11-24T21:58:44Z;Ana;1439.351;114300537;Ecuador; -2018-11-24T21:53:25Z;Júlio;10973.64;114962609;Ecuador; -2018-11-24T21:51:35Z;Júlio;9670.378;115839174;Ecuador; -2018-11-24T21:43:11Z;Nathália;2919.315;115930428;Ecuador; -2018-11-24T21:16:50Z;Sandra;11486.44;116351924;Ecuador; -2018-11-24T21:06:43Z;Júlio Cesar;723.3805;115393385;Ecuador; -2018-11-24T20:54:11Z;Nathália;6312.46;115465620;Ecuador; -2018-11-24T20:51:37Z;Eduardo;15316.96;115670308;Ecuador; -2018-11-24T20:35:50Z;Ana;2546.856;115921081;Ecuador; -2018-11-24T20:26:16Z;Armando;11181.44;115561068;Ecuador; -2018-11-24T20:19:33Z;Ana;4561.85;115042441;Ecuador; -2018-11-24T19:57:46Z;nathalia;3337.891;115345030;Ecuador; -2018-11-24T19:53:03Z;Armando;10202.86;114571592;Ecuador; -2018-11-24T19:43:23Z;Júlio Cesar;210.3376;116287292;Ecuador; -2018-11-24T19:20:01Z;Ana;10628.15;114443947;Ecuador; -2018-11-24T19:07:24Z;Nathália;4419.435;115651193;Ecuador; -2018-11-24T18:53:31Z;Júlio;16947.79;114974739;Ecuador; -2018-11-24T18:53:01Z;Nathália;4898.742;114991199;Ecuador; -2018-11-24T18:52:05Z;Armando;11817.79;115959461;Ecuador; -2018-11-24T18:46:28Z;Sandra;5833.088;116220794;Ecuador; -2018-11-24T18:38:54Z;Ana;8142.03;115943960;Ecuador; -2018-11-24T18:26:37Z;Júlio;364.8055;114421244;Ecuador; -2018-11-24T17:59:32Z;Ana;1767.894;115996860;Ecuador; -2018-11-24T16:43:06Z;Eduardo;10073.46;116175778;Ecuador; -2018-11-24T16:39:10Z;Eduardo;15558.73;116152771;Ecuador; -2018-11-24T16:37:45Z;Nathália;15075.07;114305398;Ecuador; -2018-11-24T16:22:43Z;nathalia;5790.843;115874818;Ecuador; -2018-11-24T16:15:39Z;Ana;8121.569;115865710;Ecuador; -2018-11-24T16:07:46Z;Júlio Cesar;706.4714;115306548;Ecuador; -2018-11-24T15:57:28Z;Eduardo;14438.82;116212757;Ecuador; -2018-11-24T15:54:34Z;Ana;720.0343;114623030;Ecuador; -2018-11-24T15:21:38Z;Sandra;338.2286;114923055;Ecuador; -2018-11-24T14:45:26Z;Armando;5647.809;114444614;Ecuador; -2018-11-24T13:48:57Z;Ana;3775.926;115219641;Ecuador; -2018-11-24T13:39:12Z;nathalia;12964.4;114440210;Ecuador; -2018-11-24T13:29:43Z;Armando;1094.505;114364168;Ecuador; -2018-11-24T13:11:30Z;Nathália;2931.778;114772959;Ecuador; -2018-11-24T13:00:03Z;Nathália;10845.43;115270221;Ecuador; -2018-11-24T12:52:47Z;Sandra;5563.927;115539373;Ecuador; -2018-11-24T12:50:03Z;Eduardo;2355.727;114333535;Ecuador; -2018-11-24T12:40:47Z;nathalia;714.8401;114894394;Ecuador; -2018-11-24T11:05:10Z;Ana;4489.001;114925232;Ecuador; -2018-11-24T10:53:57Z;Nathália;10519.65;114336003;Ecuador; -2018-11-24T10:42:41Z;Júlio Cesar;2122.446;114739964;Ecuador; -2018-11-24T10:36:58Z;Ana;3437.846;115931638;Ecuador; -2018-11-24T10:25:43Z;Nathália;12818.57;115132822;Ecuador; -2018-11-24T10:19:51Z;Júlio Cesar;12137.54;115747664;Ecuador; -2018-11-24T10:03:13Z;Eduardo;2390.596;114929748;Ecuador; -2018-11-24T09:59:29Z;Júlio Cesar;6080.842;115915287;Ecuador; -2018-11-24T09:30:51Z;Sandra;4287.373;116040541;Ecuador; -2018-11-24T09:20:26Z;Nathália;9950.383;116061951;Ecuador; -2018-11-24T08:53:48Z;Ana;2359.887;114261617;Ecuador; -2018-11-24T08:31:05Z;nathalia;5003.051;115417181;Ecuador; -2018-11-24T08:30:51Z;nathalia;1816.26;114560729;Ecuador; -2018-11-24T08:30:50Z;Júlio Cesar;15160.7;114840104;Ecuador; -2018-11-24T07:46:05Z;Sandra;6901.196;114368036;Ecuador; -2018-11-24T07:41:15Z;Armando;753.3349;115617300;Ecuador; -2018-11-24T07:36:03Z;Júlio;19973.57;114617143;Ecuador; -2018-11-24T07:19:23Z;Júlio;3563.926;115530919;Ecuador; -2018-11-24T07:02:23Z;Júlio;805.132;114324514;Ecuador; -2018-11-24T06:29:02Z;Júlio;11565.66;116095103;Ecuador; -2018-11-24T05:39:03Z;Ana;4089.29;114707154;Ecuador; -2018-11-24T05:33:27Z;Sandra;1887.212;115819275;Ecuador; -2018-11-24T05:19:18Z;Ana;124.2498;115695397;Ecuador; -2018-11-24T04:55:38Z;Júlio Cesar;2381.97;115689843;Ecuador; -2018-11-24T04:35:50Z;Júlio;1726.816;115155145;Ecuador; -2018-11-24T04:29:29Z;Júlio;13090.81;116261290;Ecuador; -2018-11-24T03:41:16Z;Sandra;16114.4;115356962;Ecuador; -2018-11-24T03:06:16Z;Júlio Cesar;1325.814;115614369;Ecuador; -2018-11-24T03:05:38Z;Júlio;2561.745;116301374;Ecuador; -2018-11-24T02:53:58Z;Armando;2561.268;116021045;Ecuador; -2018-11-24T02:47:48Z;Júlio;2937.579;115181496;Ecuador; -2018-11-24T02:30:44Z;Eduardo;1820.387;114694061;Ecuador; -2018-11-24T01:48:54Z;Sandra;914.0767;115043380;Ecuador; -2018-11-24T01:18:58Z;nathalia;4393.301;114731679;Ecuador; -2018-11-24T01:18:11Z;Júlio;822.6897;115804090;Ecuador; -2018-11-24T01:17:01Z;Ana;10695.27;115192987;Ecuador; -2018-11-24T00:53:06Z;Eduardo;5950.284;116267978;Ecuador; -2018-11-24T00:43:11Z;Ana;9727.765;114614007;Ecuador; -2018-11-23T23:46:12Z;Júlio Cesar;14980.8;114925307;Ecuador; -2018-11-23T23:22:52Z;Ana;4347.261;116050613;Ecuador; -2018-11-23T23:08:18Z;Eduardo;2810.169;115718812;Ecuador; -2018-11-23T23:08:16Z;Nathália;12100.87;114371563;Ecuador; -2018-11-23T21:21:31Z;Júlio Cesar;3728.882;116250386;Ecuador; -2018-11-23T20:48:47Z;Júlio;9488.127;116043208;Ecuador; -2018-11-23T20:47:09Z;Nathália;1900.087;114306568;Ecuador; -2018-11-23T20:34:11Z;Nathália;3593.787;116239107;Ecuador; -2018-11-23T20:19:16Z;Ana;2886.782;114550078;Ecuador; -2018-11-23T20:18:51Z;Júlio Cesar;2896.755;114442527;Ecuador; -2018-11-23T20:18:38Z;Júlio Cesar;9325.583;115141483;Ecuador; -2018-11-23T20:10:20Z;Ana;6414.9;114993416;Ecuador; -2018-11-23T20:04:43Z;Armando;18746.31;114504883;Ecuador; -2018-11-23T19:54:40Z;Armando;14474.95;114741617;Ecuador; -2018-11-23T19:53:07Z;Eduardo;4331.357;116312971;Ecuador; -2018-11-23T19:38:56Z;Júlio;359.27;116136845;Ecuador; -2018-11-23T19:38:26Z;Armando;10871.6;115109480;Ecuador; -2018-11-23T19:16:32Z;Armando;15592.8;114255294;Ecuador; -2018-11-23T19:05:31Z;Júlio Cesar;8060.634;115318148;Ecuador; -2018-11-23T18:17:32Z;Nathália;327.0608;115240496;Ecuador; -2018-11-23T18:16:08Z;Júlio Cesar;12328.9;116069819;Ecuador; -2018-11-23T17:40:00Z;nathalia;3072.043;114267697;Ecuador; -2018-11-23T17:25:29Z;Armando;7742.139;114517137;Ecuador; -2018-11-23T16:52:17Z;nathalia;9972.358;114664505;Ecuador; -2018-11-23T16:40:21Z;Júlio;4685.881;114460665;Ecuador; -2018-11-23T16:30:59Z;Júlio Cesar;2762.255;114440875;Ecuador; -2018-11-23T16:29:53Z;Júlio Cesar;7479.279;114872326;Ecuador; -2018-11-23T16:22:11Z;Nathália;2210.432;115962970;Ecuador; -2018-11-23T15:34:46Z;nathalia;9394.249;114607438;Ecuador; -2018-11-23T15:33:18Z;Júlio Cesar;2308.45;114882617;Ecuador; -2018-11-23T14:42:00Z;Ana;8111.399;115462813;Ecuador; -2018-11-23T14:34:36Z;Sandra;7337.686;115011741;Ecuador; -2018-11-23T14:34:31Z;nathalia;7197.29;115511116;Ecuador; -2018-11-23T13:54:43Z;Sandra;9490.55;115383569;Ecuador; -2018-11-23T13:50:18Z;nathalia;15223.06;115102478;Ecuador; -2018-11-23T13:50:15Z;nathalia;14721.71;115066517;Ecuador; -2018-11-23T13:41:03Z;Júlio;7955.382;115018137;Ecuador; -2018-11-23T13:32:16Z;Júlio;3309.947;115755662;Ecuador; -2018-11-23T13:13:35Z;Nathália;13438.81;114507675;Ecuador; -2018-11-23T13:12:11Z;Sandra;899.0202;114650872;Ecuador; -2018-11-23T13:06:41Z;nathalia;20171.46;115013856;Ecuador; -2018-11-23T12:55:14Z;Eduardo;733.2569;115992416;Ecuador; -2018-11-23T12:51:54Z;Sandra;13307.3;116110638;Ecuador; -2018-11-23T12:44:47Z;Ana;4792.053;116226955;Ecuador; -2018-11-23T12:21:29Z;Sandra;6869.062;115369244;Ecuador; -2018-11-23T12:13:37Z;Júlio;2568.086;114831455;Ecuador; -2018-11-23T12:02:47Z;nathalia;6613.023;115101814;Ecuador; -2018-11-23T11:42:19Z;Júlio;9514.026;114847209;Ecuador; -2018-11-23T10:57:17Z;Nathália;3864.824;115493117;Ecuador; -2018-11-23T10:34:46Z;Nathália;2317.136;116026189;Ecuador; -2018-11-23T10:18:55Z;Júlio Cesar;11156.81;115186533;Ecuador; -2018-11-23T10:18:38Z;Sandra;9651.46;115860964;Ecuador; -2018-11-23T10:07:39Z;Sandra;368.6237;115599241;Ecuador; -2018-11-23T10:04:38Z;Sandra;473.1268;116326908;Ecuador; -2018-11-23T09:57:06Z;Júlio Cesar;6566.896;115840926;Ecuador; -2018-11-23T09:54:53Z;Armando;5598.351;115374895;Ecuador; -2018-11-23T09:35:18Z;Eduardo;5594.157;115711468;Ecuador; -2018-11-23T09:22:01Z;nathalia;5650.165;114775686;Ecuador; -2018-11-23T09:12:57Z;Sandra;16492.49;116152179;Ecuador; -2018-11-23T08:33:29Z;Armando;1152.369;115582872;Ecuador; -2018-11-23T08:24:28Z;Sandra;497.4382;115603174;Ecuador; -2018-11-23T08:15:51Z;Eduardo;665.9082;114767632;Ecuador; -2018-11-23T08:04:37Z;Júlio;6342.253;115920087;Ecuador; -2018-11-23T07:05:42Z;Eduardo;3875.556;114283085;Ecuador; -2018-11-23T06:54:27Z;Armando;6102.161;114986008;Ecuador; -2018-11-23T06:51:06Z;Júlio;15637.91;115927611;Ecuador; -2018-11-23T06:33:36Z;Júlio Cesar;12442.61;114384962;Ecuador; -2018-11-23T06:17:22Z;Armando;4411.587;114588167;Ecuador; -2018-11-23T06:12:39Z;Júlio Cesar;23296.85;114241270;Ecuador; -2018-11-23T06:02:03Z;Eduardo;2281.503;114593608;Ecuador; -2018-11-23T05:45:16Z;Júlio Cesar;15468.04;116196484;Ecuador; -2018-11-23T05:33:16Z;Júlio;9299.245;116236174;Ecuador; -2018-11-23T05:32:20Z;Sandra;16906.29;114385365;Ecuador; -2018-11-23T05:07:12Z;Nathália;8023.57;114738481;Ecuador; -2018-11-23T04:35:38Z;Ana;1387.059;115811235;Ecuador; -2018-11-23T04:21:46Z;Nathália;13582.43;116279616;Ecuador; -2018-11-23T04:04:04Z;Eduardo;4489.416;115230055;Ecuador; -2018-11-23T04:00:04Z;Eduardo;1863.428;116193550;Ecuador; -2018-11-23T03:52:45Z;Júlio;213.2915;115276355;Ecuador; -2018-11-23T03:29:29Z;Júlio Cesar;11660.25;115217175;Ecuador; -2018-11-23T03:12:30Z;Júlio;3727.079;114345008;Ecuador; -2018-11-23T03:01:52Z;Ana;3562.438;116142609;Ecuador; -2018-11-23T02:27:37Z;Ana;1812.93;115352777;Ecuador; -2018-11-23T02:09:20Z;Eduardo;6916.387;115375138;Ecuador; -2018-11-23T01:58:17Z;Júlio;8760.829;114842239;Ecuador; -2018-11-23T01:55:16Z;Ana;14250.48;115132603;Ecuador; -2018-11-23T01:54:48Z;nathalia;8549.09;115018633;Ecuador; -2018-11-23T01:42:50Z;Júlio Cesar;2787.903;116334987;Ecuador; -2018-11-23T01:23:28Z;Ana;451.6104;115822948;Ecuador; -2018-11-23T01:17:57Z;Ana;4808.869;114523602;Ecuador; -2018-11-23T01:15:27Z;Júlio Cesar;11141.19;114274059;Ecuador; -2018-11-23T01:07:27Z;Ana;19039.9;114948975;Ecuador; -2018-11-23T00:51:29Z;Júlio;4466.997;115556721;Ecuador; -2018-11-23T00:50:25Z;Ana;6041.04;115865187;Ecuador; -2018-11-23T00:25:03Z;Eduardo;16342.68;116063832;Ecuador; -2018-11-23T00:18:22Z;Júlio;8030.559;115811726;Ecuador; -2018-11-23T00:10:58Z;Ana;3405.832;114264710;Ecuador; -2018-11-22T23:51:55Z;Ana;4254.889;115889344;Ecuador; -2018-11-22T23:47:57Z;Sandra;3821.401;115010332;Ecuador; -2018-11-22T23:06:41Z;nathalia;7410.969;116084984;Ecuador; -2018-11-22T22:24:33Z;Armando;179.8394;114531095;Ecuador; -2018-11-22T22:20:02Z;Júlio;17226.54;115441202;Ecuador; -2018-11-22T22:11:21Z;Sandra;3568.432;115871599;Ecuador; -2018-11-22T22:08:54Z;Sandra;653.3953;115458930;Ecuador; -2018-11-22T22:04:17Z;Sandra;14676.95;116150079;Ecuador; -2018-11-22T21:19:48Z;nathalia;966.2052;115020089;Ecuador; -2018-11-22T20:51:26Z;Júlio;18741.47;114528927;Ecuador; -2018-11-22T20:39:58Z;nathalia;13609.89;115423035;Ecuador; -2018-11-22T19:44:58Z;Nathália;5359.585;114330633;Ecuador; -2018-11-22T18:57:48Z;Nathália;6483.812;115611492;Ecuador; -2018-11-22T18:25:14Z;Armando;8887.858;115563236;Ecuador; -2018-11-22T18:24:11Z;Nathália;3563.863;116374332;Ecuador; -2018-11-22T18:16:45Z;Nathália;3597.949;114394272;Ecuador; -2018-11-22T18:15:30Z;Ana;14212.31;115744046;Ecuador; -2018-11-22T18:08:39Z;nathalia;7659.457;114539939;Ecuador; -2018-11-22T17:54:19Z;nathalia;6457.721;115257972;Ecuador; -2018-11-22T17:44:34Z;Eduardo;4324.791;115806988;Ecuador; -2018-11-22T17:30:52Z;Armando;593.6147;116322642;Ecuador; -2018-11-22T17:28:34Z;Júlio Cesar;4940.829;115202872;Ecuador; -2018-11-22T17:25:21Z;Armando;7187.502;115723256;Ecuador; -2018-11-22T17:23:54Z;Nathália;3007.331;116171128;Ecuador; -2018-11-22T17:21:04Z;Sandra;3387.852;115617227;Ecuador; -2018-11-22T17:19:15Z;Júlio;1409.588;116157200;Ecuador; -2018-11-22T17:14:57Z;Júlio;8252.823;115797378;Ecuador; -2018-11-22T17:13:50Z;Armando;24199.84;115881563;Ecuador; -2018-11-22T17:09:46Z;Eduardo;4566.878;116128741;Ecuador; -2018-11-22T17:03:40Z;Nathália;7470.135;114303788;Ecuador; -2018-11-22T17:02:39Z;nathalia;1512.137;115355082;Ecuador; -2018-11-22T16:50:27Z;Ana;1687.267;116002953;Ecuador; -2018-11-22T15:59:46Z;Ana;11.4055;114597516;Ecuador; -2018-11-22T15:45:57Z;Armando;6832.551;115057309;Ecuador; -2018-11-22T15:31:15Z;Eduardo;5418.887;114378326;Ecuador; -2018-11-22T15:29:50Z;Sandra;14818.27;114703259;Ecuador; -2018-11-22T15:20:59Z;Júlio;8573.545;114755787;Ecuador; -2018-11-22T15:02:54Z;Júlio;1539.969;114544837;Ecuador; -2018-11-22T14:57:32Z;Eduardo;1179.205;114574049;Ecuador; -2018-11-22T14:55:00Z;Júlio Cesar;129.514;114200103;Ecuador; -2018-11-22T14:16:55Z;Armando;16535.8;114242174;Ecuador; -2018-11-22T13:38:33Z;Ana;514.4042;116220862;Ecuador; -2018-11-22T13:32:45Z;Júlio Cesar;16878.62;115505404;Ecuador; -2018-11-22T13:22:17Z;Júlio Cesar;4079.255;114317683;Ecuador; -2018-11-22T13:11:36Z;nathalia;28563.67;114278326;Ecuador; -2018-11-22T13:03:03Z;Júlio Cesar;11943.44;114528741;Ecuador; -2018-11-22T12:54:24Z;Nathália;2898.997;115345016;Ecuador; -2018-11-22T12:46:11Z;Sandra;882.8212;115724885;Ecuador; -2018-11-22T12:40:59Z;Sandra;9762.248;114664598;Ecuador; -2018-11-22T12:19:19Z;Júlio;26.55041;114872041;Ecuador; -2018-11-22T11:48:11Z;Júlio Cesar;2852.591;116221175;Ecuador; -2018-11-22T11:43:58Z;Júlio Cesar;6044.852;115164016;Ecuador; -2018-11-22T11:41:49Z;Eduardo;1240.218;116177315;Ecuador; -2018-11-22T11:40:24Z;Ana;441.1432;115406053;Ecuador; -2018-11-22T10:47:22Z;Nathália;12837.01;114944197;Ecuador; -2018-11-22T10:35:36Z;Sandra;753.5655;115025758;Ecuador; -2018-11-22T10:30:18Z;Sandra;4063.622;114879606;Ecuador; -2018-11-22T10:10:07Z;Júlio Cesar;1939.193;114521232;Ecuador; -2018-11-22T09:52:47Z;Sandra;21467.55;115260435;Ecuador; -2018-11-22T09:49:30Z;Ana;2423.386;115950639;Ecuador; -2018-11-22T09:42:18Z;Júlio;10767.68;115977497;Ecuador; -2018-11-22T09:36:01Z;nathalia;5334.646;115781924;Ecuador; -2018-11-22T09:25:21Z;Sandra;3505.297;116110151;Ecuador; -2018-11-22T08:51:02Z;Júlio;345.6699;114802347;Ecuador; -2018-11-22T07:58:48Z;Armando;8351.922;114721515;Ecuador; -2018-11-22T07:22:20Z;Armando;2115.971;115772463;Ecuador; -2018-11-22T06:44:24Z;Júlio Cesar;1699.043;114883358;Ecuador; -2018-11-22T06:41:50Z;Nathália;20657.14;115927021;Ecuador; -2018-11-22T05:49:25Z;nathalia;12275.61;114578637;Ecuador; -2018-11-22T05:48:44Z;Júlio;12964.49;116146557;Ecuador; -2018-11-22T05:15:08Z;Júlio Cesar;6920.798;114570751;Ecuador; -2018-11-22T04:51:48Z;Nathália;3671.51;116248910;Ecuador; -2018-11-22T03:47:24Z;Nathália;12503.45;114537554;Ecuador; -2018-11-22T03:28:42Z;Júlio;21086.07;114745053;Ecuador; -2018-11-22T02:45:48Z;Armando;8957.148;115520590;Ecuador; -2018-11-22T02:20:13Z;Armando;14172.75;115886447;Ecuador; -2018-11-22T02:11:10Z;Júlio;6046.289;115222678;Ecuador; -2018-11-22T02:03:27Z;Ana;1579.029;115829104;Ecuador; -2018-11-22T00:54:56Z;nathalia;5374.957;114584007;Ecuador; -2018-11-22T00:32:21Z;Sandra;12870.55;114681102;Ecuador; -2018-11-21T23:52:54Z;Sandra;14359.2;114910668;Ecuador; -2018-11-21T23:42:28Z;Júlio;3598.647;116119857;Ecuador; -2018-11-21T22:49:20Z;Júlio;8998.717;115740469;Ecuador; -2018-11-21T22:43:53Z;Júlio;12016.05;115396491;Ecuador; -2018-11-21T21:49:30Z;Júlio;28523.01;115149754;Ecuador; -2018-11-21T21:36:04Z;nathalia;2078.641;114984578;Ecuador; -2018-11-21T21:26:41Z;Nathália;24967.18;116164606;Ecuador; -2018-11-21T21:14:34Z;Ana;24433.52;116154570;Ecuador; -2018-11-21T21:13:32Z;Armando;1700.572;116387257;Ecuador; -2018-11-21T20:37:28Z;Nathália;7853.634;116284539;Ecuador; -2018-11-21T20:20:01Z;Júlio;6049.624;114475071;Ecuador; -2018-11-21T20:16:44Z;Júlio Cesar;8748.601;115951131;Ecuador; -2018-11-21T20:07:33Z;nathalia;392.8689;115044660;Ecuador; -2018-11-21T19:39:36Z;Júlio Cesar;3441.922;115539960;Ecuador; -2018-11-21T19:27:55Z;Júlio;597.675;115386603;Ecuador; -2018-11-21T18:23:22Z;Júlio;18838.58;115647888;Ecuador; -2018-11-21T17:58:42Z;Nathália;1005.477;114259462;Ecuador; -2018-11-21T17:33:40Z;Sandra;3335.63;115071727;Ecuador; -2018-11-21T17:21:35Z;nathalia;343.1183;114915841;Ecuador; -2018-11-21T17:18:56Z;Ana;6141.895;116393261;Ecuador; -2018-11-21T16:41:48Z;Armando;22472.17;114337306;Ecuador; -2018-11-21T16:34:26Z;Júlio Cesar;7679.3;114861143;Ecuador; -2018-11-21T16:22:07Z;Armando;4259.347;114814402;Ecuador; -2018-11-21T16:17:28Z;Júlio Cesar;9117.139;115037265;Ecuador; -2018-11-21T15:54:06Z;Armando;292.626;115548689;Ecuador; -2018-11-21T15:13:13Z;Sandra;10192.55;114616344;Ecuador; -2018-11-21T14:27:16Z;Eduardo;10113.03;115232674;Ecuador; -2018-11-21T14:20:04Z;Ana;11842.74;114943681;Ecuador; -2018-11-21T14:04:39Z;Armando;2905.979;116362522;Ecuador; -2018-11-21T14:04:03Z;nathalia;14622.53;115787099;Ecuador; -2018-11-21T14:02:58Z;Ana;5471.794;115807648;Ecuador; -2018-11-21T13:55:28Z;nathalia;6832.857;116245967;Ecuador; -2018-11-21T13:24:44Z;Ana;4618.791;114971837;Ecuador; -2018-11-21T13:23:30Z;Júlio;1359.867;115258961;Ecuador; -2018-11-21T13:13:54Z;Júlio Cesar;5231.79;114292077;Ecuador; -2018-11-21T13:11:03Z;Ana;5594.276;115570308;Ecuador; -2018-11-21T12:50:42Z;Júlio;7367.065;115958774;Ecuador; -2018-11-21T12:28:14Z;Nathália;8819.934;116224377;Ecuador; -2018-11-21T11:57:09Z;Ana;3765.329;114791659;Ecuador; -2018-11-21T11:18:35Z;Júlio Cesar;1534.901;115335556;Ecuador; -2018-11-21T11:12:37Z;Júlio Cesar;19896.8;114820151;Ecuador; -2018-11-21T11:08:41Z;Júlio;11948.07;114209852;Ecuador; -2018-11-21T10:46:45Z;Armando;950.5352;114642783;Ecuador; -2018-11-21T10:13:29Z;Júlio;2750.213;114454920;Ecuador; -2018-11-21T09:46:36Z;Sandra;10926.21;115078909;Ecuador; -2018-11-21T09:37:21Z;Armando;4140.24;116307352;Ecuador; -2018-11-21T09:05:11Z;Nathália;3917.291;114704908;Ecuador; -2018-11-21T09:03:41Z;nathalia;23279.79;114877916;Ecuador; -2018-11-21T08:42:44Z;Eduardo;12268.87;114252426;Ecuador; -2018-11-21T08:33:50Z;Ana;19145.28;115699839;Ecuador; -2018-11-21T08:27:24Z;Nathália;11379.5;115252724;Ecuador; -2018-11-21T08:01:49Z;Sandra;1632.123;114205304;Ecuador; -2018-11-21T07:22:06Z;Armando;225.6338;115943379;Ecuador; -2018-11-21T07:20:53Z;Ana;8854.107;115061035;Ecuador; -2018-11-21T06:38:54Z;Ana;12464.89;116318468;Ecuador; -2018-11-21T06:14:57Z;Sandra;11109.08;115858340;Ecuador; -2018-11-21T06:11:55Z;Armando;1610.233;115276605;Ecuador; -2018-11-21T06:09:20Z;Nathália;2560.729;115023250;Ecuador; -2018-11-21T06:08:13Z;Eduardo;6342.994;114634965;Ecuador; -2018-11-21T05:58:06Z;nathalia;10980.98;115927317;Ecuador; -2018-11-21T05:42:05Z;Sandra;3459.167;116394663;Ecuador; -2018-11-21T04:59:24Z;Nathália;6655.214;115194020;Ecuador; -2018-11-21T04:40:28Z;Nathália;10567.31;114680585;Ecuador; -2018-11-21T04:32:33Z;Ana;1288.376;114654797;Ecuador; -2018-11-21T04:28:19Z;Armando;6432.642;115559341;Ecuador; -2018-11-21T04:19:01Z;Júlio Cesar;12815.01;114972930;Ecuador; -2018-11-21T03:42:32Z;Eduardo;4117.414;115435203;Ecuador; -2018-11-21T03:32:57Z;Armando;13180.6;114341644;Ecuador; -2018-11-21T02:55:16Z;Júlio Cesar;1025.964;114305557;Ecuador; -2018-11-21T02:54:48Z;Ana;7960.137;116254580;Ecuador; -2018-11-21T02:40:20Z;Júlio;5131.855;115046177;Ecuador; -2018-11-21T02:30:08Z;Eduardo;7111.961;115172542;Ecuador; -2018-11-21T02:12:30Z;Sandra;117.4852;114449610;Ecuador; -2018-11-21T01:21:49Z;Eduardo;10920.24;114524250;Ecuador; -2018-11-21T01:08:48Z;nathalia;820.777;114599410;Ecuador; -2018-11-21T00:53:41Z;Armando;2924.598;115883092;Ecuador; -2018-11-21T00:25:36Z;nathalia;8635.254;115226277;Ecuador; -2018-11-21T00:20:43Z;Ana;111.814;114617492;Ecuador; -2018-11-21T00:15:55Z;Júlio Cesar;2274.397;114738424;Ecuador; -2018-11-20T23:58:19Z;nathalia;5819.852;114929327;Ecuador; -2018-11-20T23:42:23Z;Nathália;16323.6;114888423;Ecuador; -2018-11-20T23:39:26Z;nathalia;7236.948;115562291;Ecuador; -2018-11-20T22:35:13Z;Armando;2752.434;115298046;Ecuador; -2018-11-20T22:11:50Z;Ana;6340.053;114596141;Ecuador; -2018-11-20T22:09:26Z;Eduardo;4953.227;114820306;Ecuador; -2018-11-20T22:03:17Z;Júlio;20282.04;114799409;Ecuador; -2018-11-20T21:47:56Z;Júlio;14017.33;114477549;Ecuador; -2018-11-20T21:17:07Z;Júlio;9779.866;114369521;Ecuador; -2018-11-20T20:44:02Z;Eduardo;11157.48;116145266;Ecuador; -2018-11-20T20:43:27Z;Ana;128.0351;115249821;Ecuador; -2018-11-20T19:13:54Z;Ana;233.8503;116377202;Ecuador; -2018-11-20T19:11:25Z;Ana;20926.31;115606568;Ecuador; -2018-11-20T19:11:01Z;Júlio;5159.725;114514796;Ecuador; -2018-11-20T18:20:08Z;Armando;18563.14;116285717;Ecuador; -2018-11-20T17:11:05Z;Sandra;518.7531;115934938;Ecuador; -2018-11-20T17:07:41Z;Júlio Cesar;4629.27;114976647;Ecuador; -2018-11-20T16:56:34Z;Ana;12473.3;115093949;Ecuador; -2018-11-20T16:49:18Z;Nathália;8198.104;114959499;Ecuador; -2018-11-20T16:20:48Z;Júlio Cesar;4882.49;114397176;Ecuador; -2018-11-20T15:43:33Z;Eduardo;3361.786;114934996;Ecuador; -2018-11-20T15:34:36Z;Eduardo;18326.34;115404756;Ecuador; -2018-11-20T15:26:45Z;Júlio;2857.338;116395525;Ecuador; -2018-11-20T15:14:43Z;Sandra;16629.06;114687650;Ecuador; -2018-11-20T14:32:58Z;Eduardo;2574.93;114312546;Ecuador; -2018-11-20T14:14:45Z;Júlio Cesar;3582.214;115063675;Ecuador; -2018-11-20T14:14:43Z;Júlio Cesar;3534.387;114380312;Ecuador; -2018-11-20T14:11:15Z;Nathália;3257.985;115778247;Ecuador; -2018-11-20T13:54:55Z;Júlio Cesar;5440.59;114466392;Ecuador; -2018-11-20T13:41:46Z;Sandra;15393.5;116211198;Ecuador; -2018-11-20T13:34:52Z;Nathália;142.5035;114241785;Ecuador; -2018-11-20T13:16:00Z;Eduardo;1039.046;115177103;Ecuador; -2018-11-20T13:09:38Z;Armando;4223.638;114622810;Ecuador; -2018-11-20T12:55:46Z;Nathália;3509.584;115175690;Ecuador; -2018-11-20T12:51:05Z;Nathália;5203.679;114932374;Ecuador; -2018-11-20T12:01:51Z;Júlio;104.2736;114374582;Ecuador; -2018-11-20T12:01:51Z;Júlio;22178.87;115502702;Ecuador; -2018-11-20T11:54:36Z;Sandra;10539.57;115023686;Ecuador; -2018-11-20T11:52:17Z;Ana;360.3303;114757227;Ecuador; -2018-11-20T11:25:05Z;Armando;6649.217;115643973;Ecuador; -2018-11-20T11:20:00Z;Júlio;5779.661;116374734;Ecuador; -2018-11-20T11:12:09Z;Júlio Cesar;930.9513;115014719;Ecuador; -2018-11-20T10:59:29Z;Ana;88.72388;115365785;Ecuador; -2018-11-20T10:53:42Z;nathalia;7702.73;114788884;Ecuador; -2018-11-20T10:31:27Z;Sandra;213.4953;114905873;Ecuador; -2018-11-20T10:05:52Z;Nathália;18234.59;115894681;Ecuador; -2018-11-20T10:05:43Z;Eduardo;2237.55;116314232;Ecuador; -2018-11-20T09:56:24Z;Júlio Cesar;5097.241;116214821;Ecuador; -2018-11-20T09:34:34Z;Sandra;2115.503;114847159;Ecuador; -2018-11-20T09:21:10Z;Armando;10140.12;115557591;Ecuador; -2018-11-20T09:18:46Z;Ana;8056.914;115231740;Ecuador; -2018-11-20T08:56:24Z;Sandra;3890.143;115106409;Ecuador; -2018-11-20T08:45:00Z;Armando;9799.05;114998604;Ecuador; -2018-11-20T08:14:57Z;Júlio Cesar;13065.86;114746170;Ecuador; -2018-11-20T08:12:17Z;Armando;4547.565;115877333;Ecuador; -2018-11-20T07:58:31Z;Júlio;2513.501;115447020;Ecuador; -2018-11-20T07:39:39Z;Júlio;16956.58;116211900;Ecuador; -2018-11-20T07:34:54Z;Júlio Cesar;3802.881;116174363;Ecuador; -2018-11-20T06:50:21Z;Júlio;346.9254;115247195;Ecuador; -2018-11-20T06:30:24Z;Eduardo;6816.835;116255821;Ecuador; -2018-11-20T06:00:32Z;Júlio;9558.418;114626654;Ecuador; -2018-11-20T05:51:09Z;Eduardo;1109.953;115411993;Ecuador; -2018-11-20T05:21:08Z;nathalia;146.9324;115134408;Ecuador; -2018-11-20T05:20:51Z;Sandra;7846.335;115628167;Ecuador; -2018-11-20T05:19:01Z;Nathália;2137.141;115463734;Ecuador; -2018-11-20T04:52:48Z;Ana;10879.92;115847077;Ecuador; -2018-11-20T04:32:04Z;Armando;17500.15;116183998;Ecuador; -2018-11-20T04:14:45Z;Júlio;5671.118;115334341;Ecuador; -2018-11-20T04:06:43Z;Júlio;4593.42;115535133;Ecuador; -2018-11-20T03:23:59Z;Nathália;3122.457;115483605;Ecuador; -2018-11-20T03:18:08Z;Nathália;2166.057;114296849;Ecuador; -2018-11-20T02:02:56Z;Júlio;13485.31;116135493;Ecuador; -2018-11-20T01:51:03Z;nathalia;9670.077;115435958;Ecuador; -2018-11-20T01:45:05Z;Eduardo;2695.913;114326443;Ecuador; -2018-11-20T01:04:01Z;Nathália;6759.019;115176758;Ecuador; -2018-11-20T00:55:59Z;Nathália;4380.799;114431099;Ecuador; -2018-11-20T00:52:32Z;Armando;2097.585;114952647;Ecuador; -2018-11-20T00:12:35Z;Nathália;8124.264;114977734;Ecuador; -2018-11-20T00:04:00Z;Armando;5622.809;115825180;Ecuador; -2018-11-19T23:36:05Z;nathalia;7904.908;114791213;Ecuador; -2018-11-19T23:25:15Z;Sandra;1852.81;115527780;Ecuador; -2018-11-19T23:18:42Z;Nathália;6752.281;115659931;Ecuador; -2018-11-19T22:46:42Z;Ana;8917.824;116359361;Ecuador; -2018-11-19T22:29:55Z;Eduardo;2409.613;116364961;Ecuador; -2018-11-19T22:23:16Z;Júlio;4331.814;115078297;Ecuador; -2018-11-19T22:14:51Z;Nathália;2687.463;115083366;Ecuador; -2018-11-19T21:40:35Z;Eduardo;8700.548;114281461;Ecuador; -2018-11-19T20:52:35Z;Júlio Cesar;7310.62;115054844;Ecuador; -2018-11-19T20:51:13Z;Eduardo;5789.181;115758967;Ecuador; -2018-11-19T20:27:13Z;Armando;1893.894;114250234;Ecuador; -2018-11-19T19:32:55Z;Armando;658.7652;115957169;Ecuador; -2018-11-19T19:29:15Z;Nathália;4288.607;114808348;Ecuador; -2018-11-19T19:10:21Z;nathalia;9747.153;115726107;Ecuador; -2018-11-19T19:02:22Z;Sandra;5848.658;114896746;Ecuador; -2018-11-19T18:52:25Z;Júlio Cesar;3212.438;115856625;Ecuador; -2018-11-19T18:44:08Z;Júlio Cesar;5891.559;114932379;Ecuador; -2018-11-19T18:37:02Z;Nathália;456.6071;116024179;Ecuador; -2018-11-19T18:10:23Z;Nathália;17959.32;114564606;Ecuador; -2018-11-19T18:09:01Z;Armando;284.6777;115350377;Ecuador; -2018-11-19T17:54:34Z;Ana;911.7533;114858056;Ecuador; -2018-11-19T17:52:27Z;Sandra;151.3049;116234373;Ecuador; -2018-11-19T17:51:07Z;Ana;6440.553;115832991;Ecuador; -2018-11-19T17:27:12Z;Armando;18892.64;114635239;Ecuador; -2018-11-19T17:26:58Z;Júlio;2766.243;115428692;Ecuador; -2018-11-19T17:12:06Z;nathalia;4718.34;114823864;Ecuador; -2018-11-19T17:10:26Z;Armando;13015.69;115181449;Ecuador; -2018-11-19T17:08:29Z;Júlio;4698.422;114655408;Ecuador; -2018-11-19T17:05:21Z;Ana;219.9777;114673742;Ecuador; -2018-11-19T16:55:15Z;Armando;18197.77;115434364;Ecuador; -2018-11-19T16:42:05Z;Nathália;1755.824;114547331;Ecuador; -2018-11-19T16:38:55Z;Júlio;4072.996;114986804;Ecuador; -2018-11-19T16:33:26Z;Armando;9371.025;114234588;Ecuador; -2018-11-19T15:59:03Z;nathalia;463.9205;116305331;Ecuador; -2018-11-19T15:57:12Z;Sandra;7722.526;114819249;Ecuador; -2018-11-19T15:50:19Z;Ana;9979;115256801;Ecuador; -2018-11-19T15:43:03Z;Júlio Cesar;961.4578;115341282;Ecuador; -2018-11-19T15:19:03Z;Júlio Cesar;9279.569;115079526;Ecuador; -2018-11-19T15:07:52Z;Júlio Cesar;4021.881;115690624;Ecuador; -2018-11-19T15:07:12Z;Júlio;7986.695;115175637;Ecuador; -2018-11-19T14:56:45Z;Júlio Cesar;1589.017;116236371;Ecuador; -2018-11-19T14:38:45Z;Ana;3501.816;115483411;Ecuador; -2018-11-19T14:06:23Z;Armando;18509.28;116283358;Ecuador; -2018-11-19T13:59:52Z;Armando;4096.914;115339974;Ecuador; -2018-11-19T13:47:17Z;Júlio;2012.297;115790792;Ecuador; -2018-11-19T13:38:22Z;Nathália;6296.343;116276677;Ecuador; -2018-11-19T13:31:56Z;nathalia;2214.762;116353992;Ecuador; -2018-11-19T13:21:52Z;Sandra;19755.02;115545224;Ecuador; -2018-11-19T13:17:41Z;nathalia;8665.582;115535059;Ecuador; -2018-11-19T13:13:30Z;Júlio;421.9896;116274527;Ecuador; -2018-11-19T13:12:54Z;Sandra;21962.92;115805061;Ecuador; -2018-11-19T13:06:02Z;Armando;3060.042;114366037;Ecuador; -2018-11-19T13:03:58Z;nathalia;643.8843;116059577;Ecuador; -2018-11-19T12:28:12Z;Júlio Cesar;1759.472;114384595;Ecuador; -2018-11-19T11:59:47Z;Eduardo;3129.389;116166600;Ecuador; -2018-11-19T11:21:00Z;Eduardo;8087.215;116294146;Ecuador; -2018-11-19T10:56:39Z;nathalia;6729.46;114932895;Ecuador; -2018-11-19T10:52:33Z;Eduardo;13367.73;114723543;Ecuador; -2018-11-19T10:52:19Z;nathalia;11410.47;115611549;Ecuador; -2018-11-19T10:26:48Z;Sandra;561.3703;115363235;Ecuador; -2018-11-19T10:23:22Z;Sandra;8980.217;115960362;Ecuador; -2018-11-19T10:20:36Z;Nathália;2425.145;116257608;Ecuador; -2018-11-19T10:07:05Z;Júlio Cesar;3084.22;115916189;Ecuador; -2018-11-19T09:47:37Z;Armando;5373.606;115748114;Ecuador; -2018-11-19T09:35:43Z;Eduardo;2612.43;115230863;Ecuador; -2018-11-19T09:21:14Z;Ana;1364.056;115614092;Ecuador; -2018-11-19T09:16:43Z;Nathália;11587.96;115628202;Ecuador; -2018-11-19T09:13:52Z;Júlio;14665.83;114986143;Ecuador; -2018-11-19T08:42:01Z;Nathália;1046.263;115089879;Ecuador; -2018-11-19T08:37:23Z;Armando;7951.8;116072673;Ecuador; -2018-11-19T08:25:54Z;Eduardo;7464.741;115927083;Ecuador; -2018-11-19T08:01:16Z;Eduardo;2233.318;115955139;Ecuador; -2018-11-19T07:52:41Z;nathalia;3085.645;115908339;Ecuador; -2018-11-19T07:01:36Z;Ana;11077.45;116237459;Ecuador; -2018-11-19T06:43:05Z;Armando;1315.185;115517384;Ecuador; -2018-11-19T06:42:41Z;Ana;562.6359;114316355;Ecuador; -2018-11-19T06:26:50Z;Sandra;7555.664;115967090;Ecuador; -2018-11-19T06:25:06Z;Eduardo;783.6779;114718069;Ecuador; -2018-11-19T06:16:29Z;Nathália;22911.41;114740937;Ecuador; -2018-11-19T06:12:59Z;Eduardo;13858.38;114602827;Ecuador; -2018-11-19T05:43:21Z;Nathália;5389.357;114586664;Ecuador; -2018-11-19T05:42:58Z;Júlio;886.4654;114832199;Ecuador; -2018-11-19T05:40:35Z;nathalia;11278.86;114875714;Ecuador; -2018-11-19T05:24:36Z;Ana;4783.647;115748026;Ecuador; -2018-11-19T05:21:09Z;Ana;5594.128;114413628;Ecuador; -2018-11-19T04:49:45Z;Sandra;16973.72;115914139;Ecuador; -2018-11-19T04:32:52Z;Nathália;1238.354;115016230;Ecuador; -2018-11-19T04:12:32Z;Ana;5408.096;114791216;Ecuador; -2018-11-19T03:52:00Z;nathalia;1161.713;114944817;Ecuador; -2018-11-19T03:51:41Z;Júlio Cesar;7404.533;115826638;Ecuador; -2018-11-19T03:42:40Z;Júlio;9783.864;114290794;Ecuador; -2018-11-19T03:33:46Z;Eduardo;21502.45;115760309;Ecuador; -2018-11-19T02:45:07Z;Júlio Cesar;8534.976;114204567;Ecuador; -2018-11-19T02:28:21Z;Eduardo;802.0515;114291464;Ecuador; -2018-11-19T02:28:12Z;Sandra;299.7631;116015852;Ecuador; -2018-11-19T02:11:27Z;Nathália;4627.228;116093171;Ecuador; -2018-11-19T02:10:45Z;Ana;228.3028;114373445;Ecuador; -2018-11-19T02:03:27Z;Júlio Cesar;7755.714;116075028;Ecuador; -2018-11-19T01:20:26Z;Júlio;4929.477;115939082;Ecuador; -2018-11-19T01:10:21Z;Ana;2730.352;115403051;Ecuador; -2018-11-19T00:28:07Z;Júlio;6957.778;114774795;Ecuador; -2018-11-19T00:06:35Z;Júlio;22764.45;116280930;Ecuador; -2018-11-18T23:52:01Z;Júlio;6181.531;115920128;Ecuador; -2018-11-18T23:48:29Z;Eduardo;7815.569;114650613;Ecuador; -2018-11-18T23:31:31Z;Armando;11430.14;115606419;Ecuador; -2018-11-18T23:23:23Z;Ana;718.6161;115250546;Ecuador; -2018-11-18T23:10:22Z;Ana;4672.952;114895607;Ecuador; -2018-11-18T22:50:21Z;Júlio;6658.933;115026992;Ecuador; -2018-11-18T22:47:26Z;Armando;14179.87;116015629;Ecuador; -2018-11-18T22:43:16Z;Eduardo;936.1738;114989501;Ecuador; -2018-11-18T22:10:54Z;Júlio Cesar;4777.908;116150710;Ecuador; -2018-11-18T22:09:18Z;Júlio;140.5966;114798295;Ecuador; -2018-11-18T21:55:29Z;nathalia;2254.295;115187954;Ecuador; -2018-11-18T21:36:27Z;Júlio Cesar;1675.57;115209740;Ecuador; -2018-11-18T21:06:33Z;nathalia;6987.371;115432612;Ecuador; -2018-11-18T20:55:20Z;Júlio Cesar;5970.544;116089403;Ecuador; -2018-11-18T20:04:33Z;Nathália;7656.588;115024927;Ecuador; -2018-11-18T19:06:41Z;Sandra;3763.28;115719196;Ecuador; -2018-11-18T19:02:27Z;Júlio Cesar;2501.85;114887286;Ecuador; -2018-11-18T18:29:10Z;Júlio;1893.966;115100459;Ecuador; -2018-11-18T18:26:23Z;nathalia;1760.009;115498209;Ecuador; -2018-11-18T18:23:17Z;nathalia;7444.819;114251191;Ecuador; -2018-11-18T18:15:07Z;Júlio;4452.092;114439500;Ecuador; -2018-11-18T18:05:00Z;Sandra;8090.104;114952557;Ecuador; -2018-11-18T17:50:39Z;Júlio Cesar;4714.417;116083288;Ecuador; -2018-11-18T17:44:56Z;Júlio Cesar;334.9695;115842941;Ecuador; -2018-11-18T17:38:33Z;Eduardo;19017.01;114809325;Ecuador; -2018-11-18T16:59:02Z;Armando;1086.296;114685481;Ecuador; -2018-11-18T16:51:47Z;Eduardo;2891.773;115186334;Ecuador; -2018-11-18T16:51:02Z;Ana;2699.342;116186101;Ecuador; -2018-11-18T16:41:00Z;Eduardo;3988.039;116031928;Ecuador; -2018-11-18T16:40:27Z;Nathália;17127.11;115220821;Ecuador; -2018-11-18T16:32:18Z;Nathália;5483.503;114220815;Ecuador; -2018-11-18T16:09:52Z;Júlio;7967.826;115235126;Ecuador; -2018-11-18T16:01:13Z;Armando;1100.229;115575365;Ecuador; -2018-11-18T15:27:00Z;Ana;341.6763;114421120;Ecuador; -2018-11-18T15:20:06Z;Nathália;2551.576;116143272;Ecuador; -2018-11-18T15:08:15Z;Júlio Cesar;1963.351;116229267;Ecuador; -2018-11-18T15:03:57Z;Sandra;2447.149;114362049;Ecuador; -2018-11-18T14:40:56Z;Júlio;8922.176;116210517;Ecuador; -2018-11-18T14:27:38Z;Júlio Cesar;7354.992;116268427;Ecuador; -2018-11-18T14:26:17Z;Ana;12556.51;115517213;Ecuador; -2018-11-18T14:16:58Z;Ana;10382.69;114974834;Ecuador; -2018-11-18T14:16:24Z;Sandra;3599.216;114840046;Ecuador; -2018-11-18T13:35:14Z;Júlio;24174.18;115680839;Ecuador; -2018-11-18T13:30:15Z;Nathália;4940.891;116206896;Ecuador; -2018-11-18T13:17:44Z;Júlio;8613.61;115747747;Ecuador; -2018-11-18T13:17:29Z;Sandra;7006.861;114712162;Ecuador; -2018-11-18T13:14:16Z;Nathália;954.8868;115022191;Ecuador; -2018-11-18T13:13:55Z;Júlio Cesar;5612.343;116354923;Ecuador; -2018-11-18T13:12:12Z;Armando;6120.524;115165951;Ecuador; -2018-11-18T13:04:55Z;Eduardo;4421.052;114980226;Ecuador; -2018-11-18T12:52:04Z;Júlio Cesar;895.4309;115903711;Ecuador; -2018-11-18T12:40:38Z;Júlio Cesar;17145.97;116102431;Ecuador; -2018-11-18T12:36:14Z;nathalia;5292.95;114696127;Ecuador; -2018-11-18T12:33:38Z;Júlio;7702.107;115974301;Ecuador; -2018-11-18T12:31:21Z;Ana;2439.785;116338117;Ecuador; -2018-11-18T12:23:20Z;Ana;3990.756;114545033;Ecuador; -2018-11-18T11:39:45Z;nathalia;1710.094;114273150;Ecuador; -2018-11-18T11:35:51Z;Júlio;7305.922;116059864;Ecuador; -2018-11-18T11:24:50Z;Júlio Cesar;10382.03;114234437;Ecuador; -2018-11-18T11:10:37Z;Ana;1431.027;114547510;Ecuador; -2018-11-18T11:05:31Z;Armando;14593.99;114934819;Ecuador; -2018-11-18T10:48:31Z;Eduardo;24223.76;114871502;Ecuador; -2018-11-18T10:17:38Z;Júlio Cesar;375.8077;115223466;Ecuador; -2018-11-18T10:12:08Z;Júlio;1731.986;114495765;Ecuador; -2018-11-18T10:08:50Z;Sandra;6680.341;114397985;Ecuador; -2018-11-18T10:04:36Z;Júlio;16195.47;114851649;Ecuador; -2018-11-18T09:28:23Z;Eduardo;5322.12;115917399;Ecuador; -2018-11-18T09:01:55Z;Armando;388.2182;114700273;Ecuador; -2018-11-18T08:53:20Z;Nathália;4638.537;114254671;Ecuador; -2018-11-18T08:36:54Z;nathalia;994.664;114375615;Ecuador; -2018-11-18T08:11:33Z;Júlio;9080.174;115753328;Ecuador; -2018-11-18T07:46:27Z;Armando;2701.153;115741543;Ecuador; -2018-11-18T07:45:02Z;Júlio Cesar;3266.963;114368708;Ecuador; -2018-11-18T07:43:42Z;nathalia;6023.045;115925651;Ecuador; -2018-11-18T07:35:45Z;Nathália;646.9361;114208441;Ecuador; -2018-11-18T07:23:46Z;Armando;3172.248;115177947;Ecuador; -2018-11-18T06:58:44Z;Sandra;6253.927;115402574;Ecuador; -2018-11-18T06:52:28Z;Júlio Cesar;4026.683;114602294;Ecuador; -2018-11-18T06:44:16Z;nathalia;5958.783;115901603;Ecuador; -2018-11-18T06:43:13Z;Eduardo;5520.84;114515501;Ecuador; -2018-11-18T06:00:22Z;Júlio Cesar;17247.82;115614341;Ecuador; -2018-11-18T05:59:32Z;Júlio;8327.75;115033516;Ecuador; -2018-11-18T05:18:41Z;nathalia;2456.254;115433631;Ecuador; -2018-11-18T05:16:25Z;Júlio;4340.477;115558541;Ecuador; -2018-11-18T05:13:56Z;Nathália;8930.34;115768170;Ecuador; -2018-11-18T05:11:10Z;Eduardo;983.4422;116307182;Ecuador; -2018-11-18T04:39:44Z;Nathália;4007.79;116288950;Ecuador; -2018-11-18T04:33:47Z;Nathália;3154.758;115616499;Ecuador; -2018-11-18T04:07:58Z;nathalia;3632.16;114226152;Ecuador; -2018-11-18T04:02:40Z;Júlio Cesar;236.2143;116004302;Ecuador; -2018-11-18T04:00:01Z;Armando;9231.45;116033345;Ecuador; -2018-11-18T03:37:18Z;Júlio;22097.6;116347531;Ecuador; -2018-11-18T03:30:52Z;nathalia;271.2432;114779666;Ecuador; -2018-11-18T02:58:55Z;Ana;225.1302;115591191;Ecuador; -2018-11-18T02:31:37Z;Armando;30185.06;115989858;Ecuador; -2018-11-18T02:27:28Z;Ana;9519.913;115433993;Ecuador; -2018-11-18T02:26:56Z;Sandra;1049.435;115749012;Ecuador; -2018-11-18T02:03:45Z;Sandra;15066.94;115718298;Ecuador; -2018-11-18T01:38:49Z;Ana;13734.1;114469797;Ecuador; -2018-11-18T01:33:21Z;Júlio;5677.378;115452933;Ecuador; -2018-11-18T01:30:09Z;Júlio Cesar;3885.76;115997775;Ecuador; -2018-11-18T01:18:45Z;Júlio Cesar;5941.541;114385430;Ecuador; -2018-11-18T00:44:34Z;Júlio;918.7282;115330263;Ecuador; -2018-11-18T00:33:44Z;nathalia;367.8588;114220888;Ecuador; -2018-11-18T00:23:36Z;Armando;5231.652;114385264;Ecuador; -2018-11-18T00:19:41Z;Sandra;16642.06;114602208;Ecuador; -2018-11-18T00:01:45Z;Sandra;6840.932;114765827;Ecuador; -2018-11-17T23:32:38Z;Sandra;15024.56;115077929;Ecuador; -2018-11-17T23:31:21Z;Eduardo;3540.204;115965346;Ecuador; -2018-11-17T23:12:05Z;Sandra;486.786;114730138;Ecuador; -2018-11-17T23:08:17Z;Sandra;15.71148;115527861;Ecuador; -2018-11-17T22:42:20Z;Ana;91.84359;115510889;Ecuador; -2018-11-17T22:25:08Z;Júlio;12669.2;116258341;Ecuador; -2018-11-17T22:01:38Z;Armando;6493.132;114873443;Ecuador; -2018-11-17T21:40:59Z;Eduardo;430.8366;116147201;Ecuador; -2018-11-17T21:35:51Z;Júlio;658.7272;116161402;Ecuador; -2018-11-17T21:27:47Z;Júlio;889.4403;116052197;Ecuador; -2018-11-17T21:12:26Z;Ana;5279.507;115959376;Ecuador; -2018-11-17T21:04:21Z;nathalia;5081.815;115418451;Ecuador; -2018-11-17T20:57:19Z;Nathália;3726.178;116219823;Ecuador; -2018-11-17T20:01:58Z;Eduardo;4508.008;115121610;Ecuador; -2018-11-17T19:11:14Z;Eduardo;461.0882;114663625;Ecuador; -2018-11-17T19:10:36Z;Júlio;11936.14;115847761;Ecuador; -2018-11-17T19:01:27Z;nathalia;22843.61;114844906;Ecuador; -2018-11-17T18:49:33Z;Júlio;10820.89;116090973;Ecuador; -2018-11-17T18:32:12Z;Nathália;11066.79;114386705;Ecuador; -2018-11-17T17:55:56Z;nathalia;7032.661;115145941;Ecuador; -2018-11-17T17:54:45Z;Júlio Cesar;13198.14;114541569;Ecuador; -2018-11-17T17:54:36Z;Júlio Cesar;1643.106;115057856;Ecuador; -2018-11-17T17:51:04Z;Ana;2781.648;115166033;Ecuador; -2018-11-17T17:38:36Z;Júlio Cesar;1340.334;115774987;Ecuador; -2018-11-17T17:29:24Z;Ana;1012.533;114461913;Ecuador; -2018-11-17T17:18:23Z;Armando;5113.373;116000700;Ecuador; -2018-11-17T17:14:39Z;Ana;2098.115;115165015;Ecuador; -2018-11-17T16:29:24Z;nathalia;2417.375;115924207;Ecuador; -2018-11-17T16:18:18Z;Sandra;11396.48;115922178;Ecuador; -2018-11-17T16:14:37Z;Júlio Cesar;904.5581;116158814;Ecuador; -2018-11-17T15:54:25Z;Nathália;6149.754;115340620;Ecuador; -2018-11-17T15:51:59Z;Nathália;2430.956;116074915;Ecuador; -2018-11-17T15:50:42Z;Júlio;18025.55;114870337;Ecuador; -2018-11-17T15:37:40Z;Júlio Cesar;206.9991;115039752;Ecuador; -2018-11-17T15:17:08Z;Júlio Cesar;17886.35;115221865;Ecuador; -2018-11-17T15:10:10Z;Eduardo;1527.042;116172628;Ecuador; -2018-11-17T15:03:46Z;Sandra;8521.681;114299945;Ecuador; -2018-11-17T14:17:44Z;nathalia;10480.45;115820819;Ecuador; -2018-11-17T13:50:56Z;Júlio;8529.637;114394804;Ecuador; -2018-11-17T13:45:28Z;Nathália;9174.145;115691861;Ecuador; -2018-11-17T13:39:46Z;Júlio Cesar;2881.849;115882053;Ecuador; -2018-11-17T13:27:35Z;Nathália;11856.27;115354965;Ecuador; -2018-11-17T13:03:39Z;Armando;4002.726;115057853;Ecuador; -2018-11-17T13:02:42Z;Ana;17729.87;115626279;Ecuador; -2018-11-17T13:01:42Z;Júlio;1995.178;114927352;Ecuador; -2018-11-17T12:18:20Z;Nathália;6663.428;114238764;Ecuador; -2018-11-17T12:04:19Z;Júlio;722.3882;114233737;Ecuador; -2018-11-17T11:55:07Z;Eduardo;6450;116041090;Ecuador; -2018-11-17T11:52:51Z;nathalia;1448.76;115305097;Ecuador; -2018-11-17T11:35:18Z;Eduardo;8372.859;116271964;Ecuador; -2018-11-17T11:19:46Z;Júlio Cesar;2151.548;115934788;Ecuador; -2018-11-17T11:01:52Z;nathalia;1413.073;116277344;Ecuador; -2018-11-17T10:35:26Z;Ana;1248.047;115704408;Ecuador; -2018-11-17T10:29:24Z;Júlio;4182.778;114203876;Ecuador; -2018-11-17T10:02:40Z;Ana;6987.016;115920102;Ecuador; -2018-11-17T10:01:27Z;Nathália;133.497;115516870;Ecuador; -2018-11-17T09:55:20Z;Júlio;11369.49;115650483;Ecuador; -2018-11-17T09:54:04Z;Ana;12836.65;114575171;Ecuador; -2018-11-17T09:35:39Z;Nathália;256.1312;115296780;Ecuador; -2018-11-17T09:13:26Z;Ana;4680.28;115342758;Ecuador; -2018-11-17T09:10:19Z;nathalia;8835.865;114574805;Ecuador; -2018-11-17T09:02:59Z;Nathália;1380.28;114347451;Ecuador; -2018-11-17T08:57:45Z;Sandra;16793.62;114210098;Ecuador; -2018-11-17T08:30:03Z;Júlio Cesar;2149.498;115911430;Ecuador; -2018-11-17T08:29:49Z;Sandra;1113.689;114879986;Ecuador; -2018-11-17T08:23:29Z;Ana;3335.795;115272440;Ecuador; -2018-11-17T08:05:18Z;Júlio;12443.32;114237988;Ecuador; -2018-11-17T07:59:15Z;Júlio;402.7761;115939172;Ecuador; -2018-11-17T07:55:54Z;Armando;6757.151;116191745;Ecuador; -2018-11-17T07:42:38Z;Júlio;2425.088;115334695;Ecuador; -2018-11-17T07:42:11Z;nathalia;11222.74;116382326;Ecuador; -2018-11-17T07:11:09Z;nathalia;2013.189;116166449;Ecuador; -2018-11-17T06:44:21Z;Júlio Cesar;17175.08;115652692;Ecuador; -2018-11-17T06:28:36Z;nathalia;5881.7;115965131;Ecuador; -2018-11-17T06:24:19Z;Armando;9503.832;115639717;Ecuador; -2018-11-17T06:10:34Z;Júlio Cesar;6557.44;115665348;Ecuador; -2018-11-17T05:59:05Z;Nathália;4864.863;114255709;Ecuador; -2018-11-17T05:57:42Z;Sandra;2237.437;114644555;Ecuador; -2018-11-17T04:54:18Z;Júlio Cesar;4591.364;115752286;Ecuador; -2018-11-17T04:36:52Z;Eduardo;6378.871;115708722;Ecuador; -2018-11-17T04:17:35Z;Nathália;8394.702;116376665;Ecuador; -2018-11-17T04:04:33Z;Júlio;743.5066;116217085;Ecuador; -2018-11-17T03:08:03Z;Ana;7057.384;114935979;Ecuador; -2018-11-17T02:25:24Z;Sandra;6644.743;115588875;Ecuador; -2018-11-17T02:25:16Z;Eduardo;3118.893;115026647;Ecuador; -2018-11-17T02:13:18Z;Eduardo;14807.19;116191730;Ecuador; -2018-11-17T02:01:42Z;Ana;433.6753;114767367;Ecuador; -2018-11-17T01:43:29Z;Nathália;2069.399;114889221;Ecuador; -2018-11-17T01:40:45Z;Nathália;4627.953;114783688;Ecuador; -2018-11-17T01:34:44Z;Eduardo;25380.96;114341569;Ecuador; -2018-11-17T01:24:46Z;Armando;3153.429;115858647;Ecuador; -2018-11-17T01:17:38Z;Eduardo;11133.37;116136686;Ecuador; -2018-11-17T01:04:09Z;Eduardo;7131.64;115035325;Ecuador; -2018-11-17T00:43:30Z;Nathália;2547.326;116081347;Ecuador; -2018-11-17T00:02:46Z;Ana;1589.451;114642313;Ecuador; -2018-11-16T23:43:36Z;nathalia;6245.111;115305261;Ecuador; -2018-11-16T23:36:48Z;Júlio Cesar;1774.783;114745878;Ecuador; -2018-11-16T23:11:50Z;Júlio;5541.251;115031378;Ecuador; -2018-11-16T22:31:31Z;nathalia;9511.638;115960937;Ecuador; -2018-11-16T22:30:02Z;Nathália;836.5739;115087478;Ecuador; -2018-11-16T22:28:46Z;Armando;23.98539;114779450;Ecuador; -2018-11-16T22:14:14Z;Júlio;8231.397;114802685;Ecuador; -2018-11-16T22:00:42Z;Nathália;13540.24;116281053;Ecuador; -2018-11-16T21:58:41Z;Júlio Cesar;2092.29;114842892;Ecuador; -2018-11-16T21:18:08Z;Ana;2554.909;114641571;Ecuador; -2018-11-16T21:11:44Z;Eduardo;2537.847;115417945;Ecuador; -2018-11-16T19:34:17Z;Júlio;165.9898;114946162;Ecuador; -2018-11-16T19:00:12Z;nathalia;1846.794;115474379;Ecuador; -2018-11-16T18:15:30Z;Eduardo;15426.56;114378497;Ecuador; -2018-11-16T18:14:24Z;Júlio Cesar;5730.398;116018987;Ecuador; -2018-11-16T18:14:22Z;nathalia;1211.72;114420839;Ecuador; -2018-11-16T18:12:34Z;nathalia;2589.915;115129821;Ecuador; -2018-11-16T18:07:55Z;Eduardo;5436.183;116162777;Ecuador; -2018-11-16T17:56:48Z;Júlio Cesar;17241.77;114717448;Ecuador; -2018-11-16T17:13:11Z;nathalia;2633.661;115436139;Ecuador; -2018-11-16T17:03:43Z;nathalia;1273.481;115506730;Ecuador; -2018-11-16T16:57:19Z;Sandra;18735.65;115252322;Ecuador; -2018-11-16T16:52:16Z;Júlio;5300.185;114778276;Ecuador; -2018-11-16T16:39:15Z;Júlio Cesar;417.2371;114817709;Ecuador; -2018-11-16T16:24:45Z;Sandra;525.0475;114602599;Ecuador; -2018-11-16T16:14:22Z;nathalia;2634.981;115144105;Ecuador; -2018-11-16T16:04:30Z;Eduardo;11647.1;115686048;Ecuador; -2018-11-16T15:36:17Z;Eduardo;14697.9;114386431;Ecuador; -2018-11-16T15:22:33Z;Sandra;1389.973;114649016;Ecuador; -2018-11-16T15:00:13Z;Ana;5948.155;114872295;Ecuador; -2018-11-16T14:41:06Z;Ana;1794.447;115755210;Ecuador; -2018-11-16T14:38:21Z;Sandra;17247.62;115879163;Ecuador; -2018-11-16T14:07:40Z;Eduardo;6929.9;114723781;Ecuador; -2018-11-16T14:03:33Z;Nathália;2214.936;116141589;Ecuador; -2018-11-16T13:56:24Z;Júlio;2130.813;115999416;Ecuador; -2018-11-16T13:45:07Z;Júlio;11268.3;114991348;Ecuador; -2018-11-16T12:44:09Z;Júlio Cesar;3846.918;114532148;Ecuador; -2018-11-16T12:31:06Z;Armando;814.5258;114690814;Ecuador; -2018-11-16T12:15:10Z;nathalia;1234.382;114402177;Ecuador; -2018-11-16T12:14:37Z;Ana;5626.434;115162677;Ecuador; -2018-11-16T11:59:10Z;nathalia;969.8078;115018150;Ecuador; -2018-11-16T11:48:38Z;Sandra;11523.26;115890850;Ecuador; -2018-11-16T11:38:43Z;Júlio Cesar;3991.889;115922546;Ecuador; -2018-11-16T11:35:22Z;nathalia;1087.116;115949457;Ecuador; -2018-11-16T11:27:51Z;Armando;17071.74;115230691;Ecuador; -2018-11-16T11:16:28Z;Ana;7345.12;115927724;Ecuador; -2018-11-16T09:31:22Z;Júlio;5115.479;115116959;Ecuador; -2018-11-16T09:21:42Z;nathalia;4659.818;115220398;Ecuador; -2018-11-16T08:57:56Z;Ana;35129.43;115902710;Ecuador; -2018-11-16T08:51:05Z;Nathália;11966.31;114480519;Ecuador; -2018-11-16T08:18:27Z;Ana;4497.474;116082279;Ecuador; -2018-11-16T07:54:19Z;nathalia;1856.964;114397587;Ecuador; -2018-11-16T07:52:42Z;Armando;4213.104;115495840;Ecuador; -2018-11-16T07:51:06Z;Armando;7399.618;115258431;Ecuador; -2018-11-16T07:49:03Z;Eduardo;5613.564;114865407;Ecuador; -2018-11-16T07:28:21Z;Júlio Cesar;10381.61;114397173;Ecuador; -2018-11-16T07:21:40Z;nathalia;6163.349;116104257;Ecuador; -2018-11-16T07:17:35Z;Júlio;2771.384;114339914;Ecuador; -2018-11-16T07:05:57Z;Armando;12748.83;114407683;Ecuador; -2018-11-16T06:54:37Z;Ana;4036.36;115070854;Ecuador; -2018-11-16T06:53:55Z;Sandra;3114.835;116222510;Ecuador; -2018-11-16T06:53:33Z;Sandra;28545.48;114379335;Ecuador; -2018-11-16T06:46:17Z;nathalia;2455.95;116131171;Ecuador; -2018-11-16T06:30:28Z;Ana;156.4003;114937057;Ecuador; -2018-11-16T05:23:38Z;Júlio Cesar;14473.68;114985633;Ecuador; -2018-11-16T05:03:00Z;Eduardo;13584.8;115265242;Ecuador; -2018-11-16T04:53:22Z;Júlio Cesar;4990.686;114277490;Ecuador; -2018-11-16T04:49:38Z;Armando;11000.37;115407027;Ecuador; -2018-11-16T04:22:21Z;Ana;9011.392;115603873;Ecuador; -2018-11-16T03:53:21Z;nathalia;8600.077;115371531;Ecuador; -2018-11-16T03:41:29Z;Júlio Cesar;6788.577;114769498;Ecuador; -2018-11-16T03:35:50Z;Júlio;1295.149;115150734;Ecuador; -2018-11-16T03:30:35Z;nathalia;9675.066;116110060;Ecuador; -2018-11-16T03:27:24Z;Júlio Cesar;4061.135;116294403;Ecuador; -2018-11-16T03:08:00Z;Júlio;24402.35;115834349;Ecuador; -2018-11-16T02:30:40Z;nathalia;2120.682;115766828;Ecuador; -2018-11-16T02:15:02Z;Júlio;7270.119;115371172;Ecuador; -2018-11-16T02:14:15Z;Ana;4300.203;115475636;Ecuador; -2018-11-16T02:09:19Z;nathalia;4472.826;115400202;Ecuador; -2018-11-16T01:57:09Z;Armando;4552.106;115039306;Ecuador; -2018-11-16T01:44:11Z;Júlio;8997.084;115685410;Ecuador; -2018-11-16T01:38:38Z;nathalia;15268.99;115015942;Ecuador; -2018-11-16T01:31:55Z;Ana;6833.139;115959799;Ecuador; -2018-11-16T01:16:52Z;Júlio Cesar;10640.96;114896144;Ecuador; -2018-11-16T01:14:27Z;Sandra;2414.449;114249003;Ecuador; -2018-11-16T01:13:24Z;Júlio Cesar;453.9963;114950219;Ecuador; -2018-11-16T00:53:25Z;Eduardo;12063.32;115384103;Ecuador; -2018-11-16T00:37:55Z;nathalia;9081.51;114415996;Ecuador; -2018-11-16T00:35:32Z;Ana;6921.751;115473114;Ecuador; -2018-11-16T00:30:02Z;Ana;4580.084;115024198;Ecuador; -2018-11-15T23:46:17Z;Eduardo;20787.7;115282852;Ecuador; -2018-11-15T23:43:26Z;Eduardo;65.59084;114888265;Ecuador; -2018-11-15T23:38:29Z;Eduardo;3336.628;116189265;Ecuador; -2018-11-15T23:34:04Z;Ana;6992.209;114856019;Ecuador; -2018-11-15T23:21:50Z;Júlio;15862.31;115145078;Ecuador; -2018-11-15T23:04:40Z;nathalia;18882.09;115555615;Ecuador; -2018-11-15T22:54:29Z;Júlio;6465.395;114339531;Ecuador; -2018-11-15T22:51:53Z;Júlio;351.4973;115113013;Ecuador; -2018-11-15T22:44:53Z;nathalia;3779.335;116330198;Ecuador; -2018-11-15T22:41:50Z;Júlio Cesar;25299.09;114202404;Ecuador; -2018-11-15T21:55:12Z;Eduardo;16251.61;114265619;Ecuador; -2018-11-15T21:46:14Z;Eduardo;14314.29;116329971;Ecuador; -2018-11-15T21:40:03Z;Júlio;15807.29;114552174;Ecuador; -2018-11-15T21:36:25Z;Júlio;9888.566;116204505;Ecuador; -2018-11-15T20:45:20Z;nathalia;14179.97;114865283;Ecuador; -2018-11-15T20:23:25Z;Eduardo;8512.424;116161110;Ecuador; -2018-11-15T20:01:55Z;Eduardo;941.8437;114597078;Ecuador; -2018-11-15T19:46:37Z;nathalia;6505.633;116088523;Ecuador; -2018-11-15T19:44:37Z;nathalia;10956.62;115866736;Ecuador; -2018-11-15T19:23:29Z;Nathália;12665.37;115833435;Ecuador; -2018-11-15T19:04:28Z;Júlio;2016.836;115111433;Ecuador; -2018-11-15T18:32:37Z;Júlio Cesar;9902.845;115627632;Ecuador; -2018-11-15T18:26:53Z;Júlio;1951.102;114340732;Ecuador; -2018-11-15T18:26:03Z;nathalia;2496.94;115654650;Ecuador; -2018-11-15T18:25:45Z;Nathália;9332.364;114969727;Ecuador; -2018-11-15T18:02:24Z;nathalia;19153.89;115391784;Ecuador; -2018-11-15T18:01:47Z;Eduardo;4666.448;115612255;Ecuador; -2018-11-15T17:57:20Z;nathalia;5537.175;115467169;Ecuador; -2018-11-15T17:52:25Z;nathalia;6854.105;116234542;Ecuador; -2018-11-15T17:46:33Z;Nathália;15020.55;114543317;Ecuador; -2018-11-15T17:21:32Z;Sandra;6825.954;115635434;Ecuador; -2018-11-15T17:13:40Z;Ana;13291.57;115675083;Ecuador; -2018-11-15T16:51:23Z;Nathália;1191.853;115998453;Ecuador; -2018-11-15T16:35:02Z;Júlio;14657.08;115673325;Ecuador; -2018-11-15T16:26:29Z;Júlio Cesar;2850.226;115435618;Ecuador; -2018-11-15T16:20:21Z;Nathália;918.0028;114854083;Ecuador; -2018-11-15T16:15:41Z;Sandra;58.96919;114740930;Ecuador; -2018-11-15T16:06:44Z;Armando;15961.83;114366280;Ecuador; -2018-11-15T15:53:20Z;Eduardo;1186.266;114911080;Ecuador; -2018-11-15T14:59:30Z;nathalia;4548.681;116136321;Ecuador; -2018-11-15T14:47:20Z;Júlio Cesar;2819.054;114633837;Ecuador; -2018-11-15T14:33:10Z;Júlio;9971.14;114843031;Ecuador; -2018-11-15T14:19:09Z;Armando;527.2231;116033843;Ecuador; -2018-11-15T14:11:33Z;Sandra;15076.98;115091425;Ecuador; -2018-11-15T13:43:51Z;Ana;13988.55;115618386;Ecuador; -2018-11-15T13:23:11Z;Sandra;2752.778;115973190;Ecuador; -2018-11-15T13:21:10Z;Ana;4894.783;115765683;Ecuador; -2018-11-15T12:56:56Z;Ana;15422.29;114379219;Ecuador; -2018-11-15T12:55:59Z;nathalia;16222.4;115267645;Ecuador; -2018-11-15T12:54:26Z;Júlio;7133.242;115781697;Ecuador; -2018-11-15T12:47:15Z;Armando;9.310838;116315809;Ecuador; -2018-11-15T12:32:38Z;nathalia;983.6588;115556488;Ecuador; -2018-11-15T12:05:28Z;Ana;1729.015;115251215;Ecuador; -2018-11-15T11:08:10Z;Júlio Cesar;14159.17;115502213;Ecuador; -2018-11-15T10:33:09Z;Eduardo;6218.999;114923872;Ecuador; -2018-11-15T10:31:45Z;Nathália;5129.874;115696936;Ecuador; -2018-11-15T10:22:21Z;Júlio;2887.791;114873457;Ecuador; -2018-11-15T09:52:38Z;Sandra;11499.92;114957132;Ecuador; -2018-11-15T09:48:07Z;nathalia;5000.049;115886659;Ecuador; -2018-11-15T09:25:06Z;Júlio Cesar;1910.344;115176344;Ecuador; -2018-11-15T08:53:26Z;Ana;6851.741;116094913;Ecuador; -2018-11-15T08:01:29Z;Eduardo;1299.898;115159807;Ecuador; -2018-11-15T07:59:59Z;Armando;1998.574;116031300;Ecuador; -2018-11-15T07:27:53Z;Ana;9369.156;116166670;Ecuador; -2018-11-15T07:24:29Z;Júlio Cesar;7275.424;114579567;Ecuador; -2018-11-15T07:24:05Z;Júlio;3321.946;116233165;Ecuador; -2018-11-15T07:17:50Z;Eduardo;14543.33;114521787;Ecuador; -2018-11-15T07:15:22Z;Nathália;11246.24;115815137;Ecuador; -2018-11-15T06:55:43Z;Sandra;4950.321;115165826;Ecuador; -2018-11-15T06:45:28Z;nathalia;4614.902;115037252;Ecuador; -2018-11-15T06:12:11Z;Nathália;2877.592;115432525;Ecuador; -2018-11-15T06:10:40Z;Nathália;1028.264;115934109;Ecuador; -2018-11-15T05:46:29Z;Sandra;1156.512;114344504;Ecuador; -2018-11-15T05:27:38Z;Eduardo;8716.592;114670693;Ecuador; -2018-11-15T05:02:44Z;Sandra;2847.234;114842826;Ecuador; -2018-11-15T04:36:01Z;Sandra;6969.848;114966684;Ecuador; -2018-11-15T04:07:58Z;Júlio;337.4882;115236946;Ecuador; -2018-11-15T03:50:05Z;Armando;231.7152;114949617;Ecuador; -2018-11-15T03:49:06Z;Júlio;601.2329;115317447;Ecuador; -2018-11-15T03:36:24Z;Sandra;2382.923;114722010;Ecuador; -2018-11-15T03:36:16Z;Júlio Cesar;125.2906;115700614;Ecuador; -2018-11-15T03:31:05Z;Júlio;8966.277;114693488;Ecuador; -2018-11-15T03:16:22Z;Armando;730.3571;114512779;Ecuador; -2018-11-15T03:07:42Z;Nathália;19675.49;115404400;Ecuador; -2018-11-15T03:00:37Z;Eduardo;5063.815;115331915;Ecuador; -2018-11-15T02:45:45Z;Ana;1965.6;115900324;Ecuador; -2018-11-15T02:27:14Z;Júlio;4263.723;114319856;Ecuador; -2018-11-15T02:06:37Z;Júlio;1312.061;114861642;Ecuador; -2018-11-15T01:54:38Z;Sandra;653.9249;116392875;Ecuador; -2018-11-15T01:53:02Z;nathalia;769.7184;114250670;Ecuador; -2018-11-15T01:52:00Z;Nathália;1073.363;115910764;Ecuador; -2018-11-15T01:47:21Z;Júlio Cesar;12186.93;116258852;Ecuador; -2018-11-15T01:47:12Z;Júlio;10019.66;116220675;Ecuador; -2018-11-15T01:20:36Z;nathalia;2536.869;115985567;Ecuador; -2018-11-15T01:14:11Z;Eduardo;3615.899;115960029;Ecuador; -2018-11-15T01:00:12Z;Júlio;16945.53;114230781;Ecuador; -2018-11-15T00:59:53Z;nathalia;26573.66;114823870;Ecuador; -2018-11-15T00:47:43Z;Sandra;2120.547;115019388;Ecuador; -2018-11-15T00:40:02Z;Eduardo;433.7531;114268895;Ecuador; -2018-11-15T00:38:35Z;Ana;6438.781;114749434;Ecuador; -2018-11-15T00:30:23Z;Eduardo;15300.55;116037686;Ecuador; -2018-11-15T00:22:21Z;Júlio Cesar;8900.659;115122800;Ecuador; -2018-11-15T00:11:49Z;Júlio Cesar;8021.32;115713146;Ecuador; -2018-11-15T00:00:59Z;Júlio;1240.422;116102376;Ecuador; -2018-11-14T23:45:02Z;nathalia;3720.833;114234094;Ecuador; -2018-11-14T23:07:57Z;Ana;5381.545;116286273;Ecuador; -2018-11-14T22:39:23Z;Eduardo;19036.38;114814906;Ecuador; -2018-11-14T21:42:44Z;Nathália;119.5105;115168267;Ecuador; -2018-11-14T21:29:59Z;Júlio;4248.807;116324361;Ecuador; -2018-11-14T21:24:04Z;nathalia;12768.59;114472428;Ecuador; -2018-11-14T21:16:07Z;Armando;2330.158;115017590;Ecuador; -2018-11-14T21:02:38Z;Eduardo;18518.24;115459460;Ecuador; -2018-11-14T20:48:54Z;Eduardo;7056.395;114207861;Ecuador; -2018-11-14T20:47:30Z;Ana;1696.709;114689647;Ecuador; -2018-11-14T20:42:04Z;nathalia;0.6452489;115959375;Ecuador; -2018-11-14T20:23:28Z;Sandra;7666.977;115582299;Ecuador; -2018-11-14T19:27:22Z;nathalia;7114.423;114354465;Ecuador; -2018-11-14T19:24:02Z;Nathália;8888.546;115810272;Ecuador; -2018-11-14T19:07:24Z;Armando;16651.91;115584290;Ecuador; -2018-11-14T18:56:24Z;Júlio Cesar;1625.349;116186558;Ecuador; -2018-11-14T18:45:21Z;Armando;7232.483;114557155;Ecuador; -2018-11-14T18:40:19Z;Ana;1724.668;114497509;Ecuador; -2018-11-14T18:08:39Z;Eduardo;7824.003;115240174;Ecuador; -2018-11-14T17:56:22Z;Nathália;7696.084;115282692;Ecuador; -2018-11-14T17:43:09Z;Sandra;2242.007;115397531;Ecuador; -2018-11-14T17:35:50Z;Júlio Cesar;2212.904;115874471;Ecuador; -2018-11-14T17:26:58Z;Sandra;10820.81;114508912;Ecuador; -2018-11-14T16:39:32Z;nathalia;11291.85;115256262;Ecuador; -2018-11-14T16:35:28Z;Armando;741.7765;114617370;Ecuador; -2018-11-14T16:33:05Z;Júlio;808.1498;116021155;Ecuador; -2018-11-14T16:31:04Z;nathalia;12573.04;116152753;Ecuador; -2018-11-14T16:05:13Z;Sandra;13148.39;115341971;Ecuador; -2018-11-14T15:54:48Z;Ana;231.9368;114334933;Ecuador; -2018-11-14T15:48:01Z;Armando;8962.626;114776940;Ecuador; -2018-11-14T15:26:11Z;Armando;8043.632;114844632;Ecuador; -2018-11-14T14:01:02Z;Armando;3975.095;115865895;Ecuador; -2018-11-14T13:49:51Z;Júlio;5712.997;115541722;Ecuador; -2018-11-14T12:59:24Z;Júlio Cesar;2293.087;114933858;Ecuador; -2018-11-14T12:34:12Z;Sandra;361.3235;115698857;Ecuador; -2018-11-14T12:12:53Z;Sandra;1090.17;114975751;Ecuador; -2018-11-14T12:00:00Z;nathalia;5397.631;114782521;Ecuador; -2018-11-14T11:52:09Z;Júlio Cesar;1610.105;116097604;Ecuador; -2018-11-14T11:43:09Z;Júlio;22470.38;115887706;Ecuador; -2018-11-14T11:38:46Z;Nathália;11832.02;114682372;Ecuador; -2018-11-14T11:27:38Z;nathalia;12748.04;114343646;Ecuador; -2018-11-14T11:26:53Z;Nathália;12148.27;115103544;Ecuador; -2018-11-14T11:10:50Z;Ana;973.7131;116034715;Ecuador; -2018-11-14T10:31:13Z;Eduardo;14298.82;114463406;Ecuador; -2018-11-14T10:29:12Z;Nathália;11219.45;115333239;Ecuador; -2018-11-14T10:18:18Z;Ana;3520.356;116285533;Ecuador; -2018-11-14T10:17:38Z;Júlio;63.41275;115290257;Ecuador; -2018-11-14T09:17:25Z;Júlio;2977.146;115977896;Ecuador; -2018-11-14T09:13:12Z;Sandra;12372.86;115729406;Ecuador; -2018-11-14T08:33:21Z;Júlio;573.4954;115661949;Ecuador; -2018-11-14T08:29:47Z;Nathália;12579.34;115001113;Ecuador; -2018-11-14T08:20:06Z;Nathália;14288.77;114207780;Ecuador; -2018-11-14T08:17:39Z;Nathália;1961.802;114960915;Ecuador; -2018-11-14T07:14:48Z;Júlio;9378.921;116205968;Ecuador; -2018-11-14T07:11:38Z;Júlio;8117.724;115063985;Ecuador; -2018-11-14T06:12:25Z;Júlio;9080.076;114404420;Ecuador; -2018-11-14T06:09:33Z;Júlio Cesar;9860.51;114596058;Ecuador; -2018-11-14T06:06:19Z;Armando;12214.91;114585886;Ecuador; -2018-11-14T05:59:51Z;Júlio Cesar;9205.49;115674049;Ecuador; -2018-11-14T05:50:44Z;Armando;3548.004;116200464;Ecuador; -2018-11-14T05:25:01Z;Júlio;3463.38;114616577;Ecuador; -2018-11-14T04:43:12Z;Armando;2735.195;114750175;Ecuador; -2018-11-14T04:00:37Z;Eduardo;89.83689;114669982;Ecuador; -2018-11-14T03:51:55Z;Nathália;12707.25;116277397;Ecuador; -2018-11-14T03:40:57Z;Sandra;8612.465;115006451;Ecuador; -2018-11-14T03:37:45Z;Ana;2679.75;115751742;Ecuador; -2018-11-14T03:19:35Z;Eduardo;2387.317;115724387;Ecuador; -2018-11-14T03:09:42Z;Armando;6270.957;115172119;Ecuador; -2018-11-14T03:04:13Z;Júlio Cesar;188.61;115692178;Ecuador; -2018-11-14T02:52:53Z;Nathália;11913.07;116371594;Ecuador; -2018-11-14T02:34:37Z;Júlio Cesar;15121.69;114596965;Ecuador; -2018-11-14T02:34:04Z;Júlio Cesar;4287.375;116223321;Ecuador; -2018-11-14T02:22:40Z;Júlio Cesar;12011.86;115037056;Ecuador; -2018-11-14T01:42:04Z;Eduardo;20741.38;114226849;Ecuador; -2018-11-14T01:38:59Z;Armando;2965.976;116368378;Ecuador; -2018-11-14T01:35:50Z;nathalia;4943.886;115388992;Ecuador; -2018-11-14T01:16:48Z;Júlio;6997.556;115548175;Ecuador; -2018-11-14T01:09:03Z;Eduardo;1718.537;116003039;Ecuador; -2018-11-14T00:48:16Z;Júlio Cesar;19898.03;114341024;Ecuador; -2018-11-14T00:13:30Z;Eduardo;4043.876;115421348;Ecuador; -2018-11-13T23:52:13Z;Eduardo;8220.322;115257431;Ecuador; -2018-11-13T23:42:13Z;Júlio;5547.175;114304191;Ecuador; -2018-11-13T23:25:42Z;Eduardo;1675.678;114386531;Ecuador; -2018-11-13T23:02:45Z;Armando;16087.43;116122844;Ecuador; -2018-11-13T23:01:30Z;Armando;1896.797;115756557;Ecuador; -2018-11-13T22:59:09Z;Júlio Cesar;521.5609;115352066;Ecuador; -2018-11-13T22:41:58Z;Armando;6952.399;114720982;Ecuador; -2018-11-13T22:26:17Z;Eduardo;176.5253;115341626;Ecuador; -2018-11-13T22:19:45Z;Armando;2914.209;114504633;Ecuador; -2018-11-13T22:16:28Z;Júlio;227.3595;114840679;Ecuador; -2018-11-13T21:56:51Z;Júlio;1579.065;115903203;Ecuador; -2018-11-13T21:52:34Z;Sandra;10942.04;114650523;Ecuador; -2018-11-13T21:48:34Z;Sandra;1160.612;116319639;Ecuador; -2018-11-13T21:35:16Z;Sandra;19699.84;114674473;Ecuador; -2018-11-13T21:24:57Z;Sandra;9152.494;115522080;Ecuador; -2018-11-13T21:22:26Z;Júlio Cesar;6279.421;114707457;Ecuador; -2018-11-13T20:58:39Z;Ana;14469.32;114580803;Ecuador; -2018-11-13T20:38:43Z;nathalia;401.4798;116020531;Ecuador; -2018-11-13T20:21:05Z;Júlio;4566.281;116032635;Ecuador; -2018-11-13T20:06:04Z;Armando;5121.088;115165662;Ecuador; -2018-11-13T19:55:15Z;Sandra;27357.93;114641741;Ecuador; -2018-11-13T19:51:16Z;Eduardo;5681.612;114735928;Ecuador; -2018-11-13T19:11:13Z;Júlio;8164.212;114924328;Ecuador; -2018-11-13T18:33:32Z;Ana;5722.622;115998989;Ecuador; -2018-11-13T18:15:15Z;Ana;5679.991;116180186;Ecuador; -2018-11-13T18:13:02Z;Ana;15786.69;116079381;Ecuador; -2018-11-13T18:12:34Z;nathalia;7239.282;115063921;Ecuador; -2018-11-13T17:57:36Z;Ana;17224.41;116198360;Ecuador; -2018-11-13T17:34:02Z;Armando;14166.64;116260663;Ecuador; -2018-11-13T17:32:32Z;Ana;1017.616;115151653;Ecuador; -2018-11-13T16:39:37Z;Sandra;14123.85;115168337;Ecuador; -2018-11-13T16:37:51Z;Nathália;4806.899;114677616;Ecuador; -2018-11-13T16:08:34Z;Eduardo;3368.41;115500436;Ecuador; -2018-11-13T16:04:28Z;Júlio Cesar;19053.16;115874785;Ecuador; -2018-11-13T15:57:00Z;Júlio Cesar;2248.825;115985222;Ecuador; -2018-11-13T15:41:23Z;Sandra;5401.464;114647750;Ecuador; -2018-11-13T15:25:06Z;Ana;8215.272;115711789;Ecuador; -2018-11-13T15:16:09Z;Júlio;1359.157;114487294;Ecuador; -2018-11-13T15:13:52Z;Júlio;2978.404;115660281;Ecuador; -2018-11-13T14:43:37Z;Júlio Cesar;2970.679;114913335;Ecuador; -2018-11-13T14:28:48Z;Ana;14787.21;114455656;Ecuador; -2018-11-13T14:16:40Z;nathalia;387.1608;116038627;Ecuador; -2018-11-13T14:10:49Z;Ana;4869.733;114476336;Ecuador; -2018-11-13T13:47:23Z;Nathália;2766.241;114319260;Ecuador; -2018-11-13T13:15:17Z;Eduardo;10724.61;115606307;Ecuador; -2018-11-13T13:02:58Z;Nathália;9544.026;114601515;Ecuador; -2018-11-13T12:42:39Z;Armando;1103.947;114330221;Ecuador; -2018-11-13T12:22:20Z;Ana;1473.361;115973558;Ecuador; -2018-11-13T12:19:13Z;Sandra;9594.327;114658132;Ecuador; -2018-11-13T12:06:49Z;Armando;599.3767;114552027;Ecuador; -2018-11-13T11:50:46Z;Nathália;3704.373;114664114;Ecuador; -2018-11-13T10:56:53Z;Sandra;10122.31;116129663;Ecuador; -2018-11-13T10:42:44Z;nathalia;15164.49;115176736;Ecuador; -2018-11-13T10:33:33Z;Nathália;2597.482;116225823;Ecuador; -2018-11-13T10:00:24Z;Júlio;7576.811;114768122;Ecuador; -2018-11-13T09:43:41Z;nathalia;1989.367;116139064;Ecuador; -2018-11-13T08:56:27Z;Armando;11903.99;115190824;Ecuador; -2018-11-13T08:38:16Z;Ana;7260.828;114364859;Ecuador; -2018-11-13T08:28:10Z;Júlio Cesar;540.0866;115179105;Ecuador; -2018-11-13T08:24:28Z;Eduardo;515.4533;114392858;Ecuador; -2018-11-13T08:05:18Z;nathalia;1387.67;115995942;Ecuador; -2018-11-13T08:01:28Z;Ana;25804.89;114570443;Ecuador; -2018-11-13T07:55:29Z;Júlio Cesar;10978.47;115232531;Ecuador; -2018-11-13T07:19:10Z;Ana;8598.833;115557188;Ecuador; -2018-11-13T06:47:08Z;Júlio;101.8311;114905915;Ecuador; -2018-11-13T06:26:54Z;Ana;4523.354;114739650;Ecuador; -2018-11-13T06:26:37Z;Sandra;95.25112;114688681;Ecuador; -2018-11-13T06:18:21Z;Ana;2566.578;115874404;Ecuador; -2018-11-13T06:17:18Z;Júlio Cesar;22791.62;115272620;Ecuador; -2018-11-13T06:02:34Z;Armando;26349.49;115043758;Ecuador; -2018-11-13T05:32:00Z;Ana;19193.45;116115315;Ecuador; -2018-11-13T05:28:41Z;Ana;1982.17;115805856;Ecuador; -2018-11-13T05:13:59Z;nathalia;12378.87;115071261;Ecuador; -2018-11-13T04:50:26Z;Eduardo;3916.297;114293703;Ecuador; -2018-11-13T04:40:57Z;Sandra;434.8023;114674861;Ecuador; -2018-11-13T04:18:38Z;Eduardo;132.5337;114887288;Ecuador; -2018-11-13T03:44:17Z;Nathália;804.9181;115228996;Ecuador; -2018-11-13T03:37:56Z;Armando;1055.945;115503964;Ecuador; -2018-11-13T03:37:41Z;Júlio Cesar;1195.375;115690390;Ecuador; -2018-11-13T03:06:36Z;Eduardo;14985.24;114440154;Ecuador; -2018-11-13T03:04:10Z;Eduardo;669.8412;115327585;Ecuador; -2018-11-13T02:53:44Z;nathalia;495.0713;114676053;Ecuador; -2018-11-13T02:36:06Z;Sandra;3165.448;114265017;Ecuador; -2018-11-13T02:28:29Z;Nathália;11065.22;115658751;Ecuador; -2018-11-13T02:12:39Z;Nathália;14596.65;116332130;Ecuador; -2018-11-13T02:05:34Z;Eduardo;6988.621;115244368;Ecuador; -2018-11-13T02:02:23Z;Nathália;2838.331;114236843;Ecuador; -2018-11-13T01:42:21Z;Ana;4787.763;115734739;Ecuador; -2018-11-13T01:26:01Z;Júlio;3292.41;115446548;Ecuador; -2018-11-13T00:47:29Z;nathalia;4018.12;115890226;Ecuador; -2018-11-13T00:45:17Z;Armando;7192.354;115159424;Ecuador; -2018-11-13T00:41:13Z;Armando;957.7536;115137422;Ecuador; -2018-11-13T00:40:54Z;nathalia;3709.382;114945515;Ecuador; -2018-12-06T22:17:27Z;Júlio Cesar;801.8116;115232776;Mexico; -2018-12-06T22:16:34Z;Eduardo;1336.224;115138676;Mexico; -2018-12-06T21:46:25Z;nathalia;1815.507;115412374;Mexico; -2018-12-06T21:40:42Z;Júlio;746.5302;114912552;Mexico; -2018-12-06T21:36:42Z;Ana;79.7757;114948271;Mexico; -2018-12-06T21:07:34Z;Eduardo;5527.731;116078973;Mexico; -2018-12-06T21:03:45Z;Armando;4033.25;115471774;Mexico; -2018-12-06T21:03:29Z;Ana;501.9907;115576462;Mexico; -2018-12-06T20:59:15Z;Sandra;33.96639;115449921;Mexico; -2018-12-06T20:21:58Z;Sandra;3209.101;115460692;Mexico; -2018-12-06T20:04:06Z;Armando;3864.575;115057584;Mexico; -2018-12-06T20:03:02Z;Eduardo;194.493;114716230;Mexico; -2018-12-06T19:38:56Z;nathalia;729.994;115812348;Mexico; -2018-12-06T19:19:13Z;Ana;167.82;115729003;Mexico; -2018-12-06T18:51:54Z;Júlio Cesar;3146.653;116096536;Mexico; -2018-12-06T18:48:34Z;Júlio Cesar;2247.619;114890893;Mexico; -2018-12-06T18:37:55Z;Eduardo;6936.621;114899987;Mexico; -2018-12-06T18:24:49Z;Eduardo;2056.792;115013030;Mexico; -2018-12-06T17:50:59Z;Armando;1806.162;114388835;Mexico; -2018-12-06T17:47:18Z;nathalia;1882.646;115430433;Mexico; -2018-12-06T17:47:08Z;Júlio;443.1348;115987820;Mexico; -2018-12-06T17:18:33Z;Júlio;3239.322;115080804;Mexico; -2018-12-06T17:15:57Z;Júlio;405.8957;114643928;Mexico; -2018-12-06T17:08:17Z;nathalia;2816.066;116180800;Mexico; -2018-12-06T17:04:13Z;Armando;37.35736;114416170;Mexico; -2018-12-06T16:57:04Z;Armando;2703.655;115807927;Mexico; -2018-12-06T16:54:42Z;nathalia;685.5825;114552380;Mexico; -2018-12-06T16:08:50Z;nathalia;2122.027;114200117;Mexico; -2018-12-06T16:08:20Z;Ana;452.5917;114646293;Mexico; -2018-12-06T15:19:20Z;Júlio Cesar;2061.456;115978500;Mexico; -2018-12-06T15:07:15Z;Júlio;153.3828;115873979;Mexico; -2018-12-06T15:01:03Z;Eduardo;617.541;115282006;Mexico; -2018-12-06T14:31:25Z;Júlio;331.3693;115006941;Mexico; -2018-12-06T14:13:08Z;Sandra;42.62371;114345156;Mexico; -2018-12-06T14:09:56Z;Ana;2216.667;115114115;Mexico; -2018-12-06T14:08:30Z;Júlio Cesar;1851.134;115307257;Mexico; -2018-12-06T14:07:50Z;nathalia;3366.76;115175725;Mexico; -2018-12-06T14:04:06Z;Armando;5025.227;115268090;Mexico; -2018-12-06T13:48:02Z;nathalia;3731.061;116350557;Mexico; -2018-12-06T13:10:59Z;Sandra;1097.383;114715505;Mexico; -2018-12-06T12:11:01Z;Ana;1514.214;114397814;Mexico; -2018-12-06T11:43:05Z;nathalia;4979.651;114316577;Mexico; -2018-12-06T11:40:25Z;Júlio Cesar;2089.349;116294918;Mexico; -2018-12-06T10:38:21Z;Nathália;1142.798;114794315;Mexico; -2018-12-06T10:32:47Z;nathalia;2985.366;115039527;Mexico; -2018-12-06T09:39:40Z;nathalia;4151.915;114745496;Mexico; -2018-12-06T08:40:27Z;nathalia;8528.061;116056633;Mexico; -2018-12-06T08:22:49Z;Armando;886.7217;116102616;Mexico; -2018-12-06T08:10:44Z;Armando;9351.311;115957158;Mexico; -2018-12-06T08:09:23Z;nathalia;708.9307;115872627;Mexico; -2018-12-06T07:30:38Z;nathalia;3522.819;115662654;Mexico; -2018-12-06T07:26:37Z;Armando;70.2649;114925636;Mexico; -2018-12-06T07:25:01Z;nathalia;2258.052;116204694;Mexico; -2018-12-06T06:56:26Z;Eduardo;5054.313;115246906;Mexico; -2018-12-06T06:46:37Z;Eduardo;1326.402;116126241;Mexico; -2018-12-06T06:27:23Z;Ana;2280.288;116210436;Mexico; -2018-12-06T06:14:31Z;Nathália;1006.364;114967888;Mexico; -2018-12-06T06:02:23Z;Sandra;811.3799;115409449;Mexico; -2018-12-06T05:26:19Z;Sandra;7469.68;115583647;Mexico; -2018-12-06T05:22:53Z;Júlio;1263.841;114914156;Mexico; -2018-12-06T05:07:40Z;Sandra;881.5468;114867021;Mexico; -2018-12-06T05:01:23Z;Júlio Cesar;1594.655;116007394;Mexico; -2018-12-06T04:41:02Z;Armando;5544.32;115343206;Mexico; -2018-12-06T04:21:47Z;Armando;294.5635;116107943;Mexico; -2018-12-06T03:56:05Z;nathalia;760.1157;115277858;Mexico; -2018-12-06T02:52:14Z;nathalia;4415.27;115673949;Mexico; -2018-12-06T02:35:18Z;nathalia;626.8578;115060316;Mexico; -2018-12-06T02:25:10Z;Júlio;145.6436;115318017;Mexico; -2018-12-06T01:59:44Z;Armando;4601.798;115363054;Mexico; -2018-12-06T01:53:24Z;Sandra;126.8603;116055513;Mexico; -2018-12-06T01:45:58Z;Eduardo;872.2201;114408295;Mexico; -2018-12-06T01:38:51Z;Ana;1006.817;116282313;Mexico; -2018-12-06T01:34:49Z;Armando;2423.503;115910999;Mexico; -2018-12-06T01:09:15Z;Júlio;3238.36;115143309;Mexico; -2018-12-06T01:08:20Z;Júlio Cesar;539.9349;115605873;Mexico; -2018-12-06T00:48:50Z;Júlio;3779.707;115269713;Mexico; -2018-12-06T00:48:50Z;nathalia;143.5321;115464296;Mexico; -2018-12-06T00:36:04Z;Sandra;251.7565;114250774;Mexico; -2018-12-06T00:16:22Z;nathalia;1136.264;116214487;Mexico; -2018-12-06T00:08:12Z;Armando;274.4896;116015784;Mexico; -2018-12-05T23:55:11Z;Eduardo;2411.76;116168677;Mexico; -2018-12-05T23:42:27Z;Eduardo;1035.303;114448731;Mexico; -2018-12-05T23:41:58Z;nathalia;39.95662;114437775;Mexico; -2018-12-05T23:25:45Z;Sandra;61.71409;114230203;Mexico; -2018-12-05T23:25:13Z;nathalia;3410.932;115693012;Mexico; -2018-12-05T23:17:55Z;Ana;3381.554;115699883;Mexico; -2018-12-05T23:04:12Z;Nathália;1046.709;114287989;Mexico; -2018-12-05T22:35:11Z;Júlio;2003.59;114927312;Mexico; -2018-12-05T22:35:04Z;Ana;2844.94;114935124;Mexico; -2018-12-05T22:26:13Z;Eduardo;7627.714;114424172;Mexico; -2018-12-05T22:24:44Z;Eduardo;5940.049;115998728;Mexico; -2018-12-05T21:49:23Z;Júlio Cesar;1958.532;114448026;Mexico; -2018-12-05T21:36:31Z;Júlio Cesar;1222.635;114302621;Mexico; -2018-12-05T21:25:59Z;Ana;1916.587;116239715;Mexico; -2018-12-05T21:24:25Z;Eduardo;3166.572;115029468;Mexico; -2018-12-05T21:08:11Z;Júlio Cesar;4661.376;114227362;Mexico; -2018-12-05T20:34:36Z;Nathália;1358.863;115160528;Mexico; -2018-12-05T20:25:38Z;Eduardo;974.5689;114749740;Mexico; -2018-12-05T20:24:23Z;Júlio Cesar;1485.388;114569246;Mexico; -2018-12-05T20:02:20Z;Armando;322.5776;115727549;Mexico; -2018-12-05T19:57:09Z;Eduardo;1381.583;116378018;Mexico; -2018-12-05T19:53:05Z;Júlio Cesar;6160.406;116027689;Mexico; -2018-12-05T19:37:11Z;Ana;2899.834;116317149;Mexico; -2018-12-05T18:53:31Z;Eduardo;399.4246;114317795;Mexico; -2018-12-05T18:41:15Z;nathalia;277.8627;114557271;Mexico; -2018-12-05T18:26:12Z;Júlio;1699.982;115437732;Mexico; -2018-12-05T18:23:39Z;Eduardo;3311.238;115339305;Mexico; -2018-12-05T18:19:12Z;Eduardo;2483.39;115603999;Mexico; -2018-12-05T18:12:34Z;nathalia;699.509;114800319;Mexico; -2018-12-05T17:59:19Z;nathalia;156.4217;114693384;Mexico; -2018-12-05T17:57:22Z;Armando;3368.949;116149141;Mexico; -2018-12-05T17:49:22Z;Nathália;291.2343;115283104;Mexico; -2018-12-05T17:46:15Z;Júlio Cesar;2475.85;115375211;Mexico; -2018-12-05T17:38:53Z;Sandra;3514.764;115594328;Mexico; -2018-12-05T17:35:25Z;nathalia;1602.229;115085700;Mexico; -2018-12-05T17:13:23Z;Júlio;5642.043;114352617;Mexico; -2018-12-05T16:29:01Z;Júlio Cesar;1450.967;115253891;Mexico; -2018-12-05T16:22:40Z;Júlio Cesar;3210.931;116115097;Mexico; -2018-12-05T16:22:14Z;Júlio Cesar;3522.943;116301206;Mexico; -2018-12-05T15:54:08Z;nathalia;945.0902;115839031;Mexico; -2018-12-05T15:31:47Z;nathalia;3521.796;115345192;Mexico; -2018-12-05T15:30:45Z;Ana;1468.004;114343999;Mexico; -2018-12-05T15:19:19Z;Nathália;2512.264;114324387;Mexico; -2018-12-05T15:03:44Z;Nathália;812.0171;115411732;Mexico; -2018-12-05T14:56:44Z;Júlio Cesar;45.5022;116026886;Mexico; -2018-12-05T14:49:34Z;Eduardo;1517.149;114215595;Mexico; -2018-12-05T14:29:47Z;Nathália;149.3661;115688869;Mexico; -2018-12-05T14:23:03Z;Sandra;3165.088;115568929;Mexico; -2018-12-05T13:44:30Z;Eduardo;1588.342;114352400;Mexico; -2018-12-05T13:34:48Z;Eduardo;1017.548;116344147;Mexico; -2018-12-05T13:31:53Z;Armando;126.0166;115533106;Mexico; -2018-12-05T13:23:43Z;Júlio Cesar;1082.436;115836532;Mexico; -2018-12-05T13:13:06Z;Sandra;2062.586;115229155;Mexico; -2018-12-05T12:52:51Z;Júlio;21.85992;115129164;Mexico; -2018-12-05T12:52:47Z;Ana;568.1429;114734403;Mexico; -2018-12-05T12:47:02Z;Ana;2716.699;115125147;Mexico; -2018-12-05T12:40:43Z;Nathália;567.4892;115995208;Mexico; -2018-12-05T12:34:28Z;Sandra;2097.005;116139348;Mexico; -2018-12-05T12:02:17Z;Júlio Cesar;1603.225;114630860;Mexico; -2018-12-05T11:57:05Z;Ana;749.7244;116154287;Mexico; -2018-12-05T11:34:42Z;Nathália;38.33635;114525872;Mexico; -2018-12-05T11:00:00Z;Júlio Cesar;2292.335;116316498;Mexico; -2018-12-05T10:47:55Z;Nathália;454.3723;115778193;Mexico; -2018-12-05T10:41:46Z;Júlio Cesar;821.8413;115465241;Mexico; -2018-12-05T10:11:56Z;Armando;1956.474;115093104;Mexico; -2018-12-05T10:00:37Z;Sandra;773.5483;115464918;Mexico; -2018-12-05T09:33:21Z;Eduardo;738.6708;115248833;Mexico; -2018-12-05T09:25:29Z;Ana;2425.477;115081778;Mexico; -2018-12-05T09:14:19Z;Eduardo;3232.975;115629906;Mexico; -2018-12-05T08:20:45Z;Armando;5531.43;115728921;Mexico; -2018-12-05T07:41:07Z;Júlio;663.7185;114938167;Mexico; -2018-12-05T07:37:26Z;Armando;8025.018;115633246;Mexico; -2018-12-05T07:36:31Z;Nathália;408.1094;114255231;Mexico; -2018-12-05T07:18:04Z;Nathália;2840.442;114395219;Mexico; -2018-12-05T06:58:51Z;nathalia;749.4545;115269630;Mexico; -2018-12-05T06:33:13Z;Júlio;127.9568;115913163;Mexico; -2018-12-05T06:26:26Z;Júlio Cesar;43.10234;116372124;Mexico; -2018-12-05T06:24:23Z;nathalia;1294.756;114651948;Mexico; -2018-12-05T05:56:42Z;nathalia;2893.32;114627852;Mexico; -2018-12-05T05:54:12Z;Ana;3034.095;115713059;Mexico; -2018-12-05T05:51:21Z;Júlio;1443.958;114298604;Mexico; -2018-12-05T05:51:18Z;Nathália;2823.745;115460533;Mexico; -2018-12-05T05:27:34Z;Sandra;890.6747;114489867;Mexico; -2018-12-05T05:25:15Z;Sandra;1790.793;115216217;Mexico; -2018-12-05T05:02:59Z;Armando;29.40705;114954641;Mexico; -2018-12-05T04:39:51Z;nathalia;1316.866;115167914;Mexico; -2018-12-05T04:18:16Z;Armando;3728.276;114821320;Mexico; -2018-12-05T04:17:07Z;Ana;3016.775;114352483;Mexico; -2018-12-05T04:16:16Z;Nathália;2208.471;116017525;Mexico; -2018-12-05T04:08:46Z;Nathália;4505.092;115837062;Mexico; -2018-12-05T03:46:42Z;Júlio Cesar;1087.93;114301760;Mexico; -2018-12-05T03:41:49Z;Nathália;1.307727;114741705;Mexico; -2018-12-05T03:16:25Z;Eduardo;156.4587;115461645;Mexico; -2018-12-05T03:04:47Z;Nathália;2454.613;114720532;Mexico; -2018-12-05T02:35:01Z;Ana;652.1383;115029392;Mexico; -2018-12-05T02:00:44Z;Armando;2541.554;115245048;Mexico; -2018-12-05T01:46:21Z;Júlio;2648.593;114686166;Mexico; -2018-12-05T01:43:44Z;Júlio;1502.025;114903423;Mexico; -2018-12-05T01:32:29Z;nathalia;1991.854;116017198;Mexico; -2018-12-05T00:04:37Z;Júlio;960.0554;115679991;Mexico; -2018-12-04T23:54:42Z;Júlio Cesar;3104.606;114789391;Mexico; -2018-12-04T23:48:32Z;Armando;2990.192;114994587;Mexico; -2018-12-04T23:47:53Z;nathalia;5731.733;114848051;Mexico; -2018-12-04T23:43:40Z;Sandra;2849.089;115108538;Mexico; -2018-12-04T23:42:43Z;Sandra;5249.317;116233605;Mexico; -2018-12-04T23:36:08Z;Nathália;1790.037;116194194;Mexico; -2018-12-04T23:16:30Z;Eduardo;1939.992;115735921;Mexico; -2018-12-04T23:15:44Z;Ana;1062.175;115084967;Mexico; -2018-12-04T22:26:42Z;Eduardo;2466.277;116120875;Mexico; -2018-12-04T22:25:21Z;Nathália;314.0569;114371965;Mexico; -2018-12-04T22:21:35Z;Júlio;72.44246;115303987;Mexico; -2018-12-04T21:58:44Z;Armando;545.1235;115401670;Mexico; -2018-12-04T21:58:30Z;Júlio Cesar;1764.54;115975239;Mexico; -2018-12-04T21:52:31Z;Eduardo;3704.119;115596961;Mexico; -2018-12-04T21:25:14Z;nathalia;5079.871;115404724;Mexico; -2018-12-04T21:22:31Z;Júlio;2223.212;115730990;Mexico; -2018-12-04T21:19:27Z;Júlio Cesar;241.9803;116328163;Mexico; -2018-12-04T21:05:39Z;Júlio Cesar;5487.319;116317097;Mexico; -2018-12-04T20:57:41Z;Sandra;1048.155;115387990;Mexico; -2018-12-04T20:44:07Z;Júlio;525.903;114245329;Mexico; -2018-12-04T20:37:12Z;Sandra;346.4141;115211732;Mexico; -2018-12-04T20:26:29Z;Ana;1533.414;115671630;Mexico; -2018-12-04T20:00:03Z;Sandra;122.7484;114918925;Mexico; -2018-12-04T19:39:19Z;Nathália;1102.767;114737092;Mexico; -2018-12-04T19:22:28Z;Júlio Cesar;246.1453;114378672;Mexico; -2018-12-04T19:17:17Z;Júlio Cesar;992.3152;114368745;Mexico; -2018-12-04T19:04:16Z;nathalia;3424.527;115149223;Mexico; -2018-12-04T17:58:07Z;Júlio Cesar;369.4922;115724333;Mexico; -2018-12-04T17:56:29Z;Eduardo;1911.106;115361939;Mexico; -2018-12-04T17:52:58Z;Júlio;3940.863;115754115;Mexico; -2018-12-04T17:45:41Z;Nathália;913.5325;115694053;Mexico; -2018-12-04T17:23:29Z;Eduardo;4721.278;115342977;Mexico; -2018-12-04T17:06:03Z;Eduardo;991.2938;114574669;Mexico; -2018-12-04T17:05:23Z;Eduardo;2026.249;115867840;Mexico; -2018-12-04T16:53:53Z;Ana;37.53996;115286606;Mexico; -2018-12-04T16:30:46Z;Ana;361.3541;115910520;Mexico; -2018-12-04T16:01:14Z;Nathália;5431.406;114768487;Mexico; -2018-12-04T15:56:15Z;Eduardo;2946.124;114440355;Mexico; -2018-12-04T15:39:17Z;Sandra;1478.345;115100520;Mexico; -2018-12-04T15:36:46Z;Júlio;4666.021;115507983;Mexico; -2018-12-04T15:31:22Z;Sandra;39.04204;115551424;Mexico; -2018-12-04T15:20:34Z;nathalia;280.1029;115853344;Mexico; -2018-12-04T15:07:28Z;Júlio;91.57309;114459192;Mexico; -2018-12-04T14:49:36Z;Eduardo;3075.385;115952236;Mexico; -2018-12-04T14:48:42Z;Nathália;2000.087;116312287;Mexico; -2018-12-04T14:45:10Z;Sandra;1467.171;114813414;Mexico; -2018-12-04T14:15:25Z;nathalia;5165.327;115693635;Mexico; -2018-12-04T14:07:22Z;nathalia;1454.595;116114225;Mexico; -2018-12-04T13:53:17Z;Eduardo;5612.59;115838370;Mexico; -2018-12-04T13:51:14Z;Nathália;1244.886;116093885;Mexico; -2018-12-04T13:23:10Z;Sandra;141.6427;114861798;Mexico; -2018-12-04T12:11:55Z;Ana;4299.064;114794921;Mexico; -2018-12-04T12:01:08Z;nathalia;158.4138;115777445;Mexico; -2018-12-04T11:53:05Z;Eduardo;1178.561;114312535;Mexico; -2018-12-04T11:40:48Z;Armando;2899.88;115561542;Mexico; -2018-12-04T11:33:54Z;Júlio Cesar;513.3067;114233400;Mexico; -2018-12-04T11:30:59Z;Nathália;58.34998;114595742;Mexico; -2018-12-04T10:49:20Z;Sandra;118.5049;115104513;Mexico; -2018-12-04T10:06:38Z;Eduardo;1277.049;115660121;Mexico; -2018-12-04T09:40:54Z;Júlio;918.9774;115409008;Mexico; -2018-12-04T09:21:57Z;Eduardo;1217.739;116198981;Mexico; -2018-12-04T09:18:04Z;Júlio Cesar;405.2824;114550665;Mexico; -2018-12-04T08:50:22Z;Júlio Cesar;3928.404;114400978;Mexico; -2018-12-04T08:27:22Z;Júlio Cesar;1988.58;115878864;Mexico; -2018-12-04T08:13:49Z;nathalia;1474.395;115990290;Mexico; -2018-12-04T07:59:48Z;Armando;307.1002;114498399;Mexico; -2018-12-04T07:57:36Z;Armando;208.1582;115046511;Mexico; -2018-12-04T07:13:33Z;Eduardo;1892.286;116126539;Mexico; -2018-12-04T07:11:12Z;Júlio Cesar;3264.094;114314104;Mexico; -2018-12-04T07:08:02Z;Júlio;2512.653;115086048;Mexico; -2018-12-04T06:08:29Z;Armando;604.7487;115243530;Mexico; -2018-12-04T05:59:43Z;Sandra;2225.831;116280551;Mexico; -2018-12-04T05:46:34Z;Armando;1767.484;116035105;Mexico; -2018-12-04T05:42:21Z;Ana;676.1915;116312682;Mexico; -2018-12-04T05:41:42Z;Sandra;1280.966;116085114;Mexico; -2018-12-04T05:35:50Z;Júlio Cesar;1277.95;114623777;Mexico; -2018-12-04T05:24:11Z;Júlio Cesar;3228.054;115973468;Mexico; -2018-12-04T04:49:34Z;Júlio;913.2989;114778040;Mexico; -2018-12-04T04:38:25Z;Júlio Cesar;489.6473;114403486;Mexico; -2018-12-04T04:37:51Z;Armando;4730.436;114900162;Mexico; -2018-12-04T04:14:16Z;Eduardo;1058.697;114428642;Mexico; -2018-12-04T03:57:16Z;Ana;769.4532;115388749;Mexico; -2018-12-04T03:46:04Z;Nathália;88.83053;115436903;Mexico; -2018-12-04T03:38:23Z;Sandra;624.4349;114611519;Mexico; -2018-12-04T03:21:07Z;Sandra;173.267;115080242;Mexico; -2018-12-04T03:13:57Z;Sandra;933.9064;116275197;Mexico; -2018-12-04T03:10:33Z;Júlio;6360.98;114480157;Mexico; -2018-12-04T02:15:18Z;Júlio;6803.234;115477829;Mexico; -2018-12-04T01:33:47Z;Nathália;701.762;116135505;Mexico; -2018-12-04T00:35:12Z;Júlio;1195.805;114661436;Mexico; -2018-12-04T00:07:07Z;Sandra;1662.47;115892033;Mexico; -2018-12-03T23:58:45Z;Eduardo;3735.331;114513984;Mexico; -2018-12-03T23:32:58Z;Nathália;90.02939;115571605;Mexico; -2018-12-03T23:32:48Z;Nathália;2338.895;115430014;Mexico; -2018-12-03T21:48:22Z;Sandra;1103.418;115346230;Mexico; -2018-12-03T21:42:06Z;Armando;1122.163;115780693;Mexico; -2018-12-03T21:06:47Z;Nathália;1284.892;115627927;Mexico; -2018-12-03T20:54:24Z;nathalia;379.1557;114492017;Mexico; -2018-12-03T20:18:38Z;Armando;2698.784;114648433;Mexico; -2018-12-03T20:09:37Z;Sandra;3980.255;116293085;Mexico; -2018-12-03T19:55:21Z;Sandra;4124.446;114794501;Mexico; -2018-12-03T18:47:09Z;Ana;3845.031;114608743;Mexico; -2018-12-03T18:31:29Z;Júlio Cesar;381.1958;116147078;Mexico; -2018-12-03T18:23:06Z;Nathália;682.1903;115992949;Mexico; -2018-12-03T18:14:08Z;Júlio;1341.312;114279505;Mexico; -2018-12-03T18:04:05Z;Júlio;1066.154;116128105;Mexico; -2018-12-03T17:26:14Z;Júlio Cesar;1780.072;115907141;Mexico; -2018-12-03T17:14:45Z;Nathália;261.5594;116349523;Mexico; -2018-12-03T17:13:26Z;nathalia;543.0422;115747463;Mexico; -2018-12-03T16:55:47Z;Eduardo;419.7676;115584172;Mexico; -2018-12-03T16:50:26Z;Júlio Cesar;335.9401;114676586;Mexico; -2018-12-03T16:41:20Z;Ana;6901.922;114461636;Mexico; -2018-12-03T16:36:12Z;Júlio;587.7048;115945986;Mexico; -2018-12-03T16:26:42Z;Ana;2218.056;115125708;Mexico; -2018-12-03T16:25:48Z;Júlio;3695.503;115628674;Mexico; -2018-12-03T16:12:19Z;Ana;605.8964;115212528;Mexico; -2018-12-03T15:49:03Z;Nathália;5644.688;115876487;Mexico; -2018-12-03T15:44:57Z;Armando;1.353845;115249955;Mexico; -2018-12-03T15:41:32Z;Ana;3772.953;116056187;Mexico; -2018-12-03T15:35:32Z;Armando;104.9843;115089215;Mexico; -2018-12-03T15:08:02Z;Júlio Cesar;1503.646;115062775;Mexico; -2018-12-03T15:04:42Z;Sandra;5.28136;115365420;Mexico; -2018-12-03T14:58:13Z;Júlio Cesar;4033.259;114986902;Mexico; -2018-12-03T14:49:56Z;Júlio;5845.386;115988896;Mexico; -2018-12-03T14:24:15Z;nathalia;704.6307;116129398;Mexico; -2018-12-03T14:19:10Z;nathalia;2261.928;115816458;Mexico; -2018-12-03T14:15:15Z;Júlio;2760.368;114686902;Mexico; -2018-12-03T13:47:34Z;nathalia;2206.695;114662888;Mexico; -2018-12-03T13:22:52Z;Sandra;834.0926;116034812;Mexico; -2018-12-03T13:18:36Z;nathalia;4027.4;115694349;Mexico; -2018-12-03T13:16:36Z;Nathália;254.3233;114634495;Mexico; -2018-12-03T12:58:20Z;Júlio Cesar;1066.725;114289130;Mexico; -2018-12-03T12:50:22Z;Nathália;3410.722;114422123;Mexico; -2018-12-03T12:40:32Z;nathalia;5335.341;115142152;Mexico; -2018-12-03T12:38:58Z;Eduardo;1038.646;115069653;Mexico; -2018-12-03T12:29:18Z;nathalia;470.6611;114293529;Mexico; -2018-12-03T12:26:39Z;Armando;426.4;115177280;Mexico; -2018-12-03T12:25:45Z;Eduardo;6829.574;115872616;Mexico; -2018-12-03T12:25:25Z;Nathália;3506;115698658;Mexico; -2018-12-03T12:01:57Z;Nathália;1626.928;115953064;Mexico; -2018-12-03T11:35:33Z;nathalia;1627.776;115017046;Mexico; -2018-12-03T11:17:18Z;Júlio;1887.492;115203611;Mexico; -2018-12-03T11:15:18Z;Armando;2388.474;115407265;Mexico; -2018-12-03T10:08:19Z;Nathália;6208.262;116331612;Mexico; -2018-12-03T10:00:02Z;Júlio;90.06051;114656722;Mexico; -2018-12-03T09:46:32Z;Sandra;3988.034;114446327;Mexico; -2018-12-03T09:39:30Z;Ana;5849.527;115574492;Mexico; -2018-12-03T09:19:19Z;Júlio;867.6354;116171437;Mexico; -2018-12-03T09:11:45Z;Armando;1483.645;115858815;Mexico; -2018-12-03T09:05:46Z;nathalia;34.43937;115154246;Mexico; -2018-12-03T08:52:04Z;Armando;931.0113;115338351;Mexico; -2018-12-03T08:43:12Z;Nathália;4013.785;115790054;Mexico; -2018-12-03T08:28:02Z;nathalia;190.0661;115947662;Mexico; -2018-12-03T08:15:48Z;Ana;2475.515;114207567;Mexico; -2018-12-03T08:12:05Z;Júlio Cesar;3924.453;114633554;Mexico; -2018-12-03T08:06:58Z;Armando;1658.258;114309377;Mexico; -2018-12-03T08:00:33Z;nathalia;868.9149;115622761;Mexico; -2018-12-03T07:36:07Z;Júlio;4121.247;114750494;Mexico; -2018-12-03T07:33:27Z;Júlio Cesar;4190.06;115038312;Mexico; -2018-12-03T07:21:28Z;Nathália;975.3672;114982614;Mexico; -2018-12-03T07:17:08Z;Sandra;1040.993;115164227;Mexico; -2018-12-03T07:09:47Z;nathalia;1118.339;114604359;Mexico; -2018-12-03T06:42:32Z;nathalia;5027.978;115116803;Mexico; -2018-12-03T06:22:10Z;Armando;890.9577;115660811;Mexico; -2018-12-03T05:07:56Z;Júlio Cesar;83.13501;114822595;Mexico; -2018-12-03T04:56:18Z;Júlio;2250.13;114752121;Mexico; -2018-12-03T04:40:07Z;Armando;4974.584;114249233;Mexico; -2018-12-03T04:20:23Z;Sandra;892.785;114811039;Mexico; -2018-12-03T04:18:01Z;Sandra;7955.61;114674450;Mexico; -2018-12-03T04:08:29Z;nathalia;433.5322;115548337;Mexico; -2018-12-03T04:01:20Z;Júlio;259.7039;115174276;Mexico; -2018-12-03T02:48:41Z;Ana;3873.58;115807706;Mexico; -2018-12-03T02:35:04Z;Júlio;1057.351;114846593;Mexico; -2018-12-03T02:17:54Z;Sandra;2377.223;115100678;Mexico; -2018-12-03T02:10:54Z;Ana;1168.506;114224961;Mexico; -2018-12-03T01:58:00Z;Sandra;3483.03;115953418;Mexico; -2018-12-03T01:50:24Z;Júlio Cesar;2768.125;115805153;Mexico; -2018-12-03T01:43:26Z;Eduardo;6323.917;115141354;Mexico; -2018-12-03T00:37:55Z;Armando;822.0852;115926018;Mexico; -2018-12-02T23:51:35Z;Júlio Cesar;38.21798;114786726;Mexico; -2018-12-02T23:28:56Z;Eduardo;156.6523;114254529;Mexico; -2018-12-02T23:23:15Z;Nathália;699.3778;115564761;Mexico; -2018-12-02T23:17:43Z;Júlio Cesar;2179.899;116292353;Mexico; -2018-12-02T22:28:20Z;Sandra;3746.835;114570158;Mexico; -2018-12-02T22:22:59Z;Sandra;219.0285;114302125;Mexico; -2018-12-02T22:02:49Z;Nathália;248.3718;115297896;Mexico; -2018-12-02T21:49:06Z;Nathália;91.11319;115692279;Mexico; -2018-12-02T21:47:36Z;Eduardo;1117.767;116250850;Mexico; -2018-12-02T21:21:18Z;nathalia;4325.541;115787755;Mexico; -2018-12-02T20:41:36Z;Armando;167.9226;114666492;Mexico; -2018-12-02T20:35:08Z;Ana;377.0052;114947272;Mexico; -2018-12-02T20:34:06Z;Júlio;1811.694;116196274;Mexico; -2018-12-02T20:01:25Z;Sandra;8112.823;114244740;Mexico; -2018-12-02T19:37:17Z;Armando;3710.914;115898170;Mexico; -2018-12-02T19:34:34Z;Júlio;4350.416;116185291;Mexico; -2018-12-02T19:31:57Z;Eduardo;2441.059;115118950;Mexico; -2018-12-02T19:26:24Z;nathalia;2077.082;115598680;Mexico; -2018-12-02T19:22:39Z;Júlio Cesar;3093.291;116004406;Mexico; -2018-12-02T19:00:36Z;Nathália;859.1035;114576960;Mexico; -2018-12-02T18:25:21Z;Armando;2836.653;115731937;Mexico; -2018-12-02T18:21:35Z;Armando;1109.502;115373048;Mexico; -2018-12-02T18:09:54Z;nathalia;3510.82;114884784;Mexico; -2018-12-02T18:07:22Z;Eduardo;490.3768;114863088;Mexico; -2018-12-02T17:48:24Z;Armando;3539.461;114877819;Mexico; -2018-12-02T17:20:10Z;Júlio;561.7006;114965883;Mexico; -2018-12-02T17:15:17Z;nathalia;549.9188;115718960;Mexico; -2018-12-02T17:07:18Z;Nathália;507.5479;116004449;Mexico; -2018-12-02T16:51:49Z;Eduardo;1709.793;115900548;Mexico; -2018-12-02T16:47:18Z;Ana;510.3718;115601565;Mexico; -2018-12-02T16:37:36Z;Eduardo;5878.754;116205524;Mexico; -2018-12-02T16:31:50Z;Sandra;3950.33;115340907;Mexico; -2018-12-02T16:08:55Z;Nathália;3217.594;114704523;Mexico; -2018-12-02T15:43:24Z;Sandra;1569.494;114241399;Mexico; -2018-12-02T15:40:10Z;Ana;1601.906;115399617;Mexico; -2018-12-02T15:24:04Z;Nathália;4081.327;115600171;Mexico; -2018-12-02T14:25:19Z;Ana;3633.142;115408847;Mexico; -2018-12-02T14:24:23Z;Júlio Cesar;446.2116;116284619;Mexico; -2018-12-02T14:22:00Z;nathalia;892.6982;114207178;Mexico; -2018-12-02T13:59:43Z;Júlio;888.6107;115333237;Mexico; -2018-12-02T13:56:56Z;Júlio Cesar;302.4278;115744996;Mexico; -2018-12-02T13:51:29Z;nathalia;1663.544;115059853;Mexico; -2018-12-02T13:30:25Z;Sandra;836.3765;114959902;Mexico; -2018-12-02T12:36:52Z;Armando;1172.737;115977736;Mexico; -2018-12-02T12:26:04Z;Armando;2199.493;114256869;Mexico; -2018-12-02T11:34:31Z;Nathália;5426.674;115363704;Mexico; -2018-12-02T11:09:59Z;Armando;1473.194;114357983;Mexico; -2018-12-02T11:02:31Z;Nathália;3729.978;114230316;Mexico; -2018-12-02T11:01:23Z;Júlio;173.191;115325829;Mexico; -2018-12-02T10:50:49Z;Sandra;4680.46;115510797;Mexico; -2018-12-02T10:35:36Z;Sandra;926.3516;114418762;Mexico; -2018-12-02T10:34:56Z;Ana;3216.495;114931022;Mexico; -2018-12-02T09:43:54Z;Armando;2326.592;114215673;Mexico; -2018-12-02T09:24:46Z;Armando;1067.215;114992118;Mexico; -2018-12-02T08:51:32Z;Júlio;5544.511;116313574;Mexico; -2018-12-02T08:43:07Z;Armando;740.2524;114917412;Mexico; -2018-12-02T08:39:18Z;Nathália;1731.202;115126826;Mexico; -2018-12-02T07:58:06Z;Ana;206.8779;114573057;Mexico; -2018-12-02T07:43:09Z;Nathália;2719.528;116361288;Mexico; -2018-12-02T07:36:23Z;nathalia;5827.898;114268466;Mexico; -2018-12-02T07:09:24Z;Sandra;85.0702;114860910;Mexico; -2018-12-02T06:46:37Z;Ana;2412.899;114839590;Mexico; -2018-12-02T06:25:57Z;Sandra;3478.796;114213996;Mexico; -2018-12-02T05:51:29Z;Júlio Cesar;8048.155;114919037;Mexico; -2018-12-02T05:47:48Z;Júlio;1753.068;114733399;Mexico; -2018-12-02T05:43:19Z;Armando;1960.834;114969192;Mexico; -2018-12-02T05:19:52Z;nathalia;1382.006;114572924;Mexico; -2018-12-02T05:12:49Z;Ana;815.0348;116185461;Mexico; -2018-12-02T04:30:37Z;nathalia;560.4586;115658909;Mexico; -2018-12-02T04:27:09Z;nathalia;142.3741;115734498;Mexico; -2018-12-02T04:00:57Z;Sandra;4025.195;115627928;Mexico; -2018-12-02T03:48:14Z;Eduardo;641.2832;115945805;Mexico; -2018-12-02T03:15:43Z;Júlio Cesar;1027.964;115026407;Mexico; -2018-12-02T03:04:38Z;Sandra;642.1972;114711023;Mexico; -2018-12-02T03:02:31Z;Sandra;81.73275;114799218;Mexico; -2018-12-02T02:42:52Z;Júlio;5025.43;115915984;Mexico; -2018-12-02T02:34:29Z;Eduardo;3087.203;114262915;Mexico; -2018-12-02T02:29:23Z;Júlio Cesar;777.1449;114772481;Mexico; -2018-12-02T01:55:16Z;Júlio;912.3063;115430093;Mexico; -2018-12-02T01:16:55Z;Júlio;350.2881;115611422;Mexico; -2018-12-02T00:45:50Z;Armando;595.6472;115485424;Mexico; -2018-12-01T23:58:10Z;Sandra;790.2577;114528033;Mexico; -2018-12-01T23:35:38Z;Júlio Cesar;794.9887;114942772;Mexico; -2018-12-01T23:10:17Z;nathalia;3333.784;115131579;Mexico; -2018-12-01T22:48:07Z;Sandra;550.6369;114902113;Mexico; -2018-12-01T22:31:48Z;Ana;1535.359;114727289;Mexico; -2018-12-01T22:20:25Z;Sandra;3977.715;115268815;Mexico; -2018-12-01T22:19:04Z;Júlio;250.6078;114913119;Mexico; -2018-12-01T21:51:17Z;Sandra;2934.984;115913025;Mexico; -2018-12-01T21:45:39Z;nathalia;1070.048;114232395;Mexico; -2018-12-01T21:44:52Z;nathalia;3396.929;116203062;Mexico; -2018-12-01T21:20:48Z;Sandra;775.0209;115104435;Mexico; -2018-12-01T21:10:23Z;Sandra;863.3791;115094259;Mexico; -2018-12-01T21:09:46Z;Sandra;195.1686;114263736;Mexico; -2018-12-01T20:38:08Z;Eduardo;1377.278;114262945;Mexico; -2018-12-01T20:25:10Z;Eduardo;3706.061;114526116;Mexico; -2018-12-01T19:59:35Z;nathalia;800.4997;115905646;Mexico; -2018-12-01T19:55:01Z;nathalia;771.1876;116059537;Mexico; -2018-12-01T19:33:31Z;Júlio;1593.524;114368429;Mexico; -2018-12-01T19:32:32Z;Ana;468.5656;116278823;Mexico; -2018-12-01T19:19:11Z;Eduardo;3005.969;116193049;Mexico; -2018-12-01T18:40:37Z;Júlio;1122.779;115468401;Mexico; -2018-12-01T18:23:21Z;Ana;2692.25;116094945;Mexico; -2018-12-01T17:42:55Z;Ana;729.6277;115389680;Mexico; -2018-12-01T17:40:06Z;nathalia;3178.844;114278078;Mexico; -2018-12-01T17:31:50Z;Júlio Cesar;3015.736;114784925;Mexico; -2018-12-01T17:25:48Z;Sandra;103.8363;115078246;Mexico; -2018-12-01T17:10:38Z;Eduardo;29.26921;115355385;Mexico; -2018-12-01T17:02:30Z;Nathália;564.4355;115824523;Mexico; -2018-12-01T16:42:21Z;Júlio;689.6093;115098040;Mexico; -2018-12-01T15:25:01Z;nathalia;3846.23;114770420;Mexico; -2018-12-01T14:14:04Z;Júlio;1631.639;114713642;Mexico; -2018-12-01T14:12:16Z;nathalia;19.04292;114350901;Mexico; -2018-12-01T13:50:01Z;Júlio;9147.073;115209282;Mexico; -2018-12-01T13:26:45Z;Eduardo;3038.534;115798332;Mexico; -2018-12-01T13:09:50Z;Eduardo;84.76961;115313033;Mexico; -2018-12-01T12:22:30Z;Nathália;4166.934;115919169;Mexico; -2018-12-01T12:00:08Z;Eduardo;2365.383;115777378;Mexico; -2018-12-01T11:52:23Z;Nathália;2662.897;115485359;Mexico; -2018-12-01T11:13:16Z;Eduardo;1362.754;114537844;Mexico; -2018-12-01T11:01:16Z;Sandra;1920.62;114539638;Mexico; -2018-12-01T10:16:30Z;Eduardo;512.4087;114223109;Mexico; -2018-12-01T10:09:36Z;Ana;1995.393;114700002;Mexico; -2018-12-01T09:58:44Z;Ana;817.146;115927193;Mexico; -2018-12-01T09:53:53Z;Eduardo;243.0112;114517917;Mexico; -2018-12-01T09:52:32Z;Eduardo;2902.298;114480792;Mexico; -2018-12-01T09:45:57Z;Júlio;2182.015;114419981;Mexico; -2018-12-01T09:42:21Z;Ana;164.546;115925198;Mexico; -2018-12-01T09:39:39Z;Armando;1691.291;115757616;Mexico; -2018-12-01T09:01:24Z;Sandra;2797.706;115138138;Mexico; -2018-12-01T09:01:22Z;Nathália;1126.254;115263165;Mexico; -2018-12-01T08:49:15Z;Nathália;3199.558;114590376;Mexico; -2018-12-01T08:26:34Z;Júlio;2591.624;114902683;Mexico; -2018-12-01T08:21:47Z;Armando;2309.648;114997393;Mexico; -2018-12-01T08:10:38Z;nathalia;3260.274;116379886;Mexico; -2018-12-01T08:01:28Z;Armando;2596.914;115072887;Mexico; -2018-12-01T06:35:19Z;Sandra;4526.127;114286648;Mexico; -2018-12-01T06:27:18Z;Júlio Cesar;2418.338;116056467;Mexico; -2018-12-01T05:49:42Z;Nathália;2897.837;116303388;Mexico; -2018-12-01T05:37:42Z;Nathália;1816.394;114536530;Mexico; -2018-12-01T05:05:49Z;Júlio;1713.269;114646372;Mexico; -2018-12-01T05:00:30Z;Sandra;384.3607;114729825;Mexico; -2018-12-01T04:54:28Z;Júlio;4668.393;114821035;Mexico; -2018-12-01T04:42:09Z;Nathália;147.0772;114605037;Mexico; -2018-12-01T04:14:55Z;Júlio Cesar;3767.876;114324671;Mexico; -2018-12-01T03:58:38Z;Eduardo;1047.777;115610628;Mexico; -2018-12-01T03:46:06Z;nathalia;2302.957;116072213;Mexico; -2018-12-01T03:41:43Z;Armando;2220.702;114579594;Mexico; -2018-12-01T03:30:56Z;Ana;815.9477;115068439;Mexico; -2018-12-01T02:56:38Z;nathalia;90.02432;114664752;Mexico; -2018-12-01T02:29:00Z;Armando;326.0663;116342406;Mexico; -2018-12-01T02:26:55Z;Eduardo;522.4987;115804783;Mexico; -2018-12-01T02:14:22Z;Ana;4760.624;114520536;Mexico; -2018-12-01T02:10:27Z;Armando;2191.101;116289807;Mexico; -2018-12-01T01:54:22Z;Sandra;765.3325;115197947;Mexico; -2018-12-01T01:46:30Z;nathalia;763.912;114290422;Mexico; -2018-12-01T01:44:59Z;Ana;5074.928;115261366;Mexico; -2018-12-01T01:42:42Z;Júlio;197.6318;116162203;Mexico; -2018-12-01T01:36:22Z;Ana;4627.974;116377476;Mexico; -2018-12-01T01:06:07Z;Armando;330.6721;115878485;Mexico; -2018-12-01T00:41:50Z;Armando;5227.507;114699061;Mexico; -2018-12-01T00:36:21Z;Sandra;1036.915;114946781;Mexico; -2018-12-01T00:24:05Z;Ana;3649.727;116169047;Mexico; -2018-11-30T23:32:00Z;Júlio Cesar;3466.04;115855431;Mexico; -2018-11-30T23:21:09Z;Nathália;4010.379;114358637;Mexico; -2018-11-30T23:12:05Z;Sandra;2639.521;116328124;Mexico; -2018-11-30T21:43:56Z;Eduardo;2883.14;115642113;Mexico; -2018-11-30T21:28:54Z;Júlio Cesar;193.771;115420278;Mexico; -2018-11-30T20:42:39Z;nathalia;2647.807;114605120;Mexico; -2018-11-30T20:32:56Z;Nathália;1907.705;115858852;Mexico; -2018-11-30T20:27:37Z;nathalia;38.92846;115152287;Mexico; -2018-11-30T20:22:25Z;Júlio Cesar;1040.17;114446286;Mexico; -2018-11-30T19:47:43Z;Armando;1245.513;115343321;Mexico; -2018-11-30T19:35:05Z;Nathália;893.6503;115949441;Mexico; -2018-11-30T19:29:52Z;Eduardo;5440.048;115039465;Mexico; -2018-11-30T19:03:55Z;Nathália;4827.293;115891568;Mexico; -2018-11-30T18:57:43Z;Júlio Cesar;1748.592;114208990;Mexico; -2018-11-30T18:43:23Z;nathalia;850.0651;116300836;Mexico; -2018-11-30T18:13:00Z;Armando;1418.414;114421681;Mexico; -2018-11-30T18:10:32Z;nathalia;1990.162;116116706;Mexico; -2018-11-30T18:00:41Z;Sandra;2710.434;115314592;Mexico; -2018-11-30T17:58:42Z;nathalia;6300.688;116009854;Mexico; -2018-11-30T17:14:13Z;Ana;160.7832;115022921;Mexico; -2018-11-30T16:53:53Z;Júlio;1630.314;115781146;Mexico; -2018-11-30T16:52:45Z;Nathália;4333.575;114317407;Mexico; -2018-11-30T16:47:10Z;Nathália;1283.339;114377577;Mexico; -2018-11-30T16:33:34Z;Sandra;1949.873;115234230;Mexico; -2018-11-30T16:17:41Z;Armando;1453.314;116206816;Mexico; -2018-11-30T16:14:36Z;Júlio;2358.473;116310192;Mexico; -2018-11-30T16:10:43Z;Júlio Cesar;3253.178;114796040;Mexico; -2018-11-30T16:00:04Z;Nathália;504.7798;115179208;Mexico; -2018-11-30T15:43:47Z;Júlio;1942.832;115470051;Mexico; -2018-11-30T15:31:02Z;Armando;1575.226;116230712;Mexico; -2018-11-30T15:14:39Z;Nathália;152.4517;115925012;Mexico; -2018-11-30T14:55:41Z;nathalia;1384.22;114792942;Mexico; -2018-11-30T14:41:49Z;nathalia;3488.663;116114777;Mexico; -2018-11-30T14:39:25Z;Ana;660.3317;116049587;Mexico; -2018-11-30T14:35:29Z;Nathália;6593.161;114455229;Mexico; -2018-11-30T14:26:12Z;Armando;1611.241;115095618;Mexico; -2018-11-30T14:20:26Z;nathalia;3246.61;115199742;Mexico; -2018-11-30T14:10:18Z;Ana;641.5811;115005846;Mexico; -2018-11-30T13:42:35Z;Armando;5064.352;116285397;Mexico; -2018-11-30T13:10:41Z;Armando;4667.894;115628062;Mexico; -2018-11-30T12:45:15Z;nathalia;193.9921;114601142;Mexico; -2018-11-30T12:44:47Z;Sandra;1779.234;115568192;Mexico; -2018-11-30T12:18:17Z;Júlio;687.784;114354426;Mexico; -2018-11-30T11:56:04Z;Júlio;226.5645;114705524;Mexico; -2018-11-30T11:32:32Z;Nathália;2347.095;116330997;Mexico; -2018-11-30T11:01:58Z;nathalia;2769.897;115010387;Mexico; -2018-11-30T10:21:10Z;Júlio Cesar;1500.192;114660856;Mexico; -2018-11-30T09:57:40Z;Ana;305.1419;114985968;Mexico; -2018-11-30T09:50:09Z;nathalia;1851.093;115869265;Mexico; -2018-11-30T09:48:32Z;Ana;484.6139;114499069;Mexico; -2018-11-30T09:44:37Z;Armando;2617.965;116320119;Mexico; -2018-11-30T09:38:50Z;Sandra;1947.56;114261772;Mexico; -2018-11-30T09:15:45Z;Nathália;671.1526;115183196;Mexico; -2018-11-30T09:03:21Z;Júlio;710.3024;115077245;Mexico; -2018-11-30T08:58:03Z;Júlio;581.3768;115602831;Mexico; -2018-11-30T08:38:15Z;nathalia;2345.827;114763442;Mexico; -2018-11-30T08:36:14Z;Eduardo;168.0564;115255728;Mexico; -2018-11-30T07:20:40Z;Eduardo;13.53882;115012198;Mexico; -2018-11-30T07:00:48Z;Eduardo;967.4165;115663597;Mexico; -2018-11-30T06:56:35Z;Júlio Cesar;2.358013;116209726;Mexico; -2018-11-30T06:49:02Z;Júlio;1255.867;114310382;Mexico; -2018-11-30T06:37:14Z;Armando;3501.767;114462702;Mexico; -2018-11-30T06:29:35Z;Júlio;4441.797;114684160;Mexico; -2018-11-30T06:01:40Z;Eduardo;485.2383;115806123;Mexico; -2018-11-30T05:40:49Z;Armando;1902.184;114632624;Mexico; -2018-11-30T05:26:32Z;Ana;700.2735;114753423;Mexico; -2018-11-30T05:20:34Z;Júlio Cesar;665.791;115382226;Mexico; -2018-11-30T05:06:17Z;Nathália;1893.404;114352885;Mexico; -2018-11-30T04:56:34Z;Armando;652.6521;114313974;Mexico; -2018-11-30T04:53:47Z;Armando;1122.729;114861579;Mexico; -2018-11-30T04:47:59Z;Ana;568.2617;115390059;Mexico; -2018-11-30T04:18:23Z;Armando;3768.195;114545834;Mexico; -2018-11-30T03:41:08Z;Ana;5238.815;114710240;Mexico; -2018-11-30T03:22:25Z;Armando;3326.955;115519874;Mexico; -2018-11-30T03:20:41Z;nathalia;3822.927;115660481;Mexico; -2018-11-30T03:16:52Z;Armando;6178.034;115920892;Mexico; -2018-11-30T03:08:28Z;Armando;5216.965;115402451;Mexico; -2018-11-30T02:40:18Z;nathalia;2477;114589561;Mexico; -2018-11-30T02:32:32Z;Armando;2248.649;116327027;Mexico; -2018-11-30T02:28:52Z;Armando;1767.867;114591542;Mexico; -2018-11-30T01:57:54Z;Eduardo;305.9695;116181899;Mexico; -2018-11-30T01:53:24Z;Eduardo;1640.053;114745507;Mexico; -2018-11-30T01:23:12Z;Júlio Cesar;3504.662;115303881;Mexico; -2018-11-30T00:51:43Z;Ana;296.0041;115721059;Mexico; -2018-11-30T00:40:41Z;Nathália;529.3354;115831519;Mexico; -2018-11-30T00:34:43Z;Júlio;761.812;115644645;Mexico; -2018-11-30T00:04:32Z;Armando;514.3502;115955243;Mexico; -2018-11-30T00:01:28Z;Júlio Cesar;3230.941;116369321;Mexico; -2018-11-30T00:01:04Z;Júlio Cesar;388.2907;116332235;Mexico; -2018-11-29T23:45:44Z;Armando;4129.584;115164586;Mexico; -2018-11-29T23:03:58Z;nathalia;155.2266;116241160;Mexico; -2018-11-29T22:36:49Z;Júlio Cesar;1960.167;115988505;Mexico; -2018-11-29T22:31:11Z;nathalia;730.9434;115071118;Mexico; -2018-11-29T22:29:36Z;Armando;195.8506;114925595;Mexico; -2018-11-29T22:26:25Z;nathalia;3734.158;115651036;Mexico; -2018-11-29T22:19:42Z;Sandra;37.488;114521166;Mexico; -2018-11-29T22:14:19Z;Sandra;12.80803;115091136;Mexico; -2018-11-29T22:09:33Z;Nathália;1475.973;116375235;Mexico; -2018-11-29T22:00:03Z;Ana;4064.398;115872853;Mexico; -2018-11-29T21:44:08Z;Júlio;969.3869;114533812;Mexico; -2018-11-29T21:38:10Z;Eduardo;4375.891;115986355;Mexico; -2018-11-29T21:27:09Z;Nathália;3344.586;115339257;Mexico; -2018-11-29T21:20:33Z;Nathália;2345.706;114930773;Mexico; -2018-11-29T21:13:31Z;Eduardo;5842.063;115008241;Mexico; -2018-11-29T20:56:47Z;Sandra;3429.783;115185913;Mexico; -2018-11-29T20:45:04Z;Ana;2623.615;114507289;Mexico; -2018-11-29T20:43:03Z;Júlio;1260.341;115215283;Mexico; -2018-11-29T20:18:32Z;Júlio;219.7204;114374237;Mexico; -2018-11-29T20:16:42Z;Eduardo;6054.311;114375267;Mexico; -2018-11-29T20:12:33Z;Armando;4187.177;115398904;Mexico; -2018-11-29T20:11:29Z;Nathália;1810.743;115545280;Mexico; -2018-11-29T20:05:43Z;nathalia;2136.802;115007706;Mexico; -2018-11-29T20:04:04Z;Armando;823.1986;115184225;Mexico; -2018-11-29T20:03:00Z;Ana;1137.038;115186927;Mexico; -2018-11-29T19:58:52Z;Júlio;99.42723;115466439;Mexico; -2018-11-29T19:49:44Z;Júlio;2740.322;115535264;Mexico; -2018-11-29T19:47:18Z;Nathália;654.3647;114392124;Mexico; -2018-11-29T19:40:47Z;Nathália;3298.225;114378313;Mexico; -2018-11-29T19:25:48Z;Júlio;731.7049;115009506;Mexico; -2018-11-29T19:15:07Z;Júlio;870.4814;115527176;Mexico; -2018-11-29T19:13:35Z;Eduardo;2140.31;115548966;Mexico; -2018-11-29T19:10:54Z;Nathália;2843.926;115848019;Mexico; -2018-11-29T18:39:47Z;Nathália;5302.423;114417758;Mexico; -2018-11-29T18:29:44Z;Ana;31.44355;114802374;Mexico; -2018-11-29T18:29:06Z;Sandra;4459.671;114869985;Mexico; -2018-11-29T18:03:08Z;Sandra;3519.607;114751335;Mexico; -2018-11-29T17:50:01Z;Ana;2242.559;114949402;Mexico; -2018-11-29T17:34:31Z;nathalia;184.5419;114805923;Mexico; -2018-11-29T17:33:55Z;Nathália;1067.555;114700029;Mexico; -2018-11-29T17:06:59Z;Ana;2302.908;116215405;Mexico; -2018-11-29T17:05:19Z;Ana;2420.369;114546571;Mexico; -2018-11-29T17:01:37Z;Júlio;380.6514;115901470;Mexico; -2018-11-29T16:57:31Z;Nathália;1563.757;114299062;Mexico; -2018-11-29T16:51:43Z;Sandra;6272.73;115759468;Mexico; -2018-11-29T16:51:01Z;Nathália;3702.284;115832801;Mexico; -2018-11-29T16:45:29Z;Nathália;3364.453;115297334;Mexico; -2018-11-29T15:30:33Z;Ana;1239.425;116297024;Mexico; -2018-11-29T15:23:20Z;Sandra;2613.145;115103451;Mexico; -2018-11-29T15:15:25Z;Júlio;831.9625;115618006;Mexico; -2018-11-29T14:50:07Z;Ana;1300.41;115273960;Mexico; -2018-11-29T14:22:02Z;Júlio;4259.471;114570300;Mexico; -2018-11-29T14:12:59Z;Ana;367.4868;115684878;Mexico; -2018-11-29T14:04:32Z;Júlio;1308.703;116362885;Mexico; -2018-11-29T13:50:54Z;Nathália;915.5599;116269878;Mexico; -2018-11-29T13:33:48Z;Nathália;1771.033;114340590;Mexico; -2018-11-29T13:04:24Z;Armando;1817.371;115605378;Mexico; -2018-11-29T13:00:54Z;nathalia;2446.98;115242179;Mexico; -2018-11-29T12:55:39Z;Ana;3617.662;115668101;Mexico; -2018-11-29T12:33:19Z;Eduardo;2520.562;114703971;Mexico; -2018-11-29T12:22:13Z;Armando;1206.344;114828456;Mexico; -2018-11-29T12:13:02Z;Armando;988.1241;116091719;Mexico; -2018-11-29T12:06:02Z;Ana;244.2848;116135216;Mexico; -2018-11-29T11:56:27Z;Ana;977.9236;115897186;Mexico; -2018-11-29T11:51:01Z;nathalia;124.8351;115563239;Mexico; -2018-11-29T11:40:55Z;Eduardo;3118.305;115433200;Mexico; -2018-11-29T11:13:26Z;nathalia;3803.562;116007942;Mexico; -2018-11-29T11:13:04Z;Ana;3876.65;116021331;Mexico; -2018-11-29T11:12:10Z;Ana;2892.872;115420418;Mexico; -2018-11-29T10:47:41Z;Sandra;2312.361;115141649;Mexico; -2018-11-29T10:45:01Z;nathalia;1738.757;114658614;Mexico; -2018-11-29T10:27:46Z;Armando;1027.517;115804153;Mexico; -2018-11-29T10:22:24Z;nathalia;1841.86;115618201;Mexico; -2018-11-29T10:18:51Z;Ana;60.41243;115096274;Mexico; -2018-11-29T10:08:58Z;Sandra;1157.358;115179541;Mexico; -2018-11-29T10:07:11Z;Júlio Cesar;3109.664;116239474;Mexico; -2018-11-29T10:01:34Z;nathalia;2729.918;114459688;Mexico; -2018-11-29T09:51:19Z;Júlio;4902.189;115306544;Mexico; -2018-11-29T09:04:27Z;Júlio Cesar;318.7729;115147446;Mexico; -2018-11-29T09:01:11Z;Sandra;2841.225;116029239;Mexico; -2018-11-29T08:49:05Z;Eduardo;4115.694;115494756;Mexico; -2018-11-29T08:29:55Z;Armando;139.6799;115042011;Mexico; -2018-11-29T08:23:02Z;Júlio Cesar;4480.943;114606499;Mexico; -2018-11-29T08:21:26Z;Armando;624.3978;116171287;Mexico; -2018-11-29T08:19:03Z;Sandra;507.1462;116288285;Mexico; -2018-11-29T08:10:38Z;Sandra;6579.327;115413827;Mexico; -2018-11-29T08:08:36Z;Ana;1191.412;114224762;Mexico; -2018-11-29T08:04:52Z;Armando;831.0765;115105148;Mexico; -2018-11-29T07:42:04Z;Armando;2088.213;115406403;Mexico; -2018-11-29T06:59:49Z;Eduardo;2991.898;115598011;Mexico; -2018-11-29T06:46:46Z;Júlio Cesar;6459.789;114864221;Mexico; -2018-11-29T06:19:09Z;Júlio Cesar;3266.199;114868376;Mexico; -2018-11-29T06:10:49Z;Armando;1218.614;115798776;Mexico; -2018-11-29T05:43:31Z;Sandra;293.2318;114702250;Mexico; -2018-11-29T05:34:30Z;nathalia;107.2039;114378007;Mexico; -2018-11-29T05:32:01Z;Eduardo;1654.053;114552633;Mexico; -2018-11-29T05:26:39Z;Ana;1308.954;114320445;Mexico; -2018-11-29T05:17:56Z;nathalia;414.9886;114398077;Mexico; -2018-11-29T05:10:49Z;nathalia;6215.085;115666921;Mexico; -2018-11-29T03:53:45Z;Armando;1995.22;114346396;Mexico; -2018-11-29T03:36:26Z;Júlio;1148.074;115289242;Mexico; -2018-11-29T03:24:08Z;Júlio Cesar;6130.881;114448441;Mexico; -2018-11-29T03:13:24Z;Eduardo;4914.514;116146063;Mexico; -2018-11-29T03:03:04Z;nathalia;36.65141;115291599;Mexico; -2018-11-29T02:18:40Z;Ana;6808.559;114202102;Mexico; -2018-11-29T02:08:33Z;Júlio;1964.749;114634231;Mexico; -2018-11-29T02:06:56Z;Nathália;475.9969;114529737;Mexico; -2018-11-29T01:34:01Z;Armando;119.6521;116262571;Mexico; -2018-11-29T01:30:24Z;Ana;387.7481;114975364;Mexico; -2018-11-29T01:19:38Z;Sandra;1077.617;116378798;Mexico; -2018-11-29T01:09:32Z;Eduardo;1585.772;115651566;Mexico; -2018-11-29T01:06:01Z;Júlio;65.69757;116294808;Mexico; -2018-11-29T00:51:08Z;Júlio Cesar;555.5925;114897414;Mexico; -2018-11-29T00:43:31Z;nathalia;324.614;116333861;Mexico; -2018-11-29T00:01:29Z;nathalia;3456.581;115607949;Mexico; -2018-11-28T23:52:31Z;Eduardo;88.54702;115789700;Mexico; -2018-11-28T23:35:29Z;Júlio;156.1189;114822557;Mexico; -2018-11-28T23:34:43Z;Armando;1482.497;115333769;Mexico; -2018-11-28T23:19:02Z;Eduardo;3924.641;115769519;Mexico; -2018-11-28T23:09:57Z;Júlio;2950.924;114425295;Mexico; -2018-11-28T22:39:06Z;Júlio;609.563;114593915;Mexico; -2018-11-28T22:23:11Z;Nathália;1480.984;115059027;Mexico; -2018-11-28T22:14:56Z;Armando;2664.527;115296961;Mexico; -2018-11-28T21:47:34Z;Júlio Cesar;2087.581;115513479;Mexico; -2018-11-28T21:39:24Z;nathalia;1357.078;114673246;Mexico; -2018-11-28T21:30:31Z;Nathália;2072.32;114703940;Mexico; -2018-11-28T21:26:21Z;Júlio Cesar;1006.419;114536295;Mexico; -2018-11-28T21:05:22Z;Nathália;1431.396;114564762;Mexico; -2018-11-28T20:47:41Z;Nathália;1866.053;114584608;Mexico; -2018-11-28T20:23:24Z;Júlio Cesar;849.0873;115750270;Mexico; -2018-11-28T19:37:44Z;Júlio;1339.995;115662107;Mexico; -2018-11-28T19:10:00Z;nathalia;2934.559;114331755;Mexico; -2018-11-28T19:06:52Z;Ana;1052.505;115537892;Mexico; -2018-11-28T19:02:41Z;Sandra;1537.733;115589574;Mexico; -2018-11-28T18:09:55Z;Armando;1896.681;115313363;Mexico; -2018-11-28T18:08:00Z;Sandra;2982.828;114822013;Mexico; -2018-11-28T18:03:42Z;Eduardo;1396.792;114405873;Mexico; -2018-11-28T17:24:57Z;Armando;833.7318;116069548;Mexico; -2018-11-28T17:21:13Z;Sandra;1557.662;115490098;Mexico; -2018-11-28T17:19:43Z;Armando;3287.553;114976028;Mexico; -2018-11-28T17:05:49Z;Ana;388.1612;114374463;Mexico; -2018-11-28T16:29:36Z;Sandra;3515.162;115029192;Mexico; -2018-11-28T15:53:11Z;Júlio;1522.005;114995599;Mexico; -2018-11-28T15:40:01Z;Armando;1166.976;114816094;Mexico; -2018-11-28T15:23:26Z;Armando;4203.663;115481499;Mexico; -2018-11-28T15:12:18Z;Ana;2183.805;116042209;Mexico; -2018-11-28T15:00:31Z;nathalia;3208.51;114736907;Mexico; -2018-11-28T14:33:01Z;Eduardo;557.97;114310981;Mexico; -2018-11-28T14:22:05Z;Nathália;1091.868;115317263;Mexico; -2018-11-28T14:06:27Z;Ana;392.2579;115941565;Mexico; -2018-11-28T13:44:02Z;Armando;3504.182;115776332;Mexico; -2018-11-28T13:04:50Z;Eduardo;834.9731;114200340;Mexico; -2018-11-28T12:49:30Z;Júlio;928.9682;114748971;Mexico; -2018-11-28T12:36:58Z;Sandra;245.3158;114601709;Mexico; -2018-11-28T12:27:24Z;Eduardo;201.1895;115604687;Mexico; -2018-11-28T12:19:02Z;nathalia;3820.759;114343917;Mexico; -2018-11-28T12:03:41Z;Júlio;2341.783;115039545;Mexico; -2018-11-28T11:53:11Z;nathalia;3177.959;115883454;Mexico; -2018-11-28T11:45:15Z;Eduardo;495.1343;115572055;Mexico; -2018-11-28T11:32:54Z;Sandra;1965.058;115384650;Mexico; -2018-11-28T11:30:51Z;nathalia;3947.777;114934335;Mexico; -2018-11-28T11:20:29Z;Júlio;163.797;116080156;Mexico; -2018-11-28T11:19:14Z;Eduardo;1421.709;114922571;Mexico; -2018-11-28T10:35:53Z;Eduardo;133.5623;115367925;Mexico; -2018-11-28T09:56:30Z;Eduardo;114.8294;115316437;Mexico; -2018-11-28T09:37:42Z;Sandra;324.9669;116055480;Mexico; -2018-11-28T09:34:10Z;Armando;1025.92;114337096;Mexico; -2018-11-28T09:01:51Z;Júlio;357.2727;115106882;Mexico; -2018-11-28T08:17:20Z;nathalia;815.3489;115457415;Mexico; -2018-11-28T07:58:44Z;Nathália;1971.803;115464863;Mexico; -2018-11-28T07:48:32Z;Sandra;3471.935;115420698;Mexico; -2018-11-28T07:28:14Z;Eduardo;211.9732;115268704;Mexico; -2018-11-28T07:22:01Z;Ana;416.8333;115495877;Mexico; -2018-11-28T06:51:59Z;Sandra;1053.849;116355670;Mexico; -2018-11-28T06:49:48Z;Ana;161.2865;116163674;Mexico; -2018-11-28T06:49:28Z;Sandra;2132.131;115150433;Mexico; -2018-11-28T06:37:11Z;Sandra;1.777352;115693727;Mexico; -2018-11-28T06:35:28Z;Júlio;356.2395;115921993;Mexico; -2018-11-28T06:19:44Z;nathalia;920.7323;114661494;Mexico; -2018-11-28T05:58:02Z;Júlio;3095.81;115244590;Mexico; -2018-11-28T05:47:03Z;Júlio;146.7072;114819029;Mexico; -2018-11-28T05:38:23Z;Ana;6679.922;114223578;Mexico; -2018-11-28T05:30:11Z;nathalia;283.2482;114538643;Mexico; -2018-11-28T05:23:13Z;nathalia;63.37901;115129180;Mexico; -2018-11-28T04:53:29Z;Sandra;5130.767;114452928;Mexico; -2018-11-28T04:22:36Z;Júlio;4820.719;114653616;Mexico; -2018-11-28T04:19:37Z;Nathália;728.8735;115875843;Mexico; -2018-11-28T03:43:59Z;Júlio Cesar;2156.483;114845427;Mexico; -2018-11-28T03:02:07Z;Nathália;1764.304;115504633;Mexico; -2018-11-28T02:54:29Z;Júlio;5203.061;114302141;Mexico; -2018-11-28T02:51:20Z;Ana;4189.36;115685700;Mexico; -2018-11-28T02:30:07Z;Armando;2298.899;115059315;Mexico; -2018-11-28T02:18:18Z;Júlio Cesar;3699.665;116253440;Mexico; -2018-11-28T02:13:41Z;nathalia;1465.274;114933872;Mexico; -2018-11-28T02:02:36Z;Ana;6702.375;116041116;Mexico; -2018-11-28T01:59:59Z;Ana;316.6367;114325534;Mexico; -2018-11-28T01:25:34Z;Eduardo;1105.981;115248852;Mexico; -2018-11-28T01:25:16Z;Júlio Cesar;2210.182;116104355;Mexico; -2018-11-28T00:34:45Z;Júlio;205.4125;115450294;Mexico; -2018-11-27T23:43:20Z;Ana;5514.413;115790441;Mexico; -2018-11-27T23:37:43Z;nathalia;9.798431;115249964;Mexico; -2018-11-27T23:16:52Z;Eduardo;843.6778;115485129;Mexico; -2018-11-27T23:16:28Z;Sandra;1117.711;115639647;Mexico; -2018-11-27T23:08:46Z;Eduardo;2411.804;116236586;Mexico; -2018-11-27T23:03:44Z;Júlio;799.0185;115307895;Mexico; -2018-11-27T22:54:03Z;Armando;2381.558;114945965;Mexico; -2018-11-27T22:49:49Z;Júlio;3495.251;116066604;Mexico; -2018-11-27T22:33:35Z;Eduardo;170.377;114986411;Mexico; -2018-11-27T22:19:10Z;Júlio Cesar;2619.306;115451669;Mexico; -2018-11-27T21:25:19Z;Ana;1038.572;115592676;Mexico; -2018-11-27T20:36:27Z;Júlio;2933.058;114626810;Mexico; -2018-11-27T20:25:35Z;Ana;2702.05;114787127;Mexico; -2018-11-27T20:22:34Z;Júlio;1314.553;115195891;Mexico; -2018-11-27T20:05:18Z;Armando;1077.008;115255400;Mexico; -2018-11-27T20:04:22Z;Ana;2068.798;116102727;Mexico; -2018-11-27T19:23:16Z;Armando;467.679;115330253;Mexico; -2018-11-27T18:46:57Z;Nathália;716.6198;114733537;Mexico; -2018-11-27T18:46:35Z;Júlio Cesar;270.123;116378896;Mexico; -2018-11-27T18:39:03Z;Júlio;4111.101;114710311;Mexico; -2018-11-27T18:17:17Z;Júlio Cesar;1655.028;114816527;Mexico; -2018-11-27T17:55:41Z;Júlio;3555.235;115128639;Mexico; -2018-11-27T17:51:54Z;Eduardo;1085.895;114279827;Mexico; -2018-11-27T17:32:40Z;Sandra;440.597;116383455;Mexico; -2018-11-27T17:31:27Z;nathalia;2783.227;114265932;Mexico; -2018-11-27T17:14:54Z;Armando;1713.524;115986171;Mexico; -2018-11-27T16:10:50Z;Júlio Cesar;441.3875;115670605;Mexico; -2018-11-27T16:05:58Z;nathalia;1075.886;115512808;Mexico; -2018-11-27T16:03:11Z;nathalia;640.8593;116236797;Mexico; -2018-11-27T16:02:55Z;Armando;3600.219;115058240;Mexico; -2018-11-27T15:50:14Z;Armando;1803.263;116369762;Mexico; -2018-11-27T15:11:55Z;Armando;373.9809;114753439;Mexico; -2018-11-27T15:10:00Z;nathalia;260.594;115890461;Mexico; -2018-11-27T14:12:15Z;Nathália;778.497;115724857;Mexico; -2018-11-27T13:55:57Z;Júlio;217.8854;115140504;Mexico; -2018-11-27T13:29:33Z;nathalia;2782.111;115478868;Mexico; -2018-11-27T12:43:31Z;Eduardo;981.8847;114519555;Mexico; -2018-11-27T11:40:41Z;Ana;105.4054;115029223;Mexico; -2018-11-27T11:17:34Z;Nathália;420.4697;115433648;Mexico; -2018-11-27T11:09:51Z;Armando;4054.501;116103327;Mexico; -2018-11-27T11:02:39Z;Ana;2691.893;115184866;Mexico; -2018-11-27T10:48:35Z;nathalia;2359.984;114460489;Mexico; -2018-11-27T10:28:50Z;Júlio;2274.66;115120932;Mexico; -2018-11-27T10:22:44Z;Júlio;1396.981;115903818;Mexico; -2018-11-27T10:12:42Z;Nathália;7755.911;114831475;Mexico; -2018-11-27T09:49:40Z;nathalia;2469.262;115923429;Mexico; -2018-11-27T09:48:38Z;Júlio;2542.696;114659872;Mexico; -2018-11-27T09:30:26Z;Ana;839.3926;114799602;Mexico; -2018-11-27T09:18:42Z;Armando;74.37661;115015730;Mexico; -2018-11-27T08:40:27Z;Júlio Cesar;882.6248;116302293;Mexico; -2018-11-27T08:37:13Z;Júlio;812.7451;115701862;Mexico; -2018-11-27T08:35:34Z;Eduardo;1701.01;115105773;Mexico; -2018-11-27T08:12:20Z;nathalia;419.0872;115630758;Mexico; -2018-11-27T07:38:27Z;nathalia;2047.578;115216747;Mexico; -2018-11-27T06:52:32Z;Júlio;26.31087;115940311;Mexico; -2018-11-27T06:50:58Z;Eduardo;1193.103;115900835;Mexico; -2018-11-27T06:45:38Z;Eduardo;1686.979;115293088;Mexico; -2018-11-27T06:32:01Z;Júlio Cesar;187.8523;116248131;Mexico; -2018-11-27T06:22:36Z;Júlio;5318.442;115751821;Mexico; -2018-11-27T06:02:01Z;Sandra;100.4064;116125230;Mexico; -2018-11-27T05:51:03Z;Ana;5613.702;115236247;Mexico; -2018-11-27T05:49:15Z;Sandra;1820.679;116396881;Mexico; -2018-11-27T05:48:42Z;Eduardo;1960.221;114878784;Mexico; -2018-11-27T04:49:57Z;Eduardo;2688.768;115308357;Mexico; -2018-11-27T04:45:39Z;Júlio Cesar;4196.085;114424587;Mexico; -2018-11-27T04:40:24Z;nathalia;1047.527;115244461;Mexico; -2018-11-27T04:26:31Z;Sandra;753.5198;114591853;Mexico; -2018-11-27T04:05:35Z;Eduardo;2227.173;115441447;Mexico; -2018-11-27T03:57:00Z;Júlio;322.6578;115495646;Mexico; -2018-11-27T03:31:39Z;Eduardo;1375.202;116223062;Mexico; -2018-11-27T03:10:32Z;Armando;3988.991;115021768;Mexico; -2018-11-27T02:58:13Z;Ana;924.6352;115458646;Mexico; -2018-11-27T02:11:58Z;Sandra;329.7137;114308810;Mexico; -2018-11-27T01:35:32Z;Armando;3504.394;114547611;Mexico; -2018-11-27T01:03:58Z;Sandra;2448.19;114437250;Mexico; -2018-11-27T00:34:09Z;Armando;1163.691;115862198;Mexico; -2018-11-27T00:26:06Z;Júlio Cesar;2729.727;114716345;Mexico; -2018-11-27T00:18:03Z;Sandra;5678.816;115771359;Mexico; -2018-11-27T00:13:24Z;nathalia;938.0983;114821849;Mexico; -2018-11-27T00:12:22Z;Eduardo;368.5665;115459015;Mexico; -2018-11-26T23:42:16Z;Sandra;2843.829;115644395;Mexico; -2018-11-26T23:34:12Z;nathalia;2405.47;114343295;Mexico; -2018-11-26T23:00:59Z;Armando;5147.139;115454136;Mexico; -2018-11-26T23:00:41Z;Nathália;5785.88;116370360;Mexico; -2018-11-26T22:56:03Z;nathalia;732.8672;114423903;Mexico; -2018-11-26T22:54:41Z;Nathália;3706.862;114720666;Mexico; -2018-11-26T22:54:29Z;Eduardo;2246.559;116143347;Mexico; -2018-11-26T22:53:21Z;nathalia;807.9815;115703967;Mexico; -2018-11-26T22:27:56Z;nathalia;2408.727;115401705;Mexico; -2018-11-26T21:47:24Z;Eduardo;603.2303;115431957;Mexico; -2018-11-26T21:40:59Z;Nathália;76.1203;115491301;Mexico; -2018-11-26T21:39:02Z;Júlio Cesar;208.5602;114351740;Mexico; -2018-11-26T21:12:47Z;Sandra;750.2338;114410002;Mexico; -2018-11-26T20:48:07Z;Eduardo;1707.026;116092312;Mexico; -2018-11-26T20:41:54Z;Ana;2798.62;114314457;Mexico; -2018-11-26T20:36:30Z;Júlio;3463.551;114959167;Mexico; -2018-11-26T20:06:11Z;Armando;432.9622;114649984;Mexico; -2018-11-26T19:47:39Z;Júlio;534.8698;114692828;Mexico; -2018-11-26T19:11:37Z;Armando;1280.95;114273004;Mexico; -2018-11-26T19:09:13Z;nathalia;4026.742;115256988;Mexico; -2018-11-26T18:47:45Z;Nathália;4673.309;115343695;Mexico; -2018-11-26T18:41:15Z;Júlio;2079.608;114453064;Mexico; -2018-11-26T18:12:41Z;Ana;1229.382;114920505;Mexico; -2018-11-26T17:56:05Z;nathalia;1122.127;115515635;Mexico; -2018-11-26T17:56:03Z;Júlio Cesar;186.8238;114809427;Mexico; -2018-11-26T17:32:38Z;Eduardo;1456.135;115555179;Mexico; -2018-11-26T17:09:21Z;Júlio;908.4964;115952545;Mexico; -2018-11-26T17:06:35Z;nathalia;1487.426;115040142;Mexico; -2018-11-26T16:48:21Z;Nathália;2615.848;114774219;Mexico; -2018-11-26T15:29:40Z;Júlio Cesar;1792.33;114605747;Mexico; -2018-11-26T15:25:26Z;Sandra;626.7274;114550229;Mexico; -2018-11-26T15:04:13Z;Ana;371.3947;115314965;Mexico; -2018-11-26T14:49:56Z;nathalia;247.3045;115419068;Mexico; -2018-11-26T14:42:13Z;Sandra;1905.142;115444660;Mexico; -2018-11-26T14:38:17Z;Júlio Cesar;3059.558;115406427;Mexico; -2018-11-26T14:24:03Z;Eduardo;633.7924;115070459;Mexico; -2018-11-26T14:11:44Z;nathalia;522.0752;114375697;Mexico; -2018-11-26T13:53:37Z;Sandra;6119.971;115489146;Mexico; -2018-11-26T13:50:02Z;Júlio Cesar;729.3187;114884091;Mexico; -2018-11-26T13:41:38Z;Ana;4006.883;114760783;Mexico; -2018-11-26T13:37:02Z;Júlio;671.9064;116214785;Mexico; -2018-11-26T13:33:28Z;Júlio;1386.662;115127035;Mexico; -2018-11-26T13:28:39Z;Júlio Cesar;5883.365;115368032;Mexico; -2018-11-26T12:55:36Z;Júlio Cesar;1154.814;114323139;Mexico; -2018-11-26T12:45:35Z;Nathália;1540.459;115945083;Mexico; -2018-11-26T12:37:49Z;nathalia;3241.904;114263717;Mexico; -2018-11-26T12:34:42Z;Ana;207.61;114637786;Mexico; -2018-11-26T12:29:27Z;Sandra;1223.938;116339137;Mexico; -2018-11-26T12:17:18Z;Ana;154.0095;115118021;Mexico; -2018-11-26T12:10:58Z;nathalia;1619.585;115229312;Mexico; -2018-11-26T11:19:45Z;nathalia;1266.014;115256471;Mexico; -2018-11-26T10:39:16Z;Júlio;2347.117;115774229;Mexico; -2018-11-26T10:16:01Z;Ana;7538.086;115530895;Mexico; -2018-11-26T09:14:07Z;Eduardo;6159.607;116364475;Mexico; -2018-11-26T09:08:01Z;Sandra;4346.655;114821213;Mexico; -2018-11-26T09:02:34Z;Eduardo;281.3314;115978913;Mexico; -2018-11-26T08:38:56Z;Eduardo;2723.256;115168773;Mexico; -2018-11-26T07:51:44Z;Júlio Cesar;1514.872;115071620;Mexico; -2018-11-26T07:33:19Z;Sandra;1595.972;115787210;Mexico; -2018-11-26T07:19:59Z;Ana;1210.358;114336277;Mexico; -2018-11-26T07:09:22Z;Júlio;875.3035;114271916;Mexico; -2018-11-26T06:52:03Z;Júlio Cesar;69.92358;115145864;Mexico; -2018-11-26T06:36:24Z;nathalia;609.7979;115038365;Mexico; -2018-11-26T06:20:56Z;Eduardo;241.8183;114918438;Mexico; -2018-11-26T05:49:08Z;Júlio Cesar;3873.078;115063130;Mexico; -2018-11-26T05:26:34Z;Nathália;845.9139;114587606;Mexico; -2018-11-26T05:17:02Z;nathalia;2161.833;114727211;Mexico; -2018-11-26T05:09:29Z;Júlio;3071.064;115303161;Mexico; -2018-11-26T04:50:37Z;Armando;37.32986;114761736;Mexico; -2018-11-26T04:23:25Z;Sandra;3100.727;116344567;Mexico; -2018-11-26T03:54:23Z;Júlio;39.24373;114575170;Mexico; -2018-11-26T03:36:44Z;Sandra;2163.959;115039701;Mexico; -2018-11-26T03:28:23Z;Armando;4137.796;115441773;Mexico; -2018-11-26T02:56:01Z;Eduardo;6236.872;114755528;Mexico; -2018-11-26T02:52:11Z;Eduardo;112.0795;115121759;Mexico; -2018-11-26T02:51:37Z;Nathália;822.6485;115139262;Mexico; -2018-11-26T02:29:33Z;Nathália;265.2389;115519495;Mexico; -2018-11-26T02:26:11Z;Júlio;29.205;115642802;Mexico; -2018-11-26T02:25:18Z;Júlio Cesar;256.7769;115360878;Mexico; -2018-11-26T02:25:15Z;Eduardo;4243.518;115304070;Mexico; -2018-11-26T02:09:16Z;Armando;513.2524;114506004;Mexico; -2018-11-26T02:03:50Z;Júlio;617.5801;116168225;Mexico; -2018-11-26T02:00:04Z;Sandra;2921.985;114647484;Mexico; -2018-11-26T01:51:17Z;Nathália;2769.302;116150569;Mexico; -2018-11-26T01:39:24Z;Ana;1213.56;115633891;Mexico; -2018-11-26T01:39:15Z;Sandra;4108.917;115709681;Mexico; -2018-11-26T01:02:09Z;Júlio Cesar;872.7254;114524718;Mexico; -2018-11-26T00:40:30Z;Ana;1076.655;114890306;Mexico; -2018-11-26T00:10:20Z;Júlio Cesar;3404.779;115916087;Mexico; -2018-11-26T00:03:52Z;Sandra;1825.211;115542653;Mexico; -2018-11-25T23:35:23Z;nathalia;1846.168;116094081;Mexico; -2018-11-25T23:28:22Z;Ana;583.8078;116004862;Mexico; -2018-11-25T23:28:15Z;nathalia;2373.515;114397693;Mexico; -2018-11-25T23:21:20Z;Eduardo;705.1544;116348025;Mexico; -2018-11-25T22:50:58Z;Nathália;4447.548;114907321;Mexico; -2018-11-25T22:38:14Z;nathalia;3542.829;114331430;Mexico; -2018-11-25T22:26:53Z;Armando;4771.55;116107706;Mexico; -2018-11-25T21:57:12Z;Júlio Cesar;4361.403;116357260;Mexico; -2018-11-25T21:25:42Z;Nathália;186.1229;115939554;Mexico; -2018-11-25T21:23:53Z;Sandra;4479.02;114683423;Mexico; -2018-11-25T21:22:33Z;Eduardo;5124.565;115695814;Mexico; -2018-11-25T20:53:08Z;Júlio;2097.286;116252403;Mexico; -2018-11-25T20:51:35Z;nathalia;4369.184;116167232;Mexico; -2018-11-25T20:42:08Z;Júlio;430.7292;115154258;Mexico; -2018-11-25T19:13:37Z;Eduardo;420.1841;116027808;Mexico; -2018-11-25T19:10:09Z;nathalia;2695.373;116286561;Mexico; -2018-11-25T19:02:48Z;Júlio Cesar;466.0503;115358744;Mexico; -2018-11-25T18:52:11Z;Júlio;4774.077;114641939;Mexico; -2018-11-25T18:35:57Z;Armando;5879.809;116338513;Mexico; -2018-11-25T18:30:42Z;Sandra;999.6806;114623508;Mexico; -2018-11-25T18:20:11Z;Júlio;2488.929;114995027;Mexico; -2018-11-25T18:19:56Z;Sandra;280.9417;115204718;Mexico; -2018-11-25T18:16:07Z;Ana;8.578018;115205898;Mexico; -2018-11-25T17:47:42Z;Eduardo;2121.959;114827703;Mexico; -2018-11-25T17:29:24Z;nathalia;3595.865;114405175;Mexico; -2018-11-25T17:22:24Z;Sandra;97.87768;115263838;Mexico; -2018-11-25T16:55:28Z;Nathália;2963.828;114390519;Mexico; -2018-11-25T16:27:59Z;Ana;3647.837;116358771;Mexico; -2018-11-25T16:23:52Z;Sandra;3065.102;114519583;Mexico; -2018-11-25T16:21:50Z;Eduardo;2202.029;114442589;Mexico; -2018-11-25T16:20:27Z;Armando;3337.752;114638116;Mexico; -2018-11-25T16:08:11Z;Júlio Cesar;662.9759;114784501;Mexico; -2018-11-25T15:35:24Z;Armando;764.097;115275789;Mexico; -2018-11-25T15:27:52Z;Júlio;4283.378;115798182;Mexico; -2018-11-25T15:26:13Z;Júlio;2.963138;115550469;Mexico; -2018-11-25T15:08:32Z;nathalia;571.2485;116301594;Mexico; -2018-11-25T14:59:47Z;Júlio;4675.902;114721582;Mexico; -2018-11-25T14:43:08Z;Nathália;5302.44;115082792;Mexico; -2018-11-25T14:27:40Z;Nathália;624.4993;115392887;Mexico; -2018-11-25T14:27:07Z;nathalia;2613.61;114713434;Mexico; -2018-11-25T14:25:03Z;nathalia;235.4727;115214891;Mexico; -2018-11-25T14:12:47Z;Armando;1740.478;115050006;Mexico; -2018-11-25T13:41:45Z;Júlio Cesar;2967.259;116395148;Mexico; -2018-11-25T13:34:28Z;Júlio Cesar;3059.505;114782197;Mexico; -2018-11-25T13:24:58Z;nathalia;191.1639;115199453;Mexico; -2018-11-25T13:02:26Z;Júlio;500.264;115114510;Mexico; -2018-11-25T12:34:48Z;Júlio;1905.63;115830994;Mexico; -2018-11-25T12:27:25Z;nathalia;315.6093;115643658;Mexico; -2018-11-25T11:50:02Z;Eduardo;3120.03;116019210;Mexico; -2018-11-25T11:24:57Z;nathalia;126.3316;115853020;Mexico; -2018-11-25T11:20:38Z;Ana;217.2351;115219959;Mexico; -2018-11-25T11:10:35Z;nathalia;3517.236;114372377;Mexico; -2018-11-25T10:37:12Z;Sandra;987.946;114233242;Mexico; -2018-11-25T10:35:43Z;Júlio;2600.513;114212434;Mexico; -2018-11-25T10:07:29Z;Eduardo;4228.909;115996081;Mexico; -2018-11-25T10:05:52Z;Júlio Cesar;2752.681;115040380;Mexico; -2018-11-25T09:52:18Z;Júlio Cesar;1286.212;114622969;Mexico; -2018-11-25T09:48:46Z;nathalia;1776.107;114822324;Mexico; -2018-11-25T09:44:52Z;Nathália;509.9368;116287077;Mexico; -2018-11-25T09:42:16Z;Nathália;3236.988;116328873;Mexico; -2018-11-25T09:19:38Z;nathalia;136.412;114836463;Mexico; -2018-11-25T08:05:02Z;Júlio Cesar;2166.134;114689478;Mexico; -2018-11-25T07:41:37Z;Nathália;1967.604;115706343;Mexico; -2018-11-25T07:13:57Z;Ana;131.3702;115045133;Mexico; -2018-11-25T06:59:48Z;Armando;3387.207;114209136;Mexico; -2018-11-25T06:37:58Z;Júlio;1868.871;115175609;Mexico; -2018-11-25T06:28:33Z;Júlio Cesar;2655.579;115614820;Mexico; -2018-11-25T05:52:31Z;Sandra;1023.368;115198292;Mexico; -2018-11-25T05:42:06Z;Eduardo;671.8461;116341268;Mexico; -2018-11-25T05:25:48Z;Armando;145.3574;114227388;Mexico; -2018-11-25T05:19:47Z;Ana;21.63342;115697820;Mexico; -2018-11-25T05:02:40Z;Ana;381.1871;114797677;Mexico; -2018-11-25T04:53:46Z;Ana;3179.232;114586866;Mexico; -2018-11-25T03:17:06Z;Nathália;636.1843;115269588;Mexico; -2018-11-25T03:06:43Z;Armando;982.22260000000006;115745275;Mexico; -2018-11-25T02:44:33Z;Armando;856.0904;115622148;Mexico; -2018-11-25T02:32:14Z;Armando;894.4066;116161389;Mexico; -2018-11-25T02:31:35Z;Nathália;1614.517;115859872;Mexico; -2018-11-25T02:27:18Z;Eduardo;1350.446;115942667;Mexico; -2018-11-25T01:55:46Z;Júlio;5509.569;115215662;Mexico; -2018-11-25T01:32:30Z;Júlio Cesar;3184.557;115278735;Mexico; -2018-11-25T01:23:53Z;Nathália;128.1764;114349708;Mexico; -2018-11-25T01:11:24Z;Júlio;1350.39;115797288;Mexico; -2018-11-25T01:02:42Z;Sandra;808.0698;115759768;Mexico; -2018-11-25T00:50:52Z;Júlio;8091.656;114955226;Mexico; -2018-11-25T00:47:14Z;Júlio Cesar;2625.746;116291134;Mexico; -2018-11-25T00:24:30Z;Júlio;978.6162;115590115;Mexico; -2018-11-25T00:17:16Z;Nathália;1417.28;115731674;Mexico; -2018-11-24T23:53:16Z;Júlio Cesar;1741.168;114228039;Mexico; -2018-11-24T23:52:22Z;nathalia;516.5967;114547190;Mexico; -2018-11-24T23:18:12Z;Júlio;2819.725;114200390;Mexico; -2018-11-24T23:18:08Z;Júlio;4700.466;114736367;Mexico; -2018-11-24T23:07:11Z;Nathália;1251.828;115346153;Mexico; -2018-11-24T22:52:19Z;Júlio;667.3071;115452808;Mexico; -2018-11-24T22:43:45Z;Armando;2718.018;115716271;Mexico; -2018-11-24T22:07:40Z;Eduardo;3693.406;115671067;Mexico; -2018-11-24T21:49:26Z;Júlio Cesar;130.2323;115658816;Mexico; -2018-11-24T21:38:37Z;Ana;2462.572;116018892;Mexico; -2018-11-24T21:22:54Z;Júlio;354.2544;114989681;Mexico; -2018-11-24T20:55:14Z;Sandra;936.7429;116171265;Mexico; -2018-11-24T20:32:50Z;Eduardo;2806.491;116138918;Mexico; -2018-11-24T20:19:26Z;Ana;1318.052;115072757;Mexico; -2018-11-24T20:15:01Z;Júlio;4786.259;115985362;Mexico; -2018-11-24T20:03:53Z;nathalia;1396.864;114738526;Mexico; -2018-11-24T19:58:04Z;nathalia;494.5845;115668943;Mexico; -2018-11-24T19:55:50Z;Júlio;1459.058;115541012;Mexico; -2018-11-24T19:16:20Z;Ana;2845.028;114812847;Mexico; -2018-11-24T18:32:45Z;Armando;1041.677;115214332;Mexico; -2018-11-24T18:30:26Z;Sandra;145.2638;114369532;Mexico; -2018-11-24T17:36:28Z;Eduardo;260.8471;115405430;Mexico; -2018-11-24T17:34:05Z;Armando;3342.951;114379653;Mexico; -2018-11-24T17:24:34Z;nathalia;2572.236;114351226;Mexico; -2018-11-24T17:01:39Z;Sandra;6112.002;115538974;Mexico; -2018-11-24T16:45:57Z;Armando;102.7384;114447258;Mexico; -2018-11-24T16:45:10Z;Júlio Cesar;1512.558;115483183;Mexico; -2018-11-24T16:18:34Z;Armando;1703.421;114670200;Mexico; -2018-11-24T16:15:51Z;Eduardo;1395.937;115166153;Mexico; -2018-11-24T16:10:08Z;Eduardo;2065.749;115351328;Mexico; -2018-11-24T15:45:25Z;Nathália;1578.322;115820761;Mexico; -2018-11-24T15:42:18Z;Ana;1287.1;115121405;Mexico; -2018-11-24T15:30:02Z;Júlio Cesar;1707.091;114660852;Mexico; -2018-11-24T15:27:02Z;Eduardo;1980.408;114269585;Mexico; -2018-11-24T15:19:57Z;nathalia;1367.931;114588204;Mexico; -2018-11-24T15:03:25Z;Júlio;616.4221;114389928;Mexico; -2018-11-24T13:48:37Z;Armando;202.3184;116163756;Mexico; -2018-11-24T13:45:03Z;Júlio Cesar;945.5377;115722174;Mexico; -2018-11-24T13:33:51Z;Júlio Cesar;3052.611;115723199;Mexico; -2018-11-24T13:23:09Z;nathalia;2535.07;114453984;Mexico; -2018-11-24T13:08:31Z;Ana;308.2493;115273050;Mexico; -2018-11-24T13:04:13Z;Eduardo;366.5917;115179078;Mexico; -2018-11-24T12:29:19Z;Júlio;510.6585;114358823;Mexico; -2018-11-24T12:13:18Z;Ana;3864.277;116199868;Mexico; -2018-11-24T11:44:56Z;Júlio;3602.749;115899758;Mexico; -2018-11-24T11:29:25Z;nathalia;2993.81;115712528;Mexico; -2018-11-24T11:28:15Z;Júlio Cesar;3514.348;116032258;Mexico; -2018-11-24T10:45:17Z;Júlio;479.9957;114951654;Mexico; -2018-11-24T10:34:41Z;Sandra;2575.719;116108164;Mexico; -2018-11-24T10:25:38Z;Eduardo;431.5332;115289538;Mexico; -2018-11-24T10:20:07Z;Júlio Cesar;918.2646;114848393;Mexico; -2018-11-24T10:14:12Z;Júlio;3864.879;115413958;Mexico; -2018-11-24T10:10:50Z;Júlio Cesar;1540.534;114489429;Mexico; -2018-11-24T09:38:38Z;nathalia;803.8197;115988886;Mexico; -2018-11-24T08:57:31Z;Nathália;2971.63;114239491;Mexico; -2018-11-24T08:40:32Z;Sandra;4817.581;115191211;Mexico; -2018-11-24T08:29:12Z;Júlio;3587.219;115159978;Mexico; -2018-11-24T08:25:53Z;nathalia;5990.469;115065482;Mexico; -2018-11-24T07:47:03Z;Ana;811.9907;115612153;Mexico; -2018-11-24T06:57:03Z;Nathália;2106.949;115509647;Mexico; -2018-11-24T06:49:12Z;Eduardo;3476.046;115430872;Mexico; -2018-11-24T06:45:53Z;Ana;140.5002;116283332;Mexico; -2018-11-24T06:35:56Z;Júlio Cesar;408.3081;116209892;Mexico; -2018-11-24T06:07:43Z;Nathália;1972.492;114731511;Mexico; -2018-11-24T05:52:22Z;Ana;139.9945;114511870;Mexico; -2018-11-24T05:52:06Z;Sandra;1863.087;116350905;Mexico; -2018-11-24T05:49:48Z;nathalia;1624.412;114393397;Mexico; -2018-11-24T05:44:38Z;Armando;601.0664;116188637;Mexico; -2018-11-24T05:38:20Z;Júlio;1141.995;114753072;Mexico; -2018-11-24T05:17:10Z;nathalia;1765.994;114328060;Mexico; -2018-11-24T05:16:40Z;Ana;19.1542;115810920;Mexico; -2018-11-24T05:13:14Z;Eduardo;674.7574;115725891;Mexico; -2018-11-24T04:36:04Z;Júlio;304.7258;115002379;Mexico; -2018-11-24T04:21:40Z;Eduardo;947.1355;114392375;Mexico; -2018-11-24T04:13:39Z;nathalia;2417.094;115180970;Mexico; -2018-11-24T04:13:17Z;Eduardo;3848.216;116157016;Mexico; -2018-11-24T04:10:32Z;nathalia;1165.193;116358343;Mexico; -2018-11-24T04:02:37Z;Júlio Cesar;3134.151;116089326;Mexico; -2018-11-24T04:02:29Z;Nathália;5133.739;114226836;Mexico; -2018-11-24T02:16:47Z;Armando;1323.359;115195009;Mexico; -2018-11-24T02:08:49Z;Eduardo;9181.171;114669063;Mexico; -2018-11-24T01:49:43Z;Nathália;240.9508;116386404;Mexico; -2018-11-24T01:47:53Z;nathalia;1200.283;114219501;Mexico; -2018-11-24T01:42:45Z;Sandra;1490.44;114767489;Mexico; -2018-11-24T01:30:42Z;Júlio Cesar;491.467;115739592;Mexico; -2018-11-24T00:59:38Z;Armando;1803.001;115870972;Mexico; -2018-11-24T00:47:47Z;Eduardo;956.3794;115103792;Mexico; -2018-11-24T00:42:33Z;Júlio;1361.766;115507284;Mexico; -2018-11-24T00:40:25Z;Ana;1219.039;115505793;Mexico; -2018-11-24T00:01:31Z;Eduardo;1333.553;114351135;Mexico; -2018-11-23T23:52:29Z;Nathália;951.4138;114315194;Mexico; -2018-11-23T23:44:21Z;Júlio;1996.215;114795638;Mexico; -2018-11-23T23:33:03Z;Ana;7350.954;114364571;Mexico; -2018-11-23T23:23:08Z;Ana;3891.729;116380672;Mexico; -2018-11-23T22:59:37Z;Nathália;3722.798;115976463;Mexico; -2018-11-23T22:45:09Z;Sandra;2017.181;115475688;Mexico; -2018-11-23T22:40:16Z;Sandra;128.1569;115918382;Mexico; -2018-11-23T22:34:14Z;Júlio;1470.443;115517785;Mexico; -2018-11-23T22:18:47Z;Júlio;2357.975;115098491;Mexico; -2018-11-23T22:08:28Z;Armando;12.14778;115714683;Mexico; -2018-11-23T22:04:28Z;Nathália;91.50607;116109912;Mexico; -2018-11-23T21:49:09Z;Júlio;2392.67;114915958;Mexico; -2018-11-23T21:36:44Z;Armando;1132.245;114641598;Mexico; -2018-11-23T21:32:23Z;Armando;1176.728;114289373;Mexico; -2018-11-23T21:17:23Z;Ana;475.9497;115192354;Mexico; -2018-11-23T21:11:13Z;Ana;5161.869;114390444;Mexico; -2018-11-23T21:07:26Z;Eduardo;4333.944;115488117;Mexico; -2018-11-23T20:54:54Z;Júlio;2706.101;114321510;Mexico; -2018-11-23T20:14:59Z;Sandra;1944.875;115776535;Mexico; -2018-11-23T19:59:06Z;Júlio Cesar;684.1663;114789173;Mexico; -2018-11-23T19:41:12Z;Júlio Cesar;3809.7;115465832;Mexico; -2018-11-23T19:37:58Z;Ana;2496.181;115147540;Mexico; -2018-11-23T19:23:20Z;Sandra;2376.784;114390661;Mexico; -2018-11-23T18:52:59Z;Nathália;2411.826;115077590;Mexico; -2018-11-23T18:44:39Z;Júlio;2533.615;114850630;Mexico; -2018-11-23T18:12:17Z;nathalia;164.4171;114981808;Mexico; -2018-11-23T18:04:03Z;Sandra;4528.305;115029070;Mexico; -2018-11-23T18:02:04Z;Eduardo;1448.55;116220010;Mexico; -2018-11-23T17:55:07Z;nathalia;16.31373;116040513;Mexico; -2018-11-23T17:27:49Z;Nathália;87.01171;114590968;Mexico; -2018-11-23T17:21:39Z;Júlio;1001.095;116061314;Mexico; -2018-11-23T17:20:10Z;Sandra;4374.447;114574490;Mexico; -2018-11-23T17:19:20Z;Júlio;764.5348;116261150;Mexico; -2018-11-23T17:02:12Z;Júlio Cesar;4408.398;115057595;Mexico; -2018-11-23T16:58:27Z;Ana;906.4623;114518006;Mexico; -2018-11-23T16:45:58Z;Ana;3422.266;115230323;Mexico; -2018-11-23T15:45:43Z;Júlio Cesar;1000.746;114681103;Mexico; -2018-11-23T15:32:04Z;Ana;2313.433;114764440;Mexico; -2018-11-23T14:55:11Z;Júlio Cesar;2754.917;114548318;Mexico; -2018-11-23T14:46:18Z;Eduardo;402.2147;114380225;Mexico; -2018-11-23T13:23:17Z;Ana;584.3906;114356780;Mexico; -2018-11-23T13:19:34Z;Ana;1363.482;114475493;Mexico; -2018-11-23T13:13:29Z;nathalia;3940.724;114575026;Mexico; -2018-11-23T12:57:56Z;Júlio Cesar;1334.018;115558369;Mexico; -2018-11-23T12:38:19Z;Ana;678.1851;114796828;Mexico; -2018-11-23T11:34:42Z;Sandra;3865.643;116018604;Mexico; -2018-11-23T11:20:27Z;Ana;373.3825;116094490;Mexico; -2018-11-23T11:17:32Z;nathalia;638.963;114307001;Mexico; -2018-11-23T11:05:28Z;Júlio Cesar;1254.17;115952984;Mexico; -2018-11-23T10:57:53Z;Nathália;1334.823;115146885;Mexico; -2018-11-23T10:25:33Z;Nathália;576.1352;115791812;Mexico; -2018-11-23T09:55:28Z;Armando;1766.973;115732498;Mexico; -2018-11-23T09:48:59Z;Júlio;236.0226;114673504;Mexico; -2018-11-23T09:47:28Z;Armando;3629.347;115714796;Mexico; -2018-11-23T09:39:40Z;Eduardo;3191.151;115977553;Mexico; -2018-11-23T08:58:14Z;Júlio Cesar;2853.691;115580832;Mexico; -2018-11-23T08:50:40Z;Júlio;853.9332;115051180;Mexico; -2018-11-23T08:42:15Z;Nathália;4257.147;114387885;Mexico; -2018-11-23T08:18:45Z;Armando;6134.293;115733734;Mexico; -2018-11-23T08:00:36Z;Nathália;715.1444;114280936;Mexico; -2018-11-23T07:56:59Z;Júlio Cesar;883.2001;115539295;Mexico; -2018-11-23T07:40:19Z;Nathália;1118.271;115523654;Mexico; -2018-11-23T07:05:17Z;nathalia;5625.982;114449593;Mexico; -2018-11-23T07:03:09Z;Júlio;3841.282;114248937;Mexico; -2018-11-23T06:54:08Z;Ana;2368.009;115278030;Mexico; -2018-11-23T06:53:52Z;Sandra;1434.52;115401417;Mexico; -2018-11-23T06:52:38Z;Ana;1761.401;116304783;Mexico; -2018-11-23T06:38:15Z;Ana;362.0368;115099957;Mexico; -2018-11-23T06:13:14Z;nathalia;4352.008;114489358;Mexico; -2018-11-23T05:49:13Z;Júlio;1845.858;115871221;Mexico; -2018-11-23T05:40:20Z;Júlio;2154.026;115563406;Mexico; -2018-11-23T05:32:35Z;Sandra;329.8161;115625036;Mexico; -2018-11-23T05:22:03Z;Ana;544.5295;116283689;Mexico; -2018-11-23T05:19:33Z;Armando;3275.174;115800362;Mexico; -2018-11-23T05:19:27Z;Armando;1421.384;116289638;Mexico; -2018-11-23T05:14:36Z;Júlio Cesar;2273.199;114556137;Mexico; -2018-11-23T04:23:18Z;Ana;674.7763;114882475;Mexico; -2018-11-23T04:21:53Z;Nathália;1985.52;115751453;Mexico; -2018-11-23T03:29:21Z;Ana;1956.678;115322871;Mexico; -2018-11-23T03:27:22Z;Ana;1907.529;114333167;Mexico; -2018-11-23T03:09:05Z;Nathália;482.5764;115243217;Mexico; -2018-11-23T02:59:57Z;Ana;1110.03;116007905;Mexico; -2018-11-23T02:45:35Z;Eduardo;3846.634;116002154;Mexico; -2018-11-23T02:36:36Z;Armando;2849.863;116279752;Mexico; -2018-11-23T02:31:22Z;Eduardo;2141.37;114631917;Mexico; -2018-11-23T02:02:07Z;Sandra;321.6765;115599888;Mexico; -2018-11-23T01:59:06Z;Ana;7622.875;114637529;Mexico; -2018-11-23T01:42:42Z;Nathália;263.2371;114736533;Mexico; -2018-11-23T01:22:19Z;Nathália;2741.899;116174100;Mexico; -2018-11-23T01:13:08Z;Júlio;8680.868;114675179;Mexico; -2018-11-23T01:02:27Z;Ana;852.5433;116107323;Mexico; -2018-11-23T00:49:17Z;Sandra;521.8246;115177554;Mexico; -2018-11-23T00:42:48Z;Sandra;746.3236;116288702;Mexico; -2018-11-23T00:27:16Z;Júlio;3767.568;116345793;Mexico; -2018-11-23T00:26:59Z;Eduardo;1692.786;115850283;Mexico; -2018-11-23T00:20:34Z;Sandra;3079.68;115064976;Mexico; -2018-11-23T00:03:38Z;Eduardo;3384.531;115927626;Mexico; -2018-11-22T23:31:16Z;Eduardo;1804.683;114817638;Mexico; -2018-11-22T22:32:47Z;Eduardo;977.07;114886162;Mexico; -2018-11-22T22:21:09Z;Júlio;8190.885;114707660;Mexico; -2018-11-22T22:02:27Z;Sandra;3175.207;115042075;Mexico; -2018-11-22T21:55:45Z;Júlio;489.5167;116110291;Mexico; -2018-11-22T21:43:28Z;nathalia;753.5378;114356612;Mexico; -2018-11-22T21:30:41Z;Armando;1962.686;115364125;Mexico; -2018-11-22T21:29:43Z;Eduardo;2931.868;114495600;Mexico; -2018-11-22T21:19:46Z;Eduardo;1829.975;115870572;Mexico; -2018-11-22T21:01:58Z;Júlio Cesar;828.1249;115391872;Mexico; -2018-11-22T20:54:30Z;Júlio Cesar;1390.325;114905768;Mexico; -2018-11-22T20:48:25Z;Nathália;1330.37;115082141;Mexico; -2018-11-22T20:30:58Z;Sandra;1555.13;115534101;Mexico; -2018-11-22T20:28:15Z;Sandra;3112.767;115322174;Mexico; -2018-11-22T19:20:18Z;Nathália;1258.975;114223846;Mexico; -2018-11-22T19:18:21Z;Júlio Cesar;3016.212;115735264;Mexico; -2018-11-22T19:09:20Z;Júlio Cesar;1243.501;116315689;Mexico; -2018-11-22T18:53:40Z;nathalia;355.8213;116334287;Mexico; -2018-11-22T18:52:54Z;Eduardo;1434.43;115060176;Mexico; -2018-11-22T18:04:37Z;Júlio Cesar;1442.027;116382593;Mexico; -2018-11-22T17:53:53Z;Armando;2545.134;114769044;Mexico; -2018-11-22T17:53:31Z;Sandra;1169.827;114748407;Mexico; -2018-11-22T17:49:25Z;Ana;298.1744;116061805;Mexico; -2018-11-22T17:37:40Z;nathalia;921.9714;114539293;Mexico; -2018-11-22T17:04:25Z;Eduardo;2723.215;115232161;Mexico; -2018-11-22T16:56:29Z;Nathália;5550.628;115734162;Mexico; -2018-11-22T16:42:41Z;Sandra;1428.806;116248086;Mexico; -2018-11-22T16:34:59Z;Ana;909.6555;115039103;Mexico; -2018-11-22T16:19:28Z;Armando;2997.335;115606273;Mexico; -2018-11-22T15:48:10Z;Eduardo;2071.214;115409949;Mexico; -2018-11-22T15:39:03Z;Nathália;3660.131;114457550;Mexico; -2018-11-22T15:33:33Z;Sandra;2889.709;116073025;Mexico; -2018-11-22T15:32:04Z;Ana;1767.44;114525413;Mexico; -2018-11-22T15:30:18Z;Eduardo;739.0401;114615396;Mexico; -2018-11-22T15:17:02Z;Nathália;3277.583;114348837;Mexico; -2018-11-22T14:49:58Z;Nathália;4857.885;115469582;Mexico; -2018-11-22T14:42:37Z;Ana;3335.17;114686890;Mexico; -2018-11-22T13:57:40Z;Ana;5966.574;114618447;Mexico; -2018-11-22T13:53:19Z;nathalia;201.7727;115335706;Mexico; -2018-11-22T13:18:37Z;Ana;1336.214;115173795;Mexico; -2018-11-22T13:18:27Z;Ana;503.5584;114304641;Mexico; -2018-11-22T13:04:39Z;Armando;1258.213;116252820;Mexico; -2018-11-22T12:00:05Z;Ana;146.8225;115694710;Mexico; -2018-11-22T11:53:57Z;Nathália;3514.448;114658877;Mexico; -2018-11-22T11:52:45Z;nathalia;3724.21;114703379;Mexico; -2018-11-22T11:42:54Z;Ana;2905.833;116038227;Mexico; -2018-11-22T11:15:39Z;Ana;443.7749;115886841;Mexico; -2018-11-22T11:14:57Z;Sandra;2461.746;115428153;Mexico; -2018-11-22T11:03:55Z;Júlio Cesar;235.0271;115237316;Mexico; -2018-11-22T10:50:09Z;Nathália;598.7103;116363421;Mexico; -2018-11-22T10:47:32Z;Júlio;212.1003;114220759;Mexico; -2018-11-22T10:16:17Z;Sandra;3582.403;114383823;Mexico; -2018-11-22T09:38:03Z;Nathália;4366.122;116365083;Mexico; -2018-11-22T09:36:21Z;Armando;3773.667;115707260;Mexico; -2018-11-22T09:36:05Z;Sandra;79.69471;115810609;Mexico; -2018-11-22T09:25:58Z;Júlio;2857.645;115052914;Mexico; -2018-11-22T09:22:03Z;nathalia;161.2131;115891128;Mexico; -2018-11-22T08:54:28Z;Júlio Cesar;3523.532;114785036;Mexico; -2018-11-22T08:26:17Z;nathalia;2942.037;114846765;Mexico; -2018-11-22T08:16:10Z;nathalia;2091.018;114836633;Mexico; -2018-11-22T07:51:41Z;Nathália;3438.565;115264909;Mexico; -2018-11-22T07:50:29Z;Júlio;988.6467;115277031;Mexico; -2018-11-22T07:06:30Z;Júlio Cesar;460.1791;115661541;Mexico; -2018-11-22T06:58:38Z;nathalia;47.49317;116272971;Mexico; -2018-11-22T06:54:06Z;nathalia;115.1963;116319093;Mexico; -2018-11-22T06:53:45Z;Eduardo;663.8634;114337125;Mexico; -2018-11-22T06:41:58Z;Eduardo;175.6992;115179035;Mexico; -2018-11-22T06:40:13Z;Sandra;4077.791;114879243;Mexico; -2018-11-22T06:12:07Z;Júlio Cesar;2719.99;114411852;Mexico; -2018-11-22T06:06:04Z;Júlio;489.2149;114588193;Mexico; -2018-11-22T05:47:06Z;Ana;3333.481;115770427;Mexico; -2018-11-22T05:27:33Z;Nathália;772.1161;114999760;Mexico; -2018-11-22T05:24:59Z;Júlio;1848.672;114920018;Mexico; -2018-11-22T05:02:00Z;Ana;776.8661;116119561;Mexico; -2018-11-22T04:37:01Z;Nathália;2300.216;114641232;Mexico; -2018-11-22T04:31:42Z;nathalia;4422.491;116331298;Mexico; -2018-11-22T04:21:29Z;Nathália;1436.549;114602786;Mexico; -2018-11-22T04:04:40Z;Ana;2430.24;114976532;Mexico; -2018-11-22T03:53:05Z;nathalia;542.2302;116308989;Mexico; -2018-11-22T03:31:45Z;Armando;253.849;115392130;Mexico; -2018-11-22T03:20:38Z;Sandra;33.35486;114838266;Mexico; -2018-11-22T03:03:33Z;Eduardo;3057.856;114603637;Mexico; -2018-11-22T02:40:30Z;Nathália;3407.292;114411444;Mexico; -2018-11-22T02:25:10Z;Júlio;297.1037;115786999;Mexico; -2018-11-22T02:16:56Z;Júlio;2946.397;115688826;Mexico; -2018-11-22T02:12:56Z;Eduardo;6220.936;114967898;Mexico; -2018-11-22T01:43:26Z;Júlio;1490.974;116038959;Mexico; -2018-11-22T01:20:22Z;Ana;489.1137;115249276;Mexico; -2018-11-22T01:01:14Z;Armando;2439.143;115222558;Mexico; -2018-11-22T00:39:24Z;nathalia;1267.509;115650878;Mexico; -2018-11-22T00:29:51Z;nathalia;923.5405;114683662;Mexico; -2018-11-22T00:21:26Z;Júlio;3930.712;115294093;Mexico; -2018-11-21T23:55:18Z;Eduardo;108.3825;114789466;Mexico; -2018-11-21T23:39:32Z;Sandra;818.4749;114344446;Mexico; -2018-11-21T23:11:50Z;Sandra;637.6943;116149967;Mexico; -2018-11-21T22:36:40Z;nathalia;1155.416;114665250;Mexico; -2018-11-21T22:04:27Z;Nathália;1790.406;115625200;Mexico; -2018-11-21T21:55:17Z;nathalia;839.6789;116276330;Mexico; -2018-11-21T21:54:32Z;Júlio;914.0862;114418190;Mexico; -2018-11-21T21:47:50Z;Ana;847.2788;115186290;Mexico; -2018-11-21T21:32:53Z;Júlio;2323.508;115278277;Mexico; -2018-11-21T21:32:18Z;Ana;5580.462;115525477;Mexico; -2018-11-21T20:55:08Z;Júlio;1495.318;115594584;Mexico; -2018-11-21T20:17:01Z;nathalia;830.7766;115584524;Mexico; -2018-11-21T20:15:45Z;Nathália;1626.791;115079794;Mexico; -2018-11-21T19:53:57Z;Ana;280.6012;116154165;Mexico; -2018-11-21T19:48:28Z;Sandra;4037.175;114687018;Mexico; -2018-11-21T19:40:35Z;Nathália;1038.257;116131152;Mexico; -2018-11-21T19:35:01Z;Ana;1648.021;115405746;Mexico; -2018-11-21T19:27:30Z;Eduardo;558.9482;115995957;Mexico; -2018-11-21T19:27:16Z;nathalia;3772.741;115833070;Mexico; -2018-11-21T19:06:45Z;Ana;2035.617;114881115;Mexico; -2018-11-21T19:05:47Z;Ana;1026.458;115580810;Mexico; -2018-11-21T19:01:50Z;Eduardo;723.7152;114332699;Mexico; -2018-11-21T18:44:36Z;Eduardo;290.2449;114320007;Mexico; -2018-11-21T18:38:37Z;Nathália;1693.295;114980600;Mexico; -2018-11-21T18:36:01Z;Armando;6517.11;115222058;Mexico; -2018-11-21T18:34:04Z;Ana;3012.556;114575391;Mexico; -2018-11-21T18:26:09Z;Ana;2996.452;115970387;Mexico; -2018-11-21T18:19:03Z;nathalia;3233.849;115506598;Mexico; -2018-11-21T17:49:47Z;Júlio;3095.564;115944241;Mexico; -2018-11-21T17:25:07Z;Armando;4075.855;115102334;Mexico; -2018-11-21T16:59:46Z;Ana;1926.215;116033383;Mexico; -2018-11-21T16:56:11Z;Júlio Cesar;569.1183;115206563;Mexico; -2018-11-21T16:47:29Z;nathalia;1894.453;115829455;Mexico; -2018-11-21T16:30:33Z;Sandra;3998.359;114766731;Mexico; -2018-11-21T16:29:34Z;Ana;2264.959;115433988;Mexico; -2018-11-21T16:24:00Z;Júlio;4035.923;115585497;Mexico; -2018-11-21T16:05:36Z;Eduardo;1006.091;115203861;Mexico; -2018-11-21T16:01:29Z;Júlio Cesar;1066.301;116214209;Mexico; -2018-11-21T15:29:43Z;Eduardo;1389.917;115135487;Mexico; -2018-11-21T15:15:13Z;Ana;1490.149;114415531;Mexico; -2018-11-21T14:58:52Z;Júlio Cesar;6074.397;114892083;Mexico; -2018-11-21T14:34:17Z;Sandra;4370.831;116377674;Mexico; -2018-11-21T13:51:50Z;nathalia;993.4362;115624735;Mexico; -2018-11-21T13:41:05Z;Ana;4511.268;114265842;Mexico; -2018-11-21T13:33:05Z;Júlio;2108.244;115725974;Mexico; -2018-11-21T13:19:47Z;Júlio;5919.611;115583033;Mexico; -2018-11-21T13:08:21Z;Nathália;3899.343;114603065;Mexico; -2018-11-21T12:47:04Z;Sandra;1531.455;115661467;Mexico; -2018-11-21T12:42:56Z;Júlio Cesar;4055.468;114542003;Mexico; -2018-11-21T12:23:51Z;Nathália;2686.919;114726742;Mexico; -2018-11-21T11:25:59Z;Nathália;706.5043;114382062;Mexico; -2018-11-21T11:22:49Z;Armando;180.8223;115676823;Mexico; -2018-11-21T11:04:04Z;Armando;1331.146;114824485;Mexico; -2018-11-21T10:54:17Z;Júlio;1979.278;114851428;Mexico; -2018-11-21T10:51:03Z;Júlio Cesar;3749.13;115130001;Mexico; -2018-11-21T10:45:29Z;Eduardo;1804.824;116165084;Mexico; -2018-11-21T10:41:10Z;Sandra;457.0596;114670771;Mexico; -2018-11-21T10:37:24Z;Júlio Cesar;87.62396;116152921;Mexico; -2018-11-21T10:25:46Z;Eduardo;318.8182;114297780;Mexico; -2018-11-21T10:25:29Z;Júlio;5692.786;115013964;Mexico; -2018-11-21T10:16:04Z;Júlio Cesar;4372.967;114917078;Mexico; -2018-11-21T09:53:14Z;Júlio Cesar;2902.471;116319472;Mexico; -2018-11-21T09:05:38Z;Armando;2820.584;115592273;Mexico; -2018-11-21T09:04:06Z;Armando;264.4715;115681107;Mexico; -2018-11-21T08:47:57Z;nathalia;3117.123;114776399;Mexico; -2018-11-21T08:42:17Z;Júlio;6227.022;116001825;Mexico; -2018-11-21T08:37:39Z;nathalia;4714.163;115494626;Mexico; -2018-11-21T07:55:23Z;nathalia;5363.852;114770478;Mexico; -2018-11-21T07:25:04Z;Júlio Cesar;533.1049;114321982;Mexico; -2018-11-21T06:51:34Z;Nathália;1853.016;116024923;Mexico; -2018-11-21T06:42:19Z;Ana;708.5022;115255555;Mexico; -2018-11-21T06:21:32Z;Armando;1506.213;114651715;Mexico; -2018-11-21T06:19:02Z;Eduardo;3745.258;114466277;Mexico; -2018-11-21T06:09:04Z;Júlio Cesar;1593.303;114870751;Mexico; -2018-11-21T06:05:30Z;Nathália;3870.115;115232286;Mexico; -2018-11-21T05:50:47Z;Sandra;111.1001;114842943;Mexico; -2018-11-21T05:26:41Z;Eduardo;1158.414;114987498;Mexico; -2018-11-21T05:20:59Z;Armando;4440.925;116311879;Mexico; -2018-11-21T05:20:23Z;Sandra;945.1242;116251124;Mexico; -2018-11-21T04:22:05Z;Eduardo;245.3134;115128012;Mexico; -2018-11-21T03:35:18Z;nathalia;116.1148;114268658;Mexico; -2018-11-21T03:25:39Z;Nathália;2515.333;116015527;Mexico; -2018-11-21T03:24:46Z;nathalia;684.9544;115884580;Mexico; -2018-11-21T03:20:29Z;Armando;132.7511;114239026;Mexico; -2018-11-21T03:01:20Z;Sandra;581.0123;115138139;Mexico; -2018-11-21T02:52:22Z;Ana;814.017;116396787;Mexico; -2018-11-21T02:49:30Z;Júlio Cesar;229.1557;116389763;Mexico; -2018-11-21T02:47:39Z;Sandra;563.4195;114983603;Mexico; -2018-11-21T02:43:32Z;Nathália;501.0757;114663769;Mexico; -2018-11-21T02:34:04Z;Ana;3758.452;115289716;Mexico; -2018-11-21T02:18:02Z;Júlio Cesar;888.8195;114685566;Mexico; -2018-11-21T02:17:51Z;Ana;52.77494;116288468;Mexico; -2018-11-21T02:11:06Z;Nathália;36.43744;115436893;Mexico; -2018-11-21T02:06:19Z;Sandra;303.8165;114668710;Mexico; -2018-11-21T01:59:27Z;Armando;1373.383;116181217;Mexico; -2018-11-21T01:55:48Z;Eduardo;2975.369;115563953;Mexico; -2018-11-21T01:14:09Z;Eduardo;2692.069;116312107;Mexico; -2018-11-21T00:49:24Z;Júlio;5825.963;116075775;Mexico; -2018-11-21T00:37:27Z;nathalia;1274.2;115973713;Mexico; -2018-11-21T00:31:43Z;Nathália;18.32086;114589148;Mexico; -2018-11-21T00:08:40Z;Júlio;2703.823;116050526;Mexico; -2018-11-20T23:48:18Z;Júlio;1963.382;114267132;Mexico; -2018-11-20T23:45:27Z;nathalia;4821.23;115820425;Mexico; -2018-11-20T23:34:26Z;nathalia;6444.068;115700771;Mexico; -2018-11-20T23:31:23Z;Eduardo;3212.964;116300160;Mexico; -2018-11-20T23:26:17Z;nathalia;191.3858;115335338;Mexico; -2018-11-20T23:15:40Z;Ana;857.0561;116190532;Mexico; -2018-11-20T22:56:39Z;Júlio Cesar;2564.64;115805342;Mexico; -2018-11-20T22:15:06Z;Sandra;110.7812;115912348;Mexico; -2018-11-20T22:13:09Z;Armando;1138.243;114480954;Mexico; -2018-11-20T21:12:59Z;Eduardo;2320.348;115756847;Mexico; -2018-11-20T20:50:03Z;Nathália;6979.257;114697027;Mexico; -2018-11-20T20:03:22Z;Ana;305.2669;114611377;Mexico; -2018-11-20T19:57:56Z;Júlio Cesar;7592.303;115314549;Mexico; -2018-11-20T19:52:36Z;Júlio Cesar;737.8571;114490325;Mexico; -2018-11-20T18:59:14Z;nathalia;3863.014;114704566;Mexico; -2018-11-20T18:54:05Z;Júlio Cesar;1319.299;115737624;Mexico; -2018-11-20T18:17:20Z;Armando;432.8528;115726960;Mexico; -2018-11-20T18:04:15Z;Eduardo;2027.014;116025740;Mexico; -2018-11-20T17:32:11Z;Sandra;3001.723;114992556;Mexico; -2018-11-20T17:28:45Z;nathalia;111.0804;115668936;Mexico; -2018-11-20T17:21:31Z;Armando;4272.144;115809300;Mexico; -2018-11-20T17:07:30Z;Armando;2477.145;114652349;Mexico; -2018-11-20T17:04:30Z;Júlio;2721.094;114335031;Mexico; -2018-11-20T17:00:21Z;nathalia;509.7175;114480531;Mexico; -2018-11-20T16:57:25Z;Júlio;4801.312;116216489;Mexico; -2018-11-20T16:54:55Z;Armando;272.4802;115782266;Mexico; -2018-11-20T15:27:08Z;Ana;3340.061;116353895;Mexico; -2018-11-20T14:29:22Z;Júlio Cesar;6850.142;115779775;Mexico; -2018-11-20T14:09:16Z;Eduardo;625.8849;114578506;Mexico; -2018-11-20T13:50:39Z;Armando;3837.863;116235558;Mexico; -2018-11-20T13:29:40Z;Sandra;1536.607;116284773;Mexico; -2018-11-20T13:11:10Z;Sandra;1573.776;116205119;Mexico; -2018-11-20T13:10:25Z;Júlio;1629.548;115373846;Mexico; -2018-11-20T13:10:03Z;Ana;19.25704;115045833;Mexico; -2018-11-20T12:49:38Z;Júlio;2043.212;114645938;Mexico; -2018-11-20T12:33:42Z;Ana;1634.217;114677875;Mexico; -2018-11-20T12:00:04Z;Júlio Cesar;4132.142;114210483;Mexico; -2018-11-20T11:53:20Z;nathalia;1172.647;114371816;Mexico; -2018-11-20T11:38:56Z;Júlio Cesar;773.4947;115054565;Mexico; -2018-11-20T11:17:51Z;Ana;60.77373;116019194;Mexico; -2018-11-20T10:59:45Z;Júlio Cesar;1313.268;115453469;Mexico; -2018-11-20T10:39:38Z;Armando;102.8612;115395158;Mexico; -2018-11-20T10:23:12Z;Nathália;4967.924;115183527;Mexico; -2018-11-20T10:17:05Z;Armando;5089.917;114343495;Mexico; -2018-11-20T10:03:55Z;Armando;938.4562;114385030;Mexico; -2018-11-20T09:02:08Z;Ana;1401.609;116391910;Mexico; -2018-11-20T08:48:16Z;Armando;169.1451;114540195;Mexico; -2018-11-20T08:15:10Z;nathalia;939.9087;115648487;Mexico; -2018-11-20T07:06:38Z;Nathália;1909.419;115209499;Mexico; -2018-11-20T06:59:54Z;Sandra;3416.276;114990467;Mexico; -2018-11-20T06:53:36Z;Nathália;3163.822;114713328;Mexico; -2018-11-20T06:46:06Z;Júlio;3134.439;115356713;Mexico; -2018-11-20T06:44:02Z;nathalia;9296.294;115607031;Mexico; -2018-11-20T05:36:26Z;Júlio;2369.252;114915293;Mexico; -2018-11-20T05:16:51Z;nathalia;1385.125;114319616;Mexico; -2018-11-20T04:24:20Z;Nathália;894.791;115043096;Mexico; -2018-11-20T04:23:37Z;Nathália;3596.243;114849262;Mexico; -2018-11-20T04:17:24Z;Sandra;1276.924;115107640;Mexico; -2018-11-20T04:01:51Z;Júlio;1249.994;116377895;Mexico; -2018-11-20T03:40:43Z;Eduardo;872.7067;114349397;Mexico; -2018-11-20T03:33:44Z;Eduardo;935.3267;115112642;Mexico; -2018-11-20T03:33:29Z;nathalia;2992.14;115667464;Mexico; -2018-11-20T03:00:50Z;Ana;692.7832;115961326;Mexico; -2018-11-20T02:55:10Z;Ana;113.0116;114801161;Mexico; -2018-11-20T02:54:42Z;Ana;3332.571;116333547;Mexico; -2018-11-20T02:50:44Z;Eduardo;5752.293;116217251;Mexico; -2018-11-20T02:05:25Z;Sandra;824.4316;115023220;Mexico; -2018-11-20T01:52:02Z;Ana;3444.92;115425218;Mexico; -2018-11-20T01:30:10Z;Ana;2868.631;116263534;Mexico; -2018-11-20T01:18:09Z;Ana;114.7747;114738020;Mexico; -2018-11-20T01:02:12Z;Ana;921.7447;115867312;Mexico; -2018-11-20T00:19:54Z;Nathália;815.6186;115380969;Mexico; -2018-11-20T00:00:26Z;Sandra;162.1934;114876201;Mexico; -2018-11-19T23:47:21Z;Júlio Cesar;730.9051;114218400;Mexico; -2018-11-19T23:45:44Z;Júlio;4835.924;115815996;Mexico; -2018-11-19T23:31:52Z;Armando;237.3342;116001080;Mexico; -2018-11-19T23:07:06Z;Ana;3709.348;115233510;Mexico; -2018-11-19T22:24:43Z;Nathália;1092.076;115246247;Mexico; -2018-11-19T22:19:16Z;Júlio Cesar;688.574;115713854;Mexico; -2018-11-19T22:17:06Z;Ana;5050.698;114754351;Mexico; -2018-11-19T21:59:32Z;Júlio;86.90192;114399617;Mexico; -2018-11-19T21:57:55Z;Eduardo;3629.014;115036550;Mexico; -2018-11-19T21:39:23Z;Ana;94.03828;116030059;Mexico; -2018-11-19T21:29:40Z;Eduardo;300.292;115170063;Mexico; -2018-11-19T20:58:08Z;Eduardo;4907.908;114637072;Mexico; -2018-11-19T20:50:02Z;Ana;2969.624;114467337;Mexico; -2018-11-19T20:19:36Z;Júlio;4128.86;114982575;Mexico; -2018-11-19T20:18:08Z;nathalia;1080.137;115190003;Mexico; -2018-11-19T20:14:16Z;Ana;32.15425;115162113;Mexico; -2018-11-19T20:13:44Z;Júlio Cesar;547.5413;116284747;Mexico; -2018-11-19T19:52:19Z;Júlio Cesar;1101.293;114903875;Mexico; -2018-11-19T19:31:13Z;Ana;2160.761;115713505;Mexico; -2018-11-19T18:58:01Z;nathalia;451.9456;115574572;Mexico; -2018-11-19T18:57:38Z;Júlio;1585.731;115407698;Mexico; -2018-11-19T18:57:00Z;Júlio Cesar;2048.316;116183484;Mexico; -2018-11-19T18:39:57Z;Sandra;164.7043;115138696;Mexico; -2018-11-19T18:15:24Z;Ana;5737.562;115978131;Mexico; -2018-11-19T17:45:04Z;Ana;4174.155;115705989;Mexico; -2018-11-19T17:34:49Z;Ana;3207.494;114575836;Mexico; -2018-11-19T17:31:33Z;Sandra;1637.708;115647223;Mexico; -2018-11-19T17:22:38Z;Ana;903.755;114348405;Mexico; -2018-11-19T16:58:09Z;Júlio;55.89748;115828042;Mexico; -2018-11-19T16:39:01Z;Nathália;1039.022;114245524;Mexico; -2018-11-19T15:46:06Z;Nathália;643.9639;114901919;Mexico; -2018-11-19T14:33:25Z;Armando;985.6957;114741388;Mexico; -2018-11-19T14:28:50Z;Sandra;4137.88;116309539;Mexico; -2018-11-19T14:26:45Z;Nathália;1582.38;114416147;Mexico; -2018-11-19T14:14:14Z;Júlio Cesar;428.5417;115055926;Mexico; -2018-11-19T14:12:50Z;Júlio Cesar;1350.226;115835020;Mexico; -2018-11-19T14:07:59Z;Sandra;578.3376;116175133;Mexico; -2018-11-19T13:59:39Z;Júlio;2299.248;115631526;Mexico; -2018-11-19T13:58:28Z;Júlio Cesar;5964.361;114745415;Mexico; -2018-11-19T13:56:17Z;Armando;4248.588;114591567;Mexico; -2018-11-19T13:38:44Z;nathalia;4531.484;114717308;Mexico; -2018-11-19T13:26:19Z;Júlio Cesar;165.9755;114230283;Mexico; -2018-11-19T12:56:17Z;Nathália;1176.501;116286114;Mexico; -2018-11-19T12:46:45Z;Nathália;579.0814;114354318;Mexico; -2018-11-19T12:46:35Z;Ana;371.0657;116029609;Mexico; -2018-11-19T12:21:59Z;Nathália;1519.954;116218053;Mexico; -2018-11-19T12:21:42Z;Júlio Cesar;3150.674;115577298;Mexico; -2018-11-19T12:11:51Z;Sandra;491.0348;115718270;Mexico; -2018-11-19T12:10:16Z;Armando;1541.457;114401665;Mexico; -2018-11-19T11:39:27Z;Ana;1333.892;114332634;Mexico; -2018-11-19T11:26:57Z;Armando;3079.055;115178857;Mexico; -2018-11-19T11:19:49Z;nathalia;60.53076;115028524;Mexico; -2018-11-19T11:16:59Z;Sandra;4735.72;116300175;Mexico; -2018-11-19T11:15:31Z;Júlio Cesar;1908.218;114319574;Mexico; -2018-11-19T10:58:06Z;Eduardo;1436.604;114468871;Mexico; -2018-11-19T10:18:01Z;nathalia;101.3119;115955510;Mexico; -2018-11-19T10:14:31Z;Armando;1096.559;115827368;Mexico; -2018-11-19T09:52:14Z;Eduardo;1680.821;114352000;Mexico; -2018-11-19T09:18:53Z;Ana;6704.825;116261447;Mexico; -2018-11-19T09:10:10Z;Sandra;9859.557;114401947;Mexico; -2018-11-19T08:55:43Z;Júlio;1458.757;114338641;Mexico; -2018-11-19T08:41:27Z;Júlio Cesar;1837.667;114258097;Mexico; -2018-11-19T07:55:16Z;Armando;622.1369;114612306;Mexico; -2018-11-19T07:38:44Z;Sandra;51.54816;115309044;Mexico; -2018-11-19T07:35:33Z;Júlio;1736.995;115211666;Mexico; -2018-11-19T07:17:49Z;Nathália;1138.149;116039820;Mexico; -2018-11-19T07:08:51Z;nathalia;186.3101;116326827;Mexico; -2018-11-19T06:21:11Z;Sandra;1227.528;114511233;Mexico; -2018-11-19T06:11:02Z;Júlio;2945.147;114694294;Mexico; -2018-11-19T06:06:56Z;nathalia;683.3938;114755287;Mexico; -2018-11-19T05:49:07Z;Armando;1320.759;115181719;Mexico; -2018-11-19T05:38:29Z;Armando;73.91269;115300264;Mexico; -2018-11-19T05:27:00Z;nathalia;3810.583;115076461;Mexico; -2018-11-19T05:08:30Z;Eduardo;2359.622;116284386;Mexico; -2018-11-19T04:36:11Z;Sandra;1581.597;115512511;Mexico; -2018-11-19T04:24:48Z;Ana;3313.319;114839159;Mexico; -2018-11-19T04:11:54Z;Júlio;335.2585;115896775;Mexico; -2018-11-19T03:36:38Z;Júlio;5020.703;116008816;Mexico; -2018-11-19T03:35:47Z;Eduardo;2318.167;115389630;Mexico; -2018-11-19T03:28:59Z;nathalia;3306.677;114722762;Mexico; -2018-11-19T03:17:22Z;Júlio Cesar;862.7227;115331581;Mexico; -2018-11-19T02:59:23Z;Armando;5698.654;114382256;Mexico; -2018-11-19T02:46:13Z;Nathália;3414.052;114287367;Mexico; -2018-11-19T02:44:12Z;Sandra;909.1896;115670480;Mexico; -2018-11-19T02:35:18Z;Armando;2581.362;115328833;Mexico; -2018-11-19T02:32:25Z;nathalia;81.70649;116012478;Mexico; -2018-11-19T01:58:14Z;nathalia;2201.332;114776868;Mexico; -2018-11-19T01:25:11Z;Nathália;5664.119;116202887;Mexico; -2018-11-19T01:21:59Z;Nathália;2026.698;114577741;Mexico; -2018-11-19T01:21:44Z;Júlio Cesar;1738.281;115127379;Mexico; -2018-11-19T00:59:16Z;Júlio Cesar;4804.164;116182118;Mexico; -2018-11-19T00:58:35Z;Nathália;979.9613;114402859;Mexico; -2018-11-19T00:48:37Z;nathalia;339.4979;115645276;Mexico; -2018-11-19T00:26:44Z;Sandra;92.35118;115289514;Mexico; -2018-11-19T00:23:46Z;Nathália;1578.757;114875235;Mexico; -2018-11-19T00:16:13Z;Júlio Cesar;3135.011;115723482;Mexico; -2018-11-19T00:06:19Z;Sandra;2279.026;115065401;Mexico; -2018-11-18T23:58:38Z;Nathália;809.1295;114980557;Mexico; -2018-11-18T23:38:38Z;Armando;1240.165;114418490;Mexico; -2018-11-18T23:31:28Z;Ana;3813.419;115900091;Mexico; -2018-11-18T23:27:42Z;Sandra;317.7347;114423734;Mexico; -2018-11-18T23:14:11Z;Eduardo;5394.485;114651382;Mexico; -2018-11-18T23:04:19Z;Sandra;1511.917;114791362;Mexico; -2018-11-18T22:54:26Z;Ana;2844.273;114536492;Mexico; -2018-11-18T22:37:47Z;Júlio Cesar;691.8474;115518702;Mexico; -2018-11-18T22:35:54Z;Ana;2786.888;115854576;Mexico; -2018-11-18T22:03:10Z;nathalia;6253.093;115572544;Mexico; -2018-11-18T21:21:51Z;Júlio;2054.145;115223277;Mexico; -2018-11-18T21:07:52Z;Armando;1370.466;114638535;Mexico; -2018-11-18T20:59:39Z;Nathália;120.555;115820536;Mexico; -2018-11-18T20:46:20Z;Júlio;289.7337;114490104;Mexico; -2018-11-18T20:44:41Z;Júlio;1888.014;115635964;Mexico; -2018-11-18T20:37:27Z;Armando;1165.675;114416427;Mexico; -2018-11-18T20:22:50Z;nathalia;4308.289;115359681;Mexico; -2018-11-18T20:11:34Z;Nathália;1281.737;116320733;Mexico; -2018-11-18T19:52:56Z;Ana;443.889;115862205;Mexico; -2018-11-18T19:43:26Z;Sandra;2930.92;115837376;Mexico; -2018-11-18T19:29:35Z;Armando;2.469225;114219183;Mexico; -2018-11-18T19:07:30Z;Ana;2609.879;115894103;Mexico; -2018-11-18T19:06:26Z;Nathália;2355.283;115511676;Mexico; -2018-11-18T19:05:18Z;Nathália;2669.067;116043983;Mexico; -2018-11-18T17:59:33Z;Eduardo;2172.76;115615884;Mexico; -2018-11-18T16:57:58Z;Sandra;2068.77;116250709;Mexico; -2018-11-18T16:33:41Z;Armando;862.8909;115100331;Mexico; -2018-11-18T15:39:20Z;Júlio;1155.011;115898171;Mexico; -2018-11-18T15:38:50Z;Armando;2549.59;115578300;Mexico; -2018-11-18T15:24:58Z;Nathália;110.3333;114958599;Mexico; -2018-11-18T15:11:03Z;Júlio Cesar;7107.387;115332231;Mexico; -2018-11-18T15:09:07Z;Júlio;4.428317;115314177;Mexico; -2018-11-18T14:50:17Z;Júlio Cesar;1232.692;116031064;Mexico; -2018-11-18T14:32:02Z;Eduardo;1316.641;115291719;Mexico; -2018-11-18T14:23:48Z;nathalia;1835.859;114443728;Mexico; -2018-11-18T13:55:05Z;Armando;2451.924;114937151;Mexico; -2018-11-18T13:42:55Z;Júlio Cesar;6056.893;114374835;Mexico; -2018-11-18T13:36:51Z;Nathália;4201.249;115569443;Mexico; -2018-11-18T13:31:13Z;nathalia;1450.985;115865135;Mexico; -2018-11-18T13:21:41Z;Armando;1609.119;114951340;Mexico; -2018-11-18T13:10:22Z;Júlio;934.636;115958540;Mexico; -2018-11-18T13:07:28Z;Júlio;2992.16;115988971;Mexico; -2018-11-18T13:03:44Z;Júlio Cesar;1472.742;115051494;Mexico; -2018-11-18T12:56:22Z;Sandra;143.8215;115586945;Mexico; -2018-11-18T12:54:13Z;Sandra;375.8435;114742338;Mexico; -2018-11-18T12:51:19Z;Ana;1057.882;116348581;Mexico; -2018-11-18T12:43:12Z;nathalia;118.7004;115997493;Mexico; -2018-11-18T12:06:50Z;nathalia;101.3888;115098146;Mexico; -2018-11-18T11:40:57Z;Eduardo;502.1729;115412263;Mexico; -2018-11-18T10:52:11Z;Nathália;1008.755;115609412;Mexico; -2018-11-18T10:44:14Z;Júlio;2312.09;115453186;Mexico; -2018-11-18T10:24:52Z;Sandra;1512.452;114896835;Mexico; -2018-11-18T10:01:20Z;nathalia;501.6977;114465210;Mexico; -2018-11-18T09:56:06Z;Júlio Cesar;2449.062;114304620;Mexico; -2018-11-18T09:39:29Z;Eduardo;4202.422;116380136;Mexico; -2018-11-18T09:23:37Z;Nathália;369.1979;114298046;Mexico; -2018-11-18T09:09:39Z;Ana;420.3187;115401625;Mexico; -2018-11-18T08:18:57Z;Eduardo;4387.017;115642137;Mexico; -2018-11-18T08:17:38Z;Júlio Cesar;1766.42;115591414;Mexico; -2018-11-18T07:34:38Z;Eduardo;1676.599;116147269;Mexico; -2018-11-18T07:09:35Z;Ana;1467.124;115286618;Mexico; -2018-11-18T07:08:43Z;Nathália;3604.155;115254452;Mexico; -2018-11-18T07:04:40Z;Ana;841.2996;114475264;Mexico; -2018-11-18T06:53:46Z;Júlio Cesar;1952.888;115150173;Mexico; -2018-11-18T06:52:22Z;Júlio Cesar;986.2092;115681816;Mexico; -2018-11-18T06:48:28Z;Eduardo;506.1015;115062298;Mexico; -2018-11-18T06:02:33Z;Armando;2954.112;115542661;Mexico; -2018-11-18T05:54:56Z;Júlio Cesar;1176.078;115812826;Mexico; -2018-11-18T05:48:44Z;Nathália;1104.357;114918958;Mexico; -2018-11-18T05:46:05Z;Júlio Cesar;203.4352;115346811;Mexico; -2018-11-18T05:39:14Z;Ana;3197.852;114542712;Mexico; -2018-11-18T05:34:47Z;Nathália;5312.21;115209322;Mexico; -2018-11-18T05:25:22Z;nathalia;144.2358;115096655;Mexico; -2018-11-18T05:06:35Z;Júlio;2308.657;115877450;Mexico; -2018-11-18T04:59:44Z;Eduardo;1101.343;115831883;Mexico; -2018-11-18T04:30:21Z;Sandra;1877.958;114818846;Mexico; -2018-11-18T04:24:54Z;Sandra;198.9464;114915880;Mexico; -2018-11-18T04:09:30Z;Sandra;1752.769;114920965;Mexico; -2018-11-18T03:49:07Z;Júlio Cesar;740.3887;114937649;Mexico; -2018-11-18T03:33:03Z;Armando;3017.658;115206066;Mexico; -2018-11-18T03:31:02Z;Eduardo;437.175;114312829;Mexico; -2018-11-18T02:19:40Z;Armando;28.65328;116225446;Mexico; -2018-11-18T01:17:55Z;Júlio Cesar;3548.738;116244929;Mexico; -2018-11-18T01:11:40Z;nathalia;2579.019;115759406;Mexico; -2018-11-18T00:58:27Z;Ana;486.2584;116146505;Mexico; -2018-11-18T00:14:49Z;Nathália;3406.909;116299967;Mexico; -2018-11-17T23:58:26Z;Eduardo;2923.005;116210751;Mexico; -2018-11-17T23:57:23Z;Ana;847.7059;115122180;Mexico; -2018-11-17T23:43:16Z;Júlio;1470.749;114496419;Mexico; -2018-11-17T23:38:44Z;Júlio Cesar;4190.021;116394806;Mexico; -2018-11-17T23:30:24Z;Armando;2377.827;114652245;Mexico; -2018-11-17T23:29:58Z;Ana;2978.978;115732529;Mexico; -2018-11-17T23:28:30Z;Nathália;1253.653;114760117;Mexico; -2018-11-17T23:10:04Z;Júlio Cesar;4690.463;115921674;Mexico; -2018-11-17T22:59:18Z;Eduardo;4536.522;115708445;Mexico; -2018-11-17T22:32:45Z;Eduardo;2624.82;114754444;Mexico; -2018-11-17T21:35:34Z;Júlio Cesar;3558.601;114704256;Mexico; -2018-11-17T21:30:14Z;Júlio;578.0975;116114669;Mexico; -2018-11-17T21:18:47Z;Armando;3910.363;115005674;Mexico; -2018-11-17T21:02:01Z;Armando;2342.806;116326658;Mexico; -2018-11-17T21:00:01Z;Ana;4287.458;116126579;Mexico; -2018-11-17T20:51:10Z;Sandra;3592.388;115926830;Mexico; -2018-11-17T20:50:53Z;Sandra;2041.052;114881674;Mexico; -2018-11-17T20:49:01Z;nathalia;2154.546;115827013;Mexico; -2018-11-17T20:48:39Z;Júlio Cesar;2193.623;115237749;Mexico; -2018-11-17T20:39:54Z;Eduardo;139.6076;115925422;Mexico; -2018-11-17T20:12:53Z;Armando;1817.347;115972878;Mexico; -2018-11-17T20:10:30Z;nathalia;477.5845;114684733;Mexico; -2018-11-17T20:03:07Z;Nathália;1528.956;114398306;Mexico; -2018-11-17T19:57:50Z;nathalia;3976.521;114714978;Mexico; -2018-11-17T19:16:57Z;nathalia;6837.748;114296540;Mexico; -2018-11-17T19:15:07Z;Júlio;1807.623;115704251;Mexico; -2018-11-17T19:09:40Z;Sandra;3527.981;115549710;Mexico; -2018-11-17T19:05:59Z;Júlio Cesar;5016.916;115795441;Mexico; -2018-11-17T19:04:35Z;nathalia;1297.395;115595010;Mexico; -2018-11-17T19:03:38Z;Armando;1695.394;115745402;Mexico; -2018-11-17T18:59:40Z;Eduardo;60.45444;114477633;Mexico; -2018-11-17T18:22:57Z;Sandra;1723.788;114918628;Mexico; -2018-11-17T18:06:44Z;Sandra;602.649;115350219;Mexico; -2018-11-17T17:51:58Z;Júlio Cesar;6035.738;115885633;Mexico; -2018-11-17T17:13:28Z;Júlio;1204.194;115564843;Mexico; -2018-11-17T17:06:32Z;Armando;213.0142;115755191;Mexico; -2018-11-17T17:00:44Z;Nathália;2964.738;115365163;Mexico; -2018-11-17T16:53:30Z;Júlio Cesar;85.98019;116380169;Mexico; -2018-11-17T16:53:21Z;Júlio Cesar;783.4772;116162516;Mexico; -2018-11-17T16:43:10Z;Nathália;1011.575;115595970;Mexico; -2018-11-17T16:12:20Z;Armando;1514.064;115670274;Mexico; -2018-11-17T15:56:44Z;Júlio Cesar;146.2845;116232848;Mexico; -2018-11-17T15:47:53Z;Nathália;4057.577;114308347;Mexico; -2018-11-17T15:44:18Z;Sandra;1396.704;115509515;Mexico; -2018-11-17T15:43:01Z;Sandra;1057.598;115869788;Mexico; -2018-11-17T15:16:22Z;Nathália;553.217;114257566;Mexico; -2018-11-17T15:12:44Z;Ana;925.6312;115375180;Mexico; -2018-11-17T14:24:18Z;Eduardo;564.2523;115435828;Mexico; -2018-11-17T14:07:51Z;nathalia;39.97917;114355360;Mexico; -2018-11-17T14:03:10Z;Júlio Cesar;669.28510000000006;116198149;Mexico; -2018-11-17T13:55:29Z;Júlio;69.96197;114268775;Mexico; -2018-11-17T13:15:10Z;Ana;4766.336;116227512;Mexico; -2018-11-17T13:11:04Z;Ana;3228.166;114666402;Mexico; -2018-11-17T12:43:31Z;Eduardo;2883.998;115742687;Mexico; -2018-11-17T12:34:36Z;Sandra;79.3832;114942831;Mexico; -2018-11-17T12:16:44Z;Nathália;6321.545;116315658;Mexico; -2018-11-17T12:12:02Z;Ana;975.5136;115488400;Mexico; -2018-11-17T12:09:19Z;Nathália;2360.564;114993380;Mexico; -2018-11-17T11:44:34Z;Júlio;1726.816;116193547;Mexico; -2018-11-17T11:20:16Z;Júlio;65.25469;114944118;Mexico; -2018-11-17T11:18:24Z;Eduardo;350.1683;115291880;Mexico; -2018-11-17T10:45:23Z;nathalia;1191.645;115541104;Mexico; -2018-11-17T10:33:42Z;Nathália;1900.142;115914824;Mexico; -2018-11-17T09:47:14Z;Júlio;5535.275;115809904;Mexico; -2018-11-17T09:41:36Z;Júlio;733.838;115764640;Mexico; -2018-11-17T09:39:00Z;nathalia;228.9889;114805152;Mexico; -2018-11-17T09:36:55Z;Júlio Cesar;3978.425;114929093;Mexico; -2018-11-17T09:29:03Z;Eduardo;1983.021;116399356;Mexico; -2018-11-17T09:23:45Z;Eduardo;888.0151;115713482;Mexico; -2018-11-17T09:19:49Z;Ana;1406.152;116159466;Mexico; -2018-11-17T09:17:55Z;Júlio Cesar;188.5855;115563015;Mexico; -2018-11-17T09:09:35Z;Nathália;449.5839;114370496;Mexico; -2018-11-17T08:39:57Z;nathalia;5142.24;114556925;Mexico; -2018-11-17T08:14:33Z;Júlio;3545.663;115183912;Mexico; -2018-11-17T07:50:36Z;Júlio;651.3644;115933755;Mexico; -2018-11-17T07:32:31Z;Nathália;1271.518;115975465;Mexico; -2018-11-17T07:24:05Z;Armando;1280.605;115712205;Mexico; -2018-11-17T07:22:36Z;Armando;1857.141;114551537;Mexico; -2018-11-17T06:15:18Z;Armando;2311.204;114376551;Mexico; -2018-11-17T05:51:39Z;Eduardo;7810.355;115223618;Mexico; -2018-11-17T05:39:56Z;Armando;357.8077;115618967;Mexico; -2018-11-17T05:12:54Z;Ana;584.2329;114243565;Mexico; -2018-11-17T05:12:05Z;Júlio Cesar;187.865;115150910;Mexico; -2018-11-17T05:10:57Z;Ana;2920.497;114578594;Mexico; -2018-11-17T04:31:49Z;Júlio Cesar;346.6308;114990915;Mexico; -2018-11-17T04:15:29Z;Ana;1761.599;116043134;Mexico; -2018-11-17T03:57:16Z;Júlio Cesar;435.7627;116335613;Mexico; -2018-11-17T03:30:09Z;Armando;3374.851;115090115;Mexico; -2018-11-17T03:29:49Z;Júlio Cesar;363.9432;114416768;Mexico; -2018-11-17T03:02:15Z;Nathália;517.2184;114973878;Mexico; -2018-11-17T02:54:09Z;nathalia;1642.124;115852202;Mexico; -2018-11-17T02:36:37Z;nathalia;722.7875;115082540;Mexico; -2018-11-17T02:36:22Z;Júlio;86.99557;114303866;Mexico; -2018-11-17T02:15:30Z;Ana;3208.468;114487222;Mexico; -2018-11-17T02:01:00Z;Júlio Cesar;276.0359;115688642;Mexico; -2018-11-17T01:47:06Z;Nathália;4589.356;115795766;Mexico; -2018-11-17T01:32:38Z;nathalia;1399.671;115500316;Mexico; -2018-11-17T01:17:54Z;Sandra;3228.568;114269826;Mexico; -2018-11-17T00:51:37Z;Eduardo;2686.983;116273929;Mexico; -2018-11-17T00:47:44Z;Júlio;171.4502;116057339;Mexico; -2018-11-17T00:23:21Z;Ana;951.54;116393539;Mexico; -2018-11-17T00:21:54Z;Júlio;2218.187;114473533;Mexico; -2018-11-16T23:49:52Z;Júlio;2978.745;114437995;Mexico; -2018-11-16T22:54:52Z;Armando;2108.898;116016039;Mexico; -2018-11-16T22:52:42Z;Ana;1901.916;115897397;Mexico; -2018-11-16T22:02:04Z;Júlio Cesar;4191.097;115490120;Mexico; -2018-11-16T21:57:48Z;Júlio Cesar;2144.577;115225527;Mexico; -2018-11-16T21:53:37Z;Nathália;329.9728;115938376;Mexico; -2018-11-16T21:28:51Z;Júlio;5257.151;116030705;Mexico; -2018-11-16T21:02:08Z;Armando;2668.852;115773153;Mexico; -2018-11-16T20:52:50Z;Júlio Cesar;5533.396;115256897;Mexico; -2018-11-16T20:36:12Z;Eduardo;2198.894;115428460;Mexico; -2018-11-16T20:30:36Z;Nathália;1163.469;116237046;Mexico; -2018-11-16T20:23:57Z;Armando;2869.219;115705456;Mexico; -2018-11-16T20:13:27Z;Júlio Cesar;6.010427;116195005;Mexico; -2018-11-16T20:11:01Z;Nathália;3719.967;114853324;Mexico; -2018-11-16T19:52:07Z;nathalia;4214.054;114334351;Mexico; -2018-11-16T19:43:27Z;Eduardo;1902.958;114699403;Mexico; -2018-11-16T19:01:15Z;Ana;1150.387;116119756;Mexico; -2018-11-16T18:59:45Z;Eduardo;603.5679;115823793;Mexico; -2018-11-16T18:54:40Z;Ana;399.1912;116092637;Mexico; -2018-11-16T18:43:15Z;Nathália;3695.56;116376326;Mexico; -2018-11-16T18:30:34Z;Armando;1179.752;116194604;Mexico; -2018-11-16T18:26:00Z;Júlio;3283.572;114843083;Mexico; -2018-11-16T18:24:15Z;Sandra;4121.292;115289797;Mexico; -2018-11-16T18:23:01Z;nathalia;64.20588;115268157;Mexico; -2018-11-16T18:11:57Z;Ana;453.6223;114531389;Mexico; -2018-11-16T17:36:08Z;Eduardo;1222.053;115794199;Mexico; -2018-11-16T17:21:15Z;Armando;589.5061;115627040;Mexico; -2018-11-16T17:16:10Z;Júlio Cesar;928.1607;114878342;Mexico; -2018-11-16T17:13:10Z;Ana;2398.603;115286687;Mexico; -2018-11-16T17:08:36Z;Nathália;3797.526;114762138;Mexico; -2018-11-16T16:46:37Z;Júlio;2325.099;115772342;Mexico; -2018-11-16T16:40:47Z;Júlio;1392.665;114833140;Mexico; -2018-11-16T16:38:32Z;Júlio Cesar;1305.477;116151038;Mexico; -2018-11-16T16:36:44Z;Júlio Cesar;295.9974;114830703;Mexico; -2018-11-16T16:34:54Z;Júlio Cesar;982.7593;114666975;Mexico; -2018-11-16T16:05:52Z;Sandra;4216.159;114283977;Mexico; -2018-11-16T15:28:42Z;Nathália;589.3942;115449551;Mexico; -2018-11-16T15:23:49Z;nathalia;586.8482;115940489;Mexico; -2018-11-16T15:01:27Z;Júlio Cesar;864.8436;114785081;Mexico; -2018-11-16T14:55:08Z;nathalia;444.0659;116014747;Mexico; -2018-11-16T14:51:23Z;nathalia;21.0388;114458403;Mexico; -2018-11-16T14:25:55Z;Sandra;96.59401;114999525;Mexico; -2018-11-16T13:40:29Z;Júlio Cesar;980.0661;115808103;Mexico; -2018-11-16T13:12:52Z;nathalia;605.0332;114988805;Mexico; -2018-11-16T13:09:51Z;Eduardo;6551.181;115557110;Mexico; -2018-11-16T12:30:13Z;Armando;2146.486;116273247;Mexico; -2018-11-16T11:40:43Z;Armando;38.73254;114765067;Mexico; -2018-11-16T11:17:08Z;Júlio Cesar;1235.083;115881585;Mexico; -2018-11-16T11:08:29Z;Júlio;2565.069;114592544;Mexico; -2018-11-16T10:32:58Z;nathalia;983.3951;115447566;Mexico; -2018-11-16T10:19:21Z;Júlio Cesar;330.5593;114884712;Mexico; -2018-11-16T09:57:05Z;Júlio Cesar;42.78515;115323320;Mexico; -2018-11-16T09:55:46Z;Nathália;3027.851;115709053;Mexico; -2018-11-16T09:47:11Z;Ana;2097.14;115401817;Mexico; -2018-11-16T09:34:07Z;nathalia;651.3645;114653677;Mexico; -2018-11-16T08:40:44Z;Sandra;423.8066;115127139;Mexico; -2018-11-16T08:30:24Z;Armando;1652.564;114923578;Mexico; -2018-11-16T08:06:20Z;Nathália;1088.499;115744152;Mexico; -2018-11-16T08:02:42Z;Nathália;2478.932;114417058;Mexico; -2018-11-16T07:44:01Z;Armando;3492.08;114904471;Mexico; -2018-11-16T07:39:54Z;Sandra;5433.64;115917616;Mexico; -2018-11-16T07:36:52Z;Júlio;756.2348;114314159;Mexico; -2018-11-16T06:31:28Z;Júlio;1768.583;115340378;Mexico; -2018-11-16T05:04:44Z;Nathália;2226.664;115202287;Mexico; -2018-11-16T04:46:24Z;Sandra;1891.101;115756346;Mexico; -2018-11-16T04:37:47Z;Ana;258.3802;114854105;Mexico; -2018-11-16T04:15:03Z;Ana;2280.809;116025484;Mexico; -2018-11-16T03:56:56Z;nathalia;689.3874;116360224;Mexico; -2018-11-16T02:25:45Z;Eduardo;4761.346;115164051;Mexico; -2018-11-16T02:23:35Z;Ana;1788.2;114696043;Mexico; -2018-11-16T02:16:32Z;Armando;2072.504;114768439;Mexico; -2018-11-16T02:15:25Z;Ana;2215.047;114518296;Mexico; -2018-11-16T01:15:23Z;Nathália;2749.287;114301931;Mexico; -2018-11-16T00:37:54Z;Júlio;986.4586;114471707;Mexico; -2018-11-16T00:13:16Z;Júlio Cesar;2248.654;114553931;Mexico; -2018-11-16T00:12:10Z;nathalia;1706.831;114941372;Mexico; -2018-11-16T00:04:26Z;Armando;289.5637;115742284;Mexico; -2018-11-16T00:01:02Z;Nathália;2095.675;114486100;Mexico; -2018-11-15T23:51:07Z;nathalia;1966.476;115312673;Mexico; -2018-11-15T23:22:21Z;Júlio Cesar;3074.92;114595521;Mexico; -2018-11-15T22:45:06Z;Nathália;90.96004;114750063;Mexico; -2018-11-15T22:25:56Z;Júlio Cesar;2601.988;115995777;Mexico; -2018-11-15T22:22:01Z;Sandra;2196.32;114442024;Mexico; -2018-11-15T21:30:23Z;Armando;1331.584;116137806;Mexico; -2018-11-15T20:48:24Z;Júlio;641.1645;116001702;Mexico; -2018-11-15T19:59:55Z;Ana;3445.111;115064710;Mexico; -2018-11-15T19:42:47Z;Eduardo;1665.41;114646681;Mexico; -2018-11-15T19:37:50Z;Júlio;1791.411;114422560;Mexico; -2018-11-15T19:18:31Z;Nathália;5637.596;114930600;Mexico; -2018-11-15T18:54:38Z;Júlio;579.357;115790320;Mexico; -2018-11-15T18:45:54Z;Ana;2340.974;116327831;Mexico; -2018-11-15T17:56:32Z;Armando;414.7431;115334403;Mexico; -2018-11-15T17:55:12Z;Eduardo;1970.721;114596494;Mexico; -2018-11-15T17:27:42Z;Júlio;4663.99;115510140;Mexico; -2018-11-15T17:12:25Z;Sandra;4494.047;115768369;Mexico; -2018-11-15T17:08:26Z;Armando;1208.398;114804310;Mexico; -2018-11-15T17:02:41Z;Armando;429.9429;115926407;Mexico; -2018-11-15T16:38:21Z;Armando;2178.861;114864456;Mexico; -2018-11-15T16:26:15Z;Nathália;1565.092;115769368;Mexico; -2018-11-15T15:57:15Z;Nathália;7580.645;115074018;Mexico; -2018-11-15T15:52:02Z;Ana;5335.743;116245766;Mexico; -2018-11-15T15:30:32Z;Armando;3125.428;114782224;Mexico; -2018-11-15T15:19:42Z;nathalia;2134.779;114883206;Mexico; -2018-11-15T15:19:24Z;Sandra;1169.521;116022423;Mexico; -2018-11-15T15:01:49Z;Ana;2072.893;115040675;Mexico; -2018-11-15T14:59:50Z;Ana;3644.183;114580689;Mexico; -2018-11-15T14:37:08Z;Sandra;3136.948;115865923;Mexico; -2018-11-15T14:32:47Z;Eduardo;1110.819;116338736;Mexico; -2018-11-15T14:17:46Z;Júlio Cesar;1104.939;115748574;Mexico; -2018-11-15T13:52:45Z;Ana;1362.072;115000587;Mexico; -2018-11-15T13:25:10Z;nathalia;2636.489;115743928;Mexico; -2018-11-15T13:16:46Z;Eduardo;2479.566;116148695;Mexico; -2018-11-15T12:55:23Z;Júlio;1372.716;116243801;Mexico; -2018-11-15T12:50:36Z;Nathália;2485.049;115173550;Mexico; -2018-11-15T12:49:15Z;Eduardo;2234.282;116127104;Mexico; -2018-11-15T12:46:25Z;Júlio Cesar;1059.609;114584907;Mexico; -2018-11-15T12:09:25Z;Sandra;1251.009;115603239;Mexico; -2018-11-15T12:04:39Z;Júlio;423.8083;114220884;Mexico; -2018-11-15T11:42:53Z;Sandra;312.1906;114588680;Mexico; -2018-11-15T11:42:06Z;Ana;960.5417;114255666;Mexico; -2018-11-15T11:25:47Z;Ana;54.29205;114431010;Mexico; -2018-11-15T11:18:25Z;Armando;1057.382;116372773;Mexico; -2018-11-15T11:10:51Z;Júlio Cesar;4193.902;114804371;Mexico; -2018-11-15T11:01:37Z;Armando;95.60429;115938141;Mexico; -2018-11-15T10:51:19Z;Júlio Cesar;3561.162;115756224;Mexico; -2018-11-15T10:41:24Z;Sandra;1720.809;115255166;Mexico; -2018-11-15T10:13:58Z;Júlio;1167.872;114907572;Mexico; -2018-11-15T10:01:06Z;Ana;247.3388;116251705;Mexico; -2018-11-15T09:39:42Z;Júlio;1615.557;116123821;Mexico; -2018-11-15T09:34:00Z;Eduardo;4115.196;115600507;Mexico; -2018-11-15T09:22:23Z;Nathália;28.86354;115867111;Mexico; -2018-11-15T09:20:14Z;Armando;32.41555;115512503;Mexico; -2018-11-15T09:18:57Z;Eduardo;2319.928;115310921;Mexico; -2018-11-15T09:01:12Z;Nathália;109.0935;116375948;Mexico; -2018-11-15T08:40:37Z;nathalia;217.3699;114539049;Mexico; -2018-11-15T08:03:54Z;Sandra;368.9936;115393233;Mexico; -2018-11-15T07:25:24Z;Armando;2562.85;114657441;Mexico; -2018-11-15T06:59:17Z;Eduardo;131.618;114683795;Mexico; -2018-11-15T06:58:38Z;Armando;102.3479;115773777;Mexico; -2018-11-15T06:35:25Z;Eduardo;1213.848;116279161;Mexico; -2018-11-15T06:32:40Z;nathalia;610.6491;115646010;Mexico; -2018-11-15T06:29:32Z;Júlio;2888.169;115992458;Mexico; -2018-11-15T06:08:51Z;Sandra;5145.446;116262792;Mexico; -2018-11-15T05:32:57Z;Sandra;821.4189;116397576;Mexico; -2018-11-15T05:30:42Z;Ana;5165.125;115506696;Mexico; -2018-11-15T04:50:22Z;Júlio;881.3353;114205359;Mexico; -2018-11-15T04:10:26Z;Júlio Cesar;488.0275;115155847;Mexico; -2018-11-15T04:07:18Z;Eduardo;174.4275;115803815;Mexico; -2018-11-15T04:01:53Z;Júlio Cesar;378.6915;116251056;Mexico; -2018-11-15T03:52:04Z;Júlio Cesar;2038.132;114584192;Mexico; -2018-11-15T03:46:54Z;Armando;1156.743;115772907;Mexico; -2018-11-15T03:25:30Z;Júlio;400.3826;115625444;Mexico; -2018-11-15T03:16:44Z;Júlio;2115.171;115611196;Mexico; -2018-11-15T03:14:42Z;Nathália;3281.261;114538874;Mexico; -2018-11-15T02:24:48Z;Armando;1191.44;115633684;Mexico; -2018-11-15T02:15:27Z;Armando;27.80237;116307974;Mexico; -2018-11-15T02:07:11Z;Eduardo;2037.259;114736692;Mexico; -2018-11-15T01:55:19Z;Júlio Cesar;3011.024;115143615;Mexico; -2018-11-15T01:35:48Z;Sandra;4466.86;115776219;Mexico; -2018-11-15T01:30:52Z;Sandra;1820.201;115069485;Mexico; -2018-11-15T01:19:50Z;Nathália;1050.097;114223761;Mexico; -2018-11-15T00:46:46Z;Nathália;1524.574;114922770;Mexico; -2018-11-15T00:39:13Z;nathalia;606.4028;114618692;Mexico; -2018-11-14T23:51:54Z;Armando;3364.622;115407287;Mexico; -2018-11-14T23:31:42Z;Eduardo;502.9071;116346932;Mexico; -2018-11-14T23:20:45Z;nathalia;2361.89;115917925;Mexico; -2018-11-14T23:03:46Z;Ana;275.8641;116377006;Mexico; -2018-11-14T22:56:35Z;Júlio Cesar;466.8635;115231594;Mexico; -2018-11-14T22:52:25Z;Nathália;1230.747;115464794;Mexico; -2018-11-14T22:29:45Z;Nathália;165.3538;115732941;Mexico; -2018-11-14T22:28:13Z;Júlio;2292.992;115665447;Mexico; -2018-11-14T22:20:30Z;Eduardo;1066.828;114954430;Mexico; -2018-11-14T22:16:29Z;nathalia;985.0268;115109860;Mexico; -2018-11-14T21:49:59Z;nathalia;61.0318;116248946;Mexico; -2018-11-14T21:49:46Z;Eduardo;41.0317;115274409;Mexico; -2018-11-14T21:43:59Z;nathalia;1027.005;115523229;Mexico; -2018-11-14T21:25:59Z;Júlio;687.9971;115727862;Mexico; -2018-11-14T21:09:24Z;Nathália;3550.35;114881880;Mexico; -2018-11-14T21:05:41Z;Armando;978.4152;115254938;Mexico; -2018-11-14T20:44:06Z;Nathália;4225.047;115909992;Mexico; -2018-11-14T20:38:48Z;Ana;2164.345;114551241;Mexico; -2018-11-14T20:27:36Z;Eduardo;1344.897;115194714;Mexico; -2018-11-14T20:13:15Z;Júlio;6240.906;114941947;Mexico; -2018-11-14T20:06:07Z;Eduardo;3529.865;114766291;Mexico; -2018-11-14T20:05:23Z;Armando;1244.33;114927435;Mexico; -2018-11-14T20:04:41Z;nathalia;1107.062;115979692;Mexico; -2018-11-14T19:58:38Z;Eduardo;2477.509;115299746;Mexico; -2018-11-14T19:55:53Z;Júlio Cesar;2508.484;114880059;Mexico; -2018-11-14T19:40:23Z;Júlio Cesar;6222.678;116065665;Mexico; -2018-11-14T19:35:39Z;Eduardo;1064.308;115619205;Mexico; -2018-11-14T19:33:49Z;Júlio;359.0097;115297529;Mexico; -2018-11-14T19:31:41Z;Nathália;4453.893;114875894;Mexico; -2018-11-14T19:24:58Z;Júlio Cesar;1319.791;115401511;Mexico; -2018-11-14T19:06:38Z;nathalia;7387.768;115146056;Mexico; -2018-11-14T19:03:42Z;Eduardo;5029.15;114529624;Mexico; -2018-11-14T18:48:56Z;Armando;6030.133;115080113;Mexico; -2018-11-14T18:33:15Z;Júlio Cesar;3722.226;115410217;Mexico; -2018-11-14T18:20:09Z;Ana;1329.463;114845974;Mexico; -2018-11-14T18:16:55Z;Eduardo;888.4462;116259022;Mexico; -2018-11-14T18:07:44Z;nathalia;3577.715;114202487;Mexico; -2018-11-14T17:16:28Z;Júlio Cesar;5139.278;114803183;Mexico; -2018-11-14T17:04:35Z;Júlio;389.8967;114653168;Mexico; -2018-11-14T16:36:39Z;Sandra;3092.996;115846141;Mexico; -2018-11-14T15:44:04Z;Júlio;2033.464;115202940;Mexico; -2018-11-14T15:31:55Z;Júlio Cesar;256.9513;115781101;Mexico; -2018-11-14T15:06:34Z;Eduardo;4314.027;114663322;Mexico; -2018-11-14T14:53:42Z;Ana;872.2589;114412278;Mexico; -2018-11-14T14:46:42Z;Júlio Cesar;299.7841;116395596;Mexico; -2018-11-14T14:18:08Z;Ana;229.655;115369413;Mexico; -2018-11-14T14:17:21Z;Eduardo;2688.741;114412517;Mexico; -2018-11-14T14:16:14Z;Nathália;266.902;114356475;Mexico; -2018-11-14T14:14:14Z;Júlio;3657.526;114237272;Mexico; -2018-11-14T14:10:54Z;Ana;2571.363;114400817;Mexico; -2018-11-14T14:10:45Z;Armando;1844.169;115453843;Mexico; -2018-11-14T13:46:59Z;nathalia;797.7956;115840818;Mexico; -2018-11-14T13:33:30Z;Nathália;1707.787;116277206;Mexico; -2018-11-14T13:25:45Z;Eduardo;1393.954;114541051;Mexico; -2018-11-14T13:15:50Z;nathalia;2640.1;115854270;Mexico; -2018-11-14T13:14:03Z;Eduardo;2268.17;114974037;Mexico; -2018-11-14T12:48:19Z;nathalia;1865.546;114339518;Mexico; -2018-11-14T12:02:55Z;Sandra;1188.267;114714868;Mexico; -2018-11-14T11:49:16Z;Ana;1022.714;114597505;Mexico; -2018-11-14T11:27:29Z;Eduardo;840.7327;114761469;Mexico; -2018-11-14T11:10:38Z;nathalia;830.7531;114767019;Mexico; -2018-11-14T11:00:43Z;Nathália;3317.247;115196444;Mexico; -2018-11-14T10:43:05Z;Sandra;109.1022;115192391;Mexico; -2018-11-14T10:02:50Z;Júlio Cesar;132.3794;116378758;Mexico; -2018-11-14T09:55:05Z;Armando;140.1281;114706085;Mexico; -2018-11-14T09:43:52Z;Júlio Cesar;1542.183;114241191;Mexico; -2018-11-14T08:55:27Z;Ana;2008.127;115749310;Mexico; -2018-11-14T08:48:22Z;nathalia;2633.171;116232741;Mexico; -2018-11-14T08:18:55Z;Armando;308.7779;115693255;Mexico; -2018-11-14T08:14:41Z;nathalia;2117.554;114225542;Mexico; -2018-11-14T07:27:13Z;Júlio;1392.731;115777040;Mexico; -2018-11-14T07:16:59Z;Eduardo;2307.806;114435272;Mexico; -2018-11-14T07:12:21Z;Ana;141.5953;116249930;Mexico; -2018-11-14T06:40:22Z;Eduardo;941.254;115523320;Mexico; -2018-11-14T06:32:36Z;Armando;294.4476;115069812;Mexico; -2018-11-14T06:14:32Z;Júlio;1775.738;115496782;Mexico; -2018-11-14T05:44:10Z;Nathália;951.7751;114490745;Mexico; -2018-11-14T05:40:34Z;Júlio;738.2789;115108008;Mexico; -2018-11-14T05:28:36Z;Júlio;3108.52;115308471;Mexico; -2018-11-14T05:08:11Z;Nathália;2947.108;116208015;Mexico; -2018-11-14T04:59:26Z;Júlio Cesar;1805.031;115839418;Mexico; -2018-11-14T04:53:25Z;Júlio;3299.232;115051293;Mexico; -2018-11-14T04:41:41Z;Júlio Cesar;2327.352;114289914;Mexico; -2018-11-14T04:32:16Z;Nathália;3008.752;114922830;Mexico; -2018-11-14T04:29:18Z;Nathália;5186.669;115610709;Mexico; -2018-11-14T04:25:21Z;Nathália;2699.125;114986054;Mexico; -2018-11-14T04:12:39Z;Armando;1407.293;115723453;Mexico; -2018-11-14T04:10:44Z;Nathália;508.2547;115777224;Mexico; -2018-11-14T04:02:19Z;Júlio;19.42668;114670593;Mexico; -2018-11-14T03:00:57Z;Eduardo;3182.372;115962607;Mexico; -2018-11-14T02:59:58Z;Júlio;6012.155;114255798;Mexico; -2018-11-14T02:47:11Z;Sandra;2042.228;115468936;Mexico; -2018-11-14T02:42:16Z;Ana;68.05975;115580648;Mexico; -2018-11-14T02:29:15Z;Nathália;931.5112;115078634;Mexico; -2018-11-14T02:06:12Z;Júlio;565.8513;115520398;Mexico; -2018-11-14T01:59:12Z;Armando;4908.842;114982042;Mexico; -2018-11-14T01:53:14Z;Sandra;1902.3;116168800;Mexico; -2018-11-14T00:10:14Z;Armando;4612.44;114756345;Mexico; -2018-11-13T23:54:51Z;Júlio Cesar;5574.933;116101461;Mexico; -2018-11-13T23:49:58Z;Armando;1059.102;115768637;Mexico; -2018-11-13T23:39:29Z;Júlio Cesar;1171.251;114897080;Mexico; -2018-11-13T23:05:49Z;Júlio Cesar;290.7124;116364318;Mexico; -2018-11-13T22:55:08Z;Júlio;1641.133;114908546;Mexico; -2018-11-13T22:20:32Z;Sandra;2082.811;114962510;Mexico; -2018-11-13T22:05:36Z;Júlio;347.3536;116373811;Mexico; -2018-11-13T21:55:31Z;Ana;862.4201;116088847;Mexico; -2018-11-13T21:41:55Z;Ana;397.6163;115314635;Mexico; -2018-11-13T21:30:17Z;Júlio;2531.656;115453049;Mexico; -2018-11-13T19:32:46Z;Ana;1856.668;114291328;Mexico; -2018-11-13T19:00:55Z;Eduardo;633.1454;114246282;Mexico; -2018-11-13T18:57:11Z;Armando;4588.551;115252604;Mexico; -2018-11-13T18:44:59Z;Júlio Cesar;5748.565;115604727;Mexico; -2018-11-13T18:37:10Z;Sandra;149.156;116141667;Mexico; -2018-11-13T18:30:41Z;Júlio Cesar;4953.859;115702139;Mexico; -2018-11-13T18:28:50Z;Nathália;970.2523;116261939;Mexico; -2018-11-13T18:01:15Z;nathalia;1964.25;115203512;Mexico; -2018-11-13T17:26:19Z;nathalia;843.9097;115576603;Mexico; -2018-11-13T17:22:41Z;Sandra;2258.403;115620258;Mexico; -2018-11-13T17:07:14Z;Júlio Cesar;260.2736;114677197;Mexico; -2018-11-13T16:49:32Z;Júlio Cesar;7446.577;115904883;Mexico; -2018-11-13T15:26:02Z;nathalia;2368.804;115379494;Mexico; -2018-11-13T15:09:46Z;nathalia;495.8214;114736825;Mexico; -2018-11-13T14:52:07Z;Eduardo;3213.272;114985790;Mexico; -2018-11-13T14:49:08Z;nathalia;960.0864;115713891;Mexico; -2018-11-13T14:19:41Z;Armando;2506.115;114664047;Mexico; -2018-11-13T13:39:27Z;Júlio;109.6219;115006598;Mexico; -2018-11-13T13:26:40Z;nathalia;1038.854;115043825;Mexico; -2018-11-13T12:56:57Z;nathalia;3655.076;114498153;Mexico; -2018-11-13T12:32:31Z;Nathália;5342.977;114667414;Mexico; -2018-11-13T12:30:37Z;Armando;884.3963;114251912;Mexico; -2018-11-13T12:17:46Z;Armando;4206.644;114799199;Mexico; -2018-11-13T12:13:00Z;Eduardo;2.688768;114346051;Mexico; -2018-11-13T11:52:19Z;Júlio;2638.939;115956771;Mexico; -2018-11-13T11:45:27Z;Júlio Cesar;414.1815;115341989;Mexico; -2018-11-13T11:31:08Z;Júlio Cesar;1308.686;116213199;Mexico; -2018-11-13T11:19:50Z;Ana;886.1608;114622981;Mexico; -2018-11-13T11:17:58Z;Armando;9.39341;115292984;Mexico; -2018-11-13T11:02:34Z;Eduardo;420.5551;115620583;Mexico; -2018-11-13T10:07:13Z;Nathália;1423.335;114278563;Mexico; -2018-11-13T10:03:45Z;Armando;1544.916;115095102;Mexico; -2018-11-13T09:24:09Z;Eduardo;136.2943;115201934;Mexico; -2018-11-13T09:22:06Z;Júlio Cesar;2010.896;115338353;Mexico; -2018-11-13T09:14:48Z;Júlio Cesar;234.416;116045523;Mexico; -2018-11-13T08:46:36Z;Júlio;1220.986;115293807;Mexico; -2018-11-13T08:40:04Z;Eduardo;103.0166;116394681;Mexico; -2018-11-13T07:58:47Z;Armando;635.519;114276664;Mexico; -2018-11-13T07:11:20Z;nathalia;469.5557;116115479;Mexico; -2018-11-13T07:08:00Z;Ana;1442.525;115397204;Mexico; -2018-11-13T06:53:33Z;Nathália;848.781;115535695;Mexico; -2018-11-13T06:27:21Z;Júlio Cesar;1408.782;115146221;Mexico; -2018-11-13T06:21:36Z;Eduardo;1123.275;115691427;Mexico; -2018-11-13T06:07:27Z;Ana;4073.581;114683818;Mexico; -2018-11-13T06:04:20Z;Armando;3753.849;114913695;Mexico; -2018-11-13T06:02:07Z;nathalia;2998.002;114754180;Mexico; -2018-11-13T05:48:37Z;Nathália;1383.677;114656834;Mexico; -2018-11-13T05:41:13Z;Nathália;1471.342;116136848;Mexico; -2018-11-13T05:08:58Z;Júlio Cesar;3999.88;116057613;Mexico; -2018-11-13T05:08:50Z;Júlio Cesar;1126.152;115226023;Mexico; -2018-11-13T05:07:59Z;Júlio;3847.601;115945622;Mexico; -2018-11-13T05:06:59Z;Armando;4596.803;116082475;Mexico; -2018-11-13T05:00:46Z;Ana;4498.182;115718505;Mexico; -2018-11-13T04:52:44Z;Júlio;4793.922;115614304;Mexico; -2018-11-13T04:43:23Z;Eduardo;218.2371;116377352;Mexico; -2018-11-13T04:40:53Z;Ana;750.8989;114785328;Mexico; -2018-11-13T04:08:27Z;Sandra;2643.709;115520841;Mexico; -2018-11-13T03:56:25Z;Ana;5034.607;114571723;Mexico; -2018-11-13T03:10:01Z;Júlio;3916.355;116251522;Mexico; -2018-11-13T03:08:53Z;Sandra;2844.671;114290828;Mexico; -2018-11-13T02:55:35Z;Júlio;841.6329;114544171;Mexico; -2018-11-13T02:52:36Z;Eduardo;2698.008;114621800;Mexico; -2018-11-13T02:23:58Z;Júlio Cesar;204.5327;115267306;Mexico; -2018-11-13T02:12:16Z;Júlio Cesar;200.9917;115098096;Mexico; -2018-11-13T02:10:21Z;Sandra;188.2115;115504405;Mexico; -2018-11-13T01:30:12Z;Júlio;1510.275;115435166;Mexico; -2018-11-13T00:55:52Z;Ana;3017.214;116127475;Mexico; -2018-11-13T00:40:44Z;Nathália;957.9087;114909328;Mexico; -2018-11-13T00:37:43Z;Nathália;1900.37;115183185;Mexico; -2018-12-06T21:48:54Z;Sandra;4830.607;114588002;Peru; -2018-12-06T21:42:54Z;Sandra;4098.347;116293275;Peru; -2018-12-06T21:34:09Z;Júlio Cesar;2363.088;114793907;Peru; -2018-12-06T21:10:07Z;Ana;5648.74;115591439;Peru; -2018-12-06T21:09:18Z;nathalia;446.4653;114939043;Peru; -2018-12-06T20:43:39Z;Eduardo;79.83377;116345333;Peru; -2018-12-06T20:40:11Z;Júlio;697.3612;114932888;Peru; -2018-12-06T20:25:47Z;Júlio Cesar;3434.833;115287119;Peru; -2018-12-06T20:16:39Z;Armando;1308.204;115504060;Peru; -2018-12-06T20:09:49Z;Nathália;3285.853;116117324;Peru; -2018-12-06T20:00:03Z;Armando;5090.043;116220873;Peru; -2018-12-06T19:57:17Z;nathalia;69.34432;116191822;Peru; -2018-12-06T19:20:18Z;Sandra;2451.12;116215434;Peru; -2018-12-06T18:59:44Z;nathalia;3396.494;114514430;Peru; -2018-12-06T18:42:11Z;Sandra;4761.761;116256167;Peru; -2018-12-06T18:19:34Z;Armando;406.3698;114782664;Peru; -2018-12-06T17:49:48Z;Armando;10427.54;114806745;Peru; -2018-12-06T17:48:52Z;Armando;521.312;114479133;Peru; -2018-12-06T17:42:48Z;Eduardo;936.6427;116191900;Peru; -2018-12-06T17:36:22Z;Júlio;7064.189;115378866;Peru; -2018-12-06T17:14:45Z;Armando;2700.462;114786624;Peru; -2018-12-06T17:10:49Z;nathalia;10147.48;115500483;Peru; -2018-12-06T17:08:57Z;Sandra;3870.188;115381896;Peru; -2018-12-06T17:07:53Z;Sandra;3252.357;114246016;Peru; -2018-12-06T17:04:40Z;Ana;3752.471;115639161;Peru; -2018-12-06T16:58:15Z;Júlio;2458.774;114585814;Peru; -2018-12-06T16:55:13Z;nathalia;3141.904;114698944;Peru; -2018-12-06T16:25:09Z;Nathália;3573.769;116372519;Peru; -2018-12-06T16:12:38Z;Eduardo;5956.311;114204039;Peru; -2018-12-06T16:06:04Z;Júlio Cesar;7187.371;115858173;Peru; -2018-12-06T15:59:30Z;nathalia;3679.482;115433670;Peru; -2018-12-06T15:56:49Z;Sandra;9014.154;115072214;Peru; -2018-12-06T15:52:02Z;Armando;6603.038;115607626;Peru; -2018-12-06T15:51:23Z;Sandra;2053.723;115695151;Peru; -2018-12-06T15:37:35Z;Nathália;1017.935;114299194;Peru; -2018-12-06T15:35:54Z;Ana;84.3191;115531876;Peru; -2018-12-06T15:32:38Z;Júlio Cesar;1214.547;115490105;Peru; -2018-12-06T15:15:38Z;Ana;4170.994;115251098;Peru; -2018-12-06T15:02:11Z;Eduardo;3978.304;114379072;Peru; -2018-12-06T14:39:24Z;Sandra;5430.914;115090204;Peru; -2018-12-06T14:35:08Z;nathalia;7299.314;115916737;Peru; -2018-12-06T14:34:25Z;Ana;5591.438;114309898;Peru; -2018-12-06T14:29:38Z;Ana;851.8108;114335037;Peru; -2018-12-06T14:15:51Z;Eduardo;597.3871;116118763;Peru; -2018-12-06T13:48:23Z;Júlio;713.6113;115275993;Peru; -2018-12-06T13:32:11Z;Júlio;8859.963;116023802;Peru; -2018-12-06T13:18:31Z;Sandra;9062.275;115365692;Peru; -2018-12-06T13:15:17Z;Sandra;11377.43;115772005;Peru; -2018-12-06T13:07:15Z;Eduardo;5760.758;114755916;Peru; -2018-12-06T12:18:03Z;Júlio;1160.847;114455624;Peru; -2018-12-06T11:33:47Z;Nathália;2014.672;114870723;Peru; -2018-12-06T11:20:23Z;Nathália;860.3632;116347523;Peru; -2018-12-06T11:11:05Z;Eduardo;4323.04;116087998;Peru; -2018-12-06T11:04:58Z;Júlio;1195.48;115340510;Peru; -2018-12-06T11:03:25Z;Ana;7812.859;115367993;Peru; -2018-12-06T10:48:23Z;Eduardo;289.312;114216419;Peru; -2018-12-06T10:29:23Z;Júlio;1857.636;116087896;Peru; -2018-12-06T10:29:20Z;Nathália;3750.111;115444978;Peru; -2018-12-06T10:25:10Z;Ana;8992.713;114294067;Peru; -2018-12-06T10:21:41Z;Sandra;10259.18;114405748;Peru; -2018-12-06T10:19:19Z;nathalia;2135.251;114220766;Peru; -2018-12-06T10:18:01Z;Ana;1011.408;114720305;Peru; -2018-12-06T10:16:40Z;Júlio Cesar;8532.492;115405061;Peru; -2018-12-06T09:39:53Z;Júlio Cesar;7392.432;114832778;Peru; -2018-12-06T09:24:18Z;Júlio;6997.622;115254491;Peru; -2018-12-06T09:00:55Z;Armando;4343.326;115732977;Peru; -2018-12-06T08:52:09Z;Nathália;4593.627;114547222;Peru; -2018-12-06T08:25:31Z;nathalia;1743.442;115188650;Peru; -2018-12-06T08:23:21Z;Ana;1570.13;115830268;Peru; -2018-12-06T07:53:54Z;Armando;9391.677;115273699;Peru; -2018-12-06T07:18:46Z;Ana;3373.106;114901930;Peru; -2018-12-06T06:52:46Z;Sandra;4084.747;114571067;Peru; -2018-12-06T06:40:23Z;Sandra;1877.788;116161318;Peru; -2018-12-06T06:27:26Z;Nathália;454.866;116118430;Peru; -2018-12-06T06:15:23Z;Júlio Cesar;1601.953;114895599;Peru; -2018-12-06T06:00:49Z;nathalia;2204.9;114352229;Peru; -2018-12-06T05:46:07Z;Armando;1040.421;114570278;Peru; -2018-12-06T05:35:34Z;Ana;2852.32;114357708;Peru; -2018-12-06T05:29:15Z;Armando;342.9857;115882320;Peru; -2018-12-06T05:07:10Z;Sandra;3035.703;114905794;Peru; -2018-12-06T05:05:54Z;Júlio Cesar;5564.867;114468435;Peru; -2018-12-06T04:59:17Z;Júlio Cesar;2202.836;116220482;Peru; -2018-12-06T04:44:27Z;Nathália;10386.44;116174006;Peru; -2018-12-06T04:30:40Z;Eduardo;528.1894;115496935;Peru; -2018-12-06T04:25:57Z;Ana;762.5657;115959259;Peru; -2018-12-06T04:22:05Z;nathalia;6016.455;114570225;Peru; -2018-12-06T04:12:19Z;Júlio Cesar;5834.55;115990321;Peru; -2018-12-06T04:06:58Z;Nathália;4662.96;115803477;Peru; -2018-12-06T04:06:09Z;Eduardo;3586.98;115186460;Peru; -2018-12-06T04:02:05Z;nathalia;9839.032;116134066;Peru; -2018-12-06T04:01:13Z;nathalia;1251.252;115611774;Peru; -2018-12-06T03:48:27Z;Nathália;4990.577;115726861;Peru; -2018-12-06T03:47:40Z;nathalia;3122.612;115909276;Peru; -2018-12-06T03:42:53Z;Sandra;5073.572;116113670;Peru; -2018-12-06T03:33:08Z;Nathália;2443.056;115845417;Peru; -2018-12-06T02:52:53Z;Júlio;7400.655;114848059;Peru; -2018-12-06T02:36:05Z;Ana;785.7827;115685599;Peru; -2018-12-06T02:22:05Z;Sandra;3377.109;114593401;Peru; -2018-12-06T01:57:00Z;Júlio Cesar;4643.014;114566302;Peru; -2018-12-06T01:33:33Z;Sandra;1065.084;114961899;Peru; -2018-12-06T01:31:21Z;Júlio Cesar;1678.433;114555852;Peru; -2018-12-06T01:25:44Z;nathalia;5286.825;115530978;Peru; -2018-12-06T01:24:04Z;Júlio;5870.063;114330290;Peru; -2018-12-06T01:08:40Z;nathalia;4106.673;116251129;Peru; -2018-12-06T01:01:58Z;Júlio Cesar;575.3149;114991898;Peru; -2018-12-06T01:01:36Z;Ana;5044.007;114742263;Peru; -2018-12-06T00:58:19Z;Júlio Cesar;3210.607;115125369;Peru; -2018-12-06T00:46:25Z;Sandra;5848.597;116370653;Peru; -2018-12-06T00:25:06Z;Armando;2835.243;115984002;Peru; -2018-12-06T00:08:27Z;Nathália;940.6619;115733928;Peru; -2018-12-06T00:00:48Z;Eduardo;237.0196;116389811;Peru; -2018-12-05T23:48:05Z;nathalia;3375.464;114356399;Peru; -2018-12-05T23:40:05Z;Eduardo;4149.641;114478906;Peru; -2018-12-05T23:03:47Z;Sandra;9104.018;115578204;Peru; -2018-12-05T22:21:13Z;Eduardo;3147.76;115969736;Peru; -2018-12-05T22:17:28Z;Eduardo;1881.961;116316411;Peru; -2018-12-05T22:11:29Z;Armando;5902.583;116245255;Peru; -2018-12-05T22:07:49Z;Armando;5812.047;115358143;Peru; -2018-12-05T22:06:19Z;Nathália;7379.839;115263854;Peru; -2018-12-05T20:59:15Z;Armando;4185.46;116007956;Peru; -2018-12-05T20:47:19Z;Júlio;8885.949;114991407;Peru; -2018-12-05T20:10:34Z;Nathália;3324.597;114387911;Peru; -2018-12-05T19:59:39Z;Eduardo;3502.953;116076121;Peru; -2018-12-05T19:49:39Z;Nathália;7160.67;116365619;Peru; -2018-12-05T19:44:59Z;Júlio;1341.972;115792135;Peru; -2018-12-05T19:41:55Z;Júlio Cesar;8362.849;115961955;Peru; -2018-12-05T19:24:26Z;Sandra;4673.524;116344472;Peru; -2018-12-05T19:10:34Z;Ana;1882.658;115957360;Peru; -2018-12-05T19:02:10Z;Ana;3682.58;114803461;Peru; -2018-12-05T18:48:51Z;Júlio;200.0719;114700117;Peru; -2018-12-05T18:46:15Z;Eduardo;3462.979;114337925;Peru; -2018-12-05T17:50:13Z;Nathália;3671.377;115945738;Peru; -2018-12-05T17:43:19Z;nathalia;2828.321;115411550;Peru; -2018-12-05T17:30:52Z;Júlio Cesar;4964.252;116216997;Peru; -2018-12-05T17:20:43Z;Sandra;1479.924;115988790;Peru; -2018-12-05T17:17:43Z;Ana;4574.891;115842568;Peru; -2018-12-05T17:00:46Z;nathalia;12965.51;116354440;Peru; -2018-12-05T16:40:06Z;Ana;4199.165;115987405;Peru; -2018-12-05T15:58:03Z;Júlio Cesar;7140.905;114581880;Peru; -2018-12-05T15:36:15Z;nathalia;5121.396;114750971;Peru; -2018-12-05T15:21:01Z;Sandra;5749.097;115258194;Peru; -2018-12-05T14:58:06Z;Júlio Cesar;7857.19;116264760;Peru; -2018-12-05T13:45:18Z;Júlio;1123.648;115199224;Peru; -2018-12-05T13:18:24Z;Armando;1486.584;115768341;Peru; -2018-12-05T13:03:06Z;Júlio;11287.57;115610469;Peru; -2018-12-05T12:35:55Z;Armando;2219.923;115076975;Peru; -2018-12-05T12:25:57Z;Ana;4688.46;115790045;Peru; -2018-12-05T11:46:44Z;Sandra;11187.17;115553194;Peru; -2018-12-05T11:43:15Z;Júlio Cesar;8085.324;115071918;Peru; -2018-12-05T11:17:05Z;Sandra;8343.08;115512304;Peru; -2018-12-05T11:00:01Z;Nathália;1461.105;115047595;Peru; -2018-12-05T10:59:27Z;Armando;3247.805;115406658;Peru; -2018-12-05T10:45:31Z;Ana;616.5352;116180632;Peru; -2018-12-05T10:35:57Z;Júlio Cesar;3788.355;115887231;Peru; -2018-12-05T10:09:01Z;Armando;7737.862;115167605;Peru; -2018-12-05T10:00:24Z;Ana;10017.25;114392560;Peru; -2018-12-05T09:29:40Z;Júlio;3199.647;115638067;Peru; -2018-12-05T09:23:07Z;Nathália;1649.723;114694953;Peru; -2018-12-05T09:21:17Z;Júlio;2207.154;115149979;Peru; -2018-12-05T08:56:32Z;Júlio Cesar;3003.291;115744761;Peru; -2018-12-05T08:35:33Z;Sandra;10999.92;114425469;Peru; -2018-12-05T08:26:50Z;Júlio;3020.924;115073446;Peru; -2018-12-05T08:20:16Z;Júlio Cesar;1224.49;114877808;Peru; -2018-12-05T08:17:48Z;Sandra;1727.995;115167137;Peru; -2018-12-05T08:15:15Z;Sandra;4973.499;115687838;Peru; -2018-12-05T07:58:25Z;Eduardo;5624.073;115048724;Peru; -2018-12-05T07:52:13Z;Nathália;155.3478;116157216;Peru; -2018-12-05T07:38:50Z;Ana;6867.676;116337858;Peru; -2018-12-05T07:37:31Z;Sandra;2199.879;114478670;Peru; -2018-12-05T07:29:47Z;nathalia;4572.901;114512927;Peru; -2018-12-05T07:18:53Z;Júlio Cesar;567.1394;114821899;Peru; -2018-12-05T07:13:10Z;Ana;1131.492;116349377;Peru; -2018-12-05T06:55:26Z;Júlio;1990.66;115331196;Peru; -2018-12-05T06:46:39Z;Nathália;1433.351;116289927;Peru; -2018-12-05T06:36:54Z;Nathália;3440.574;114419429;Peru; -2018-12-05T06:34:58Z;Ana;6125.316;115068010;Peru; -2018-12-05T05:50:20Z;Júlio Cesar;4768.996;115536271;Peru; -2018-12-05T05:27:19Z;Júlio Cesar;799.3125;116187518;Peru; -2018-12-05T05:09:02Z;Júlio Cesar;1828.829;116361920;Peru; -2018-12-05T04:56:24Z;nathalia;1729.517;114624162;Peru; -2018-12-05T04:21:07Z;Júlio Cesar;3865.004;116157699;Peru; -2018-12-05T04:20:23Z;Júlio;1568.906;114225258;Peru; -2018-12-05T04:11:35Z;Júlio;3521.515;115267185;Peru; -2018-12-05T04:01:32Z;Eduardo;3280.755;115587885;Peru; -2018-12-05T03:46:54Z;Júlio Cesar;1156.63;115926104;Peru; -2018-12-05T02:59:18Z;Nathália;1324.128;115233832;Peru; -2018-12-05T02:05:28Z;Sandra;4234.846;116251793;Peru; -2018-12-05T02:03:02Z;Ana;6683.04;114862044;Peru; -2018-12-05T01:56:34Z;Eduardo;360.1858;115692127;Peru; -2018-12-05T01:44:22Z;nathalia;466.8705;115828075;Peru; -2018-12-05T01:12:54Z;Júlio;1902.697;114212490;Peru; -2018-12-05T00:36:44Z;Júlio Cesar;518.0221;116170366;Peru; -2018-12-05T00:33:49Z;Sandra;6820.895;115979702;Peru; -2018-12-05T00:18:54Z;Nathália;5739.763;116178677;Peru; -2018-12-04T23:23:08Z;Sandra;5668.622;116232453;Peru; -2018-12-04T22:52:52Z;Ana;7224.904;114450538;Peru; -2018-12-04T22:37:49Z;Júlio Cesar;3157.893;114705307;Peru; -2018-12-04T22:36:32Z;Eduardo;6561.581;116065403;Peru; -2018-12-04T22:36:19Z;Júlio Cesar;3618.64;114950757;Peru; -2018-12-04T22:31:44Z;Nathália;4943.181;114597846;Peru; -2018-12-04T22:30:04Z;nathalia;5720.178;114546489;Peru; -2018-12-04T22:05:42Z;Nathália;5855.561;114576613;Peru; -2018-12-04T21:57:44Z;Júlio;5027.421;115995746;Peru; -2018-12-04T21:41:58Z;Júlio Cesar;4281.494;115022615;Peru; -2018-12-04T21:00:48Z;Nathália;6750.379;115870478;Peru; -2018-12-04T20:54:33Z;Júlio Cesar;6552.387;114940590;Peru; -2018-12-04T20:54:31Z;Eduardo;361.0193;116255987;Peru; -2018-12-04T20:41:17Z;Eduardo;380.4467;114764654;Peru; -2018-12-04T20:29:54Z;Ana;3468.299;115913445;Peru; -2018-12-04T20:21:55Z;nathalia;375.4197;115160988;Peru; -2018-12-04T20:10:03Z;Ana;2571.399;116010905;Peru; -2018-12-04T19:50:12Z;Júlio;129.4537;115390699;Peru; -2018-12-04T19:31:41Z;Júlio Cesar;12260.91;114204029;Peru; -2018-12-04T19:18:43Z;Júlio Cesar;2111.281;116125603;Peru; -2018-12-04T19:13:23Z;Ana;3007.314;114480746;Peru; -2018-12-04T19:08:14Z;Armando;1286.427;115453286;Peru; -2018-12-04T18:51:08Z;Júlio;1664.31;114211829;Peru; -2018-12-04T18:47:55Z;Ana;924.9032;114205919;Peru; -2018-12-04T18:31:53Z;nathalia;7590.705;114885604;Peru; -2018-12-04T18:01:41Z;Eduardo;7661.673;115943137;Peru; -2018-12-04T17:58:50Z;Armando;783.3742;116378206;Peru; -2018-12-04T16:56:51Z;Júlio;744.6093;115487499;Peru; -2018-12-04T16:48:10Z;Eduardo;4107.092;115908123;Peru; -2018-12-04T16:23:10Z;Nathália;3078.282;114493540;Peru; -2018-12-04T16:12:18Z;Júlio;2544.667;115418059;Peru; -2018-12-04T16:03:49Z;Júlio Cesar;3938.998;114610343;Peru; -2018-12-04T16:02:47Z;Sandra;5130.874;114278534;Peru; -2018-12-04T15:10:04Z;Nathália;6595.644;116351587;Peru; -2018-12-04T14:54:22Z;Sandra;12703.83;114553068;Peru; -2018-12-04T14:25:24Z;Eduardo;7954.566;115261802;Peru; -2018-12-04T14:18:36Z;Sandra;518.2669;115748912;Peru; -2018-12-04T14:18:34Z;Ana;7855.902;115644442;Peru; -2018-12-04T14:02:23Z;nathalia;6558.623;115796852;Peru; -2018-12-04T13:58:45Z;Armando;6853.613;116046146;Peru; -2018-12-04T13:36:18Z;nathalia;775.6725;114833139;Peru; -2018-12-04T13:04:35Z;Júlio;3948.998;115832476;Peru; -2018-12-04T12:50:44Z;Armando;995.407;116247169;Peru; -2018-12-04T12:33:41Z;Nathália;3462.662;114864966;Peru; -2018-12-04T12:08:44Z;nathalia;1683.964;114200373;Peru; -2018-12-04T11:44:31Z;nathalia;2588.59;115527493;Peru; -2018-12-04T11:25:10Z;Sandra;5347.002;115929383;Peru; -2018-12-04T11:21:29Z;Eduardo;2388.434;116351761;Peru; -2018-12-04T11:16:54Z;Eduardo;2601.446;115133693;Peru; -2018-12-04T11:03:11Z;Armando;6559.181;115626570;Peru; -2018-12-04T10:59:03Z;Nathália;3008.02;115343277;Peru; -2018-12-04T10:46:38Z;nathalia;4863.541;115356690;Peru; -2018-12-04T10:29:17Z;nathalia;1043.523;115129846;Peru; -2018-12-04T10:17:03Z;Sandra;5245.839;115266314;Peru; -2018-12-04T10:06:58Z;nathalia;11298.34;115161836;Peru; -2018-12-04T09:48:11Z;Júlio;106.6405;114398512;Peru; -2018-12-04T09:28:21Z;Sandra;3804.472;115733735;Peru; -2018-12-04T09:18:22Z;Nathália;1857.94;115521183;Peru; -2018-12-04T09:11:56Z;Sandra;1108.491;114715369;Peru; -2018-12-04T09:07:02Z;Júlio;2275.239;116306362;Peru; -2018-12-04T09:06:04Z;Nathália;3415.737;115855043;Peru; -2018-12-04T08:53:56Z;nathalia;154.8884;115120623;Peru; -2018-12-04T08:51:49Z;Eduardo;12336.18;114343812;Peru; -2018-12-04T08:25:05Z;Júlio Cesar;4490.397;116211224;Peru; -2018-12-04T07:59:39Z;Ana;2130.737;114724041;Peru; -2018-12-04T07:43:26Z;Júlio;256.6828;115531666;Peru; -2018-12-04T07:29:30Z;Júlio;1038.214;114547905;Peru; -2018-12-04T07:23:49Z;Ana;5256.541;115815991;Peru; -2018-12-04T07:23:32Z;Nathália;5421.518;114408451;Peru; -2018-12-04T07:04:30Z;nathalia;3347.03;115777852;Peru; -2018-12-04T06:56:02Z;nathalia;136.9247;115533565;Peru; -2018-12-04T06:46:47Z;nathalia;886.5018;115926615;Peru; -2018-12-04T06:39:05Z;Nathália;6695.486;114617805;Peru; -2018-12-04T06:18:59Z;Júlio Cesar;6271.827;115582705;Peru; -2018-12-04T06:18:04Z;Sandra;473.788;115471524;Peru; -2018-12-04T06:12:44Z;Nathália;918.9865;114383519;Peru; -2018-12-04T05:58:00Z;Eduardo;8744.701;115373135;Peru; -2018-12-04T05:32:07Z;Eduardo;1885.06;115240393;Peru; -2018-12-04T05:07:49Z;Júlio Cesar;5905.094;115070975;Peru; -2018-12-04T04:57:28Z;Júlio;822.55;115395468;Peru; -2018-12-04T04:30:17Z;Nathália;1864.191;114313260;Peru; -2018-12-04T04:29:42Z;Júlio Cesar;5637.535;114974625;Peru; -2018-12-04T04:17:36Z;Eduardo;5711.076;115456742;Peru; -2018-12-04T04:05:14Z;nathalia;5920.192;114784341;Peru; -2018-12-04T03:59:12Z;Júlio Cesar;1550.871;116096099;Peru; -2018-12-04T03:40:16Z;Júlio;3141.167;114365271;Peru; -2018-12-04T03:08:50Z;Júlio Cesar;1344.962;114717061;Peru; -2018-12-04T03:04:16Z;Júlio Cesar;4667.961;114810169;Peru; -2018-12-04T02:57:17Z;Armando;5810.804;114848666;Peru; -2018-12-04T02:55:53Z;Nathália;441.4884;114700687;Peru; -2018-12-04T02:54:41Z;Nathália;3343.375;114610854;Peru; -2018-12-04T02:36:39Z;Armando;8129.352;115651615;Peru; -2018-12-04T02:19:17Z;Júlio Cesar;2336.066;115742744;Peru; -2018-12-04T02:08:49Z;Armando;8336.246;115570919;Peru; -2018-12-04T02:01:16Z;Júlio;48.07837;115322497;Peru; -2018-12-04T01:52:16Z;Armando;112.5502;115791236;Peru; -2018-12-04T01:44:00Z;Armando;9864.665;114229812;Peru; -2018-12-04T01:22:43Z;nathalia;432.0442;115102628;Peru; -2018-12-04T01:09:53Z;Júlio;1003.112;115371651;Peru; -2018-12-04T00:34:54Z;Ana;3417.88;114318138;Peru; -2018-12-04T00:24:06Z;Eduardo;3542.031;114788298;Peru; -2018-12-04T00:19:38Z;nathalia;141.1899;114297150;Peru; -2018-12-04T00:02:22Z;Eduardo;2282.321;115813410;Peru; -2018-12-03T23:56:59Z;Armando;2612.735;114789881;Peru; -2018-12-03T23:50:48Z;Nathália;5815.013;115131882;Peru; -2018-12-03T23:41:19Z;Nathália;246.6619;116244898;Peru; -2018-12-03T23:32:17Z;Ana;2768.497;114410213;Peru; -2018-12-03T22:53:59Z;Armando;3986.091;116194429;Peru; -2018-12-03T22:49:00Z;Júlio;32.63858;115129003;Peru; -2018-12-03T21:36:17Z;Ana;13345.19;114542902;Peru; -2018-12-03T21:33:32Z;Júlio Cesar;2981.908;115452372;Peru; -2018-12-03T21:26:42Z;Júlio;3430.849;115558875;Peru; -2018-12-03T21:01:15Z;Armando;1731.235;115761955;Peru; -2018-12-03T20:40:22Z;Armando;1933.096;114884830;Peru; -2018-12-03T20:14:46Z;Júlio;6374.176;114511856;Peru; -2018-12-03T19:56:47Z;Júlio Cesar;721.0499;114957680;Peru; -2018-12-03T19:48:18Z;Eduardo;8751.912;115622423;Peru; -2018-12-03T19:24:01Z;Nathália;6888.744;116315525;Peru; -2018-12-03T19:15:12Z;Eduardo;2602.006;116329978;Peru; -2018-12-03T18:33:11Z;Júlio;7285.336;115125146;Peru; -2018-12-03T18:06:08Z;Júlio;5575.254;115287222;Peru; -2018-12-03T17:58:33Z;Júlio Cesar;4499.368;116009293;Peru; -2018-12-03T17:23:10Z;Nathália;12175.4;114243414;Peru; -2018-12-03T17:10:31Z;Nathália;5278.201;114726404;Peru; -2018-12-03T17:02:45Z;Eduardo;12176.67;115552721;Peru; -2018-12-03T16:40:29Z;Júlio Cesar;6717.015;116131713;Peru; -2018-12-03T16:33:23Z;Sandra;12878.52;114976946;Peru; -2018-12-03T15:59:42Z;Armando;4160.499;115875095;Peru; -2018-12-03T15:55:04Z;Júlio;3988.416;114955347;Peru; -2018-12-03T15:50:32Z;Armando;8118.093;114856875;Peru; -2018-12-03T15:48:09Z;Eduardo;6053.816;116124551;Peru; -2018-12-03T15:23:03Z;Eduardo;3818.513;116204648;Peru; -2018-12-03T15:10:41Z;Sandra;28.64532;115828706;Peru; -2018-12-03T14:33:01Z;Júlio Cesar;11347.59;114981303;Peru; -2018-12-03T14:32:49Z;Ana;1424.443;116264506;Peru; -2018-12-03T14:29:38Z;Júlio;1664.144;115012778;Peru; -2018-12-03T14:21:39Z;Júlio Cesar;1534.872;114310231;Peru; -2018-12-03T13:28:09Z;nathalia;4889.692;116174113;Peru; -2018-12-03T13:20:27Z;nathalia;8138.168;115511378;Peru; -2018-12-03T13:20:19Z;Júlio;824.3336;115103463;Peru; -2018-12-03T13:06:05Z;nathalia;969.4183;114722141;Peru; -2018-12-03T13:03:12Z;Nathália;5904.706;116111890;Peru; -2018-12-03T12:59:36Z;Júlio Cesar;7715.737;114201256;Peru; -2018-12-03T12:55:26Z;Sandra;5440.832;115819870;Peru; -2018-12-03T12:48:57Z;Armando;6098.198;114881619;Peru; -2018-12-03T12:47:25Z;Júlio;8040.963;114865552;Peru; -2018-12-03T12:23:20Z;nathalia;9107.429;115492478;Peru; -2018-12-03T11:15:55Z;Júlio;8531.336;115220588;Peru; -2018-12-03T11:10:24Z;Eduardo;3159.429;114655726;Peru; -2018-12-03T10:59:54Z;Júlio;6992.114;115988579;Peru; -2018-12-03T10:40:25Z;Eduardo;3477.832;115609322;Peru; -2018-12-03T10:34:27Z;Armando;11692.22;116308678;Peru; -2018-12-03T10:33:50Z;Ana;2212.122;114513802;Peru; -2018-12-03T10:26:32Z;Júlio Cesar;166.3287;115089912;Peru; -2018-12-03T10:24:27Z;Armando;7284.601;116186863;Peru; -2018-12-03T10:22:15Z;Armando;8739.11;116124162;Peru; -2018-12-03T10:20:10Z;Nathália;8837.489;115812248;Peru; -2018-12-03T10:18:44Z;Ana;424.8074;114376387;Peru; -2018-12-03T10:01:44Z;Armando;5713.423;116270164;Peru; -2018-12-03T09:54:05Z;Júlio;9543.902;114291423;Peru; -2018-12-03T09:06:03Z;Sandra;5042.405;114670655;Peru; -2018-12-03T09:04:57Z;Sandra;1361.33;115025278;Peru; -2018-12-03T08:55:18Z;Sandra;8249.264;115141014;Peru; -2018-12-03T08:45:42Z;Ana;6062.602;115336593;Peru; -2018-12-03T08:35:29Z;Armando;4490.319;116091968;Peru; -2018-12-03T08:23:00Z;Nathália;3995.192;114398592;Peru; -2018-12-03T08:20:41Z;nathalia;4245.227;115536622;Peru; -2018-12-03T08:10:05Z;nathalia;1287.962;115671904;Peru; -2018-12-03T08:05:50Z;nathalia;1146.576;115304399;Peru; -2018-12-03T07:49:24Z;Júlio Cesar;6267.883;114497348;Peru; -2018-12-03T07:44:43Z;Sandra;4498.57;116326623;Peru; -2018-12-03T07:42:44Z;nathalia;2585.423;114282932;Peru; -2018-12-03T07:20:49Z;Nathália;8362.166;115057470;Peru; -2018-12-03T06:50:10Z;Júlio;1265.428;115543921;Peru; -2018-12-03T06:35:13Z;nathalia;7044.551;115971152;Peru; -2018-12-03T05:54:44Z;Júlio;10100.4;115770111;Peru; -2018-12-03T05:42:59Z;Sandra;7656.165;114590455;Peru; -2018-12-03T05:33:33Z;Júlio;3303.702;115731298;Peru; -2018-12-03T05:31:04Z;Sandra;910.5926;115305041;Peru; -2018-12-03T05:23:40Z;Nathália;4887.17;115923591;Peru; -2018-12-03T05:01:49Z;Ana;7477.109;115211432;Peru; -2018-12-03T04:32:23Z;Armando;958.4108;116167310;Peru; -2018-12-03T04:22:07Z;Júlio Cesar;1821.994;114780493;Peru; -2018-12-03T03:53:23Z;Júlio;3568.609;116022953;Peru; -2018-12-03T03:45:15Z;nathalia;11018.07;115006800;Peru; -2018-12-03T03:39:57Z;Júlio;6061.934;114561764;Peru; -2018-12-03T03:33:22Z;Eduardo;3905.024;114610392;Peru; -2018-12-03T03:26:22Z;Ana;195.7344;116248697;Peru; -2018-12-03T03:22:54Z;Júlio;1205.738;115778377;Peru; -2018-12-03T03:10:46Z;nathalia;631.8427;114807084;Peru; -2018-12-03T02:43:22Z;Armando;2730.219;114285205;Peru; -2018-12-03T02:37:18Z;Sandra;1082.269;114982624;Peru; -2018-12-03T02:35:13Z;Armando;2928.331;114324940;Peru; -2018-12-03T02:33:50Z;Júlio;241.3975;115422633;Peru; -2018-12-03T02:27:58Z;Armando;2807.287;114843567;Peru; -2018-12-03T02:17:40Z;Júlio Cesar;1845.169;115618281;Peru; -2018-12-03T02:14:07Z;Nathália;5647.442;116290276;Peru; -2018-12-03T02:11:11Z;Nathália;4787.488;115605285;Peru; -2018-12-03T01:52:15Z;Ana;2315.677;115093920;Peru; -2018-12-03T01:46:19Z;Eduardo;300.2974;115056793;Peru; -2018-12-03T01:30:52Z;Ana;6571.723;115251328;Peru; -2018-12-03T01:16:52Z;Eduardo;956.6224;116304500;Peru; -2018-12-03T01:01:23Z;Júlio;6786.187;115109624;Peru; -2018-12-03T00:51:55Z;Eduardo;181.6212;116023492;Peru; -2018-12-03T00:39:34Z;Ana;9166.05;114703958;Peru; -2018-12-03T00:21:34Z;Armando;3956.807;114529290;Peru; -2018-12-03T00:20:26Z;Sandra;3091.054;115932837;Peru; -2018-12-03T00:18:11Z;Sandra;3370.385;115544720;Peru; -2018-12-03T00:15:01Z;Nathália;3610.092;114881420;Peru; -2018-12-02T23:28:36Z;Nathália;555.1256;115588736;Peru; -2018-12-02T22:49:26Z;Sandra;6348.99;114934966;Peru; -2018-12-02T22:16:14Z;Eduardo;1005.262;115804886;Peru; -2018-12-02T22:01:45Z;Júlio;3047.507;116073253;Peru; -2018-12-02T21:45:18Z;Eduardo;5018.706;116114936;Peru; -2018-12-02T21:32:44Z;Sandra;174.7419;114358655;Peru; -2018-12-02T21:18:49Z;Eduardo;699.4014;114311067;Peru; -2018-12-02T20:15:29Z;nathalia;8960.676;115815794;Peru; -2018-12-02T20:14:41Z;Armando;5663.144;116071335;Peru; -2018-12-02T19:58:28Z;nathalia;3574.331;115887863;Peru; -2018-12-02T19:54:00Z;Júlio Cesar;7134.291;114239114;Peru; -2018-12-02T19:43:30Z;nathalia;3827.003;116244771;Peru; -2018-12-02T19:39:27Z;Sandra;5815.146;115142099;Peru; -2018-12-02T19:26:22Z;Sandra;1438.638;115512767;Peru; -2018-12-02T18:41:01Z;Nathália;2420.646;115989996;Peru; -2018-12-02T18:35:01Z;Nathália;978.8141;116177686;Peru; -2018-12-02T18:08:15Z;Ana;6598.239;115298127;Peru; -2018-12-02T17:52:14Z;Armando;3203.002;114437925;Peru; -2018-12-02T17:44:21Z;Sandra;4722.728;115279676;Peru; -2018-12-02T17:14:07Z;Eduardo;5723.725;115419886;Peru; -2018-12-02T16:57:53Z;nathalia;247.9116;114609139;Peru; -2018-12-02T16:53:02Z;Sandra;3848.368;115641850;Peru; -2018-12-02T16:48:09Z;Eduardo;1748.399;115442890;Peru; -2018-12-02T16:44:47Z;Ana;2487.579;115364416;Peru; -2018-12-02T16:42:41Z;Sandra;2233.658;115516363;Peru; -2018-12-02T16:41:03Z;nathalia;3162.475;114200359;Peru; -2018-12-02T16:24:51Z;Júlio Cesar;718.1889;114711329;Peru; -2018-12-02T16:15:54Z;Armando;7992.34;115894432;Peru; -2018-12-02T15:36:55Z;nathalia;29.26008;115577903;Peru; -2018-12-02T15:21:46Z;Sandra;12475.93;115455461;Peru; -2018-12-02T15:20:13Z;Armando;3574.265;114984325;Peru; -2018-12-02T15:19:50Z;Nathália;7864.234;115725614;Peru; -2018-12-02T15:04:57Z;Júlio Cesar;778.1023;116189701;Peru; -2018-12-02T14:59:43Z;Ana;16487.15;114326690;Peru; -2018-12-02T14:49:36Z;Armando;3340.72;114833558;Peru; -2018-12-02T14:46:33Z;Armando;1869.401;115741149;Peru; -2018-12-02T14:37:11Z;Ana;5089.422;115974549;Peru; -2018-12-02T14:34:20Z;Eduardo;251.8034;114896567;Peru; -2018-12-02T14:28:39Z;nathalia;2539.997;115329935;Peru; -2018-12-02T14:13:23Z;Sandra;8255.059;115526056;Peru; -2018-12-02T14:12:01Z;Júlio;6027.925;115566302;Peru; -2018-12-02T14:03:01Z;Eduardo;1044.071;115681466;Peru; -2018-12-02T13:58:18Z;Eduardo;1420.688;115209589;Peru; -2018-12-02T13:44:36Z;Ana;6355.376;114386307;Peru; -2018-12-02T13:39:31Z;Júlio Cesar;3777.55;114217133;Peru; -2018-12-02T13:35:57Z;nathalia;10975.9;115370535;Peru; -2018-12-02T13:35:21Z;Júlio Cesar;6740.254;116157516;Peru; -2018-12-02T13:19:49Z;Júlio Cesar;13152.08;115434522;Peru; -2018-12-02T13:15:53Z;Eduardo;15603.37;116251673;Peru; -2018-12-02T12:48:01Z;Júlio;2628.691;115756302;Peru; -2018-12-02T12:42:59Z;Sandra;8848.782;115356624;Peru; -2018-12-02T12:40:14Z;Sandra;6515.267;114279373;Peru; -2018-12-02T12:29:36Z;Eduardo;7107.35;115849994;Peru; -2018-12-02T12:26:34Z;Júlio;2501.7;114896992;Peru; -2018-12-02T11:25:44Z;Júlio;2416.439;115803790;Peru; -2018-12-02T10:49:18Z;Ana;4540.138;114870707;Peru; -2018-12-02T10:15:36Z;Nathália;5460.088;115829763;Peru; -2018-12-02T10:09:07Z;Nathália;2380.975;115535484;Peru; -2018-12-02T09:55:45Z;nathalia;20.49685;114615299;Peru; -2018-12-02T09:35:55Z;Armando;181.9364;114311221;Peru; -2018-12-02T08:55:18Z;Nathália;5489.535;114400933;Peru; -2018-12-02T08:47:56Z;Nathália;5122.264;114535610;Peru; -2018-12-02T08:28:56Z;nathalia;1029.133;115596615;Peru; -2018-12-02T08:15:58Z;Ana;1497.829;115393496;Peru; -2018-12-02T07:37:50Z;Armando;8586.351;116098411;Peru; -2018-12-02T07:37:09Z;nathalia;6044.529;115522701;Peru; -2018-12-02T07:05:04Z;Nathália;12388.36;116046203;Peru; -2018-12-02T07:04:35Z;Sandra;786.7644;114949783;Peru; -2018-12-02T07:01:37Z;nathalia;11780.15;115057465;Peru; -2018-12-02T06:51:10Z;Nathália;5994.247;114282559;Peru; -2018-12-02T06:20:04Z;Júlio;1551.745;114525839;Peru; -2018-12-02T06:16:13Z;Ana;1348.853;115071227;Peru; -2018-12-02T06:16:09Z;nathalia;8803.105;115125736;Peru; -2018-12-02T05:46:44Z;Sandra;8847.18;115288618;Peru; -2018-12-02T05:42:15Z;Júlio;137.3268;116296204;Peru; -2018-12-02T05:27:43Z;Ana;5492.085;115629872;Peru; -2018-12-02T05:22:22Z;Eduardo;7154.722;116310239;Peru; -2018-12-02T05:21:18Z;Júlio Cesar;6195.562;114361123;Peru; -2018-12-02T05:10:10Z;Nathália;402.6189;115356127;Peru; -2018-12-02T05:06:08Z;Armando;8348.535;115528040;Peru; -2018-12-02T05:05:43Z;Eduardo;1187.481;116119393;Peru; -2018-12-02T04:56:35Z;Júlio;7839.348;115738130;Peru; -2018-12-02T04:55:35Z;Ana;3979.638;115749544;Peru; -2018-12-02T04:28:39Z;nathalia;2432.663;114760345;Peru; -2018-12-02T03:59:43Z;Júlio;2425.312;115948536;Peru; -2018-12-02T03:51:29Z;Júlio;1629.385;114829206;Peru; -2018-12-02T03:37:50Z;Sandra;4931.188;116266600;Peru; -2018-12-02T03:29:27Z;Sandra;3267.01;115826883;Peru; -2018-12-02T02:56:24Z;nathalia;1196.694;114444712;Peru; -2018-12-02T02:55:06Z;Júlio;8562.943;115708443;Peru; -2018-12-02T02:50:27Z;Eduardo;1879.825;115150523;Peru; -2018-12-02T02:32:07Z;Júlio;1643.494;115857552;Peru; -2018-12-02T01:45:02Z;Armando;678.4593;116042342;Peru; -2018-12-02T01:42:07Z;Eduardo;1528.117;115972348;Peru; -2018-12-02T01:21:49Z;Júlio Cesar;6311.293;115192103;Peru; -2018-12-02T00:58:54Z;nathalia;3576.439;115411876;Peru; -2018-12-02T00:24:38Z;Ana;6883.112;116272575;Peru; -2018-12-02T00:01:48Z;Nathália;1247.895;116365567;Peru; -2018-12-02T00:01:44Z;Ana;2096.716;116290517;Peru; -2018-12-01T23:51:21Z;Eduardo;4632.382;115705905;Peru; -2018-12-01T23:49:36Z;Nathália;1494.275;115004780;Peru; -2018-12-01T23:46:13Z;Armando;2395.616;114756762;Peru; -2018-12-01T23:37:00Z;Júlio;2463.383;115374215;Peru; -2018-12-01T23:16:41Z;Nathália;111.053;114267762;Peru; -2018-12-01T23:16:41Z;nathalia;8869.99;115913137;Peru; -2018-12-01T23:04:28Z;Armando;212.7301;114387869;Peru; -2018-12-01T22:59:55Z;nathalia;2465.579;115512830;Peru; -2018-12-01T22:55:07Z;Armando;3301.233;114684058;Peru; -2018-12-01T22:53:46Z;Eduardo;9304.437;115023958;Peru; -2018-12-01T22:25:09Z;Sandra;3894.673;115527329;Peru; -2018-12-01T22:20:56Z;Armando;2067.274;114987174;Peru; -2018-12-01T22:03:26Z;Eduardo;8609.303;116193734;Peru; -2018-12-01T22:01:36Z;Júlio Cesar;6196.27;116284277;Peru; -2018-12-01T21:47:06Z;Júlio;814.0011;116193560;Peru; -2018-12-01T20:59:17Z;Júlio;7262.671;114470979;Peru; -2018-12-01T20:36:00Z;Júlio Cesar;12682.35;114650454;Peru; -2018-12-01T20:28:22Z;Armando;8001.45;114526926;Peru; -2018-12-01T20:24:33Z;Armando;6303.152;116005908;Peru; -2018-12-01T20:13:28Z;Ana;6340.416;115393588;Peru; -2018-12-01T20:13:04Z;Sandra;5919.233;114680321;Peru; -2018-12-01T20:03:52Z;Armando;5186.339;114365049;Peru; -2018-12-01T20:00:19Z;Sandra;6821.69;116376655;Peru; -2018-12-01T19:25:41Z;nathalia;2662.926;116057811;Peru; -2018-12-01T18:34:03Z;Júlio Cesar;6513.719;114547293;Peru; -2018-12-01T18:32:36Z;Ana;3887.99;115389939;Peru; -2018-12-01T18:28:29Z;Nathália;4145.55;115637601;Peru; -2018-12-01T18:08:37Z;Ana;2603.546;116084549;Peru; -2018-12-01T18:06:02Z;Júlio Cesar;6260.563;114410850;Peru; -2018-12-01T17:42:15Z;Júlio Cesar;3104.876;114770810;Peru; -2018-12-01T17:17:36Z;Eduardo;226.1089;116041042;Peru; -2018-12-01T16:48:24Z;Eduardo;6585.095;115765711;Peru; -2018-12-01T16:32:43Z;nathalia;1860.174;114206916;Peru; -2018-12-01T16:28:24Z;Júlio;5383.668;116163775;Peru; -2018-12-01T16:11:40Z;Júlio;1274.129;115284781;Peru; -2018-12-01T15:54:40Z;Nathália;3804.518;115814551;Peru; -2018-12-01T15:19:52Z;Nathália;9289.291;115349990;Peru; -2018-12-01T15:16:51Z;Ana;762.6174;114579216;Peru; -2018-12-01T15:13:56Z;Eduardo;3468.175;115403419;Peru; -2018-12-01T14:53:48Z;Nathália;6791.487;115105568;Peru; -2018-12-01T14:30:09Z;Nathália;6441.24;114803291;Peru; -2018-12-01T14:06:11Z;Nathália;5840.745;115912530;Peru; -2018-12-01T14:05:29Z;nathalia;801.2523;114501432;Peru; -2018-12-01T13:56:28Z;Sandra;1521.791;116187505;Peru; -2018-12-01T13:25:42Z;Ana;5631.208;115206994;Peru; -2018-12-01T13:23:16Z;Sandra;2677.078;114895006;Peru; -2018-12-01T12:20:53Z;Eduardo;5717.203;114600391;Peru; -2018-12-01T11:27:53Z;nathalia;431.8631;114233613;Peru; -2018-12-01T11:24:32Z;nathalia;6607.293;114586862;Peru; -2018-12-01T10:46:52Z;Júlio Cesar;2143.584;114896842;Peru; -2018-12-01T09:53:19Z;Júlio Cesar;9972.398;116237977;Peru; -2018-12-01T09:10:52Z;Ana;1373.148;114397763;Peru; -2018-12-01T08:55:06Z;nathalia;10818.41;116187618;Peru; -2018-12-01T08:55:05Z;Sandra;2135.127;114738250;Peru; -2018-12-01T08:54:54Z;Júlio;3498.918;116122225;Peru; -2018-12-01T08:44:30Z;nathalia;10719.43;115632943;Peru; -2018-12-01T08:34:54Z;Ana;2829.934;115513740;Peru; -2018-12-01T08:28:24Z;Nathália;497.1094;116215108;Peru; -2018-12-01T07:32:38Z;Armando;2451.594;114355150;Peru; -2018-12-01T07:09:50Z;Júlio Cesar;1304.908;115618427;Peru; -2018-12-01T06:17:01Z;Júlio Cesar;342.875;115393658;Peru; -2018-12-01T06:12:40Z;Eduardo;10300.63;115792225;Peru; -2018-12-01T06:10:23Z;Júlio Cesar;5437.213;114248731;Peru; -2018-12-01T05:39:06Z;nathalia;2520.854;114698446;Peru; -2018-12-01T05:37:55Z;Armando;3341.355;115297789;Peru; -2018-12-01T05:29:16Z;Armando;5964.907;114638002;Peru; -2018-12-01T05:22:56Z;Nathália;4173.249;115442254;Peru; -2018-12-01T05:18:28Z;Nathália;1508.326;116143581;Peru; -2018-12-01T05:15:16Z;Nathália;7048.868;115508539;Peru; -2018-12-01T05:07:27Z;Sandra;4991.977;115295263;Peru; -2018-12-01T05:06:20Z;Nathália;4480.529;115170311;Peru; -2018-12-01T05:02:11Z;Ana;2821.133;115708828;Peru; -2018-12-01T04:39:39Z;Júlio;3331.354;114452068;Peru; -2018-12-01T04:25:13Z;Sandra;5907.806;116075334;Peru; -2018-12-01T04:24:30Z;Sandra;1215.196;116315903;Peru; -2018-12-01T04:17:18Z;Júlio;6428.515;114912308;Peru; -2018-12-01T04:12:18Z;Sandra;6542.489;114415874;Peru; -2018-12-01T03:25:26Z;Eduardo;1525.292;116042604;Peru; -2018-12-01T03:25:08Z;Sandra;6898.517;116073478;Peru; -2018-12-01T03:22:41Z;Nathália;1090.176;114272762;Peru; -2018-12-01T02:47:08Z;Júlio;9313.199;114918418;Peru; -2018-12-01T02:32:35Z;Ana;527.1447;114232278;Peru; -2018-12-01T01:58:11Z;Sandra;1701.037;115802646;Peru; -2018-12-01T01:10:05Z;nathalia;4380.077;116256756;Peru; -2018-12-01T00:59:07Z;nathalia;2625.07;116258916;Peru; -2018-12-01T00:48:46Z;Armando;2047.913;114313072;Peru; -2018-12-01T00:36:48Z;Júlio;7095.836;114925589;Peru; -2018-12-01T00:31:05Z;Ana;6251.474;115812679;Peru; -2018-12-01T00:03:23Z;Eduardo;394.7285;115523568;Peru; -2018-11-30T23:18:10Z;Armando;3583.207;114224550;Peru; -2018-11-30T23:11:57Z;Sandra;3287.041;114855875;Peru; -2018-11-30T22:55:23Z;Ana;2975.178;116260240;Peru; -2018-11-30T22:53:03Z;nathalia;3050.908;115399864;Peru; -2018-11-30T22:50:18Z;Júlio;2447.281;115138726;Peru; -2018-11-30T22:42:01Z;Júlio Cesar;3544.548;114808182;Peru; -2018-11-30T22:34:36Z;Júlio Cesar;1285.823;116078661;Peru; -2018-11-30T22:27:10Z;Sandra;4143.038;116168758;Peru; -2018-11-30T22:15:16Z;Nathália;3420.008;114639921;Peru; -2018-11-30T22:11:12Z;nathalia;10198.19;115270472;Peru; -2018-11-30T21:38:19Z;Eduardo;2295.582;114907023;Peru; -2018-11-30T21:26:38Z;nathalia;5908.865;115912317;Peru; -2018-11-30T21:23:56Z;Nathália;4033.635;115569883;Peru; -2018-11-30T21:10:33Z;Júlio;3085.27;116136098;Peru; -2018-11-30T21:06:39Z;Nathália;2692.709;116011259;Peru; -2018-11-30T20:53:23Z;Júlio;2053.424;114853006;Peru; -2018-11-30T20:38:46Z;Júlio Cesar;3450.867;114525438;Peru; -2018-11-30T20:25:10Z;Ana;8558.857;115347783;Peru; -2018-11-30T20:18:22Z;nathalia;1869.544;115739204;Peru; -2018-11-30T20:01:14Z;Júlio;2085.388;114477374;Peru; -2018-11-30T20:00:58Z;Eduardo;3974.436;115156072;Peru; -2018-11-30T19:55:53Z;nathalia;1054.33;114263543;Peru; -2018-11-30T19:25:30Z;Júlio Cesar;7465.541;115465192;Peru; -2018-11-30T19:22:32Z;Eduardo;6433.982;116019802;Peru; -2018-11-30T19:11:43Z;Júlio;6867.78;114990656;Peru; -2018-11-30T19:07:12Z;Ana;10665.7;116372011;Peru; -2018-11-30T18:46:17Z;nathalia;8643.947;115632504;Peru; -2018-11-30T18:18:39Z;Ana;46.08862;116133429;Peru; -2018-11-30T17:36:42Z;Armando;936.5413;115552473;Peru; -2018-11-30T17:35:03Z;Eduardo;5499.412;115588374;Peru; -2018-11-30T17:26:03Z;Júlio;8830.501;115899220;Peru; -2018-11-30T17:12:34Z;Júlio;5429.064;115228074;Peru; -2018-11-30T16:51:25Z;Sandra;5109.572;115773451;Peru; -2018-11-30T16:46:03Z;Júlio Cesar;6323.321;116311485;Peru; -2018-11-30T16:40:05Z;Nathália;3163.065;115298709;Peru; -2018-11-30T16:30:19Z;Júlio Cesar;2484.655;116134895;Peru; -2018-11-30T16:07:20Z;Júlio;3686.783;114408688;Peru; -2018-11-30T15:38:50Z;Júlio Cesar;4182.281;115873931;Peru; -2018-11-30T15:29:47Z;Júlio Cesar;5478.97;115980387;Peru; -2018-11-30T14:59:21Z;nathalia;2977.505;115384559;Peru; -2018-11-30T14:56:26Z;Ana;3719.305;114804955;Peru; -2018-11-30T14:53:46Z;nathalia;1304.016;114269260;Peru; -2018-11-30T14:34:53Z;Ana;5573.481;116340582;Peru; -2018-11-30T14:18:57Z;Sandra;3604.699;114315168;Peru; -2018-11-30T13:32:54Z;Ana;2351.075;115640320;Peru; -2018-11-30T13:22:19Z;Sandra;6542.647;115717931;Peru; -2018-11-30T12:39:56Z;Eduardo;1526.103;115586868;Peru; -2018-11-30T12:15:46Z;Armando;4140.402;114830404;Peru; -2018-11-30T11:55:38Z;Júlio Cesar;301.3267;116260707;Peru; -2018-11-30T11:16:35Z;Armando;237.0224;115415371;Peru; -2018-11-30T11:12:56Z;Ana;2070.569;115608221;Peru; -2018-11-30T11:12:34Z;Júlio Cesar;968.156;116177838;Peru; -2018-11-30T11:05:14Z;Nathália;4660.213;115706038;Peru; -2018-11-30T10:50:43Z;Armando;101.6969;115790799;Peru; -2018-11-30T10:41:03Z;nathalia;6667.887;114735364;Peru; -2018-11-30T10:40:06Z;nathalia;7806.998;115666331;Peru; -2018-11-30T10:17:22Z;nathalia;4984.284;115393581;Peru; -2018-11-30T10:12:02Z;Sandra;1147.341;115104293;Peru; -2018-11-30T10:02:32Z;Sandra;697.5707;114867658;Peru; -2018-11-30T09:47:20Z;Júlio Cesar;8383.214;114914419;Peru; -2018-11-30T09:35:38Z;Ana;5062.204;115660196;Peru; -2018-11-30T09:32:21Z;Ana;5706.941;116290354;Peru; -2018-11-30T09:19:12Z;Ana;2931.836;115434257;Peru; -2018-11-30T09:00:58Z;Nathália;2377.243;115090304;Peru; -2018-11-30T08:50:29Z;nathalia;8555.678;115848945;Peru; -2018-11-30T08:19:59Z;Nathália;155.1543;115517520;Peru; -2018-11-30T08:12:34Z;Nathália;4136.55;114453936;Peru; -2018-11-30T07:25:13Z;Sandra;5365.105;116302114;Peru; -2018-11-30T07:09:35Z;Eduardo;3585.224;116140670;Peru; -2018-11-30T07:08:08Z;Júlio Cesar;3895.936;115195667;Peru; -2018-11-30T07:05:36Z;Armando;8186.977;115064198;Peru; -2018-11-30T06:54:25Z;nathalia;543.5516;115371291;Peru; -2018-11-30T06:49:02Z;Nathália;57.52135;116215424;Peru; -2018-11-30T06:20:25Z;Júlio;3907.442;116387028;Peru; -2018-11-30T06:06:07Z;Júlio;731.459;115155250;Peru; -2018-11-30T06:01:12Z;Armando;285.7301;115498043;Peru; -2018-11-30T06:01:11Z;Júlio;1935.09;114874758;Peru; -2018-11-30T05:56:49Z;Júlio;4390.52;115934696;Peru; -2018-11-30T05:48:40Z;nathalia;2491.125;115509798;Peru; -2018-11-30T05:47:29Z;Júlio;3065.948;114934862;Peru; -2018-11-30T05:38:35Z;Júlio;450.7243;114336977;Peru; -2018-11-30T05:34:46Z;nathalia;1023.136;116067707;Peru; -2018-11-30T05:06:59Z;Nathália;2737.917;114943209;Peru; -2018-11-30T04:13:52Z;Ana;7982.406;115781172;Peru; -2018-11-30T03:57:13Z;Armando;10693;115404357;Peru; -2018-11-30T02:54:59Z;Sandra;6278.221;115623099;Peru; -2018-11-30T02:54:00Z;Júlio Cesar;1887.275;116300492;Peru; -2018-11-30T02:47:41Z;Sandra;3284.113;114919136;Peru; -2018-11-30T02:46:41Z;Ana;2688.478;114391681;Peru; -2018-11-30T02:37:50Z;Júlio;5703.469;115577112;Peru; -2018-11-30T02:22:40Z;Ana;824.9634;115803785;Peru; -2018-11-30T02:12:00Z;Nathália;6635.605;115536562;Peru; -2018-11-30T01:59:58Z;Júlio;5047.264;115779345;Peru; -2018-11-30T01:36:43Z;nathalia;662.408;115917283;Peru; -2018-11-30T01:30:29Z;nathalia;7482.224;115399729;Peru; -2018-11-30T01:26:01Z;Júlio Cesar;6769.474;115113504;Peru; -2018-11-30T00:49:55Z;Sandra;6482.547;114631430;Peru; -2018-11-30T00:16:58Z;nathalia;452.7966;115568355;Peru; -2018-11-30T00:11:58Z;Júlio Cesar;1024.587;116301968;Peru; -2018-11-30T00:10:53Z;Sandra;5396.893;116380665;Peru; -2018-11-29T23:48:04Z;Eduardo;4852.301;115064550;Peru; -2018-11-29T23:41:56Z;Júlio;2384.428;114900149;Peru; -2018-11-29T23:38:48Z;Ana;6574.787;116057905;Peru; -2018-11-29T23:32:44Z;Júlio;2582.21;115322865;Peru; -2018-11-29T23:23:48Z;Armando;672.3035;114438079;Peru; -2018-11-29T23:19:46Z;Armando;8541.847;114363619;Peru; -2018-11-29T23:05:44Z;Armando;5606.602;114640733;Peru; -2018-11-29T22:51:46Z;Sandra;4662.394;114535824;Peru; -2018-11-29T22:31:26Z;Nathália;3956.482;115562716;Peru; -2018-11-29T22:20:33Z;Sandra;5820.976;114835877;Peru; -2018-11-29T22:10:27Z;Ana;3843.298;115257550;Peru; -2018-11-29T22:08:52Z;Nathália;11830.26;115614179;Peru; -2018-11-29T21:15:19Z;Sandra;2899.191;115992911;Peru; -2018-11-29T20:40:34Z;Júlio;4143.977;114714713;Peru; -2018-11-29T20:35:56Z;Ana;8463.946;116015891;Peru; -2018-11-29T20:05:23Z;Júlio Cesar;5099.983;114694000;Peru; -2018-11-29T19:50:57Z;nathalia;13947.62;115918554;Peru; -2018-11-29T19:50:48Z;Ana;153.5551;116349267;Peru; -2018-11-29T19:40:55Z;Júlio Cesar;3520.804;114995496;Peru; -2018-11-29T19:39:26Z;Eduardo;2740.774;115725514;Peru; -2018-11-29T18:34:45Z;Júlio Cesar;558.1164;115822312;Peru; -2018-11-29T18:30:30Z;Nathália;4652.548;116116472;Peru; -2018-11-29T18:24:27Z;Eduardo;7843.366;115446584;Peru; -2018-11-29T18:18:58Z;Júlio;7681.787;114914344;Peru; -2018-11-29T18:12:08Z;Ana;3772.281;116068868;Peru; -2018-11-29T17:59:14Z;Armando;5287.222;114933536;Peru; -2018-11-29T17:47:50Z;Júlio Cesar;3081.001;115894106;Peru; -2018-11-29T17:31:27Z;nathalia;5816.468;116218132;Peru; -2018-11-29T17:30:15Z;Nathália;8276.242;115946508;Peru; -2018-11-29T17:16:38Z;nathalia;4027.391;115778682;Peru; -2018-11-29T17:12:39Z;Ana;3468.166;114409531;Peru; -2018-11-29T16:58:07Z;Eduardo;658.358;115616718;Peru; -2018-11-29T16:48:54Z;Eduardo;4591.546;114357150;Peru; -2018-11-29T16:38:52Z;Eduardo;1383.157;116072350;Peru; -2018-11-29T16:28:44Z;Júlio;540.2155;115853319;Peru; -2018-11-29T16:13:43Z;Armando;1248.918;115440266;Peru; -2018-11-29T15:27:23Z;Eduardo;2468.384;114473936;Peru; -2018-11-29T15:17:42Z;nathalia;560.8997;115129971;Peru; -2018-11-29T15:10:24Z;Júlio;6759.349;115765694;Peru; -2018-11-29T14:47:07Z;Nathália;5693.913;114840184;Peru; -2018-11-29T14:39:33Z;Júlio Cesar;1606.627;116068455;Peru; -2018-11-29T14:39:32Z;Júlio Cesar;7693.421;114710831;Peru; -2018-11-29T14:24:07Z;Ana;1186.058;116347007;Peru; -2018-11-29T14:08:29Z;Nathália;3721.711;116322214;Peru; -2018-11-29T13:24:17Z;Júlio;1501.877;116260421;Peru; -2018-11-29T13:23:13Z;Eduardo;1264.211;114370342;Peru; -2018-11-29T13:12:05Z;Júlio Cesar;2560.152;115767717;Peru; -2018-11-29T12:49:19Z;Eduardo;1061.097;115219461;Peru; -2018-11-29T12:46:49Z;Sandra;1811.793;115817826;Peru; -2018-11-29T12:10:45Z;nathalia;3471.491;115637720;Peru; -2018-11-29T11:56:58Z;Júlio Cesar;2411.801;115780674;Peru; -2018-11-29T11:30:55Z;Sandra;2942.275;115090227;Peru; -2018-11-29T11:12:53Z;Nathália;5150.875;114645244;Peru; -2018-11-29T11:09:37Z;Nathália;402.9244;114648000;Peru; -2018-11-29T11:01:45Z;nathalia;4228.234;114571786;Peru; -2018-11-29T10:47:38Z;Ana;126.1393;115712646;Peru; -2018-11-29T10:46:41Z;Armando;2978.452;114259412;Peru; -2018-11-29T10:36:56Z;nathalia;3276.761;114697157;Peru; -2018-11-29T10:33:47Z;Eduardo;4710.439;115847267;Peru; -2018-11-29T10:30:45Z;Armando;457.5385;116029105;Peru; -2018-11-29T10:07:30Z;nathalia;9905.132;115806867;Peru; -2018-11-29T09:57:24Z;Ana;208.7045;114895183;Peru; -2018-11-29T09:46:31Z;Armando;4135.061;114390119;Peru; -2018-11-29T09:35:30Z;Júlio;3610.44;114838195;Peru; -2018-11-29T09:10:46Z;Eduardo;3676.631;115634966;Peru; -2018-11-29T09:01:56Z;Armando;8251.271;114812335;Peru; -2018-11-29T08:14:40Z;Sandra;2343.738;115384555;Peru; -2018-11-29T07:26:43Z;Sandra;3421.898;115173676;Peru; -2018-11-29T07:05:41Z;nathalia;5915.191;115307261;Peru; -2018-11-29T07:03:51Z;Nathália;11262.37;115887364;Peru; -2018-11-29T06:45:54Z;Júlio;8159.954;114516664;Peru; -2018-11-29T06:08:08Z;Ana;6613.266;116007128;Peru; -2018-11-29T06:07:46Z;Ana;831.3738;116070976;Peru; -2018-11-29T05:54:34Z;Sandra;169.8285;115906892;Peru; -2018-11-29T05:50:42Z;nathalia;8706.788;114867138;Peru; -2018-11-29T05:39:38Z;Júlio Cesar;7970.568;114788856;Peru; -2018-11-29T05:38:08Z;Ana;6877.77;116054096;Peru; -2018-11-29T05:30:49Z;Nathália;229.1296;115361261;Peru; -2018-11-29T05:22:00Z;Eduardo;4134.822;114944412;Peru; -2018-11-29T05:08:51Z;Eduardo;2048.933;115938066;Peru; -2018-11-29T05:07:54Z;Armando;6049.956;116210703;Peru; -2018-11-29T05:05:12Z;Ana;5012.53;115670907;Peru; -2018-11-29T04:36:28Z;nathalia;1584.943;114712460;Peru; -2018-11-29T04:35:02Z;Ana;2289.478;115893920;Peru; -2018-11-29T04:17:18Z;Eduardo;941.6996;114973424;Peru; -2018-11-29T04:05:04Z;Ana;5871.536;116298857;Peru; -2018-11-29T04:00:16Z;Armando;1381.943;115219989;Peru; -2018-11-29T03:57:25Z;Sandra;1164.435;116231746;Peru; -2018-11-29T03:55:00Z;Júlio Cesar;42.55783;115249257;Peru; -2018-11-29T03:48:27Z;Júlio;7891.74;116157109;Peru; -2018-11-29T03:48:13Z;Sandra;1001.37;116052125;Peru; -2018-11-29T03:42:47Z;Ana;5424.566;114241078;Peru; -2018-11-29T03:24:13Z;Sandra;614.1647;116133430;Peru; -2018-11-29T02:45:38Z;Júlio Cesar;289.6544;115429631;Peru; -2018-11-29T02:42:09Z;nathalia;6786.996;114570583;Peru; -2018-11-29T02:33:59Z;Júlio;11002.18;115629230;Peru; -2018-11-29T02:19:21Z;Júlio;5849.496;115438885;Peru; -2018-11-29T02:17:02Z;Júlio Cesar;2235.987;115154373;Peru; -2018-11-29T02:07:31Z;Armando;7304.758;114276781;Peru; -2018-11-29T02:05:38Z;nathalia;3756.162;115073765;Peru; -2018-11-29T01:57:23Z;Armando;747.8499;114562872;Peru; -2018-11-29T01:29:24Z;Júlio Cesar;10685.02;115387260;Peru; -2018-11-29T01:18:27Z;Nathália;1499.467;116070406;Peru; -2018-11-29T01:10:57Z;Ana;9874.543;115926387;Peru; -2018-11-29T00:58:33Z;nathalia;1236.516;115473230;Peru; -2018-11-29T00:06:16Z;Júlio;7163.707;115512939;Peru; -2018-11-29T00:04:16Z;Eduardo;7834.807;114482997;Peru; -2018-11-29T00:00:47Z;Júlio Cesar;509.5854;116303333;Peru; -2018-11-28T23:18:29Z;Eduardo;6290.756;115373145;Peru; -2018-11-28T23:06:02Z;Ana;1402.786;114269997;Peru; -2018-11-28T22:17:07Z;Nathália;3612.769;114918133;Peru; -2018-11-28T21:47:24Z;Armando;11867.22;115374623;Peru; -2018-11-28T21:27:00Z;nathalia;7847.992;115976082;Peru; -2018-11-28T20:58:43Z;Nathália;3369.212;115745562;Peru; -2018-11-28T20:16:03Z;Eduardo;295.3058;114498301;Peru; -2018-11-28T20:15:48Z;Júlio Cesar;9176.052;116231481;Peru; -2018-11-28T20:09:39Z;Armando;11470.4;115184447;Peru; -2018-11-28T19:48:16Z;Júlio Cesar;2533.263;114915401;Peru; -2018-11-28T19:24:27Z;nathalia;1970.783;114650505;Peru; -2018-11-28T19:20:22Z;Armando;11240.57;114608177;Peru; -2018-11-28T19:13:06Z;Armando;3874.705;116043886;Peru; -2018-11-28T18:44:20Z;Júlio;717.3634;114821280;Peru; -2018-11-28T18:37:28Z;nathalia;1172.857;115675465;Peru; -2018-11-28T18:22:58Z;Armando;9425.249;114315516;Peru; -2018-11-28T18:20:42Z;Nathália;1993.844;116035137;Peru; -2018-11-28T18:13:37Z;Ana;6149.416;115840552;Peru; -2018-11-28T17:39:19Z;Sandra;5435.85;114453865;Peru; -2018-11-28T17:31:26Z;nathalia;4148.965;114513043;Peru; -2018-11-28T17:16:35Z;nathalia;3825.849;115276452;Peru; -2018-11-28T16:59:11Z;Nathália;4832.973;114860145;Peru; -2018-11-28T16:22:45Z;Júlio Cesar;478.8499;115083620;Peru; -2018-11-28T16:11:28Z;Armando;1667.961;115170602;Peru; -2018-11-28T15:02:16Z;Júlio;4032.08;114849235;Peru; -2018-11-28T14:50:37Z;Eduardo;11320.44;115979787;Peru; -2018-11-28T14:50:29Z;Nathália;1195.711;115002909;Peru; -2018-11-28T14:48:11Z;Eduardo;3365.993;115746133;Peru; -2018-11-28T14:17:29Z;Armando;746.7373;115544708;Peru; -2018-11-28T14:11:03Z;Ana;1707.489;116020900;Peru; -2018-11-28T14:06:20Z;Sandra;395.9569;114692311;Peru; -2018-11-28T12:40:44Z;nathalia;2672.669;114864789;Peru; -2018-11-28T12:31:58Z;nathalia;1818.899;116025999;Peru; -2018-11-28T12:29:07Z;Ana;817.4896;114782093;Peru; -2018-11-28T12:15:14Z;Ana;8110.954;115598174;Peru; -2018-11-28T12:02:31Z;Eduardo;6301.512;115007233;Peru; -2018-11-28T11:28:07Z;Eduardo;5982.856;114728751;Peru; -2018-11-28T11:24:18Z;Nathália;3481.238;115119988;Peru; -2018-11-28T11:21:42Z;nathalia;2431.56;115683155;Peru; -2018-11-28T11:01:43Z;Júlio Cesar;3561.006;115446935;Peru; -2018-11-28T10:55:44Z;Júlio;1668.034;114530276;Peru; -2018-11-28T10:52:56Z;nathalia;5585.693;116113102;Peru; -2018-11-28T10:41:53Z;Júlio;4228.56;115086992;Peru; -2018-11-28T10:33:35Z;Nathália;2509.802;114555825;Peru; -2018-11-28T10:22:10Z;Sandra;8460.184;114766266;Peru; -2018-11-28T09:52:53Z;Eduardo;6200.853;115991391;Peru; -2018-11-28T09:44:23Z;Eduardo;6539.035;114657027;Peru; -2018-11-28T09:09:24Z;Júlio;4420.149;116365013;Peru; -2018-11-28T09:04:02Z;Nathália;4174.816;114983040;Peru; -2018-11-28T08:53:05Z;Armando;5200.613;115005772;Peru; -2018-11-28T07:50:47Z;Júlio Cesar;4635.934;115497011;Peru; -2018-11-28T07:14:38Z;Eduardo;447.3175;114507595;Peru; -2018-11-28T06:59:34Z;Júlio Cesar;6780.473;115355130;Peru; -2018-11-28T06:59:32Z;Sandra;2071.152;115287232;Peru; -2018-11-28T06:46:45Z;nathalia;5052.447;114902221;Peru; -2018-11-28T06:04:49Z;Nathália;5228.657;116285152;Peru; -2018-11-28T05:59:03Z;Eduardo;334.8265;115452865;Peru; -2018-11-28T05:58:28Z;Eduardo;2936.495;115284879;Peru; -2018-11-28T05:43:48Z;Júlio Cesar;602.0564;116269539;Peru; -2018-11-28T05:39:06Z;Nathália;579.2709;115592722;Peru; -2018-11-28T05:37:45Z;Sandra;3841.585;114307985;Peru; -2018-11-28T05:20:18Z;nathalia;4530.828;116268951;Peru; -2018-11-28T05:05:22Z;Ana;5025.592;114262170;Peru; -2018-11-28T04:23:38Z;Sandra;412.7729;115000702;Peru; -2018-11-28T04:12:44Z;Júlio Cesar;598.0296;115169246;Peru; -2018-11-28T04:09:03Z;Sandra;376.6784;115249615;Peru; -2018-11-28T04:07:45Z;Júlio Cesar;1359.792;116148547;Peru; -2018-11-28T03:39:16Z;Júlio;5229.739;116044719;Peru; -2018-11-28T03:37:46Z;Sandra;2094.64;116229896;Peru; -2018-11-28T03:25:34Z;Armando;4952.996;115137536;Peru; -2018-11-28T03:18:17Z;Sandra;6478.298;115537098;Peru; -2018-11-28T03:10:13Z;Júlio;1434.026;116020153;Peru; -2018-11-28T03:01:59Z;Nathália;4417.24;114768199;Peru; -2018-11-28T02:53:36Z;Nathália;7320.763;114773901;Peru; -2018-11-28T02:43:37Z;Nathália;1131.562;114793087;Peru; -2018-11-28T02:41:08Z;Júlio;6131.796;114742450;Peru; -2018-11-28T02:01:52Z;Armando;3515.388;114246372;Peru; -2018-11-28T01:48:04Z;Júlio Cesar;7686.299;114419492;Peru; -2018-11-28T01:15:33Z;Júlio;1414.942;115148246;Peru; -2018-11-28T00:35:04Z;Ana;7489.095;115506884;Peru; -2018-11-28T00:25:16Z;nathalia;3537.574;115280855;Peru; -2018-11-28T00:12:38Z;Júlio;1057.757;115723190;Peru; -2018-11-27T23:55:13Z;Armando;3300.546;116228868;Peru; -2018-11-27T23:48:33Z;Júlio;1341.662;114572777;Peru; -2018-11-27T23:32:16Z;Ana;4583.322;115987284;Peru; -2018-11-27T22:09:20Z;Sandra;9634.298;114678414;Peru; -2018-11-27T21:39:25Z;Júlio;7520.114;116285252;Peru; -2018-11-27T21:33:20Z;Nathália;7617.195;115804432;Peru; -2018-11-27T21:19:03Z;Júlio Cesar;7241.723;114597165;Peru; -2018-11-27T20:55:39Z;Júlio Cesar;2989.747;115434861;Peru; -2018-11-27T20:53:40Z;Júlio Cesar;834.9877;115666292;Peru; -2018-11-27T20:36:05Z;Nathália;1506.86;116180031;Peru; -2018-11-27T20:33:47Z;Ana;730.2047;114362910;Peru; -2018-11-27T20:07:13Z;Ana;1112.717;115154132;Peru; -2018-11-27T20:01:12Z;Sandra;2430.308;116341678;Peru; -2018-11-27T19:48:10Z;nathalia;1697.376;115854378;Peru; -2018-11-27T19:30:03Z;Júlio Cesar;2356.137;114752361;Peru; -2018-11-27T19:20:17Z;Nathália;3782.936;115556121;Peru; -2018-11-27T19:12:23Z;Sandra;3024.62;115448814;Peru; -2018-11-27T18:57:05Z;Eduardo;6828.6;114674092;Peru; -2018-11-27T18:53:34Z;Júlio;13310.66;115700312;Peru; -2018-11-27T18:19:56Z;Ana;5629.069;115779461;Peru; -2018-11-27T17:52:39Z;Armando;1546.085;114913573;Peru; -2018-11-27T17:19:30Z;Júlio;449.8737;115927627;Peru; -2018-11-27T16:24:06Z;Júlio;3088.05;115646066;Peru; -2018-11-27T16:22:35Z;Armando;4576.811;114631894;Peru; -2018-11-27T16:21:25Z;Ana;2732.972;114351982;Peru; -2018-11-27T16:13:11Z;Nathália;7570.896;115772686;Peru; -2018-11-27T15:42:40Z;Armando;2085.715;114545645;Peru; -2018-11-27T15:07:37Z;Ana;9505.055;115766716;Peru; -2018-11-27T14:43:25Z;Sandra;6838.323;114462510;Peru; -2018-11-27T14:41:14Z;Júlio;4599.28;114514805;Peru; -2018-11-27T14:03:18Z;nathalia;1700.007;115134211;Peru; -2018-11-27T14:00:39Z;Júlio;3433.379;115133468;Peru; -2018-11-27T13:59:38Z;Armando;10135.48;114689769;Peru; -2018-11-27T13:43:39Z;Sandra;3299.563;114785953;Peru; -2018-11-27T13:43:10Z;Júlio;5469.187;114989798;Peru; -2018-11-27T13:41:36Z;Júlio;3638.293;116029108;Peru; -2018-11-27T13:40:49Z;Armando;3682.607;114808235;Peru; -2018-11-27T13:18:21Z;nathalia;1604.075;115164012;Peru; -2018-11-27T13:17:19Z;Nathália;325.0872;114420573;Peru; -2018-11-27T13:03:18Z;Nathália;3033.635;114558592;Peru; -2018-11-27T12:51:41Z;Sandra;3252.423;114559647;Peru; -2018-11-27T12:37:52Z;Armando;4136.354;114380479;Peru; -2018-11-27T12:19:15Z;Eduardo;329.7829;114208312;Peru; -2018-11-27T12:17:33Z;Nathália;5107.268;116165525;Peru; -2018-11-27T12:17:26Z;Eduardo;2331.099;115478896;Peru; -2018-11-27T11:55:46Z;Júlio;1078.086;116379163;Peru; -2018-11-27T10:22:23Z;Ana;4127.6;114320012;Peru; -2018-11-27T10:06:22Z;Júlio;1813.085;115934229;Peru; -2018-11-27T09:53:17Z;Armando;1571.44;116093577;Peru; -2018-11-27T09:45:05Z;Sandra;156.3015;114203686;Peru; -2018-11-27T09:37:57Z;Júlio;377.1699;114738111;Peru; -2018-11-27T09:32:43Z;Eduardo;1229.328;116278774;Peru; -2018-11-27T09:27:49Z;Eduardo;6925.827;114661885;Peru; -2018-11-27T08:54:41Z;Júlio;18035.58;115469610;Peru; -2018-11-27T08:49:18Z;Ana;5594.854;115901336;Peru; -2018-11-27T08:41:03Z;nathalia;461.6464;114485040;Peru; -2018-11-27T08:19:07Z;Ana;331.8706;114279649;Peru; -2018-11-27T07:52:36Z;Eduardo;4524.807;115636480;Peru; -2018-11-27T07:21:27Z;nathalia;2471.029;115048838;Peru; -2018-11-27T07:08:48Z;Sandra;9676.919;116111929;Peru; -2018-11-27T06:55:34Z;Armando;995.0279;115932031;Peru; -2018-11-27T06:01:26Z;nathalia;1547.398;116279594;Peru; -2018-11-27T05:29:30Z;Eduardo;1195.413;114975683;Peru; -2018-11-27T05:07:25Z;Júlio Cesar;8406.955;115208070;Peru; -2018-11-27T04:49:04Z;Sandra;4699.404;115657387;Peru; -2018-11-27T04:44:46Z;Nathália;3146.358;115080920;Peru; -2018-11-27T04:33:20Z;Ana;253.3102;114513822;Peru; -2018-11-27T04:13:41Z;Júlio;162.9782;114531038;Peru; -2018-11-27T03:15:38Z;Nathália;443.7553;116159574;Peru; -2018-11-27T03:06:40Z;Júlio;3997.03;115661256;Peru; -2018-11-27T03:05:28Z;Nathália;7429.227;115818848;Peru; -2018-11-27T02:46:12Z;nathalia;7938.801;115461122;Peru; -2018-11-27T02:33:30Z;Eduardo;1664.872;115327796;Peru; -2018-11-27T02:24:36Z;Ana;1488.542;115936410;Peru; -2018-11-27T02:17:00Z;Júlio;7425.517;114434343;Peru; -2018-11-27T02:02:42Z;Ana;11623.92;114514064;Peru; -2018-11-27T01:38:37Z;Sandra;2904.709;115121519;Peru; -2018-11-27T01:33:20Z;Júlio;1981.078;114526813;Peru; -2018-11-27T00:55:23Z;Eduardo;283.5508;115677933;Peru; -2018-11-27T00:47:38Z;Sandra;6278.191;114374859;Peru; -2018-11-27T00:43:16Z;Júlio Cesar;4024.942;115668641;Peru; -2018-11-26T23:52:06Z;Ana;1103.289;115397769;Peru; -2018-11-26T23:24:05Z;Nathália;7433.184;115433895;Peru; -2018-11-26T23:10:01Z;Júlio;6118.506;114912160;Peru; -2018-11-26T23:06:52Z;Nathália;4414.073;114600049;Peru; -2018-11-26T22:57:05Z;nathalia;1987.3;114775281;Peru; -2018-11-26T22:50:20Z;Ana;3454.557;114795971;Peru; -2018-11-26T22:49:56Z;Eduardo;7109.114;115141453;Peru; -2018-11-26T22:48:20Z;Ana;583.5499;114457411;Peru; -2018-11-26T22:14:27Z;Nathália;1437.198;116329356;Peru; -2018-11-26T21:49:07Z;Nathália;4624.311;114442349;Peru; -2018-11-26T21:36:33Z;Nathália;3290.809;115188835;Peru; -2018-11-26T21:25:23Z;Armando;4441.514;114413830;Peru; -2018-11-26T21:20:55Z;Sandra;1726.631;115125182;Peru; -2018-11-26T21:08:08Z;Armando;805.5216;115366952;Peru; -2018-11-26T20:08:23Z;Nathália;4461.749;116337381;Peru; -2018-11-26T19:46:21Z;Nathália;2925.694;116131123;Peru; -2018-11-26T19:33:22Z;Nathália;7898.279;114846926;Peru; -2018-11-26T18:49:27Z;Ana;6323.361;116260602;Peru; -2018-11-26T18:44:31Z;Eduardo;390.8734;116397198;Peru; -2018-11-26T18:44:07Z;Sandra;8177.111;115072168;Peru; -2018-11-26T18:41:48Z;Armando;6892.309;114733831;Peru; -2018-11-26T18:40:11Z;Júlio;1260.093;115547749;Peru; -2018-11-26T18:05:43Z;Nathália;1953.596;115176926;Peru; -2018-11-26T17:35:38Z;Ana;3188.847;116167019;Peru; -2018-11-26T17:15:11Z;Júlio;3687.369;114931826;Peru; -2018-11-26T17:06:24Z;Armando;671.7076;116269755;Peru; -2018-11-26T16:53:19Z;Sandra;10447.09;114973840;Peru; -2018-11-26T16:41:30Z;Júlio Cesar;8636.473;114672619;Peru; -2018-11-26T16:12:38Z;Eduardo;395.4063;116243295;Peru; -2018-11-26T15:59:15Z;Nathália;582.9094;115587647;Peru; -2018-11-26T15:31:22Z;Eduardo;4688.865;115658571;Peru; -2018-11-26T15:29:06Z;Ana;8695.611;115203215;Peru; -2018-11-26T14:51:34Z;Júlio;7282.567;115711720;Peru; -2018-11-26T14:36:58Z;Eduardo;1057.517;116006593;Peru; -2018-11-26T13:58:16Z;Júlio Cesar;6226.279;114842018;Peru; -2018-11-26T13:51:46Z;Sandra;17248.78;114256825;Peru; -2018-11-26T13:40:59Z;Eduardo;5089.865;114871002;Peru; -2018-11-26T13:37:24Z;Júlio Cesar;3210.683;115876155;Peru; -2018-11-26T13:11:11Z;Nathália;9218.718;114477749;Peru; -2018-11-26T13:10:33Z;Ana;2177.357;115913034;Peru; -2018-11-26T13:08:50Z;Júlio Cesar;7087.114;116211856;Peru; -2018-11-26T13:01:51Z;Eduardo;3758.429;114908323;Peru; -2018-11-26T12:36:50Z;Nathália;7034.879;116236414;Peru; -2018-11-26T12:19:28Z;nathalia;2167.02;115689053;Peru; -2018-11-26T12:17:03Z;Júlio;589.5209;114396978;Peru; -2018-11-26T12:00:50Z;Júlio Cesar;958.3034;115444005;Peru; -2018-11-26T11:26:32Z;nathalia;9784.217;115878229;Peru; -2018-11-26T10:58:51Z;Eduardo;547.2802;115164837;Peru; -2018-11-26T10:57:22Z;nathalia;650.5689;114340491;Peru; -2018-11-26T10:52:30Z;Nathália;7023.868;115588029;Peru; -2018-11-26T10:50:01Z;nathalia;2084.601;114380076;Peru; -2018-11-26T10:33:19Z;Ana;4529.041;115809510;Peru; -2018-11-26T10:00:25Z;Sandra;1198.426;115280151;Peru; -2018-11-26T09:55:32Z;Sandra;9023.706;115702864;Peru; -2018-11-26T09:48:25Z;Júlio;3421.722;115632111;Peru; -2018-11-26T09:24:17Z;Armando;3344.442;114800400;Peru; -2018-11-26T09:23:33Z;Júlio Cesar;2055.705;115358949;Peru; -2018-11-26T09:07:19Z;Eduardo;1491.962;116386331;Peru; -2018-11-26T08:59:31Z;Eduardo;6982.733;114803444;Peru; -2018-11-26T08:44:36Z;Eduardo;119.2607;115835470;Peru; -2018-11-26T08:42:18Z;Armando;5858.95;115934691;Peru; -2018-11-26T08:41:19Z;Eduardo;8805.005;116368703;Peru; -2018-11-26T08:23:45Z;Nathália;6344.353;114436357;Peru; -2018-11-26T08:14:53Z;Ana;10955.68;115067308;Peru; -2018-11-26T08:11:21Z;Armando;2956.176;116281618;Peru; -2018-11-26T07:44:57Z;Sandra;791.4193;115140772;Peru; -2018-11-26T07:24:51Z;Ana;5869.722;116062505;Peru; -2018-11-26T07:17:48Z;Júlio;1828.773;114859503;Peru; -2018-11-26T06:50:44Z;Armando;6125.431;115406881;Peru; -2018-11-26T06:03:10Z;nathalia;1586.416;115557305;Peru; -2018-11-26T05:48:24Z;Eduardo;965.9866;114208305;Peru; -2018-11-26T05:18:02Z;Júlio;2318.763;116163184;Peru; -2018-11-26T05:14:52Z;Nathália;4582.676;115907642;Peru; -2018-11-26T05:12:39Z;Nathália;1678.201;115249084;Peru; -2018-11-26T05:05:56Z;Sandra;562.327;115451674;Peru; -2018-11-26T04:56:12Z;Sandra;2846.192;115097381;Peru; -2018-11-26T04:32:49Z;nathalia;5252.224;115822273;Peru; -2018-11-26T04:32:24Z;Sandra;5342.614;114853949;Peru; -2018-11-26T04:21:11Z;Armando;2014.395;116170335;Peru; -2018-11-26T04:18:22Z;Armando;1347.848;115685106;Peru; -2018-11-26T04:11:30Z;Júlio Cesar;11029.28;115958365;Peru; -2018-11-26T04:04:23Z;Eduardo;4893.627;116035730;Peru; -2018-11-26T03:47:46Z;Sandra;1737.411;116246453;Peru; -2018-11-26T03:34:57Z;Armando;1815.863;114674436;Peru; -2018-11-26T03:31:23Z;Júlio;339.7537;115487775;Peru; -2018-11-26T03:16:11Z;Armando;10306.93;115813885;Peru; -2018-11-26T03:15:53Z;Armando;1557.433;115353605;Peru; -2018-11-26T02:38:54Z;Sandra;545.9929;115705520;Peru; -2018-11-26T02:28:10Z;nathalia;1635.491;114524129;Peru; -2018-11-26T02:21:17Z;Júlio;1506.972;115824851;Peru; -2018-11-26T02:19:17Z;Eduardo;7343.768;115192360;Peru; -2018-11-26T02:06:59Z;Júlio Cesar;4699.015;114586319;Peru; -2018-11-26T02:05:17Z;Armando;2695.636;115217360;Peru; -2018-11-26T02:04:12Z;Armando;352.6764;115650511;Peru; -2018-11-26T01:48:34Z;Sandra;4823.34;115757367;Peru; -2018-11-26T01:27:32Z;Júlio Cesar;675.4049;114966054;Peru; -2018-11-26T00:44:07Z;Nathália;5248.515;115928307;Peru; -2018-11-26T00:19:37Z;Nathália;3386.169;114466927;Peru; -2018-11-26T00:07:13Z;Júlio Cesar;2607.734;115905352;Peru; -2018-11-26T00:05:21Z;Armando;3836.219;115663557;Peru; -2018-11-25T23:48:19Z;Júlio Cesar;2774.36;114690846;Peru; -2018-11-25T23:38:52Z;Sandra;3751.656;116370482;Peru; -2018-11-25T23:31:47Z;Eduardo;3597.55;114669043;Peru; -2018-11-25T23:05:08Z;Nathália;9033.63;115133454;Peru; -2018-11-25T22:59:39Z;Eduardo;4049.896;115361778;Peru; -2018-11-25T22:54:47Z;Armando;276.737;115223210;Peru; -2018-11-25T22:45:35Z;Júlio Cesar;966.6604;116211964;Peru; -2018-11-25T22:38:57Z;Armando;4165.083;116135530;Peru; -2018-11-25T22:27:39Z;Armando;785.1602;115490235;Peru; -2018-11-25T22:22:14Z;nathalia;5931.892;115540108;Peru; -2018-11-25T22:20:11Z;Armando;3130.28;115380991;Peru; -2018-11-25T22:08:30Z;Eduardo;2332.691;114511746;Peru; -2018-11-25T22:05:15Z;Armando;3765.53;115810015;Peru; -2018-11-25T21:59:07Z;Nathália;4102.359;116192266;Peru; -2018-11-25T21:37:45Z;nathalia;4556.468;115978501;Peru; -2018-11-25T21:30:18Z;Júlio Cesar;527.5562;115561291;Peru; -2018-11-25T21:02:40Z;Eduardo;9088.551;114925383;Peru; -2018-11-25T20:57:31Z;Júlio;5593.696;114862907;Peru; -2018-11-25T20:54:55Z;nathalia;2388.702;114325426;Peru; -2018-11-25T20:22:44Z;Sandra;5707.574;114358215;Peru; -2018-11-25T20:04:20Z;nathalia;125.0058;115239547;Peru; -2018-11-25T19:44:28Z;Sandra;2417.898;115822585;Peru; -2018-11-25T19:04:53Z;Júlio;9388.909;115365700;Peru; -2018-11-25T18:39:46Z;Ana;586.5644;114335173;Peru; -2018-11-25T17:49:13Z;Armando;3226.82;114873891;Peru; -2018-11-25T17:47:42Z;Nathália;6736.452;115892607;Peru; -2018-11-25T17:45:09Z;Júlio;1459.38;116086331;Peru; -2018-11-25T17:36:41Z;Sandra;6182.95;114535034;Peru; -2018-11-25T17:13:34Z;Eduardo;3824.287;115803829;Peru; -2018-11-25T17:11:55Z;Sandra;2361.215;116387148;Peru; -2018-11-25T17:09:29Z;Ana;1316.964;115824467;Peru; -2018-11-25T16:14:41Z;Eduardo;1148.089;115363785;Peru; -2018-11-25T16:12:54Z;Júlio;8572.449;114317936;Peru; -2018-11-25T16:08:00Z;Júlio;8492.796;116138131;Peru; -2018-11-25T16:04:08Z;Ana;4185.279;115012803;Peru; -2018-11-25T15:23:04Z;nathalia;6386.196;114655534;Peru; -2018-11-25T15:17:28Z;Armando;3691.769;115057293;Peru; -2018-11-25T15:14:00Z;Júlio Cesar;573.3686;115707190;Peru; -2018-11-25T15:06:01Z;Sandra;2956.161;115210581;Peru; -2018-11-25T14:47:36Z;nathalia;3715.339;115952875;Peru; -2018-11-25T14:40:31Z;Júlio Cesar;6335.048;114222964;Peru; -2018-11-25T14:37:45Z;Armando;11148.59;114835456;Peru; -2018-11-25T14:35:45Z;Eduardo;915.9156;114417187;Peru; -2018-11-25T14:33:20Z;Júlio Cesar;6315.348;115025707;Peru; -2018-11-25T14:23:25Z;Nathália;2907.853;115218978;Peru; -2018-11-25T14:16:50Z;Ana;6702.764;115835820;Peru; -2018-11-25T14:06:21Z;Júlio Cesar;1348.279;115829888;Peru; -2018-11-25T13:44:20Z;Armando;7556.78;115278182;Peru; -2018-11-25T13:41:20Z;Eduardo;4845.999;115636909;Peru; -2018-11-25T13:20:39Z;Armando;7577.12;114604817;Peru; -2018-11-25T13:10:48Z;Nathália;6077.008;114609040;Peru; -2018-11-25T13:01:46Z;Júlio Cesar;4488.296;115005705;Peru; -2018-11-25T13:01:12Z;Eduardo;1394.077;115914151;Peru; -2018-11-25T12:33:12Z;Nathália;6410.066;116344479;Peru; -2018-11-25T12:32:19Z;Eduardo;2028.207;116341544;Peru; -2018-11-25T12:22:49Z;Sandra;7518.482;114717692;Peru; -2018-11-25T12:01:32Z;nathalia;6370.044;114356192;Peru; -2018-11-25T11:45:35Z;Ana;2004.697;115434342;Peru; -2018-11-25T11:26:47Z;Armando;604.8489;115086970;Peru; -2018-11-25T11:16:07Z;Eduardo;554.9416;115586729;Peru; -2018-11-25T11:15:31Z;Nathália;5113.935;115291970;Peru; -2018-11-25T10:53:30Z;Nathália;3654.562;115574898;Peru; -2018-11-25T10:02:42Z;Eduardo;3328.69;115135935;Peru; -2018-11-25T09:41:28Z;nathalia;5671.849;116123281;Peru; -2018-11-25T09:31:07Z;Armando;1287.647;114393094;Peru; -2018-11-25T09:27:46Z;Nathália;1444.284;115745855;Peru; -2018-11-25T09:26:28Z;Armando;2049.223;114492566;Peru; -2018-11-25T08:35:50Z;Armando;12253.37;114275541;Peru; -2018-11-25T08:22:52Z;Júlio;7734.987;116097363;Peru; -2018-11-25T08:18:05Z;Júlio;1842.191;115269688;Peru; -2018-11-25T08:17:21Z;nathalia;4184.816;116264649;Peru; -2018-11-25T07:49:26Z;Eduardo;890.0438;114923436;Peru; -2018-11-25T07:33:01Z;Eduardo;8379.927;116207836;Peru; -2018-11-25T07:28:47Z;Nathália;621.4696;114303193;Peru; -2018-11-25T07:09:35Z;Sandra;3313.849;114355354;Peru; -2018-11-25T05:46:02Z;Ana;4087.213;116095923;Peru; -2018-11-25T05:41:07Z;Júlio Cesar;7833.893;116035237;Peru; -2018-11-25T05:40:30Z;Júlio;3191.035;115564813;Peru; -2018-11-25T05:22:17Z;Armando;5726.056;114297999;Peru; -2018-11-25T04:50:47Z;Armando;4304.945;115568269;Peru; -2018-11-25T04:49:58Z;Ana;8184.91;114703788;Peru; -2018-11-25T04:49:45Z;Sandra;433.4825;115789984;Peru; -2018-11-25T04:47:21Z;Ana;2903.258;116391644;Peru; -2018-11-25T04:27:57Z;Eduardo;3230.513;114853598;Peru; -2018-11-25T04:17:14Z;Nathália;2514.405;116134754;Peru; -2018-11-25T03:39:35Z;Júlio;3239.007;116376404;Peru; -2018-11-25T03:32:45Z;Júlio;1542.073;114456775;Peru; -2018-11-25T03:22:13Z;nathalia;1199.403;114345088;Peru; -2018-11-25T02:53:46Z;Júlio;3158.76;114609951;Peru; -2018-11-25T02:19:34Z;Ana;4491.489;116196355;Peru; -2018-11-25T02:11:01Z;nathalia;6572.773;116259788;Peru; -2018-11-25T02:08:39Z;Armando;8653.105;114509173;Peru; -2018-11-25T01:53:14Z;Ana;1069.781;115733262;Peru; -2018-11-25T01:50:24Z;nathalia;311.1364;116133191;Peru; -2018-11-25T01:45:02Z;nathalia;3052.17;116066546;Peru; -2018-11-25T01:31:32Z;Júlio;2955.63;114635387;Peru; -2018-11-25T01:19:34Z;Ana;2295.266;115318791;Peru; -2018-11-25T01:17:59Z;Armando;4954.924;114932947;Peru; -2018-11-25T01:03:45Z;Ana;5350.569;115632903;Peru; -2018-11-25T00:46:00Z;Armando;8349.11;115998900;Peru; -2018-11-25T00:45:52Z;nathalia;4910.027;115599942;Peru; -2018-11-25T00:42:06Z;nathalia;2439.186;115147852;Peru; -2018-11-25T00:13:07Z;Sandra;1426.171;114491447;Peru; -2018-11-24T23:47:09Z;Sandra;7950.371;115125423;Peru; -2018-11-24T23:38:20Z;Eduardo;5542.118;114676180;Peru; -2018-11-24T23:35:26Z;Ana;5970.006;114635639;Peru; -2018-11-24T23:19:25Z;Armando;623.0564;114804314;Peru; -2018-11-24T22:54:47Z;nathalia;5032.996;115825623;Peru; -2018-11-24T22:31:56Z;nathalia;1819.457;116237552;Peru; -2018-11-24T21:44:17Z;Sandra;2193.258;115947424;Peru; -2018-11-24T21:24:28Z;Júlio Cesar;2153.099;115958640;Peru; -2018-11-24T21:18:27Z;Armando;375.7526;116046223;Peru; -2018-11-24T21:15:22Z;Júlio;1996.283;114353604;Peru; -2018-11-24T21:12:26Z;Ana;1568.895;115179755;Peru; -2018-11-24T21:00:51Z;Sandra;2300.942;114458507;Peru; -2018-11-24T20:54:50Z;Eduardo;7998.388;115684607;Peru; -2018-11-24T20:19:32Z;Sandra;4080.058;114778348;Peru; -2018-11-24T19:44:35Z;Sandra;283.2085;115901105;Peru; -2018-11-24T19:17:35Z;Júlio;841.0795;114732585;Peru; -2018-11-24T19:00:12Z;Júlio;4738.954;115495221;Peru; -2018-11-24T18:49:53Z;Sandra;6269.671;115749494;Peru; -2018-11-24T18:25:42Z;Júlio Cesar;7198.431;115052422;Peru; -2018-11-24T18:07:33Z;Eduardo;11633.63;115117081;Peru; -2018-11-24T18:04:14Z;nathalia;8631.235;115012227;Peru; -2018-11-24T17:36:02Z;Ana;2566.714;115642299;Peru; -2018-11-24T17:00:32Z;Júlio;6892.13;116060615;Peru; -2018-11-24T16:47:54Z;Júlio Cesar;4780.12;115560518;Peru; -2018-11-24T16:35:19Z;nathalia;5617.836;115847867;Peru; -2018-11-24T16:33:10Z;Armando;2267.039;115393744;Peru; -2018-11-24T16:31:08Z;Sandra;14533.36;114683901;Peru; -2018-11-24T16:15:00Z;Ana;4066.229;116150725;Peru; -2018-11-24T16:04:40Z;Sandra;940.8588;114383646;Peru; -2018-11-24T15:53:02Z;Sandra;9378.261;114895470;Peru; -2018-11-24T15:40:11Z;Júlio Cesar;2493.864;115105855;Peru; -2018-11-24T15:21:08Z;Júlio;1447.256;115375469;Peru; -2018-11-24T15:07:17Z;Ana;7113.285;114543538;Peru; -2018-11-24T15:02:09Z;Sandra;5359.63;114922327;Peru; -2018-11-24T14:53:14Z;Ana;209.3007;115941627;Peru; -2018-11-24T14:35:14Z;Nathália;133.1697;114706074;Peru; -2018-11-24T14:22:02Z;Eduardo;3487.744;115581728;Peru; -2018-11-24T14:18:06Z;Júlio;5345.525;115013665;Peru; -2018-11-24T13:53:31Z;Júlio Cesar;10310.94;115098500;Peru; -2018-11-24T13:49:23Z;Nathália;11810.31;115022068;Peru; -2018-11-24T13:34:07Z;Eduardo;9668.502;115796416;Peru; -2018-11-24T13:27:12Z;Júlio Cesar;4340.473;114978423;Peru; -2018-11-24T12:58:35Z;Sandra;1713.426;116042654;Peru; -2018-11-24T12:02:49Z;Armando;107.1049;116356768;Peru; -2018-11-24T11:27:40Z;Sandra;463.8115;114261910;Peru; -2018-11-24T11:15:40Z;Nathália;4917.493;115330297;Peru; -2018-11-24T11:14:26Z;Júlio;509.3049;114690893;Peru; -2018-11-24T11:11:16Z;Eduardo;1047.438;114283237;Peru; -2018-11-24T11:05:31Z;Armando;309.7705;115217156;Peru; -2018-11-24T10:51:18Z;Júlio Cesar;4221.052;115944635;Peru; -2018-11-24T10:36:14Z;Nathália;3216.713;114756552;Peru; -2018-11-24T10:24:01Z;nathalia;1475.58;115796007;Peru; -2018-11-24T10:18:01Z;Armando;80.56557;114526193;Peru; -2018-11-24T09:57:53Z;Sandra;5759.478;116154981;Peru; -2018-11-24T09:09:57Z;Júlio;3347.209;114658267;Peru; -2018-11-24T09:06:38Z;Eduardo;4879.9;115970529;Peru; -2018-11-24T08:34:49Z;Júlio Cesar;4669.753;114248608;Peru; -2018-11-24T08:26:22Z;nathalia;5826.871;115799494;Peru; -2018-11-24T08:06:53Z;Eduardo;1682.673;116037902;Peru; -2018-11-24T07:51:14Z;Ana;5783.947;114410574;Peru; -2018-11-24T07:40:11Z;Eduardo;7851.061;114475097;Peru; -2018-11-24T07:40:00Z;nathalia;6400.718;116160915;Peru; -2018-11-24T07:34:27Z;Júlio Cesar;4007.307;115467686;Peru; -2018-11-24T07:25:33Z;Nathália;2394.892;116256591;Peru; -2018-11-24T07:18:21Z;Júlio Cesar;7985.125;115979978;Peru; -2018-11-24T06:56:49Z;Júlio Cesar;3217.338;116333674;Peru; -2018-11-24T06:51:49Z;Júlio Cesar;1721.561;115170285;Peru; -2018-11-24T06:31:41Z;Júlio;3386.573;115393085;Peru; -2018-11-24T06:28:46Z;Júlio;5524.222;116015097;Peru; -2018-11-24T06:27:45Z;Armando;6204.033;115987457;Peru; -2018-11-24T05:48:53Z;Nathália;2257.433;114404592;Peru; -2018-11-24T05:34:03Z;Armando;2823.187;116141653;Peru; -2018-11-24T05:28:54Z;Júlio Cesar;67.0823;114764304;Peru; -2018-11-24T05:23:23Z;Armando;4525.902;115227526;Peru; -2018-11-24T04:56:21Z;Nathália;503.6442;115292276;Peru; -2018-11-24T04:52:07Z;Eduardo;1660.823;115137601;Peru; -2018-11-24T04:51:05Z;nathalia;96.03104;115114582;Peru; -2018-11-24T04:23:21Z;Ana;5304.942;114908811;Peru; -2018-11-24T04:17:38Z;Nathália;1394.051;114345732;Peru; -2018-11-24T04:05:30Z;nathalia;7573.324;114502305;Peru; -2018-11-24T04:00:28Z;Eduardo;8260.864;115955815;Peru; -2018-11-24T03:55:51Z;Eduardo;1629.283;115596488;Peru; -2018-11-24T03:47:27Z;Sandra;3728.332;115332556;Peru; -2018-11-24T03:39:46Z;Júlio Cesar;3232.687;116055930;Peru; -2018-11-24T03:27:15Z;Júlio;1962.484;114726315;Peru; -2018-11-24T02:42:15Z;nathalia;2101.165;114863447;Peru; -2018-11-24T02:31:36Z;Eduardo;5303.715;114350714;Peru; -2018-11-24T01:58:37Z;Armando;1165.174;115868123;Peru; -2018-11-24T01:35:18Z;Ana;3502.475;114414609;Peru; -2018-11-24T01:09:08Z;Nathália;2409.557;114689454;Peru; -2018-11-24T01:08:36Z;Armando;7288.718;116020989;Peru; -2018-11-24T00:57:34Z;Nathália;2215.009;115304969;Peru; -2018-11-24T00:28:38Z;Nathália;4128.209;116307813;Peru; -2018-11-24T00:25:12Z;Nathália;5388.198;116065273;Peru; -2018-11-24T00:00:44Z;Sandra;2244.383;116001603;Peru; -2018-11-23T23:45:40Z;Eduardo;11264.82;114767056;Peru; -2018-11-23T23:01:08Z;Júlio Cesar;10190.51;114581145;Peru; -2018-11-23T22:28:57Z;Nathália;12318.95;115756958;Peru; -2018-11-23T22:26:41Z;Armando;2632.087;116147220;Peru; -2018-11-23T22:16:50Z;Eduardo;8280.25;115896010;Peru; -2018-11-23T22:15:01Z;nathalia;2830.419;114469548;Peru; -2018-11-23T22:14:11Z;nathalia;3664.596;115039016;Peru; -2018-11-23T21:46:21Z;Júlio Cesar;7837.764;115236996;Peru; -2018-11-23T21:37:37Z;Sandra;7783.924;114695488;Peru; -2018-11-23T21:37:09Z;Sandra;271.2438;116104161;Peru; -2018-11-23T21:20:07Z;Armando;1024.176;115957920;Peru; -2018-11-23T21:06:28Z;nathalia;10594.52;114587580;Peru; -2018-11-23T20:57:52Z;Armando;3277.253;114289066;Peru; -2018-11-23T20:34:46Z;Armando;4897.485;115558249;Peru; -2018-11-23T20:22:52Z;Júlio Cesar;6389.076;115092382;Peru; -2018-11-23T19:57:51Z;nathalia;5392.471;115635902;Peru; -2018-11-23T19:26:41Z;Armando;1580.576;114856605;Peru; -2018-11-23T18:41:18Z;Nathália;2136.05;116184088;Peru; -2018-11-23T18:40:16Z;Ana;842.2316;114225812;Peru; -2018-11-23T18:38:24Z;nathalia;3156.829;115640603;Peru; -2018-11-23T17:41:43Z;Nathália;3616.196;115197802;Peru; -2018-11-23T17:21:57Z;Nathália;4724.981;114325993;Peru; -2018-11-23T16:41:32Z;Júlio;8795.626;116098865;Peru; -2018-11-23T16:23:32Z;nathalia;6764.187;114833867;Peru; -2018-11-23T16:11:01Z;Júlio Cesar;7545.758;115909053;Peru; -2018-11-23T15:50:14Z;Júlio;6434.195;116399793;Peru; -2018-11-23T15:49:52Z;nathalia;5878.083;114657069;Peru; -2018-11-23T15:44:25Z;Eduardo;74.92186;114261877;Peru; -2018-11-23T15:43:57Z;nathalia;1701.935;115311163;Peru; -2018-11-23T15:43:42Z;nathalia;4022.605;115976835;Peru; -2018-11-23T15:41:15Z;Sandra;6213.943;115438041;Peru; -2018-11-23T15:32:23Z;Júlio Cesar;2220.529;115705044;Peru; -2018-11-23T15:28:34Z;nathalia;11438.68;116014657;Peru; -2018-11-23T15:27:39Z;Armando;5839.377;115272625;Peru; -2018-11-23T14:54:57Z;Júlio;1313.054;115450911;Peru; -2018-11-23T14:19:18Z;Sandra;1278.447;114770754;Peru; -2018-11-23T14:10:56Z;Júlio Cesar;3920.47;115649235;Peru; -2018-11-23T14:09:43Z;Armando;7179.776;115095662;Peru; -2018-11-23T14:04:38Z;Júlio Cesar;992.7786;115289526;Peru; -2018-11-23T13:49:01Z;Nathália;5533.944;115985023;Peru; -2018-11-23T13:43:58Z;Armando;557.5573;114838538;Peru; -2018-11-23T13:03:19Z;Armando;4384.484;114274883;Peru; -2018-11-23T12:46:33Z;nathalia;21.04299;114282178;Peru; -2018-11-23T12:43:35Z;Ana;1769.1;116190237;Peru; -2018-11-23T12:38:55Z;Nathália;2921.885;115421464;Peru; -2018-11-23T12:33:29Z;Armando;6626.148;115193566;Peru; -2018-11-23T12:21:17Z;nathalia;5949.625;114762392;Peru; -2018-11-23T12:12:09Z;nathalia;12573.29;116164419;Peru; -2018-11-23T12:01:46Z;Eduardo;7340.776;115506549;Peru; -2018-11-23T11:48:50Z;Eduardo;2430.062;116260229;Peru; -2018-11-23T11:17:02Z;Sandra;3374.885;115807321;Peru; -2018-11-23T11:13:03Z;Eduardo;1176.073;115370185;Peru; -2018-11-23T11:08:19Z;Júlio Cesar;365.4537;114501900;Peru; -2018-11-23T10:47:27Z;Júlio;4867.599;115964676;Peru; -2018-11-23T10:47:16Z;Júlio;1731.13;116364490;Peru; -2018-11-23T10:44:39Z;Armando;2574.025;115701008;Peru; -2018-11-23T10:29:07Z;nathalia;13640.9;115748309;Peru; -2018-11-23T10:12:42Z;Júlio Cesar;1186.895;114244325;Peru; -2018-11-23T10:11:30Z;Armando;5508.192;115338402;Peru; -2018-11-23T09:35:29Z;Júlio;1847.015;114302588;Peru; -2018-11-23T09:18:52Z;Júlio;9032.51;114246368;Peru; -2018-11-23T09:18:28Z;Armando;2361.994;114967071;Peru; -2018-11-23T09:14:21Z;Nathália;5742.857;115670667;Peru; -2018-11-23T08:49:30Z;Ana;1235.316;114551415;Peru; -2018-11-23T08:25:57Z;Júlio;6699.732;114238973;Peru; -2018-11-23T08:25:43Z;nathalia;870.5251;115722358;Peru; -2018-11-23T08:25:20Z;Júlio Cesar;4582.772;115986778;Peru; -2018-11-23T08:21:49Z;Júlio;2495.501;115127632;Peru; -2018-11-23T08:05:08Z;Júlio;3476.428;114698479;Peru; -2018-11-23T08:00:41Z;Ana;2118.689;114695660;Peru; -2018-11-23T07:56:40Z;Sandra;854.3352;116003976;Peru; -2018-11-23T07:47:19Z;Sandra;520.84760000000006;115446353;Peru; -2018-11-23T07:35:56Z;nathalia;6841.5;115049530;Peru; -2018-11-23T07:32:41Z;nathalia;1219.701;116373573;Peru; -2018-11-23T07:23:05Z;Sandra;2252.813;116027832;Peru; -2018-11-23T07:13:51Z;Eduardo;2712.597;115796921;Peru; -2018-11-23T07:07:30Z;Júlio Cesar;4773.071;115655465;Peru; -2018-11-23T07:04:03Z;Armando;85.53312;115410281;Peru; -2018-11-23T06:52:50Z;Sandra;2442.572;115727280;Peru; -2018-11-23T06:30:15Z;nathalia;138.5838;114480053;Peru; -2018-11-23T06:28:20Z;Sandra;7959.991;114333281;Peru; -2018-11-23T06:22:03Z;Júlio Cesar;4138.117;116399746;Peru; -2018-11-23T05:59:24Z;Júlio;4026.876;114230334;Peru; -2018-11-23T05:34:47Z;nathalia;2493.314;116202019;Peru; -2018-11-23T05:32:37Z;Eduardo;240.4164;114326341;Peru; -2018-11-23T05:17:19Z;Júlio;3578.206;114358868;Peru; -2018-11-23T04:56:19Z;Nathália;8144.101;115450232;Peru; -2018-11-23T04:46:56Z;Sandra;2026.311;114700101;Peru; -2018-11-23T04:40:43Z;Júlio Cesar;3414.14;116110682;Peru; -2018-11-23T04:22:02Z;Sandra;2321.678;116271851;Peru; -2018-11-23T03:40:03Z;Nathália;2526.499;114847669;Peru; -2018-11-23T03:18:59Z;Sandra;643.5184;116336312;Peru; -2018-11-23T03:17:23Z;Nathália;4868.35;114237812;Peru; -2018-11-23T03:04:00Z;Eduardo;3717.564;115170366;Peru; -2018-11-23T02:48:30Z;Armando;7990.381;116039735;Peru; -2018-11-23T02:30:22Z;nathalia;7756.662;116348220;Peru; -2018-11-23T02:15:20Z;nathalia;5393.681;115072997;Peru; -2018-11-23T02:11:09Z;Júlio Cesar;287.9666;115513358;Peru; -2018-11-23T01:59:30Z;nathalia;452.7584;115729776;Peru; -2018-11-23T01:09:44Z;Júlio Cesar;2183.504;114235895;Peru; -2018-11-23T01:02:24Z;Júlio;3091.169;115219761;Peru; -2018-11-23T00:45:07Z;nathalia;468.3455;116360135;Peru; -2018-11-23T00:39:55Z;Júlio Cesar;1665.735;114693028;Peru; -2018-11-23T00:03:19Z;Sandra;3260.07;115046320;Peru; -2018-11-23T00:00:36Z;Eduardo;1238.027;115456780;Peru; -2018-11-22T23:48:33Z;Sandra;5558.136;114529213;Peru; -2018-11-22T23:07:50Z;Eduardo;3756.591;115173440;Peru; -2018-11-22T22:45:56Z;nathalia;1856.465;116267699;Peru; -2018-11-22T22:40:15Z;Júlio;2297.954;114963234;Peru; -2018-11-22T22:37:11Z;Sandra;1230.687;114692371;Peru; -2018-11-22T22:07:41Z;Eduardo;3803.736;115448420;Peru; -2018-11-22T21:56:03Z;Sandra;7111.488;116136343;Peru; -2018-11-22T21:53:14Z;Nathália;2235.349;115979536;Peru; -2018-11-22T21:38:43Z;Júlio Cesar;5893.213;115366500;Peru; -2018-11-22T21:19:27Z;Júlio Cesar;6736.087;115396216;Peru; -2018-11-22T21:09:26Z;nathalia;906.4795;115059258;Peru; -2018-11-22T21:02:56Z;Júlio Cesar;5026.05;114229455;Peru; -2018-11-22T20:58:06Z;nathalia;5504.898;114250116;Peru; -2018-11-22T20:55:31Z;nathalia;3651.247;116262659;Peru; -2018-11-22T20:11:06Z;Sandra;5204.205;115711567;Peru; -2018-11-22T20:10:04Z;Júlio;20.97206;115987688;Peru; -2018-11-22T19:36:32Z;Júlio;165.9435;114739396;Peru; -2018-11-22T18:53:05Z;Nathália;3335.651;116227726;Peru; -2018-11-22T18:14:17Z;Nathália;2561.656;115590927;Peru; -2018-11-22T18:02:26Z;Eduardo;911.2952;116380467;Peru; -2018-11-22T17:51:45Z;Júlio Cesar;2797.088;114919658;Peru; -2018-11-22T17:51:06Z;Nathália;1098.21;114547123;Peru; -2018-11-22T17:47:15Z;Júlio;7991.581;115866818;Peru; -2018-11-22T17:40:46Z;Armando;1639.981;116012089;Peru; -2018-11-22T17:25:08Z;Ana;2095.825;115379258;Peru; -2018-11-22T17:10:04Z;Ana;9834.305;115688749;Peru; -2018-11-22T17:02:33Z;Nathália;893.4027;115624633;Peru; -2018-11-22T16:23:28Z;Eduardo;5623.951;115210272;Peru; -2018-11-22T15:59:56Z;Armando;4117.871;116085943;Peru; -2018-11-22T15:35:01Z;Ana;2175.611;115962314;Peru; -2018-11-22T15:06:25Z;Júlio Cesar;7580.347;114415299;Peru; -2018-11-22T15:05:44Z;Júlio;7497.091;115303453;Peru; -2018-11-22T14:38:13Z;Eduardo;4253.76;114276121;Peru; -2018-11-22T14:36:05Z;nathalia;126.671;116053974;Peru; -2018-11-22T14:24:33Z;nathalia;11239.53;115744484;Peru; -2018-11-22T14:22:15Z;nathalia;1841.306;114251483;Peru; -2018-11-22T14:17:22Z;Júlio Cesar;1414.851;115201538;Peru; -2018-11-22T13:46:19Z;Ana;3264.012;114926995;Peru; -2018-11-22T13:29:15Z;nathalia;3099.278;114360491;Peru; -2018-11-22T13:24:40Z;nathalia;4876.186;115571719;Peru; -2018-11-22T13:15:31Z;nathalia;636.2019;114352126;Peru; -2018-11-22T12:58:15Z;nathalia;498.9368;114237021;Peru; -2018-11-22T12:27:42Z;Armando;2185.161;116368318;Peru; -2018-11-22T12:27:39Z;Armando;1513.865;115231383;Peru; -2018-11-22T12:21:56Z;Sandra;1502.985;114362232;Peru; -2018-11-22T11:44:33Z;Eduardo;1746.928;114478918;Peru; -2018-11-22T11:00:08Z;Armando;14614.45;115946583;Peru; -2018-11-22T10:52:53Z;Armando;6815.528;115632148;Peru; -2018-11-22T10:43:58Z;Ana;5482.329;116256855;Peru; -2018-11-22T10:09:04Z;Armando;950.8769;116077029;Peru; -2018-11-22T09:46:09Z;Armando;8072.868;115409167;Peru; -2018-11-22T09:31:54Z;Júlio Cesar;1715.781;115976898;Peru; -2018-11-22T09:20:28Z;Eduardo;6640.98;115035154;Peru; -2018-11-22T08:58:59Z;Júlio;1494.219;115962138;Peru; -2018-11-22T08:56:53Z;Júlio Cesar;11294.22;115097594;Peru; -2018-11-22T07:42:58Z;Sandra;6583.29;116062840;Peru; -2018-11-22T07:39:03Z;Eduardo;3819.953;115836485;Peru; -2018-11-22T07:39:03Z;Nathália;7364.266;116372089;Peru; -2018-11-22T07:35:47Z;Nathália;3503.718;115406924;Peru; -2018-11-22T07:14:13Z;Nathália;1052.32;116002007;Peru; -2018-11-22T07:03:49Z;Ana;2762.652;114559081;Peru; -2018-11-22T06:57:08Z;Ana;3726.861;114680690;Peru; -2018-11-22T06:51:08Z;Júlio Cesar;4192.475;115351911;Peru; -2018-11-22T06:19:29Z;Sandra;6383.992;115343105;Peru; -2018-11-22T06:19:28Z;Júlio Cesar;2087.772;116384854;Peru; -2018-11-22T06:14:07Z;Eduardo;5242.096;115105652;Peru; -2018-11-22T05:50:54Z;Armando;3486.023;114709862;Peru; -2018-11-22T05:48:57Z;Ana;10352.22;116046825;Peru; -2018-11-22T05:27:56Z;Ana;4742.113;116096984;Peru; -2018-11-22T05:13:34Z;Armando;5380.591;115100259;Peru; -2018-11-22T05:04:50Z;Nathália;2649.498;115882295;Peru; -2018-11-22T04:58:23Z;Júlio;3858.608;114223508;Peru; -2018-11-22T04:58:13Z;Júlio;2602.141;114692102;Peru; -2018-11-22T04:53:51Z;Júlio;12061.79;115359127;Peru; -2018-11-22T04:37:52Z;Armando;5685.561;115795926;Peru; -2018-11-22T04:34:05Z;Ana;6580.458;116030564;Peru; -2018-11-22T04:22:57Z;Nathália;3045.005;115765323;Peru; -2018-11-22T04:19:36Z;Nathália;2725.514;116091360;Peru; -2018-11-22T04:14:25Z;Armando;3673.044;115210676;Peru; -2018-11-22T04:13:45Z;Júlio;2112.308;114839040;Peru; -2018-11-22T03:36:07Z;Júlio Cesar;2409.125;116207266;Peru; -2018-11-22T03:05:23Z;Sandra;308.8636;115300112;Peru; -2018-11-22T02:57:10Z;Nathália;8701.004;115090811;Peru; -2018-11-22T02:55:03Z;nathalia;3710.246;114464531;Peru; -2018-11-22T02:53:19Z;nathalia;7354.381;115312991;Peru; -2018-11-22T02:42:22Z;Sandra;901.6783;115638670;Peru; -2018-11-22T02:42:08Z;Sandra;1305.569;116388865;Peru; -2018-11-22T02:36:23Z;Sandra;2460.307;114837130;Peru; -2018-11-22T01:51:28Z;Armando;15.45572;115710439;Peru; -2018-11-22T01:40:45Z;Sandra;9090.168;116128565;Peru; -2018-11-22T00:57:32Z;Armando;3861.017;114561446;Peru; -2018-11-22T00:47:37Z;Armando;1152.82;115004045;Peru; -2018-11-22T00:41:35Z;nathalia;8433.32;114763989;Peru; -2018-11-22T00:17:01Z;nathalia;8458.333;115625119;Peru; -2018-11-21T23:45:49Z;Armando;8572.77;114994348;Peru; -2018-11-21T23:21:50Z;Júlio Cesar;1415.036;116275810;Peru; -2018-11-21T23:19:44Z;Ana;2632.274;116215787;Peru; -2018-11-21T23:18:38Z;Júlio Cesar;4021.109;114416187;Peru; -2018-11-21T22:55:18Z;nathalia;768.8911;114424969;Peru; -2018-11-21T22:44:47Z;Sandra;3748.665;116348132;Peru; -2018-11-21T22:42:53Z;Nathália;7276.544;114463113;Peru; -2018-11-21T22:12:21Z;Júlio;6441.768;115276584;Peru; -2018-11-21T22:01:13Z;Armando;5813.94;114542774;Peru; -2018-11-21T21:48:26Z;Ana;9641.961;115990758;Peru; -2018-11-21T21:35:41Z;Armando;10332.34;115970433;Peru; -2018-11-21T21:28:37Z;Júlio Cesar;387.8431;115469964;Peru; -2018-11-21T21:28:09Z;Júlio Cesar;6588.655;115839726;Peru; -2018-11-21T21:09:46Z;nathalia;4841.908;114499173;Peru; -2018-11-21T20:41:01Z;Júlio Cesar;9351.028;115729678;Peru; -2018-11-21T20:40:11Z;Júlio Cesar;3916.607;115519208;Peru; -2018-11-21T20:21:24Z;Ana;2088.633;116129936;Peru; -2018-11-21T20:19:31Z;nathalia;2089.062;116335999;Peru; -2018-11-21T20:17:20Z;Armando;7065.663;115408499;Peru; -2018-11-21T20:02:26Z;Eduardo;4059.555;116086879;Peru; -2018-11-21T20:01:05Z;Armando;7143.128;114380465;Peru; -2018-11-21T18:31:45Z;nathalia;2807.512;115983605;Peru; -2018-11-21T18:27:56Z;Sandra;779.5324;116026571;Peru; -2018-11-21T18:21:52Z;Ana;1204.229;114261612;Peru; -2018-11-21T18:11:42Z;Sandra;2974.03;115686192;Peru; -2018-11-21T18:04:55Z;Sandra;7813.673;114636394;Peru; -2018-11-21T18:01:50Z;Eduardo;1764.987;114236880;Peru; -2018-11-21T17:59:25Z;Armando;1562.951;115705459;Peru; -2018-11-21T17:07:03Z;Júlio Cesar;926.0487;114886077;Peru; -2018-11-21T16:43:44Z;Armando;574.7236;115450945;Peru; -2018-11-21T16:28:01Z;Armando;1251.791;115041994;Peru; -2018-11-21T15:57:24Z;nathalia;6345.083;115405390;Peru; -2018-11-21T15:56:04Z;Sandra;1331.004;115244049;Peru; -2018-11-21T15:14:04Z;Sandra;123.283;115377720;Peru; -2018-11-21T15:11:48Z;nathalia;5659.603;116193600;Peru; -2018-11-21T14:04:33Z;Armando;4902.862;115667948;Peru; -2018-11-21T13:43:15Z;Júlio;2218.16;114959814;Peru; -2018-11-21T13:05:18Z;Armando;8680.051;115795388;Peru; -2018-11-21T12:55:43Z;Sandra;9238.398;114365983;Peru; -2018-11-21T12:30:22Z;Eduardo;2010.996;115477585;Peru; -2018-11-21T12:17:06Z;Ana;8424.165;114376152;Peru; -2018-11-21T12:09:40Z;nathalia;2743.332;115179326;Peru; -2018-11-21T11:15:53Z;Júlio;3410.258;115036093;Peru; -2018-11-21T11:11:02Z;Eduardo;2255.473;115382192;Peru; -2018-11-21T09:34:38Z;Nathália;2542.616;115331079;Peru; -2018-11-21T08:52:59Z;Ana;523.8051;114694374;Peru; -2018-11-21T08:34:16Z;Nathália;11244.76;115967672;Peru; -2018-11-21T08:21:53Z;Eduardo;14035.84;115274630;Peru; -2018-11-21T07:49:14Z;Nathália;3388.467;114980334;Peru; -2018-11-21T07:45:05Z;Ana;1170.751;116122864;Peru; -2018-11-21T07:25:01Z;Eduardo;4060.987;114385088;Peru; -2018-11-21T07:11:26Z;nathalia;2204.932;114583012;Peru; -2018-11-21T06:58:05Z;Nathália;1218.198;114863891;Peru; -2018-11-21T06:57:07Z;Armando;1795.971;115438613;Peru; -2018-11-21T06:41:07Z;nathalia;751.5909;114965103;Peru; -2018-11-21T06:38:31Z;nathalia;6691.983;115587621;Peru; -2018-11-21T06:24:52Z;Júlio;338.9949;114460172;Peru; -2018-11-21T06:23:22Z;Armando;6316.818;115699193;Peru; -2018-11-21T04:53:59Z;Ana;5399.648;114541847;Peru; -2018-11-21T04:51:37Z;nathalia;2953.613;115579830;Peru; -2018-11-21T04:41:44Z;Armando;2665.105;116105528;Peru; -2018-11-21T04:08:54Z;nathalia;2820.758;115331323;Peru; -2018-11-21T04:08:53Z;Nathália;5277.341;114289176;Peru; -2018-11-21T04:03:18Z;Sandra;4181.042;115114412;Peru; -2018-11-21T03:55:44Z;Júlio;1978.344;114907297;Peru; -2018-11-21T03:48:50Z;Júlio;40.50991;115405028;Peru; -2018-11-21T03:36:55Z;Eduardo;2593.045;114895181;Peru; -2018-11-21T03:07:14Z;nathalia;589.4188;115786985;Peru; -2018-11-21T02:52:56Z;Sandra;7199.655;115591244;Peru; -2018-11-21T02:45:47Z;Sandra;9825.418;114788092;Peru; -2018-11-21T02:44:16Z;Nathália;1469.506;114832024;Peru; -2018-11-21T02:37:14Z;Nathália;4260.124;115358387;Peru; -2018-11-21T02:29:06Z;Ana;7568.44;115484975;Peru; -2018-11-21T02:26:34Z;Armando;5764.563;115897213;Peru; -2018-11-21T02:14:07Z;Júlio Cesar;1770.624;116162870;Peru; -2018-11-21T02:11:55Z;Júlio Cesar;94.625470000000007;114748582;Peru; -2018-11-21T01:54:40Z;Ana;4285.83;115029987;Peru; -2018-11-21T01:49:14Z;Armando;4253.015;116383543;Peru; -2018-11-21T01:44:56Z;Eduardo;1411.572;114902100;Peru; -2018-11-21T01:39:02Z;nathalia;3410.932;115589092;Peru; -2018-11-21T01:28:18Z;Júlio;1723.066;115537443;Peru; -2018-11-21T01:25:48Z;Nathália;93.61378;116287151;Peru; -2018-11-21T01:09:58Z;Armando;1108.576;115023283;Peru; -2018-11-21T01:00:56Z;Júlio Cesar;5000.622;115987501;Peru; -2018-11-21T00:08:48Z;Sandra;2994.464;115460601;Peru; -2018-11-21T00:07:55Z;Sandra;4828.115;115662630;Peru; -2018-11-20T22:59:13Z;Ana;4546.16;114736260;Peru; -2018-11-20T22:54:30Z;Sandra;4245.882;116368160;Peru; -2018-11-20T22:54:07Z;nathalia;447.5885;114712931;Peru; -2018-11-20T22:52:51Z;Sandra;6307.648;114732376;Peru; -2018-11-20T22:50:18Z;Ana;3170.821;116019067;Peru; -2018-11-20T22:41:15Z;nathalia;104.6004;115729456;Peru; -2018-11-20T22:30:53Z;Nathália;198.0893;115905313;Peru; -2018-11-20T22:05:33Z;Ana;2052.411;115943766;Peru; -2018-11-20T22:04:26Z;Ana;350.8054;116316736;Peru; -2018-11-20T21:17:40Z;Sandra;9179.652;114565643;Peru; -2018-11-20T21:02:17Z;Júlio Cesar;2256.475;115548986;Peru; -2018-11-20T20:19:23Z;Nathália;1128.319;114724340;Peru; -2018-11-20T20:15:55Z;Eduardo;836.1218;116061939;Peru; -2018-11-20T20:13:20Z;nathalia;575.3803;115003695;Peru; -2018-11-20T19:37:56Z;Júlio Cesar;3356.788;115505690;Peru; -2018-11-20T19:32:46Z;Júlio Cesar;7502.985;115236579;Peru; -2018-11-20T19:27:25Z;Júlio;5818.69;116272470;Peru; -2018-11-20T19:15:07Z;Ana;3379.33;114799126;Peru; -2018-11-20T19:11:18Z;Armando;105.7427;114671908;Peru; -2018-11-20T19:01:09Z;Nathália;2904.168;116093298;Peru; -2018-11-20T17:58:00Z;Armando;4037.432;114966989;Peru; -2018-11-20T17:34:08Z;Sandra;1683.937;114444982;Peru; -2018-11-20T17:20:48Z;Sandra;3060.085;114934144;Peru; -2018-11-20T17:20:03Z;Eduardo;5155.692;116316968;Peru; -2018-11-20T17:10:57Z;Nathália;771.7495;115127227;Peru; -2018-11-20T17:07:35Z;Sandra;12603.54;114879801;Peru; -2018-11-20T16:46:30Z;Júlio;5372.243;115890591;Peru; -2018-11-20T16:45:16Z;nathalia;1930.247;115219349;Peru; -2018-11-20T16:40:32Z;Ana;693.6281;114952731;Peru; -2018-11-20T16:34:54Z;nathalia;224.5703;115261079;Peru; -2018-11-20T16:34:21Z;Júlio;609.3683;114517097;Peru; -2018-11-20T16:21:56Z;Nathália;3901.017;114880739;Peru; -2018-11-20T16:07:40Z;Sandra;7236.481;114277390;Peru; -2018-11-20T15:54:26Z;Júlio Cesar;7369.153;115060905;Peru; -2018-11-20T15:44:22Z;Ana;2621.453;116329499;Peru; -2018-11-20T15:08:19Z;Nathália;1450.922;115003115;Peru; -2018-11-20T15:07:18Z;Ana;3068.012;115449022;Peru; -2018-11-20T14:54:30Z;Júlio Cesar;445.0985;115235565;Peru; -2018-11-20T14:41:50Z;Eduardo;2556.719;116335470;Peru; -2018-11-20T14:24:28Z;nathalia;8450.182;115687658;Peru; -2018-11-20T14:08:38Z;Armando;6707.18;116254050;Peru; -2018-11-20T14:06:12Z;Armando;9944.016;114931092;Peru; -2018-11-20T14:05:05Z;Sandra;1559.092;115348571;Peru; -2018-11-20T14:02:24Z;Sandra;8431.91;115838970;Peru; -2018-11-20T13:52:16Z;Júlio Cesar;5932.036;116270656;Peru; -2018-11-20T13:33:18Z;Eduardo;6789.487;115671237;Peru; -2018-11-20T13:24:09Z;Nathália;1402.3;116126252;Peru; -2018-11-20T13:09:19Z;Júlio Cesar;7695.176;115508105;Peru; -2018-11-20T13:03:57Z;Eduardo;1764.495;114281158;Peru; -2018-11-20T12:57:53Z;Ana;5026.418;116361722;Peru; -2018-11-20T12:57:17Z;Eduardo;8130.535;115770749;Peru; -2018-11-20T12:33:43Z;Júlio;1314.129;115321756;Peru; -2018-11-20T12:07:41Z;Eduardo;322.823;114625347;Peru; -2018-11-20T12:04:28Z;Ana;6010.449;114843339;Peru; -2018-11-20T12:01:06Z;Eduardo;584.5222;116043273;Peru; -2018-11-20T11:59:22Z;Júlio;1435.55;115038868;Peru; -2018-11-20T11:27:19Z;Armando;881.4833;115236602;Peru; -2018-11-20T11:07:49Z;Armando;7722.466;116220691;Peru; -2018-11-20T10:44:50Z;Nathália;5704.596;114338491;Peru; -2018-11-20T10:43:40Z;Ana;5221.626;114275056;Peru; -2018-11-20T10:43:39Z;Júlio;4518.187;114693430;Peru; -2018-11-20T10:36:02Z;Júlio;1779.758;116391183;Peru; -2018-11-20T10:31:50Z;Nathália;2875.655;116382958;Peru; -2018-11-20T10:23:43Z;Júlio;9254.136;114366240;Peru; -2018-11-20T10:06:15Z;Sandra;4900.801;114204163;Peru; -2018-11-20T10:05:07Z;Júlio;7350.244;114458619;Peru; -2018-11-20T09:57:27Z;Júlio;1449.769;115109183;Peru; -2018-11-20T09:08:30Z;Nathália;2159.922;114945889;Peru; -2018-11-20T09:06:42Z;Ana;8902.066;114779344;Peru; -2018-11-20T08:47:31Z;Eduardo;9312.001;114716843;Peru; -2018-11-20T08:38:41Z;Júlio;1316.362;115592990;Peru; -2018-11-20T08:30:09Z;Sandra;9109.966;115916088;Peru; -2018-11-20T08:28:49Z;Júlio;5569.588;114332295;Peru; -2018-11-20T08:26:06Z;Sandra;10374.76;115456001;Peru; -2018-11-20T08:13:15Z;Sandra;9841.377;114844166;Peru; -2018-11-20T08:05:04Z;Nathália;983.4245;115588281;Peru; -2018-11-20T07:59:08Z;Nathália;5317.527;115725580;Peru; -2018-11-20T07:39:18Z;Júlio Cesar;2035.109;115959889;Peru; -2018-11-20T07:23:50Z;Sandra;2224.687;116280433;Peru; -2018-11-20T07:22:21Z;Eduardo;5938.887;114754501;Peru; -2018-11-20T07:07:15Z;Júlio Cesar;2151.241;115073800;Peru; -2018-11-20T07:06:22Z;Júlio Cesar;7040.383;114319208;Peru; -2018-11-20T06:29:34Z;Júlio;9476.865;114246440;Peru; -2018-11-20T06:06:47Z;Júlio;313.2416;114831351;Peru; -2018-11-20T05:54:19Z;Armando;3337.982;114218456;Peru; -2018-11-20T05:43:49Z;Nathália;7615.642;115404215;Peru; -2018-11-20T05:25:26Z;Nathália;7245.589;115335889;Peru; -2018-11-20T05:19:06Z;Ana;7547.382;116064688;Peru; -2018-11-20T05:18:42Z;nathalia;36.96689;114483713;Peru; -2018-11-20T05:14:24Z;Ana;2462.143;115179556;Peru; -2018-11-20T05:06:54Z;Sandra;9826.972;115163570;Peru; -2018-11-20T04:59:49Z;Júlio;4836.883;114259528;Peru; -2018-11-20T04:51:01Z;Ana;4886.44;115836092;Peru; -2018-11-20T04:32:26Z;Eduardo;2962.241;115466216;Peru; -2018-11-20T04:32:04Z;Júlio Cesar;4603.575;116040733;Peru; -2018-11-20T04:11:55Z;Ana;2918.884;114678379;Peru; -2018-11-20T04:03:56Z;Sandra;508.8035;114494944;Peru; -2018-11-20T03:47:58Z;Ana;3345.729;115306748;Peru; -2018-11-20T03:36:55Z;Júlio;1023.751;114333808;Peru; -2018-11-20T03:30:48Z;Sandra;5097.563;115051116;Peru; -2018-11-20T03:19:30Z;Ana;4380.044;116272728;Peru; -2018-11-20T03:11:42Z;Nathália;7939.526;115672523;Peru; -2018-11-20T02:55:42Z;Armando;11214.02;115391587;Peru; -2018-11-20T02:38:35Z;Júlio;8135.977;115404257;Peru; -2018-11-20T02:26:04Z;Eduardo;1136.507;114940996;Peru; -2018-11-20T02:13:05Z;Armando;2493.652;115805203;Peru; -2018-11-20T01:47:20Z;Júlio;12149.27;114954915;Peru; -2018-11-20T01:43:39Z;nathalia;163.227;114486291;Peru; -2018-11-20T01:30:14Z;Nathália;3515.541;116176240;Peru; -2018-11-20T01:14:54Z;Armando;1942.222;115628462;Peru; -2018-11-20T00:22:40Z;Eduardo;3649.939;116140071;Peru; -2018-11-20T00:11:47Z;Eduardo;3648.963;114342271;Peru; -2018-11-20T00:07:44Z;Júlio Cesar;4256.321;114590633;Peru; -2018-11-19T23:51:09Z;Ana;68.8738;114666457;Peru; -2018-11-19T22:11:10Z;Júlio Cesar;3506.847;114634498;Peru; -2018-11-19T21:54:15Z;Ana;1563.846;115366962;Peru; -2018-11-19T21:51:25Z;Armando;7286.127;115112684;Peru; -2018-11-19T21:36:56Z;nathalia;1239.534;116096217;Peru; -2018-11-19T21:31:55Z;Júlio Cesar;862.0411;114874761;Peru; -2018-11-19T21:24:15Z;Eduardo;2324.603;115585106;Peru; -2018-11-19T21:17:16Z;Sandra;7484.96;115743050;Peru; -2018-11-19T21:05:15Z;Nathália;70.52998;115911687;Peru; -2018-11-19T20:59:13Z;Júlio;831.3329;116148685;Peru; -2018-11-19T20:50:13Z;Ana;1105.295;114886754;Peru; -2018-11-19T20:48:30Z;Júlio;4831.412;115986923;Peru; -2018-11-19T20:24:20Z;Júlio;1187.482;116057191;Peru; -2018-11-19T20:21:13Z;Armando;713.2922;116154643;Peru; -2018-11-19T19:32:27Z;Júlio;928.5815;115030469;Peru; -2018-11-19T19:29:48Z;Sandra;9546.882;116360111;Peru; -2018-11-19T19:05:49Z;Armando;3825.269;114615480;Peru; -2018-11-19T18:38:28Z;Júlio;6209.352;114808613;Peru; -2018-11-19T18:36:05Z;Armando;2564.26;115133554;Peru; -2018-11-19T18:32:53Z;Eduardo;1568.423;114310024;Peru; -2018-11-19T18:23:33Z;Nathália;367.4478;114907350;Peru; -2018-11-19T18:09:41Z;Ana;5928.845;115360180;Peru; -2018-11-19T17:54:41Z;Sandra;148.5185;115471478;Peru; -2018-11-19T17:51:07Z;Eduardo;5335.94;115111742;Peru; -2018-11-19T17:24:00Z;nathalia;2266.946;114876427;Peru; -2018-11-19T17:18:42Z;Armando;1638.019;115231829;Peru; -2018-11-19T17:07:12Z;Eduardo;5712.418;115062492;Peru; -2018-11-19T16:39:31Z;Sandra;4270.499;116110886;Peru; -2018-11-19T16:26:12Z;nathalia;4436.845;115067002;Peru; -2018-11-19T15:56:22Z;Nathália;1832.152;114427009;Peru; -2018-11-19T15:10:10Z;Júlio Cesar;858.6976;114838925;Peru; -2018-11-19T15:10:04Z;Júlio;2277.967;115868969;Peru; -2018-11-19T14:43:43Z;Júlio;954.7516;114279067;Peru; -2018-11-19T14:19:02Z;Ana;4325.612;114858430;Peru; -2018-11-19T14:12:13Z;Júlio;7858.657;114901330;Peru; -2018-11-19T13:36:47Z;Ana;2380.777;116231461;Peru; -2018-11-19T13:35:50Z;Ana;106.835;114787966;Peru; -2018-11-19T13:09:26Z;Sandra;9901.367;115266836;Peru; -2018-11-19T13:01:50Z;Ana;1008.313;114571139;Peru; -2018-11-19T12:50:22Z;Eduardo;1778.646;115313250;Peru; -2018-11-19T12:28:47Z;Sandra;4.379218;114925947;Peru; -2018-11-19T11:39:29Z;Eduardo;3716.131;114663706;Peru; -2018-11-19T10:36:10Z;nathalia;9042.682;115146423;Peru; -2018-11-19T10:35:08Z;Nathália;4248.163;114652629;Peru; -2018-11-19T10:02:00Z;Eduardo;2339.859;115412558;Peru; -2018-11-19T09:42:38Z;Ana;1134.671;114355552;Peru; -2018-11-19T09:30:05Z;Júlio;3201.525;115334224;Peru; -2018-11-19T09:13:45Z;Sandra;982.6881;115705490;Peru; -2018-11-19T09:05:45Z;Ana;152.3516;115135386;Peru; -2018-11-19T08:42:03Z;Júlio;3335.734;114437194;Peru; -2018-11-19T08:37:34Z;Júlio Cesar;4758.968;114451828;Peru; -2018-11-19T08:30:36Z;Nathália;4686.498;115016255;Peru; -2018-11-19T08:27:16Z;Armando;11060.58;115475233;Peru; -2018-11-19T08:24:19Z;Júlio;4196.773;116386614;Peru; -2018-11-19T07:38:25Z;nathalia;1072.061;114418510;Peru; -2018-11-19T07:25:29Z;nathalia;5069.498;114951507;Peru; -2018-11-19T06:24:08Z;Eduardo;7203.138;114901433;Peru; -2018-11-19T06:22:03Z;Júlio Cesar;13946.52;115838649;Peru; -2018-11-19T06:05:33Z;Ana;602.6764;114788626;Peru; -2018-11-19T06:04:25Z;Nathália;2039.121;114920560;Peru; -2018-11-19T05:23:41Z;Júlio Cesar;6744.269;116079442;Peru; -2018-11-19T05:11:06Z;Sandra;1780.512;114909054;Peru; -2018-11-19T05:09:56Z;Júlio;4230.741;115609743;Peru; -2018-11-19T04:59:13Z;Júlio Cesar;2503.527;116301871;Peru; -2018-11-19T04:48:14Z;Júlio Cesar;3571.688;114230592;Peru; -2018-11-19T04:41:00Z;Sandra;3409.802;114498742;Peru; -2018-11-19T04:09:49Z;Ana;756.3658;114397472;Peru; -2018-11-19T04:05:39Z;Ana;5655.822;114930126;Peru; -2018-11-19T03:57:43Z;Eduardo;4168.717;115504423;Peru; -2018-11-19T03:47:56Z;Ana;697.6647;115253476;Peru; -2018-11-19T03:00:24Z;nathalia;2888.216;115187999;Peru; -2018-11-19T02:20:30Z;Armando;2491.51;115047821;Peru; -2018-11-19T02:04:48Z;nathalia;2887.913;116105910;Peru; -2018-11-19T02:04:37Z;Júlio;766.6045;116295056;Peru; -2018-11-19T01:49:52Z;Ana;7048.976;115844896;Peru; -2018-11-19T01:47:03Z;Nathália;2419.312;114231690;Peru; -2018-11-19T01:27:23Z;Nathália;5405.167;115668667;Peru; -2018-11-19T01:13:24Z;nathalia;7111.445;115768752;Peru; -2018-11-19T01:00:58Z;nathalia;5241.319;114832210;Peru; -2018-11-19T00:41:06Z;Nathália;256.1636;115913510;Peru; -2018-11-19T00:36:20Z;Júlio;2028.139;115982594;Peru; -2018-11-19T00:30:05Z;Júlio Cesar;2230.839;116131137;Peru; -2018-11-19T00:23:31Z;nathalia;629.0477;114412103;Peru; -2018-11-19T00:04:06Z;nathalia;5055.032;114806765;Peru; -2018-11-18T23:42:21Z;Júlio;1049.69;115948277;Peru; -2018-11-18T23:39:53Z;nathalia;4596.746;115074117;Peru; -2018-11-18T23:12:31Z;nathalia;4349.801;114585084;Peru; -2018-11-18T23:08:00Z;Ana;3519.228;114796585;Peru; -2018-11-18T22:47:38Z;Eduardo;3426.503;114926208;Peru; -2018-11-18T22:32:56Z;nathalia;2602.809;114881125;Peru; -2018-11-18T22:25:00Z;Eduardo;4460.133;114695521;Peru; -2018-11-18T22:15:42Z;Nathália;9051.905;115205356;Peru; -2018-11-18T22:08:52Z;Sandra;6204;114617021;Peru; -2018-11-18T22:07:38Z;Armando;1192.128;114327177;Peru; -2018-11-18T21:21:36Z;Nathália;8255.08;115830150;Peru; -2018-11-18T21:14:37Z;Eduardo;1327.944;114379015;Peru; -2018-11-18T21:14:15Z;nathalia;15577.95;116202852;Peru; -2018-11-18T21:14:04Z;Ana;784.2513;115959855;Peru; -2018-11-18T21:11:35Z;Nathália;1295.481;115037898;Peru; -2018-11-18T20:51:18Z;nathalia;5434.64;115064300;Peru; -2018-11-18T20:45:43Z;nathalia;11137.3;115426381;Peru; -2018-11-18T20:43:03Z;Júlio;1654.595;114760977;Peru; -2018-11-18T20:42:14Z;Ana;992.3786;114451138;Peru; -2018-11-18T20:33:39Z;Sandra;853.9542;116357355;Peru; -2018-11-18T20:16:48Z;Júlio Cesar;4076.914;114885969;Peru; -2018-11-18T20:04:51Z;Júlio;2901.62;115638167;Peru; -2018-11-18T19:58:20Z;Ana;8466.218;115088129;Peru; -2018-11-18T19:55:47Z;Nathália;6775.738;115651747;Peru; -2018-11-18T19:46:13Z;Júlio Cesar;4136.812;115046227;Peru; -2018-11-18T19:43:04Z;Ana;12731.56;115938053;Peru; -2018-11-18T19:11:07Z;nathalia;991.4995;114660809;Peru; -2018-11-18T18:58:47Z;Sandra;2261.415;115763801;Peru; -2018-11-18T18:45:18Z;Ana;7454.783;115159207;Peru; -2018-11-18T18:31:53Z;Eduardo;8878.537;114912668;Peru; -2018-11-18T18:29:27Z;Sandra;4160.939;115366330;Peru; -2018-11-18T18:14:06Z;Armando;7496.316;115245701;Peru; -2018-11-18T18:12:45Z;Ana;1930.371;116335608;Peru; -2018-11-18T18:12:41Z;Sandra;9043.613;115308938;Peru; -2018-11-18T17:34:02Z;Júlio Cesar;2262.411;116067611;Peru; -2018-11-18T17:22:17Z;Armando;8095.155;115232792;Peru; -2018-11-18T17:20:09Z;Júlio;3781.919;115677295;Peru; -2018-11-18T17:13:08Z;Sandra;2928.46;115178276;Peru; -2018-11-18T16:56:08Z;Júlio Cesar;5437.286;116252531;Peru; -2018-11-18T16:40:19Z;Júlio Cesar;866.1458;115528634;Peru; -2018-11-18T16:14:03Z;Júlio;1514.447;115682148;Peru; -2018-11-18T16:09:11Z;Nathália;9247.003;115384932;Peru; -2018-11-18T15:46:36Z;Sandra;5307.771;114698221;Peru; -2018-11-18T15:16:53Z;Armando;3349.268;114310768;Peru; -2018-11-18T14:54:32Z;Júlio Cesar;3602.3;115854819;Peru; -2018-11-18T14:18:12Z;Júlio Cesar;4033.921;114289859;Peru; -2018-11-18T14:02:09Z;Armando;3043.618;115004323;Peru; -2018-11-18T13:56:11Z;nathalia;7661.851;114353082;Peru; -2018-11-18T13:37:20Z;Nathália;416.484;116284650;Peru; -2018-11-18T12:59:55Z;Júlio;2680.913;115886982;Peru; -2018-11-18T12:57:34Z;Júlio;1259.851;115071303;Peru; -2018-11-18T12:43:02Z;Nathália;182.7544;116166489;Peru; -2018-11-18T12:41:45Z;Armando;4699.512;116303645;Peru; -2018-11-18T12:38:27Z;Ana;4074.669;114533980;Peru; -2018-11-18T12:23:27Z;Ana;8820.608;114911735;Peru; -2018-11-18T12:11:16Z;Sandra;8222.012;115993744;Peru; -2018-11-18T12:07:37Z;Júlio;2156.161;115488147;Peru; -2018-11-18T12:00:08Z;Sandra;1019.704;115756641;Peru; -2018-11-18T11:32:30Z;Ana;4829.766;116343587;Peru; -2018-11-18T11:26:31Z;Armando;2069.346;115814769;Peru; -2018-11-18T11:22:00Z;nathalia;8597.904;114266731;Peru; -2018-11-18T11:21:15Z;Júlio;59.43223;115061838;Peru; -2018-11-18T11:18:37Z;Ana;3621.431;115348872;Peru; -2018-11-18T11:10:08Z;Sandra;3826.717;115020591;Peru; -2018-11-18T11:01:53Z;Eduardo;8371.602;115156297;Peru; -2018-11-18T10:33:47Z;Armando;9678.78;114661098;Peru; -2018-11-18T10:29:19Z;Ana;1278.513;114965096;Peru; -2018-11-18T10:25:03Z;Sandra;1374.16;115186607;Peru; -2018-11-18T10:16:53Z;Ana;5282.995;115756621;Peru; -2018-11-18T10:12:21Z;Sandra;927.0287;115259277;Peru; -2018-11-18T09:47:39Z;Júlio Cesar;3522.184;115439826;Peru; -2018-11-18T09:31:10Z;Júlio Cesar;5916.797;114791750;Peru; -2018-11-18T09:28:06Z;Júlio Cesar;6529.462;114953793;Peru; -2018-11-18T09:08:52Z;Armando;6684.613;115940888;Peru; -2018-11-18T08:56:38Z;Júlio Cesar;8889.872;116320218;Peru; -2018-11-18T08:24:33Z;Júlio;1907.287;114254115;Peru; -2018-11-18T08:00:58Z;Júlio;11948.76;115017131;Peru; -2018-11-18T07:42:09Z;Eduardo;3357.075;114288017;Peru; -2018-11-18T07:14:55Z;Júlio;6607.491;114317518;Peru; -2018-11-18T06:33:01Z;Armando;3663.865;114768264;Peru; -2018-11-18T06:13:17Z;Eduardo;3271.999;115700970;Peru; -2018-11-18T05:55:55Z;Sandra;5181.259;114334789;Peru; -2018-11-18T05:43:53Z;Armando;3599.206;115231869;Peru; -2018-11-18T05:41:05Z;nathalia;7498.762;115087992;Peru; -2018-11-18T05:26:06Z;Júlio Cesar;5234.045;115192592;Peru; -2018-11-18T05:01:48Z;Eduardo;6049.628;116120956;Peru; -2018-11-18T04:59:16Z;Nathália;3690.066;115134491;Peru; -2018-11-18T04:45:39Z;Ana;5141.12;115891504;Peru; -2018-11-18T04:25:34Z;nathalia;1311.458;115976239;Peru; -2018-11-18T03:57:31Z;Armando;3191.746;115423091;Peru; -2018-11-18T03:41:35Z;nathalia;3772.224;115449367;Peru; -2018-11-18T03:32:18Z;Júlio Cesar;4872.017;115379953;Peru; -2018-11-18T03:09:23Z;nathalia;4036.184;114268094;Peru; -2018-11-18T02:59:43Z;nathalia;4032.94;114213452;Peru; -2018-11-18T02:52:23Z;Ana;912.8928;115440748;Peru; -2018-11-18T02:50:49Z;Armando;4146.233;114815180;Peru; -2018-11-18T02:47:19Z;Júlio Cesar;8024.597;115134291;Peru; -2018-11-18T02:29:07Z;Eduardo;6527.134;115250458;Peru; -2018-11-18T02:07:55Z;Júlio Cesar;3583.91;114851654;Peru; -2018-11-18T02:06:40Z;Armando;3485.227;115814781;Peru; -2018-11-18T02:06:10Z;Eduardo;4096.989;115879841;Peru; -2018-11-18T01:48:43Z;Nathália;3672.74;114373903;Peru; -2018-11-18T01:41:27Z;Sandra;1994.603;114917744;Peru; -2018-11-18T01:39:36Z;Eduardo;609.3494;114361598;Peru; -2018-11-18T01:29:25Z;Nathália;2361.257;116210380;Peru; -2018-11-18T01:12:35Z;Sandra;2790.812;116261268;Peru; -2018-11-18T00:54:36Z;Júlio;12316.48;115502437;Peru; -2018-11-18T00:53:15Z;Ana;12117.65;114686844;Peru; -2018-11-17T23:57:21Z;Armando;1617.788;115140020;Peru; -2018-11-17T23:36:04Z;Eduardo;1916.22;114734922;Peru; -2018-11-17T23:25:30Z;Júlio Cesar;1184.294;115277911;Peru; -2018-11-17T23:21:53Z;Armando;4949.407;115464078;Peru; -2018-11-17T23:21:21Z;Armando;9760.932;116093050;Peru; -2018-11-17T22:43:17Z;Eduardo;2037.892;115515399;Peru; -2018-11-17T22:39:34Z;Nathália;173.2445;114606503;Peru; -2018-11-17T22:17:11Z;Ana;9511.736;114535153;Peru; -2018-11-17T22:15:07Z;Júlio;3813.448;115708934;Peru; -2018-11-17T22:04:11Z;Sandra;5385.665;115969408;Peru; -2018-11-17T21:55:28Z;nathalia;5224.689;115725205;Peru; -2018-11-17T21:53:34Z;Júlio;3907.908;115832572;Peru; -2018-11-17T21:47:10Z;Júlio;4952.683;115942029;Peru; -2018-11-17T21:15:34Z;Sandra;4938.869;116161637;Peru; -2018-11-17T20:58:38Z;nathalia;4252.259;115478978;Peru; -2018-11-17T20:43:32Z;Sandra;3678.093;115361927;Peru; -2018-11-17T20:18:28Z;Júlio Cesar;1528.114;116293373;Peru; -2018-11-17T20:05:31Z;Júlio;1267.312;115447746;Peru; -2018-11-17T20:04:13Z;Sandra;148.5986;116065713;Peru; -2018-11-17T19:59:09Z;Sandra;2858.517;115956124;Peru; -2018-11-17T19:55:49Z;Ana;2041.918;114525833;Peru; -2018-11-17T19:49:08Z;Júlio Cesar;1160.786;116112222;Peru; -2018-11-17T19:07:27Z;Nathália;153.7436;116130321;Peru; -2018-11-17T18:58:36Z;Armando;7018.847;116261455;Peru; -2018-11-17T18:58:02Z;nathalia;7848.31;114767771;Peru; -2018-11-17T18:42:21Z;Júlio Cesar;244.6074;116317792;Peru; -2018-11-17T18:15:03Z;Eduardo;7727.366;115811986;Peru; -2018-11-17T18:02:23Z;Júlio;382.9027;114670383;Peru; -2018-11-17T17:55:00Z;Sandra;1652.843;114547574;Peru; -2018-11-17T17:51:39Z;Sandra;9334.686;115793662;Peru; -2018-11-17T17:32:23Z;Nathália;2216.339;116011525;Peru; -2018-11-17T17:22:54Z;nathalia;3105.291;115336261;Peru; -2018-11-17T17:12:32Z;Júlio;3693.096;114842532;Peru; -2018-11-17T17:05:28Z;Armando;6480.795;115068601;Peru; -2018-11-17T16:43:51Z;Eduardo;8601.122;114921410;Peru; -2018-11-17T16:30:01Z;Júlio Cesar;2758.367;114510200;Peru; -2018-11-17T16:16:51Z;Sandra;145.3322;114224103;Peru; -2018-11-17T16:06:37Z;Nathália;1029.002;116342097;Peru; -2018-11-17T16:02:08Z;Ana;4429.75;115524120;Peru; -2018-11-17T15:59:35Z;Eduardo;4537.28;114474768;Peru; -2018-11-17T15:46:35Z;Ana;1040.494;114582782;Peru; -2018-11-17T15:39:49Z;nathalia;3587.52;114237717;Peru; -2018-11-17T15:36:00Z;Sandra;7406.645;114272174;Peru; -2018-11-17T15:31:59Z;Eduardo;1931.384;115014910;Peru; -2018-11-17T15:13:46Z;Ana;2083.363;114839726;Peru; -2018-11-17T15:01:22Z;Júlio;4012.97;115602298;Peru; -2018-11-17T14:59:50Z;Ana;1587.94;115918825;Peru; -2018-11-17T14:55:29Z;Nathália;1947.832;116376658;Peru; -2018-11-17T14:27:40Z;Ana;551.8231;116091062;Peru; -2018-11-17T14:17:32Z;Sandra;3928.071;115512221;Peru; -2018-11-17T14:07:50Z;Júlio Cesar;4681.845;116218492;Peru; -2018-11-17T13:49:11Z;Júlio Cesar;6460.908;114814304;Peru; -2018-11-17T13:18:07Z;nathalia;6205.75;114868500;Peru; -2018-11-17T13:10:01Z;Nathália;436.5301;114950743;Peru; -2018-11-17T12:04:34Z;Sandra;3435.746;114870580;Peru; -2018-11-17T11:55:15Z;Júlio Cesar;1795.406;114472509;Peru; -2018-11-17T11:48:24Z;Ana;7383.579;116283232;Peru; -2018-11-17T11:32:11Z;Ana;4513.602;114690239;Peru; -2018-11-17T11:27:39Z;nathalia;513.2544;114765924;Peru; -2018-11-17T11:01:19Z;nathalia;1985.373;115694653;Peru; -2018-11-17T10:55:31Z;nathalia;1787.399;115724100;Peru; -2018-11-17T10:46:03Z;Eduardo;2888.558;114878528;Peru; -2018-11-17T10:34:08Z;nathalia;3146.461;116245212;Peru; -2018-11-17T10:31:39Z;Armando;3038.362;115556227;Peru; -2018-11-17T10:22:38Z;Júlio;8165.894;114897775;Peru; -2018-11-17T10:17:10Z;Eduardo;908.3946;116025020;Peru; -2018-11-17T10:16:27Z;nathalia;6892.636;115762836;Peru; -2018-11-17T10:16:06Z;nathalia;4147.927;114395303;Peru; -2018-11-17T09:55:10Z;Júlio Cesar;3845.902;114229149;Peru; -2018-11-17T09:41:52Z;Sandra;10751.6;114271005;Peru; -2018-11-17T08:57:34Z;nathalia;2988.074;116080472;Peru; -2018-11-17T08:43:41Z;Armando;2685.649;115695142;Peru; -2018-11-17T08:36:38Z;Eduardo;4000.401;115724277;Peru; -2018-11-17T08:29:03Z;Eduardo;809.6926;115922621;Peru; -2018-11-17T08:28:37Z;Ana;4829.095;115005423;Peru; -2018-11-17T08:05:51Z;Armando;1858.436;114582901;Peru; -2018-11-17T07:45:57Z;Júlio Cesar;2542.493;114292987;Peru; -2018-11-17T07:39:38Z;Armando;726.4986;115426200;Peru; -2018-11-17T07:37:55Z;Eduardo;3754.383;115452920;Peru; -2018-11-17T07:23:47Z;nathalia;4525.841;114978342;Peru; -2018-11-17T07:03:37Z;Sandra;4164.168;115456907;Peru; -2018-11-17T06:41:34Z;Júlio;546.4788;114827846;Peru; -2018-11-17T06:34:08Z;Júlio Cesar;2979.781;114949501;Peru; -2018-11-17T06:27:08Z;Nathália;2853.006;114239326;Peru; -2018-11-17T06:14:53Z;nathalia;4168.358;116333383;Peru; -2018-11-17T06:01:38Z;Júlio;2348.312;116265091;Peru; -2018-11-17T05:49:15Z;Eduardo;3942.734;114201015;Peru; -2018-11-17T05:42:10Z;Armando;9304.248;115887985;Peru; -2018-11-17T05:25:43Z;Armando;6787.524;114333388;Peru; -2018-11-17T05:23:50Z;Armando;6992.111;115776183;Peru; -2018-11-17T05:16:30Z;nathalia;3890.238;115987534;Peru; -2018-11-17T05:07:21Z;nathalia;4817.485;116085232;Peru; -2018-11-17T04:47:39Z;nathalia;6273;116297265;Peru; -2018-11-17T04:33:39Z;Eduardo;8649.972;114928633;Peru; -2018-11-17T04:02:27Z;Sandra;5364.055;115711486;Peru; -2018-11-17T03:57:34Z;Júlio Cesar;8533.129;114580827;Peru; -2018-11-17T03:18:15Z;Ana;343.6084;115100938;Peru; -2018-11-17T03:12:43Z;Armando;3783.237;115293302;Peru; -2018-11-17T02:39:28Z;nathalia;477.1578;115360719;Peru; -2018-11-17T02:03:40Z;Júlio;7769.807;115125340;Peru; -2018-11-17T01:40:47Z;Sandra;756.171;116225473;Peru; -2018-11-17T01:33:35Z;Ana;6723.58;114352066;Peru; -2018-11-17T01:23:50Z;Júlio;764.4839;115642122;Peru; -2018-11-17T01:07:58Z;Ana;2489.703;115708891;Peru; -2018-11-17T01:05:33Z;Júlio Cesar;5557.344;115059834;Peru; -2018-11-17T00:39:28Z;nathalia;10640.52;115491077;Peru; -2018-11-17T00:36:39Z;Eduardo;188.1791;115194087;Peru; -2018-11-17T00:14:14Z;Júlio Cesar;2489.972;115470958;Peru; -2018-11-17T00:06:51Z;Eduardo;4311.203;114445577;Peru; -2018-11-16T23:39:13Z;Júlio Cesar;6178.075;114506724;Peru; -2018-11-16T23:36:48Z;Armando;3925.002;115569084;Peru; -2018-11-16T23:09:10Z;Nathália;5312.149;116112727;Peru; -2018-11-16T22:56:58Z;Sandra;5409.366;115969480;Peru; -2018-11-16T22:15:59Z;Ana;2112.519;116339941;Peru; -2018-11-16T22:04:42Z;Nathália;1455.008;116331101;Peru; -2018-11-16T22:02:54Z;Eduardo;7259.385;116368704;Peru; -2018-11-16T22:02:45Z;nathalia;3478.823;116082003;Peru; -2018-11-16T21:08:34Z;Júlio Cesar;188.7275;115527351;Peru; -2018-11-16T21:07:40Z;Nathália;4345.647;115459735;Peru; -2018-11-16T20:16:16Z;Sandra;1641.654;115961418;Peru; -2018-11-16T20:10:21Z;Armando;995.5439;115347900;Peru; -2018-11-16T20:04:05Z;Armando;3191.52;115815842;Peru; -2018-11-16T20:01:10Z;Ana;1417.984;116144136;Peru; -2018-11-16T19:59:23Z;Nathália;1229.641;115977564;Peru; -2018-11-16T19:37:18Z;Eduardo;5797.85;115516746;Peru; -2018-11-16T19:27:51Z;Ana;3356.201;115453097;Peru; -2018-11-16T19:17:55Z;Nathália;1154.569;116290426;Peru; -2018-11-16T19:05:35Z;Armando;84.85259;116015656;Peru; -2018-11-16T19:05:04Z;nathalia;2653.937;116090943;Peru; -2018-11-16T18:56:04Z;Júlio Cesar;7467.511;114965845;Peru; -2018-11-16T18:51:36Z;Nathália;1375.482;114553207;Peru; -2018-11-16T18:29:43Z;Sandra;2040.882;115954888;Peru; -2018-11-16T18:21:39Z;nathalia;1023.452;114632269;Peru; -2018-11-16T18:13:36Z;Ana;2626.332;115085685;Peru; -2018-11-16T18:06:56Z;Júlio;1801.421;116342803;Peru; -2018-11-16T17:51:36Z;Nathália;9.540751;114933794;Peru; -2018-11-16T17:24:11Z;nathalia;5927.848;116089032;Peru; -2018-11-16T17:13:08Z;Sandra;1525.508;114846220;Peru; -2018-11-16T17:06:17Z;Eduardo;1436.955;114981366;Peru; -2018-11-16T16:44:59Z;Nathália;550.927;114678023;Peru; -2018-11-16T16:40:10Z;Eduardo;3346.116;114361339;Peru; -2018-11-16T16:31:20Z;Eduardo;7039.594;114267773;Peru; -2018-11-16T16:15:04Z;nathalia;6749.364;115870525;Peru; -2018-11-16T16:13:28Z;Júlio;5008.162;115605256;Peru; -2018-11-16T16:07:17Z;Júlio;421.9588;115822145;Peru; -2018-11-16T15:26:50Z;Nathália;2818.517;115178369;Peru; -2018-11-16T14:55:07Z;Júlio Cesar;9441.311;114210105;Peru; -2018-11-16T14:39:49Z;nathalia;1914.493;116166517;Peru; -2018-11-16T14:27:28Z;Eduardo;5094.858;114624049;Peru; -2018-11-16T13:40:02Z;Eduardo;4484.009;115767252;Peru; -2018-11-16T13:29:35Z;Armando;11108.23;116246471;Peru; -2018-11-16T13:20:33Z;Armando;3357.217;115356426;Peru; -2018-11-16T12:18:18Z;Sandra;1460.377;114737958;Peru; -2018-11-16T11:56:55Z;Armando;12565.84;116387898;Peru; -2018-11-16T11:53:45Z;nathalia;587.5807;115822014;Peru; -2018-11-16T11:50:16Z;Sandra;903.3112;116101076;Peru; -2018-11-16T11:29:19Z;Júlio;3075.575;114861315;Peru; -2018-11-16T11:24:23Z;Sandra;5462.917;116284912;Peru; -2018-11-16T11:24:02Z;Júlio;1548.474;115374222;Peru; -2018-11-16T11:11:00Z;Sandra;2303.504;116215378;Peru; -2018-11-16T11:06:34Z;Ana;236.9411;116232238;Peru; -2018-11-16T10:56:08Z;Ana;4170.612;115664945;Peru; -2018-11-16T10:30:56Z;nathalia;1169.12;115382580;Peru; -2018-11-16T10:28:00Z;Eduardo;5894.868;116210745;Peru; -2018-11-16T10:18:43Z;Júlio Cesar;115.5132;116009527;Peru; -2018-11-16T10:12:51Z;Nathália;4870.591;116306014;Peru; -2018-11-16T10:11:14Z;Ana;9412.244;114691744;Peru; -2018-11-16T09:34:17Z;Nathália;6234.621;115826058;Peru; -2018-11-16T09:03:09Z;Júlio Cesar;562.7288;114599020;Peru; -2018-11-16T08:46:36Z;Júlio;8313.254;114569907;Peru; -2018-11-16T08:13:00Z;Armando;1540.219;114868126;Peru; -2018-11-16T07:46:14Z;Ana;7181.482;116184468;Peru; -2018-11-16T07:42:53Z;Júlio Cesar;4881.336;114395610;Peru; -2018-11-16T06:56:15Z;Nathália;3014.798;116274960;Peru; -2018-11-16T06:46:10Z;Júlio Cesar;4368.908;115377258;Peru; -2018-11-16T06:36:01Z;nathalia;5674.367;115948345;Peru; -2018-11-16T06:22:49Z;Eduardo;176.9211;115865266;Peru; -2018-11-16T05:27:42Z;Sandra;277.9265;114979998;Peru; -2018-11-16T05:03:17Z;Júlio;1897.799;115497066;Peru; -2018-11-16T04:32:23Z;nathalia;6906.263;114850697;Peru; -2018-11-16T04:29:33Z;nathalia;6170.608;115398231;Peru; -2018-11-16T04:28:46Z;Eduardo;1942.643;115668845;Peru; -2018-11-16T04:21:02Z;Júlio Cesar;6888.17;116222718;Peru; -2018-11-16T04:07:19Z;Sandra;3565.605;115457456;Peru; -2018-11-16T03:25:09Z;Júlio Cesar;4042.84;114769592;Peru; -2018-11-16T03:07:32Z;Armando;1430.071;115792184;Peru; -2018-11-16T03:02:49Z;nathalia;5236.111;114403681;Peru; -2018-11-16T03:02:47Z;Ana;422.6802;114486371;Peru; -2018-11-16T01:54:21Z;Ana;2766.755;115921141;Peru; -2018-11-16T01:51:41Z;Armando;4330.74;115687751;Peru; -2018-11-16T01:34:56Z;Eduardo;6621.463;114662442;Peru; -2018-11-16T01:29:54Z;Júlio Cesar;923.5092;115658332;Peru; -2018-11-16T01:22:23Z;Júlio Cesar;2596.509;116283444;Peru; -2018-11-16T01:17:48Z;Eduardo;4244.452;116133713;Peru; -2018-11-16T00:56:45Z;Nathália;1162.291;114799025;Peru; -2018-11-16T00:49:28Z;Ana;4071.442;114771028;Peru; -2018-11-16T00:20:30Z;Nathália;6466.658;115822099;Peru; -2018-11-16T00:17:39Z;Ana;134.3215;114840313;Peru; -2018-11-16T00:14:19Z;Nathália;2415.402;115078744;Peru; -2018-11-15T23:41:08Z;Nathália;4951.736;114684032;Peru; -2018-11-15T23:34:56Z;Eduardo;1981.513;114287681;Peru; -2018-11-15T23:21:19Z;Eduardo;7359.716;114748515;Peru; -2018-11-15T23:01:52Z;Eduardo;2146.546;115576550;Peru; -2018-11-15T23:00:12Z;Ana;511.5927;115509879;Peru; -2018-11-15T22:54:50Z;Nathália;3516.917;114589124;Peru; -2018-11-15T22:50:13Z;Júlio Cesar;2547.055;114318500;Peru; -2018-11-15T22:39:11Z;Nathália;1930.236;115492798;Peru; -2018-11-15T22:16:28Z;Sandra;5154.411;115504988;Peru; -2018-11-15T21:58:30Z;Júlio;1193.45;114223033;Peru; -2018-11-15T21:58:11Z;Armando;1157.63;114510093;Peru; -2018-11-15T21:44:14Z;Júlio Cesar;6856.614;115774305;Peru; -2018-11-15T21:33:19Z;Sandra;3293.62;115675710;Peru; -2018-11-15T21:27:22Z;Armando;788.812;115699998;Peru; -2018-11-15T21:25:14Z;Sandra;3979.256;115578889;Peru; -2018-11-15T21:22:58Z;Júlio;9222.241;114969387;Peru; -2018-11-15T21:12:14Z;Nathália;6961.433;115062163;Peru; -2018-11-15T21:10:27Z;nathalia;4943.874;116206546;Peru; -2018-11-15T20:56:50Z;Eduardo;5343.331;115495430;Peru; -2018-11-15T20:55:29Z;Júlio;2862.196;114334484;Peru; -2018-11-15T20:28:53Z;Sandra;4925.884;116230915;Peru; -2018-11-15T20:11:46Z;nathalia;10777.26;116024999;Peru; -2018-11-15T19:46:09Z;Eduardo;995.3467;115256382;Peru; -2018-11-15T19:45:22Z;Júlio;2058.119;116000708;Peru; -2018-11-15T19:40:43Z;Eduardo;4064.469;116337278;Peru; -2018-11-15T19:34:44Z;Sandra;2101.403;115999237;Peru; -2018-11-15T19:29:49Z;Ana;240.8039;114749911;Peru; -2018-11-15T19:24:36Z;Sandra;1772.106;114638441;Peru; -2018-11-15T18:51:27Z;Ana;3218.347;115845112;Peru; -2018-11-15T18:49:03Z;Nathália;5954.924;115669482;Peru; -2018-11-15T18:35:27Z;Sandra;7485.893;114684861;Peru; -2018-11-15T18:24:26Z;Nathália;4479.375;115629635;Peru; -2018-11-15T18:20:20Z;Nathália;5891.085;115265376;Peru; -2018-11-15T18:09:35Z;Nathália;7118.786;115829927;Peru; -2018-11-15T18:03:43Z;nathalia;6332.622;115873145;Peru; -2018-11-15T17:43:12Z;Sandra;480.7158;115868487;Peru; -2018-11-15T17:38:02Z;Nathália;3018.795;114458840;Peru; -2018-11-15T17:27:11Z;Eduardo;3925.591;116153656;Peru; -2018-11-15T17:21:19Z;Júlio;5524.683;114446910;Peru; -2018-11-15T17:10:58Z;Armando;3283.919;114678427;Peru; -2018-11-15T16:45:29Z;Nathália;5340.436;114614111;Peru; -2018-11-15T16:38:54Z;Júlio Cesar;1241.234;115817339;Peru; -2018-11-15T16:38:17Z;Júlio Cesar;506.9305;114768169;Peru; -2018-11-15T15:43:57Z;Ana;5157.718;115847873;Peru; -2018-11-15T15:39:21Z;Armando;4672.765;114839545;Peru; -2018-11-15T15:33:38Z;Eduardo;429.5544;115599997;Peru; -2018-11-15T15:13:29Z;Nathália;4349.705;116255511;Peru; -2018-11-15T14:40:58Z;Nathália;1606.492;114303976;Peru; -2018-11-15T13:55:29Z;Nathália;5329.974;115458554;Peru; -2018-11-15T13:48:02Z;Júlio Cesar;3113.895;115722142;Peru; -2018-11-15T13:18:21Z;Sandra;8009.321;114692318;Peru; -2018-11-15T13:05:57Z;Júlio Cesar;5494.71;115571964;Peru; -2018-11-15T13:03:20Z;Sandra;6862.021;116061486;Peru; -2018-11-15T12:59:38Z;Ana;1798.293;114232606;Peru; -2018-11-15T12:41:33Z;Eduardo;518.6618;115888878;Peru; -2018-11-15T12:07:27Z;Armando;122.0545;115486325;Peru; -2018-11-15T10:39:27Z;Ana;1871.356;115045805;Peru; -2018-11-15T10:29:16Z;Ana;9267.879;114951361;Peru; -2018-11-15T10:28:59Z;Ana;4108.689;115368921;Peru; -2018-11-15T09:54:37Z;Nathália;4535.401;116276660;Peru; -2018-11-15T09:43:30Z;Júlio;2393.982;115793496;Peru; -2018-11-15T09:41:20Z;Nathália;2917.728;115017895;Peru; -2018-11-15T09:33:40Z;Sandra;4697.686;115598229;Peru; -2018-11-15T09:30:49Z;Eduardo;7552.774;115762844;Peru; -2018-11-15T08:45:04Z;nathalia;3656.405;116037341;Peru; -2018-11-15T08:36:52Z;Nathália;8114.871;114856864;Peru; -2018-11-15T07:51:16Z;Armando;9617.234;116345228;Peru; -2018-11-15T07:32:45Z;Ana;2730.893;116319427;Peru; -2018-11-15T07:09:40Z;Eduardo;1859.43;116357690;Peru; -2018-11-15T07:03:00Z;Júlio Cesar;7186.374;114425692;Peru; -2018-11-15T06:59:39Z;Eduardo;5698.836;115821179;Peru; -2018-11-15T06:35:10Z;Sandra;1144.6;114658747;Peru; -2018-11-15T06:18:39Z;Eduardo;3248.555;114511351;Peru; -2018-11-15T06:17:02Z;Nathália;11125.44;114388670;Peru; -2018-11-15T06:10:19Z;Ana;1993.332;114406983;Peru; -2018-11-15T06:02:58Z;Júlio;1649.69;114927630;Peru; -2018-11-15T05:35:03Z;Júlio Cesar;3165.927;114344684;Peru; -2018-11-15T04:55:28Z;Ana;4181.788;114276503;Peru; -2018-11-15T04:39:39Z;Eduardo;5580.06;116072934;Peru; -2018-11-15T04:28:44Z;Júlio;546.7462;114222559;Peru; -2018-11-15T04:26:31Z;Júlio;992.9778;114520013;Peru; -2018-11-15T04:24:42Z;Eduardo;7130.044;114652294;Peru; -2018-11-15T04:12:29Z;Eduardo;4032.199;114779704;Peru; -2018-11-15T04:05:36Z;Nathália;5561.599;115427710;Peru; -2018-11-15T04:04:53Z;Júlio Cesar;1238.274;114706878;Peru; -2018-11-15T03:58:59Z;Armando;907.0244;116071334;Peru; -2018-11-15T03:41:15Z;Sandra;1523.412;116208018;Peru; -2018-11-15T03:12:28Z;Júlio Cesar;5397.132;114633195;Peru; -2018-11-15T03:10:25Z;Nathália;4704.691;114515719;Peru; -2018-11-15T03:06:40Z;nathalia;4221.507;115478157;Peru; -2018-11-15T03:00:57Z;Armando;11302.71;115092339;Peru; -2018-11-15T02:44:47Z;Armando;5614.105;115000080;Peru; -2018-11-15T02:30:32Z;Eduardo;2723.461;116024875;Peru; -2018-11-15T02:28:11Z;nathalia;12066.01;115436930;Peru; -2018-11-15T01:50:16Z;nathalia;10463.78;116245198;Peru; -2018-11-15T01:45:38Z;Júlio Cesar;314.1142;115107474;Peru; -2018-11-15T01:30:49Z;Nathália;3456.762;114946338;Peru; -2018-11-15T01:27:56Z;Armando;916.636;115616636;Peru; -2018-11-15T01:15:45Z;Sandra;8268.432;114219128;Peru; -2018-11-15T00:34:27Z;Ana;362.9641;115131551;Peru; -2018-11-15T00:10:52Z;Armando;7091.908;115379423;Peru; -2018-11-15T00:03:18Z;Eduardo;9032.563;116095587;Peru; -2018-11-14T23:43:31Z;Nathália;5309.327;115130861;Peru; -2018-11-14T23:37:49Z;Nathália;2242.355;114488241;Peru; -2018-11-14T23:31:49Z;Eduardo;4389.204;115994653;Peru; -2018-11-14T22:45:28Z;Armando;10941.34;114521355;Peru; -2018-11-14T22:40:59Z;nathalia;4187.148;114750490;Peru; -2018-11-14T22:39:38Z;Sandra;1105.754;116342799;Peru; -2018-11-14T22:33:03Z;nathalia;3651.445;115847276;Peru; -2018-11-14T22:14:28Z;Júlio Cesar;3630.905;114372459;Peru; -2018-11-14T21:51:13Z;Eduardo;6108.847;115197689;Peru; -2018-11-14T21:44:51Z;Eduardo;5794.79;115561535;Peru; -2018-11-14T21:40:05Z;Sandra;694.7015;116269149;Peru; -2018-11-14T21:16:59Z;Nathália;573.6924;115317768;Peru; -2018-11-14T21:15:47Z;Nathália;6305.713;116139567;Peru; -2018-11-14T21:14:42Z;Júlio;2254.202;116281546;Peru; -2018-11-14T20:40:45Z;Eduardo;8152.232;116354060;Peru; -2018-11-14T20:27:22Z;Nathália;718.6781;114623596;Peru; -2018-11-14T20:25:46Z;Ana;1816.785;115320452;Peru; -2018-11-14T19:56:03Z;Júlio;4667.292;114511507;Peru; -2018-11-14T19:38:19Z;Armando;15.08886;114720053;Peru; -2018-11-14T19:05:06Z;Armando;7601.689;114417176;Peru; -2018-11-14T18:45:45Z;Júlio;780.7838;115337728;Peru; -2018-11-14T18:20:46Z;Sandra;9975.236;114969068;Peru; -2018-11-14T18:14:33Z;Armando;1480.884;114738695;Peru; -2018-11-14T17:49:39Z;Sandra;2113.019;114428136;Peru; -2018-11-14T17:44:10Z;Armando;8723.328;114474621;Peru; -2018-11-14T17:40:15Z;nathalia;462.5718;115048980;Peru; -2018-11-14T17:34:36Z;Armando;601.7276;114801253;Peru; -2018-11-14T17:29:29Z;Eduardo;9611.356;114538006;Peru; -2018-11-14T17:25:48Z;Eduardo;5809.912;114339455;Peru; -2018-11-14T17:19:52Z;Ana;5315.999;116003508;Peru; -2018-11-14T17:18:17Z;Júlio;8115.825;114767664;Peru; -2018-11-14T17:17:13Z;Sandra;177.2176;114341854;Peru; -2018-11-14T16:58:07Z;Eduardo;9523.593;114624761;Peru; -2018-11-14T16:46:34Z;Nathália;10024.92;115483893;Peru; -2018-11-14T16:24:13Z;Júlio Cesar;911.5136;116088867;Peru; -2018-11-14T16:16:57Z;Júlio;5932.697;115176307;Peru; -2018-11-14T16:03:35Z;Júlio Cesar;6805.771;116075507;Peru; -2018-11-14T15:42:53Z;Ana;1288.695;114756761;Peru; -2018-11-14T15:41:01Z;Armando;583.1515;115320865;Peru; -2018-11-14T15:00:03Z;Júlio Cesar;772.0514;116265582;Peru; -2018-11-14T14:50:55Z;Sandra;2973.858;115802571;Peru; -2018-11-14T14:44:56Z;Armando;9822.206;115464871;Peru; -2018-11-14T14:34:22Z;Júlio Cesar;6152.141;115358869;Peru; -2018-11-14T14:09:38Z;nathalia;4475.444;115540366;Peru; -2018-11-14T14:00:50Z;Ana;8399.317;116366645;Peru; -2018-11-14T13:42:20Z;nathalia;6580.584;114884193;Peru; -2018-11-14T13:29:40Z;Armando;4184.59;115763420;Peru; -2018-11-14T13:20:14Z;Júlio;5740.999;116013411;Peru; -2018-11-14T13:12:17Z;Júlio;2919.174;116122011;Peru; -2018-11-14T13:11:24Z;Júlio;12078.77;115703978;Peru; -2018-11-14T13:01:38Z;Júlio Cesar;2899.381;114771144;Peru; -2018-11-14T12:51:13Z;Sandra;4899.37;115895966;Peru; -2018-11-14T12:36:06Z;Eduardo;3678.718;115964127;Peru; -2018-11-14T11:55:18Z;Eduardo;2532.144;115966967;Peru; -2018-11-14T11:35:44Z;Sandra;5318.412;115223931;Peru; -2018-11-14T11:32:50Z;Nathália;1764.741;115670767;Peru; -2018-11-14T11:21:42Z;Armando;186.4949;115044394;Peru; -2018-11-14T11:17:42Z;Armando;1315.676;115415353;Peru; -2018-11-14T10:59:45Z;Armando;6165.683;115446719;Peru; -2018-11-14T10:53:28Z;Júlio;3672.359;114454712;Peru; -2018-11-14T10:46:20Z;Ana;9489.071;115956546;Peru; -2018-11-14T10:19:30Z;Sandra;44.50108;115612832;Peru; -2018-11-14T09:24:06Z;Júlio Cesar;3075.444;115767667;Peru; -2018-11-14T08:16:01Z;Eduardo;1261.54;115901809;Peru; -2018-11-14T08:10:36Z;Ana;1842.718;114458107;Peru; -2018-11-14T07:54:46Z;Júlio;2882.997;114866084;Peru; -2018-11-14T07:49:26Z;Ana;1183.334;114410753;Peru; -2018-11-14T07:49:25Z;Nathália;1847.716;116020001;Peru; -2018-11-14T07:43:01Z;nathalia;2219.043;114890169;Peru; -2018-11-14T07:38:40Z;Armando;5788.262;114670987;Peru; -2018-11-14T07:28:47Z;Sandra;6237.922;114668870;Peru; -2018-11-14T06:45:47Z;Júlio;5642.743;115986761;Peru; -2018-11-14T06:37:45Z;Eduardo;4412.23;116261563;Peru; -2018-11-14T06:20:23Z;Nathália;6776.463;116172279;Peru; -2018-11-14T05:55:00Z;Eduardo;4207.235;114474380;Peru; -2018-11-14T05:54:06Z;Nathália;7261.183;116113891;Peru; -2018-11-14T05:07:55Z;Júlio;2771.438;114222175;Peru; -2018-11-14T04:48:25Z;nathalia;438.1181;116092039;Peru; -2018-11-14T04:36:17Z;Armando;705.7834;116054751;Peru; -2018-11-14T04:35:58Z;Júlio Cesar;6278.178;116267785;Peru; -2018-11-14T04:31:22Z;Nathália;885.1323;115346273;Peru; -2018-11-14T03:41:31Z;Júlio Cesar;296.3592;115168872;Peru; -2018-11-14T03:33:35Z;Júlio;1309.771;114855813;Peru; -2018-11-14T03:10:40Z;Ana;4180.505;114620684;Peru; -2018-11-14T02:41:29Z;Júlio Cesar;3466.312;116323129;Peru; -2018-11-14T02:30:47Z;Ana;8056.357;114601257;Peru; -2018-11-14T02:16:19Z;nathalia;9224.707;115313083;Peru; -2018-11-14T02:10:47Z;Júlio;3778.297;115238868;Peru; -2018-11-14T02:10:22Z;Sandra;6118.074;116345628;Peru; -2018-11-14T02:09:54Z;Eduardo;856.2676;116004023;Peru; -2018-11-14T02:08:22Z;Júlio;4208.337;116126409;Peru; -2018-11-14T01:51:33Z;Ana;4481.445;115062607;Peru; -2018-11-14T01:27:49Z;Júlio Cesar;4451;115980046;Peru; -2018-11-14T01:16:34Z;Ana;6256.08;115080536;Peru; -2018-11-14T01:16:10Z;nathalia;317.2784;114869810;Peru; -2018-11-14T00:44:46Z;Júlio Cesar;1883.232;114252938;Peru; -2018-11-14T00:40:57Z;Júlio Cesar;10258.82;116331052;Peru; -2018-11-14T00:28:27Z;Sandra;1717.503;114434522;Peru; -2018-11-13T23:52:47Z;Júlio;5098.623;115547479;Peru; -2018-11-13T23:30:33Z;Sandra;2100.016;114523650;Peru; -2018-11-13T23:24:46Z;Eduardo;2770.552;116353258;Peru; -2018-11-13T23:11:03Z;Eduardo;173.3046;115098724;Peru; -2018-11-13T22:37:00Z;Júlio Cesar;1672.48;114831810;Peru; -2018-11-13T22:06:36Z;Eduardo;6935.444;114913405;Peru; -2018-11-13T21:56:42Z;Júlio;4208.902;116068095;Peru; -2018-11-13T21:50:20Z;Ana;8217.391;115581319;Peru; -2018-11-13T21:48:50Z;Ana;2154.425;115772994;Peru; -2018-11-13T21:18:44Z;Júlio;4216.452;116038786;Peru; -2018-11-13T21:18:36Z;Ana;3290.623;115153458;Peru; -2018-11-13T21:06:18Z;nathalia;8309.74;114216708;Peru; -2018-11-13T20:51:56Z;nathalia;1814.595;114281317;Peru; -2018-11-13T20:34:23Z;Nathália;3203.531;115814637;Peru; -2018-11-13T20:17:21Z;Nathália;5413.956;115370921;Peru; -2018-11-13T20:02:49Z;Nathália;2617.822;115430018;Peru; -2018-11-13T19:57:05Z;Júlio;10206.72;114495545;Peru; -2018-11-13T19:19:42Z;nathalia;3283.686;114503726;Peru; -2018-11-13T19:14:32Z;Júlio;8228.558;115965383;Peru; -2018-11-13T19:05:28Z;Sandra;6776.503;114579996;Peru; -2018-11-13T18:15:52Z;nathalia;6261.907;114635253;Peru; -2018-11-13T18:01:08Z;Eduardo;6517.081;114877869;Peru; -2018-11-13T17:34:40Z;Nathália;2635.39;114643548;Peru; -2018-11-13T16:39:08Z;Júlio Cesar;523.0186;114760731;Peru; -2018-11-13T16:08:18Z;Armando;206.0614;115252090;Peru; -2018-11-13T16:00:24Z;Ana;259.4668;114723967;Peru; -2018-11-13T15:23:56Z;Eduardo;5748.376;115010472;Peru; -2018-11-13T15:14:02Z;Ana;140.5736;115612784;Peru; -2018-11-13T15:09:39Z;Sandra;4912.963;114890791;Peru; -2018-11-13T14:13:15Z;Júlio;439.7001;115511863;Peru; -2018-11-13T13:51:25Z;Nathália;1987.08;115209090;Peru; -2018-11-13T13:33:09Z;Júlio Cesar;6790.947;116244298;Peru; -2018-11-13T13:32:37Z;Ana;7038.477;115226100;Peru; -2018-11-13T13:00:50Z;nathalia;1337.012;115233332;Peru; -2018-11-13T12:28:02Z;Júlio Cesar;4716.011;116128752;Peru; -2018-11-13T12:11:33Z;Júlio;2353.15;114620983;Peru; -2018-11-13T12:02:28Z;nathalia;8987.717;115656994;Peru; -2018-11-13T11:40:47Z;Júlio;3012.444;115348548;Peru; -2018-11-13T11:30:35Z;Júlio Cesar;1849.688;115358787;Peru; -2018-11-13T11:14:47Z;Eduardo;964.8392;114836212;Peru; -2018-11-13T11:12:19Z;Ana;7663.657;114576607;Peru; -2018-11-13T10:53:47Z;Ana;3290.398;114448374;Peru; -2018-11-13T10:49:23Z;Júlio Cesar;2592.592;114410007;Peru; -2018-11-13T10:41:17Z;Ana;580.0292;114453731;Peru; -2018-11-13T10:30:59Z;Júlio Cesar;3165.045;115885467;Peru; -2018-11-13T10:27:46Z;Armando;4391.047;114937441;Peru; -2018-11-13T08:35:11Z;nathalia;2718.048;114749486;Peru; -2018-11-13T08:16:51Z;nathalia;5679.831;115580253;Peru; -2018-11-13T08:04:54Z;Nathália;1568.231;114378054;Peru; -2018-11-13T07:50:13Z;Sandra;5827.749;115449003;Peru; -2018-11-13T07:47:56Z;Júlio;4811.646;115857737;Peru; -2018-11-13T07:26:17Z;Sandra;5946.454;115151415;Peru; -2018-11-13T07:20:13Z;Nathália;2059.398;115279350;Peru; -2018-11-13T06:59:05Z;Sandra;1943.111;115076126;Peru; -2018-11-13T06:54:45Z;Júlio Cesar;2140.127;114901118;Peru; -2018-11-13T06:44:45Z;Ana;1417.216;114941676;Peru; -2018-11-13T06:36:37Z;Ana;2291.283;114433606;Peru; -2018-11-13T06:25:39Z;Júlio Cesar;3553.315;116395439;Peru; -2018-11-13T06:19:09Z;Sandra;1090.483;115519606;Peru; -2018-11-13T06:18:55Z;Ana;2868.786;114651687;Peru; -2018-11-13T05:56:17Z;Sandra;3786.593;114328781;Peru; -2018-11-13T05:23:01Z;Sandra;1106.153;115256307;Peru; -2018-11-13T05:19:31Z;Júlio;7215.463;115158303;Peru; -2018-11-13T05:18:01Z;nathalia;1200.13;116264997;Peru; -2018-11-13T04:58:08Z;nathalia;1160.849;114814800;Peru; -2018-11-13T04:52:43Z;Sandra;8509.295;114312330;Peru; -2018-11-13T04:19:27Z;Nathália;2939.318;116213581;Peru; -2018-11-13T04:01:50Z;Nathália;344.0256;114562759;Peru; -2018-11-13T03:57:49Z;nathalia;1446.726;116028092;Peru; -2018-11-13T03:15:01Z;Ana;3649.294;114321394;Peru; -2018-11-13T03:01:23Z;Armando;66.69416;115196616;Peru; -2018-11-13T02:59:31Z;Eduardo;4714.091;116083160;Peru; -2018-11-13T02:43:31Z;Nathália;5248.934;114566022;Peru; -2018-11-13T02:42:45Z;Nathália;1720.237;114757158;Peru; -2018-11-13T02:38:46Z;Júlio Cesar;11705.22;115724886;Peru; -2018-11-13T02:29:14Z;Sandra;1522.327;116029599;Peru; -2018-11-13T02:23:03Z;Júlio Cesar;11500.28;115111551;Peru; -2018-11-13T02:22:59Z;Júlio;5478.018;115417402;Peru; -2018-11-13T01:55:00Z;Júlio;11059.28;115152609;Peru; -2018-11-13T01:19:02Z;Eduardo;588.907;115226619;Peru; -2018-11-13T01:08:13Z;Nathália;780.862;116377350;Peru; -2018-11-13T00:47:37Z;Sandra;4800.437;115859719;Peru; -2018-11-13T00:43:30Z;Nathália;6072.188;114635019;Peru; -2018-11-13T00:34:49Z;Eduardo;3193.442;115421372;Peru; -2018-12-06T22:27:38Z;Ana;563.6714;115747774;Puerto Rico; -2018-12-06T21:42:09Z;Armando;1544.178;114763045;Puerto Rico; -2018-12-06T21:23:55Z;Nathália;5719.617;115123812;Puerto Rico; -2018-12-06T21:19:14Z;Nathália;3576.495;114204801;Puerto Rico; -2018-12-06T21:12:40Z;Nathália;52.70618;115114344;Puerto Rico; -2018-12-06T21:11:15Z;Ana;9450.672;115260216;Puerto Rico; -2018-12-06T20:58:33Z;Júlio;5989.441;115041446;Puerto Rico; -2018-12-06T20:20:57Z;Eduardo;17.07943;115527932;Puerto Rico; -2018-12-06T19:54:02Z;nathalia;3924.149;115261221;Puerto Rico; -2018-12-06T19:36:26Z;Ana;8725.295;114721521;Puerto Rico; -2018-12-06T19:30:22Z;Armando;9336.352;116153935;Puerto Rico; -2018-12-06T19:28:49Z;Sandra;7315.522;114725340;Puerto Rico; -2018-12-06T19:01:48Z;Júlio Cesar;583.4776;115751666;Puerto Rico; -2018-12-06T18:40:06Z;Nathália;8348.456;115412783;Puerto Rico; -2018-12-06T18:38:55Z;Ana;6174.997;115910483;Puerto Rico; -2018-12-06T18:24:04Z;Eduardo;7672.615;115297681;Puerto Rico; -2018-12-06T18:21:43Z;Júlio Cesar;278.6223;115309467;Puerto Rico; -2018-12-06T18:03:27Z;Júlio Cesar;75.89098;115013315;Puerto Rico; -2018-12-06T18:02:14Z;nathalia;411.3807;115195279;Puerto Rico; -2018-12-06T17:48:00Z;Nathália;1611.489;114303797;Puerto Rico; -2018-12-06T17:46:00Z;Júlio;500.5228;115019603;Puerto Rico; -2018-12-06T17:38:30Z;nathalia;1473.909;115260805;Puerto Rico; -2018-12-06T17:31:49Z;nathalia;182.9888;114502877;Puerto Rico; -2018-12-06T17:16:03Z;Nathália;453.6741;114931662;Puerto Rico; -2018-12-06T17:01:01Z;Júlio;3865.045;116397969;Puerto Rico; -2018-12-06T17:00:19Z;Eduardo;4227.131;115721500;Puerto Rico; -2018-12-06T16:51:48Z;Eduardo;3060.089;115746488;Puerto Rico; -2018-12-06T16:33:49Z;Ana;2990.654;114366988;Puerto Rico; -2018-12-06T16:25:27Z;Ana;191.828;116003599;Puerto Rico; -2018-12-06T16:12:34Z;Nathália;5998.195;115684571;Puerto Rico; -2018-12-06T16:05:25Z;Júlio;3935.784;115139704;Puerto Rico; -2018-12-06T16:05:22Z;nathalia;4571.719;114682272;Puerto Rico; -2018-12-06T16:02:38Z;Sandra;2284.132;116126697;Puerto Rico; -2018-12-06T15:31:43Z;Eduardo;1490.258;115899570;Puerto Rico; -2018-12-06T14:55:14Z;Nathália;5467.925;114966116;Puerto Rico; -2018-12-06T14:46:57Z;Eduardo;4199.177;115428513;Puerto Rico; -2018-12-06T14:41:44Z;Júlio;5612.118;116384168;Puerto Rico; -2018-12-06T14:41:34Z;Júlio;2130.736;115185872;Puerto Rico; -2018-12-06T14:39:13Z;Júlio Cesar;1782.504;114301233;Puerto Rico; -2018-12-06T14:21:39Z;Júlio;1740.911;115707044;Puerto Rico; -2018-12-06T14:18:34Z;Júlio Cesar;10699.46;114918189;Puerto Rico; -2018-12-06T14:14:27Z;Sandra;11316.99;114656126;Puerto Rico; -2018-12-06T13:52:37Z;Armando;8669.03;114578001;Puerto Rico; -2018-12-06T13:48:12Z;Júlio Cesar;3296.486;116226012;Puerto Rico; -2018-12-06T13:46:24Z;Nathália;5397.045;114639551;Puerto Rico; -2018-12-06T13:37:08Z;Sandra;3973.825;116269685;Puerto Rico; -2018-12-06T13:29:33Z;nathalia;1090.156;114977109;Puerto Rico; -2018-12-06T13:01:29Z;nathalia;318.4563;115312035;Puerto Rico; -2018-12-06T12:45:41Z;Eduardo;7067.676;116372618;Puerto Rico; -2018-12-06T12:44:13Z;Nathália;10730.46;114845538;Puerto Rico; -2018-12-06T12:34:15Z;Armando;3231.718;115920946;Puerto Rico; -2018-12-06T12:33:32Z;Eduardo;8490.507;115932347;Puerto Rico; -2018-12-06T12:29:39Z;nathalia;2421.884;116168828;Puerto Rico; -2018-12-06T12:23:52Z;Eduardo;5456.724;116247086;Puerto Rico; -2018-12-06T12:11:50Z;Júlio;1621.58;114449022;Puerto Rico; -2018-12-06T12:11:45Z;Eduardo;3419.563;114364785;Puerto Rico; -2018-12-06T12:11:19Z;nathalia;1030.269;114742082;Puerto Rico; -2018-12-06T12:10:15Z;Ana;13176.6;115228421;Puerto Rico; -2018-12-06T11:51:23Z;Júlio Cesar;3185.06;116138432;Puerto Rico; -2018-12-06T11:42:55Z;Ana;3285.13;115458920;Puerto Rico; -2018-12-06T11:02:34Z;Sandra;2048.902;114944838;Puerto Rico; -2018-12-06T10:47:15Z;Eduardo;571.1261;114856057;Puerto Rico; -2018-12-06T10:44:52Z;Júlio;219.3827;115489437;Puerto Rico; -2018-12-06T10:39:53Z;Júlio;4164.074;114332340;Puerto Rico; -2018-12-06T10:24:37Z;Nathália;4868.177;115067156;Puerto Rico; -2018-12-06T10:15:59Z;Eduardo;653.168;115695646;Puerto Rico; -2018-12-06T10:15:01Z;Júlio Cesar;14300.99;114724869;Puerto Rico; -2018-12-06T10:00:17Z;Armando;512.6388;114904850;Puerto Rico; -2018-12-06T09:57:41Z;Ana;3487.13;115857603;Puerto Rico; -2018-12-06T09:18:18Z;Ana;3855.969;115938865;Puerto Rico; -2018-12-06T08:56:13Z;Eduardo;1758.671;114997656;Puerto Rico; -2018-12-06T08:45:05Z;Júlio Cesar;4469.793;115015534;Puerto Rico; -2018-12-06T08:43:09Z;Armando;3845.978;115810100;Puerto Rico; -2018-12-06T08:43:07Z;Sandra;9988.695;114646564;Puerto Rico; -2018-12-06T08:21:09Z;Júlio;2102.067;114472659;Puerto Rico; -2018-12-06T08:20:08Z;Sandra;4104.051;115991558;Puerto Rico; -2018-12-06T08:14:34Z;Eduardo;5698.684;115998205;Puerto Rico; -2018-12-06T07:34:23Z;Armando;6567.764;114948390;Puerto Rico; -2018-12-06T06:11:05Z;nathalia;5128.991;115841933;Puerto Rico; -2018-12-06T05:44:40Z;Ana;419.9854;116123053;Puerto Rico; -2018-12-06T05:16:55Z;Nathália;4208.8;114522520;Puerto Rico; -2018-12-06T05:12:20Z;Sandra;11240.58;115975022;Puerto Rico; -2018-12-06T05:07:47Z;Eduardo;395.0851;116285616;Puerto Rico; -2018-12-06T04:55:40Z;Armando;3352.305;115246609;Puerto Rico; -2018-12-06T04:25:21Z;Sandra;757.9077;115963790;Puerto Rico; -2018-12-06T04:21:48Z;Sandra;7514.456;114832830;Puerto Rico; -2018-12-06T04:14:26Z;Júlio Cesar;7160.657;116115172;Puerto Rico; -2018-12-06T04:02:39Z;Sandra;1393.032;115928314;Puerto Rico; -2018-12-06T03:59:51Z;Júlio Cesar;11152.27;115209598;Puerto Rico; -2018-12-06T03:55:28Z;Ana;3163.754;115440560;Puerto Rico; -2018-12-06T03:17:38Z;Eduardo;6917.984;114201997;Puerto Rico; -2018-12-06T02:57:18Z;Eduardo;1297.171;114327918;Puerto Rico; -2018-12-06T02:55:20Z;Júlio Cesar;3584.86;116369859;Puerto Rico; -2018-12-06T02:52:33Z;Sandra;411.6276;114349892;Puerto Rico; -2018-12-06T02:49:39Z;Ana;9362.817;115124720;Puerto Rico; -2018-12-06T02:43:35Z;Júlio;3163.082;115716537;Puerto Rico; -2018-12-06T02:42:40Z;nathalia;1273.419;114502256;Puerto Rico; -2018-12-06T02:10:05Z;Ana;7144.316;115132389;Puerto Rico; -2018-12-06T02:00:38Z;Júlio Cesar;4245.19;116200479;Puerto Rico; -2018-12-06T01:52:24Z;Ana;4029.231;115309786;Puerto Rico; -2018-12-06T01:48:27Z;Júlio;1888.54;114542242;Puerto Rico; -2018-12-06T01:44:20Z;Júlio Cesar;5214.256;116296747;Puerto Rico; -2018-12-06T01:05:09Z;Sandra;3197.826;115766127;Puerto Rico; -2018-12-06T00:56:02Z;Armando;321.2405;115816204;Puerto Rico; -2018-12-06T00:53:46Z;nathalia;6706.196;114931723;Puerto Rico; -2018-12-06T00:50:49Z;nathalia;9903.121;114578355;Puerto Rico; -2018-12-06T00:35:19Z;nathalia;4303.698;116223085;Puerto Rico; -2018-12-06T00:28:53Z;Sandra;2141.895;114259435;Puerto Rico; -2018-12-06T00:21:01Z;Eduardo;1661.661;116125113;Puerto Rico; -2018-12-05T23:35:22Z;Eduardo;7001.969;115770351;Puerto Rico; -2018-12-05T22:52:02Z;Eduardo;7820.237;115386275;Puerto Rico; -2018-12-05T22:29:16Z;Sandra;12069.07;115361552;Puerto Rico; -2018-12-05T22:11:32Z;Nathália;381.9737;115867900;Puerto Rico; -2018-12-05T22:05:53Z;Ana;21.44042;116328081;Puerto Rico; -2018-12-05T21:56:32Z;nathalia;1300.463;115823549;Puerto Rico; -2018-12-05T21:41:31Z;Nathália;7675.686;116018560;Puerto Rico; -2018-12-05T21:38:48Z;Armando;4353.667;115503032;Puerto Rico; -2018-12-05T21:29:50Z;Júlio Cesar;5470.564;115306874;Puerto Rico; -2018-12-05T21:16:08Z;Eduardo;725.058;116209192;Puerto Rico; -2018-12-05T21:02:20Z;Júlio;3071.922;115854628;Puerto Rico; -2018-12-05T20:57:00Z;Júlio Cesar;2669.155;115772954;Puerto Rico; -2018-12-05T20:33:25Z;Júlio;505.4093;116143637;Puerto Rico; -2018-12-05T20:31:53Z;Nathália;1142.796;115913380;Puerto Rico; -2018-12-05T20:25:26Z;Ana;8695.779;115052035;Puerto Rico; -2018-12-05T19:59:17Z;Júlio Cesar;2859.181;115238133;Puerto Rico; -2018-12-05T19:45:10Z;Júlio Cesar;9814.294;115278506;Puerto Rico; -2018-12-05T19:26:04Z;nathalia;4457.219;114990918;Puerto Rico; -2018-12-05T19:23:38Z;Eduardo;4430.782;115930077;Puerto Rico; -2018-12-05T18:57:43Z;Júlio Cesar;330.4109;116263758;Puerto Rico; -2018-12-05T18:49:10Z;Nathália;9961.12;114209757;Puerto Rico; -2018-12-05T18:43:36Z;Ana;4569.498;116275006;Puerto Rico; -2018-12-05T18:29:55Z;Armando;8314.847;115236929;Puerto Rico; -2018-12-05T18:06:23Z;Júlio;5740.68;115162280;Puerto Rico; -2018-12-05T17:47:51Z;Eduardo;6654.222;115985472;Puerto Rico; -2018-12-05T17:40:17Z;Armando;13827.42;114665428;Puerto Rico; -2018-12-05T17:29:48Z;Ana;1387.51;114917820;Puerto Rico; -2018-12-05T17:19:40Z;Eduardo;5999.626;114852593;Puerto Rico; -2018-12-05T16:41:35Z;Júlio;788.3618;114266319;Puerto Rico; -2018-12-05T16:28:33Z;Nathália;616.8113;115514737;Puerto Rico; -2018-12-05T16:18:50Z;Armando;5538.796;116334074;Puerto Rico; -2018-12-05T15:50:03Z;Ana;455.955;114281743;Puerto Rico; -2018-12-05T15:46:48Z;Armando;4327.005;114712712;Puerto Rico; -2018-12-05T15:12:54Z;Júlio;761.4899;116165063;Puerto Rico; -2018-12-05T14:46:59Z;Júlio Cesar;12510.19;116268643;Puerto Rico; -2018-12-05T14:18:18Z;Júlio Cesar;13337.3;115047327;Puerto Rico; -2018-12-05T13:28:06Z;Júlio Cesar;1470.9;115706937;Puerto Rico; -2018-12-05T13:25:27Z;Júlio Cesar;10898.98;114648309;Puerto Rico; -2018-12-05T13:20:43Z;Eduardo;1137.365;115111074;Puerto Rico; -2018-12-05T13:17:54Z;Armando;656.4563;114221906;Puerto Rico; -2018-12-05T12:44:42Z;Júlio;4739.393;116155660;Puerto Rico; -2018-12-05T12:44:40Z;Júlio Cesar;3302.321;115329433;Puerto Rico; -2018-12-05T12:34:23Z;Eduardo;3102.421;116336099;Puerto Rico; -2018-12-05T12:26:02Z;Júlio Cesar;2972.713;115968446;Puerto Rico; -2018-12-05T12:07:01Z;Armando;1289.346;114897719;Puerto Rico; -2018-12-05T12:02:47Z;Ana;1562.117;115739747;Puerto Rico; -2018-12-05T11:59:41Z;Sandra;3904.818;114462519;Puerto Rico; -2018-12-05T11:23:49Z;Júlio Cesar;5769.343;115366993;Puerto Rico; -2018-12-05T10:59:57Z;nathalia;5826.068;114279594;Puerto Rico; -2018-12-05T10:24:50Z;Ana;5695.008;114456474;Puerto Rico; -2018-12-05T10:20:39Z;Ana;266.3732;116305217;Puerto Rico; -2018-12-05T10:18:42Z;Nathália;808.375;115031619;Puerto Rico; -2018-12-05T10:18:02Z;Eduardo;914.3973;115163793;Puerto Rico; -2018-12-05T10:01:45Z;Sandra;619.9176;115833666;Puerto Rico; -2018-12-05T10:01:10Z;Eduardo;10540.3;115570342;Puerto Rico; -2018-12-05T09:26:05Z;Júlio;3452.832;115925423;Puerto Rico; -2018-12-05T09:10:59Z;Ana;3373.806;115143605;Puerto Rico; -2018-12-05T08:56:51Z;Sandra;560.3154;116085664;Puerto Rico; -2018-12-05T08:46:53Z;Nathália;5427.83;115446144;Puerto Rico; -2018-12-05T08:43:28Z;nathalia;906.0166;114772507;Puerto Rico; -2018-12-05T08:40:10Z;Armando;5246.115;114553289;Puerto Rico; -2018-12-05T08:08:03Z;Júlio;1321.897;114218124;Puerto Rico; -2018-12-05T07:57:52Z;Nathália;2442.838;115966140;Puerto Rico; -2018-12-05T07:02:52Z;Armando;2415.555;114343696;Puerto Rico; -2018-12-05T06:58:48Z;Sandra;4537.923;115886142;Puerto Rico; -2018-12-05T06:50:14Z;Júlio;6537.536;114991821;Puerto Rico; -2018-12-05T06:39:09Z;Sandra;5230.654;115961713;Puerto Rico; -2018-12-05T06:14:50Z;Nathália;3441.643;115280380;Puerto Rico; -2018-12-05T06:14:01Z;Eduardo;755.0953;115125469;Puerto Rico; -2018-12-05T06:13:30Z;Ana;933.677;115898033;Puerto Rico; -2018-12-05T06:06:34Z;Eduardo;795.5195;115496942;Puerto Rico; -2018-12-05T06:03:03Z;Ana;6265.529;114549252;Puerto Rico; -2018-12-05T05:14:50Z;Ana;5130.729;114965421;Puerto Rico; -2018-12-05T05:12:17Z;Armando;7729.954;115582283;Puerto Rico; -2018-12-05T04:23:44Z;Eduardo;1585.476;114861006;Puerto Rico; -2018-12-05T04:22:32Z;Júlio;2578.765;116280617;Puerto Rico; -2018-12-05T04:15:28Z;Júlio;9580.136;114278200;Puerto Rico; -2018-12-05T04:14:38Z;Eduardo;1274.031;114684984;Puerto Rico; -2018-12-05T04:12:59Z;Júlio Cesar;9235.886;116370372;Puerto Rico; -2018-12-05T04:05:49Z;Sandra;9452.417;114239738;Puerto Rico; -2018-12-05T04:05:28Z;Nathália;3891.567;115552734;Puerto Rico; -2018-12-05T04:03:48Z;Júlio Cesar;4390.958;116175108;Puerto Rico; -2018-12-05T03:54:22Z;Nathália;373.4519;114635873;Puerto Rico; -2018-12-05T03:48:44Z;Armando;12215.68;115983657;Puerto Rico; -2018-12-05T03:25:21Z;Eduardo;11366.25;116070145;Puerto Rico; -2018-12-05T03:08:55Z;Ana;881.8849;115513591;Puerto Rico; -2018-12-05T03:03:44Z;Sandra;2414.271;115349957;Puerto Rico; -2018-12-05T02:24:33Z;Nathália;7906.336;114471050;Puerto Rico; -2018-12-05T02:04:16Z;Júlio Cesar;13.58819;115114023;Puerto Rico; -2018-12-05T01:40:11Z;Eduardo;4829.89;115490403;Puerto Rico; -2018-12-05T01:32:53Z;Júlio;1137.953;115539415;Puerto Rico; -2018-12-05T00:40:00Z;Sandra;7844.531;115895065;Puerto Rico; -2018-12-05T00:38:57Z;Júlio;3948.632;114471625;Puerto Rico; -2018-12-05T00:19:00Z;nathalia;606.7266;114355322;Puerto Rico; -2018-12-05T00:13:24Z;Júlio Cesar;4456.666;114627308;Puerto Rico; -2018-12-05T00:11:24Z;Armando;443.7188;115502930;Puerto Rico; -2018-12-05T00:06:50Z;Nathália;141.9487;115381857;Puerto Rico; -2018-12-04T23:41:42Z;Sandra;4213.329;115942872;Puerto Rico; -2018-12-04T23:38:47Z;Sandra;3197.232;114407093;Puerto Rico; -2018-12-04T23:30:13Z;Júlio;2034.065;115683093;Puerto Rico; -2018-12-04T23:23:50Z;Ana;12415.9;115261899;Puerto Rico; -2018-12-04T23:22:28Z;Júlio Cesar;8723.067;115718706;Puerto Rico; -2018-12-04T23:09:18Z;Júlio;6323.63;115041602;Puerto Rico; -2018-12-04T22:56:48Z;Eduardo;35.38584;115639393;Puerto Rico; -2018-12-04T22:54:39Z;Eduardo;1349.374;114343800;Puerto Rico; -2018-12-04T22:53:06Z;Sandra;10308.54;114656508;Puerto Rico; -2018-12-04T22:36:48Z;Ana;8836.769;114868191;Puerto Rico; -2018-12-04T22:31:11Z;Nathália;1572.376;115851251;Puerto Rico; -2018-12-04T22:27:09Z;Nathália;3224.142;115618261;Puerto Rico; -2018-12-04T22:07:58Z;nathalia;683.9008;115970407;Puerto Rico; -2018-12-04T21:54:58Z;Eduardo;7363.403;114917070;Puerto Rico; -2018-12-04T21:23:44Z;nathalia;8263.24;115136963;Puerto Rico; -2018-12-04T21:22:26Z;nathalia;257.7262;114500009;Puerto Rico; -2018-12-04T20:38:34Z;Ana;2160.231;116332855;Puerto Rico; -2018-12-04T20:35:53Z;Sandra;4144.179;114696871;Puerto Rico; -2018-12-04T20:31:34Z;Júlio;1958.352;114275746;Puerto Rico; -2018-12-04T20:21:30Z;Júlio Cesar;4209.641;114924631;Puerto Rico; -2018-12-04T20:05:56Z;Sandra;1667.42;114939795;Puerto Rico; -2018-12-04T19:59:44Z;Armando;3777.246;114394474;Puerto Rico; -2018-12-04T19:50:26Z;Ana;4773.76;114690089;Puerto Rico; -2018-12-04T19:47:27Z;Júlio;2400.467;114563154;Puerto Rico; -2018-12-04T19:41:26Z;Eduardo;459.5144;115185717;Puerto Rico; -2018-12-04T19:32:22Z;Sandra;4763.975;115755586;Puerto Rico; -2018-12-04T19:18:29Z;Nathália;4018.212;116366423;Puerto Rico; -2018-12-04T19:07:56Z;Nathália;378.2947;115033382;Puerto Rico; -2018-12-04T18:40:33Z;Armando;2742.821;115374853;Puerto Rico; -2018-12-04T18:05:01Z;Sandra;3578.921;115065957;Puerto Rico; -2018-12-04T17:52:30Z;Sandra;3483.4;115626686;Puerto Rico; -2018-12-04T17:36:46Z;Eduardo;3894.914;115170780;Puerto Rico; -2018-12-04T17:35:01Z;Sandra;2294.013;115217611;Puerto Rico; -2018-12-04T17:33:18Z;Júlio;189.895;115657189;Puerto Rico; -2018-12-04T17:32:37Z;Nathália;1454.018;115405157;Puerto Rico; -2018-12-04T17:30:46Z;nathalia;4957.545;116152617;Puerto Rico; -2018-12-04T17:27:25Z;Sandra;1471.911;115717522;Puerto Rico; -2018-12-04T17:07:37Z;Júlio;5229.097;115488609;Puerto Rico; -2018-12-04T16:40:25Z;nathalia;6581.49;115651683;Puerto Rico; -2018-12-04T16:26:56Z;Armando;136.9169;115991445;Puerto Rico; -2018-12-04T16:04:59Z;Nathália;10641.01;114455121;Puerto Rico; -2018-12-04T15:57:29Z;Armando;2492.896;115001503;Puerto Rico; -2018-12-04T15:56:25Z;Eduardo;8179.965;114516979;Puerto Rico; -2018-12-04T15:45:42Z;Ana;7226.259;114905162;Puerto Rico; -2018-12-04T15:20:14Z;nathalia;12787.14;114648123;Puerto Rico; -2018-12-04T14:46:25Z;Armando;6903.818;115909242;Puerto Rico; -2018-12-04T14:29:03Z;Armando;10094.72;114770468;Puerto Rico; -2018-12-04T14:03:37Z;Armando;5549.874;115521394;Puerto Rico; -2018-12-04T13:31:59Z;nathalia;2517.588;115395445;Puerto Rico; -2018-12-04T13:28:32Z;Nathália;1698.263;116303774;Puerto Rico; -2018-12-04T12:50:11Z;Armando;8379.704;116032905;Puerto Rico; -2018-12-04T12:28:06Z;Eduardo;10462.64;116206846;Puerto Rico; -2018-12-04T12:23:56Z;Ana;2944.945;114620989;Puerto Rico; -2018-12-04T12:17:42Z;Júlio;388.2749;115999488;Puerto Rico; -2018-12-04T12:10:02Z;Sandra;5427.57;114849198;Puerto Rico; -2018-12-04T11:59:04Z;Ana;9575.964;114473107;Puerto Rico; -2018-12-04T11:56:36Z;Júlio;5863.224;114291456;Puerto Rico; -2018-12-04T11:09:10Z;Eduardo;796.8223;115598631;Puerto Rico; -2018-12-04T11:05:02Z;Nathália;446.1319;115753973;Puerto Rico; -2018-12-04T11:01:19Z;Júlio Cesar;1983.692;115798599;Puerto Rico; -2018-12-04T10:59:58Z;Nathália;1039.03;115771131;Puerto Rico; -2018-12-04T10:52:24Z;Armando;5795.862;115171371;Puerto Rico; -2018-12-04T10:51:11Z;nathalia;571.8594;114320177;Puerto Rico; -2018-12-04T10:34:52Z;Ana;8003.932;115884631;Puerto Rico; -2018-12-04T10:28:15Z;Ana;1882.191;114890727;Puerto Rico; -2018-12-04T09:53:14Z;Nathália;117.5725;115607966;Puerto Rico; -2018-12-04T08:59:34Z;nathalia;622.5184;116082371;Puerto Rico; -2018-12-04T08:58:36Z;Júlio Cesar;1405.339;115670452;Puerto Rico; -2018-12-04T08:45:37Z;Nathália;12497.45;114659424;Puerto Rico; -2018-12-04T08:41:27Z;Armando;1514.366;115389697;Puerto Rico; -2018-12-04T08:39:01Z;Ana;317.9518;116275068;Puerto Rico; -2018-12-04T08:27:42Z;Eduardo;2624.082;115390984;Puerto Rico; -2018-12-04T08:20:15Z;Armando;2489.148;116074632;Puerto Rico; -2018-12-04T08:18:04Z;Nathália;3919.159;116036570;Puerto Rico; -2018-12-04T08:14:43Z;Júlio Cesar;1896.778;115696285;Puerto Rico; -2018-12-04T08:12:55Z;Eduardo;4883.223;114414180;Puerto Rico; -2018-12-04T08:03:54Z;nathalia;3833.788;115858346;Puerto Rico; -2018-12-04T07:57:30Z;Júlio;5132.039;114452705;Puerto Rico; -2018-12-04T07:47:26Z;Armando;2648.373;115643425;Puerto Rico; -2018-12-04T07:28:40Z;Armando;43.8093;116152320;Puerto Rico; -2018-12-04T07:27:21Z;Júlio;7737.686;114639164;Puerto Rico; -2018-12-04T07:07:21Z;Armando;6281.843;115927739;Puerto Rico; -2018-12-04T07:02:54Z;Júlio;1608.62;115659357;Puerto Rico; -2018-12-04T06:53:20Z;Ana;7135.021;114649308;Puerto Rico; -2018-12-04T06:32:25Z;Ana;7524.187;114441973;Puerto Rico; -2018-12-04T06:05:31Z;Júlio Cesar;4896.855;115857568;Puerto Rico; -2018-12-04T06:03:46Z;Júlio;1142.34;114471402;Puerto Rico; -2018-12-04T06:00:22Z;Júlio;7085.284;115421933;Puerto Rico; -2018-12-04T05:44:43Z;Sandra;1918.492;114420174;Puerto Rico; -2018-12-04T05:40:53Z;Júlio;2208.379;115687844;Puerto Rico; -2018-12-04T05:11:44Z;Júlio Cesar;4471.39;115286506;Puerto Rico; -2018-12-04T04:11:21Z;Armando;5392.743;114230792;Puerto Rico; -2018-12-04T03:51:38Z;Júlio;140.3594;114745295;Puerto Rico; -2018-12-04T03:44:16Z;Armando;5346.923;114453678;Puerto Rico; -2018-12-04T03:27:25Z;Júlio;2785.427;115668032;Puerto Rico; -2018-12-04T03:25:46Z;Júlio Cesar;1375.359;114653621;Puerto Rico; -2018-12-04T03:25:01Z;nathalia;10886.18;116303423;Puerto Rico; -2018-12-04T03:21:28Z;nathalia;4307.28;114446203;Puerto Rico; -2018-12-04T03:06:08Z;nathalia;2022.447;114972039;Puerto Rico; -2018-12-04T03:01:46Z;Júlio Cesar;4605.388;116244108;Puerto Rico; -2018-12-04T02:47:31Z;Eduardo;539.5949;115902923;Puerto Rico; -2018-12-04T02:10:25Z;Júlio Cesar;2985.312;114347016;Puerto Rico; -2018-12-04T01:51:55Z;Júlio;8143.878;115382501;Puerto Rico; -2018-12-04T01:46:22Z;Júlio Cesar;1089.883;115544762;Puerto Rico; -2018-12-04T01:15:26Z;Júlio;6532.699;115371650;Puerto Rico; -2018-12-04T01:07:23Z;Eduardo;5885.804;115710982;Puerto Rico; -2018-12-04T00:54:43Z;nathalia;785.8115;116304259;Puerto Rico; -2018-12-04T00:10:59Z;nathalia;3300.151;116224162;Puerto Rico; -2018-12-03T23:48:15Z;Júlio Cesar;2379.025;114395158;Puerto Rico; -2018-12-03T23:26:24Z;Nathália;6044.157;116303482;Puerto Rico; -2018-12-03T23:25:42Z;Júlio Cesar;6882.396;114589897;Puerto Rico; -2018-12-03T23:22:19Z;Nathália;4168.976;115188858;Puerto Rico; -2018-12-03T23:11:36Z;Júlio;72.2855;116148825;Puerto Rico; -2018-12-03T22:18:06Z;Sandra;1662.04;114427105;Puerto Rico; -2018-12-03T22:16:28Z;nathalia;1707.807;115797837;Puerto Rico; -2018-12-03T21:41:39Z;nathalia;4003.827;114232050;Puerto Rico; -2018-12-03T21:17:30Z;Eduardo;1017.797;115436368;Puerto Rico; -2018-12-03T20:51:52Z;Júlio;1737.849;114903293;Puerto Rico; -2018-12-03T20:04:35Z;Armando;87.73611;114434670;Puerto Rico; -2018-12-03T19:58:33Z;Eduardo;1892.558;116369102;Puerto Rico; -2018-12-03T19:57:06Z;Ana;5392.566;114302620;Puerto Rico; -2018-12-03T18:42:24Z;Sandra;4601.931;114448248;Puerto Rico; -2018-12-03T18:00:46Z;Júlio Cesar;5953;114761624;Puerto Rico; -2018-12-03T17:49:07Z;Sandra;1.775849;115636267;Puerto Rico; -2018-12-03T17:48:25Z;Nathália;1831.59;114339528;Puerto Rico; -2018-12-03T17:28:49Z;Júlio;3370.983;114460839;Puerto Rico; -2018-12-03T17:18:40Z;Júlio Cesar;2325.739;114223478;Puerto Rico; -2018-12-03T16:46:00Z;Eduardo;3173.782;115586603;Puerto Rico; -2018-12-03T16:34:49Z;nathalia;725.9167;115363687;Puerto Rico; -2018-12-03T16:34:39Z;Nathália;6438.523;114592814;Puerto Rico; -2018-12-03T16:06:03Z;Júlio Cesar;4970.186;115126265;Puerto Rico; -2018-12-03T15:46:03Z;Júlio;4662.55;114653505;Puerto Rico; -2018-12-03T15:40:07Z;Eduardo;775.6306;114235431;Puerto Rico; -2018-12-03T15:33:56Z;Sandra;455.7978;114847070;Puerto Rico; -2018-12-03T15:02:08Z;Júlio Cesar;1995.957;116069465;Puerto Rico; -2018-12-03T15:01:59Z;Eduardo;481.2766;116114252;Puerto Rico; -2018-12-03T14:55:20Z;Nathália;2968.881;114786782;Puerto Rico; -2018-12-03T14:49:43Z;Júlio Cesar;8738.51;115914860;Puerto Rico; -2018-12-03T14:46:17Z;Ana;5134.677;114951382;Puerto Rico; -2018-12-03T14:34:20Z;Júlio;15129.66;114280898;Puerto Rico; -2018-12-03T14:23:50Z;Júlio;4773.512;114904477;Puerto Rico; -2018-12-03T14:11:25Z;Sandra;1087.26;114502578;Puerto Rico; -2018-12-03T13:07:07Z;Sandra;5735.443;114547433;Puerto Rico; -2018-12-03T13:00:33Z;Júlio Cesar;1309.737;114600860;Puerto Rico; -2018-12-03T12:52:43Z;Júlio;88.93403;114551566;Puerto Rico; -2018-12-03T12:40:19Z;Eduardo;3912.289;116141003;Puerto Rico; -2018-12-03T12:37:52Z;Júlio Cesar;5178.066;114602402;Puerto Rico; -2018-12-03T12:37:41Z;Sandra;1889.138;114984134;Puerto Rico; -2018-12-03T12:16:28Z;Eduardo;7824.28;115416870;Puerto Rico; -2018-12-03T11:55:44Z;Júlio;3409.632;115542355;Puerto Rico; -2018-12-03T11:45:20Z;Nathália;6382.621;115649769;Puerto Rico; -2018-12-03T11:24:49Z;Júlio Cesar;3789.308;115099027;Puerto Rico; -2018-12-03T11:23:03Z;nathalia;3455.558;115656270;Puerto Rico; -2018-12-03T11:16:54Z;nathalia;883.4407;114860963;Puerto Rico; -2018-12-03T10:53:33Z;Ana;11703.16;116275226;Puerto Rico; -2018-12-03T10:31:21Z;Júlio Cesar;6843.383;115743173;Puerto Rico; -2018-12-03T10:13:48Z;Eduardo;7347.992;115069688;Puerto Rico; -2018-12-03T10:05:51Z;Eduardo;6262.74;116146840;Puerto Rico; -2018-12-03T10:05:44Z;Júlio Cesar;4613.12;114610605;Puerto Rico; -2018-12-03T09:59:46Z;Armando;8111.472;116121505;Puerto Rico; -2018-12-03T09:20:25Z;Armando;3644.53;114381894;Puerto Rico; -2018-12-03T08:28:59Z;Armando;849.4964;114617762;Puerto Rico; -2018-12-03T08:26:26Z;Armando;3118.81;114337157;Puerto Rico; -2018-12-03T08:20:46Z;Sandra;6149.081;115384434;Puerto Rico; -2018-12-03T08:07:42Z;Nathália;231.5784;115023321;Puerto Rico; -2018-12-03T07:50:38Z;Ana;882.2949;114241861;Puerto Rico; -2018-12-03T07:46:10Z;Sandra;5724.626;114647461;Puerto Rico; -2018-12-03T07:41:49Z;Nathália;206.9045;114663780;Puerto Rico; -2018-12-03T07:33:50Z;Nathália;1777.495;115723433;Puerto Rico; -2018-12-03T07:33:47Z;Júlio;4734.51;115335624;Puerto Rico; -2018-12-03T07:12:30Z;Nathália;10586.45;116332799;Puerto Rico; -2018-12-03T07:11:47Z;Júlio;2391.327;116265557;Puerto Rico; -2018-12-03T06:56:07Z;nathalia;8310.457;116058942;Puerto Rico; -2018-12-03T06:35:32Z;Armando;4641.314;116375533;Puerto Rico; -2018-12-03T06:32:04Z;Sandra;6168.694;116039867;Puerto Rico; -2018-12-03T05:34:19Z;Eduardo;4142.131;115710266;Puerto Rico; -2018-12-03T05:09:33Z;Sandra;2761.64;116186301;Puerto Rico; -2018-12-03T04:45:55Z;nathalia;8644.795;115255934;Puerto Rico; -2018-12-03T04:16:07Z;nathalia;1025.459;114280186;Puerto Rico; -2018-12-03T04:16:05Z;Armando;3741.47;114424054;Puerto Rico; -2018-12-03T03:03:36Z;Sandra;2874.981;114764683;Puerto Rico; -2018-12-03T02:41:59Z;Júlio;4406.316;116112587;Puerto Rico; -2018-12-03T02:38:28Z;Júlio;593.6213;116253256;Puerto Rico; -2018-12-03T02:06:35Z;Júlio Cesar;6081.492;115773490;Puerto Rico; -2018-12-03T02:01:12Z;Júlio;8235.571;114724061;Puerto Rico; -2018-12-03T01:28:15Z;Júlio;755.3659;114624105;Puerto Rico; -2018-12-03T01:24:59Z;Nathália;7078.185;115129327;Puerto Rico; -2018-12-03T01:14:45Z;nathalia;2101.44;114411657;Puerto Rico; -2018-12-03T01:04:02Z;Armando;2780.527;114285513;Puerto Rico; -2018-12-03T00:58:16Z;nathalia;5632.331;115384959;Puerto Rico; -2018-12-03T00:27:12Z;Eduardo;4964.169;116315940;Puerto Rico; -2018-12-03T00:14:11Z;Armando;11905.13;114248532;Puerto Rico; -2018-12-03T00:08:52Z;nathalia;3239.138;115089492;Puerto Rico; -2018-12-02T23:37:08Z;Armando;914.0596;114878906;Puerto Rico; -2018-12-02T23:21:02Z;Armando;3071.415;115041453;Puerto Rico; -2018-12-02T23:16:26Z;Nathália;8922.769;115249907;Puerto Rico; -2018-12-02T22:56:53Z;nathalia;8303.338;114313927;Puerto Rico; -2018-12-02T22:55:13Z;Ana;1524.604;116321994;Puerto Rico; -2018-12-02T22:49:28Z;Ana;5952.046;115214877;Puerto Rico; -2018-12-02T22:42:49Z;Sandra;15783.48;115382702;Puerto Rico; -2018-12-02T22:42:04Z;Nathália;1481.434;114488233;Puerto Rico; -2018-12-02T22:36:22Z;nathalia;221.3038;115653776;Puerto Rico; -2018-12-02T22:19:21Z;Júlio Cesar;8505.397;115349389;Puerto Rico; -2018-12-02T22:04:11Z;Júlio;4357.666;116361419;Puerto Rico; -2018-12-02T21:59:50Z;Eduardo;4604.938;114544802;Puerto Rico; -2018-12-02T21:28:03Z;nathalia;5584.35;115029755;Puerto Rico; -2018-12-02T21:08:54Z;Nathália;1508.312;115305276;Puerto Rico; -2018-12-02T21:00:13Z;Ana;3105.665;114930731;Puerto Rico; -2018-12-02T20:53:03Z;Júlio;1924.668;115277103;Puerto Rico; -2018-12-02T20:51:52Z;Sandra;2484.025;115046969;Puerto Rico; -2018-12-02T20:39:12Z;Nathália;2360.339;114536955;Puerto Rico; -2018-12-02T19:19:36Z;Júlio Cesar;3132.728;116365051;Puerto Rico; -2018-12-02T19:16:05Z;Eduardo;1220.862;115898269;Puerto Rico; -2018-12-02T18:53:51Z;Armando;10273.53;114631245;Puerto Rico; -2018-12-02T18:40:07Z;Ana;805.7878;114346155;Puerto Rico; -2018-12-02T18:26:05Z;Eduardo;7151.298;115768275;Puerto Rico; -2018-12-02T18:21:58Z;Júlio;965.3865;116373327;Puerto Rico; -2018-12-02T18:11:11Z;Nathália;4235.031;116100611;Puerto Rico; -2018-12-02T18:05:46Z;nathalia;5931.152;115125065;Puerto Rico; -2018-12-02T18:05:00Z;Armando;3774.7;114856066;Puerto Rico; -2018-12-02T17:37:40Z;Júlio;1656.239;115565106;Puerto Rico; -2018-12-02T17:37:06Z;Ana;7637.5;114612174;Puerto Rico; -2018-12-02T17:21:49Z;Sandra;1089.772;115650001;Puerto Rico; -2018-12-02T17:18:38Z;Nathália;1323.574;115098868;Puerto Rico; -2018-12-02T17:11:54Z;Nathália;3816.777;114879422;Puerto Rico; -2018-12-02T16:54:43Z;Sandra;5733.116;115242595;Puerto Rico; -2018-12-02T16:46:15Z;Ana;1509.973;114574932;Puerto Rico; -2018-12-02T16:30:51Z;Eduardo;10058.96;114288276;Puerto Rico; -2018-12-02T16:22:55Z;Ana;2336.391;114992353;Puerto Rico; -2018-12-02T16:07:51Z;Armando;810.3699;116355151;Puerto Rico; -2018-12-02T15:52:26Z;Ana;5927.606;116101464;Puerto Rico; -2018-12-02T15:43:13Z;Armando;7530.31;114628538;Puerto Rico; -2018-12-02T15:07:24Z;nathalia;2319.656;116374357;Puerto Rico; -2018-12-02T15:02:19Z;Armando;3764.54;114504412;Puerto Rico; -2018-12-02T15:00:25Z;Armando;536.1001;114386465;Puerto Rico; -2018-12-02T14:54:51Z;Armando;4215.464;116295092;Puerto Rico; -2018-12-02T14:27:11Z;Sandra;9863.907;115066344;Puerto Rico; -2018-12-02T14:19:47Z;Nathália;1228.196;114930412;Puerto Rico; -2018-12-02T14:15:41Z;Nathália;1641.779;114545222;Puerto Rico; -2018-12-02T14:07:19Z;Armando;7805.778;115075475;Puerto Rico; -2018-12-02T13:17:00Z;Ana;11713.37;114703476;Puerto Rico; -2018-12-02T13:01:03Z;Júlio;6729.673;116069536;Puerto Rico; -2018-12-02T12:48:14Z;Nathália;1105.164;115985823;Puerto Rico; -2018-12-02T12:33:09Z;Ana;1106.601;115751700;Puerto Rico; -2018-12-02T12:27:43Z;Nathália;702.163;115607273;Puerto Rico; -2018-12-02T12:26:56Z;Júlio Cesar;1636.703;115097030;Puerto Rico; -2018-12-02T12:26:17Z;Júlio;4556.501;116198400;Puerto Rico; -2018-12-02T12:23:52Z;Eduardo;3320.671;116392679;Puerto Rico; -2018-12-02T12:02:04Z;Júlio;2291.851;116135578;Puerto Rico; -2018-12-02T12:01:53Z;Nathália;4786.605;115439201;Puerto Rico; -2018-12-02T11:56:26Z;Júlio Cesar;2066.026;116380078;Puerto Rico; -2018-12-02T11:47:56Z;Júlio;5503.494;115756504;Puerto Rico; -2018-12-02T11:15:33Z;Júlio;10070.41;114835771;Puerto Rico; -2018-12-02T11:05:43Z;Nathália;6750.792;114964445;Puerto Rico; -2018-12-02T11:01:00Z;Sandra;564.4779;114898930;Puerto Rico; -2018-12-02T10:44:28Z;nathalia;738.7773;115428975;Puerto Rico; -2018-12-02T10:35:16Z;Eduardo;6218.621;115826894;Puerto Rico; -2018-12-02T10:26:25Z;nathalia;4176.823;114655749;Puerto Rico; -2018-12-02T10:19:20Z;Sandra;8792.316;114487316;Puerto Rico; -2018-12-02T10:18:49Z;nathalia;10876.49;115594846;Puerto Rico; -2018-12-02T10:17:06Z;Eduardo;5766.84;115871326;Puerto Rico; -2018-12-02T10:06:12Z;Sandra;1235.14;115644090;Puerto Rico; -2018-12-02T09:53:10Z;nathalia;1111.22;114975108;Puerto Rico; -2018-12-02T09:36:27Z;Eduardo;12295.59;115215105;Puerto Rico; -2018-12-02T09:31:17Z;Júlio Cesar;322.5019;114562550;Puerto Rico; -2018-12-02T09:06:56Z;Armando;2905.171;115684570;Puerto Rico; -2018-12-02T09:00:40Z;Armando;4280.884;114428131;Puerto Rico; -2018-12-02T08:48:23Z;Eduardo;2750.462;114950646;Puerto Rico; -2018-12-02T08:07:14Z;Eduardo;7706.726;115010356;Puerto Rico; -2018-12-02T07:51:39Z;nathalia;6882.585;114396527;Puerto Rico; -2018-12-02T07:48:32Z;Sandra;12454.95;115444276;Puerto Rico; -2018-12-02T07:45:29Z;Armando;6365.615;115085672;Puerto Rico; -2018-12-02T07:32:55Z;Armando;3961.129;115682834;Puerto Rico; -2018-12-02T07:31:51Z;Ana;4196.656;115096492;Puerto Rico; -2018-12-02T07:02:23Z;Armando;1163.734;116020851;Puerto Rico; -2018-12-02T06:51:19Z;Eduardo;323.7207;115388430;Puerto Rico; -2018-12-02T06:45:18Z;Júlio Cesar;6646.922;114429099;Puerto Rico; -2018-12-02T06:28:47Z;nathalia;6730.515;115688448;Puerto Rico; -2018-12-02T06:11:21Z;Eduardo;798.1192;114553060;Puerto Rico; -2018-12-02T05:55:49Z;Nathália;8805.116;116072491;Puerto Rico; -2018-12-02T05:37:37Z;Júlio;5281.302;115193307;Puerto Rico; -2018-12-02T05:02:54Z;Júlio;634.0662;114310257;Puerto Rico; -2018-12-02T04:45:23Z;Eduardo;1275.664;115303645;Puerto Rico; -2018-12-02T04:40:31Z;Nathália;3713.566;116206601;Puerto Rico; -2018-12-02T04:24:33Z;Armando;638.8414;114800448;Puerto Rico; -2018-12-02T04:16:02Z;Armando;979.4639;115397456;Puerto Rico; -2018-12-02T03:32:01Z;Júlio Cesar;492.1696;116127204;Puerto Rico; -2018-12-02T03:21:38Z;Sandra;3076.883;114807631;Puerto Rico; -2018-12-02T02:48:27Z;nathalia;7469.569;114343663;Puerto Rico; -2018-12-02T02:42:48Z;Armando;5783.107;116217457;Puerto Rico; -2018-12-02T02:21:08Z;Júlio;2465.887;114209653;Puerto Rico; -2018-12-02T01:42:44Z;Eduardo;4059.339;114968542;Puerto Rico; -2018-12-02T01:32:35Z;Sandra;4228.294;114224736;Puerto Rico; -2018-12-02T01:28:17Z;Júlio Cesar;6896.439;116221646;Puerto Rico; -2018-12-02T01:22:17Z;Nathália;4798.413;116182064;Puerto Rico; -2018-12-02T00:42:25Z;Eduardo;9300.959;114525922;Puerto Rico; -2018-12-02T00:18:28Z;Júlio Cesar;5024.506;114496332;Puerto Rico; -2018-12-02T00:10:14Z;Júlio;5896.837;114463910;Puerto Rico; -2018-12-01T23:50:47Z;Júlio;5066.357;114378994;Puerto Rico; -2018-12-01T23:43:06Z;Nathália;2546.811;116050307;Puerto Rico; -2018-12-01T23:07:00Z;Júlio Cesar;6790.811;115051733;Puerto Rico; -2018-12-01T22:48:49Z;Júlio Cesar;578.0622;114570753;Puerto Rico; -2018-12-01T22:45:45Z;Nathália;7517.365;114260806;Puerto Rico; -2018-12-01T22:06:41Z;nathalia;7653.38;114252099;Puerto Rico; -2018-12-01T21:58:31Z;Eduardo;12564.52;115634875;Puerto Rico; -2018-12-01T21:47:32Z;Júlio;7927.388;115265618;Puerto Rico; -2018-12-01T21:25:40Z;nathalia;1419.337;115547266;Puerto Rico; -2018-12-01T21:16:29Z;Sandra;5443.926;115738307;Puerto Rico; -2018-12-01T20:38:35Z;Nathália;6714.879;115743781;Puerto Rico; -2018-12-01T20:37:34Z;Nathália;2610.43;114650768;Puerto Rico; -2018-12-01T20:19:05Z;Eduardo;3275.359;116206473;Puerto Rico; -2018-12-01T20:10:03Z;Armando;5767.565;114917482;Puerto Rico; -2018-12-01T19:58:59Z;Armando;4552.226;115133658;Puerto Rico; -2018-12-01T19:56:48Z;Armando;4416.2;115990317;Puerto Rico; -2018-12-01T19:38:24Z;Júlio;898.3702;115682730;Puerto Rico; -2018-12-01T19:12:22Z;Armando;1040.927;115953306;Puerto Rico; -2018-12-01T19:00:09Z;Nathália;1822.439;115851764;Puerto Rico; -2018-12-01T18:42:30Z;nathalia;2207.751;116146444;Puerto Rico; -2018-12-01T18:31:38Z;Sandra;7211.217;115269322;Puerto Rico; -2018-12-01T18:13:49Z;Ana;994.4857;114255380;Puerto Rico; -2018-12-01T17:42:58Z;Sandra;731.2951;116039534;Puerto Rico; -2018-12-01T17:39:53Z;Júlio Cesar;161.3023;115789938;Puerto Rico; -2018-12-01T17:36:07Z;Ana;7040.42;114375748;Puerto Rico; -2018-12-01T17:27:20Z;Armando;501.5335;115306145;Puerto Rico; -2018-12-01T16:42:50Z;Nathália;4123;114591811;Puerto Rico; -2018-12-01T16:31:33Z;Nathália;3632.526;115561403;Puerto Rico; -2018-12-01T16:20:35Z;Júlio Cesar;10364.26;114435925;Puerto Rico; -2018-12-01T16:06:53Z;Júlio;430.6324;115210196;Puerto Rico; -2018-12-01T16:05:49Z;nathalia;6165.109;115605374;Puerto Rico; -2018-12-01T15:56:04Z;Nathália;6607.829;115749775;Puerto Rico; -2018-12-01T15:47:33Z;Eduardo;4561.978;115091562;Puerto Rico; -2018-12-01T15:20:36Z;Armando;3223.077;115534729;Puerto Rico; -2018-12-01T15:15:58Z;Júlio Cesar;5936.662;116078067;Puerto Rico; -2018-12-01T15:10:37Z;Júlio Cesar;920.3447;114916374;Puerto Rico; -2018-12-01T14:16:18Z;Nathália;3581.182;115812251;Puerto Rico; -2018-12-01T13:38:11Z;Nathália;7215.368;114875378;Puerto Rico; -2018-12-01T13:36:33Z;Nathália;6806.415;114625408;Puerto Rico; -2018-12-01T13:34:58Z;Ana;1298.92;116054815;Puerto Rico; -2018-12-01T13:32:17Z;Eduardo;512.7684;114475670;Puerto Rico; -2018-12-01T13:28:38Z;nathalia;7535.122;115778356;Puerto Rico; -2018-12-01T13:25:18Z;Armando;655.6441;116341501;Puerto Rico; -2018-12-01T13:13:43Z;Nathália;2831.742;114987197;Puerto Rico; -2018-12-01T12:41:54Z;Júlio;1474.851;116154202;Puerto Rico; -2018-12-01T12:31:28Z;Júlio Cesar;5205.291;116076253;Puerto Rico; -2018-12-01T12:21:46Z;Armando;2066.719;115036843;Puerto Rico; -2018-12-01T12:18:04Z;Júlio Cesar;5743.203;115337989;Puerto Rico; -2018-12-01T12:00:11Z;Sandra;7002.69;115969762;Puerto Rico; -2018-12-01T11:55:08Z;nathalia;3815.103;114909766;Puerto Rico; -2018-12-01T11:35:25Z;Eduardo;3410.901;114880341;Puerto Rico; -2018-12-01T11:28:54Z;Sandra;1238.561;114484750;Puerto Rico; -2018-12-01T11:24:41Z;Eduardo;2540.376;115563800;Puerto Rico; -2018-12-01T11:01:18Z;Nathália;11486.08;115137200;Puerto Rico; -2018-12-01T10:50:06Z;Júlio Cesar;13796.41;115379431;Puerto Rico; -2018-12-01T10:40:52Z;Eduardo;971.7275;114239730;Puerto Rico; -2018-12-01T10:32:41Z;Eduardo;9611.267;114882014;Puerto Rico; -2018-12-01T10:15:23Z;Júlio;3064.136;116100745;Puerto Rico; -2018-12-01T10:02:47Z;nathalia;5159.006;115844666;Puerto Rico; -2018-12-01T09:30:26Z;Júlio Cesar;7641.041;115578532;Puerto Rico; -2018-12-01T09:15:36Z;Sandra;3418.664;115275013;Puerto Rico; -2018-12-01T08:51:36Z;Júlio Cesar;23.85921;116177175;Puerto Rico; -2018-12-01T08:37:31Z;Ana;2181.063;114777548;Puerto Rico; -2018-12-01T08:35:32Z;Eduardo;1341.455;114997107;Puerto Rico; -2018-12-01T08:26:56Z;Sandra;6234.002;115093662;Puerto Rico; -2018-12-01T08:07:22Z;Júlio;950.9107;115080190;Puerto Rico; -2018-12-01T07:30:03Z;nathalia;1129.048;115224403;Puerto Rico; -2018-12-01T07:25:56Z;Júlio Cesar;4955.526;114457629;Puerto Rico; -2018-12-01T07:19:45Z;Eduardo;5844.623;115778297;Puerto Rico; -2018-12-01T07:17:48Z;Nathália;8147.283;114391013;Puerto Rico; -2018-12-01T07:06:34Z;Nathália;10840.88;115535676;Puerto Rico; -2018-12-01T06:58:54Z;Nathália;15951.22;115465029;Puerto Rico; -2018-12-01T06:58:29Z;Eduardo;277.2386;115223671;Puerto Rico; -2018-12-01T06:42:47Z;Eduardo;1477.172;115681881;Puerto Rico; -2018-12-01T06:07:16Z;Armando;202.0268;115849893;Puerto Rico; -2018-12-01T05:29:41Z;Ana;4243.09;115248484;Puerto Rico; -2018-12-01T05:27:10Z;Júlio;13467.69;115822772;Puerto Rico; -2018-12-01T05:26:07Z;Eduardo;2925.484;114844120;Puerto Rico; -2018-12-01T04:06:04Z;Júlio Cesar;1070.239;115286841;Puerto Rico; -2018-12-01T03:04:34Z;Armando;964.5372;115770785;Puerto Rico; -2018-12-01T02:51:59Z;Nathália;650.3719;114613397;Puerto Rico; -2018-12-01T02:51:36Z;Ana;10775.69;114771355;Puerto Rico; -2018-12-01T02:51:03Z;Eduardo;4961.126;116213831;Puerto Rico; -2018-12-01T02:20:06Z;Júlio Cesar;3156.413;114685520;Puerto Rico; -2018-12-01T02:00:31Z;Eduardo;395.5691;115983931;Puerto Rico; -2018-12-01T01:52:21Z;Nathália;7817.207;114661074;Puerto Rico; -2018-12-01T01:30:23Z;Armando;8448.528;115719992;Puerto Rico; -2018-12-01T01:02:39Z;Júlio;4720.98;114447477;Puerto Rico; -2018-12-01T00:41:19Z;Júlio Cesar;482.8094;115668886;Puerto Rico; -2018-11-30T23:54:50Z;Júlio;4948.963;116018413;Puerto Rico; -2018-11-30T23:53:02Z;Nathália;3530.257;114425925;Puerto Rico; -2018-11-30T23:31:04Z;Armando;181.5269;116296205;Puerto Rico; -2018-11-30T22:59:52Z;Nathália;3031.861;114613097;Puerto Rico; -2018-11-30T22:52:19Z;Júlio Cesar;48.17227;114520690;Puerto Rico; -2018-11-30T22:46:15Z;Armando;2893.554;114436797;Puerto Rico; -2018-11-30T22:35:23Z;Júlio;5979.357;114946184;Puerto Rico; -2018-11-30T22:18:12Z;nathalia;5797.484;115924835;Puerto Rico; -2018-11-30T21:52:17Z;Armando;14337.22;114871029;Puerto Rico; -2018-11-30T21:32:42Z;Armando;1621.826;115428898;Puerto Rico; -2018-11-30T21:05:23Z;nathalia;5645.177;115001093;Puerto Rico; -2018-11-30T20:58:24Z;nathalia;11049.86;114590074;Puerto Rico; -2018-11-30T20:28:07Z;Sandra;808.3593;116091865;Puerto Rico; -2018-11-30T20:16:42Z;Nathália;3745.867;114996755;Puerto Rico; -2018-11-30T20:15:08Z;Eduardo;2322.879;115870241;Puerto Rico; -2018-11-30T19:14:23Z;Ana;188.8525;115980678;Puerto Rico; -2018-11-30T18:48:37Z;Eduardo;2247.019;116161204;Puerto Rico; -2018-11-30T18:46:26Z;nathalia;2503.013;115620049;Puerto Rico; -2018-11-30T18:13:19Z;nathalia;2961.561;114566267;Puerto Rico; -2018-11-30T18:11:46Z;nathalia;4146.914;116153949;Puerto Rico; -2018-11-30T17:44:51Z;Sandra;1105.904;114261215;Puerto Rico; -2018-11-30T17:31:02Z;Ana;5978.983;116103193;Puerto Rico; -2018-11-30T17:09:58Z;Nathália;377.8046;115570223;Puerto Rico; -2018-11-30T16:22:58Z;Ana;263.952;114637139;Puerto Rico; -2018-11-30T16:15:37Z;Sandra;5733.75;116043329;Puerto Rico; -2018-11-30T16:10:37Z;Nathália;3817.095;114329575;Puerto Rico; -2018-11-30T15:38:00Z;Júlio Cesar;7656.492;114708767;Puerto Rico; -2018-11-30T15:20:28Z;nathalia;4090.449;115588802;Puerto Rico; -2018-11-30T14:26:05Z;Sandra;3344.296;114389425;Puerto Rico; -2018-11-30T13:55:09Z;Sandra;7903.424;115003419;Puerto Rico; -2018-11-30T13:51:38Z;Nathália;743.1597;114277073;Puerto Rico; -2018-11-30T13:37:13Z;Júlio Cesar;6226.606;115296725;Puerto Rico; -2018-11-30T13:28:01Z;Júlio Cesar;284.6426;115287231;Puerto Rico; -2018-11-30T13:27:57Z;Ana;6411.182;116001472;Puerto Rico; -2018-11-30T11:44:38Z;Eduardo;18080.92;116208278;Puerto Rico; -2018-11-30T11:40:25Z;Nathália;5238.819;115533888;Puerto Rico; -2018-11-30T11:33:08Z;nathalia;7577.796;114697205;Puerto Rico; -2018-11-30T11:11:47Z;Júlio;741.2248;116321997;Puerto Rico; -2018-11-30T10:41:06Z;Armando;1631.191;115261924;Puerto Rico; -2018-11-30T10:20:22Z;Sandra;3278.304;115398429;Puerto Rico; -2018-11-30T10:20:17Z;Sandra;961.0443;115539382;Puerto Rico; -2018-11-30T10:19:17Z;Nathália;4935.475;116201269;Puerto Rico; -2018-11-30T09:32:00Z;Armando;2677.949;115203511;Puerto Rico; -2018-11-30T09:25:53Z;Sandra;6963.771;114360162;Puerto Rico; -2018-11-30T09:25:53Z;Ana;2393.727;115659353;Puerto Rico; -2018-11-30T08:54:35Z;Júlio;9603.876;115005795;Puerto Rico; -2018-11-30T08:40:08Z;Júlio Cesar;1344.769;115803888;Puerto Rico; -2018-11-30T08:32:55Z;Sandra;4964.706;115664096;Puerto Rico; -2018-11-30T08:29:54Z;Júlio;3507.373;115299955;Puerto Rico; -2018-11-30T08:19:24Z;Nathália;10989.71;116046319;Puerto Rico; -2018-11-30T08:06:12Z;Eduardo;3242.135;115189097;Puerto Rico; -2018-11-30T07:59:41Z;Sandra;10558.86;114423017;Puerto Rico; -2018-11-30T07:53:32Z;Júlio Cesar;5579.811;116248463;Puerto Rico; -2018-11-30T07:02:39Z;Nathália;10659.99;114445042;Puerto Rico; -2018-11-30T06:55:16Z;Eduardo;1954.143;115110778;Puerto Rico; -2018-11-30T06:52:28Z;Armando;6981.322;114205505;Puerto Rico; -2018-11-30T06:17:14Z;Ana;4285.54;114367780;Puerto Rico; -2018-11-30T06:15:57Z;Eduardo;4333.002;114546627;Puerto Rico; -2018-11-30T05:58:37Z;Eduardo;18.85155;116376218;Puerto Rico; -2018-11-30T05:50:41Z;Ana;1628.373;115939703;Puerto Rico; -2018-11-30T05:38:13Z;nathalia;2237.243;114563985;Puerto Rico; -2018-11-30T05:34:18Z;nathalia;12324.82;115618621;Puerto Rico; -2018-11-30T05:29:09Z;Nathália;1456.132;115785677;Puerto Rico; -2018-11-30T05:15:50Z;Ana;4578.913;115821406;Puerto Rico; -2018-11-30T04:56:35Z;Júlio Cesar;1892.331;115641304;Puerto Rico; -2018-11-30T04:55:23Z;Nathália;6708.841;114417586;Puerto Rico; -2018-11-30T04:31:39Z;Armando;4850.176;114855801;Puerto Rico; -2018-11-30T04:23:59Z;Nathália;73.38024;115330385;Puerto Rico; -2018-11-30T04:23:34Z;nathalia;788.8176;115906493;Puerto Rico; -2018-11-30T03:53:59Z;Nathália;287.7664;114604235;Puerto Rico; -2018-11-30T03:36:21Z;Sandra;1345.005;115194141;Puerto Rico; -2018-11-30T03:07:48Z;Nathália;14133.87;115022346;Puerto Rico; -2018-11-30T03:04:30Z;Eduardo;5287.57;115462294;Puerto Rico; -2018-11-30T02:55:22Z;nathalia;313.1799;114222158;Puerto Rico; -2018-11-30T02:43:21Z;Júlio Cesar;3540.589;115915471;Puerto Rico; -2018-11-30T02:39:50Z;Sandra;1933.684;116198371;Puerto Rico; -2018-11-30T02:38:48Z;nathalia;12265.15;114964682;Puerto Rico; -2018-11-30T02:38:12Z;Júlio;9927.607;114927485;Puerto Rico; -2018-11-30T02:19:56Z;Eduardo;7988.454;115856348;Puerto Rico; -2018-11-30T02:12:07Z;nathalia;10764.11;114401692;Puerto Rico; -2018-11-30T02:05:15Z;nathalia;2278.582;115370919;Puerto Rico; -2018-11-30T02:00:59Z;Ana;1813.464;115594949;Puerto Rico; -2018-11-30T01:44:26Z;Armando;1833.292;115132980;Puerto Rico; -2018-11-30T01:30:44Z;Júlio Cesar;4312.46;115632440;Puerto Rico; -2018-11-30T01:28:22Z;Eduardo;457.7103;115606006;Puerto Rico; -2018-11-30T01:16:53Z;Sandra;4486.369;116186710;Puerto Rico; -2018-11-30T01:11:00Z;Júlio Cesar;7951.883;115535008;Puerto Rico; -2018-11-30T01:01:58Z;nathalia;13615.56;116282614;Puerto Rico; -2018-11-30T00:55:30Z;Júlio Cesar;6744.132;116077862;Puerto Rico; -2018-11-30T00:43:11Z;Ana;7163.628;114961319;Puerto Rico; -2018-11-30T00:33:07Z;Nathália;9261.3;114963571;Puerto Rico; -2018-11-30T00:18:10Z;Armando;7165.78;114939719;Puerto Rico; -2018-11-30T00:16:32Z;Nathália;2596.248;115770526;Puerto Rico; -2018-11-30T00:12:02Z;Ana;6283.883;116208882;Puerto Rico; -2018-11-30T00:05:13Z;nathalia;2095.064;116043580;Puerto Rico; -2018-11-29T23:57:02Z;Sandra;921.9314;115545299;Puerto Rico; -2018-11-29T23:36:16Z;nathalia;4959.622;114938556;Puerto Rico; -2018-11-29T23:35:25Z;Sandra;990.4395;114425820;Puerto Rico; -2018-11-29T23:26:21Z;Júlio;1747.812;115597775;Puerto Rico; -2018-11-29T23:23:03Z;nathalia;2025.096;114519641;Puerto Rico; -2018-11-29T23:11:15Z;Sandra;4557.35;114728961;Puerto Rico; -2018-11-29T22:54:22Z;Ana;424.5127;115943683;Puerto Rico; -2018-11-29T22:45:10Z;Eduardo;2143.398;114871693;Puerto Rico; -2018-11-29T21:57:31Z;nathalia;5030.223;115424593;Puerto Rico; -2018-11-29T21:26:22Z;Júlio Cesar;8570.471;115228589;Puerto Rico; -2018-11-29T21:22:58Z;Ana;795.2866;116105998;Puerto Rico; -2018-11-29T21:14:03Z;Sandra;9030.429;115610864;Puerto Rico; -2018-11-29T21:13:30Z;Júlio;897.3688;116238718;Puerto Rico; -2018-11-29T21:09:19Z;Sandra;144.648;116333965;Puerto Rico; -2018-11-29T20:50:03Z;Júlio;3159.91;115780859;Puerto Rico; -2018-11-29T20:37:16Z;nathalia;5659.317;114937900;Puerto Rico; -2018-11-29T20:36:30Z;Júlio Cesar;7145.466;115413213;Puerto Rico; -2018-11-29T20:17:01Z;Ana;7107.532;114773275;Puerto Rico; -2018-11-29T19:50:16Z;Júlio;9140.511;116312070;Puerto Rico; -2018-11-29T19:29:44Z;Júlio Cesar;636.6958;114583854;Puerto Rico; -2018-11-29T19:23:04Z;Ana;2123.023;114384718;Puerto Rico; -2018-11-29T19:00:04Z;Eduardo;1028.505;114577760;Puerto Rico; -2018-11-29T18:39:47Z;nathalia;8301.614;116142105;Puerto Rico; -2018-11-29T18:36:22Z;Ana;10396.5;114963495;Puerto Rico; -2018-11-29T18:19:31Z;Ana;2956.411;115659279;Puerto Rico; -2018-11-29T18:02:43Z;Eduardo;4192.793;115061511;Puerto Rico; -2018-11-29T17:55:07Z;nathalia;7449.169;115822868;Puerto Rico; -2018-11-29T17:54:41Z;Ana;615.8545;114405720;Puerto Rico; -2018-11-29T17:40:46Z;Sandra;6501.132;115191188;Puerto Rico; -2018-11-29T16:48:02Z;Sandra;664.6563;115098619;Puerto Rico; -2018-11-29T16:37:53Z;Júlio Cesar;13761.17;114952899;Puerto Rico; -2018-11-29T16:32:17Z;Sandra;4439.986;114448261;Puerto Rico; -2018-11-29T16:22:16Z;Sandra;2836.872;114928098;Puerto Rico; -2018-11-29T16:17:28Z;Sandra;2628.67;115184411;Puerto Rico; -2018-11-29T16:15:07Z;nathalia;339.2308;114530266;Puerto Rico; -2018-11-29T16:09:55Z;Nathália;2547.26;114733791;Puerto Rico; -2018-11-29T15:49:07Z;Sandra;3069.648;116396530;Puerto Rico; -2018-11-29T15:30:30Z;Júlio;782.3851;115043903;Puerto Rico; -2018-11-29T15:22:27Z;Ana;2544.832;116136931;Puerto Rico; -2018-11-29T14:51:01Z;Júlio;8171.009;115999256;Puerto Rico; -2018-11-29T14:45:45Z;nathalia;2560.161;115381470;Puerto Rico; -2018-11-29T14:31:54Z;Sandra;2646.181;115938430;Puerto Rico; -2018-11-29T14:01:43Z;Armando;3078.219;116108803;Puerto Rico; -2018-11-29T13:54:49Z;Sandra;1886.353;115802425;Puerto Rico; -2018-11-29T13:54:27Z;nathalia;1318.676;115953680;Puerto Rico; -2018-11-29T13:04:51Z;Nathália;1642.815;114655957;Puerto Rico; -2018-11-29T12:28:29Z;Nathália;1496.758;114387967;Puerto Rico; -2018-11-29T12:03:18Z;Ana;5291.62;115504126;Puerto Rico; -2018-11-29T11:45:03Z;Ana;1210.201;115612469;Puerto Rico; -2018-11-29T11:27:08Z;Nathália;1687.543;115131461;Puerto Rico; -2018-11-29T11:21:39Z;Ana;9175.75;115311589;Puerto Rico; -2018-11-29T10:26:19Z;Nathália;11176.27;115980478;Puerto Rico; -2018-11-29T09:27:23Z;Nathália;128.4482;115717666;Puerto Rico; -2018-11-29T09:08:44Z;Sandra;5118.975;115424144;Puerto Rico; -2018-11-29T08:59:13Z;nathalia;3958.773;114348031;Puerto Rico; -2018-11-29T08:54:19Z;nathalia;255.6236;115409910;Puerto Rico; -2018-11-29T08:54:07Z;Júlio Cesar;1210.318;114953184;Puerto Rico; -2018-11-29T07:57:36Z;Armando;716.3313;115589734;Puerto Rico; -2018-11-29T07:20:14Z;Sandra;6893.507;115168298;Puerto Rico; -2018-11-29T06:56:37Z;Eduardo;4805.86;115541186;Puerto Rico; -2018-11-29T06:19:18Z;Júlio;11131.51;114352282;Puerto Rico; -2018-11-29T06:18:41Z;Nathália;5938.512;115142587;Puerto Rico; -2018-11-29T06:18:10Z;nathalia;8237.781;114970082;Puerto Rico; -2018-11-29T06:08:54Z;nathalia;11.05116;115597680;Puerto Rico; -2018-11-29T06:06:16Z;nathalia;6388.16;114321942;Puerto Rico; -2018-11-29T05:34:16Z;Sandra;1460.873;114226106;Puerto Rico; -2018-11-29T05:20:33Z;Nathália;1450.255;114639907;Puerto Rico; -2018-11-29T05:05:45Z;Júlio Cesar;5867.705;116166963;Puerto Rico; -2018-11-29T04:56:24Z;Ana;979.6523;114240773;Puerto Rico; -2018-11-29T04:54:56Z;Ana;1111.304;116187295;Puerto Rico; -2018-11-29T04:54:45Z;nathalia;2311.443;114993650;Puerto Rico; -2018-11-29T04:53:33Z;Sandra;3826.505;116044411;Puerto Rico; -2018-11-29T04:35:01Z;Eduardo;2495.581;114611073;Puerto Rico; -2018-11-29T03:53:32Z;Armando;4537.861;114392910;Puerto Rico; -2018-11-29T03:50:03Z;Sandra;3369.632;114773415;Puerto Rico; -2018-11-29T03:35:49Z;Armando;856.0107;114341038;Puerto Rico; -2018-11-29T03:29:04Z;Ana;7396.685;115016359;Puerto Rico; -2018-11-29T03:06:17Z;Nathália;668.9901;115811795;Puerto Rico; -2018-11-29T02:56:11Z;Armando;3078.89;114784641;Puerto Rico; -2018-11-29T02:51:02Z;nathalia;1682.999;115431620;Puerto Rico; -2018-11-29T02:47:30Z;Armando;4560.175;114644629;Puerto Rico; -2018-11-29T02:30:40Z;Eduardo;5485.272;115163635;Puerto Rico; -2018-11-29T02:09:19Z;Eduardo;5596.821;115651938;Puerto Rico; -2018-11-29T01:47:08Z;Sandra;5601.995;116000581;Puerto Rico; -2018-11-29T01:39:44Z;Júlio;746.1445;114250406;Puerto Rico; -2018-11-29T01:32:11Z;Júlio;3348.431;115200787;Puerto Rico; -2018-11-29T01:13:03Z;Sandra;9184.801;114466779;Puerto Rico; -2018-11-29T01:03:17Z;Armando;6516.224;116311203;Puerto Rico; -2018-11-29T00:31:19Z;nathalia;8110.669;114622172;Puerto Rico; -2018-11-29T00:22:32Z;Armando;6902.8;115427112;Puerto Rico; -2018-11-29T00:12:05Z;Nathália;2735.531;114755937;Puerto Rico; -2018-11-29T00:11:24Z;nathalia;1942.982;115290089;Puerto Rico; -2018-11-29T00:04:07Z;Júlio Cesar;2319.826;115520434;Puerto Rico; -2018-11-29T00:03:26Z;Júlio Cesar;437.7434;115122355;Puerto Rico; -2018-11-28T23:53:55Z;Sandra;1970.794;114649058;Puerto Rico; -2018-11-28T23:39:18Z;Júlio Cesar;4902.75;115544842;Puerto Rico; -2018-11-28T23:28:37Z;Nathália;1049.301;114283314;Puerto Rico; -2018-11-28T23:13:33Z;nathalia;264.4551;115059785;Puerto Rico; -2018-11-28T23:13:18Z;nathalia;5902.288;115964668;Puerto Rico; -2018-11-28T21:15:42Z;nathalia;5028.306;115409947;Puerto Rico; -2018-11-28T20:15:34Z;Ana;1410.411;114901358;Puerto Rico; -2018-11-28T20:02:42Z;Nathália;2767.553;115605096;Puerto Rico; -2018-11-28T19:53:06Z;Ana;5259.742;116226256;Puerto Rico; -2018-11-28T19:52:25Z;Eduardo;8094.215;116273252;Puerto Rico; -2018-11-28T19:36:15Z;Eduardo;1255.113;115151998;Puerto Rico; -2018-11-28T18:33:45Z;Nathália;879.976;115466482;Puerto Rico; -2018-11-28T18:11:20Z;Júlio;682.9297;116177659;Puerto Rico; -2018-11-28T17:55:32Z;Eduardo;3051.9;114586372;Puerto Rico; -2018-11-28T17:52:16Z;Armando;1247.505;115525394;Puerto Rico; -2018-11-28T17:51:51Z;Nathália;12774.68;116269076;Puerto Rico; -2018-11-28T17:43:32Z;Eduardo;7761.387;114955445;Puerto Rico; -2018-11-28T17:40:49Z;Eduardo;1462.606;114597565;Puerto Rico; -2018-11-28T17:03:47Z;Sandra;1551.781;116325246;Puerto Rico; -2018-11-28T16:58:14Z;Júlio;233.0518;115113943;Puerto Rico; -2018-11-28T16:46:54Z;nathalia;5425.443;115456220;Puerto Rico; -2018-11-28T16:36:17Z;Júlio;1102.542;116265209;Puerto Rico; -2018-11-28T16:22:34Z;Nathália;239.3953;116082958;Puerto Rico; -2018-11-28T15:44:53Z;Eduardo;4505.82;114306494;Puerto Rico; -2018-11-28T15:44:21Z;Júlio;6380.86;115686116;Puerto Rico; -2018-11-28T15:42:38Z;Eduardo;2115.088;115479762;Puerto Rico; -2018-11-28T15:31:35Z;nathalia;11252.41;115995495;Puerto Rico; -2018-11-28T15:07:21Z;Júlio;2352.167;115520358;Puerto Rico; -2018-11-28T14:51:04Z;Armando;1312.71;115427527;Puerto Rico; -2018-11-28T14:47:43Z;nathalia;2224.409;114444980;Puerto Rico; -2018-11-28T14:37:41Z;Eduardo;8.573841;115207277;Puerto Rico; -2018-11-28T14:26:44Z;Ana;4450.29;114409804;Puerto Rico; -2018-11-28T14:15:34Z;Ana;5384.327;115955719;Puerto Rico; -2018-11-28T14:14:45Z;Sandra;2574.994;115733753;Puerto Rico; -2018-11-28T14:07:46Z;Eduardo;4472.275;116200308;Puerto Rico; -2018-11-28T13:47:10Z;nathalia;1426.432;116171130;Puerto Rico; -2018-11-28T13:11:10Z;Armando;1110.527;115198117;Puerto Rico; -2018-11-28T13:05:05Z;Nathália;14382.86;114882835;Puerto Rico; -2018-11-28T13:01:35Z;Ana;172.7878;114829303;Puerto Rico; -2018-11-28T12:44:48Z;Armando;815.7583;114511261;Puerto Rico; -2018-11-28T12:21:16Z;Júlio;4017.914;116090248;Puerto Rico; -2018-11-28T12:19:55Z;Ana;10628.43;116344410;Puerto Rico; -2018-11-28T12:10:32Z;nathalia;2185.331;115750020;Puerto Rico; -2018-11-28T11:59:00Z;nathalia;617.4316;115939019;Puerto Rico; -2018-11-28T11:51:09Z;Ana;865.4535;114487231;Puerto Rico; -2018-11-28T11:39:10Z;nathalia;2461.865;115391226;Puerto Rico; -2018-11-28T11:28:53Z;Júlio;754.26;114842969;Puerto Rico; -2018-11-28T11:02:36Z;Nathália;10565.45;115363486;Puerto Rico; -2018-11-28T10:56:52Z;nathalia;4326.086;114938605;Puerto Rico; -2018-11-28T10:47:22Z;Júlio Cesar;5055.172;115907393;Puerto Rico; -2018-11-28T10:43:59Z;Armando;691.0314;114781549;Puerto Rico; -2018-11-28T10:19:30Z;Sandra;3914.77;114968646;Puerto Rico; -2018-11-28T10:02:29Z;Júlio Cesar;1969.674;115375162;Puerto Rico; -2018-11-28T09:59:24Z;Nathália;2892.6;114862173;Puerto Rico; -2018-11-28T09:42:10Z;nathalia;3662.81;114452175;Puerto Rico; -2018-11-28T09:34:36Z;Armando;1545.702;115050711;Puerto Rico; -2018-11-28T09:28:47Z;Júlio;3996.212;114460965;Puerto Rico; -2018-11-28T08:59:34Z;Júlio;679.1262;114282373;Puerto Rico; -2018-11-28T08:56:26Z;nathalia;7682.34;116218254;Puerto Rico; -2018-11-28T08:45:11Z;nathalia;764.6187;115573930;Puerto Rico; -2018-11-28T08:41:09Z;Ana;6102.853;115645235;Puerto Rico; -2018-11-28T07:42:55Z;nathalia;2771.638;114955939;Puerto Rico; -2018-11-28T07:35:16Z;Nathália;494.5858;116342654;Puerto Rico; -2018-11-28T07:28:02Z;Eduardo;6786.782;114879894;Puerto Rico; -2018-11-28T06:34:42Z;Eduardo;1283.101;115361694;Puerto Rico; -2018-11-28T06:07:56Z;Ana;2877.412;114635988;Puerto Rico; -2018-11-28T05:39:06Z;Júlio;1119.553;115178979;Puerto Rico; -2018-11-28T05:16:38Z;Eduardo;4993.592;116272551;Puerto Rico; -2018-11-28T05:12:26Z;Júlio;1196.062;115160390;Puerto Rico; -2018-11-28T03:43:06Z;Sandra;13810.42;115001028;Puerto Rico; -2018-11-28T03:40:19Z;nathalia;5730.708;115693880;Puerto Rico; -2018-11-28T03:24:32Z;Sandra;2989.539;115335260;Puerto Rico; -2018-11-28T03:21:55Z;Armando;8856.607;115078004;Puerto Rico; -2018-11-28T03:16:35Z;Eduardo;29.82153;114982986;Puerto Rico; -2018-11-28T03:16:25Z;nathalia;183.898;115601276;Puerto Rico; -2018-11-28T03:04:45Z;Ana;5497.096;114477142;Puerto Rico; -2018-11-28T02:30:48Z;Eduardo;1689.399;116055885;Puerto Rico; -2018-11-28T02:27:10Z;Júlio;3269.402;115656794;Puerto Rico; -2018-11-28T02:05:26Z;Ana;3167.372;114570170;Puerto Rico; -2018-11-28T01:43:58Z;Júlio Cesar;6619.376;115908617;Puerto Rico; -2018-11-28T01:28:02Z;Ana;8508.356;114386535;Puerto Rico; -2018-11-28T01:20:11Z;Nathália;3135.228;116132192;Puerto Rico; -2018-11-28T00:39:09Z;Armando;3819.156;114241087;Puerto Rico; -2018-11-28T00:15:59Z;Sandra;4361.46;114629418;Puerto Rico; -2018-11-27T23:41:48Z;Ana;371.2863;114484836;Puerto Rico; -2018-11-27T22:40:46Z;Nathália;3193.984;114429728;Puerto Rico; -2018-11-27T21:53:54Z;Júlio Cesar;3365.692;114391375;Puerto Rico; -2018-11-27T21:53:50Z;Júlio;7365.297;114747486;Puerto Rico; -2018-11-27T20:56:55Z;nathalia;4889.368;114521803;Puerto Rico; -2018-11-27T20:55:54Z;Ana;2187.802;114350904;Puerto Rico; -2018-11-27T20:44:52Z;Nathália;2021.746;115319214;Puerto Rico; -2018-11-27T20:29:14Z;Júlio Cesar;317.5119;115811283;Puerto Rico; -2018-11-27T20:23:16Z;Júlio Cesar;2010.932;115716295;Puerto Rico; -2018-11-27T20:11:15Z;Júlio Cesar;1757.609;115775397;Puerto Rico; -2018-11-27T19:37:42Z;Eduardo;2073.677;115117770;Puerto Rico; -2018-11-27T19:33:14Z;Júlio Cesar;496.9966;116269040;Puerto Rico; -2018-11-27T18:48:54Z;nathalia;4025.582;114235914;Puerto Rico; -2018-11-27T18:47:53Z;Armando;262.2386;115283734;Puerto Rico; -2018-11-27T18:36:25Z;Sandra;10216.36;116026519;Puerto Rico; -2018-11-27T18:20:31Z;Armando;2918.72;114338541;Puerto Rico; -2018-11-27T17:43:17Z;Júlio;633.6425;115207708;Puerto Rico; -2018-11-27T17:40:08Z;Ana;2326.643;115817294;Puerto Rico; -2018-11-27T17:33:17Z;Júlio;2641.095;115659269;Puerto Rico; -2018-11-27T17:22:09Z;Eduardo;8134.282;115605645;Puerto Rico; -2018-11-27T17:20:17Z;Ana;540.978;115042124;Puerto Rico; -2018-11-27T17:11:31Z;Eduardo;4173.147;114559224;Puerto Rico; -2018-11-27T16:43:00Z;Eduardo;3710.388;115644212;Puerto Rico; -2018-11-27T16:38:33Z;Júlio;556.0314;115704689;Puerto Rico; -2018-11-27T16:29:02Z;Júlio Cesar;289.5291;115178192;Puerto Rico; -2018-11-27T16:05:56Z;Sandra;19.68623;115359332;Puerto Rico; -2018-11-27T15:56:55Z;Sandra;8938.412;115664028;Puerto Rico; -2018-11-27T15:52:32Z;Ana;426.9718;114676872;Puerto Rico; -2018-11-27T15:37:42Z;Eduardo;3739.533;115624832;Puerto Rico; -2018-11-27T14:39:12Z;Armando;2382.967;116306859;Puerto Rico; -2018-11-27T14:09:12Z;Júlio Cesar;3734.786;115113311;Puerto Rico; -2018-11-27T13:59:22Z;Eduardo;5388.127;115624103;Puerto Rico; -2018-11-27T13:48:59Z;Júlio;955.0059;116095260;Puerto Rico; -2018-11-27T13:39:15Z;Sandra;100.901;115849074;Puerto Rico; -2018-11-27T13:35:00Z;Eduardo;208.1164;115307204;Puerto Rico; -2018-11-27T13:30:27Z;nathalia;132.8502;115815222;Puerto Rico; -2018-11-27T13:25:30Z;Ana;211.0727;114786867;Puerto Rico; -2018-11-27T13:18:30Z;Júlio;3831.451;114222637;Puerto Rico; -2018-11-27T12:52:15Z;Júlio Cesar;10888.66;115301250;Puerto Rico; -2018-11-27T12:51:42Z;Nathália;3518.593;114383829;Puerto Rico; -2018-11-27T12:51:28Z;Júlio Cesar;553.3191;115789076;Puerto Rico; -2018-11-27T12:04:40Z;nathalia;4443.13;114744059;Puerto Rico; -2018-11-27T11:56:16Z;Júlio;1514.845;115469015;Puerto Rico; -2018-11-27T11:53:26Z;Eduardo;1123.25;116270552;Puerto Rico; -2018-11-27T11:18:52Z;Armando;1325.322;115767841;Puerto Rico; -2018-11-27T10:58:41Z;Júlio;2935.037;115364531;Puerto Rico; -2018-11-27T10:39:28Z;Sandra;7575.951;116016421;Puerto Rico; -2018-11-27T10:26:53Z;Armando;3651.542;114282334;Puerto Rico; -2018-11-27T10:18:13Z;nathalia;1848.963;116153415;Puerto Rico; -2018-11-27T10:15:47Z;Ana;1049.079;116025528;Puerto Rico; -2018-11-27T09:48:38Z;Júlio;4940.06;115015641;Puerto Rico; -2018-11-27T09:33:44Z;Sandra;79.79412;116398657;Puerto Rico; -2018-11-27T09:32:08Z;Ana;8327.972;116210169;Puerto Rico; -2018-11-27T09:29:30Z;Eduardo;1657.066;115754923;Puerto Rico; -2018-11-27T09:23:20Z;Júlio;3945.027;116232764;Puerto Rico; -2018-11-27T08:59:20Z;Ana;5945.013;114991483;Puerto Rico; -2018-11-27T08:48:31Z;Sandra;1624.524;115827077;Puerto Rico; -2018-11-27T08:35:02Z;Nathália;189.8799;116171385;Puerto Rico; -2018-11-27T08:25:36Z;Eduardo;7338.974;114702483;Puerto Rico; -2018-11-27T08:06:12Z;Júlio;4238.4;116098288;Puerto Rico; -2018-11-27T08:00:59Z;Júlio;3801.178;116295322;Puerto Rico; -2018-11-27T07:51:51Z;Sandra;246.6063;114503005;Puerto Rico; -2018-11-27T07:38:28Z;Júlio;5576.465;115111902;Puerto Rico; -2018-11-27T07:16:44Z;Júlio;1947.375;114391847;Puerto Rico; -2018-11-27T06:45:27Z;Armando;12064.43;116122957;Puerto Rico; -2018-11-27T06:39:16Z;Eduardo;5326.765;114494037;Puerto Rico; -2018-11-27T06:37:52Z;Júlio;2099.456;114279507;Puerto Rico; -2018-11-27T06:05:40Z;Ana;12693.81;116204085;Puerto Rico; -2018-11-27T06:01:53Z;Armando;4271.152;115402966;Puerto Rico; -2018-11-27T06:00:39Z;Sandra;14402.45;114638467;Puerto Rico; -2018-11-27T05:54:52Z;Eduardo;4352.759;115313961;Puerto Rico; -2018-11-27T05:44:35Z;Ana;2789.416;114686164;Puerto Rico; -2018-11-27T05:13:52Z;Júlio;256.959;116225321;Puerto Rico; -2018-11-27T05:10:53Z;Eduardo;9918.879;115401931;Puerto Rico; -2018-11-27T05:09:14Z;Júlio Cesar;5799.228;115038357;Puerto Rico; -2018-11-27T05:05:47Z;Júlio Cesar;4137.274;115998486;Puerto Rico; -2018-11-27T04:56:43Z;Júlio;1610.184;115988088;Puerto Rico; -2018-11-27T04:18:22Z;Nathália;100.5628;115462817;Puerto Rico; -2018-11-27T04:10:17Z;Ana;3862.362;115155791;Puerto Rico; -2018-11-27T03:57:16Z;Ana;1290.89;115832835;Puerto Rico; -2018-11-27T03:49:30Z;Nathália;3011.102;115394090;Puerto Rico; -2018-11-27T03:35:31Z;Júlio;4654.419;115630342;Puerto Rico; -2018-11-27T03:30:36Z;nathalia;5096.894;114660990;Puerto Rico; -2018-11-27T03:23:25Z;Júlio Cesar;468.6096;115986616;Puerto Rico; -2018-11-27T03:12:37Z;nathalia;952.1206;115480070;Puerto Rico; -2018-11-27T02:53:48Z;Júlio Cesar;9255.676;115879005;Puerto Rico; -2018-11-27T02:49:16Z;Sandra;8827.737;114878174;Puerto Rico; -2018-11-27T02:47:04Z;Júlio;99.30289;116146358;Puerto Rico; -2018-11-27T01:33:22Z;Nathália;5344.058;114292905;Puerto Rico; -2018-11-27T01:32:18Z;Júlio;4604.653;114503846;Puerto Rico; -2018-11-27T01:08:22Z;nathalia;12687.64;114235507;Puerto Rico; -2018-11-27T01:04:24Z;Júlio;2580.692;115951132;Puerto Rico; -2018-11-26T23:34:32Z;Ana;7465.5;115332668;Puerto Rico; -2018-11-26T23:33:11Z;Ana;7879.107;114758224;Puerto Rico; -2018-11-26T23:24:54Z;Sandra;1318.883;116300083;Puerto Rico; -2018-11-26T23:21:03Z;nathalia;39.93272;114912573;Puerto Rico; -2018-11-26T23:15:14Z;Sandra;1391.955;115891917;Puerto Rico; -2018-11-26T23:05:33Z;Júlio;7646.922;114741502;Puerto Rico; -2018-11-26T23:02:18Z;Eduardo;898.9275;114961840;Puerto Rico; -2018-11-26T22:31:52Z;nathalia;1140.3;116001668;Puerto Rico; -2018-11-26T22:20:31Z;Armando;5997.743;115451124;Puerto Rico; -2018-11-26T22:13:37Z;Ana;2006.95;115782120;Puerto Rico; -2018-11-26T22:07:43Z;Nathália;736.5873;116397491;Puerto Rico; -2018-11-26T22:03:35Z;Eduardo;1616.849;115315363;Puerto Rico; -2018-11-26T21:45:17Z;Júlio Cesar;3605.508;114743445;Puerto Rico; -2018-11-26T21:33:54Z;nathalia;4162.954;115435471;Puerto Rico; -2018-11-26T21:32:46Z;Júlio Cesar;7304.631;114503561;Puerto Rico; -2018-11-26T21:02:38Z;Armando;7072.02;114814959;Puerto Rico; -2018-11-26T21:01:21Z;Nathália;831.393;114934755;Puerto Rico; -2018-11-26T20:59:42Z;Nathália;96.24766;114827668;Puerto Rico; -2018-11-26T20:46:05Z;nathalia;391.8953;114901868;Puerto Rico; -2018-11-26T20:09:57Z;Júlio Cesar;11464.38;115025324;Puerto Rico; -2018-11-26T19:50:09Z;Eduardo;6994.153;114383040;Puerto Rico; -2018-11-26T19:17:48Z;Eduardo;5348.269;115070298;Puerto Rico; -2018-11-26T19:13:26Z;Armando;1032.29;116184817;Puerto Rico; -2018-11-26T18:24:57Z;nathalia;2133.025;114924655;Puerto Rico; -2018-11-26T18:13:48Z;Armando;9489.685;116198057;Puerto Rico; -2018-11-26T17:36:42Z;nathalia;1717.32;114978381;Puerto Rico; -2018-11-26T17:25:59Z;Júlio;123.5448;116333097;Puerto Rico; -2018-11-26T17:15:57Z;Júlio;4062.672;114525321;Puerto Rico; -2018-11-26T16:54:05Z;nathalia;3151.259;114690930;Puerto Rico; -2018-11-26T16:39:11Z;Ana;1904.663;115674930;Puerto Rico; -2018-11-26T16:38:42Z;nathalia;8802.362;114261665;Puerto Rico; -2018-11-26T16:37:02Z;Júlio Cesar;9327.204;115072280;Puerto Rico; -2018-11-26T16:36:06Z;Armando;550.7104;114299595;Puerto Rico; -2018-11-26T16:34:12Z;Nathália;4087.035;114216140;Puerto Rico; -2018-11-26T16:10:27Z;Nathália;8783.241;115668588;Puerto Rico; -2018-11-26T15:48:56Z;Sandra;1990.249;114319296;Puerto Rico; -2018-11-26T15:25:08Z;Ana;3674.402;114419722;Puerto Rico; -2018-11-26T15:08:31Z;Sandra;895.6932;114502038;Puerto Rico; -2018-11-26T14:15:26Z;Ana;2557.281;116031999;Puerto Rico; -2018-11-26T14:05:38Z;Armando;7383.154;115789577;Puerto Rico; -2018-11-26T13:51:56Z;Ana;1058.269;115911537;Puerto Rico; -2018-11-26T13:51:48Z;nathalia;10372.49;115525523;Puerto Rico; -2018-11-26T13:49:57Z;Júlio Cesar;1319.629;116045793;Puerto Rico; -2018-11-26T13:48:09Z;nathalia;1463.298;115513330;Puerto Rico; -2018-11-26T13:12:16Z;Sandra;4687.736;115420242;Puerto Rico; -2018-11-26T12:57:58Z;Nathália;18.37913;114387687;Puerto Rico; -2018-11-26T12:33:30Z;Armando;1950.153;115060771;Puerto Rico; -2018-11-26T12:22:35Z;Sandra;8875.142;115059950;Puerto Rico; -2018-11-26T11:53:10Z;Eduardo;4788.681;114304101;Puerto Rico; -2018-11-26T11:25:25Z;Júlio;1495.478;115078900;Puerto Rico; -2018-11-26T11:18:11Z;Júlio;5612.73;116161930;Puerto Rico; -2018-11-26T11:14:00Z;Júlio;4559.203;115086118;Puerto Rico; -2018-11-26T11:02:19Z;nathalia;5372.117;114237669;Puerto Rico; -2018-11-26T10:50:51Z;Júlio Cesar;816.911;116383680;Puerto Rico; -2018-11-26T10:26:32Z;Eduardo;1264.681;115841782;Puerto Rico; -2018-11-26T10:04:54Z;Eduardo;1571.114;114632621;Puerto Rico; -2018-11-26T10:02:19Z;Sandra;9201.599;115348248;Puerto Rico; -2018-11-26T09:35:24Z;Eduardo;1611.114;115590345;Puerto Rico; -2018-11-26T09:13:54Z;Eduardo;6180.161;115209967;Puerto Rico; -2018-11-26T08:54:44Z;Júlio;650.7693;114967798;Puerto Rico; -2018-11-26T08:50:00Z;Sandra;43.31259;115672810;Puerto Rico; -2018-11-26T08:44:25Z;Armando;5797.56;115706197;Puerto Rico; -2018-11-26T08:30:03Z;nathalia;1536.71;115645981;Puerto Rico; -2018-11-26T08:16:50Z;Sandra;4226.241;114381707;Puerto Rico; -2018-11-26T07:51:53Z;Nathália;6988.963;115972399;Puerto Rico; -2018-11-26T07:22:01Z;Júlio Cesar;9414.233;114219758;Puerto Rico; -2018-11-26T07:19:19Z;Júlio Cesar;2759.389;115385167;Puerto Rico; -2018-11-26T07:18:02Z;Júlio Cesar;9378.497;116331467;Puerto Rico; -2018-11-26T07:03:55Z;Nathália;617.0551;115868335;Puerto Rico; -2018-11-26T07:02:59Z;nathalia;1536.845;114442109;Puerto Rico; -2018-11-26T06:48:16Z;Eduardo;3793.201;115354655;Puerto Rico; -2018-11-26T06:10:11Z;Armando;2741.228;114408744;Puerto Rico; -2018-11-26T06:04:54Z;Eduardo;2275.9;116184350;Puerto Rico; -2018-11-26T05:27:16Z;Júlio Cesar;13044.08;115679876;Puerto Rico; -2018-11-26T05:22:53Z;Sandra;4126.029;115146161;Puerto Rico; -2018-11-26T05:21:26Z;Nathália;2514.731;115627183;Puerto Rico; -2018-11-26T05:17:17Z;Júlio;66.577;115526167;Puerto Rico; -2018-11-26T04:48:57Z;Júlio;7955.629;114945831;Puerto Rico; -2018-11-26T03:53:26Z;Júlio;4836.276;114242007;Puerto Rico; -2018-11-26T03:33:18Z;Júlio;230.854;115430219;Puerto Rico; -2018-11-26T03:14:16Z;Sandra;3140.494;115303120;Puerto Rico; -2018-11-26T03:08:40Z;Ana;9539.339;115907303;Puerto Rico; -2018-11-26T03:02:54Z;nathalia;2932.88;114375879;Puerto Rico; -2018-11-26T03:02:52Z;Ana;7593.036;115470403;Puerto Rico; -2018-11-26T02:58:04Z;Ana;8350.379;114600122;Puerto Rico; -2018-11-26T02:56:20Z;Júlio Cesar;2142.437;115071264;Puerto Rico; -2018-11-26T02:36:48Z;Nathália;777.6503;115500376;Puerto Rico; -2018-11-26T02:29:34Z;Júlio Cesar;7247.331;114404632;Puerto Rico; -2018-11-26T01:57:32Z;Júlio Cesar;4598.74;115337240;Puerto Rico; -2018-11-26T01:37:54Z;Ana;1886.631;116170420;Puerto Rico; -2018-11-26T01:35:49Z;Nathália;606.9615;115177931;Puerto Rico; -2018-11-26T01:29:09Z;Júlio Cesar;9324.034;114225661;Puerto Rico; -2018-11-26T01:25:36Z;Armando;6117.041;115762148;Puerto Rico; -2018-11-26T01:13:04Z;Ana;6551.314;115704010;Puerto Rico; -2018-11-26T00:47:30Z;Armando;990.016;114527600;Puerto Rico; -2018-11-26T00:41:17Z;Júlio;465.4441;115674235;Puerto Rico; -2018-11-26T00:15:07Z;Júlio Cesar;1114.711;114584464;Puerto Rico; -2018-11-25T23:57:54Z;Júlio Cesar;9820.272;114509652;Puerto Rico; -2018-11-25T23:52:09Z;Ana;2568.13;115209021;Puerto Rico; -2018-11-25T23:49:21Z;Nathália;2126.796;114921170;Puerto Rico; -2018-11-25T23:48:56Z;Sandra;1089.648;115983897;Puerto Rico; -2018-11-25T23:43:11Z;Eduardo;4312.612;114827296;Puerto Rico; -2018-11-25T23:38:21Z;Sandra;6914.566;115747384;Puerto Rico; -2018-11-25T23:18:21Z;Armando;9460.434;115142085;Puerto Rico; -2018-11-25T23:12:17Z;Nathália;26.38126;115457300;Puerto Rico; -2018-11-25T23:06:13Z;Eduardo;1558.084;115395032;Puerto Rico; -2018-11-25T22:41:48Z;Ana;4674.608;114958575;Puerto Rico; -2018-11-25T22:15:06Z;Júlio Cesar;2127.81;114592461;Puerto Rico; -2018-11-25T21:39:02Z;Júlio Cesar;3687.834;115541369;Puerto Rico; -2018-11-25T21:26:42Z;Júlio Cesar;486.259;116140415;Puerto Rico; -2018-11-25T20:56:21Z;Armando;685.2983;115914356;Puerto Rico; -2018-11-25T20:46:06Z;Júlio Cesar;5221.791;115337947;Puerto Rico; -2018-11-25T20:43:33Z;Armando;2470.493;115288972;Puerto Rico; -2018-11-25T20:31:19Z;Júlio;8532.44;114320986;Puerto Rico; -2018-11-25T20:09:50Z;Júlio;1550.903;114989364;Puerto Rico; -2018-11-25T20:06:30Z;Júlio;5714.042;114839807;Puerto Rico; -2018-11-25T20:01:00Z;Júlio;342.52;115434949;Puerto Rico; -2018-11-25T19:40:19Z;Eduardo;10778.28;115025936;Puerto Rico; -2018-11-25T19:39:04Z;Nathália;3082.49;115425599;Puerto Rico; -2018-11-25T19:20:10Z;Armando;578.7909;114931428;Puerto Rico; -2018-11-25T19:12:03Z;Ana;2147.623;114917378;Puerto Rico; -2018-11-25T19:11:31Z;Júlio Cesar;507.6836;116241495;Puerto Rico; -2018-11-25T18:56:15Z;Júlio Cesar;7459.554;114381327;Puerto Rico; -2018-11-25T18:28:52Z;nathalia;1998.438;115586580;Puerto Rico; -2018-11-25T18:22:30Z;nathalia;3000.873;114961593;Puerto Rico; -2018-11-25T18:20:16Z;Eduardo;1406.776;116356785;Puerto Rico; -2018-11-25T18:19:23Z;Armando;10734.01;114783242;Puerto Rico; -2018-11-25T18:16:48Z;nathalia;4808.725;115096510;Puerto Rico; -2018-11-25T18:09:29Z;Júlio Cesar;615.6531;115693858;Puerto Rico; -2018-11-25T17:00:22Z;Júlio Cesar;1967.485;116399162;Puerto Rico; -2018-11-25T16:49:21Z;Eduardo;7467.301;115172570;Puerto Rico; -2018-11-25T16:42:11Z;Sandra;1371.805;114651482;Puerto Rico; -2018-11-25T16:37:20Z;Nathália;9191.325;115142754;Puerto Rico; -2018-11-25T16:27:53Z;Sandra;9991.066;115580984;Puerto Rico; -2018-11-25T16:24:16Z;Sandra;1666.064;116346997;Puerto Rico; -2018-11-25T16:16:25Z;nathalia;298.5946;115562709;Puerto Rico; -2018-11-25T16:07:49Z;Júlio Cesar;7740.042;115554782;Puerto Rico; -2018-11-25T16:06:35Z;nathalia;4636.584;116112627;Puerto Rico; -2018-11-25T15:46:18Z;Júlio Cesar;5559.315;114230458;Puerto Rico; -2018-11-25T15:42:37Z;nathalia;8032.769;115693479;Puerto Rico; -2018-11-25T15:34:18Z;Júlio Cesar;14292.77;115892481;Puerto Rico; -2018-11-25T15:30:32Z;Nathália;9242.998;115314375;Puerto Rico; -2018-11-25T15:26:44Z;Sandra;3411.193;114461194;Puerto Rico; -2018-11-25T15:19:04Z;nathalia;2088.078;114511524;Puerto Rico; -2018-11-25T15:08:59Z;Júlio;1687.616;114905726;Puerto Rico; -2018-11-25T14:41:57Z;Ana;7518.736;115572817;Puerto Rico; -2018-11-25T14:40:43Z;Júlio;501.7231;114933489;Puerto Rico; -2018-11-25T13:47:20Z;nathalia;4073.276;115731744;Puerto Rico; -2018-11-25T13:44:00Z;Júlio;2941.163;114948371;Puerto Rico; -2018-11-25T13:37:48Z;Armando;2969.314;114431635;Puerto Rico; -2018-11-25T13:33:27Z;Eduardo;4533.114;115097626;Puerto Rico; -2018-11-25T13:25:22Z;Eduardo;237.2175;116069143;Puerto Rico; -2018-11-25T13:05:38Z;Nathália;3652.792;115533497;Puerto Rico; -2018-11-25T12:51:30Z;Ana;3828.75;114344096;Puerto Rico; -2018-11-25T12:38:33Z;Sandra;2720.677;115669236;Puerto Rico; -2018-11-25T12:21:40Z;Júlio Cesar;1997.62;115576313;Puerto Rico; -2018-11-25T12:07:57Z;Sandra;4801.654;114203989;Puerto Rico; -2018-11-25T12:04:04Z;Eduardo;2446.748;115017232;Puerto Rico; -2018-11-25T11:39:15Z;Nathália;1844.034;115025105;Puerto Rico; -2018-11-25T11:27:05Z;Sandra;145.5129;115291264;Puerto Rico; -2018-11-25T11:13:00Z;Armando;4487.624;116352477;Puerto Rico; -2018-11-25T11:00:49Z;Júlio Cesar;9805.289;116057774;Puerto Rico; -2018-11-25T11:00:20Z;Armando;6021.906;115353664;Puerto Rico; -2018-11-25T10:59:08Z;Ana;2050.898;116202825;Puerto Rico; -2018-11-25T10:55:58Z;Júlio;1905.776;115800773;Puerto Rico; -2018-11-25T10:50:22Z;Júlio;2139.808;114657266;Puerto Rico; -2018-11-25T10:42:07Z;Sandra;1350.534;115937756;Puerto Rico; -2018-11-25T10:28:20Z;nathalia;32.63234;114445143;Puerto Rico; -2018-11-25T10:21:09Z;Armando;838.7605;114395327;Puerto Rico; -2018-11-25T09:52:13Z;Eduardo;12534.25;115638441;Puerto Rico; -2018-11-25T09:07:23Z;Sandra;11174.66;115820573;Puerto Rico; -2018-11-25T09:05:02Z;Nathália;3300.23;116302859;Puerto Rico; -2018-11-25T08:58:19Z;Júlio;1661.263;114315013;Puerto Rico; -2018-11-25T08:57:53Z;nathalia;941.7784;115570543;Puerto Rico; -2018-11-25T08:46:34Z;Eduardo;1928.023;115811134;Puerto Rico; -2018-11-25T08:43:03Z;Ana;3771.023;115142061;Puerto Rico; -2018-11-25T08:38:21Z;nathalia;58.18642;114233007;Puerto Rico; -2018-11-25T08:35:17Z;nathalia;2821.025;114448187;Puerto Rico; -2018-11-25T08:32:46Z;Júlio;1905.17;114408464;Puerto Rico; -2018-11-25T08:28:32Z;Júlio;2684.179;116323494;Puerto Rico; -2018-11-25T08:12:37Z;Nathália;4504.33;115664195;Puerto Rico; -2018-11-25T08:01:07Z;Júlio;1828.043;114874074;Puerto Rico; -2018-11-25T07:31:42Z;Eduardo;260.0973;115517713;Puerto Rico; -2018-11-25T07:07:38Z;Armando;1232.564;116023766;Puerto Rico; -2018-11-25T06:42:50Z;nathalia;493.6791;115244125;Puerto Rico; -2018-11-25T06:40:18Z;Ana;3019.772;115151292;Puerto Rico; -2018-11-25T06:33:58Z;nathalia;11359.73;115937751;Puerto Rico; -2018-11-25T06:13:48Z;Júlio Cesar;875.6889;114386764;Puerto Rico; -2018-11-25T05:36:46Z;nathalia;951.9718;116002657;Puerto Rico; -2018-11-25T05:29:45Z;Ana;2925.544;114482737;Puerto Rico; -2018-11-25T04:51:48Z;Júlio;7502.505;114751745;Puerto Rico; -2018-11-25T04:17:14Z;Júlio Cesar;4101.7;114792368;Puerto Rico; -2018-11-25T04:04:52Z;Sandra;833.0792;115231044;Puerto Rico; -2018-11-25T03:56:19Z;Armando;3006.443;115421821;Puerto Rico; -2018-11-25T03:13:38Z;Armando;3613.856;114957318;Puerto Rico; -2018-11-25T02:41:29Z;Sandra;4510.856;114797977;Puerto Rico; -2018-11-25T02:21:41Z;Sandra;8216.645;114639745;Puerto Rico; -2018-11-25T01:38:15Z;nathalia;6715.442;115218951;Puerto Rico; -2018-11-25T01:23:49Z;Júlio Cesar;7391.077;114545637;Puerto Rico; -2018-11-25T01:21:57Z;Sandra;770.5586;116252851;Puerto Rico; -2018-11-25T01:17:23Z;Júlio Cesar;2926.428;114291609;Puerto Rico; -2018-11-25T00:50:40Z;Júlio Cesar;3874.309;114953593;Puerto Rico; -2018-11-25T00:34:03Z;Júlio;91.42902;115722879;Puerto Rico; -2018-11-25T00:30:41Z;nathalia;10658.42;115314916;Puerto Rico; -2018-11-25T00:09:23Z;Armando;3888.261;115523464;Puerto Rico; -2018-11-24T23:58:25Z;Armando;3013.844;114855410;Puerto Rico; -2018-11-24T23:55:08Z;nathalia;1263.418;115268487;Puerto Rico; -2018-11-24T23:54:52Z;nathalia;3586.224;115543871;Puerto Rico; -2018-11-24T23:30:27Z;nathalia;2858.773;114732880;Puerto Rico; -2018-11-24T23:16:15Z;Eduardo;9106.419;114787020;Puerto Rico; -2018-11-24T22:41:43Z;Júlio;4950.205;115198900;Puerto Rico; -2018-11-24T22:20:04Z;Armando;1472.883;116044847;Puerto Rico; -2018-11-24T21:56:32Z;Eduardo;3609.507;116151347;Puerto Rico; -2018-11-24T21:15:10Z;Ana;4502.833;114843008;Puerto Rico; -2018-11-24T21:06:00Z;Júlio Cesar;13017.03;116372146;Puerto Rico; -2018-11-24T20:55:18Z;Sandra;6052.262;115590804;Puerto Rico; -2018-11-24T20:51:27Z;Júlio;1916.457;116359695;Puerto Rico; -2018-11-24T20:25:45Z;Armando;411.4278;115264790;Puerto Rico; -2018-11-24T19:54:03Z;Júlio;1707.986;114980988;Puerto Rico; -2018-11-24T19:35:20Z;Júlio;8315.238;115498622;Puerto Rico; -2018-11-24T19:12:19Z;Júlio Cesar;5200.9;114313584;Puerto Rico; -2018-11-24T19:10:48Z;nathalia;1856.434;116303189;Puerto Rico; -2018-11-24T18:02:28Z;Júlio;3087.148;116123494;Puerto Rico; -2018-11-24T17:13:41Z;Nathália;464.7964;116111507;Puerto Rico; -2018-11-24T16:56:37Z;Nathália;3531.576;114579121;Puerto Rico; -2018-11-24T16:39:10Z;Júlio;2006.38;114856422;Puerto Rico; -2018-11-24T16:11:53Z;Júlio;3390.884;115365443;Puerto Rico; -2018-11-24T15:51:29Z;Ana;32.43412;114219787;Puerto Rico; -2018-11-24T15:32:12Z;Armando;1670.542;114994090;Puerto Rico; -2018-11-24T15:29:56Z;Eduardo;2273.562;115864605;Puerto Rico; -2018-11-24T15:25:29Z;Júlio Cesar;2676.634;116288491;Puerto Rico; -2018-11-24T15:18:46Z;Ana;2179.363;114346766;Puerto Rico; -2018-11-24T14:28:22Z;Sandra;6395.252;114241729;Puerto Rico; -2018-11-24T14:05:23Z;nathalia;5425.995;114914950;Puerto Rico; -2018-11-24T13:42:38Z;Ana;572.1116;116135096;Puerto Rico; -2018-11-24T13:39:35Z;Nathália;5960.994;115788600;Puerto Rico; -2018-11-24T13:39:08Z;Nathália;2622.642;115510798;Puerto Rico; -2018-11-24T13:37:52Z;Ana;4722.321;115157656;Puerto Rico; -2018-11-24T13:03:21Z;Armando;7757.528;114376602;Puerto Rico; -2018-11-24T12:55:19Z;Eduardo;8592.298;114831576;Puerto Rico; -2018-11-24T12:53:40Z;Sandra;718.8596;115602628;Puerto Rico; -2018-11-24T12:38:27Z;Armando;6951.402;114632997;Puerto Rico; -2018-11-24T12:35:37Z;nathalia;3659.148;115696868;Puerto Rico; -2018-11-24T12:29:32Z;Júlio;269.9253;114212138;Puerto Rico; -2018-11-24T12:28:49Z;Nathália;666.4188;115396912;Puerto Rico; -2018-11-24T12:02:26Z;Nathália;5348.097;114953709;Puerto Rico; -2018-11-24T11:36:14Z;nathalia;680.7378;114809016;Puerto Rico; -2018-11-24T11:01:45Z;Armando;1851.943;114869721;Puerto Rico; -2018-11-24T10:58:27Z;Júlio;5780.374;114313703;Puerto Rico; -2018-11-24T10:58:23Z;Ana;1577.473;115576378;Puerto Rico; -2018-11-24T10:47:29Z;Sandra;7980.354;116220780;Puerto Rico; -2018-11-24T10:29:05Z;Júlio;7363.522;115965775;Puerto Rico; -2018-11-24T10:03:04Z;Júlio;7120.084;116279941;Puerto Rico; -2018-11-24T09:32:14Z;Sandra;617.0244;116366683;Puerto Rico; -2018-11-24T09:24:09Z;Júlio;6328.581;114293108;Puerto Rico; -2018-11-24T09:07:24Z;Eduardo;6774.321;115809900;Puerto Rico; -2018-11-24T08:53:05Z;nathalia;343.655;115488741;Puerto Rico; -2018-11-24T08:44:35Z;nathalia;2180.971;114915918;Puerto Rico; -2018-11-24T08:43:31Z;Armando;16360.07;114773719;Puerto Rico; -2018-11-24T07:39:47Z;Nathália;5477.628;114589625;Puerto Rico; -2018-11-24T07:29:43Z;Ana;2103.575;115778427;Puerto Rico; -2018-11-24T07:16:58Z;Armando;4345.062;116108315;Puerto Rico; -2018-11-24T07:04:20Z;Júlio Cesar;1547.868;114622385;Puerto Rico; -2018-11-24T06:34:46Z;Júlio Cesar;4571.365;114581920;Puerto Rico; -2018-11-24T06:29:37Z;Eduardo;235.1683;115755935;Puerto Rico; -2018-11-24T06:22:26Z;Ana;2239.307;116298480;Puerto Rico; -2018-11-24T06:14:09Z;Nathália;6792.835;114915696;Puerto Rico; -2018-11-24T05:41:46Z;Armando;4750.473;115370945;Puerto Rico; -2018-11-24T05:07:57Z;Armando;1712.98;114859804;Puerto Rico; -2018-11-24T05:06:58Z;nathalia;7743.429;115788534;Puerto Rico; -2018-11-24T04:02:01Z;nathalia;2943.034;116027860;Puerto Rico; -2018-11-24T03:51:51Z;Júlio;4502.486;114888120;Puerto Rico; -2018-11-24T03:48:13Z;Nathália;1917.096;115474858;Puerto Rico; -2018-11-24T02:43:06Z;nathalia;3603.928;115024792;Puerto Rico; -2018-11-24T02:24:34Z;Júlio;1918.723;116237749;Puerto Rico; -2018-11-24T02:23:30Z;Júlio Cesar;3286.887;114493450;Puerto Rico; -2018-11-24T01:58:52Z;Júlio Cesar;11717.83;115712592;Puerto Rico; -2018-11-24T01:58:05Z;Armando;4857.665;115241083;Puerto Rico; -2018-11-24T00:32:31Z;Armando;3483.097;114547019;Puerto Rico; -2018-11-23T23:44:57Z;Ana;7683.143;115564587;Puerto Rico; -2018-11-23T23:41:29Z;Ana;3232.794;115968847;Puerto Rico; -2018-11-23T23:40:09Z;Nathália;2080.258;115810104;Puerto Rico; -2018-11-23T23:25:20Z;Armando;1466.216;115695365;Puerto Rico; -2018-11-23T23:23:25Z;Nathália;7308.369;115781842;Puerto Rico; -2018-11-23T23:13:43Z;Júlio;4313.844;114774049;Puerto Rico; -2018-11-23T22:45:24Z;Eduardo;5135.288;115411950;Puerto Rico; -2018-11-23T22:38:35Z;Eduardo;1963.076;114813410;Puerto Rico; -2018-11-23T22:27:53Z;Ana;1677.279;116377149;Puerto Rico; -2018-11-23T22:20:29Z;Sandra;6395.633;115970214;Puerto Rico; -2018-11-23T21:39:51Z;Sandra;1049.267;115010199;Puerto Rico; -2018-11-23T21:31:15Z;nathalia;2283.329;115918287;Puerto Rico; -2018-11-23T21:22:00Z;Júlio;6973.359;115264911;Puerto Rico; -2018-11-23T21:12:20Z;Eduardo;3874.865;116361427;Puerto Rico; -2018-11-23T21:10:34Z;Nathália;4335.912;116031047;Puerto Rico; -2018-11-23T21:08:17Z;Nathália;4428.474;114492620;Puerto Rico; -2018-11-23T20:49:10Z;nathalia;5729.675;114681062;Puerto Rico; -2018-11-23T20:46:11Z;Júlio Cesar;2385.434;115727360;Puerto Rico; -2018-11-23T20:41:00Z;Sandra;10685.24;114833585;Puerto Rico; -2018-11-23T20:35:31Z;Ana;2364.81;114906191;Puerto Rico; -2018-11-23T19:59:09Z;nathalia;1246.607;114890588;Puerto Rico; -2018-11-23T19:58:04Z;Júlio;4141.869;116077893;Puerto Rico; -2018-11-23T19:54:31Z;nathalia;4650.437;114919387;Puerto Rico; -2018-11-23T19:50:20Z;Júlio Cesar;3620.457;115619091;Puerto Rico; -2018-11-23T19:16:28Z;Júlio Cesar;2521.351;114617581;Puerto Rico; -2018-11-23T19:07:23Z;Ana;4521.852;115700859;Puerto Rico; -2018-11-23T18:21:08Z;Júlio;1781.221;114281138;Puerto Rico; -2018-11-23T17:57:18Z;Eduardo;3013.673;114321925;Puerto Rico; -2018-11-23T17:55:00Z;Nathália;11414.91;115964703;Puerto Rico; -2018-11-23T17:44:19Z;Júlio Cesar;6512.856;116325556;Puerto Rico; -2018-11-23T17:39:34Z;Júlio Cesar;156.2754;115267800;Puerto Rico; -2018-11-23T17:35:28Z;Ana;5632.165;114513985;Puerto Rico; -2018-11-23T17:31:07Z;nathalia;2372.741;115307910;Puerto Rico; -2018-11-23T17:08:45Z;Eduardo;1637.289;114874551;Puerto Rico; -2018-11-23T16:47:44Z;Eduardo;3047.505;115245318;Puerto Rico; -2018-11-23T16:27:37Z;nathalia;2754.484;114712381;Puerto Rico; -2018-11-23T16:25:52Z;Sandra;4473.924;114590790;Puerto Rico; -2018-11-23T16:23:33Z;Armando;3066.122;114337001;Puerto Rico; -2018-11-23T16:21:27Z;Nathália;3820.657;115211176;Puerto Rico; -2018-11-23T15:38:09Z;Júlio;3043.958;115499608;Puerto Rico; -2018-11-23T15:28:49Z;Sandra;779.3041;115668000;Puerto Rico; -2018-11-23T15:22:39Z;Júlio;33.71913;115363983;Puerto Rico; -2018-11-23T15:01:06Z;nathalia;928.7556;115716801;Puerto Rico; -2018-11-23T14:27:48Z;Nathália;119.4387;114433309;Puerto Rico; -2018-11-23T14:21:42Z;Nathália;133.8417;114647205;Puerto Rico; -2018-11-23T13:56:08Z;nathalia;4751.852;115168825;Puerto Rico; -2018-11-23T13:22:13Z;Júlio Cesar;129.4833;115413881;Puerto Rico; -2018-11-23T13:15:09Z;Sandra;10433.75;116345880;Puerto Rico; -2018-11-23T12:51:27Z;Júlio;2350.671;116378911;Puerto Rico; -2018-11-23T12:36:39Z;Eduardo;948.2787;115206542;Puerto Rico; -2018-11-23T12:07:36Z;Júlio Cesar;7303.969;115799134;Puerto Rico; -2018-11-23T11:57:52Z;Ana;5971.849;115765789;Puerto Rico; -2018-11-23T11:57:04Z;Júlio Cesar;1808.771;114520680;Puerto Rico; -2018-11-23T11:12:11Z;Júlio;7798.438;114578433;Puerto Rico; -2018-11-23T11:02:43Z;Armando;2875.679;114868948;Puerto Rico; -2018-11-23T10:55:35Z;Ana;1590.414;115114413;Puerto Rico; -2018-11-23T10:46:13Z;Eduardo;736.2244;115619568;Puerto Rico; -2018-11-23T10:19:13Z;Armando;14.87257;116289255;Puerto Rico; -2018-11-23T10:12:12Z;Sandra;2244.615;115110602;Puerto Rico; -2018-11-23T10:11:25Z;Armando;1741.087;114827840;Puerto Rico; -2018-11-23T10:07:06Z;Júlio Cesar;3329.795;116226789;Puerto Rico; -2018-11-23T09:52:06Z;Ana;4647.099;115923323;Puerto Rico; -2018-11-23T09:24:48Z;Eduardo;231.9462;115206695;Puerto Rico; -2018-11-23T09:15:51Z;Júlio;7993.547;114386185;Puerto Rico; -2018-11-23T09:14:54Z;Eduardo;2391.193;114512045;Puerto Rico; -2018-11-23T09:08:04Z;Eduardo;3254.868;116362679;Puerto Rico; -2018-11-23T09:06:21Z;Nathália;12218.34;115963689;Puerto Rico; -2018-11-23T08:42:58Z;Júlio Cesar;756.1128;116073074;Puerto Rico; -2018-11-23T08:05:05Z;Júlio Cesar;1897.085;114401228;Puerto Rico; -2018-11-23T07:55:51Z;nathalia;6528.037;116356151;Puerto Rico; -2018-11-23T07:25:17Z;Júlio;3478.868;115689204;Puerto Rico; -2018-11-23T07:24:28Z;Nathália;6392.89;114324199;Puerto Rico; -2018-11-23T07:17:10Z;Ana;1361.389;115979947;Puerto Rico; -2018-11-23T07:06:14Z;Eduardo;9581.745;114609178;Puerto Rico; -2018-11-23T07:05:56Z;Armando;329.288;116000854;Puerto Rico; -2018-11-23T07:04:07Z;Eduardo;7993.603;114229578;Puerto Rico; -2018-11-23T06:16:49Z;Sandra;8819.275;116243086;Puerto Rico; -2018-11-23T06:00:50Z;Júlio Cesar;2884.767;116289776;Puerto Rico; -2018-11-23T05:55:35Z;Sandra;4734.422;115075230;Puerto Rico; -2018-11-23T05:38:18Z;Júlio Cesar;2353.717;114747272;Puerto Rico; -2018-11-23T05:37:42Z;nathalia;1617.553;114234697;Puerto Rico; -2018-11-23T05:11:24Z;Armando;4542.924;116148343;Puerto Rico; -2018-11-23T04:17:03Z;Ana;7896.981;115472983;Puerto Rico; -2018-11-23T02:59:14Z;Sandra;2046.1;114299074;Puerto Rico; -2018-11-23T02:26:59Z;Nathália;3623.556;115918050;Puerto Rico; -2018-11-23T01:29:26Z;Ana;3716.293;115879530;Puerto Rico; -2018-11-23T01:21:08Z;Júlio Cesar;5417.551;115795083;Puerto Rico; -2018-11-23T01:15:18Z;Júlio;12377.28;115093299;Puerto Rico; -2018-11-23T00:53:57Z;Júlio Cesar;5104.017;115170344;Puerto Rico; -2018-11-23T00:50:15Z;Eduardo;6447.602;115566868;Puerto Rico; -2018-11-23T00:33:23Z;Sandra;13947.68;114857124;Puerto Rico; -2018-11-23T00:09:21Z;Ana;5.007844;114961333;Puerto Rico; -2018-11-23T00:07:05Z;nathalia;507.4324;116157024;Puerto Rico; -2018-11-23T00:02:34Z;Armando;3841.732;116301911;Puerto Rico; -2018-11-22T22:56:51Z;Sandra;4724.751;115598759;Puerto Rico; -2018-11-22T22:52:36Z;Ana;3171.091;114830391;Puerto Rico; -2018-11-22T22:47:57Z;Júlio;3280.071;115554510;Puerto Rico; -2018-11-22T22:18:46Z;Nathália;2604.692;115593971;Puerto Rico; -2018-11-22T22:02:49Z;Júlio Cesar;7726.163;114874834;Puerto Rico; -2018-11-22T20:55:33Z;Ana;5890.366;115285747;Puerto Rico; -2018-11-22T20:54:38Z;Ana;273.5048;114696822;Puerto Rico; -2018-11-22T20:34:23Z;Ana;8664.334;115596930;Puerto Rico; -2018-11-22T20:29:13Z;nathalia;305.5432;116227543;Puerto Rico; -2018-11-22T19:56:01Z;Júlio Cesar;966.7896;116269540;Puerto Rico; -2018-11-22T19:55:34Z;Sandra;4505.581;115643855;Puerto Rico; -2018-11-22T19:51:34Z;nathalia;2859.651;115293939;Puerto Rico; -2018-11-22T19:30:47Z;Sandra;5472.695;115522796;Puerto Rico; -2018-11-22T18:44:55Z;Eduardo;1074.053;115695392;Puerto Rico; -2018-11-22T18:35:01Z;Eduardo;3497.702;115738039;Puerto Rico; -2018-11-22T18:34:08Z;Ana;3353.059;116097844;Puerto Rico; -2018-11-22T18:29:39Z;Ana;4053.543;114284365;Puerto Rico; -2018-11-22T17:49:27Z;Ana;1420.864;115188927;Puerto Rico; -2018-11-22T17:04:35Z;Armando;8943.099;115826700;Puerto Rico; -2018-11-22T16:47:58Z;Júlio Cesar;3637.704;116043614;Puerto Rico; -2018-11-22T16:00:47Z;Armando;148.7179;115877090;Puerto Rico; -2018-11-22T15:58:49Z;Júlio Cesar;1934.502;116255462;Puerto Rico; -2018-11-22T15:30:46Z;nathalia;8075.531;116070132;Puerto Rico; -2018-11-22T15:30:20Z;Eduardo;5507.775;115528048;Puerto Rico; -2018-11-22T15:06:56Z;Júlio Cesar;6810.059;115624229;Puerto Rico; -2018-11-22T15:04:03Z;Eduardo;3607.859;115762904;Puerto Rico; -2018-11-22T14:47:20Z;Armando;2843.894;115346321;Puerto Rico; -2018-11-22T14:47:13Z;Sandra;4428.418;115727024;Puerto Rico; -2018-11-22T14:45:47Z;Júlio Cesar;2215.862;115280522;Puerto Rico; -2018-11-22T14:37:00Z;Eduardo;15395.46;115002742;Puerto Rico; -2018-11-22T14:36:08Z;Ana;1099.111;115555319;Puerto Rico; -2018-11-22T14:19:09Z;Sandra;7768.524;115336621;Puerto Rico; -2018-11-22T14:08:34Z;Armando;8145.229;114877988;Puerto Rico; -2018-11-22T13:57:32Z;Eduardo;12880.22;115372374;Puerto Rico; -2018-11-22T13:56:16Z;Eduardo;451.0387;114901181;Puerto Rico; -2018-11-22T13:52:34Z;Júlio;9203.265;116397807;Puerto Rico; -2018-11-22T13:47:49Z;Armando;638.9197;115722747;Puerto Rico; -2018-11-22T13:01:24Z;nathalia;1283.259;114375159;Puerto Rico; -2018-11-22T12:56:11Z;nathalia;4998.596;116175629;Puerto Rico; -2018-11-22T12:43:39Z;Eduardo;2516.794;114670857;Puerto Rico; -2018-11-22T12:43:28Z;Júlio Cesar;5431.011;116140568;Puerto Rico; -2018-11-22T12:40:10Z;Ana;1382.356;115469242;Puerto Rico; -2018-11-22T12:32:27Z;Nathália;2431.859;115060623;Puerto Rico; -2018-11-22T12:18:59Z;Júlio;11887.96;116286707;Puerto Rico; -2018-11-22T11:20:03Z;Ana;8429.309;115554893;Puerto Rico; -2018-11-22T10:45:07Z;Júlio Cesar;4138.778;115854367;Puerto Rico; -2018-11-22T10:21:21Z;Ana;10720.75;115208016;Puerto Rico; -2018-11-22T10:19:09Z;Nathália;3896.921;115472691;Puerto Rico; -2018-11-22T10:10:10Z;Júlio;798.6204;114363395;Puerto Rico; -2018-11-22T09:49:25Z;Armando;6335.553;116324383;Puerto Rico; -2018-11-22T09:44:13Z;Júlio Cesar;2902.976;114970686;Puerto Rico; -2018-11-22T09:37:09Z;Ana;3221.192;115492433;Puerto Rico; -2018-11-22T09:14:12Z;Júlio;8377.31;116213204;Puerto Rico; -2018-11-22T08:45:47Z;Eduardo;5585.303;116126694;Puerto Rico; -2018-11-22T08:11:25Z;Eduardo;1060.265;114984131;Puerto Rico; -2018-11-22T07:53:11Z;Eduardo;1505.523;115900839;Puerto Rico; -2018-11-22T07:30:40Z;Sandra;144.0474;115606727;Puerto Rico; -2018-11-22T07:25:46Z;Nathália;5608.773;114956123;Puerto Rico; -2018-11-22T07:20:49Z;Júlio;4553.978;114411205;Puerto Rico; -2018-11-22T06:39:31Z;Eduardo;237.9168;114286129;Puerto Rico; -2018-11-22T06:06:27Z;Eduardo;3003.444;116380405;Puerto Rico; -2018-11-22T05:55:10Z;Júlio;8705.308;116069250;Puerto Rico; -2018-11-22T05:40:59Z;Júlio;4429.101;115838470;Puerto Rico; -2018-11-22T05:13:38Z;Eduardo;4741.767;115828787;Puerto Rico; -2018-11-22T04:59:34Z;Júlio;2624.496;114361677;Puerto Rico; -2018-11-22T04:51:41Z;nathalia;6983.143;116120496;Puerto Rico; -2018-11-22T04:28:07Z;Nathália;6192.09;114296747;Puerto Rico; -2018-11-22T03:38:14Z;nathalia;1092.104;115656135;Puerto Rico; -2018-11-22T02:55:26Z;Júlio Cesar;3493.878;114813580;Puerto Rico; -2018-11-22T02:51:34Z;Ana;4342.333;115152844;Puerto Rico; -2018-11-22T02:44:20Z;Sandra;1634.086;114318520;Puerto Rico; -2018-11-22T02:20:28Z;Júlio Cesar;1017.397;116279196;Puerto Rico; -2018-11-22T02:04:46Z;Armando;8479.666;114942509;Puerto Rico; -2018-11-22T01:56:23Z;Armando;1075.604;114484860;Puerto Rico; -2018-11-22T01:50:05Z;nathalia;5529.137;114361754;Puerto Rico; -2018-11-22T01:44:39Z;Armando;1082.998;116078897;Puerto Rico; -2018-11-22T00:51:24Z;Eduardo;536.3887;116130257;Puerto Rico; -2018-11-22T00:21:47Z;nathalia;5359.972;116338401;Puerto Rico; -2018-11-21T23:01:11Z;nathalia;4736.58;115765866;Puerto Rico; -2018-11-21T22:42:38Z;Nathália;324.7897;116106391;Puerto Rico; -2018-11-21T22:35:26Z;nathalia;6072.474;114510919;Puerto Rico; -2018-11-21T22:27:58Z;Júlio Cesar;6207.976;114699661;Puerto Rico; -2018-11-21T22:23:35Z;Júlio Cesar;4342.596;114784581;Puerto Rico; -2018-11-21T21:47:05Z;Júlio;567.6978;114920236;Puerto Rico; -2018-11-21T21:37:10Z;Sandra;6920.554;115390760;Puerto Rico; -2018-11-21T21:25:25Z;Júlio;937.6624;116370390;Puerto Rico; -2018-11-21T21:24:54Z;Sandra;2589.736;114825263;Puerto Rico; -2018-11-21T21:21:15Z;Sandra;7390.534;116198280;Puerto Rico; -2018-11-21T21:02:48Z;Júlio;5875.415;114774744;Puerto Rico; -2018-11-21T20:25:19Z;Nathália;568.3611;114292061;Puerto Rico; -2018-11-21T19:58:12Z;Eduardo;7095.66;115057446;Puerto Rico; -2018-11-21T19:54:38Z;Nathália;806.7436;115100680;Puerto Rico; -2018-11-21T19:52:01Z;Júlio;407.5204;114281462;Puerto Rico; -2018-11-21T19:48:41Z;Ana;3000.582;114997273;Puerto Rico; -2018-11-21T18:29:02Z;Armando;4976.61;115634234;Puerto Rico; -2018-11-21T18:19:10Z;Eduardo;3911.078;114455759;Puerto Rico; -2018-11-21T17:53:28Z;Júlio;5051.798;115392733;Puerto Rico; -2018-11-21T17:44:58Z;Júlio;1100.246;115061937;Puerto Rico; -2018-11-21T17:20:04Z;Eduardo;8707.606;115325186;Puerto Rico; -2018-11-21T17:08:49Z;Armando;1089.629;115306384;Puerto Rico; -2018-11-21T16:59:03Z;Júlio;2109.514;114555309;Puerto Rico; -2018-11-21T16:41:36Z;Júlio Cesar;6970.604;114207873;Puerto Rico; -2018-11-21T16:36:00Z;Armando;7777.918;115816376;Puerto Rico; -2018-11-21T16:16:36Z;Nathália;1777.551;115818821;Puerto Rico; -2018-11-21T16:12:42Z;Nathália;673.7516;114562958;Puerto Rico; -2018-11-21T16:06:57Z;nathalia;14502.51;114517973;Puerto Rico; -2018-11-21T15:15:27Z;Nathália;5311.406;115362344;Puerto Rico; -2018-11-21T15:06:07Z;Armando;9164.625;115306508;Puerto Rico; -2018-11-21T14:59:53Z;Nathália;7684.657;114359565;Puerto Rico; -2018-11-21T14:26:15Z;Eduardo;7209.287;114411566;Puerto Rico; -2018-11-21T14:12:00Z;nathalia;314.0783;116144212;Puerto Rico; -2018-11-21T13:55:51Z;Armando;2587.354;116230376;Puerto Rico; -2018-11-21T13:48:27Z;nathalia;181.4383;115430921;Puerto Rico; -2018-11-21T13:19:35Z;Ana;7522.1;114712254;Puerto Rico; -2018-11-21T13:06:38Z;Sandra;12109.13;116252638;Puerto Rico; -2018-11-21T12:47:41Z;Eduardo;5215.75;115897788;Puerto Rico; -2018-11-21T11:50:09Z;Ana;425.1549;115793596;Puerto Rico; -2018-11-21T11:13:52Z;Eduardo;11888.11;114931112;Puerto Rico; -2018-11-21T10:39:47Z;Júlio;9422.813;115640077;Puerto Rico; -2018-11-21T10:38:32Z;Sandra;101.5824;115701065;Puerto Rico; -2018-11-21T10:26:02Z;Júlio;2049.755;115961433;Puerto Rico; -2018-11-21T10:09:18Z;Eduardo;1983.952;116298714;Puerto Rico; -2018-11-21T10:08:10Z;Armando;5314.323;115152733;Puerto Rico; -2018-11-21T09:59:28Z;Armando;3966.273;115632433;Puerto Rico; -2018-11-21T09:55:53Z;Nathália;7321.638;115011851;Puerto Rico; -2018-11-21T09:34:55Z;Eduardo;8693.38;116302620;Puerto Rico; -2018-11-21T09:08:38Z;Júlio Cesar;7722.192;115287167;Puerto Rico; -2018-11-21T09:08:12Z;nathalia;10008.38;116279549;Puerto Rico; -2018-11-21T08:21:05Z;nathalia;2369.008;115615557;Puerto Rico; -2018-11-21T08:02:39Z;Júlio Cesar;12366.56;114597874;Puerto Rico; -2018-11-21T07:58:49Z;Ana;222.1393;115397367;Puerto Rico; -2018-11-21T07:56:04Z;Sandra;11439.87;114522768;Puerto Rico; -2018-11-21T07:52:39Z;Armando;6458.416;114781875;Puerto Rico; -2018-11-21T07:48:06Z;Sandra;1928.982;114278809;Puerto Rico; -2018-11-21T07:01:33Z;Armando;1181.56;115372865;Puerto Rico; -2018-11-21T06:36:18Z;nathalia;181.5813;114723113;Puerto Rico; -2018-11-21T06:01:04Z;Armando;1993.757;115457391;Puerto Rico; -2018-11-21T05:51:25Z;Júlio Cesar;2198.246;115702401;Puerto Rico; -2018-11-21T05:42:37Z;Júlio Cesar;2746.712;116334570;Puerto Rico; -2018-11-21T05:41:16Z;Eduardo;6815.163;115668035;Puerto Rico; -2018-11-21T05:39:33Z;nathalia;4535.726;114835978;Puerto Rico; -2018-11-21T04:40:03Z;Ana;14315.67;116351786;Puerto Rico; -2018-11-21T04:38:15Z;Júlio;1959.847;114529124;Puerto Rico; -2018-11-21T04:29:24Z;Nathália;7699.03;114806831;Puerto Rico; -2018-11-21T04:29:08Z;Ana;7377.353;115260511;Puerto Rico; -2018-11-21T04:27:22Z;Armando;7348.215;116094504;Puerto Rico; -2018-11-21T04:17:28Z;Nathália;566.5495;115986449;Puerto Rico; -2018-11-21T04:07:16Z;Ana;1577.222;115924852;Puerto Rico; -2018-11-21T04:06:39Z;nathalia;6636.972;115814277;Puerto Rico; -2018-11-21T03:33:32Z;Eduardo;4870.63;114532629;Puerto Rico; -2018-11-21T03:30:22Z;Armando;7543.682;114763602;Puerto Rico; -2018-11-21T03:29:07Z;Ana;3619.216;115432522;Puerto Rico; -2018-11-21T03:27:26Z;Nathália;886.5762;114899821;Puerto Rico; -2018-11-21T03:17:29Z;Eduardo;4729.822;115958159;Puerto Rico; -2018-11-21T03:10:17Z;Eduardo;2739.448;116372863;Puerto Rico; -2018-11-21T03:10:10Z;Sandra;4433.433;115548076;Puerto Rico; -2018-11-21T03:07:38Z;Júlio;5291.149;116269761;Puerto Rico; -2018-11-21T02:37:15Z;Júlio Cesar;5243.358;115415741;Puerto Rico; -2018-11-21T02:02:16Z;Júlio Cesar;10537.59;114508524;Puerto Rico; -2018-11-21T01:58:12Z;Eduardo;5769.808;116241970;Puerto Rico; -2018-11-21T01:51:34Z;Armando;6519.922;114430713;Puerto Rico; -2018-11-21T01:34:56Z;Nathália;5177.811;114940463;Puerto Rico; -2018-11-21T01:17:51Z;Nathália;10195.89;115468688;Puerto Rico; -2018-11-21T00:44:39Z;nathalia;2375.816;114387839;Puerto Rico; -2018-11-21T00:08:47Z;Júlio;2585.673;114785958;Puerto Rico; -2018-11-21T00:02:49Z;nathalia;5969.755;116170152;Puerto Rico; -2018-11-21T00:02:41Z;Sandra;1264.451;114433355;Puerto Rico; -2018-11-20T23:51:31Z;Nathália;592.5738;115298969;Puerto Rico; -2018-11-20T23:43:47Z;Armando;1848.656;114855451;Puerto Rico; -2018-11-20T23:41:46Z;Nathália;2297.196;115938483;Puerto Rico; -2018-11-20T23:23:14Z;Júlio Cesar;516.1112;115576296;Puerto Rico; -2018-11-20T23:09:42Z;nathalia;10185.5;115556900;Puerto Rico; -2018-11-20T23:09:31Z;Júlio;400.962;116371481;Puerto Rico; -2018-11-20T22:25:47Z;Armando;3195.969;116210367;Puerto Rico; -2018-11-20T22:21:10Z;Eduardo;31.23753;114612078;Puerto Rico; -2018-11-20T22:16:26Z;nathalia;767.8141;114879050;Puerto Rico; -2018-11-20T22:04:50Z;Júlio;1223.533;115654723;Puerto Rico; -2018-11-20T21:43:48Z;Eduardo;7136.346;116324811;Puerto Rico; -2018-11-20T21:32:37Z;Sandra;8248.636;115840669;Puerto Rico; -2018-11-20T21:18:46Z;Júlio Cesar;181.0681;115936157;Puerto Rico; -2018-11-20T21:14:29Z;Júlio;507.5042;115837065;Puerto Rico; -2018-11-20T21:06:33Z;Armando;341.2936;116332481;Puerto Rico; -2018-11-20T19:51:02Z;Sandra;3292.561;115213433;Puerto Rico; -2018-11-20T19:46:16Z;Júlio;566.7272;115625144;Puerto Rico; -2018-11-20T19:31:50Z;Ana;1665.204;116147334;Puerto Rico; -2018-11-20T19:30:30Z;Júlio;2567.793;115804869;Puerto Rico; -2018-11-20T18:25:12Z;Júlio;4560.28;116341323;Puerto Rico; -2018-11-20T18:06:40Z;Júlio;1489.619;114953147;Puerto Rico; -2018-11-20T17:17:36Z;Armando;1831.32;114979400;Puerto Rico; -2018-11-20T17:05:03Z;Armando;2767.716;115958831;Puerto Rico; -2018-11-20T17:01:22Z;Sandra;5254.341;115840225;Puerto Rico; -2018-11-20T16:27:59Z;Sandra;10694.69;116094535;Puerto Rico; -2018-11-20T16:15:00Z;nathalia;5020.207;115074848;Puerto Rico; -2018-11-20T16:01:43Z;Júlio;3587.034;116088749;Puerto Rico; -2018-11-20T15:49:48Z;nathalia;3214.413;114920749;Puerto Rico; -2018-11-20T15:22:47Z;Ana;5686.406;114926442;Puerto Rico; -2018-11-20T15:08:53Z;Ana;5184.223;115117229;Puerto Rico; -2018-11-20T15:03:47Z;Armando;3886.342;115311209;Puerto Rico; -2018-11-20T14:49:57Z;Eduardo;4576.582;116099123;Puerto Rico; -2018-11-20T14:00:56Z;Sandra;2341.778;116368424;Puerto Rico; -2018-11-20T13:19:07Z;nathalia;7012.049;116260191;Puerto Rico; -2018-11-20T13:03:28Z;Eduardo;173.6879;114676440;Puerto Rico; -2018-11-20T12:58:49Z;Eduardo;1412.138;116299141;Puerto Rico; -2018-11-20T12:34:02Z;Júlio;1605.324;114872608;Puerto Rico; -2018-11-20T12:31:45Z;Eduardo;3850.588;115076148;Puerto Rico; -2018-11-20T12:25:20Z;Sandra;1844.965;115161311;Puerto Rico; -2018-11-20T12:21:18Z;Júlio;455.7142;114942314;Puerto Rico; -2018-11-20T12:21:03Z;Júlio Cesar;929.831;114513745;Puerto Rico; -2018-11-20T12:20:51Z;Ana;3120.022;115826823;Puerto Rico; -2018-11-20T12:18:31Z;Júlio;7285.112;114213721;Puerto Rico; -2018-11-20T12:10:09Z;nathalia;2416.009;114635458;Puerto Rico; -2018-11-20T11:47:28Z;Sandra;5038.948;115424459;Puerto Rico; -2018-11-20T11:41:11Z;Armando;9765.493;114474936;Puerto Rico; -2018-11-20T11:07:47Z;Ana;7907.514;114786427;Puerto Rico; -2018-11-20T11:02:39Z;Eduardo;136.5851;115334723;Puerto Rico; -2018-11-20T10:36:20Z;Armando;345.5893;115420786;Puerto Rico; -2018-11-20T10:16:17Z;Sandra;2411.125;114692152;Puerto Rico; -2018-11-20T10:15:40Z;Júlio Cesar;4151.502;114466302;Puerto Rico; -2018-11-20T09:59:05Z;Sandra;708.8842;114597414;Puerto Rico; -2018-11-20T09:57:43Z;Júlio;6691.787;115243611;Puerto Rico; -2018-11-20T09:53:08Z;nathalia;5367.197;115825083;Puerto Rico; -2018-11-20T09:21:12Z;Júlio;3375.03;115128718;Puerto Rico; -2018-11-20T08:52:12Z;Eduardo;8348.812;114499740;Puerto Rico; -2018-11-20T08:46:32Z;Sandra;2942.944;115091859;Puerto Rico; -2018-11-20T08:35:33Z;Eduardo;7170.634;114274166;Puerto Rico; -2018-11-20T08:17:45Z;Ana;8649.189;115984422;Puerto Rico; -2018-11-20T08:04:57Z;nathalia;5574.759;115824055;Puerto Rico; -2018-11-20T08:04:19Z;Eduardo;2355.065;116254516;Puerto Rico; -2018-11-20T07:55:48Z;Armando;1604.502;115703090;Puerto Rico; -2018-11-20T07:36:28Z;Sandra;1543.109;115057976;Puerto Rico; -2018-11-20T07:28:49Z;Sandra;4101.948;115297382;Puerto Rico; -2018-11-20T07:27:18Z;Armando;1505.411;114212867;Puerto Rico; -2018-11-20T07:03:11Z;Júlio;696.3097;115090317;Puerto Rico; -2018-11-20T06:41:11Z;Armando;1878.691;116332695;Puerto Rico; -2018-11-20T06:28:38Z;Júlio;11407.29;114244985;Puerto Rico; -2018-11-20T06:24:47Z;Nathália;1192.947;115423232;Puerto Rico; -2018-11-20T06:13:28Z;Armando;1929.689;114486175;Puerto Rico; -2018-11-20T05:24:23Z;Ana;3928.719;115267296;Puerto Rico; -2018-11-20T05:19:42Z;Armando;517.5112;114835687;Puerto Rico; -2018-11-20T04:51:58Z;nathalia;4847.685;114350772;Puerto Rico; -2018-11-20T04:38:24Z;Júlio;668.5002;114803257;Puerto Rico; -2018-11-20T04:29:44Z;Sandra;8131.251;114219071;Puerto Rico; -2018-11-20T04:02:16Z;nathalia;3278.976;115551930;Puerto Rico; -2018-11-20T04:00:58Z;nathalia;5124.61;116123522;Puerto Rico; -2018-11-20T03:38:49Z;Armando;3792.615;114272563;Puerto Rico; -2018-11-20T03:36:25Z;Júlio;5651.881;115390033;Puerto Rico; -2018-11-20T03:11:32Z;Júlio;10698.42;114951755;Puerto Rico; -2018-11-20T03:10:48Z;Sandra;4406.448;114746130;Puerto Rico; -2018-11-20T02:57:05Z;Sandra;1578.293;114941391;Puerto Rico; -2018-11-20T02:49:28Z;Nathália;3019.696;116014235;Puerto Rico; -2018-11-20T02:48:55Z;Armando;8921.798;116082065;Puerto Rico; -2018-11-20T02:48:54Z;Júlio Cesar;5045.272;116385311;Puerto Rico; -2018-11-20T02:37:07Z;Ana;4927.875;114431561;Puerto Rico; -2018-11-20T02:34:51Z;Ana;604.9051;116193537;Puerto Rico; -2018-11-20T02:30:22Z;Nathália;1927.125;115552892;Puerto Rico; -2018-11-20T02:04:29Z;Armando;3150.246;115047820;Puerto Rico; -2018-11-20T02:02:22Z;Júlio Cesar;7200.423;115306660;Puerto Rico; -2018-11-20T01:47:43Z;Júlio Cesar;2703.416;114659245;Puerto Rico; -2018-11-20T01:24:54Z;Eduardo;8267.984;115092225;Puerto Rico; -2018-11-20T00:41:11Z;Armando;1156.153;115970129;Puerto Rico; -2018-11-20T00:31:14Z;Júlio Cesar;1807.518;114521058;Puerto Rico; -2018-11-19T23:57:42Z;nathalia;5164.288;116240351;Puerto Rico; -2018-11-19T23:40:51Z;Ana;5495.525;114865231;Puerto Rico; -2018-11-19T23:30:49Z;Sandra;3946.427;115823583;Puerto Rico; -2018-11-19T23:30:21Z;Nathália;5229.108;116185916;Puerto Rico; -2018-11-19T23:12:03Z;Júlio;2421.768;115752422;Puerto Rico; -2018-11-19T23:05:20Z;Júlio;2199.288;115807635;Puerto Rico; -2018-11-19T23:04:04Z;Armando;3144.763;115722104;Puerto Rico; -2018-11-19T22:58:32Z;Eduardo;8834.171;115132841;Puerto Rico; -2018-11-19T22:41:06Z;Júlio;7793.441;116248738;Puerto Rico; -2018-11-19T22:40:16Z;Armando;4616.118;116045411;Puerto Rico; -2018-11-19T22:24:11Z;Júlio;6251.849;114580311;Puerto Rico; -2018-11-19T22:23:06Z;Ana;248.2352;114345425;Puerto Rico; -2018-11-19T20:53:58Z;Eduardo;4408.637;115261787;Puerto Rico; -2018-11-19T20:20:25Z;Nathália;1489.693;115662839;Puerto Rico; -2018-11-19T20:01:38Z;Júlio Cesar;9662.561;115981841;Puerto Rico; -2018-11-19T19:43:58Z;Nathália;4361.077;114391161;Puerto Rico; -2018-11-19T19:22:31Z;Júlio Cesar;4271.762;116133340;Puerto Rico; -2018-11-19T18:54:45Z;Júlio Cesar;11082.7;116099468;Puerto Rico; -2018-11-19T18:46:27Z;nathalia;4273.652;115157302;Puerto Rico; -2018-11-19T18:39:45Z;Nathália;1783.911;114222693;Puerto Rico; -2018-11-19T18:29:06Z;Sandra;865.9653;115157909;Puerto Rico; -2018-11-19T18:27:36Z;Sandra;138.714;114240028;Puerto Rico; -2018-11-19T18:25:51Z;nathalia;4595.102;114596942;Puerto Rico; -2018-11-19T18:23:53Z;nathalia;4502.519;115565068;Puerto Rico; -2018-11-19T18:03:59Z;Nathália;1991.605;116124055;Puerto Rico; -2018-11-19T17:05:45Z;Nathália;59.44706;116020610;Puerto Rico; -2018-11-19T16:36:52Z;Júlio;2820.391;114438985;Puerto Rico; -2018-11-19T16:31:31Z;Júlio Cesar;2022.553;116012481;Puerto Rico; -2018-11-19T16:11:29Z;Armando;5625.119;114699641;Puerto Rico; -2018-11-19T16:08:01Z;Sandra;4302.729;114400553;Puerto Rico; -2018-11-19T16:04:19Z;nathalia;417.9058;115976206;Puerto Rico; -2018-11-19T15:51:44Z;Ana;1654.517;114308888;Puerto Rico; -2018-11-19T15:48:33Z;nathalia;73.48391;114951640;Puerto Rico; -2018-11-19T15:40:59Z;Júlio Cesar;644.8509;115765815;Puerto Rico; -2018-11-19T14:43:53Z;Sandra;3027.774;114303085;Puerto Rico; -2018-11-19T14:14:49Z;Ana;587.6314;115046660;Puerto Rico; -2018-11-19T14:11:39Z;Júlio;8108.149;115996165;Puerto Rico; -2018-11-19T13:55:53Z;Armando;426.356;116191868;Puerto Rico; -2018-11-19T13:05:35Z;Júlio;4485.311;114941454;Puerto Rico; -2018-11-19T12:53:03Z;nathalia;3159.131;114373056;Puerto Rico; -2018-11-19T12:50:34Z;Júlio Cesar;2771.628;115395722;Puerto Rico; -2018-11-19T12:44:28Z;Eduardo;6865.079;114204388;Puerto Rico; -2018-11-19T12:41:08Z;Júlio Cesar;6841.774;115032352;Puerto Rico; -2018-11-19T11:59:34Z;Ana;2249.994;114971127;Puerto Rico; -2018-11-19T11:48:54Z;Eduardo;3468.983;115033938;Puerto Rico; -2018-11-19T11:34:57Z;Sandra;2610.639;116159212;Puerto Rico; -2018-11-19T11:34:55Z;Júlio;4944.302;115774596;Puerto Rico; -2018-11-19T11:27:27Z;Sandra;2350.302;115113069;Puerto Rico; -2018-11-19T11:10:32Z;Nathália;1846.15;114665322;Puerto Rico; -2018-11-19T10:39:36Z;Armando;449.9051;114529447;Puerto Rico; -2018-11-19T10:22:16Z;Sandra;1167.617;116225573;Puerto Rico; -2018-11-19T09:53:54Z;Nathália;1395.64;115026932;Puerto Rico; -2018-11-19T09:48:51Z;Júlio Cesar;1151.381;115778607;Puerto Rico; -2018-11-19T09:44:12Z;Sandra;566.5105;114932939;Puerto Rico; -2018-11-19T09:30:23Z;Júlio;1973.738;114653926;Puerto Rico; -2018-11-19T09:10:15Z;Nathália;6168.102;114602431;Puerto Rico; -2018-11-19T09:04:44Z;Ana;607.8631;114577496;Puerto Rico; -2018-11-19T09:03:47Z;Nathália;11427.93;114665558;Puerto Rico; -2018-11-19T08:49:15Z;Júlio;839.3334;115640091;Puerto Rico; -2018-11-19T08:39:55Z;Armando;623.9475;116386604;Puerto Rico; -2018-11-19T08:23:47Z;Sandra;1960.799;114918381;Puerto Rico; -2018-11-19T07:36:28Z;Sandra;7327.973;115417130;Puerto Rico; -2018-11-19T07:35:45Z;nathalia;376.6307;115405627;Puerto Rico; -2018-11-19T07:29:08Z;nathalia;3884.89;115841860;Puerto Rico; -2018-11-19T07:23:04Z;Ana;1226.619;116123059;Puerto Rico; -2018-11-19T06:59:38Z;Sandra;5968.673;116000801;Puerto Rico; -2018-11-19T06:35:15Z;nathalia;754.7147;114654319;Puerto Rico; -2018-11-19T06:22:18Z;Nathália;15287.07;115206088;Puerto Rico; -2018-11-19T05:48:56Z;Nathália;1061.14;116032650;Puerto Rico; -2018-11-19T05:24:47Z;Eduardo;1660.399;114831206;Puerto Rico; -2018-11-19T04:52:29Z;nathalia;10933.15;115626668;Puerto Rico; -2018-11-19T04:42:54Z;nathalia;4530.104;114434521;Puerto Rico; -2018-11-19T04:36:16Z;Júlio;6973.164;114637875;Puerto Rico; -2018-11-19T04:32:57Z;Ana;2758.072;115916683;Puerto Rico; -2018-11-19T03:57:24Z;Ana;3923.746;115009157;Puerto Rico; -2018-11-19T03:34:44Z;Nathália;190.1799;114389931;Puerto Rico; -2018-11-19T03:05:10Z;Nathália;8836.396;114557309;Puerto Rico; -2018-11-19T02:43:21Z;Eduardo;4486.937;115859623;Puerto Rico; -2018-11-19T02:34:23Z;Sandra;5755.314;115739811;Puerto Rico; -2018-11-19T02:23:38Z;Eduardo;5908.107;116326457;Puerto Rico; -2018-11-19T02:14:55Z;nathalia;3143.287;115034571;Puerto Rico; -2018-11-19T01:22:19Z;Eduardo;2334.697;116336889;Puerto Rico; -2018-11-19T01:19:21Z;Nathália;1548.959;115486352;Puerto Rico; -2018-11-19T01:16:34Z;Armando;292.1759;115774255;Puerto Rico; -2018-11-19T01:14:07Z;Ana;4520.429;114532719;Puerto Rico; -2018-11-19T00:35:40Z;Armando;2039.497;116258989;Puerto Rico; -2018-11-19T00:28:03Z;Sandra;5591.923;116123871;Puerto Rico; -2018-11-19T00:21:23Z;Sandra;938.3505;116083883;Puerto Rico; -2018-11-19T00:17:13Z;Júlio;3987.795;114226344;Puerto Rico; -2018-11-19T00:05:06Z;Ana;6722.933;116366828;Puerto Rico; -2018-11-19T00:00:06Z;Eduardo;5002.513;116160352;Puerto Rico; -2018-11-18T23:19:58Z;nathalia;1177.37;115345918;Puerto Rico; -2018-11-18T23:05:56Z;Sandra;1583.616;115295964;Puerto Rico; -2018-11-18T22:52:16Z;Júlio Cesar;2852.939;115427318;Puerto Rico; -2018-11-18T22:50:07Z;nathalia;933.861;116170651;Puerto Rico; -2018-11-18T22:19:25Z;Sandra;11790.47;114746686;Puerto Rico; -2018-11-18T21:50:38Z;Ana;2518.763;115155830;Puerto Rico; -2018-11-18T21:24:42Z;Eduardo;750.9283;115599566;Puerto Rico; -2018-11-18T21:21:54Z;Júlio Cesar;430.7807;115083106;Puerto Rico; -2018-11-18T21:18:15Z;nathalia;8955.834;116097203;Puerto Rico; -2018-11-18T20:42:55Z;nathalia;1910.383;114799668;Puerto Rico; -2018-11-18T20:29:46Z;Ana;3602.141;114477385;Puerto Rico; -2018-11-18T19:39:39Z;Armando;6228.804;114718118;Puerto Rico; -2018-11-18T19:33:38Z;Ana;2197.153;116334535;Puerto Rico; -2018-11-18T19:22:42Z;Armando;878.9378;114547698;Puerto Rico; -2018-11-18T19:18:53Z;nathalia;9126.382;116361797;Puerto Rico; -2018-11-18T18:35:42Z;Ana;4327.235;115124977;Puerto Rico; -2018-11-18T18:27:53Z;Nathália;6482.169;114226119;Puerto Rico; -2018-11-18T18:24:22Z;Nathália;5049.951;115326059;Puerto Rico; -2018-11-18T18:21:35Z;Nathália;3949.514;114438950;Puerto Rico; -2018-11-18T18:04:43Z;Eduardo;4771.462;115516627;Puerto Rico; -2018-11-18T16:48:19Z;Júlio;2721.708;115692028;Puerto Rico; -2018-11-18T16:37:14Z;Eduardo;82.77831;114474931;Puerto Rico; -2018-11-18T16:31:35Z;nathalia;6264.637;116034921;Puerto Rico; -2018-11-18T16:14:15Z;Ana;2440.447;115567609;Puerto Rico; -2018-11-18T16:05:17Z;Sandra;152.6201;114389754;Puerto Rico; -2018-11-18T16:01:27Z;Ana;263.2001;115221914;Puerto Rico; -2018-11-18T15:56:00Z;Júlio;4965.905;114317198;Puerto Rico; -2018-11-18T15:47:01Z;Nathália;1522.712;115343103;Puerto Rico; -2018-11-18T15:44:47Z;Sandra;2046.76;116092487;Puerto Rico; -2018-11-18T15:42:23Z;Sandra;3268.696;114958731;Puerto Rico; -2018-11-18T15:33:35Z;Armando;668.7407;114849749;Puerto Rico; -2018-11-18T15:22:08Z;Armando;12502.21;115863645;Puerto Rico; -2018-11-18T15:02:05Z;Armando;11050.95;115480675;Puerto Rico; -2018-11-18T14:54:45Z;Sandra;6391.743;114631600;Puerto Rico; -2018-11-18T14:35:39Z;Armando;4617.215;116186320;Puerto Rico; -2018-11-18T14:19:36Z;Júlio;759.4187;114726081;Puerto Rico; -2018-11-18T13:18:00Z;Armando;2101.502;115372564;Puerto Rico; -2018-11-18T12:59:28Z;Armando;1648.936;115006968;Puerto Rico; -2018-11-18T12:59:19Z;Nathália;3601.308;114724901;Puerto Rico; -2018-11-18T12:50:07Z;Eduardo;441.3173;115389406;Puerto Rico; -2018-11-18T12:48:09Z;nathalia;3159.88;116088935;Puerto Rico; -2018-11-18T11:17:04Z;Júlio Cesar;3052.821;114368543;Puerto Rico; -2018-11-18T10:50:33Z;Armando;2759.306;114737897;Puerto Rico; -2018-11-18T10:32:36Z;Armando;4776.6;114475305;Puerto Rico; -2018-11-18T10:30:39Z;Armando;2784.65;114863061;Puerto Rico; -2018-11-18T10:13:57Z;Nathália;9393.682;116223121;Puerto Rico; -2018-11-18T09:20:26Z;Eduardo;165.1923;114674361;Puerto Rico; -2018-11-18T09:16:44Z;Nathália;3268.259;114359785;Puerto Rico; -2018-11-18T09:06:51Z;Júlio;5084.735;115152154;Puerto Rico; -2018-11-18T08:32:28Z;Armando;2182.23;114504372;Puerto Rico; -2018-11-18T08:30:59Z;Júlio Cesar;5608.164;115963110;Puerto Rico; -2018-11-18T08:29:07Z;Júlio;1973.44;114976845;Puerto Rico; -2018-11-18T08:09:34Z;Eduardo;1082.423;115998413;Puerto Rico; -2018-11-18T07:38:42Z;Júlio Cesar;51.05836;116056105;Puerto Rico; -2018-11-18T07:32:36Z;Nathália;5100.815;114539544;Puerto Rico; -2018-11-18T07:08:33Z;Sandra;4491.629;114638692;Puerto Rico; -2018-11-18T06:29:06Z;Júlio;2355.472;114432895;Puerto Rico; -2018-11-18T06:13:25Z;Nathália;780.4093;114650817;Puerto Rico; -2018-11-18T06:02:24Z;nathalia;2252.568;114971919;Puerto Rico; -2018-11-18T05:59:03Z;Nathália;434.4204;115717620;Puerto Rico; -2018-11-18T05:57:37Z;Júlio;3545.433;116241420;Puerto Rico; -2018-11-18T05:45:41Z;Sandra;4164.02;115839499;Puerto Rico; -2018-11-18T05:45:34Z;Sandra;6316.314;114824262;Puerto Rico; -2018-11-18T05:27:42Z;nathalia;1097.897;115455043;Puerto Rico; -2018-11-18T05:08:15Z;Nathália;5610.608;115991143;Puerto Rico; -2018-11-18T04:47:44Z;Ana;1320.561;114248239;Puerto Rico; -2018-11-18T04:09:56Z;Eduardo;213.7296;116138135;Puerto Rico; -2018-11-18T03:54:00Z;Eduardo;937.3776;115968691;Puerto Rico; -2018-11-18T03:41:15Z;Eduardo;2038.209;115320550;Puerto Rico; -2018-11-18T03:12:54Z;Eduardo;6353.456;114904755;Puerto Rico; -2018-11-18T02:37:32Z;Eduardo;3447.107;115759431;Puerto Rico; -2018-11-18T02:31:19Z;Sandra;2205.663;114453895;Puerto Rico; -2018-11-18T02:25:27Z;Nathália;999.2209;115220875;Puerto Rico; -2018-11-18T02:20:07Z;Armando;7177.382;114692821;Puerto Rico; -2018-11-18T02:19:35Z;nathalia;690.6854;115857306;Puerto Rico; -2018-11-18T02:06:24Z;nathalia;1370.356;116393218;Puerto Rico; -2018-11-18T01:45:21Z;Ana;3745.667;115894472;Puerto Rico; -2018-11-18T01:39:53Z;Ana;2182.043;115533284;Puerto Rico; -2018-11-18T01:21:44Z;Sandra;325.9014;116060911;Puerto Rico; -2018-11-18T01:06:10Z;Eduardo;3020.773;115074488;Puerto Rico; -2018-11-18T00:51:24Z;Sandra;3553.043;114903933;Puerto Rico; -2018-11-18T00:14:23Z;Júlio Cesar;10808.18;116348466;Puerto Rico; -2018-11-18T00:04:59Z;nathalia;2927.523;116085466;Puerto Rico; -2018-11-18T00:02:26Z;Ana;172.2231;116263278;Puerto Rico; -2018-11-17T23:57:53Z;Júlio;5482.761;115845517;Puerto Rico; -2018-11-17T23:39:06Z;Ana;104.5279;114416099;Puerto Rico; -2018-11-17T23:32:56Z;Ana;2391.948;115162370;Puerto Rico; -2018-11-17T23:32:33Z;nathalia;1405.028;114791689;Puerto Rico; -2018-11-17T22:33:14Z;Sandra;837.6771;114955063;Puerto Rico; -2018-11-17T21:53:14Z;nathalia;1288.752;116041880;Puerto Rico; -2018-11-17T21:36:38Z;Nathália;41.76662;115850827;Puerto Rico; -2018-11-17T21:22:30Z;Ana;6226.792;115717187;Puerto Rico; -2018-11-17T21:18:31Z;Ana;10826.46;114857893;Puerto Rico; -2018-11-17T19:55:09Z;Ana;2697.942;114850849;Puerto Rico; -2018-11-17T19:50:48Z;Armando;9358.784;116119165;Puerto Rico; -2018-11-17T19:48:07Z;Júlio Cesar;220.8572;116331055;Puerto Rico; -2018-11-17T19:43:37Z;Júlio Cesar;5834.225;115254392;Puerto Rico; -2018-11-17T19:41:25Z;nathalia;2923.397;114303979;Puerto Rico; -2018-11-17T19:38:31Z;Ana;9210.165;115212613;Puerto Rico; -2018-11-17T19:02:20Z;Eduardo;1478.447;114287537;Puerto Rico; -2018-11-17T18:18:52Z;Armando;2208.916;116067465;Puerto Rico; -2018-11-17T18:15:01Z;Júlio Cesar;10344.49;115115036;Puerto Rico; -2018-11-17T18:09:56Z;Armando;6480.196;115116798;Puerto Rico; -2018-11-17T17:59:26Z;Ana;1677.161;115286292;Puerto Rico; -2018-11-17T17:51:04Z;Nathália;3326.672;115783444;Puerto Rico; -2018-11-17T17:49:58Z;Sandra;10631.34;115852438;Puerto Rico; -2018-11-17T17:46:55Z;Armando;5866.067;114674204;Puerto Rico; -2018-11-17T17:43:29Z;Eduardo;399.0449;115281813;Puerto Rico; -2018-11-17T17:34:35Z;Eduardo;5348.468;114463776;Puerto Rico; -2018-11-17T16:56:54Z;Armando;394.9313;114857684;Puerto Rico; -2018-11-17T16:40:59Z;Ana;6535.821;114735775;Puerto Rico; -2018-11-17T16:28:08Z;Eduardo;230.5457;114961515;Puerto Rico; -2018-11-17T16:02:04Z;Nathália;6544.281;114945173;Puerto Rico; -2018-11-17T15:55:57Z;Júlio Cesar;9301.601;115529578;Puerto Rico; -2018-11-17T15:52:41Z;Armando;3309.283;116361145;Puerto Rico; -2018-11-17T15:39:02Z;Júlio Cesar;1071.479;116056690;Puerto Rico; -2018-11-17T15:26:35Z;nathalia;6534.788;114796097;Puerto Rico; -2018-11-17T15:24:41Z;nathalia;1466.774;114419550;Puerto Rico; -2018-11-17T15:20:44Z;Júlio Cesar;3284.285;114875889;Puerto Rico; -2018-11-17T15:06:34Z;Júlio;279.396;115344463;Puerto Rico; -2018-11-17T15:02:54Z;Sandra;2708.098;115218288;Puerto Rico; -2018-11-17T14:58:00Z;Sandra;1701.527;116097097;Puerto Rico; -2018-11-17T14:43:24Z;nathalia;922.7401;115424377;Puerto Rico; -2018-11-17T14:32:57Z;Júlio Cesar;3175.333;114690865;Puerto Rico; -2018-11-17T14:27:58Z;Nathália;3534.703;115041677;Puerto Rico; -2018-11-17T14:24:14Z;Ana;3875.435;116120309;Puerto Rico; -2018-11-17T14:12:01Z;nathalia;1792.5;114284633;Puerto Rico; -2018-11-17T13:52:30Z;Eduardo;654.388;114290458;Puerto Rico; -2018-11-17T13:26:41Z;Armando;2881.312;115918625;Puerto Rico; -2018-11-17T12:46:51Z;Júlio;4746.126;115449956;Puerto Rico; -2018-11-17T12:43:24Z;Eduardo;2497.905;115937911;Puerto Rico; -2018-11-17T12:01:27Z;nathalia;944.0225;115666533;Puerto Rico; -2018-11-17T11:39:17Z;Eduardo;4355.247;115935848;Puerto Rico; -2018-11-17T11:38:43Z;nathalia;6193.383;115600040;Puerto Rico; -2018-11-17T11:10:48Z;Armando;4901.201;116109412;Puerto Rico; -2018-11-17T11:09:12Z;Armando;545.4526;115463411;Puerto Rico; -2018-11-17T10:54:32Z;Sandra;1013.175;115310953;Puerto Rico; -2018-11-17T10:20:27Z;Júlio Cesar;1484.24;114964200;Puerto Rico; -2018-11-17T10:17:31Z;Sandra;3841.974;116029734;Puerto Rico; -2018-11-17T09:26:11Z;Eduardo;8427.931;116190959;Puerto Rico; -2018-11-17T09:19:24Z;nathalia;1447.415;115526224;Puerto Rico; -2018-11-17T09:15:07Z;nathalia;1839.288;115478309;Puerto Rico; -2018-11-17T08:49:03Z;Armando;2698;114933425;Puerto Rico; -2018-11-17T08:32:00Z;nathalia;843.6544;115865738;Puerto Rico; -2018-11-17T08:29:56Z;Armando;6465.604;115019326;Puerto Rico; -2018-11-17T08:26:24Z;Ana;2179.135;116152482;Puerto Rico; -2018-11-17T08:06:29Z;Júlio Cesar;2036.458;114527878;Puerto Rico; -2018-11-17T07:46:12Z;nathalia;6610.828;114911212;Puerto Rico; -2018-11-17T07:40:34Z;Nathália;1081.935;114825795;Puerto Rico; -2018-11-17T07:10:28Z;Eduardo;2997.349;115142881;Puerto Rico; -2018-11-17T07:04:09Z;Sandra;7823.706;114312228;Puerto Rico; -2018-11-17T06:52:26Z;Nathália;299.8916;115118708;Puerto Rico; -2018-11-17T06:20:40Z;Júlio;3275.584;114783531;Puerto Rico; -2018-11-17T05:59:09Z;Sandra;2082.709;114501037;Puerto Rico; -2018-11-17T05:46:50Z;Eduardo;688.5487;115566997;Puerto Rico; -2018-11-17T05:34:20Z;nathalia;1056.233;114988502;Puerto Rico; -2018-11-17T05:27:19Z;Sandra;118.6767;114540736;Puerto Rico; -2018-11-17T05:09:12Z;Sandra;7814.23;115831421;Puerto Rico; -2018-11-17T05:03:21Z;Ana;10075.96;115107138;Puerto Rico; -2018-11-17T04:33:39Z;Eduardo;4953.525;114865013;Puerto Rico; -2018-11-17T04:10:40Z;Nathália;3505.862;114249465;Puerto Rico; -2018-11-17T03:58:26Z;nathalia;5379.346;115653148;Puerto Rico; -2018-11-17T03:28:13Z;Eduardo;401.262;115963407;Puerto Rico; -2018-11-17T03:27:34Z;Nathália;8646.146;114898436;Puerto Rico; -2018-11-17T03:18:47Z;Eduardo;1440.165;114243491;Puerto Rico; -2018-11-17T02:59:09Z;Júlio;1574.934;114778929;Puerto Rico; -2018-11-17T02:51:37Z;Nathália;8156.729;114812272;Puerto Rico; -2018-11-17T02:48:40Z;Ana;4298.446;115089041;Puerto Rico; -2018-11-17T02:41:40Z;Júlio Cesar;1061.691;114735584;Puerto Rico; -2018-11-17T02:38:30Z;Ana;496.9552;115827987;Puerto Rico; -2018-11-17T02:33:21Z;Nathália;9676.305;116007179;Puerto Rico; -2018-11-17T02:25:42Z;nathalia;6328.631;114469524;Puerto Rico; -2018-11-17T02:11:27Z;Nathália;96.05259;115577078;Puerto Rico; -2018-11-17T01:57:45Z;Armando;7679.234;116355813;Puerto Rico; -2018-11-17T01:54:05Z;Júlio;69.33424;116181316;Puerto Rico; -2018-11-17T01:20:05Z;Armando;1049.814;115838288;Puerto Rico; -2018-11-17T00:40:49Z;nathalia;4453.018;114585534;Puerto Rico; -2018-11-17T00:35:13Z;Júlio;3114.888;114410421;Puerto Rico; -2018-11-17T00:28:07Z;Júlio;5090.847;115576348;Puerto Rico; -2018-11-16T23:44:12Z;Sandra;186.9474;114355420;Puerto Rico; -2018-11-16T23:30:42Z;Armando;1124.714;114343230;Puerto Rico; -2018-11-16T23:28:44Z;Nathália;2443.701;115024345;Puerto Rico; -2018-11-16T23:01:06Z;Sandra;10216.82;114267194;Puerto Rico; -2018-11-16T22:58:10Z;Sandra;4702.509;114591540;Puerto Rico; -2018-11-16T22:57:04Z;Júlio;2695.32;115974074;Puerto Rico; -2018-11-16T22:35:52Z;Sandra;11128.49;115214494;Puerto Rico; -2018-11-16T22:14:31Z;nathalia;678.0496;114783552;Puerto Rico; -2018-11-16T22:14:21Z;Júlio Cesar;1503.485;116312785;Puerto Rico; -2018-11-16T22:12:32Z;Armando;6247.705;114285268;Puerto Rico; -2018-11-16T21:29:35Z;Eduardo;6314.746;116043226;Puerto Rico; -2018-11-16T21:16:36Z;Armando;6748.043;116024963;Puerto Rico; -2018-11-16T20:54:49Z;Ana;4648.724;115537728;Puerto Rico; -2018-11-16T20:23:56Z;Nathália;1846.512;114911172;Puerto Rico; -2018-11-16T20:20:17Z;Eduardo;72.23943;114691632;Puerto Rico; -2018-11-16T20:19:55Z;Armando;6004.142;115639644;Puerto Rico; -2018-11-16T19:47:26Z;nathalia;1676.252;114535270;Puerto Rico; -2018-11-16T19:40:08Z;nathalia;166.8464;114517652;Puerto Rico; -2018-11-16T19:16:03Z;Armando;1814.743;114414649;Puerto Rico; -2018-11-16T19:11:36Z;Nathália;12328.57;115553735;Puerto Rico; -2018-11-16T19:08:42Z;nathalia;681.3776;116377851;Puerto Rico; -2018-11-16T19:00:59Z;Armando;1962.346;114541417;Puerto Rico; -2018-11-16T18:56:55Z;Armando;4277.321;114215830;Puerto Rico; -2018-11-16T18:08:42Z;Sandra;192.9893;116354097;Puerto Rico; -2018-11-16T18:01:21Z;Ana;652.3723;115395149;Puerto Rico; -2018-11-16T17:58:46Z;Eduardo;1421.36;114404328;Puerto Rico; -2018-11-16T17:58:37Z;Eduardo;5783.407;115835478;Puerto Rico; -2018-11-16T17:57:43Z;Sandra;2552.094;115584294;Puerto Rico; -2018-11-16T17:47:14Z;Sandra;11265.51;115878631;Puerto Rico; -2018-11-16T17:38:00Z;Júlio;296.5037;115928575;Puerto Rico; -2018-11-16T17:37:56Z;Sandra;1843.38;115826737;Puerto Rico; -2018-11-16T17:31:21Z;Sandra;3449.628;115434199;Puerto Rico; -2018-11-16T17:26:36Z;nathalia;1556.729;115076467;Puerto Rico; -2018-11-16T16:45:43Z;nathalia;15323.32;114545792;Puerto Rico; -2018-11-16T16:18:58Z;Júlio;2784.409;116291988;Puerto Rico; -2018-11-16T16:15:10Z;Eduardo;215.4136;115466321;Puerto Rico; -2018-11-16T15:44:28Z;Júlio Cesar;8865.205;114830850;Puerto Rico; -2018-11-16T15:33:19Z;Júlio Cesar;8469.685;114420310;Puerto Rico; -2018-11-16T15:10:43Z;Júlio;158.7146;115538454;Puerto Rico; -2018-11-16T14:56:52Z;Armando;2733.673;115115875;Puerto Rico; -2018-11-16T14:52:01Z;Eduardo;5778.559;114545979;Puerto Rico; -2018-11-16T14:41:36Z;Júlio;8907.153;114558378;Puerto Rico; -2018-11-16T14:32:40Z;Ana;4052.46;115203586;Puerto Rico; -2018-11-16T13:37:50Z;Sandra;467.9411;115274617;Puerto Rico; -2018-11-16T13:30:46Z;Armando;1390.548;114645614;Puerto Rico; -2018-11-16T12:58:26Z;Sandra;7628.774;115020941;Puerto Rico; -2018-11-16T12:58:07Z;Júlio;9502.627;116369746;Puerto Rico; -2018-11-16T12:50:23Z;Nathália;1992.62;115380360;Puerto Rico; -2018-11-16T12:39:03Z;nathalia;1554.567;115531646;Puerto Rico; -2018-11-16T12:31:19Z;Eduardo;1292.317;115002499;Puerto Rico; -2018-11-16T12:21:10Z;Eduardo;6131.26;115738421;Puerto Rico; -2018-11-16T12:08:15Z;Armando;931.6561;114880156;Puerto Rico; -2018-11-16T12:04:32Z;nathalia;1556.193;115478722;Puerto Rico; -2018-11-16T11:44:52Z;Júlio;6094.663;115327842;Puerto Rico; -2018-11-16T11:32:28Z;Júlio;1809.477;116345203;Puerto Rico; -2018-11-16T11:29:19Z;Armando;6891.518;115241587;Puerto Rico; -2018-11-16T11:25:30Z;Armando;1888.365;115774313;Puerto Rico; -2018-11-16T11:23:23Z;Júlio;432.2573;115714916;Puerto Rico; -2018-11-16T11:16:34Z;Nathália;3710.259;115430288;Puerto Rico; -2018-11-16T11:14:37Z;Sandra;5602.816;116328428;Puerto Rico; -2018-11-16T11:08:55Z;Nathália;1813.977;114231559;Puerto Rico; -2018-11-16T11:02:45Z;Júlio Cesar;588.5601;114934170;Puerto Rico; -2018-11-16T10:58:49Z;Armando;5202.994;114459894;Puerto Rico; -2018-11-16T10:39:48Z;Júlio Cesar;2123.501;116051866;Puerto Rico; -2018-11-16T10:36:11Z;Sandra;2844.834;115671014;Puerto Rico; -2018-11-16T09:53:44Z;nathalia;2904.305;114673242;Puerto Rico; -2018-11-16T09:53:05Z;Ana;434.3813;116223785;Puerto Rico; -2018-11-16T09:50:36Z;Júlio;594.0169;114542956;Puerto Rico; -2018-11-16T09:17:51Z;Ana;5805.476;116278715;Puerto Rico; -2018-11-16T09:14:18Z;nathalia;2554.383;114613477;Puerto Rico; -2018-11-16T08:46:03Z;Eduardo;6847.451;114343727;Puerto Rico; -2018-11-16T08:38:47Z;Eduardo;3740.93;116353807;Puerto Rico; -2018-11-16T08:11:42Z;Ana;521.4399;114652508;Puerto Rico; -2018-11-16T07:41:27Z;Nathália;1569.793;114735567;Puerto Rico; -2018-11-16T07:21:36Z;Nathália;7811.334;114237634;Puerto Rico; -2018-11-16T06:49:18Z;nathalia;1795.188;114354312;Puerto Rico; -2018-11-16T06:42:57Z;Júlio;938.465;116070985;Puerto Rico; -2018-11-16T06:03:42Z;Júlio Cesar;2776.521;114807936;Puerto Rico; -2018-11-16T05:46:17Z;Júlio;826.8303;115095009;Puerto Rico; -2018-11-16T05:34:02Z;Ana;4615.653;114724684;Puerto Rico; -2018-11-16T05:21:10Z;Ana;10903.46;115779387;Puerto Rico; -2018-11-16T05:06:46Z;Eduardo;6408.209;114444728;Puerto Rico; -2018-11-16T04:33:56Z;nathalia;3235.656;115320517;Puerto Rico; -2018-11-16T04:15:45Z;Júlio;2018.507;116201214;Puerto Rico; -2018-11-16T04:08:22Z;Eduardo;3262.515;116292298;Puerto Rico; -2018-11-16T03:55:53Z;Júlio;2598.454;114249113;Puerto Rico; -2018-11-16T03:52:14Z;Ana;7346.62;115280034;Puerto Rico; -2018-11-16T03:28:45Z;nathalia;7462.552;115851615;Puerto Rico; -2018-11-16T03:22:37Z;nathalia;13325.81;116374239;Puerto Rico; -2018-11-16T03:14:22Z;Armando;4292.126;114859921;Puerto Rico; -2018-11-16T03:08:59Z;Nathália;10075.02;116383152;Puerto Rico; -2018-11-16T02:45:24Z;Eduardo;4069.367;115238063;Puerto Rico; -2018-11-16T02:29:31Z;Sandra;908.0265;115107959;Puerto Rico; -2018-11-16T01:53:01Z;Armando;4206.466;114670913;Puerto Rico; -2018-11-16T01:49:23Z;Armando;3198.803;114284077;Puerto Rico; -2018-11-16T01:36:09Z;Júlio Cesar;3889.545;114636295;Puerto Rico; -2018-11-16T01:35:43Z;Ana;1723.743;114954136;Puerto Rico; -2018-11-16T01:09:17Z;Eduardo;3838.338;115497911;Puerto Rico; -2018-11-16T01:04:44Z;Nathália;940.0735;115313236;Puerto Rico; -2018-11-16T01:03:00Z;Júlio Cesar;8083.936;115343831;Puerto Rico; -2018-11-16T00:51:09Z;Sandra;12082.77;115003228;Puerto Rico; -2018-11-16T00:26:53Z;Júlio Cesar;1627.198;116133272;Puerto Rico; -2018-11-16T00:24:05Z;nathalia;7043.806;116277896;Puerto Rico; -2018-11-16T00:21:32Z;Armando;8453.171;115064699;Puerto Rico; -2018-11-16T00:17:56Z;Nathália;187.9091;114830206;Puerto Rico; -2018-11-16T00:16:10Z;Ana;2917.378;116012351;Puerto Rico; -2018-11-16T00:06:21Z;Júlio;414.3499;116342651;Puerto Rico; -2018-11-15T23:25:41Z;Armando;417.4213;115570219;Puerto Rico; -2018-11-15T23:25:19Z;Eduardo;8216.02;115244986;Puerto Rico; -2018-11-15T22:42:12Z;Armando;2919.921;114858416;Puerto Rico; -2018-11-15T22:30:26Z;Júlio Cesar;3460.636;115131509;Puerto Rico; -2018-11-15T21:44:07Z;Nathália;5430.071;116170711;Puerto Rico; -2018-11-15T21:42:18Z;Armando;1149.627;116154794;Puerto Rico; -2018-11-15T21:18:21Z;Júlio Cesar;1745.282;114952457;Puerto Rico; -2018-11-15T21:17:21Z;Armando;5013.911;115087212;Puerto Rico; -2018-11-15T21:09:43Z;Júlio;2608.026;114982325;Puerto Rico; -2018-11-15T21:01:16Z;Eduardo;1481.356;114438992;Puerto Rico; -2018-11-15T20:56:18Z;Ana;5736.772;115442561;Puerto Rico; -2018-11-15T20:42:04Z;Armando;4244.734;115337079;Puerto Rico; -2018-11-15T20:39:27Z;Armando;316.4735;115510985;Puerto Rico; -2018-11-15T20:33:56Z;Eduardo;966.1143;114658303;Puerto Rico; -2018-11-15T20:16:53Z;Sandra;1492.963;116162046;Puerto Rico; -2018-11-15T20:15:36Z;nathalia;36.7529;114714679;Puerto Rico; -2018-11-15T20:07:50Z;Sandra;969.2025;114468906;Puerto Rico; -2018-11-15T20:05:49Z;Sandra;1678.927;115212906;Puerto Rico; -2018-11-15T20:05:32Z;Júlio Cesar;9579.637;115191052;Puerto Rico; -2018-11-15T19:32:35Z;nathalia;1911.783;115267768;Puerto Rico; -2018-11-15T19:24:34Z;Armando;56.9046;114268586;Puerto Rico; -2018-11-15T19:17:47Z;Júlio Cesar;821.8989;116094542;Puerto Rico; -2018-11-15T19:14:23Z;Armando;6379.115;116322482;Puerto Rico; -2018-11-15T19:03:15Z;Armando;634.5834;114644638;Puerto Rico; -2018-11-15T18:36:08Z;Sandra;55.98699;114326986;Puerto Rico; -2018-11-15T18:35:55Z;Nathália;2894.792;115791253;Puerto Rico; -2018-11-15T18:35:54Z;Ana;10823.88;116153636;Puerto Rico; -2018-11-15T18:28:58Z;Sandra;1568.445;115829580;Puerto Rico; -2018-11-15T18:24:32Z;Júlio;1496.868;114977351;Puerto Rico; -2018-11-15T18:03:44Z;Sandra;6566.192;114598988;Puerto Rico; -2018-11-15T17:59:49Z;nathalia;533.0609;114346731;Puerto Rico; -2018-11-15T17:57:52Z;Júlio Cesar;791.3126;115937886;Puerto Rico; -2018-11-15T17:32:53Z;Júlio Cesar;8439.921;115389334;Puerto Rico; -2018-11-15T17:18:46Z;Júlio;5088.113;114477466;Puerto Rico; -2018-11-15T17:15:00Z;Júlio Cesar;8005.027;116068601;Puerto Rico; -2018-11-15T17:12:56Z;Nathália;8111.555;114386678;Puerto Rico; -2018-11-15T16:57:54Z;Júlio Cesar;132.6009;114822966;Puerto Rico; -2018-11-15T16:39:00Z;Júlio;6446.516;114902978;Puerto Rico; -2018-11-15T16:28:28Z;Sandra;4778.297;114744273;Puerto Rico; -2018-11-15T16:18:00Z;Júlio Cesar;2876.136;115148382;Puerto Rico; -2018-11-15T16:11:48Z;Nathália;4220.22;115047247;Puerto Rico; -2018-11-15T15:38:50Z;Júlio Cesar;3803.018;115227633;Puerto Rico; -2018-11-15T15:30:17Z;Júlio;1125.239;115485383;Puerto Rico; -2018-11-15T15:08:00Z;nathalia;2270.991;114435189;Puerto Rico; -2018-11-15T14:39:13Z;Júlio;1055.563;114904660;Puerto Rico; -2018-11-15T14:05:23Z;Sandra;1331.954;114990508;Puerto Rico; -2018-11-15T14:03:19Z;Nathália;1034.453;116085855;Puerto Rico; -2018-11-15T14:00:19Z;Nathália;2696.073;116227400;Puerto Rico; -2018-11-15T13:57:52Z;Sandra;3231.131;115559293;Puerto Rico; -2018-11-15T13:46:33Z;Júlio;1439.196;116267890;Puerto Rico; -2018-11-15T13:31:35Z;Eduardo;4455.841;116132298;Puerto Rico; -2018-11-15T13:08:46Z;Nathália;7982.551;115467515;Puerto Rico; -2018-11-15T13:01:10Z;Ana;1631.854;114719614;Puerto Rico; -2018-11-15T12:56:57Z;Júlio Cesar;2018.581;114673007;Puerto Rico; -2018-11-15T12:27:54Z;Armando;275.9404;115496329;Puerto Rico; -2018-11-15T12:26:13Z;Armando;13018.58;114503242;Puerto Rico; -2018-11-15T12:10:40Z;Eduardo;1576.517;114771100;Puerto Rico; -2018-11-15T11:42:00Z;Eduardo;5665.118;115683734;Puerto Rico; -2018-11-15T11:33:23Z;Nathália;4080.218;115009486;Puerto Rico; -2018-11-15T11:21:47Z;Ana;5294.167;115156646;Puerto Rico; -2018-11-15T11:17:52Z;Ana;1999.759;115654641;Puerto Rico; -2018-11-15T11:12:51Z;Nathália;3080.641;115595587;Puerto Rico; -2018-11-15T11:00:29Z;Armando;5305.848;116319678;Puerto Rico; -2018-11-15T10:53:57Z;Júlio;7285.734;115219626;Puerto Rico; -2018-11-15T10:08:24Z;Sandra;7365.866;116032573;Puerto Rico; -2018-11-15T09:43:39Z;nathalia;7907.425;115612269;Puerto Rico; -2018-11-15T09:11:01Z;Sandra;6152.773;115538028;Puerto Rico; -2018-11-15T08:33:22Z;Júlio Cesar;27.55507;115039915;Puerto Rico; -2018-11-15T07:31:15Z;Júlio;2781.549;114330621;Puerto Rico; -2018-11-15T07:29:35Z;Sandra;734.7921;116059843;Puerto Rico; -2018-11-15T07:22:47Z;Júlio Cesar;7986.337;115494718;Puerto Rico; -2018-11-15T07:05:51Z;Eduardo;5196.564;114431168;Puerto Rico; -2018-11-15T06:41:07Z;Eduardo;732.3508;115235305;Puerto Rico; -2018-11-15T06:37:00Z;Eduardo;4945.897;115734660;Puerto Rico; -2018-11-15T05:55:13Z;Ana;6977.553;116020466;Puerto Rico; -2018-11-15T05:49:09Z;Eduardo;278.451;115083662;Puerto Rico; -2018-11-15T05:37:27Z;Armando;3332.676;116017225;Puerto Rico; -2018-11-15T05:33:27Z;Armando;1323.558;115703456;Puerto Rico; -2018-11-15T05:08:10Z;Júlio Cesar;376.3366;114506466;Puerto Rico; -2018-11-15T04:57:08Z;Eduardo;2848.371;115361245;Puerto Rico; -2018-11-15T04:46:24Z;Armando;651.6305;115345846;Puerto Rico; -2018-11-15T03:45:24Z;Júlio;650.9184;114312736;Puerto Rico; -2018-11-15T03:16:07Z;Sandra;5143.335;114751019;Puerto Rico; -2018-11-15T02:57:33Z;nathalia;6119.227;116166417;Puerto Rico; -2018-11-15T02:41:41Z;Nathália;7430.722;115767522;Puerto Rico; -2018-11-15T02:30:27Z;Armando;619.9339;115208696;Puerto Rico; -2018-11-15T02:21:58Z;Júlio Cesar;3908.161;115031911;Puerto Rico; -2018-11-15T02:14:18Z;Júlio Cesar;5065.283;116047941;Puerto Rico; -2018-11-15T02:12:43Z;Júlio Cesar;5064.788;115867565;Puerto Rico; -2018-11-15T01:55:33Z;Armando;3140.37;114754372;Puerto Rico; -2018-11-15T01:47:58Z;Nathália;5090.787;114446181;Puerto Rico; -2018-11-15T01:45:36Z;nathalia;5616.24;116330789;Puerto Rico; -2018-11-15T01:35:21Z;Armando;2369.809;115695984;Puerto Rico; -2018-11-15T01:12:11Z;Júlio Cesar;907.6329;115698804;Puerto Rico; -2018-11-15T00:48:41Z;Nathália;4456.83;114928487;Puerto Rico; -2018-11-15T00:43:44Z;Eduardo;521.499;115762238;Puerto Rico; -2018-11-15T00:41:47Z;Eduardo;3038.016;114546842;Puerto Rico; -2018-11-15T00:05:46Z;Sandra;2335.59;115754408;Puerto Rico; -2018-11-14T23:57:53Z;Sandra;5277.24;115480311;Puerto Rico; -2018-11-14T23:29:56Z;Eduardo;1456.48;115836535;Puerto Rico; -2018-11-14T23:00:34Z;Ana;2397.487;116309411;Puerto Rico; -2018-11-14T22:51:32Z;Eduardo;5467.393;114578284;Puerto Rico; -2018-11-14T22:17:29Z;Armando;5078.631;115119421;Puerto Rico; -2018-11-14T21:57:13Z;nathalia;1357.005;114212778;Puerto Rico; -2018-11-14T21:33:45Z;Nathália;166.288;115098464;Puerto Rico; -2018-11-14T21:13:03Z;Eduardo;6916.051;115028653;Puerto Rico; -2018-11-14T20:52:44Z;Armando;313.8979;115472143;Puerto Rico; -2018-11-14T20:35:59Z;Júlio;6003.992;115048857;Puerto Rico; -2018-11-14T20:17:44Z;Eduardo;4747.928;114778238;Puerto Rico; -2018-11-14T19:42:03Z;Júlio Cesar;1995.63;116105062;Puerto Rico; -2018-11-14T19:40:15Z;nathalia;4107.179;114269027;Puerto Rico; -2018-11-14T19:39:11Z;Armando;3989.243;116253332;Puerto Rico; -2018-11-14T19:23:56Z;nathalia;241.8488;114741639;Puerto Rico; -2018-11-14T18:46:33Z;Júlio Cesar;4020.656;115582071;Puerto Rico; -2018-11-14T18:29:09Z;Armando;5902.637;115744163;Puerto Rico; -2018-11-14T18:26:56Z;Eduardo;1527.633;115040550;Puerto Rico; -2018-11-14T18:19:05Z;Júlio Cesar;6675.53;114970031;Puerto Rico; -2018-11-14T17:58:06Z;Nathália;5707.992;115259042;Puerto Rico; -2018-11-14T17:52:55Z;Júlio;8303.872;114765987;Puerto Rico; -2018-11-14T17:51:41Z;Ana;1855.92;115984889;Puerto Rico; -2018-11-14T17:23:02Z;Eduardo;9063.505;114222116;Puerto Rico; -2018-11-14T17:20:52Z;nathalia;1458.598;114948240;Puerto Rico; -2018-11-14T17:13:02Z;Nathália;1196.945;115959808;Puerto Rico; -2018-11-14T15:57:56Z;nathalia;1648.427;115137827;Puerto Rico; -2018-11-14T15:57:55Z;Nathália;6659.997;115544597;Puerto Rico; -2018-11-14T15:52:31Z;Júlio Cesar;2119.851;114379743;Puerto Rico; -2018-11-14T15:20:40Z;Nathália;1572.537;114551514;Puerto Rico; -2018-11-14T15:17:27Z;Armando;1023.495;115830872;Puerto Rico; -2018-11-14T14:47:44Z;Júlio;436.2046;115643571;Puerto Rico; -2018-11-14T14:28:55Z;nathalia;10424.45;115127331;Puerto Rico; -2018-11-14T13:27:07Z;Nathália;2958.789;114205960;Puerto Rico; -2018-11-14T13:19:55Z;Júlio Cesar;3184.813;115594982;Puerto Rico; -2018-11-14T12:53:17Z;Armando;78.42444;114813278;Puerto Rico; -2018-11-14T12:45:50Z;Nathália;7140.995;114312705;Puerto Rico; -2018-11-14T12:15:13Z;Nathália;8726.04;115770784;Puerto Rico; -2018-11-14T12:00:10Z;Nathália;974.565;115929172;Puerto Rico; -2018-11-14T11:55:54Z;Eduardo;716.3079;114989809;Puerto Rico; -2018-11-14T11:54:05Z;Armando;5285.812;114583402;Puerto Rico; -2018-11-14T11:47:32Z;Júlio;2497.181;116056860;Puerto Rico; -2018-11-14T11:32:32Z;Sandra;1400.453;114620757;Puerto Rico; -2018-11-14T11:28:23Z;Sandra;2008.29;114800558;Puerto Rico; -2018-11-14T11:24:10Z;Sandra;86.49753;116394306;Puerto Rico; -2018-11-14T11:08:13Z;Armando;130.6217;115138312;Puerto Rico; -2018-11-14T10:51:43Z;Nathália;5454.682;115579504;Puerto Rico; -2018-11-14T10:16:43Z;Júlio;8822.729;116296303;Puerto Rico; -2018-11-14T09:42:58Z;Júlio;6489.669;114213208;Puerto Rico; -2018-11-14T09:32:37Z;Júlio;9455.837;116379942;Puerto Rico; -2018-11-14T09:02:04Z;Armando;3798.116;114595676;Puerto Rico; -2018-11-14T08:48:37Z;Júlio Cesar;5774.591;116185858;Puerto Rico; -2018-11-14T08:43:13Z;Júlio Cesar;5117.372;115774184;Puerto Rico; -2018-11-14T08:30:23Z;Ana;201.8977;116201091;Puerto Rico; -2018-11-14T08:15:17Z;Sandra;1562.755;115095244;Puerto Rico; -2018-11-14T08:11:18Z;Eduardo;3976.959;115601493;Puerto Rico; -2018-11-14T07:36:07Z;Armando;4995.78;115466145;Puerto Rico; -2018-11-14T07:27:29Z;Ana;602.4411;116230273;Puerto Rico; -2018-11-14T07:19:03Z;Eduardo;1481.552;115570475;Puerto Rico; -2018-11-14T07:11:05Z;Júlio;4761.541;116158767;Puerto Rico; -2018-11-14T06:21:18Z;Armando;1700.656;114535899;Puerto Rico; -2018-11-14T06:06:25Z;Ana;11901.18;116026102;Puerto Rico; -2018-11-14T06:00:40Z;Nathália;10638.07;115329323;Puerto Rico; -2018-11-14T05:48:29Z;Júlio Cesar;6373.991;116313017;Puerto Rico; -2018-11-14T05:43:17Z;nathalia;5506.951;114441190;Puerto Rico; -2018-11-14T04:50:15Z;Júlio;1044.4;115157822;Puerto Rico; -2018-11-14T04:34:53Z;Sandra;6133.758;114710686;Puerto Rico; -2018-11-14T04:25:34Z;Júlio;7151.863;115064396;Puerto Rico; -2018-11-14T04:18:32Z;nathalia;3384.503;114556808;Puerto Rico; -2018-11-14T04:12:03Z;Júlio Cesar;115.7668;115220095;Puerto Rico; -2018-11-14T04:10:57Z;Sandra;5342.387;115164161;Puerto Rico; -2018-11-14T03:50:34Z;Júlio Cesar;4007.588;115275349;Puerto Rico; -2018-11-14T03:30:35Z;Júlio Cesar;786.8193;114572314;Puerto Rico; -2018-11-14T03:29:21Z;Ana;8157.524;115264274;Puerto Rico; -2018-11-14T03:17:27Z;Eduardo;8045.919;114725500;Puerto Rico; -2018-11-14T02:51:53Z;Ana;4916.61;114646403;Puerto Rico; -2018-11-14T02:27:44Z;Ana;2657.341;114939551;Puerto Rico; -2018-11-14T02:23:06Z;Júlio;1547.562;115946489;Puerto Rico; -2018-11-14T02:11:26Z;Armando;866.7771;114356858;Puerto Rico; -2018-11-14T02:06:56Z;Júlio;2532.337;115868080;Puerto Rico; -2018-11-14T02:06:05Z;Sandra;1345.194;115916913;Puerto Rico; -2018-11-14T01:42:13Z;Eduardo;5135.661;116190694;Puerto Rico; -2018-11-14T01:29:46Z;Nathália;1987.763;116174909;Puerto Rico; -2018-11-14T01:13:14Z;Sandra;4735.312;114208897;Puerto Rico; -2018-11-14T01:04:51Z;nathalia;420.4978;115604617;Puerto Rico; -2018-11-14T00:45:20Z;Armando;14482.23;115467893;Puerto Rico; -2018-11-14T00:34:13Z;Nathália;1760.139;115253624;Puerto Rico; -2018-11-14T00:19:27Z;nathalia;3199.679;116250411;Puerto Rico; -2018-11-13T23:43:16Z;Sandra;10959.53;114477028;Puerto Rico; -2018-11-13T23:13:46Z;Ana;74.64388;114253057;Puerto Rico; -2018-11-13T23:12:07Z;Nathália;1167.464;115229955;Puerto Rico; -2018-11-13T23:06:53Z;Sandra;2079.064;115440293;Puerto Rico; -2018-11-13T23:03:04Z;Júlio;3989.094;114782442;Puerto Rico; -2018-11-13T22:50:56Z;nathalia;4237.559;114614729;Puerto Rico; -2018-11-13T22:50:09Z;Júlio;312.9504;116132155;Puerto Rico; -2018-11-13T22:34:34Z;Júlio Cesar;468.271;115664440;Puerto Rico; -2018-11-13T22:30:17Z;Júlio;7836.797;114803283;Puerto Rico; -2018-11-13T22:27:09Z;Ana;4364.637;114465060;Puerto Rico; -2018-11-13T22:26:47Z;Armando;687.4754;114377957;Puerto Rico; -2018-11-13T22:04:12Z;Nathália;3117.772;114784161;Puerto Rico; -2018-11-13T21:29:04Z;Sandra;5342.17;114900513;Puerto Rico; -2018-11-13T20:41:25Z;Nathália;5299.077;114293379;Puerto Rico; -2018-11-13T19:52:23Z;Júlio Cesar;392.2452;115867750;Puerto Rico; -2018-11-13T19:38:52Z;Júlio Cesar;10221.53;115605159;Puerto Rico; -2018-11-13T19:29:15Z;Júlio Cesar;3497.583;115039980;Puerto Rico; -2018-11-13T19:25:26Z;Júlio Cesar;5836.51;114544270;Puerto Rico; -2018-11-13T19:24:14Z;Júlio Cesar;7104.025;115509221;Puerto Rico; -2018-11-13T19:08:47Z;Armando;1138.463;114439606;Puerto Rico; -2018-11-13T19:07:51Z;Nathália;4505.256;114620138;Puerto Rico; -2018-11-13T18:54:53Z;Júlio;6585.429;114225933;Puerto Rico; -2018-11-13T18:36:12Z;Júlio Cesar;106.1377;114621047;Puerto Rico; -2018-11-13T18:22:05Z;Júlio;9175.596;115697906;Puerto Rico; -2018-11-13T17:29:17Z;Armando;2239.064;115507579;Puerto Rico; -2018-11-13T16:42:28Z;Júlio;3168.969;115597909;Puerto Rico; -2018-11-13T16:37:09Z;Ana;436.4845;115930728;Puerto Rico; -2018-11-13T16:27:41Z;nathalia;252.7898;115040429;Puerto Rico; -2018-11-13T16:21:39Z;Nathália;6237.659;115126626;Puerto Rico; -2018-11-13T16:15:37Z;Júlio;1346.093;115310411;Puerto Rico; -2018-11-13T16:10:53Z;Nathália;4511.238;114730299;Puerto Rico; -2018-11-13T15:58:39Z;Júlio;4765.523;116127561;Puerto Rico; -2018-11-13T15:27:28Z;Sandra;6006.077;116031880;Puerto Rico; -2018-11-13T15:15:51Z;Júlio;4724.363;114631470;Puerto Rico; -2018-11-13T15:02:57Z;Sandra;6727.3;115814906;Puerto Rico; -2018-11-13T14:50:52Z;Júlio;8968.985;115683327;Puerto Rico; -2018-11-13T14:46:56Z;Eduardo;4173.334;115263245;Puerto Rico; -2018-11-13T14:16:43Z;Armando;5662.462;114886755;Puerto Rico; -2018-11-13T14:07:51Z;Armando;318.7817;116251723;Puerto Rico; -2018-11-13T14:01:46Z;Júlio Cesar;5830.045;114610577;Puerto Rico; -2018-11-13T13:02:34Z;Sandra;7614.335;114520302;Puerto Rico; -2018-11-13T12:35:04Z;Ana;841.1535;114754948;Puerto Rico; -2018-11-13T12:32:06Z;Nathália;8545.835;115687689;Puerto Rico; -2018-11-13T12:20:10Z;Sandra;2291.645;114688867;Puerto Rico; -2018-11-13T12:16:26Z;Júlio;6539.392;115413325;Puerto Rico; -2018-11-13T11:37:36Z;Sandra;917.092;116023550;Puerto Rico; -2018-11-13T11:18:12Z;Nathália;8757.032;114948705;Puerto Rico; -2018-11-13T10:15:54Z;Ana;12462.63;115883569;Puerto Rico; -2018-11-13T10:14:11Z;Nathália;12383.35;114823739;Puerto Rico; -2018-11-13T10:02:53Z;Nathália;232.0769;115931850;Puerto Rico; -2018-11-13T09:50:34Z;Júlio Cesar;3393.73;114366590;Puerto Rico; -2018-11-13T09:35:16Z;Armando;6516.199;115665303;Puerto Rico; -2018-11-13T09:09:58Z;Nathália;3719.307;114707782;Puerto Rico; -2018-11-13T08:55:20Z;Sandra;458.179;115086281;Puerto Rico; -2018-11-13T08:40:37Z;Armando;6631.912;115550217;Puerto Rico; -2018-11-13T08:38:44Z;Eduardo;4815.529;116018894;Puerto Rico; -2018-11-13T08:14:02Z;Júlio Cesar;2103.731;115801122;Puerto Rico; -2018-11-13T07:49:57Z;Ana;285.702;116292473;Puerto Rico; -2018-11-13T07:43:59Z;Eduardo;6706.569;116202606;Puerto Rico; -2018-11-13T07:42:37Z;Nathália;3155.348;115756141;Puerto Rico; -2018-11-13T07:19:17Z;Júlio Cesar;3264.566;114592067;Puerto Rico; -2018-11-13T07:19:12Z;Júlio;43.86456;114449186;Puerto Rico; -2018-11-13T07:16:44Z;Sandra;8826.668;115410041;Puerto Rico; -2018-11-13T07:13:01Z;Nathália;13943.78;115825444;Puerto Rico; -2018-11-13T06:59:11Z;Ana;3863.18;114793786;Puerto Rico; -2018-11-13T06:43:16Z;Ana;2341.362;114552472;Puerto Rico; -2018-11-13T06:29:54Z;Júlio Cesar;7374.204;114884717;Puerto Rico; -2018-11-13T06:28:29Z;Eduardo;1696.502;116352103;Puerto Rico; -2018-11-13T06:24:32Z;Júlio Cesar;2566.809;115380439;Puerto Rico; -2018-11-13T06:21:29Z;Armando;5963.404;116214561;Puerto Rico; -2018-11-13T05:54:51Z;Eduardo;95.18887;114360392;Puerto Rico; -2018-11-13T05:53:48Z;Armando;4892.563;115604035;Puerto Rico; -2018-11-13T05:49:48Z;Armando;3410.186;114577057;Puerto Rico; -2018-11-13T05:19:09Z;Júlio;956.9847;115187047;Puerto Rico; -2018-11-13T04:43:13Z;nathalia;4944.29;115230886;Puerto Rico; -2018-11-13T03:53:31Z;nathalia;2412.102;115392056;Puerto Rico; -2018-11-13T03:39:44Z;Ana;1105.902;115581549;Puerto Rico; -2018-11-13T03:29:35Z;nathalia;407.6182;115208441;Puerto Rico; -2018-11-13T03:14:38Z;Nathália;7827.907;114973882;Puerto Rico; -2018-11-13T03:06:56Z;Eduardo;2331.743;115598602;Puerto Rico; -2018-11-13T03:00:28Z;Júlio Cesar;4374.558;115894839;Puerto Rico; -2018-11-13T02:56:56Z;Júlio;1416.811;115676990;Puerto Rico; -2018-11-13T02:51:54Z;Eduardo;6801.498;114507250;Puerto Rico; -2018-11-13T02:43:23Z;Armando;1271.09;116080427;Puerto Rico; -2018-11-13T02:21:22Z;nathalia;2568.055;114508652;Puerto Rico; -2018-11-13T02:12:53Z;nathalia;90.30838;114669113;Puerto Rico; -2018-11-13T02:04:26Z;Ana;2832.283;116049758;Puerto Rico; -2018-11-13T01:59:40Z;Ana;512.6945;116109921;Puerto Rico; -2018-11-13T01:47:29Z;Eduardo;2431.622;114752334;Puerto Rico; -2018-11-13T01:39:03Z;Sandra;4786.784;116306544;Puerto Rico; -2018-11-13T00:54:13Z;Eduardo;3342.902;115960155;Puerto Rico; -2018-12-06T22:25:33Z;Eduardo;2036.312;116388874;Venezuela; -2018-12-06T22:20:06Z;Ana;349.4675;115725591;Venezuela; -2018-12-06T21:50:28Z;Júlio Cesar;389.112;115347240;Venezuela; -2018-12-06T21:49:58Z;Eduardo;3971.992;115787758;Venezuela; -2018-12-06T21:32:28Z;Armando;439.4302;114700250;Venezuela; -2018-12-06T21:08:54Z;Armando;3002.654;114322018;Venezuela; -2018-12-06T20:58:55Z;Nathália;3520.588;114641628;Venezuela; -2018-12-06T20:55:28Z;Armando;188.0616;116054069;Venezuela; -2018-12-06T20:50:54Z;nathalia;4693.187;114305507;Venezuela; -2018-12-06T20:42:29Z;Sandra;5935.056;114971787;Venezuela; -2018-12-06T20:33:31Z;Júlio Cesar;1655.446;115701527;Venezuela; -2018-12-06T20:32:20Z;Ana;3563.508;114253729;Venezuela; -2018-12-06T20:29:48Z;Júlio Cesar;365.0174;114663525;Venezuela; -2018-12-06T20:07:13Z;Júlio;8597.25;116306534;Venezuela; -2018-12-06T19:56:06Z;Ana;4602.725;115583447;Venezuela; -2018-12-06T19:09:12Z;Nathália;482.5012;115017484;Venezuela; -2018-12-06T18:41:00Z;Júlio Cesar;668.4377;114913577;Venezuela; -2018-12-06T18:22:36Z;Ana;3901.685;114859978;Venezuela; -2018-12-06T17:45:57Z;Armando;917.7871;115439674;Venezuela; -2018-12-06T17:43:39Z;Eduardo;3125.267;114643243;Venezuela; -2018-12-06T17:34:47Z;Armando;270.9457;116134688;Venezuela; -2018-12-06T17:30:50Z;Eduardo;40.9093;114661771;Venezuela; -2018-12-06T17:28:07Z;Sandra;1223.634;115288692;Venezuela; -2018-12-06T16:37:03Z;Ana;213.3399;115247023;Venezuela; -2018-12-06T16:34:33Z;Júlio Cesar;180.1817;115437354;Venezuela; -2018-12-06T16:19:45Z;Júlio;4413.482;114373612;Venezuela; -2018-12-06T16:18:44Z;Armando;1551.537;115528559;Venezuela; -2018-12-06T16:13:00Z;Eduardo;774.5454;114239613;Venezuela; -2018-12-06T16:02:01Z;Júlio Cesar;383.4059;116078707;Venezuela; -2018-12-06T15:57:24Z;Ana;139.9779;114511722;Venezuela; -2018-12-06T15:48:13Z;Sandra;96.38617;116308161;Venezuela; -2018-12-06T15:25:33Z;Armando;912.4362;116280426;Venezuela; -2018-12-06T15:01:38Z;Armando;352.4785;116353223;Venezuela; -2018-12-06T14:28:06Z;nathalia;346.6822;115855614;Venezuela; -2018-12-06T14:02:22Z;Ana;718.5249;114494203;Venezuela; -2018-12-06T13:36:12Z;Júlio Cesar;3304.302;114921487;Venezuela; -2018-12-06T13:35:06Z;Eduardo;1185.777;115310557;Venezuela; -2018-12-06T12:56:37Z;nathalia;197.642;116059342;Venezuela; -2018-12-06T12:50:14Z;Júlio;145.123;116278224;Venezuela; -2018-12-06T12:48:26Z;Nathália;1311.038;115296864;Venezuela; -2018-12-06T12:45:55Z;Júlio;1990.166;114982244;Venezuela; -2018-12-06T12:42:15Z;nathalia;2668.072;114439701;Venezuela; -2018-12-06T12:10:11Z;nathalia;868.158;114910729;Venezuela; -2018-12-06T11:51:09Z;Ana;311.0302;115063131;Venezuela; -2018-12-06T11:36:57Z;Júlio;609.7267;114734041;Venezuela; -2018-12-06T11:24:05Z;nathalia;1706.555;114678063;Venezuela; -2018-12-06T11:06:16Z;Júlio Cesar;3141.789;115843002;Venezuela; -2018-12-06T10:54:34Z;nathalia;3417.061;115111204;Venezuela; -2018-12-06T10:52:05Z;Júlio;1046.897;114521717;Venezuela; -2018-12-06T10:50:49Z;nathalia;818.0314;115261419;Venezuela; -2018-12-06T10:28:51Z;Nathália;3635.003;114858718;Venezuela; -2018-12-06T10:09:16Z;Ana;30.22695;115541916;Venezuela; -2018-12-06T10:04:45Z;Ana;1041.083;114956537;Venezuela; -2018-12-06T09:52:41Z;nathalia;0.9306517;114562752;Venezuela; -2018-12-06T09:48:52Z;Sandra;467.9477;114278766;Venezuela; -2018-12-06T09:44:51Z;Eduardo;183.1719;115750003;Venezuela; -2018-12-06T09:36:07Z;Nathália;6.221057;115543406;Venezuela; -2018-12-06T09:23:29Z;Júlio;317.3349;115859580;Venezuela; -2018-12-06T09:13:37Z;Armando;197.203;116351342;Venezuela; -2018-12-06T09:13:02Z;Nathália;316.8458;115729991;Venezuela; -2018-12-06T08:59:43Z;Armando;302.7466;114271604;Venezuela; -2018-12-06T08:59:13Z;Ana;1428.459;116159864;Venezuela; -2018-12-06T08:56:52Z;Eduardo;4430.265;116016025;Venezuela; -2018-12-06T08:55:16Z;Eduardo;3767.031;114843044;Venezuela; -2018-12-06T08:52:29Z;Júlio Cesar;6742.862;115943705;Venezuela; -2018-12-06T08:01:27Z;nathalia;4216.557;115412519;Venezuela; -2018-12-06T07:33:35Z;Júlio Cesar;274.4887;115200925;Venezuela; -2018-12-06T07:32:10Z;Armando;9130.205;115549309;Venezuela; -2018-12-06T06:55:18Z;Nathália;1819.655;115309526;Venezuela; -2018-12-06T06:27:56Z;Ana;1778.578;115724195;Venezuela; -2018-12-06T06:24:09Z;Armando;3404.074;114788732;Venezuela; -2018-12-06T06:17:53Z;Armando;266.6295;114249829;Venezuela; -2018-12-06T06:15:40Z;Armando;2482.602;114794196;Venezuela; -2018-12-06T05:49:55Z;nathalia;52.65357;114318023;Venezuela; -2018-12-06T05:39:32Z;Nathália;1792.073;116284206;Venezuela; -2018-12-06T05:36:51Z;Armando;2092.353;115641748;Venezuela; -2018-12-06T05:04:53Z;Júlio Cesar;1300.044;116093881;Venezuela; -2018-12-06T05:04:19Z;Nathália;1146.343;116210126;Venezuela; -2018-12-06T05:01:32Z;Júlio;4741.22;115761932;Venezuela; -2018-12-06T04:39:49Z;Nathália;22.00951;114858965;Venezuela; -2018-12-06T04:08:30Z;Júlio Cesar;4275.725;116205714;Venezuela; -2018-12-06T03:49:10Z;Júlio;4573.343;115736941;Venezuela; -2018-12-06T03:33:27Z;Eduardo;1169.099;115455654;Venezuela; -2018-12-06T03:15:54Z;Eduardo;1282.05;116302731;Venezuela; -2018-12-06T03:14:02Z;Armando;49.87238;116186092;Venezuela; -2018-12-06T02:25:37Z;Nathália;1196.634;115848494;Venezuela; -2018-12-06T01:59:11Z;Nathália;3667.026;115288415;Venezuela; -2018-12-06T01:55:14Z;Eduardo;821.0728;115599730;Venezuela; -2018-12-06T01:48:32Z;Nathália;714.7263;114273999;Venezuela; -2018-12-06T01:44:23Z;Júlio Cesar;759.1848;115563084;Venezuela; -2018-12-06T01:08:28Z;Eduardo;63.04983;114551273;Venezuela; -2018-12-06T00:49:45Z;nathalia;2397.267;114722013;Venezuela; -2018-12-06T00:45:53Z;Eduardo;217.4949;115857300;Venezuela; -2018-12-06T00:15:06Z;Júlio;165.5047;115241201;Venezuela; -2018-12-05T23:53:02Z;Ana;1320.845;116155294;Venezuela; -2018-12-05T23:24:35Z;Júlio Cesar;2868.856;115120490;Venezuela; -2018-12-05T22:52:39Z;Sandra;1860.975;116266787;Venezuela; -2018-12-05T22:34:23Z;Eduardo;203.9056;114552223;Venezuela; -2018-12-05T22:30:20Z;Ana;4547.871;114655016;Venezuela; -2018-12-05T22:01:14Z;Nathália;982.889;115253011;Venezuela; -2018-12-05T21:54:07Z;Júlio Cesar;4118.023;114906918;Venezuela; -2018-12-05T21:42:27Z;Ana;832.8187;116263960;Venezuela; -2018-12-05T21:27:51Z;Sandra;2723.023;116157629;Venezuela; -2018-12-05T21:23:25Z;Armando;1729.135;115923281;Venezuela; -2018-12-05T21:14:32Z;Nathália;2345.064;116323693;Venezuela; -2018-12-05T21:01:02Z;Armando;6007.959;114220752;Venezuela; -2018-12-05T20:52:59Z;nathalia;213.2194;115374931;Venezuela; -2018-12-05T20:46:58Z;Armando;7078.966;114214413;Venezuela; -2018-12-05T20:27:10Z;Ana;202.8033;114582178;Venezuela; -2018-12-05T20:13:47Z;Júlio Cesar;217.6116;115502922;Venezuela; -2018-12-05T20:00:56Z;Júlio;90.89154;116166234;Venezuela; -2018-12-05T19:47:16Z;Nathália;280.4379;114285923;Venezuela; -2018-12-05T19:39:35Z;Ana;1597.169;115900515;Venezuela; -2018-12-05T19:24:00Z;Sandra;5149.431;115247527;Venezuela; -2018-12-05T19:18:55Z;Júlio;1254.377;114958089;Venezuela; -2018-12-05T18:58:00Z;nathalia;2784.866;115256829;Venezuela; -2018-12-05T18:53:46Z;Sandra;316.8963;114942224;Venezuela; -2018-12-05T18:46:06Z;nathalia;749.2607;115440476;Venezuela; -2018-12-05T18:34:27Z;Ana;566.4964;115394005;Venezuela; -2018-12-05T18:32:32Z;Ana;1569.754;114734224;Venezuela; -2018-12-05T18:23:51Z;Júlio Cesar;3064.285;114969244;Venezuela; -2018-12-05T17:34:20Z;Júlio;54.82711;114205162;Venezuela; -2018-12-05T16:56:43Z;Sandra;582.9257;116138514;Venezuela; -2018-12-05T16:50:54Z;Sandra;598.569;114733862;Venezuela; -2018-12-05T16:23:11Z;Júlio;526.6949;114371269;Venezuela; -2018-12-05T16:13:52Z;Ana;5312.087;114250877;Venezuela; -2018-12-05T16:08:27Z;Eduardo;2652.241;114661264;Venezuela; -2018-12-05T15:58:16Z;Armando;1589.266;114932272;Venezuela; -2018-12-05T15:44:14Z;Sandra;229.6072;114810759;Venezuela; -2018-12-05T15:41:52Z;Armando;2120.142;114390170;Venezuela; -2018-12-05T15:39:49Z;Júlio Cesar;3036.535;114841317;Venezuela; -2018-12-05T14:11:29Z;Ana;1015.297;115689584;Venezuela; -2018-12-05T13:29:17Z;Eduardo;1397.072;114307216;Venezuela; -2018-12-05T13:01:08Z;Júlio;3985.281;114887868;Venezuela; -2018-12-05T12:41:17Z;nathalia;2917.592;114406848;Venezuela; -2018-12-05T12:20:10Z;Eduardo;2164.589;115272235;Venezuela; -2018-12-05T12:17:22Z;nathalia;2550.096;115424894;Venezuela; -2018-12-05T12:14:34Z;Ana;53.69266;115866486;Venezuela; -2018-12-05T12:11:06Z;Nathália;32.49001;116001576;Venezuela; -2018-12-05T11:36:14Z;Júlio Cesar;1117.86;116201497;Venezuela; -2018-12-05T11:22:42Z;Júlio;2622.42;115714858;Venezuela; -2018-12-05T11:06:18Z;Júlio;1437.295;115683187;Venezuela; -2018-12-05T10:36:35Z;Armando;6202.893;116089434;Venezuela; -2018-12-05T10:22:01Z;Eduardo;3438.076;115775615;Venezuela; -2018-12-05T10:11:50Z;Júlio Cesar;819.8778;116322206;Venezuela; -2018-12-05T10:11:08Z;Armando;2548.527;114638905;Venezuela; -2018-12-05T10:03:51Z;Armando;475.6793;115744586;Venezuela; -2018-12-05T10:02:51Z;Nathália;129.4241;116025493;Venezuela; -2018-12-05T09:58:24Z;Ana;7553.206;115254325;Venezuela; -2018-12-05T09:40:20Z;Sandra;1706.244;116036719;Venezuela; -2018-12-05T09:20:19Z;Ana;5482.541;115930422;Venezuela; -2018-12-05T09:16:19Z;Eduardo;2159.576;115796903;Venezuela; -2018-12-05T09:03:08Z;nathalia;2212.495;115467551;Venezuela; -2018-12-05T08:36:04Z;Eduardo;4370.609;115768118;Venezuela; -2018-12-05T08:29:19Z;Sandra;6100.758;116325977;Venezuela; -2018-12-05T08:22:08Z;Eduardo;315.1183;116129236;Venezuela; -2018-12-05T08:21:40Z;nathalia;6758.011;115271808;Venezuela; -2018-12-05T08:20:39Z;nathalia;3820.89;115434099;Venezuela; -2018-12-05T08:20:18Z;Ana;107.4137;115103625;Venezuela; -2018-12-05T07:56:45Z;Armando;7405.674;115980726;Venezuela; -2018-12-05T07:35:20Z;Eduardo;2165.822;115694052;Venezuela; -2018-12-05T07:19:16Z;Júlio Cesar;213.0227;116284529;Venezuela; -2018-12-05T07:13:08Z;Nathália;86.99207;114631170;Venezuela; -2018-12-05T07:01:58Z;Júlio;6135.835;114936985;Venezuela; -2018-12-05T06:51:08Z;Eduardo;653.1934;115680256;Venezuela; -2018-12-05T06:28:48Z;Nathália;1127.323;114515552;Venezuela; -2018-12-05T06:20:25Z;Júlio;784.1644;114958981;Venezuela; -2018-12-05T06:15:57Z;Júlio;131.1005;115361733;Venezuela; -2018-12-05T05:35:13Z;Sandra;622.0653;115337929;Venezuela; -2018-12-05T05:14:05Z;Júlio;2499.221;114523390;Venezuela; -2018-12-05T04:46:52Z;Júlio;244.3488;115514420;Venezuela; -2018-12-05T04:25:44Z;Júlio Cesar;1592.272;115798857;Venezuela; -2018-12-05T04:01:48Z;Júlio;672.1411;115618780;Venezuela; -2018-12-05T04:01:07Z;Júlio;425.0859;114729984;Venezuela; -2018-12-05T03:42:57Z;Nathália;3710.375;115151244;Venezuela; -2018-12-05T03:41:19Z;Armando;2454.176;114964261;Venezuela; -2018-12-05T03:10:17Z;nathalia;911.2307;115597231;Venezuela; -2018-12-05T03:06:53Z;Júlio Cesar;4030.242;114994098;Venezuela; -2018-12-05T02:47:33Z;Ana;154.442;114467298;Venezuela; -2018-12-05T02:33:05Z;Ana;1124.7;116037627;Venezuela; -2018-12-05T02:13:30Z;Júlio;211.0735;116264553;Venezuela; -2018-12-05T02:08:52Z;Júlio;1515.915;115229112;Venezuela; -2018-12-05T01:49:10Z;Sandra;1232.559;115708340;Venezuela; -2018-12-05T01:34:32Z;Júlio;1791.83;115341161;Venezuela; -2018-12-05T01:22:19Z;Eduardo;351.4802;115208824;Venezuela; -2018-12-05T01:14:10Z;Nathália;5435.062;115180478;Venezuela; -2018-12-05T01:01:40Z;Armando;3966.383;114681018;Venezuela; -2018-12-05T00:33:11Z;Sandra;800.8663;115150094;Venezuela; -2018-12-05T00:25:52Z;nathalia;4032.696;114764107;Venezuela; -2018-12-05T00:21:42Z;Júlio;837.0736;116087850;Venezuela; -2018-12-05T00:00:27Z;Armando;2982.042;114899506;Venezuela; -2018-12-04T23:56:13Z;Júlio Cesar;1581.397;115079634;Venezuela; -2018-12-04T23:40:20Z;Armando;678.9297;114718565;Venezuela; -2018-12-04T23:19:03Z;Ana;1589.002;115313294;Venezuela; -2018-12-04T23:03:44Z;Júlio;245.0218;114377327;Venezuela; -2018-12-04T22:54:52Z;Júlio Cesar;590.4062;115869980;Venezuela; -2018-12-04T22:48:10Z;nathalia;744.5619;115968988;Venezuela; -2018-12-04T22:29:19Z;Júlio;1898.36;115757298;Venezuela; -2018-12-04T21:30:42Z;Júlio Cesar;2696.419;116297823;Venezuela; -2018-12-04T20:51:03Z;Júlio;1839.09;115530669;Venezuela; -2018-12-04T20:40:40Z;Eduardo;2893.427;115852063;Venezuela; -2018-12-04T20:37:03Z;Júlio;1957.913;114831803;Venezuela; -2018-12-04T20:08:45Z;Nathália;875.6727;115764365;Venezuela; -2018-12-04T19:54:35Z;Ana;3905.43;115879412;Venezuela; -2018-12-04T19:36:09Z;Eduardo;1984.232;115626111;Venezuela; -2018-12-04T19:21:13Z;Armando;371.8242;115125354;Venezuela; -2018-12-04T19:16:52Z;nathalia;496.1466;115421436;Venezuela; -2018-12-04T19:01:48Z;Júlio Cesar;5338.076;115141182;Venezuela; -2018-12-04T18:22:10Z;Nathália;47.47094;115419213;Venezuela; -2018-12-04T18:20:54Z;nathalia;369.4077;116290758;Venezuela; -2018-12-04T18:10:10Z;Ana;1345.732;116162520;Venezuela; -2018-12-04T17:35:34Z;nathalia;2.962778;116219341;Venezuela; -2018-12-04T17:31:35Z;Júlio;7312.386;115169180;Venezuela; -2018-12-04T17:06:42Z;Eduardo;2100.876;114730098;Venezuela; -2018-12-04T17:06:21Z;Sandra;5676.016;114734296;Venezuela; -2018-12-04T16:45:32Z;Sandra;187.6102;115797427;Venezuela; -2018-12-04T16:40:30Z;nathalia;326.2035;114501904;Venezuela; -2018-12-04T16:25:25Z;Nathália;604.7548;116084107;Venezuela; -2018-12-04T16:22:46Z;Sandra;6185.188;114803695;Venezuela; -2018-12-04T16:18:57Z;Ana;1855.018;115384273;Venezuela; -2018-12-04T16:13:35Z;Armando;5.115653;116099105;Venezuela; -2018-12-04T16:05:15Z;Eduardo;3233.567;114527279;Venezuela; -2018-12-04T15:54:56Z;Sandra;1228.089;115111294;Venezuela; -2018-12-04T15:32:35Z;Ana;303.3251;114765634;Venezuela; -2018-12-04T15:12:09Z;Armando;3865.453;114752248;Venezuela; -2018-12-04T14:31:02Z;Nathália;1896.67;116064519;Venezuela; -2018-12-04T14:30:15Z;Ana;820.0747;114773954;Venezuela; -2018-12-04T14:25:45Z;Armando;6110.077;115999102;Venezuela; -2018-12-04T14:00:17Z;nathalia;3003.617;114459612;Venezuela; -2018-12-04T13:28:46Z;Eduardo;1120.375;114710571;Venezuela; -2018-12-04T13:19:27Z;Júlio Cesar;244.2874;114283006;Venezuela; -2018-12-04T13:11:36Z;nathalia;3286.246;116149881;Venezuela; -2018-12-04T13:03:01Z;Armando;1560.669;115106637;Venezuela; -2018-12-04T12:56:26Z;Eduardo;931.3128;114989343;Venezuela; -2018-12-04T12:43:21Z;Júlio Cesar;1629.703;116373000;Venezuela; -2018-12-04T12:10:54Z;Sandra;6377.64;115172067;Venezuela; -2018-12-04T12:09:01Z;nathalia;205.4236;116019653;Venezuela; -2018-12-04T12:08:38Z;Nathália;901.3351;115238535;Venezuela; -2018-12-04T12:03:39Z;Júlio Cesar;2657.327;114768006;Venezuela; -2018-12-04T11:59:47Z;Júlio;5285.702;114382339;Venezuela; -2018-12-04T11:59:11Z;Júlio Cesar;302.602;115058377;Venezuela; -2018-12-04T11:56:44Z;Ana;3938.041;114954251;Venezuela; -2018-12-04T11:41:47Z;Júlio Cesar;6620.746;115322209;Venezuela; -2018-12-04T11:06:49Z;Ana;1016.049;114764354;Venezuela; -2018-12-04T10:56:30Z;Júlio;2744.924;114763344;Venezuela; -2018-12-04T10:41:55Z;Júlio Cesar;6356.375;115720195;Venezuela; -2018-12-04T10:12:36Z;Sandra;1964.888;116332555;Venezuela; -2018-12-04T10:08:23Z;Eduardo;3552.765;116365263;Venezuela; -2018-12-04T09:57:25Z;Júlio Cesar;8526.039;116131092;Venezuela; -2018-12-04T09:16:07Z;Eduardo;79.28809;115494013;Venezuela; -2018-12-04T08:48:03Z;Sandra;1746.532;115647944;Venezuela; -2018-12-04T08:37:43Z;nathalia;2536.543;116252349;Venezuela; -2018-12-04T08:04:47Z;Armando;187.6995;114478442;Venezuela; -2018-12-04T08:02:40Z;Eduardo;1263.727;114786003;Venezuela; -2018-12-04T07:41:16Z;Júlio Cesar;2434.184;115615740;Venezuela; -2018-12-04T07:38:51Z;Júlio Cesar;5859.83;115502322;Venezuela; -2018-12-04T07:37:52Z;Armando;518.3573;114573498;Venezuela; -2018-12-04T07:32:15Z;Armando;4192.657;114554258;Venezuela; -2018-12-04T07:19:21Z;Júlio Cesar;621.9966;114903229;Venezuela; -2018-12-04T07:11:24Z;nathalia;998.3185;115553460;Venezuela; -2018-12-04T06:36:44Z;Ana;1539.965;115020759;Venezuela; -2018-12-04T06:31:44Z;Armando;391.0229;114562530;Venezuela; -2018-12-04T06:29:07Z;Ana;936.8669;114532944;Venezuela; -2018-12-04T06:25:58Z;Eduardo;232.2531;115387874;Venezuela; -2018-12-04T05:34:44Z;Nathália;5568.812;114745071;Venezuela; -2018-12-04T05:33:36Z;Eduardo;2424.611;114430275;Venezuela; -2018-12-04T05:17:13Z;nathalia;157.2497;114766197;Venezuela; -2018-12-04T04:20:24Z;nathalia;1605.933;115633862;Venezuela; -2018-12-04T04:16:51Z;Nathália;485.0692;114920409;Venezuela; -2018-12-04T04:15:54Z;Ana;700.0338;115242599;Venezuela; -2018-12-04T04:14:29Z;Júlio Cesar;299.1279;115320182;Venezuela; -2018-12-04T03:47:20Z;Nathália;376.4574;114866930;Venezuela; -2018-12-04T03:23:34Z;Eduardo;114.8163;115825987;Venezuela; -2018-12-04T03:20:01Z;Júlio;1609.813;115229256;Venezuela; -2018-12-04T03:07:13Z;nathalia;270.0089;115803503;Venezuela; -2018-12-04T02:31:59Z;Júlio;2423.902;114562948;Venezuela; -2018-12-04T02:28:08Z;Ana;758.7885;115756038;Venezuela; -2018-12-04T02:25:24Z;Sandra;758.7467;114711966;Venezuela; -2018-12-04T02:00:12Z;Júlio Cesar;410.8857;115952437;Venezuela; -2018-12-04T00:59:41Z;Júlio Cesar;2857.156;115175955;Venezuela; -2018-12-04T00:52:41Z;Nathália;870.7256;115819025;Venezuela; -2018-12-04T00:32:16Z;Júlio Cesar;1917.93;115966315;Venezuela; -2018-12-04T00:26:35Z;Júlio;6078.481;115746403;Venezuela; -2018-12-04T00:19:47Z;Júlio Cesar;890.2263;115844946;Venezuela; -2018-12-04T00:16:42Z;Ana;1975.494;114393229;Venezuela; -2018-12-03T23:52:11Z;Nathália;4650.565;115470618;Venezuela; -2018-12-03T23:39:31Z;Sandra;316.9861;116363360;Venezuela; -2018-12-03T23:27:08Z;Ana;805.7791;114278902;Venezuela; -2018-12-03T23:19:50Z;Eduardo;6241.083;115617433;Venezuela; -2018-12-03T23:08:34Z;Nathália;2292.136;115442215;Venezuela; -2018-12-03T22:58:47Z;nathalia;5965.862;115079916;Venezuela; -2018-12-03T22:22:43Z;Armando;2123.866;114988204;Venezuela; -2018-12-03T22:06:46Z;Ana;204.6757;116222684;Venezuela; -2018-12-03T21:44:45Z;Eduardo;621.0723;116290285;Venezuela; -2018-12-03T21:38:00Z;nathalia;8194.038;114427453;Venezuela; -2018-12-03T21:05:12Z;Júlio;1117.155;114579743;Venezuela; -2018-12-03T20:55:16Z;Eduardo;1120.176;115440495;Venezuela; -2018-12-03T20:47:56Z;Armando;3765.272;114662413;Venezuela; -2018-12-03T20:43:51Z;nathalia;233.4675;115400863;Venezuela; -2018-12-03T20:18:13Z;Eduardo;1623.874;114353432;Venezuela; -2018-12-03T20:02:54Z;Júlio Cesar;2048.417;115863235;Venezuela; -2018-12-03T18:37:32Z;Nathália;1468.139;114592134;Venezuela; -2018-12-03T18:17:47Z;Júlio Cesar;3465.074;115485759;Venezuela; -2018-12-03T17:47:55Z;Júlio Cesar;1479.608;115338619;Venezuela; -2018-12-03T17:38:01Z;Nathália;244.5595;115013613;Venezuela; -2018-12-03T17:36:46Z;nathalia;781.0765;114574726;Venezuela; -2018-12-03T17:15:15Z;Sandra;4933.39;115949753;Venezuela; -2018-12-03T17:14:17Z;Sandra;1999.898;115873782;Venezuela; -2018-12-03T16:55:07Z;Armando;2367.028;115480871;Venezuela; -2018-12-03T16:47:15Z;Eduardo;686.9283;115340871;Venezuela; -2018-12-03T16:29:08Z;Júlio Cesar;1635.494;116061057;Venezuela; -2018-12-03T16:02:50Z;nathalia;1095.546;116047286;Venezuela; -2018-12-03T15:42:25Z;Nathália;1182.946;114619540;Venezuela; -2018-12-03T14:56:08Z;Armando;514.8906;115630887;Venezuela; -2018-12-03T14:55:57Z;Nathália;5105.896;114456060;Venezuela; -2018-12-03T14:42:04Z;Ana;367.2021;116046601;Venezuela; -2018-12-03T14:22:39Z;Eduardo;442.4687;114302640;Venezuela; -2018-12-03T14:07:45Z;nathalia;1417.542;115009624;Venezuela; -2018-12-03T14:00:00Z;Júlio;1251.108;115009834;Venezuela; -2018-12-03T13:53:23Z;nathalia;6087.193;116250362;Venezuela; -2018-12-03T13:25:18Z;Eduardo;3818.89;115296326;Venezuela; -2018-12-03T13:19:56Z;Júlio Cesar;8340.291;116174124;Venezuela; -2018-12-03T13:18:33Z;Júlio Cesar;141.612;116302999;Venezuela; -2018-12-03T13:07:46Z;Armando;1931.278;116182171;Venezuela; -2018-12-03T12:44:14Z;Ana;4272.803;115316709;Venezuela; -2018-12-03T12:31:44Z;Armando;58.37475;114448273;Venezuela; -2018-12-03T12:26:02Z;Armando;911.1604;115336836;Venezuela; -2018-12-03T12:26:01Z;Júlio Cesar;1304.439;115131872;Venezuela; -2018-12-03T12:24:09Z;nathalia;2152.558;115683377;Venezuela; -2018-12-03T12:20:24Z;Eduardo;1602.714;115083334;Venezuela; -2018-12-03T12:19:07Z;Júlio Cesar;1341.044;116235672;Venezuela; -2018-12-03T11:55:08Z;Nathália;2855.464;114785876;Venezuela; -2018-12-03T11:12:26Z;Júlio Cesar;6011.328;114315383;Venezuela; -2018-12-03T10:54:08Z;Nathália;741.2383;116009402;Venezuela; -2018-12-03T10:49:10Z;Ana;1282.937;116141134;Venezuela; -2018-12-03T10:44:11Z;Júlio;69.15612;116207589;Venezuela; -2018-12-03T09:18:01Z;Ana;3197.689;114557863;Venezuela; -2018-12-03T09:11:40Z;Júlio;206.0544;114503981;Venezuela; -2018-12-03T09:11:00Z;nathalia;2158.34;115731760;Venezuela; -2018-12-03T08:47:32Z;Júlio Cesar;10219.59;115240030;Venezuela; -2018-12-03T08:16:06Z;Eduardo;2601.733;114999929;Venezuela; -2018-12-03T08:14:03Z;Júlio Cesar;3669.486;115855240;Venezuela; -2018-12-03T07:58:48Z;Sandra;678.6916;115450788;Venezuela; -2018-12-03T07:55:59Z;nathalia;817.3187;116297933;Venezuela; -2018-12-03T07:54:13Z;Júlio Cesar;2636.239;116313611;Venezuela; -2018-12-03T07:22:42Z;Armando;1138.966;115831691;Venezuela; -2018-12-03T07:21:52Z;Nathália;1634.902;115409736;Venezuela; -2018-12-03T07:13:44Z;Júlio Cesar;4119.563;115036744;Venezuela; -2018-12-03T06:44:07Z;Júlio;1529.268;114970101;Venezuela; -2018-12-03T06:35:18Z;Armando;555.6699;116368129;Venezuela; -2018-12-03T06:33:40Z;Júlio Cesar;1279.717;114351104;Venezuela; -2018-12-03T05:57:22Z;Ana;7991.533;114686990;Venezuela; -2018-12-03T05:56:14Z;Júlio;3142.884;115646815;Venezuela; -2018-12-03T05:53:50Z;Armando;1240.676;115714076;Venezuela; -2018-12-03T05:49:10Z;Eduardo;3355.064;114941820;Venezuela; -2018-12-03T05:33:32Z;Armando;1447.269;116158446;Venezuela; -2018-12-03T05:32:06Z;nathalia;949.561;114654506;Venezuela; -2018-12-03T05:31:14Z;Ana;1308.63;114326844;Venezuela; -2018-12-03T04:06:14Z;Eduardo;5062.106;116005627;Venezuela; -2018-12-03T03:54:53Z;Júlio Cesar;1373.241;114906478;Venezuela; -2018-12-03T03:52:58Z;nathalia;7359.758;114507102;Venezuela; -2018-12-03T03:35:57Z;Eduardo;3617.982;116009277;Venezuela; -2018-12-03T03:17:16Z;Júlio Cesar;580.2724;114801095;Venezuela; -2018-12-03T03:12:15Z;Eduardo;2626.101;114797004;Venezuela; -2018-12-03T03:09:22Z;Sandra;1969.579;116078967;Venezuela; -2018-12-03T03:01:47Z;Armando;1596.035;114883102;Venezuela; -2018-12-03T03:01:36Z;Sandra;1103.671;114519559;Venezuela; -2018-12-03T02:49:45Z;Ana;735.3111;114463907;Venezuela; -2018-12-03T02:38:43Z;Júlio Cesar;2356.802;114629976;Venezuela; -2018-12-03T02:36:54Z;Júlio Cesar;2415.828;116046163;Venezuela; -2018-12-03T01:58:55Z;Eduardo;4345.054;114567961;Venezuela; -2018-12-03T01:52:51Z;Júlio;118.2369;115396774;Venezuela; -2018-12-03T01:42:40Z;Nathália;393.1799;115536770;Venezuela; -2018-12-03T01:33:26Z;Nathália;6355.922;114277584;Venezuela; -2018-12-03T01:12:47Z;nathalia;66.54505;116258309;Venezuela; -2018-12-03T00:54:09Z;Júlio Cesar;4524.065;115616428;Venezuela; -2018-12-03T00:53:23Z;nathalia;3823.062;116088198;Venezuela; -2018-12-03T00:42:44Z;Eduardo;3002.234;114603167;Venezuela; -2018-12-03T00:09:56Z;Júlio Cesar;143.1422;115275062;Venezuela; -2018-12-02T23:49:53Z;nathalia;2151.746;114251745;Venezuela; -2018-12-02T23:26:35Z;Armando;3091.08;114890519;Venezuela; -2018-12-02T23:13:35Z;Ana;1732.408;115174760;Venezuela; -2018-12-02T22:57:46Z;nathalia;1990.902;115769884;Venezuela; -2018-12-02T22:16:06Z;Sandra;3314.426;115435759;Venezuela; -2018-12-02T22:16:05Z;Júlio Cesar;33.85795;116380989;Venezuela; -2018-12-02T22:15:04Z;Armando;2350.407;114897814;Venezuela; -2018-12-02T22:01:50Z;Armando;987.2077;115204123;Venezuela; -2018-12-02T21:53:14Z;Sandra;46.93743;114829829;Venezuela; -2018-12-02T21:52:48Z;nathalia;710.97;114566186;Venezuela; -2018-12-02T21:51:49Z;Sandra;921.345;115246753;Venezuela; -2018-12-02T21:36:32Z;nathalia;134.7018;115881221;Venezuela; -2018-12-02T21:12:21Z;Nathália;466.2135;116366655;Venezuela; -2018-12-02T21:10:47Z;Júlio;353.4865;114693318;Venezuela; -2018-12-02T20:56:52Z;Ana;2337.984;114309581;Venezuela; -2018-12-02T20:33:06Z;Armando;6075.521;116059330;Venezuela; -2018-12-02T20:12:50Z;Armando;619.3632;115587201;Venezuela; -2018-12-02T19:58:41Z;Armando;288.0765;115650839;Venezuela; -2018-12-02T19:49:30Z;Nathália;112.4581;114354593;Venezuela; -2018-12-02T19:48:00Z;Eduardo;185.4073;114889535;Venezuela; -2018-12-02T19:35:10Z;Eduardo;12629.62;114545535;Venezuela; -2018-12-02T19:20:57Z;Armando;48.30103;116087906;Venezuela; -2018-12-02T18:52:36Z;Sandra;1600.703;115454797;Venezuela; -2018-12-02T18:43:29Z;Júlio;565.8108;114448642;Venezuela; -2018-12-02T18:03:28Z;Júlio;2522.869;114683817;Venezuela; -2018-12-02T17:57:17Z;nathalia;863.7273;115891912;Venezuela; -2018-12-02T17:45:47Z;Armando;3700.457;114523848;Venezuela; -2018-12-02T17:43:55Z;Armando;2159.205;116370724;Venezuela; -2018-12-02T17:17:38Z;Armando;661.2969;115760241;Venezuela; -2018-12-02T17:08:50Z;Júlio;1017.832;115274233;Venezuela; -2018-12-02T16:57:16Z;Armando;4417.711;116321758;Venezuela; -2018-12-02T16:46:40Z;Sandra;7241.754;115668914;Venezuela; -2018-12-02T16:28:16Z;Eduardo;227.0499;114628005;Venezuela; -2018-12-02T16:10:32Z;Sandra;2763.778;116062971;Venezuela; -2018-12-02T15:32:39Z;Nathália;6529.08;114855477;Venezuela; -2018-12-02T15:31:10Z;Armando;877.0218;115377371;Venezuela; -2018-12-02T15:06:42Z;Júlio;6347.423;114617512;Venezuela; -2018-12-02T14:40:38Z;Eduardo;2451.713;115138979;Venezuela; -2018-12-02T14:17:26Z;Eduardo;5144.637;114902479;Venezuela; -2018-12-02T13:50:48Z;Nathália;5549.077;114689966;Venezuela; -2018-12-02T12:38:21Z;nathalia;2872.341;115561650;Venezuela; -2018-12-02T12:27:01Z;Ana;339.2714;115358830;Venezuela; -2018-12-02T12:14:02Z;Eduardo;2920.764;115816202;Venezuela; -2018-12-02T11:33:58Z;Júlio Cesar;233.6709;115985112;Venezuela; -2018-12-02T11:28:14Z;Armando;1001.999;116243782;Venezuela; -2018-12-02T11:08:22Z;Júlio;1583.358;114308772;Venezuela; -2018-12-02T11:05:34Z;Nathália;3771.131;116153005;Venezuela; -2018-12-02T10:41:10Z;Sandra;5068.703;115809391;Venezuela; -2018-12-02T09:37:39Z;Eduardo;3668.495;115995416;Venezuela; -2018-12-02T09:31:17Z;Júlio;6263.2;115353646;Venezuela; -2018-12-02T09:30:20Z;nathalia;1742.641;115692078;Venezuela; -2018-12-02T09:22:40Z;Sandra;2211.692;116003357;Venezuela; -2018-12-02T09:19:46Z;Ana;149.4036;115868851;Venezuela; -2018-12-02T09:15:47Z;Armando;7241.878;115385365;Venezuela; -2018-12-02T08:47:23Z;Sandra;426.5519;114734723;Venezuela; -2018-12-02T08:45:59Z;Júlio Cesar;1453.444;114927724;Venezuela; -2018-12-02T08:38:18Z;nathalia;1501.015;115523895;Venezuela; -2018-12-02T08:35:51Z;Armando;5721.042;115918926;Venezuela; -2018-12-02T07:58:45Z;Eduardo;1322.256;115853435;Venezuela; -2018-12-02T07:42:38Z;Júlio;2302.963;114864022;Venezuela; -2018-12-02T07:29:09Z;Sandra;37.41743;115104461;Venezuela; -2018-12-02T06:45:14Z;Sandra;5035.725;114531317;Venezuela; -2018-12-02T06:31:33Z;Nathália;315.5849;116108149;Venezuela; -2018-12-02T06:19:40Z;Júlio;1748.557;114720031;Venezuela; -2018-12-02T05:37:25Z;Sandra;703.5446;115307305;Venezuela; -2018-12-02T05:30:59Z;Nathália;3112.587;114383779;Venezuela; -2018-12-02T05:20:50Z;Eduardo;1536.802;115216135;Venezuela; -2018-12-02T05:13:23Z;nathalia;1025.439;115138818;Venezuela; -2018-12-02T05:01:37Z;Ana;2771.123;114339651;Venezuela; -2018-12-02T04:50:15Z;Júlio;422.8832;115919472;Venezuela; -2018-12-02T03:59:00Z;Armando;958.8319;115278484;Venezuela; -2018-12-02T03:53:19Z;Ana;4198.108;114422132;Venezuela; -2018-12-02T03:51:20Z;Júlio;3201.128;114577833;Venezuela; -2018-12-02T03:01:33Z;Nathália;765.3968;115999379;Venezuela; -2018-12-02T02:33:17Z;nathalia;2298.124;115054174;Venezuela; -2018-12-02T02:33:02Z;Ana;1592.258;115076219;Venezuela; -2018-12-02T02:21:24Z;Sandra;417.8419;114272229;Venezuela; -2018-12-02T02:13:18Z;Nathália;5664.145;114609635;Venezuela; -2018-12-02T01:32:42Z;Armando;2618.694;114605309;Venezuela; -2018-12-02T01:26:03Z;Nathália;1303.221;114608473;Venezuela; -2018-12-02T01:03:35Z;Júlio;1029.301;115386908;Venezuela; -2018-12-02T01:02:59Z;Júlio;190.88;115728407;Venezuela; -2018-12-02T00:59:34Z;Armando;834.3599;114300205;Venezuela; -2018-12-02T00:26:37Z;Sandra;4078.655;114539059;Venezuela; -2018-12-02T00:01:56Z;Nathália;167.7778;115185833;Venezuela; -2018-12-01T23:32:52Z;Júlio;22.93009;116225681;Venezuela; -2018-12-01T23:19:43Z;nathalia;9236.692;114742929;Venezuela; -2018-12-01T23:18:45Z;Nathália;124.9958;115360092;Venezuela; -2018-12-01T23:18:16Z;Armando;197.1906;115079861;Venezuela; -2018-12-01T23:13:12Z;Armando;4646.12;116172339;Venezuela; -2018-12-01T23:10:29Z;Ana;588.559;114312042;Venezuela; -2018-12-01T23:09:14Z;Eduardo;3982.068;114857470;Venezuela; -2018-12-01T23:06:41Z;Ana;1681.253;115130602;Venezuela; -2018-12-01T23:05:31Z;Júlio;291.4358;115242249;Venezuela; -2018-12-01T23:04:07Z;Sandra;451.952;115323449;Venezuela; -2018-12-01T22:59:48Z;Júlio Cesar;1224.356;114938379;Venezuela; -2018-12-01T22:59:08Z;Ana;321.222;116181505;Venezuela; -2018-12-01T22:43:37Z;Ana;6472.893;114844469;Venezuela; -2018-12-01T22:29:57Z;Armando;3307.643;116056573;Venezuela; -2018-12-01T22:23:16Z;Júlio Cesar;4268.848;114254532;Venezuela; -2018-12-01T21:58:34Z;Armando;3118.626;115996644;Venezuela; -2018-12-01T21:54:31Z;Ana;1673.521;114725552;Venezuela; -2018-12-01T21:34:47Z;Armando;1757.4;114900703;Venezuela; -2018-12-01T21:29:20Z;nathalia;1184.87;114937856;Venezuela; -2018-12-01T21:06:27Z;Eduardo;2470.095;114589869;Venezuela; -2018-12-01T20:58:55Z;Júlio;2656.032;115759630;Venezuela; -2018-12-01T20:41:14Z;Júlio Cesar;394.739;115360548;Venezuela; -2018-12-01T20:15:59Z;Júlio;88.82778;114400378;Venezuela; -2018-12-01T20:12:15Z;nathalia;4842.947;116300565;Venezuela; -2018-12-01T19:59:19Z;Júlio Cesar;2856.66;116284048;Venezuela; -2018-12-01T19:52:40Z;Armando;1473.734;116068837;Venezuela; -2018-12-01T19:46:31Z;Júlio Cesar;2141.855;115598750;Venezuela; -2018-12-01T19:35:16Z;Júlio Cesar;3992.427;115320453;Venezuela; -2018-12-01T19:30:18Z;Armando;124.6588;114378480;Venezuela; -2018-12-01T19:25:21Z;Sandra;3156.778;115969402;Venezuela; -2018-12-01T18:57:27Z;Júlio Cesar;254.091;115849808;Venezuela; -2018-12-01T18:25:48Z;Eduardo;9.681542;114509468;Venezuela; -2018-12-01T18:12:42Z;Júlio Cesar;491.8501;116032213;Venezuela; -2018-12-01T17:12:26Z;Sandra;1441.181;115934070;Venezuela; -2018-12-01T16:55:26Z;Eduardo;1133.85;115012522;Venezuela; -2018-12-01T16:39:21Z;Júlio Cesar;2138.218;115099035;Venezuela; -2018-12-01T16:11:02Z;Nathália;1874.311;114560413;Venezuela; -2018-12-01T16:08:29Z;Júlio;4364.402;116214645;Venezuela; -2018-12-01T15:24:48Z;Eduardo;2891.414;116025154;Venezuela; -2018-12-01T15:20:59Z;Sandra;203.9013;115189186;Venezuela; -2018-12-01T15:16:59Z;Armando;2740.46;115904168;Venezuela; -2018-12-01T15:06:41Z;Ana;35.36481;114720455;Venezuela; -2018-12-01T14:59:26Z;Armando;2919.203;115840355;Venezuela; -2018-12-01T14:17:34Z;Ana;3285.648;114628540;Venezuela; -2018-12-01T14:17:16Z;Ana;278.6956;115445850;Venezuela; -2018-12-01T14:15:25Z;Júlio Cesar;294.265;115587505;Venezuela; -2018-12-01T14:05:28Z;Armando;216.9971;115490789;Venezuela; -2018-12-01T13:43:44Z;Nathália;1929.54;116070599;Venezuela; -2018-12-01T13:42:43Z;Sandra;1844.484;114573513;Venezuela; -2018-12-01T13:42:26Z;Sandra;8563.995;115574617;Venezuela; -2018-12-01T13:28:25Z;Nathália;14.72946;115070183;Venezuela; -2018-12-01T13:20:14Z;Nathália;930.6732;114731278;Venezuela; -2018-12-01T12:56:17Z;Ana;830.8517;114720577;Venezuela; -2018-12-01T12:50:23Z;nathalia;576.0013;115708018;Venezuela; -2018-12-01T12:45:19Z;Eduardo;3129.62;114953524;Venezuela; -2018-12-01T12:29:14Z;nathalia;1555.522;115598225;Venezuela; -2018-12-01T12:06:12Z;Nathália;2166.809;115591818;Venezuela; -2018-12-01T11:17:47Z;Eduardo;3770.301;116226947;Venezuela; -2018-12-01T10:43:41Z;Eduardo;2492.779;114850947;Venezuela; -2018-12-01T10:22:53Z;Nathália;430.8335;114882564;Venezuela; -2018-12-01T10:22:35Z;nathalia;1757.537;115769931;Venezuela; -2018-12-01T10:17:12Z;Nathália;2257.558;116356982;Venezuela; -2018-12-01T09:57:02Z;Júlio;1792.322;115174681;Venezuela; -2018-12-01T09:51:43Z;Júlio Cesar;79.03272;115411929;Venezuela; -2018-12-01T09:50:00Z;Armando;123.0741;114742009;Venezuela; -2018-12-01T09:47:49Z;nathalia;1413.461;114234951;Venezuela; -2018-12-01T09:42:12Z;nathalia;2732.605;115866802;Venezuela; -2018-12-01T09:18:47Z;Armando;531.5108;114419275;Venezuela; -2018-12-01T09:16:07Z;Nathália;2869.093;114760520;Venezuela; -2018-12-01T09:11:48Z;nathalia;1824.531;114886542;Venezuela; -2018-12-01T09:10:04Z;Armando;740.5788;115126271;Venezuela; -2018-12-01T08:54:50Z;Ana;683.2132;115542687;Venezuela; -2018-12-01T08:15:09Z;Eduardo;805.975;115719605;Venezuela; -2018-12-01T08:07:55Z;Júlio Cesar;1885.966;114466351;Venezuela; -2018-12-01T07:45:37Z;nathalia;680.1793;114698173;Venezuela; -2018-12-01T07:44:49Z;Eduardo;2103.344;115018825;Venezuela; -2018-12-01T07:15:31Z;Nathália;570.6451;115493692;Venezuela; -2018-12-01T06:42:15Z;Nathália;1135.408;114278090;Venezuela; -2018-12-01T05:30:35Z;nathalia;939.0191;114266037;Venezuela; -2018-12-01T04:16:33Z;Nathália;9621.999;114750196;Venezuela; -2018-12-01T03:55:18Z;Nathália;186.4706;116016753;Venezuela; -2018-12-01T03:33:07Z;Júlio Cesar;242.1254;114357828;Venezuela; -2018-12-01T03:00:07Z;Júlio;3549.122;115735656;Venezuela; -2018-12-01T02:58:53Z;Ana;2515.969;114371534;Venezuela; -2018-12-01T02:51:47Z;Sandra;37.34107;114811897;Venezuela; -2018-12-01T00:37:40Z;Júlio Cesar;3461.197;116198039;Venezuela; -2018-12-01T00:28:34Z;Ana;5067.467;116344510;Venezuela; -2018-12-01T00:26:57Z;Sandra;5689.935;115078308;Venezuela; -2018-11-30T23:56:34Z;Sandra;81.66195;114976543;Venezuela; -2018-11-30T23:25:50Z;Sandra;348.3701;115373980;Venezuela; -2018-11-30T23:24:15Z;nathalia;6054.483;114330161;Venezuela; -2018-11-30T23:13:03Z;Eduardo;2408.633;115970475;Venezuela; -2018-11-30T23:09:26Z;Júlio;1124.728;115884015;Venezuela; -2018-11-30T23:02:19Z;Sandra;307.5983;114562370;Venezuela; -2018-11-30T22:54:08Z;Júlio Cesar;2404.37;115882516;Venezuela; -2018-11-30T22:30:15Z;Júlio;798.9089;115855812;Venezuela; -2018-11-30T22:21:00Z;Júlio Cesar;2007.851;114276470;Venezuela; -2018-11-30T22:05:34Z;Eduardo;7129.725;114320962;Venezuela; -2018-11-30T22:02:48Z;Nathália;1246.033;115567418;Venezuela; -2018-11-30T22:00:19Z;Eduardo;3071.263;115800947;Venezuela; -2018-11-30T21:53:11Z;Nathália;1598.361;115288338;Venezuela; -2018-11-30T21:48:08Z;Júlio;2602.359;114550936;Venezuela; -2018-11-30T21:32:24Z;Ana;232.9623;115814571;Venezuela; -2018-11-30T21:25:03Z;Júlio Cesar;504.5398;114986277;Venezuela; -2018-11-30T21:15:14Z;Ana;247.5042;115521111;Venezuela; -2018-11-30T20:52:26Z;Nathália;3861.297;114579810;Venezuela; -2018-11-30T20:50:20Z;Armando;2522.85;115527303;Venezuela; -2018-11-30T20:46:22Z;Armando;3340.15;115848025;Venezuela; -2018-11-30T20:41:28Z;Júlio Cesar;896.2968;115187089;Venezuela; -2018-11-30T20:36:05Z;Ana;4301.364;116125855;Venezuela; -2018-11-30T20:35:38Z;Armando;3387.904;115322466;Venezuela; -2018-11-30T20:25:03Z;Armando;344.4047;115652740;Venezuela; -2018-11-30T20:19:52Z;Armando;167.8375;114237706;Venezuela; -2018-11-30T20:16:50Z;Sandra;2384.887;114394218;Venezuela; -2018-11-30T20:16:32Z;Júlio Cesar;3165.61;115236379;Venezuela; -2018-11-30T20:14:29Z;Júlio Cesar;2013.512;115853625;Venezuela; -2018-11-30T20:11:18Z;Júlio Cesar;149.0721;115564480;Venezuela; -2018-11-30T19:55:11Z;nathalia;3505.765;116304476;Venezuela; -2018-11-30T19:51:15Z;nathalia;84.60612;115159594;Venezuela; -2018-11-30T19:14:02Z;Sandra;5471.592;115053783;Venezuela; -2018-11-30T19:11:00Z;Sandra;4728.406;116218645;Venezuela; -2018-11-30T19:08:40Z;Ana;4190.888;114385592;Venezuela; -2018-11-30T18:55:19Z;Nathália;53.11747;114443587;Venezuela; -2018-11-30T18:44:58Z;Eduardo;85.92426;116276519;Venezuela; -2018-11-30T18:17:49Z;Júlio Cesar;4621.029;114791345;Venezuela; -2018-11-30T18:05:47Z;Eduardo;594.6457;114875870;Venezuela; -2018-11-30T18:00:15Z;Eduardo;465.4528;115480621;Venezuela; -2018-11-30T17:54:47Z;Eduardo;3087.801;114385201;Venezuela; -2018-11-30T17:38:51Z;Armando;950.3661;115327413;Venezuela; -2018-11-30T17:37:04Z;Sandra;29.16153;115904629;Venezuela; -2018-11-30T17:33:38Z;Nathália;3360.682;115254556;Venezuela; -2018-11-30T17:13:49Z;Eduardo;622.6259;116346143;Venezuela; -2018-11-30T17:07:20Z;Júlio;1922.107;115878870;Venezuela; -2018-11-30T16:52:56Z;Júlio Cesar;3303.44;114925287;Venezuela; -2018-11-30T16:43:38Z;Nathália;3018.459;115124652;Venezuela; -2018-11-30T16:32:19Z;Júlio Cesar;525.4593;115813740;Venezuela; -2018-11-30T16:11:43Z;Eduardo;8651.356;114465107;Venezuela; -2018-11-30T16:10:49Z;Armando;647.2921;116240535;Venezuela; -2018-11-30T15:36:06Z;Eduardo;48.85312;114521250;Venezuela; -2018-11-30T15:16:40Z;Sandra;6002.973;114527664;Venezuela; -2018-11-30T15:12:45Z;Sandra;3775.988;116225113;Venezuela; -2018-11-30T14:39:18Z;Júlio;1627.239;115214228;Venezuela; -2018-11-30T14:14:28Z;Eduardo;580.9434;116190141;Venezuela; -2018-11-30T14:04:18Z;Júlio Cesar;1127.384;115679622;Venezuela; -2018-11-30T13:52:27Z;Nathália;1935.387;114312851;Venezuela; -2018-11-30T13:52:02Z;Júlio;1169.586;116270254;Venezuela; -2018-11-30T13:51:52Z;Sandra;159.9222;114884900;Venezuela; -2018-11-30T13:29:40Z;Sandra;6300.828;114568080;Venezuela; -2018-11-30T13:25:18Z;Nathália;2456.526;115448094;Venezuela; -2018-11-30T13:18:44Z;nathalia;1687.847;114884177;Venezuela; -2018-11-30T13:11:52Z;Nathália;766.1118;115741516;Venezuela; -2018-11-30T12:36:54Z;nathalia;642.7774;115436021;Venezuela; -2018-11-30T12:31:14Z;nathalia;19.09406;115604990;Venezuela; -2018-11-30T12:12:22Z;Armando;4569.223;114689818;Venezuela; -2018-11-30T12:10:48Z;Eduardo;1885.798;115650219;Venezuela; -2018-11-30T11:57:10Z;Sandra;1645.793;115767010;Venezuela; -2018-11-30T11:45:35Z;Ana;3.581695;114564798;Venezuela; -2018-11-30T11:42:12Z;nathalia;55.30901;116045050;Venezuela; -2018-11-30T11:35:49Z;Ana;2902.146;114593689;Venezuela; -2018-11-30T11:29:36Z;Júlio Cesar;4356.399;116145969;Venezuela; -2018-11-30T11:23:36Z;Nathália;656.5882;115103880;Venezuela; -2018-11-30T10:43:38Z;nathalia;347.2128;116023631;Venezuela; -2018-11-30T10:38:49Z;Nathália;16.52255;115336121;Venezuela; -2018-11-30T10:06:44Z;Sandra;144.2213;115084752;Venezuela; -2018-11-30T09:54:36Z;Armando;462.7967;114954089;Venezuela; -2018-11-30T09:45:01Z;Armando;364.2448;115555553;Venezuela; -2018-11-30T09:18:42Z;Ana;2065.371;114592323;Venezuela; -2018-11-30T09:04:34Z;Armando;3325.8;114601484;Venezuela; -2018-11-30T08:40:35Z;Eduardo;1074.819;115122488;Venezuela; -2018-11-30T08:37:13Z;Sandra;946.6545;115299552;Venezuela; -2018-11-30T08:21:09Z;Eduardo;436.9754;114815402;Venezuela; -2018-11-30T07:59:10Z;Eduardo;675.1765;115805188;Venezuela; -2018-11-30T07:32:49Z;Nathália;1382.963;116251726;Venezuela; -2018-11-30T07:20:04Z;Sandra;5374.255;114262688;Venezuela; -2018-11-30T07:14:22Z;Eduardo;803.1842;114311803;Venezuela; -2018-11-30T07:10:04Z;Sandra;5874.002;114527820;Venezuela; -2018-11-30T07:06:54Z;Júlio;87.50341;114592671;Venezuela; -2018-11-30T07:06:00Z;Nathália;7280.163;115960663;Venezuela; -2018-11-30T06:35:32Z;Sandra;180.1074;114615135;Venezuela; -2018-11-30T06:23:51Z;nathalia;565.166;114376279;Venezuela; -2018-11-30T06:15:50Z;Ana;3947.154;115067423;Venezuela; -2018-11-30T05:54:22Z;Armando;2281.736;114346467;Venezuela; -2018-11-30T05:43:15Z;Sandra;3778.786;116003971;Venezuela; -2018-11-30T05:22:38Z;nathalia;5849.439;115629835;Venezuela; -2018-11-30T05:11:53Z;Eduardo;380.3348;116090853;Venezuela; -2018-11-30T05:07:17Z;Sandra;261.407;116019353;Venezuela; -2018-11-30T04:39:16Z;Eduardo;2115.335;115039283;Venezuela; -2018-11-30T03:30:08Z;Ana;615.7823;114542760;Venezuela; -2018-11-30T03:28:24Z;Eduardo;144.4867;115743268;Venezuela; -2018-11-30T02:55:12Z;Ana;2573.299;116347535;Venezuela; -2018-11-30T02:28:07Z;Eduardo;1381.852;115223091;Venezuela; -2018-11-30T02:25:59Z;Júlio;911.7275;115643962;Venezuela; -2018-11-30T01:06:10Z;Sandra;2298.143;115821821;Venezuela; -2018-11-30T00:53:55Z;Eduardo;4049.768;114841619;Venezuela; -2018-11-30T00:50:49Z;Nathália;1754.613;114556448;Venezuela; -2018-11-30T00:17:57Z;Nathália;3269.662;115688851;Venezuela; -2018-11-29T23:28:40Z;Armando;3451.503;115785163;Venezuela; -2018-11-29T23:17:23Z;Ana;2447.993;114332947;Venezuela; -2018-11-29T23:02:31Z;Júlio Cesar;7050.488;115208116;Venezuela; -2018-11-29T22:34:30Z;Júlio Cesar;1408.252;114947816;Venezuela; -2018-11-29T22:05:23Z;Nathália;3882.943;115767624;Venezuela; -2018-11-29T21:54:19Z;Júlio;735.0303;115452677;Venezuela; -2018-11-29T21:24:26Z;Júlio Cesar;4206.865;114820927;Venezuela; -2018-11-29T21:08:01Z;Nathália;197.2228;114535804;Venezuela; -2018-11-29T20:36:53Z;Sandra;6021.5;115332286;Venezuela; -2018-11-29T20:33:15Z;Ana;1655.051;114230262;Venezuela; -2018-11-29T20:27:28Z;Júlio Cesar;4251.858;115429350;Venezuela; -2018-11-29T20:13:05Z;Eduardo;2605.055;115985728;Venezuela; -2018-11-29T19:51:33Z;nathalia;771.905;115103440;Venezuela; -2018-11-29T19:51:30Z;Armando;8109.522;114789341;Venezuela; -2018-11-29T19:46:09Z;Sandra;1425.904;115294905;Venezuela; -2018-11-29T19:46:04Z;Armando;974.98;114626772;Venezuela; -2018-11-29T19:46:01Z;Nathália;6070.905;115037899;Venezuela; -2018-11-29T19:15:42Z;Sandra;2019.23;115720171;Venezuela; -2018-11-29T18:44:11Z;Eduardo;1480.404;115070587;Venezuela; -2018-11-29T18:34:27Z;Júlio;2254.991;116207102;Venezuela; -2018-11-29T18:31:51Z;nathalia;2196.691;115269585;Venezuela; -2018-11-29T18:28:54Z;Júlio;1770.16;116166586;Venezuela; -2018-11-29T18:13:37Z;Sandra;5545.141;115785841;Venezuela; -2018-11-29T17:57:37Z;Sandra;479.1004;114919507;Venezuela; -2018-11-29T17:40:35Z;Nathália;3969.089;115443584;Venezuela; -2018-11-29T17:35:32Z;Armando;5931.59;116282838;Venezuela; -2018-11-29T17:15:21Z;Júlio;52.99663;115074389;Venezuela; -2018-11-29T17:15:19Z;Júlio Cesar;5275.108;114314552;Venezuela; -2018-11-29T16:52:51Z;Júlio;7338.542;115735139;Venezuela; -2018-11-29T16:51:31Z;Ana;4559.563;114790111;Venezuela; -2018-11-29T16:26:08Z;Júlio Cesar;340.4604;116399520;Venezuela; -2018-11-29T16:22:16Z;Nathália;946.748;115770915;Venezuela; -2018-11-29T15:59:51Z;Armando;2507.959;115113169;Venezuela; -2018-11-29T15:45:30Z;Nathália;1939.303;115909341;Venezuela; -2018-11-29T15:03:12Z;Sandra;1622.039;115627310;Venezuela; -2018-11-29T14:27:00Z;Eduardo;5261.629;115995263;Venezuela; -2018-11-29T14:22:37Z;nathalia;4658.991;115582938;Venezuela; -2018-11-29T14:14:24Z;nathalia;2777.832;115401496;Venezuela; -2018-11-29T14:13:21Z;Sandra;2534.286;115627347;Venezuela; -2018-11-29T14:11:28Z;Nathália;3820.948;114779488;Venezuela; -2018-11-29T14:10:23Z;Nathália;1028.25;115575419;Venezuela; -2018-11-29T14:08:03Z;nathalia;3274.109;114609356;Venezuela; -2018-11-29T13:58:42Z;Ana;5526.314;114430378;Venezuela; -2018-11-29T13:46:22Z;Nathália;4085.562;116318493;Venezuela; -2018-11-29T13:35:26Z;Armando;1603.724;115433298;Venezuela; -2018-11-29T13:27:46Z;Júlio Cesar;2379.26;114968209;Venezuela; -2018-11-29T13:07:03Z;Sandra;553.1007;115149324;Venezuela; -2018-11-29T12:53:10Z;Nathália;2405.04;114816421;Venezuela; -2018-11-29T12:44:04Z;Júlio Cesar;231.6038;116173215;Venezuela; -2018-11-29T12:35:02Z;Nathália;5826.086;115610461;Venezuela; -2018-11-29T12:33:48Z;Júlio Cesar;4356.511;115536606;Venezuela; -2018-11-29T12:30:20Z;Ana;1359.388;114776321;Venezuela; -2018-11-29T12:26:21Z;Júlio Cesar;1689.103;114667294;Venezuela; -2018-11-29T12:19:25Z;Ana;1344.158;114459279;Venezuela; -2018-11-29T12:03:48Z;Armando;798.4896;114315115;Venezuela; -2018-11-29T11:57:25Z;Júlio;2982.464;115508496;Venezuela; -2018-11-29T11:20:58Z;Eduardo;143.5651;114830246;Venezuela; -2018-11-29T10:53:41Z;Ana;3991.937;116312635;Venezuela; -2018-11-29T10:42:47Z;Júlio;477.1976;116151831;Venezuela; -2018-11-29T10:32:45Z;Nathália;4632.535;114321863;Venezuela; -2018-11-29T09:47:55Z;Eduardo;317.5367;114684420;Venezuela; -2018-11-29T09:38:20Z;nathalia;7325.469;114516910;Venezuela; -2018-11-29T09:30:20Z;Sandra;230.9302;115128202;Venezuela; -2018-11-29T08:40:45Z;nathalia;1238.594;114742005;Venezuela; -2018-11-29T08:35:59Z;nathalia;2561.363;114612692;Venezuela; -2018-11-29T07:09:25Z;Sandra;1097.454;115467677;Venezuela; -2018-11-29T07:03:54Z;Nathália;793.8636;114829445;Venezuela; -2018-11-29T06:40:40Z;Nathália;373.7296;115990515;Venezuela; -2018-11-29T06:36:00Z;Eduardo;2957.379;116215027;Venezuela; -2018-11-29T06:16:34Z;Sandra;133.0239;116252440;Venezuela; -2018-11-29T06:07:55Z;Nathália;47.1769;114223118;Venezuela; -2018-11-29T05:47:17Z;Ana;363.2712;115968022;Venezuela; -2018-11-29T05:23:26Z;Ana;1295.916;115691086;Venezuela; -2018-11-29T05:23:02Z;Nathália;1555.964;114652228;Venezuela; -2018-11-29T05:16:25Z;Armando;3506.662;115410165;Venezuela; -2018-11-29T05:13:53Z;Sandra;4031.304;114567653;Venezuela; -2018-11-29T05:09:27Z;Nathália;2403.791;115329539;Venezuela; -2018-11-29T04:48:31Z;nathalia;319.3784;115077131;Venezuela; -2018-11-29T04:43:10Z;Sandra;3006.328;115913829;Venezuela; -2018-11-29T04:38:06Z;nathalia;552.3908;115275801;Venezuela; -2018-11-29T04:28:03Z;Armando;1649.051;115800270;Venezuela; -2018-11-29T04:05:11Z;nathalia;151.1005;114520702;Venezuela; -2018-11-29T03:39:28Z;Júlio;2869.729;115336747;Venezuela; -2018-11-29T02:23:54Z;Armando;6638.875;115302150;Venezuela; -2018-11-29T01:46:35Z;nathalia;3798.315;114589260;Venezuela; -2018-11-29T01:44:45Z;Júlio;527.8509;115487578;Venezuela; -2018-11-29T01:16:08Z;Sandra;387.4916;114266193;Venezuela; -2018-11-29T00:48:33Z;nathalia;2213.286;114450014;Venezuela; -2018-11-29T00:24:36Z;Armando;599.2621;114715303;Venezuela; -2018-11-29T00:08:39Z;Armando;2078.54;115776728;Venezuela; -2018-11-28T23:52:41Z;Ana;7315.46;114869014;Venezuela; -2018-11-28T23:31:50Z;Júlio;605.3168;114968590;Venezuela; -2018-11-28T23:26:56Z;Eduardo;8807.472;114240431;Venezuela; -2018-11-28T22:53:55Z;nathalia;349.5925;114249992;Venezuela; -2018-11-28T22:32:05Z;Ana;4402.941;115700758;Venezuela; -2018-11-28T22:26:21Z;Júlio;2752.113;114775612;Venezuela; -2018-11-28T22:21:50Z;Júlio Cesar;5195.755;116264248;Venezuela; -2018-11-28T22:21:50Z;nathalia;1612.113;114506013;Venezuela; -2018-11-28T22:21:48Z;nathalia;2504.793;116212964;Venezuela; -2018-11-28T22:09:21Z;Eduardo;825.7249;115415568;Venezuela; -2018-11-28T21:50:34Z;Sandra;1092.293;114330550;Venezuela; -2018-11-28T21:47:25Z;nathalia;114.5778;114869990;Venezuela; -2018-11-28T21:44:35Z;Nathália;2287.377;114593191;Venezuela; -2018-11-28T21:44:08Z;nathalia;3767.06;115529329;Venezuela; -2018-11-28T21:23:54Z;Júlio;5867.809;114815365;Venezuela; -2018-11-28T20:09:51Z;Ana;2465.864;114902615;Venezuela; -2018-11-28T19:50:28Z;Júlio Cesar;3637.892;114743789;Venezuela; -2018-11-28T19:40:34Z;Júlio;409.2696;114418985;Venezuela; -2018-11-28T19:35:36Z;Sandra;7791.335;115807000;Venezuela; -2018-11-28T19:25:12Z;nathalia;302.297;116114906;Venezuela; -2018-11-28T19:23:40Z;Sandra;2241.879;114751403;Venezuela; -2018-11-28T19:10:51Z;Ana;557.5406;115295004;Venezuela; -2018-11-28T19:02:48Z;nathalia;1261.321;114576014;Venezuela; -2018-11-28T18:57:33Z;Nathália;49.37999;115965538;Venezuela; -2018-11-28T18:55:06Z;Eduardo;719.03;115545343;Venezuela; -2018-11-28T18:41:06Z;Sandra;3739.538;115238461;Venezuela; -2018-11-28T18:37:59Z;Nathália;3525.298;114902836;Venezuela; -2018-11-28T18:33:17Z;Ana;2591.126;115704263;Venezuela; -2018-11-28T18:21:11Z;Eduardo;4681.867;115883899;Venezuela; -2018-11-28T18:07:07Z;Júlio Cesar;945.371;114795342;Venezuela; -2018-11-28T18:02:36Z;Armando;3116.953;114639525;Venezuela; -2018-11-28T17:59:15Z;Nathália;1018.385;116265133;Venezuela; -2018-11-28T17:49:30Z;Júlio;3519.212;115710520;Venezuela; -2018-11-28T17:41:16Z;nathalia;5152.24;114694501;Venezuela; -2018-11-28T17:36:41Z;Armando;828.1397;115816476;Venezuela; -2018-11-28T17:05:26Z;Júlio Cesar;232.8511;115492376;Venezuela; -2018-11-28T16:41:40Z;nathalia;1395.149;115403437;Venezuela; -2018-11-28T16:36:28Z;Júlio Cesar;75.19556;116008916;Venezuela; -2018-11-28T16:33:05Z;Júlio Cesar;5271.037;115811806;Venezuela; -2018-11-28T16:02:47Z;Júlio Cesar;6036.081;114945568;Venezuela; -2018-11-28T15:50:09Z;Júlio Cesar;2314.65;114273091;Venezuela; -2018-11-28T15:44:03Z;Nathália;5194.743;114948034;Venezuela; -2018-11-28T15:39:00Z;Eduardo;3716.213;114911911;Venezuela; -2018-11-28T15:28:21Z;nathalia;2716.344;114744412;Venezuela; -2018-11-28T15:16:56Z;Júlio;3610.226;115584506;Venezuela; -2018-11-28T15:09:16Z;Nathália;1868.835;114277464;Venezuela; -2018-11-28T15:03:00Z;Júlio Cesar;8235.685;116300073;Venezuela; -2018-11-28T14:56:53Z;Eduardo;5933.711;114961206;Venezuela; -2018-11-28T14:54:27Z;Armando;1283.48;115091502;Venezuela; -2018-11-28T14:22:18Z;nathalia;4415.42;116364972;Venezuela; -2018-11-28T13:57:39Z;Sandra;2720.572;115578550;Venezuela; -2018-11-28T13:43:14Z;Júlio Cesar;5805.255;116022122;Venezuela; -2018-11-28T13:31:06Z;Júlio Cesar;3.222791;114937840;Venezuela; -2018-11-28T13:27:02Z;Eduardo;718.285;114984555;Venezuela; -2018-11-28T13:23:18Z;Eduardo;3003.876;115388682;Venezuela; -2018-11-28T13:21:39Z;Júlio;787.9883;115232279;Venezuela; -2018-11-28T13:20:14Z;nathalia;2093.842;114889237;Venezuela; -2018-11-28T13:14:28Z;Nathália;681.7045;114944170;Venezuela; -2018-11-28T13:03:07Z;nathalia;2317.586;114824613;Venezuela; -2018-11-28T12:39:42Z;Eduardo;119.0456;115779741;Venezuela; -2018-11-28T12:33:41Z;Sandra;197.8862;114840094;Venezuela; -2018-11-28T12:04:40Z;Júlio Cesar;770.2548;115332475;Venezuela; -2018-11-28T11:35:29Z;Nathália;1247.447;116133576;Venezuela; -2018-11-28T11:25:51Z;Ana;38.72032;116375719;Venezuela; -2018-11-28T10:48:14Z;Ana;4667.09;116345465;Venezuela; -2018-11-28T10:30:00Z;Júlio;3044.689;116387226;Venezuela; -2018-11-28T10:09:23Z;Júlio;5503.176;114546270;Venezuela; -2018-11-28T09:55:17Z;Armando;3837.801;115158680;Venezuela; -2018-11-28T08:52:06Z;Ana;1829.831;115495125;Venezuela; -2018-11-28T08:00:50Z;nathalia;6035.126;116361185;Venezuela; -2018-11-28T07:38:32Z;Armando;2521.706;115815754;Venezuela; -2018-11-28T07:24:32Z;Júlio Cesar;3368.794;114305984;Venezuela; -2018-11-28T07:21:14Z;Ana;793.0518;114408373;Venezuela; -2018-11-28T06:58:01Z;Júlio Cesar;7375.565;116176604;Venezuela; -2018-11-28T06:47:52Z;nathalia;1136.489;114845276;Venezuela; -2018-11-28T06:40:24Z;Nathália;458.3703;115712278;Venezuela; -2018-11-28T06:30:59Z;Armando;128.0546;115980903;Venezuela; -2018-11-28T06:17:12Z;Armando;151.4588;116202254;Venezuela; -2018-11-28T06:10:40Z;Ana;6632.83;116338703;Venezuela; -2018-11-28T05:21:21Z;Júlio;1619.373;115279648;Venezuela; -2018-11-28T05:19:18Z;Sandra;3012.914;115670252;Venezuela; -2018-11-28T05:12:32Z;nathalia;4080.514;114728858;Venezuela; -2018-11-28T05:11:53Z;Nathália;304.2349;115212994;Venezuela; -2018-11-28T04:47:30Z;Eduardo;4484.315;114584210;Venezuela; -2018-11-28T04:37:28Z;Sandra;612.8861;114265603;Venezuela; -2018-11-28T04:33:04Z;Ana;953.1452;114717657;Venezuela; -2018-11-28T03:41:08Z;Nathália;5678.927;114696996;Venezuela; -2018-11-28T03:17:35Z;Ana;2628.84;115003759;Venezuela; -2018-11-28T03:05:11Z;Júlio;947.5334;116370401;Venezuela; -2018-11-28T02:38:46Z;Ana;710.7945;116238127;Venezuela; -2018-11-28T02:34:48Z;nathalia;5187.577;115852271;Venezuela; -2018-11-28T02:34:02Z;Ana;4248.639;115687620;Venezuela; -2018-11-28T02:21:28Z;Armando;2372.167;115379118;Venezuela; -2018-11-28T02:12:16Z;nathalia;1182.737;115124179;Venezuela; -2018-11-28T02:12:14Z;Nathália;128.5398;115124273;Venezuela; -2018-11-28T02:09:11Z;Ana;4695.257;116269377;Venezuela; -2018-11-28T02:01:14Z;Armando;242.3265;114931291;Venezuela; -2018-11-28T01:40:23Z;Júlio Cesar;108.2111;115239830;Venezuela; -2018-11-28T01:33:58Z;Sandra;432.6769;114964385;Venezuela; -2018-11-28T01:22:08Z;Ana;198.2052;116214306;Venezuela; -2018-11-28T01:10:29Z;Nathália;2030.938;115222325;Venezuela; -2018-11-28T00:22:24Z;Ana;1337.828;114598552;Venezuela; -2018-11-28T00:14:21Z;Armando;4551.931;116165434;Venezuela; -2018-11-27T23:48:09Z;Eduardo;19.01015;114954774;Venezuela; -2018-11-27T23:46:29Z;Ana;2390.85;114406539;Venezuela; -2018-11-27T23:36:02Z;Nathália;575.5744;115953707;Venezuela; -2018-11-27T23:34:51Z;Sandra;490.1585;114516429;Venezuela; -2018-11-27T23:08:38Z;Nathália;3509.796;116319989;Venezuela; -2018-11-27T22:53:04Z;Nathália;195.0519;115247473;Venezuela; -2018-11-27T22:39:06Z;Eduardo;7781.466;116275690;Venezuela; -2018-11-27T22:25:41Z;Armando;1535.12;116207381;Venezuela; -2018-11-27T22:12:02Z;Júlio Cesar;1247.468;115033194;Venezuela; -2018-11-27T22:01:00Z;Ana;1378.37;116341159;Venezuela; -2018-11-27T21:40:16Z;Eduardo;45.98688;115706411;Venezuela; -2018-11-27T21:38:34Z;Ana;2334.057;116095354;Venezuela; -2018-11-27T21:22:51Z;Sandra;1141.097;116021927;Venezuela; -2018-11-27T21:06:28Z;Júlio Cesar;3760.173;114331788;Venezuela; -2018-11-27T20:52:27Z;nathalia;49.86901;115811512;Venezuela; -2018-11-27T20:52:08Z;Júlio;671.4423;116371492;Venezuela; -2018-11-27T20:44:13Z;Ana;527.326;115785234;Venezuela; -2018-11-27T20:41:18Z;Eduardo;118.7444;114669028;Venezuela; -2018-11-27T20:39:59Z;Júlio Cesar;809.049;114532254;Venezuela; -2018-11-27T20:32:58Z;Ana;1574.98;115529898;Venezuela; -2018-11-27T20:32:53Z;Armando;2428.653;114949443;Venezuela; -2018-11-27T20:10:28Z;Sandra;2426.156;114579447;Venezuela; -2018-11-27T19:33:56Z;Júlio Cesar;2418.939;114691122;Venezuela; -2018-11-27T19:23:06Z;Sandra;18.42017;114561113;Venezuela; -2018-11-27T19:11:39Z;Júlio;6445.042;116208783;Venezuela; -2018-11-27T18:57:22Z;Ana;2134.968;115653211;Venezuela; -2018-11-27T18:39:55Z;Ana;1131.505;115176139;Venezuela; -2018-11-27T17:42:01Z;nathalia;6.116802;114941096;Venezuela; -2018-11-27T17:36:05Z;Eduardo;1363.809;114491073;Venezuela; -2018-11-27T16:51:26Z;Nathália;243.1003;114997061;Venezuela; -2018-11-27T16:46:45Z;Ana;1789.102;114948493;Venezuela; -2018-11-27T16:43:33Z;Ana;497.7528;116145679;Venezuela; -2018-11-27T16:33:42Z;Júlio;189.9371;116008106;Venezuela; -2018-11-27T15:40:59Z;nathalia;3611.941;114901802;Venezuela; -2018-11-27T15:11:44Z;nathalia;61.69566;115393956;Venezuela; -2018-11-27T14:59:45Z;Júlio Cesar;982.8715;116156230;Venezuela; -2018-11-27T14:35:16Z;Armando;274.5805;114730908;Venezuela; -2018-11-27T14:28:44Z;Nathália;4750.79;115779732;Venezuela; -2018-11-27T14:28:37Z;Ana;3066.647;114829337;Venezuela; -2018-11-27T14:11:59Z;Armando;698.4525;114802444;Venezuela; -2018-11-27T14:08:25Z;Ana;3455.574;115639554;Venezuela; -2018-11-27T13:47:33Z;Ana;3367.234;114412064;Venezuela; -2018-11-27T13:46:49Z;Eduardo;2313.372;115124754;Venezuela; -2018-11-27T12:59:43Z;Sandra;1972.649;116052227;Venezuela; -2018-11-27T12:59:22Z;Júlio Cesar;1250.027;116033934;Venezuela; -2018-11-27T12:43:59Z;Júlio Cesar;3960.568;115742575;Venezuela; -2018-11-27T12:37:18Z;nathalia;491.3535;115397513;Venezuela; -2018-11-27T12:24:08Z;Armando;3109.895;116069971;Venezuela; -2018-11-27T12:13:56Z;Armando;2408.375;114523652;Venezuela; -2018-11-27T12:01:29Z;Armando;9823.261;115353921;Venezuela; -2018-11-27T11:20:40Z;Júlio;359.2584;114329656;Venezuela; -2018-11-27T11:09:17Z;Sandra;1648.507;115267530;Venezuela; -2018-11-27T11:04:39Z;Ana;797.7234;114647316;Venezuela; -2018-11-27T11:02:22Z;Júlio Cesar;1218.312;116318427;Venezuela; -2018-11-27T10:53:49Z;Júlio;2485.64;114944074;Venezuela; -2018-11-27T10:51:36Z;Armando;763.4187;116072079;Venezuela; -2018-11-27T10:17:49Z;Nathália;6748.711;115221602;Venezuela; -2018-11-27T09:46:42Z;Júlio;1940.441;115608984;Venezuela; -2018-11-27T09:29:20Z;nathalia;3018.544;115030193;Venezuela; -2018-11-27T09:22:06Z;Júlio Cesar;5992.317;114383180;Venezuela; -2018-11-27T09:18:44Z;Júlio Cesar;200.2804;115928387;Venezuela; -2018-11-27T09:17:01Z;Eduardo;1583.014;114457574;Venezuela; -2018-11-27T09:13:46Z;Armando;3282.766;114254770;Venezuela; -2018-11-27T09:08:32Z;Ana;6278.049;115144855;Venezuela; -2018-11-27T08:50:49Z;nathalia;1806.91;114298031;Venezuela; -2018-11-27T08:43:38Z;Júlio;1645.293;114961815;Venezuela; -2018-11-27T08:08:57Z;Armando;8371.146;115474009;Venezuela; -2018-11-27T08:03:21Z;Sandra;917.9673;115922324;Venezuela; -2018-11-27T08:03:12Z;Eduardo;5203.173;116193813;Venezuela; -2018-11-27T07:53:55Z;Armando;2594.76;115019612;Venezuela; -2018-11-27T07:34:43Z;Eduardo;252.1357;115866679;Venezuela; -2018-11-27T07:28:57Z;Sandra;1210.586;116188025;Venezuela; -2018-11-27T07:27:08Z;Júlio Cesar;4557.439;114522540;Venezuela; -2018-11-27T06:37:35Z;nathalia;5317.574;115005194;Venezuela; -2018-11-27T06:11:15Z;Ana;3360.866;116367832;Venezuela; -2018-11-27T04:57:48Z;nathalia;3773.759;116145282;Venezuela; -2018-11-27T04:52:45Z;Nathália;1409;114738464;Venezuela; -2018-11-27T04:44:35Z;Ana;1212.871;114971364;Venezuela; -2018-11-27T04:03:48Z;nathalia;856.3686;115641256;Venezuela; -2018-11-27T03:43:45Z;Armando;258.2591;115306742;Venezuela; -2018-11-27T03:14:35Z;Armando;4027.496;115436525;Venezuela; -2018-11-27T02:55:33Z;Armando;791.0923;115061047;Venezuela; -2018-11-27T02:46:32Z;Júlio Cesar;4401.35;114740246;Venezuela; -2018-11-27T02:21:32Z;Júlio;3561.044;115700094;Venezuela; -2018-11-27T02:19:18Z;Nathália;571.9422;114330075;Venezuela; -2018-11-27T00:46:41Z;Nathália;1489.193;116108700;Venezuela; -2018-11-27T00:41:52Z;Ana;310.587;114812466;Venezuela; -2018-11-27T00:26:10Z;Nathália;2670.3;114429354;Venezuela; -2018-11-27T00:21:12Z;nathalia;326.9118;114955312;Venezuela; -2018-11-27T00:17:20Z;nathalia;3056.937;114920595;Venezuela; -2018-11-26T23:42:22Z;nathalia;67.38052;115128809;Venezuela; -2018-11-26T23:40:27Z;Armando;1417.184;114316803;Venezuela; -2018-11-26T22:53:11Z;Eduardo;802.896;115041565;Venezuela; -2018-11-26T22:39:11Z;Sandra;1919.266;115357960;Venezuela; -2018-11-26T22:15:48Z;Sandra;95.5832;114336918;Venezuela; -2018-11-26T21:56:43Z;nathalia;3709.431;115103218;Venezuela; -2018-11-26T21:26:33Z;nathalia;1195.755;114514323;Venezuela; -2018-11-26T21:20:20Z;Nathália;525.4868;116165848;Venezuela; -2018-11-26T21:10:53Z;Eduardo;3079.384;115136397;Venezuela; -2018-11-26T20:54:21Z;Eduardo;3822.496;115980262;Venezuela; -2018-11-26T20:44:18Z;Júlio;1469.641;114384732;Venezuela; -2018-11-26T20:35:17Z;Eduardo;5105.708;115863917;Venezuela; -2018-11-26T20:34:50Z;Nathália;2984.089;116306663;Venezuela; -2018-11-26T19:39:06Z;Júlio Cesar;602.9463;116379786;Venezuela; -2018-11-26T19:22:02Z;Armando;2263.304;116305300;Venezuela; -2018-11-26T19:19:20Z;Armando;3074.492;115826641;Venezuela; -2018-11-26T18:57:55Z;Eduardo;2138.771;115365760;Venezuela; -2018-11-26T18:54:49Z;nathalia;105.4669;115997727;Venezuela; -2018-11-26T18:25:52Z;Ana;276.1485;115218708;Venezuela; -2018-11-26T18:00:40Z;Júlio;128.0115;115709716;Venezuela; -2018-11-26T17:32:49Z;Sandra;1875.997;116267394;Venezuela; -2018-11-26T17:18:52Z;Júlio;4615.086;115416382;Venezuela; -2018-11-26T16:56:38Z;Júlio;17.45039;114915732;Venezuela; -2018-11-26T16:54:07Z;Júlio Cesar;2220.949;114882079;Venezuela; -2018-11-26T16:41:24Z;Nathália;4866.175;115453350;Venezuela; -2018-11-26T16:02:21Z;Nathália;118.8785;115304745;Venezuela; -2018-11-26T15:47:39Z;Sandra;4163.693;114335650;Venezuela; -2018-11-26T15:34:37Z;Sandra;575.9986;116053814;Venezuela; -2018-11-26T15:27:49Z;nathalia;1752.442;115512747;Venezuela; -2018-11-26T15:16:05Z;Sandra;1336.976;116179398;Venezuela; -2018-11-26T15:11:37Z;Eduardo;173.6409;114867279;Venezuela; -2018-11-26T15:05:08Z;Júlio Cesar;288.5496;115248684;Venezuela; -2018-11-26T14:11:32Z;nathalia;472.3599;115866741;Venezuela; -2018-11-26T14:10:18Z;Júlio Cesar;1059.177;115555512;Venezuela; -2018-11-26T14:06:58Z;nathalia;7570.946;115967029;Venezuela; -2018-11-26T13:48:52Z;Eduardo;2566.279;115261687;Venezuela; -2018-11-26T13:44:39Z;nathalia;8167.282;115373737;Venezuela; -2018-11-26T13:34:55Z;Nathália;1603.394;116085189;Venezuela; -2018-11-26T13:27:28Z;Júlio;1407.805;115927211;Venezuela; -2018-11-26T13:07:49Z;Armando;11.37574;116266912;Venezuela; -2018-11-26T13:05:30Z;Ana;4199.59;115542983;Venezuela; -2018-11-26T12:43:40Z;Júlio Cesar;5629.811;116126414;Venezuela; -2018-11-26T12:42:15Z;Eduardo;262.5027;116388591;Venezuela; -2018-11-26T12:40:30Z;Júlio Cesar;1924.467;115427068;Venezuela; -2018-11-26T12:32:40Z;Eduardo;160.5906;114324431;Venezuela; -2018-11-26T12:25:02Z;Ana;2209.697;114587207;Venezuela; -2018-11-26T12:11:58Z;nathalia;201.5239;115012410;Venezuela; -2018-11-26T12:06:25Z;Nathália;275.5745;114914202;Venezuela; -2018-11-26T11:54:44Z;Sandra;3869.901;114680154;Venezuela; -2018-11-26T11:26:00Z;Armando;3019.211;114243573;Venezuela; -2018-11-26T11:24:39Z;Armando;3914.118;115598297;Venezuela; -2018-11-26T11:01:53Z;Júlio Cesar;180.4015;115430141;Venezuela; -2018-11-26T10:41:56Z;Sandra;1605.732;116022301;Venezuela; -2018-11-26T10:32:36Z;Armando;9696.383;114809847;Venezuela; -2018-11-26T10:27:40Z;Sandra;6698.781;116329976;Venezuela; -2018-11-26T09:53:33Z;Nathália;6645.274;115636628;Venezuela; -2018-11-26T09:20:23Z;Nathália;3342.743;115326474;Venezuela; -2018-11-26T08:47:04Z;Sandra;6620.342;114415453;Venezuela; -2018-11-26T08:43:46Z;Sandra;609.1374;115675686;Venezuela; -2018-11-26T08:41:38Z;Júlio Cesar;3304.773;115719879;Venezuela; -2018-11-26T08:02:58Z;nathalia;717.0212;116176208;Venezuela; -2018-11-26T07:02:12Z;Eduardo;937.1265;114728506;Venezuela; -2018-11-26T06:43:23Z;Ana;4420.47;115273738;Venezuela; -2018-11-26T05:58:41Z;Ana;1943.446;116043163;Venezuela; -2018-11-26T05:58:05Z;Júlio;4780.009;115491159;Venezuela; -2018-11-26T05:53:54Z;Ana;984.9829;115883359;Venezuela; -2018-11-26T05:42:33Z;Sandra;3473.197;116219093;Venezuela; -2018-11-26T05:25:50Z;Júlio Cesar;2371.665;114280683;Venezuela; -2018-11-26T05:18:08Z;Ana;2864.542;114720563;Venezuela; -2018-11-26T04:28:16Z;Júlio;1137.565;115479345;Venezuela; -2018-11-26T04:26:00Z;Júlio;4916.096;114606814;Venezuela; -2018-11-26T03:29:53Z;Eduardo;1380.646;114868315;Venezuela; -2018-11-26T03:26:03Z;Júlio;1917.892;116062110;Venezuela; -2018-11-26T03:13:57Z;nathalia;4520.134;115625077;Venezuela; -2018-11-26T03:13:21Z;Sandra;7103.151;115703738;Venezuela; -2018-11-26T03:09:31Z;Sandra;552.8963;114557378;Venezuela; -2018-11-26T03:02:16Z;Sandra;163.0169;114469766;Venezuela; -2018-11-26T02:39:48Z;Júlio;638.4118;115141363;Venezuela; -2018-11-26T02:36:08Z;Armando;197.9815;116015885;Venezuela; -2018-11-26T01:59:49Z;Sandra;1389.791;115059757;Venezuela; -2018-11-26T01:55:28Z;Ana;235.8195;115023559;Venezuela; -2018-11-26T01:36:45Z;Júlio Cesar;155.9628;115573149;Venezuela; -2018-11-26T00:37:19Z;Júlio Cesar;7013.211;115148786;Venezuela; -2018-11-26T00:31:12Z;Ana;1165.07;116222602;Venezuela; -2018-11-26T00:26:22Z;Júlio;1239.31;115876206;Venezuela; -2018-11-26T00:21:49Z;Júlio;806.1766;114445186;Venezuela; -2018-11-25T23:49:56Z;Nathália;2268.194;115049983;Venezuela; -2018-11-25T23:09:32Z;Júlio Cesar;2553.227;115287070;Venezuela; -2018-11-25T23:04:11Z;Eduardo;3933.295;115946856;Venezuela; -2018-11-25T22:27:12Z;Eduardo;5345.245;114282552;Venezuela; -2018-11-25T21:09:10Z;Júlio Cesar;9554.572;115304797;Venezuela; -2018-11-25T20:59:10Z;Eduardo;2116.977;115698613;Venezuela; -2018-11-25T20:36:08Z;Nathália;5541.475;115765188;Venezuela; -2018-11-25T20:24:11Z;Júlio;1157.833;114852209;Venezuela; -2018-11-25T20:20:17Z;Armando;616.7744;114705677;Venezuela; -2018-11-25T20:14:46Z;Ana;259.7503;116380193;Venezuela; -2018-11-25T19:55:46Z;Júlio;1422.824;116376104;Venezuela; -2018-11-25T19:16:43Z;Ana;547.5111;115921470;Venezuela; -2018-11-25T19:12:29Z;Nathália;2.118928;115709289;Venezuela; -2018-11-25T18:59:33Z;Júlio Cesar;3248.014;115678180;Venezuela; -2018-11-25T18:19:54Z;Armando;2574.484;115550717;Venezuela; -2018-11-25T18:08:57Z;Júlio Cesar;597.2285;116040744;Venezuela; -2018-11-25T17:54:12Z;Sandra;2308.233;116018793;Venezuela; -2018-11-25T17:05:30Z;Sandra;16.71206;115366387;Venezuela; -2018-11-25T17:03:05Z;Sandra;775.3955;116076981;Venezuela; -2018-11-25T16:49:01Z;Armando;1176.395;115847527;Venezuela; -2018-11-25T16:39:25Z;nathalia;942.0955;115405088;Venezuela; -2018-11-25T16:38:55Z;Sandra;1117.635;116266161;Venezuela; -2018-11-25T16:32:14Z;Júlio;4602.96;115800007;Venezuela; -2018-11-25T16:10:54Z;Júlio;727.5852;115593766;Venezuela; -2018-11-25T16:07:21Z;Eduardo;39.8556;114299349;Venezuela; -2018-11-25T16:05:46Z;Nathália;927.5626;115586598;Venezuela; -2018-11-25T15:49:07Z;Júlio Cesar;1163.665;114551188;Venezuela; -2018-11-25T15:47:33Z;Júlio;1265.321;115242271;Venezuela; -2018-11-25T15:46:23Z;Júlio;2890.166;115893521;Venezuela; -2018-11-25T15:09:19Z;Nathália;445.5665;114676423;Venezuela; -2018-11-25T15:01:18Z;Armando;285.6686;115967426;Venezuela; -2018-11-25T14:56:03Z;Armando;1823.996;114548437;Venezuela; -2018-11-25T14:47:40Z;Eduardo;331.7869;116125369;Venezuela; -2018-11-25T14:45:28Z;Júlio;813.8905;115394534;Venezuela; -2018-11-25T14:45:11Z;Júlio Cesar;1842.953;114911343;Venezuela; -2018-11-25T14:43:30Z;nathalia;1965.202;115481303;Venezuela; -2018-11-25T14:39:55Z;Sandra;5293.368;115458638;Venezuela; -2018-11-25T14:19:08Z;Eduardo;4151.166;115368914;Venezuela; -2018-11-25T14:18:42Z;Eduardo;1123.958;114684165;Venezuela; -2018-11-25T14:07:56Z;Júlio;848.9222;116103403;Venezuela; -2018-11-25T14:05:49Z;Eduardo;6013.93;114965304;Venezuela; -2018-11-25T13:45:00Z;Armando;589.0414;116279623;Venezuela; -2018-11-25T13:39:45Z;Eduardo;374.1275;114367501;Venezuela; -2018-11-25T13:20:04Z;Júlio;285.6995;114307924;Venezuela; -2018-11-25T13:07:47Z;Júlio Cesar;890.7388;115743129;Venezuela; -2018-11-25T13:06:41Z;Armando;5366.062;114590434;Venezuela; -2018-11-25T12:58:26Z;Sandra;1401.546;115933807;Venezuela; -2018-11-25T12:55:01Z;Sandra;2905.189;114612603;Venezuela; -2018-11-25T12:31:26Z;Ana;597.1897;115125070;Venezuela; -2018-11-25T11:16:59Z;Eduardo;965.5572;115854215;Venezuela; -2018-11-25T11:02:40Z;Eduardo;4491.821;114777309;Venezuela; -2018-11-25T10:56:41Z;Sandra;4472.772;115558722;Venezuela; -2018-11-25T10:42:25Z;Armando;833.5676;114656043;Venezuela; -2018-11-25T10:32:28Z;Eduardo;2473.15;114439296;Venezuela; -2018-11-25T10:30:43Z;Júlio Cesar;658.3077;114355071;Venezuela; -2018-11-25T10:20:09Z;Júlio;6772.031;115333839;Venezuela; -2018-11-25T10:19:58Z;Sandra;9325.499;116099351;Venezuela; -2018-11-25T10:07:27Z;Armando;2175.659;116289552;Venezuela; -2018-11-25T09:55:16Z;Eduardo;789.092;115726326;Venezuela; -2018-11-25T09:16:23Z;Júlio Cesar;92.03319;115341328;Venezuela; -2018-11-25T08:05:13Z;Júlio Cesar;16.72765;115650150;Venezuela; -2018-11-25T07:15:50Z;Armando;308.8848;114623249;Venezuela; -2018-11-25T06:44:54Z;Nathália;2892.74;114329700;Venezuela; -2018-11-25T06:26:56Z;Júlio;2244.055;115235720;Venezuela; -2018-11-25T05:53:18Z;Eduardo;1157.456;114215840;Venezuela; -2018-11-25T05:51:34Z;Eduardo;379.1614;116141973;Venezuela; -2018-11-25T05:48:44Z;Nathália;458.9539;114260984;Venezuela; -2018-11-25T05:11:52Z;Júlio;3964.829;114452435;Venezuela; -2018-11-25T05:00:17Z;nathalia;2757.083;115021002;Venezuela; -2018-11-25T04:58:37Z;Ana;236.2273;115255079;Venezuela; -2018-11-25T03:56:30Z;nathalia;259.8098;115731745;Venezuela; -2018-11-25T03:37:18Z;Nathália;401.7637;114490336;Venezuela; -2018-11-25T03:33:02Z;nathalia;1444.764;116000755;Venezuela; -2018-11-25T03:15:20Z;nathalia;6773.236;114768384;Venezuela; -2018-11-25T03:12:18Z;Júlio;410.4012;114297232;Venezuela; -2018-11-25T03:00:42Z;nathalia;814.1887;114336812;Venezuela; -2018-11-25T01:40:13Z;nathalia;1941.936;115943315;Venezuela; -2018-11-25T01:33:37Z;nathalia;741.23;114561498;Venezuela; -2018-11-25T01:03:40Z;Júlio;820.2178;115641292;Venezuela; -2018-11-25T00:57:01Z;Sandra;185.8836;116036519;Venezuela; -2018-11-25T00:51:32Z;Júlio Cesar;2325.51;115407522;Venezuela; -2018-11-25T00:44:04Z;Armando;1625.125;116078055;Venezuela; -2018-11-25T00:43:45Z;Sandra;2663.7;116299374;Venezuela; -2018-11-25T00:40:47Z;Ana;2123.081;115716218;Venezuela; -2018-11-25T00:23:47Z;Júlio;507.064;115707814;Venezuela; -2018-11-25T00:05:33Z;Eduardo;4458.866;115239581;Venezuela; -2018-11-25T00:01:33Z;Sandra;484.5495;114773561;Venezuela; -2018-11-24T23:40:20Z;Júlio;4724.176;116196597;Venezuela; -2018-11-24T23:13:11Z;Sandra;5630.377;116221001;Venezuela; -2018-11-24T22:18:06Z;Armando;4103.433;115369970;Venezuela; -2018-11-24T22:17:37Z;Sandra;273.5362;116317872;Venezuela; -2018-11-24T21:25:18Z;Júlio;3365.791;115094703;Venezuela; -2018-11-24T21:08:03Z;Ana;1152.617;114638480;Venezuela; -2018-11-24T21:02:40Z;Eduardo;6726.619;114629119;Venezuela; -2018-11-24T21:01:40Z;Sandra;4084.502;114534818;Venezuela; -2018-11-24T20:28:21Z;Ana;4823.8;115670521;Venezuela; -2018-11-24T20:28:18Z;Sandra;501.9552;115912620;Venezuela; -2018-11-24T20:08:23Z;nathalia;1671.518;114208509;Venezuela; -2018-11-24T20:01:54Z;Ana;2707.012;115824418;Venezuela; -2018-11-24T19:43:02Z;Nathália;3487.185;114759951;Venezuela; -2018-11-24T19:33:29Z;Nathália;2834.427;116362945;Venezuela; -2018-11-24T19:30:21Z;Júlio Cesar;4777.613;116231572;Venezuela; -2018-11-24T19:25:40Z;Júlio;2648.478;115873272;Venezuela; -2018-11-24T19:14:40Z;Júlio;955.4922;114747887;Venezuela; -2018-11-24T19:11:45Z;Sandra;2171.926;114365070;Venezuela; -2018-11-24T17:37:51Z;Júlio Cesar;2417.872;114414477;Venezuela; -2018-11-24T17:34:04Z;nathalia;262.7315;115626309;Venezuela; -2018-11-24T17:16:21Z;Júlio;105.1377;116294309;Venezuela; -2018-11-24T17:15:34Z;nathalia;3365.667;114666957;Venezuela; -2018-11-24T16:58:02Z;Eduardo;1374.145;114811570;Venezuela; -2018-11-24T16:55:05Z;Júlio;251.3277;116291745;Venezuela; -2018-11-24T16:48:52Z;Júlio Cesar;1179.267;115623858;Venezuela; -2018-11-24T16:45:43Z;Júlio;330.9184;114219089;Venezuela; -2018-11-24T16:01:52Z;Júlio Cesar;4631.872;114746592;Venezuela; -2018-11-24T15:35:05Z;Júlio;9616.867;114422235;Venezuela; -2018-11-24T15:28:19Z;Nathália;431.8401;115919841;Venezuela; -2018-11-24T15:14:58Z;Eduardo;2864.864;114989799;Venezuela; -2018-11-24T15:10:35Z;Armando;3635.206;115898580;Venezuela; -2018-11-24T14:53:31Z;Sandra;468.6593;115396730;Venezuela; -2018-11-24T14:19:32Z;Júlio Cesar;3046.09;115500015;Venezuela; -2018-11-24T14:11:37Z;Armando;4948.683;114461938;Venezuela; -2018-11-24T14:06:49Z;Armando;13093.99;116080829;Venezuela; -2018-11-24T13:23:10Z;Júlio Cesar;536.4981;115225934;Venezuela; -2018-11-24T13:17:46Z;Ana;1728.239;115599943;Venezuela; -2018-11-24T13:17:19Z;Sandra;776.6054;114911655;Venezuela; -2018-11-24T13:14:11Z;Ana;1548.304;115941173;Venezuela; -2018-11-24T12:55:29Z;nathalia;2468.896;114389364;Venezuela; -2018-11-24T12:40:37Z;Eduardo;220.2318;114713855;Venezuela; -2018-11-24T12:14:43Z;Eduardo;658.7281;115260560;Venezuela; -2018-11-24T12:13:59Z;Sandra;2368.061;116195921;Venezuela; -2018-11-24T11:51:33Z;Armando;4152.528;114608654;Venezuela; -2018-11-24T11:35:18Z;Nathália;1976.967;115339766;Venezuela; -2018-11-24T11:05:13Z;Júlio Cesar;4830.328;115229046;Venezuela; -2018-11-24T11:00:46Z;Nathália;6269.446;114237835;Venezuela; -2018-11-24T10:54:51Z;Nathália;1794.561;114551790;Venezuela; -2018-11-24T10:48:31Z;nathalia;1978.153;115235005;Venezuela; -2018-11-24T10:47:06Z;Ana;148.8675;114950122;Venezuela; -2018-11-24T09:32:51Z;Júlio Cesar;268.592;114479446;Venezuela; -2018-11-24T08:50:21Z;Júlio Cesar;52.76221;115899219;Venezuela; -2018-11-24T08:49:08Z;Júlio;2774.968;114815596;Venezuela; -2018-11-24T08:31:52Z;Sandra;929.9392;114608452;Venezuela; -2018-11-24T08:21:57Z;nathalia;1431.349;115219409;Venezuela; -2018-11-24T08:10:03Z;Armando;2009.259;114696228;Venezuela; -2018-11-24T08:08:31Z;Ana;2411.01;115707058;Venezuela; -2018-11-24T07:55:53Z;Júlio;9263.022;114512398;Venezuela; -2018-11-24T07:45:41Z;Sandra;960.0731;114237716;Venezuela; -2018-11-24T07:42:43Z;Sandra;1968.684;115238724;Venezuela; -2018-11-24T07:40:07Z;Nathália;466.9638;114439955;Venezuela; -2018-11-24T07:32:33Z;Eduardo;254.9441;116290991;Venezuela; -2018-11-24T06:48:33Z;Júlio Cesar;3602.012;115891066;Venezuela; -2018-11-24T06:29:51Z;Júlio;793.2634;114596015;Venezuela; -2018-11-24T06:13:03Z;Eduardo;104.2729;115051198;Venezuela; -2018-11-24T06:07:32Z;Eduardo;1344.296;115174659;Venezuela; -2018-11-24T05:57:03Z;Sandra;798.7137;115817203;Venezuela; -2018-11-24T05:38:14Z;Ana;457.5178;114562402;Venezuela; -2018-11-24T05:34:45Z;nathalia;5.68476;116380246;Venezuela; -2018-11-24T05:00:23Z;Sandra;720.6229;115289715;Venezuela; -2018-11-24T04:43:22Z;Júlio Cesar;128.6252;115912203;Venezuela; -2018-11-24T04:15:47Z;Sandra;1338.745;116340724;Venezuela; -2018-11-24T04:09:48Z;Nathália;5090.474;116338879;Venezuela; -2018-11-24T03:58:17Z;Júlio Cesar;2854.091;114519547;Venezuela; -2018-11-24T03:40:41Z;Nathália;2416.26;115930002;Venezuela; -2018-11-24T03:23:19Z;Júlio Cesar;30.15177;114648776;Venezuela; -2018-11-24T03:18:11Z;Eduardo;364.0421;116062114;Venezuela; -2018-11-24T03:16:54Z;Sandra;4163.251;115236341;Venezuela; -2018-11-24T02:30:28Z;Sandra;6342.232;114385999;Venezuela; -2018-11-24T02:18:17Z;Nathália;1199.415;116233423;Venezuela; -2018-11-24T01:59:53Z;Júlio Cesar;4826.133;114393341;Venezuela; -2018-11-24T01:38:56Z;Júlio Cesar;9499.349;114336172;Venezuela; -2018-11-24T01:27:46Z;Armando;5836.845;114356585;Venezuela; -2018-11-24T01:11:07Z;Nathália;3225.627;114205727;Venezuela; -2018-11-24T00:48:29Z;nathalia;1393.962;116058410;Venezuela; -2018-11-23T23:56:58Z;Ana;3015.12;114532157;Venezuela; -2018-11-23T23:36:40Z;Júlio;910.7517;115169723;Venezuela; -2018-11-23T23:36:04Z;Ana;1837.838;115422083;Venezuela; -2018-11-23T23:24:41Z;Júlio Cesar;1904.577;114949118;Venezuela; -2018-11-23T23:00:50Z;Júlio;1366.238;114431108;Venezuela; -2018-11-23T22:59:31Z;Nathália;496.8406;114745264;Venezuela; -2018-11-23T22:48:28Z;Júlio;152.6483;115874826;Venezuela; -2018-11-23T22:45:39Z;Júlio;4241.989;115597826;Venezuela; -2018-11-23T22:42:02Z;Sandra;899.6791;114285378;Venezuela; -2018-11-23T22:41:15Z;nathalia;1533.495;116396617;Venezuela; -2018-11-23T22:29:51Z;Eduardo;3265.655;114602805;Venezuela; -2018-11-23T22:22:46Z;Ana;226.8293;114569277;Venezuela; -2018-11-23T21:34:38Z;Eduardo;443.3232;114452566;Venezuela; -2018-11-23T21:23:47Z;nathalia;4447.509;116351851;Venezuela; -2018-11-23T21:20:39Z;nathalia;8520.021;114563741;Venezuela; -2018-11-23T21:20:27Z;nathalia;963.27;115600840;Venezuela; -2018-11-23T20:46:52Z;nathalia;7669.53;115801315;Venezuela; -2018-11-23T20:37:10Z;Eduardo;114.0233;114433472;Venezuela; -2018-11-23T20:18:31Z;Eduardo;2364.51;114620767;Venezuela; -2018-11-23T20:16:55Z;Armando;8315.367;114448892;Venezuela; -2018-11-23T19:53:50Z;Ana;1063.849;115232892;Venezuela; -2018-11-23T19:47:40Z;Nathália;980.9409;115757700;Venezuela; -2018-11-23T19:44:44Z;Júlio Cesar;5706.144;115501023;Venezuela; -2018-11-23T19:37:43Z;Ana;1055.569;116022565;Venezuela; -2018-11-23T19:33:51Z;nathalia;2221.353;116051952;Venezuela; -2018-11-23T19:20:51Z;Júlio Cesar;5974.397;114815320;Venezuela; -2018-11-23T19:20:50Z;Ana;4246.332;116065067;Venezuela; -2018-11-23T19:09:57Z;Armando;1067.376;114371177;Venezuela; -2018-11-23T18:25:55Z;Ana;54.64348;116247491;Venezuela; -2018-11-23T18:06:57Z;nathalia;2835.644;115703960;Venezuela; -2018-11-23T18:02:33Z;Eduardo;934.0086;114541405;Venezuela; -2018-11-23T18:01:23Z;Júlio Cesar;309.995;114833917;Venezuela; -2018-11-23T17:59:16Z;Nathália;244.6942;116367988;Venezuela; -2018-11-23T17:45:47Z;Sandra;129.2814;114244285;Venezuela; -2018-11-23T17:35:51Z;Eduardo;107.4593;115064878;Venezuela; -2018-11-23T17:18:26Z;Nathália;4370.49;114860156;Venezuela; -2018-11-23T16:33:48Z;Eduardo;1215.49;115728836;Venezuela; -2018-11-23T16:27:15Z;nathalia;3463.078;114297530;Venezuela; -2018-11-23T16:14:42Z;Ana;1390.746;115771258;Venezuela; -2018-11-23T16:08:58Z;Sandra;123.9984;115846284;Venezuela; -2018-11-23T16:02:20Z;Júlio;620.9687;115634567;Venezuela; -2018-11-23T14:51:33Z;Armando;1121.155;114735539;Venezuela; -2018-11-23T14:45:39Z;Júlio Cesar;894.3277;114220563;Venezuela; -2018-11-23T14:41:51Z;Júlio Cesar;1010.058;115489113;Venezuela; -2018-11-23T14:09:13Z;Sandra;2028.943;114667463;Venezuela; -2018-11-23T13:48:20Z;nathalia;4070.133;114771152;Venezuela; -2018-11-23T13:35:57Z;Ana;8430.892;116118071;Venezuela; -2018-11-23T13:26:55Z;nathalia;1398.205;115673599;Venezuela; -2018-11-23T13:17:41Z;Eduardo;152.2791;116307296;Venezuela; -2018-11-23T13:17:32Z;Júlio;4132.576;114654763;Venezuela; -2018-11-23T13:10:39Z;Sandra;3089.011;115233225;Venezuela; -2018-11-23T13:08:01Z;nathalia;72.67201;114744165;Venezuela; -2018-11-23T12:42:11Z;Sandra;345.7638;114582569;Venezuela; -2018-11-23T12:35:59Z;Eduardo;3450.936;115515652;Venezuela; -2018-11-23T12:35:38Z;Sandra;1386.375;115109563;Venezuela; -2018-11-23T12:32:08Z;Júlio;6272.465;115049524;Venezuela; -2018-11-23T12:11:37Z;Júlio Cesar;7370.285;114553064;Venezuela; -2018-11-23T11:42:38Z;Eduardo;2303.059;115724478;Venezuela; -2018-11-23T11:12:47Z;Sandra;3174.545;114335392;Venezuela; -2018-11-23T11:03:37Z;nathalia;1396.444;115259745;Venezuela; -2018-11-23T10:35:24Z;Armando;1722.21;114560076;Venezuela; -2018-11-23T10:25:51Z;nathalia;3.816517;116089712;Venezuela; -2018-11-23T10:17:34Z;Júlio;2301.407;115286464;Venezuela; -2018-11-23T09:50:02Z;Júlio Cesar;1055.09;114623021;Venezuela; -2018-11-23T09:42:23Z;Júlio;6836.03;115477893;Venezuela; -2018-11-23T09:31:28Z;Eduardo;1678.6;116167561;Venezuela; -2018-11-23T09:30:32Z;Júlio Cesar;6345.913;114975511;Venezuela; -2018-11-23T09:15:27Z;Eduardo;300.3931;115985138;Venezuela; -2018-11-23T09:10:12Z;Ana;2761.707;115344206;Venezuela; -2018-11-23T09:07:59Z;nathalia;2633.27;115647883;Venezuela; -2018-11-23T08:54:00Z;Sandra;3701.635;115263141;Venezuela; -2018-11-23T08:48:25Z;Júlio;3627.836;115010389;Venezuela; -2018-11-23T08:47:38Z;Eduardo;2635.714;115262210;Venezuela; -2018-11-23T08:40:31Z;Armando;3849.279;114246644;Venezuela; -2018-11-23T08:35:04Z;Armando;1983.307;115441709;Venezuela; -2018-11-23T08:27:19Z;Armando;597.173;115142349;Venezuela; -2018-11-23T07:30:52Z;Sandra;114.8815;114252506;Venezuela; -2018-11-23T07:30:28Z;nathalia;4800.736;116359175;Venezuela; -2018-11-23T07:25:14Z;Júlio Cesar;151.88;114899071;Venezuela; -2018-11-23T07:15:08Z;Ana;2966.709;116033805;Venezuela; -2018-11-23T07:10:29Z;Júlio;404.6252;115781425;Venezuela; -2018-11-23T07:05:47Z;Nathália;3646.326;114242597;Venezuela; -2018-11-23T07:01:12Z;nathalia;2857.218;115466129;Venezuela; -2018-11-23T06:54:35Z;Nathália;482.1977;116067538;Venezuela; -2018-11-23T05:31:41Z;Júlio;1262.58;115952559;Venezuela; -2018-11-23T05:20:19Z;Júlio;1698.374;116187623;Venezuela; -2018-11-23T04:56:24Z;Sandra;2591.267;115606594;Venezuela; -2018-11-23T04:50:35Z;Nathália;2684.716;116047439;Venezuela; -2018-11-23T04:40:49Z;Ana;1200.53;114813867;Venezuela; -2018-11-23T04:40:15Z;Nathália;2406.901;114719719;Venezuela; -2018-11-23T04:12:23Z;Sandra;1498.559;115689453;Venezuela; -2018-11-23T04:10:15Z;Ana;2401.415;116166731;Venezuela; -2018-11-23T04:03:24Z;Júlio;378.3089;114830504;Venezuela; -2018-11-23T03:45:21Z;Ana;1533.928;115909975;Venezuela; -2018-11-23T03:39:05Z;Júlio;48.20905;116212370;Venezuela; -2018-11-23T03:05:25Z;Júlio;1442.735;114414504;Venezuela; -2018-11-23T02:33:55Z;Armando;3553.104;115537905;Venezuela; -2018-11-23T02:27:15Z;Sandra;1749.808;115383426;Venezuela; -2018-11-23T02:09:11Z;Júlio Cesar;1137.981;114608752;Venezuela; -2018-11-23T02:05:59Z;Júlio;1360.975;114640497;Venezuela; -2018-11-23T01:38:13Z;Júlio;1207.541;114560416;Venezuela; -2018-11-23T01:36:03Z;Ana;2659.186;114947495;Venezuela; -2018-11-23T01:22:54Z;Eduardo;2055.263;114514994;Venezuela; -2018-11-23T01:16:24Z;nathalia;2792.01;115044163;Venezuela; -2018-11-23T01:13:30Z;Ana;4801.85;115566318;Venezuela; -2018-11-23T01:05:25Z;Ana;2117.489;114873218;Venezuela; -2018-11-22T23:56:10Z;Nathália;902.2028;114625205;Venezuela; -2018-11-22T23:33:17Z;Júlio;7065.826;114417059;Venezuela; -2018-11-22T23:20:46Z;Sandra;151.6847;115230757;Venezuela; -2018-11-22T23:17:43Z;Júlio Cesar;1036.11;115184403;Venezuela; -2018-11-22T23:10:39Z;Ana;8089.007;114929636;Venezuela; -2018-11-22T22:52:53Z;Nathália;2828.742;115306296;Venezuela; -2018-11-22T22:52:39Z;Eduardo;1.666418;115088721;Venezuela; -2018-11-22T22:48:23Z;Nathália;1586.61;114289146;Venezuela; -2018-11-22T22:45:51Z;Armando;2690.607;114371316;Venezuela; -2018-11-22T22:43:57Z;Júlio;5021.199;114394782;Venezuela; -2018-11-22T22:41:54Z;nathalia;6284.923;114653679;Venezuela; -2018-11-22T22:35:23Z;Eduardo;1635.594;115795879;Venezuela; -2018-11-22T22:32:41Z;Armando;3528.282;114294732;Venezuela; -2018-11-22T22:24:09Z;Júlio;4121.034;115015029;Venezuela; -2018-11-22T22:21:05Z;Júlio;179.4844;114384236;Venezuela; -2018-11-22T22:18:29Z;Eduardo;776.7424;116240310;Venezuela; -2018-11-22T22:12:23Z;Eduardo;1653.377;116277510;Venezuela; -2018-11-22T22:02:22Z;nathalia;386.8521;116284499;Venezuela; -2018-11-22T21:43:59Z;Armando;1304.689;114658458;Venezuela; -2018-11-22T21:37:10Z;nathalia;495.4631;114606027;Venezuela; -2018-11-22T21:35:03Z;Armando;5564.842;114462243;Venezuela; -2018-11-22T21:20:24Z;Júlio;198.983;114720932;Venezuela; -2018-11-22T21:12:07Z;Armando;526.6452;115397839;Venezuela; -2018-11-22T21:02:25Z;Sandra;2462.35;116327185;Venezuela; -2018-11-22T21:02:11Z;Ana;3834.938;115036261;Venezuela; -2018-11-22T20:31:03Z;Armando;138.7979;114298697;Venezuela; -2018-11-22T20:28:03Z;Nathália;1832.273;116152735;Venezuela; -2018-11-22T20:08:28Z;Armando;3079.775;115032537;Venezuela; -2018-11-22T19:52:18Z;Armando;1145.242;115246774;Venezuela; -2018-11-22T19:40:17Z;Júlio;3209.143;114645611;Venezuela; -2018-11-22T19:16:31Z;Armando;2873.824;115916862;Venezuela; -2018-11-22T19:16:01Z;Júlio;374.7955;114411744;Venezuela; -2018-11-22T19:03:35Z;Nathália;3569.851;115272627;Venezuela; -2018-11-22T18:59:16Z;nathalia;1313.139;115460008;Venezuela; -2018-11-22T18:44:05Z;Júlio;184.8071;115903435;Venezuela; -2018-11-22T18:22:36Z;Júlio;68.36049;116125317;Venezuela; -2018-11-22T18:04:09Z;Armando;644.8832;116040838;Venezuela; -2018-11-22T18:03:32Z;Júlio Cesar;1830.706;116120173;Venezuela; -2018-11-22T18:01:27Z;Armando;737.424;115346066;Venezuela; -2018-11-22T17:39:35Z;Ana;1143.455;116086412;Venezuela; -2018-11-22T17:12:43Z;Eduardo;1269.825;115798234;Venezuela; -2018-11-22T16:35:00Z;Júlio;2857.989;114533976;Venezuela; -2018-11-22T16:29:07Z;Ana;4292.442;116339994;Venezuela; -2018-11-22T16:13:35Z;Armando;310.0026;115166296;Venezuela; -2018-11-22T16:08:28Z;Júlio Cesar;1142.095;114813695;Venezuela; -2018-11-22T15:49:56Z;Armando;1.353741;115232200;Venezuela; -2018-11-22T15:00:05Z;Eduardo;2382.698;115825481;Venezuela; -2018-11-22T14:36:12Z;Júlio Cesar;3341.377;115960367;Venezuela; -2018-11-22T14:26:57Z;Ana;1161.709;114349722;Venezuela; -2018-11-22T14:13:39Z;Armando;3020.625;115922697;Venezuela; -2018-11-22T14:10:10Z;Júlio Cesar;1366.133;115697047;Venezuela; -2018-11-22T14:05:48Z;Armando;5.839447;114951566;Venezuela; -2018-11-22T13:22:43Z;Nathália;4794.517;115378242;Venezuela; -2018-11-22T13:20:06Z;Armando;677.1204;114669528;Venezuela; -2018-11-22T13:17:13Z;nathalia;98.19432;115708393;Venezuela; -2018-11-22T12:50:52Z;Armando;328.1138;115770751;Venezuela; -2018-11-22T12:41:36Z;Júlio Cesar;1219.14;115657500;Venezuela; -2018-11-22T12:28:11Z;Júlio Cesar;1391.982;115800960;Venezuela; -2018-11-22T12:22:53Z;Júlio;6282.336;115785153;Venezuela; -2018-11-22T12:19:15Z;Ana;1085.605;114388932;Venezuela; -2018-11-22T12:10:45Z;Eduardo;7335.406;114565576;Venezuela; -2018-11-22T12:06:18Z;Ana;4018.374;115817928;Venezuela; -2018-11-22T11:58:27Z;nathalia;716.6738;114334506;Venezuela; -2018-11-22T11:53:07Z;nathalia;1996.727;115040798;Venezuela; -2018-11-22T11:48:42Z;Sandra;2824.738;115120137;Venezuela; -2018-11-22T11:42:30Z;Sandra;353.7372;115693308;Venezuela; -2018-11-22T11:06:34Z;Nathália;5987.366;114514469;Venezuela; -2018-11-22T10:19:13Z;Júlio;5891.088;115146772;Venezuela; -2018-11-22T09:44:04Z;Ana;1926.704;116207951;Venezuela; -2018-11-22T09:40:16Z;Ana;1468.315;114378596;Venezuela; -2018-11-22T09:24:35Z;Nathália;2279.762;116052897;Venezuela; -2018-11-22T09:20:38Z;Júlio Cesar;1132.794;114672099;Venezuela; -2018-11-22T09:14:48Z;Júlio;1717.482;114932791;Venezuela; -2018-11-22T08:53:35Z;Sandra;2516.853;115992334;Venezuela; -2018-11-22T08:44:12Z;Ana;934.7716;115647639;Venezuela; -2018-11-22T08:07:42Z;Armando;899.8771;115858222;Venezuela; -2018-11-22T08:06:59Z;Sandra;2550.41;115501873;Venezuela; -2018-11-22T07:59:26Z;Júlio Cesar;914.5491;115552761;Venezuela; -2018-11-22T07:54:02Z;Júlio;510.2749;115098977;Venezuela; -2018-11-22T07:51:13Z;nathalia;2718.102;115799941;Venezuela; -2018-11-22T07:38:13Z;nathalia;5396.95;115892030;Venezuela; -2018-11-22T07:33:00Z;Armando;1304.424;114367834;Venezuela; -2018-11-22T07:26:14Z;Júlio;1169.936;116316217;Venezuela; -2018-11-22T07:17:23Z;nathalia;1189.226;114480657;Venezuela; -2018-11-22T07:06:13Z;Ana;13.80434;114294461;Venezuela; -2018-11-22T07:05:17Z;Nathália;269.5523;114414075;Venezuela; -2018-11-22T07:04:30Z;nathalia;10952.75;116060649;Venezuela; -2018-11-22T06:58:44Z;Júlio Cesar;403.0218;115132827;Venezuela; -2018-11-22T06:54:22Z;Ana;1061.408;114465302;Venezuela; -2018-11-22T06:34:38Z;Nathália;1104.964;114376334;Venezuela; -2018-11-22T06:24:03Z;Sandra;5028.382;115094049;Venezuela; -2018-11-22T06:20:12Z;Eduardo;507.1039;114420294;Venezuela; -2018-11-22T05:37:12Z;Eduardo;5099.247;114849928;Venezuela; -2018-11-22T05:33:46Z;nathalia;1109.495;115343108;Venezuela; -2018-11-22T05:27:54Z;Armando;1360.584;114241396;Venezuela; -2018-11-22T05:17:55Z;Eduardo;181.9455;115678347;Venezuela; -2018-11-22T05:15:53Z;Nathália;395.0507;115625998;Venezuela; -2018-11-22T04:53:17Z;Eduardo;3051.203;116038461;Venezuela; -2018-11-22T04:47:49Z;Nathália;1172.494;114241874;Venezuela; -2018-11-22T04:44:53Z;nathalia;825.3063;115282927;Venezuela; -2018-11-22T03:57:19Z;Armando;1701.512;114735914;Venezuela; -2018-11-22T03:48:01Z;Armando;1047.912;114297739;Venezuela; -2018-11-22T03:22:48Z;nathalia;655.8801;114761607;Venezuela; -2018-11-22T02:54:54Z;Júlio;1520.159;114206150;Venezuela; -2018-11-22T02:46:03Z;Ana;237.2341;115908611;Venezuela; -2018-11-22T02:45:56Z;nathalia;3235.978;114674350;Venezuela; -2018-11-22T02:22:21Z;Júlio Cesar;4526.204;114348079;Venezuela; -2018-11-22T02:05:22Z;Nathália;4916.304;115324654;Venezuela; -2018-11-22T01:11:31Z;nathalia;4151.895;115463330;Venezuela; -2018-11-21T23:57:02Z;Nathália;7165.524;116283579;Venezuela; -2018-11-21T23:52:43Z;Ana;2991.204;114590262;Venezuela; -2018-11-21T23:51:10Z;Sandra;8643.171;115181851;Venezuela; -2018-11-21T23:43:12Z;Nathália;5279.746;116216218;Venezuela; -2018-11-21T23:41:09Z;nathalia;281.9099;115002771;Venezuela; -2018-11-21T23:33:52Z;nathalia;3478.784;116176176;Venezuela; -2018-11-21T23:19:21Z;Armando;3496.888;115397776;Venezuela; -2018-11-21T23:01:38Z;Ana;9119.108;114622523;Venezuela; -2018-11-21T22:59:36Z;Sandra;2158.495;116199817;Venezuela; -2018-11-21T22:52:52Z;Júlio Cesar;2745.823;115170439;Venezuela; -2018-11-21T22:52:04Z;nathalia;1764.135;114939846;Venezuela; -2018-11-21T22:42:04Z;Júlio Cesar;21.96135;116130160;Venezuela; -2018-11-21T22:36:53Z;Armando;2210.07;114408027;Venezuela; -2018-11-21T21:48:36Z;Armando;3103.494;115026601;Venezuela; -2018-11-21T21:36:03Z;Ana;139.669;114574123;Venezuela; -2018-11-21T21:24:45Z;Júlio Cesar;8235.612;114409255;Venezuela; -2018-11-21T21:19:57Z;Armando;4328.959;116036539;Venezuela; -2018-11-21T21:07:26Z;Nathália;0.2619445;115194733;Venezuela; -2018-11-21T20:47:52Z;Armando;1645.858;114439480;Venezuela; -2018-11-21T20:36:03Z;Nathália;5639.315;116043265;Venezuela; -2018-11-21T20:25:07Z;Sandra;648.5415;116181342;Venezuela; -2018-11-21T19:55:44Z;nathalia;3750.979;114904568;Venezuela; -2018-11-21T19:55:09Z;Júlio;1161.784;115377237;Venezuela; -2018-11-21T19:41:31Z;Sandra;779.7961;115454830;Venezuela; -2018-11-21T19:37:16Z;Júlio Cesar;160.381;115298406;Venezuela; -2018-11-21T19:23:16Z;Júlio Cesar;126.0658;115256953;Venezuela; -2018-11-21T19:14:35Z;Sandra;683.3805;115478797;Venezuela; -2018-11-21T19:10:06Z;nathalia;2735.456;116326022;Venezuela; -2018-11-21T18:59:20Z;Nathália;3317.992;116222610;Venezuela; -2018-11-21T18:50:12Z;nathalia;1347.022;115472006;Venezuela; -2018-11-21T18:31:12Z;Armando;0.6727713;114940976;Venezuela; -2018-11-21T18:07:30Z;Armando;2327.658;114594084;Venezuela; -2018-11-21T18:03:43Z;Armando;268.4936;115450335;Venezuela; -2018-11-21T17:57:37Z;Júlio;1897.986;116326427;Venezuela; -2018-11-21T17:51:20Z;Júlio;2145.738;115248691;Venezuela; -2018-11-21T17:19:47Z;Sandra;964.6764;115243795;Venezuela; -2018-11-21T17:05:41Z;Júlio Cesar;1217.713;116050706;Venezuela; -2018-11-21T16:31:19Z;Eduardo;745.2972;115689103;Venezuela; -2018-11-21T16:24:30Z;nathalia;212.1302;114571686;Venezuela; -2018-11-21T16:06:44Z;Eduardo;1454.874;115287366;Venezuela; -2018-11-21T16:01:09Z;Sandra;85.24959;116370628;Venezuela; -2018-11-21T15:27:39Z;Ana;1701.372;116217423;Venezuela; -2018-11-21T15:25:43Z;Ana;35.72484;116031567;Venezuela; -2018-11-21T15:10:34Z;Eduardo;2534.952;115774505;Venezuela; -2018-11-21T14:07:12Z;Nathália;7.564053;115716708;Venezuela; -2018-11-21T14:03:03Z;nathalia;3398.125;114532309;Venezuela; -2018-11-21T13:42:18Z;Júlio;8266.335;114365207;Venezuela; -2018-11-21T13:37:31Z;Júlio Cesar;74.14219;114731012;Venezuela; -2018-11-21T13:25:23Z;Sandra;83.32324;114208206;Venezuela; -2018-11-21T13:16:52Z;Nathália;375.0065;114679704;Venezuela; -2018-11-21T13:13:06Z;nathalia;2769.355;116017974;Venezuela; -2018-11-21T12:36:37Z;Júlio;815.4581;115162753;Venezuela; -2018-11-21T11:43:48Z;nathalia;870.3044;115127142;Venezuela; -2018-11-21T11:37:30Z;Armando;6.935332;115509151;Venezuela; -2018-11-21T11:33:46Z;Nathália;918.8363;114625349;Venezuela; -2018-11-21T11:28:07Z;nathalia;641.1485;116287926;Venezuela; -2018-11-21T11:19:31Z;Júlio;777.9235;114852971;Venezuela; -2018-11-21T11:15:50Z;Ana;700.7774;114656292;Venezuela; -2018-11-21T11:00:04Z;Júlio;6252.352;115926852;Venezuela; -2018-11-21T10:58:49Z;Nathália;4477.666;114217293;Venezuela; -2018-11-21T10:09:39Z;nathalia;1172.792;115163827;Venezuela; -2018-11-21T09:14:38Z;Ana;942.9777;116062173;Venezuela; -2018-11-21T09:02:08Z;Júlio;1978.69;115607686;Venezuela; -2018-11-21T08:55:27Z;Júlio;5370.77;116255514;Venezuela; -2018-11-21T08:35:36Z;Júlio Cesar;386.8829;116227841;Venezuela; -2018-11-21T08:10:14Z;nathalia;335.8421;115412749;Venezuela; -2018-11-21T08:05:59Z;Eduardo;1610.796;114450575;Venezuela; -2018-11-21T07:55:46Z;Armando;315.3861;115055300;Venezuela; -2018-11-21T07:27:25Z;Nathália;305.5078;116093688;Venezuela; -2018-11-21T07:23:00Z;Nathália;5566.854;114748426;Venezuela; -2018-11-21T07:15:25Z;Ana;4297.418;115895286;Venezuela; -2018-11-21T06:49:26Z;Júlio;1802.849;115452685;Venezuela; -2018-11-21T06:24:19Z;Júlio Cesar;9549.651;115065431;Venezuela; -2018-11-21T06:19:02Z;Nathália;8426.895;116150632;Venezuela; -2018-11-21T06:13:58Z;Ana;3581.581;115598211;Venezuela; -2018-11-21T05:46:51Z;Nathália;497.1563;115558989;Venezuela; -2018-11-21T05:45:49Z;Armando;5767.02;114683298;Venezuela; -2018-11-21T05:37:25Z;Nathália;235.7072;115745412;Venezuela; -2018-11-21T05:30:56Z;Eduardo;209.4706;115018495;Venezuela; -2018-11-21T05:26:33Z;Ana;1061.349;114721519;Venezuela; -2018-11-21T05:21:20Z;Júlio Cesar;692.1735;114339431;Venezuela; -2018-11-21T05:13:54Z;Eduardo;898.3315;114350256;Venezuela; -2018-11-21T05:06:55Z;nathalia;3481.384;114775095;Venezuela; -2018-11-21T05:06:04Z;nathalia;99.24345;116297413;Venezuela; -2018-11-21T04:29:20Z;Eduardo;1872.616;115096487;Venezuela; -2018-11-21T04:24:45Z;Sandra;2514.46;115510305;Venezuela; -2018-11-21T04:19:51Z;Ana;4828.231;115572159;Venezuela; -2018-11-21T03:56:47Z;Sandra;182.2187;115997945;Venezuela; -2018-11-21T03:56:05Z;Nathália;559.3624;116387865;Venezuela; -2018-11-21T03:54:12Z;Júlio;103.5346;115550281;Venezuela; -2018-11-21T03:52:06Z;Sandra;3373.836;115602101;Venezuela; -2018-11-21T03:45:10Z;Júlio;751.446;114458237;Venezuela; -2018-11-21T03:30:10Z;Nathália;3440.435;114798577;Venezuela; -2018-11-21T03:27:36Z;Eduardo;27.75377;114598959;Venezuela; -2018-11-21T03:22:30Z;nathalia;129.7875;115185647;Venezuela; -2018-11-21T02:55:35Z;Ana;4036.199;114943151;Venezuela; -2018-11-21T02:50:19Z;nathalia;279.8694;116135490;Venezuela; -2018-11-21T02:48:28Z;Eduardo;1870.879;114987737;Venezuela; -2018-11-21T02:43:27Z;Eduardo;166.2196;114903927;Venezuela; -2018-11-21T02:22:33Z;Sandra;2683.622;114876545;Venezuela; -2018-11-21T02:19:27Z;nathalia;10.77984;114565457;Venezuela; -2018-11-21T02:14:29Z;Sandra;1347.772;115877098;Venezuela; -2018-11-21T01:58:43Z;Júlio Cesar;164.2915;115240012;Venezuela; -2018-11-21T01:37:51Z;Júlio Cesar;4278.415;115815252;Venezuela; -2018-11-21T01:35:56Z;Júlio Cesar;501.8997;114731136;Venezuela; -2018-11-21T01:10:29Z;Armando;4875.755;115462233;Venezuela; -2018-11-21T01:06:50Z;Júlio;1529.079;114307185;Venezuela; -2018-11-21T01:00:52Z;Eduardo;227.5798;114962034;Venezuela; -2018-11-21T00:59:33Z;Sandra;2924.176;115927010;Venezuela; -2018-11-21T00:53:48Z;Sandra;7961.156;114398796;Venezuela; -2018-11-21T00:41:14Z;Júlio Cesar;775.626;115363579;Venezuela; -2018-11-21T00:17:33Z;Ana;4938.189;114323202;Venezuela; -2018-11-21T00:06:47Z;Júlio;1677.988;116041304;Venezuela; -2018-11-21T00:03:12Z;Júlio;5614.076;115858534;Venezuela; -2018-11-20T23:58:39Z;Ana;107.7261;115667774;Venezuela; -2018-11-20T23:58:00Z;Eduardo;1835.037;115756927;Venezuela; -2018-11-20T23:37:43Z;Júlio Cesar;5455.268;115613686;Venezuela; -2018-11-20T23:23:33Z;Ana;2415.034;115085889;Venezuela; -2018-11-20T23:21:27Z;Eduardo;3283.757;115057918;Venezuela; -2018-11-20T23:04:04Z;Eduardo;80.30734;116311027;Venezuela; -2018-11-20T23:00:47Z;Ana;2010.368;115663307;Venezuela; -2018-11-20T22:56:49Z;Eduardo;378.6451;115733370;Venezuela; -2018-11-20T22:46:58Z;Sandra;3154.32;115483318;Venezuela; -2018-11-20T22:44:43Z;Júlio;185.848;114587958;Venezuela; -2018-11-20T22:29:21Z;Ana;1530.62;115155179;Venezuela; -2018-11-20T22:28:47Z;Júlio Cesar;7937.185;115236781;Venezuela; -2018-11-20T22:24:15Z;Eduardo;1051.556;115888132;Venezuela; -2018-11-20T22:23:50Z;Sandra;31.50583;115682127;Venezuela; -2018-11-20T22:16:09Z;Ana;640.2817;114468606;Venezuela; -2018-11-20T22:02:01Z;Júlio Cesar;2963.857;114318164;Venezuela; -2018-11-20T22:00:43Z;Armando;1837.091;114336155;Venezuela; -2018-11-20T21:53:23Z;Armando;1435.035;114542245;Venezuela; -2018-11-20T21:49:15Z;Júlio Cesar;1976.48;116048229;Venezuela; -2018-11-20T21:42:10Z;Sandra;1923.935;114386326;Venezuela; -2018-11-20T21:13:09Z;Armando;821.4471;115688698;Venezuela; -2018-11-20T20:53:20Z;Júlio Cesar;1106.425;115943347;Venezuela; -2018-11-20T20:51:26Z;Ana;2473.938;114629844;Venezuela; -2018-11-20T20:43:37Z;Sandra;1196.587;114885747;Venezuela; -2018-11-20T20:29:47Z;Sandra;223.0043;114287889;Venezuela; -2018-11-20T20:00:30Z;Nathália;2366.185;115470472;Venezuela; -2018-11-20T19:54:56Z;Júlio;223.1518;116130838;Venezuela; -2018-11-20T19:51:12Z;Sandra;1589.856;115742976;Venezuela; -2018-11-20T19:18:48Z;nathalia;200.3805;116131230;Venezuela; -2018-11-20T19:16:32Z;Júlio;573.8411;114564085;Venezuela; -2018-11-20T19:04:42Z;Júlio Cesar;3216.132;115323317;Venezuela; -2018-11-20T18:48:31Z;Júlio;537.4267;116215502;Venezuela; -2018-11-20T18:44:07Z;Eduardo;3478.03;115677873;Venezuela; -2018-11-20T18:11:12Z;Sandra;6212.014;114664383;Venezuela; -2018-11-20T18:01:42Z;Eduardo;2041.09;115714199;Venezuela; -2018-11-20T17:51:37Z;Júlio Cesar;426.7585;116038848;Venezuela; -2018-11-20T17:49:10Z;Júlio;1113.657;115524868;Venezuela; -2018-11-20T17:42:25Z;nathalia;898.5699;114532960;Venezuela; -2018-11-20T17:32:46Z;Sandra;140.4467;115136818;Venezuela; -2018-11-20T17:23:40Z;nathalia;2276.656;115049495;Venezuela; -2018-11-20T16:58:41Z;Nathália;3259.25;115372959;Venezuela; -2018-11-20T16:55:54Z;Júlio;1202.102;116307165;Venezuela; -2018-11-20T16:34:13Z;Júlio Cesar;2569.331;114868949;Venezuela; -2018-11-20T16:15:26Z;Júlio;1898.707;115188113;Venezuela; -2018-11-20T16:11:47Z;Júlio Cesar;3395.93;114787233;Venezuela; -2018-11-20T16:04:53Z;Sandra;1466.048;115115745;Venezuela; -2018-11-20T15:52:03Z;Eduardo;8298.787;114582995;Venezuela; -2018-11-20T15:40:11Z;Eduardo;2896.679;116092209;Venezuela; -2018-11-20T15:39:30Z;Sandra;1645.69;114966864;Venezuela; -2018-11-20T15:25:56Z;Ana;263.324;115258910;Venezuela; -2018-11-20T15:16:41Z;Júlio Cesar;3683.163;115316675;Venezuela; -2018-11-20T15:01:57Z;Júlio;3180.775;114379477;Venezuela; -2018-11-20T14:52:01Z;Sandra;8015.047;115166926;Venezuela; -2018-11-20T14:29:36Z;Júlio Cesar;3197.48;115685262;Venezuela; -2018-11-20T14:01:40Z;Nathália;466.7702;115000972;Venezuela; -2018-11-20T13:33:15Z;Júlio Cesar;2326.877;115498084;Venezuela; -2018-11-20T13:23:05Z;Armando;211.0404;115506887;Venezuela; -2018-11-20T13:22:49Z;Júlio;1820.338;114650712;Venezuela; -2018-11-20T13:20:03Z;Armando;555.0886;115946997;Venezuela; -2018-11-20T13:12:50Z;Júlio;912.3226;115156045;Venezuela; -2018-11-20T12:59:57Z;nathalia;470.7539;114326475;Venezuela; -2018-11-20T12:59:11Z;Júlio;3988.06;115851349;Venezuela; -2018-11-20T12:06:59Z;Eduardo;435.8545;114832600;Venezuela; -2018-11-20T11:36:42Z;Júlio;752.5407;115182484;Venezuela; -2018-11-20T11:27:26Z;Nathália;405.5268;115711371;Venezuela; -2018-11-20T10:45:44Z;Eduardo;369.7006;115697693;Venezuela; -2018-11-20T10:33:19Z;Nathália;1759.679;114835898;Venezuela; -2018-11-20T10:12:54Z;Ana;3006.501;116330096;Venezuela; -2018-11-20T10:01:22Z;Ana;1650.295;115013810;Venezuela; -2018-11-20T09:52:45Z;nathalia;662.5656;115271029;Venezuela; -2018-11-20T09:40:40Z;Nathália;526.6233;115289541;Venezuela; -2018-11-20T09:27:31Z;Nathália;5399.258;115653348;Venezuela; -2018-11-20T09:17:00Z;Júlio Cesar;722.188;114529595;Venezuela; -2018-11-20T08:43:42Z;Júlio;3980.293;114433600;Venezuela; -2018-11-20T08:40:10Z;Júlio;999.7403;116288313;Venezuela; -2018-11-20T08:39:54Z;Júlio Cesar;662.9053;115550551;Venezuela; -2018-11-20T08:33:39Z;Júlio;758.0488;115838988;Venezuela; -2018-11-20T08:26:56Z;Júlio;1044.609;116322956;Venezuela; -2018-11-20T08:22:16Z;nathalia;2315.047;115739734;Venezuela; -2018-11-20T08:22:10Z;Eduardo;2069.037;115716971;Venezuela; -2018-11-20T08:18:50Z;Júlio Cesar;1650.526;115302869;Venezuela; -2018-11-20T08:12:17Z;Eduardo;505.2231;115352486;Venezuela; -2018-11-20T08:01:45Z;Júlio Cesar;3780.091;114885256;Venezuela; -2018-11-20T07:56:53Z;Armando;1642.32;115844492;Venezuela; -2018-11-20T07:39:53Z;nathalia;703.4111;114969802;Venezuela; -2018-11-20T07:14:19Z;nathalia;4456.655;115817911;Venezuela; -2018-11-20T07:12:54Z;Sandra;425.5823;116248295;Venezuela; -2018-11-20T07:07:40Z;Armando;197.5247;115778344;Venezuela; -2018-11-20T06:53:18Z;Eduardo;854.5541;114338648;Venezuela; -2018-11-20T05:26:11Z;Ana;5614.511;115191936;Venezuela; -2018-11-20T05:00:23Z;Eduardo;2883.369;115915335;Venezuela; -2018-11-20T04:58:05Z;Eduardo;937.6766;116311142;Venezuela; -2018-11-20T04:49:30Z;Júlio;1201.969;115741053;Venezuela; -2018-11-20T04:35:15Z;Sandra;143.7686;115822853;Venezuela; -2018-11-20T04:25:08Z;Júlio Cesar;922.4943;114351556;Venezuela; -2018-11-20T03:54:24Z;Eduardo;285.5935;116162032;Venezuela; -2018-11-20T03:34:14Z;nathalia;887.156;115970761;Venezuela; -2018-11-20T03:14:06Z;Júlio Cesar;1016.716;115702028;Venezuela; -2018-11-20T03:05:18Z;Ana;4481.356;115163114;Venezuela; -2018-11-20T03:00:46Z;Eduardo;6195.421;114344126;Venezuela; -2018-11-20T02:45:45Z;Sandra;340.4477;115971378;Venezuela; -2018-11-20T02:13:23Z;Armando;1153.188;115963998;Venezuela; -2018-11-20T02:06:15Z;Júlio Cesar;748.2299;114755700;Venezuela; -2018-11-20T02:03:18Z;Sandra;327.6553;114261843;Venezuela; -2018-11-20T01:02:14Z;Ana;4071.223;116191736;Venezuela; -2018-11-20T00:58:42Z;Júlio;6401.367;115105554;Venezuela; -2018-11-20T00:30:32Z;Ana;6641.385;114416206;Venezuela; -2018-11-20T00:15:02Z;nathalia;734.9553;116361384;Venezuela; -2018-11-20T00:14:44Z;Armando;1286.696;114539941;Venezuela; -2018-11-20T00:02:22Z;Ana;1195.027;114586603;Venezuela; -2018-11-19T23:58:43Z;Eduardo;15.37908;115490534;Venezuela; -2018-11-19T23:17:43Z;Nathália;1710.663;116072655;Venezuela; -2018-11-19T22:10:24Z;Armando;508.7968;115899995;Venezuela; -2018-11-19T21:51:09Z;Sandra;1039.712;114450113;Venezuela; -2018-11-19T21:39:06Z;Júlio Cesar;1748.074;115006360;Venezuela; -2018-11-19T21:20:04Z;Eduardo;5712.843;116398349;Venezuela; -2018-11-19T21:16:40Z;Ana;1276.506;116253136;Venezuela; -2018-11-19T20:47:28Z;nathalia;4028.477;114869181;Venezuela; -2018-11-19T20:29:29Z;Nathália;471.0862;116056228;Venezuela; -2018-11-19T20:28:13Z;Júlio;1781.739;114910273;Venezuela; -2018-11-19T20:22:12Z;Nathália;1107.778;114314387;Venezuela; -2018-11-19T19:37:15Z;Júlio Cesar;726.0899;114651082;Venezuela; -2018-11-19T19:32:53Z;Júlio;874.6942;114612974;Venezuela; -2018-11-19T19:23:50Z;Ana;3816.892;115813847;Venezuela; -2018-11-19T18:47:22Z;Ana;391.5277;115277543;Venezuela; -2018-11-19T18:37:41Z;Sandra;7831.112;115161417;Venezuela; -2018-11-19T18:27:28Z;Nathália;3179.634;116390940;Venezuela; -2018-11-19T18:25:43Z;Sandra;2699.985;115903622;Venezuela; -2018-11-19T18:22:20Z;Eduardo;762.0161;114552909;Venezuela; -2018-11-19T18:16:30Z;Nathália;2298.486;116202810;Venezuela; -2018-11-19T18:06:45Z;Ana;1725.583;114399716;Venezuela; -2018-11-19T18:02:56Z;Sandra;6848.005;114740236;Venezuela; -2018-11-19T18:01:47Z;Armando;594.484;115354909;Venezuela; -2018-11-19T17:59:40Z;nathalia;3612.467;115655667;Venezuela; -2018-11-19T17:41:14Z;Júlio Cesar;4423.333;114849900;Venezuela; -2018-11-19T17:29:45Z;Sandra;6209.683;114968965;Venezuela; -2018-11-19T17:19:19Z;nathalia;108.2126;114430911;Venezuela; -2018-11-19T17:01:23Z;Armando;3137.912;114777543;Venezuela; -2018-11-19T16:58:51Z;Júlio Cesar;3041.396;115014178;Venezuela; -2018-11-19T16:27:32Z;Nathália;3489.123;115897801;Venezuela; -2018-11-19T15:40:29Z;Júlio Cesar;2886.308;115393629;Venezuela; -2018-11-19T15:12:01Z;nathalia;6138.656;115831081;Venezuela; -2018-11-19T15:10:40Z;Júlio;1744.281;115323957;Venezuela; -2018-11-19T14:57:48Z;nathalia;52.07229;114463703;Venezuela; -2018-11-19T14:52:58Z;Nathália;482.1201;114760601;Venezuela; -2018-11-19T14:41:20Z;Júlio Cesar;366.8262;115681279;Venezuela; -2018-11-19T14:13:54Z;Sandra;2499.048;114406755;Venezuela; -2018-11-19T14:13:38Z;Armando;4008.841;115510680;Venezuela; -2018-11-19T14:02:34Z;Júlio;880.7395;115534696;Venezuela; -2018-11-19T13:51:26Z;Nathália;4406.384;115198514;Venezuela; -2018-11-19T13:35:19Z;Júlio Cesar;1544.967;114489223;Venezuela; -2018-11-19T13:22:01Z;nathalia;8572.2;116357341;Venezuela; -2018-11-19T12:41:30Z;Nathália;723.5773;115170988;Venezuela; -2018-11-19T12:38:45Z;Nathália;2409.896;114906460;Venezuela; -2018-11-19T12:31:36Z;Eduardo;288.4169;114346237;Venezuela; -2018-11-19T11:46:07Z;Júlio Cesar;1604.398;114896783;Venezuela; -2018-11-19T10:36:57Z;Júlio;700.1997;114909564;Venezuela; -2018-11-19T10:19:27Z;Júlio;788.9877;115828678;Venezuela; -2018-11-19T10:17:51Z;Ana;413.8064;114534348;Venezuela; -2018-11-19T10:08:04Z;Ana;3855.745;116356061;Venezuela; -2018-11-19T09:13:23Z;nathalia;3800.435;116051317;Venezuela; -2018-11-19T08:56:06Z;Armando;4307.204;114598640;Venezuela; -2018-11-19T08:29:43Z;Armando;456.9266;114718330;Venezuela; -2018-11-19T08:22:21Z;Armando;1984.476;115195303;Venezuela; -2018-11-19T08:13:49Z;Júlio Cesar;379.4751;114568332;Venezuela; -2018-11-19T08:07:44Z;Sandra;3528.751;115781145;Venezuela; -2018-11-19T07:36:18Z;Eduardo;764.4651;116336235;Venezuela; -2018-11-19T07:23:04Z;Ana;939.1516;114642467;Venezuela; -2018-11-19T07:07:42Z;Ana;2440.226;115824674;Venezuela; -2018-11-19T07:02:01Z;Ana;5864.013;115998719;Venezuela; -2018-11-19T06:46:40Z;nathalia;148.8095;115642637;Venezuela; -2018-11-19T05:53:44Z;Júlio Cesar;84.30441;115886251;Venezuela; -2018-11-19T05:50:52Z;nathalia;1001.774;116120657;Venezuela; -2018-11-19T04:47:59Z;Júlio;966.346;115715472;Venezuela; -2018-11-19T04:37:31Z;Júlio Cesar;2055.938;114934666;Venezuela; -2018-11-19T04:29:17Z;Júlio Cesar;1219.735;114774993;Venezuela; -2018-11-19T04:20:30Z;Sandra;5241.986;115907093;Venezuela; -2018-11-19T03:24:33Z;Júlio Cesar;1222.497;114895096;Venezuela; -2018-11-19T03:24:01Z;Sandra;3101.706;114523374;Venezuela; -2018-11-19T03:08:13Z;Júlio;3599.313;114309591;Venezuela; -2018-11-19T02:54:56Z;Júlio Cesar;179.4056;114517699;Venezuela; -2018-11-19T02:53:10Z;Nathália;277.677;115342188;Venezuela; -2018-11-19T02:49:53Z;nathalia;2000.752;114505645;Venezuela; -2018-11-19T02:49:25Z;nathalia;899.8322;114664754;Venezuela; -2018-11-19T02:41:40Z;Nathália;474.3018;116037561;Venezuela; -2018-11-19T02:39:42Z;Ana;52.79541;115763387;Venezuela; -2018-11-19T02:15:28Z;Nathália;1027.697;114377316;Venezuela; -2018-11-19T02:11:58Z;Armando;4496.155;115390881;Venezuela; -2018-11-19T02:08:42Z;Júlio;321.6746;114366997;Venezuela; -2018-11-19T01:44:26Z;Ana;161.3608;115837470;Venezuela; -2018-11-19T00:43:17Z;Júlio Cesar;1155.074;114224353;Venezuela; -2018-11-19T00:36:47Z;Ana;1383.44;114973582;Venezuela; -2018-11-19T00:12:49Z;Júlio Cesar;1564.485;116198902;Venezuela; -2018-11-19T00:04:13Z;Eduardo;1107.836;115268074;Venezuela; -2018-11-18T23:45:20Z;Nathália;2620.67;114438125;Venezuela; -2018-11-18T23:02:00Z;Eduardo;7163.665;115028394;Venezuela; -2018-11-18T22:39:23Z;Ana;1948.887;114784124;Venezuela; -2018-11-18T22:30:38Z;Eduardo;2714.356;116350170;Venezuela; -2018-11-18T22:20:23Z;Eduardo;4064.633;114240522;Venezuela; -2018-11-18T22:01:04Z;Júlio Cesar;3739.716;116240454;Venezuela; -2018-11-18T21:44:53Z;Sandra;5720.609;114285340;Venezuela; -2018-11-18T21:38:24Z;Nathália;902.4403;114466907;Venezuela; -2018-11-18T21:20:30Z;Nathália;1233.302;115592515;Venezuela; -2018-11-18T21:11:57Z;Júlio;1283.17;114983515;Venezuela; -2018-11-18T20:55:34Z;Eduardo;720.2771;115703565;Venezuela; -2018-11-18T20:36:52Z;Ana;1720.375;115561389;Venezuela; -2018-11-18T20:24:26Z;Júlio;5073.996;116082654;Venezuela; -2018-11-18T20:14:59Z;nathalia;1346.136;115196487;Venezuela; -2018-11-18T19:59:14Z;Sandra;1558.937;115116859;Venezuela; -2018-11-18T19:48:14Z;Júlio Cesar;1569.811;115088060;Venezuela; -2018-11-18T19:41:42Z;Júlio;1024.052;114838651;Venezuela; -2018-11-18T19:40:47Z;Armando;199.8931;114461085;Venezuela; -2018-11-18T19:39:33Z;Armando;44.34764;115350428;Venezuela; -2018-11-18T19:09:42Z;nathalia;270.1763;115938402;Venezuela; -2018-11-18T18:56:35Z;Júlio Cesar;3971.706;114471478;Venezuela; -2018-11-18T18:52:36Z;Ana;3284.094;116340648;Venezuela; -2018-11-18T18:49:52Z;Júlio;2570.983;115803115;Venezuela; -2018-11-18T18:38:51Z;Sandra;6013.438;114928264;Venezuela; -2018-11-18T18:36:48Z;Sandra;4280.546;116211947;Venezuela; -2018-11-18T18:12:25Z;Júlio;7225.354;115476357;Venezuela; -2018-11-18T18:07:37Z;nathalia;3071.107;114812131;Venezuela; -2018-11-18T17:40:16Z;Sandra;1967.429;115615148;Venezuela; -2018-11-18T17:31:04Z;nathalia;1260.522;114200748;Venezuela; -2018-11-18T17:25:00Z;Sandra;1579.46;115875431;Venezuela; -2018-11-18T16:20:18Z;Júlio;2645.225;114272095;Venezuela; -2018-11-18T16:18:57Z;nathalia;348.0145;116103543;Venezuela; -2018-11-18T16:17:45Z;nathalia;75.41284;115321859;Venezuela; -2018-11-18T15:59:16Z;Ana;56.58485;115392207;Venezuela; -2018-11-18T15:24:07Z;Júlio;1126.783;115211985;Venezuela; -2018-11-18T15:21:40Z;Eduardo;7860.395;114382969;Venezuela; -2018-11-18T14:59:36Z;Júlio Cesar;946.7076;116169077;Venezuela; -2018-11-18T14:47:18Z;Nathália;4666.979;116253878;Venezuela; -2018-11-18T14:40:05Z;Eduardo;3334.945;115757398;Venezuela; -2018-11-18T14:33:24Z;Ana;542.0126;114507295;Venezuela; -2018-11-18T14:28:04Z;Eduardo;808.1844;114221585;Venezuela; -2018-11-18T14:24:41Z;Sandra;5890.528;116211920;Venezuela; -2018-11-18T14:20:55Z;Sandra;5567.451;115524944;Venezuela; -2018-11-18T14:09:51Z;Sandra;1619.599;116124545;Venezuela; -2018-11-18T14:03:17Z;nathalia;4609.469;115185628;Venezuela; -2018-11-18T14:02:51Z;nathalia;93.69818;115491474;Venezuela; -2018-11-18T13:34:34Z;nathalia;175.0824;115843487;Venezuela; -2018-11-18T13:24:04Z;nathalia;1004.865;116016516;Venezuela; -2018-11-18T13:06:14Z;Ana;395.3685;116065901;Venezuela; -2018-11-18T13:06:00Z;nathalia;3042.95;116096467;Venezuela; -2018-11-18T12:43:35Z;Ana;956.5774;114632570;Venezuela; -2018-11-18T12:27:51Z;Sandra;68.67583;116297435;Venezuela; -2018-11-18T12:07:05Z;Armando;497.7981;116276359;Venezuela; -2018-11-18T11:49:00Z;Armando;1628.505;115946114;Venezuela; -2018-11-18T11:36:47Z;Armando;598.2179;115851028;Venezuela; -2018-11-18T11:19:08Z;Eduardo;1537.464;115342604;Venezuela; -2018-11-18T11:15:36Z;Armando;509.5787;116173323;Venezuela; -2018-11-18T11:04:01Z;Eduardo;6382.301;114668225;Venezuela; -2018-11-18T09:48:35Z;nathalia;9210.985;115788353;Venezuela; -2018-11-18T09:45:00Z;Eduardo;618.7224;114523117;Venezuela; -2018-11-18T09:18:27Z;nathalia;2583.899;114240621;Venezuela; -2018-11-18T08:58:52Z;Nathália;2967.619;114337561;Venezuela; -2018-11-18T08:47:16Z;Ana;208.9667;114266551;Venezuela; -2018-11-18T08:44:25Z;Júlio Cesar;3750.376;114261449;Venezuela; -2018-11-18T08:03:54Z;Júlio Cesar;790.7859;115385514;Venezuela; -2018-11-18T07:50:28Z;Sandra;498.2076;114367081;Venezuela; -2018-11-18T07:46:33Z;Júlio;4847.648;114473648;Venezuela; -2018-11-18T07:18:16Z;Eduardo;706.7865;114230219;Venezuela; -2018-11-18T07:09:58Z;Armando;2785.353;115706373;Venezuela; -2018-11-18T07:05:34Z;Ana;430.2381;116188810;Venezuela; -2018-11-18T06:55:32Z;Nathália;305.7498;116011888;Venezuela; -2018-11-18T06:27:29Z;Júlio Cesar;1569.323;114713496;Venezuela; -2018-11-18T06:20:10Z;Eduardo;370.4787;116139992;Venezuela; -2018-11-18T05:58:02Z;Júlio Cesar;7094.179;114425598;Venezuela; -2018-11-18T05:41:25Z;Armando;3513.304;116050451;Venezuela; -2018-11-18T05:21:46Z;Júlio;6684.105;114235278;Venezuela; -2018-11-18T05:19:31Z;Eduardo;794.7278;114928285;Venezuela; -2018-11-18T05:02:31Z;Ana;4412.463;115998158;Venezuela; -2018-11-18T04:59:28Z;Júlio;9428.678;115052215;Venezuela; -2018-11-18T04:51:49Z;Ana;3290.227;115986689;Venezuela; -2018-11-18T04:49:26Z;Armando;971.7415;114988895;Venezuela; -2018-11-18T04:37:04Z;Armando;939.5552;114287467;Venezuela; -2018-11-18T04:32:30Z;nathalia;4444.113;114726987;Venezuela; -2018-11-18T04:30:35Z;Júlio;739.7039;115949532;Venezuela; -2018-11-18T04:10:34Z;Eduardo;448.3957;115887415;Venezuela; -2018-11-18T03:34:13Z;Nathália;630.6385;115295785;Venezuela; -2018-11-18T03:15:35Z;Júlio;866.1181;114932352;Venezuela; -2018-11-18T03:11:50Z;Júlio;1878.436;114949900;Venezuela; -2018-11-18T03:11:24Z;Sandra;1118.482;116198549;Venezuela; -2018-11-18T02:13:23Z;Ana;4661.384;115091334;Venezuela; -2018-11-18T02:12:49Z;Júlio Cesar;5115.184;116173971;Venezuela; -2018-11-18T02:09:27Z;Ana;4210.669;114676443;Venezuela; -2018-11-18T01:49:09Z;Ana;2691.397;115671648;Venezuela; -2018-11-18T01:43:56Z;Sandra;3037.598;115896564;Venezuela; -2018-11-18T01:38:24Z;Nathália;367.8295;115680471;Venezuela; -2018-11-18T01:33:39Z;Eduardo;160.9321;115630099;Venezuela; -2018-11-18T01:23:07Z;Júlio Cesar;2709.888;115365837;Venezuela; -2018-11-18T01:01:20Z;Júlio Cesar;3353.219;115706423;Venezuela; -2018-11-18T01:00:39Z;Ana;2692.651;114262448;Venezuela; -2018-11-18T00:18:36Z;Armando;584.1783;114770981;Venezuela; -2018-11-18T00:05:58Z;Ana;1186.376;114271037;Venezuela; -2018-11-17T23:42:11Z;Ana;660.9527;114726052;Venezuela; -2018-11-17T23:38:26Z;Armando;2907.815;114561292;Venezuela; -2018-11-17T22:43:07Z;Nathália;6082.854;115631991;Venezuela; -2018-11-17T22:37:36Z;Eduardo;3842.545;116079014;Venezuela; -2018-11-17T22:24:15Z;Júlio Cesar;3215.62;115588355;Venezuela; -2018-11-17T22:08:31Z;nathalia;3345.053;115923056;Venezuela; -2018-11-17T21:45:34Z;Armando;298.2647;116245792;Venezuela; -2018-11-17T21:44:49Z;Armando;3737.635;115810247;Venezuela; -2018-11-17T21:36:11Z;Eduardo;336.7936;114286676;Venezuela; -2018-11-17T21:30:20Z;Nathália;4463.956;115454185;Venezuela; -2018-11-17T21:26:28Z;nathalia;732.1822;114414970;Venezuela; -2018-11-17T21:01:51Z;Júlio Cesar;2633.256;115271170;Venezuela; -2018-11-17T20:56:54Z;Sandra;6051.155;115481577;Venezuela; -2018-11-17T20:28:32Z;Eduardo;203.2739;115322488;Venezuela; -2018-11-17T20:14:08Z;Júlio Cesar;38.54259;116092794;Venezuela; -2018-11-17T20:08:57Z;Eduardo;815.9203;115202546;Venezuela; -2018-11-17T19:59:49Z;Sandra;351.8267;115729262;Venezuela; -2018-11-17T19:00:30Z;Júlio;54.4183;114971589;Venezuela; -2018-11-17T18:53:40Z;Nathália;1884.686;114244019;Venezuela; -2018-11-17T18:26:03Z;Eduardo;2501.7;114473363;Venezuela; -2018-11-17T18:25:03Z;Armando;1566.222;116095285;Venezuela; -2018-11-17T17:45:46Z;nathalia;1502.897;114443699;Venezuela; -2018-11-17T17:32:23Z;nathalia;982.5634;115802036;Venezuela; -2018-11-17T17:00:47Z;Eduardo;218.1683;114956221;Venezuela; -2018-11-17T16:58:52Z;Armando;992.0075;115146630;Venezuela; -2018-11-17T16:58:33Z;Ana;5734.005;114872926;Venezuela; -2018-11-17T16:50:46Z;Sandra;2288.639;116071020;Venezuela; -2018-11-17T16:28:40Z;Ana;282.4553;114692625;Venezuela; -2018-11-17T16:26:17Z;Armando;6885.221;116284550;Venezuela; -2018-11-17T16:12:34Z;Júlio Cesar;1906.817;115833870;Venezuela; -2018-11-17T15:42:38Z;Ana;1617.226;116338694;Venezuela; -2018-11-17T15:41:27Z;Nathália;2920.059;114697672;Venezuela; -2018-11-17T15:17:50Z;Júlio;664.4468;116102660;Venezuela; -2018-11-17T15:00:10Z;Armando;2778.79;115705660;Venezuela; -2018-11-17T14:59:37Z;Nathália;3350.878;115063558;Venezuela; -2018-11-17T14:59:08Z;Nathália;1403.394;114831978;Venezuela; -2018-11-17T13:43:15Z;Júlio Cesar;3865.281;115617192;Venezuela; -2018-11-17T13:27:16Z;nathalia;1985.679;114660552;Venezuela; -2018-11-17T13:26:33Z;nathalia;664.7589;114624848;Venezuela; -2018-11-17T13:22:00Z;Sandra;6681.421;115383086;Venezuela; -2018-11-17T12:56:29Z;Armando;5036.534;116192459;Venezuela; -2018-11-17T12:38:35Z;Sandra;6295.581;115699337;Venezuela; -2018-11-17T12:10:45Z;Nathália;1722.924;114370709;Venezuela; -2018-11-17T12:08:15Z;Armando;5441.875;114633308;Venezuela; -2018-11-17T11:55:48Z;Ana;336.9569;114585236;Venezuela; -2018-11-17T11:55:21Z;Eduardo;1323.25;114492297;Venezuela; -2018-11-17T11:38:06Z;Júlio;107.3323;116339274;Venezuela; -2018-11-17T11:00:13Z;Júlio Cesar;2069.94;114240761;Venezuela; -2018-11-17T10:45:47Z;Armando;3207.222;114310442;Venezuela; -2018-11-17T10:23:30Z;Júlio Cesar;3114.862;114823265;Venezuela; -2018-11-17T10:21:11Z;Ana;1831.518;116320792;Venezuela; -2018-11-17T10:15:12Z;nathalia;2718.519;114959763;Venezuela; -2018-11-17T09:56:16Z;Nathália;1901.781;114719435;Venezuela; -2018-11-17T09:39:38Z;Nathália;138.9157;115569219;Venezuela; -2018-11-17T09:07:43Z;Júlio Cesar;639.9854;116119894;Venezuela; -2018-11-17T09:03:23Z;Júlio Cesar;510.6993;115319952;Venezuela; -2018-11-17T09:02:59Z;Ana;1571.909;114456028;Venezuela; -2018-11-17T08:56:04Z;Eduardo;4204.091;115363174;Venezuela; -2018-11-17T08:39:01Z;nathalia;1168.001;116211724;Venezuela; -2018-11-17T08:22:52Z;nathalia;6262.626;115397941;Venezuela; -2018-11-17T08:16:28Z;nathalia;1059.152;116085551;Venezuela; -2018-11-17T07:56:53Z;Ana;5689.616;116078361;Venezuela; -2018-11-17T07:24:40Z;Eduardo;5065.551;115677076;Venezuela; -2018-11-17T07:20:22Z;Armando;6539.322;115544450;Venezuela; -2018-11-17T06:46:15Z;Júlio;1994.01;115824807;Venezuela; -2018-11-17T06:32:36Z;Sandra;707.3386;114670308;Venezuela; -2018-11-17T06:21:08Z;Júlio;3383.189;114667124;Venezuela; -2018-11-17T06:18:31Z;Armando;91.89188;116241630;Venezuela; -2018-11-17T05:53:19Z;Júlio Cesar;191.5828;115087265;Venezuela; -2018-11-17T05:37:12Z;Armando;4138.469;116109928;Venezuela; -2018-11-17T05:29:45Z;Eduardo;644.5329;115159691;Venezuela; -2018-11-17T05:28:47Z;Nathália;3039.245;115029808;Venezuela; -2018-11-17T04:41:34Z;Nathália;1368.611;116072589;Venezuela; -2018-11-17T04:41:19Z;Sandra;2333.496;115937555;Venezuela; -2018-11-17T04:17:12Z;Sandra;3842.786;114767158;Venezuela; -2018-11-17T04:14:37Z;Armando;1459.812;114375116;Venezuela; -2018-11-17T03:44:42Z;Júlio;10.9704;116065450;Venezuela; -2018-11-17T03:39:40Z;Júlio;3418.006;115596246;Venezuela; -2018-11-17T03:35:54Z;Júlio;5136.239;114922227;Venezuela; -2018-11-17T03:35:24Z;Armando;549.742;115254138;Venezuela; -2018-11-17T03:33:09Z;Sandra;4665.71;116364284;Venezuela; -2018-11-17T02:14:31Z;Júlio Cesar;427.7134;114968519;Venezuela; -2018-11-17T01:32:32Z;Júlio Cesar;1618.598;115672398;Venezuela; -2018-11-17T01:22:08Z;Júlio Cesar;904.2147;114895286;Venezuela; -2018-11-17T00:50:20Z;Júlio;3249.788;115600607;Venezuela; -2018-11-17T00:26:25Z;Armando;2828.78;114425919;Venezuela; -2018-11-17T00:19:54Z;nathalia;6807.548;116089865;Venezuela; -2018-11-16T23:25:25Z;Júlio Cesar;971.6327;114861880;Venezuela; -2018-11-16T23:17:30Z;nathalia;3008.295;115858778;Venezuela; -2018-11-16T23:14:08Z;nathalia;5641.336;116009958;Venezuela; -2018-11-16T23:09:52Z;Sandra;2476.701;115330307;Venezuela; -2018-11-16T22:53:28Z;Nathália;635.8576;116171279;Venezuela; -2018-11-16T22:15:06Z;Eduardo;562.7897;115728549;Venezuela; -2018-11-16T22:08:43Z;Eduardo;137.8599;115640394;Venezuela; -2018-11-16T21:36:17Z;Júlio;624.8195;114490893;Venezuela; -2018-11-16T21:15:25Z;Ana;370.9147;116268921;Venezuela; -2018-11-16T20:22:54Z;Sandra;1448.082;116149564;Venezuela; -2018-11-16T20:18:12Z;Armando;191.1577;115236800;Venezuela; -2018-11-16T19:51:38Z;nathalia;144.8196;114286845;Venezuela; -2018-11-16T19:38:37Z;Júlio;5279.954;115297223;Venezuela; -2018-11-16T19:23:02Z;Ana;807.2653;115511508;Venezuela; -2018-11-16T19:22:52Z;Júlio Cesar;1439.831;114252342;Venezuela; -2018-11-16T19:18:46Z;Nathália;287.7464;116109575;Venezuela; -2018-11-16T19:12:05Z;Armando;584.2954;115808011;Venezuela; -2018-11-16T18:57:04Z;Júlio Cesar;4215.445;114600149;Venezuela; -2018-11-16T18:56:52Z;Nathália;2578.61;115359688;Venezuela; -2018-11-16T18:43:38Z;Eduardo;3359.306;114483915;Venezuela; -2018-11-16T18:31:03Z;Júlio;1002.159;114447795;Venezuela; -2018-11-16T18:08:34Z;Ana;3920.765;114232531;Venezuela; -2018-11-16T17:00:26Z;Nathália;5325.31;114305878;Venezuela; -2018-11-16T16:57:56Z;Júlio;416.794;116378082;Venezuela; -2018-11-16T16:32:36Z;Sandra;1165.36;116119738;Venezuela; -2018-11-16T16:31:27Z;Júlio;4425.172;116079414;Venezuela; -2018-11-16T16:18:11Z;Júlio Cesar;141.8661;116040089;Venezuela; -2018-11-16T16:05:19Z;Júlio Cesar;48.94339;115196048;Venezuela; -2018-11-16T16:03:07Z;Ana;4227.463;116078172;Venezuela; -2018-11-16T16:01:17Z;Armando;81.66321;115072584;Venezuela; -2018-11-16T15:47:29Z;Júlio;329.8257;115840654;Venezuela; -2018-11-16T15:38:06Z;nathalia;1362.935;116258113;Venezuela; -2018-11-16T15:08:39Z;Júlio Cesar;20.80092;115767232;Venezuela; -2018-11-16T14:50:47Z;Eduardo;1835.7;116368415;Venezuela; -2018-11-16T14:32:17Z;Ana;619.7844;115630576;Venezuela; -2018-11-16T14:23:41Z;Sandra;2037.13;115091105;Venezuela; -2018-11-16T13:42:50Z;Sandra;1460.645;116110796;Venezuela; -2018-11-16T13:42:49Z;Júlio;1856.795;115335604;Venezuela; -2018-11-16T13:00:58Z;Armando;1613.99;114862233;Venezuela; -2018-11-16T12:56:05Z;nathalia;682.5155;115337936;Venezuela; -2018-11-16T12:50:26Z;Sandra;1817.141;114774592;Venezuela; -2018-11-16T12:42:24Z;nathalia;4955.639;114795434;Venezuela; -2018-11-16T12:34:28Z;Júlio;708.8212;114247009;Venezuela; -2018-11-16T12:32:00Z;Nathália;156.8357;114939434;Venezuela; -2018-11-16T12:12:49Z;Nathália;2536.143;115856637;Venezuela; -2018-11-16T12:12:39Z;nathalia;3290.122;115095608;Venezuela; -2018-11-16T11:58:49Z;Eduardo;1654.228;115151015;Venezuela; -2018-11-16T11:42:43Z;Sandra;3646.198;115664464;Venezuela; -2018-11-16T11:12:23Z;nathalia;357.0182;114500918;Venezuela; -2018-11-16T10:49:07Z;Armando;1824.199;114619933;Venezuela; -2018-11-16T10:48:59Z;nathalia;475.6129;116075609;Venezuela; -2018-11-16T10:34:32Z;Sandra;7260.155;115389298;Venezuela; -2018-11-16T10:33:31Z;Nathália;519.2921;114703483;Venezuela; -2018-11-16T10:21:58Z;nathalia;603.0786;116266062;Venezuela; -2018-11-16T10:19:36Z;Sandra;2255.732;116001717;Venezuela; -2018-11-16T09:56:02Z;Sandra;57.26228;115418504;Venezuela; -2018-11-16T09:24:43Z;Eduardo;952.3597;115921039;Venezuela; -2018-11-16T08:59:23Z;Eduardo;213.5695;114741625;Venezuela; -2018-11-16T08:47:01Z;nathalia;752.7812;114700446;Venezuela; -2018-11-16T08:41:23Z;Ana;2235.592;115379591;Venezuela; -2018-11-16T08:31:54Z;Júlio Cesar;433.2124;114784508;Venezuela; -2018-11-16T08:10:40Z;Júlio;2048.691;115167423;Venezuela; -2018-11-16T07:52:42Z;Eduardo;1874.999;114482083;Venezuela; -2018-11-16T07:40:08Z;Armando;1525.968;115568108;Venezuela; -2018-11-16T07:26:47Z;Júlio;1737.251;114545580;Venezuela; -2018-11-16T06:55:40Z;Júlio Cesar;785.7036;114661837;Venezuela; -2018-11-16T06:51:18Z;Sandra;1004.857;115178791;Venezuela; -2018-11-16T06:47:50Z;Júlio Cesar;2158.75;116107690;Venezuela; -2018-11-16T06:04:09Z;Júlio;1096.799;114787175;Venezuela; -2018-11-16T05:37:11Z;Júlio;2242.542;116303879;Venezuela; -2018-11-16T05:19:37Z;nathalia;4136.315;114797143;Venezuela; -2018-11-16T05:16:56Z;nathalia;1793.622;114787652;Venezuela; -2018-11-16T05:14:12Z;Sandra;2798.468;115365832;Venezuela; -2018-11-16T05:04:22Z;Ana;496.5505;114481558;Venezuela; -2018-11-16T04:50:35Z;Eduardo;2033.847;114868033;Venezuela; -2018-11-16T04:46:46Z;Armando;1639.029;115494708;Venezuela; -2018-11-16T04:43:28Z;Ana;464.7205;115005696;Venezuela; -2018-11-16T04:43:23Z;Armando;888.383;115442951;Venezuela; -2018-11-16T04:31:56Z;Ana;3204.239;114882656;Venezuela; -2018-11-16T04:30:32Z;nathalia;113.6083;114748152;Venezuela; -2018-11-16T04:18:20Z;Armando;99.54432;115744718;Venezuela; -2018-11-16T04:13:56Z;Armando;1056.58;114532526;Venezuela; -2018-11-16T04:07:51Z;Nathália;447.3218;114782271;Venezuela; -2018-11-16T03:50:28Z;Eduardo;4807.091;115121204;Venezuela; -2018-11-16T03:30:35Z;Ana;1923.836;116250617;Venezuela; -2018-11-16T03:19:31Z;Júlio Cesar;5956.905;116246606;Venezuela; -2018-11-16T03:19:28Z;Eduardo;2500.143;116241704;Venezuela; -2018-11-16T03:14:52Z;Eduardo;794.5058;114630661;Venezuela; -2018-11-16T03:14:33Z;Eduardo;3824.942;114810772;Venezuela; -2018-11-16T03:07:16Z;nathalia;65.5761;115006102;Venezuela; -2018-11-16T03:01:07Z;nathalia;3005.456;114941916;Venezuela; -2018-11-16T02:58:25Z;Eduardo;3079.399;115672249;Venezuela; -2018-11-16T02:50:38Z;Sandra;3079.44;116376848;Venezuela; -2018-11-16T02:05:08Z;Júlio Cesar;2085.427;115541757;Venezuela; -2018-11-16T01:16:10Z;Júlio Cesar;1945.826;115577016;Venezuela; -2018-11-16T01:04:58Z;Ana;8390.219;114270838;Venezuela; -2018-11-16T00:44:57Z;Sandra;5666.113;114922592;Venezuela; -2018-11-16T00:23:37Z;Eduardo;1518.216;115838128;Venezuela; -2018-11-16T00:16:49Z;Júlio Cesar;3219.637;115480446;Venezuela; -2018-11-16T00:12:16Z;Nathália;3202.116;115627228;Venezuela; -2018-11-16T00:08:37Z;Armando;2227.695;116056239;Venezuela; -2018-11-16T00:07:25Z;Eduardo;1168.701;115966383;Venezuela; -2018-11-15T23:59:15Z;Armando;2368.225;114707395;Venezuela; -2018-11-15T23:54:53Z;Armando;566.7144;115730157;Venezuela; -2018-11-15T23:48:06Z;Nathália;1327.811;115364291;Venezuela; -2018-11-15T23:45:32Z;Júlio Cesar;6925.362;115526344;Venezuela; -2018-11-15T23:16:48Z;Eduardo;3779.914;115389064;Venezuela; -2018-11-15T22:55:20Z;Eduardo;3288.168;115441196;Venezuela; -2018-11-15T22:42:39Z;nathalia;633.8198;115357602;Venezuela; -2018-11-15T22:31:10Z;nathalia;5464.226;115399213;Venezuela; -2018-11-15T22:30:59Z;Ana;261.0177;115131704;Venezuela; -2018-11-15T22:02:37Z;Eduardo;4146.494;115623497;Venezuela; -2018-11-15T21:52:35Z;Júlio Cesar;1129.072;116255098;Venezuela; -2018-11-15T21:47:42Z;Ana;88.68892;116162917;Venezuela; -2018-11-15T21:47:13Z;Júlio;4044.83;116013620;Venezuela; -2018-11-15T21:41:59Z;Eduardo;747.3409;115739180;Venezuela; -2018-11-15T21:41:59Z;Júlio;8544.213;114618155;Venezuela; -2018-11-15T21:40:39Z;Sandra;896.7114;115862073;Venezuela; -2018-11-15T21:40:03Z;Sandra;307.2382;114935999;Venezuela; -2018-11-15T21:26:42Z;Júlio;5850.393;115082721;Venezuela; -2018-11-15T21:26:21Z;Ana;3400.565;116367918;Venezuela; -2018-11-15T21:18:24Z;Ana;2547.825;114270749;Venezuela; -2018-11-15T21:18:12Z;Nathália;1698.075;114344156;Venezuela; -2018-11-15T21:12:25Z;nathalia;3489.307;115810755;Venezuela; -2018-11-15T20:49:38Z;Nathália;5149.382;114530424;Venezuela; -2018-11-15T20:06:22Z;Sandra;6102.167;115409659;Venezuela; -2018-11-15T20:00:59Z;Eduardo;2636.961;114473571;Venezuela; -2018-11-15T19:41:37Z;Eduardo;3577.795;114625040;Venezuela; -2018-11-15T19:33:12Z;Sandra;4581.215;115722991;Venezuela; -2018-11-15T19:30:09Z;Júlio;1489.188;114918638;Venezuela; -2018-11-15T19:12:58Z;nathalia;3416.778;116017263;Venezuela; -2018-11-15T18:33:57Z;Ana;358.0492;114232661;Venezuela; -2018-11-15T18:18:15Z;Armando;3909.429;114663907;Venezuela; -2018-11-15T18:16:53Z;Eduardo;1301.815;115759046;Venezuela; -2018-11-15T17:31:51Z;Ana;1106.232;115108483;Venezuela; -2018-11-15T17:17:45Z;Júlio Cesar;2145.434;116387447;Venezuela; -2018-11-15T17:10:04Z;Armando;4055.601;115010214;Venezuela; -2018-11-15T17:01:32Z;nathalia;2717.043;114694140;Venezuela; -2018-11-15T16:56:14Z;Nathália;83.31716;114944259;Venezuela; -2018-11-15T16:41:29Z;Ana;3736.614;114541837;Venezuela; -2018-11-15T16:33:00Z;Eduardo;2302.988;115886705;Venezuela; -2018-11-15T16:30:03Z;Sandra;325.0069;116073947;Venezuela; -2018-11-15T16:29:59Z;nathalia;2188.788;115111032;Venezuela; -2018-11-15T16:25:51Z;nathalia;3897.541;116123797;Venezuela; -2018-11-15T15:56:30Z;Ana;7078.393;114716266;Venezuela; -2018-11-15T15:54:13Z;Júlio Cesar;2898.553;114820594;Venezuela; -2018-11-15T15:13:58Z;Eduardo;3161.969;115835707;Venezuela; -2018-11-15T15:08:45Z;Júlio Cesar;2412.139;115799769;Venezuela; -2018-11-15T15:06:31Z;Nathália;1293.829;114828297;Venezuela; -2018-11-15T15:00:48Z;Eduardo;223.9363;115597333;Venezuela; -2018-11-15T15:00:11Z;Eduardo;232.4195;115520342;Venezuela; -2018-11-15T14:53:54Z;Ana;18.55091;115008505;Venezuela; -2018-11-15T14:15:11Z;Sandra;96.55139;114906616;Venezuela; -2018-11-15T14:08:57Z;nathalia;399.09;114615627;Venezuela; -2018-11-15T14:05:06Z;Júlio Cesar;3122.536;115350390;Venezuela; -2018-11-15T13:42:49Z;Eduardo;961.1212;116193815;Venezuela; -2018-11-15T13:01:19Z;Nathália;7961.381;114331323;Venezuela; -2018-11-15T12:38:55Z;Júlio Cesar;2139.424;114567701;Venezuela; -2018-11-15T12:28:41Z;Júlio Cesar;22.10039;115238753;Venezuela; -2018-11-15T12:25:19Z;Sandra;561.6058;114545586;Venezuela; -2018-11-15T12:01:47Z;Júlio;1021.729;114481712;Venezuela; -2018-11-15T11:57:02Z;nathalia;341.1096;115146009;Venezuela; -2018-11-15T11:55:12Z;Júlio Cesar;1058.526;116343121;Venezuela; -2018-11-15T11:53:06Z;nathalia;4721.975;115564288;Venezuela; -2018-11-15T11:24:50Z;Armando;2982.482;114870129;Venezuela; -2018-11-15T11:19:26Z;Nathália;1125.924;115692244;Venezuela; -2018-11-15T11:05:29Z;Ana;1148.931;114760940;Venezuela; -2018-11-15T10:59:38Z;Armando;142.7191;115610428;Venezuela; -2018-11-15T09:51:39Z;Eduardo;893.462;115227071;Venezuela; -2018-11-15T09:27:47Z;Júlio Cesar;5618.506;115911588;Venezuela; -2018-11-15T08:51:09Z;nathalia;2729.395;114789711;Venezuela; -2018-11-15T08:31:04Z;Sandra;1471.615;114849162;Venezuela; -2018-11-15T08:01:42Z;Eduardo;346.2984;114696664;Venezuela; -2018-11-15T08:00:48Z;Armando;5580.237;116302423;Venezuela; -2018-11-15T07:48:05Z;Ana;413.8844;115898089;Venezuela; -2018-11-15T07:38:45Z;Armando;3900.579;114697632;Venezuela; -2018-11-15T07:38:33Z;Eduardo;1378.152;115155157;Venezuela; -2018-11-15T07:23:57Z;Nathália;698.1073;116376483;Venezuela; -2018-11-15T07:11:20Z;Júlio Cesar;5627.036;115192218;Venezuela; -2018-11-15T07:01:21Z;Júlio;161.3997;114539217;Venezuela; -2018-11-15T06:54:46Z;Ana;3013.799;114407284;Venezuela; -2018-11-15T06:51:42Z;Sandra;1878.428;114750355;Venezuela; -2018-11-15T06:48:10Z;Júlio;920.8374;115347013;Venezuela; -2018-11-15T06:18:11Z;Sandra;5041.224;115771071;Venezuela; -2018-11-15T05:50:55Z;Júlio Cesar;1979.206;114445407;Venezuela; -2018-11-15T05:47:25Z;Eduardo;959.2056;115386245;Venezuela; -2018-11-15T05:19:15Z;Nathália;7035.058;115645984;Venezuela; -2018-11-15T05:17:15Z;Armando;2203.381;114512670;Venezuela; -2018-11-15T05:16:52Z;Armando;7659.456;115040670;Venezuela; -2018-11-15T05:13:45Z;nathalia;1156.973;114764973;Venezuela; -2018-11-15T04:50:43Z;Ana;1218.094;114747299;Venezuela; -2018-11-15T04:45:12Z;Nathália;2229.094;115933116;Venezuela; -2018-11-15T04:40:48Z;Nathália;590.6595;115269573;Venezuela; -2018-11-15T04:12:07Z;Armando;987.5571;116190814;Venezuela; -2018-11-15T04:05:06Z;Júlio;5674.77;114778691;Venezuela; -2018-11-15T03:56:38Z;Sandra;359.5042;115599826;Venezuela; -2018-11-15T03:48:47Z;Eduardo;4908.703;114362193;Venezuela; -2018-11-15T03:36:28Z;Nathália;7370.176;116104868;Venezuela; -2018-11-15T03:15:03Z;Nathália;123.6783;114548244;Venezuela; -2018-11-15T03:13:04Z;Sandra;1982.055;114305260;Venezuela; -2018-11-15T02:40:39Z;Júlio;272.7692;116389747;Venezuela; -2018-11-15T02:38:51Z;Nathália;4456.987;115323081;Venezuela; -2018-11-15T02:32:02Z;Ana;898.1335;114761366;Venezuela; -2018-11-15T02:15:48Z;Eduardo;436.9646;115032077;Venezuela; -2018-11-15T02:14:53Z;Armando;5635.631;114920239;Venezuela; -2018-11-15T02:03:08Z;nathalia;889.2637;116050682;Venezuela; -2018-11-15T01:46:46Z;Nathália;4025.453;115022229;Venezuela; -2018-11-15T01:45:25Z;Sandra;190.2213;114702414;Venezuela; -2018-11-15T01:44:35Z;Ana;3784.511;115430752;Venezuela; -2018-11-15T01:30:10Z;Sandra;3984.942;116087542;Venezuela; -2018-11-15T01:21:23Z;Ana;3255.562;114635795;Venezuela; -2018-11-15T00:54:22Z;Sandra;3468.993;115518976;Venezuela; -2018-11-15T00:52:49Z;Sandra;3044.135;115773759;Venezuela; -2018-11-15T00:46:54Z;Nathália;1733.682;114657336;Venezuela; -2018-11-15T00:35:49Z;Júlio Cesar;892.7023;114555888;Venezuela; -2018-11-15T00:27:33Z;Eduardo;2830.999;115266322;Venezuela; -2018-11-15T00:19:33Z;Armando;1517.376;115074201;Venezuela; -2018-11-15T00:18:56Z;Eduardo;30.8489;114945315;Venezuela; -2018-11-15T00:10:27Z;nathalia;82.6255;115061955;Venezuela; -2018-11-15T00:09:56Z;Ana;889.6054;115995370;Venezuela; -2018-11-14T23:58:17Z;Eduardo;3721.229;114767564;Venezuela; -2018-11-14T23:38:53Z;Ana;925.3544;114469134;Venezuela; -2018-11-14T23:08:18Z;nathalia;23.24884;115382395;Venezuela; -2018-11-14T23:07:03Z;nathalia;3305.696;116388009;Venezuela; -2018-11-14T22:58:08Z;Armando;1480.091;114866377;Venezuela; -2018-11-14T22:57:51Z;Júlio;323.5698;115912124;Venezuela; -2018-11-14T22:53:47Z;Armando;3459.165;116294070;Venezuela; -2018-11-14T22:51:36Z;nathalia;868.3199;116289533;Venezuela; -2018-11-14T22:27:36Z;Nathália;394.5423;115247689;Venezuela; -2018-11-14T22:18:24Z;Ana;1553.597;114586951;Venezuela; -2018-11-14T22:08:05Z;Nathália;403.5345;115760474;Venezuela; -2018-11-14T21:50:49Z;Eduardo;1579.758;114710403;Venezuela; -2018-11-14T21:46:50Z;Júlio Cesar;194.949;115514434;Venezuela; -2018-11-14T21:43:57Z;Júlio Cesar;230.4773;115308892;Venezuela; -2018-11-14T21:35:10Z;nathalia;3760.8;116384000;Venezuela; -2018-11-14T21:26:21Z;Armando;136.4215;115651512;Venezuela; -2018-11-14T21:21:37Z;Ana;2766.551;115540534;Venezuela; -2018-11-14T20:39:56Z;Ana;1327.742;114318904;Venezuela; -2018-11-14T20:20:51Z;nathalia;339.3796;116140768;Venezuela; -2018-11-14T20:10:20Z;Armando;939.944;114461277;Venezuela; -2018-11-14T20:07:01Z;nathalia;2914.621;115630496;Venezuela; -2018-11-14T20:02:33Z;Ana;2175.106;114733010;Venezuela; -2018-11-14T19:17:55Z;Sandra;727.0437;115130019;Venezuela; -2018-11-14T18:42:31Z;Nathália;3143.427;115853349;Venezuela; -2018-11-14T18:03:15Z;nathalia;464.1263;114868211;Venezuela; -2018-11-14T18:01:03Z;Nathália;1341.258;114390995;Venezuela; -2018-11-14T17:56:47Z;Armando;524.5955;116370404;Venezuela; -2018-11-14T17:51:33Z;Nathália;697.907;116122077;Venezuela; -2018-11-14T17:46:43Z;nathalia;4363.487;114270855;Venezuela; -2018-11-14T17:35:00Z;Júlio;2897.263;116292906;Venezuela; -2018-11-14T17:22:04Z;Eduardo;131.1799;114946916;Venezuela; -2018-11-14T17:18:28Z;Nathália;2325.647;114450722;Venezuela; -2018-11-14T17:13:38Z;Eduardo;75.52625;115195907;Venezuela; -2018-11-14T17:12:29Z;Nathália;2141.77;115753410;Venezuela; -2018-11-14T16:51:30Z;Sandra;4664.807;116267801;Venezuela; -2018-11-14T16:39:09Z;Nathália;286.5188;114479913;Venezuela; -2018-11-14T16:14:16Z;Eduardo;287.2365;115834372;Venezuela; -2018-11-14T15:40:47Z;Júlio;6825.92;114543064;Venezuela; -2018-11-14T15:23:58Z;Eduardo;1390.711;115385374;Venezuela; -2018-11-14T15:18:30Z;nathalia;23.79908;115903621;Venezuela; -2018-11-14T15:09:16Z;Júlio Cesar;1017.664;115373369;Venezuela; -2018-11-14T15:07:29Z;nathalia;733.8419;114804087;Venezuela; -2018-11-14T15:01:40Z;Júlio;679.7906;114543464;Venezuela; -2018-11-14T14:44:12Z;Ana;1143.973;116343958;Venezuela; -2018-11-14T14:34:42Z;Nathália;4028.486;115715238;Venezuela; -2018-11-14T14:33:54Z;Nathália;2369.725;116371838;Venezuela; -2018-11-14T14:15:53Z;nathalia;6566.744;116381358;Venezuela; -2018-11-14T14:06:11Z;Armando;8888.93;115863555;Venezuela; -2018-11-14T13:48:04Z;Nathália;3180.704;114432077;Venezuela; -2018-11-14T13:35:37Z;Ana;1266.017;114523698;Venezuela; -2018-11-14T13:34:37Z;Sandra;2785.355;114414736;Venezuela; -2018-11-14T13:21:12Z;nathalia;4889.725;116101634;Venezuela; -2018-11-14T13:16:57Z;Ana;1347.322;115241652;Venezuela; -2018-11-14T13:12:15Z;nathalia;695.4981;114847776;Venezuela; -2018-11-14T13:09:42Z;Júlio;4411.025;115046710;Venezuela; -2018-11-14T13:06:48Z;Júlio Cesar;1029.765;115446885;Venezuela; -2018-11-14T12:57:00Z;nathalia;4217.016;114653405;Venezuela; -2018-11-14T12:53:12Z;Ana;2231.819;115197221;Venezuela; -2018-11-14T12:42:45Z;Armando;3109.266;115763257;Venezuela; -2018-11-14T12:40:28Z;Eduardo;4402.874;115264345;Venezuela; -2018-11-14T12:35:12Z;Nathália;38.10022;114957494;Venezuela; -2018-11-14T11:54:31Z;Sandra;1423.807;114530342;Venezuela; -2018-11-14T11:50:40Z;Júlio;5123.91;115994083;Venezuela; -2018-11-14T11:05:15Z;Sandra;671.9343;114231692;Venezuela; -2018-11-14T10:21:27Z;Nathália;545.0524;116154650;Venezuela; -2018-11-14T10:18:11Z;Armando;1399.572;115137488;Venezuela; -2018-11-14T09:53:34Z;Sandra;866.0451;114963745;Venezuela; -2018-11-14T09:20:39Z;Sandra;896.5087;115931661;Venezuela; -2018-11-14T08:58:51Z;Júlio Cesar;443.2323;115529593;Venezuela; -2018-11-14T08:48:24Z;Júlio Cesar;4316.725;115410059;Venezuela; -2018-11-14T08:36:52Z;Júlio Cesar;1566.576;115257484;Venezuela; -2018-11-14T07:53:22Z;Armando;2511.571;115759733;Venezuela; -2018-11-14T07:08:35Z;Armando;2989.258;114632001;Venezuela; -2018-11-14T06:54:19Z;Nathália;1208.977;115412614;Venezuela; -2018-11-14T06:22:53Z;Júlio Cesar;643.7475;115350336;Venezuela; -2018-11-14T06:14:36Z;Armando;238.6991;114562349;Venezuela; -2018-11-14T06:05:07Z;Armando;1594.883;114617801;Venezuela; -2018-11-14T06:02:23Z;Sandra;2406.162;115218866;Venezuela; -2018-11-14T05:31:55Z;Eduardo;533.2563;116321458;Venezuela; -2018-11-14T05:28:29Z;Nathália;2814.571;115392652;Venezuela; -2018-11-14T05:25:15Z;Ana;5544.472;115409836;Venezuela; -2018-11-14T05:14:21Z;Eduardo;3044.155;116295608;Venezuela; -2018-11-14T05:05:51Z;Júlio Cesar;725.4004;115999491;Venezuela; -2018-11-14T05:02:09Z;Ana;853.2074;116372473;Venezuela; -2018-11-14T04:31:05Z;Sandra;3505.738;115084924;Venezuela; -2018-11-14T04:30:16Z;Nathália;4751.852;116095323;Venezuela; -2018-11-14T04:16:30Z;Armando;1155.9;114948799;Venezuela; -2018-11-14T03:52:02Z;Eduardo;690.2101;116186430;Venezuela; -2018-11-14T03:03:04Z;Júlio;5187.274;115130241;Venezuela; -2018-11-14T02:21:49Z;Nathália;4359.627;116269177;Venezuela; -2018-11-14T02:09:30Z;Júlio;4672.327;114891091;Venezuela; -2018-11-14T02:01:03Z;Armando;890.3345;114319807;Venezuela; -2018-11-14T02:01:00Z;Eduardo;1155.116;115397160;Venezuela; -2018-11-14T02:00:15Z;Júlio;2025.667;115792775;Venezuela; -2018-11-14T01:48:14Z;Sandra;3732.954;114600769;Venezuela; -2018-11-14T01:04:49Z;Nathália;604.5204;114552669;Venezuela; -2018-11-14T00:33:08Z;Armando;4970.456;114712529;Venezuela; -2018-11-14T00:31:33Z;Ana;998.942;114691863;Venezuela; -2018-11-14T00:24:18Z;Nathália;2424.046;115778192;Venezuela; -2018-11-14T00:12:02Z;Ana;2217.795;115936831;Venezuela; -2018-11-13T23:56:42Z;Nathália;339.328;115596088;Venezuela; -2018-11-13T23:37:25Z;Ana;989.2796;116341761;Venezuela; -2018-11-13T23:34:13Z;Júlio;304.2796;115743657;Venezuela; -2018-11-13T23:01:06Z;Ana;4443.422;115803964;Venezuela; -2018-11-13T22:51:00Z;Armando;4096.009;114928101;Venezuela; -2018-11-13T22:48:14Z;Ana;3072.839;116316394;Venezuela; -2018-11-13T22:44:07Z;nathalia;791.8808;115774489;Venezuela; -2018-11-13T22:04:15Z;Júlio Cesar;2723.869;116388428;Venezuela; -2018-11-13T21:53:16Z;Eduardo;3680.807;116323952;Venezuela; -2018-11-13T21:25:40Z;Nathália;992.8799;116263081;Venezuela; -2018-11-13T21:10:55Z;Sandra;236.5458;114297844;Venezuela; -2018-11-13T21:09:52Z;nathalia;741.7159;114738810;Venezuela; -2018-11-13T21:09:10Z;Júlio Cesar;679.5842;116220435;Venezuela; -2018-11-13T20:39:54Z;Eduardo;6410.865;114268184;Venezuela; -2018-11-13T20:28:29Z;nathalia;3162.013;115941953;Venezuela; -2018-11-13T20:21:14Z;Eduardo;4462.499;114992432;Venezuela; -2018-11-13T20:17:22Z;Júlio;881.5665;115146892;Venezuela; -2018-11-13T20:13:47Z;Nathália;2084.646;114460046;Venezuela; -2018-11-13T19:09:54Z;Nathália;3059.203;115713109;Venezuela; -2018-11-13T19:08:39Z;Júlio;2408.715;116091515;Venezuela; -2018-11-13T18:37:44Z;Sandra;2542.837;115346249;Venezuela; -2018-11-13T18:37:20Z;Sandra;5671.509;115749778;Venezuela; -2018-11-13T18:37:11Z;Sandra;22.62743;116301512;Venezuela; -2018-11-13T18:26:39Z;nathalia;11463.37;114691374;Venezuela; -2018-11-13T18:03:30Z;Júlio;1911.943;114243940;Venezuela; -2018-11-13T17:54:01Z;Armando;3540.967;115548164;Venezuela; -2018-11-13T17:50:02Z;Ana;2314.437;115765430;Venezuela; -2018-11-13T17:45:11Z;Nathália;2942.177;114805342;Venezuela; -2018-11-13T17:44:57Z;Sandra;929.093;115236707;Venezuela; -2018-11-13T17:30:21Z;nathalia;1703.834;115641269;Venezuela; -2018-11-13T17:17:49Z;Nathália;712.525;116286063;Venezuela; -2018-11-13T17:11:15Z;Júlio Cesar;2238.301;114414789;Venezuela; -2018-11-13T17:09:42Z;nathalia;1461.752;115598877;Venezuela; -2018-11-13T16:51:12Z;Nathália;3075.072;114304354;Venezuela; -2018-11-13T16:48:07Z;Armando;3026.774;115676132;Venezuela; -2018-11-13T16:24:24Z;Júlio Cesar;2298.467;114795949;Venezuela; -2018-11-13T16:09:06Z;Eduardo;2744.034;115202792;Venezuela; -2018-11-13T15:35:07Z;Sandra;109.1995;116094172;Venezuela; -2018-11-13T14:43:03Z;Sandra;791.0975;114627375;Venezuela; -2018-11-13T13:25:44Z;Júlio Cesar;153.4777;115126383;Venezuela; -2018-11-13T13:04:03Z;Ana;2062.109;114230888;Venezuela; -2018-11-13T13:03:13Z;Ana;11.76681;115173185;Venezuela; -2018-11-13T12:55:27Z;Armando;3036.54;116094290;Venezuela; -2018-11-13T12:50:03Z;Nathália;1151.056;116184385;Venezuela; -2018-11-13T12:43:55Z;Júlio;3536.5;114931925;Venezuela; -2018-11-13T12:36:02Z;Sandra;188.4381;115253468;Venezuela; -2018-11-13T11:59:42Z;Júlio Cesar;2022.755;115014061;Venezuela; -2018-11-13T11:39:10Z;Armando;1615.56;115642574;Venezuela; -2018-11-13T10:52:22Z;Nathália;284.9331;116359756;Venezuela; -2018-11-13T10:47:29Z;Armando;1390.936;114683982;Venezuela; -2018-11-13T10:30:11Z;Eduardo;684.6728;116042676;Venezuela; -2018-11-13T10:29:33Z;Armando;5560.524;115480260;Venezuela; -2018-11-13T10:14:38Z;Sandra;606.9766;115034708;Venezuela; -2018-11-13T09:58:03Z;Júlio;5701.56;116130055;Venezuela; -2018-11-13T09:49:37Z;nathalia;1508.15;115874296;Venezuela; -2018-11-13T09:48:24Z;Armando;21.78096;115312816;Venezuela; -2018-11-13T09:31:28Z;Nathália;3471.835;114826562;Venezuela; -2018-11-13T08:39:05Z;Ana;331.3879;115051835;Venezuela; -2018-11-13T08:20:09Z;Sandra;1017.481;114825919;Venezuela; -2018-11-13T07:43:17Z;Júlio Cesar;2054.639;114672979;Venezuela; -2018-11-13T06:51:56Z;nathalia;708.0677;114863172;Venezuela; -2018-11-13T06:32:38Z;Eduardo;5648.588;114614835;Venezuela; -2018-11-13T05:34:05Z;Sandra;1682.481;115720545;Venezuela; -2018-11-13T05:28:14Z;Júlio Cesar;2201.173;116391134;Venezuela; -2018-11-13T05:08:56Z;Eduardo;3926.31;115674381;Venezuela; -2018-11-13T04:35:36Z;Júlio Cesar;1082.749;116058239;Venezuela; -2018-11-13T04:27:09Z;Sandra;182.3146;114770059;Venezuela; -2018-11-13T04:06:17Z;Júlio;955.5194;115696001;Venezuela; -2018-11-13T03:40:33Z;Armando;24.44053;115558563;Venezuela; -2018-11-13T02:57:43Z;Júlio Cesar;211.0019;115258491;Venezuela; -2018-11-13T02:56:58Z;Júlio;3978.505;115416718;Venezuela; -2018-11-13T02:41:39Z;Júlio Cesar;864.1194;115747011;Venezuela; -2018-11-13T02:40:01Z;Júlio Cesar;2074.83;116262617;Venezuela; -2018-11-13T02:37:25Z;Júlio;2034.164;115091041;Venezuela; -2018-11-13T02:09:15Z;Ana;898.9222;116035831;Venezuela; -2018-11-13T02:06:20Z;Eduardo;2672.916;114453801;Venezuela; -2018-11-13T01:53:46Z;Eduardo;6917.532;116009590;Venezuela; -2018-11-13T01:44:07Z;Eduardo;1016.706;115696264;Venezuela; -2018-11-13T01:34:58Z;Ana;147.4291;114717790;Venezuela; -2018-11-13T01:33:11Z;Ana;1672.279;116224993;Venezuela; -2018-11-13T01:31:15Z;Ana;2139.303;116159261;Venezuela; -2018-11-13T01:27:46Z;Eduardo;5455.884;114257414;Venezuela; -2018-11-13T01:25:34Z;Nathália;114.1689;115102957;Venezuela; -2018-11-13T01:10:31Z;Ana;1767.856;114788695;Venezuela; -2018-11-13T01:01:11Z;Nathália;2068.518;115364265;Venezuela; -2018-11-13T00:49:03Z;Júlio Cesar;658.1168;114493198;Venezuela; -2018-11-13T00:45:43Z;Sandra;1586.214;114433109;Venezuela; -2018-11-13T00:43:05Z;Ana;2601.455;115314005;Venezuela; -2018-12-20T00:31:17Z;Júlio;193;115555598;Germany; -2018-12-22T06:30:01Z;Sandra;100;116400001;Germany; -2018-12-22T06:35:00Z;Sandra;200;116400002;Germany; -2018-12-22T06:42:12Z;Eduardo;200;116400005;Germany; -2018-12-22T06:55:54Z;Eduardo;150;116400009;Germany; -2018-12-22T06:59:07Z;Eduardo;20000;116400010;Germany; -2018-11-10T04:02:56Z;;null;166420322;; -2018-11-10T13:12:06Z;;170.21;166420323;; -2018-11-10T05:12:09Z;;1002.35;166420324;; -2018-11-10T02:43:41Z;;2560.76;166420325;; - +datetime;user;value;transferid;country;description +2018-12-06T22:19:19Z;Eduardo;598.5984;116241629;Germany; +2018-12-06T22:10:34Z;Júlio;4610.955;115586504;Germany; +2018-12-06T21:59:50Z;Nathália;4417.866;115079280;Germany; +2018-12-06T21:54:13Z;Júlio;2739.618;114972398;Germany; +2018-12-06T21:41:27Z;Ana;1408.261;116262934;Germany; +2018-12-06T21:18:40Z;Nathália;5051.828;115710402;Germany; +2018-12-06T20:54:32Z;Eduardo;5665.214;114830203;Germany; +2018-12-06T20:15:46Z;Sandra;1474.44;116323455;Germany; +2018-12-06T20:04:35Z;Armando;8905.509;115304382;Germany; +2018-12-22T20:00:56Z;Armando;18521.2;114513684;Germany; +2018-12-06T19:48:39Z;Ana;4588.665;116281690;Germany; +2018-12-06T19:39:07Z;Júlio;6224.433;116187120;Germany; +2018-12-06T19:32:58Z;nathalia;5504.082;115790569;Germany; +2018-12-06T19:10:34Z;nathalia;2627.581;116212216;Germany; +2018-12-06T19:07:50Z;Eduardo;9560.668;115917812;Germany; +2018-12-06T18:48:29Z;Ana;8747.758;114255039;Germany; +2018-12-21T18:46:59Z;Júlio Cesar;16226.42;116279014;Germany; +2018-12-06T18:45:32Z;Ana;3284.617;115459852;Germany; +2018-12-06T18:09:15Z;Júlio Cesar;387.596;114894102;Germany; +2018-12-06T17:58:17Z;Ana;14890.19;115036903;Germany; +2018-12-21T17:41:48Z;Nathália;17583.29;115748273;Germany; +2018-12-06T17:41:45Z;Nathália;2111.781;115975046;Germany; +2018-12-06T17:34:49Z;Armando;5726.127;114489509;Germany; +2018-12-06T17:19:19Z;Júlio;5776.826;115301425;Germany; +2018-12-06T17:02:13Z;Júlio;10536.53;116268187;Germany; +2018-12-06T16:59:38Z;Eduardo;11758.72;115580064;Germany; +2018-12-06T16:46:29Z;Sandra;7320.383;115682194;Germany; +2018-12-06T16:36:07Z;Júlio Cesar;1405.381;114362991;Germany; +2018-12-06T16:08:53Z;nathalia;9927.734;115180759;Germany; +2018-12-06T15:53:15Z;Ana;7650.648;114736144;Germany; +2018-12-06T15:21:36Z;Eduardo;4436.112;114425893;Germany; +2018-12-06T15:12:50Z;Ana;14197.76;114409645;Germany; +2018-12-06T15:11:13Z;Júlio Cesar;2431.26;115332324;Germany; +2018-12-06T14:55:06Z;Nathália;2469.03;114816281;Germany; +2018-12-06T14:47:25Z;Ana;482.8322;114387526;Germany; +2018-12-06T14:45:23Z;Júlio Cesar;909.7389;114690249;Germany; +2018-12-06T14:35:13Z;Sandra;2895.098;114948013;Germany; +2018-12-06T14:28:33Z;Ana;2271.775;114279693;Germany; +2018-12-06T13:50:11Z;Armando;818.6205;115148416;Germany; +2018-12-06T13:43:59Z;Júlio Cesar;8937.424;114239805;Germany; +2018-12-06T13:40:48Z;Nathália;1212.638;116063458;Germany; +2018-12-06T13:33:08Z;Sandra;5793.4;115289761;Germany; +2018-12-06T13:06:40Z;Ana;3428.746;116347342;Germany; +2018-12-06T12:59:58Z;Ana;206.9737;115615456;Germany; +2018-12-06T12:57:36Z;Nathália;5819.066;115237461;Germany; +2018-12-06T11:43:49Z;Ana;5244.354;114403850;Germany; +2018-12-06T10:05:21Z;Eduardo;707.6096;114746955;Germany; +2018-12-06T09:50:03Z;Eduardo;1586.594;114796170;Germany; +2018-12-23T09:46:23Z;Júlio;15395.68;115272184;Germany; +2018-12-06T09:37:04Z;Nathália;1739.667;115549066;Germany; +2018-12-06T09:29:45Z;Eduardo;163.8242;114947643;Germany; +2018-12-06T09:14:28Z;Ana;13091.65;115324557;Germany; +2018-12-06T09:00:57Z;Nathália;855.7494;114781229;Germany; +2018-12-06T08:43:31Z;Júlio Cesar;5385.843;114951246;Germany; +2018-12-06T08:17:22Z;Armando;1540.353;116256690;Germany; +2018-12-06T08:10:14Z;Ana;4941.265;114674585;Germany; +2018-12-06T07:56:48Z;Sandra;4922.733;114899468;Germany; +2018-12-06T07:23:32Z;Armando;6140.51;114640335;Germany; +2018-12-06T07:00:22Z;Armando;11654.86;114566119;Germany; +2018-12-06T06:44:46Z;Júlio Cesar;1005.012;114233841;Germany; +2018-12-21T06:38:20Z;Júlio Cesar;17554.83;114983226;Germany; +2018-12-06T06:34:15Z;Nathália;7240.652;116323536;Germany; +2018-12-06T06:06:27Z;Nathália;2883.703;116354046;Germany; +2018-12-06T05:33:48Z;Ana;2886.069;114637858;Germany; +2018-12-06T04:40:09Z;Eduardo;13446.57;114944812;Germany; +2018-12-06T04:34:50Z;Armando;5800.231;114934674;Germany; +2018-12-06T04:07:51Z;Ana;1642.719;116128032;Germany; +2018-12-06T04:02:13Z;Armando;4358.199;114811640;Germany; +2018-12-06T04:01:46Z;Júlio;614.0541;115747831;Germany; +2018-12-06T03:58:51Z;Sandra;8439.984;114937215;Germany; +2018-12-06T03:52:02Z;Eduardo;13521.27;115327599;Germany; +2018-12-06T03:41:34Z;Júlio Cesar;10032.62;115293798;Germany; +2018-12-06T03:35:50Z;Armando;11994.7;114643817;Germany; +2018-12-06T02:24:49Z;nathalia;2664.823;114841914;Germany; +2018-12-06T02:08:30Z;Ana;8378.197;116035802;Germany; +2018-12-06T01:43:15Z;Júlio Cesar;1244.145;115606491;Germany; +2018-12-06T01:38:20Z;Ana;5992.922;114577041;Germany; +2018-12-06T01:36:19Z;nathalia;11326.09;114619848;Germany; +2018-12-06T01:18:08Z;Júlio;992.4471;114980626;Germany; +2018-12-06T01:07:52Z;Eduardo;994.4858;116334049;Germany; +2018-12-06T01:05:47Z;Sandra;2035.962;116139985;Germany; +2018-12-06T01:02:19Z;Ana;5106.057;114300904;Germany; +2018-12-06T00:30:32Z;Armando;6650.33;115356527;Germany; +2018-12-06T00:29:51Z;Júlio;12687.14;115073073;Germany; +2018-12-06T00:24:57Z;nathalia;1036.568;116031982;Germany; +2018-12-06T00:22:00Z;Eduardo;3729.228;115228735;Germany; +2018-12-06T00:10:41Z;Ana;5054.067;114499847;Germany; +2018-12-05T23:29:46Z;nathalia;6499.092;116343921;Germany; +2018-12-05T23:15:49Z;Nathália;4294.701;115688852;Germany; +2018-12-05T23:06:35Z;Sandra;227.7063;116054794;Germany; +2018-12-05T22:47:26Z;Nathália;4097.364;115288958;Germany; +2018-12-05T22:39:23Z;Júlio;13685.16;114742172;Germany; +2018-12-05T22:36:20Z;Eduardo;2736.315;115001493;Germany; +2018-12-05T22:19:13Z;Júlio;1500.571;116368666;Germany; +2018-12-05T22:07:19Z;Armando;2728.407;115217550;Germany; +2018-12-05T22:02:49Z;Eduardo;1287.721;114442169;Germany; +2018-12-05T21:56:00Z;Nathália;5941.938;115382933;Germany; +2018-12-05T21:44:47Z;Júlio Cesar;14732.41;115821445;Germany; +2018-12-05T21:37:19Z;Sandra;7677.049;116186289;Germany; +2018-12-05T21:23:09Z;Júlio;171.1975;115409527;Germany; +2018-12-05T20:54:55Z;Eduardo;8663.315;114284753;Germany; +2018-12-05T20:54:44Z;Armando;2168.055;114983201;Germany; +2018-12-05T20:45:02Z;Nathália;12752.44;114764377;Germany; +2018-12-05T20:34:16Z;Sandra;544.0504;116317496;Germany; +2018-12-05T20:34:03Z;Nathália;2567.497;114907683;Germany; +2018-12-05T19:53:07Z;Nathália;4274.125;114692367;Germany; +2018-12-05T19:31:55Z;Júlio Cesar;1973.385;114582321;Germany; +2018-12-05T19:20:41Z;Armando;1419.35;115161584;Germany; +2018-12-05T19:06:14Z;Júlio;3721.95;116231025;Germany; +2018-12-05T18:42:57Z;Júlio Cesar;7676.298;115636912;Germany; +2018-12-23T18:11:27Z;Eduardo;17218.64;115904797;Germany; +2018-12-05T18:09:23Z;nathalia;1782.647;114741551;Germany; +2018-12-05T17:53:40Z;Júlio;8401.113;114675204;Germany; +2018-12-05T17:24:24Z;Nathália;14653.67;114367100;Germany; +2018-12-05T16:46:51Z;Eduardo;6941.532;114379248;Germany; +2018-12-05T16:39:29Z;Júlio;10956.92;114760067;Germany; +2018-12-05T16:15:26Z;Nathália;392.1602;116379338;Germany; +2018-12-05T15:52:57Z;Nathália;11129.93;114593665;Germany; +2018-12-05T15:48:58Z;Armando;72.47059;114837959;Germany; +2018-12-05T15:01:52Z;Nathália;842.5875;114749986;Germany; +2018-12-05T13:55:56Z;Ana;1334.152;116177560;Germany; +2018-12-05T13:46:36Z;Sandra;81.92041;115629964;Germany; +2018-12-05T13:46:16Z;Sandra;830.7528;114239434;Germany; +2018-12-05T13:43:24Z;Ana;2247.028;116281402;Germany; +2018-12-05T13:24:17Z;Júlio;7919.96;115326452;Germany; +2018-12-22T13:09:13Z;Eduardo;16254.78;114520578;Germany; +2018-12-05T12:57:53Z;Ana;1612.684;115202897;Germany; +2018-12-05T12:57:30Z;Ana;8.918594;115045150;Germany; +2018-12-05T12:48:46Z;Armando;2371.272;114490434;Germany; +2018-12-05T12:42:25Z;Eduardo;9892.522;116134274;Germany; +2018-12-05T12:26:23Z;Ana;4064.246;115174964;Germany; +2018-12-05T12:19:50Z;Ana;6560.538;116083367;Germany; +2018-12-05T12:13:23Z;Júlio Cesar;313.501;115680946;Germany; +2018-12-05T12:11:29Z;Armando;3092.44;115489172;Germany; +2018-12-05T12:09:38Z;Eduardo;788.5108;114593594;Germany; +2018-12-05T11:52:48Z;Sandra;7810.831;115208817;Germany; +2018-12-05T11:41:02Z;Ana;1272.677;114434461;Germany; +2018-12-05T11:36:53Z;Ana;2328.719;116242639;Germany; +2018-12-05T11:30:28Z;Júlio;1165.272;114578994;Germany; +2018-12-05T11:21:13Z;Júlio Cesar;9270.92;115012449;Germany; +2018-12-05T11:13:43Z;Eduardo;5695.942;114286284;Germany; +2018-12-05T11:07:04Z;Júlio Cesar;1321.421;116397598;Germany; +2018-12-05T11:00:31Z;Ana;335.8082;114585343;Germany; +2018-12-23T10:59:50Z;Júlio Cesar;15093.32;115919119;Germany; +2018-12-05T10:57:08Z;Nathália;10833.49;114689484;Germany; +2018-12-05T10:54:05Z;Armando;2748.092;114205606;Germany; +2018-12-05T10:30:34Z;Júlio;13257.21;115482943;Germany; +2018-12-23T10:29:34Z;Sandra;19240.76;114665132;Germany; +2018-12-05T10:19:45Z;Eduardo;86.36331;114506627;Germany; +2018-12-05T10:16:49Z;Nathália;7087.815;115503241;Germany; +2018-12-05T10:06:35Z;Júlio Cesar;8667.195;114545627;Germany; +2018-12-05T09:33:32Z;Júlio Cesar;2276.229;114423735;Germany; +2018-12-05T09:28:36Z;Júlio;3685.356;114485601;Germany; +2018-12-05T08:59:57Z;Júlio Cesar;3701.165;114235282;Germany; +2018-12-05T08:34:46Z;nathalia;3229.058;115003274;Germany; +2018-12-05T08:28:27Z;nathalia;729.8646;115582647;Germany; +2018-12-05T08:02:06Z;Júlio Cesar;11946.71;114580292;Germany; +2018-12-05T07:50:03Z;Júlio Cesar;601.0857;114937747;Germany; +2018-12-05T07:26:08Z;Eduardo;4356.216;114415016;Germany; +2018-12-05T06:58:31Z;Ana;4017.285;114230914;Germany; +2018-12-05T06:46:49Z;Eduardo;10449.94;114732991;Germany; +2018-12-05T06:22:41Z;nathalia;4768.083;114329623;Germany; +2018-12-05T06:19:35Z;Nathália;1012.323;114325824;Germany; +2018-12-05T06:14:38Z;Ana;2621.461;116262439;Germany; +2018-12-21T06:04:49Z;Júlio Cesar;18938.43;116281869;Germany; +2018-12-05T05:22:30Z;Eduardo;6255.905;114591071;Germany; +2018-12-05T05:14:50Z;Armando;2072.195;114999851;Germany; +2018-12-05T04:42:30Z;Júlio;4126.797;114247955;Germany; +2018-12-05T03:36:41Z;nathalia;3160.758;114626777;Germany; +2018-12-05T02:19:55Z;Ana;6822.907;116232243;Germany; +2018-12-05T02:11:07Z;Júlio;9026.468;114820184;Germany; +2018-12-05T02:10:59Z;Sandra;6560.551;116389403;Germany; +2018-12-05T02:00:49Z;Sandra;974.3924;116287805;Germany; +2018-12-05T01:31:29Z;Eduardo;9051.252;114395997;Germany; +2018-12-05T01:13:04Z;nathalia;1084.998;116062097;Germany; +2018-12-05T01:12:25Z;Nathália;188.6754;114261011;Germany; +2018-12-05T00:49:43Z;nathalia;9868.121;115816970;Germany; +2018-12-05T00:22:18Z;Armando;2952.136;115393287;Germany; +2018-12-05T00:21:59Z;Eduardo;351.1456;116068139;Germany; +2018-12-05T00:20:58Z;Sandra;3935.209;116396809;Germany; +2018-12-05T00:14:48Z;Armando;3320.938;114355399;Germany; +2018-12-05T00:06:58Z;Júlio Cesar;10166.15;114444077;Germany; +2018-12-04T23:04:30Z;Júlio Cesar;6356.449;115731803;Germany; +2018-12-04T22:54:27Z;Júlio;883.8175;115876666;Germany; +2018-12-04T22:20:45Z;Eduardo;11658.93;114644088;Germany; +2018-12-04T22:08:46Z;Nathália;1799.708;114569259;Germany; +2018-12-04T21:32:17Z;Nathália;365.6024;115796134;Germany; +2018-12-04T21:07:33Z;Nathália;11163.98;114711861;Germany; +2018-12-04T20:24:30Z;Sandra;4669.346;114736457;Germany; +2018-12-04T20:05:59Z;Armando;5535.463;114724138;Germany; +2018-12-04T19:57:52Z;Júlio Cesar;213.4395;116323609;Germany; +2018-12-04T19:33:04Z;nathalia;2072.271;115087077;Germany; +2018-12-04T18:03:46Z;Nathália;5301.707;114261689;Germany; +2018-12-04T18:02:07Z;Nathália;6187.43;116345025;Germany; +2018-12-04T17:56:01Z;Júlio Cesar;143.3839;115383257;Germany; +2018-12-04T17:22:08Z;Eduardo;2051.278;114923013;Germany; +2018-12-04T16:42:58Z;Júlio;4542.332;115712382;Germany; +2018-12-04T16:06:53Z;Armando;7243.48;114438969;Germany; +2018-12-04T15:59:01Z;nathalia;1262.802;115073439;Germany; +2018-12-04T15:49:31Z;Júlio Cesar;3433.8;115223093;Germany; +2018-12-04T15:44:21Z;Armando;6366.137;115515472;Germany; +2018-12-04T15:39:02Z;Sandra;10614.43;115533502;Germany; +2018-12-04T15:07:40Z;Ana;9129.829;115670512;Germany; +2018-12-04T14:27:18Z;Armando;10141.11;116265577;Germany; +2018-12-04T14:12:00Z;Sandra;7389.818;114579844;Germany; +2018-12-04T14:06:09Z;Júlio;451.4505;114861767;Germany; +2018-12-04T13:57:48Z;Ana;1765.761;114707938;Germany; +2018-12-04T13:54:46Z;Armando;12300.34;114815235;Germany; +2018-12-04T13:47:00Z;Eduardo;1772.508;114983025;Germany; +2018-12-04T13:39:31Z;Júlio;2398.464;114331677;Germany; +2018-12-04T13:39:03Z;Sandra;1742.178;115441760;Germany; +2018-12-04T13:35:12Z;Júlio;12254.1;114888549;Germany; +2018-12-04T13:12:54Z;Sandra;372.1562;115126789;Germany; +2018-12-04T13:12:31Z;nathalia;8628.162;114853069;Germany; +2018-12-04T13:11:20Z;Eduardo;1750.922;114961561;Germany; +2018-12-04T12:55:28Z;Ana;4886.327;114371321;Germany; +2018-12-04T12:34:07Z;Armando;8940.425;114624500;Germany; +2018-12-04T11:49:41Z;Armando;6675.921;115782133;Germany; +2018-12-04T11:43:10Z;Júlio Cesar;3808.404;115989665;Germany; +2018-12-04T11:34:20Z;Nathália;1147.908;115049368;Germany; +2018-12-04T11:28:38Z;nathalia;10687.16;114576355;Germany; +2018-12-04T11:04:47Z;Júlio Cesar;7573.9;116210794;Germany; +2018-12-04T10:53:01Z;Armando;6277.825;115131185;Germany; +2018-12-04T10:15:26Z;Eduardo;5009.019;115343933;Germany; +2018-12-04T10:03:17Z;Júlio Cesar;4929.523;115837542;Germany; +2018-12-04T09:44:54Z;Júlio;5510.083;114787911;Germany; +2018-12-04T09:15:05Z;Júlio;5789.812;114892930;Germany; +2018-12-04T08:49:01Z;Nathália;4713.447;114579871;Germany; +2018-12-04T08:47:29Z;Nathália;11087.49;115404988;Germany; +2018-12-04T08:20:01Z;Armando;5287.33;115844074;Germany; +2018-12-04T07:52:47Z;Eduardo;756.7086;114301388;Germany; +2018-12-04T07:35:03Z;Júlio;3729.391;115252570;Germany; +2018-12-04T07:24:18Z;Júlio Cesar;1910.468;114257594;Germany; +2018-12-04T07:23:11Z;Júlio;9754.642;114706935;Germany; +2018-12-04T07:02:18Z;Júlio Cesar;6621.935;115263987;Germany; +2018-12-04T06:53:29Z;Armando;1095.991;114902256;Germany; +2018-12-04T06:52:35Z;Armando;4432.173;115220150;Germany; +2018-12-04T06:51:30Z;nathalia;13894.11;115500534;Germany; +2018-12-04T06:33:06Z;nathalia;2815.795;116187040;Germany; +2018-12-04T06:27:01Z;nathalia;1363.69;114336382;Germany; +2018-12-23T06:18:32Z;nathalia;17889.06;114279893;Germany; +2018-12-04T06:13:25Z;Armando;4352.172;114463650;Germany; +2018-12-04T05:11:26Z;Armando;2236.466;115843236;Germany; +2018-12-04T05:01:39Z;Júlio Cesar;1801.488;115041934;Germany; +2018-12-04T04:57:00Z;Júlio;12271.89;115296265;Germany; +2018-12-04T04:52:36Z;Ana;11029.8;116330556;Germany; +2018-12-04T04:36:16Z;Nathália;1648.773;115204733;Germany; +2018-12-04T04:34:45Z;Júlio Cesar;4671.183;115951901;Germany; +2018-12-04T04:33:12Z;Armando;11878.69;116392061;Germany; +2018-12-04T04:10:11Z;Sandra;12740.28;114751835;Germany; +2018-12-04T04:09:44Z;Sandra;12131.69;115794937;Germany; +2018-12-04T03:54:23Z;Nathália;3745.014;115079279;Germany; +2018-12-04T03:15:49Z;nathalia;13242.14;115585687;Germany; +2018-12-04T02:23:42Z;Júlio Cesar;1618.513;114954678;Germany; +2018-12-04T02:21:19Z;Nathália;13179.01;115303137;Germany; +2018-12-04T02:09:42Z;Sandra;864.0935;114279003;Germany; +2018-12-04T02:04:57Z;Nathália;8865.756;114840809;Germany; +2018-12-04T01:42:16Z;Júlio Cesar;5929.995;114641275;Germany; +2018-12-04T01:41:15Z;Sandra;10532.29;116323569;Germany; +2018-12-04T01:09:24Z;Júlio;1566.305;115996976;Germany; +2018-12-04T01:07:11Z;Ana;1764.458;115113958;Germany; +2018-12-04T00:31:26Z;Eduardo;11295.76;114660325;Germany; +2018-12-04T00:30:59Z;Eduardo;13802.12;114625237;Germany; +2018-12-04T00:09:18Z;Júlio;10972.46;115844703;Germany; +2018-12-04T00:08:16Z;Sandra;1127.045;115873020;Germany; +2018-12-03T23:19:16Z;Eduardo;5332.138;115682322;Germany; +2018-12-03T23:10:20Z;Júlio Cesar;2301.423;114391783;Germany; +2018-12-03T23:09:02Z;Júlio;3419.696;114627997;Germany; +2018-12-03T22:55:47Z;Nathália;3174.975;114493606;Germany; +2018-12-03T22:26:03Z;Ana;7532.529;116388371;Germany; +2018-12-03T22:23:59Z;nathalia;3689.943;115022565;Germany; +2018-12-03T21:42:17Z;nathalia;958.8695;115469455;Germany; +2018-12-03T21:41:11Z;Eduardo;291.1187;116318041;Germany; +2018-12-03T21:20:54Z;Júlio;2589.435;115869517;Germany; +2018-12-03T20:53:28Z;Armando;1919.776;114285819;Germany; +2018-12-03T20:47:02Z;Eduardo;10091.46;114798970;Germany; +2018-12-03T20:40:25Z;Armando;13938.88;114689587;Germany; +2018-12-03T20:32:47Z;Eduardo;72.95417;115413726;Germany; +2018-12-03T20:15:52Z;Sandra;143.782;115574339;Germany; +2018-12-03T19:59:48Z;Sandra;1208.335;114247333;Germany; +2018-12-03T19:46:27Z;Júlio Cesar;1613.393;114773555;Germany; +2018-12-03T19:38:12Z;Nathália;9324.992;114870434;Germany; +2018-12-03T19:10:54Z;nathalia;5213.671;115370655;Germany; +2018-12-03T19:06:31Z;Nathália;212.4548;115749600;Germany; +2018-12-03T19:02:46Z;Júlio Cesar;437.9153;115054625;Germany; +2018-12-03T18:47:38Z;Sandra;383.0518;114626010;Germany; +2018-12-03T18:28:11Z;Júlio Cesar;544.452;114999145;Germany; +2018-12-03T18:22:44Z;Júlio Cesar;11714.65;114832455;Germany; +2018-12-03T17:42:11Z;Ana;12394.81;115651304;Germany; +2018-12-03T17:06:25Z;Eduardo;235.5252;114650334;Germany; +2018-12-03T16:39:35Z;Eduardo;5852.184;116061301;Germany; +2018-12-03T16:23:21Z;Nathália;1422.869;114676892;Germany; +2018-12-03T15:41:08Z;Júlio Cesar;9666.576;114262433;Germany; +2018-12-03T15:24:59Z;Armando;5081.988;115528779;Germany; +2018-12-03T15:17:41Z;Sandra;5014.208;114896580;Germany; +2018-12-03T15:15:35Z;Armando;5965.632;116205402;Germany; +2018-12-03T15:13:25Z;Júlio;12334.83;115595432;Germany; +2018-12-03T15:05:32Z;Armando;1943.33;115870689;Germany; +2018-12-03T14:51:17Z;Armando;8890.002;115260362;Germany; +2018-12-03T14:16:46Z;Júlio;5716.905;114385656;Germany; +2018-12-03T13:48:11Z;Ana;152.0274;115641725;Germany; +2018-12-03T13:46:32Z;Armando;4821.835;114981711;Germany; +2018-12-03T13:30:28Z;Júlio;2949.379;114809211;Germany; +2018-12-03T13:06:50Z;Nathália;4139.896;116336324;Germany; +2018-12-03T13:01:16Z;Sandra;6932.452;115966030;Germany; +2018-12-03T12:38:48Z;Júlio Cesar;50.55539;115046054;Germany; +2018-12-23T12:18:59Z;Sandra;28104.95;115656060;Germany; +2018-12-03T12:10:56Z;Ana;11681.65;115316899;Germany; +2018-12-03T11:58:55Z;Sandra;1753.24;115149420;Germany; +2018-12-03T11:45:16Z;Sandra;251.7631;115700407;Germany; +2018-12-03T11:24:50Z;Ana;8176.449;115789312;Germany; +2018-12-03T11:19:57Z;Armando;1259.335;116281378;Germany; +2018-12-03T10:52:21Z;nathalia;7001.131;114956209;Germany; +2018-12-03T10:08:00Z;Armando;6682.538;115627842;Germany; +2018-12-03T10:02:53Z;nathalia;5386.291;114680044;Germany; +2018-12-03T09:49:07Z;Sandra;3761.526;115683584;Germany; +2018-12-03T09:28:30Z;Sandra;5305.419;115712597;Germany; +2018-12-03T09:27:09Z;Sandra;6159.171;116393038;Germany; +2018-12-21T09:21:14Z;Nathália;16234.83;115258524;Germany; +2018-12-03T08:56:11Z;Nathália;3698.38;116168480;Germany; +2018-12-03T08:54:40Z;Ana;4401.509;116040612;Germany; +2018-12-03T07:50:29Z;nathalia;431.6454;115534073;Germany; +2018-12-03T06:47:43Z;Armando;532.5195;115477685;Germany; +2018-12-03T06:10:32Z;Júlio Cesar;10099.05;114956234;Germany; +2018-12-03T05:41:00Z;Sandra;2434.899;114456714;Germany; +2018-12-03T05:21:19Z;Ana;4521.914;115061649;Germany; +2018-12-03T05:17:14Z;Júlio;792.026;115353227;Germany; +2018-12-03T05:15:15Z;nathalia;75.46291;114514516;Germany; +2018-12-03T05:09:52Z;nathalia;2229.995;115430887;Germany; +2018-12-03T05:04:38Z;nathalia;4590.149;115736488;Germany; +2018-12-03T05:03:51Z;Sandra;6192.293;114935747;Germany; +2018-12-03T05:03:51Z;nathalia;5885.122;116366451;Germany; +2018-12-03T04:43:20Z;Júlio Cesar;204.3403;115669931;Germany; +2018-12-03T04:21:53Z;Armando;7609.942;116049596;Germany; +2018-12-03T04:07:47Z;nathalia;1918.529;114737743;Germany; +2018-12-03T03:41:48Z;nathalia;793.0327;114422364;Germany; +2018-12-03T03:07:08Z;Nathália;6543.08;115185564;Germany; +2018-12-03T02:53:29Z;Júlio Cesar;3766.27;115420684;Germany; +2018-12-03T02:51:05Z;Sandra;6312.346;114687888;Germany; +2018-12-03T02:47:13Z;Eduardo;820.1387;114421345;Germany; +2018-12-03T02:43:06Z;Júlio Cesar;1660.712;115547737;Germany; +2018-12-03T02:31:48Z;Júlio;5032;115411977;Germany; +2018-12-03T02:27:40Z;Júlio Cesar;7592.495;114353703;Germany; +2018-12-03T02:25:57Z;Armando;7223.507;114531658;Germany; +2018-12-22T02:07:14Z;Júlio Cesar;23776.22;115091989;Germany; +2018-12-03T02:05:51Z;Ana;5498.87;115895766;Germany; +2018-12-03T02:00:43Z;Júlio;2575.695;115979227;Germany; +2018-12-03T01:31:55Z;Júlio Cesar;4341.282;114614739;Germany; +2018-12-03T01:25:30Z;Nathália;6037.095;115492379;Germany; +2018-12-03T01:14:26Z;Ana;5877.145;114671842;Germany; +2018-12-03T01:11:45Z;Júlio Cesar;4868.88;115577898;Germany; +2018-12-03T01:11:11Z;Eduardo;5082.512;115620124;Germany; +2018-12-03T00:50:37Z;Júlio;1626.101;115982118;Germany; +2018-12-03T00:38:58Z;Júlio Cesar;9905.043;115561053;Germany; +2018-12-02T23:43:36Z;Eduardo;1421.553;114291316;Germany; +2018-12-02T23:39:54Z;Armando;1701.364;115052444;Germany; +2018-12-02T22:51:02Z;Júlio;2930.251;114698089;Germany; +2018-12-02T22:50:40Z;Júlio Cesar;3950.919;115982052;Germany; +2018-12-02T22:49:52Z;nathalia;6391.657;115845429;Germany; +2018-12-02T22:27:29Z;nathalia;4919.566;116383783;Germany; +2018-12-02T22:23:07Z;nathalia;2744.914;114871855;Germany; +2018-12-02T21:30:10Z;Júlio;10293.76;115751757;Germany; +2018-12-02T21:25:10Z;Armando;1682.896;116274304;Germany; +2018-12-02T21:19:32Z;nathalia;1095.957;115185849;Germany; +2018-12-21T21:06:22Z;Eduardo;19351.65;114623941;Germany; +2018-12-02T20:34:18Z;Sandra;549.3851;116306679;Germany; +2018-12-02T20:18:22Z;Júlio Cesar;13477.53;115064909;Germany; +2018-12-02T19:52:09Z;Sandra;123.3124;114435614;Germany; +2018-12-02T19:45:30Z;Júlio;14492.81;115180535;Germany; +2018-12-02T19:03:39Z;Armando;939.1154;116106518;Germany; +2018-12-02T18:41:15Z;Eduardo;3989.242;116296272;Germany; +2018-12-02T18:31:20Z;Armando;7893.093;115845850;Germany; +2018-12-02T18:12:59Z;Júlio Cesar;1076.062;115413770;Germany; +2018-12-02T18:00:21Z;Eduardo;1625.817;115564568;Germany; +2018-12-02T17:57:50Z;Júlio Cesar;7062.248;114974426;Germany; +2018-12-02T17:42:01Z;Sandra;457.9107;114861291;Germany; +2018-12-02T17:25:29Z;Nathália;12723.33;114579808;Germany; +2018-12-02T17:21:05Z;Júlio;2101.448;115368127;Germany; +2018-12-02T16:30:27Z;Júlio;4140.416;114839101;Germany; +2018-12-02T16:23:06Z;Armando;986.3393;114713467;Germany; +2018-12-02T16:07:54Z;nathalia;8794.512;115444504;Germany; +2018-12-02T16:07:02Z;Sandra;7369.065;114937324;Germany; +2018-12-02T15:58:15Z;Ana;10041.04;114824469;Germany; +2018-12-02T14:57:16Z;Júlio Cesar;268.3668;115550335;Germany; +2018-12-02T14:50:31Z;Armando;84.63673;116149991;Germany; +2018-12-02T14:41:35Z;nathalia;5524.239;116207039;Germany; +2018-12-02T14:27:51Z;Nathália;4551.706;115112015;Germany; +2018-12-02T13:54:43Z;Eduardo;9459.855;114460440;Germany; +2018-12-02T13:30:28Z;Sandra;933.206;115670950;Germany; +2018-12-23T13:24:29Z;Júlio Cesar;24575.71;115640551;Germany; +2018-12-02T13:15:11Z;Júlio;14049.24;116203818;Germany; +2018-12-02T13:13:13Z;Júlio Cesar;5729.531;116282509;Germany; +2018-12-02T12:52:28Z;Sandra;1146.14;114734891;Germany; +2018-12-02T12:51:00Z;Sandra;4620.926;115911380;Germany; +2018-12-02T12:38:29Z;Ana;1876.938;114308464;Germany; +2018-12-02T12:35:35Z;Júlio Cesar;4451.581;115919018;Germany; +2018-12-02T12:16:26Z;Júlio;1002.629;116148992;Germany; +2018-12-02T11:05:09Z;Júlio Cesar;8772.059;115804066;Germany; +2018-12-02T11:00:06Z;Eduardo;14962.7;114432852;Germany; +2018-12-02T10:58:48Z;nathalia;762.676;114681656;Germany; +2018-12-21T10:51:18Z;nathalia;20167.26;114462726;Germany; +2018-12-02T10:32:12Z;Júlio;9012.772;116058357;Germany; +2018-12-02T10:23:39Z;Nathália;9719.784;116162023;Germany; +2018-12-02T10:06:34Z;Ana;8577.839;114992964;Germany; +2018-12-02T09:35:48Z;Nathália;2732.188;114534467;Germany; +2018-12-02T09:18:31Z;Ana;438.976;115730891;Germany; +2018-12-02T08:42:39Z;Ana;4507.084;116276460;Germany; +2018-12-02T08:41:13Z;Armando;408.3757;114572430;Germany; +2018-12-02T08:08:30Z;Júlio Cesar;6149.071;115880261;Germany; +2018-12-02T08:06:22Z;Ana;521.7861;114733950;Germany; +2018-12-02T07:49:34Z;nathalia;2391.641;115807544;Germany; +2018-12-02T07:24:46Z;nathalia;10062.79;114792600;Germany; +2018-12-02T07:09:53Z;Armando;1070.312;115820850;Germany; +2018-12-02T07:07:18Z;Sandra;4398.521;116312099;Germany; +2018-12-02T07:00:40Z;Ana;4795.517;114660169;Germany; +2018-12-02T06:57:50Z;Nathália;1632.581;114277009;Germany; +2018-12-02T06:57:44Z;Eduardo;4294.121;116391323;Germany; +2018-12-02T06:48:52Z;Júlio Cesar;1295.856;115198777;Germany; +2018-12-02T06:08:38Z;Sandra;9253.092;116223207;Germany; +2018-12-02T05:59:41Z;Ana;2056.496;115034252;Germany; +2018-12-02T05:56:16Z;Ana;1522.839;116017346;Germany; +2018-12-02T05:19:41Z;Sandra;11191.17;114821743;Germany; +2018-12-02T05:09:35Z;Sandra;3041.646;115178011;Germany; +2018-12-02T04:38:08Z;Ana;10025.81;115499134;Germany; +2018-12-02T04:10:12Z;Júlio Cesar;13883.17;114334528;Germany; +2018-12-23T04:08:09Z;Sandra;21812.09;116355163;Germany; +2018-12-02T04:07:17Z;Armando;6678.181;115824205;Germany; +2018-12-02T03:33:19Z;Júlio;3020.782;114529423;Germany; +2018-12-02T03:33:17Z;Sandra;8476.968;115370267;Germany; +2018-12-02T02:56:19Z;Júlio Cesar;1704.056;115705020;Germany; +2018-12-02T02:50:33Z;Ana;9756.225;114257728;Germany; +2018-12-02T01:43:29Z;Sandra;5813.184;114286057;Germany; +2018-12-02T01:21:11Z;Sandra;11660.79;115402769;Germany; +2018-12-02T01:18:26Z;Armando;986.802;115929232;Germany; +2018-12-02T01:06:06Z;Nathália;5566.946;114430527;Germany; +2018-12-02T00:39:51Z;nathalia;7239.163;115183861;Germany; +2018-12-02T00:26:49Z;Eduardo;705.4824;114265256;Germany; +2018-12-02T00:26:17Z;nathalia;715.4967;116222262;Germany; +2018-12-02T00:18:04Z;Júlio;7633.908;115998204;Germany; +2018-12-22T00:09:46Z;Sandra;15517.86;115281191;Germany; +2018-12-02T00:08:28Z;Armando;11479.88;115306391;Germany; +2018-12-01T23:07:22Z;Sandra;1922.399;115821478;Germany; +2018-12-22T23:02:54Z;Nathália;16996.44;115099573;Germany; +2018-12-22T22:49:16Z;Sandra;20395.91;116180169;Germany; +2018-12-01T22:16:45Z;Sandra;4998.191;116291331;Germany; +2018-12-01T21:47:39Z;Júlio;5661.737;114583491;Germany; +2018-12-01T21:21:57Z;Eduardo;870.6883;115121851;Germany; +2018-12-01T21:18:07Z;Sandra;4046.946;115046414;Germany; +2018-12-01T21:17:50Z;Eduardo;5745.372;115385188;Germany; +2018-12-01T21:08:27Z;Júlio Cesar;4455.104;114257189;Germany; +2018-12-01T21:05:44Z;Eduardo;2401.743;114240235;Germany; +2018-12-01T20:27:50Z;Júlio Cesar;416.2418;114467850;Germany; +2018-12-01T20:04:11Z;Armando;4277.995;115453541;Germany; +2018-12-01T20:00:49Z;Sandra;719.8938;116168389;Germany; +2018-12-01T18:56:38Z;Nathália;5019.796;115870832;Germany; +2018-12-01T18:45:26Z;nathalia;655.7477;114683107;Germany; +2018-12-01T18:26:51Z;Júlio;4130.847;114806448;Germany; +2018-12-01T18:06:29Z;nathalia;2914.612;115072971;Germany; +2018-12-01T17:52:37Z;Ana;10117.83;115536053;Germany; +2018-12-01T17:39:50Z;Eduardo;3139.334;114811901;Germany; +2018-12-01T16:39:29Z;Ana;11558.43;114902274;Germany; +2018-12-01T16:36:08Z;Sandra;4697.308;114975315;Germany; +2018-12-01T16:07:22Z;Ana;1720.044;115806813;Germany; +2018-12-01T16:02:03Z;Júlio;6765.29;114570259;Germany; +2018-12-01T15:59:12Z;Júlio;2066.41;116051463;Germany; +2018-12-01T15:45:46Z;Júlio;3658.357;115895158;Germany; +2018-12-01T15:28:52Z;Sandra;2439.273;114710544;Germany; +2018-12-22T14:44:40Z;Eduardo;17187.45;115629126;Germany; +2018-12-01T14:41:06Z;Eduardo;2307.232;116114874;Germany; +2018-12-01T14:27:25Z;Sandra;7604.379;114248644;Germany; +2018-12-01T14:17:51Z;nathalia;7175.026;114408879;Germany; +2018-12-01T14:10:59Z;Armando;4304.441;116163885;Germany; +2018-12-01T13:54:45Z;Nathália;13426.85;115607870;Germany; +2018-12-01T13:27:41Z;Sandra;641.7949;115416626;Germany; +2018-12-01T13:24:21Z;Nathália;167.0903;114411463;Germany; +2018-12-01T13:07:22Z;Nathália;8574.615;115613861;Germany; +2018-12-01T13:01:57Z;Júlio Cesar;851.7705;114938986;Germany; +2018-12-01T12:42:31Z;Sandra;3397.469;115608954;Germany; +2018-12-01T12:34:03Z;Sandra;9877.985;115580610;Germany; +2018-12-01T12:21:07Z;Júlio Cesar;5228.201;115021248;Germany; +2018-12-01T12:02:22Z;nathalia;2119.961;115433987;Germany; +2018-12-01T11:24:58Z;Júlio Cesar;1076.164;114996984;Germany; +2018-12-01T11:04:59Z;nathalia;6536.728;114229446;Germany; +2018-12-01T11:04:40Z;Júlio;985.6835;115308299;Germany; +2018-12-01T10:59:30Z;Armando;858.6639;115698290;Germany; +2018-12-01T10:53:26Z;Júlio;8978.456;114653094;Germany; +2018-12-01T10:34:00Z;Sandra;10803.8;115672500;Germany; +2018-12-23T10:09:56Z;Nathália;15418.33;115791670;Germany; +2018-12-01T10:01:32Z;Armando;10890.18;115871861;Germany; +2018-12-01T10:00:58Z;Sandra;239.0987;115891091;Germany; +2018-12-01T09:38:07Z;nathalia;4945.285;114213865;Germany; +2018-12-01T09:19:47Z;Armando;4294.828;116055827;Germany; +2018-12-21T09:19:19Z;Armando;17527.49;114478980;Germany; +2018-12-01T09:17:06Z;Nathália;3660.385;115076212;Germany; +2018-12-01T08:51:34Z;Sandra;12238.05;114373257;Germany; +2018-12-21T08:27:40Z;Júlio;21770.43;115818883;Germany; +2018-12-01T08:07:10Z;Júlio Cesar;10688.41;116375597;Germany; +2018-12-01T07:55:38Z;nathalia;1821.278;114306871;Germany; +2018-12-01T07:46:45Z;Eduardo;11653.28;114369792;Germany; +2018-12-01T06:53:27Z;Ana;10544.53;114203138;Germany; +2018-12-01T06:42:46Z;Sandra;2360.124;114789217;Germany; +2018-12-01T06:21:43Z;Nathália;2944.624;114748815;Germany; +2018-12-01T06:15:06Z;Eduardo;7646.506;115832745;Germany; +2018-12-01T06:11:28Z;Nathália;9579.093;115973613;Germany; +2018-12-01T05:48:53Z;nathalia;2128.994;115103385;Germany; +2018-12-01T04:16:12Z;Armando;7226.974;116342338;Germany; +2018-12-01T03:43:25Z;nathalia;2860.983;114264618;Germany; +2018-12-01T03:27:33Z;Nathália;13966.75;114402347;Germany; +2018-12-01T03:26:40Z;Nathália;2491.99;115038539;Germany; +2018-12-01T03:07:40Z;Ana;2979.307;116310491;Germany; +2018-12-01T03:06:01Z;Armando;3075.814;114968698;Germany; +2018-12-01T03:05:38Z;Eduardo;8008.576;114338318;Germany; +2018-12-01T02:33:31Z;Nathália;1202.345;114216947;Germany; +2018-12-01T02:27:33Z;Nathália;11135.97;114462674;Germany; +2018-12-01T02:24:23Z;Júlio Cesar;7367.364;115344797;Germany; +2018-12-01T02:24:04Z;Sandra;2688.196;115276748;Germany; +2018-12-01T01:53:37Z;nathalia;3414.159;115741312;Germany; +2018-12-01T01:16:03Z;Armando;1610.278;114938536;Germany; +2018-12-01T01:01:30Z;Júlio;3585.666;115591500;Germany; +2018-12-01T00:48:51Z;Eduardo;156.0642;116355462;Germany; +2018-12-01T00:14:41Z;Júlio;941.6191;115602176;Germany; +2018-12-01T00:13:14Z;Eduardo;2713.387;114245824;Germany; +2018-11-30T23:37:02Z;Ana;490.162;114335286;Germany; +2018-11-30T23:26:41Z;Júlio;3363.372;115985424;Germany; +2018-11-30T23:26:11Z;Eduardo;2005.063;114930472;Germany; +2018-11-30T22:41:48Z;Júlio Cesar;751.0853;114576106;Germany; +2018-11-30T22:38:21Z;Ana;601.3763;115427457;Germany; +2018-11-30T22:20:51Z;nathalia;5116.098;114204304;Germany; +2018-11-30T21:56:42Z;Júlio Cesar;2287.802;115153160;Germany; +2018-11-30T21:47:51Z;Ana;8598.648;116100686;Germany; +2018-11-30T21:46:14Z;Sandra;209.6255;115989149;Germany; +2018-11-30T21:22:15Z;Júlio Cesar;12499.59;114528653;Germany; +2018-11-30T20:58:09Z;Júlio Cesar;5823.812;115159028;Germany; +2018-11-30T20:50:18Z;Sandra;8972.749;115013106;Germany; +2018-11-30T20:20:51Z;Ana;81.48606;114314354;Germany; +2018-11-30T20:15:55Z;Júlio;2022.718;114768117;Germany; +2018-11-30T20:08:01Z;Eduardo;994.4847;115002959;Germany; +2018-11-30T20:07:55Z;Júlio;199.2327;116268383;Germany; +2018-11-30T19:41:54Z;Armando;4724.423;116178977;Germany; +2018-11-30T19:40:13Z;Nathália;5249.502;115090076;Germany; +2018-11-30T19:39:18Z;nathalia;10077.49;115702107;Germany; +2018-11-30T19:32:21Z;Sandra;7308.059;115195195;Germany; +2018-11-30T19:00:43Z;Sandra;4178.431;115064864;Germany; +2018-11-30T18:57:02Z;Nathália;413.5358;115780354;Germany; +2018-11-30T18:43:05Z;Nathália;7833.62;114310573;Germany; +2018-11-30T18:42:09Z;Nathália;1719.121;114877723;Germany; +2018-11-30T18:27:07Z;Sandra;776.2147;114987574;Germany; +2018-11-30T17:53:13Z;Ana;160.0746;114919271;Germany; +2018-11-30T17:44:39Z;Sandra;4338.573;114784571;Germany; +2018-11-30T17:39:47Z;Eduardo;579.1148;114993086;Germany; +2018-11-30T17:35:28Z;Júlio;392.2556;114754569;Germany; +2018-11-30T17:04:27Z;Sandra;10796.77;116127539;Germany; +2018-11-30T17:02:23Z;Nathália;10689.67;115120647;Germany; +2018-11-30T16:51:25Z;Júlio Cesar;6446.376;116183449;Germany; +2018-11-30T16:34:42Z;nathalia;3534.106;116258493;Germany; +2018-11-30T16:34:26Z;Júlio;1911.963;115262719;Germany; +2018-11-30T16:21:29Z;Sandra;8425.407;114878960;Germany; +2018-11-30T16:18:57Z;Ana;3514.798;115442586;Germany; +2018-11-30T15:33:44Z;Júlio;67.9122;116028194;Germany; +2018-11-30T15:27:04Z;Sandra;2413.585;116312423;Germany; +2018-11-30T15:08:54Z;Júlio;10525.86;116334327;Germany; +2018-11-30T14:30:45Z;Sandra;2530.846;116207621;Germany; +2018-11-30T14:30:08Z;Armando;878.6337;115159666;Germany; +2018-11-30T14:11:47Z;Júlio Cesar;4722.079;114480764;Germany; +2018-11-30T14:07:35Z;Júlio;2917.065;116098053;Germany; +2018-11-30T14:00:17Z;Nathália;12294.21;115383575;Germany; +2018-11-30T13:55:42Z;Ana;3380.295;115375968;Germany; +2018-11-30T13:24:30Z;Armando;4773.315;115538499;Germany; +2018-11-30T12:33:53Z;Júlio Cesar;981.4791;115295257;Germany; +2018-11-30T12:28:38Z;Júlio;268.1497;116004303;Germany; +2018-12-22T12:26:44Z;Júlio Cesar;17545.89;115753858;Germany; +2018-11-30T12:07:39Z;nathalia;9846.493;114895377;Germany; +2018-11-30T11:53:16Z;Ana;9982.073;116024223;Germany; +2018-11-30T11:31:55Z;Ana;3512.301;115096679;Germany; +2018-11-30T11:14:33Z;Armando;11724.57;114550234;Germany; +2018-11-30T10:33:31Z;Eduardo;7130.626;115408383;Germany; +2018-11-30T09:43:02Z;Armando;517.331;114495531;Germany; +2018-11-30T09:30:18Z;Armando;7687.379;116388128;Germany; +2018-11-30T09:29:15Z;Ana;4447.802;114814382;Germany; +2018-11-30T09:05:40Z;Júlio Cesar;8566.701;115449903;Germany; +2018-11-30T09:03:10Z;Júlio;5990.135;114435119;Germany; +2018-11-30T09:02:41Z;Júlio;1184.399;115211824;Germany; +2018-11-30T08:40:52Z;Eduardo;8592.488;116150166;Germany; +2018-11-30T08:23:12Z;Armando;4666.175;115182239;Germany; +2018-11-30T08:21:53Z;Júlio Cesar;5362.632;115284291;Germany; +2018-11-30T07:54:48Z;nathalia;4105.676;116374631;Germany; +2018-11-30T07:33:28Z;Júlio Cesar;8148.264;114292932;Germany; +2018-11-30T07:07:11Z;Armando;6563.355;114273386;Germany; +2018-11-30T06:55:15Z;Nathália;5738.568;115909644;Germany; +2018-11-30T06:38:24Z;nathalia;3897.346;116056409;Germany; +2018-11-30T06:33:12Z;Júlio Cesar;1673.136;114364523;Germany; +2018-11-30T06:29:22Z;Nathália;3732.059;114967718;Germany; +2018-11-30T06:13:43Z;nathalia;7000.235;114979307;Germany; +2018-11-30T05:11:45Z;Júlio;749.9136;115862881;Germany; +2018-11-30T05:01:49Z;Ana;8444.9;116027732;Germany; +2018-11-30T04:59:47Z;Sandra;965.8175;115776442;Germany; +2018-11-30T04:26:44Z;Nathália;1578.551;114513933;Germany; +2018-11-30T04:22:09Z;Sandra;12258.3;115854387;Germany; +2018-11-30T04:06:29Z;Júlio Cesar;2336.003;115227913;Germany; +2018-11-30T03:58:10Z;Júlio;3760.849;114442514;Germany; +2018-11-30T03:43:59Z;nathalia;1671.905;114459686;Germany; +2018-11-30T03:32:43Z;Armando;1610.789;114897030;Germany; +2018-11-30T03:30:01Z;Ana;2003.584;114563988;Germany; +2018-11-30T03:29:27Z;Eduardo;5961.506;116075198;Germany; +2018-11-30T02:33:16Z;Armando;4723.184;114892032;Germany; +2018-11-30T02:27:43Z;Eduardo;1895.72;116056506;Germany; +2018-11-30T02:04:23Z;Eduardo;5323.137;116377427;Germany; +2018-11-30T01:57:44Z;Ana;949.3477;114369603;Germany; +2018-11-30T01:43:44Z;Eduardo;8209.799;115735193;Germany; +2018-11-30T01:08:46Z;Júlio;6777.472;115210184;Germany; +2018-11-30T00:49:21Z;Ana;8821.888;116246976;Germany; +2018-11-30T00:46:20Z;nathalia;334.7918;114262354;Germany; +2018-11-30T00:28:27Z;nathalia;553.2293;114396490;Germany; +2018-11-30T00:14:58Z;Ana;6014.755;116032007;Germany; +2018-11-29T23:51:15Z;Sandra;160.3946;116221177;Germany; +2018-11-29T23:48:16Z;Armando;4346.526;115788285;Germany; +2018-11-29T23:44:26Z;Nathália;6765.482;115082167;Germany; +2018-11-29T23:40:17Z;Júlio;7912.971;114855897;Germany; +2018-11-29T22:57:24Z;Eduardo;2817.488;115709348;Germany; +2018-11-29T22:39:24Z;Júlio;3211.878;115890981;Germany; +2018-11-29T22:22:32Z;Armando;2651.996;116284047;Germany; +2018-11-29T22:18:20Z;Ana;3827.615;114561452;Germany; +2018-11-29T22:18:17Z;Júlio;7463.326;114425336;Germany; +2018-11-29T22:02:16Z;nathalia;5204.679;116093864;Germany; +2018-11-29T21:28:27Z;Júlio;320.5632;115537560;Germany; +2018-11-29T20:46:19Z;nathalia;4160.275;115073747;Germany; +2018-11-29T20:07:55Z;Nathália;1618.245;114415761;Germany; +2018-11-29T20:00:06Z;Ana;121.545;114988298;Germany; +2018-11-29T19:40:00Z;Armando;4980.913;115035139;Germany; +2018-11-29T19:33:32Z;Armando;310.3127;114862802;Germany; +2018-11-29T19:32:43Z;Eduardo;4071.194;115566426;Germany; +2018-11-29T19:20:38Z;Eduardo;957.6468;116096346;Germany; +2018-11-29T18:49:59Z;Armando;432.9862;114682431;Germany; +2018-11-29T18:12:28Z;Ana;9470.862;115295728;Germany; +2018-11-29T17:49:58Z;Júlio Cesar;8819.399;115819486;Germany; +2018-11-29T17:36:51Z;nathalia;4041.655;115575871;Germany; +2018-12-22T16:42:42Z;Júlio Cesar;25637.47;115374749;Germany; +2018-11-29T16:23:54Z;Ana;1610.462;114254753;Germany; +2018-11-29T16:22:32Z;Júlio Cesar;5524.77;116300131;Germany; +2018-11-29T16:18:32Z;nathalia;9037.916;114537634;Germany; +2018-11-29T15:32:57Z;Sandra;11747.66;114476300;Germany; +2018-11-29T15:03:03Z;nathalia;2613.612;115078200;Germany; +2018-11-29T15:01:45Z;Sandra;4341.741;114427837;Germany; +2018-11-29T14:57:22Z;Armando;4917.197;114204510;Germany; +2018-11-29T14:48:05Z;Júlio Cesar;7446.28;114599206;Germany; +2018-11-29T14:45:57Z;Júlio Cesar;1203.32;115378913;Germany; +2018-11-29T14:25:35Z;Armando;2741.157;116247613;Germany; +2018-11-29T14:24:21Z;Sandra;5150.226;115471225;Germany; +2018-11-29T14:21:29Z;Armando;528.0695;115245707;Germany; +2018-12-23T14:21:14Z;Júlio Cesar;17160.09;114202544;Germany; +2018-11-29T14:03:13Z;Júlio Cesar;6974.153;114362318;Germany; +2018-11-29T13:28:42Z;Sandra;247.1269;116192446;Germany; +2018-11-29T13:22:04Z;Nathália;14987.67;115957709;Germany; +2018-11-29T12:56:10Z;Ana;6594.328;115360373;Germany; +2018-11-29T12:55:14Z;Ana;13847.81;115213127;Germany; +2018-11-29T12:01:08Z;nathalia;598.0141;115410991;Germany; +2018-11-29T11:45:05Z;Nathália;2796.852;114211801;Germany; +2018-11-29T11:30:03Z;Armando;5594.935;115499254;Germany; +2018-12-22T11:15:18Z;Ana;23480.62;114675861;Germany; +2018-11-29T11:15:02Z;nathalia;9337.543;115922454;Germany; +2018-11-29T10:42:25Z;Armando;14272.12;116232909;Germany; +2018-11-29T10:42:00Z;Júlio Cesar;7910.654;115957505;Germany; +2018-11-29T10:39:38Z;Armando;8581.386;114324891;Germany; +2018-11-29T10:21:05Z;Sandra;1783.884;115892214;Germany; +2018-11-29T10:13:01Z;Eduardo;13135.78;114952359;Germany; +2018-11-29T10:08:19Z;Ana;1047.721;114231407;Germany; +2018-11-29T09:57:34Z;Eduardo;345.1416;114277466;Germany; +2018-12-23T09:55:16Z;Eduardo;19757.83;115924572;Germany; +2018-11-29T09:31:59Z;Sandra;1464.009;116314836;Germany; +2018-11-29T09:19:01Z;Nathália;11862.01;116058449;Germany; +2018-11-29T09:16:33Z;Eduardo;8212.426;115891862;Germany; +2018-11-29T08:49:45Z;Eduardo;13821.09;114546586;Germany; +2018-11-29T08:34:35Z;Ana;2897.699;114886575;Germany; +2018-11-29T08:25:01Z;Júlio Cesar;202.1801;116364550;Germany; +2018-11-29T08:16:00Z;Nathália;1547.021;114563380;Germany; +2018-11-29T07:48:53Z;Eduardo;5442.791;115791088;Germany; +2018-11-29T07:44:21Z;nathalia;111.4837;115223828;Germany; +2018-11-29T07:37:02Z;Nathália;678.6401;116129147;Germany; +2018-12-21T07:33:38Z;Júlio Cesar;17691.81;116074282;Germany; +2018-11-29T07:08:03Z;Eduardo;5842.675;116337237;Germany; +2018-11-29T06:49:30Z;Sandra;4225.469;115736744;Germany; +2018-11-29T06:33:45Z;Júlio Cesar;4083.569;115930723;Germany; +2018-11-29T06:25:16Z;Ana;6953.733;115014927;Germany; +2018-12-22T06:08:06Z;Ana;17904.13;114792536;Germany; +2018-12-22T06:07:01Z;nathalia;16500.83;114584065;Germany; +2018-11-29T06:06:14Z;Nathália;9203.598;116021770;Germany; +2018-11-29T05:29:49Z;Armando;8103.755;116225470;Germany; +2018-11-29T05:10:00Z;Ana;3225.06;114942563;Germany; +2018-11-29T04:38:26Z;Júlio Cesar;4817.946;114800575;Germany; +2018-11-29T04:19:54Z;Armando;8166.184;114467246;Germany; +2018-11-29T03:50:18Z;Nathália;14827.81;115651814;Germany; +2018-11-29T03:48:24Z;Armando;4013.26;114513262;Germany; +2018-11-29T02:44:43Z;Eduardo;5508.17;115689242;Germany; +2018-11-29T02:30:34Z;Júlio Cesar;355.1151;114295948;Germany; +2018-11-29T02:22:59Z;Nathália;678.2858;114707470;Germany; +2018-11-29T02:03:08Z;Eduardo;3705.928;114815373;Germany; +2018-11-29T02:02:29Z;Eduardo;9625.301;115037047;Germany; +2018-11-29T01:57:27Z;Júlio;2650.113;114593132;Germany; +2018-11-29T01:46:59Z;Júlio Cesar;1726.941;114324978;Germany; +2018-11-29T01:35:10Z;Júlio Cesar;364.5317;115594273;Germany; +2018-11-29T01:22:28Z;nathalia;2903.827;114658097;Germany; +2018-11-29T01:15:15Z;Eduardo;3755.434;114354949;Germany; +2018-11-29T01:14:19Z;Júlio Cesar;2601.523;114237225;Germany; +2018-11-29T01:03:47Z;Ana;3043.201;116267542;Germany; +2018-11-29T01:03:42Z;Eduardo;2674.248;115536434;Germany; +2018-11-29T00:52:56Z;Nathália;6708.969;115234371;Germany; +2018-11-29T00:11:31Z;Sandra;3624.739;115702059;Germany; +2018-11-29T00:11:14Z;Eduardo;4052.331;116147534;Germany; +2018-11-28T23:41:09Z;Júlio;1534.856;115040341;Germany; +2018-11-28T23:18:03Z;nathalia;4432.301;114779636;Germany; +2018-11-28T23:16:44Z;Sandra;6935.423;116385343;Germany; +2018-11-28T23:16:25Z;Eduardo;2077.262;114329814;Germany; +2018-11-28T22:47:13Z;Nathália;201.8541;116130147;Germany; +2018-11-28T22:42:27Z;Armando;3845.745;114763780;Germany; +2018-11-28T22:20:58Z;Júlio Cesar;7314.457;115910519;Germany; +2018-11-28T21:59:18Z;Júlio Cesar;234.7624;114861091;Germany; +2018-11-28T21:58:20Z;Júlio Cesar;11249.26;115478470;Germany; +2018-11-28T21:56:36Z;Júlio Cesar;8055.467;115088556;Germany; +2018-11-28T21:52:44Z;Ana;2863.177;115048958;Germany; +2018-11-28T21:31:34Z;Armando;6696.065;114534546;Germany; +2018-11-28T21:16:49Z;Sandra;12450.06;116071232;Germany; +2018-11-28T21:09:27Z;Armando;2537.445;115423868;Germany; +2018-11-28T21:06:54Z;Júlio Cesar;114.3372;116274525;Germany; +2018-12-21T20:54:46Z;Ana;17075.13;115037200;Germany; +2018-11-28T20:49:20Z;Armando;2541.055;116018289;Germany; +2018-11-28T20:33:03Z;nathalia;11574.99;116041088;Germany; +2018-12-22T19:41:25Z;Armando;19141.7;114867090;Germany; +2018-11-28T19:26:09Z;Ana;11123.38;114204575;Germany; +2018-12-21T19:21:49Z;Eduardo;18288.5;116013840;Germany; +2018-11-28T19:07:48Z;Ana;10078;114207520;Germany; +2018-11-28T18:51:23Z;nathalia;4252.022;115466026;Germany; +2018-11-28T18:24:48Z;nathalia;3287.594;114206384;Germany; +2018-11-28T18:18:43Z;Nathália;12065.98;116120428;Germany; +2018-12-22T18:10:20Z;Júlio;15799.76;114652465;Germany; +2018-11-28T17:56:24Z;Armando;137.0891;115384107;Germany; +2018-11-28T17:55:59Z;Júlio Cesar;11212.52;115845302;Germany; +2018-11-28T17:41:52Z;Sandra;10749.07;116219744;Germany; +2018-11-28T17:37:31Z;nathalia;1741.92;114989691;Germany; +2018-11-28T17:23:12Z;Júlio Cesar;768.1226;115144148;Germany; +2018-12-22T17:05:26Z;Nathália;15709.75;115879700;Germany; +2018-11-28T16:58:33Z;Sandra;3392.33;114714066;Germany; +2018-11-28T16:54:25Z;Júlio;10022.88;114895735;Germany; +2018-11-28T16:44:02Z;nathalia;4398.496;115165778;Germany; +2018-11-28T16:32:41Z;Eduardo;3047.907;116271896;Germany; +2018-11-28T16:09:30Z;nathalia;365.2464;115172357;Germany; +2018-11-28T15:35:32Z;Júlio;7673.377;115791163;Germany; +2018-12-22T15:23:41Z;Sandra;18676.5;114456032;Germany; +2018-11-28T14:26:11Z;Júlio Cesar;1629.224;115002890;Germany; +2018-11-28T14:02:04Z;Júlio;5590.597;115998903;Germany; +2018-11-28T14:00:53Z;nathalia;1919.689;115957898;Germany; +2018-11-28T13:38:56Z;nathalia;324.2754;114762268;Germany; +2018-11-28T13:37:51Z;Eduardo;10841.68;115538189;Germany; +2018-12-21T13:17:59Z;nathalia;18681.29;115902614;Germany; +2018-11-28T13:06:10Z;Ana;11858.15;115031545;Germany; +2018-11-28T13:00:06Z;Nathália;929.2175;116151052;Germany; +2018-11-28T12:45:56Z;Nathália;3037.428;115686220;Germany; +2018-11-28T12:31:01Z;Júlio Cesar;4945.043;115155501;Germany; +2018-11-28T12:30:27Z;Ana;11171.2;114506217;Germany; +2018-11-28T11:59:12Z;Armando;5.12707;114718477;Germany; +2018-11-28T11:37:27Z;Sandra;4044.213;115580350;Germany; +2018-11-28T10:32:29Z;Armando;7892.055;115238944;Germany; +2018-11-28T10:20:46Z;Eduardo;6438.608;115207683;Germany; +2018-11-28T10:19:53Z;nathalia;1883.368;115709804;Germany; +2018-11-28T10:19:43Z;Júlio;1443.653;115272588;Germany; +2018-11-28T10:12:37Z;Sandra;2119.479;114587736;Germany; +2018-11-28T09:59:18Z;Sandra;257.3608;115006866;Germany; +2018-11-28T09:43:56Z;Ana;3018.668;115369207;Germany; +2018-11-28T09:40:58Z;Júlio;406.6687;114684006;Germany; +2018-11-28T09:37:54Z;Ana;3570.302;114334115;Germany; +2018-11-28T09:19:19Z;Eduardo;1449.775;114505603;Germany; +2018-11-28T09:17:53Z;Nathália;6919.213;115419955;Germany; +2018-11-28T08:54:44Z;Júlio Cesar;13938.62;116037512;Germany; +2018-11-28T08:02:34Z;Ana;7502.236;114410161;Germany; +2018-11-28T07:55:48Z;nathalia;3170.378;114259071;Germany; +2018-12-22T07:42:21Z;nathalia;18746.15;115236863;Germany; +2018-11-28T07:36:27Z;Armando;2262.528;116330201;Germany; +2018-11-28T07:29:41Z;Júlio Cesar;2464.215;115496822;Germany; +2018-11-28T07:11:38Z;Sandra;11725.2;114977765;Germany; +2018-11-28T06:30:12Z;Sandra;6949.329;115216775;Germany; +2018-11-28T05:57:31Z;Júlio Cesar;3507.133;114680368;Germany; +2018-11-28T05:51:34Z;Júlio Cesar;223.6074;114673082;Germany; +2018-12-21T05:29:47Z;Eduardo;16583.05;116219550;Germany; +2018-11-28T05:23:16Z;Nathália;5505.619;116376676;Germany; +2018-11-28T05:09:42Z;Júlio;3799.091;115905953;Germany; +2018-11-28T05:07:41Z;Nathália;7450.193;115060954;Germany; +2018-11-28T04:54:00Z;nathalia;5946.985;116222992;Germany; +2018-11-28T04:41:40Z;Nathália;2156.902;114916654;Germany; +2018-11-28T04:27:55Z;Júlio Cesar;7471.584;115580503;Germany; +2018-11-28T04:21:07Z;Eduardo;6804.428;115253290;Germany; +2018-11-28T04:20:53Z;nathalia;5169.385;114845174;Germany; +2018-11-28T04:09:28Z;Eduardo;1814.51;115534942;Germany; +2018-11-28T03:43:12Z;nathalia;5692.223;114904974;Germany; +2018-12-21T03:41:17Z;Armando;15399.75;115519112;Germany; +2018-11-28T03:35:49Z;Ana;9612.636;115036562;Germany; +2018-11-28T03:33:31Z;Nathália;239.981;114974021;Germany; +2018-11-28T03:04:53Z;Sandra;13722.82;115873235;Germany; +2018-11-28T02:50:40Z;Sandra;9474.134;115292896;Germany; +2018-11-28T02:31:06Z;Sandra;444.375;116116757;Germany; +2018-11-28T02:16:02Z;Júlio;12381.64;116073487;Germany; +2018-11-28T01:53:43Z;Ana;2557.56;116003207;Germany; +2018-11-28T01:46:24Z;Ana;1699.945;115342752;Germany; +2018-12-23T01:29:50Z;Júlio Cesar;15913.79;116380933;Germany; +2018-11-28T00:59:51Z;Júlio Cesar;6459.931;116015134;Germany; +2018-11-28T00:58:04Z;Ana;13176.12;115592650;Germany; +2018-11-28T00:54:25Z;Eduardo;1866.062;114786545;Germany; +2018-11-28T00:39:31Z;nathalia;7336.243;116263379;Germany; +2018-11-28T00:17:58Z;Ana;1353.27;115282624;Germany; +2018-11-28T00:01:30Z;Nathália;2538.948;116011349;Germany; +2018-11-27T23:20:45Z;Nathália;1475.377;114840789;Germany; +2018-11-27T23:14:45Z;Armando;1286.241;115570797;Germany; +2018-11-27T22:50:28Z;Ana;7852.935;115335991;Germany; +2018-11-27T22:31:02Z;Nathália;5552.766;115779244;Germany; +2018-11-27T22:30:06Z;Júlio Cesar;5826.615;114600029;Germany; +2018-11-27T22:17:20Z;Eduardo;4199.866;115385993;Germany; +2018-11-27T22:07:34Z;Eduardo;598.0575;114329268;Germany; +2018-11-27T21:54:25Z;Nathália;2439.059;116325259;Germany; +2018-11-27T21:40:53Z;Nathália;1230.368;115732474;Germany; +2018-12-21T21:06:59Z;Júlio;19915.66;115330625;Germany; +2018-11-27T21:01:04Z;nathalia;460.8904;115070651;Germany; +2018-11-27T20:44:58Z;nathalia;2428.108;116025278;Germany; +2018-11-27T20:41:13Z;Eduardo;2138.379;115042042;Germany; +2018-11-27T20:27:56Z;nathalia;2523.64;115305917;Germany; +2018-11-27T20:16:17Z;Ana;496.2849;115120786;Germany; +2018-11-27T20:00:12Z;Ana;12099.53;115022403;Germany; +2018-11-27T19:47:42Z;Eduardo;7528.194;114901660;Germany; +2018-11-27T19:44:19Z;Eduardo;1612.173;114201509;Germany; +2018-11-27T19:38:43Z;Júlio Cesar;4155.418;114339846;Germany; +2018-11-27T19:32:06Z;nathalia;12716.72;115777670;Germany; +2018-11-27T19:24:55Z;Nathália;3239.517;116310622;Germany; +2018-11-27T19:08:28Z;nathalia;3365.912;114209657;Germany; +2018-11-27T18:52:34Z;Armando;1886.754;116176558;Germany; +2018-11-27T18:19:37Z;Nathália;5535.441;115941398;Germany; +2018-11-27T18:03:40Z;Eduardo;270.7148;114978148;Germany; +2018-11-27T17:34:07Z;Armando;4979.199;115633222;Germany; +2018-11-27T17:27:44Z;nathalia;4307.214;114766650;Germany; +2018-11-27T17:21:50Z;Júlio Cesar;11229.9;115250307;Germany; +2018-11-27T16:12:44Z;Júlio;2625.335;116253849;Germany; +2018-11-27T15:32:10Z;nathalia;11590.11;114489918;Germany; +2018-11-27T15:29:29Z;Nathália;6319.588;115910355;Germany; +2018-11-27T15:26:26Z;Júlio Cesar;5145.815;114905081;Germany; +2018-11-27T15:09:40Z;Ana;2269.033;115029791;Germany; +2018-11-27T14:18:02Z;Ana;1049.308;115456739;Germany; +2018-11-27T14:12:52Z;Júlio Cesar;5730.898;114641579;Germany; +2018-11-27T13:56:55Z;Nathália;3992.797;114903696;Germany; +2018-11-27T13:49:50Z;Júlio Cesar;10443.29;114910239;Germany; +2018-11-27T13:43:21Z;Nathália;118.6266;115988267;Germany; +2018-11-27T13:22:34Z;nathalia;816.2153;115674184;Germany; +2018-11-27T12:41:43Z;nathalia;181.9166;114221361;Germany; +2018-11-27T12:18:51Z;nathalia;7448.223;114919315;Germany; +2018-11-27T11:50:25Z;Júlio Cesar;2700.824;115966550;Germany; +2018-11-27T11:29:05Z;Sandra;10752.13;114267667;Germany; +2018-11-27T11:09:35Z;Eduardo;3924.859;116370652;Germany; +2018-11-27T11:04:53Z;Sandra;2980.729;116350628;Germany; +2018-11-27T11:03:30Z;Júlio;9189.11;114335652;Germany; +2018-11-27T10:57:51Z;Júlio;1063.978;115872930;Germany; +2018-11-27T10:27:05Z;Eduardo;225.0814;114929027;Germany; +2018-11-27T10:25:10Z;Júlio Cesar;2669.175;115577024;Germany; +2018-11-27T10:19:02Z;Eduardo;3664.586;115879774;Germany; +2018-11-27T10:11:41Z;Sandra;2058.927;115650158;Germany; +2018-11-27T10:10:07Z;Ana;6957.135;114892974;Germany; +2018-11-27T09:19:18Z;Júlio;6011.523;115568637;Germany; +2018-11-27T09:13:51Z;Júlio;1220.899;115797716;Germany; +2018-11-27T09:04:51Z;Sandra;5364.644;114255292;Germany; +2018-11-27T09:02:54Z;Júlio;4903.589;115011913;Germany; +2018-11-27T08:51:49Z;Ana;5351.877;114385487;Germany; +2018-11-27T08:35:10Z;Armando;1834.465;114875468;Germany; +2018-11-27T08:29:23Z;Nathália;6723.196;115407030;Germany; +2018-11-27T07:39:14Z;Armando;4554.917;115040719;Germany; +2018-11-27T07:27:35Z;Sandra;522.7602;114497576;Germany; +2018-11-27T07:25:19Z;Sandra;632.4789;114348941;Germany; +2018-11-27T07:21:30Z;Júlio;1305.739;114572833;Germany; +2018-11-27T07:08:02Z;Sandra;3109.765;115345963;Germany; +2018-11-27T06:25:18Z;Júlio Cesar;3761.235;116144004;Germany; +2018-11-27T05:57:30Z;Armando;11646.41;114585381;Germany; +2018-11-27T05:33:52Z;Nathália;4069.84;114612319;Germany; +2018-11-27T05:28:40Z;nathalia;8157.039;116231567;Germany; +2018-11-27T04:43:10Z;Armando;8719.823;116023844;Germany; +2018-11-27T04:35:57Z;Armando;1719.965;116066772;Germany; +2018-12-23T04:16:19Z;Júlio Cesar;15299.22;116112402;Germany; +2018-11-27T03:42:37Z;Júlio;14342.99;115658283;Germany; +2018-11-27T03:39:26Z;Sandra;6586.061;116258487;Germany; +2018-11-27T03:21:59Z;Sandra;10501.53;115479171;Germany; +2018-11-27T02:50:47Z;Júlio;11939.22;115978704;Germany; +2018-11-27T02:41:09Z;Nathália;62.83854;116326588;Germany; +2018-11-27T01:52:16Z;Nathália;470.411;115114845;Germany; +2018-11-27T01:47:26Z;Ana;7933.974;114611959;Germany; +2018-11-27T01:37:00Z;Nathália;8218.782;114931874;Germany; +2018-11-27T01:34:09Z;nathalia;2771.106;115207146;Germany; +2018-11-27T01:22:30Z;Nathália;7006.429;115199669;Germany; +2018-11-27T00:56:35Z;Júlio Cesar;4462.338;114499601;Germany; +2018-11-27T00:49:04Z;Eduardo;461.0623;115262645;Germany; +2018-11-27T00:38:24Z;Sandra;1420.461;115768917;Germany; +2018-11-27T00:29:16Z;Sandra;8258.002;114259276;Germany; +2018-11-27T00:20:36Z;Júlio;3556.553;115736139;Germany; +2018-11-27T00:01:41Z;Nathália;11.71982;114901941;Germany; +2018-11-26T23:58:22Z;Júlio;9381.439;116187641;Germany; +2018-12-22T23:35:23Z;Nathália;17931.88;116192356;Germany; +2018-11-26T23:32:34Z;Nathália;1745.493;116007051;Germany; +2018-11-26T22:32:06Z;Ana;533.7104;116282675;Germany; +2018-11-26T21:54:17Z;Eduardo;601.6077;115895000;Germany; +2018-11-26T21:47:39Z;Armando;5879.714;115555726;Germany; +2018-11-26T21:47:19Z;Júlio;5586.525;116262958;Germany; +2018-11-26T21:36:54Z;Nathália;1159.589;115296015;Germany; +2018-11-26T21:17:59Z;Júlio Cesar;177.1056;115049209;Germany; +2018-11-26T20:42:30Z;nathalia;3251.228;115357764;Germany; +2018-11-26T19:44:32Z;Eduardo;2370.583;115331837;Germany; +2018-11-26T19:37:48Z;Sandra;9350.187;114771883;Germany; +2018-11-26T19:25:27Z;Armando;9831.324;115000433;Germany; +2018-11-26T19:25:11Z;nathalia;4623.547;114429282;Germany; +2018-11-26T18:36:02Z;Armando;3963.446;114984710;Germany; +2018-11-26T18:31:00Z;Nathália;6380.126;115047685;Germany; +2018-11-26T18:02:57Z;Júlio Cesar;2639.492;115962406;Germany; +2018-11-26T17:31:58Z;nathalia;14971.22;114271408;Germany; +2018-11-26T17:28:24Z;Armando;859.9866;114201614;Germany; +2018-11-26T16:31:18Z;Júlio;3642.297;114802425;Germany; +2018-11-26T16:23:32Z;Nathália;3331.732;115742046;Germany; +2018-11-26T15:56:59Z;Júlio Cesar;6007.973;116133657;Germany; +2018-12-23T14:59:27Z;Júlio Cesar;16330.4;115739121;Germany; +2018-11-26T14:40:42Z;Ana;71.52538;115529341;Germany; +2018-11-26T14:33:30Z;Júlio Cesar;1419.226;114681648;Germany; +2018-11-26T14:00:50Z;nathalia;10213.65;115707183;Germany; +2018-11-26T13:46:48Z;Júlio Cesar;673.0252;116082407;Germany; +2018-11-26T13:02:24Z;Armando;10181.7;114548560;Germany; +2018-11-26T12:49:45Z;Júlio Cesar;3212.013;114467867;Germany; +2018-11-26T12:34:56Z;Sandra;3782.608;114566151;Germany; +2018-11-26T12:08:32Z;Nathália;5854.064;116387199;Germany; +2018-11-26T11:57:47Z;Júlio;5313.919;114741849;Germany; +2018-11-26T11:42:29Z;Armando;2014.781;115948843;Germany; +2018-11-26T11:38:28Z;Armando;1644.046;115601203;Germany; +2018-12-23T11:31:47Z;Ana;17611.48;115949209;Germany; +2018-11-26T11:31:29Z;Júlio;1639.761;116230583;Germany; +2018-11-26T10:36:18Z;Ana;937.6809;114459931;Germany; +2018-11-26T10:09:03Z;Nathália;5256.972;114798585;Germany; +2018-11-26T09:44:09Z;Júlio Cesar;187.7601;115209934;Germany; +2018-11-26T09:21:03Z;Sandra;8130.525;116122714;Germany; +2018-11-26T08:48:07Z;nathalia;10819.77;115775749;Germany; +2018-11-26T08:47:10Z;Sandra;2277.593;116119160;Germany; +2018-11-26T08:33:26Z;Júlio Cesar;14401.78;116159041;Germany; +2018-11-26T08:11:42Z;Júlio;9816.245;115724610;Germany; +2018-11-26T07:17:53Z;Armando;310.93;115410837;Germany; +2018-11-26T07:09:16Z;Júlio;2957.416;114975935;Germany; +2018-12-21T07:07:43Z;Armando;16535.75;115412979;Germany; +2018-12-23T06:55:43Z;Júlio;16905.65;114895888;Germany; +2018-11-26T06:40:03Z;Júlio;2617.576;114705580;Germany; +2018-11-26T06:02:56Z;Eduardo;8190.552;114679915;Germany; +2018-11-26T06:00:41Z;Ana;8843.565;115693965;Germany; +2018-11-26T04:54:06Z;Eduardo;1358.53;115500384;Germany; +2018-11-26T04:52:20Z;Sandra;14119.01;115943290;Germany; +2018-11-26T04:50:01Z;Júlio;459.7206;115575805;Germany; +2018-11-26T04:33:40Z;Eduardo;1757.755;116253751;Germany; +2018-11-26T04:22:52Z;nathalia;14306.35;114465766;Germany; +2018-11-26T03:57:29Z;Armando;12586.96;115331269;Germany; +2018-11-26T02:55:52Z;Júlio Cesar;1525.52;114289297;Germany; +2018-11-26T02:36:56Z;Júlio;1819.176;115355376;Germany; +2018-11-26T01:58:57Z;Ana;64.58443;115627761;Germany; +2018-11-26T01:58:21Z;Sandra;8217.287;114805508;Germany; +2018-11-26T01:25:26Z;nathalia;1226.514;115998582;Germany; +2018-11-26T01:22:24Z;Júlio Cesar;207.5327;115087806;Germany; +2018-11-26T01:19:39Z;nathalia;2696.101;114309259;Germany; +2018-11-26T01:12:57Z;Júlio;886.8744;116391949;Germany; +2018-11-26T01:00:56Z;Nathália;4085.616;114898808;Germany; +2018-11-26T00:26:06Z;Ana;1805.701;116083634;Germany; +2018-11-25T23:58:49Z;Eduardo;4988.241;115022037;Germany; +2018-11-25T23:20:55Z;Júlio;453.9448;114550272;Germany; +2018-11-25T23:19:58Z;nathalia;588.0441;115534815;Germany; +2018-11-25T23:00:55Z;Júlio;321.4491;115346078;Germany; +2018-11-25T22:46:58Z;nathalia;51.18801;116077422;Germany; +2018-11-25T22:44:35Z;Nathália;7270.541;116373509;Germany; +2018-11-25T22:42:06Z;Armando;147.3084;114404446;Germany; +2018-11-25T22:40:53Z;Júlio Cesar;9017.604;115608122;Germany; +2018-11-25T22:39:59Z;Eduardo;5883.329;115711414;Germany; +2018-11-25T21:50:02Z;Júlio;14888.44;115489715;Germany; +2018-11-25T21:24:34Z;Júlio;8935.807;114980457;Germany; +2018-11-25T21:10:07Z;Eduardo;5163.482;114875455;Germany; +2018-11-25T21:09:56Z;nathalia;6569.929;116374091;Germany; +2018-11-25T21:07:36Z;Júlio Cesar;9243.251;116004689;Germany; +2018-11-25T21:05:21Z;Nathália;6114.591;115097651;Germany; +2018-11-25T20:27:39Z;Armando;12180.61;114345020;Germany; +2018-11-25T20:23:36Z;Armando;320.9624;114859252;Germany; +2018-11-25T20:02:29Z;Eduardo;10737.93;114660459;Germany; +2018-11-25T19:49:40Z;Armando;12839.61;115432385;Germany; +2018-11-25T19:47:35Z;Ana;9876.327;115780339;Germany; +2018-11-25T19:14:05Z;Nathália;2127.805;115861619;Germany; +2018-11-25T19:04:12Z;Armando;11028.6;115210579;Germany; +2018-11-25T19:00:05Z;Eduardo;12.01261;116305752;Germany; +2018-11-25T18:58:55Z;Armando;351.3507;114502743;Germany; +2018-11-25T18:47:20Z;Nathália;41.35239;114594657;Germany; +2018-11-25T18:28:40Z;Sandra;441.5414;115686967;Germany; +2018-11-25T18:26:59Z;Júlio Cesar;10206.19;116101034;Germany; +2018-11-25T18:23:56Z;Eduardo;1255.4;116073100;Germany; +2018-11-25T18:16:43Z;Júlio;1906.134;115981329;Germany; +2018-11-25T18:13:02Z;Ana;6105.513;114679238;Germany; +2018-11-25T17:46:00Z;Eduardo;216.9216;116399842;Germany; +2018-11-25T17:43:48Z;Nathália;11933.3;114659935;Germany; +2018-11-25T17:43:22Z;Armando;8841.73;115384742;Germany; +2018-11-25T17:37:39Z;Ana;2531.6;114583926;Germany; +2018-11-25T17:24:52Z;Armando;51.19748;116057845;Germany; +2018-11-25T17:17:51Z;Ana;470.3418;114460778;Germany; +2018-11-25T17:14:55Z;Eduardo;8025.089;115421270;Germany; +2018-11-25T16:50:09Z;Nathália;669.0076;115158762;Germany; +2018-11-25T16:09:00Z;Armando;5547.13;115698356;Germany; +2018-11-25T15:42:39Z;Ana;3208.445;115398842;Germany; +2018-11-25T15:39:50Z;Ana;690.4958;116305245;Germany; +2018-11-25T14:59:16Z;Sandra;11470.57;114628209;Germany; +2018-11-25T14:52:56Z;Eduardo;4274.486;114564823;Germany; +2018-11-25T14:16:14Z;Armando;6288.227;116029156;Germany; +2018-11-25T14:11:59Z;nathalia;8132.808;115587299;Germany; +2018-11-25T13:56:09Z;Ana;10625.81;115457340;Germany; +2018-12-23T13:55:11Z;Armando;19917.03;114990838;Germany; +2018-11-25T12:52:05Z;Nathália;1085.019;116225182;Germany; +2018-11-25T12:38:19Z;Armando;9561.346;115250279;Germany; +2018-11-25T12:36:49Z;Ana;3656.846;116046920;Germany; +2018-11-25T12:28:20Z;Nathália;2710.111;114583916;Germany; +2018-11-25T12:16:55Z;Nathália;8194.996;115460460;Germany; +2018-11-25T12:07:23Z;Nathália;12774.8;115411302;Germany; +2018-11-25T12:00:32Z;Nathália;109.9287;116028678;Germany; +2018-12-21T11:57:17Z;Armando;15985.72;116059543;Germany; +2018-11-25T11:56:36Z;nathalia;9352.857;115335427;Germany; +2018-11-25T11:33:15Z;Ana;2515.589;114883574;Germany; +2018-11-25T10:55:59Z;Ana;5816.281;115677118;Germany; +2018-11-25T10:55:47Z;Júlio;176.0689;114922004;Germany; +2018-12-22T10:30:05Z;Eduardo;16299.55;114977004;Germany; +2018-11-25T10:26:56Z;Júlio;13618.26;114973903;Germany; +2018-11-25T10:10:14Z;Ana;11303.39;115660157;Germany; +2018-11-25T10:08:00Z;Júlio;3.728507;116091554;Germany; +2018-11-25T09:46:01Z;nathalia;7867.733;114486226;Germany; +2018-11-25T09:43:31Z;Júlio;672.5368;115597244;Germany; +2018-11-25T09:21:45Z;nathalia;8861.036;116193940;Germany; +2018-11-25T09:05:34Z;Armando;7040.359;114241292;Germany; +2018-11-25T08:25:34Z;Ana;2695.896;116385803;Germany; +2018-11-25T08:17:17Z;nathalia;5214.799;114433209;Germany; +2018-11-25T07:31:32Z;nathalia;5335.137;115239272;Germany; +2018-11-25T07:15:51Z;Armando;9156.46;115246094;Germany; +2018-11-25T07:15:36Z;Ana;8253.979;115410027;Germany; +2018-11-25T07:14:26Z;nathalia;3291.91;114351080;Germany; +2018-11-25T06:55:39Z;Armando;6909.146;116139111;Germany; +2018-11-25T06:53:15Z;Ana;182.6833;114905283;Germany; +2018-11-25T06:32:06Z;Júlio Cesar;7725.758;115477286;Germany; +2018-11-25T06:27:05Z;nathalia;13738.28;115856252;Germany; +2018-11-25T06:24:31Z;nathalia;3005.181;115292089;Germany; +2018-11-25T06:12:07Z;Sandra;3318.017;115558030;Germany; +2018-11-25T05:51:45Z;Eduardo;1119.659;115102735;Germany; +2018-11-25T05:11:49Z;Nathália;583.4834;114200032;Germany; +2018-11-25T04:56:58Z;Sandra;3199.14;114973608;Germany; +2018-11-25T04:53:26Z;Armando;8040.278;114857924;Germany; +2018-11-25T04:44:17Z;Ana;4552.171;116057461;Germany; +2018-11-25T04:22:28Z;Armando;66.87239;115818024;Germany; +2018-11-25T04:19:02Z;Sandra;8382.856;115759710;Germany; +2018-11-25T04:18:09Z;Júlio;959.5445;115007847;Germany; +2018-11-25T04:12:20Z;Armando;3573.896;116182131;Germany; +2018-11-25T03:57:18Z;Júlio;14711.63;116223006;Germany; +2018-11-25T03:52:10Z;Júlio;6056.948;116142266;Germany; +2018-11-25T03:25:31Z;nathalia;3858.247;115459965;Germany; +2018-11-25T03:15:42Z;Sandra;958.1162;116382210;Germany; +2018-12-21T03:03:08Z;Ana;19198.26;114686725;Germany; +2018-11-25T02:53:59Z;Ana;3867.922;114641254;Germany; +2018-11-25T02:46:44Z;Armando;5362.655;115804983;Germany; +2018-11-25T02:32:17Z;Armando;9388.527;116030754;Germany; +2018-11-25T01:55:38Z;nathalia;9057.999;116236253;Germany; +2018-11-25T01:20:53Z;Nathália;2425.317;116235842;Germany; +2018-11-25T01:03:07Z;Júlio;5829.837;115749385;Germany; +2018-11-25T00:56:14Z;Ana;53.16614;115867066;Germany; +2018-11-25T00:48:48Z;Armando;1674.299;114875697;Germany; +2018-11-25T00:32:00Z;Júlio Cesar;4709.386;115628341;Germany; +2018-11-25T00:24:22Z;Eduardo;2883.269;115980072;Germany; +2018-11-25T00:19:22Z;Ana;12412.12;115101045;Germany; +2018-11-25T00:07:24Z;Armando;2360.792;115214170;Germany; +2018-11-24T23:11:34Z;Armando;4902.508;115737578;Germany; +2018-11-24T22:28:41Z;Júlio Cesar;863.203;114290437;Germany; +2018-12-23T22:06:50Z;Ana;16169.2;115756250;Germany; +2018-11-24T21:30:49Z;Júlio;10227.46;116368332;Germany; +2018-11-24T21:13:54Z;Armando;13796.42;116038286;Germany; +2018-11-24T21:13:35Z;Ana;9177.014;116073542;Germany; +2018-11-24T21:11:38Z;Nathália;9510.99;116109053;Germany; +2018-11-24T20:33:43Z;nathalia;10258.53;115989168;Germany; +2018-12-21T20:11:32Z;Sandra;21874.22;115272916;Germany; +2018-11-24T20:04:35Z;Sandra;8637.562;115313849;Germany; +2018-11-24T19:11:44Z;Sandra;2533.903;115409922;Germany; +2018-12-23T18:54:36Z;Armando;17629.99;114268959;Germany; +2018-11-24T18:47:27Z;Nathália;4967.713;115975599;Germany; +2018-11-24T18:40:44Z;Sandra;9359.381;115670380;Germany; +2018-11-24T18:31:13Z;Armando;14210.15;115701825;Germany; +2018-11-24T18:30:21Z;Júlio;4004.184;114386914;Germany; +2018-11-24T18:06:26Z;Júlio Cesar;9429.591;115907483;Germany; +2018-11-24T17:57:01Z;Júlio Cesar;1388.502;114342111;Germany; +2018-12-22T17:56:46Z;nathalia;15445.21;115930604;Germany; +2018-11-24T17:56:01Z;Eduardo;991.3199;115826660;Germany; +2018-11-24T17:43:40Z;Júlio;5204.694;115737205;Germany; +2018-11-24T17:42:39Z;Júlio;567.5489;114237115;Germany; +2018-11-24T17:37:33Z;nathalia;5907.436;115041615;Germany; +2018-11-24T17:10:28Z;Sandra;7520.798;114229269;Germany; +2018-11-24T16:46:19Z;Armando;12789.92;115405958;Germany; +2018-11-24T16:29:38Z;Armando;3057.91;115564273;Germany; +2018-11-24T16:00:31Z;Ana;2809.265;114683440;Germany; +2018-11-24T15:48:15Z;Júlio Cesar;3637.731;115609205;Germany; +2018-11-24T15:21:29Z;Ana;7177.049;115404494;Germany; +2018-11-24T15:05:59Z;Sandra;4379.427;114201822;Germany; +2018-11-24T14:54:02Z;nathalia;4284.299;114385939;Germany; +2018-11-24T14:29:24Z;Júlio Cesar;6795.326;115383444;Germany; +2018-11-24T14:08:02Z;Júlio;75.314;116055149;Germany; +2018-11-24T14:05:14Z;Júlio;1556.158;116083713;Germany; +2018-11-24T13:55:56Z;Sandra;586;114338844;Germany; +2018-11-24T13:54:22Z;Nathália;4807.926;115335621;Germany; +2018-11-24T13:27:48Z;Sandra;6382.127;114672679;Germany; +2018-11-24T12:59:35Z;Armando;11866.8;115314116;Germany; +2018-11-24T12:56:26Z;nathalia;2053.366;115533787;Germany; +2018-12-22T12:48:11Z;Júlio Cesar;24028.08;115757804;Germany; +2018-12-22T12:26:52Z;Sandra;15901.63;116254201;Germany; +2018-11-24T12:04:03Z;Nathália;667.4176;115049025;Germany; +2018-11-24T11:43:45Z;Nathália;7208.499;115990944;Germany; +2018-11-24T11:24:58Z;Júlio;3106.986;115506938;Germany; +2018-11-24T11:14:25Z;Armando;598.8936;115145543;Germany; +2018-11-24T10:51:03Z;Nathália;2922.776;115119278;Germany; +2018-11-24T10:28:37Z;Júlio;172.659;114576991;Germany; +2018-11-24T10:20:26Z;Eduardo;2048.874;115180229;Germany; +2018-11-24T09:56:52Z;nathalia;4066.865;114584771;Germany; +2018-11-24T09:52:34Z;Ana;3296.279;115555805;Germany; +2018-11-24T09:26:23Z;Júlio;147.7499;114675784;Germany; +2018-11-24T09:06:43Z;Júlio;891.0801;115526696;Germany; +2018-11-24T08:41:01Z;Júlio Cesar;3141.938;115786460;Germany; +2018-11-24T08:35:32Z;Sandra;987.4909;114498126;Germany; +2018-11-24T08:15:08Z;Sandra;3944.835;114728439;Germany; +2018-11-24T07:59:08Z;nathalia;620.9036;115947819;Germany; +2018-11-24T07:26:43Z;Sandra;5679.866;115205696;Germany; +2018-11-24T07:06:10Z;Júlio Cesar;5541.997;115955151;Germany; +2018-11-24T06:35:52Z;Armando;1014.282;115490040;Germany; +2018-11-24T06:32:23Z;Sandra;369.7593;114751940;Germany; +2018-11-24T06:06:01Z;Armando;624.1283;116072136;Germany; +2018-11-24T06:01:55Z;Júlio Cesar;6515.003;114637434;Germany; +2018-11-24T05:26:21Z;Ana;4341.013;114344638;Germany; +2018-11-24T04:45:12Z;Sandra;6917.768;114630157;Germany; +2018-11-24T04:41:40Z;nathalia;7879.486;115260229;Germany; +2018-11-24T04:21:41Z;Nathália;843.4995;114802579;Germany; +2018-11-24T03:54:13Z;Sandra;10484.43;114565619;Germany; +2018-11-24T03:40:07Z;Eduardo;7244.325;116236109;Germany; +2018-11-24T03:33:59Z;Júlio;12456.08;114738362;Germany; +2018-11-24T03:19:11Z;Armando;1480.745;114502500;Germany; +2018-11-24T03:08:20Z;Nathália;6003.985;115736037;Germany; +2018-11-24T02:52:54Z;Júlio;11210.86;115194445;Germany; +2018-11-24T02:34:21Z;Sandra;749.8904;115062884;Germany; +2018-11-24T02:23:06Z;nathalia;149.1988;114399315;Germany; +2018-11-24T02:09:56Z;Sandra;11394.19;116263661;Germany; +2018-11-24T01:59:57Z;Júlio Cesar;4875.538;115782760;Germany; +2018-11-24T01:58:37Z;Júlio;2947.566;114707898;Germany; +2018-11-24T01:37:09Z;nathalia;10839.05;115789916;Germany; +2018-11-24T01:05:29Z;Eduardo;2850.3;114439745;Germany; +2018-11-24T01:02:48Z;Júlio Cesar;10237;114256224;Germany; +2018-11-24T00:57:01Z;Nathália;1142.173;114772296;Germany; +2018-11-24T00:43:57Z;Armando;823.9671;114524652;Germany; +2018-11-24T00:36:44Z;Ana;7678.392;114616334;Germany; +2018-11-24T00:04:44Z;Júlio Cesar;8193.764;115991802;Germany; +2018-11-23T23:54:14Z;Sandra;9478.407;114531330;Germany; +2018-11-23T23:53:32Z;Ana;11758.77;115401328;Germany; +2018-12-22T23:49:49Z;Júlio;15488.46;114851843;Germany; +2018-11-23T23:28:56Z;Nathália;5201.378;115776502;Germany; +2018-11-23T23:18:33Z;nathalia;70.54052;114561617;Germany; +2018-11-23T23:15:03Z;Sandra;8442.737;115729302;Germany; +2018-11-23T22:59:24Z;Nathália;7678.064;116398820;Germany; +2018-11-23T22:41:39Z;Júlio;394.644;115057147;Germany; +2018-11-23T22:17:02Z;Sandra;222.6566;115876874;Germany; +2018-11-23T22:13:47Z;Nathália;2298.229;115402403;Germany; +2018-11-23T22:09:48Z;Nathália;1677.364;115472082;Germany; +2018-11-23T22:07:35Z;Armando;1650.352;114487280;Germany; +2018-11-23T21:40:36Z;Nathália;3330.129;114622236;Germany; +2018-11-23T21:34:22Z;Ana;10285.82;114430180;Germany; +2018-11-23T21:31:49Z;Nathália;763.7831;115453984;Germany; +2018-12-23T21:12:50Z;Nathália;17620.86;114970801;Germany; +2018-11-23T21:11:46Z;Sandra;14309.78;114300885;Germany; +2018-11-23T20:57:12Z;Eduardo;861.4552;114318577;Germany; +2018-11-23T20:33:48Z;Eduardo;10846.85;114785345;Germany; +2018-11-23T19:54:07Z;Júlio;7991.611;115787645;Germany; +2018-11-23T18:55:33Z;Eduardo;6196.504;114422322;Germany; +2018-11-23T18:35:41Z;Nathália;5960.79;115458896;Germany; +2018-11-23T17:50:36Z;Eduardo;5681.499;114593771;Germany; +2018-11-23T17:42:51Z;nathalia;880.5465;115703243;Germany; +2018-11-23T17:38:14Z;Júlio;1354.738;116102908;Germany; +2018-11-23T17:30:20Z;Eduardo;836.9297;114643687;Germany; +2018-11-23T16:54:00Z;Júlio;11405.92;115346849;Germany; +2018-11-23T16:43:53Z;Armando;4522.659;115899242;Germany; +2018-11-23T16:26:32Z;Eduardo;1987.68;115486267;Germany; +2018-11-23T16:21:05Z;Sandra;993.2946;115623542;Germany; +2018-11-23T16:07:41Z;nathalia;2120.204;116009659;Germany; +2018-11-23T15:24:44Z;Eduardo;3551.575;114993259;Germany; +2018-11-23T15:10:34Z;Júlio;457.4792;114677741;Germany; +2018-11-23T14:52:23Z;Júlio Cesar;3559.439;116038429;Germany; +2018-11-23T14:31:34Z;Nathália;3782.847;115536916;Germany; +2018-11-23T14:31:17Z;Nathália;3505.782;115828561;Germany; +2018-11-23T14:25:30Z;Sandra;1377.701;115814325;Germany; +2018-11-23T14:25:24Z;Júlio Cesar;1064.788;115694798;Germany; +2018-11-23T14:13:18Z;nathalia;1410.493;114357069;Germany; +2018-11-23T14:05:08Z;Júlio;3007.531;115549563;Germany; +2018-11-23T13:33:54Z;Sandra;4899.014;115290900;Germany; +2018-11-23T13:32:41Z;Ana;2377.69;115160619;Germany; +2018-11-23T13:24:09Z;Júlio Cesar;194.0687;116064334;Germany; +2018-11-23T13:07:29Z;Sandra;211.3366;115384718;Germany; +2018-11-23T13:06:51Z;Júlio;13671.38;115671461;Germany; +2018-11-23T12:56:46Z;Ana;779.5483;114653756;Germany; +2018-11-23T12:55:24Z;Ana;747.8596;114778036;Germany; +2018-11-23T12:26:14Z;nathalia;1308.351;115907970;Germany; +2018-11-23T12:11:45Z;Nathália;588.8726;114223603;Germany; +2018-11-23T11:32:18Z;Nathália;2331.25;114929728;Germany; +2018-11-23T11:30:52Z;Ana;1919.781;116297813;Germany; +2018-11-23T11:07:33Z;Sandra;12125.11;116084201;Germany; +2018-11-23T10:42:02Z;Armando;985.4022;114404504;Germany; +2018-11-23T10:30:01Z;Sandra;1236.371;116390386;Germany; +2018-11-23T09:55:46Z;Júlio Cesar;83.06658;114266276;Germany; +2018-11-23T09:44:03Z;Armando;7942.452;115977572;Germany; +2018-11-23T09:33:23Z;Júlio;8379.178;114824842;Germany; +2018-11-23T09:27:36Z;Júlio;3308.654;114806504;Germany; +2018-11-23T08:04:16Z;nathalia;6900.269;116105263;Germany; +2018-11-23T07:04:43Z;Eduardo;2532.34;115200054;Germany; +2018-11-23T06:57:55Z;Nathália;6119.813;115535210;Germany; +2018-11-23T06:56:12Z;Ana;11820.18;115567776;Germany; +2018-12-21T06:43:52Z;Ana;19345.87;116280255;Germany; +2018-11-23T06:39:41Z;Armando;3452.3;115394573;Germany; +2018-11-23T05:30:10Z;Eduardo;1271.673;114387356;Germany; +2018-11-23T05:09:26Z;Júlio;2684.594;114599175;Germany; +2018-11-23T04:55:32Z;Sandra;4409.709;115926241;Germany; +2018-11-23T04:38:29Z;Júlio Cesar;2966.191;115760896;Germany; +2018-11-23T04:36:30Z;nathalia;523.5378;115559357;Germany; +2018-11-23T04:08:14Z;Nathália;12319.22;115317352;Germany; +2018-11-23T03:31:21Z;Sandra;6420.087;114208869;Germany; +2018-11-23T03:22:03Z;Júlio;1132.537;115436102;Germany; +2018-11-23T03:05:14Z;Sandra;633.1343;115925090;Germany; +2018-11-23T03:00:37Z;Júlio Cesar;13988.89;115410316;Germany; +2018-12-21T02:46:22Z;Sandra;17587.26;116095281;Germany; +2018-11-23T02:37:53Z;Armando;6745.643;116165821;Germany; +2018-11-23T02:32:26Z;nathalia;1998.413;114981737;Germany; +2018-11-23T02:10:49Z;Nathália;568.7385;115578253;Germany; +2018-11-23T02:06:57Z;Sandra;994.0443;114371447;Germany; +2018-11-23T01:49:17Z;nathalia;5868.36;114290478;Germany; +2018-11-23T01:07:29Z;Júlio;6417.876;114941383;Germany; +2018-11-23T01:00:54Z;Sandra;2030.206;114360528;Germany; +2018-11-23T00:58:28Z;Sandra;10852.14;116050692;Germany; +2018-11-23T00:28:55Z;Eduardo;4862.626;114323574;Germany; +2018-11-23T00:23:47Z;Júlio Cesar;4860.277;115025228;Germany; +2018-11-23T00:04:45Z;Eduardo;2967.017;115491531;Germany; +2018-11-22T23:44:43Z;Eduardo;1230.931;114552801;Germany; +2018-11-22T23:29:58Z;Armando;780.0659;115113364;Germany; +2018-11-22T23:00:01Z;Júlio;1792.204;115524072;Germany; +2018-11-22T22:58:17Z;Armando;897.354;116102732;Germany; +2018-11-22T22:35:46Z;Júlio;9726.07;115365678;Germany; +2018-11-22T21:58:34Z;Júlio Cesar;8075.06;116391918;Germany; +2018-11-22T21:24:11Z;Armando;72.37086;115350453;Germany; +2018-11-22T21:09:35Z;Júlio Cesar;1868.748;116240180;Germany; +2018-11-22T20:49:49Z;Sandra;3586.665;114295388;Germany; +2018-11-22T20:46:03Z;Júlio;11681.98;114882235;Germany; +2018-11-22T19:41:05Z;Ana;4499.838;115005942;Germany; +2018-11-22T19:29:32Z;Armando;9038.404;115972847;Germany; +2018-11-22T18:49:58Z;Júlio;9036.944;115315755;Germany; +2018-11-22T18:43:44Z;Júlio;5406.551;115635516;Germany; +2018-11-22T18:28:56Z;Júlio;4605.316;115900348;Germany; +2018-11-22T18:19:32Z;Júlio Cesar;7541.167;115194747;Germany; +2018-11-22T18:05:54Z;Sandra;731.7139;114345171;Germany; +2018-11-22T17:58:41Z;Júlio;5659.39;115193922;Germany; +2018-11-22T17:54:45Z;Armando;6722.848;114801957;Germany; +2018-11-22T17:45:07Z;nathalia;1519.287;115702015;Germany; +2018-12-22T17:40:41Z;Armando;15949.1;114508506;Germany; +2018-12-22T17:27:25Z;Ana;34570.14;114287261;Germany; +2018-11-22T17:00:57Z;Nathália;1513.539;116365984;Germany; +2018-11-22T16:33:25Z;Nathália;10322.54;115411930;Germany; +2018-11-22T16:07:49Z;nathalia;686.3374;115185325;Germany; +2018-11-22T16:06:57Z;Ana;6185.361;115698440;Germany; +2018-11-22T16:05:13Z;Nathália;2696.747;115510225;Germany; +2018-11-22T15:53:45Z;Sandra;3284.423;116346615;Germany; +2018-11-22T15:52:02Z;Nathália;7842.925;115748087;Germany; +2018-11-22T15:48:13Z;Nathália;14036.16;115603822;Germany; +2018-11-22T15:27:14Z;Júlio Cesar;3185.763;114230574;Germany; +2018-11-22T15:25:27Z;Ana;4249.08;115776723;Germany; +2018-11-22T15:24:24Z;Júlio;9806.321;116174631;Germany; +2018-11-22T15:11:00Z;nathalia;85.55536;115317866;Germany; +2018-12-23T15:06:39Z;Armando;21398.15;116343080;Germany; +2018-11-22T14:41:20Z;nathalia;251.9845;115730739;Germany; +2018-11-22T14:41:04Z;Júlio Cesar;321.2215;115329277;Germany; +2018-11-22T14:22:45Z;Armando;3239.814;115525747;Germany; +2018-11-22T14:20:08Z;Júlio Cesar;9368.113;116086433;Germany; +2018-11-22T14:11:52Z;nathalia;11013.46;115680448;Germany; +2018-11-22T14:10:41Z;nathalia;6023.808;115748942;Germany; +2018-11-22T13:55:39Z;Júlio;6577.724;114487753;Germany; +2018-11-22T13:31:38Z;Júlio;4558.878;115519992;Germany; +2018-11-22T13:27:28Z;Júlio Cesar;12042.11;114911602;Germany; +2018-11-22T12:13:38Z;Júlio Cesar;1645.552;114446061;Germany; +2018-11-22T12:03:56Z;Ana;9771.603;115435533;Germany; +2018-11-22T11:58:23Z;Armando;684.4383;115706574;Germany; +2018-11-22T11:39:08Z;Eduardo;13262.15;115725912;Germany; +2018-11-22T11:38:18Z;Nathália;4017.025;114467065;Germany; +2018-12-22T11:34:05Z;nathalia;15688.54;115571744;Germany; +2018-11-22T11:06:11Z;Eduardo;3478.387;114256896;Germany; +2018-12-23T10:46:26Z;Armando;18812.59;114998617;Germany; +2018-11-22T10:36:23Z;Eduardo;11927.48;116126047;Germany; +2018-11-22T10:09:53Z;Nathália;8924.605;114982881;Germany; +2018-11-22T10:05:08Z;nathalia;6474.033;114766327;Germany; +2018-12-21T10:01:11Z;Armando;15989.12;115248743;Germany; +2018-11-22T09:44:34Z;Júlio Cesar;7279.15;116284091;Germany; +2018-11-22T09:40:10Z;nathalia;14812.52;115092046;Germany; +2018-11-22T09:22:00Z;Armando;1914.03;114627011;Germany; +2018-11-22T09:19:44Z;Júlio;723.1071;116309883;Germany; +2018-11-22T08:59:49Z;Nathália;2022.309;114593884;Germany; +2018-12-22T08:08:21Z;Armando;15030.93;115196850;Germany; +2018-11-22T07:59:51Z;Armando;5016.804;114626364;Germany; +2018-11-22T07:47:45Z;Nathália;3252.658;115156770;Germany; +2018-11-22T07:42:14Z;Ana;5111.383;116211452;Germany; +2018-11-22T07:34:37Z;Júlio Cesar;6623.364;115626213;Germany; +2018-12-22T07:32:23Z;Sandra;19115.38;114988428;Germany; +2018-11-22T07:30:03Z;Sandra;3063.213;115769623;Germany; +2018-11-22T07:17:51Z;Júlio;13535.53;115010641;Germany; +2018-11-22T06:36:26Z;Eduardo;3129.979;115433383;Germany; +2018-11-22T06:33:03Z;Armando;345.2869;114482235;Germany; +2018-11-22T06:24:40Z;Sandra;2782.472;114353181;Germany; +2018-11-22T05:59:47Z;Nathália;495.4042;115367055;Germany; +2018-11-22T05:52:41Z;Sandra;4349.703;114840200;Germany; +2018-12-21T05:18:39Z;Nathália;17501.38;116002111;Germany; +2018-12-22T05:12:50Z;Sandra;24339.66;114879172;Germany; +2018-11-22T05:09:39Z;Nathália;5532.706;115766013;Germany; +2018-11-22T04:51:13Z;Sandra;6789.211;115134228;Germany; +2018-11-22T04:48:37Z;Eduardo;1693.229;115014449;Germany; +2018-11-22T04:33:19Z;Júlio Cesar;1457.399;114283924;Germany; +2018-11-22T04:22:21Z;Nathália;12103.5;114851819;Germany; +2018-11-22T04:02:33Z;Nathália;926.2583;115375931;Germany; +2018-11-22T03:54:46Z;Sandra;985.2706;114800762;Germany; +2018-11-22T03:43:28Z;Ana;210.8563;116381771;Germany; +2018-11-22T03:38:40Z;Ana;935.9882;114924372;Germany; +2018-11-22T03:27:59Z;Ana;6689.877;115312263;Germany; +2018-11-22T03:20:48Z;nathalia;259.0705;114276873;Germany; +2018-11-22T03:18:36Z;Júlio Cesar;3722.676;115640053;Germany; +2018-11-22T03:13:02Z;Armando;5659.241;114703684;Germany; +2018-11-22T03:05:43Z;Nathália;1149.662;114468511;Germany; +2018-11-22T02:56:33Z;Júlio Cesar;321.0284;114632471;Germany; +2018-11-22T02:49:12Z;Júlio Cesar;5344.475;116326532;Germany; +2018-11-22T02:48:38Z;Júlio Cesar;3272.756;115294894;Germany; +2018-11-22T02:45:25Z;nathalia;9.693261;115906387;Germany; +2018-11-22T02:28:23Z;Eduardo;1857.208;115257812;Germany; +2018-11-22T02:22:01Z;Júlio;2746.366;115418102;Germany; +2018-11-22T01:52:30Z;Júlio;2440.43;114920857;Germany; +2018-11-22T01:36:12Z;Ana;5148.961;116241136;Germany; +2018-11-22T01:32:51Z;Júlio;965.9699;115175630;Germany; +2018-11-22T01:06:10Z;Armando;1798.833;116233817;Germany; +2018-11-22T01:05:57Z;Júlio Cesar;682.0124;115975859;Germany; +2018-11-22T01:04:48Z;Nathália;875.9609;114704748;Germany; +2018-11-22T01:00:51Z;nathalia;3877.037;115846694;Germany; +2018-11-22T00:19:01Z;nathalia;7005.906;114966705;Germany; +2018-11-22T00:18:19Z;Eduardo;2605.835;115011209;Germany; +2018-11-22T00:08:43Z;Júlio;1778.898;115977914;Germany; +2018-12-21T00:06:08Z;Júlio;16795.65;114873025;Germany; +2018-11-21T23:29:37Z;Nathália;3350.147;115314773;Germany; +2018-11-21T23:21:54Z;Sandra;7416.777;114532285;Germany; +2018-11-21T23:07:54Z;Eduardo;5920.318;115258134;Germany; +2018-11-21T22:48:48Z;Júlio;56.89331;114899751;Germany; +2018-11-21T22:12:34Z;Nathália;3934.766;115190500;Germany; +2018-11-21T22:08:49Z;Ana;13708.18;114689179;Germany; +2018-11-21T22:08:14Z;nathalia;5769.686;116084818;Germany; +2018-11-21T21:44:37Z;Ana;2289.869;115913906;Germany; +2018-11-21T21:27:08Z;Nathália;4576.016;114942438;Germany; +2018-11-21T21:23:07Z;nathalia;7363.484;115200080;Germany; +2018-11-21T21:20:37Z;Júlio;10451.78;114406294;Germany; +2018-11-21T20:13:14Z;Júlio;10234.52;115043562;Germany; +2018-11-21T20:11:46Z;Armando;2572.94;114226338;Germany; +2018-11-21T19:11:31Z;Júlio;1683.821;116243116;Germany; +2018-11-21T19:07:32Z;nathalia;9297.212;115824626;Germany; +2018-11-21T19:02:22Z;Júlio;9572.757;115188723;Germany; +2018-11-21T19:01:30Z;Sandra;12053.91;114716199;Germany; +2018-11-21T18:46:43Z;Júlio Cesar;3027.744;115357969;Germany; +2018-11-21T18:41:17Z;Eduardo;3818.451;115704633;Germany; +2018-11-21T18:33:26Z;Nathália;203.0508;116062813;Germany; +2018-11-21T18:31:36Z;Armando;5921.396;114534539;Germany; +2018-12-22T17:52:41Z;Eduardo;18371.14;115204054;Germany; +2018-11-21T17:50:42Z;Sandra;523.3528;116125098;Germany; +2018-11-21T17:47:57Z;Nathália;888.3716;115210934;Germany; +2018-11-21T16:52:45Z;Júlio;6423.972;116232338;Germany; +2018-11-21T16:37:16Z;Nathália;8018.214;115537108;Germany; +2018-11-21T15:45:03Z;Júlio Cesar;12765.86;114906739;Germany; +2018-11-21T15:43:31Z;Sandra;809.3964;115904640;Germany; +2018-11-21T15:37:58Z;Nathália;3417.747;115007079;Germany; +2018-11-21T15:35:59Z;Nathália;663.9007;116107434;Germany; +2018-11-21T15:26:41Z;Ana;7448.182;114206651;Germany; +2018-11-21T15:24:08Z;Nathália;1338.276;114818724;Germany; +2018-11-21T15:23:33Z;Júlio;4218.322;115905393;Germany; +2018-11-21T15:21:05Z;Sandra;4098.537;115618399;Germany; +2018-11-21T15:10:01Z;Eduardo;471.176;114524152;Germany; +2018-11-21T15:08:55Z;Eduardo;6190.364;114787269;Germany; +2018-11-21T14:45:38Z;Armando;4877.938;114428257;Germany; +2018-11-21T14:07:44Z;Nathália;13816.19;116339247;Germany; +2018-11-21T14:07:18Z;Ana;459.9028;115684428;Germany; +2018-11-21T13:58:01Z;Eduardo;3884.507;114675070;Germany; +2018-11-21T13:32:40Z;Júlio;3194.238;115361870;Germany; +2018-11-21T13:16:38Z;nathalia;325.7546;114859131;Germany; +2018-11-21T12:35:54Z;Júlio Cesar;8974.314;114998776;Germany; +2018-11-21T12:30:34Z;Armando;2739.766;115378207;Germany; +2018-11-21T12:16:09Z;Armando;3566.788;115881199;Germany; +2018-11-21T12:14:06Z;Nathália;1991.593;114881720;Germany; +2018-11-21T12:12:39Z;Ana;1207.128;115304171;Germany; +2018-11-21T11:40:06Z;Júlio;7286.926;115642443;Germany; +2018-11-21T11:29:28Z;nathalia;10600.91;114535706;Germany; +2018-11-21T11:19:48Z;Ana;931.3548;115497806;Germany; +2018-11-21T11:16:23Z;Armando;9218.554;115446706;Germany; +2018-11-21T11:16:14Z;Ana;1282.232;115356361;Germany; +2018-11-21T11:04:49Z;Armando;4712.753;115596179;Germany; +2018-11-21T08:46:25Z;Júlio;8205.497;115874751;Germany; +2018-11-21T08:23:34Z;Ana;11265.17;114651567;Germany; +2018-11-21T08:16:33Z;Nathália;2312.958;115558176;Germany; +2018-11-21T08:06:11Z;Eduardo;1091.252;115426717;Germany; +2018-12-22T08:04:13Z;nathalia;15913.16;115151715;Germany; +2018-11-21T08:02:43Z;Armando;14432.76;115111964;Germany; +2018-11-21T07:56:33Z;Nathália;11446.75;114438004;Germany; +2018-11-21T07:38:26Z;Júlio;11025.36;115246767;Germany; +2018-11-21T07:29:10Z;nathalia;1633.869;116053613;Germany; +2018-11-21T07:22:12Z;Nathália;10815.14;114527642;Germany; +2018-11-21T07:16:47Z;nathalia;7199.758;116255968;Germany; +2018-11-21T06:54:54Z;Nathália;5943.735;116013545;Germany; +2018-11-21T06:44:02Z;Eduardo;335.2585;114494864;Germany; +2018-12-22T06:14:56Z;Júlio;23723.41;114876118;Germany; +2018-11-21T06:01:59Z;Júlio Cesar;2680.002;115153235;Germany; +2018-11-21T05:01:22Z;Armando;7608.405;116118199;Germany; +2018-11-21T04:57:10Z;Júlio Cesar;6379.603;116128520;Germany; +2018-12-21T04:43:03Z;Sandra;17442.42;114681067;Germany; +2018-11-21T04:30:14Z;Nathália;8045.874;115432215;Germany; +2018-11-21T04:21:21Z;Ana;4473.253;115657847;Germany; +2018-11-21T04:13:51Z;Júlio Cesar;5666.926;115366237;Germany; +2018-11-21T03:57:47Z;nathalia;8402.473;115423094;Germany; +2018-11-21T03:35:22Z;Júlio;1104.091;114352438;Germany; +2018-11-21T03:35:02Z;Sandra;4152.147;115715777;Germany; +2018-11-21T03:18:05Z;Armando;8526.217;114948470;Germany; +2018-11-21T02:57:35Z;Eduardo;11258.74;114230295;Germany; +2018-11-21T02:46:31Z;Ana;266.5022;114983174;Germany; +2018-11-21T02:28:54Z;Ana;13455.76;114266746;Germany; +2018-11-21T02:05:24Z;Sandra;14113.46;114945945;Germany; +2018-11-21T00:44:28Z;nathalia;2305.884;116124382;Germany; +2018-11-21T00:41:01Z;Júlio;146.0719;116384832;Germany; +2018-11-21T00:40:45Z;nathalia;748.6256;114498204;Germany; +2018-11-21T00:35:49Z;Júlio;14083.61;115433628;Germany; +2018-11-21T00:34:01Z;Nathália;5830.794;115188727;Germany; +2018-11-21T00:13:37Z;Sandra;203.9451;114667913;Germany; +2018-11-21T00:06:20Z;Nathália;5626.051;116165197;Germany; +2018-11-21T00:01:45Z;Nathália;5612.072;116076015;Germany; +2018-11-20T23:55:06Z;nathalia;3291.664;114978254;Germany; +2018-11-20T23:31:55Z;Ana;2007.186;115921297;Germany; +2018-11-20T23:26:00Z;Sandra;2016.964;115626782;Germany; +2018-11-20T23:14:49Z;Nathália;6474.745;115109405;Germany; +2018-11-20T22:52:35Z;Júlio Cesar;6410.996;114573717;Germany; +2018-11-20T22:51:55Z;Júlio Cesar;2357.872;114659356;Germany; +2018-11-20T22:51:49Z;Armando;8901.312;115254856;Germany; +2018-11-20T22:51:18Z;Júlio;6013.357;114845929;Germany; +2018-11-20T22:38:30Z;Sandra;10017.03;116261368;Germany; +2018-11-20T22:06:57Z;Sandra;1733.473;115517120;Germany; +2018-11-20T21:54:03Z;Júlio;10169.27;116080530;Germany; +2018-11-20T21:22:12Z;Armando;1096.011;115659344;Germany; +2018-11-20T21:05:45Z;Ana;1494.492;116214731;Germany; +2018-11-20T20:38:23Z;Nathália;231.2895;115051542;Germany; +2018-11-20T19:12:58Z;Sandra;11152.94;114725549;Germany; +2018-11-20T19:03:42Z;Júlio Cesar;2694.984;115521134;Germany; +2018-11-20T18:49:22Z;Ana;11178.66;115350978;Germany; +2018-11-20T18:10:39Z;Ana;6101.199;114986590;Germany; +2018-11-20T18:05:02Z;Júlio;8014.894;116218471;Germany; +2018-11-20T17:57:59Z;Júlio;4984.047;115729842;Germany; +2018-11-20T17:47:53Z;Sandra;286.6793;114448803;Germany; +2018-11-20T17:37:20Z;Júlio;8432.353;116147971;Germany; +2018-11-20T17:10:16Z;nathalia;10230.25;114232561;Germany; +2018-11-20T17:04:08Z;Eduardo;5135.494;115172991;Germany; +2018-11-20T17:01:58Z;Eduardo;2974.591;115684945;Germany; +2018-11-20T16:46:37Z;Eduardo;2391.068;115137870;Germany; +2018-11-20T16:38:24Z;Ana;363.3244;115921516;Germany; +2018-11-20T16:33:10Z;Eduardo;11408.38;115145118;Germany; +2018-11-20T16:30:16Z;Nathália;1075.831;116065733;Germany; +2018-12-22T15:57:46Z;nathalia;17520.19;115944774;Germany; +2018-11-20T15:54:34Z;Nathália;8958.454;115410883;Germany; +2018-11-20T15:53:01Z;nathalia;12377.84;114815806;Germany; +2018-11-20T15:27:21Z;Sandra;4762.193;115222797;Germany; +2018-11-20T15:13:52Z;Armando;1787.346;114273424;Germany; +2018-11-20T15:06:40Z;Sandra;10061.05;115884122;Germany; +2018-11-20T14:34:58Z;Júlio Cesar;2894.453;114671307;Germany; +2018-11-20T14:15:18Z;Sandra;938.795;115192172;Germany; +2018-11-20T14:06:15Z;Nathália;1994.062;114205608;Germany; +2018-11-20T13:58:37Z;Armando;7468.077;115292575;Germany; +2018-11-20T13:57:32Z;Nathália;7059.196;116094362;Germany; +2018-11-20T13:48:10Z;Eduardo;5393.954;116112162;Germany; +2018-11-20T13:37:02Z;Sandra;1483.36;115590166;Germany; +2018-11-20T13:25:34Z;Júlio Cesar;2515.123;114961280;Germany; +2018-11-20T13:14:19Z;Armando;10642.41;114773521;Germany; +2018-11-20T13:11:03Z;Nathália;2296.721;115628329;Germany; +2018-11-20T13:02:19Z;Júlio;629.6086;116006496;Germany; +2018-11-20T12:56:13Z;Júlio;7765.986;114236969;Germany; +2018-11-20T12:28:59Z;Sandra;696.5971;115445870;Germany; +2018-11-20T12:19:07Z;Nathália;2999.454;114895368;Germany; +2018-11-20T11:38:54Z;Nathália;5658.182;114483818;Germany; +2018-11-20T11:32:49Z;Júlio;3956.138;115355834;Germany; +2018-11-20T11:27:51Z;Sandra;376.3016;114667774;Germany; +2018-11-20T11:21:19Z;Júlio;4863.33;115334512;Germany; +2018-11-20T11:16:19Z;nathalia;1889.803;114892669;Germany; +2018-11-20T10:58:53Z;Júlio;1260.345;114836285;Germany; +2018-12-21T10:41:13Z;nathalia;16415.66;115645203;Germany; +2018-11-20T10:27:18Z;nathalia;3201.586;114714007;Germany; +2018-11-20T10:07:28Z;Ana;5920.261;115595465;Germany; +2018-11-20T10:00:56Z;Júlio Cesar;541.7855;114509809;Germany; +2018-11-20T09:57:36Z;Sandra;8106.588;114984608;Germany; +2018-11-20T09:39:17Z;Ana;1210.619;114740767;Germany; +2018-11-20T08:58:10Z;Eduardo;14442.33;115576032;Germany; +2018-11-20T08:46:23Z;Armando;1456.008;114769347;Germany; +2018-11-20T08:41:42Z;Eduardo;6856.369;115824604;Germany; +2018-11-20T07:51:27Z;Armando;6934.11;115714662;Germany; +2018-11-20T07:43:27Z;Sandra;4816.751;115424268;Germany; +2018-11-20T07:39:35Z;Júlio;279.5674;114524244;Germany; +2018-12-21T07:20:32Z;Júlio;17686.48;115294233;Germany; +2018-11-20T07:05:55Z;Armando;566.5899;116394945;Germany; +2018-11-20T06:59:33Z;Nathália;1356.023;116363040;Germany; +2018-11-20T06:55:11Z;Nathália;13801.6;116127097;Germany; +2018-11-20T06:51:31Z;Ana;1483.517;115969934;Germany; +2018-11-20T05:46:17Z;Júlio;8074.569;114265698;Germany; +2018-11-20T05:12:29Z;Eduardo;695.7244;115197954;Germany; +2018-11-20T04:52:31Z;Júlio Cesar;6753.734;114267303;Germany; +2018-11-20T04:51:00Z;Eduardo;4250.465;116272119;Germany; +2018-11-20T04:45:14Z;nathalia;5158.375;114865451;Germany; +2018-11-20T04:13:01Z;nathalia;3864.205;114919339;Germany; +2018-11-20T04:12:33Z;Ana;8673.318;116291356;Germany; +2018-11-20T03:44:24Z;Júlio;5766.504;115944015;Germany; +2018-11-20T03:43:48Z;Sandra;2539.497;115831724;Germany; +2018-11-20T03:36:39Z;Sandra;4193.869;115242754;Germany; +2018-11-20T03:32:16Z;Júlio Cesar;1377.703;114542507;Germany; +2018-11-20T03:06:49Z;Nathália;7353.179;116248784;Germany; +2018-11-20T02:45:42Z;nathalia;2689.631;115930845;Germany; +2018-11-20T02:44:55Z;Nathália;789.4383;115124482;Germany; +2018-11-20T02:35:28Z;Ana;2297.937;115757795;Germany; +2018-11-20T02:08:28Z;Júlio;10427.74;115349873;Germany; +2018-11-20T02:00:16Z;Armando;1355.445;116054416;Germany; +2018-11-20T01:47:24Z;nathalia;3306.686;115554320;Germany; +2018-11-20T01:41:44Z;Eduardo;6068.847;114699712;Germany; +2018-11-20T01:01:12Z;Júlio;9719.73;115419454;Germany; +2018-11-20T00:55:51Z;Júlio Cesar;1081.236;116056800;Germany; +2018-11-20T00:11:31Z;Sandra;8194.232;114509715;Germany; +2018-12-23T23:49:44Z;Eduardo;16982.81;115188827;Germany; +2018-11-19T23:37:40Z;Eduardo;392.62;114932303;Germany; +2018-11-19T23:10:13Z;Júlio Cesar;217.2376;115673579;Germany; +2018-11-19T22:49:56Z;nathalia;6992.008;115679450;Germany; +2018-11-19T22:40:04Z;Armando;4160.157;115586289;Germany; +2018-11-19T22:38:10Z;Ana;14424.35;115495864;Germany; +2018-11-19T21:57:49Z;Ana;2142.745;115330461;Germany; +2018-11-19T21:30:59Z;Ana;2366.778;115470763;Germany; +2018-11-19T21:06:25Z;Eduardo;1780.242;115535000;Germany; +2018-11-19T21:01:35Z;Armando;4964.563;114412401;Germany; +2018-11-19T20:57:19Z;Júlio;7674.665;114589711;Germany; +2018-11-19T20:54:58Z;Júlio Cesar;1873.907;116342731;Germany; +2018-11-19T20:48:35Z;nathalia;1710.401;115232214;Germany; +2018-11-19T20:35:24Z;nathalia;234.1241;114393300;Germany; +2018-11-19T20:27:32Z;Júlio Cesar;14136.25;115749379;Germany; +2018-11-19T20:16:45Z;Nathália;4732.799;116035685;Germany; +2018-11-19T20:02:55Z;Júlio;955.5635;116357459;Germany; +2018-11-19T20:02:11Z;Júlio Cesar;70.80179;115352674;Germany; +2018-11-19T18:59:18Z;Eduardo;4149.064;115718572;Germany; +2018-11-19T18:52:35Z;Nathália;3946.279;116121527;Germany; +2018-12-21T18:34:41Z;Eduardo;23683.45;115811800;Germany; +2018-11-19T18:10:56Z;nathalia;4967.499;114880672;Germany; +2018-11-19T17:42:32Z;Sandra;13491.2;114708633;Germany; +2018-11-19T17:41:03Z;Ana;7736.608;115729120;Germany; +2018-11-19T17:28:53Z;Ana;6993.587;114339168;Germany; +2018-11-19T17:22:29Z;nathalia;12186.2;115927140;Germany; +2018-11-19T16:44:57Z;Ana;928.3721;116304390;Germany; +2018-11-19T16:24:30Z;Ana;6984.538;114823878;Germany; +2018-11-19T16:22:05Z;Júlio Cesar;4579.04;115541407;Germany; +2018-11-19T16:02:20Z;Armando;272.6539;114649202;Germany; +2018-11-19T15:59:38Z;Sandra;4854.211;114704285;Germany; +2018-11-19T15:52:50Z;Armando;466.4895;114336049;Germany; +2018-11-19T15:37:33Z;nathalia;5504.869;115166576;Germany; +2018-12-23T15:37:26Z;Armando;18433.65;114850147;Germany; +2018-12-22T15:36:22Z;Eduardo;15784.13;115791086;Germany; +2018-11-19T15:24:48Z;Eduardo;78.91556;114781522;Germany; +2018-11-19T15:07:44Z;nathalia;4436.094;114360565;Germany; +2018-11-19T15:05:26Z;Sandra;11715.14;115695825;Germany; +2018-11-19T14:56:00Z;Armando;14124.09;114742829;Germany; +2018-11-19T14:11:52Z;Nathália;3849.09;115845122;Germany; +2018-11-19T14:11:22Z;Eduardo;585.0769;115756514;Germany; +2018-12-23T13:58:31Z;Sandra;19517.49;115056917;Germany; +2018-11-19T13:47:02Z;Nathália;6552.883;115067120;Germany; +2018-11-19T13:35:05Z;Eduardo;1308.548;116174625;Germany; +2018-11-19T13:35:02Z;Júlio;9832.12;115839741;Germany; +2018-11-19T13:35:00Z;Armando;5921.678;114245879;Germany; +2018-11-19T13:32:34Z;Sandra;687.1385;114592383;Germany; +2018-11-19T13:30:02Z;Nathália;4116.845;114720290;Germany; +2018-12-23T13:29:04Z;Júlio;15613.52;114836120;Germany; +2018-11-19T13:21:53Z;Sandra;8267.76;114270374;Germany; +2018-11-19T13:20:00Z;Júlio;6162.435;116154488;Germany; +2018-11-19T13:15:53Z;Ana;119.21;115196782;Germany; +2018-11-19T13:02:18Z;Sandra;896.8501;115686764;Germany; +2018-11-19T13:01:29Z;nathalia;12581.82;114597641;Germany; +2018-11-19T12:56:35Z;Nathália;1344.536;116061130;Germany; +2018-11-19T12:53:38Z;Ana;49.11065;116231029;Germany; +2018-11-19T12:28:06Z;nathalia;4123.922;115493930;Germany; +2018-11-19T12:22:36Z;Armando;372.1112;115879991;Germany; +2018-11-19T12:12:40Z;Armando;10664.52;115362945;Germany; +2018-11-19T11:05:42Z;Sandra;1478.109;115482672;Germany; +2018-11-19T10:32:09Z;nathalia;197.1881;116195096;Germany; +2018-12-21T10:12:57Z;nathalia;20179.08;115689706;Germany; +2018-11-19T10:00:48Z;Nathália;3979.258;115130914;Germany; +2018-12-23T09:57:50Z;Ana;16977.99;116150669;Germany; +2018-11-19T09:55:29Z;Eduardo;5829.351;114764117;Germany; +2018-11-19T09:44:41Z;Júlio Cesar;7459.197;115140193;Germany; +2018-11-19T09:43:36Z;Júlio Cesar;7040.336;115367069;Germany; +2018-11-19T09:33:21Z;Armando;6358.772;114219016;Germany; +2018-11-19T09:22:55Z;Armando;1160.68;115942239;Germany; +2018-11-19T09:13:33Z;Júlio;2820.376;114540185;Germany; +2018-11-19T09:10:01Z;Armando;299.1398;114966119;Germany; +2018-11-19T08:53:13Z;Nathália;1083.162;115041616;Germany; +2018-11-19T08:51:45Z;Sandra;2280.657;115188515;Germany; +2018-11-19T08:50:39Z;Ana;2738.889;116185056;Germany; +2018-11-19T08:42:03Z;Sandra;12010.37;114683312;Germany; +2018-11-19T08:19:29Z;nathalia;14090.53;116043686;Germany; +2018-11-19T08:17:00Z;Ana;13108.97;115752542;Germany; +2018-11-19T08:08:24Z;Armando;849.2241;115215328;Germany; +2018-11-19T08:03:14Z;nathalia;6712.436;114441699;Germany; +2018-11-19T07:51:56Z;Eduardo;3773.592;114537227;Germany; +2018-11-19T07:23:44Z;Ana;2842.405;115669457;Germany; +2018-12-23T07:05:01Z;Sandra;16887.26;114304476;Germany; +2018-11-19T06:30:28Z;Armando;1243.997;114627436;Germany; +2018-11-19T06:06:02Z;nathalia;6448.54;115456678;Germany; +2018-12-21T06:00:15Z;Eduardo;15406.87;115421493;Germany; +2018-11-19T05:54:49Z;Júlio Cesar;3109.416;114916438;Germany; +2018-11-19T05:45:59Z;nathalia;4711.476;114764160;Germany; +2018-11-19T05:33:26Z;nathalia;3720.876;115894089;Germany; +2018-11-19T05:24:33Z;Nathália;418.6202;116113831;Germany; +2018-11-19T05:20:57Z;Armando;7308.964;114393396;Germany; +2018-11-19T03:55:50Z;nathalia;8339.607;114524600;Germany; +2018-11-19T03:49:12Z;Eduardo;1224.548;115280183;Germany; +2018-11-19T03:28:43Z;Júlio Cesar;4128.864;115250516;Germany; +2018-11-19T03:17:40Z;nathalia;1831.197;114252764;Germany; +2018-11-19T03:17:32Z;Júlio;9581.241;114348088;Germany; +2018-11-19T03:01:01Z;Armando;3459.623;115103970;Germany; +2018-11-19T02:35:20Z;Sandra;6234.324;114257384;Germany; +2018-11-19T02:29:06Z;Armando;7771.192;114644643;Germany; +2018-11-19T01:26:47Z;nathalia;9409.179;115225427;Germany; +2018-11-19T01:22:29Z;Júlio Cesar;446.3815;114343996;Germany; +2018-11-19T01:09:26Z;nathalia;14289.12;114803083;Germany; +2018-11-19T00:50:15Z;Eduardo;12753.24;115302728;Germany; +2018-12-22T00:32:34Z;Ana;15000.67;115701372;Germany; +2018-11-19T00:28:43Z;Eduardo;8297.62;115414739;Germany; +2018-11-18T23:05:56Z;Ana;4287.21;114407876;Germany; +2018-11-18T22:44:16Z;Sandra;6818.724;114363880;Germany; +2018-11-18T22:44:11Z;Nathália;4604.691;114252111;Germany; +2018-11-18T22:43:47Z;Eduardo;2956.422;114346289;Germany; +2018-11-18T22:38:01Z;Eduardo;9529.053;114511336;Germany; +2018-11-18T22:37:23Z;Sandra;2057.583;114983263;Germany; +2018-11-18T22:18:52Z;Nathália;11846.26;115874056;Germany; +2018-11-18T22:09:09Z;Júlio;8301.584;115555494;Germany; +2018-11-18T21:56:44Z;Eduardo;5531.976;114974810;Germany; +2018-11-18T21:56:19Z;Nathália;1957.972;114958603;Germany; +2018-11-18T21:49:10Z;Ana;2372.736;115034763;Germany; +2018-12-21T21:48:49Z;Júlio Cesar;19019.74;114552424;Germany; +2018-11-18T21:43:35Z;nathalia;13595.79;114447973;Germany; +2018-11-18T21:40:44Z;Armando;3515.353;116306302;Germany; +2018-11-18T20:35:24Z;nathalia;415.1189;116049912;Germany; +2018-11-18T18:41:04Z;Júlio Cesar;8237.129;115064794;Germany; +2018-11-18T18:32:59Z;nathalia;11551.78;115169730;Germany; +2018-11-18T18:18:55Z;Júlio;1929.84;115558816;Germany; +2018-12-23T17:59:44Z;Sandra;16081.24;114979909;Germany; +2018-11-18T17:47:19Z;Nathália;769.9918;115723163;Germany; +2018-11-18T17:35:10Z;Júlio;3829.419;115205026;Germany; +2018-12-21T17:21:04Z;Sandra;22459.53;115986384;Germany; +2018-12-23T17:14:16Z;Sandra;15761.96;114372775;Germany; +2018-11-18T17:01:02Z;Armando;421.755;116216977;Germany; +2018-11-18T16:45:31Z;Ana;3330.218;114335960;Germany; +2018-12-22T16:07:47Z;Nathália;16371.63;116005787;Germany; +2018-11-18T15:49:13Z;Eduardo;245.3182;114870347;Germany; +2018-11-18T15:36:52Z;Júlio Cesar;13869.35;114207477;Germany; +2018-11-18T15:14:16Z;nathalia;1106.546;115362801;Germany; +2018-11-18T14:57:56Z;nathalia;6577.837;114370079;Germany; +2018-11-18T14:47:49Z;Armando;3352.721;114326626;Germany; +2018-11-18T13:49:09Z;nathalia;1954.816;116019841;Germany; +2018-11-18T13:48:52Z;nathalia;8879.223;114441477;Germany; +2018-11-18T13:41:43Z;Sandra;5722.153;114933459;Germany; +2018-11-18T13:11:15Z;Armando;14213.17;115427026;Germany; +2018-11-18T12:33:56Z;Júlio Cesar;3791.512;115048260;Germany; +2018-11-18T12:27:39Z;Eduardo;13027.29;114277403;Germany; +2018-12-22T12:23:52Z;Nathália;25572.09;115049528;Germany; +2018-11-18T12:17:33Z;Júlio Cesar;5089.261;115613638;Germany; +2018-11-18T12:01:23Z;Eduardo;117.4554;115596219;Germany; +2018-12-22T11:36:57Z;Armando;15318.86;115870657;Germany; +2018-11-18T11:25:03Z;Nathália;4755.349;115936299;Germany; +2018-11-18T10:52:22Z;nathalia;132.9423;116290649;Germany; +2018-11-18T10:46:32Z;Ana;2463.747;116209367;Germany; +2018-11-18T10:30:37Z;Sandra;2614.845;116317414;Germany; +2018-11-18T10:18:37Z;Júlio;351.2777;115366864;Germany; +2018-11-18T10:15:51Z;Nathália;2867.199;115145635;Germany; +2018-11-18T09:49:24Z;Júlio;2903.228;115928420;Germany; +2018-11-18T09:30:54Z;Ana;14382.2;115426125;Germany; +2018-11-18T09:16:07Z;Ana;1466.078;116221168;Germany; +2018-11-18T08:57:58Z;Eduardo;3990.86;114353812;Germany; +2018-11-18T08:44:28Z;Armando;5033.177;114833454;Germany; +2018-11-18T08:25:42Z;Eduardo;482.3575;115584132;Germany; +2018-11-18T07:58:35Z;Armando;1038.226;114966556;Germany; +2018-11-18T07:39:09Z;Ana;8233.055;114234465;Germany; +2018-11-18T07:21:28Z;Nathália;9311.927;115694107;Germany; +2018-11-18T07:11:06Z;Sandra;1025.754;114944562;Germany; +2018-11-18T07:02:56Z;Júlio;513.5844;116026913;Germany; +2018-11-18T06:53:11Z;Nathália;1223.608;116109066;Germany; +2018-12-22T06:21:50Z;Eduardo;16190.62;115793519;Germany; +2018-11-18T06:06:39Z;nathalia;6805.581;115667057;Germany; +2018-11-18T05:32:26Z;Eduardo;2655.102;115515348;Germany; +2018-11-18T05:15:32Z;Sandra;4209.568;115767550;Germany; +2018-11-18T03:57:32Z;Ana;11563.09;115814885;Germany; +2018-11-18T03:06:57Z;Júlio Cesar;2049.991;114484018;Germany; +2018-11-18T02:43:05Z;Eduardo;8322.59;115551197;Germany; +2018-11-18T02:34:19Z;Júlio Cesar;8247.848;116263239;Germany; +2018-11-18T02:30:19Z;Sandra;7021.883;115365925;Germany; +2018-11-18T02:12:59Z;Eduardo;1053.88;115809530;Germany; +2018-11-18T01:30:03Z;Júlio Cesar;4973.359;115776157;Germany; +2018-11-18T01:07:43Z;Armando;6150.995;115136658;Germany; +2018-11-18T01:03:37Z;Júlio;2074.387;115269885;Germany; +2018-11-18T01:01:45Z;nathalia;9879.698;114938291;Germany; +2018-11-18T00:52:00Z;Júlio;14910.49;114938341;Germany; +2018-11-18T00:36:15Z;Júlio Cesar;7918.685;116196296;Germany; +2018-11-18T00:35:07Z;Júlio Cesar;1026.635;115251336;Germany; +2018-11-18T00:19:05Z;Ana;1594.116;115204873;Germany; +2018-11-18T00:17:16Z;Júlio Cesar;14566.73;114601451;Germany; +2018-11-18T00:16:03Z;Júlio;11880.06;115344928;Germany; +2018-11-18T00:11:23Z;Nathália;1972.134;115004320;Germany; +2018-11-17T23:43:18Z;Sandra;2148.889;114563742;Germany; +2018-11-17T22:35:14Z;nathalia;1842.76;115895243;Germany; +2018-11-17T22:25:02Z;Armando;673.458;114253186;Germany; +2018-11-17T22:22:58Z;Júlio Cesar;211.9209;115716108;Germany; +2018-11-17T21:49:29Z;Júlio;8993.969;115726736;Germany; +2018-11-17T21:47:23Z;Eduardo;728.8835;115647677;Germany; +2018-11-17T21:07:02Z;Júlio;13469.83;114466773;Germany; +2018-11-17T20:53:20Z;Eduardo;1057.546;115387529;Germany; +2018-11-17T20:45:28Z;Júlio Cesar;117.294;114705604;Germany; +2018-11-17T20:23:24Z;Sandra;6683.513;115012882;Germany; +2018-11-17T20:21:48Z;Sandra;7550.059;114825865;Germany; +2018-11-17T20:20:24Z;Nathália;4926.238;115772523;Germany; +2018-12-23T20:17:38Z;Júlio Cesar;16601.17;115054244;Germany; +2018-11-17T19:57:52Z;Nathália;11275.98;114396593;Germany; +2018-11-17T19:50:55Z;Júlio Cesar;764.7001;116146796;Germany; +2018-11-17T19:48:15Z;Sandra;385.852;114470306;Germany; +2018-11-17T19:22:33Z;Sandra;2851.444;115770562;Germany; +2018-11-17T19:02:13Z;Júlio Cesar;1050.76;115992490;Germany; +2018-11-17T18:55:12Z;nathalia;2968.088;114415602;Germany; +2018-11-17T18:18:20Z;Sandra;1997.215;115609613;Germany; +2018-11-17T18:10:24Z;Júlio Cesar;7475.208;115496397;Germany; +2018-11-17T18:10:14Z;Eduardo;1307.673;115660443;Germany; +2018-11-17T18:04:27Z;Sandra;3540.068;115147619;Germany; +2018-11-17T17:53:55Z;Ana;1920.067;115883296;Germany; +2018-11-17T17:18:10Z;Ana;1410.451;115480991;Germany; +2018-11-17T16:51:45Z;Eduardo;3648.766;116292629;Germany; +2018-11-17T16:30:23Z;Júlio Cesar;483.3882;116256739;Germany; +2018-11-17T16:27:07Z;Sandra;1217.562;114538031;Germany; +2018-11-17T15:55:19Z;nathalia;5797.006;114385539;Germany; +2018-11-17T15:36:19Z;Ana;12924.26;114865282;Germany; +2018-11-17T15:33:49Z;Júlio;5071.296;115988676;Germany; +2018-11-17T15:03:29Z;Sandra;7559.418;114880104;Germany; +2018-11-17T14:59:14Z;Ana;2472.853;115552224;Germany; +2018-11-17T14:29:10Z;Eduardo;10763.07;115169910;Germany; +2018-11-17T14:01:04Z;Sandra;10248.85;114496066;Germany; +2018-11-17T13:06:02Z;nathalia;1250.44;114278568;Germany; +2018-11-17T12:55:14Z;Sandra;3512.515;116394317;Germany; +2018-11-17T12:49:15Z;Júlio Cesar;6977.764;115097758;Germany; +2018-11-17T12:40:33Z;Eduardo;13539.16;115219048;Germany; +2018-11-17T12:29:25Z;Nathália;8058.057;115138750;Germany; +2018-11-17T12:05:57Z;Eduardo;9948.394;116072098;Germany; +2018-12-21T11:25:44Z;Júlio;27625.27;116064051;Germany; +2018-11-17T11:06:06Z;Eduardo;1707.883;115691669;Germany; +2018-11-17T10:50:15Z;Eduardo;13371.49;114506765;Germany; +2018-11-17T10:34:45Z;nathalia;844.83;115756725;Germany; +2018-12-21T10:33:57Z;Ana;17728.23;116080795;Germany; +2018-11-17T10:23:09Z;Sandra;6301.211;114832034;Germany; +2018-11-17T09:53:16Z;Eduardo;121.5288;115424545;Germany; +2018-11-17T09:41:37Z;Eduardo;3389.631;114930869;Germany; +2018-11-17T09:31:16Z;nathalia;134.6918;115083398;Germany; +2018-11-17T09:30:08Z;Armando;798.0029;114749239;Germany; +2018-11-17T09:18:07Z;Armando;5423.42;115025441;Germany; +2018-11-17T08:53:02Z;Nathália;5431.501;114837036;Germany; +2018-11-17T08:32:44Z;Sandra;6454.697;114735299;Germany; +2018-11-17T08:26:29Z;Sandra;13595.87;114608225;Germany; +2018-11-17T08:07:04Z;nathalia;3274.752;114963710;Germany; +2018-11-17T07:58:28Z;nathalia;1820.501;115283274;Germany; +2018-11-17T07:43:06Z;Armando;907.5617;115790437;Germany; +2018-11-17T07:37:19Z;Sandra;12174.08;115818531;Germany; +2018-11-17T07:36:14Z;Nathália;960.7618;116121794;Germany; +2018-11-17T07:11:44Z;Ana;9256.257;114398091;Germany; +2018-11-17T06:19:09Z;Nathália;14027.37;115187256;Germany; +2018-11-17T05:31:10Z;Armando;4801.895;115638879;Germany; +2018-11-17T05:16:53Z;Ana;13554.62;115207566;Germany; +2018-11-17T04:32:42Z;nathalia;2716.493;115006040;Germany; +2018-11-17T04:08:05Z;Júlio;5321.126;116243989;Germany; +2018-12-22T04:06:34Z;Nathália;24107.88;116017852;Germany; +2018-11-17T03:56:46Z;Júlio Cesar;6452.529;114669718;Germany; +2018-11-17T03:16:27Z;Sandra;245.1944;115095576;Germany; +2018-11-17T02:49:23Z;nathalia;9487.075;114889577;Germany; +2018-11-17T02:43:57Z;Júlio Cesar;8041.911;114721692;Germany; +2018-11-17T02:36:56Z;Júlio;9495.628;115330498;Germany; +2018-11-17T02:19:55Z;Armando;5774.867;115491450;Germany; +2018-11-17T02:11:08Z;Armando;5296.843;116279195;Germany; +2018-11-17T02:02:38Z;Ana;1010.793;115961431;Germany; +2018-11-17T01:52:04Z;Nathália;13945.69;115443378;Germany; +2018-11-17T01:40:37Z;Ana;7548.984;115005957;Germany; +2018-11-17T01:39:51Z;Júlio;5776.948;116278970;Germany; +2018-11-17T01:37:37Z;Ana;6973.396;114728253;Germany; +2018-11-17T01:30:04Z;Júlio;8564.321;114356675;Germany; +2018-11-17T01:18:23Z;nathalia;2850.175;115827342;Germany; +2018-12-22T00:41:04Z;Armando;16790.54;116022063;Germany; +2018-11-17T00:39:34Z;Ana;1927.645;114444100;Germany; +2018-11-17T00:38:27Z;Júlio Cesar;3138.342;115522871;Germany; +2018-12-23T00:36:13Z;nathalia;18314.03;114557273;Germany; +2018-11-17T00:26:49Z;Nathália;4521.855;114809205;Germany; +2018-11-16T23:57:00Z;Júlio Cesar;9513.641;115876213;Germany; +2018-11-16T23:46:51Z;Júlio Cesar;6386.356;115377725;Germany; +2018-12-22T23:39:30Z;Nathália;19036.03;114681041;Germany; +2018-11-16T21:38:40Z;Júlio Cesar;13283.04;116285057;Germany; +2018-11-16T21:16:28Z;Júlio Cesar;6600.162;115611394;Germany; +2018-11-16T21:04:00Z;Nathália;5314.548;115674405;Germany; +2018-11-16T20:24:40Z;Júlio Cesar;10597.45;115028256;Germany; +2018-11-16T20:08:57Z;Sandra;1954.768;115979815;Germany; +2018-11-16T19:50:53Z;nathalia;5663.091;114957204;Germany; +2018-11-16T19:50:09Z;Sandra;1228.787;115089001;Germany; +2018-11-16T19:46:50Z;Ana;5923.828;116248748;Germany; +2018-11-16T19:09:37Z;Júlio Cesar;4861.472;115683738;Germany; +2018-11-16T19:01:15Z;nathalia;6595.348;115094514;Germany; +2018-11-16T18:45:08Z;nathalia;11489.15;115611004;Germany; +2018-11-16T18:38:45Z;Júlio;2573.084;114508338;Germany; +2018-11-16T18:28:57Z;Júlio Cesar;14092.86;115154045;Germany; +2018-11-16T18:28:07Z;Sandra;2051.357;115395552;Germany; +2018-11-16T18:22:53Z;Sandra;1979.847;115811875;Germany; +2018-11-16T18:11:18Z;Ana;2856.559;115212905;Germany; +2018-11-16T17:57:03Z;Eduardo;4563.571;114790703;Germany; +2018-11-16T17:41:47Z;nathalia;8107.292;114395767;Germany; +2018-11-16T16:58:31Z;Júlio Cesar;11692.64;115115310;Germany; +2018-11-16T16:37:33Z;Nathália;9895.11;115253489;Germany; +2018-11-16T16:33:43Z;Nathália;9591.618;115223824;Germany; +2018-11-16T16:20:19Z;Júlio;10484.54;115768146;Germany; +2018-11-16T15:47:54Z;Armando;1804.665;115749538;Germany; +2018-12-23T15:29:54Z;Ana;18532.01;115710458;Germany; +2018-11-16T15:24:12Z;Júlio Cesar;4585.957;114229303;Germany; +2018-11-16T15:23:12Z;Ana;56.47365;115875273;Germany; +2018-11-16T15:21:33Z;Eduardo;5844.015;115832631;Germany; +2018-11-16T15:17:06Z;Sandra;8600.831;114351686;Germany; +2018-11-16T15:04:33Z;Júlio;3511.154;114723316;Germany; +2018-11-16T15:01:52Z;Armando;6755.56;115428623;Germany; +2018-12-21T14:41:18Z;Nathália;24155.6;114818476;Germany; +2018-11-16T14:28:07Z;Júlio;15.86144;114733441;Germany; +2018-11-16T14:24:02Z;Armando;696.8099;114764267;Germany; +2018-11-16T14:24:00Z;Júlio Cesar;4291.626;114241893;Germany; +2018-11-16T14:17:24Z;Armando;1177.763;114538120;Germany; +2018-11-16T14:12:38Z;Júlio Cesar;2126.124;115112810;Germany; +2018-11-16T14:11:02Z;Armando;91.98039;114690469;Germany; +2018-11-16T13:58:39Z;Sandra;7507.086;115279463;Germany; +2018-11-16T13:52:32Z;Júlio Cesar;7303.42;115885579;Germany; +2018-11-16T13:42:19Z;Sandra;448.7458;115184946;Germany; +2018-11-16T13:41:25Z;Ana;2947.758;116114940;Germany; +2018-11-16T13:15:19Z;Nathália;8413.523;114814476;Germany; +2018-11-16T13:12:59Z;Júlio;6042.354;115866418;Germany; +2018-11-16T13:01:26Z;Sandra;8806.965;114571064;Germany; +2018-11-16T12:59:38Z;Nathália;2359.534;115446206;Germany; +2018-11-16T12:38:03Z;Nathália;2970.346;115702368;Germany; +2018-11-16T12:29:15Z;Júlio Cesar;888.7759;115152404;Germany; +2018-11-16T12:27:27Z;Ana;10732.67;115589969;Germany; +2018-11-16T12:14:45Z;Sandra;636.3141;116369439;Germany; +2018-11-16T11:38:10Z;nathalia;10589.96;114416530;Germany; +2018-11-16T11:21:57Z;Júlio;11160.87;116210206;Germany; +2018-11-16T11:07:23Z;Eduardo;1480.718;115919432;Germany; +2018-11-16T11:05:51Z;Júlio;6537.492;114573284;Germany; +2018-11-16T10:45:10Z;Júlio Cesar;1572.285;114305688;Germany; +2018-11-16T10:29:42Z;nathalia;2895.944;115042031;Germany; +2018-11-16T10:26:54Z;Ana;1015.219;116006415;Germany; +2018-11-16T09:41:15Z;Nathália;8790.178;114515597;Germany; +2018-11-16T08:59:07Z;Sandra;3.923598;114979133;Germany; +2018-11-16T08:56:23Z;Júlio Cesar;9096.229;115997548;Germany; +2018-12-22T08:53:28Z;Ana;22140.08;116365474;Germany; +2018-11-16T08:45:43Z;Júlio Cesar;88.56061;114249423;Germany; +2018-11-16T08:20:01Z;Sandra;8496.837;116118136;Germany; +2018-11-16T08:00:05Z;Nathália;4536.088;116229563;Germany; +2018-12-22T07:41:17Z;Armando;24780.2;115482281;Germany; +2018-11-16T07:28:58Z;Júlio;3168.337;115032840;Germany; +2018-11-16T06:54:16Z;Júlio;10192.15;114805090;Germany; +2018-11-16T06:44:46Z;Júlio Cesar;11837.44;115200238;Germany; +2018-11-16T06:30:00Z;Armando;6501.559;114816575;Germany; +2018-11-16T05:49:24Z;Armando;8679.735;116218049;Germany; +2018-11-16T05:22:23Z;Eduardo;3103.07;116026974;Germany; +2018-11-16T04:58:36Z;Eduardo;4316.695;114222872;Germany; +2018-11-16T04:54:08Z;Ana;4749.517;116049752;Germany; +2018-11-16T04:49:56Z;nathalia;2412.199;115197368;Germany; +2018-12-21T04:10:09Z;Ana;21901.98;115653639;Germany; +2018-11-16T03:44:13Z;Eduardo;5808.917;115979656;Germany; +2018-11-16T03:14:18Z;Eduardo;549.9599;114859758;Germany; +2018-11-16T03:10:09Z;Júlio;1658.65;114600381;Germany; +2018-11-16T03:09:29Z;Ana;6350.586;115036199;Germany; +2018-11-16T03:07:26Z;Armando;5328.971;116294611;Germany; +2018-12-22T02:49:52Z;Júlio;20255.84;115638396;Germany; +2018-11-16T02:23:58Z;Júlio Cesar;6576.034;114439375;Germany; +2018-11-16T02:21:09Z;Eduardo;1141.53;114341366;Germany; +2018-11-16T02:11:57Z;Nathália;11241.47;115495770;Germany; +2018-11-16T02:01:28Z;Armando;209.3923;115390991;Germany; +2018-11-16T01:57:16Z;Júlio;355.655;114774056;Germany; +2018-11-16T01:51:41Z;Armando;5878.6;116261788;Germany; +2018-11-16T01:48:56Z;Sandra;1020.755;114412802;Germany; +2018-11-16T01:33:38Z;nathalia;3595.866;115644175;Germany; +2018-11-16T01:31:01Z;Ana;734.1556;114695448;Germany; +2018-11-16T01:18:53Z;Armando;361.849;115242664;Germany; +2018-11-16T01:15:15Z;nathalia;3261.314;114361524;Germany; +2018-11-16T00:51:25Z;nathalia;293.5474;114765472;Germany; +2018-11-16T00:44:57Z;Nathália;2904.092;115048668;Germany; +2018-11-16T00:43:35Z;Armando;2922.498;115389707;Germany; +2018-11-16T00:36:32Z;Júlio;5207.491;116157188;Germany; +2018-11-16T00:29:08Z;Sandra;4242.4;115516414;Germany; +2018-11-16T00:24:18Z;nathalia;7123.695;115345646;Germany; +2018-11-15T23:58:07Z;Eduardo;6337.908;115183084;Germany; +2018-11-15T23:37:56Z;nathalia;141.3026;114964575;Germany; +2018-11-15T23:16:21Z;Júlio;5705.202;115228904;Germany; +2018-11-15T22:41:03Z;Ana;1306.355;115468255;Germany; +2018-11-15T22:38:58Z;Armando;4925.718;116369774;Germany; +2018-11-15T22:24:25Z;Eduardo;2265.683;114358249;Germany; +2018-11-15T22:16:24Z;Sandra;14774.18;114275924;Germany; +2018-11-15T21:58:46Z;nathalia;2746.175;114362054;Germany; +2018-11-15T21:42:52Z;Eduardo;6815.031;114745831;Germany; +2018-11-15T20:34:52Z;Júlio Cesar;1514.392;115879987;Germany; +2018-11-15T20:32:57Z;Ana;2999.275;115938755;Germany; +2018-11-15T20:21:14Z;Júlio Cesar;6420.678;114665826;Germany; +2018-11-15T20:19:10Z;Júlio Cesar;368.0483;115847743;Germany; +2018-11-15T20:02:39Z;Armando;1667.978;114852464;Germany; +2018-11-15T19:55:06Z;nathalia;1694.073;114394748;Germany; +2018-11-15T19:46:29Z;Nathália;1757.56;114384543;Germany; +2018-11-15T19:39:40Z;Armando;5631.807;114808567;Germany; +2018-11-15T19:31:46Z;Ana;3569.197;115608990;Germany; +2018-12-21T18:23:50Z;Júlio;17996.9;115313307;Germany; +2018-11-15T18:15:36Z;Eduardo;7983.551;116042531;Germany; +2018-11-15T18:11:09Z;nathalia;3402.473;115533450;Germany; +2018-11-15T17:44:54Z;Ana;5032.043;115165048;Germany; +2018-11-15T17:17:03Z;nathalia;1762.966;114424202;Germany; +2018-11-15T17:05:11Z;Júlio Cesar;7824.288;114263136;Germany; +2018-11-15T17:03:38Z;Nathália;3243.889;115159296;Germany; +2018-11-15T16:29:35Z;Armando;537.7509;115589126;Germany; +2018-11-15T16:05:45Z;Júlio Cesar;4728.216;115923395;Germany; +2018-11-15T16:02:40Z;Júlio;1385.168;115114758;Germany; +2018-11-15T15:50:53Z;Júlio Cesar;3467.393;115980418;Germany; +2018-11-15T15:41:41Z;nathalia;1110.513;114577432;Germany; +2018-12-22T15:31:37Z;nathalia;26700.81;116109390;Germany; +2018-11-15T15:29:11Z;Sandra;3699.65;115424895;Germany; +2018-11-15T15:25:05Z;Sandra;5816.625;114899531;Germany; +2018-11-15T15:11:55Z;Sandra;5500.038;114889858;Germany; +2018-11-15T15:00:59Z;Armando;13411.4;115483176;Germany; +2018-11-15T14:56:25Z;Júlio Cesar;3389.526;114554984;Germany; +2018-11-15T14:55:59Z;Eduardo;1755.994;115130142;Germany; +2018-11-15T14:37:29Z;Sandra;4931.562;115876310;Germany; +2018-11-15T14:21:03Z;Júlio;9816.759;115707021;Germany; +2018-11-15T14:13:36Z;Sandra;475.5921;115470009;Germany; +2018-11-15T14:08:22Z;Júlio;3235.139;116163435;Germany; +2018-11-15T14:04:26Z;Nathália;743.4785;114545725;Germany; +2018-11-15T13:16:09Z;nathalia;12762.97;116372968;Germany; +2018-11-15T12:34:45Z;Nathália;2066.063;115095947;Germany; +2018-11-15T12:10:08Z;Sandra;56.16124;115363592;Germany; +2018-11-15T11:11:57Z;Armando;8639.944;114618574;Germany; +2018-11-15T10:24:58Z;Nathália;10913.33;116074575;Germany; +2018-11-15T10:17:37Z;Ana;1262.274;114700588;Germany; +2018-11-15T09:54:04Z;Júlio;6146.49;116114297;Germany; +2018-11-15T09:43:04Z;nathalia;1141.82;114454236;Germany; +2018-11-15T09:30:43Z;Armando;2909.574;114427234;Germany; +2018-11-15T09:29:15Z;Sandra;3838.917;114794878;Germany; +2018-11-15T09:26:36Z;Ana;2540.928;115675417;Germany; +2018-11-15T09:14:44Z;Eduardo;11749.5;115773048;Germany; +2018-11-15T08:27:57Z;Nathália;3315.168;115149240;Germany; +2018-11-15T07:53:52Z;Armando;660.223;115373224;Germany; +2018-12-22T07:52:53Z;Sandra;23286.3;114691955;Germany; +2018-11-15T06:44:15Z;Sandra;5672.536;115581656;Germany; +2018-11-15T06:36:34Z;Júlio Cesar;9002.27;114227247;Germany; +2018-11-15T06:21:34Z;Armando;2848.649;115134867;Germany; +2018-11-15T06:13:35Z;Armando;621.5813;115858608;Germany; +2018-11-15T05:57:29Z;Nathália;10256.37;114430118;Germany; +2018-11-15T04:48:14Z;Ana;5719.896;115941094;Germany; +2018-11-15T04:47:55Z;Armando;2105.282;115414703;Germany; +2018-11-15T04:45:58Z;Eduardo;14082.57;115533601;Germany; +2018-11-15T04:36:10Z;Eduardo;4909.799;115057326;Germany; +2018-11-15T04:17:00Z;Ana;2299.091;116059693;Germany; +2018-11-15T03:55:55Z;Sandra;6420.889;114689990;Germany; +2018-11-15T03:53:06Z;Ana;1176.88;115436199;Germany; +2018-11-15T03:52:41Z;nathalia;970.7286;115641655;Germany; +2018-11-15T03:43:12Z;nathalia;7949.26;115956109;Germany; +2018-11-15T03:19:29Z;Júlio Cesar;961.5824;114702873;Germany; +2018-11-15T03:18:27Z;nathalia;6096.433;115626070;Germany; +2018-11-15T02:54:50Z;Júlio;809.4191;115997381;Germany; +2018-11-15T02:31:29Z;Sandra;7249.504;116307640;Germany; +2018-11-15T02:30:54Z;Ana;9533.62;115230204;Germany; +2018-12-22T02:08:21Z;Júlio;19616.85;114415815;Germany; +2018-11-15T02:02:55Z;Nathália;5957.934;114552799;Germany; +2018-12-21T01:25:13Z;Júlio;17974.57;115895795;Germany; +2018-11-15T01:23:31Z;Armando;6256.952;114333803;Germany; +2018-11-15T01:03:56Z;Ana;12527.03;115599003;Germany; +2018-11-15T00:27:04Z;Ana;8630.76;114236813;Germany; +2018-11-15T00:22:00Z;Nathália;1957.769;114749678;Germany; +2018-12-22T00:21:20Z;nathalia;16879.15;115079184;Germany; +2018-11-15T00:03:02Z;nathalia;3891.035;116358447;Germany; +2018-11-15T00:02:19Z;Nathália;9883.204;115721598;Germany; +2018-11-14T23:59:24Z;Júlio Cesar;7866.679;115183460;Germany; +2018-11-14T23:59:03Z;Eduardo;897.7832;116062100;Germany; +2018-11-14T23:57:15Z;Júlio Cesar;11987.92;114654013;Germany; +2018-11-14T22:39:37Z;Júlio;8141.397;114409923;Germany; +2018-11-14T21:17:29Z;Sandra;6035.007;115585559;Germany; +2018-11-14T20:49:40Z;nathalia;1415.533;115121698;Germany; +2018-11-14T20:49:29Z;Ana;10800.92;114393448;Germany; +2018-11-14T20:34:55Z;Júlio Cesar;3266.221;115197651;Germany; +2018-11-14T20:32:22Z;Armando;294.7183;114216584;Germany; +2018-11-14T20:30:41Z;nathalia;9234.933;116277385;Germany; +2018-11-14T20:29:12Z;Nathália;6624.888;115607789;Germany; +2018-11-14T20:18:57Z;Sandra;1883.802;114288506;Germany; +2018-11-14T19:56:39Z;Eduardo;3323.475;116063758;Germany; +2018-11-14T19:36:34Z;Armando;8092.102;115088577;Germany; +2018-11-14T19:34:19Z;Armando;2404.848;114817481;Germany; +2018-11-14T18:48:28Z;nathalia;386.6605;116136273;Germany; +2018-12-21T18:43:10Z;Sandra;16633.26;114646925;Germany; +2018-11-14T18:42:22Z;Ana;3552.853;115853267;Germany; +2018-11-14T18:22:48Z;Júlio;338.2286;115486890;Germany; +2018-12-21T18:09:30Z;Ana;18170.35;114293362;Germany; +2018-11-14T17:51:28Z;Júlio Cesar;103.5398;116263452;Germany; +2018-12-23T17:48:23Z;nathalia;15255.64;115476749;Germany; +2018-11-14T17:21:45Z;Armando;745.0749;116273956;Germany; +2018-11-14T16:44:57Z;nathalia;1714.325;115097533;Germany; +2018-11-14T16:29:58Z;Júlio Cesar;2660.625;114469739;Germany; +2018-11-14T15:39:36Z;Eduardo;395.4616;114980042;Germany; +2018-11-14T15:17:22Z;Armando;12294.12;114936719;Germany; +2018-12-21T15:16:55Z;Sandra;17241.07;114410732;Germany; +2018-11-14T14:58:35Z;Júlio;5349.563;115372027;Germany; +2018-12-23T14:57:46Z;Ana;16773.69;116006269;Germany; +2018-11-14T14:37:04Z;Sandra;7153.129;116083064;Germany; +2018-11-14T14:26:27Z;Sandra;12968.55;116054394;Germany; +2018-11-14T14:23:54Z;Eduardo;1988.357;115634058;Germany; +2018-11-14T14:07:18Z;Ana;9468.677;115351354;Germany; +2018-11-14T13:09:59Z;Júlio;8164.862;114648512;Germany; +2018-11-14T13:05:03Z;Nathália;12954.82;114978643;Germany; +2018-11-14T12:52:26Z;Ana;6386.185;114698245;Germany; +2018-11-14T12:39:47Z;Júlio;13725.44;115033055;Germany; +2018-11-14T12:37:34Z;Júlio Cesar;4898.131;115194611;Germany; +2018-11-14T12:36:26Z;Júlio;1003.21;116367911;Germany; +2018-11-14T12:30:01Z;Júlio Cesar;1439.353;115877876;Germany; +2018-11-14T11:55:08Z;Armando;6324.405;115118747;Germany; +2018-11-14T11:46:16Z;Eduardo;5822.691;114804455;Germany; +2018-12-22T11:41:00Z;Júlio Cesar;18391.27;114730414;Germany; +2018-11-14T11:18:34Z;Sandra;12887.58;115867573;Germany; +2018-11-14T11:14:36Z;nathalia;2042.937;115670518;Germany; +2018-11-14T11:13:33Z;nathalia;3551.062;116228581;Germany; +2018-11-14T10:03:50Z;Sandra;1358.837;115964193;Germany; +2018-11-14T09:53:45Z;Eduardo;902.3259;114280674;Germany; +2018-11-14T09:33:11Z;Júlio;404.5094;116009018;Germany; +2018-11-14T09:22:32Z;Eduardo;238.621;115372033;Germany; +2018-11-14T09:09:43Z;Nathália;2147.643;114462324;Germany; +2018-11-14T09:08:31Z;Nathália;3336.8;116105899;Germany; +2018-11-14T08:33:10Z;Ana;2964.765;114574296;Germany; +2018-11-14T08:15:25Z;Eduardo;10062.37;116141764;Germany; +2018-11-14T07:59:07Z;Sandra;2334.646;115542314;Germany; +2018-11-14T07:56:05Z;Armando;7206.13;114477575;Germany; +2018-12-23T07:44:44Z;Armando;17504.38;114882611;Germany; +2018-11-14T07:20:37Z;Eduardo;2913.135;114409176;Germany; +2018-11-14T07:12:27Z;Júlio Cesar;2812.025;114330177;Germany; +2018-11-14T07:08:55Z;Armando;1276.749;116256110;Germany; +2018-11-14T07:06:13Z;Nathália;1018.299;114508668;Germany; +2018-11-14T06:52:12Z;Ana;2236.385;114381078;Germany; +2018-11-14T06:46:46Z;Armando;6216.906;114740506;Germany; +2018-11-14T06:07:53Z;Júlio Cesar;4879.306;116156704;Germany; +2018-11-14T06:05:48Z;nathalia;6117.037;115619094;Germany; +2018-11-14T05:40:05Z;Ana;3520.078;115579561;Germany; +2018-11-14T05:39:49Z;nathalia;1611.636;115477251;Germany; +2018-11-14T05:36:34Z;Ana;5126.537;115181099;Germany; +2018-11-14T05:36:18Z;Júlio;3764.525;114825139;Germany; +2018-11-14T05:29:58Z;nathalia;336.3867;114687315;Germany; +2018-11-14T05:29:25Z;nathalia;9443.726;115144076;Germany; +2018-11-14T05:11:36Z;Sandra;4965.763;114788774;Germany; +2018-11-14T04:29:44Z;nathalia;776.4901;114361630;Germany; +2018-12-23T04:08:00Z;Ana;19266.01;116036870;Germany; +2018-11-14T04:07:43Z;Armando;713.5153;116386901;Germany; +2018-11-14T03:55:25Z;Sandra;780.4592;115696389;Germany; +2018-11-14T03:23:58Z;nathalia;10947.95;114952634;Germany; +2018-11-14T03:13:32Z;Armando;1095.306;116073122;Germany; +2018-11-14T03:11:28Z;Sandra;1108.743;115224542;Germany; +2018-11-14T02:36:23Z;Júlio Cesar;3956.951;114910706;Germany; +2018-11-14T01:34:25Z;Ana;7852.622;115010166;Germany; +2018-11-14T01:14:28Z;Eduardo;5165.377;114881283;Germany; +2018-11-14T01:07:11Z;Júlio;2037.021;116108331;Germany; +2018-11-14T00:55:16Z;Armando;14350.56;114785508;Germany; +2018-11-14T00:13:45Z;Nathália;1809.568;116328288;Germany; +2018-11-14T00:01:40Z;Júlio Cesar;2523.091;116202034;Germany; +2018-11-13T23:54:35Z;Sandra;14395.09;114655250;Germany; +2018-11-13T22:59:18Z;Júlio Cesar;1370.603;115998272;Germany; +2018-11-13T22:56:57Z;nathalia;2252.045;114711361;Germany; +2018-11-13T22:45:35Z;nathalia;11520.28;115378859;Germany; +2018-11-13T22:23:52Z;Ana;1841.261;114323507;Germany; +2018-11-13T22:07:08Z;Nathália;2713.692;114507792;Germany; +2018-11-13T21:58:23Z;Júlio;3927.462;116216055;Germany; +2018-12-21T21:38:37Z;Ana;20088.54;115784659;Germany; +2018-11-13T21:36:18Z;Armando;2734.34;114900860;Germany; +2018-11-13T21:22:49Z;Sandra;27.82874;115183481;Germany; +2018-11-13T21:16:12Z;Júlio;923.7382;114909076;Germany; +2018-11-13T21:05:29Z;nathalia;137.6208;115659995;Germany; +2018-11-13T20:52:45Z;nathalia;14377.63;115088728;Germany; +2018-11-13T20:41:03Z;Eduardo;7864.042;115161393;Germany; +2018-11-13T19:51:25Z;Armando;482.1704;114480470;Germany; +2018-11-13T19:42:24Z;Ana;4848.738;114367001;Germany; +2018-11-13T18:41:37Z;Sandra;6781.258;114872427;Germany; +2018-11-13T18:13:31Z;Ana;382.8488;115584709;Germany; +2018-11-13T18:13:10Z;Júlio Cesar;3395.096;114909158;Germany; +2018-11-13T18:11:53Z;Sandra;12619.12;115346634;Germany; +2018-11-13T17:58:12Z;Sandra;1275.988;114205682;Germany; +2018-11-13T17:57:52Z;Ana;1543.172;115022006;Germany; +2018-11-13T17:45:21Z;Nathália;7785.007;114664310;Germany; +2018-11-13T17:13:23Z;Ana;11159.8;114218974;Germany; +2018-11-13T17:08:16Z;Ana;8255.931;115088064;Germany; +2018-11-13T17:04:58Z;Nathália;139.4624;115884531;Germany; +2018-11-13T17:02:24Z;Sandra;4200.118;116206654;Germany; +2018-11-13T16:55:23Z;nathalia;7014.631;115542478;Germany; +2018-11-13T16:33:53Z;Armando;857.6594;114762811;Germany; +2018-11-13T16:29:45Z;Eduardo;2613.913;116363907;Germany; +2018-11-13T16:10:21Z;Eduardo;9621.391;115147102;Germany; +2018-11-13T16:00:10Z;Eduardo;6925.098;115324958;Germany; +2018-11-13T15:59:59Z;Ana;259.3806;114437280;Germany; +2018-11-13T15:37:55Z;Eduardo;319.1369;115445208;Germany; +2018-11-13T15:31:45Z;Nathália;1390.566;116357257;Germany; +2018-11-13T15:30:24Z;Ana;4133.18;115022188;Germany; +2018-11-13T15:12:30Z;nathalia;7509.318;114636858;Germany; +2018-11-13T15:09:15Z;nathalia;12422.85;115922930;Germany; +2018-11-13T14:52:53Z;Eduardo;1646.9;116059252;Germany; +2018-11-13T14:49:34Z;Júlio;500.8558;114527622;Germany; +2018-11-13T14:47:44Z;Eduardo;8428.306;115385791;Germany; +2018-11-13T14:39:39Z;nathalia;5055.443;114371484;Germany; +2018-11-13T14:25:29Z;Armando;1352.492;114665829;Germany; +2018-11-13T14:20:26Z;nathalia;3037.471;114889169;Germany; +2018-11-13T14:16:33Z;Eduardo;2341.027;116320767;Germany; +2018-11-13T13:56:09Z;Ana;6342.02;114709395;Germany; +2018-11-13T13:11:51Z;Armando;2296.033;114495823;Germany; +2018-11-13T13:05:26Z;nathalia;632.3493;114614060;Germany; +2018-11-13T12:57:59Z;Ana;5605.802;115331090;Germany; +2018-11-13T12:05:16Z;Eduardo;3710.642;114288546;Germany; +2018-11-13T12:04:41Z;Nathália;12251.57;116156115;Germany; +2018-11-13T10:53:36Z;Júlio Cesar;4714.162;114783296;Germany; +2018-11-13T10:49:08Z;Júlio;8264.857;114305007;Germany; +2018-11-13T10:33:05Z;Armando;7516.316;115368642;Germany; +2018-11-13T10:31:59Z;Sandra;759.3634;115336362;Germany; +2018-11-13T10:10:00Z;Armando;1789.912;114355455;Germany; +2018-11-13T10:07:49Z;Sandra;2298.475;116055397;Germany; +2018-11-13T10:05:41Z;Sandra;485.8386;114879891;Germany; +2018-11-13T09:55:05Z;Ana;3277.515;115690767;Germany; +2018-12-23T09:29:07Z;Armando;19998.89;115556665;Germany; +2018-11-13T09:21:49Z;Sandra;8835.987;114950534;Germany; +2018-11-13T08:20:50Z;nathalia;726.4552;114788186;Germany; +2018-11-13T08:11:39Z;Júlio Cesar;1263.961;114448631;Germany; +2018-11-13T07:48:28Z;Júlio;8855.189;115763128;Germany; +2018-11-13T07:28:52Z;Nathália;1155.666;115575425;Germany; +2018-11-13T07:23:42Z;nathalia;300.4882;114766196;Germany; +2018-11-13T06:45:20Z;Armando;11429.06;116375286;Germany; +2018-11-13T06:44:18Z;Armando;2972.758;115941580;Germany; +2018-11-13T06:25:35Z;Nathália;4182.784;115718784;Germany; +2018-11-13T06:14:49Z;Armando;3339.851;115768488;Germany; +2018-11-13T06:07:28Z;Júlio Cesar;6444.627;115751832;Germany; +2018-11-13T05:49:04Z;Nathália;4041.693;115119666;Germany; +2018-11-13T05:38:26Z;Ana;3520.285;114459572;Germany; +2018-11-13T05:36:45Z;Nathália;3060.721;115310090;Germany; +2018-11-13T05:09:17Z;nathalia;2976.381;115000688;Germany; +2018-11-13T05:06:44Z;nathalia;5771.563;115725104;Germany; +2018-11-13T05:05:07Z;Sandra;9991.668;114558048;Germany; +2018-11-13T04:58:46Z;Júlio;2981.504;114413387;Germany; +2018-11-13T03:23:34Z;Júlio Cesar;12901.83;115394179;Germany; +2018-11-13T03:22:10Z;Ana;7536.459;115830249;Germany; +2018-11-13T02:59:26Z;Nathália;10090.37;114291468;Germany; +2018-11-13T02:56:01Z;Eduardo;5561.498;114928119;Germany; +2018-11-13T02:36:32Z;Armando;61.15459;116143169;Germany; +2018-11-13T01:31:33Z;Nathália;8278.936;116220001;Germany; +2018-11-13T01:05:37Z;Júlio;5359.708;115182950;Germany; +2018-11-13T00:43:02Z;Nathália;3254.994;116195561;Germany; +2018-12-06T22:30:17Z;Júlio;1303.276;114451079;Argentina; +2018-12-06T21:36:50Z;Armando;2921.636;115947951;Argentina; +2018-12-06T21:31:41Z;Nathália;73.26413;114200468;Argentina; +2018-12-06T21:23:47Z;Eduardo;116.5774;115062471;Argentina; +2018-12-06T20:46:33Z;Júlio Cesar;1050.223;115367613;Argentina; +2018-12-06T20:43:05Z;Ana;1144.626;116365040;Argentina; +2018-12-06T20:34:21Z;Sandra;996.2072;114601872;Argentina; +2018-12-06T20:19:45Z;Nathália;1457.272;114593372;Argentina; +2018-12-06T19:43:48Z;Eduardo;1996.834;116090236;Argentina; +2018-12-06T19:31:07Z;Ana;69.75648;114902555;Argentina; +2018-12-06T19:18:27Z;nathalia;1085.252;115960195;Argentina; +2018-12-06T19:02:59Z;Ana;2022.59;115426609;Argentina; +2018-12-06T18:44:57Z;Nathália;2278.652;115301484;Argentina; +2018-12-06T17:52:01Z;Eduardo;1034.117;116318031;Argentina; +2018-12-06T17:33:06Z;Ana;1029.744;114531652;Argentina; +2018-12-06T17:30:05Z;Júlio Cesar;114.2292;116306204;Argentina; +2018-12-06T17:09:27Z;Armando;1134.537;116330594;Argentina; +2018-12-06T17:00:10Z;Nathália;1310.124;115693295;Argentina; +2018-12-06T16:35:49Z;Sandra;2545.774;115387490;Argentina; +2018-12-06T15:46:38Z;Eduardo;1629.927;116391815;Argentina; +2018-12-06T15:36:34Z;Nathália;462.6917;115750534;Argentina; +2018-12-06T14:49:53Z;Sandra;1249.497;115109516;Argentina; +2018-12-06T14:48:51Z;Júlio Cesar;1167.3;114668791;Argentina; +2018-12-06T14:38:08Z;nathalia;2404.077;115499142;Argentina; +2018-12-06T14:11:01Z;nathalia;1200.927;116305293;Argentina; +2018-12-06T13:59:15Z;Armando;1685.756;114376353;Argentina; +2018-12-06T13:52:58Z;nathalia;90.10366;114707029;Argentina; +2018-12-06T13:32:06Z;Ana;821.1849;116060248;Argentina; +2018-12-06T13:09:13Z;Sandra;1281.758;115967000;Argentina; +2018-12-06T12:48:35Z;nathalia;2187.079;116260750;Argentina; +2018-12-06T12:40:56Z;Ana;2933.887;115342638;Argentina; +2018-12-06T12:37:54Z;Ana;3029.134;114736638;Argentina; +2018-12-06T11:52:38Z;Sandra;5495.263;116263224;Argentina; +2018-12-06T11:49:42Z;Armando;1580.589;115826484;Argentina; +2018-12-06T11:16:31Z;nathalia;2549.391;115917347;Argentina; +2018-12-06T11:14:06Z;Júlio;1254.602;115399019;Argentina; +2018-12-06T10:54:52Z;Sandra;523.0528;115598200;Argentina; +2018-12-06T10:23:35Z;Ana;284.0349;114709174;Argentina; +2018-12-06T10:17:08Z;Júlio;1635.938;115876678;Argentina; +2018-12-06T10:13:29Z;Sandra;292.7701;116204339;Argentina; +2018-12-06T10:04:43Z;Armando;1361.051;116374119;Argentina; +2018-12-06T09:27:48Z;Nathália;443.4436;114554644;Argentina; +2018-12-06T09:26:24Z;Ana;1210.066;116139699;Argentina; +2018-12-06T09:15:22Z;nathalia;982.3839;115904133;Argentina; +2018-12-06T09:15:19Z;Armando;403.723;115737897;Argentina; +2018-12-06T08:49:27Z;Armando;604.2508;116318691;Argentina; +2018-12-06T08:45:22Z;Eduardo;1131.97;114560027;Argentina; +2018-12-06T08:02:35Z;Nathália;2938.698;115752763;Argentina; +2018-12-06T08:00:49Z;Armando;1266.773;114877285;Argentina; +2018-12-06T07:53:13Z;Sandra;3240.567;115023114;Argentina; +2018-12-06T07:52:26Z;Sandra;2300.209;116135596;Argentina; +2018-12-06T07:50:07Z;Júlio;1853.207;114926330;Argentina; +2018-12-06T07:46:32Z;nathalia;1340.106;115219546;Argentina; +2018-12-06T07:32:50Z;Nathália;236.1968;114527247;Argentina; +2018-12-06T07:23:59Z;Júlio Cesar;1954.667;116344606;Argentina; +2018-12-06T07:08:05Z;Nathália;2030.007;114598508;Argentina; +2018-12-06T06:43:22Z;Júlio;3001.686;115823266;Argentina; +2018-12-06T06:31:31Z;Nathália;2506.641;114781224;Argentina; +2018-12-06T06:26:36Z;Ana;2172.69;115164053;Argentina; +2018-12-06T05:38:14Z;Sandra;1304.365;116284691;Argentina; +2018-12-06T05:26:02Z;Sandra;454.6265;115534802;Argentina; +2018-12-06T05:17:04Z;Sandra;1374.95;114810573;Argentina; +2018-12-06T05:02:51Z;Armando;3804.967;114260988;Argentina; +2018-12-06T04:49:02Z;nathalia;136.0802;115106453;Argentina; +2018-12-06T04:02:52Z;Júlio Cesar;1058.176;114285237;Argentina; +2018-12-06T03:59:53Z;Ana;1104.785;115140845;Argentina; +2018-12-06T03:47:19Z;Nathália;1438.296;115721586;Argentina; +2018-12-06T03:29:28Z;Júlio;1449.143;115121797;Argentina; +2018-12-06T03:05:59Z;Nathália;1514.896;115812845;Argentina; +2018-12-06T03:02:40Z;Júlio;3841.321;116338519;Argentina; +2018-12-06T02:41:31Z;Nathália;506.2324;115648378;Argentina; +2018-12-06T02:10:33Z;Eduardo;1570.443;115929130;Argentina; +2018-12-06T02:06:19Z;Eduardo;1433.806;115372717;Argentina; +2018-12-06T02:05:47Z;Júlio Cesar;1426.853;115100737;Argentina; +2018-12-06T01:41:17Z;Júlio;1389.924;114717143;Argentina; +2018-12-06T01:39:34Z;Ana;3545.229;114348048;Argentina; +2018-12-06T01:33:47Z;Júlio Cesar;705.1295;114323962;Argentina; +2018-12-06T01:22:51Z;Júlio Cesar;2324.734;114652507;Argentina; +2018-12-06T01:03:44Z;Eduardo;4061.701;114476865;Argentina; +2018-12-06T00:34:52Z;Júlio Cesar;696.0065;114837266;Argentina; +2018-12-06T00:13:08Z;Júlio;2838.478;115256748;Argentina; +2018-12-06T00:05:21Z;Eduardo;441.141;114980690;Argentina; +2018-12-05T23:49:42Z;nathalia;213.5982;115715501;Argentina; +2018-12-05T23:47:05Z;Júlio Cesar;674.8593;115363063;Argentina; +2018-12-05T23:26:45Z;Eduardo;2839.38;115025113;Argentina; +2018-12-05T22:58:37Z;Armando;13.9558;115018098;Argentina; +2018-12-05T22:58:24Z;Júlio Cesar;2629.812;115001976;Argentina; +2018-12-05T22:44:08Z;Eduardo;2519.465;116207533;Argentina; +2018-12-05T22:41:51Z;Júlio;367.8082;116387293;Argentina; +2018-12-05T22:14:44Z;Nathália;4273.834;115639203;Argentina; +2018-12-05T22:14:25Z;Armando;1318.294;114741940;Argentina; +2018-12-05T22:10:53Z;Sandra;370.9583;114736847;Argentina; +2018-12-05T21:57:07Z;Nathália;2398.189;116179200;Argentina; +2018-12-05T21:51:51Z;Júlio Cesar;843.7593;115268659;Argentina; +2018-12-05T21:46:19Z;Sandra;765.3663;114532274;Argentina; +2018-12-05T21:24:59Z;Nathália;916.2736;115638509;Argentina; +2018-12-05T21:09:44Z;Ana;44.53515;114851071;Argentina; +2018-12-05T20:53:31Z;Ana;3158.874;115385296;Argentina; +2018-12-05T20:49:40Z;Eduardo;480.5263;115323419;Argentina; +2018-12-05T20:44:54Z;Nathália;1392.196;115738140;Argentina; +2018-12-05T20:32:58Z;Nathália;676.0007;115744494;Argentina; +2018-12-05T20:07:45Z;Ana;2783.344;116282929;Argentina; +2018-12-05T19:51:58Z;Nathália;291.1572;114794758;Argentina; +2018-12-05T19:44:46Z;Júlio Cesar;62.6324;114908959;Argentina; +2018-12-05T19:42:14Z;nathalia;52.73622;114222649;Argentina; +2018-12-05T19:34:54Z;Ana;914.8183;114468929;Argentina; +2018-12-05T19:33:19Z;Sandra;2856.651;114443520;Argentina; +2018-12-05T19:31:25Z;Júlio;3063.241;115251949;Argentina; +2018-12-05T19:29:59Z;nathalia;1831.343;114596980;Argentina; +2018-12-05T19:13:51Z;Armando;409.1821;116093982;Argentina; +2018-12-05T19:03:40Z;Júlio Cesar;1728.863;115748159;Argentina; +2018-12-05T18:47:19Z;Júlio Cesar;545.0317;114965908;Argentina; +2018-12-05T18:33:27Z;Nathália;373.4352;115811365;Argentina; +2018-12-05T18:18:26Z;Sandra;1484.847;114393160;Argentina; +2018-12-05T17:43:57Z;Júlio Cesar;401.1105;116001131;Argentina; +2018-12-05T17:40:09Z;Armando;1439.031;116381462;Argentina; +2018-12-05T17:33:38Z;Armando;279.5763;116067181;Argentina; +2018-12-05T17:07:44Z;Sandra;312.1052;115605343;Argentina; +2018-12-05T16:55:15Z;Sandra;3888.841;115487761;Argentina; +2018-12-05T16:48:22Z;Nathália;1092.208;115799931;Argentina; +2018-12-05T16:21:46Z;Armando;686.2221;114323885;Argentina; +2018-12-05T16:19:33Z;Eduardo;727.5364;114417085;Argentina; +2018-12-05T16:19:25Z;Armando;470.8533;114536455;Argentina; +2018-12-05T16:19:06Z;Ana;1131.454;114532753;Argentina; +2018-12-05T16:05:41Z;Nathália;2869.05;116372880;Argentina; +2018-12-05T16:02:59Z;Sandra;962.9318;116210148;Argentina; +2018-12-05T15:40:06Z;Eduardo;4170.372;114645962;Argentina; +2018-12-05T15:17:34Z;Eduardo;707.1628;115287186;Argentina; +2018-12-05T15:17:12Z;Júlio Cesar;1062.11;115027355;Argentina; +2018-12-05T15:16:30Z;Júlio;3885.162;115036596;Argentina; +2018-12-05T15:09:09Z;Eduardo;530.4002;115871658;Argentina; +2018-12-05T14:46:56Z;Júlio;2134.752;114658871;Argentina; +2018-12-05T14:39:51Z;Júlio;755.5879;115724490;Argentina; +2018-12-05T14:22:15Z;Júlio;3616.845;115044785;Argentina; +2018-12-05T14:09:08Z;Ana;2091.146;114913745;Argentina; +2018-12-05T14:07:57Z;Sandra;2345.991;114394170;Argentina; +2018-12-05T13:37:59Z;Ana;2657.203;115468024;Argentina; +2018-12-05T13:27:32Z;nathalia;559.6965;115870927;Argentina; +2018-12-05T13:23:01Z;Nathália;1843.817;116196433;Argentina; +2018-12-05T13:21:08Z;Eduardo;6.896101;116178348;Argentina; +2018-12-05T13:13:23Z;Júlio Cesar;1706.486;115620452;Argentina; +2018-12-05T13:05:53Z;Júlio Cesar;350.8676;115584603;Argentina; +2018-12-05T12:51:23Z;Nathália;1926.552;114672067;Argentina; +2018-12-05T12:35:17Z;Nathália;1742.142;115131008;Argentina; +2018-12-05T12:02:46Z;Ana;1672.723;114575595;Argentina; +2018-12-05T10:53:43Z;Júlio Cesar;2499.428;116318091;Argentina; +2018-12-05T10:40:21Z;Júlio;1824.685;114539627;Argentina; +2018-12-05T10:32:11Z;Júlio;2313.155;114984231;Argentina; +2018-12-05T10:29:51Z;Sandra;2806.62;115173682;Argentina; +2018-12-05T09:14:19Z;Armando;1851.671;115971147;Argentina; +2018-12-05T09:08:35Z;Júlio Cesar;3062.923;115733804;Argentina; +2018-12-05T08:17:20Z;Nathália;1585.052;114898452;Argentina; +2018-12-05T08:10:41Z;Eduardo;1167.898;114815707;Argentina; +2018-12-05T07:19:25Z;Júlio;1378.544;115368725;Argentina; +2018-12-05T07:06:39Z;Ana;2704.625;116310684;Argentina; +2018-12-05T06:40:24Z;Júlio Cesar;43.47375;114369668;Argentina; +2018-12-05T06:12:19Z;Ana;2541.516;116342778;Argentina; +2018-12-05T05:42:47Z;Júlio Cesar;452.7552;115938525;Argentina; +2018-12-05T05:17:23Z;nathalia;6.778134;115888890;Argentina; +2018-12-05T05:10:48Z;Ana;10.18504;115388002;Argentina; +2018-12-05T05:10:05Z;Eduardo;922.3147;115249127;Argentina; +2018-12-05T05:08:13Z;Júlio;1549.029;115268440;Argentina; +2018-12-05T05:01:05Z;Júlio Cesar;809.3323;115736909;Argentina; +2018-12-05T04:59:42Z;Ana;2932.807;115154907;Argentina; +2018-12-05T04:52:59Z;nathalia;3611.01;115449147;Argentina; +2018-12-05T04:52:24Z;Armando;2328.134;115363169;Argentina; +2018-12-05T04:34:25Z;Sandra;113.7536;116198512;Argentina; +2018-12-05T04:14:15Z;Armando;1415.448;115215404;Argentina; +2018-12-05T03:34:03Z;Ana;4053.255;115113323;Argentina; +2018-12-05T03:30:15Z;Eduardo;1636.718;114411655;Argentina; +2018-12-05T03:26:43Z;nathalia;3545.331;114710484;Argentina; +2018-12-05T03:01:16Z;nathalia;175.3351;115891638;Argentina; +2018-12-05T02:35:00Z;Eduardo;2709.554;115462807;Argentina; +2018-12-05T02:31:56Z;nathalia;612.1039;115228320;Argentina; +2018-12-05T02:29:24Z;Eduardo;866.5072;115332809;Argentina; +2018-12-05T02:11:55Z;Ana;1339.888;114453924;Argentina; +2018-12-05T02:05:09Z;Eduardo;1035.954;114696919;Argentina; +2018-12-05T02:04:47Z;Armando;1084.131;116256911;Argentina; +2018-12-05T02:02:36Z;Ana;61.75724;114770220;Argentina; +2018-12-05T01:58:22Z;Júlio Cesar;3150.743;115357309;Argentina; +2018-12-05T01:31:28Z;Nathália;1628.55;115202658;Argentina; +2018-12-05T01:25:56Z;Júlio;1657.356;115567729;Argentina; +2018-12-05T01:02:20Z;Armando;768.6669;114308012;Argentina; +2018-12-05T00:59:18Z;Nathália;3633.46;114691787;Argentina; +2018-12-05T00:37:56Z;Júlio;1050.49;115506096;Argentina; +2018-12-05T00:34:01Z;Nathália;1200.816;115194896;Argentina; +2018-12-05T00:31:45Z;nathalia;2635.439;115861147;Argentina; +2018-12-05T00:17:56Z;Júlio;1497.275;115444094;Argentina; +2018-12-05T00:06:32Z;Nathália;2601.747;115070564;Argentina; +2018-12-05T00:00:29Z;Armando;2446.891;114693675;Argentina; +2018-12-04T23:30:57Z;Armando;231.5363;115865730;Argentina; +2018-12-04T23:23:21Z;Ana;3749.879;115502819;Argentina; +2018-12-04T23:14:12Z;Eduardo;441.329;115159739;Argentina; +2018-12-04T23:04:51Z;Eduardo;2573.398;114390529;Argentina; +2018-12-04T23:01:22Z;Júlio Cesar;772.8914;115456230;Argentina; +2018-12-04T20:51:58Z;Eduardo;588.8684;115495406;Argentina; +2018-12-04T20:24:37Z;Nathália;2155.283;116235517;Argentina; +2018-12-04T20:03:56Z;nathalia;1206.825;115443935;Argentina; +2018-12-04T19:45:10Z;Eduardo;536.4108;116185454;Argentina; +2018-12-04T19:35:39Z;Nathália;2236.833;115878059;Argentina; +2018-12-04T19:20:26Z;Eduardo;703.8993;114362005;Argentina; +2018-12-04T18:47:37Z;Nathália;756.1542;116032590;Argentina; +2018-12-04T18:34:58Z;Júlio Cesar;2600.195;115959055;Argentina; +2018-12-04T18:19:35Z;nathalia;30.09758;114474349;Argentina; +2018-12-04T17:38:43Z;Sandra;977.4636;115763392;Argentina; +2018-12-04T17:35:55Z;nathalia;3168.28;114467159;Argentina; +2018-12-04T17:17:26Z;Júlio Cesar;1856.078;115903921;Argentina; +2018-12-04T16:44:00Z;Júlio Cesar;219.5209;114954500;Argentina; +2018-12-04T16:36:19Z;Ana;1327.654;115716392;Argentina; +2018-12-04T16:33:27Z;Armando;7.517018;116204496;Argentina; +2018-12-04T16:19:46Z;Armando;1695.4;115713212;Argentina; +2018-12-04T15:50:15Z;Júlio;1853.718;115305060;Argentina; +2018-12-04T15:30:17Z;Eduardo;1727.597;115149020;Argentina; +2018-12-04T15:25:10Z;Júlio;234.9213;115137953;Argentina; +2018-12-04T15:23:59Z;Júlio Cesar;204.66;115083592;Argentina; +2018-12-04T15:18:49Z;Armando;732.0641;115877853;Argentina; +2018-12-04T15:05:19Z;Júlio Cesar;601.7391;115602826;Argentina; +2018-12-04T14:19:25Z;Júlio Cesar;275.374;116316582;Argentina; +2018-12-04T13:45:17Z;Ana;593.7932;114922530;Argentina; +2018-12-04T13:32:13Z;Eduardo;4660.241;115307230;Argentina; +2018-12-04T12:23:28Z;Eduardo;2140.483;114490698;Argentina; +2018-12-04T12:11:05Z;Nathália;526.253;114975592;Argentina; +2018-12-04T11:53:57Z;Sandra;1015.355;115030355;Argentina; +2018-12-04T11:49:11Z;nathalia;1696.919;115925919;Argentina; +2018-12-04T11:32:10Z;Eduardo;2806.147;114645552;Argentina; +2018-12-04T11:21:30Z;Júlio Cesar;2511.937;115534520;Argentina; +2018-12-04T11:16:07Z;Júlio Cesar;2275.844;115035465;Argentina; +2018-12-04T10:51:08Z;Nathália;293.2121;115682719;Argentina; +2018-12-04T10:40:02Z;Nathália;1117.161;115163923;Argentina; +2018-12-04T10:33:33Z;Sandra;437.7294;115714525;Argentina; +2018-12-04T10:21:12Z;Sandra;558.0683;114445726;Argentina; +2018-12-04T09:33:24Z;Eduardo;2409.044;114897338;Argentina; +2018-12-04T09:03:30Z;Eduardo;3672.954;114573645;Argentina; +2018-12-04T08:50:16Z;Armando;495.5908;115068112;Argentina; +2018-12-04T08:33:20Z;Ana;3259.153;115670596;Argentina; +2018-12-04T08:24:01Z;Júlio;829.1136;114311328;Argentina; +2018-12-04T08:20:12Z;Ana;1366.917;115005523;Argentina; +2018-12-04T07:52:29Z;Júlio Cesar;2654.453;114436400;Argentina; +2018-12-04T07:33:22Z;Armando;3705.454;115324747;Argentina; +2018-12-04T07:26:28Z;Júlio;1379.528;115395442;Argentina; +2018-12-04T07:12:08Z;Júlio;144.2785;114486168;Argentina; +2018-12-04T07:11:50Z;nathalia;647.2285;114256024;Argentina; +2018-12-04T07:10:55Z;nathalia;165.8206;114649275;Argentina; +2018-12-04T07:09:16Z;Júlio Cesar;863.6672;115458168;Argentina; +2018-12-04T07:08:54Z;Armando;754.0025;115082310;Argentina; +2018-12-04T07:02:24Z;Júlio;3517.705;116193678;Argentina; +2018-12-04T06:36:39Z;nathalia;434.3045;114850717;Argentina; +2018-12-04T06:34:32Z;Sandra;1078.794;115315930;Argentina; +2018-12-04T05:56:51Z;Sandra;1276.747;116278832;Argentina; +2018-12-04T05:53:31Z;nathalia;478.7358;115481932;Argentina; +2018-12-04T05:52:22Z;Ana;2212.443;115483641;Argentina; +2018-12-04T05:50:50Z;Júlio;21.85994;114744966;Argentina; +2018-12-04T05:47:59Z;Ana;303.8893;115250248;Argentina; +2018-12-04T05:46:39Z;Júlio Cesar;1041.051;116349352;Argentina; +2018-12-04T05:34:13Z;Sandra;879.2497;115451266;Argentina; +2018-12-04T05:10:52Z;Júlio Cesar;874.3951;115729631;Argentina; +2018-12-04T05:07:15Z;Júlio Cesar;1800.699;116131937;Argentina; +2018-12-04T05:06:27Z;Júlio;1097.258;114209005;Argentina; +2018-12-04T04:23:33Z;Júlio;90.77291;114810303;Argentina; +2018-12-04T04:22:39Z;Ana;3400.16;116116564;Argentina; +2018-12-04T03:52:56Z;Ana;775.7335;116322293;Argentina; +2018-12-04T03:50:31Z;Armando;2473.716;114466774;Argentina; +2018-12-04T03:48:13Z;Nathália;354.9763;115515826;Argentina; +2018-12-04T03:34:44Z;Sandra;128.9297;115852444;Argentina; +2018-12-04T03:15:46Z;Ana;64.6756;116075642;Argentina; +2018-12-04T03:15:07Z;Eduardo;406.2166;116296850;Argentina; +2018-12-04T02:58:19Z;Júlio Cesar;1838.581;114447483;Argentina; +2018-12-04T02:51:53Z;Eduardo;2377.909;115919174;Argentina; +2018-12-04T01:54:32Z;nathalia;1587.033;116340098;Argentina; +2018-12-04T01:46:30Z;Armando;1653.436;115490375;Argentina; +2018-12-04T01:26:24Z;Ana;745.86;115339839;Argentina; +2018-12-04T01:22:29Z;Eduardo;41.74836;115828054;Argentina; +2018-12-04T01:08:18Z;Sandra;3125.124;116117953;Argentina; +2018-12-04T00:54:57Z;Armando;614.0077;114741672;Argentina; +2018-12-04T00:54:14Z;nathalia;1605.621;116109457;Argentina; +2018-12-04T00:52:27Z;Armando;2109.344;114703744;Argentina; +2018-12-04T00:38:46Z;Eduardo;1144.778;115233147;Argentina; +2018-12-04T00:36:32Z;Nathália;503.9609;114527871;Argentina; +2018-12-04T00:34:05Z;Júlio;2969.67;116306169;Argentina; +2018-12-04T00:05:30Z;Sandra;649.0305;115529202;Argentina; +2018-12-04T00:05:24Z;Armando;1662.516;114594522;Argentina; +2018-12-04T00:04:31Z;Júlio;5058.184;114356568;Argentina; +2018-12-04T00:02:19Z;Júlio;2719.109;114899738;Argentina; +2018-12-03T23:47:23Z;nathalia;1537.746;115095215;Argentina; +2018-12-03T23:27:46Z;Sandra;3131.75;115145735;Argentina; +2018-12-03T22:43:36Z;Eduardo;2440.468;116152821;Argentina; +2018-12-03T22:14:57Z;nathalia;400.7977;115229186;Argentina; +2018-12-03T22:02:32Z;nathalia;1679.927;115550273;Argentina; +2018-12-03T21:44:36Z;Sandra;711.3317;115745134;Argentina; +2018-12-03T21:28:38Z;Sandra;464.7053;114759660;Argentina; +2018-12-03T21:26:57Z;Júlio;751.2916;115660226;Argentina; +2018-12-03T20:49:21Z;nathalia;2681.158;114474099;Argentina; +2018-12-03T20:30:04Z;Sandra;3124.398;114905467;Argentina; +2018-12-03T20:27:01Z;Eduardo;1371.47;114251000;Argentina; +2018-12-03T20:18:20Z;Júlio Cesar;1070.274;115353403;Argentina; +2018-12-03T19:22:42Z;nathalia;2833.29;115119651;Argentina; +2018-12-03T19:06:11Z;Nathália;1140.641;116390691;Argentina; +2018-12-03T18:57:10Z;Armando;1908.253;116059275;Argentina; +2018-12-03T18:54:21Z;Júlio;2936.438;114355613;Argentina; +2018-12-03T18:39:57Z;Sandra;722.7239;115400725;Argentina; +2018-12-03T18:29:54Z;Armando;615.5093;116028644;Argentina; +2018-12-03T18:24:31Z;Sandra;35.49019;115328209;Argentina; +2018-12-03T18:18:30Z;Nathália;3511.161;115622457;Argentina; +2018-12-03T18:14:14Z;nathalia;1995.904;115458941;Argentina; +2018-12-03T18:09:22Z;Nathália;913.8065;115096815;Argentina; +2018-12-03T17:46:37Z;Sandra;1857.134;115602022;Argentina; +2018-12-03T17:25:40Z;Eduardo;1290.883;115727342;Argentina; +2018-12-03T17:24:18Z;Eduardo;219.4658;115700824;Argentina; +2018-12-03T16:52:51Z;Sandra;2488.222;114688940;Argentina; +2018-12-03T16:47:05Z;Sandra;1846.092;114526403;Argentina; +2018-12-03T16:41:09Z;nathalia;178.9587;116320339;Argentina; +2018-12-03T16:38:46Z;Sandra;39.16889;115407489;Argentina; +2018-12-03T16:35:55Z;Sandra;180.2967;114444057;Argentina; +2018-12-03T15:51:50Z;Ana;2422.882;115505303;Argentina; +2018-12-03T15:45:28Z;Júlio Cesar;583.4672;115034689;Argentina; +2018-12-03T14:53:08Z;Júlio;27.60187;114919344;Argentina; +2018-12-03T14:49:53Z;Júlio Cesar;1185.057;115029771;Argentina; +2018-12-03T14:42:28Z;Sandra;65.12809;115929140;Argentina; +2018-12-03T14:26:20Z;Nathália;574.7341;115355943;Argentina; +2018-12-03T13:56:51Z;Júlio;342.3776;114389964;Argentina; +2018-12-03T13:31:11Z;Sandra;1118.707;114530272;Argentina; +2018-12-03T12:54:59Z;Júlio;2450.082;115784499;Argentina; +2018-12-03T12:35:38Z;Ana;48.1421;115772335;Argentina; +2018-12-03T12:26:51Z;Júlio;1144.508;114646299;Argentina; +2018-12-03T12:20:26Z;Eduardo;476.4846;115130664;Argentina; +2018-12-03T12:20:22Z;Nathália;1286.547;115026689;Argentina; +2018-12-03T12:18:46Z;Sandra;1178.45;116234108;Argentina; +2018-12-03T11:40:47Z;nathalia;1567.18;115151398;Argentina; +2018-12-03T11:34:31Z;Júlio;28.00889;115758772;Argentina; +2018-12-03T11:16:21Z;Sandra;4551.141;116105238;Argentina; +2018-12-03T11:15:45Z;Júlio Cesar;122.2133;114544569;Argentina; +2018-12-03T11:10:21Z;Eduardo;1820.987;115569981;Argentina; +2018-12-03T10:55:24Z;Eduardo;1081.007;115359081;Argentina; +2018-12-03T10:46:49Z;Sandra;1701.878;114567910;Argentina; +2018-12-03T10:25:18Z;Nathália;288.2905;114731770;Argentina; +2018-12-03T09:59:07Z;Ana;2211.903;114622204;Argentina; +2018-12-03T09:54:35Z;Sandra;2218.079;115549651;Argentina; +2018-12-03T09:43:34Z;nathalia;3736.31;115517409;Argentina; +2018-12-03T08:36:50Z;Ana;618.7846;116324686;Argentina; +2018-12-03T08:33:19Z;Ana;100.565;114923021;Argentina; +2018-12-03T08:26:02Z;Nathália;129.1703;114940149;Argentina; +2018-12-03T08:20:29Z;nathalia;872.5223;114741166;Argentina; +2018-12-03T07:51:20Z;Sandra;3523.743;114565093;Argentina; +2018-12-03T07:43:16Z;Eduardo;872.9588;115693872;Argentina; +2018-12-03T07:14:47Z;Júlio;74.8114;115817817;Argentina; +2018-12-03T07:09:43Z;Ana;53.37102;115199818;Argentina; +2018-12-03T07:08:40Z;Nathália;1221.885;115243874;Argentina; +2018-12-03T07:05:33Z;Júlio;2122.569;115573156;Argentina; +2018-12-03T06:59:43Z;Júlio;980.1153;115487764;Argentina; +2018-12-03T06:30:16Z;Armando;1047.869;115527453;Argentina; +2018-12-03T06:22:16Z;Ana;2139.868;114425906;Argentina; +2018-12-03T06:17:20Z;Eduardo;61.22747;114279813;Argentina; +2018-12-03T06:06:12Z;Sandra;1022.745;115980173;Argentina; +2018-12-03T05:33:37Z;Júlio Cesar;1871.986;115526819;Argentina; +2018-12-03T05:30:45Z;Armando;2726.336;115166966;Argentina; +2018-12-03T05:20:50Z;Ana;1237.239;115255198;Argentina; +2018-12-03T04:48:10Z;nathalia;1598.104;115858224;Argentina; +2018-12-03T04:26:34Z;nathalia;2043.411;115024421;Argentina; +2018-12-03T03:53:13Z;nathalia;647.3786;115509633;Argentina; +2018-12-03T03:04:13Z;Eduardo;1664.129;115007254;Argentina; +2018-12-03T02:38:00Z;Júlio;820.1561;115100438;Argentina; +2018-12-03T02:22:37Z;Eduardo;1637.462;115522506;Argentina; +2018-12-03T00:33:13Z;Ana;2600.648;115589815;Argentina; +2018-12-03T00:25:06Z;Ana;1795.111;115697167;Argentina; +2018-12-03T00:24:48Z;Eduardo;1792.283;114228575;Argentina; +2018-12-03T00:11:05Z;Nathália;1108.139;115292454;Argentina; +2018-12-03T00:04:46Z;Ana;32.25969;116352533;Argentina; +2018-12-02T23:47:19Z;Armando;865.9511;115747099;Argentina; +2018-12-02T23:36:28Z;Júlio Cesar;1307.011;114399712;Argentina; +2018-12-02T23:34:11Z;Ana;555.3898;114899123;Argentina; +2018-12-02T23:27:05Z;Júlio Cesar;2535.982;115713823;Argentina; +2018-12-02T23:21:44Z;Júlio Cesar;893.3708;115501531;Argentina; +2018-12-02T23:14:55Z;Júlio Cesar;615.7089;114431631;Argentina; +2018-12-02T22:58:48Z;Sandra;505.2148;115614607;Argentina; +2018-12-02T22:55:23Z;Armando;1635.827;115016693;Argentina; +2018-12-02T22:50:18Z;Júlio;1815.794;115867890;Argentina; +2018-12-02T22:43:17Z;Armando;1196.598;115381184;Argentina; +2018-12-02T22:40:13Z;Júlio Cesar;2520.944;114733233;Argentina; +2018-12-02T22:20:34Z;Sandra;381.6458;116311043;Argentina; +2018-12-02T22:19:25Z;Armando;103.6519;115184925;Argentina; +2018-12-02T22:16:55Z;Júlio;2044.076;114672002;Argentina; +2018-12-02T22:11:53Z;Ana;88.63403;116074102;Argentina; +2018-12-02T22:08:28Z;Júlio Cesar;265.594;115775308;Argentina; +2018-12-02T21:36:33Z;nathalia;291.2572;114941500;Argentina; +2018-12-02T21:25:51Z;Júlio;773.1611;116087430;Argentina; +2018-12-02T20:57:45Z;Nathália;1392.296;115823693;Argentina; +2018-12-02T20:43:26Z;Armando;2204.236;115901705;Argentina; +2018-12-02T20:34:49Z;Júlio;5413.935;115190458;Argentina; +2018-12-02T20:30:20Z;Nathália;393.2266;115762766;Argentina; +2018-12-02T20:10:27Z;Ana;1197.182;116036784;Argentina; +2018-12-02T19:46:26Z;Eduardo;2252.369;115343600;Argentina; +2018-12-02T19:44:54Z;Nathália;2358.414;115851203;Argentina; +2018-12-02T19:00:35Z;Ana;248.463;115378266;Argentina; +2018-12-02T18:32:44Z;Sandra;476.9269;116341994;Argentina; +2018-12-02T17:21:55Z;Nathália;254.6274;114746901;Argentina; +2018-12-02T17:20:13Z;Júlio Cesar;414.2557;115209957;Argentina; +2018-12-02T17:10:15Z;Eduardo;1985.725;115949084;Argentina; +2018-12-02T16:45:54Z;Sandra;1616.299;115942003;Argentina; +2018-12-02T16:14:48Z;Armando;3842.044;115738019;Argentina; +2018-12-02T15:29:20Z;Eduardo;1020.518;115040237;Argentina; +2018-12-02T14:51:50Z;Ana;1306.145;114263701;Argentina; +2018-12-02T14:26:31Z;Eduardo;449.3448;116100933;Argentina; +2018-12-02T14:22:12Z;Júlio Cesar;4028.128;114960947;Argentina; +2018-12-02T14:11:59Z;Sandra;667.3203;114291150;Argentina; +2018-12-02T14:03:22Z;Júlio Cesar;1357.876;114403925;Argentina; +2018-12-02T13:53:24Z;Nathália;1892.717;115681646;Argentina; +2018-12-02T13:50:35Z;Júlio Cesar;1127.472;116331253;Argentina; +2018-12-02T13:43:35Z;Ana;659.8594;115643935;Argentina; +2018-12-02T13:21:23Z;Armando;796.8996;115976645;Argentina; +2018-12-02T12:46:16Z;Júlio Cesar;828.5468;114284821;Argentina; +2018-12-02T12:39:00Z;Armando;2478.469;114434618;Argentina; +2018-12-02T12:36:49Z;Armando;10.26639;114316498;Argentina; +2018-12-02T12:35:00Z;Nathália;491.5219;114498440;Argentina; +2018-12-02T12:28:15Z;Júlio Cesar;3352.08;115371611;Argentina; +2018-12-02T12:26:21Z;Eduardo;2374.896;116350285;Argentina; +2018-12-02T12:25:10Z;Júlio;2396.248;116095632;Argentina; +2018-12-02T12:18:58Z;Armando;3406.903;114500048;Argentina; +2018-12-02T12:11:11Z;nathalia;1510.886;114484786;Argentina; +2018-12-02T12:06:32Z;nathalia;1053.332;115978663;Argentina; +2018-12-02T11:59:11Z;Júlio Cesar;2263.322;115604337;Argentina; +2018-12-02T11:26:19Z;Eduardo;563.1796;115038761;Argentina; +2018-12-02T10:50:17Z;Eduardo;996.8269;114582571;Argentina; +2018-12-02T10:23:58Z;Júlio;1850.818;114764139;Argentina; +2018-12-02T10:17:35Z;nathalia;2761.095;114509667;Argentina; +2018-12-02T09:46:24Z;Eduardo;2860.855;115224803;Argentina; +2018-12-02T09:43:26Z;Júlio Cesar;428.599;115933240;Argentina; +2018-12-02T09:22:22Z;Júlio;1971.244;114822569;Argentina; +2018-12-02T09:20:17Z;Ana;1592.525;115389913;Argentina; +2018-12-02T09:13:14Z;nathalia;559.1595;116087902;Argentina; +2018-12-02T07:44:41Z;Nathália;303.7809;115821916;Argentina; +2018-12-02T07:27:05Z;Nathália;355.7779;114721854;Argentina; +2018-12-02T07:13:46Z;Júlio Cesar;1720.816;115758789;Argentina; +2018-12-02T07:09:30Z;Ana;1813.801;114998964;Argentina; +2018-12-02T06:45:30Z;Júlio;521.2174;115591159;Argentina; +2018-12-02T06:13:24Z;Júlio Cesar;1627.182;116247125;Argentina; +2018-12-02T05:48:06Z;Ana;4425.395;114930047;Argentina; +2018-12-02T05:44:31Z;Armando;4128.638;116132549;Argentina; +2018-12-02T05:43:23Z;Sandra;1309.281;114340292;Argentina; +2018-12-02T05:20:09Z;nathalia;287.1188;115113326;Argentina; +2018-12-02T05:12:58Z;Eduardo;3955.743;116100162;Argentina; +2018-12-02T05:00:35Z;nathalia;2593.647;115678948;Argentina; +2018-12-02T04:51:28Z;nathalia;15.9209;115583893;Argentina; +2018-12-02T04:51:24Z;Ana;1750.472;115077012;Argentina; +2018-12-02T04:45:02Z;nathalia;87.0347;114917586;Argentina; +2018-12-02T04:31:31Z;Sandra;911.6051;114772623;Argentina; +2018-12-02T04:31:30Z;Sandra;521.5486;115211888;Argentina; +2018-12-02T04:15:36Z;Nathália;319.5926;114351725;Argentina; +2018-12-02T04:12:46Z;Júlio;1829.694;114460694;Argentina; +2018-12-02T03:29:27Z;Eduardo;3436.289;114775587;Argentina; +2018-12-02T03:16:28Z;Sandra;2493.788;116096716;Argentina; +2018-12-02T03:09:14Z;Júlio;597.3451;114531914;Argentina; +2018-12-02T03:02:19Z;Armando;791.9601;115252093;Argentina; +2018-12-02T02:41:53Z;Eduardo;59.98733;114664483;Argentina; +2018-12-02T02:36:10Z;Ana;2036.257;114490528;Argentina; +2018-12-02T02:15:55Z;Sandra;423.5019;115698546;Argentina; +2018-12-02T02:13:01Z;Júlio Cesar;128.9215;114291480;Argentina; +2018-12-02T01:52:05Z;Júlio Cesar;976.2389;116201581;Argentina; +2018-12-02T01:48:01Z;Júlio;99.04927;114984734;Argentina; +2018-12-02T01:46:35Z;Júlio;2845.154;114627085;Argentina; +2018-12-02T01:31:06Z;Eduardo;1137.263;114597962;Argentina; +2018-12-02T01:25:17Z;Júlio Cesar;1015.234;116334209;Argentina; +2018-12-02T01:01:15Z;nathalia;240.9052;115184244;Argentina; +2018-12-02T00:59:44Z;nathalia;1186.277;114906140;Argentina; +2018-12-02T00:24:27Z;Nathália;1470.886;114336106;Argentina; +2018-12-01T23:17:31Z;nathalia;577.4668;114243980;Argentina; +2018-12-01T23:09:51Z;Sandra;395.9681;115958206;Argentina; +2018-12-01T22:56:47Z;nathalia;552.5413;114306220;Argentina; +2018-12-01T22:30:22Z;Armando;346.2899;115716617;Argentina; +2018-12-01T22:28:31Z;Armando;952.8055;114529954;Argentina; +2018-12-01T21:55:33Z;Sandra;202.7341;115882677;Argentina; +2018-12-01T21:51:36Z;Eduardo;348.5186;115258973;Argentina; +2018-12-01T21:35:29Z;Júlio Cesar;415.0371;115531004;Argentina; +2018-12-01T21:29:36Z;Nathália;2353.978;115840291;Argentina; +2018-12-01T21:08:44Z;Eduardo;196.0631;115290476;Argentina; +2018-12-01T21:04:36Z;Armando;1128.145;116356775;Argentina; +2018-12-01T20:39:16Z;Armando;2565.454;115259687;Argentina; +2018-12-01T20:39:11Z;Eduardo;51.12836;115958432;Argentina; +2018-12-01T20:27:57Z;Eduardo;731.7466;115870392;Argentina; +2018-12-01T20:27:44Z;nathalia;1727.35;115925821;Argentina; +2018-12-01T20:08:20Z;Sandra;1291.477;115634841;Argentina; +2018-12-01T19:31:48Z;Ana;352.5668;115668568;Argentina; +2018-12-01T19:29:29Z;Nathália;1700.257;114383365;Argentina; +2018-12-01T18:41:04Z;Sandra;569.972;115078901;Argentina; +2018-12-01T18:22:04Z;Eduardo;2077.384;116128487;Argentina; +2018-12-01T18:21:17Z;Júlio;2289.125;114957359;Argentina; +2018-12-01T18:10:57Z;Sandra;368.2817;114859331;Argentina; +2018-12-01T18:02:57Z;Eduardo;88.63436;116090076;Argentina; +2018-12-01T17:58:38Z;Eduardo;195.8808;114891671;Argentina; +2018-12-01T17:53:49Z;Júlio;2247.383;114867315;Argentina; +2018-12-01T17:38:21Z;Ana;2404.14;114643545;Argentina; +2018-12-01T17:08:44Z;Armando;4758.525;114803908;Argentina; +2018-12-01T16:52:42Z;Júlio;972.7297;114378709;Argentina; +2018-12-01T16:40:24Z;Sandra;1095.2;116063312;Argentina; +2018-12-01T16:27:50Z;Nathália;1691.085;114906197;Argentina; +2018-12-01T16:11:38Z;Ana;788.7845;114965663;Argentina; +2018-12-01T16:01:20Z;Júlio;640.6358;115826525;Argentina; +2018-12-01T15:49:35Z;Eduardo;3562.739;115479835;Argentina; +2018-12-01T15:21:30Z;nathalia;754.1962;116094756;Argentina; +2018-12-01T15:15:04Z;Júlio;168.645;116345736;Argentina; +2018-12-01T14:57:06Z;Ana;2925.427;115849689;Argentina; +2018-12-01T14:49:58Z;Armando;540.1937;114775313;Argentina; +2018-12-01T14:14:14Z;Nathália;2629.785;115374767;Argentina; +2018-12-01T14:13:30Z;Júlio Cesar;131.6159;114808450;Argentina; +2018-12-01T14:12:13Z;Júlio Cesar;686.8677;114824362;Argentina; +2018-12-01T14:00:55Z;Ana;2379.213;114798200;Argentina; +2018-12-01T13:03:34Z;Sandra;2043.539;115291276;Argentina; +2018-12-01T13:02:59Z;Ana;1549.662;114871443;Argentina; +2018-12-01T12:53:56Z;Júlio Cesar;2233.592;116328811;Argentina; +2018-12-01T12:45:54Z;Armando;424.9369;114956999;Argentina; +2018-12-01T12:44:17Z;Nathália;463.6072;114493289;Argentina; +2018-12-01T12:01:49Z;Nathália;3087.692;116118304;Argentina; +2018-12-01T11:52:24Z;Sandra;2030.602;114306153;Argentina; +2018-12-01T11:34:11Z;Ana;2762.244;116168012;Argentina; +2018-12-01T11:30:20Z;Ana;279.0793;115617745;Argentina; +2018-12-01T11:25:42Z;Nathália;2858.842;115237665;Argentina; +2018-12-01T11:22:57Z;Sandra;130.9528;115165680;Argentina; +2018-12-01T11:17:25Z;Júlio;1954.767;115657914;Argentina; +2018-12-01T11:06:18Z;Sandra;1766.885;115510836;Argentina; +2018-12-01T11:03:33Z;nathalia;27.16219;115360003;Argentina; +2018-12-01T10:53:00Z;Nathália;41.21212;114767456;Argentina; +2018-12-01T10:45:27Z;Júlio;2384.766;115200153;Argentina; +2018-12-01T10:42:15Z;Armando;582.6196;115004333;Argentina; +2018-12-01T10:41:24Z;Armando;1218.296;115008317;Argentina; +2018-12-01T10:15:54Z;Júlio Cesar;2219.25;115467886;Argentina; +2018-12-01T10:07:01Z;Ana;1034.364;115082096;Argentina; +2018-12-01T09:57:39Z;Sandra;1469.094;114939948;Argentina; +2018-12-01T09:56:36Z;Eduardo;778.3011;114534784;Argentina; +2018-12-01T09:30:12Z;Eduardo;2330.46;115646197;Argentina; +2018-12-01T09:24:44Z;Júlio;2821.108;115799713;Argentina; +2018-12-01T09:07:59Z;Armando;527.4416;114284266;Argentina; +2018-12-01T09:04:25Z;Nathália;584.4833;114495018;Argentina; +2018-12-01T09:03:12Z;Nathália;541.2371;116372886;Argentina; +2018-12-01T08:59:48Z;Armando;2715.132;114384701;Argentina; +2018-12-01T08:48:08Z;Nathália;2510.838;114272144;Argentina; +2018-12-01T08:40:29Z;Sandra;1067.624;114302260;Argentina; +2018-12-01T08:20:08Z;Eduardo;2763.117;115653389;Argentina; +2018-12-01T08:15:43Z;Eduardo;1173.489;114851012;Argentina; +2018-12-01T08:14:40Z;Armando;240.0547;115974862;Argentina; +2018-12-01T08:07:03Z;Armando;983.7196;116053923;Argentina; +2018-12-01T08:04:04Z;Armando;139.9285;114372685;Argentina; +2018-12-01T07:58:31Z;Nathália;798.3067;115378114;Argentina; +2018-12-01T07:31:32Z;nathalia;2026.068;115722466;Argentina; +2018-12-01T06:27:03Z;nathalia;2402.165;114280203;Argentina; +2018-12-01T05:37:19Z;nathalia;2275.725;115171747;Argentina; +2018-12-01T05:36:55Z;Júlio Cesar;241.0071;115325235;Argentina; +2018-12-01T05:22:41Z;nathalia;3017.14;114706861;Argentina; +2018-12-01T05:02:30Z;Júlio Cesar;4819.897;116261637;Argentina; +2018-12-01T04:45:50Z;Sandra;1420.674;115914068;Argentina; +2018-12-01T04:42:11Z;nathalia;431.6952;114950058;Argentina; +2018-12-01T04:25:44Z;Armando;2355.341;115137650;Argentina; +2018-12-01T04:24:40Z;Eduardo;163.645;114205544;Argentina; +2018-12-01T04:22:40Z;nathalia;1470.585;116133350;Argentina; +2018-12-01T04:04:53Z;Júlio;1555.2;115256843;Argentina; +2018-12-01T03:26:43Z;Nathália;1633.554;114248957;Argentina; +2018-12-01T03:26:17Z;Sandra;96.84376;114633417;Argentina; +2018-12-01T03:19:55Z;Nathália;769.3656;114503057;Argentina; +2018-12-01T03:09:58Z;Armando;283.1021;115728883;Argentina; +2018-12-01T03:02:44Z;Sandra;1136.289;114883780;Argentina; +2018-12-01T02:58:53Z;nathalia;3107.263;116280903;Argentina; +2018-12-01T02:39:23Z;Nathália;1472.477;116355615;Argentina; +2018-12-01T02:03:15Z;Sandra;25.8869;114904311;Argentina; +2018-12-01T01:48:17Z;Eduardo;1350.354;114584796;Argentina; +2018-12-01T01:32:42Z;Ana;128.035;116008267;Argentina; +2018-12-01T01:05:31Z;Sandra;1179.922;114421555;Argentina; +2018-12-01T00:56:31Z;Eduardo;2884.491;116315157;Argentina; +2018-12-01T00:50:21Z;Nathália;2961.192;115750949;Argentina; +2018-12-01T00:48:56Z;Nathália;1287.315;114834013;Argentina; +2018-12-01T00:24:17Z;Eduardo;2451.184;115508894;Argentina; +2018-11-30T23:57:54Z;Armando;1157.844;116155132;Argentina; +2018-11-30T23:20:04Z;Armando;2168.555;114285877;Argentina; +2018-11-30T23:18:42Z;Sandra;561.8723;116271536;Argentina; +2018-11-30T23:11:15Z;Júlio;1603.046;116206730;Argentina; +2018-11-30T22:40:22Z;nathalia;3604.468;115816135;Argentina; +2018-11-30T22:36:39Z;Armando;926.8318;114226666;Argentina; +2018-11-30T22:16:04Z;Eduardo;107.0856;114424955;Argentina; +2018-11-30T21:58:08Z;Armando;3836.365;114206313;Argentina; +2018-11-30T21:45:54Z;Ana;243.496;115149179;Argentina; +2018-11-30T21:38:39Z;nathalia;1338.902;116203394;Argentina; +2018-11-30T21:15:52Z;Ana;179.7499;114219082;Argentina; +2018-11-30T20:25:40Z;Sandra;541.2346;116149507;Argentina; +2018-11-30T20:21:56Z;nathalia;1998.499;114347296;Argentina; +2018-11-30T20:19:36Z;Júlio Cesar;327.8192;115384046;Argentina; +2018-11-30T20:15:45Z;Júlio Cesar;876.0936;114985027;Argentina; +2018-11-30T20:04:10Z;Júlio;252.8308;115890495;Argentina; +2018-11-30T19:54:17Z;Eduardo;1423.076;114777529;Argentina; +2018-11-30T19:52:22Z;Ana;2044.421;114788881;Argentina; +2018-11-30T19:24:34Z;Sandra;3030.264;115578311;Argentina; +2018-11-30T19:16:31Z;Nathália;2699.734;115355453;Argentina; +2018-11-30T19:12:19Z;Ana;3115.972;114305958;Argentina; +2018-11-30T19:00:38Z;nathalia;87.56483;114438784;Argentina; +2018-11-30T18:00:58Z;Nathália;850.0462;114641817;Argentina; +2018-11-30T17:50:40Z;Eduardo;2449.202;115842614;Argentina; +2018-11-30T17:21:39Z;Ana;1165.195;115877049;Argentina; +2018-11-30T16:51:02Z;Nathália;723.1678;115162492;Argentina; +2018-11-30T16:49:43Z;Júlio Cesar;4569.789;115653653;Argentina; +2018-11-30T16:38:47Z;Ana;2711.546;115340059;Argentina; +2018-11-30T16:01:42Z;Ana;788.5222;114929342;Argentina; +2018-11-30T15:55:16Z;Eduardo;346.9147;114410375;Argentina; +2018-11-30T15:54:45Z;Júlio;1260.621;115303203;Argentina; +2018-11-30T15:46:58Z;Eduardo;300.2193;115706102;Argentina; +2018-11-30T15:32:47Z;Eduardo;872.2564;115966520;Argentina; +2018-11-30T15:04:44Z;nathalia;278.7676;115998225;Argentina; +2018-11-30T14:48:36Z;Júlio Cesar;883.9856;114884073;Argentina; +2018-11-30T14:37:45Z;Júlio Cesar;826.9802;114684122;Argentina; +2018-11-30T14:36:55Z;Sandra;723.9306;114708915;Argentina; +2018-11-30T14:32:45Z;Nathália;1871.577;116105298;Argentina; +2018-11-30T14:06:52Z;Nathália;3645.393;114792816;Argentina; +2018-11-30T14:06:32Z;Júlio;399.015;115484395;Argentina; +2018-11-30T13:54:57Z;Júlio;14.23021;115704556;Argentina; +2018-11-30T13:46:34Z;nathalia;3190.509;116381724;Argentina; +2018-11-30T12:37:02Z;Eduardo;201.7534;115999265;Argentina; +2018-11-30T12:13:06Z;Júlio Cesar;365.7493;115557879;Argentina; +2018-11-30T12:08:33Z;Sandra;545.3981;116300797;Argentina; +2018-11-30T11:43:03Z;nathalia;3756.932;115103432;Argentina; +2018-11-30T11:02:30Z;Eduardo;79.57708;115551289;Argentina; +2018-11-30T10:43:23Z;Ana;1931.085;115325031;Argentina; +2018-11-30T10:39:04Z;Júlio;344.7298;115734019;Argentina; +2018-11-30T10:30:23Z;Nathália;3271.114;115677973;Argentina; +2018-11-30T10:28:02Z;Júlio Cesar;3951.35;115398586;Argentina; +2018-11-30T10:16:28Z;nathalia;1342.241;115938105;Argentina; +2018-11-30T10:11:01Z;Nathália;597.1422;116323140;Argentina; +2018-11-30T10:06:02Z;Eduardo;255.0263;116202797;Argentina; +2018-11-30T09:42:53Z;nathalia;481.8823;114600498;Argentina; +2018-11-30T09:42:19Z;Eduardo;1668.506;114867009;Argentina; +2018-11-30T09:12:08Z;Sandra;110.4089;115163155;Argentina; +2018-11-30T09:07:13Z;Armando;2823.74;116000306;Argentina; +2018-11-30T08:38:48Z;Júlio Cesar;669.1238;115392356;Argentina; +2018-11-30T08:16:52Z;Nathália;117.3314;116035226;Argentina; +2018-11-30T07:49:06Z;Eduardo;1461.926;115926630;Argentina; +2018-11-30T07:32:32Z;Eduardo;1114.503;115070906;Argentina; +2018-11-30T07:29:06Z;nathalia;1390.099;115613128;Argentina; +2018-11-30T07:09:54Z;nathalia;5619.847;115005190;Argentina; +2018-11-30T07:02:51Z;Eduardo;778.9048;114650774;Argentina; +2018-11-30T06:40:50Z;Nathália;136.5106;114724159;Argentina; +2018-11-30T06:37:52Z;Ana;2323.901;115232866;Argentina; +2018-11-30T06:30:16Z;Júlio;184.0015;114359913;Argentina; +2018-11-30T05:05:59Z;Eduardo;213.5252;115861397;Argentina; +2018-11-30T04:39:16Z;nathalia;1437.112;115781210;Argentina; +2018-11-30T04:17:33Z;Nathália;2933.682;115494892;Argentina; +2018-11-30T03:35:53Z;nathalia;477.2104;114717598;Argentina; +2018-11-30T01:26:32Z;Sandra;628.8601;115474740;Argentina; +2018-11-30T01:24:46Z;Júlio Cesar;1368.297;115097299;Argentina; +2018-11-30T01:21:54Z;Armando;3218.463;114799318;Argentina; +2018-11-30T00:51:42Z;Eduardo;96.86764;114440617;Argentina; +2018-11-30T00:48:42Z;Sandra;1583.514;114891474;Argentina; +2018-11-30T00:36:14Z;Armando;1507.638;115328298;Argentina; +2018-11-30T00:28:31Z;Ana;1262.883;115460515;Argentina; +2018-11-29T23:58:37Z;Nathália;2817.223;116159109;Argentina; +2018-11-29T23:53:02Z;Eduardo;2932.948;116367952;Argentina; +2018-11-29T23:18:09Z;Júlio;1960.877;114740128;Argentina; +2018-11-29T23:14:44Z;Nathália;1428.866;114251115;Argentina; +2018-11-29T22:41:47Z;Nathália;1836.157;114428577;Argentina; +2018-11-29T22:39:52Z;Sandra;126.7338;116107219;Argentina; +2018-11-29T22:36:35Z;Armando;1069.015;116320454;Argentina; +2018-11-29T22:17:45Z;Armando;548.4313;115350046;Argentina; +2018-11-29T22:10:24Z;Eduardo;1271.387;114938828;Argentina; +2018-11-29T20:58:09Z;Ana;1115.876;114798895;Argentina; +2018-11-29T20:52:07Z;Sandra;1029.432;116096067;Argentina; +2018-11-29T20:51:08Z;Eduardo;815.9234;115873399;Argentina; +2018-11-29T20:46:24Z;Eduardo;223.3679;116216491;Argentina; +2018-11-29T20:43:23Z;Nathália;1060.202;115062303;Argentina; +2018-11-29T19:42:19Z;Ana;16.37672;114352750;Argentina; +2018-11-29T19:39:25Z;Eduardo;113.5479;115953670;Argentina; +2018-11-29T19:26:42Z;Sandra;1359.027;116261498;Argentina; +2018-11-29T19:24:36Z;Ana;1009.352;116125783;Argentina; +2018-11-29T19:01:29Z;Nathália;237.119;115749080;Argentina; +2018-11-29T18:57:43Z;Nathália;835.6755;115569753;Argentina; +2018-11-29T18:45:33Z;Sandra;3869.204;115249499;Argentina; +2018-11-29T18:44:39Z;nathalia;668.4905;115653386;Argentina; +2018-11-29T18:25:39Z;Eduardo;1012.273;114529148;Argentina; +2018-11-29T17:52:50Z;Ana;706.9057;114582567;Argentina; +2018-11-29T17:50:17Z;nathalia;2539.875;116257081;Argentina; +2018-11-29T17:28:34Z;Ana;1586.154;116056335;Argentina; +2018-11-29T17:24:49Z;Armando;280.0061;114903052;Argentina; +2018-11-29T17:10:41Z;Nathália;2139.043;114286368;Argentina; +2018-11-29T16:47:26Z;Armando;495.5628;115982325;Argentina; +2018-11-29T16:26:32Z;Nathália;1022.448;114866187;Argentina; +2018-11-29T16:06:05Z;Júlio Cesar;2925.45;116132077;Argentina; +2018-11-29T15:49:14Z;Júlio;482.2216;115795371;Argentina; +2018-11-29T15:48:16Z;Júlio Cesar;1307.117;115331340;Argentina; +2018-11-29T15:31:02Z;Nathália;491.0044;114666010;Argentina; +2018-11-29T14:38:50Z;Júlio Cesar;387.3718;115495591;Argentina; +2018-11-29T14:19:51Z;nathalia;3222.258;115987386;Argentina; +2018-11-29T14:16:51Z;Júlio;1094.458;114873580;Argentina; +2018-11-29T13:58:53Z;nathalia;1209.619;114420434;Argentina; +2018-11-29T13:47:55Z;Nathália;3593.621;116356231;Argentina; +2018-11-29T13:08:04Z;Nathália;1100.983;116125414;Argentina; +2018-11-29T13:05:20Z;Júlio;831.8928;115625339;Argentina; +2018-11-29T12:57:03Z;Sandra;1914.439;114935593;Argentina; +2018-11-29T12:51:52Z;Ana;1714.49;115155441;Argentina; +2018-11-29T12:13:36Z;Sandra;3357.458;116057776;Argentina; +2018-11-29T12:11:20Z;Eduardo;1861.052;115429386;Argentina; +2018-11-29T12:04:37Z;Nathália;3375.534;114370290;Argentina; +2018-11-29T11:51:10Z;Ana;633.8086;114270171;Argentina; +2018-11-29T11:50:15Z;Eduardo;3052.724;114470003;Argentina; +2018-11-29T11:46:57Z;Armando;1467.116;115625719;Argentina; +2018-11-29T11:30:35Z;Armando;61.03228;114575658;Argentina; +2018-11-29T11:26:46Z;Júlio;513.7526;115348758;Argentina; +2018-11-29T10:57:48Z;nathalia;1289.568;114410393;Argentina; +2018-11-29T10:56:58Z;Nathália;11.82555;115677754;Argentina; +2018-11-29T10:53:52Z;Armando;1406.207;116249388;Argentina; +2018-11-29T10:50:48Z;Armando;3200.512;115443620;Argentina; +2018-11-29T10:21:20Z;Júlio;4187.346;114581262;Argentina; +2018-11-29T10:11:04Z;nathalia;327.0682;115099311;Argentina; +2018-11-29T10:06:44Z;Armando;1042.899;115486421;Argentina; +2018-11-29T09:53:07Z;Júlio Cesar;345.7136;115794460;Argentina; +2018-11-29T09:42:58Z;Armando;1563.811;115953301;Argentina; +2018-11-29T09:29:36Z;Nathália;8.758345;114301980;Argentina; +2018-11-29T09:29:32Z;Sandra;2752.055;114307836;Argentina; +2018-11-29T09:02:46Z;Eduardo;225.9816;114894016;Argentina; +2018-11-29T08:56:16Z;Júlio Cesar;1067.748;114831974;Argentina; +2018-11-29T08:51:15Z;Nathália;319.9354;114910083;Argentina; +2018-11-29T08:16:40Z;nathalia;3269.451;115706812;Argentina; +2018-11-29T08:12:52Z;Nathália;326.4671;115681814;Argentina; +2018-11-29T08:03:43Z;Ana;3224.544;114277002;Argentina; +2018-11-29T08:02:26Z;nathalia;1677.013;115326716;Argentina; +2018-11-29T07:54:57Z;nathalia;700.7136;115868502;Argentina; +2018-11-29T07:39:14Z;Sandra;1554.373;115578275;Argentina; +2018-11-29T07:32:53Z;Júlio Cesar;1310.676;115544935;Argentina; +2018-11-29T07:29:16Z;Ana;361.3381;116126586;Argentina; +2018-11-29T07:26:59Z;nathalia;1575.29;114586417;Argentina; +2018-11-29T07:23:37Z;Sandra;3917.224;114673896;Argentina; +2018-11-29T07:03:09Z;Sandra;1668.074;115469391;Argentina; +2018-11-29T06:48:56Z;Júlio Cesar;3069.212;115446073;Argentina; +2018-11-29T06:42:35Z;Eduardo;1188.824;115909706;Argentina; +2018-11-29T06:20:25Z;Eduardo;2973.337;114405843;Argentina; +2018-11-29T06:16:18Z;Nathália;921.9651;115044848;Argentina; +2018-11-29T06:14:29Z;Júlio;768.3418;114659887;Argentina; +2018-11-29T06:12:54Z;Júlio;3446.028;115375990;Argentina; +2018-11-29T06:12:02Z;Sandra;6392.988;114228397;Argentina; +2018-11-29T05:45:47Z;Sandra;1545.997;116266591;Argentina; +2018-11-29T05:34:47Z;Nathália;2310.663;115336883;Argentina; +2018-11-29T05:13:41Z;Nathália;2316.541;116209326;Argentina; +2018-11-29T05:07:20Z;Sandra;1843.8;114923553;Argentina; +2018-11-29T05:05:19Z;Ana;1603.807;114641908;Argentina; +2018-11-29T04:46:33Z;Eduardo;101.0957;116328212;Argentina; +2018-11-29T04:36:45Z;Armando;432.3981;115477553;Argentina; +2018-11-29T04:30:17Z;Júlio Cesar;243.8528;114823748;Argentina; +2018-11-29T04:24:36Z;Eduardo;1609.453;115858458;Argentina; +2018-11-29T03:52:02Z;Júlio Cesar;2492.899;114289642;Argentina; +2018-11-29T03:18:37Z;Júlio Cesar;778.5577;116067818;Argentina; +2018-11-29T03:07:59Z;Ana;2028.404;114673384;Argentina; +2018-11-29T02:21:14Z;Ana;1521.009;114442075;Argentina; +2018-11-29T02:00:41Z;Júlio Cesar;136.8156;114281434;Argentina; +2018-11-29T01:42:14Z;Armando;1949.524;115819987;Argentina; +2018-11-29T01:26:52Z;Nathália;617.575;114942451;Argentina; +2018-11-29T01:25:30Z;Júlio Cesar;777.6264;114356663;Argentina; +2018-11-29T01:02:18Z;Eduardo;7.943355;115153935;Argentina; +2018-11-29T00:54:21Z;Sandra;98.11175;114342772;Argentina; +2018-11-29T00:38:37Z;Eduardo;293.5911;114850054;Argentina; +2018-11-29T00:03:21Z;Sandra;1500.935;115916448;Argentina; +2018-11-28T23:58:44Z;Eduardo;1069.131;115541605;Argentina; +2018-11-28T23:48:58Z;Júlio;5848.946;115614840;Argentina; +2018-11-28T23:45:29Z;Júlio Cesar;1401.351;116118320;Argentina; +2018-11-28T23:19:10Z;Armando;1148.825;116078688;Argentina; +2018-11-28T23:16:57Z;Sandra;4081.583;114827902;Argentina; +2018-11-28T23:14:06Z;Eduardo;3206.048;115176707;Argentina; +2018-11-28T23:11:56Z;Nathália;351.3748;114349217;Argentina; +2018-11-28T23:01:10Z;Júlio;776.8878;114458405;Argentina; +2018-11-28T22:13:38Z;Ana;1469.394;115440578;Argentina; +2018-11-28T22:08:34Z;Júlio;537.8513;115570215;Argentina; +2018-11-28T21:46:16Z;Ana;290.0602;114501572;Argentina; +2018-11-28T21:35:34Z;Eduardo;493.7691;116378314;Argentina; +2018-11-28T21:34:19Z;Nathália;1887.507;114491909;Argentina; +2018-11-28T21:17:21Z;Armando;801.6006;115441552;Argentina; +2018-11-28T21:11:58Z;Nathália;2485.017;115999958;Argentina; +2018-11-28T21:04:23Z;Ana;1901.488;114356078;Argentina; +2018-11-28T20:49:18Z;Nathália;2716.926;115154769;Argentina; +2018-11-28T20:31:13Z;Sandra;3795.228;114333441;Argentina; +2018-11-28T20:07:48Z;nathalia;1007.838;114446559;Argentina; +2018-11-28T19:29:20Z;Nathália;30.10687;115217781;Argentina; +2018-11-28T19:02:23Z;Nathália;1490.944;115749761;Argentina; +2018-11-28T18:55:43Z;nathalia;3186.966;115834887;Argentina; +2018-11-28T18:44:41Z;Armando;31.89929;116342149;Argentina; +2018-11-28T18:43:48Z;Armando;883.321;115123259;Argentina; +2018-11-28T18:31:21Z;Eduardo;1475.264;116320362;Argentina; +2018-11-28T18:31:12Z;Armando;1454.718;114843081;Argentina; +2018-11-28T18:22:51Z;Sandra;7.322955;115428382;Argentina; +2018-11-28T17:51:48Z;Armando;441.09;115152541;Argentina; +2018-11-28T17:50:22Z;Júlio;534.223;116264473;Argentina; +2018-11-28T17:48:12Z;Armando;107.8221;115012531;Argentina; +2018-11-28T17:47:22Z;Nathália;174.7347;114278791;Argentina; +2018-11-28T17:42:35Z;Armando;2384.758;114531247;Argentina; +2018-11-28T17:27:36Z;Júlio;152.463;115291007;Argentina; +2018-11-28T17:24:24Z;Júlio;138.1763;114889006;Argentina; +2018-11-28T17:15:40Z;Armando;69.654;114998160;Argentina; +2018-11-28T17:01:54Z;Nathália;3318.478;114757530;Argentina; +2018-11-28T16:59:04Z;Júlio;745.7828;114323398;Argentina; +2018-11-28T16:52:31Z;Eduardo;1454.415;115740729;Argentina; +2018-11-28T16:32:34Z;Sandra;1207.101;115499587;Argentina; +2018-11-28T16:24:22Z;Armando;1159.734;115973517;Argentina; +2018-11-28T16:07:22Z;Nathália;865.9957;114877628;Argentina; +2018-11-28T16:05:09Z;Sandra;4008.485;114582354;Argentina; +2018-11-28T15:41:21Z;Nathália;202.5756;116085033;Argentina; +2018-11-28T15:34:28Z;Júlio Cesar;1461.23;115529362;Argentina; +2018-11-28T15:12:54Z;nathalia;454.7022;116100848;Argentina; +2018-11-28T13:45:51Z;Ana;2898.587;114365077;Argentina; +2018-11-28T13:35:15Z;nathalia;3808.15;115183501;Argentina; +2018-11-28T13:30:18Z;Ana;1571.882;114703010;Argentina; +2018-11-28T13:25:47Z;Júlio Cesar;75.17037;115780922;Argentina; +2018-11-28T13:23:53Z;Júlio;17.65088;115023874;Argentina; +2018-11-28T12:47:25Z;Sandra;1396.085;114458077;Argentina; +2018-11-28T12:35:16Z;Ana;965.9442;114406092;Argentina; +2018-11-28T12:30:59Z;Júlio;2202.372;114912379;Argentina; +2018-11-28T12:19:37Z;Sandra;1541.981;115595513;Argentina; +2018-11-28T11:49:15Z;Armando;118.8529;116022963;Argentina; +2018-11-28T11:46:28Z;Júlio;1083.281;114695769;Argentina; +2018-11-28T11:11:21Z;Júlio;2324.539;115153348;Argentina; +2018-11-28T10:44:37Z;Armando;697.9949;116279447;Argentina; +2018-11-28T10:31:16Z;Eduardo;314.004;114878494;Argentina; +2018-11-28T10:29:51Z;Eduardo;2727.877;115156497;Argentina; +2018-11-28T10:16:51Z;nathalia;842.9795;115991172;Argentina; +2018-11-28T09:43:34Z;Eduardo;410.9847;115718604;Argentina; +2018-11-28T09:37:56Z;Nathália;809.3277;114990564;Argentina; +2018-11-28T09:35:17Z;Sandra;1632.701;115673498;Argentina; +2018-11-28T09:03:24Z;Nathália;3538.317;116295649;Argentina; +2018-11-28T08:05:22Z;Sandra;2962.254;115996401;Argentina; +2018-11-28T06:58:38Z;Armando;1361.96;116272050;Argentina; +2018-11-28T06:35:22Z;Júlio Cesar;2240.736;115596261;Argentina; +2018-11-28T06:34:31Z;Ana;1538.311;115321703;Argentina; +2018-11-28T06:20:47Z;Eduardo;600.4031;114567197;Argentina; +2018-11-28T06:12:49Z;nathalia;577.1848;115219610;Argentina; +2018-11-28T06:10:59Z;Eduardo;321.8505;114565233;Argentina; +2018-11-28T05:54:25Z;Ana;549.6683;116044564;Argentina; +2018-11-28T05:19:34Z;Júlio;1888.071;116069882;Argentina; +2018-11-28T04:40:50Z;Sandra;359.2996;114855443;Argentina; +2018-11-28T03:22:23Z;Júlio Cesar;452.9178;114923962;Argentina; +2018-11-28T03:09:51Z;nathalia;1181.175;115001057;Argentina; +2018-11-28T03:07:49Z;Ana;2228.97;115893748;Argentina; +2018-11-28T02:56:44Z;nathalia;2601.694;115380005;Argentina; +2018-11-28T02:53:51Z;nathalia;2035.15;115618995;Argentina; +2018-11-28T02:50:26Z;nathalia;409.428;115166639;Argentina; +2018-11-28T02:10:44Z;Armando;228.898;114541708;Argentina; +2018-11-28T02:07:56Z;nathalia;1128.217;115478304;Argentina; +2018-11-28T01:49:06Z;Júlio Cesar;1918.199;114378724;Argentina; +2018-11-28T01:40:46Z;Armando;1659.228;115261120;Argentina; +2018-11-28T01:36:42Z;Ana;286.6755;114504700;Argentina; +2018-11-28T01:23:09Z;nathalia;2697.976;115211343;Argentina; +2018-11-28T01:20:40Z;Júlio Cesar;3055.477;115234094;Argentina; +2018-11-28T00:58:02Z;Júlio;921.0801;114451094;Argentina; +2018-11-28T00:51:00Z;Nathália;728.1869;115853524;Argentina; +2018-11-28T00:27:59Z;Nathália;23.14273;115626002;Argentina; +2018-11-28T00:00:41Z;Armando;1157.566;114316509;Argentina; +2018-11-27T23:54:31Z;Júlio;2342.668;114733763;Argentina; +2018-11-27T23:52:43Z;Júlio Cesar;1642.462;115187338;Argentina; +2018-11-27T23:51:56Z;Júlio Cesar;498.5176;114448941;Argentina; +2018-11-27T23:11:51Z;Nathália;2392.268;115723695;Argentina; +2018-11-27T23:11:51Z;Nathália;1637.761;116293513;Argentina; +2018-11-27T22:34:21Z;Armando;1565.029;115326955;Argentina; +2018-11-27T22:33:36Z;Júlio Cesar;2631.301;116243836;Argentina; +2018-11-27T22:25:31Z;Júlio;346.8099;116317796;Argentina; +2018-11-27T22:19:55Z;Júlio Cesar;2110.687;114220345;Argentina; +2018-11-27T21:19:25Z;Eduardo;3173.939;115082094;Argentina; +2018-11-27T20:51:08Z;Eduardo;1078.762;114466719;Argentina; +2018-11-27T20:47:21Z;Armando;1544.343;114642843;Argentina; +2018-11-27T20:44:23Z;Nathália;2275.941;115842661;Argentina; +2018-11-27T20:19:08Z;Nathália;767.0167;115600827;Argentina; +2018-11-27T19:43:40Z;Armando;117.6576;115886270;Argentina; +2018-11-27T18:53:17Z;Eduardo;545.498;115811063;Argentina; +2018-11-27T17:42:41Z;Júlio Cesar;232.07;114249019;Argentina; +2018-11-27T17:37:47Z;Eduardo;570.6536;115715525;Argentina; +2018-11-27T17:19:21Z;Júlio Cesar;2989.608;115880311;Argentina; +2018-11-27T17:16:22Z;Sandra;3201.301;116077833;Argentina; +2018-11-27T16:42:35Z;Ana;138.309;116388001;Argentina; +2018-11-27T16:36:49Z;Armando;777.6755;115231382;Argentina; +2018-11-27T15:55:16Z;Eduardo;609.4086;114464700;Argentina; +2018-11-27T15:36:50Z;Armando;213.3038;116084439;Argentina; +2018-11-27T15:35:50Z;Júlio;915.5246;116052872;Argentina; +2018-11-27T15:32:24Z;Nathália;2613.858;115287651;Argentina; +2018-11-27T15:14:07Z;Júlio Cesar;558.0786;116199716;Argentina; +2018-11-27T14:41:35Z;Armando;3049.041;115386107;Argentina; +2018-11-27T14:37:15Z;Eduardo;437.0158;116005899;Argentina; +2018-11-27T14:09:37Z;nathalia;1137.87;115029697;Argentina; +2018-11-27T14:04:55Z;Sandra;1327.439;114650030;Argentina; +2018-11-27T14:01:19Z;nathalia;2640.309;116237133;Argentina; +2018-11-27T13:55:32Z;nathalia;5051.505;114202728;Argentina; +2018-11-27T13:31:34Z;Armando;1467.7;115260120;Argentina; +2018-11-27T13:21:56Z;Armando;1530.486;115740966;Argentina; +2018-11-27T13:04:21Z;Eduardo;335.192;116094957;Argentina; +2018-11-27T12:43:30Z;Ana;3190.348;115142724;Argentina; +2018-11-27T12:37:48Z;Sandra;575.2206;114794622;Argentina; +2018-11-27T12:26:30Z;Ana;40.88233;115033434;Argentina; +2018-11-27T11:44:05Z;Nathália;673.8342;114944460;Argentina; +2018-11-27T11:40:09Z;Júlio Cesar;360.002;115717409;Argentina; +2018-11-27T11:38:54Z;Júlio;433.6535;116248665;Argentina; +2018-11-27T11:21:36Z;Eduardo;81.68159;114213183;Argentina; +2018-11-27T11:18:38Z;Eduardo;1915.147;115234762;Argentina; +2018-11-27T11:03:14Z;Júlio;4603.301;114555671;Argentina; +2018-11-27T10:50:34Z;Júlio Cesar;243.0605;116344357;Argentina; +2018-11-27T09:41:42Z;Armando;542.1817;115166681;Argentina; +2018-11-27T09:33:06Z;Ana;1813.259;115878521;Argentina; +2018-11-27T08:48:33Z;Armando;240.4366;114213357;Argentina; +2018-11-27T08:48:07Z;Júlio Cesar;76.86892;116223258;Argentina; +2018-11-27T08:46:42Z;Armando;705.1334;114360758;Argentina; +2018-11-27T08:44:08Z;Sandra;482.3255;115444836;Argentina; +2018-11-27T08:19:21Z;Sandra;1501.587;114869787;Argentina; +2018-11-27T07:59:59Z;Ana;232.4725;114833526;Argentina; +2018-11-27T07:29:33Z;Eduardo;3347.313;115747279;Argentina; +2018-11-27T07:17:05Z;Júlio Cesar;2809.021;115586277;Argentina; +2018-11-27T06:50:37Z;Eduardo;761.619;115910762;Argentina; +2018-11-27T06:33:51Z;Júlio Cesar;1183.666;114458111;Argentina; +2018-11-27T06:28:12Z;Ana;202.7347;115777952;Argentina; +2018-11-27T05:47:47Z;Júlio Cesar;1028.99;115158708;Argentina; +2018-11-27T05:41:56Z;Nathália;798.6996;115928305;Argentina; +2018-11-27T05:38:39Z;Júlio;1404.864;115499139;Argentina; +2018-11-27T05:08:25Z;Ana;1387.938;115317396;Argentina; +2018-11-27T05:02:36Z;Júlio Cesar;5.824781;115405454;Argentina; +2018-11-27T04:36:06Z;Júlio;2237.272;115355653;Argentina; +2018-11-27T04:16:16Z;Ana;3655.245;114920431;Argentina; +2018-11-27T04:14:57Z;Armando;767.301;114987655;Argentina; +2018-11-27T03:58:15Z;Júlio Cesar;3641.355;115165017;Argentina; +2018-11-27T03:57:22Z;Eduardo;1251.19;116274352;Argentina; +2018-11-27T03:53:29Z;nathalia;3032.205;114465048;Argentina; +2018-11-27T03:44:38Z;Júlio;1764.74;114322478;Argentina; +2018-11-27T03:43:31Z;Armando;1036.524;114942591;Argentina; +2018-11-27T03:20:59Z;Armando;1941.148;114771426;Argentina; +2018-11-27T03:17:30Z;Júlio;3140.974;116327885;Argentina; +2018-11-27T02:52:57Z;Sandra;529.6016;115862621;Argentina; +2018-11-27T02:28:45Z;Ana;1946.639;115848607;Argentina; +2018-11-27T02:28:22Z;Armando;786.4236;114496114;Argentina; +2018-11-27T02:19:54Z;Júlio Cesar;2432.142;115010096;Argentina; +2018-11-27T01:55:41Z;Nathália;1070.388;114759202;Argentina; +2018-11-27T01:54:16Z;nathalia;100.5514;116026750;Argentina; +2018-11-27T01:46:32Z;Nathália;2030.914;114903464;Argentina; +2018-11-27T01:43:11Z;Júlio;2642.27;115618984;Argentina; +2018-11-27T01:25:53Z;Ana;2572.549;116372565;Argentina; +2018-11-27T00:48:51Z;Júlio;232.7193;115649698;Argentina; +2018-11-26T23:49:04Z;Júlio Cesar;4071.206;115953743;Argentina; +2018-11-26T23:48:06Z;Armando;1248.814;115027121;Argentina; +2018-11-26T23:43:20Z;Armando;1291.368;115538933;Argentina; +2018-11-26T23:38:55Z;Nathália;796.8383;115454510;Argentina; +2018-11-26T23:29:12Z;Armando;1968.49;116211343;Argentina; +2018-11-26T23:18:22Z;Júlio;590.8922;115788870;Argentina; +2018-11-26T23:17:00Z;Nathália;301.6369;114624566;Argentina; +2018-11-26T23:13:58Z;Nathália;1498.262;115425216;Argentina; +2018-11-26T22:48:41Z;Sandra;242.8795;114629305;Argentina; +2018-11-26T22:47:58Z;Júlio Cesar;2244.969;114331537;Argentina; +2018-11-26T22:19:41Z;Ana;32.09543;115884823;Argentina; +2018-11-26T22:08:47Z;Júlio;1466.427;116289188;Argentina; +2018-11-26T21:42:10Z;Júlio;1146.187;115909847;Argentina; +2018-11-26T21:23:09Z;Ana;2072.835;115522557;Argentina; +2018-11-26T20:42:36Z;Júlio;4579.584;115915725;Argentina; +2018-11-26T20:30:21Z;Eduardo;2315.244;115276529;Argentina; +2018-11-26T20:23:50Z;Eduardo;570.4389;114911316;Argentina; +2018-11-26T19:58:01Z;Eduardo;2459.157;116057167;Argentina; +2018-11-26T19:41:03Z;Ana;3097.16;114252419;Argentina; +2018-11-26T19:29:30Z;Ana;763.134;114888383;Argentina; +2018-11-26T17:57:02Z;Ana;442.0472;116213957;Argentina; +2018-11-26T17:46:21Z;Eduardo;1792.975;114548838;Argentina; +2018-11-26T17:40:55Z;Júlio;65.30879;116055350;Argentina; +2018-11-26T17:36:40Z;Júlio Cesar;1098.484;114905095;Argentina; +2018-11-26T17:29:21Z;Júlio;1794.458;115468104;Argentina; +2018-11-26T17:09:36Z;nathalia;3371.771;114987518;Argentina; +2018-11-26T16:50:13Z;Eduardo;105.2505;116179749;Argentina; +2018-11-26T16:33:53Z;Ana;520.9356;114410034;Argentina; +2018-11-26T16:24:58Z;Sandra;384.7855;115445083;Argentina; +2018-11-26T16:19:51Z;nathalia;1389.357;114694259;Argentina; +2018-11-26T15:57:02Z;Ana;222.4476;116265736;Argentina; +2018-11-26T14:50:34Z;Júlio;73.10909;115992998;Argentina; +2018-11-26T14:48:15Z;Armando;354.1773;114265876;Argentina; +2018-11-26T14:40:11Z;Eduardo;2426.277;116296431;Argentina; +2018-11-26T14:37:44Z;Júlio;2505.974;115578160;Argentina; +2018-11-26T14:31:47Z;Ana;2996.971;114278851;Argentina; +2018-11-26T13:56:17Z;nathalia;3076.172;115744893;Argentina; +2018-11-26T13:18:31Z;nathalia;2046.675;115339108;Argentina; +2018-11-26T12:44:19Z;Sandra;30.96392;114621276;Argentina; +2018-11-26T12:42:34Z;Júlio;2409.981;114468804;Argentina; +2018-11-26T12:07:58Z;Júlio;3105.109;115588990;Argentina; +2018-11-26T12:00:52Z;Ana;1302.488;114258819;Argentina; +2018-11-26T11:48:50Z;Júlio Cesar;1791.83;114722695;Argentina; +2018-11-26T11:20:11Z;Nathália;1071.093;114612615;Argentina; +2018-11-26T10:42:47Z;Júlio;1150.177;114638049;Argentina; +2018-11-26T10:22:38Z;nathalia;279.4087;115185946;Argentina; +2018-11-26T10:17:40Z;Júlio Cesar;158.779;115303531;Argentina; +2018-11-26T10:04:28Z;Armando;611.8702;115957601;Argentina; +2018-11-26T09:47:33Z;Júlio Cesar;3878.441;114816193;Argentina; +2018-11-26T09:41:08Z;Sandra;1908.024;115582808;Argentina; +2018-11-26T09:34:39Z;Nathália;939.4086;115186294;Argentina; +2018-11-26T09:26:56Z;nathalia;1256.698;114700578;Argentina; +2018-11-26T09:14:56Z;nathalia;1997.754;115472736;Argentina; +2018-11-26T09:14:45Z;Ana;248.8698;115701460;Argentina; +2018-11-26T09:09:20Z;Nathália;382.3355;115064691;Argentina; +2018-11-26T09:00:59Z;Júlio;2887.801;114741674;Argentina; +2018-11-26T08:41:51Z;Júlio;206.4105;115172320;Argentina; +2018-11-26T08:30:10Z;nathalia;1853.046;114741490;Argentina; +2018-11-26T07:56:27Z;Armando;1222.935;115755253;Argentina; +2018-11-26T07:47:34Z;Júlio Cesar;2063.792;114901340;Argentina; +2018-11-26T06:45:55Z;Armando;1247.316;114802855;Argentina; +2018-11-26T06:17:09Z;Júlio Cesar;157.8629;114624787;Argentina; +2018-11-26T05:50:00Z;Júlio;1187.788;115824975;Argentina; +2018-11-26T05:47:06Z;Armando;59.83118;115109733;Argentina; +2018-11-26T05:36:03Z;Júlio Cesar;1148.14;114387987;Argentina; +2018-11-26T05:33:52Z;nathalia;458.2251;115526220;Argentina; +2018-11-26T04:17:08Z;Eduardo;2437.309;114282865;Argentina; +2018-11-26T04:11:35Z;Nathália;291.7943;115150853;Argentina; +2018-11-26T03:52:55Z;Júlio Cesar;2314.166;116364674;Argentina; +2018-11-26T03:25:11Z;Júlio Cesar;647.8413;114601998;Argentina; +2018-11-26T03:12:35Z;Júlio;1642.235;114782514;Argentina; +2018-11-26T03:12:03Z;Eduardo;1535.227;116240066;Argentina; +2018-11-26T03:09:22Z;Nathália;2241.695;114849751;Argentina; +2018-11-26T02:56:00Z;Júlio Cesar;540.4025;114858934;Argentina; +2018-11-26T02:27:47Z;Ana;1836.98;114252137;Argentina; +2018-11-26T02:23:00Z;Armando;1788.688;115112259;Argentina; +2018-11-26T02:18:35Z;Nathália;2459.277;114616398;Argentina; +2018-11-26T01:51:48Z;Júlio;2097.121;114951781;Argentina; +2018-11-26T01:45:05Z;Ana;1596.874;115998968;Argentina; +2018-11-26T01:41:01Z;Armando;163.2235;116023723;Argentina; +2018-11-26T01:25:49Z;Sandra;2193.448;115320646;Argentina; +2018-11-26T01:24:42Z;Armando;163.9314;114943554;Argentina; +2018-11-26T01:20:50Z;Sandra;1465.278;115238118;Argentina; +2018-11-26T00:45:19Z;nathalia;3512.276;115249643;Argentina; +2018-11-26T00:29:55Z;nathalia;3746.158;114956475;Argentina; +2018-11-26T00:11:42Z;Júlio;4039.243;115976991;Argentina; +2018-11-25T23:53:28Z;Eduardo;933.3217;116038320;Argentina; +2018-11-25T23:29:42Z;Sandra;0.2996283;114302779;Argentina; +2018-11-25T23:06:04Z;Eduardo;863.8684;116122420;Argentina; +2018-11-25T22:34:04Z;Júlio;1504.871;114731276;Argentina; +2018-11-25T22:17:35Z;Sandra;5878.487;115167688;Argentina; +2018-11-25T21:51:47Z;Ana;2276.289;115639172;Argentina; +2018-11-25T21:26:59Z;Armando;875.9157;114803665;Argentina; +2018-11-25T21:15:29Z;Júlio;2767.689;114638084;Argentina; +2018-11-25T21:06:35Z;Júlio Cesar;266.4556;116272066;Argentina; +2018-11-25T20:40:14Z;Júlio;2105.953;115121237;Argentina; +2018-11-25T20:31:12Z;Armando;3307.57;116237249;Argentina; +2018-11-25T19:55:36Z;nathalia;1850.035;115357461;Argentina; +2018-11-25T19:40:54Z;Sandra;101.0087;115512754;Argentina; +2018-11-25T19:30:24Z;nathalia;1076.311;114750421;Argentina; +2018-11-25T19:17:34Z;nathalia;867.0244;115819150;Argentina; +2018-11-25T19:08:49Z;Sandra;3178.714;116220360;Argentina; +2018-11-25T18:49:26Z;Armando;792.3433;114773625;Argentina; +2018-11-25T18:44:00Z;Nathália;216.7875;115240229;Argentina; +2018-11-25T18:42:10Z;Armando;3677.649;115778433;Argentina; +2018-11-25T18:39:16Z;Eduardo;208.8982;114692119;Argentina; +2018-11-25T18:28:56Z;nathalia;1783.071;115068115;Argentina; +2018-11-25T17:58:55Z;nathalia;1086.881;115468999;Argentina; +2018-11-25T17:57:16Z;Ana;2182.777;114937410;Argentina; +2018-11-25T17:54:24Z;Júlio Cesar;742.8603;115613114;Argentina; +2018-11-25T17:50:12Z;Júlio Cesar;1233.399;115072633;Argentina; +2018-11-25T17:26:54Z;nathalia;2023.224;116360499;Argentina; +2018-11-25T17:21:23Z;Ana;588.8464;114380232;Argentina; +2018-11-25T17:13:48Z;Júlio Cesar;810.0366;115192997;Argentina; +2018-11-25T16:58:30Z;Nathália;478.4627;115582602;Argentina; +2018-11-25T16:31:41Z;nathalia;416.9285;114228094;Argentina; +2018-11-25T16:24:17Z;Júlio;2259.033;114953532;Argentina; +2018-11-25T16:14:34Z;Júlio;3268.823;114998056;Argentina; +2018-11-25T16:12:32Z;Sandra;1577.535;114625106;Argentina; +2018-11-25T15:52:51Z;Júlio;2467.623;115758508;Argentina; +2018-11-25T15:26:29Z;Júlio;2898.22;116245552;Argentina; +2018-11-25T15:21:51Z;nathalia;128.6407;116271771;Argentina; +2018-11-25T15:19:54Z;Ana;1402.683;114536961;Argentina; +2018-11-25T15:02:08Z;Júlio;365.6263;114469864;Argentina; +2018-11-25T14:48:06Z;Sandra;961.8484;115052645;Argentina; +2018-11-25T14:45:32Z;Júlio Cesar;691.6376;116292466;Argentina; +2018-11-25T14:30:21Z;Júlio Cesar;1158.496;115127727;Argentina; +2018-11-25T14:27:58Z;Armando;1334.779;115417978;Argentina; +2018-11-25T14:20:42Z;Armando;1950.319;115753778;Argentina; +2018-11-25T14:20:36Z;Júlio;266.1088;115090075;Argentina; +2018-11-25T14:20:33Z;Júlio Cesar;2512.019;115526604;Argentina; +2018-11-25T13:53:45Z;Nathália;1629.831;114561448;Argentina; +2018-11-25T13:47:59Z;Júlio Cesar;271.3109;114523970;Argentina; +2018-11-25T13:45:55Z;Nathália;1789.648;115007110;Argentina; +2018-11-25T13:23:36Z;Nathália;633.9062;115003439;Argentina; +2018-11-25T13:06:12Z;Armando;586.2532;114927915;Argentina; +2018-11-25T12:57:57Z;Ana;2006.328;115974150;Argentina; +2018-11-25T12:54:20Z;Júlio Cesar;631.9007;114886432;Argentina; +2018-11-25T12:26:56Z;Ana;2692.694;114330910;Argentina; +2018-11-25T12:15:56Z;Júlio;4074.554;116027838;Argentina; +2018-11-25T11:51:55Z;Nathália;208.8591;115954368;Argentina; +2018-11-25T11:47:12Z;Júlio Cesar;2854.439;116151895;Argentina; +2018-11-25T11:24:47Z;nathalia;4380.871;115783791;Argentina; +2018-11-25T11:04:20Z;Eduardo;1864.579;115464538;Argentina; +2018-11-25T10:56:39Z;Júlio;33.58579;116355580;Argentina; +2018-11-25T10:32:15Z;nathalia;681.1128;116348222;Argentina; +2018-11-25T10:27:42Z;Sandra;791.1909;115399068;Argentina; +2018-11-25T10:25:55Z;Júlio Cesar;106.4465;115599749;Argentina; +2018-11-25T10:13:30Z;Júlio;3200.838;114838024;Argentina; +2018-11-25T09:47:51Z;Júlio;351.3701;114478562;Argentina; +2018-11-25T09:38:47Z;Ana;218.6728;116185639;Argentina; +2018-11-25T09:36:35Z;Eduardo;1.645455;115666767;Argentina; +2018-11-25T09:32:03Z;Júlio;1552.956;114243817;Argentina; +2018-11-25T09:31:29Z;Ana;3386.314;114832442;Argentina; +2018-11-25T09:24:01Z;nathalia;4791.479;115690689;Argentina; +2018-11-25T09:23:10Z;nathalia;999.9903;115221900;Argentina; +2018-11-25T09:12:59Z;Sandra;439.937;114878499;Argentina; +2018-11-25T08:51:21Z;Sandra;46.05136;115660022;Argentina; +2018-11-25T08:46:47Z;Júlio;2346.173;114511112;Argentina; +2018-11-25T08:29:59Z;Sandra;174.3112;114529596;Argentina; +2018-11-25T08:24:20Z;Ana;3763.859;116206211;Argentina; +2018-11-25T07:50:42Z;Júlio Cesar;1941.727;114540320;Argentina; +2018-11-25T07:28:49Z;Júlio Cesar;2268.969;114641419;Argentina; +2018-11-25T07:18:01Z;Sandra;1374.517;115041593;Argentina; +2018-11-25T07:14:00Z;Nathália;3097.59;116194464;Argentina; +2018-11-25T06:43:24Z;Júlio Cesar;3061.066;116020414;Argentina; +2018-11-25T06:24:30Z;Armando;1797.71;114438123;Argentina; +2018-11-25T06:04:38Z;Ana;2054.757;114958164;Argentina; +2018-11-25T05:38:56Z;Júlio Cesar;460.1395;115950981;Argentina; +2018-11-25T05:23:54Z;nathalia;597.4173;114922463;Argentina; +2018-11-25T04:58:20Z;Armando;1074.661;114459288;Argentina; +2018-11-25T04:55:56Z;Júlio Cesar;158.541;114551535;Argentina; +2018-11-25T04:51:17Z;Armando;5491.527;115668582;Argentina; +2018-11-25T04:50:22Z;nathalia;220.0787;114816233;Argentina; +2018-11-25T04:43:49Z;Júlio Cesar;1420.973;115861677;Argentina; +2018-11-25T04:36:07Z;Ana;956.3857;115769909;Argentina; +2018-11-25T04:31:24Z;Nathália;59.98786;115222719;Argentina; +2018-11-25T04:30:23Z;Eduardo;816.476;115566641;Argentina; +2018-11-25T04:27:59Z;nathalia;1337.864;116085814;Argentina; +2018-11-25T04:27:24Z;Sandra;875.1635;115240001;Argentina; +2018-11-25T04:16:51Z;nathalia;1126.335;114763315;Argentina; +2018-11-25T04:12:37Z;Sandra;657.9709;114307407;Argentina; +2018-11-25T03:35:34Z;Sandra;528.1851;115381228;Argentina; +2018-11-25T03:29:35Z;Júlio;538.6996;116303194;Argentina; +2018-11-25T03:22:49Z;Eduardo;881.3016;114425695;Argentina; +2018-11-25T02:54:08Z;Ana;1867.372;114578710;Argentina; +2018-11-25T02:52:19Z;Sandra;188.4679;114975700;Argentina; +2018-11-25T02:40:37Z;Ana;317.3782;114352431;Argentina; +2018-11-25T02:38:04Z;Ana;4436.058;114586157;Argentina; +2018-11-25T02:33:07Z;Júlio Cesar;404.124;115851409;Argentina; +2018-11-25T02:06:30Z;Sandra;1650.166;114797120;Argentina; +2018-11-25T01:53:46Z;Ana;2089.489;116089121;Argentina; +2018-11-25T01:30:20Z;Ana;489.4662;115845510;Argentina; +2018-11-25T01:23:04Z;Nathália;329.4356;116140661;Argentina; +2018-11-25T01:08:07Z;Ana;1795.958;114256596;Argentina; +2018-11-25T01:00:16Z;Nathália;332.0401;115076979;Argentina; +2018-11-25T00:16:02Z;Eduardo;796.7011;114301295;Argentina; +2018-11-25T00:08:51Z;Ana;2516.727;114379392;Argentina; +2018-11-24T23:53:27Z;Júlio Cesar;800.954;115947464;Argentina; +2018-11-24T23:13:28Z;Eduardo;2341.946;115776998;Argentina; +2018-11-24T23:11:57Z;Nathália;4047.532;115507372;Argentina; +2018-11-24T22:36:07Z;Ana;1282.14;115843134;Argentina; +2018-11-24T22:23:16Z;Júlio;637.5702;116066584;Argentina; +2018-11-24T21:49:27Z;Ana;777.4899;116246310;Argentina; +2018-11-24T21:17:25Z;Nathália;835.3894;114893620;Argentina; +2018-11-24T21:16:21Z;nathalia;1833.269;114946542;Argentina; +2018-11-24T21:14:38Z;Eduardo;2171.382;115931886;Argentina; +2018-11-24T20:58:39Z;Júlio;3112.006;115427483;Argentina; +2018-11-24T20:44:40Z;Nathália;3245.739;114728223;Argentina; +2018-11-24T20:31:00Z;Sandra;1190.229;114358803;Argentina; +2018-11-24T20:28:30Z;Júlio Cesar;1693.893;115872307;Argentina; +2018-11-24T20:26:57Z;Júlio;1316.91;116388661;Argentina; +2018-11-24T20:01:21Z;Armando;2092.347;114658598;Argentina; +2018-11-24T19:57:15Z;Eduardo;967.3296;116307931;Argentina; +2018-11-24T19:55:13Z;nathalia;2443.553;115685995;Argentina; +2018-11-24T19:33:21Z;Sandra;2279.675;114558772;Argentina; +2018-11-24T19:12:57Z;Eduardo;1014.862;115074461;Argentina; +2018-11-24T18:07:40Z;Sandra;3359.773;114277274;Argentina; +2018-11-24T18:05:09Z;nathalia;569.5643;115650045;Argentina; +2018-11-24T17:52:47Z;Júlio;4145.889;115239186;Argentina; +2018-11-24T17:42:53Z;Armando;873.4097;114993807;Argentina; +2018-11-24T17:25:54Z;Nathália;1296.537;114651990;Argentina; +2018-11-24T17:20:30Z;Ana;440.1134;114255795;Argentina; +2018-11-24T17:11:02Z;nathalia;1388.207;114274547;Argentina; +2018-11-24T16:20:40Z;Armando;440.694;114562245;Argentina; +2018-11-24T16:11:03Z;Nathália;218.0914;114916653;Argentina; +2018-11-24T16:05:34Z;nathalia;206.5422;114619702;Argentina; +2018-11-24T16:00:33Z;nathalia;1597.142;116165391;Argentina; +2018-11-24T16:00:04Z;Júlio Cesar;614.2689;115170050;Argentina; +2018-11-24T15:42:13Z;nathalia;4085.451;114504293;Argentina; +2018-11-24T15:39:26Z;Júlio Cesar;130.222;115657877;Argentina; +2018-11-24T15:35:33Z;Ana;671.2765;114534333;Argentina; +2018-11-24T15:24:59Z;Ana;223.0473;116036390;Argentina; +2018-11-24T14:37:29Z;Júlio;2411.626;116365191;Argentina; +2018-11-24T13:57:25Z;Júlio;632.725;115796452;Argentina; +2018-11-24T13:49:38Z;Ana;396.22;114811957;Argentina; +2018-11-24T13:47:47Z;Júlio;2436.654;115420875;Argentina; +2018-11-24T13:32:49Z;nathalia;1337.777;114329416;Argentina; +2018-11-24T13:32:02Z;Júlio Cesar;727.7448;115008644;Argentina; +2018-11-24T13:19:08Z;Júlio Cesar;3828.613;114679319;Argentina; +2018-11-24T13:17:29Z;Júlio Cesar;2138.424;116136965;Argentina; +2018-11-24T13:05:53Z;Sandra;3686.968;116180827;Argentina; +2018-11-24T12:34:21Z;Eduardo;2367.019;116135521;Argentina; +2018-11-24T12:24:50Z;nathalia;2058.812;116123123;Argentina; +2018-11-24T12:03:49Z;Eduardo;987.9418;114433131;Argentina; +2018-11-24T11:43:27Z;nathalia;783.5499;114977985;Argentina; +2018-11-24T11:32:43Z;Júlio;1105.425;114443696;Argentina; +2018-11-24T11:26:01Z;Sandra;118.5418;115451307;Argentina; +2018-11-24T10:47:49Z;Júlio;3601.065;114850071;Argentina; +2018-11-24T10:43:47Z;Eduardo;2140.699;115389810;Argentina; +2018-11-24T10:14:46Z;Sandra;299.2106;114675058;Argentina; +2018-11-24T10:10:46Z;nathalia;59.86805;115331553;Argentina; +2018-11-24T09:46:45Z;Armando;253.2757;115007904;Argentina; +2018-11-24T09:19:47Z;Júlio;51.39782;115715654;Argentina; +2018-11-24T09:10:41Z;Ana;2700.169;114660844;Argentina; +2018-11-24T08:28:49Z;Eduardo;643.3806;114844048;Argentina; +2018-11-24T08:21:42Z;Armando;1791.066;115301477;Argentina; +2018-11-24T08:03:57Z;Nathália;1640.763;115387362;Argentina; +2018-11-24T07:56:57Z;nathalia;1327.248;114670433;Argentina; +2018-11-24T06:55:07Z;nathalia;1259.221;115794769;Argentina; +2018-11-24T06:46:54Z;Sandra;1380.16;115359854;Argentina; +2018-11-24T06:36:17Z;Armando;315.4922;116372681;Argentina; +2018-11-24T06:27:49Z;Sandra;4240.218;115291438;Argentina; +2018-11-24T06:01:09Z;Júlio;1780.286;116330551;Argentina; +2018-11-24T05:39:38Z;Sandra;3011.45;115512357;Argentina; +2018-11-24T05:39:32Z;nathalia;439.9893;115435316;Argentina; +2018-11-24T05:19:33Z;Júlio Cesar;1714.6;114486379;Argentina; +2018-11-24T05:14:09Z;Eduardo;1755;114779431;Argentina; +2018-11-24T05:14:07Z;nathalia;2476.536;114209328;Argentina; +2018-11-24T04:41:37Z;Ana;1315.984;116148650;Argentina; +2018-11-24T04:31:06Z;Ana;881.4898;115968763;Argentina; +2018-11-24T04:01:58Z;Nathália;2735.957;115688669;Argentina; +2018-11-24T03:56:44Z;Sandra;1589.867;115635412;Argentina; +2018-11-24T03:39:12Z;Ana;331.6258;114438063;Argentina; +2018-11-24T03:24:09Z;Eduardo;1463.232;115821773;Argentina; +2018-11-24T03:18:46Z;Nathália;3398.59;115532089;Argentina; +2018-11-24T03:01:08Z;Eduardo;2110.671;115707671;Argentina; +2018-11-24T02:57:22Z;Nathália;2101.804;115840070;Argentina; +2018-11-24T02:46:57Z;Nathália;1044.421;116092770;Argentina; +2018-11-24T02:45:43Z;Júlio;976.5758;116003580;Argentina; +2018-11-24T02:23:45Z;Armando;1101.277;114409188;Argentina; +2018-11-24T01:48:13Z;Júlio;1427.512;115173022;Argentina; +2018-11-24T01:25:06Z;Júlio;261.8763;116187716;Argentina; +2018-11-24T00:27:29Z;Nathália;1357.123;116105399;Argentina; +2018-11-24T00:25:31Z;Júlio Cesar;873.3985;114882884;Argentina; +2018-11-24T00:23:35Z;Nathália;2053.4;114866741;Argentina; +2018-11-24T00:11:28Z;Júlio Cesar;1178.746;114796008;Argentina; +2018-11-23T23:50:10Z;Júlio Cesar;871.9561;114203004;Argentina; +2018-11-23T23:30:50Z;Nathália;1982.62;114558073;Argentina; +2018-11-23T23:25:19Z;Armando;1115.687;115253053;Argentina; +2018-11-23T23:20:16Z;Nathália;1272.538;115927099;Argentina; +2018-11-23T22:56:04Z;Júlio;1284.596;116398828;Argentina; +2018-11-23T22:52:52Z;Júlio Cesar;750.2034;115172545;Argentina; +2018-11-23T22:34:29Z;Sandra;2020.357;116280624;Argentina; +2018-11-23T22:15:12Z;Júlio;454.7068;115663425;Argentina; +2018-11-23T22:01:12Z;Armando;843.6352;115344042;Argentina; +2018-11-23T21:59:25Z;Sandra;1496.144;115396705;Argentina; +2018-11-23T21:51:03Z;Armando;2003.881;115444708;Argentina; +2018-11-23T21:46:37Z;Eduardo;168.0709;114293101;Argentina; +2018-11-23T21:38:37Z;Eduardo;173.4005;115088297;Argentina; +2018-11-23T20:36:40Z;Júlio;97.85804;115522460;Argentina; +2018-11-23T20:36:34Z;Armando;1548.88;115933417;Argentina; +2018-11-23T20:19:33Z;Armando;106.4559;115224907;Argentina; +2018-11-23T19:56:11Z;nathalia;2712.338;114553129;Argentina; +2018-11-23T19:32:49Z;Armando;2682.201;114829512;Argentina; +2018-11-23T19:22:01Z;nathalia;1019.878;115974023;Argentina; +2018-11-23T19:06:47Z;nathalia;381.0863;115654953;Argentina; +2018-11-23T18:57:13Z;Júlio Cesar;1555.004;116177898;Argentina; +2018-11-23T18:54:09Z;Eduardo;1134.785;114550981;Argentina; +2018-11-23T18:53:10Z;nathalia;703.8425;115169031;Argentina; +2018-11-23T18:47:54Z;Ana;23.16343;115530550;Argentina; +2018-11-23T18:27:35Z;nathalia;2743.948;115584206;Argentina; +2018-11-23T18:23:20Z;Sandra;1161.858;114296431;Argentina; +2018-11-23T18:15:36Z;Eduardo;481.0402;115929206;Argentina; +2018-11-23T18:08:27Z;Júlio Cesar;2416.013;116120301;Argentina; +2018-11-23T17:58:54Z;Ana;146.4007;115741820;Argentina; +2018-11-23T17:47:40Z;Nathália;2211.003;114854923;Argentina; +2018-11-23T17:37:39Z;Júlio;682.331;114973850;Argentina; +2018-11-23T17:34:08Z;Júlio;441.5761;115932401;Argentina; +2018-11-23T17:29:15Z;Júlio;3072.597;115585019;Argentina; +2018-11-23T17:28:20Z;nathalia;40.41607;115663301;Argentina; +2018-11-23T17:20:21Z;Júlio Cesar;1527.675;114761118;Argentina; +2018-11-23T16:37:56Z;Armando;579.8284;114699888;Argentina; +2018-11-23T16:27:37Z;Eduardo;3553.533;114242107;Argentina; +2018-11-23T16:06:06Z;Ana;296.1585;116241276;Argentina; +2018-11-23T15:56:58Z;Sandra;1448.859;116137704;Argentina; +2018-11-23T15:43:57Z;nathalia;304.6237;114607814;Argentina; +2018-11-23T15:41:30Z;Júlio Cesar;3155.834;115101166;Argentina; +2018-11-23T15:38:46Z;Júlio Cesar;310.8572;116172222;Argentina; +2018-11-23T15:29:50Z;Armando;1011.286;115439644;Argentina; +2018-11-23T15:13:06Z;Júlio Cesar;737.971;115898226;Argentina; +2018-11-23T15:06:39Z;Júlio Cesar;614.2751;114729790;Argentina; +2018-11-23T15:01:37Z;Nathália;402.1836;114674887;Argentina; +2018-11-23T15:01:33Z;Armando;23.2697;115888045;Argentina; +2018-11-23T14:36:47Z;nathalia;1855.948;114793423;Argentina; +2018-11-23T13:48:54Z;Júlio;3677.729;115872037;Argentina; +2018-11-23T13:20:37Z;Armando;138.5049;115471266;Argentina; +2018-11-23T13:16:48Z;Armando;57.91932;115903601;Argentina; +2018-11-23T13:12:41Z;Júlio Cesar;1128.334;114470583;Argentina; +2018-11-23T12:45:18Z;Júlio Cesar;3690.25;115050180;Argentina; +2018-11-23T12:39:50Z;Júlio;551.005;115043463;Argentina; +2018-11-23T12:28:26Z;Nathália;85.38813;116048375;Argentina; +2018-11-23T12:08:32Z;Eduardo;1014.622;114754350;Argentina; +2018-11-23T11:58:52Z;Eduardo;439.0286;114338952;Argentina; +2018-11-23T11:48:30Z;nathalia;380.5026;115184969;Argentina; +2018-11-23T11:23:54Z;nathalia;995.0294;116263774;Argentina; +2018-11-23T11:03:11Z;Júlio Cesar;836.7239;115732791;Argentina; +2018-11-23T10:47:36Z;Sandra;1453.196;114584433;Argentina; +2018-11-23T10:41:33Z;Eduardo;817.4262;115463418;Argentina; +2018-11-23T10:35:29Z;Sandra;313.0061;115985613;Argentina; +2018-11-23T10:07:27Z;Sandra;2666.174;115460141;Argentina; +2018-11-23T10:00:48Z;Sandra;539.2872;115562275;Argentina; +2018-11-23T08:18:32Z;Armando;225.1583;114931020;Argentina; +2018-11-23T08:12:28Z;Eduardo;1529.19;114757295;Argentina; +2018-11-23T08:04:57Z;Júlio Cesar;4028.204;114585094;Argentina; +2018-11-23T07:44:22Z;Júlio;74.40599;114655897;Argentina; +2018-11-23T07:14:16Z;Nathália;3391.199;115099943;Argentina; +2018-11-23T07:03:12Z;Nathália;3663.854;115006403;Argentina; +2018-11-23T06:04:08Z;nathalia;620.1261;114380936;Argentina; +2018-11-23T05:57:26Z;Eduardo;1751.212;115144580;Argentina; +2018-11-23T05:17:51Z;Eduardo;555.5115;115135169;Argentina; +2018-11-23T05:13:14Z;Sandra;477.671;116007857;Argentina; +2018-11-23T04:56:08Z;Sandra;867.1405;114569349;Argentina; +2018-11-23T03:57:47Z;Ana;392.2628;115407504;Argentina; +2018-11-23T03:27:35Z;Júlio Cesar;102.4695;114784824;Argentina; +2018-11-23T03:08:27Z;Armando;793.4774;114869859;Argentina; +2018-11-23T02:49:32Z;nathalia;4536.177;116177605;Argentina; +2018-11-23T02:48:50Z;Júlio;14.89947;114822840;Argentina; +2018-11-23T02:30:52Z;Ana;2971.288;115230971;Argentina; +2018-11-23T01:51:48Z;Armando;2031.955;115755493;Argentina; +2018-11-23T01:41:29Z;Júlio Cesar;1139.424;114910542;Argentina; +2018-11-23T01:16:31Z;nathalia;3411.381;116307828;Argentina; +2018-11-23T01:13:38Z;Nathália;2351.945;114204742;Argentina; +2018-11-23T01:12:38Z;Eduardo;257.7663;114442098;Argentina; +2018-11-23T00:22:10Z;Júlio;986.794;115700730;Argentina; +2018-11-23T00:21:34Z;Júlio;45.28949;114325343;Argentina; +2018-11-22T23:50:50Z;Júlio;397.687;114939857;Argentina; +2018-11-22T23:48:24Z;Eduardo;529.8411;115227711;Argentina; +2018-11-22T22:59:42Z;Ana;1980.34;115853350;Argentina; +2018-11-22T22:50:30Z;Sandra;1320.998;114274686;Argentina; +2018-11-22T22:39:15Z;Eduardo;2420.616;115675985;Argentina; +2018-11-22T22:34:29Z;Sandra;596.6136;114460349;Argentina; +2018-11-22T21:44:24Z;Júlio Cesar;880.1484;115342331;Argentina; +2018-11-22T21:41:08Z;Ana;2875.025;115153409;Argentina; +2018-11-22T21:24:17Z;Eduardo;145.711;115265711;Argentina; +2018-11-22T21:23:00Z;Júlio Cesar;244.2271;115576732;Argentina; +2018-11-22T21:15:04Z;nathalia;160.1683;114473874;Argentina; +2018-11-22T21:08:39Z;Nathália;1273.77;115688560;Argentina; +2018-11-22T21:02:02Z;Nathália;3821.495;116390209;Argentina; +2018-11-22T20:53:05Z;Sandra;151.3957;114916661;Argentina; +2018-11-22T20:20:37Z;Armando;618.1485;115797156;Argentina; +2018-11-22T20:16:49Z;Ana;401.2621;114861439;Argentina; +2018-11-22T20:08:25Z;Nathália;840.0945;115555299;Argentina; +2018-11-22T19:34:11Z;Nathália;3408.202;115353534;Argentina; +2018-11-22T19:24:11Z;Ana;728.1167;114341428;Argentina; +2018-11-22T19:09:42Z;Júlio Cesar;3757.255;114819901;Argentina; +2018-11-22T19:02:16Z;Eduardo;1261.173;114830138;Argentina; +2018-11-22T18:51:38Z;Júlio Cesar;674.0051;114759967;Argentina; +2018-11-22T18:38:10Z;Sandra;113.7117;115122485;Argentina; +2018-11-22T18:07:20Z;Nathália;495.7566;114679185;Argentina; +2018-11-22T17:23:05Z;Ana;478.2745;114998193;Argentina; +2018-11-22T17:12:29Z;Nathália;1283.483;116166604;Argentina; +2018-11-22T17:02:21Z;Nathália;788.1224;114900373;Argentina; +2018-11-22T16:54:17Z;Júlio Cesar;1155.25;115092668;Argentina; +2018-11-22T16:49:04Z;Júlio;1927.617;114946383;Argentina; +2018-11-22T16:40:59Z;Armando;1352.191;114255626;Argentina; +2018-11-22T16:38:28Z;Eduardo;2220.611;115987794;Argentina; +2018-11-22T16:21:32Z;Ana;2136.909;114451485;Argentina; +2018-11-22T15:39:11Z;Ana;1312.09;116118318;Argentina; +2018-11-22T15:28:04Z;Ana;2599.016;115279028;Argentina; +2018-11-22T14:58:53Z;nathalia;525.8056;114872255;Argentina; +2018-11-22T14:30:10Z;nathalia;3393.107;115282906;Argentina; +2018-11-22T14:10:19Z;Eduardo;420.0807;114671013;Argentina; +2018-11-22T13:48:39Z;Ana;530.4148;115733374;Argentina; +2018-11-22T13:47:19Z;Júlio Cesar;768.9268;114389659;Argentina; +2018-11-22T13:27:14Z;Júlio Cesar;2045.054;115953263;Argentina; +2018-11-22T13:20:17Z;Ana;187.1843;114729024;Argentina; +2018-11-22T13:16:32Z;Armando;446.1337;115792784;Argentina; +2018-11-22T12:56:47Z;Nathália;1100.192;114283424;Argentina; +2018-11-22T12:55:22Z;Ana;3666.292;115747739;Argentina; +2018-11-22T12:53:08Z;Eduardo;3936.428;115457646;Argentina; +2018-11-22T12:23:10Z;Armando;2810.22;115710645;Argentina; +2018-11-22T12:23:00Z;nathalia;502.9554;114548754;Argentina; +2018-11-22T11:39:52Z;Eduardo;364.8774;115973767;Argentina; +2018-11-22T10:14:31Z;Júlio;1647.706;114400226;Argentina; +2018-11-22T09:20:51Z;Ana;1420.105;114682096;Argentina; +2018-11-22T09:13:21Z;Ana;2251.877;116117343;Argentina; +2018-11-22T09:04:26Z;Nathália;881.6674;115113166;Argentina; +2018-11-22T08:33:42Z;Sandra;2305.14;115929600;Argentina; +2018-11-22T08:31:41Z;Eduardo;3549.468;114267538;Argentina; +2018-11-22T08:01:50Z;Armando;2820.224;115231399;Argentina; +2018-11-22T07:45:05Z;Nathália;1304.705;116328071;Argentina; +2018-11-22T07:40:27Z;Ana;2286.164;115721431;Argentina; +2018-11-22T07:37:54Z;Júlio;1028.079;114905998;Argentina; +2018-11-22T07:32:41Z;Armando;1727.645;115053418;Argentina; +2018-11-22T07:32:15Z;Armando;331.3871;116236979;Argentina; +2018-11-22T07:24:32Z;Sandra;2113.306;116299165;Argentina; +2018-11-22T07:21:05Z;Eduardo;4151.471;115941119;Argentina; +2018-11-22T07:15:56Z;Sandra;1561.651;115421026;Argentina; +2018-11-22T05:18:51Z;Sandra;669.2641;115557884;Argentina; +2018-11-22T04:55:17Z;Ana;2659.971;114707221;Argentina; +2018-11-22T04:47:23Z;Júlio Cesar;1473.564;116084127;Argentina; +2018-11-22T04:33:35Z;Armando;1169.353;116134852;Argentina; +2018-11-22T04:29:27Z;Armando;1320.967;116203204;Argentina; +2018-11-22T04:25:26Z;Júlio Cesar;1644.545;115437382;Argentina; +2018-11-22T04:23:44Z;Ana;510.0569;116298092;Argentina; +2018-11-22T04:13:06Z;Júlio;2369.3;115932689;Argentina; +2018-11-22T04:07:17Z;nathalia;1185.605;115320102;Argentina; +2018-11-22T04:06:54Z;Eduardo;1277.189;116290804;Argentina; +2018-11-22T03:55:44Z;Eduardo;1162.201;114387985;Argentina; +2018-11-22T03:20:33Z;Nathália;2085.66;114453903;Argentina; +2018-11-22T03:09:08Z;Júlio Cesar;247.8273;114205685;Argentina; +2018-11-22T02:51:20Z;Júlio;646.9728;115072085;Argentina; +2018-11-22T02:44:39Z;Ana;834.2334;115034433;Argentina; +2018-11-22T02:34:49Z;Armando;1110.285;115030264;Argentina; +2018-11-22T02:26:43Z;Sandra;1317.645;115911251;Argentina; +2018-11-22T02:05:48Z;Júlio;3409.77;115495939;Argentina; +2018-11-22T02:03:39Z;Sandra;2512.498;115284155;Argentina; +2018-11-22T01:47:03Z;Júlio;1024.986;115829751;Argentina; +2018-11-22T01:44:20Z;Ana;3029.39;116091251;Argentina; +2018-11-22T00:58:08Z;Eduardo;613.6728;114803104;Argentina; +2018-11-22T00:50:33Z;Sandra;329.1629;115866761;Argentina; +2018-11-22T00:43:53Z;Júlio;2078.831;115406528;Argentina; +2018-11-22T00:43:35Z;Eduardo;513.257;115522716;Argentina; +2018-11-22T00:40:04Z;Nathália;1194.175;114466874;Argentina; +2018-11-22T00:33:55Z;Júlio;2411.269;116191283;Argentina; +2018-11-21T23:48:24Z;Ana;2859.656;114930676;Argentina; +2018-11-21T22:13:44Z;Ana;207.7685;115671172;Argentina; +2018-11-21T22:06:49Z;Armando;495.9765;114721906;Argentina; +2018-11-21T21:54:03Z;Júlio Cesar;1704.402;114580147;Argentina; +2018-11-21T21:06:19Z;Armando;1219.063;115529773;Argentina; +2018-11-21T20:58:42Z;Júlio;3069.705;114285112;Argentina; +2018-11-21T20:41:43Z;Eduardo;18.31123;116326609;Argentina; +2018-11-21T20:40:56Z;nathalia;527.0967;114652253;Argentina; +2018-11-21T20:35:47Z;Armando;1257.505;115842857;Argentina; +2018-11-21T19:41:02Z;Eduardo;2066.928;115992939;Argentina; +2018-11-21T19:39:54Z;Ana;3921.237;116042252;Argentina; +2018-11-21T19:16:45Z;Sandra;2392.26;114451741;Argentina; +2018-11-21T19:09:48Z;Júlio;1126.778;115864309;Argentina; +2018-11-21T19:04:21Z;Ana;296.1351;115575510;Argentina; +2018-11-21T19:01:22Z;Júlio;425.8056;115045586;Argentina; +2018-11-21T18:54:31Z;Júlio Cesar;1691.701;115355360;Argentina; +2018-11-21T18:39:34Z;Armando;2146.475;114226678;Argentina; +2018-11-21T18:24:20Z;nathalia;2698.45;115200444;Argentina; +2018-11-21T18:21:49Z;Ana;634.0165;115621633;Argentina; +2018-11-21T18:20:22Z;Nathália;2554.091;115494941;Argentina; +2018-11-21T18:17:52Z;Armando;1151.379;115112528;Argentina; +2018-11-21T18:15:05Z;Júlio;996.3518;114487334;Argentina; +2018-11-21T18:05:24Z;Sandra;629.9478;115657904;Argentina; +2018-11-21T18:04:21Z;Júlio;1128.233;115383249;Argentina; +2018-11-21T17:47:23Z;Nathália;2871.143;114385702;Argentina; +2018-11-21T17:38:21Z;Sandra;592.7568;114691916;Argentina; +2018-11-21T17:28:39Z;Eduardo;793.367;115157282;Argentina; +2018-11-21T17:10:35Z;Eduardo;878.0287;114458928;Argentina; +2018-11-21T17:02:16Z;Ana;3730.537;114357383;Argentina; +2018-11-21T16:56:49Z;Ana;2219.237;114774156;Argentina; +2018-11-21T16:55:10Z;Eduardo;138.9895;115967153;Argentina; +2018-11-21T16:42:23Z;Armando;4366.907;115272026;Argentina; +2018-11-21T16:15:43Z;Júlio;1250.926;116192445;Argentina; +2018-11-21T16:13:11Z;Ana;274.8815;116067256;Argentina; +2018-11-21T15:55:04Z;Nathália;1419.007;115560049;Argentina; +2018-11-21T15:42:59Z;nathalia;1012.286;116218355;Argentina; +2018-11-21T15:25:15Z;nathalia;393.5621;116339697;Argentina; +2018-11-21T15:23:23Z;Armando;444.4696;116057592;Argentina; +2018-11-21T15:14:48Z;Nathália;2349.237;115980213;Argentina; +2018-11-21T15:11:53Z;Ana;1937.927;116280703;Argentina; +2018-11-21T15:11:17Z;Júlio;1115.462;116337374;Argentina; +2018-11-21T14:53:40Z;nathalia;603.3541;115346353;Argentina; +2018-11-21T14:48:09Z;Sandra;1570.567;114551117;Argentina; +2018-11-21T14:46:40Z;Júlio;1630.56;114942904;Argentina; +2018-11-21T14:33:17Z;Nathália;977.3716;114509900;Argentina; +2018-11-21T14:14:04Z;Nathália;606.3647;115730217;Argentina; +2018-11-21T14:04:38Z;Júlio Cesar;2314.633;115377704;Argentina; +2018-11-21T13:49:21Z;Júlio Cesar;2869.072;115432541;Argentina; +2018-11-21T13:13:40Z;Armando;2083.676;115158227;Argentina; +2018-11-21T13:01:34Z;Armando;2434.918;116292504;Argentina; +2018-11-21T12:10:15Z;Júlio;2964.806;114217025;Argentina; +2018-11-21T11:52:39Z;Eduardo;1134.106;115275658;Argentina; +2018-11-21T11:24:43Z;Júlio Cesar;4160.467;115699366;Argentina; +2018-11-21T10:35:18Z;Ana;1175.507;115241390;Argentina; +2018-11-21T10:32:31Z;Júlio Cesar;1875.344;115623377;Argentina; +2018-11-21T10:26:12Z;Eduardo;1444.551;116355962;Argentina; +2018-11-21T10:26:08Z;Júlio;232.7301;115119424;Argentina; +2018-11-21T09:53:14Z;Júlio Cesar;3101.515;114579914;Argentina; +2018-11-21T09:39:36Z;Nathália;691.7144;115492444;Argentina; +2018-11-21T09:35:52Z;Sandra;585.3112;116151569;Argentina; +2018-11-21T09:20:54Z;Nathália;3056.315;115255539;Argentina; +2018-11-21T08:54:58Z;Armando;2080.777;115341129;Argentina; +2018-11-21T08:25:17Z;Armando;764.3102;115047509;Argentina; +2018-11-21T07:58:55Z;Ana;1256.018;116339158;Argentina; +2018-11-21T07:56:47Z;Eduardo;1546.544;114334540;Argentina; +2018-11-21T07:21:05Z;Ana;207.6462;116037178;Argentina; +2018-11-21T07:06:36Z;Armando;1829.076;116151995;Argentina; +2018-11-21T06:59:02Z;Nathália;1143.543;115481395;Argentina; +2018-11-21T06:46:58Z;Eduardo;4061.294;114468210;Argentina; +2018-11-21T06:32:03Z;nathalia;732.8535;115989456;Argentina; +2018-11-21T06:28:16Z;Sandra;1510.079;115994413;Argentina; +2018-11-21T06:11:31Z;Armando;1512.966;114888219;Argentina; +2018-11-21T05:15:16Z;Nathália;1736.153;115522468;Argentina; +2018-11-21T05:03:57Z;nathalia;301.0129;115728244;Argentina; +2018-11-21T04:34:16Z;nathalia;2400.233;116102329;Argentina; +2018-11-21T03:52:50Z;Eduardo;1661.458;115042002;Argentina; +2018-11-21T03:46:36Z;Júlio Cesar;3901.566;114763142;Argentina; +2018-11-21T03:44:22Z;nathalia;1312.176;114756062;Argentina; +2018-11-21T03:28:21Z;Armando;1224.743;116382854;Argentina; +2018-11-21T03:12:56Z;Nathália;3079.626;114420436;Argentina; +2018-11-21T03:00:21Z;Júlio Cesar;2489.032;115367748;Argentina; +2018-11-21T02:56:06Z;Ana;210.7257;115346908;Argentina; +2018-11-21T02:14:04Z;Ana;180.1383;115466460;Argentina; +2018-11-21T01:52:41Z;Ana;1728.412;114865315;Argentina; +2018-11-21T01:28:30Z;Armando;695.5713;114552742;Argentina; +2018-11-21T00:59:48Z;Ana;1242.952;115394147;Argentina; +2018-11-21T00:56:47Z;Sandra;341.8358;115565559;Argentina; +2018-11-21T00:49:13Z;Sandra;2327.407;115187309;Argentina; +2018-11-21T00:41:43Z;Eduardo;1009.433;115466933;Argentina; +2018-11-21T00:24:16Z;Eduardo;1851.677;115119948;Argentina; +2018-11-20T23:53:37Z;Sandra;2343.333;115808585;Argentina; +2018-11-20T23:48:33Z;Armando;2641.955;114446485;Argentina; +2018-11-20T23:21:31Z;Ana;3616.06;114916418;Argentina; +2018-11-20T23:07:09Z;Sandra;1395.065;114520856;Argentina; +2018-11-20T23:06:27Z;Nathália;1906.661;114767620;Argentina; +2018-11-20T22:37:20Z;Ana;2442.177;115641499;Argentina; +2018-11-20T22:37:16Z;Nathália;1047.051;115865346;Argentina; +2018-11-20T22:33:26Z;Júlio Cesar;579.812;114753929;Argentina; +2018-11-20T22:24:28Z;nathalia;670.8739;115974360;Argentina; +2018-11-20T22:00:14Z;Júlio Cesar;658.4501;114325251;Argentina; +2018-11-20T21:57:42Z;Ana;1288.102;116048013;Argentina; +2018-11-20T21:57:03Z;Nathália;2211.648;115956252;Argentina; +2018-11-20T21:45:09Z;Nathália;3517.317;114365428;Argentina; +2018-11-20T21:15:48Z;Sandra;733.7466;115665980;Argentina; +2018-11-20T21:14:59Z;Nathália;2240.029;114342529;Argentina; +2018-11-20T21:11:00Z;Sandra;3471.652;116372021;Argentina; +2018-11-20T20:40:12Z;Eduardo;1101.349;116165594;Argentina; +2018-11-20T20:04:02Z;Eduardo;536.9352;115906514;Argentina; +2018-11-20T20:03:49Z;nathalia;1036.519;116111522;Argentina; +2018-11-20T19:27:17Z;Eduardo;793.0324;115201635;Argentina; +2018-11-20T19:25:39Z;Ana;810.6341;115162833;Argentina; +2018-11-20T19:22:30Z;Júlio;1028.137;116392034;Argentina; +2018-11-20T19:04:20Z;Júlio;4505.573;114486053;Argentina; +2018-11-20T18:47:53Z;Armando;1809.256;114226518;Argentina; +2018-11-20T18:38:07Z;Júlio Cesar;879.1062;116045764;Argentina; +2018-11-20T18:36:00Z;Júlio;455.2305;115294562;Argentina; +2018-11-20T18:34:01Z;Nathália;746.7285;115704918;Argentina; +2018-11-20T18:26:01Z;Armando;1476.354;115838051;Argentina; +2018-11-20T18:20:25Z;Ana;2751.67;115892772;Argentina; +2018-11-20T17:52:17Z;Ana;1300.992;115999803;Argentina; +2018-11-20T17:36:29Z;Ana;121.485;114408256;Argentina; +2018-11-20T17:28:24Z;Nathália;2231.184;114203821;Argentina; +2018-11-20T17:23:17Z;nathalia;2223.995;115044021;Argentina; +2018-11-20T16:58:25Z;Júlio;4300.038;115329095;Argentina; +2018-11-20T16:56:09Z;Sandra;887.1456;116322324;Argentina; +2018-11-20T16:55:26Z;Júlio Cesar;207.7399;115129990;Argentina; +2018-11-20T16:49:24Z;Nathália;1262.349;115448600;Argentina; +2018-11-20T16:41:59Z;Júlio Cesar;1365.832;115532829;Argentina; +2018-11-20T16:29:21Z;Sandra;2286.618;114351675;Argentina; +2018-11-20T16:24:19Z;nathalia;659.0694;114219772;Argentina; +2018-11-20T15:59:17Z;Nathália;29.39082;114415804;Argentina; +2018-11-20T14:27:54Z;Ana;1797.334;115779919;Argentina; +2018-11-20T14:00:49Z;nathalia;1475.304;115057783;Argentina; +2018-11-20T13:46:55Z;Júlio Cesar;546.5477;115413524;Argentina; +2018-11-20T13:46:45Z;Sandra;1478.841;114803620;Argentina; +2018-11-20T13:37:57Z;Sandra;608.2753;114326845;Argentina; +2018-11-20T13:31:53Z;Nathália;2706.095;115899395;Argentina; +2018-11-20T13:17:55Z;Sandra;2853.372;116361732;Argentina; +2018-11-20T12:40:06Z;Armando;865.3736;115639277;Argentina; +2018-11-20T12:29:32Z;Ana;983.8527;114436727;Argentina; +2018-11-20T12:16:11Z;Eduardo;1750.378;115390834;Argentina; +2018-11-20T12:10:53Z;Nathália;245.6565;115456778;Argentina; +2018-11-20T11:11:28Z;nathalia;561.3959;116054164;Argentina; +2018-11-20T10:50:07Z;Nathália;3416.803;115564500;Argentina; +2018-11-20T10:32:07Z;nathalia;4601.941;114849145;Argentina; +2018-11-20T10:25:03Z;Eduardo;2885.349;115146591;Argentina; +2018-11-20T09:58:25Z;Nathália;331.3351;114466324;Argentina; +2018-11-20T08:47:00Z;Júlio;218.524;116187604;Argentina; +2018-11-20T08:30:26Z;Sandra;666.6345;114844406;Argentina; +2018-11-20T08:24:26Z;Eduardo;1471.318;115704912;Argentina; +2018-11-20T08:22:51Z;Ana;560.6607;115714887;Argentina; +2018-11-20T08:21:41Z;Eduardo;534.1132;115363365;Argentina; +2018-11-20T08:08:50Z;Eduardo;2304.327;114909613;Argentina; +2018-11-20T07:48:27Z;Ana;4141.615;115335691;Argentina; +2018-11-20T07:43:01Z;Eduardo;2197.027;115150333;Argentina; +2018-11-20T07:37:23Z;nathalia;2632.011;116339574;Argentina; +2018-11-20T06:52:59Z;Armando;226.0524;114829826;Argentina; +2018-11-20T06:51:18Z;Sandra;1386.707;115109493;Argentina; +2018-11-20T06:44:31Z;Armando;313.2337;115511696;Argentina; +2018-11-20T06:36:59Z;nathalia;3833.08;115245711;Argentina; +2018-11-20T06:26:36Z;Júlio Cesar;13.64041;116070327;Argentina; +2018-11-20T06:21:44Z;Eduardo;882.9152;114833769;Argentina; +2018-11-20T06:19:56Z;Ana;1289.864;114938491;Argentina; +2018-11-20T06:17:12Z;Armando;2720.85;114927785;Argentina; +2018-11-20T06:05:41Z;Júlio Cesar;2776.627;115514247;Argentina; +2018-11-20T06:00:05Z;Nathália;4818.735;114618959;Argentina; +2018-11-20T05:56:32Z;Ana;2148.748;115180108;Argentina; +2018-11-20T05:41:03Z;Eduardo;1950.947;115144392;Argentina; +2018-11-20T05:38:13Z;Ana;1515.69;116275901;Argentina; +2018-11-20T04:51:04Z;Armando;1518.09;116130373;Argentina; +2018-11-20T04:45:27Z;Júlio;2686.147;114340175;Argentina; +2018-11-20T03:59:04Z;Armando;1671.765;115062830;Argentina; +2018-11-20T03:26:21Z;Eduardo;249.7175;115602213;Argentina; +2018-11-20T03:20:58Z;Júlio Cesar;80.76253;115901269;Argentina; +2018-11-20T03:05:10Z;Armando;489.0775;115054553;Argentina; +2018-11-20T02:47:39Z;Júlio Cesar;3097.788;114872368;Argentina; +2018-11-20T02:41:58Z;Sandra;22.01918;114319493;Argentina; +2018-11-20T02:35:50Z;nathalia;461.9805;115338486;Argentina; +2018-11-20T02:35:33Z;nathalia;95.63245;115522090;Argentina; +2018-11-20T02:00:20Z;Armando;1703.093;116385729;Argentina; +2018-11-20T01:29:46Z;Eduardo;1932.128;114885412;Argentina; +2018-11-20T01:05:35Z;Nathália;398.9562;116335425;Argentina; +2018-11-20T00:38:16Z;Ana;2421.44;116060707;Argentina; +2018-11-20T00:33:54Z;Ana;1586.335;116032252;Argentina; +2018-11-20T00:00:33Z;Júlio;383.1495;114733089;Argentina; +2018-11-19T23:58:06Z;Sandra;84.40238;115910361;Argentina; +2018-11-19T23:57:38Z;Eduardo;1887.804;116062968;Argentina; +2018-11-19T23:47:39Z;Júlio;1569.391;115415908;Argentina; +2018-11-19T23:22:33Z;Nathália;1046.902;114521509;Argentina; +2018-11-19T22:46:25Z;Armando;722.1357;114499483;Argentina; +2018-11-19T22:17:37Z;nathalia;3075.457;116031278;Argentina; +2018-11-19T22:16:19Z;Júlio;919.0026;116003146;Argentina; +2018-11-19T22:14:54Z;nathalia;412.3809;115409163;Argentina; +2018-11-19T21:37:33Z;nathalia;1035.298;115234984;Argentina; +2018-11-19T21:30:32Z;Júlio Cesar;591.3195;114408558;Argentina; +2018-11-19T21:26:44Z;nathalia;264.2303;116294117;Argentina; +2018-11-19T21:25:25Z;Armando;1142.26;115288510;Argentina; +2018-11-19T20:38:10Z;Ana;784.8319;115673052;Argentina; +2018-11-19T20:26:00Z;Sandra;310.5803;114884224;Argentina; +2018-11-19T20:22:07Z;Sandra;157.8263;115798786;Argentina; +2018-11-19T19:28:26Z;Eduardo;1983.918;115472040;Argentina; +2018-11-19T19:23:11Z;Armando;71.34737;114755234;Argentina; +2018-11-19T18:29:55Z;Júlio Cesar;2311.466;115186306;Argentina; +2018-11-19T17:52:31Z;Sandra;2843.355;114786513;Argentina; +2018-11-19T17:28:16Z;Júlio;2718.741;115857833;Argentina; +2018-11-19T17:25:41Z;Júlio;3382.2;114685143;Argentina; +2018-11-19T17:19:46Z;Eduardo;2267.279;115647654;Argentina; +2018-11-19T17:07:53Z;Júlio Cesar;1719.9;115759426;Argentina; +2018-11-19T16:35:43Z;Júlio Cesar;523.4923;115578692;Argentina; +2018-11-19T15:58:49Z;Sandra;1718.975;114429732;Argentina; +2018-11-19T15:45:30Z;Ana;123.5384;115689373;Argentina; +2018-11-19T15:43:24Z;Júlio;197.6397;114904252;Argentina; +2018-11-19T15:32:56Z;nathalia;502.5111;115335147;Argentina; +2018-11-19T15:02:49Z;Eduardo;2518.327;115294651;Argentina; +2018-11-19T14:50:05Z;Júlio;2490.111;116302867;Argentina; +2018-11-19T14:31:49Z;Ana;1329.422;115633995;Argentina; +2018-11-19T14:21:09Z;Júlio Cesar;582.4841;115235203;Argentina; +2018-11-19T14:15:42Z;Júlio;2402.734;115257211;Argentina; +2018-11-19T13:58:54Z;nathalia;902.6706;116065767;Argentina; +2018-11-19T13:56:21Z;Nathália;1348.444;115644611;Argentina; +2018-11-19T13:51:06Z;Armando;2192.529;114377864;Argentina; +2018-11-19T13:33:06Z;Ana;1180.417;115968266;Argentina; +2018-11-19T13:31:08Z;Júlio;1617.095;115822272;Argentina; +2018-11-19T13:05:21Z;Ana;2207.573;114396140;Argentina; +2018-11-19T12:53:36Z;Eduardo;289.2193;114497905;Argentina; +2018-11-19T12:32:18Z;Eduardo;932.4265;115228720;Argentina; +2018-11-19T12:26:11Z;Júlio Cesar;344.1525;114565759;Argentina; +2018-11-19T12:24:41Z;nathalia;781.2832;114966918;Argentina; +2018-11-19T12:18:57Z;Ana;195.8334;114568346;Argentina; +2018-11-19T12:04:58Z;Ana;2293.535;115815132;Argentina; +2018-11-19T11:52:53Z;Ana;658.7503;114360008;Argentina; +2018-11-19T11:46:01Z;nathalia;1042.453;114222633;Argentina; +2018-11-19T11:26:18Z;Eduardo;2115.947;114538974;Argentina; +2018-11-19T11:21:22Z;Ana;1173.972;114234669;Argentina; +2018-11-19T11:19:02Z;Sandra;3230.28;116378094;Argentina; +2018-11-19T10:58:26Z;Nathália;2313.839;114277947;Argentina; +2018-11-19T10:56:01Z;Sandra;1614.013;114220537;Argentina; +2018-11-19T10:54:32Z;nathalia;2487.898;116370634;Argentina; +2018-11-19T10:11:01Z;nathalia;325.2331;115368292;Argentina; +2018-11-19T10:10:44Z;Nathália;331.4639;116267562;Argentina; +2018-11-19T09:43:50Z;Armando;399.5396;115134565;Argentina; +2018-11-19T09:40:44Z;Sandra;1697.99;115756593;Argentina; +2018-11-19T09:38:58Z;Sandra;194.8617;115869286;Argentina; +2018-11-19T09:23:35Z;Eduardo;269.9008;114674794;Argentina; +2018-11-19T09:08:17Z;Sandra;2255.686;115318250;Argentina; +2018-11-19T09:01:33Z;Júlio Cesar;914.6211;116063601;Argentina; +2018-11-19T08:52:34Z;Eduardo;2557.764;114653318;Argentina; +2018-11-19T08:42:13Z;Armando;408.8028;115811576;Argentina; +2018-11-19T08:37:14Z;Júlio Cesar;2691.333;115238039;Argentina; +2018-11-19T08:36:02Z;Nathália;1470.829;116061494;Argentina; +2018-11-19T08:27:51Z;Júlio Cesar;1255.485;115554766;Argentina; +2018-11-19T08:18:20Z;Eduardo;2392.472;114492358;Argentina; +2018-11-19T07:25:52Z;Júlio Cesar;1267.764;116063965;Argentina; +2018-11-19T06:59:44Z;Nathália;1842.836;114299649;Argentina; +2018-11-19T06:55:20Z;Armando;706.9335;114623797;Argentina; +2018-11-19T06:52:42Z;Júlio Cesar;1398.695;114489890;Argentina; +2018-11-19T06:40:13Z;Nathália;1867.308;116115675;Argentina; +2018-11-19T06:21:00Z;Eduardo;921.092;115990577;Argentina; +2018-11-19T06:12:50Z;Eduardo;1885.839;115807792;Argentina; +2018-11-19T05:54:17Z;Nathália;584.9855;114700606;Argentina; +2018-11-19T05:28:26Z;Júlio;1410.428;115559397;Argentina; +2018-11-19T05:24:17Z;Armando;1285.876;115008395;Argentina; +2018-11-19T05:15:51Z;Júlio;90.09443;116191993;Argentina; +2018-11-19T05:15:02Z;Nathália;403.6522;115814236;Argentina; +2018-11-19T05:12:27Z;Armando;364.4216;115513073;Argentina; +2018-11-19T04:55:03Z;Sandra;1139.056;114213032;Argentina; +2018-11-19T04:33:42Z;Sandra;2455.022;115744649;Argentina; +2018-11-19T03:18:43Z;Júlio;540.7;115128805;Argentina; +2018-11-19T03:07:55Z;Armando;2787.389;115484044;Argentina; +2018-11-19T02:50:36Z;Júlio Cesar;183.2929;116041391;Argentina; +2018-11-19T02:48:30Z;Nathália;537.3579;116317115;Argentina; +2018-11-19T02:44:52Z;Júlio;1186.475;114454466;Argentina; +2018-11-19T02:20:16Z;nathalia;243.0754;115352839;Argentina; +2018-11-19T01:36:37Z;Eduardo;360.699;114736883;Argentina; +2018-11-19T01:24:45Z;nathalia;1786.578;114488676;Argentina; +2018-11-19T01:23:03Z;nathalia;94.93628;115868488;Argentina; +2018-11-19T01:05:03Z;Ana;329.1368;115825417;Argentina; +2018-11-19T00:23:37Z;Nathália;440.442;115126884;Argentina; +2018-11-19T00:05:54Z;Armando;63.90838;114912829;Argentina; +2018-11-18T23:57:46Z;Júlio;549.6268;115949862;Argentina; +2018-11-18T23:55:51Z;Nathália;366.2542;115805409;Argentina; +2018-11-18T23:50:07Z;Sandra;2161.202;115420426;Argentina; +2018-11-18T23:46:08Z;Eduardo;2680.55;115987758;Argentina; +2018-11-18T23:24:49Z;Armando;1161.677;115351113;Argentina; +2018-11-18T23:23:28Z;nathalia;158.5225;114872025;Argentina; +2018-11-18T23:13:17Z;Júlio;2690.769;115783845;Argentina; +2018-11-18T22:58:17Z;Armando;998.3409;114294749;Argentina; +2018-11-18T22:42:25Z;Júlio Cesar;1077.369;115579084;Argentina; +2018-11-18T22:27:46Z;Armando;1294.61;115196053;Argentina; +2018-11-18T22:26:35Z;Eduardo;2810.391;115886141;Argentina; +2018-11-18T21:50:26Z;nathalia;305.8451;114913165;Argentina; +2018-11-18T21:47:03Z;Ana;3087.755;115304331;Argentina; +2018-11-18T21:46:42Z;Júlio Cesar;2164.139;116034832;Argentina; +2018-11-18T21:43:51Z;Nathália;3371.312;114700383;Argentina; +2018-11-18T21:43:42Z;Armando;6.740609;115830326;Argentina; +2018-11-18T21:28:27Z;Júlio;3086.877;114532396;Argentina; +2018-11-18T21:24:18Z;Sandra;949.1749;114551804;Argentina; +2018-11-18T20:41:53Z;Ana;2931.614;114726287;Argentina; +2018-11-18T20:23:33Z;Sandra;167.1424;114766418;Argentina; +2018-11-18T20:17:32Z;Armando;120.7509;116308560;Argentina; +2018-11-18T19:55:04Z;nathalia;1699.299;114690611;Argentina; +2018-11-18T19:52:59Z;Ana;1790.657;116196377;Argentina; +2018-11-18T19:51:54Z;Nathália;1293.268;114799779;Argentina; +2018-11-18T19:35:19Z;Ana;242.3144;115775493;Argentina; +2018-11-18T19:19:30Z;Sandra;3790.827;115422887;Argentina; +2018-11-18T18:52:05Z;Eduardo;2559.081;114226624;Argentina; +2018-11-18T18:49:22Z;Júlio Cesar;2535.615;114253047;Argentina; +2018-11-18T18:30:03Z;Júlio;920.9117;115252467;Argentina; +2018-11-18T18:03:06Z;Júlio Cesar;1879.157;114679623;Argentina; +2018-11-18T17:59:21Z;Sandra;84.03948;115917230;Argentina; +2018-11-18T17:22:41Z;Júlio;1048.233;114557179;Argentina; +2018-11-18T17:20:44Z;Ana;3714.711;114642658;Argentina; +2018-11-18T17:16:16Z;Júlio;691.6618;115068042;Argentina; +2018-11-18T17:03:18Z;Eduardo;151.6944;114652461;Argentina; +2018-11-18T16:28:50Z;nathalia;1476.633;116105658;Argentina; +2018-11-18T16:11:45Z;nathalia;1027.151;114449846;Argentina; +2018-11-18T15:58:05Z;Júlio;358.0819;116169281;Argentina; +2018-11-18T15:46:17Z;Júlio;408.6839;115847249;Argentina; +2018-11-18T15:23:01Z;nathalia;1137.616;115173714;Argentina; +2018-11-18T15:19:21Z;Armando;2501.018;115813527;Argentina; +2018-11-18T15:04:04Z;nathalia;2525.473;116172629;Argentina; +2018-11-18T14:50:15Z;nathalia;529.25;114837016;Argentina; +2018-11-18T14:39:44Z;Eduardo;2903.08;115152398;Argentina; +2018-11-18T14:07:51Z;Armando;2078.513;115617069;Argentina; +2018-11-18T14:04:15Z;Júlio Cesar;281.9299;114373735;Argentina; +2018-11-18T13:51:52Z;Armando;1915.231;115255334;Argentina; +2018-11-18T13:40:29Z;Júlio Cesar;1479.161;115274608;Argentina; +2018-11-18T13:08:27Z;nathalia;1803.711;114423683;Argentina; +2018-11-18T13:02:00Z;Armando;586.6117;115645556;Argentina; +2018-11-18T12:51:21Z;Júlio Cesar;3120.887;115172491;Argentina; +2018-11-18T12:33:48Z;Sandra;1106.374;115244570;Argentina; +2018-11-18T12:19:09Z;Nathália;714.2748;116358792;Argentina; +2018-11-18T12:06:35Z;nathalia;509.8515;114464226;Argentina; +2018-11-18T12:01:35Z;Ana;127.1037;116270771;Argentina; +2018-11-18T11:51:47Z;Ana;1240.144;116344825;Argentina; +2018-11-18T11:35:06Z;nathalia;13.813;114538065;Argentina; +2018-11-18T11:29:19Z;Júlio Cesar;345.3219;115251805;Argentina; +2018-11-18T11:26:14Z;Júlio;895.4185;115764093;Argentina; +2018-11-18T11:24:27Z;Armando;4333.141;115792137;Argentina; +2018-11-18T11:22:54Z;Armando;2903.275;116343068;Argentina; +2018-11-18T11:20:26Z;Ana;524.6785;115020877;Argentina; +2018-11-18T11:12:46Z;Eduardo;291.6121;116028150;Argentina; +2018-11-18T10:58:52Z;Sandra;571.637;115530100;Argentina; +2018-11-18T10:54:15Z;Eduardo;2644.755;116390320;Argentina; +2018-11-18T10:41:43Z;Sandra;292.1537;116073745;Argentina; +2018-11-18T10:30:35Z;Sandra;3195.205;115005216;Argentina; +2018-11-18T10:17:57Z;Júlio;2349.527;115923566;Argentina; +2018-11-18T10:11:17Z;Sandra;1457.478;115810830;Argentina; +2018-11-18T10:09:04Z;Nathália;1014.268;115196846;Argentina; +2018-11-18T10:08:45Z;Júlio Cesar;1837.161;114631493;Argentina; +2018-11-18T09:59:02Z;Sandra;316.1518;116152210;Argentina; +2018-11-18T09:44:15Z;Armando;512.0168;115452416;Argentina; +2018-11-18T09:22:35Z;Júlio;65.5641;115598914;Argentina; +2018-11-18T09:18:58Z;Júlio;2082.785;116214480;Argentina; +2018-11-18T09:05:14Z;Eduardo;632.91010000000006;115167432;Argentina; +2018-11-18T09:04:25Z;Eduardo;3319.751;115152164;Argentina; +2018-11-18T08:57:52Z;Armando;1966.072;116368561;Argentina; +2018-11-18T08:47:31Z;Sandra;691.9968;114575057;Argentina; +2018-11-18T08:34:07Z;Sandra;243.2012;115452096;Argentina; +2018-11-18T08:31:35Z;Ana;451.3204;114340251;Argentina; +2018-11-18T08:07:36Z;Júlio;2043.331;116294494;Argentina; +2018-11-18T07:59:18Z;Nathália;191.393;116100592;Argentina; +2018-11-18T07:51:38Z;Júlio Cesar;1154.203;114465839;Argentina; +2018-11-18T07:45:41Z;Ana;481.7826;116027321;Argentina; +2018-11-18T07:37:44Z;Júlio Cesar;721.4314;114479389;Argentina; +2018-11-18T07:35:37Z;Júlio Cesar;1411.337;115380711;Argentina; +2018-11-18T07:22:58Z;Ana;2086.234;115428251;Argentina; +2018-11-18T07:11:58Z;Eduardo;1915.351;114648341;Argentina; +2018-11-18T06:40:54Z;Júlio;1659.628;116350998;Argentina; +2018-11-18T06:05:13Z;Júlio;1698.661;116328557;Argentina; +2018-11-18T04:54:24Z;Ana;300.2577;116099557;Argentina; +2018-11-18T04:42:54Z;Eduardo;1870.141;115116970;Argentina; +2018-11-18T04:41:05Z;Júlio;1273.516;116067076;Argentina; +2018-11-18T04:39:29Z;Ana;2989.207;116155159;Argentina; +2018-11-18T03:58:41Z;Nathália;2271.91;114452366;Argentina; +2018-11-18T03:36:21Z;nathalia;179.4367;115458625;Argentina; +2018-11-18T03:13:24Z;Ana;1969.919;114749502;Argentina; +2018-11-18T02:47:38Z;Eduardo;1419.387;114918975;Argentina; +2018-11-18T02:46:42Z;Júlio Cesar;2104.136;114580536;Argentina; +2018-11-18T02:45:42Z;nathalia;2905.951;114575463;Argentina; +2018-11-18T02:29:35Z;Júlio;174.7356;114793470;Argentina; +2018-11-18T02:27:13Z;Armando;955.7148;114846648;Argentina; +2018-11-18T02:15:10Z;Júlio Cesar;829.7145;115285063;Argentina; +2018-11-18T02:13:13Z;Eduardo;2198.853;114968186;Argentina; +2018-11-18T02:10:50Z;Júlio;276.9516;114385636;Argentina; +2018-11-18T01:50:28Z;Júlio Cesar;2731.595;116120771;Argentina; +2018-11-18T01:43:12Z;Júlio;170.7222;114829342;Argentina; +2018-11-18T01:42:34Z;Júlio;532.0046;114323468;Argentina; +2018-11-18T01:13:20Z;Júlio;2484.161;116116142;Argentina; +2018-11-18T01:07:56Z;nathalia;460.4026;114704610;Argentina; +2018-11-18T01:05:03Z;Júlio Cesar;113.8005;114582987;Argentina; +2018-11-18T00:21:28Z;nathalia;1297.732;114282632;Argentina; +2018-11-18T00:20:37Z;Sandra;1174.609;115258080;Argentina; +2018-11-18T00:16:52Z;Júlio;2485.725;114409648;Argentina; +2018-11-18T00:12:38Z;Eduardo;4396.741;116142014;Argentina; +2018-11-18T00:04:25Z;Eduardo;817.4184;115379484;Argentina; +2018-11-17T23:43:41Z;Ana;861.841;114319228;Argentina; +2018-11-17T23:30:14Z;Armando;2443.386;116085112;Argentina; +2018-11-17T22:47:43Z;Júlio Cesar;2468.533;114717534;Argentina; +2018-11-17T22:31:46Z;Sandra;3193.704;116255251;Argentina; +2018-11-17T22:25:22Z;Júlio Cesar;2.733641;115021558;Argentina; +2018-11-17T22:20:22Z;Nathália;1947.674;115366502;Argentina; +2018-11-17T22:13:45Z;nathalia;1999.966;115475925;Argentina; +2018-11-17T21:44:01Z;Eduardo;1679.214;114668044;Argentina; +2018-11-17T21:43:07Z;Nathália;1528.078;115848277;Argentina; +2018-11-17T21:42:36Z;Júlio;800.7373;114232324;Argentina; +2018-11-17T21:32:43Z;Sandra;193.21;114370166;Argentina; +2018-11-17T21:21:08Z;nathalia;1685.127;115764019;Argentina; +2018-11-17T21:07:51Z;Nathália;914.9638;114921426;Argentina; +2018-11-17T21:07:49Z;Armando;2206.32;116140172;Argentina; +2018-11-17T20:55:40Z;Sandra;271.9225;115847992;Argentina; +2018-11-17T20:40:02Z;nathalia;39.79764;114360393;Argentina; +2018-11-17T20:35:43Z;nathalia;134.1084;115106963;Argentina; +2018-11-17T20:28:41Z;nathalia;2900.577;115819266;Argentina; +2018-11-17T19:56:04Z;Nathália;569.3472;115897072;Argentina; +2018-11-17T19:43:17Z;Júlio Cesar;3441.843;115364760;Argentina; +2018-11-17T19:04:54Z;Sandra;1134.326;114831222;Argentina; +2018-11-17T19:02:20Z;Júlio Cesar;636.2448;116256457;Argentina; +2018-11-17T19:01:57Z;Armando;619.9431;115282053;Argentina; +2018-11-17T18:53:36Z;Júlio;2767.805;115557067;Argentina; +2018-11-17T18:53:28Z;Nathália;347.2852;115839917;Argentina; +2018-11-17T18:36:47Z;Armando;1558.75;115951691;Argentina; +2018-11-17T18:27:39Z;Ana;3212.877;114366078;Argentina; +2018-11-17T17:54:45Z;Ana;109.8931;114544691;Argentina; +2018-11-17T17:49:57Z;Júlio Cesar;196.8596;116008067;Argentina; +2018-11-17T17:38:59Z;Sandra;1111.289;116114022;Argentina; +2018-11-17T17:08:26Z;Armando;651.5529;114772807;Argentina; +2018-11-17T17:05:40Z;Armando;2079.414;114987586;Argentina; +2018-11-17T17:04:16Z;Nathália;3261.501;115707182;Argentina; +2018-11-17T17:01:48Z;Sandra;912.0678;115320150;Argentina; +2018-11-17T16:58:55Z;Júlio Cesar;36.22226;115488905;Argentina; +2018-11-17T16:58:15Z;Eduardo;1714.636;115818604;Argentina; +2018-11-17T16:23:45Z;Sandra;2652.496;114934392;Argentina; +2018-11-17T16:15:43Z;Júlio;253.7771;115415786;Argentina; +2018-11-17T16:08:14Z;Júlio Cesar;2665.597;115747042;Argentina; +2018-11-17T15:46:29Z;Armando;832.6009;115216249;Argentina; +2018-11-17T15:34:42Z;Sandra;1099.128;114914576;Argentina; +2018-11-17T15:15:15Z;Ana;368.7332;115158462;Argentina; +2018-11-17T13:57:39Z;Armando;1421.995;116294259;Argentina; +2018-11-17T13:02:38Z;Júlio Cesar;1587.701;116265218;Argentina; +2018-11-17T12:48:04Z;Ana;2971.807;115018162;Argentina; +2018-11-17T12:47:18Z;Eduardo;334.2091;114836675;Argentina; +2018-11-17T12:46:35Z;Sandra;819.848;115513428;Argentina; +2018-11-17T12:20:39Z;Júlio;1758.433;114931862;Argentina; +2018-11-17T11:24:36Z;Sandra;4115.353;116249993;Argentina; +2018-11-17T11:07:55Z;Eduardo;2615.455;115861201;Argentina; +2018-11-17T10:31:32Z;Ana;2420.643;115689806;Argentina; +2018-11-17T10:13:17Z;nathalia;3211.395;115114835;Argentina; +2018-11-17T09:43:39Z;Júlio Cesar;1534.089;115619282;Argentina; +2018-11-17T09:41:31Z;Júlio Cesar;302.3435;114405621;Argentina; +2018-11-17T09:28:18Z;nathalia;1722.872;115722094;Argentina; +2018-11-17T09:17:09Z;Nathália;2835.815;115967729;Argentina; +2018-11-17T08:30:21Z;nathalia;817.2664;115905957;Argentina; +2018-11-17T07:41:06Z;Eduardo;322.0617;114279952;Argentina; +2018-11-17T07:35:29Z;nathalia;2229.426;116126301;Argentina; +2018-11-17T07:11:32Z;Sandra;2867.274;114302636;Argentina; +2018-11-17T07:09:35Z;Armando;1001.591;114359891;Argentina; +2018-11-17T06:39:10Z;nathalia;1445.848;116384039;Argentina; +2018-11-17T06:34:50Z;nathalia;2521.809;115145684;Argentina; +2018-11-17T06:03:42Z;nathalia;2793.156;114849105;Argentina; +2018-11-17T05:53:16Z;Eduardo;2767.046;114435193;Argentina; +2018-11-17T05:43:56Z;Júlio;4201.124;116392483;Argentina; +2018-11-17T05:25:04Z;Nathália;333.6477;115266750;Argentina; +2018-11-17T05:17:46Z;Eduardo;2592.111;114928990;Argentina; +2018-11-17T05:11:59Z;Ana;235.381;114816506;Argentina; +2018-11-17T05:03:28Z;Eduardo;1475.038;115277029;Argentina; +2018-11-17T04:56:26Z;nathalia;2831.034;114239133;Argentina; +2018-11-17T04:48:49Z;Júlio;369.5415;114270704;Argentina; +2018-11-17T04:17:41Z;Sandra;363.1437;114523153;Argentina; +2018-11-17T04:13:58Z;nathalia;2931.263;115867353;Argentina; +2018-11-17T04:03:05Z;Júlio Cesar;1569.136;114723926;Argentina; +2018-11-17T04:02:01Z;Júlio;2136.731;114901720;Argentina; +2018-11-17T03:57:01Z;Júlio Cesar;16.13323;115800595;Argentina; +2018-11-17T03:56:10Z;nathalia;512.4991;116169362;Argentina; +2018-11-17T03:18:29Z;Eduardo;901.042;114775180;Argentina; +2018-11-17T02:59:02Z;Nathália;1902.492;115480029;Argentina; +2018-11-17T02:42:39Z;Eduardo;2505.747;116303219;Argentina; +2018-11-17T02:37:54Z;nathalia;593.6603;114644159;Argentina; +2018-11-17T02:32:12Z;Armando;2222.249;115840831;Argentina; +2018-11-17T02:30:56Z;Armando;3520.032;114823911;Argentina; +2018-11-17T02:22:22Z;Ana;1524.156;115372474;Argentina; +2018-11-17T02:07:27Z;Eduardo;1510.684;115777371;Argentina; +2018-11-17T02:05:24Z;Eduardo;1938.88;114339357;Argentina; +2018-11-17T01:57:02Z;Júlio Cesar;4063.992;114534314;Argentina; +2018-11-17T01:41:33Z;Sandra;110.274;114409786;Argentina; +2018-11-17T01:12:47Z;Júlio Cesar;2245.907;115215909;Argentina; +2018-11-17T00:41:53Z;Armando;1115.541;115230818;Argentina; +2018-11-17T00:36:08Z;Sandra;1940.665;116139827;Argentina; +2018-11-17T00:33:20Z;Nathália;956.4824;116108482;Argentina; +2018-11-17T00:28:35Z;Nathália;1156.748;114204212;Argentina; +2018-11-17T00:24:14Z;Eduardo;2335.184;116281831;Argentina; +2018-11-17T00:18:56Z;Ana;564.8034;115447412;Argentina; +2018-11-17T00:13:56Z;Armando;2319.48;114876757;Argentina; +2018-11-17T00:03:35Z;Sandra;1231.847;115897661;Argentina; +2018-11-16T23:57:24Z;Ana;554.9617;115231102;Argentina; +2018-11-16T23:50:11Z;Nathália;2765.068;114801023;Argentina; +2018-11-16T23:48:37Z;Ana;414.7584;115316402;Argentina; +2018-11-16T23:19:00Z;Júlio;4022.027;114704108;Argentina; +2018-11-16T23:15:27Z;Armando;805.1254;115773960;Argentina; +2018-11-16T23:13:34Z;Armando;3254.914;114267913;Argentina; +2018-11-16T22:48:05Z;Júlio;197.0114;114981893;Argentina; +2018-11-16T22:26:15Z;Júlio Cesar;3905.819;115934345;Argentina; +2018-11-16T22:26:06Z;Nathália;2780.349;114297826;Argentina; +2018-11-16T22:21:19Z;Sandra;693.6704;114295900;Argentina; +2018-11-16T22:14:49Z;Ana;2028.17;115979766;Argentina; +2018-11-16T21:57:02Z;Nathália;981.165;115114827;Argentina; +2018-11-16T21:57:00Z;Ana;1499.718;115079245;Argentina; +2018-11-16T21:40:38Z;Júlio Cesar;3430.554;115193142;Argentina; +2018-11-16T21:27:19Z;nathalia;3098.113;115036267;Argentina; +2018-11-16T21:22:03Z;Sandra;2328.525;114390731;Argentina; +2018-11-16T20:42:07Z;Nathália;901.1867;116358055;Argentina; +2018-11-16T20:31:30Z;Armando;67.07511;115503148;Argentina; +2018-11-16T19:51:55Z;Júlio;1000.079;116138576;Argentina; +2018-11-16T19:29:07Z;nathalia;1684.358;116295290;Argentina; +2018-11-16T19:13:31Z;Nathália;726.2406;115662693;Argentina; +2018-11-16T19:00:53Z;nathalia;2484.11;115906079;Argentina; +2018-11-16T18:31:42Z;Ana;116.472;114538254;Argentina; +2018-11-16T17:31:05Z;Júlio;4152.848;115785246;Argentina; +2018-11-16T17:29:22Z;Júlio Cesar;2793.71;115150199;Argentina; +2018-11-16T16:27:56Z;Ana;184.3304;115416536;Argentina; +2018-11-16T16:19:55Z;Ana;2963.664;115247066;Argentina; +2018-11-16T16:17:22Z;Sandra;445.0501;114432316;Argentina; +2018-11-16T16:05:38Z;Júlio Cesar;1880.541;114523426;Argentina; +2018-11-16T16:03:22Z;Júlio;2496.892;114646468;Argentina; +2018-11-16T16:00:52Z;Júlio;949.332;114665398;Argentina; +2018-11-16T15:51:00Z;Armando;416.0439;115129568;Argentina; +2018-11-16T15:45:56Z;Júlio;1518.648;115131277;Argentina; +2018-11-16T15:23:19Z;Nathália;1152.266;115176349;Argentina; +2018-11-16T15:10:48Z;Júlio Cesar;1385.175;116363538;Argentina; +2018-11-16T15:08:40Z;Ana;695.7733;116349561;Argentina; +2018-11-16T14:57:21Z;Sandra;832.6436;115780438;Argentina; +2018-11-16T14:50:30Z;Armando;1413.239;115369019;Argentina; +2018-11-16T14:23:48Z;Sandra;588.5444;115884983;Argentina; +2018-11-16T13:45:40Z;Júlio;411.3428;114516063;Argentina; +2018-11-16T13:36:36Z;Sandra;1114.463;114295954;Argentina; +2018-11-16T13:19:59Z;Nathália;1377.627;114595810;Argentina; +2018-11-16T13:07:03Z;nathalia;276.5507;114997244;Argentina; +2018-11-16T12:50:13Z;nathalia;577.2299;115322658;Argentina; +2018-11-16T12:48:58Z;Nathália;150.5068;115819831;Argentina; +2018-11-16T12:43:17Z;Sandra;813.702;114487323;Argentina; +2018-11-16T12:37:35Z;nathalia;2057.777;116149751;Argentina; +2018-11-16T11:51:16Z;nathalia;2028.124;114641492;Argentina; +2018-11-16T11:36:07Z;Sandra;451.2341;114499208;Argentina; +2018-11-16T11:14:27Z;Ana;2281.529;115771050;Argentina; +2018-11-16T10:03:57Z;Sandra;1732.719;115097037;Argentina; +2018-11-16T09:45:56Z;nathalia;2865.273;115380330;Argentina; +2018-11-16T09:21:36Z;Eduardo;1025.268;115480053;Argentina; +2018-11-16T09:13:37Z;Ana;2354.648;114876714;Argentina; +2018-11-16T09:12:09Z;Ana;329.1951;114949211;Argentina; +2018-11-16T09:03:59Z;Ana;1639.759;114305044;Argentina; +2018-11-16T08:53:25Z;Sandra;1693.28;115241609;Argentina; +2018-11-16T08:37:14Z;Armando;24.68104;115181820;Argentina; +2018-11-16T08:29:20Z;Eduardo;2730.862;114245511;Argentina; +2018-11-16T08:11:56Z;Nathália;1772.499;116077913;Argentina; +2018-11-16T08:00:53Z;Eduardo;3011.691;114931674;Argentina; +2018-11-16T07:48:19Z;Nathália;577.2499;115858665;Argentina; +2018-11-16T06:56:50Z;Nathália;2604.833;114531339;Argentina; +2018-11-16T06:53:18Z;Nathália;1197.436;114779022;Argentina; +2018-11-16T06:48:32Z;Júlio Cesar;1529.763;115421910;Argentina; +2018-11-16T06:38:40Z;Júlio;261.6505;114250654;Argentina; +2018-11-16T06:00:43Z;Júlio;229.8305;114365823;Argentina; +2018-11-16T05:28:51Z;Júlio;1127.198;114923866;Argentina; +2018-11-16T05:24:21Z;Eduardo;725.8969;114968333;Argentina; +2018-11-16T04:16:06Z;Júlio Cesar;586.3299;115765431;Argentina; +2018-11-16T04:12:10Z;Armando;1887.763;114526854;Argentina; +2018-11-16T04:10:21Z;Júlio;3799.028;115589797;Argentina; +2018-11-16T03:17:10Z;Sandra;432.8691;116349809;Argentina; +2018-11-16T03:06:49Z;Ana;799.7858;115524252;Argentina; +2018-11-16T02:51:16Z;Nathália;4900.203;114207163;Argentina; +2018-11-16T02:28:28Z;nathalia;1619.935;114273329;Argentina; +2018-11-16T01:58:43Z;Armando;1771.263;114641364;Argentina; +2018-11-16T01:52:28Z;Eduardo;1450.283;114867414;Argentina; +2018-11-16T01:49:21Z;Sandra;3068.584;115684821;Argentina; +2018-11-16T01:22:46Z;Sandra;222.4998;114780042;Argentina; +2018-11-16T01:13:07Z;nathalia;1586.559;115553560;Argentina; +2018-11-16T01:12:43Z;Sandra;1095.375;116204097;Argentina; +2018-11-16T00:08:02Z;Armando;134.5894;115941554;Argentina; +2018-11-15T23:57:53Z;nathalia;264.637;114227426;Argentina; +2018-11-15T22:58:54Z;Júlio;1666.538;114970488;Argentina; +2018-11-15T22:58:18Z;Sandra;88.7472;115618558;Argentina; +2018-11-15T22:37:15Z;Eduardo;1227.862;115731632;Argentina; +2018-11-15T21:53:49Z;Júlio;703.5965;114223316;Argentina; +2018-11-15T21:01:17Z;Júlio Cesar;1838.827;116298323;Argentina; +2018-11-15T20:59:55Z;Ana;705.365;116073436;Argentina; +2018-11-15T20:51:48Z;Nathália;1426.411;116160539;Argentina; +2018-11-15T20:47:12Z;Eduardo;57.21035;114331395;Argentina; +2018-11-15T20:31:39Z;nathalia;1665.839;115599471;Argentina; +2018-11-15T20:26:09Z;Júlio Cesar;3946.428;116198920;Argentina; +2018-11-15T20:04:28Z;Nathália;2958.333;115878153;Argentina; +2018-11-15T20:01:51Z;Sandra;1989.682;115969319;Argentina; +2018-11-15T19:51:45Z;nathalia;1395.42;114759200;Argentina; +2018-11-15T19:47:00Z;Júlio Cesar;3144.621;115305554;Argentina; +2018-11-15T18:49:18Z;Sandra;1209.971;114862834;Argentina; +2018-11-15T18:44:45Z;Júlio;87.63129;115360811;Argentina; +2018-11-15T18:20:12Z;nathalia;3024.333;116293506;Argentina; +2018-11-15T18:15:19Z;Nathália;1208.397;114938406;Argentina; +2018-11-15T18:12:19Z;Nathália;1823.906;116351872;Argentina; +2018-11-15T17:55:53Z;Júlio Cesar;3101.016;114726406;Argentina; +2018-11-15T17:42:29Z;Nathália;3339.882;116212973;Argentina; +2018-11-15T17:40:13Z;Júlio;750.1511;116054744;Argentina; +2018-11-15T17:39:15Z;nathalia;814.6319;114616651;Argentina; +2018-11-15T17:37:42Z;nathalia;83.2089;115714885;Argentina; +2018-11-15T17:28:58Z;Sandra;3044.329;115795270;Argentina; +2018-11-15T16:36:22Z;Ana;2853.212;116342086;Argentina; +2018-11-15T16:10:27Z;Júlio Cesar;677.7079;114885050;Argentina; +2018-11-15T15:32:42Z;Eduardo;1707.079;115769387;Argentina; +2018-11-15T14:28:17Z;nathalia;1671.294;114738685;Argentina; +2018-11-15T13:49:36Z;nathalia;1815.923;114463684;Argentina; +2018-11-15T13:44:13Z;Eduardo;1710.54;115298352;Argentina; +2018-11-15T13:14:05Z;Ana;654.7335;114348469;Argentina; +2018-11-15T13:05:48Z;Ana;1993.663;115711431;Argentina; +2018-11-15T12:19:39Z;Eduardo;4535.466;114590031;Argentina; +2018-11-15T11:47:48Z;Sandra;1759.979;116115530;Argentina; +2018-11-15T11:39:31Z;Armando;2732.153;116233835;Argentina; +2018-11-15T11:22:17Z;Nathália;3644.178;116262148;Argentina; +2018-11-15T11:08:18Z;Armando;3378.478;116050018;Argentina; +2018-11-15T11:03:07Z;Júlio;281.0332;114359858;Argentina; +2018-11-15T10:17:08Z;Júlio Cesar;1614.281;114688117;Argentina; +2018-11-15T10:08:28Z;Júlio;552.0556;114458406;Argentina; +2018-11-15T09:59:59Z;Sandra;603.3846;116088699;Argentina; +2018-11-15T09:58:50Z;nathalia;1220.02;115328588;Argentina; +2018-11-15T09:40:38Z;Júlio;325.8957;116205483;Argentina; +2018-11-15T08:57:23Z;Armando;1947.434;114207825;Argentina; +2018-11-15T08:41:19Z;Eduardo;688.1437;115643835;Argentina; +2018-11-15T08:28:33Z;Sandra;815.1119;115020116;Argentina; +2018-11-15T08:26:45Z;Eduardo;509.944;115961619;Argentina; +2018-11-15T08:12:43Z;Sandra;345.0724;115304086;Argentina; +2018-11-15T07:35:47Z;Armando;58.3265;116372406;Argentina; +2018-11-15T07:17:39Z;Nathália;780.9275;114430114;Argentina; +2018-11-15T07:13:21Z;Ana;2462.489;115059030;Argentina; +2018-11-15T06:21:24Z;Sandra;755.9904;114875106;Argentina; +2018-11-15T06:13:51Z;Eduardo;1705.638;115553264;Argentina; +2018-11-15T05:54:05Z;Nathália;2858.874;116230444;Argentina; +2018-11-15T05:53:06Z;Júlio;3702.692;116394888;Argentina; +2018-11-15T05:52:19Z;Eduardo;2903.395;116058089;Argentina; +2018-11-15T05:42:53Z;Júlio;513.6604;115439025;Argentina; +2018-11-15T05:10:08Z;nathalia;2605.654;114331917;Argentina; +2018-11-15T05:10:00Z;Sandra;95.86499;115574740;Argentina; +2018-11-15T04:34:36Z;Nathália;755.4637;115689989;Argentina; +2018-11-15T04:31:51Z;Júlio Cesar;1003.258;116219393;Argentina; +2018-11-15T04:23:35Z;Júlio;340.4602;116132474;Argentina; +2018-11-15T04:12:14Z;Armando;263.1901;114902034;Argentina; +2018-11-15T04:05:59Z;Eduardo;969.5282;115310341;Argentina; +2018-11-15T03:48:00Z;Eduardo;308.2202;116345279;Argentina; +2018-11-15T03:46:49Z;Júlio;237.1608;114892100;Argentina; +2018-11-15T03:44:33Z;Júlio;162.5607;115606559;Argentina; +2018-11-15T03:38:41Z;Júlio Cesar;903.9161;114729031;Argentina; +2018-11-15T03:23:57Z;Armando;24.41603;114833456;Argentina; +2018-11-15T03:13:45Z;Júlio;1021.077;115823019;Argentina; +2018-11-15T02:37:20Z;Júlio;1951.182;114694990;Argentina; +2018-11-15T02:26:22Z;Sandra;4391.63;114207760;Argentina; +2018-11-15T02:22:21Z;Júlio Cesar;98.02554;115644074;Argentina; +2018-11-15T02:16:50Z;Eduardo;145.5438;114995860;Argentina; +2018-11-15T02:02:49Z;Ana;359.7493;116397869;Argentina; +2018-11-15T01:59:20Z;Nathália;532.4928;115640876;Argentina; +2018-11-15T01:47:31Z;nathalia;392.2077;114430715;Argentina; +2018-11-15T01:40:45Z;Sandra;342.4256;116339979;Argentina; +2018-11-15T01:31:19Z;nathalia;122.5658;115206264;Argentina; +2018-11-15T01:23:20Z;Sandra;282.59;114691642;Argentina; +2018-11-15T01:08:07Z;nathalia;652.6657;115868300;Argentina; +2018-11-15T00:55:23Z;Júlio;1501.939;115520722;Argentina; +2018-11-15T00:51:50Z;Júlio Cesar;2265.686;115784627;Argentina; +2018-11-15T00:25:55Z;Eduardo;1708.162;115844475;Argentina; +2018-11-15T00:08:51Z;nathalia;2264.948;115869567;Argentina; +2018-11-15T00:01:55Z;Júlio;2077.326;115643653;Argentina; +2018-11-14T23:50:29Z;Júlio Cesar;825.1771;115914981;Argentina; +2018-11-14T23:34:29Z;Nathália;404.5109;116108506;Argentina; +2018-11-14T23:19:51Z;Armando;1087.193;116269688;Argentina; +2018-11-14T23:18:26Z;Sandra;1139.725;115585666;Argentina; +2018-11-14T23:15:08Z;Júlio;198.7637;115934137;Argentina; +2018-11-14T22:52:03Z;Sandra;149.6872;115436389;Argentina; +2018-11-14T22:28:39Z;Nathália;764.5165;115157987;Argentina; +2018-11-14T22:20:20Z;Júlio;1780.78;116108029;Argentina; +2018-11-14T22:15:29Z;Júlio;1821.521;115703757;Argentina; +2018-11-14T21:55:24Z;Eduardo;389.0832;114720646;Argentina; +2018-11-14T21:32:30Z;Eduardo;6084.194;114220305;Argentina; +2018-11-14T20:59:25Z;nathalia;1936.033;115656070;Argentina; +2018-11-14T20:56:20Z;Júlio Cesar;1141.673;115366954;Argentina; +2018-11-14T20:54:08Z;Eduardo;1606.894;114928353;Argentina; +2018-11-14T20:18:57Z;Eduardo;482.7313;116227040;Argentina; +2018-11-14T20:13:33Z;Armando;628.0985;115267964;Argentina; +2018-11-14T20:07:40Z;nathalia;1781.575;114985797;Argentina; +2018-11-14T19:54:19Z;Armando;80.72508;114546202;Argentina; +2018-11-14T19:00:26Z;Júlio;590.6059;116045664;Argentina; +2018-11-14T18:55:22Z;Armando;941.1076;115106477;Argentina; +2018-11-14T18:31:41Z;Sandra;2336.107;115268974;Argentina; +2018-11-14T18:26:15Z;Nathália;79.59686;114671029;Argentina; +2018-11-14T18:02:49Z;Júlio Cesar;5428.885;114220643;Argentina; +2018-11-14T17:57:34Z;Eduardo;1803.14;114540669;Argentina; +2018-11-14T17:46:24Z;Nathália;298.9274;114328625;Argentina; +2018-11-14T17:45:41Z;Nathália;3803.671;116097523;Argentina; +2018-11-14T17:22:35Z;nathalia;1159.596;115156194;Argentina; +2018-11-14T17:16:55Z;Júlio;1012.768;114246271;Argentina; +2018-11-14T17:13:13Z;Júlio;462.5644;115028381;Argentina; +2018-11-14T16:17:30Z;Júlio Cesar;465.2172;114612413;Argentina; +2018-11-14T15:57:10Z;nathalia;2602.808;116231050;Argentina; +2018-11-14T15:48:03Z;Armando;3438.344;115314230;Argentina; +2018-11-14T14:55:14Z;nathalia;1635.011;115377186;Argentina; +2018-11-14T14:46:24Z;Júlio Cesar;2232.544;114505893;Argentina; +2018-11-14T14:45:36Z;Júlio Cesar;1406.059;116052792;Argentina; +2018-11-14T14:26:56Z;Ana;2251.576;116167414;Argentina; +2018-11-14T14:10:23Z;Armando;428.018;114980561;Argentina; +2018-11-14T13:29:04Z;Sandra;2040.174;114709730;Argentina; +2018-11-14T13:25:30Z;Ana;1457.968;114506155;Argentina; +2018-11-14T13:10:28Z;Armando;4233.069;115338760;Argentina; +2018-11-14T12:31:11Z;Júlio Cesar;3884.918;115925768;Argentina; +2018-11-14T12:27:41Z;Armando;935.1758;116347980;Argentina; +2018-11-14T12:11:52Z;Armando;1619.142;114254158;Argentina; +2018-11-14T11:56:25Z;Eduardo;135.9858;114954828;Argentina; +2018-11-14T11:32:43Z;Júlio;1271.751;115456289;Argentina; +2018-11-14T11:28:14Z;Nathália;500.6347;116188496;Argentina; +2018-11-14T11:10:14Z;Júlio;1031.509;115915439;Argentina; +2018-11-14T10:43:35Z;Sandra;441.2978;115706250;Argentina; +2018-11-14T10:35:20Z;Júlio Cesar;1484.839;114337623;Argentina; +2018-11-14T10:33:54Z;nathalia;2182.605;114936740;Argentina; +2018-11-14T10:03:39Z;Sandra;613.1208;116034772;Argentina; +2018-11-14T09:28:05Z;Eduardo;81.65876;114289846;Argentina; +2018-11-14T07:31:32Z;Júlio;1368.744;115179732;Argentina; +2018-11-14T06:21:46Z;Sandra;2086.585;115373617;Argentina; +2018-11-14T06:09:37Z;nathalia;1772.386;114602166;Argentina; +2018-11-14T05:50:26Z;Júlio;116.4904;116035946;Argentina; +2018-11-14T05:43:09Z;Armando;2460.505;116304907;Argentina; +2018-11-14T05:33:36Z;Sandra;1675.002;114501445;Argentina; +2018-11-14T05:21:02Z;Sandra;480.0224;115632345;Argentina; +2018-11-14T04:45:15Z;Armando;2861.49;114547998;Argentina; +2018-11-14T04:42:46Z;Eduardo;98.07179;115232651;Argentina; +2018-11-14T04:27:45Z;Armando;2654.577;114896395;Argentina; +2018-11-14T04:05:06Z;Ana;583.8103;115203342;Argentina; +2018-11-14T03:50:08Z;nathalia;932.1822;115489560;Argentina; +2018-11-14T03:37:29Z;Armando;2148.133;115012877;Argentina; +2018-11-14T03:37:09Z;Eduardo;2547.097;115791978;Argentina; +2018-11-14T03:34:57Z;Júlio Cesar;1347.246;115650770;Argentina; +2018-11-14T03:28:43Z;Júlio;1440.967;115613709;Argentina; +2018-11-14T03:16:00Z;Nathália;1514.437;115415242;Argentina; +2018-11-14T02:58:33Z;Júlio Cesar;313.8438;115064779;Argentina; +2018-11-14T02:26:03Z;Eduardo;1743.323;114256847;Argentina; +2018-11-14T01:44:54Z;Eduardo;163.2289;114224547;Argentina; +2018-11-14T01:40:01Z;nathalia;4284.891;115584622;Argentina; +2018-11-14T01:32:02Z;Nathália;4626.239;115000120;Argentina; +2018-11-14T01:26:38Z;Nathália;2689.555;114388631;Argentina; +2018-11-14T01:23:52Z;Armando;1976.585;114782988;Argentina; +2018-11-14T01:01:19Z;Júlio Cesar;1065.549;115513478;Argentina; +2018-11-14T00:17:50Z;Júlio;720.7294;115058462;Argentina; +2018-11-13T23:50:48Z;Nathália;82.56565;114288269;Argentina; +2018-11-13T23:26:08Z;Júlio;1177.962;114487650;Argentina; +2018-11-13T23:25:51Z;Armando;1104.33;114572450;Argentina; +2018-11-13T22:55:23Z;nathalia;1149.813;116264745;Argentina; +2018-11-13T22:00:23Z;Júlio Cesar;959.5002;114228455;Argentina; +2018-11-13T21:54:18Z;Eduardo;4636.419;114268154;Argentina; +2018-11-13T21:51:14Z;Júlio Cesar;1014.059;114262689;Argentina; +2018-11-13T21:18:30Z;Ana;1999.646;115050741;Argentina; +2018-11-13T21:12:34Z;Armando;306.167;115926640;Argentina; +2018-11-13T20:13:52Z;Eduardo;12.14038;115182839;Argentina; +2018-11-13T19:58:32Z;Nathália;183.9197;115041993;Argentina; +2018-11-13T19:57:29Z;Sandra;833.6432;114289008;Argentina; +2018-11-13T19:55:00Z;Júlio;2264.025;115956072;Argentina; +2018-11-13T19:50:38Z;Júlio Cesar;678.7232;115429416;Argentina; +2018-11-13T19:34:20Z;Eduardo;1455.712;114311315;Argentina; +2018-11-13T19:22:22Z;Armando;1432.835;114542014;Argentina; +2018-11-13T18:55:45Z;Júlio;3072.466;115450054;Argentina; +2018-11-13T18:43:20Z;Júlio;3265.348;116302590;Argentina; +2018-11-13T18:31:35Z;Sandra;250.2368;114256059;Argentina; +2018-11-13T18:29:35Z;Nathália;1775.805;114320359;Argentina; +2018-11-13T18:06:14Z;Júlio;924.8864;116029327;Argentina; +2018-11-13T17:52:16Z;Júlio;1016.474;115540800;Argentina; +2018-11-13T17:33:09Z;Armando;187.1877;116226086;Argentina; +2018-11-13T17:25:39Z;Armando;1976.069;115060165;Argentina; +2018-11-13T17:13:50Z;nathalia;1758.709;114291201;Argentina; +2018-11-13T17:11:46Z;Eduardo;392.5492;115972204;Argentina; +2018-11-13T16:56:47Z;Ana;3159.442;115464348;Argentina; +2018-11-13T16:28:40Z;Sandra;1498.918;114701003;Argentina; +2018-11-13T16:26:56Z;Ana;4578.981;116155385;Argentina; +2018-11-13T16:15:20Z;Sandra;3447.984;115434625;Argentina; +2018-11-13T16:08:50Z;Armando;652.4635;116304152;Argentina; +2018-11-13T16:08:29Z;nathalia;1149.794;114253976;Argentina; +2018-11-13T16:00:20Z;nathalia;1436.962;114555432;Argentina; +2018-11-13T15:59:25Z;Nathália;327.0465;115442009;Argentina; +2018-11-13T15:38:32Z;Sandra;2392.243;116214681;Argentina; +2018-11-13T15:35:44Z;Júlio Cesar;1583.931;114783614;Argentina; +2018-11-13T15:31:41Z;Armando;731.0492;114302290;Argentina; +2018-11-13T15:16:39Z;Ana;1316.072;115869582;Argentina; +2018-11-13T14:53:53Z;Sandra;1187.457;114880996;Argentina; +2018-11-13T14:46:59Z;Júlio Cesar;355.0302;114575074;Argentina; +2018-11-13T14:34:25Z;Armando;792.7657;115566759;Argentina; +2018-11-13T14:34:12Z;Nathália;1514.846;115283318;Argentina; +2018-11-13T13:50:57Z;Armando;507.6456;114909472;Argentina; +2018-11-13T13:39:21Z;Eduardo;1286.023;114632753;Argentina; +2018-11-13T13:19:42Z;nathalia;1840.335;116356941;Argentina; +2018-11-13T13:19:16Z;Júlio Cesar;2568.065;114557717;Argentina; +2018-11-13T13:05:30Z;Nathália;3325.069;114294253;Argentina; +2018-11-13T12:45:53Z;Eduardo;404.9558;115625820;Argentina; +2018-11-13T12:35:14Z;Júlio;144.5366;115284885;Argentina; +2018-11-13T12:31:33Z;Ana;1405.747;115948179;Argentina; +2018-11-13T12:03:56Z;nathalia;1136.255;114411879;Argentina; +2018-11-13T11:55:42Z;Júlio;268.7513;114379658;Argentina; +2018-11-13T11:27:54Z;Sandra;4417.969;114340640;Argentina; +2018-11-13T11:17:39Z;Júlio Cesar;1411.075;114861934;Argentina; +2018-11-13T11:10:52Z;Nathália;78.51963;115393868;Argentina; +2018-11-13T10:53:21Z;Armando;398.8063;115457720;Argentina; +2018-11-13T10:38:45Z;Júlio Cesar;2170.002;114695753;Argentina; +2018-11-13T10:37:05Z;nathalia;263.0139;115300768;Argentina; +2018-11-13T10:17:12Z;Ana;1334.409;116102051;Argentina; +2018-11-13T09:47:31Z;Júlio Cesar;485.02;114382633;Argentina; +2018-11-13T09:34:15Z;Júlio;535.7842;115871214;Argentina; +2018-11-13T09:30:31Z;Eduardo;949.6117;115135186;Argentina; +2018-11-13T09:30:08Z;nathalia;2330.819;114571479;Argentina; +2018-11-13T09:20:03Z;Júlio Cesar;1732.252;115966645;Argentina; +2018-11-13T08:59:29Z;Ana;3744.059;114863805;Argentina; +2018-11-13T08:01:22Z;Sandra;974.4139;114766928;Argentina; +2018-11-13T07:49:29Z;nathalia;5115.103;114355109;Argentina; +2018-11-13T07:46:30Z;Júlio;2088.925;114391400;Argentina; +2018-11-13T06:55:13Z;Eduardo;2169.592;115573933;Argentina; +2018-11-13T06:17:37Z;Júlio Cesar;1858.495;114220421;Argentina; +2018-11-13T06:09:34Z;Armando;1440.441;114413868;Argentina; +2018-11-13T06:05:58Z;nathalia;1048.27;115753198;Argentina; +2018-11-13T06:03:32Z;Armando;1890.555;115928427;Argentina; +2018-11-13T05:56:57Z;Armando;340.179;115987975;Argentina; +2018-11-13T05:56:40Z;Júlio Cesar;82.523;114920260;Argentina; +2018-11-13T05:49:57Z;Júlio;740.3333;115163384;Argentina; +2018-11-13T05:44:46Z;Sandra;882.6109;115247928;Argentina; +2018-11-13T05:36:22Z;Eduardo;2595.887;115639514;Argentina; +2018-11-13T05:27:38Z;Ana;4009.129;114573955;Argentina; +2018-11-13T04:44:20Z;nathalia;1561.374;114937219;Argentina; +2018-11-13T04:08:50Z;Ana;1076.124;115455373;Argentina; +2018-11-13T04:06:21Z;Armando;483.7888;115895874;Argentina; +2018-11-13T04:01:44Z;Armando;219.0125;115346904;Argentina; +2018-11-13T03:42:23Z;Ana;875.5596;115484299;Argentina; +2018-11-13T03:32:38Z;Júlio Cesar;1643.735;116344538;Argentina; +2018-11-13T03:03:29Z;Eduardo;3828.103;116202771;Argentina; +2018-11-13T02:44:53Z;Júlio;3955.63;114247460;Argentina; +2018-11-13T02:18:27Z;Nathália;2774.321;115570596;Argentina; +2018-11-13T02:18:06Z;Eduardo;2542.432;114421655;Argentina; +2018-11-13T01:59:49Z;nathalia;52.85781;115848408;Argentina; +2018-11-13T01:17:29Z;Nathália;418.6678;114694999;Argentina; +2018-11-13T00:59:17Z;Júlio Cesar;1936.066;115625049;Argentina; +2018-11-13T00:54:11Z;Eduardo;3629.648;114403606;Argentina; +2018-12-06T22:22:43Z;Nathália;3788.112;114378977;Brazil; +2018-12-06T22:21:47Z;Eduardo;3064.626;115447615;Brazil; +2018-12-06T22:10:31Z;Armando;2946.018;116248100;Brazil; +2018-12-06T21:13:57Z;Armando;4576.155;114495336;Brazil; +2018-12-06T21:02:56Z;Júlio Cesar;359.8087;115163507;Brazil; +2018-12-06T20:53:48Z;Eduardo;1543.311;115020005;Brazil; +2018-12-06T20:47:17Z;Sandra;2334.213;114453377;Brazil; +2018-12-06T20:46:11Z;nathalia;2087.946;114432662;Brazil; +2018-12-06T20:45:22Z;Ana;975.3062;116057123;Brazil; +2018-12-06T20:44:15Z;Armando;2663.926;115573977;Brazil; +2018-12-06T20:38:20Z;nathalia;936.9258;114388596;Brazil; +2018-12-06T20:06:50Z;nathalia;3068.755;115489544;Brazil; +2018-12-06T19:59:15Z;Armando;606.589;115430833;Brazil; +2018-12-06T19:58:51Z;Ana;2809.813;114765453;Brazil; +2018-12-06T19:46:26Z;Júlio;834.6792;116246274;Brazil; +2018-12-06T19:25:20Z;Ana;600.7287;115851056;Brazil; +2018-12-06T19:14:33Z;Armando;264.8002;115445825;Brazil; +2018-12-06T19:12:36Z;Ana;4478.503;114807824;Brazil; +2018-12-06T18:42:19Z;Júlio Cesar;944.0788;115317294;Brazil; +2018-12-06T18:39:10Z;Eduardo;3977.996;115759033;Brazil; +2018-12-06T17:55:10Z;Ana;2288.675;114426501;Brazil; +2018-12-06T17:49:16Z;nathalia;3897.263;116005935;Brazil; +2018-12-06T17:37:18Z;Armando;4067.727;114283082;Brazil; +2018-12-06T16:53:06Z;Armando;1511.412;114312088;Brazil; +2018-12-06T16:34:30Z;Ana;3084.13;115139786;Brazil; +2018-12-06T15:32:59Z;Sandra;2949.688;114297335;Brazil; +2018-12-06T15:26:49Z;Eduardo;2491.714;116388929;Brazil; +2018-12-06T15:24:38Z;Eduardo;4014.489;115404534;Brazil; +2018-12-06T14:00:47Z;Eduardo;74.54787;114785689;Brazil; +2018-12-06T13:57:11Z;nathalia;4115.66;114804671;Brazil; +2018-12-06T13:33:13Z;Armando;1495.523;114442060;Brazil; +2018-12-06T13:27:53Z;Júlio Cesar;2582.672;114323905;Brazil; +2018-12-06T13:23:37Z;Nathália;933.9076;115317570;Brazil; +2018-12-06T13:23:31Z;Júlio;1453.441;114640308;Brazil; +2018-12-06T13:21:19Z;Júlio;3291.401;116252220;Brazil; +2018-12-06T13:16:57Z;Nathália;2313.205;115415800;Brazil; +2018-12-06T13:05:36Z;Armando;3476.601;115507798;Brazil; +2018-12-06T12:26:07Z;Nathália;1365.061;115616767;Brazil; +2018-12-06T12:25:31Z;Eduardo;3247.101;115843629;Brazil; +2018-12-06T12:19:21Z;Ana;3995.263;114642971;Brazil; +2018-12-06T11:57:56Z;Júlio Cesar;1997.464;115960787;Brazil; +2018-12-06T11:48:50Z;nathalia;1215.733;114524168;Brazil; +2018-12-06T11:38:21Z;Nathália;1946.625;116211589;Brazil; +2018-12-06T11:37:48Z;Eduardo;1672.399;114850755;Brazil; +2018-12-06T11:19:07Z;Sandra;901.1072;114857263;Brazil; +2018-12-06T10:35:22Z;Eduardo;1993.386;114587527;Brazil; +2018-12-06T10:23:59Z;Sandra;3163.714;115665164;Brazil; +2018-12-06T09:34:57Z;Nathália;5008.189;115335006;Brazil; +2018-12-06T09:25:22Z;Eduardo;1661.654;114688147;Brazil; +2018-12-06T09:14:25Z;Armando;781.5686;114953204;Brazil; +2018-12-06T09:12:27Z;Ana;777.6153;114955946;Brazil; +2018-12-06T09:06:42Z;Júlio;2955.241;115028922;Brazil; +2018-12-06T08:45:13Z;Sandra;1222.135;115129587;Brazil; +2018-12-06T08:41:31Z;Nathália;2683.064;115198833;Brazil; +2018-12-06T08:37:53Z;Nathália;1868.527;114437940;Brazil; +2018-12-06T07:43:04Z;Sandra;2600.868;114658935;Brazil; +2018-12-06T07:31:49Z;Eduardo;2324.137;114976982;Brazil; +2018-12-06T06:52:38Z;nathalia;358.4158;116081454;Brazil; +2018-12-06T06:51:25Z;Júlio Cesar;1689.41;115780702;Brazil; +2018-12-06T06:26:24Z;Armando;4424.479;115038710;Brazil; +2018-12-06T06:09:45Z;Sandra;677.1779;114594477;Brazil; +2018-12-06T06:03:23Z;Sandra;1111.128;114555777;Brazil; +2018-12-06T05:59:44Z;Sandra;3703.082;114618082;Brazil; +2018-12-06T05:56:08Z;Eduardo;1360.97;115055797;Brazil; +2018-12-06T05:32:51Z;Nathália;624.3505;115442472;Brazil; +2018-12-06T05:15:03Z;Ana;1188.244;114812637;Brazil; +2018-12-06T05:07:39Z;Eduardo;2337.243;115521940;Brazil; +2018-12-06T04:53:46Z;Júlio Cesar;3136.962;114783139;Brazil; +2018-12-06T04:40:50Z;Eduardo;5240.404;114416148;Brazil; +2018-12-06T04:39:16Z;Ana;3362.536;116026711;Brazil; +2018-12-06T04:38:39Z;Júlio;4183.517;114453492;Brazil; +2018-12-06T04:33:39Z;nathalia;2214.159;115723615;Brazil; +2018-12-06T04:28:51Z;Eduardo;1362.533;114277053;Brazil; +2018-12-06T03:01:34Z;Ana;2527.549;115196443;Brazil; +2018-12-06T02:52:42Z;Sandra;3144.967;115724843;Brazil; +2018-12-06T02:52:34Z;Nathália;3524.795;115668633;Brazil; +2018-12-06T02:43:24Z;nathalia;1706.357;116341334;Brazil; +2018-12-06T01:55:34Z;nathalia;1912.997;116374523;Brazil; +2018-12-06T01:13:46Z;nathalia;1402.974;115914828;Brazil; +2018-12-06T00:29:59Z;nathalia;2305.513;114298090;Brazil; +2018-12-06T00:27:43Z;Nathália;2467.842;115023295;Brazil; +2018-12-06T00:15:41Z;Nathália;2092.768;114952716;Brazil; +2018-12-06T00:02:47Z;Ana;662.2095;115669308;Brazil; +2018-12-06T00:01:09Z;Sandra;3376.896;115450711;Brazil; +2018-12-05T23:54:54Z;Ana;2089.599;115890618;Brazil; +2018-12-05T23:41:32Z;Júlio;2656.32;114436132;Brazil; +2018-12-05T23:39:53Z;Sandra;1380.653;116243692;Brazil; +2018-12-05T23:29:54Z;Júlio Cesar;2130.101;115382742;Brazil; +2018-12-05T23:03:28Z;Eduardo;1498.687;114667826;Brazil; +2018-12-05T23:02:06Z;Nathália;1832.044;114735804;Brazil; +2018-12-05T22:44:08Z;Armando;3136.034;116364023;Brazil; +2018-12-05T22:43:34Z;Eduardo;2021.885;115728388;Brazil; +2018-12-05T22:41:36Z;Ana;3358.442;114760425;Brazil; +2018-12-05T22:30:36Z;Júlio;1725.949;115943570;Brazil; +2018-12-05T22:21:24Z;Armando;280.4698;114251277;Brazil; +2018-12-05T22:19:51Z;nathalia;1148.454;115214689;Brazil; +2018-12-05T22:14:11Z;Armando;2578.979;115739178;Brazil; +2018-12-05T22:05:02Z;nathalia;2885.558;114651468;Brazil; +2018-12-05T22:03:03Z;Armando;391.8826;114214880;Brazil; +2018-12-05T21:58:43Z;Nathália;100.7172;116094324;Brazil; +2018-12-05T21:56:14Z;Júlio Cesar;4433.243;116266669;Brazil; +2018-12-05T21:42:44Z;Armando;1959.994;115738302;Brazil; +2018-12-05T21:39:43Z;Eduardo;3094.432;115790280;Brazil; +2018-12-05T21:32:18Z;Eduardo;3403.945;115430543;Brazil; +2018-12-05T20:55:00Z;Eduardo;422.832;115120371;Brazil; +2018-12-05T20:40:14Z;Ana;921.1245;114592220;Brazil; +2018-12-05T20:30:43Z;Júlio;1396.086;114675827;Brazil; +2018-12-05T19:58:02Z;Ana;360.1317;116391189;Brazil; +2018-12-05T19:42:16Z;Ana;2165.91;115676304;Brazil; +2018-12-05T19:29:17Z;nathalia;2308.447;114544384;Brazil; +2018-12-05T19:07:37Z;Sandra;873.2758;115055746;Brazil; +2018-12-05T19:05:23Z;nathalia;1453.824;115575016;Brazil; +2018-12-05T19:00:54Z;Sandra;4006.254;115542358;Brazil; +2018-12-05T18:57:57Z;Nathália;4745.627;115585014;Brazil; +2018-12-05T18:44:35Z;Armando;4846.209;116178822;Brazil; +2018-12-05T18:41:23Z;nathalia;2624.928;115064363;Brazil; +2018-12-05T18:38:41Z;Júlio Cesar;1523.474;115658977;Brazil; +2018-12-05T18:29:29Z;Júlio Cesar;3272.708;114781574;Brazil; +2018-12-05T18:03:05Z;nathalia;2781.663;115621066;Brazil; +2018-12-05T17:58:52Z;Armando;1799.872;114607557;Brazil; +2018-12-05T17:26:36Z;Júlio Cesar;280.5668;114424438;Brazil; +2018-12-05T17:06:22Z;Júlio Cesar;4297.276;115854080;Brazil; +2018-12-05T16:32:37Z;nathalia;1528.681;114537143;Brazil; +2018-12-05T16:15:28Z;Ana;469.3545;116287566;Brazil; +2018-12-05T16:12:52Z;Eduardo;23.65436;114706389;Brazil; +2018-12-05T15:53:09Z;Armando;3772.092;114487926;Brazil; +2018-12-05T15:53:00Z;Júlio Cesar;3132.058;114860570;Brazil; +2018-12-05T15:47:17Z;nathalia;2676.88;115819530;Brazil; +2018-12-05T14:59:46Z;Eduardo;729.4454;115857204;Brazil; +2018-12-05T14:54:53Z;nathalia;1207.576;116007749;Brazil; +2018-12-05T14:53:32Z;Júlio;4019.381;114756823;Brazil; +2018-12-05T14:51:11Z;Armando;588.1971;116310780;Brazil; +2018-12-05T14:23:58Z;nathalia;3104.094;114885356;Brazil; +2018-12-05T14:13:15Z;Júlio;827.8456;116341610;Brazil; +2018-12-05T14:07:10Z;Júlio;1528.109;114573182;Brazil; +2018-12-05T13:59:37Z;Eduardo;4325.141;114400776;Brazil; +2018-12-05T13:43:28Z;Sandra;3192.097;114278455;Brazil; +2018-12-05T13:32:37Z;Nathália;1368.117;114518979;Brazil; +2018-12-05T13:19:09Z;Ana;3478.585;114790783;Brazil; +2018-12-05T13:06:54Z;Júlio Cesar;1565.127;114207185;Brazil; +2018-12-05T13:06:06Z;Sandra;250.02;114799987;Brazil; +2018-12-05T12:56:54Z;Júlio Cesar;1975.836;115489204;Brazil; +2018-12-05T12:53:16Z;Nathália;2496.396;114755957;Brazil; +2018-12-05T12:47:59Z;Armando;1888.981;114305194;Brazil; +2018-12-05T12:42:03Z;Sandra;570.5406;114528977;Brazil; +2018-12-05T12:21:26Z;Júlio;122.4622;114757099;Brazil; +2018-12-05T12:15:18Z;Armando;2084.236;114638491;Brazil; +2018-12-05T12:13:16Z;nathalia;2164.013;115965416;Brazil; +2018-12-05T11:57:14Z;Eduardo;1764.389;115421267;Brazil; +2018-12-05T11:52:53Z;Armando;4987.474;115976591;Brazil; +2018-12-05T11:49:25Z;Júlio;1715.736;115773037;Brazil; +2018-12-05T11:42:59Z;Sandra;4399.128;114286071;Brazil; +2018-12-05T11:18:28Z;Armando;295.8061;115955755;Brazil; +2018-12-05T11:13:50Z;Sandra;3467.555;115497389;Brazil; +2018-12-05T11:11:36Z;Júlio;3072.756;115749921;Brazil; +2018-12-05T11:02:43Z;Nathália;2881.262;114524005;Brazil; +2018-12-05T10:58:46Z;Júlio;809.8027;114824668;Brazil; +2018-12-05T10:42:43Z;Júlio;3933.958;115550826;Brazil; +2018-12-05T10:21:32Z;Armando;875.5384;114666343;Brazil; +2018-12-05T10:18:14Z;Júlio;2844.502;114577857;Brazil; +2018-12-05T10:13:16Z;Sandra;850.9607;115903388;Brazil; +2018-12-05T10:12:40Z;Júlio Cesar;3685.751;115181291;Brazil; +2018-12-05T09:45:53Z;Sandra;504.8752;115455711;Brazil; +2018-12-05T09:21:05Z;nathalia;2609.126;115467943;Brazil; +2018-12-05T08:28:11Z;Júlio;189.8306;115783352;Brazil; +2018-12-05T08:12:50Z;Sandra;868.7383;115845818;Brazil; +2018-12-05T08:07:47Z;Júlio;3863.249;115393689;Brazil; +2018-12-05T08:06:48Z;Sandra;2304.758;115695056;Brazil; +2018-12-05T07:56:51Z;Armando;4313.259;116219925;Brazil; +2018-12-05T07:56:28Z;nathalia;166.9179;115689322;Brazil; +2018-12-05T07:20:21Z;Sandra;704.2922;115793091;Brazil; +2018-12-05T06:26:00Z;Nathália;2240.169;116022185;Brazil; +2018-12-05T06:08:03Z;Ana;2725.723;115460531;Brazil; +2018-12-05T06:02:31Z;Júlio Cesar;554.9166;115227131;Brazil; +2018-12-05T05:57:30Z;Ana;3336.74;115970375;Brazil; +2018-12-05T05:24:17Z;nathalia;886.7371;114404237;Brazil; +2018-12-05T05:15:05Z;Armando;1808.819;116234026;Brazil; +2018-12-05T05:01:14Z;Armando;386.9365;116299352;Brazil; +2018-12-05T04:53:33Z;Ana;378.1572;114215157;Brazil; +2018-12-05T04:48:50Z;Ana;4791.19;115672126;Brazil; +2018-12-05T04:37:17Z;Ana;1203.84;115573544;Brazil; +2018-12-05T04:18:23Z;Júlio;3520.08;115573778;Brazil; +2018-12-05T04:00:55Z;Nathália;4097.276;114521471;Brazil; +2018-12-05T03:58:49Z;nathalia;3817.564;115652513;Brazil; +2018-12-05T03:55:29Z;Eduardo;1219.923;115670528;Brazil; +2018-12-05T03:50:20Z;nathalia;90.44805;114480927;Brazil; +2018-12-05T03:32:18Z;Júlio Cesar;1506.3;115613801;Brazil; +2018-12-05T03:14:19Z;Nathália;1023.928;115164860;Brazil; +2018-12-05T03:05:27Z;Eduardo;1773.907;116132973;Brazil; +2018-12-05T02:34:30Z;nathalia;2619.055;115645303;Brazil; +2018-12-05T02:03:59Z;Júlio Cesar;1845.759;114462086;Brazil; +2018-12-05T01:49:16Z;Júlio Cesar;3522.861;114296333;Brazil; +2018-12-05T00:54:17Z;nathalia;2391.895;114293381;Brazil; +2018-12-05T00:53:29Z;Júlio Cesar;3187.49;115737805;Brazil; +2018-12-05T00:51:06Z;Júlio Cesar;1326.13;114791226;Brazil; +2018-12-05T00:00:16Z;Ana;1230.413;114625633;Brazil; +2018-12-04T23:58:43Z;Armando;1742.339;114531905;Brazil; +2018-12-04T23:37:35Z;Sandra;4092.111;114587409;Brazil; +2018-12-04T23:19:35Z;Ana;1439.631;115754332;Brazil; +2018-12-04T22:47:40Z;nathalia;2330.058;115675365;Brazil; +2018-12-04T22:31:56Z;Júlio Cesar;1436.583;116233879;Brazil; +2018-12-04T22:27:36Z;Sandra;3050.891;114967481;Brazil; +2018-12-04T22:20:59Z;Eduardo;4469.637;114275506;Brazil; +2018-12-04T22:12:01Z;Nathália;2814.357;116084023;Brazil; +2018-12-04T22:00:31Z;Júlio;2222.526;115866111;Brazil; +2018-12-04T21:51:23Z;Nathália;424.4041;114730371;Brazil; +2018-12-04T21:34:51Z;Armando;2422.568;116086992;Brazil; +2018-12-04T21:30:54Z;Nathália;621.9473;115662193;Brazil; +2018-12-04T21:29:26Z;Eduardo;1633.652;115822421;Brazil; +2018-12-04T21:29:16Z;Armando;2482.361;114889799;Brazil; +2018-12-04T21:24:43Z;Armando;3058.648;115017793;Brazil; +2018-12-04T21:22:07Z;Júlio Cesar;125.1347;115150227;Brazil; +2018-12-04T21:13:58Z;Júlio Cesar;2150.726;115929330;Brazil; +2018-12-04T21:06:58Z;Ana;682.9381;115546968;Brazil; +2018-12-04T20:42:24Z;Armando;1407.249;115397637;Brazil; +2018-12-04T20:01:35Z;Eduardo;3758.165;114472152;Brazil; +2018-12-04T19:56:13Z;Eduardo;3136.14;115674506;Brazil; +2018-12-04T19:52:30Z;Ana;2952.557;114826965;Brazil; +2018-12-04T19:51:20Z;Eduardo;416.6055;116252992;Brazil; +2018-12-04T19:19:04Z;Eduardo;3910.359;115986401;Brazil; +2018-12-04T18:14:29Z;Eduardo;756.7408;114216850;Brazil; +2018-12-04T18:01:59Z;Ana;1840.763;115998830;Brazil; +2018-12-04T17:40:32Z;Armando;2803.598;115516816;Brazil; +2018-12-04T17:33:34Z;Nathália;1269.814;115281140;Brazil; +2018-12-04T17:07:54Z;Eduardo;2818.148;115104377;Brazil; +2018-12-04T17:03:32Z;Júlio Cesar;4778.969;114579985;Brazil; +2018-12-04T16:57:42Z;Eduardo;2869.521;115963565;Brazil; +2018-12-04T16:48:21Z;Júlio Cesar;104.3373;114825607;Brazil; +2018-12-04T16:41:22Z;Júlio;1323.457;115400160;Brazil; +2018-12-04T16:38:50Z;Armando;1887.701;115639597;Brazil; +2018-12-04T16:37:32Z;Júlio Cesar;862.8341;114243013;Brazil; +2018-12-04T16:29:47Z;Eduardo;3438.267;116147007;Brazil; +2018-12-04T15:30:20Z;Ana;4549.454;115534671;Brazil; +2018-12-04T15:14:38Z;Nathália;1413.932;116052256;Brazil; +2018-12-04T15:07:33Z;Nathália;1113.124;115023611;Brazil; +2018-12-04T14:52:33Z;Júlio;3868.416;114519255;Brazil; +2018-12-04T14:50:22Z;Nathália;904.9109;115728459;Brazil; +2018-12-04T14:40:27Z;nathalia;4810.288;114953676;Brazil; +2018-12-04T14:13:52Z;Júlio;2872.192;115228855;Brazil; +2018-12-04T13:58:29Z;Armando;2804.249;116208955;Brazil; +2018-12-04T13:47:51Z;Ana;139.0063;115937608;Brazil; +2018-12-04T13:29:45Z;nathalia;2942.975;114866521;Brazil; +2018-12-04T12:53:54Z;Armando;1320.202;115032790;Brazil; +2018-12-04T12:31:31Z;Eduardo;2131.677;115920764;Brazil; +2018-12-04T12:21:18Z;Armando;3420.873;115039098;Brazil; +2018-12-04T11:19:12Z;Júlio Cesar;697.5405;115493803;Brazil; +2018-12-04T11:12:52Z;Nathália;1738.633;114586767;Brazil; +2018-12-04T11:09:18Z;Nathália;2588.846;116129483;Brazil; +2018-12-04T10:33:25Z;Nathália;322.3394;115285158;Brazil; +2018-12-04T10:30:25Z;nathalia;493.2626;114709566;Brazil; +2018-12-04T10:27:02Z;Júlio;1036.252;114848936;Brazil; +2018-12-04T10:11:43Z;Júlio;4376.026;116350634;Brazil; +2018-12-04T10:02:43Z;Nathália;4647.306;114242448;Brazil; +2018-12-04T09:51:36Z;Júlio Cesar;4096.478;116355076;Brazil; +2018-12-04T09:44:17Z;Júlio;959.0533;115849934;Brazil; +2018-12-04T09:12:01Z;nathalia;2535.795;115638974;Brazil; +2018-12-04T09:06:17Z;Ana;2562.663;114793659;Brazil; +2018-12-04T08:32:14Z;Júlio;1180.672;114666716;Brazil; +2018-12-04T08:08:00Z;Nathália;702.9329;116007207;Brazil; +2018-12-04T08:03:26Z;Sandra;3100.472;114603225;Brazil; +2018-12-04T06:28:30Z;Ana;384.5174;116293657;Brazil; +2018-12-04T06:20:52Z;Armando;487.824;115600481;Brazil; +2018-12-04T06:17:53Z;Armando;1777.798;115693748;Brazil; +2018-12-04T06:13:57Z;Eduardo;762.6905;114406503;Brazil; +2018-12-04T05:41:59Z;Armando;2337.803;114524333;Brazil; +2018-12-04T05:32:46Z;Júlio Cesar;555.4654;115024545;Brazil; +2018-12-04T05:04:08Z;Armando;1535.392;115774090;Brazil; +2018-12-04T04:40:18Z;Eduardo;2528.287;116306101;Brazil; +2018-12-04T04:32:38Z;Ana;913.9284;115597038;Brazil; +2018-12-04T04:30:04Z;Nathália;783.5757;116170384;Brazil; +2018-12-04T04:28:04Z;Armando;3114.783;114420494;Brazil; +2018-12-04T03:52:23Z;Nathália;2418.51;116158902;Brazil; +2018-12-04T03:48:44Z;Nathália;1834.011;114838321;Brazil; +2018-12-04T03:39:15Z;Eduardo;756.3358;116145306;Brazil; +2018-12-04T03:00:10Z;nathalia;3225.306;114459652;Brazil; +2018-12-04T02:34:24Z;Júlio;1908.97;115798854;Brazil; +2018-12-04T02:32:08Z;Júlio;3860.525;116352774;Brazil; +2018-12-04T02:14:56Z;Júlio;1338.793;115531370;Brazil; +2018-12-04T01:53:19Z;Ana;339.2993;114852762;Brazil; +2018-12-04T01:44:49Z;nathalia;1587.11;115091051;Brazil; +2018-12-04T01:09:10Z;Júlio;2486.364;115837953;Brazil; +2018-12-04T00:46:10Z;Nathália;2476.671;115336736;Brazil; +2018-12-04T00:41:34Z;Nathália;3122.508;115676636;Brazil; +2018-12-03T23:27:01Z;Eduardo;2931.469;114653587;Brazil; +2018-12-03T23:23:28Z;Sandra;3102.086;115383507;Brazil; +2018-12-03T22:32:06Z;Sandra;1150.39;115083075;Brazil; +2018-12-03T22:06:58Z;Sandra;2919.201;115083373;Brazil; +2018-12-03T21:45:50Z;Nathália;993.3542;115136996;Brazil; +2018-12-03T21:02:34Z;Júlio;3236.803;116239328;Brazil; +2018-12-03T20:50:48Z;Eduardo;2555.072;114405283;Brazil; +2018-12-03T20:32:53Z;Júlio Cesar;547.0967;115922468;Brazil; +2018-12-03T20:26:20Z;Nathália;3369.887;116335188;Brazil; +2018-12-03T20:19:40Z;Júlio;249.0803;116044884;Brazil; +2018-12-03T20:17:41Z;Sandra;3473.202;114277398;Brazil; +2018-12-03T20:07:01Z;Eduardo;2353.19;115038700;Brazil; +2018-12-03T20:02:43Z;Sandra;753.9848;115023431;Brazil; +2018-12-03T19:42:55Z;Nathália;3044.468;115792946;Brazil; +2018-12-03T19:35:47Z;Eduardo;1607.487;115034519;Brazil; +2018-12-03T19:22:25Z;Armando;1049.316;115180145;Brazil; +2018-12-03T18:46:28Z;Sandra;774.5426;115342439;Brazil; +2018-12-03T18:31:06Z;Sandra;1495;115348427;Brazil; +2018-12-03T18:25:54Z;Armando;4922.253;114890347;Brazil; +2018-12-03T17:57:06Z;Armando;2020.326;115281074;Brazil; +2018-12-03T17:55:01Z;Sandra;1819.794;116349250;Brazil; +2018-12-03T17:54:35Z;Ana;2641.481;115687401;Brazil; +2018-12-03T17:30:11Z;Armando;2307.093;115576861;Brazil; +2018-12-03T17:20:18Z;Sandra;1237.038;116087703;Brazil; +2018-12-03T16:56:01Z;Júlio;3056.349;115515899;Brazil; +2018-12-03T16:42:59Z;nathalia;3184.904;115023847;Brazil; +2018-12-03T16:38:46Z;Júlio Cesar;3341.502;115346035;Brazil; +2018-12-03T15:39:55Z;Júlio;1973.222;114794482;Brazil; +2018-12-03T15:19:43Z;nathalia;4628.772;114282136;Brazil; +2018-12-03T15:06:45Z;Júlio;910.8997;115216428;Brazil; +2018-12-03T15:02:02Z;Ana;3358.79;115492578;Brazil; +2018-12-03T14:38:08Z;Sandra;1873.37;114651111;Brazil; +2018-12-03T14:05:55Z;nathalia;2935.315;115951141;Brazil; +2018-12-03T14:03:45Z;Júlio;4259.018;115798105;Brazil; +2018-12-03T13:57:50Z;Júlio Cesar;1004.532;116135242;Brazil; +2018-12-03T13:57:44Z;Nathália;1889.233;114993272;Brazil; +2018-12-03T13:55:07Z;Júlio;3083.367;114965936;Brazil; +2018-12-03T13:37:30Z;Armando;2977.598;115435405;Brazil; +2018-12-03T13:07:21Z;Sandra;965.9149;115328525;Brazil; +2018-12-03T13:00:19Z;Eduardo;2461.01;115454148;Brazil; +2018-12-03T12:45:18Z;Ana;3197.956;116201922;Brazil; +2018-12-03T12:26:39Z;Nathália;1983.959;115070670;Brazil; +2018-12-03T11:58:59Z;Ana;4473.393;114200833;Brazil; +2018-12-03T11:53:36Z;Sandra;1606.542;115466797;Brazil; +2018-12-03T11:46:23Z;Júlio Cesar;5052.408;116199448;Brazil; +2018-12-03T11:26:15Z;Nathália;2050.252;116382408;Brazil; +2018-12-03T11:12:39Z;Sandra;1601.298;114947730;Brazil; +2018-12-03T11:11:15Z;Nathália;2024.626;115388303;Brazil; +2018-12-03T10:54:06Z;nathalia;1425.913;114227263;Brazil; +2018-12-03T10:02:42Z;Eduardo;1002.355;116061424;Brazil; +2018-12-03T09:46:17Z;Eduardo;965.5795;115605667;Brazil; +2018-12-03T09:16:48Z;Júlio Cesar;80.67139;116286344;Brazil; +2018-12-03T08:53:00Z;Júlio Cesar;5619.372;115670456;Brazil; +2018-12-03T08:31:40Z;Nathália;3294.183;114818345;Brazil; +2018-12-03T08:30:53Z;Ana;3936.342;116072485;Brazil; +2018-12-03T07:02:56Z;Júlio;758.8009;114928406;Brazil; +2018-12-03T06:55:57Z;Sandra;1701.604;114640449;Brazil; +2018-12-03T06:50:23Z;Armando;1168.396;115986218;Brazil; +2018-12-03T06:36:09Z;Eduardo;181.2835;115593249;Brazil; +2018-12-03T06:05:52Z;Armando;3363.771;115522168;Brazil; +2018-12-03T06:01:48Z;Ana;4215.315;115168758;Brazil; +2018-12-03T05:51:09Z;Nathália;3769.394;115560359;Brazil; +2018-12-03T05:37:37Z;Eduardo;631.7015;115038114;Brazil; +2018-12-03T05:28:02Z;Eduardo;2177.108;115888533;Brazil; +2018-12-03T05:04:38Z;Armando;1883.607;114958764;Brazil; +2018-12-03T04:38:13Z;Júlio;2217.687;115078770;Brazil; +2018-12-03T04:29:37Z;Ana;1897.361;114465123;Brazil; +2018-12-03T04:18:44Z;Júlio;481.7772;116099919;Brazil; +2018-12-03T04:12:08Z;Sandra;3452.34;115598694;Brazil; +2018-12-03T04:11:13Z;Sandra;1144.166;116051726;Brazil; +2018-12-03T03:54:42Z;Ana;2814.173;116099191;Brazil; +2018-12-03T03:12:27Z;Armando;3016.95;115013189;Brazil; +2018-12-03T03:09:23Z;Armando;862.7405;115374338;Brazil; +2018-12-03T03:02:03Z;Júlio;3143.427;115823110;Brazil; +2018-12-03T02:47:24Z;Júlio Cesar;2312.768;114492167;Brazil; +2018-12-03T02:42:00Z;Sandra;3122.613;116209228;Brazil; +2018-12-03T02:34:55Z;Sandra;3611.027;114475506;Brazil; +2018-12-03T01:47:17Z;Armando;225.0461;115480462;Brazil; +2018-12-03T01:45:46Z;Sandra;1596.553;114256891;Brazil; +2018-12-03T01:31:48Z;Armando;3309.164;115287226;Brazil; +2018-12-03T01:27:16Z;Eduardo;4166.626;115475340;Brazil; +2018-12-03T01:24:47Z;Nathália;4488.87;115185967;Brazil; +2018-12-03T01:13:10Z;Eduardo;3843.17;115670671;Brazil; +2018-12-03T00:47:09Z;nathalia;2879.707;114535278;Brazil; +2018-12-03T00:08:44Z;Ana;3557.048;116074871;Brazil; +2018-12-03T00:02:50Z;Nathália;3314.35;114510125;Brazil; +2018-12-03T00:02:20Z;Júlio Cesar;2357.779;115947170;Brazil; +2018-12-02T23:28:16Z;Nathália;3083.995;115917152;Brazil; +2018-12-02T23:03:10Z;nathalia;2492.146;115557120;Brazil; +2018-12-02T22:47:03Z;Júlio Cesar;825.7653;115013410;Brazil; +2018-12-02T22:39:06Z;Júlio;1960.796;114629491;Brazil; +2018-12-02T22:34:24Z;Sandra;1551.987;116035175;Brazil; +2018-12-02T21:46:42Z;Sandra;1953.082;115753974;Brazil; +2018-12-02T20:49:24Z;Júlio;599.494;114687653;Brazil; +2018-12-02T20:42:21Z;Júlio Cesar;3533.631;115934963;Brazil; +2018-12-02T20:08:49Z;Armando;3057.519;115891972;Brazil; +2018-12-02T19:55:20Z;Eduardo;1088.584;114730175;Brazil; +2018-12-02T19:48:50Z;Júlio;240.3961;115098333;Brazil; +2018-12-02T18:50:25Z;Júlio Cesar;117.5429;114781670;Brazil; +2018-12-02T18:18:23Z;Júlio Cesar;1822.233;114785726;Brazil; +2018-12-02T18:16:25Z;Eduardo;4267.457;114494812;Brazil; +2018-12-02T17:43:31Z;Júlio Cesar;2673.554;114524281;Brazil; +2018-12-02T17:28:58Z;Nathália;191.2809;116042977;Brazil; +2018-12-02T17:13:11Z;Ana;982.7412;114482712;Brazil; +2018-12-02T17:03:50Z;Eduardo;187.05;116112048;Brazil; +2018-12-02T16:29:11Z;Júlio;2430.894;115277080;Brazil; +2018-12-02T16:20:47Z;Júlio Cesar;355.7094;115409600;Brazil; +2018-12-02T16:18:52Z;Nathália;177.473;115008769;Brazil; +2018-12-02T16:14:55Z;Ana;1110.92;115419534;Brazil; +2018-12-02T16:11:46Z;nathalia;2906.947;114881462;Brazil; +2018-12-02T15:59:51Z;Júlio;4438.333;114981509;Brazil; +2018-12-02T15:50:31Z;Júlio Cesar;1452.864;114780936;Brazil; +2018-12-02T15:39:37Z;Eduardo;648.7108;115376499;Brazil; +2018-12-02T15:36:59Z;Ana;1435.65;115399996;Brazil; +2018-12-02T15:31:10Z;Júlio;1579.241;115863180;Brazil; +2018-12-02T15:02:51Z;Nathália;1771.969;115052213;Brazil; +2018-12-02T15:02:36Z;Nathália;4643.17;115407129;Brazil; +2018-12-02T14:49:42Z;nathalia;707.8268;114567953;Brazil; +2018-12-02T14:16:42Z;Ana;2214.578;115281206;Brazil; +2018-12-02T14:12:25Z;Sandra;3223.431;115963158;Brazil; +2018-12-02T13:51:57Z;Ana;929.5536;114558928;Brazil; +2018-12-02T13:43:40Z;Eduardo;434.4705;115009722;Brazil; +2018-12-02T13:23:52Z;Júlio Cesar;502.654;115476729;Brazil; +2018-12-02T13:19:42Z;Júlio Cesar;2771.551;116104986;Brazil; +2018-12-02T13:18:24Z;Sandra;1601.341;115239254;Brazil; +2018-12-02T12:42:20Z;nathalia;277.1234;114415579;Brazil; +2018-12-02T11:45:47Z;Armando;1538.269;116099292;Brazil; +2018-12-02T11:22:23Z;nathalia;3262.803;115077226;Brazil; +2018-12-02T11:16:27Z;Nathália;3310.26;115875574;Brazil; +2018-12-02T11:12:56Z;nathalia;1699.29;115534492;Brazil; +2018-12-02T11:12:46Z;Nathália;1663.671;114678978;Brazil; +2018-12-02T11:09:37Z;nathalia;2892.443;114420760;Brazil; +2018-12-02T10:58:52Z;nathalia;143.6505;116356011;Brazil; +2018-12-02T10:50:40Z;Sandra;2416.552;115792167;Brazil; +2018-12-02T10:44:29Z;Eduardo;2683.811;115732459;Brazil; +2018-12-02T10:24:40Z;Eduardo;4141.185;114287525;Brazil; +2018-12-02T09:48:22Z;Júlio;2305.414;115068811;Brazil; +2018-12-02T08:36:43Z;Júlio;1207.962;116362051;Brazil; +2018-12-02T08:33:12Z;Júlio Cesar;3889.437;114261514;Brazil; +2018-12-02T08:08:00Z;Ana;4664.999;114386731;Brazil; +2018-12-02T08:02:33Z;Júlio Cesar;4317.265;115976303;Brazil; +2018-12-02T07:51:22Z;Júlio;545.4781;115950044;Brazil; +2018-12-02T07:40:52Z;Eduardo;1246.82;114617476;Brazil; +2018-12-02T07:31:18Z;Júlio Cesar;2371.726;115393805;Brazil; +2018-12-02T07:28:12Z;Ana;3457.966;114871657;Brazil; +2018-12-02T07:25:33Z;Eduardo;137.7832;116115768;Brazil; +2018-12-02T07:18:49Z;Júlio;5595.21;116349731;Brazil; +2018-12-02T07:17:39Z;Júlio;6019.557;115733599;Brazil; +2018-12-02T05:33:57Z;Armando;1362.773;115826356;Brazil; +2018-12-02T05:28:46Z;Armando;2117.953;115476472;Brazil; +2018-12-02T05:27:39Z;Sandra;2134.401;115885110;Brazil; +2018-12-02T05:21:12Z;nathalia;3047.63;115090474;Brazil; +2018-12-02T05:19:34Z;Nathália;2100.244;115599940;Brazil; +2018-12-02T04:59:22Z;Nathália;3408.3;115705313;Brazil; +2018-12-02T04:57:18Z;Júlio Cesar;3420.066;116170925;Brazil; +2018-12-02T04:40:15Z;Ana;1585.596;114241862;Brazil; +2018-12-02T03:53:54Z;Ana;189.9438;115227718;Brazil; +2018-12-02T03:48:35Z;Júlio;3497.167;115642199;Brazil; +2018-12-02T03:25:59Z;Eduardo;4248.254;114734877;Brazil; +2018-12-02T03:11:53Z;Armando;3455.497;115389412;Brazil; +2018-12-02T02:37:29Z;Armando;284.0323;115290221;Brazil; +2018-12-02T02:34:38Z;Nathália;1141.774;115011394;Brazil; +2018-12-02T02:17:10Z;Eduardo;1446.644;115832590;Brazil; +2018-12-02T02:13:23Z;Armando;1753.816;114944117;Brazil; +2018-12-02T01:59:53Z;nathalia;3706.751;115267228;Brazil; +2018-12-02T01:55:16Z;Sandra;4349.216;115886229;Brazil; +2018-12-02T01:51:12Z;Júlio Cesar;3355.98;116100225;Brazil; +2018-12-02T01:45:58Z;Armando;3845.359;114782304;Brazil; +2018-12-02T00:51:50Z;Eduardo;3915.063;115224900;Brazil; +2018-12-02T00:36:50Z;Júlio;2823.387;114610024;Brazil; +2018-12-02T00:09:47Z;Sandra;3180.97;114496573;Brazil; +2018-12-01T23:48:44Z;Eduardo;2133.438;114758792;Brazil; +2018-12-01T23:48:31Z;nathalia;3598.314;115152731;Brazil; +2018-12-01T23:34:55Z;Sandra;4921.572;114613695;Brazil; +2018-12-01T23:32:46Z;Ana;758.8724;116120262;Brazil; +2018-12-01T23:18:06Z;Eduardo;2578.911;114475593;Brazil; +2018-12-01T22:59:26Z;Júlio Cesar;2162.13;114256236;Brazil; +2018-12-01T22:55:46Z;nathalia;409.6535;115024587;Brazil; +2018-12-01T22:44:30Z;Júlio Cesar;2778.89;115886602;Brazil; +2018-12-01T22:32:20Z;Sandra;1986.708;114299461;Brazil; +2018-12-01T22:25:20Z;Júlio Cesar;2456.798;116243137;Brazil; +2018-12-01T22:09:02Z;Armando;825.3077;114719174;Brazil; +2018-12-01T21:54:00Z;Armando;2698.451;116130886;Brazil; +2018-12-01T21:45:58Z;nathalia;1877.157;115088138;Brazil; +2018-12-01T21:42:55Z;Armando;2040.934;114538970;Brazil; +2018-12-01T21:39:38Z;Nathália;1662.376;114295751;Brazil; +2018-12-01T21:09:02Z;Ana;1418.72;116084799;Brazil; +2018-12-01T21:02:43Z;nathalia;942.8708;115914836;Brazil; +2018-12-01T20:39:20Z;Júlio;2568.911;116123787;Brazil; +2018-12-01T20:34:36Z;Ana;3188.494;114609491;Brazil; +2018-12-01T20:27:47Z;Sandra;1301.792;115985891;Brazil; +2018-12-01T20:27:46Z;Júlio Cesar;2975.233;114234138;Brazil; +2018-12-01T19:55:39Z;Nathália;3321.73;114662517;Brazil; +2018-12-01T19:41:29Z;nathalia;3844.626;114243448;Brazil; +2018-12-01T19:40:58Z;Júlio Cesar;1951.754;116017182;Brazil; +2018-12-01T19:33:06Z;Júlio Cesar;1193.165;114682492;Brazil; +2018-12-01T19:32:43Z;Eduardo;185.8392;116288654;Brazil; +2018-12-01T19:13:50Z;Eduardo;2568.091;115837320;Brazil; +2018-12-01T19:04:52Z;Júlio Cesar;1228.41;114571495;Brazil; +2018-12-01T19:01:11Z;Sandra;1477.398;115141692;Brazil; +2018-12-01T18:58:57Z;Eduardo;2687.235;116393491;Brazil; +2018-12-01T18:19:45Z;Júlio;1672.014;115467975;Brazil; +2018-12-01T18:11:38Z;Sandra;3694.313;116087295;Brazil; +2018-12-01T17:19:37Z;Armando;1015.021;115843328;Brazil; +2018-12-01T17:00:27Z;Sandra;103.1427;115182586;Brazil; +2018-12-01T16:43:27Z;Eduardo;4515.189;114623522;Brazil; +2018-12-01T16:42:40Z;Júlio Cesar;1646.962;114508551;Brazil; +2018-12-01T16:23:46Z;Sandra;2692.49;115221553;Brazil; +2018-12-01T16:21:28Z;Ana;1461.217;115090418;Brazil; +2018-12-01T16:09:06Z;Júlio;3552.671;116314139;Brazil; +2018-12-01T15:59:54Z;Júlio Cesar;2272.121;114675720;Brazil; +2018-12-01T15:47:00Z;Júlio Cesar;3381.481;116329571;Brazil; +2018-12-01T15:44:51Z;Ana;1448.061;114673905;Brazil; +2018-12-01T15:43:34Z;Júlio;4643.099;114729336;Brazil; +2018-12-01T15:41:40Z;Sandra;1149.811;114978855;Brazil; +2018-12-01T15:12:09Z;Eduardo;1428.793;114831871;Brazil; +2018-12-01T14:43:00Z;Ana;4966.194;115519346;Brazil; +2018-12-01T14:34:51Z;Júlio;1203.206;114510969;Brazil; +2018-12-01T14:04:53Z;Nathália;2625.192;115096738;Brazil; +2018-12-01T14:01:40Z;nathalia;1232.922;116132249;Brazil; +2018-12-01T14:01:22Z;Ana;738.3926;114217187;Brazil; +2018-12-01T13:43:58Z;Nathália;1209.977;115102613;Brazil; +2018-12-01T13:23:22Z;Júlio;3832.769;114777208;Brazil; +2018-12-01T13:21:56Z;Júlio Cesar;4988.726;116277898;Brazil; +2018-12-01T13:19:02Z;Sandra;1074.949;114888084;Brazil; +2018-12-01T12:47:15Z;Ana;989.9199;114506840;Brazil; +2018-12-01T12:39:44Z;Armando;1381.299;116107395;Brazil; +2018-12-01T12:34:30Z;Eduardo;3682.678;116257317;Brazil; +2018-12-01T12:29:52Z;nathalia;2444.199;114940516;Brazil; +2018-12-01T11:52:02Z;Júlio Cesar;4208.188;116383137;Brazil; +2018-12-01T11:10:32Z;Ana;2563.66;114853984;Brazil; +2018-12-01T11:00:35Z;Júlio;3949.602;114675309;Brazil; +2018-12-01T10:55:47Z;nathalia;880.4718;115553216;Brazil; +2018-12-01T10:54:50Z;Eduardo;1103.868;116100953;Brazil; +2018-12-01T10:46:40Z;Ana;363.6587;115409316;Brazil; +2018-12-01T10:22:57Z;Júlio Cesar;2464.185;114543632;Brazil; +2018-12-01T08:55:03Z;Sandra;2037.742;115484689;Brazil; +2018-12-01T08:47:01Z;nathalia;295.0869;114340421;Brazil; +2018-12-01T08:21:29Z;Armando;4459.649;115030832;Brazil; +2018-12-01T08:06:12Z;Nathália;1063.28;114330890;Brazil; +2018-12-01T07:51:22Z;Júlio;66.96945;116361975;Brazil; +2018-12-01T07:50:09Z;Ana;3341.583;115620515;Brazil; +2018-12-01T07:43:25Z;nathalia;2958.961;115329592;Brazil; +2018-12-01T07:29:31Z;Júlio;460.4836;115671616;Brazil; +2018-12-01T06:26:16Z;nathalia;4064.811;115189726;Brazil; +2018-12-01T06:11:55Z;Ana;1634.827;115517839;Brazil; +2018-12-01T05:41:38Z;Ana;87.15394;115652451;Brazil; +2018-12-01T05:30:33Z;Eduardo;1244.633;115532310;Brazil; +2018-12-01T05:16:52Z;Nathália;798.4934;115439514;Brazil; +2018-12-01T05:00:47Z;Júlio;2499.84;115252526;Brazil; +2018-12-01T04:45:19Z;Armando;1604.847;115588349;Brazil; +2018-12-01T04:40:43Z;Armando;2906.335;115367902;Brazil; +2018-12-01T04:27:35Z;Nathália;2940.417;114458359;Brazil; +2018-12-01T04:10:25Z;Ana;1715.192;115982213;Brazil; +2018-12-01T04:04:27Z;Sandra;3156.735;115752811;Brazil; +2018-12-01T03:56:59Z;Ana;2531.414;114605660;Brazil; +2018-12-01T03:45:54Z;Sandra;2780.7;115592281;Brazil; +2018-12-01T03:45:21Z;Sandra;31.10036;114523491;Brazil; +2018-12-01T03:34:34Z;Nathália;3119.882;115459314;Brazil; +2018-12-01T02:33:36Z;Eduardo;2692.18;115587312;Brazil; +2018-12-01T01:59:04Z;nathalia;2365.724;115428738;Brazil; +2018-12-01T01:46:16Z;Nathália;4442.256;115652212;Brazil; +2018-12-01T01:43:19Z;Júlio Cesar;4568.9;115772640;Brazil; +2018-12-01T01:21:44Z;Eduardo;64.89045;115178229;Brazil; +2018-12-01T01:21:15Z;Armando;2635.834;116265095;Brazil; +2018-12-01T01:08:35Z;Júlio Cesar;703.1246;115516545;Brazil; +2018-12-01T01:05:23Z;Eduardo;441.7383;114549558;Brazil; +2018-12-01T01:00:06Z;nathalia;469.3616;114306424;Brazil; +2018-12-01T00:43:49Z;Sandra;5109.592;116255910;Brazil; +2018-12-01T00:14:07Z;Sandra;4400.041;114423921;Brazil; +2018-12-01T00:02:18Z;nathalia;2326.997;115417457;Brazil; +2018-11-30T23:07:26Z;nathalia;4251.275;115096392;Brazil; +2018-11-30T22:58:47Z;Armando;1517.298;115086531;Brazil; +2018-11-30T22:53:00Z;nathalia;769.1566;115432556;Brazil; +2018-11-30T22:42:03Z;Ana;2021.374;114926767;Brazil; +2018-11-30T22:39:51Z;Sandra;2208.544;115986119;Brazil; +2018-11-30T22:14:25Z;nathalia;1566.527;116087935;Brazil; +2018-11-30T21:19:20Z;nathalia;1653.368;116314949;Brazil; +2018-11-30T20:11:30Z;Sandra;1561.578;114274558;Brazil; +2018-11-30T19:50:38Z;Armando;2585.992;116103658;Brazil; +2018-11-30T19:18:09Z;Júlio Cesar;4101.777;116391481;Brazil; +2018-11-30T19:01:09Z;Sandra;2108.867;114776861;Brazil; +2018-11-30T18:56:48Z;nathalia;964.6027;116299360;Brazil; +2018-11-30T18:44:52Z;Sandra;3965.474;115346948;Brazil; +2018-11-30T18:37:16Z;Armando;3860.34;114636897;Brazil; +2018-11-30T18:26:52Z;Nathália;248.3123;116242303;Brazil; +2018-11-30T17:48:32Z;Armando;1301.761;116146077;Brazil; +2018-11-30T17:46:31Z;Sandra;762.7971;114603512;Brazil; +2018-11-30T17:19:04Z;Ana;1995.044;114355603;Brazil; +2018-11-30T17:13:40Z;Armando;4065.966;115366729;Brazil; +2018-11-30T16:06:02Z;Júlio Cesar;4303.122;116105621;Brazil; +2018-11-30T16:03:03Z;Júlio;310.1203;115476285;Brazil; +2018-11-30T15:47:25Z;nathalia;3204.81;115141943;Brazil; +2018-11-30T15:42:16Z;Armando;2726.769;115984391;Brazil; +2018-11-30T15:37:25Z;Eduardo;2687.419;114697499;Brazil; +2018-11-30T15:28:57Z;Ana;3505.334;116293454;Brazil; +2018-11-30T15:26:15Z;Ana;1657.321;116229174;Brazil; +2018-11-30T15:24:44Z;Eduardo;1448.681;115378661;Brazil; +2018-11-30T15:22:07Z;Eduardo;3915.461;115352326;Brazil; +2018-11-30T15:15:04Z;Armando;1141.11;115103056;Brazil; +2018-11-30T15:05:58Z;Sandra;2975.772;115969099;Brazil; +2018-11-30T14:42:33Z;nathalia;443.0448;115987134;Brazil; +2018-11-30T14:41:35Z;nathalia;3242.344;115163910;Brazil; +2018-11-30T14:31:28Z;Sandra;2619.596;114258643;Brazil; +2018-11-30T14:27:17Z;Armando;2458.882;115163257;Brazil; +2018-11-30T14:21:22Z;Júlio;5253.662;114463642;Brazil; +2018-11-30T14:07:39Z;Sandra;4029.838;115438350;Brazil; +2018-11-30T13:20:11Z;Sandra;3632.123;114655151;Brazil; +2018-11-30T13:11:32Z;Eduardo;2473.37;114612807;Brazil; +2018-11-30T13:05:51Z;Armando;2184.115;115651648;Brazil; +2018-11-30T13:01:56Z;Armando;2487.104;114599531;Brazil; +2018-11-30T12:54:49Z;Eduardo;3302.484;115060695;Brazil; +2018-11-30T12:28:39Z;Júlio Cesar;1135.427;116168601;Brazil; +2018-11-30T12:22:03Z;Nathália;1798.593;115904035;Brazil; +2018-11-30T12:11:43Z;Eduardo;2829.522;114750999;Brazil; +2018-11-30T11:51:25Z;Eduardo;38.18458;115132844;Brazil; +2018-11-30T11:50:21Z;Nathália;3103.162;114518841;Brazil; +2018-11-30T11:38:23Z;nathalia;2173.47;115892997;Brazil; +2018-11-30T11:30:27Z;Ana;577.2761;115307388;Brazil; +2018-11-30T11:23:04Z;Armando;4033.823;114703827;Brazil; +2018-11-30T11:05:36Z;Sandra;2717.749;115076558;Brazil; +2018-11-30T10:42:13Z;Sandra;1905.383;115666592;Brazil; +2018-11-30T10:40:03Z;nathalia;3192.924;114680702;Brazil; +2018-11-30T10:22:56Z;Nathália;2139.873;115422511;Brazil; +2018-11-30T09:34:14Z;Sandra;3868.26;114344774;Brazil; +2018-11-30T09:31:36Z;Sandra;1680.433;114922039;Brazil; +2018-11-30T09:20:02Z;Júlio;5294.88;115726797;Brazil; +2018-11-30T08:26:29Z;Armando;572.7409;115644381;Brazil; +2018-11-30T08:22:11Z;Júlio;1014.696;115990923;Brazil; +2018-11-30T08:15:58Z;Júlio;1176.067;116248059;Brazil; +2018-11-30T08:12:21Z;nathalia;760.5461;114906541;Brazil; +2018-11-30T08:03:35Z;Sandra;801.13;115154881;Brazil; +2018-11-30T07:49:38Z;Eduardo;2186.368;114755837;Brazil; +2018-11-30T07:24:52Z;Eduardo;4683.262;115424065;Brazil; +2018-11-30T06:50:32Z;nathalia;688.215;114777345;Brazil; +2018-11-30T06:40:55Z;nathalia;2844.808;114694417;Brazil; +2018-11-30T06:22:34Z;Nathália;1978.84;115662865;Brazil; +2018-11-30T06:10:58Z;Armando;123.5038;114203607;Brazil; +2018-11-30T06:06:06Z;Eduardo;3582.618;115435054;Brazil; +2018-11-30T05:56:06Z;Eduardo;78.31184;115573983;Brazil; +2018-11-30T05:53:16Z;Nathália;1727.307;114864737;Brazil; +2018-11-30T05:40:37Z;Sandra;2734.26;115062264;Brazil; +2018-11-30T05:26:40Z;nathalia;1002.973;116368535;Brazil; +2018-11-30T04:59:43Z;Eduardo;3528.957;116034855;Brazil; +2018-11-30T04:42:06Z;Nathália;1263.896;116086088;Brazil; +2018-11-30T04:39:06Z;Eduardo;528.1305;114927369;Brazil; +2018-11-30T04:03:52Z;Eduardo;1683.094;115080163;Brazil; +2018-11-30T03:32:25Z;Armando;1992.244;115130248;Brazil; +2018-11-30T02:57:31Z;Ana;2036.621;115725173;Brazil; +2018-11-30T02:46:55Z;Sandra;1444.093;116201586;Brazil; +2018-11-30T02:39:27Z;Ana;687.8733;115645254;Brazil; +2018-11-30T02:38:59Z;Ana;4185.897;116091402;Brazil; +2018-11-30T02:20:20Z;Armando;545.6843;114961726;Brazil; +2018-11-30T02:19:17Z;Sandra;1630.26;115856037;Brazil; +2018-11-30T01:53:27Z;Armando;2675.511;116093112;Brazil; +2018-11-30T01:45:34Z;Eduardo;4384.157;115068456;Brazil; +2018-11-30T01:34:34Z;Júlio;129.8684;114454729;Brazil; +2018-11-30T01:02:04Z;Nathália;1342.833;116121686;Brazil; +2018-11-30T01:01:49Z;Sandra;1008.676;115042380;Brazil; +2018-11-30T00:57:21Z;Ana;2232.205;116225265;Brazil; +2018-11-30T00:55:02Z;Ana;976.5957;114912465;Brazil; +2018-11-30T00:40:05Z;Armando;3662.378;115643053;Brazil; +2018-11-30T00:38:53Z;Armando;3847.776;114338350;Brazil; +2018-11-30T00:38:04Z;Júlio;1044.975;114623323;Brazil; +2018-11-30T00:00:37Z;Ana;2386.771;115002019;Brazil; +2018-11-29T23:59:11Z;Ana;2481.424;115137233;Brazil; +2018-11-29T23:49:18Z;Armando;3435.329;116388675;Brazil; +2018-11-29T23:40:58Z;Eduardo;1797.483;115795248;Brazil; +2018-11-29T23:22:21Z;Júlio;2308.843;114375729;Brazil; +2018-11-29T23:09:19Z;Ana;2850.521;114319201;Brazil; +2018-11-29T22:56:55Z;Ana;1651.686;115128427;Brazil; +2018-11-29T22:36:34Z;Eduardo;3743.367;114966557;Brazil; +2018-11-29T22:30:56Z;nathalia;3902.739;115324519;Brazil; +2018-11-29T21:42:19Z;Júlio Cesar;2839.626;114258970;Brazil; +2018-11-29T21:39:49Z;Júlio;2981.902;115660761;Brazil; +2018-11-29T21:13:36Z;Armando;2280.011;116105970;Brazil; +2018-11-29T20:58:35Z;Eduardo;96.43975;116379791;Brazil; +2018-11-29T20:09:40Z;Armando;2571.119;116074459;Brazil; +2018-11-29T19:53:56Z;Eduardo;1264.302;114549729;Brazil; +2018-11-29T19:31:47Z;Júlio;4000.946;114341966;Brazil; +2018-11-29T19:00:21Z;Júlio Cesar;2164.023;115133485;Brazil; +2018-11-29T18:53:44Z;Júlio Cesar;3495.16;114601786;Brazil; +2018-11-29T18:43:40Z;Eduardo;2869.182;114326072;Brazil; +2018-11-29T18:33:31Z;Júlio;2753.901;114730627;Brazil; +2018-11-29T18:08:46Z;Júlio Cesar;3215.951;114532701;Brazil; +2018-11-29T18:00:02Z;Ana;558.4554;115372256;Brazil; +2018-11-29T17:28:46Z;Júlio;5369.729;115191202;Brazil; +2018-11-29T17:22:35Z;Júlio Cesar;4069.203;114305817;Brazil; +2018-11-29T17:19:06Z;Armando;2749.582;116074307;Brazil; +2018-11-29T17:16:31Z;Júlio;2569.718;114989601;Brazil; +2018-11-29T17:10:13Z;nathalia;2339.47;116060291;Brazil; +2018-11-29T17:09:28Z;Eduardo;56.48112;114998270;Brazil; +2018-11-29T16:51:40Z;Júlio;2734.283;114865167;Brazil; +2018-11-29T16:49:18Z;Armando;2666.65;115418376;Brazil; +2018-11-29T16:48:32Z;Júlio;1299.345;114216308;Brazil; +2018-11-29T16:47:37Z;Ana;1704.176;115907792;Brazil; +2018-11-29T16:23:36Z;Júlio;1670.003;115885205;Brazil; +2018-11-29T15:38:51Z;Nathália;3005.587;116196622;Brazil; +2018-11-29T15:37:15Z;Nathália;678.6085;115868143;Brazil; +2018-11-29T15:29:42Z;Armando;2659.042;116234139;Brazil; +2018-11-29T15:06:19Z;Sandra;3709.529;114954051;Brazil; +2018-11-29T14:56:10Z;Eduardo;2751.589;114857991;Brazil; +2018-11-29T14:27:28Z;Júlio;1532.603;114468881;Brazil; +2018-11-29T14:16:21Z;nathalia;3495.284;115054186;Brazil; +2018-11-29T13:26:26Z;Nathália;1767.755;115550163;Brazil; +2018-11-29T13:24:08Z;Nathália;2313.679;115659059;Brazil; +2018-11-29T12:41:02Z;Sandra;456.6059;114408260;Brazil; +2018-11-29T12:32:31Z;Ana;1868.981;114440744;Brazil; +2018-11-29T12:30:02Z;Ana;3543.596;114347579;Brazil; +2018-11-29T11:19:08Z;Júlio;4195.328;116116336;Brazil; +2018-11-29T11:12:04Z;Nathália;1893.205;115475464;Brazil; +2018-11-29T10:53:55Z;Nathália;3126.46;114966263;Brazil; +2018-11-29T10:53:04Z;Nathália;3286.898;115514271;Brazil; +2018-11-29T10:42:39Z;Armando;390.3291;114385296;Brazil; +2018-11-29T10:26:06Z;Ana;1257.055;114279492;Brazil; +2018-11-29T10:20:09Z;Eduardo;2152.717;115714892;Brazil; +2018-11-29T09:39:52Z;Ana;1981.97;116292529;Brazil; +2018-11-29T09:28:20Z;Eduardo;1009.168;114545790;Brazil; +2018-11-29T08:59:58Z;Armando;3692.722;116047771;Brazil; +2018-11-29T08:58:32Z;Júlio;454.4032;115214510;Brazil; +2018-11-29T08:52:48Z;Eduardo;25.34347;116337894;Brazil; +2018-11-29T08:15:25Z;Júlio;2766.295;115931750;Brazil; +2018-11-29T08:15:14Z;Armando;894.8725;115563416;Brazil; +2018-11-29T08:12:51Z;Ana;3567.268;114345242;Brazil; +2018-11-29T08:04:18Z;Eduardo;5888.468;114597872;Brazil; +2018-11-29T07:35:03Z;Ana;3895.425;114233775;Brazil; +2018-11-29T07:33:34Z;Sandra;1630.45;114589557;Brazil; +2018-11-29T07:14:41Z;Júlio Cesar;3979.826;115004478;Brazil; +2018-11-29T06:50:33Z;nathalia;921.0106;115294216;Brazil; +2018-11-29T06:09:22Z;nathalia;4556.487;115628098;Brazil; +2018-11-29T05:48:47Z;Eduardo;2025.041;115730386;Brazil; +2018-11-29T05:41:21Z;Eduardo;719.6092;114888733;Brazil; +2018-11-29T05:37:40Z;Eduardo;1371.507;115076695;Brazil; +2018-11-29T05:28:58Z;Sandra;812.136;114795489;Brazil; +2018-11-29T05:06:27Z;nathalia;1076.61;116399681;Brazil; +2018-11-29T04:47:14Z;Júlio Cesar;3465.23;114798572;Brazil; +2018-11-29T04:22:06Z;Eduardo;1040.691;115230148;Brazil; +2018-11-29T04:07:48Z;Júlio;4183.772;115602981;Brazil; +2018-11-29T04:07:21Z;Júlio Cesar;3770.775;115423718;Brazil; +2018-11-29T04:03:56Z;nathalia;911.8372;116254362;Brazil; +2018-11-29T03:22:55Z;Sandra;6449.501;115639612;Brazil; +2018-11-29T03:22:19Z;Eduardo;634.4885;116179008;Brazil; +2018-11-29T03:14:00Z;Ana;2020.654;114776387;Brazil; +2018-11-29T03:09:17Z;Júlio Cesar;77.74237;115674410;Brazil; +2018-11-29T03:08:46Z;Sandra;2292.733;115661925;Brazil; +2018-11-29T02:01:35Z;Júlio Cesar;2139.158;116144713;Brazil; +2018-11-29T01:35:26Z;nathalia;3567.824;115279472;Brazil; +2018-11-29T01:27:58Z;Sandra;856.9148;115509605;Brazil; +2018-11-29T01:18:45Z;nathalia;3509.275;115850229;Brazil; +2018-11-29T01:13:00Z;nathalia;1122.122;115462415;Brazil; +2018-11-29T00:33:49Z;Júlio Cesar;1767.441;114724243;Brazil; +2018-11-29T00:21:36Z;Nathália;2056.945;115311835;Brazil; +2018-11-29T00:04:38Z;Nathália;285.1673;115314179;Brazil; +2018-11-28T23:58:21Z;Júlio Cesar;1595.887;115108058;Brazil; +2018-11-28T23:58:15Z;Ana;3822.207;116184415;Brazil; +2018-11-28T23:32:35Z;Nathália;23.87525;115469016;Brazil; +2018-11-28T23:13:47Z;Nathália;2027.662;116183593;Brazil; +2018-11-28T23:10:24Z;Nathália;997.2131;114733075;Brazil; +2018-11-28T22:59:30Z;Ana;2584.693;115184953;Brazil; +2018-11-28T22:17:56Z;Armando;3001.496;116294095;Brazil; +2018-11-28T22:04:36Z;Nathália;2307.154;114415027;Brazil; +2018-11-28T21:51:20Z;Júlio Cesar;1169.681;115159840;Brazil; +2018-11-28T21:27:17Z;Júlio;1430.07;114494157;Brazil; +2018-11-28T21:24:35Z;nathalia;2689.612;115163463;Brazil; +2018-11-28T21:04:01Z;Nathália;3540.598;116331030;Brazil; +2018-11-28T21:01:01Z;Sandra;2619.135;116250554;Brazil; +2018-11-28T20:58:17Z;nathalia;3168.395;115574371;Brazil; +2018-11-28T20:57:33Z;Ana;1949.124;115460963;Brazil; +2018-11-28T20:31:26Z;Sandra;3533.915;114771887;Brazil; +2018-11-28T20:22:18Z;nathalia;2811.335;116257676;Brazil; +2018-11-28T20:03:46Z;Nathália;4387.277;114332509;Brazil; +2018-11-28T19:59:29Z;Armando;2369.379;114621670;Brazil; +2018-11-28T19:56:04Z;Nathália;254.9142;116167437;Brazil; +2018-11-28T19:53:06Z;nathalia;3004.188;114476128;Brazil; +2018-11-28T19:40:52Z;Nathália;2621.814;115826219;Brazil; +2018-11-28T19:08:38Z;Eduardo;660.2368;115363843;Brazil; +2018-11-28T19:07:36Z;Eduardo;2165.653;116237413;Brazil; +2018-11-28T19:07:22Z;Ana;121.1665;115597002;Brazil; +2018-11-28T18:48:38Z;Eduardo;1608.822;114506900;Brazil; +2018-11-28T18:20:46Z;Júlio Cesar;3038.44;114856662;Brazil; +2018-11-28T18:08:23Z;Nathália;3264.685;115298045;Brazil; +2018-11-28T18:05:24Z;nathalia;647.7194;115374506;Brazil; +2018-11-28T17:52:17Z;Júlio Cesar;255.4719;115030702;Brazil; +2018-11-28T17:49:14Z;Nathália;1597.267;114849697;Brazil; +2018-11-28T17:46:49Z;Júlio Cesar;243.1904;116371244;Brazil; +2018-11-28T17:44:56Z;Júlio Cesar;3360.418;115701414;Brazil; +2018-11-28T17:42:12Z;Armando;2035.604;114272646;Brazil; +2018-11-28T17:35:52Z;Eduardo;3572.141;114953745;Brazil; +2018-11-28T17:24:25Z;Nathália;2169.266;114495478;Brazil; +2018-11-28T17:22:42Z;Júlio;2584.051;115574150;Brazil; +2018-11-28T17:14:21Z;Ana;3484.215;115543353;Brazil; +2018-11-28T17:13:18Z;Armando;2392.174;115574349;Brazil; +2018-11-28T17:11:42Z;Júlio;1730.869;115264969;Brazil; +2018-11-28T17:03:02Z;Sandra;1230.203;115164776;Brazil; +2018-11-28T16:56:38Z;Nathália;3697.761;114795492;Brazil; +2018-11-28T16:40:31Z;Júlio Cesar;3676.242;116225488;Brazil; +2018-11-28T16:29:53Z;Ana;2309.434;115173576;Brazil; +2018-11-28T15:45:06Z;Ana;3573.699;115766418;Brazil; +2018-11-28T15:43:25Z;Armando;3517.791;116349738;Brazil; +2018-11-28T14:39:21Z;Eduardo;809.5975;115128378;Brazil; +2018-11-28T14:31:17Z;Júlio Cesar;3630.878;114518723;Brazil; +2018-11-28T14:01:29Z;Eduardo;2319.276;114508269;Brazil; +2018-11-28T13:25:44Z;Júlio Cesar;623.5201;114789691;Brazil; +2018-11-28T13:00:54Z;nathalia;2343.021;115483216;Brazil; +2018-11-28T13:00:04Z;Ana;1608.635;114314022;Brazil; +2018-11-28T12:57:15Z;Nathália;2404.579;114606401;Brazil; +2018-11-28T12:43:22Z;Júlio;3978.464;114222265;Brazil; +2018-11-28T11:53:38Z;Júlio Cesar;3073.307;114981928;Brazil; +2018-11-28T11:51:36Z;Sandra;2358.616;116146490;Brazil; +2018-11-28T11:48:34Z;Nathália;280.1271;114314233;Brazil; +2018-11-28T11:08:01Z;Eduardo;753.5013;115853782;Brazil; +2018-11-28T11:03:23Z;Armando;3985.131;115758148;Brazil; +2018-11-28T11:00:18Z;Júlio Cesar;302.5353;115411916;Brazil; +2018-11-28T10:33:10Z;Júlio;1679.461;116348882;Brazil; +2018-11-28T10:07:34Z;Júlio;3444.405;115109289;Brazil; +2018-11-28T09:58:01Z;Armando;2022.749;115885275;Brazil; +2018-11-28T09:39:10Z;Júlio Cesar;2459.587;115069756;Brazil; +2018-11-28T09:11:56Z;Júlio Cesar;818.2986;115500862;Brazil; +2018-11-28T08:55:38Z;Júlio Cesar;5443.221;114344249;Brazil; +2018-11-28T08:39:48Z;Júlio Cesar;5300.128;114767013;Brazil; +2018-11-28T08:36:25Z;nathalia;206.4436;114598122;Brazil; +2018-11-28T08:28:06Z;Júlio Cesar;2947.989;115415240;Brazil; +2018-11-28T08:26:54Z;Nathália;3290.025;115328128;Brazil; +2018-11-28T07:15:16Z;Júlio;3069.456;114706321;Brazil; +2018-11-28T06:15:16Z;Júlio Cesar;3122.326;115095972;Brazil; +2018-11-28T06:15:15Z;Júlio Cesar;3267.253;114955473;Brazil; +2018-11-28T06:08:59Z;Nathália;3945.674;115892045;Brazil; +2018-11-28T06:03:14Z;Júlio Cesar;3319.416;115889630;Brazil; +2018-11-28T05:17:18Z;Nathália;630.8861;116078840;Brazil; +2018-11-28T04:52:45Z;Sandra;711.3892;115587734;Brazil; +2018-11-28T04:12:09Z;Júlio;3922.437;116270588;Brazil; +2018-11-28T04:11:57Z;Eduardo;720.6647;115706965;Brazil; +2018-11-28T03:37:27Z;Júlio;1105.837;116114489;Brazil; +2018-11-28T03:20:03Z;Armando;1054.459;114469760;Brazil; +2018-11-28T03:09:53Z;Sandra;3960.574;116030196;Brazil; +2018-11-28T03:08:37Z;Júlio;4547.776;115655341;Brazil; +2018-11-28T03:03:45Z;Ana;484.8931;114509488;Brazil; +2018-11-28T03:00:26Z;Júlio Cesar;693.0893;115704002;Brazil; +2018-11-28T02:56:45Z;Júlio Cesar;792.6322;115247387;Brazil; +2018-11-28T02:40:32Z;nathalia;2871.105;114738245;Brazil; +2018-11-28T02:25:18Z;Júlio;3663.796;116061901;Brazil; +2018-11-28T01:59:19Z;Júlio;4134.462;115469182;Brazil; +2018-11-28T01:52:23Z;Júlio;3377.839;115111989;Brazil; +2018-11-28T01:45:10Z;Júlio Cesar;3278.96;115605139;Brazil; +2018-11-28T01:41:15Z;Júlio;2398.829;114404109;Brazil; +2018-11-28T01:29:56Z;nathalia;229.7824;116204590;Brazil; +2018-11-28T01:15:40Z;Eduardo;3616.144;115392422;Brazil; +2018-11-28T00:59:27Z;Armando;3546.331;115904187;Brazil; +2018-11-28T00:56:13Z;Sandra;3915.211;114708363;Brazil; +2018-11-28T00:51:35Z;Júlio Cesar;463.7062;114561478;Brazil; +2018-11-28T00:19:30Z;nathalia;4538.838;115130033;Brazil; +2018-11-27T23:54:42Z;Sandra;4478.621;116088983;Brazil; +2018-11-27T23:51:50Z;Nathália;2189.605;116243405;Brazil; +2018-11-27T23:47:15Z;nathalia;2125.242;115125079;Brazil; +2018-11-27T23:21:11Z;Júlio Cesar;2584.001;114703590;Brazil; +2018-11-27T23:17:22Z;Sandra;3340.038;115291572;Brazil; +2018-11-27T22:57:57Z;Ana;3220.907;115089899;Brazil; +2018-11-27T22:33:48Z;Júlio;2773.564;115038165;Brazil; +2018-11-27T22:03:35Z;Armando;1566.011;115815465;Brazil; +2018-11-27T22:02:34Z;Júlio;1901.346;114942542;Brazil; +2018-11-27T21:52:13Z;nathalia;973.1983;116054685;Brazil; +2018-11-27T21:27:19Z;Sandra;1258.512;116208021;Brazil; +2018-11-27T21:17:55Z;Júlio;2789.898;115782489;Brazil; +2018-11-27T20:31:56Z;Armando;3324.14;116076706;Brazil; +2018-11-27T20:29:50Z;Júlio;869.8265;114989058;Brazil; +2018-11-27T20:25:11Z;Nathália;3926.487;116201038;Brazil; +2018-11-27T20:16:30Z;nathalia;4059.805;114467022;Brazil; +2018-11-27T19:52:17Z;Sandra;3779.525;115060013;Brazil; +2018-11-27T19:48:13Z;Sandra;2120.628;116377696;Brazil; +2018-11-27T19:38:31Z;Júlio Cesar;1180.95;116093956;Brazil; +2018-11-27T19:32:46Z;Eduardo;2077.079;114901225;Brazil; +2018-11-27T19:20:26Z;Ana;2197.798;114562547;Brazil; +2018-11-27T19:15:14Z;Armando;3266.255;114346004;Brazil; +2018-11-27T18:47:28Z;Nathália;3578.759;114298590;Brazil; +2018-11-27T18:44:03Z;Júlio Cesar;4017.93;115318806;Brazil; +2018-11-27T18:25:50Z;Júlio Cesar;1530.429;115300169;Brazil; +2018-11-27T18:03:48Z;Eduardo;2056.664;116365809;Brazil; +2018-11-27T17:35:00Z;nathalia;712.9306;114778497;Brazil; +2018-11-27T17:20:58Z;Júlio;2902.447;114774039;Brazil; +2018-11-27T17:20:41Z;Ana;2567.667;115091990;Brazil; +2018-11-27T16:21:45Z;Nathália;1891.221;115329306;Brazil; +2018-11-27T16:20:59Z;Armando;3523.035;116056437;Brazil; +2018-11-27T16:11:40Z;Sandra;1845.835;114392477;Brazil; +2018-11-27T16:10:08Z;Júlio Cesar;1333.973;114982595;Brazil; +2018-11-27T15:48:47Z;Júlio Cesar;2118.157;115080937;Brazil; +2018-11-27T15:45:50Z;Júlio;2352.694;116324921;Brazil; +2018-11-27T15:40:52Z;Júlio Cesar;399.0209;115822915;Brazil; +2018-11-27T15:03:30Z;Eduardo;2078.605;114612154;Brazil; +2018-11-27T14:41:24Z;Eduardo;1533.397;116136174;Brazil; +2018-11-27T14:16:34Z;Eduardo;23.21265;115306612;Brazil; +2018-11-27T14:05:00Z;Nathália;2584.529;116150687;Brazil; +2018-11-27T13:34:37Z;Ana;1223.202;114812905;Brazil; +2018-11-27T13:29:55Z;Júlio;564.7625;115918407;Brazil; +2018-11-27T13:27:49Z;Júlio;2949.184;115303668;Brazil; +2018-11-27T13:18:54Z;Nathália;174.9521;115110284;Brazil; +2018-11-27T13:17:00Z;Júlio Cesar;883.3726;115574804;Brazil; +2018-11-27T12:39:10Z;Nathália;2004.126;115090379;Brazil; +2018-11-27T12:35:31Z;Nathália;573.444;114407016;Brazil; +2018-11-27T12:08:58Z;Eduardo;797.6373;115703171;Brazil; +2018-11-27T11:49:10Z;nathalia;4563.78;115893613;Brazil; +2018-11-27T11:11:41Z;Nathália;3188.405;114270630;Brazil; +2018-11-27T11:00:39Z;Armando;3964.639;115179017;Brazil; +2018-11-27T10:55:12Z;Júlio Cesar;1380.324;116149191;Brazil; +2018-11-27T10:39:47Z;Sandra;2598.769;114938208;Brazil; +2018-11-27T10:34:53Z;Eduardo;2790.859;116061611;Brazil; +2018-11-27T10:06:37Z;Júlio Cesar;2201.962;115154329;Brazil; +2018-11-27T10:05:19Z;Ana;862.2389;116243097;Brazil; +2018-11-27T09:38:24Z;nathalia;1305.726;115723549;Brazil; +2018-11-27T09:28:05Z;Júlio;812.3138;116293950;Brazil; +2018-11-27T09:09:47Z;Nathália;1579.291;114749741;Brazil; +2018-11-27T08:45:43Z;Eduardo;2673.204;115590175;Brazil; +2018-11-27T08:45:13Z;Sandra;2144.972;114971366;Brazil; +2018-11-27T08:38:32Z;Sandra;3995.967;115290059;Brazil; +2018-11-27T07:53:40Z;Júlio Cesar;1348.713;114217957;Brazil; +2018-11-27T07:46:11Z;Nathália;513.5585;116230048;Brazil; +2018-11-27T07:25:19Z;nathalia;5208.023;114564283;Brazil; +2018-11-27T07:10:24Z;Sandra;281.017;114564804;Brazil; +2018-11-27T06:43:19Z;Júlio Cesar;84.2773;114365073;Brazil; +2018-11-27T06:06:03Z;Ana;2782.506;115579061;Brazil; +2018-11-27T05:01:30Z;Júlio;2218.421;115291502;Brazil; +2018-11-27T04:59:45Z;Nathália;1355.187;114240955;Brazil; +2018-11-27T04:55:46Z;Júlio;2585.774;116189931;Brazil; +2018-11-27T04:42:12Z;nathalia;1454.593;114299471;Brazil; +2018-11-27T03:38:05Z;Nathália;624.9519;114586228;Brazil; +2018-11-27T03:26:09Z;Ana;1862.283;115821828;Brazil; +2018-11-27T03:12:47Z;Ana;3536.204;116358611;Brazil; +2018-11-27T02:51:26Z;Eduardo;2223.142;115102172;Brazil; +2018-11-27T02:46:22Z;Sandra;1911.087;115129538;Brazil; +2018-11-27T02:11:47Z;Sandra;3650.055;115663151;Brazil; +2018-11-27T01:20:52Z;Nathália;3189.728;115752584;Brazil; +2018-11-27T00:54:05Z;Júlio;2849.033;116338385;Brazil; +2018-11-27T00:47:16Z;Armando;2601.345;115543218;Brazil; +2018-11-27T00:41:55Z;Nathália;3279.021;115582527;Brazil; +2018-11-26T22:54:23Z;Armando;2243.963;115949952;Brazil; +2018-11-26T22:53:44Z;Nathália;2253.061;114529479;Brazil; +2018-11-26T22:31:30Z;Sandra;2018.56;114617467;Brazil; +2018-11-26T22:15:58Z;Nathália;3635.655;115485350;Brazil; +2018-11-26T22:02:49Z;Eduardo;583.6736;115818084;Brazil; +2018-11-26T21:50:14Z;Nathália;2213.248;115768691;Brazil; +2018-11-26T21:45:13Z;Ana;971.2748;115839587;Brazil; +2018-11-26T21:18:07Z;Nathália;4686.173;116316692;Brazil; +2018-11-26T21:17:09Z;Nathália;1019.27;115920344;Brazil; +2018-11-26T21:12:23Z;Ana;3751.898;116240233;Brazil; +2018-11-26T21:05:24Z;nathalia;221.6742;116295315;Brazil; +2018-11-26T20:40:03Z;Júlio;2838.588;116191915;Brazil; +2018-11-26T20:31:18Z;nathalia;2941.941;115050174;Brazil; +2018-11-26T20:28:51Z;Armando;2080.133;114293181;Brazil; +2018-11-26T20:18:06Z;Júlio Cesar;469.047;115873624;Brazil; +2018-11-26T20:11:07Z;Armando;3456.622;116349395;Brazil; +2018-11-26T19:34:43Z;Nathália;1536.675;114947903;Brazil; +2018-11-26T19:28:22Z;Eduardo;4790.505;116018702;Brazil; +2018-11-26T19:23:35Z;nathalia;764.0492;114968304;Brazil; +2018-11-26T19:08:37Z;Nathália;1022.628;114874492;Brazil; +2018-11-26T19:06:21Z;nathalia;322.641;115255603;Brazil; +2018-11-26T18:59:41Z;Eduardo;2579.908;114227216;Brazil; +2018-11-26T18:33:18Z;Ana;88.31696;114738317;Brazil; +2018-11-26T17:54:49Z;Sandra;2097.994;114654341;Brazil; +2018-11-26T17:35:32Z;Sandra;3537.484;116117942;Brazil; +2018-11-26T17:14:40Z;Nathália;1374.89;115381173;Brazil; +2018-11-26T16:52:05Z;Sandra;4312.855;114831359;Brazil; +2018-11-26T16:46:17Z;nathalia;44.29901;116132983;Brazil; +2018-11-26T16:43:20Z;Nathália;2678.467;115982846;Brazil; +2018-11-26T16:39:47Z;Ana;3622.647;115497437;Brazil; +2018-11-26T16:36:40Z;Armando;1908.235;115393933;Brazil; +2018-11-26T16:15:56Z;Júlio;1219.538;114289971;Brazil; +2018-11-26T16:05:37Z;Sandra;2159.619;115411130;Brazil; +2018-11-26T15:55:30Z;Júlio;2362.229;115498805;Brazil; +2018-11-26T15:53:23Z;Júlio Cesar;2104.705;114356050;Brazil; +2018-11-26T15:41:11Z;Armando;2313.694;115088032;Brazil; +2018-11-26T15:00:41Z;Ana;3225.182;114225326;Brazil; +2018-11-26T14:56:55Z;Sandra;4514.191;115036950;Brazil; +2018-11-26T14:31:54Z;Nathália;4024.82;114829159;Brazil; +2018-11-26T14:19:37Z;nathalia;2030.268;114425706;Brazil; +2018-11-26T13:05:09Z;Sandra;1758.365;114518675;Brazil; +2018-11-26T13:01:20Z;Ana;1531.051;116080783;Brazil; +2018-11-26T12:49:26Z;nathalia;5007.694;114636549;Brazil; +2018-11-26T12:39:03Z;Armando;3855.031;114750506;Brazil; +2018-11-26T12:36:41Z;Júlio;3710.103;116197470;Brazil; +2018-11-26T12:00:11Z;Armando;2116.432;114341557;Brazil; +2018-11-26T11:21:53Z;Sandra;473.9442;115467750;Brazil; +2018-11-26T10:37:35Z;Júlio;2287.276;114618597;Brazil; +2018-11-26T10:08:41Z;Armando;2013.645;115574860;Brazil; +2018-11-26T09:47:49Z;Eduardo;2014.585;115412449;Brazil; +2018-11-26T09:33:23Z;Eduardo;1065.311;115516670;Brazil; +2018-11-26T08:54:37Z;nathalia;689.9285;115492024;Brazil; +2018-11-26T08:51:26Z;Sandra;1699.368;116314277;Brazil; +2018-11-26T08:40:45Z;Ana;788.0413;115256278;Brazil; +2018-11-26T08:33:50Z;nathalia;2860.478;114747301;Brazil; +2018-11-26T08:13:48Z;Armando;4709.461;115377639;Brazil; +2018-11-26T08:12:18Z;nathalia;1831.942;114291894;Brazil; +2018-11-26T08:06:25Z;Ana;3852.025;114468595;Brazil; +2018-11-26T07:55:54Z;Sandra;169.2931;115868818;Brazil; +2018-11-26T06:48:16Z;Eduardo;1578.663;114273730;Brazil; +2018-11-26T06:48:03Z;Júlio;64.37715;116125897;Brazil; +2018-11-26T06:27:52Z;Júlio Cesar;2977.674;116260649;Brazil; +2018-11-26T06:20:36Z;Armando;3693.406;115597317;Brazil; +2018-11-26T06:17:26Z;Eduardo;3554.624;116171876;Brazil; +2018-11-26T05:52:47Z;Armando;1576.853;114415147;Brazil; +2018-11-26T05:52:31Z;Ana;2960.239;114584090;Brazil; +2018-11-26T05:42:34Z;Júlio;2972.559;115126160;Brazil; +2018-11-26T05:24:49Z;Nathália;1526.705;114455596;Brazil; +2018-11-26T05:09:23Z;Armando;3288.053;115462258;Brazil; +2018-11-26T04:49:12Z;Nathália;4716.095;114943854;Brazil; +2018-11-26T04:46:00Z;Ana;4217.236;114826301;Brazil; +2018-11-26T04:02:27Z;Armando;1472.055;115919226;Brazil; +2018-11-26T03:52:12Z;Armando;2781.066;116193260;Brazil; +2018-11-26T03:27:32Z;Júlio;1737.889;115173071;Brazil; +2018-11-26T03:19:36Z;Eduardo;3714.47;116067185;Brazil; +2018-11-26T03:06:54Z;Ana;3504.066;115584773;Brazil; +2018-11-26T03:02:59Z;Júlio;3094.505;115484638;Brazil; +2018-11-26T03:01:02Z;Armando;491.8687;115306996;Brazil; +2018-11-26T02:52:46Z;Nathália;2472.328;114232588;Brazil; +2018-11-26T02:42:38Z;Júlio Cesar;3334.425;115376911;Brazil; +2018-11-26T02:16:33Z;Júlio Cesar;2013.025;115523742;Brazil; +2018-11-26T01:55:13Z;Nathália;4755.231;114936433;Brazil; +2018-11-26T01:42:48Z;Júlio;452.1219;114975386;Brazil; +2018-11-26T01:15:39Z;Júlio Cesar;3454.682;114805562;Brazil; +2018-11-26T01:00:10Z;Júlio Cesar;157.2474;114407480;Brazil; +2018-11-26T00:34:43Z;Sandra;2017.858;115712812;Brazil; +2018-11-26T00:15:15Z;Eduardo;2287.494;116012702;Brazil; +2018-11-26T00:04:17Z;Eduardo;2153.672;114501927;Brazil; +2018-11-26T00:04:08Z;Ana;1315.949;115468558;Brazil; +2018-11-25T23:52:24Z;Júlio Cesar;2952.651;116128588;Brazil; +2018-11-25T23:05:49Z;Armando;4216.454;114755759;Brazil; +2018-11-25T22:40:00Z;Eduardo;1821.382;114283577;Brazil; +2018-11-25T22:13:14Z;Júlio Cesar;1022.66;114595033;Brazil; +2018-11-25T22:13:00Z;Júlio;138.6879;114762408;Brazil; +2018-11-25T22:08:26Z;Nathália;1240.255;115366397;Brazil; +2018-11-25T22:00:05Z;Eduardo;1176.149;116286067;Brazil; +2018-11-25T21:02:33Z;Eduardo;340.4857;115719735;Brazil; +2018-11-25T21:00:39Z;Júlio Cesar;1105.796;114945227;Brazil; +2018-11-25T20:43:01Z;nathalia;307.8327;115890863;Brazil; +2018-11-25T20:28:38Z;Sandra;3779.98;116041466;Brazil; +2018-11-25T20:24:40Z;Armando;3152.666;115528078;Brazil; +2018-11-25T19:38:00Z;Eduardo;3763.348;114885116;Brazil; +2018-11-25T19:23:43Z;Nathália;4873.288;116149809;Brazil; +2018-11-25T19:17:32Z;Júlio;2431.915;116226682;Brazil; +2018-11-25T18:38:09Z;Ana;2672.099;115733887;Brazil; +2018-11-25T18:13:20Z;Ana;4084.399;115969000;Brazil; +2018-11-25T18:08:21Z;Nathália;1168.117;114666614;Brazil; +2018-11-25T17:44:14Z;Eduardo;1277.606;115698702;Brazil; +2018-11-25T17:37:44Z;Armando;1307.071;116281663;Brazil; +2018-11-25T17:24:52Z;Sandra;269.752;115677096;Brazil; +2018-11-25T17:24:08Z;Júlio;949.3718;115082380;Brazil; +2018-11-25T17:10:50Z;Júlio Cesar;2354.218;115701944;Brazil; +2018-11-25T17:03:32Z;Sandra;540.3763;115498856;Brazil; +2018-11-25T16:29:43Z;Ana;296.5301;114382790;Brazil; +2018-11-25T16:29:19Z;Ana;2464.86;116085544;Brazil; +2018-11-25T16:25:47Z;Ana;135.7752;116153162;Brazil; +2018-11-25T16:22:20Z;Eduardo;2065.189;114558446;Brazil; +2018-11-25T15:54:33Z;Sandra;66.02526;114407467;Brazil; +2018-11-25T15:53:10Z;Júlio Cesar;1349.39;114252514;Brazil; +2018-11-25T15:20:18Z;Eduardo;3191.457;114751348;Brazil; +2018-11-25T15:19:52Z;Ana;1026.994;115732465;Brazil; +2018-11-25T15:17:50Z;nathalia;2322.469;115483165;Brazil; +2018-11-25T15:04:42Z;nathalia;2236.557;116307996;Brazil; +2018-11-25T14:45:26Z;nathalia;1771.27;116063867;Brazil; +2018-11-25T14:38:37Z;Armando;455.8957;115843461;Brazil; +2018-11-25T14:23:24Z;Sandra;3929.343;116121245;Brazil; +2018-11-25T14:13:58Z;Armando;1636.98;115469425;Brazil; +2018-11-25T14:05:49Z;Nathália;1270.55;114503283;Brazil; +2018-11-25T14:00:33Z;Sandra;1610.894;115790147;Brazil; +2018-11-25T13:42:08Z;Júlio Cesar;2928.064;115048466;Brazil; +2018-11-25T13:25:37Z;Eduardo;3155.3;114314798;Brazil; +2018-11-25T13:24:24Z;nathalia;172.3867;114949703;Brazil; +2018-11-25T13:15:50Z;Eduardo;3963.374;115082126;Brazil; +2018-11-25T13:13:33Z;Ana;3804.202;115785565;Brazil; +2018-11-25T12:33:36Z;Sandra;3188.129;114460083;Brazil; +2018-11-25T11:55:08Z;Sandra;3250.396;114634081;Brazil; +2018-11-25T11:37:18Z;Júlio;1875.203;114827383;Brazil; +2018-11-25T10:40:54Z;Armando;2205.713;115638253;Brazil; +2018-11-25T10:30:37Z;Sandra;2500.196;114470019;Brazil; +2018-11-25T10:24:34Z;Júlio Cesar;4174.305;116006276;Brazil; +2018-11-25T10:23:27Z;Júlio;377.4008;114868428;Brazil; +2018-11-25T10:22:57Z;Armando;811.7406;114222752;Brazil; +2018-11-25T10:09:33Z;Júlio;3400.336;116359019;Brazil; +2018-11-25T09:13:58Z;Eduardo;1237.077;114272712;Brazil; +2018-11-25T09:13:15Z;Nathália;1483.447;115816264;Brazil; +2018-11-25T09:09:51Z;Ana;4006.801;114541210;Brazil; +2018-11-25T08:47:26Z;Armando;699.534;114553746;Brazil; +2018-11-25T08:43:23Z;nathalia;2432.595;114894488;Brazil; +2018-11-25T08:02:07Z;Júlio;3039.378;115710585;Brazil; +2018-11-25T07:42:58Z;Júlio;2231.575;114709317;Brazil; +2018-11-25T07:09:23Z;Júlio Cesar;3458.577;115512301;Brazil; +2018-11-25T06:41:51Z;Ana;1701.991;115861192;Brazil; +2018-11-25T06:00:25Z;Júlio;389.757;116004325;Brazil; +2018-11-25T05:47:30Z;Sandra;1221.139;114601772;Brazil; +2018-11-25T05:17:59Z;Armando;3586.452;115751176;Brazil; +2018-11-25T04:54:29Z;Sandra;2568.901;115627071;Brazil; +2018-11-25T04:49:57Z;Júlio Cesar;1733.022;114355560;Brazil; +2018-11-25T04:00:09Z;Armando;1217.805;116121819;Brazil; +2018-11-25T03:28:57Z;Júlio;783.4923;115128428;Brazil; +2018-11-25T03:22:32Z;Júlio Cesar;3660.321;114639599;Brazil; +2018-11-25T03:12:05Z;Ana;203.8878;116260225;Brazil; +2018-11-25T03:02:37Z;Sandra;2939.913;116319075;Brazil; +2018-11-25T01:38:38Z;Armando;1903.049;115955117;Brazil; +2018-11-25T01:23:26Z;Júlio Cesar;2520.363;115244722;Brazil; +2018-11-25T01:23:04Z;Júlio Cesar;2977.921;115556899;Brazil; +2018-11-25T01:16:40Z;Júlio Cesar;1576.411;114905368;Brazil; +2018-11-25T01:05:46Z;Júlio Cesar;2344.802;114510474;Brazil; +2018-11-25T00:55:08Z;Ana;1232.966;115625714;Brazil; +2018-11-24T23:49:03Z;Júlio;138.1259;114785256;Brazil; +2018-11-24T23:26:44Z;Sandra;884.3443;114619611;Brazil; +2018-11-24T23:25:08Z;Ana;1030.62;114561790;Brazil; +2018-11-24T22:53:47Z;nathalia;2561.315;114207645;Brazil; +2018-11-24T22:41:04Z;Armando;3756.433;115829661;Brazil; +2018-11-24T22:26:41Z;Júlio;2235.442;114672430;Brazil; +2018-11-24T22:04:22Z;Júlio;1088.583;115346960;Brazil; +2018-11-24T22:03:39Z;Júlio;1541.274;115180232;Brazil; +2018-11-24T21:57:52Z;Nathália;1374.871;115587281;Brazil; +2018-11-24T21:55:18Z;Júlio Cesar;4124.346;115451451;Brazil; +2018-11-24T21:15:58Z;Júlio;1687.778;116167045;Brazil; +2018-11-24T21:11:04Z;Sandra;1151.557;115907708;Brazil; +2018-11-24T21:10:30Z;Sandra;779.6808;114510685;Brazil; +2018-11-24T20:34:49Z;Júlio Cesar;2348.558;116097379;Brazil; +2018-11-24T19:58:25Z;Eduardo;3576.473;114900533;Brazil; +2018-11-24T19:44:40Z;Ana;2400.174;115774560;Brazil; +2018-11-24T19:39:53Z;Ana;4927.429;115062965;Brazil; +2018-11-24T19:01:44Z;nathalia;4007.584;115206532;Brazil; +2018-11-24T19:00:32Z;nathalia;38.04792;115610749;Brazil; +2018-11-24T17:44:16Z;Júlio;2944.241;114246956;Brazil; +2018-11-24T17:30:18Z;Ana;4157.933;115244708;Brazil; +2018-11-24T17:10:57Z;Sandra;2841.072;114265582;Brazil; +2018-11-24T17:04:02Z;Júlio Cesar;2280.097;116071305;Brazil; +2018-11-24T16:55:04Z;Sandra;599.7726;114721572;Brazil; +2018-11-24T16:54:54Z;nathalia;2570.091;116052505;Brazil; +2018-11-24T16:26:48Z;Júlio;3129.591;115080151;Brazil; +2018-11-24T16:22:32Z;Júlio;3309.762;114478267;Brazil; +2018-11-24T16:11:27Z;Ana;661.8445;115112677;Brazil; +2018-11-24T15:59:06Z;Eduardo;77.84448;116226493;Brazil; +2018-11-24T15:53:15Z;Júlio;2703.646;114634560;Brazil; +2018-11-24T15:48:48Z;Sandra;1016.631;115100217;Brazil; +2018-11-24T15:10:12Z;Nathália;1152.374;116055554;Brazil; +2018-11-24T14:51:19Z;nathalia;2854.595;116024558;Brazil; +2018-11-24T14:13:52Z;Eduardo;2749.782;115832324;Brazil; +2018-11-24T14:08:03Z;Júlio;632.2433;115816083;Brazil; +2018-11-24T14:06:58Z;Nathália;2674.802;115711610;Brazil; +2018-11-24T13:36:33Z;Júlio Cesar;3154.446;115685976;Brazil; +2018-11-24T13:29:58Z;Sandra;4101.024;115688214;Brazil; +2018-11-24T12:51:57Z;nathalia;1481.216;114503881;Brazil; +2018-11-24T12:03:38Z;Armando;2188.235;114582852;Brazil; +2018-11-24T11:16:49Z;Armando;3067.407;114748848;Brazil; +2018-11-24T11:12:12Z;Nathália;2248.548;116242785;Brazil; +2018-11-24T11:08:33Z;Eduardo;373.3835;115041301;Brazil; +2018-11-24T11:07:51Z;Ana;2570.128;114502538;Brazil; +2018-11-24T11:01:13Z;Nathália;2582.335;114591365;Brazil; +2018-11-24T10:52:42Z;Júlio Cesar;403.7657;114630732;Brazil; +2018-11-24T10:11:55Z;Júlio;739.8403;115962459;Brazil; +2018-11-24T10:03:20Z;Júlio Cesar;2224.472;115765485;Brazil; +2018-11-24T09:51:08Z;Armando;1328.101;115122402;Brazil; +2018-11-24T09:38:28Z;Nathália;2121.742;115088272;Brazil; +2018-11-24T09:30:50Z;nathalia;3884.917;115402253;Brazil; +2018-11-24T09:13:06Z;Nathália;1096.724;114996961;Brazil; +2018-11-24T09:10:46Z;Júlio Cesar;3212.057;114395233;Brazil; +2018-11-24T09:07:05Z;Ana;1785.446;114735293;Brazil; +2018-11-24T09:01:30Z;Eduardo;1350.742;115057177;Brazil; +2018-11-24T09:00:11Z;Sandra;3181.775;115635678;Brazil; +2018-11-24T08:47:39Z;Júlio;2499.266;114824168;Brazil; +2018-11-24T08:26:30Z;Eduardo;4510.746;115556995;Brazil; +2018-11-24T08:06:55Z;nathalia;1396.273;114284968;Brazil; +2018-11-24T08:06:20Z;Nathália;522.6721;115075912;Brazil; +2018-11-24T07:38:50Z;nathalia;2184.818;114296974;Brazil; +2018-11-24T07:29:19Z;Júlio Cesar;916.6883;115843469;Brazil; +2018-11-24T07:16:56Z;Ana;2253.015;114805063;Brazil; +2018-11-24T07:06:18Z;Eduardo;361.172;115626624;Brazil; +2018-11-24T07:05:21Z;Nathália;3603.582;114340278;Brazil; +2018-11-24T07:05:10Z;Eduardo;512.6723;115917565;Brazil; +2018-11-24T06:58:18Z;Nathália;1073.971;115713242;Brazil; +2018-11-24T06:57:11Z;Sandra;2704.173;115820050;Brazil; +2018-11-24T06:43:53Z;Armando;3222.337;114597608;Brazil; +2018-11-24T06:43:32Z;Júlio;477.8882;115207928;Brazil; +2018-11-24T06:35:37Z;Sandra;1808.423;116239176;Brazil; +2018-11-24T06:29:36Z;Júlio;670.8815;114872358;Brazil; +2018-11-24T06:13:10Z;Júlio Cesar;1423.572;115829470;Brazil; +2018-11-24T05:58:15Z;Ana;1853.056;115268520;Brazil; +2018-11-24T05:43:25Z;Júlio Cesar;2466.173;114689920;Brazil; +2018-11-24T05:31:46Z;nathalia;1045.444;116329381;Brazil; +2018-11-24T05:30:05Z;Ana;546.521;114265442;Brazil; +2018-11-24T04:56:28Z;Eduardo;1360.435;114528491;Brazil; +2018-11-24T04:39:12Z;Eduardo;407.1698;114941528;Brazil; +2018-11-24T04:25:30Z;Armando;715.9961;114418451;Brazil; +2018-11-24T04:07:55Z;Júlio;2476.821;114579377;Brazil; +2018-11-24T03:38:06Z;Júlio Cesar;943.4735;114480210;Brazil; +2018-11-24T03:35:40Z;Júlio Cesar;4764.426;115926361;Brazil; +2018-11-24T02:34:58Z;Nathália;3601.85;115052641;Brazil; +2018-11-24T02:18:21Z;Júlio Cesar;3710.706;114502048;Brazil; +2018-11-24T01:41:26Z;Júlio;3089.221;114418582;Brazil; +2018-11-24T01:40:04Z;Nathália;2041.967;114337446;Brazil; +2018-11-24T01:02:41Z;Sandra;164.3445;114752421;Brazil; +2018-11-24T00:31:21Z;Armando;667.5191;115417080;Brazil; +2018-11-24T00:25:08Z;Eduardo;1617.944;115128198;Brazil; +2018-11-24T00:23:07Z;Júlio;2794.497;115221192;Brazil; +2018-11-24T00:21:14Z;Eduardo;1743.691;114352857;Brazil; +2018-11-23T23:57:03Z;Sandra;1468.699;115220578;Brazil; +2018-11-23T23:49:24Z;Júlio;1737.241;115951417;Brazil; +2018-11-23T23:28:14Z;Armando;857.6489;115113455;Brazil; +2018-11-23T23:21:30Z;Ana;564.1246;116390533;Brazil; +2018-11-23T22:56:15Z;Ana;1020.17;115899656;Brazil; +2018-11-23T22:31:44Z;Júlio;93.77431;114405501;Brazil; +2018-11-23T22:31:33Z;Nathália;1034.297;114519910;Brazil; +2018-11-23T22:28:22Z;nathalia;1499.339;116067874;Brazil; +2018-11-23T22:22:49Z;Sandra;2113.314;116332771;Brazil; +2018-11-23T22:22:24Z;Armando;2277.84;114916247;Brazil; +2018-11-23T21:45:29Z;Armando;1846.299;116173056;Brazil; +2018-11-23T21:43:58Z;Ana;410.5805;114739163;Brazil; +2018-11-23T21:34:07Z;nathalia;1650.234;116324003;Brazil; +2018-11-23T21:14:59Z;Armando;2369.714;116223953;Brazil; +2018-11-23T20:40:03Z;Júlio Cesar;1116.283;115392942;Brazil; +2018-11-23T20:34:39Z;Ana;1923.491;114363440;Brazil; +2018-11-23T20:33:22Z;Nathália;284.6136;114745724;Brazil; +2018-11-23T20:31:08Z;nathalia;1554.96;115410045;Brazil; +2018-11-23T20:30:24Z;Eduardo;38.30605;115150458;Brazil; +2018-11-23T19:42:43Z;Ana;62.229730000000004;114730994;Brazil; +2018-11-23T19:39:53Z;Armando;3673;114920681;Brazil; +2018-11-23T19:24:02Z;Sandra;2606.534;114756538;Brazil; +2018-11-23T19:18:45Z;Ana;582.499;114864156;Brazil; +2018-11-23T19:16:09Z;Júlio;893.8715;115949450;Brazil; +2018-11-23T18:27:25Z;Ana;3839.711;115825696;Brazil; +2018-11-23T18:02:30Z;Armando;3185.564;114400149;Brazil; +2018-11-23T17:35:22Z;Nathália;4209.459;114298318;Brazil; +2018-11-23T17:25:54Z;Armando;886.5116;115729664;Brazil; +2018-11-23T16:59:20Z;Eduardo;1142.136;114250704;Brazil; +2018-11-23T16:55:42Z;Ana;1645.19;115954354;Brazil; +2018-11-23T16:40:50Z;Armando;1320.6;115132477;Brazil; +2018-11-23T16:38:41Z;Júlio;750.0999;114738973;Brazil; +2018-11-23T15:57:40Z;Sandra;3111.196;114632691;Brazil; +2018-11-23T15:51:16Z;nathalia;800.7515;115100329;Brazil; +2018-11-23T15:28:24Z;Sandra;724.2288;115536317;Brazil; +2018-11-23T15:02:07Z;Ana;4181.477;116301516;Brazil; +2018-11-23T14:44:07Z;Ana;162.766;116025923;Brazil; +2018-11-23T14:41:46Z;Sandra;2539.505;114712398;Brazil; +2018-11-23T14:33:34Z;Sandra;371.2917;114995211;Brazil; +2018-11-23T14:25:51Z;nathalia;256.6854;115679929;Brazil; +2018-11-23T14:20:26Z;Armando;1484.119;115175971;Brazil; +2018-11-23T12:55:56Z;Ana;1642.766;114305280;Brazil; +2018-11-23T12:27:06Z;Júlio;1816.049;115555424;Brazil; +2018-11-23T12:25:15Z;nathalia;3265.301;115781100;Brazil; +2018-11-23T11:55:36Z;nathalia;348.67;115436416;Brazil; +2018-11-23T11:54:34Z;Eduardo;1324.847;115689730;Brazil; +2018-11-23T11:32:06Z;Nathália;410.5798;115879716;Brazil; +2018-11-23T11:22:38Z;Nathália;3148.374;116238051;Brazil; +2018-11-23T11:12:50Z;Armando;3127.874;116104406;Brazil; +2018-11-23T11:01:01Z;Sandra;1433.378;114709184;Brazil; +2018-11-23T10:44:50Z;Armando;3437.236;115123558;Brazil; +2018-11-23T10:26:23Z;Sandra;2626.248;115985880;Brazil; +2018-11-23T09:57:08Z;Júlio;470.2215;114316842;Brazil; +2018-11-23T09:51:26Z;Júlio Cesar;84.1195;114606526;Brazil; +2018-11-23T09:51:08Z;Nathália;419.738;114367727;Brazil; +2018-11-23T09:39:01Z;Eduardo;3329.795;115316000;Brazil; +2018-11-23T09:22:51Z;Eduardo;1691.278;114235343;Brazil; +2018-11-23T09:16:43Z;nathalia;3503.417;115460422;Brazil; +2018-11-23T09:07:07Z;Armando;2204.448;114770622;Brazil; +2018-11-23T08:53:48Z;nathalia;1069.981;114256717;Brazil; +2018-11-23T08:38:17Z;Eduardo;1603.047;115051545;Brazil; +2018-11-23T08:31:25Z;Nathália;327.8549;116085746;Brazil; +2018-11-23T08:21:45Z;nathalia;2998.544;114489808;Brazil; +2018-11-23T08:02:44Z;Eduardo;1893.439;116301706;Brazil; +2018-11-23T07:56:54Z;nathalia;1726.818;115030658;Brazil; +2018-11-23T07:18:42Z;Júlio;1225.646;114791967;Brazil; +2018-11-23T06:55:14Z;Júlio Cesar;2659.21;115327832;Brazil; +2018-11-23T06:50:16Z;Júlio Cesar;1102.267;116016962;Brazil; +2018-11-23T06:21:33Z;Eduardo;4162.305;116309093;Brazil; +2018-11-23T05:46:28Z;Nathália;135.7612;114405975;Brazil; +2018-11-23T05:37:18Z;Eduardo;3148.92;115519483;Brazil; +2018-11-23T05:28:15Z;Júlio Cesar;657.0086;115000889;Brazil; +2018-11-23T05:05:46Z;Sandra;2593.508;116026807;Brazil; +2018-11-23T05:00:29Z;Nathália;61.52666;115851237;Brazil; +2018-11-23T04:58:50Z;Armando;4251.814;115919125;Brazil; +2018-11-23T04:57:17Z;Júlio;2052.955;116131272;Brazil; +2018-11-23T04:38:57Z;Armando;3074.216;116312987;Brazil; +2018-11-23T04:31:02Z;Júlio;1025.291;115527085;Brazil; +2018-11-23T04:30:36Z;Ana;2682.073;116324401;Brazil; +2018-11-23T04:10:54Z;Júlio Cesar;4152.917;115615437;Brazil; +2018-11-23T04:08:45Z;nathalia;267.039;114949520;Brazil; +2018-11-23T03:52:37Z;Sandra;2376.61;115948189;Brazil; +2018-11-23T03:46:23Z;Eduardo;1138.954;115463388;Brazil; +2018-11-23T03:15:34Z;Júlio;2829.37;114249898;Brazil; +2018-11-23T03:11:03Z;Júlio Cesar;414.1947;116153903;Brazil; +2018-11-23T02:34:05Z;Armando;3865.329;115914810;Brazil; +2018-11-23T02:24:32Z;Eduardo;60.50507;115556441;Brazil; +2018-11-23T02:11:46Z;Nathália;1035.725;115465386;Brazil; +2018-11-23T01:42:20Z;Nathália;2290.201;115577294;Brazil; +2018-11-23T01:36:04Z;Júlio Cesar;1455.239;115621928;Brazil; +2018-11-23T01:30:41Z;Ana;319.8704;115136832;Brazil; +2018-11-23T01:09:10Z;Nathália;2952.497;114471027;Brazil; +2018-11-23T01:06:41Z;Sandra;3415.553;116334502;Brazil; +2018-11-23T00:49:13Z;Ana;2421.178;115010170;Brazil; +2018-11-23T00:35:16Z;Júlio Cesar;423.9429;115954643;Brazil; +2018-11-23T00:28:07Z;Júlio;3515.201;115210486;Brazil; +2018-11-23T00:13:49Z;Armando;3526.307;116016022;Brazil; +2018-11-22T23:42:32Z;nathalia;3290.897;116023222;Brazil; +2018-11-22T23:36:54Z;Ana;1892.652;114562821;Brazil; +2018-11-22T23:35:06Z;nathalia;1068.794;115473219;Brazil; +2018-11-22T23:23:32Z;Ana;1895.853;116171812;Brazil; +2018-11-22T23:22:51Z;nathalia;3451.879;115411758;Brazil; +2018-11-22T23:20:48Z;Júlio;201.766;115700638;Brazil; +2018-11-22T23:13:50Z;Armando;833.4765;114945002;Brazil; +2018-11-22T22:56:28Z;nathalia;1092.637;115958890;Brazil; +2018-11-22T22:43:19Z;Nathália;1494.004;115420870;Brazil; +2018-11-22T22:29:19Z;Ana;2867.984;114520260;Brazil; +2018-11-22T22:27:42Z;Júlio Cesar;4389.871;115848619;Brazil; +2018-11-22T22:26:48Z;Nathália;566.7118;115084348;Brazil; +2018-11-22T21:47:05Z;Eduardo;3201.351;116150520;Brazil; +2018-11-22T20:52:23Z;Eduardo;418.4171;115031169;Brazil; +2018-11-22T20:36:00Z;Ana;1208.75;114775660;Brazil; +2018-11-22T19:56:58Z;nathalia;949.1075;115336360;Brazil; +2018-11-22T19:08:23Z;Sandra;4796.867;115040340;Brazil; +2018-11-22T18:55:47Z;Júlio Cesar;3126.396;115707514;Brazil; +2018-11-22T18:42:32Z;Júlio;1293.191;116333666;Brazil; +2018-11-22T18:39:17Z;Eduardo;616.259;115796786;Brazil; +2018-11-22T18:35:53Z;Júlio Cesar;638.4508;115253434;Brazil; +2018-11-22T18:05:11Z;Eduardo;280.5852;115244879;Brazil; +2018-11-22T17:39:25Z;nathalia;2060.025;116021172;Brazil; +2018-11-22T17:21:29Z;Júlio Cesar;673.3273;115228529;Brazil; +2018-11-22T16:54:32Z;nathalia;1242.528;115706289;Brazil; +2018-11-22T16:31:28Z;Eduardo;1933.46;115479029;Brazil; +2018-11-22T15:44:23Z;Eduardo;792.1503;115111503;Brazil; +2018-11-22T14:45:20Z;Júlio Cesar;3579.35;114980482;Brazil; +2018-11-22T14:43:56Z;Júlio;1116.521;114972411;Brazil; +2018-11-22T14:43:44Z;nathalia;2358.44;114201812;Brazil; +2018-11-22T14:37:27Z;Nathália;2086.883;116043527;Brazil; +2018-11-22T14:36:02Z;Sandra;935.3775;115418165;Brazil; +2018-11-22T14:29:22Z;Nathália;1794.957;114366524;Brazil; +2018-11-22T14:26:01Z;nathalia;5285.319;115547336;Brazil; +2018-11-22T14:16:26Z;Sandra;1100.346;114999714;Brazil; +2018-11-22T14:15:51Z;Júlio;1671.062;116385865;Brazil; +2018-11-22T13:01:36Z;Eduardo;892.0701;114479865;Brazil; +2018-11-22T13:00:21Z;Júlio Cesar;1161.536;115554102;Brazil; +2018-11-22T12:57:51Z;Júlio Cesar;1152.186;114233710;Brazil; +2018-11-22T12:42:33Z;Sandra;3477.308;114994149;Brazil; +2018-11-22T12:32:03Z;Armando;364.2905;114619042;Brazil; +2018-11-22T12:08:58Z;Júlio Cesar;603.494;114866729;Brazil; +2018-11-22T11:59:50Z;nathalia;2838.628;114715700;Brazil; +2018-11-22T11:50:41Z;Armando;442.1763;115992806;Brazil; +2018-11-22T11:32:40Z;nathalia;2817.996;114670529;Brazil; +2018-11-22T11:28:54Z;nathalia;445.0588;114363445;Brazil; +2018-11-22T11:25:16Z;Sandra;640.4774;115910020;Brazil; +2018-11-22T11:24:08Z;Ana;1934.936;115641925;Brazil; +2018-11-22T11:17:14Z;Sandra;1538.007;116298286;Brazil; +2018-11-22T11:08:33Z;Nathália;381.7991;114441856;Brazil; +2018-11-22T10:44:29Z;Armando;1839.895;114464382;Brazil; +2018-11-22T10:41:10Z;Júlio Cesar;3281.047;115920524;Brazil; +2018-11-22T10:13:47Z;Júlio Cesar;4784.838;116368317;Brazil; +2018-11-22T10:11:44Z;nathalia;1929.869;116104221;Brazil; +2018-11-22T10:10:04Z;Sandra;1638.939;116219540;Brazil; +2018-11-22T09:55:06Z;Nathália;1464.552;116111406;Brazil; +2018-11-22T09:26:11Z;Nathália;3505.831;114664592;Brazil; +2018-11-22T09:04:07Z;Eduardo;2105.074;114459649;Brazil; +2018-11-22T08:34:46Z;Júlio Cesar;3289.309;115984576;Brazil; +2018-11-22T08:26:20Z;Ana;234.0393;115996974;Brazil; +2018-11-22T08:17:27Z;Eduardo;3093.021;114506079;Brazil; +2018-11-22T07:54:22Z;Ana;3003.832;115180602;Brazil; +2018-11-22T07:40:43Z;Júlio;582.109;114413200;Brazil; +2018-11-22T07:10:25Z;Eduardo;2610.831;116078427;Brazil; +2018-11-22T06:59:33Z;Júlio;2804.185;114908953;Brazil; +2018-11-22T06:57:11Z;Júlio Cesar;2580.87;114747289;Brazil; +2018-11-22T06:22:54Z;Ana;3463.004;116054443;Brazil; +2018-11-22T05:05:58Z;nathalia;1162.039;115547664;Brazil; +2018-11-22T04:38:38Z;Nathália;3075.379;116247046;Brazil; +2018-11-22T04:38:06Z;Nathália;1431.24;116367729;Brazil; +2018-11-22T04:03:35Z;Ana;1347.571;114243577;Brazil; +2018-11-22T04:01:53Z;Júlio;3947.382;115045679;Brazil; +2018-11-22T03:19:27Z;Júlio;270.7077;115098174;Brazil; +2018-11-22T03:10:14Z;nathalia;1966.426;115516071;Brazil; +2018-11-22T03:03:48Z;Nathália;3945.4;114293408;Brazil; +2018-11-22T02:37:29Z;Júlio Cesar;1568.679;114643022;Brazil; +2018-11-22T02:36:55Z;Júlio;3230.356;114227763;Brazil; +2018-11-22T02:31:21Z;Júlio Cesar;454.592;114653199;Brazil; +2018-11-22T02:10:28Z;nathalia;2802.816;114535725;Brazil; +2018-11-22T01:56:39Z;Eduardo;2452.26;115249791;Brazil; +2018-11-22T01:37:12Z;Ana;267.1979;114898921;Brazil; +2018-11-22T01:29:30Z;Júlio;3631.883;114644793;Brazil; +2018-11-22T01:27:54Z;Júlio;4279.31;116000407;Brazil; +2018-11-22T00:39:13Z;Eduardo;195.5072;115372979;Brazil; +2018-11-22T00:36:07Z;Nathália;1921.944;116241382;Brazil; +2018-11-22T00:23:01Z;Armando;1660.135;114621751;Brazil; +2018-11-22T00:12:55Z;Nathália;1445.611;116126127;Brazil; +2018-11-22T00:07:18Z;Eduardo;282.9106;115331285;Brazil; +2018-11-21T23:56:12Z;Ana;4213.21;114882576;Brazil; +2018-11-21T23:47:32Z;Ana;1153.468;115320756;Brazil; +2018-11-21T23:36:46Z;Júlio Cesar;3346.973;114376093;Brazil; +2018-11-21T22:24:05Z;Nathália;1708.38;116089592;Brazil; +2018-11-21T22:09:44Z;Ana;3333.15;114341283;Brazil; +2018-11-21T21:48:51Z;Armando;2924.853;115629271;Brazil; +2018-11-21T21:30:12Z;Ana;2411.334;115975108;Brazil; +2018-11-21T20:58:47Z;Ana;2409.912;114978035;Brazil; +2018-11-21T20:50:51Z;Eduardo;1306.833;116069751;Brazil; +2018-11-21T20:45:45Z;Ana;153.2914;115034004;Brazil; +2018-11-21T20:40:48Z;Nathália;3602.272;116249103;Brazil; +2018-11-21T20:34:46Z;Júlio;2644.802;115400941;Brazil; +2018-11-21T20:32:47Z;Sandra;1682.463;115723178;Brazil; +2018-11-21T20:18:44Z;nathalia;4349.815;115164070;Brazil; +2018-11-21T20:16:36Z;Ana;2107.469;115556375;Brazil; +2018-11-21T19:46:18Z;Nathália;4431.751;116240222;Brazil; +2018-11-21T17:52:27Z;Júlio Cesar;4056.778;116346485;Brazil; +2018-11-21T17:51:37Z;Júlio Cesar;1117.543;114599921;Brazil; +2018-11-21T17:39:09Z;Armando;4197.762;115803342;Brazil; +2018-11-21T17:34:06Z;Júlio Cesar;2766.093;114936772;Brazil; +2018-11-21T17:28:08Z;Sandra;1393.354;115634142;Brazil; +2018-11-21T17:25:32Z;Ana;1041.244;114505883;Brazil; +2018-11-21T16:50:07Z;Júlio;2330.661;116158649;Brazil; +2018-11-21T16:41:57Z;Nathália;2707.428;116202028;Brazil; +2018-11-21T16:30:02Z;Eduardo;1648.823;116092629;Brazil; +2018-11-21T16:24:32Z;nathalia;145.1669;115400452;Brazil; +2018-11-21T16:12:04Z;Júlio Cesar;1334.258;115011318;Brazil; +2018-11-21T16:10:30Z;Eduardo;1094.808;115816903;Brazil; +2018-11-21T16:04:26Z;Sandra;859.3263;115634031;Brazil; +2018-11-21T15:37:10Z;Nathália;1185.608;114823797;Brazil; +2018-11-21T15:33:13Z;Ana;1216.695;116245516;Brazil; +2018-11-21T15:30:41Z;Eduardo;3370.996;114413467;Brazil; +2018-11-21T15:28:17Z;Eduardo;4498.879;115887600;Brazil; +2018-11-21T14:49:16Z;Armando;3871.976;115962349;Brazil; +2018-11-21T14:20:11Z;Sandra;735.7156;115382829;Brazil; +2018-11-21T13:58:25Z;Júlio Cesar;856.5472;115829880;Brazil; +2018-11-21T13:52:28Z;Sandra;1614.939;114550282;Brazil; +2018-11-21T13:29:47Z;Júlio Cesar;2150.951;115073748;Brazil; +2018-11-21T13:22:19Z;Júlio Cesar;1583.922;115755582;Brazil; +2018-11-21T13:18:35Z;Sandra;1156.838;115130896;Brazil; +2018-11-21T12:56:29Z;Júlio Cesar;4812.353;115854196;Brazil; +2018-11-21T12:54:51Z;Sandra;1661.481;116064556;Brazil; +2018-11-21T12:43:48Z;Ana;922.8529;115618116;Brazil; +2018-11-21T12:21:44Z;Júlio;2381.234;115254468;Brazil; +2018-11-21T11:47:11Z;Júlio Cesar;1274.16;114579071;Brazil; +2018-11-21T10:53:35Z;Júlio;631.6559;116378142;Brazil; +2018-11-21T10:50:51Z;Júlio;482.4798;115816705;Brazil; +2018-11-21T10:42:17Z;Eduardo;2607.451;114393368;Brazil; +2018-11-21T10:37:15Z;Júlio Cesar;2762.919;116094874;Brazil; +2018-11-21T10:15:19Z;Júlio Cesar;125.6826;115602908;Brazil; +2018-11-21T09:47:01Z;Ana;4396.584;114973142;Brazil; +2018-11-21T09:02:40Z;Júlio;948.1181;115719998;Brazil; +2018-11-21T08:38:02Z;Armando;711.0736;115394370;Brazil; +2018-11-21T07:47:24Z;Júlio;2911.009;115428963;Brazil; +2018-11-21T07:33:59Z;Júlio Cesar;2569.473;115533727;Brazil; +2018-11-21T07:16:47Z;Ana;2897.012;116019560;Brazil; +2018-11-21T06:38:32Z;Júlio Cesar;3238.021;115469527;Brazil; +2018-11-21T06:32:56Z;nathalia;1315.721;116316091;Brazil; +2018-11-21T06:27:18Z;Júlio Cesar;1691.873;115036062;Brazil; +2018-11-21T05:59:53Z;Júlio;2864.446;115762447;Brazil; +2018-11-21T05:48:33Z;Nathália;1209.768;116003712;Brazil; +2018-11-21T05:38:51Z;Ana;1323.957;114556368;Brazil; +2018-11-21T05:38:33Z;Júlio;4681.101;115391456;Brazil; +2018-11-21T05:30:07Z;nathalia;1741.874;114826194;Brazil; +2018-11-21T05:29:44Z;Armando;864.6214;116026054;Brazil; +2018-11-21T05:06:50Z;Sandra;2392.46;114463389;Brazil; +2018-11-21T04:51:54Z;Ana;1008.715;115908564;Brazil; +2018-11-21T04:39:34Z;Ana;153.3433;115461168;Brazil; +2018-11-21T04:31:12Z;Ana;2402.775;115724427;Brazil; +2018-11-21T04:30:02Z;Sandra;1751.294;115356963;Brazil; +2018-11-21T03:18:02Z;Júlio;2142.968;114987627;Brazil; +2018-11-21T02:59:16Z;Júlio;1430.687;116384133;Brazil; +2018-11-21T02:42:17Z;Nathália;3859.329;115433271;Brazil; +2018-11-21T02:37:26Z;Júlio Cesar;3238.045;114907280;Brazil; +2018-11-21T02:22:36Z;Armando;2273.632;116083944;Brazil; +2018-11-21T01:50:22Z;Júlio Cesar;2006.072;115465775;Brazil; +2018-11-21T01:37:21Z;Júlio;1654.143;115481244;Brazil; +2018-11-21T01:14:07Z;Ana;1423.938;115198002;Brazil; +2018-11-21T00:25:17Z;Eduardo;275.273;115969490;Brazil; +2018-11-21T00:19:20Z;Júlio;3193.297;116018776;Brazil; +2018-11-20T23:27:31Z;nathalia;316.138;114413019;Brazil; +2018-11-20T23:25:38Z;Ana;3620.616;114445580;Brazil; +2018-11-20T23:20:29Z;Ana;3162.376;114493894;Brazil; +2018-11-20T23:20:03Z;Júlio;3928.336;115105213;Brazil; +2018-11-20T23:18:16Z;Armando;2704.792;116205383;Brazil; +2018-11-20T23:10:52Z;Sandra;2904.184;114312067;Brazil; +2018-11-20T23:05:20Z;Armando;1680.963;115108180;Brazil; +2018-11-20T22:35:06Z;Sandra;1263.506;114549868;Brazil; +2018-11-20T22:04:46Z;Sandra;3674.865;116048636;Brazil; +2018-11-20T21:47:04Z;nathalia;2779.645;116191672;Brazil; +2018-11-20T21:45:22Z;Sandra;2589.041;114531191;Brazil; +2018-11-20T21:23:03Z;Júlio Cesar;1660.124;115085129;Brazil; +2018-11-20T21:00:28Z;Armando;1050.129;115079657;Brazil; +2018-11-20T20:51:20Z;Nathália;5533.189;115518817;Brazil; +2018-11-20T20:32:48Z;Sandra;4138.987;114492015;Brazil; +2018-11-20T20:13:13Z;Sandra;3938.985;114899184;Brazil; +2018-11-20T20:10:33Z;Ana;97.85954;115134772;Brazil; +2018-11-20T19:55:23Z;Armando;4412.668;115703974;Brazil; +2018-11-20T19:30:37Z;Sandra;3558.133;115595906;Brazil; +2018-11-20T19:15:16Z;Júlio Cesar;2070.796;115885296;Brazil; +2018-11-20T19:10:58Z;Sandra;406.3004;115922221;Brazil; +2018-11-20T19:02:00Z;Júlio Cesar;3076.957;114873202;Brazil; +2018-11-20T18:31:59Z;Júlio Cesar;3643.76;115247440;Brazil; +2018-11-20T18:29:30Z;Nathália;1055.741;114767762;Brazil; +2018-11-20T18:20:23Z;nathalia;3346.502;115116583;Brazil; +2018-11-20T18:10:58Z;Eduardo;3068.809;114312311;Brazil; +2018-11-20T17:29:43Z;Ana;2754.473;115547827;Brazil; +2018-11-20T16:43:29Z;Armando;1571.394;114709713;Brazil; +2018-11-20T16:21:46Z;nathalia;2437.16;114439591;Brazil; +2018-11-20T16:16:07Z;Ana;3156.855;116201868;Brazil; +2018-11-20T15:59:16Z;Júlio Cesar;709.3889;114828944;Brazil; +2018-11-20T15:58:30Z;Júlio Cesar;809.5952;114447072;Brazil; +2018-11-20T15:51:57Z;Eduardo;2463.717;116285093;Brazil; +2018-11-20T15:46:34Z;Júlio;3856.789;116072477;Brazil; +2018-11-20T15:45:52Z;Júlio Cesar;1743.276;116202559;Brazil; +2018-11-20T14:50:15Z;Júlio;3331.293;114427380;Brazil; +2018-11-20T14:33:15Z;nathalia;4055.575;115787969;Brazil; +2018-11-20T14:24:12Z;nathalia;920.9135;114646879;Brazil; +2018-11-20T14:20:00Z;Armando;3236.934;114462174;Brazil; +2018-11-20T14:00:32Z;Ana;1905.064;115534742;Brazil; +2018-11-20T13:59:10Z;Nathália;1567.617;115781126;Brazil; +2018-11-20T13:56:29Z;Nathália;1500.443;114290489;Brazil; +2018-11-20T13:31:56Z;Júlio;2088.819;115815726;Brazil; +2018-11-20T13:07:23Z;Nathália;734.9672;115425733;Brazil; +2018-11-20T13:05:58Z;Eduardo;3748.928;114884677;Brazil; +2018-11-20T12:56:51Z;Júlio Cesar;680.7443;115456805;Brazil; +2018-11-20T12:38:07Z;Eduardo;3542.065;114786247;Brazil; +2018-11-20T12:35:11Z;Júlio Cesar;3489.077;115535289;Brazil; +2018-11-20T12:23:23Z;Eduardo;3473.541;116374269;Brazil; +2018-11-20T12:08:13Z;Júlio Cesar;2473.664;115747497;Brazil; +2018-11-20T11:18:07Z;nathalia;2115.204;116257689;Brazil; +2018-11-20T11:07:16Z;Eduardo;4194.123;115332114;Brazil; +2018-11-20T10:56:48Z;nathalia;605.1091;114845412;Brazil; +2018-11-20T10:52:22Z;Ana;4163.944;114814138;Brazil; +2018-11-20T10:33:36Z;Júlio Cesar;2997.306;114875584;Brazil; +2018-11-20T10:24:50Z;nathalia;2624.471;115183323;Brazil; +2018-11-20T10:03:11Z;Armando;3486.47;115170364;Brazil; +2018-11-20T09:52:51Z;Ana;4211.818;115884501;Brazil; +2018-11-20T09:48:26Z;Nathália;1304.091;116141711;Brazil; +2018-11-20T09:23:06Z;nathalia;253.6054;114266272;Brazil; +2018-11-20T09:13:41Z;Armando;454.6056;115828336;Brazil; +2018-11-20T09:11:35Z;Nathália;194.131;114728245;Brazil; +2018-11-20T09:05:02Z;Sandra;2808.202;115619219;Brazil; +2018-11-20T08:15:45Z;Eduardo;2494;116175928;Brazil; +2018-11-20T08:15:03Z;Armando;2212.051;115573084;Brazil; +2018-11-20T06:57:11Z;Armando;811.5674;114350699;Brazil; +2018-11-20T06:53:31Z;Ana;900.229;115792116;Brazil; +2018-11-20T06:22:22Z;Júlio;772.7537;116322755;Brazil; +2018-11-20T06:11:21Z;nathalia;3591.608;114819224;Brazil; +2018-11-20T05:56:51Z;Armando;1007.978;116033955;Brazil; +2018-11-20T05:54:11Z;Eduardo;1329.886;114421333;Brazil; +2018-11-20T05:39:18Z;Ana;2299.991;115831790;Brazil; +2018-11-20T05:35:00Z;Nathália;2140.061;114733092;Brazil; +2018-11-20T05:11:07Z;Júlio;5792.334;114935876;Brazil; +2018-11-20T04:53:12Z;Júlio;314.5375;115426288;Brazil; +2018-11-20T04:47:58Z;Eduardo;3497.897;116131418;Brazil; +2018-11-20T04:47:31Z;Eduardo;1103.163;115149975;Brazil; +2018-11-20T04:18:23Z;nathalia;4115.53;115099191;Brazil; +2018-11-20T03:47:14Z;Nathália;2379.52;115289354;Brazil; +2018-11-20T03:42:34Z;Nathália;3378.25;115756079;Brazil; +2018-11-20T02:55:20Z;Armando;3935.808;115333611;Brazil; +2018-11-20T02:36:26Z;Júlio Cesar;945.5048;114234574;Brazil; +2018-11-20T02:33:29Z;Sandra;3375.024;115775172;Brazil; +2018-11-20T02:27:33Z;Júlio;1591.962;114655317;Brazil; +2018-11-20T02:11:02Z;Júlio Cesar;3146.578;115806779;Brazil; +2018-11-20T01:54:15Z;nathalia;809.476;116077061;Brazil; +2018-11-20T01:48:12Z;nathalia;1606.907;115591893;Brazil; +2018-11-20T01:35:27Z;Ana;239.1395;115416968;Brazil; +2018-11-20T00:52:20Z;nathalia;1138.994;115236222;Brazil; +2018-11-20T00:48:13Z;Júlio;3915.868;114623629;Brazil; +2018-11-19T23:29:42Z;Júlio Cesar;271.9174;114335059;Brazil; +2018-11-19T23:24:18Z;Armando;3079.63;114608433;Brazil; +2018-11-19T23:11:07Z;Armando;2268.813;114324662;Brazil; +2018-11-19T23:08:55Z;nathalia;437.6142;114514609;Brazil; +2018-11-19T23:01:23Z;Eduardo;4507.174;115037216;Brazil; +2018-11-19T22:59:48Z;nathalia;654.15;114401031;Brazil; +2018-11-19T22:19:54Z;nathalia;103.9899;115455301;Brazil; +2018-11-19T22:17:11Z;Armando;3406.528;115201924;Brazil; +2018-11-19T21:29:52Z;Armando;5199.033;114860781;Brazil; +2018-11-19T20:58:26Z;Sandra;1540.369;116128098;Brazil; +2018-11-19T20:36:59Z;Eduardo;1158.464;114788734;Brazil; +2018-11-19T20:26:12Z;nathalia;2990.193;114292585;Brazil; +2018-11-19T19:51:12Z;Nathália;845.9606;114645342;Brazil; +2018-11-19T19:37:48Z;Ana;4815.974;115495076;Brazil; +2018-11-19T19:35:28Z;nathalia;3079.129;114518716;Brazil; +2018-11-19T19:25:21Z;Júlio;1984.42;114399144;Brazil; +2018-11-19T19:06:40Z;Ana;241.8642;115420309;Brazil; +2018-11-19T18:49:26Z;Sandra;2458.128;114642013;Brazil; +2018-11-19T18:31:26Z;Júlio;4051.807;116385295;Brazil; +2018-11-19T18:29:39Z;Armando;3560.956;114668372;Brazil; +2018-11-19T18:11:12Z;Ana;2756.329;115036911;Brazil; +2018-11-19T17:49:53Z;Sandra;2182.995;115878592;Brazil; +2018-11-19T17:45:24Z;Nathália;4906.569;115730245;Brazil; +2018-11-19T17:39:43Z;Ana;1472.362;116007768;Brazil; +2018-11-19T17:28:32Z;Eduardo;3407.591;114611652;Brazil; +2018-11-19T17:21:16Z;Júlio Cesar;2163.563;114555803;Brazil; +2018-11-19T17:13:44Z;Ana;2270.666;114303343;Brazil; +2018-11-19T17:07:08Z;Sandra;3655.107;115833168;Brazil; +2018-11-19T15:51:23Z;Armando;1781.6;115732471;Brazil; +2018-11-19T15:37:01Z;Eduardo;3156.006;115548110;Brazil; +2018-11-19T14:56:36Z;Júlio Cesar;613.51;115366448;Brazil; +2018-11-19T14:41:56Z;nathalia;4320.967;114302942;Brazil; +2018-11-19T14:35:59Z;Júlio Cesar;3580.343;115604964;Brazil; +2018-11-19T14:35:41Z;Nathália;3486.365;115683202;Brazil; +2018-11-19T14:34:31Z;nathalia;3290.1;114404762;Brazil; +2018-11-19T14:28:55Z;Eduardo;508.0994;116132756;Brazil; +2018-11-19T14:04:52Z;Sandra;1533.363;115076765;Brazil; +2018-11-19T13:42:18Z;Eduardo;2888.815;115022008;Brazil; +2018-11-19T13:24:36Z;Júlio;99.61349;115147693;Brazil; +2018-11-19T13:01:31Z;Nathália;633.3579;115866090;Brazil; +2018-11-19T12:56:06Z;Júlio Cesar;3201.072;115218996;Brazil; +2018-11-19T12:15:09Z;Ana;2060.781;114213512;Brazil; +2018-11-19T12:11:38Z;Ana;2359.54;116384062;Brazil; +2018-11-19T12:07:43Z;Ana;215.5716;115948218;Brazil; +2018-11-19T11:36:54Z;Sandra;2560.435;115364232;Brazil; +2018-11-19T11:32:51Z;Eduardo;1321.519;116381864;Brazil; +2018-11-19T11:27:20Z;nathalia;3257.688;114725721;Brazil; +2018-11-19T11:19:03Z;Sandra;3006.108;114750955;Brazil; +2018-11-19T11:14:58Z;Nathália;2213.126;115915871;Brazil; +2018-11-19T10:50:17Z;Nathália;1207.244;116316314;Brazil; +2018-11-19T10:34:44Z;nathalia;518.907;115155754;Brazil; +2018-11-19T10:27:51Z;Armando;2444.767;115310220;Brazil; +2018-11-19T10:25:35Z;nathalia;585.2971;114674638;Brazil; +2018-11-19T10:15:59Z;nathalia;2330.288;115019731;Brazil; +2018-11-19T10:14:00Z;nathalia;3199.507;114642999;Brazil; +2018-11-19T10:05:55Z;Sandra;559.5828;114687066;Brazil; +2018-11-19T09:59:15Z;Sandra;1225.601;114777376;Brazil; +2018-11-19T09:42:47Z;Júlio;778.8651;115680910;Brazil; +2018-11-19T09:37:00Z;Nathália;2197.729;114653638;Brazil; +2018-11-19T09:20:59Z;Eduardo;1335.631;114688235;Brazil; +2018-11-19T09:09:10Z;Júlio;1972.187;114274215;Brazil; +2018-11-19T09:08:34Z;Ana;3128.319;115703046;Brazil; +2018-11-19T08:01:31Z;Júlio;299.2305;115750414;Brazil; +2018-11-19T07:54:11Z;nathalia;3037.33;115531964;Brazil; +2018-11-19T07:47:40Z;Eduardo;2987.551;116018339;Brazil; +2018-11-19T07:26:38Z;Sandra;5246.174;114483016;Brazil; +2018-11-19T07:25:48Z;Júlio;3065.109;115645400;Brazil; +2018-11-19T07:11:35Z;Júlio;1478.705;115875874;Brazil; +2018-11-19T07:00:34Z;Armando;1448.178;115805847;Brazil; +2018-11-19T06:58:32Z;Nathália;404.0687;115800829;Brazil; +2018-11-19T06:55:20Z;Ana;2660.427;115627505;Brazil; +2018-11-19T06:47:39Z;Sandra;2725.272;114363023;Brazil; +2018-11-19T06:18:51Z;Júlio;778.224;115365043;Brazil; +2018-11-19T05:59:07Z;Ana;4050.498;115126391;Brazil; +2018-11-19T05:54:48Z;Armando;1271.361;115831077;Brazil; +2018-11-19T05:26:52Z;Armando;3858.377;115115522;Brazil; +2018-11-19T04:47:13Z;Júlio;391.4814;114932585;Brazil; +2018-11-19T04:40:44Z;Armando;2413.931;114912778;Brazil; +2018-11-19T04:38:14Z;Sandra;1915.704;116284452;Brazil; +2018-11-19T03:47:39Z;Ana;534.7265;115798917;Brazil; +2018-11-19T03:04:13Z;Nathália;4092.535;114428143;Brazil; +2018-11-19T02:55:31Z;Júlio;2385.538;116145131;Brazil; +2018-11-19T02:45:49Z;Júlio Cesar;1288.912;115184069;Brazil; +2018-11-19T02:44:24Z;nathalia;2586.078;115687300;Brazil; +2018-11-19T02:38:23Z;Júlio Cesar;2101.36;116219061;Brazil; +2018-11-19T02:37:23Z;Eduardo;1888.948;114531376;Brazil; +2018-11-19T02:33:08Z;Nathália;3658.041;114455853;Brazil; +2018-11-19T02:04:19Z;Eduardo;2581.572;115314751;Brazil; +2018-11-19T01:59:22Z;Ana;2848.167;115844608;Brazil; +2018-11-19T01:53:41Z;Júlio Cesar;1123.289;114263643;Brazil; +2018-11-19T01:49:28Z;Nathália;1683.087;114474820;Brazil; +2018-11-19T01:31:15Z;Sandra;1458.475;115209524;Brazil; +2018-11-19T01:23:48Z;Júlio;1511.249;114614204;Brazil; +2018-11-19T01:10:16Z;Júlio;301.8966;115813360;Brazil; +2018-11-19T01:08:14Z;Júlio;399.6706;115607355;Brazil; +2018-11-19T01:06:33Z;Júlio Cesar;2318.09;116207715;Brazil; +2018-11-19T00:38:04Z;Ana;2902.129;114264306;Brazil; +2018-11-19T00:27:45Z;Nathália;1042.656;114206205;Brazil; +2018-11-19T00:15:23Z;Eduardo;4403.538;116337755;Brazil; +2018-11-19T00:12:42Z;Armando;902.3113;116262449;Brazil; +2018-11-19T00:03:42Z;Sandra;4768.246;114242440;Brazil; +2018-11-18T23:52:18Z;Nathália;1432.243;114673209;Brazil; +2018-11-18T23:49:27Z;Júlio Cesar;2600.423;116397394;Brazil; +2018-11-18T23:48:11Z;Eduardo;1508.869;115992845;Brazil; +2018-11-18T23:36:36Z;nathalia;2375.451;115693210;Brazil; +2018-11-18T23:28:47Z;Nathália;181.4342;114306876;Brazil; +2018-11-18T23:23:58Z;Armando;373.4734;116094897;Brazil; +2018-11-18T23:19:43Z;Sandra;1195.662;115323610;Brazil; +2018-11-18T23:11:25Z;Sandra;124.4823;115094083;Brazil; +2018-11-18T23:06:51Z;Ana;1963.502;114981456;Brazil; +2018-11-18T22:52:05Z;Sandra;4579.309;114327641;Brazil; +2018-11-18T22:26:11Z;Sandra;2932.036;115556084;Brazil; +2018-11-18T22:00:34Z;Júlio;5608.167;114554962;Brazil; +2018-11-18T21:26:27Z;Júlio;1206.266;114627153;Brazil; +2018-11-18T21:12:26Z;Sandra;2860.064;114495229;Brazil; +2018-11-18T20:46:48Z;Sandra;798.1919;114257078;Brazil; +2018-11-18T20:45:14Z;Sandra;2615.842;115232513;Brazil; +2018-11-18T20:43:25Z;Sandra;1325.864;115237741;Brazil; +2018-11-18T20:41:33Z;Ana;601.0223;115147920;Brazil; +2018-11-18T20:37:48Z;Júlio Cesar;3025.986;115162491;Brazil; +2018-11-18T20:20:41Z;Sandra;1484.326;115246066;Brazil; +2018-11-18T20:11:21Z;Júlio;945.624;114406753;Brazil; +2018-11-18T20:01:04Z;Armando;2745.379;114763132;Brazil; +2018-11-18T19:48:03Z;Armando;2479.195;115678013;Brazil; +2018-11-18T18:46:41Z;Júlio Cesar;704.1608;114311952;Brazil; +2018-11-18T18:44:01Z;nathalia;4828.633;116379698;Brazil; +2018-11-18T18:31:23Z;Júlio Cesar;1401.346;115434381;Brazil; +2018-11-18T18:14:07Z;Nathália;2857.977;116276307;Brazil; +2018-11-18T17:21:45Z;Eduardo;680.4644;115236645;Brazil; +2018-11-18T17:18:13Z;Eduardo;4070.745;115821865;Brazil; +2018-11-18T16:57:11Z;Nathália;2184.102;114664643;Brazil; +2018-11-18T16:32:45Z;Júlio;3858.539;116035278;Brazil; +2018-11-18T16:25:37Z;Ana;1943.463;114907149;Brazil; +2018-11-18T16:17:46Z;Sandra;348.6592;116132400;Brazil; +2018-11-18T16:07:24Z;Ana;440.3634;114383941;Brazil; +2018-11-18T15:41:50Z;Armando;565.7677;114792952;Brazil; +2018-11-18T15:39:00Z;Júlio;1267.635;115484290;Brazil; +2018-11-18T15:27:47Z;Ana;2040.669;115890149;Brazil; +2018-11-18T15:26:46Z;Júlio Cesar;3830.577;114791582;Brazil; +2018-11-18T15:24:12Z;Júlio;1598.6;115350098;Brazil; +2018-11-18T15:00:11Z;Sandra;2262.192;116326978;Brazil; +2018-11-18T14:37:36Z;Júlio;2261.809;116153933;Brazil; +2018-11-18T14:32:24Z;Nathália;597.6538;115060680;Brazil; +2018-11-18T14:25:21Z;Nathália;1128.868;116175509;Brazil; +2018-11-18T14:23:23Z;Armando;1808.775;115259629;Brazil; +2018-11-18T13:34:04Z;Ana;3367.081;115044453;Brazil; +2018-11-18T12:58:33Z;Armando;1719.544;115513156;Brazil; +2018-11-18T12:26:47Z;Eduardo;1289.776;114368066;Brazil; +2018-11-18T12:24:02Z;Sandra;1362.045;115521297;Brazil; +2018-11-18T11:56:23Z;Sandra;2927.692;114920173;Brazil; +2018-11-18T11:43:30Z;Ana;2113.086;115347532;Brazil; +2018-11-18T11:40:52Z;Júlio Cesar;920.207;115729407;Brazil; +2018-11-18T11:26:56Z;Eduardo;1160.285;114625752;Brazil; +2018-11-18T11:14:27Z;Nathália;3225.589;114544566;Brazil; +2018-11-18T10:52:08Z;Júlio;4699.935;115614721;Brazil; +2018-11-18T10:47:09Z;Armando;555.4732;116127747;Brazil; +2018-11-18T10:21:00Z;Júlio;1322.256;114705497;Brazil; +2018-11-18T10:16:55Z;nathalia;1436.732;115342580;Brazil; +2018-11-18T10:04:35Z;Júlio Cesar;245.4542;114978521;Brazil; +2018-11-18T09:44:43Z;Eduardo;3570.404;114454210;Brazil; +2018-11-18T09:38:28Z;Nathália;1142.35;116026415;Brazil; +2018-11-18T09:33:11Z;Nathália;2864.325;114639998;Brazil; +2018-11-18T09:07:48Z;nathalia;3676.544;116075135;Brazil; +2018-11-18T08:25:39Z;Nathália;967.2658;114919937;Brazil; +2018-11-18T08:19:50Z;Júlio Cesar;1998.314;115130984;Brazil; +2018-11-18T08:17:16Z;nathalia;150.4715;115777294;Brazil; +2018-11-18T08:14:44Z;nathalia;1503.038;115397628;Brazil; +2018-11-18T07:26:14Z;Eduardo;1172.717;114724655;Brazil; +2018-11-18T07:23:26Z;Armando;2921.335;115355426;Brazil; +2018-11-18T07:14:46Z;Júlio Cesar;1232.814;114306392;Brazil; +2018-11-18T07:00:42Z;Júlio Cesar;1388.813;116397844;Brazil; +2018-11-18T07:00:35Z;Sandra;4114.376;116320013;Brazil; +2018-11-18T06:49:53Z;Ana;2336.58;115729496;Brazil; +2018-11-18T06:28:17Z;nathalia;314.3727;115311458;Brazil; +2018-11-18T06:26:39Z;Júlio;2865.201;116348530;Brazil; +2018-11-18T06:16:01Z;Armando;1654.751;114363689;Brazil; +2018-11-18T05:55:25Z;Armando;583.3796;116248365;Brazil; +2018-11-18T05:44:35Z;nathalia;498.6173;114331697;Brazil; +2018-11-18T05:26:08Z;Armando;1181.517;115878211;Brazil; +2018-11-18T05:11:10Z;Júlio;3818.031;115993530;Brazil; +2018-11-18T05:02:58Z;Júlio;2934.144;114257862;Brazil; +2018-11-18T04:59:38Z;Armando;476.259;115740863;Brazil; +2018-11-18T04:26:14Z;Nathália;4126.289;114361437;Brazil; +2018-11-18T04:19:09Z;Sandra;2591.038;114635827;Brazil; +2018-11-18T03:47:43Z;Ana;1627.636;115372127;Brazil; +2018-11-18T03:33:01Z;Sandra;3536.788;116310965;Brazil; +2018-11-18T03:30:42Z;Júlio Cesar;2085.604;114842399;Brazil; +2018-11-18T03:17:59Z;Sandra;3602.311;115093852;Brazil; +2018-11-18T02:39:32Z;nathalia;1048.891;114632292;Brazil; +2018-11-18T02:17:02Z;Sandra;1414.682;114481338;Brazil; +2018-11-18T01:57:10Z;Júlio;3837.019;115083927;Brazil; +2018-11-18T01:56:50Z;Nathália;849.4204;115983604;Brazil; +2018-11-18T01:50:53Z;Sandra;2011.239;116218741;Brazil; +2018-11-18T01:32:49Z;Armando;1748.318;115140832;Brazil; +2018-11-18T01:06:03Z;Nathália;3239.46;116092881;Brazil; +2018-11-18T00:42:05Z;nathalia;3106.355;116246086;Brazil; +2018-11-18T00:41:18Z;Júlio;2417.773;115629739;Brazil; +2018-11-18T00:07:26Z;Nathália;2016.668;114774072;Brazil; +2018-11-18T00:06:14Z;Júlio;2716.951;115678937;Brazil; +2018-11-17T23:26:40Z;Armando;1084.091;114765625;Brazil; +2018-11-17T23:13:55Z;nathalia;2156.605;114331810;Brazil; +2018-11-17T23:06:45Z;nathalia;1085.155;114644239;Brazil; +2018-11-17T23:04:58Z;Ana;1439.105;116368935;Brazil; +2018-11-17T23:01:47Z;Júlio Cesar;2324.387;115965195;Brazil; +2018-11-17T22:59:30Z;Nathália;3425.397;114657349;Brazil; +2018-11-17T22:46:23Z;Ana;2113.075;115161620;Brazil; +2018-11-17T22:44:02Z;Sandra;2851.041;114847391;Brazil; +2018-11-17T22:43:22Z;Nathália;2202.724;116159039;Brazil; +2018-11-17T22:42:16Z;Ana;911.9307;115486534;Brazil; +2018-11-17T22:37:56Z;nathalia;3122.284;115661178;Brazil; +2018-11-17T22:28:28Z;Eduardo;3762.278;115789522;Brazil; +2018-11-17T22:13:15Z;Ana;2433.33;114952095;Brazil; +2018-11-17T22:12:40Z;Armando;446.3951;114977271;Brazil; +2018-11-17T21:27:53Z;Eduardo;2568.48;115770105;Brazil; +2018-11-17T20:48:15Z;Nathália;4268.251;116079523;Brazil; +2018-11-17T19:58:38Z;Júlio Cesar;6119.406;115318711;Brazil; +2018-11-17T19:56:11Z;Júlio Cesar;807.9134;115423819;Brazil; +2018-11-17T19:51:15Z;nathalia;2468.4;115868355;Brazil; +2018-11-17T19:46:02Z;Júlio;1955.671;115595638;Brazil; +2018-11-17T19:29:58Z;Júlio;5283.712;115389934;Brazil; +2018-11-17T19:26:54Z;Ana;2871.106;115121156;Brazil; +2018-11-17T18:37:50Z;Júlio Cesar;1723.002;114542592;Brazil; +2018-11-17T18:35:32Z;nathalia;259.0002;114239953;Brazil; +2018-11-17T18:19:13Z;Júlio Cesar;1054.008;114888720;Brazil; +2018-11-17T17:57:19Z;Armando;265.9301;116203035;Brazil; +2018-11-17T17:49:52Z;Armando;994.5769;114880551;Brazil; +2018-11-17T17:42:51Z;Sandra;3517.222;114919371;Brazil; +2018-11-17T17:37:56Z;Eduardo;2746.87;115228327;Brazil; +2018-11-17T17:29:18Z;Júlio;1443.211;115584106;Brazil; +2018-11-17T17:26:14Z;nathalia;3939.306;115604466;Brazil; +2018-11-17T17:25:45Z;Júlio Cesar;2509.137;114330603;Brazil; +2018-11-17T17:15:30Z;Júlio;297.5778;116351727;Brazil; +2018-11-17T16:58:29Z;Ana;1063.673;114925625;Brazil; +2018-11-17T16:39:39Z;Nathália;1925.905;116071021;Brazil; +2018-11-17T16:39:18Z;Eduardo;148.6251;115543644;Brazil; +2018-11-17T16:38:11Z;Ana;2840.014;115123901;Brazil; +2018-11-17T16:33:39Z;nathalia;78.45818;114480067;Brazil; +2018-11-17T16:22:29Z;Júlio;1656.34;115577991;Brazil; +2018-11-17T16:18:18Z;Júlio Cesar;3290.945;116365862;Brazil; +2018-11-17T15:36:22Z;Júlio Cesar;1931.489;115888816;Brazil; +2018-11-17T15:18:46Z;Nathália;3077.604;114396119;Brazil; +2018-11-17T15:00:26Z;nathalia;2105.846;115181619;Brazil; +2018-11-17T14:58:18Z;Armando;4472.105;114465138;Brazil; +2018-11-17T14:29:49Z;nathalia;1697.239;114904869;Brazil; +2018-11-17T14:23:30Z;Eduardo;1216.916;115891687;Brazil; +2018-11-17T13:30:47Z;Nathália;3607.987;116163052;Brazil; +2018-11-17T13:23:51Z;Armando;902.531;115019749;Brazil; +2018-11-17T13:23:34Z;Armando;856.5958;115264012;Brazil; +2018-11-17T13:15:19Z;Sandra;491.5136;115285815;Brazil; +2018-11-17T13:05:14Z;Armando;356.073;114205952;Brazil; +2018-11-17T12:54:39Z;Armando;1657.056;114520580;Brazil; +2018-11-17T12:33:35Z;Júlio Cesar;3403.271;115124598;Brazil; +2018-11-17T12:16:57Z;Armando;3011.596;114764944;Brazil; +2018-11-17T11:33:40Z;Eduardo;2173.338;115593144;Brazil; +2018-11-17T10:47:45Z;Armando;1558.444;115566344;Brazil; +2018-11-17T10:23:28Z;Eduardo;3277.992;115643369;Brazil; +2018-11-17T10:17:53Z;nathalia;443.1374;114235100;Brazil; +2018-11-17T09:55:12Z;Nathália;515.0945;115324327;Brazil; +2018-11-17T09:52:37Z;Armando;1000.814;115392710;Brazil; +2018-11-17T09:40:33Z;Nathália;3382.197;114598338;Brazil; +2018-11-17T09:29:20Z;Sandra;1681.335;115322695;Brazil; +2018-11-17T09:16:44Z;Júlio;3123.851;116350187;Brazil; +2018-11-17T09:11:57Z;Armando;1174.897;115575687;Brazil; +2018-11-17T09:02:32Z;Nathália;1531.146;116107037;Brazil; +2018-11-17T08:23:44Z;Ana;4136.131;115640194;Brazil; +2018-11-17T08:21:39Z;Nathália;48.05867;115797382;Brazil; +2018-11-17T07:11:09Z;Júlio;2527.536;114983923;Brazil; +2018-11-17T06:57:20Z;Júlio;3258.107;114995398;Brazil; +2018-11-17T06:48:08Z;nathalia;3444.102;115700009;Brazil; +2018-11-17T06:32:13Z;Nathália;1896.59;114943738;Brazil; +2018-11-17T05:29:56Z;Júlio Cesar;537.0818;116218098;Brazil; +2018-11-17T05:19:35Z;Armando;1101.559;116255160;Brazil; +2018-11-17T05:19:01Z;Ana;1146.045;114967582;Brazil; +2018-11-17T04:20:23Z;Júlio;1969.403;115908373;Brazil; +2018-11-17T03:51:17Z;Júlio;3460.184;115984592;Brazil; +2018-11-17T03:32:37Z;Sandra;1180.131;114217833;Brazil; +2018-11-17T03:20:55Z;Armando;2025.232;116352782;Brazil; +2018-11-17T03:12:31Z;Nathália;2262.919;115241041;Brazil; +2018-11-17T02:54:01Z;Júlio Cesar;3802.287;114940750;Brazil; +2018-11-17T02:53:44Z;nathalia;3346.983;115252483;Brazil; +2018-11-17T02:30:54Z;Ana;2951.77;115175345;Brazil; +2018-11-17T02:29:04Z;Nathália;188.6141;115165501;Brazil; +2018-11-17T02:28:04Z;Nathália;2652.848;114494257;Brazil; +2018-11-17T02:22:16Z;Sandra;2270.075;114636441;Brazil; +2018-11-17T02:04:58Z;Júlio;294.9832;115072518;Brazil; +2018-11-17T01:25:05Z;Sandra;1640.711;114215568;Brazil; +2018-11-17T00:58:47Z;Nathália;3148.547;115825252;Brazil; +2018-11-17T00:44:53Z;nathalia;3161.525;115258801;Brazil; +2018-11-17T00:42:16Z;Júlio Cesar;883.962;115407035;Brazil; +2018-11-17T00:29:21Z;Armando;1537.748;115516802;Brazil; +2018-11-17T00:27:04Z;nathalia;1052.944;115386228;Brazil; +2018-11-17T00:15:10Z;Júlio;335.3159;114540358;Brazil; +2018-11-17T00:10:26Z;Armando;2786.286;116088796;Brazil; +2018-11-17T00:03:00Z;Eduardo;2041.862;114746408;Brazil; +2018-11-16T23:52:30Z;Ana;1731.922;114369888;Brazil; +2018-11-16T23:26:18Z;Júlio;809.9099;114568588;Brazil; +2018-11-16T23:25:39Z;nathalia;1582.239;115559198;Brazil; +2018-11-16T23:18:41Z;nathalia;808.2741;114394667;Brazil; +2018-11-16T22:57:29Z;Sandra;2620.215;115201521;Brazil; +2018-11-16T22:34:33Z;Armando;2274.655;114604863;Brazil; +2018-11-16T22:27:53Z;Sandra;2152.972;115983681;Brazil; +2018-11-16T22:21:43Z;Júlio;2922.35;114301739;Brazil; +2018-11-16T22:19:24Z;nathalia;4239.303;115412985;Brazil; +2018-11-16T22:17:20Z;Júlio Cesar;2156.105;116213722;Brazil; +2018-11-16T22:06:39Z;Eduardo;3416.193;116238630;Brazil; +2018-11-16T22:06:35Z;Ana;2765.757;116229849;Brazil; +2018-11-16T22:00:59Z;Armando;341.5802;114795766;Brazil; +2018-11-16T21:32:52Z;Ana;719.0099;115590504;Brazil; +2018-11-16T21:31:13Z;nathalia;2652.608;114743787;Brazil; +2018-11-16T21:10:51Z;nathalia;3758.483;115591145;Brazil; +2018-11-16T21:10:19Z;Nathália;4035.927;115962046;Brazil; +2018-11-16T20:51:10Z;Ana;952.9197;115936252;Brazil; +2018-11-16T20:31:32Z;Júlio;5109.031;114250956;Brazil; +2018-11-16T20:29:53Z;Nathália;4362.915;115876359;Brazil; +2018-11-16T20:16:43Z;nathalia;3117.858;114486433;Brazil; +2018-11-16T20:14:59Z;Júlio;192.3549;116047476;Brazil; +2018-11-16T20:02:08Z;Júlio;2773.349;114426649;Brazil; +2018-11-16T19:58:32Z;Júlio;2485.771;116235207;Brazil; +2018-11-16T19:32:01Z;Nathália;2115.574;116060245;Brazil; +2018-11-16T19:27:33Z;Ana;2247.047;115858311;Brazil; +2018-11-16T18:59:21Z;Nathália;1310.423;115653742;Brazil; +2018-11-16T18:55:25Z;nathalia;1108.139;115602909;Brazil; +2018-11-16T18:44:40Z;Armando;2258.852;116345624;Brazil; +2018-11-16T18:43:22Z;Eduardo;3502.633;115795202;Brazil; +2018-11-16T18:09:46Z;Eduardo;1144.528;114670601;Brazil; +2018-11-16T17:58:25Z;Armando;2327.416;114460262;Brazil; +2018-11-16T17:54:05Z;Eduardo;3270.925;115908879;Brazil; +2018-11-16T17:53:21Z;Nathália;2816.286;114328074;Brazil; +2018-11-16T17:53:07Z;Eduardo;2047.982;114926709;Brazil; +2018-11-16T17:52:38Z;Ana;1557.175;115391586;Brazil; +2018-11-16T17:25:59Z;Júlio Cesar;2090.269;114671302;Brazil; +2018-11-16T17:17:53Z;Júlio Cesar;409.579;115534607;Brazil; +2018-11-16T16:44:59Z;Júlio;1552.093;114690477;Brazil; +2018-11-16T16:39:30Z;Sandra;1603.103;115537620;Brazil; +2018-11-16T16:29:03Z;nathalia;4500.068;114819036;Brazil; +2018-11-16T16:11:46Z;Ana;4729.153;115218928;Brazil; +2018-11-16T16:01:57Z;nathalia;1488.618;116266206;Brazil; +2018-11-16T15:49:55Z;Júlio;2891.41;114366607;Brazil; +2018-11-16T15:23:15Z;Ana;2236.581;114604653;Brazil; +2018-11-16T15:14:15Z;Sandra;273.5393;114707544;Brazil; +2018-11-16T15:13:11Z;Nathália;2353.286;116057691;Brazil; +2018-11-16T15:07:58Z;nathalia;5104.2;115022499;Brazil; +2018-11-16T14:48:17Z;Ana;2676.911;114294473;Brazil; +2018-11-16T14:38:00Z;Júlio;5205.706;115674501;Brazil; +2018-11-16T14:27:54Z;Ana;1138.839;115900962;Brazil; +2018-11-16T14:25:06Z;Nathália;4251.048;114470475;Brazil; +2018-11-16T14:20:23Z;Armando;3850.762;115486301;Brazil; +2018-11-16T14:20:10Z;Nathália;1356.07;115493788;Brazil; +2018-11-16T14:17:08Z;Júlio;982.3801;115274588;Brazil; +2018-11-16T14:06:52Z;Armando;92.64345;115812673;Brazil; +2018-11-16T14:06:25Z;Júlio Cesar;1381.025;116099225;Brazil; +2018-11-16T13:35:33Z;Nathália;2177.088;115702272;Brazil; +2018-11-16T12:47:25Z;Júlio;865.0779;115190149;Brazil; +2018-11-16T12:42:58Z;Armando;2578.719;114407811;Brazil; +2018-11-16T12:35:14Z;Ana;1761.291;115226872;Brazil; +2018-11-16T11:52:29Z;nathalia;176.0622;115492424;Brazil; +2018-11-16T11:42:03Z;Júlio;1635.675;114417519;Brazil; +2018-11-16T11:36:42Z;Eduardo;1065.031;115749693;Brazil; +2018-11-16T11:35:22Z;Júlio Cesar;2322.733;115231619;Brazil; +2018-11-16T11:00:09Z;Ana;2491.91;115621346;Brazil; +2018-11-16T10:41:12Z;Sandra;3012.043;115386002;Brazil; +2018-11-16T10:37:29Z;Júlio;2238.27;114678107;Brazil; +2018-11-16T10:30:32Z;Júlio;201.3029;115725559;Brazil; +2018-11-16T09:42:14Z;nathalia;406.1847;114991162;Brazil; +2018-11-16T09:09:39Z;Eduardo;1924.587;114245393;Brazil; +2018-11-16T08:52:30Z;Sandra;714.4144;114300371;Brazil; +2018-11-16T08:01:42Z;Ana;6268.804;114306293;Brazil; +2018-11-16T07:47:55Z;Júlio Cesar;5358.006;114706441;Brazil; +2018-11-16T07:18:37Z;Ana;1239.093;114905582;Brazil; +2018-11-16T06:17:34Z;Nathália;2547.221;114787926;Brazil; +2018-11-16T06:08:04Z;Eduardo;4092.477;115906039;Brazil; +2018-11-16T06:04:45Z;Armando;4404.607;115776797;Brazil; +2018-11-16T05:59:03Z;Ana;805.0361;114989133;Brazil; +2018-11-16T05:53:52Z;Júlio;2516.214;114979084;Brazil; +2018-11-16T05:45:58Z;Ana;1923.592;116212600;Brazil; +2018-11-16T05:41:51Z;Nathália;1140.45;114622030;Brazil; +2018-11-16T05:14:06Z;nathalia;206.9558;114248826;Brazil; +2018-11-16T04:40:05Z;Júlio;3146.523;115627939;Brazil; +2018-11-16T04:10:53Z;Júlio;2247.061;114645005;Brazil; +2018-11-16T03:55:06Z;Ana;204.1207;116258986;Brazil; +2018-11-16T03:40:18Z;Júlio Cesar;593.1046;116038159;Brazil; +2018-11-16T02:54:23Z;Eduardo;1533.039;114778035;Brazil; +2018-11-16T01:16:25Z;Armando;2117.035;115324204;Brazil; +2018-11-16T01:03:50Z;Nathália;2003.709;115788721;Brazil; +2018-11-16T00:40:05Z;Armando;2130.24;114337236;Brazil; +2018-11-16T00:25:27Z;nathalia;1400.054;116302507;Brazil; +2018-11-16T00:14:15Z;Júlio;1165.185;114545182;Brazil; +2018-11-15T23:41:32Z;Júlio;2986.76;115378986;Brazil; +2018-11-15T23:02:38Z;Armando;2215.282;116090486;Brazil; +2018-11-15T22:51:30Z;nathalia;41.94572;115292776;Brazil; +2018-11-15T22:48:17Z;Nathália;3227.429;115335836;Brazil; +2018-11-15T22:47:53Z;Sandra;1887.479;115890803;Brazil; +2018-11-15T22:41:15Z;Nathália;3431.546;116335915;Brazil; +2018-11-15T22:31:37Z;Júlio;1456.18;115282227;Brazil; +2018-11-15T22:23:43Z;Sandra;2138.909;115053964;Brazil; +2018-11-15T22:12:10Z;Armando;1975.974;115802460;Brazil; +2018-11-15T21:22:08Z;Eduardo;715.5232;115461254;Brazil; +2018-11-15T20:44:09Z;Sandra;1352.45;115409072;Brazil; +2018-11-15T20:29:03Z;Ana;1177.628;115591954;Brazil; +2018-11-15T19:49:48Z;Júlio Cesar;922.1975;116271027;Brazil; +2018-11-15T19:44:01Z;Júlio Cesar;1569.368;114461297;Brazil; +2018-11-15T19:31:31Z;Nathália;3776.093;116168099;Brazil; +2018-11-15T19:26:04Z;Armando;721.5913;116034911;Brazil; +2018-11-15T19:19:00Z;Júlio Cesar;3136.281;115991262;Brazil; +2018-11-15T18:58:31Z;Armando;2194.438;116162939;Brazil; +2018-11-15T18:17:38Z;nathalia;1455.362;115047984;Brazil; +2018-11-15T18:12:38Z;Júlio;59.72338;116388289;Brazil; +2018-11-15T18:10:38Z;Júlio Cesar;70.27087;114512944;Brazil; +2018-11-15T18:09:31Z;Nathália;1793.149;115484261;Brazil; +2018-11-15T18:08:17Z;Ana;4153.306;115991062;Brazil; +2018-11-15T18:05:12Z;Armando;1630.019;116016715;Brazil; +2018-11-15T17:51:59Z;Armando;662.1314;114245302;Brazil; +2018-11-15T17:47:02Z;Ana;239.7655;115322550;Brazil; +2018-11-15T16:54:38Z;Júlio Cesar;480.187;114249390;Brazil; +2018-11-15T16:53:30Z;Ana;2712.629;114591276;Brazil; +2018-11-15T16:20:42Z;Nathália;2238.452;114668505;Brazil; +2018-11-15T16:08:41Z;Sandra;1545.215;114663213;Brazil; +2018-11-15T15:08:14Z;Armando;3833.391;115218480;Brazil; +2018-11-15T14:38:47Z;Júlio Cesar;47.86036;114227324;Brazil; +2018-11-15T14:32:29Z;Nathália;3566.227;114362047;Brazil; +2018-11-15T13:54:05Z;nathalia;4461.38;116056190;Brazil; +2018-11-15T13:51:48Z;Júlio;3365.356;114967177;Brazil; +2018-11-15T13:48:48Z;Júlio;514.5605;115577874;Brazil; +2018-11-15T13:29:44Z;Júlio Cesar;4168.903;115136706;Brazil; +2018-11-15T13:07:11Z;Júlio Cesar;3330.107;114946924;Brazil; +2018-11-15T12:51:20Z;Eduardo;1570.961;114803423;Brazil; +2018-11-15T12:12:54Z;Eduardo;331.1663;115656986;Brazil; +2018-11-15T12:12:00Z;Júlio;2324.973;115805241;Brazil; +2018-11-15T11:50:21Z;Ana;129.6082;116388756;Brazil; +2018-11-15T11:34:07Z;Ana;2916.469;115399030;Brazil; +2018-11-15T11:23:31Z;nathalia;2430.033;116060416;Brazil; +2018-11-15T11:08:36Z;Armando;3423.832;114935704;Brazil; +2018-11-15T10:27:49Z;Eduardo;415.4581;115898087;Brazil; +2018-11-15T10:21:21Z;Nathália;64.75847;114501245;Brazil; +2018-11-15T10:03:03Z;Nathália;1624.958;116320686;Brazil; +2018-11-15T09:57:01Z;Ana;3799.706;114703519;Brazil; +2018-11-15T09:41:19Z;Júlio Cesar;399.2161;114932369;Brazil; +2018-11-15T09:34:22Z;Sandra;4254.04;114639108;Brazil; +2018-11-15T09:22:02Z;nathalia;1530.392;115941857;Brazil; +2018-11-15T09:14:21Z;Júlio Cesar;1489.795;115563318;Brazil; +2018-11-15T09:04:38Z;Nathália;3395.949;116338082;Brazil; +2018-11-15T09:04:29Z;Armando;1915.562;114489762;Brazil; +2018-11-15T08:39:42Z;Nathália;4216.141;115321844;Brazil; +2018-11-15T08:11:05Z;Sandra;1275.895;115470970;Brazil; +2018-11-15T07:51:14Z;Nathália;3919.078;114549758;Brazil; +2018-11-15T07:16:27Z;Nathália;1864.139;115557495;Brazil; +2018-11-15T07:06:44Z;Armando;3198.893;114419796;Brazil; +2018-11-15T06:44:38Z;Ana;2604.183;114921169;Brazil; +2018-11-15T06:06:41Z;Júlio Cesar;368.9681;116355563;Brazil; +2018-11-15T06:06:41Z;Sandra;191.1034;114772089;Brazil; +2018-11-15T05:26:01Z;Ana;3122.53;116157072;Brazil; +2018-11-15T05:19:22Z;Júlio Cesar;48.7709;114336865;Brazil; +2018-11-15T04:47:22Z;Júlio Cesar;1151.585;116186805;Brazil; +2018-11-15T04:30:20Z;Nathália;1843.662;116014985;Brazil; +2018-11-15T04:27:07Z;Júlio;4755.476;114829534;Brazil; +2018-11-15T04:26:57Z;Armando;1959.652;115805995;Brazil; +2018-11-15T04:05:58Z;Armando;4048.563;116129861;Brazil; +2018-11-15T04:02:40Z;Eduardo;1362.953;114716014;Brazil; +2018-11-15T03:48:43Z;Armando;476.2967;115189696;Brazil; +2018-11-15T03:40:04Z;nathalia;2832.674;114803869;Brazil; +2018-11-15T03:27:09Z;Armando;1501.569;115327312;Brazil; +2018-11-15T03:26:40Z;Júlio Cesar;2382.233;115690649;Brazil; +2018-11-15T03:08:38Z;Eduardo;2913.794;116124237;Brazil; +2018-11-15T03:02:18Z;Júlio;770.5236;115228334;Brazil; +2018-11-15T02:58:52Z;Sandra;2011.287;115836896;Brazil; +2018-11-15T02:45:41Z;Júlio Cesar;1651.524;114817078;Brazil; +2018-11-15T02:38:34Z;Ana;4284.448;116087842;Brazil; +2018-11-15T02:22:33Z;Eduardo;4368.432;115523851;Brazil; +2018-11-15T01:56:46Z;Júlio;1880.526;115010244;Brazil; +2018-11-15T01:50:04Z;Armando;1062.884;115164992;Brazil; +2018-11-15T01:48:25Z;Armando;3985.601;116344476;Brazil; +2018-11-15T01:46:54Z;Sandra;2498.466;116130692;Brazil; +2018-11-15T01:45:53Z;Armando;751.3166;115022749;Brazil; +2018-11-15T01:41:45Z;nathalia;2942.579;115250584;Brazil; +2018-11-15T01:37:43Z;Ana;1988.405;115456114;Brazil; +2018-11-15T01:22:58Z;Sandra;4713.648;115330435;Brazil; +2018-11-15T00:48:46Z;Júlio;896.4866;114704809;Brazil; +2018-11-15T00:46:34Z;Eduardo;2402.284;115028916;Brazil; +2018-11-15T00:43:43Z;Júlio;31.42833;114257657;Brazil; +2018-11-15T00:29:51Z;Armando;3065.447;114291540;Brazil; +2018-11-15T00:26:24Z;Eduardo;1211.986;114413681;Brazil; +2018-11-15T00:24:39Z;Júlio Cesar;1477.257;115798473;Brazil; +2018-11-15T00:24:27Z;Ana;2726.895;115309421;Brazil; +2018-11-15T00:22:51Z;Ana;1744.582;115165847;Brazil; +2018-11-14T23:58:39Z;Júlio;4322.814;114607815;Brazil; +2018-11-14T23:52:28Z;Ana;3591.779;114794534;Brazil; +2018-11-14T23:33:29Z;Ana;238.639;115942619;Brazil; +2018-11-14T23:32:43Z;Sandra;696.3366;115038847;Brazil; +2018-11-14T23:19:50Z;nathalia;642.5955;114230159;Brazil; +2018-11-14T23:15:13Z;Armando;1584.813;116077775;Brazil; +2018-11-14T22:36:31Z;Armando;3162.973;115298514;Brazil; +2018-11-14T22:20:23Z;Armando;4564.87;115570446;Brazil; +2018-11-14T21:52:44Z;Ana;1263.78;115330774;Brazil; +2018-11-14T21:47:25Z;Sandra;3916.323;116211217;Brazil; +2018-11-14T21:45:05Z;Júlio Cesar;2014.862;115658097;Brazil; +2018-11-14T21:40:48Z;Júlio;3472.549;115038379;Brazil; +2018-11-14T21:32:10Z;nathalia;2009.038;115834979;Brazil; +2018-11-14T20:22:28Z;Júlio Cesar;2706.146;116151863;Brazil; +2018-11-14T20:16:20Z;nathalia;2863.995;116157748;Brazil; +2018-11-14T20:14:43Z;Sandra;3472.177;116308390;Brazil; +2018-11-14T20:13:19Z;Júlio;1905.038;115196146;Brazil; +2018-11-14T20:01:45Z;Eduardo;1236.831;115189427;Brazil; +2018-11-14T19:53:40Z;Eduardo;694.676;114209012;Brazil; +2018-11-14T19:53:13Z;Eduardo;3704.082;114838307;Brazil; +2018-11-14T19:46:52Z;Ana;35.80027;114225417;Brazil; +2018-11-14T19:21:49Z;Ana;2112.513;115151866;Brazil; +2018-11-14T19:21:25Z;nathalia;3161.605;115881174;Brazil; +2018-11-14T19:12:10Z;Ana;3534.745;115271673;Brazil; +2018-11-14T19:10:12Z;Sandra;392.6213;114888686;Brazil; +2018-11-14T18:49:02Z;Sandra;4322.46;115103928;Brazil; +2018-11-14T18:48:22Z;nathalia;2169.458;116256489;Brazil; +2018-11-14T18:20:18Z;Sandra;2070.417;114807457;Brazil; +2018-11-14T17:54:48Z;Nathália;123.9841;116100493;Brazil; +2018-11-14T17:46:19Z;Júlio Cesar;4549.706;114455394;Brazil; +2018-11-14T17:34:18Z;Júlio Cesar;1597.172;114343340;Brazil; +2018-11-14T17:24:04Z;Armando;1949.894;114748641;Brazil; +2018-11-14T17:14:14Z;Júlio Cesar;3147.379;116199556;Brazil; +2018-11-14T17:06:23Z;Ana;3611.473;114545041;Brazil; +2018-11-14T16:58:04Z;Júlio Cesar;3647.337;116162139;Brazil; +2018-11-14T16:37:21Z;Júlio;1772.536;114360622;Brazil; +2018-11-14T16:13:04Z;Sandra;343.621;114458013;Brazil; +2018-11-14T15:49:14Z;Sandra;231.1357;114803997;Brazil; +2018-11-14T15:49:10Z;Ana;3909.642;114633783;Brazil; +2018-11-14T15:16:58Z;Nathália;2186.003;114231116;Brazil; +2018-11-14T15:15:34Z;Eduardo;3464.621;115044720;Brazil; +2018-11-14T15:12:21Z;Ana;3362.025;116205985;Brazil; +2018-11-14T14:54:46Z;Júlio Cesar;2175.03;115709101;Brazil; +2018-11-14T14:32:23Z;Júlio Cesar;735.0973;115533483;Brazil; +2018-11-14T14:20:50Z;Armando;3268.675;115480971;Brazil; +2018-11-14T14:15:40Z;Nathália;1435.452;115724819;Brazil; +2018-11-14T13:44:37Z;Ana;3925.741;116270392;Brazil; +2018-11-14T13:35:39Z;Júlio;5666.419;114696700;Brazil; +2018-11-14T12:53:58Z;nathalia;2885.928;114721540;Brazil; +2018-11-14T12:42:11Z;Júlio Cesar;3060.974;116256860;Brazil; +2018-11-14T12:30:30Z;nathalia;3535.131;115182730;Brazil; +2018-11-14T12:28:29Z;Nathália;904.4023;114298915;Brazil; +2018-11-14T12:27:54Z;Sandra;1708.537;115518481;Brazil; +2018-11-14T12:18:31Z;Ana;2262.655;115332230;Brazil; +2018-11-14T12:06:48Z;Nathália;3831.634;116288202;Brazil; +2018-11-14T11:34:51Z;Ana;770.5151;114710724;Brazil; +2018-11-14T11:10:22Z;Nathália;1873.244;115713210;Brazil; +2018-11-14T11:02:57Z;Eduardo;1444.846;114342658;Brazil; +2018-11-14T10:45:58Z;Júlio;4530.048;116091737;Brazil; +2018-11-14T10:42:30Z;Ana;2865.591;115733079;Brazil; +2018-11-14T10:15:23Z;Nathália;3429.25;114226368;Brazil; +2018-11-14T09:48:03Z;Nathália;2975.492;114689954;Brazil; +2018-11-14T09:36:33Z;Júlio;1519.039;115137954;Brazil; +2018-11-14T09:36:28Z;Sandra;3569.07;115573437;Brazil; +2018-11-14T09:26:10Z;Armando;3104.188;115845235;Brazil; +2018-11-14T09:22:16Z;Júlio Cesar;3811.581;115282217;Brazil; +2018-11-14T09:13:20Z;Armando;1811.065;115807408;Brazil; +2018-11-14T09:04:46Z;nathalia;4521.979;116060966;Brazil; +2018-11-14T08:41:38Z;Ana;2345.533;116171660;Brazil; +2018-11-14T08:39:17Z;Júlio Cesar;1636.936;114282540;Brazil; +2018-11-14T08:27:59Z;Sandra;1813.826;114992105;Brazil; +2018-11-14T08:23:21Z;Júlio;345.1135;115739157;Brazil; +2018-11-14T08:00:40Z;Sandra;413.2849;114473246;Brazil; +2018-11-14T07:32:59Z;Júlio;1239.505;115043291;Brazil; +2018-11-14T07:16:53Z;Júlio Cesar;2876.161;115866356;Brazil; +2018-11-14T06:46:19Z;Júlio Cesar;2235.77;115467063;Brazil; +2018-11-14T06:45:06Z;Júlio;407.9886;115382116;Brazil; +2018-11-14T05:12:58Z;Armando;4274.52;114329550;Brazil; +2018-11-14T05:05:12Z;Nathália;1575.476;116233539;Brazil; +2018-11-14T05:00:08Z;Nathália;2197.804;115724555;Brazil; +2018-11-14T04:52:41Z;Júlio;779.1928;115986710;Brazil; +2018-11-14T04:19:15Z;nathalia;4521.904;115224470;Brazil; +2018-11-14T04:08:26Z;Sandra;1376.738;115283411;Brazil; +2018-11-14T03:44:02Z;Armando;4652.532;115561348;Brazil; +2018-11-14T03:18:39Z;Eduardo;1743.832;114368299;Brazil; +2018-11-14T03:18:31Z;Júlio;1797.311;116184479;Brazil; +2018-11-14T02:47:40Z;Armando;1548.294;114880252;Brazil; +2018-11-14T02:35:27Z;Sandra;2672.533;115536057;Brazil; +2018-11-14T01:54:42Z;Júlio Cesar;4329.155;115399901;Brazil; +2018-11-14T01:26:56Z;Eduardo;1263.553;114453089;Brazil; +2018-11-14T01:11:50Z;Júlio;1855.331;114449317;Brazil; +2018-11-14T01:02:54Z;Armando;204.0976;115977130;Brazil; +2018-11-14T00:58:06Z;Júlio;2602.317;115913479;Brazil; +2018-11-14T00:53:01Z;Sandra;3778.966;115960241;Brazil; +2018-11-14T00:38:50Z;Ana;4765.465;114379896;Brazil; +2018-11-14T00:29:41Z;nathalia;302.3997;115128635;Brazil; +2018-11-14T00:05:52Z;nathalia;4179.223;115200395;Brazil; +2018-11-13T23:55:41Z;Ana;2640.092;115263403;Brazil; +2018-11-13T23:47:33Z;nathalia;2747.426;114675180;Brazil; +2018-11-13T23:14:48Z;Sandra;523.086;115299474;Brazil; +2018-11-13T22:53:34Z;nathalia;1191.483;115696108;Brazil; +2018-11-13T22:53:17Z;Sandra;1458.071;115771908;Brazil; +2018-11-13T22:43:24Z;Ana;3097.379;116265378;Brazil; +2018-11-13T22:09:52Z;Nathália;5826.647;115284800;Brazil; +2018-11-13T22:05:22Z;Eduardo;1571.248;114333518;Brazil; +2018-11-13T22:04:34Z;Júlio;1345.186;114263964;Brazil; +2018-11-13T21:48:06Z;Ana;1423.125;115253454;Brazil; +2018-11-13T21:42:49Z;Júlio Cesar;778.331;115838204;Brazil; +2018-11-13T21:36:28Z;nathalia;194.788;114336876;Brazil; +2018-11-13T21:32:38Z;nathalia;2268.527;116269201;Brazil; +2018-11-13T21:26:26Z;Armando;3091.723;115410496;Brazil; +2018-11-13T20:54:43Z;Armando;451.5525;114419918;Brazil; +2018-11-13T20:33:20Z;Ana;3891.374;114217943;Brazil; +2018-11-13T20:31:34Z;Armando;415.3772;116122465;Brazil; +2018-11-13T20:15:48Z;Ana;2365.101;114316663;Brazil; +2018-11-13T19:43:13Z;Júlio;3705.809;116300452;Brazil; +2018-11-13T19:18:02Z;Júlio Cesar;234.4381;114656684;Brazil; +2018-11-13T18:44:40Z;Júlio Cesar;472.9714;115782706;Brazil; +2018-11-13T18:43:42Z;Sandra;3377.985;114802917;Brazil; +2018-11-13T18:14:46Z;Sandra;5492.345;115063183;Brazil; +2018-11-13T17:55:39Z;Ana;737.1944;115177036;Brazil; +2018-11-13T17:52:34Z;Ana;351.9123;116181055;Brazil; +2018-11-13T17:10:20Z;Júlio;948.8227;115484154;Brazil; +2018-11-13T16:44:58Z;Ana;3688.763;114613349;Brazil; +2018-11-13T15:21:39Z;Júlio;613.8187;115888176;Brazil; +2018-11-13T15:11:40Z;nathalia;1138.542;114658478;Brazil; +2018-11-13T14:53:58Z;Nathália;4018.966;114330745;Brazil; +2018-11-13T14:44:13Z;Ana;1373.991;116093774;Brazil; +2018-11-13T14:40:48Z;Armando;2205.489;114814090;Brazil; +2018-11-13T14:38:06Z;Eduardo;1535.751;114829922;Brazil; +2018-11-13T14:24:33Z;Sandra;3950.971;114817106;Brazil; +2018-11-13T14:01:24Z;nathalia;39.12215;114804267;Brazil; +2018-11-13T13:51:57Z;Júlio Cesar;409.3475;115249947;Brazil; +2018-11-13T13:43:24Z;Sandra;3667.085;115468274;Brazil; +2018-11-13T13:33:10Z;Eduardo;939.3918;116051908;Brazil; +2018-11-13T13:25:30Z;Armando;1027.638;115498029;Brazil; +2018-11-13T13:06:02Z;Sandra;2605.842;114336721;Brazil; +2018-11-13T12:50:23Z;Armando;2837.044;114259268;Brazil; +2018-11-13T12:49:39Z;Sandra;636.9661;116289853;Brazil; +2018-11-13T12:18:19Z;Armando;2360.251;114452641;Brazil; +2018-11-13T12:10:26Z;Sandra;2441.701;115197863;Brazil; +2018-11-13T11:41:43Z;Nathália;686.0183;116110924;Brazil; +2018-11-13T11:14:53Z;Sandra;1926.918;115525758;Brazil; +2018-11-13T10:39:00Z;Nathália;1948.905;115824973;Brazil; +2018-11-13T10:16:52Z;Júlio;2714.205;115259728;Brazil; +2018-11-13T10:16:14Z;Júlio Cesar;3520.575;114485335;Brazil; +2018-11-13T10:07:07Z;Armando;302.3893;114816476;Brazil; +2018-11-13T09:35:16Z;nathalia;1370.102;115661362;Brazil; +2018-11-13T08:42:17Z;Sandra;3202.557;115663816;Brazil; +2018-11-13T08:41:00Z;Armando;729.8551;114266644;Brazil; +2018-11-13T07:27:25Z;Sandra;3505.366;116180091;Brazil; +2018-11-13T07:14:11Z;Nathália;225.6531;115715044;Brazil; +2018-11-13T06:02:28Z;Ana;1844.744;115027814;Brazil; +2018-11-13T05:58:25Z;nathalia;1382.636;116057346;Brazil; +2018-11-13T05:43:49Z;nathalia;2855.719;115037648;Brazil; +2018-11-13T05:22:32Z;Armando;4256.504;114467168;Brazil; +2018-11-13T05:03:39Z;Júlio Cesar;1772.547;114635064;Brazil; +2018-11-13T04:51:48Z;Eduardo;566.3267;114663779;Brazil; +2018-11-13T04:45:33Z;Ana;3339.099;114711944;Brazil; +2018-11-13T04:21:18Z;Armando;2787.48;114680740;Brazil; +2018-11-13T04:11:45Z;Sandra;2005.19;115384326;Brazil; +2018-11-13T03:32:56Z;Armando;2805.944;114344755;Brazil; +2018-11-13T03:17:50Z;Júlio Cesar;3086.532;115178270;Brazil; +2018-11-13T03:01:34Z;Júlio Cesar;3079.369;115971781;Brazil; +2018-11-13T02:35:38Z;Sandra;2406.327;114274944;Brazil; +2018-11-13T01:46:00Z;Eduardo;2924.732;115501215;Brazil; +2018-11-13T01:00:42Z;Júlio Cesar;1059.319;116341955;Brazil; +2018-11-13T00:53:27Z;Júlio;469.5485;115808740;Brazil; +2018-11-13T00:45:28Z;Júlio;3501.999;114260142;Brazil; +2018-12-06T21:50:27Z;Ana;352.0382;114251309;Colombia; +2018-12-06T21:31:03Z;Eduardo;248.5324;115398234;Colombia; +2018-12-06T21:07:39Z;nathalia;114.064;115053432;Colombia; +2018-12-06T21:03:13Z;Júlio;6256.889;116280697;Colombia; +2018-12-06T20:49:12Z;Sandra;310.7893;114885324;Colombia; +2018-12-06T20:43:34Z;Armando;1534.191;114339592;Colombia; +2018-12-06T20:13:55Z;Júlio;5669.946;114785551;Colombia; +2018-12-06T19:59:08Z;Sandra;1986.292;114316787;Colombia; +2018-12-06T19:50:50Z;Sandra;2606.804;116150215;Colombia; +2018-12-06T19:43:23Z;Sandra;264.1802;114665579;Colombia; +2018-12-06T19:15:24Z;Júlio Cesar;2361.957;115436876;Colombia; +2018-12-06T19:10:09Z;Júlio Cesar;2864.804;115060265;Colombia; +2018-12-06T19:06:29Z;Nathália;7569.304;114850907;Colombia; +2018-12-06T18:50:04Z;Júlio Cesar;1081.016;115527998;Colombia; +2018-12-06T18:37:49Z;nathalia;838.3155;115662792;Colombia; +2018-12-06T17:47:24Z;nathalia;644.0639;115349538;Colombia; +2018-12-06T17:46:07Z;Eduardo;1052.402;115048566;Colombia; +2018-12-06T17:45:58Z;Ana;124.0503;114929518;Colombia; +2018-12-06T17:41:31Z;Júlio;1451.556;115001720;Colombia; +2018-12-06T17:30:41Z;nathalia;10255.2;115406530;Colombia; +2018-12-06T16:50:53Z;Ana;131.7833;115046182;Colombia; +2018-12-06T16:43:45Z;nathalia;3394.968;115992292;Colombia; +2018-12-06T16:24:10Z;Armando;1730.666;116350753;Colombia; +2018-12-06T16:14:04Z;Júlio Cesar;543.6743;115774409;Colombia; +2018-12-06T16:11:58Z;Eduardo;585.1767;115728010;Colombia; +2018-12-06T15:52:12Z;Ana;394.2519;116019377;Colombia; +2018-12-06T15:40:07Z;nathalia;934.803;114847481;Colombia; +2018-12-06T15:36:53Z;Júlio Cesar;3873.012;115783085;Colombia; +2018-12-06T14:52:39Z;Nathália;1741.853;115839709;Colombia; +2018-12-06T14:32:25Z;Armando;147.8771;115909767;Colombia; +2018-12-06T14:31:33Z;Eduardo;1209.771;114441628;Colombia; +2018-12-06T14:03:10Z;Júlio Cesar;1271.027;114739010;Colombia; +2018-12-06T13:58:52Z;Júlio Cesar;8006.17;114536452;Colombia; +2018-12-06T13:13:16Z;Eduardo;4648.406;114937472;Colombia; +2018-12-06T12:29:22Z;Júlio Cesar;8839.323;114615421;Colombia; +2018-12-06T12:28:56Z;Eduardo;710.3531;115306959;Colombia; +2018-12-06T12:12:46Z;Eduardo;785.187;114717451;Colombia; +2018-12-06T12:12:15Z;Sandra;3605.509;114237867;Colombia; +2018-12-06T10:14:42Z;Sandra;1198.851;116052994;Colombia; +2018-12-06T09:40:39Z;Sandra;1713.143;114369319;Colombia; +2018-12-06T08:49:30Z;Eduardo;2148.894;116139705;Colombia; +2018-12-06T08:30:33Z;nathalia;5121.444;114223272;Colombia; +2018-12-06T08:27:20Z;Júlio;646.8237;115755749;Colombia; +2018-12-06T08:20:22Z;Júlio;8496.389;114407078;Colombia; +2018-12-06T07:28:48Z;Nathália;2699.21;114530949;Colombia; +2018-12-06T06:29:48Z;Júlio;2188.688;114733277;Colombia; +2018-12-06T06:20:32Z;Júlio;8843.713;114329132;Colombia; +2018-12-06T05:53:24Z;Armando;1328.442;114826861;Colombia; +2018-12-06T05:45:20Z;Armando;7954.809;115914411;Colombia; +2018-12-06T05:38:15Z;Nathália;1920.194;115796177;Colombia; +2018-12-06T05:35:36Z;Ana;476.917;114840785;Colombia; +2018-12-06T05:33:58Z;Júlio Cesar;20.17318;116388482;Colombia; +2018-12-06T05:26:06Z;Armando;450.7138;115315185;Colombia; +2018-12-06T05:22:06Z;Júlio;107.233;114610699;Colombia; +2018-12-06T05:14:28Z;Eduardo;1013.54;114741701;Colombia; +2018-12-06T05:01:52Z;Eduardo;4612.831;114367849;Colombia; +2018-12-06T04:33:24Z;Nathália;4236.387;116380784;Colombia; +2018-12-06T04:32:22Z;Júlio Cesar;3209.694;115010874;Colombia; +2018-12-06T04:27:46Z;Ana;2664.661;114852163;Colombia; +2018-12-06T04:24:42Z;Eduardo;6354.662;115833157;Colombia; +2018-12-06T04:19:21Z;Armando;6534.203;115654617;Colombia; +2018-12-06T04:16:15Z;Armando;742.7524;115911826;Colombia; +2018-12-06T03:47:33Z;Nathália;635.5315;115255957;Colombia; +2018-12-06T03:24:59Z;Júlio Cesar;119.8659;114981593;Colombia; +2018-12-06T03:21:18Z;Júlio Cesar;1938.882;114574654;Colombia; +2018-12-06T03:19:50Z;Eduardo;866.2919;115846503;Colombia; +2018-12-06T02:55:30Z;Armando;699.093;114296565;Colombia; +2018-12-06T02:24:10Z;Eduardo;3443.923;114666522;Colombia; +2018-12-06T01:47:57Z;Armando;1182.663;114909599;Colombia; +2018-12-06T01:46:55Z;nathalia;86.10185;115365301;Colombia; +2018-12-06T01:43:35Z;Sandra;514.6662;115762840;Colombia; +2018-12-06T01:30:20Z;Eduardo;11351.88;115854282;Colombia; +2018-12-06T01:24:58Z;Armando;2989.231;115666452;Colombia; +2018-12-06T01:17:37Z;Júlio;2470.83;114686917;Colombia; +2018-12-06T01:07:26Z;nathalia;12302.18;115883390;Colombia; +2018-12-06T00:42:20Z;nathalia;897.4802;115743814;Colombia; +2018-12-06T00:40:46Z;nathalia;1422.723;116062815;Colombia; +2018-12-06T00:37:45Z;Júlio Cesar;3831.448;114540656;Colombia; +2018-12-06T00:22:11Z;Sandra;6106.687;116309582;Colombia; +2018-12-06T00:14:33Z;Júlio Cesar;2874.487;115292449;Colombia; +2018-12-05T23:37:30Z;nathalia;1137.883;114390977;Colombia; +2018-12-05T23:36:32Z;Nathália;261.9989;114581492;Colombia; +2018-12-05T23:29:09Z;Eduardo;3313.725;116191082;Colombia; +2018-12-05T23:26:30Z;Ana;4292.305;115001243;Colombia; +2018-12-05T23:23:03Z;Sandra;147.0341;115185525;Colombia; +2018-12-05T23:21:43Z;Ana;7061.143;114798614;Colombia; +2018-12-05T23:03:21Z;Nathália;127.6535;114933669;Colombia; +2018-12-05T22:52:43Z;Júlio;6449.397;115776422;Colombia; +2018-12-05T22:46:46Z;Nathália;933.5451;114878754;Colombia; +2018-12-05T22:42:25Z;Júlio Cesar;1172.233;114234689;Colombia; +2018-12-05T22:23:33Z;Nathália;3393.447;115594711;Colombia; +2018-12-05T22:06:08Z;Júlio Cesar;3529.42;114593220;Colombia; +2018-12-05T22:04:00Z;nathalia;72.6957;115851657;Colombia; +2018-12-05T21:57:57Z;nathalia;1530.671;116335918;Colombia; +2018-12-05T21:25:28Z;nathalia;1492.649;115841185;Colombia; +2018-12-05T20:56:52Z;Júlio;2890.046;115612615;Colombia; +2018-12-05T20:43:58Z;Júlio Cesar;603.4912;114752335;Colombia; +2018-12-05T20:36:37Z;Armando;4877.966;115803930;Colombia; +2018-12-05T20:24:52Z;Nathália;1983.953;115492905;Colombia; +2018-12-05T20:07:20Z;Nathália;145.4616;114451522;Colombia; +2018-12-05T19:56:39Z;nathalia;6001.424;114729154;Colombia; +2018-12-05T19:52:31Z;nathalia;5110.888;114983617;Colombia; +2018-12-05T19:40:59Z;Armando;7476.326;115120505;Colombia; +2018-12-05T19:17:57Z;Armando;3074.834;116334176;Colombia; +2018-12-05T18:56:43Z;Júlio Cesar;8062.597;114283492;Colombia; +2018-12-05T18:36:28Z;Júlio Cesar;5313.696;116394972;Colombia; +2018-12-05T18:33:46Z;Sandra;417.6529;114867075;Colombia; +2018-12-05T18:19:13Z;Sandra;135.2105;114476479;Colombia; +2018-12-05T18:12:33Z;Sandra;1620.14;114495100;Colombia; +2018-12-05T18:09:05Z;Ana;1055.463;115170078;Colombia; +2018-12-05T18:01:31Z;nathalia;2454.583;115400369;Colombia; +2018-12-05T17:57:46Z;Ana;1217.878;115363198;Colombia; +2018-12-05T17:49:24Z;Nathália;1336.967;115290507;Colombia; +2018-12-05T17:25:23Z;Sandra;3547.994;115523642;Colombia; +2018-12-05T17:12:19Z;Ana;766.9558;114462814;Colombia; +2018-12-05T16:59:39Z;Nathália;888.1748;114299219;Colombia; +2018-12-05T16:42:49Z;Sandra;1241.297;114517606;Colombia; +2018-12-05T16:35:46Z;Júlio;1153.081;116241008;Colombia; +2018-12-05T16:11:58Z;Nathália;345.7515;114983448;Colombia; +2018-12-05T15:34:22Z;Sandra;286.2946;115197577;Colombia; +2018-12-05T15:29:21Z;Eduardo;715.6516;116189316;Colombia; +2018-12-05T15:27:07Z;Armando;10554.32;114814060;Colombia; +2018-12-05T15:26:55Z;nathalia;8812.883;114876886;Colombia; +2018-12-05T15:12:40Z;nathalia;1657.219;114200025;Colombia; +2018-12-05T15:09:34Z;Armando;2517.129;115513494;Colombia; +2018-12-05T15:01:02Z;Nathália;3333.999;114210149;Colombia; +2018-12-05T14:51:22Z;Armando;6.144416;114456620;Colombia; +2018-12-05T14:31:21Z;Sandra;1056.895;115662008;Colombia; +2018-12-05T14:28:29Z;Armando;4508.5;115062429;Colombia; +2018-12-05T14:11:38Z;Sandra;1481.401;115393759;Colombia; +2018-12-05T14:09:26Z;Sandra;3616.073;114359850;Colombia; +2018-12-05T13:28:04Z;Armando;10772.18;116264392;Colombia; +2018-12-05T13:22:12Z;Sandra;1658.981;114244164;Colombia; +2018-12-05T12:42:57Z;Nathália;2768.973;116386319;Colombia; +2018-12-05T12:04:37Z;Júlio;7006.546;115657894;Colombia; +2018-12-05T11:39:31Z;Eduardo;851.6789;116389062;Colombia; +2018-12-05T11:37:39Z;Nathália;1542.43;114992095;Colombia; +2018-12-05T11:32:58Z;Eduardo;1779.206;116022381;Colombia; +2018-12-05T11:29:04Z;Armando;2955.147;114454114;Colombia; +2018-12-05T11:22:41Z;Armando;3127.933;115395029;Colombia; +2018-12-05T10:57:57Z;Ana;4503.278;115189697;Colombia; +2018-12-05T10:57:14Z;Eduardo;1826.217;115622738;Colombia; +2018-12-05T10:29:22Z;Júlio Cesar;4006.381;114539380;Colombia; +2018-12-05T10:03:13Z;Júlio;938.8383;114696529;Colombia; +2018-12-05T09:41:52Z;Ana;5435.514;116193056;Colombia; +2018-12-05T09:20:19Z;Nathália;6007.118;114917267;Colombia; +2018-12-05T08:30:37Z;Sandra;42.40469;114670550;Colombia; +2018-12-05T08:21:27Z;nathalia;297.921;116107521;Colombia; +2018-12-05T08:19:43Z;Eduardo;3903.344;116047225;Colombia; +2018-12-05T07:24:40Z;Júlio Cesar;9938.514;114934169;Colombia; +2018-12-05T07:20:17Z;Ana;643.0315;115438481;Colombia; +2018-12-05T07:04:19Z;nathalia;967.8232;115464987;Colombia; +2018-12-05T06:37:58Z;Júlio Cesar;11.63983;115901848;Colombia; +2018-12-05T06:21:41Z;Nathália;290.4098;115844293;Colombia; +2018-12-05T06:21:01Z;nathalia;10557.37;114297304;Colombia; +2018-12-05T06:16:39Z;Nathália;6452.358;115132463;Colombia; +2018-12-05T06:05:42Z;Júlio Cesar;171.6003;115193692;Colombia; +2018-12-05T05:57:19Z;Júlio;8295.743;115702840;Colombia; +2018-12-05T05:54:15Z;nathalia;1325.179;114698976;Colombia; +2018-12-05T05:48:41Z;Nathália;474.7355;116006377;Colombia; +2018-12-05T05:30:27Z;nathalia;4981.093;115729669;Colombia; +2018-12-05T05:19:03Z;Nathália;13956.24;116274264;Colombia; +2018-12-05T04:12:49Z;Armando;108.7387;114959624;Colombia; +2018-12-05T03:51:26Z;Júlio;7081.167;115608338;Colombia; +2018-12-05T03:49:20Z;Nathália;2367.338;114233514;Colombia; +2018-12-05T03:37:56Z;Eduardo;1852.44;115971994;Colombia; +2018-12-05T03:29:51Z;Eduardo;4763.674;116088458;Colombia; +2018-12-05T03:29:07Z;Armando;2033.092;114683012;Colombia; +2018-12-05T03:12:35Z;Sandra;267.6736;115343496;Colombia; +2018-12-05T03:12:22Z;Armando;740.682;115134095;Colombia; +2018-12-05T02:41:55Z;Júlio Cesar;7404.849;115585567;Colombia; +2018-12-05T02:37:54Z;Sandra;6802.429;114277016;Colombia; +2018-12-05T02:12:19Z;Sandra;2458.737;114217164;Colombia; +2018-12-05T02:03:37Z;Sandra;3190.89;116083565;Colombia; +2018-12-05T01:48:59Z;Eduardo;707.3938;115902163;Colombia; +2018-12-05T01:45:11Z;Júlio;903.863;115118447;Colombia; +2018-12-05T01:34:31Z;Eduardo;11258.59;116242511;Colombia; +2018-12-05T01:32:05Z;Sandra;992.827;115388947;Colombia; +2018-12-05T01:31:06Z;Sandra;9810.116;116292600;Colombia; +2018-12-05T01:30:55Z;nathalia;87.11205;115815126;Colombia; +2018-12-05T00:52:30Z;Júlio;2332.884;115628450;Colombia; +2018-12-04T23:51:56Z;Ana;6312.647;114687850;Colombia; +2018-12-04T23:44:22Z;Sandra;7388.355;115361272;Colombia; +2018-12-04T23:41:51Z;nathalia;1848.701;115640651;Colombia; +2018-12-04T23:38:59Z;Nathália;405.6002;114839317;Colombia; +2018-12-04T23:36:42Z;Júlio Cesar;585.8538;114483974;Colombia; +2018-12-04T23:24:38Z;Eduardo;5264.135;115549281;Colombia; +2018-12-04T22:43:56Z;Ana;1843.348;115435124;Colombia; +2018-12-04T21:09:39Z;Júlio Cesar;9765.968;114882858;Colombia; +2018-12-04T21:06:45Z;Nathália;1094.645;115288089;Colombia; +2018-12-04T20:51:07Z;Ana;448.8608;114631878;Colombia; +2018-12-04T20:22:38Z;Sandra;5879.388;116071556;Colombia; +2018-12-04T20:09:32Z;Júlio;2271.257;115327890;Colombia; +2018-12-04T19:34:12Z;Eduardo;1519.755;114527680;Colombia; +2018-12-04T19:33:39Z;Eduardo;5224.163;114877518;Colombia; +2018-12-04T19:25:58Z;Sandra;2902.053;115103032;Colombia; +2018-12-04T19:16:31Z;Júlio Cesar;295.1722;114540854;Colombia; +2018-12-04T19:09:44Z;Ana;4471.535;116235029;Colombia; +2018-12-04T19:07:17Z;Sandra;951.6965;115706412;Colombia; +2018-12-04T18:56:13Z;nathalia;561.6748;115091218;Colombia; +2018-12-04T18:49:26Z;Ana;1932.048;116160832;Colombia; +2018-12-04T18:26:41Z;Ana;224.6032;114487801;Colombia; +2018-12-04T18:14:45Z;Armando;3708.051;115234185;Colombia; +2018-12-04T17:40:19Z;Eduardo;1809.104;114846716;Colombia; +2018-12-04T17:25:02Z;Armando;5419.401;116034710;Colombia; +2018-12-04T17:16:31Z;Eduardo;1439.263;116006076;Colombia; +2018-12-04T17:02:26Z;nathalia;1714.173;115380504;Colombia; +2018-12-04T16:45:51Z;Armando;7229.156;116261391;Colombia; +2018-12-04T16:33:02Z;Ana;6754.906;115192060;Colombia; +2018-12-04T16:08:49Z;Armando;1251.754;115689120;Colombia; +2018-12-04T15:03:40Z;Júlio;471.7474;116280601;Colombia; +2018-12-04T14:14:26Z;Nathália;13133.08;116317973;Colombia; +2018-12-04T13:56:32Z;Armando;6864.954;114778303;Colombia; +2018-12-04T13:53:59Z;Júlio Cesar;4193.615;115085283;Colombia; +2018-12-04T13:47:41Z;nathalia;452.6504;116288397;Colombia; +2018-12-04T13:35:36Z;Armando;444.9529;116121146;Colombia; +2018-12-04T13:09:49Z;Eduardo;13.60266;114848153;Colombia; +2018-12-04T12:54:26Z;Júlio Cesar;125.541;115556354;Colombia; +2018-12-04T12:39:01Z;Júlio;3183.596;114276702;Colombia; +2018-12-04T12:39:00Z;Armando;11025.24;115511161;Colombia; +2018-12-04T12:35:02Z;Sandra;5983.859;114456452;Colombia; +2018-12-04T12:25:49Z;Armando;1891.105;115618863;Colombia; +2018-12-04T12:21:41Z;Sandra;456.8404;114526042;Colombia; +2018-12-04T12:21:38Z;Eduardo;823.8576;116093937;Colombia; +2018-12-04T12:12:13Z;Júlio Cesar;1503.408;114778206;Colombia; +2018-12-04T12:06:08Z;nathalia;1060.119;116279926;Colombia; +2018-12-04T12:04:58Z;Eduardo;1363.948;115532351;Colombia; +2018-12-04T12:03:22Z;Ana;1395.814;114789601;Colombia; +2018-12-04T11:14:17Z;Júlio;5339.843;116263532;Colombia; +2018-12-04T11:03:15Z;Eduardo;248.7126;115717973;Colombia; +2018-12-04T11:03:12Z;nathalia;2572.997;115848398;Colombia; +2018-12-04T10:41:47Z;Ana;2043.036;115071557;Colombia; +2018-12-04T10:03:42Z;Armando;4201.983;115878126;Colombia; +2018-12-04T09:50:18Z;Nathália;7855.888;116095727;Colombia; +2018-12-04T09:20:52Z;Armando;1003.186;114780700;Colombia; +2018-12-04T09:18:46Z;Eduardo;4455.148;115822829;Colombia; +2018-12-04T09:18:23Z;Sandra;1293.292;114374485;Colombia; +2018-12-04T08:51:48Z;Sandra;179.6342;114327246;Colombia; +2018-12-04T08:36:57Z;Eduardo;7274.341;116007927;Colombia; +2018-12-04T08:24:17Z;Eduardo;2089.612;115705606;Colombia; +2018-12-04T07:28:49Z;Júlio;6181.772;116057935;Colombia; +2018-12-04T07:26:02Z;Eduardo;5126.067;115553960;Colombia; +2018-12-04T07:21:07Z;Armando;40.5392;115387714;Colombia; +2018-12-04T07:02:57Z;Eduardo;443.1848;114788017;Colombia; +2018-12-04T07:02:24Z;Júlio;1147.535;115994535;Colombia; +2018-12-04T07:02:19Z;Armando;9901.588;115702927;Colombia; +2018-12-04T07:00:40Z;Júlio;142.6017;115230600;Colombia; +2018-12-04T06:48:10Z;Júlio Cesar;1152.286;115797172;Colombia; +2018-12-04T06:14:32Z;Júlio Cesar;6638.84;114458150;Colombia; +2018-12-04T05:54:55Z;Armando;438.2616;114761415;Colombia; +2018-12-04T05:43:12Z;nathalia;33.07619;116361888;Colombia; +2018-12-04T05:36:24Z;Ana;8987.063;115738081;Colombia; +2018-12-04T05:34:21Z;Sandra;4766.366;116258118;Colombia; +2018-12-04T05:13:05Z;Júlio Cesar;623.656;115538962;Colombia; +2018-12-04T05:02:29Z;Sandra;7862.851;115469408;Colombia; +2018-12-04T04:58:48Z;Eduardo;391.7075;115556383;Colombia; +2018-12-04T04:28:54Z;nathalia;2806.727;114518840;Colombia; +2018-12-04T03:36:53Z;Nathália;181.1053;116156537;Colombia; +2018-12-04T03:29:23Z;Ana;2834.939;116019487;Colombia; +2018-12-04T03:21:04Z;Nathália;7632.245;114910779;Colombia; +2018-12-04T03:02:30Z;Armando;1182.568;115076157;Colombia; +2018-12-04T02:47:17Z;nathalia;208.2191;115754128;Colombia; +2018-12-04T02:16:08Z;Armando;1127.937;115127422;Colombia; +2018-12-04T02:09:40Z;Sandra;37.30656;115652951;Colombia; +2018-12-04T02:00:54Z;Júlio Cesar;999.3613;115970626;Colombia; +2018-12-04T01:28:41Z;Eduardo;2916.406;114323042;Colombia; +2018-12-04T01:17:37Z;Armando;298.1681;114821543;Colombia; +2018-12-04T01:17:00Z;Nathália;3860.285;115710111;Colombia; +2018-12-04T01:07:31Z;Júlio Cesar;3143.124;114270286;Colombia; +2018-12-04T00:32:43Z;nathalia;8898.145;114499973;Colombia; +2018-12-04T00:26:03Z;Armando;1751.417;115969234;Colombia; +2018-12-04T00:12:26Z;nathalia;1756.615;115015850;Colombia; +2018-12-04T00:07:22Z;Nathália;9326.83;115998377;Colombia; +2018-12-03T23:59:07Z;Sandra;1914.564;115539153;Colombia; +2018-12-03T23:45:01Z;Sandra;5133.147;115391725;Colombia; +2018-12-03T23:22:37Z;nathalia;4783.675;115682712;Colombia; +2018-12-03T23:11:54Z;Júlio;4944.98;115012425;Colombia; +2018-12-03T22:53:36Z;Sandra;152.7087;114477545;Colombia; +2018-12-03T22:37:46Z;Júlio;692.1936;115523087;Colombia; +2018-12-03T22:31:50Z;Nathália;4897.928;116246967;Colombia; +2018-12-03T22:26:10Z;Júlio Cesar;450.0549;115505567;Colombia; +2018-12-03T22:16:45Z;Eduardo;4179.729;115470178;Colombia; +2018-12-03T21:47:20Z;Nathália;73.37863;114518677;Colombia; +2018-12-03T20:35:24Z;Júlio Cesar;1073.547;115807745;Colombia; +2018-12-03T20:14:48Z;nathalia;1355.757;114879982;Colombia; +2018-12-03T19:56:31Z;Júlio Cesar;86.44113;115548303;Colombia; +2018-12-03T19:26:41Z;Eduardo;713.1629;114259716;Colombia; +2018-12-03T19:17:18Z;Júlio Cesar;2568.903;116322344;Colombia; +2018-12-03T19:13:23Z;Nathália;940.5996;115393424;Colombia; +2018-12-03T19:03:29Z;nathalia;824.3378;116339141;Colombia; +2018-12-03T18:18:06Z;Nathália;647.9645;115532290;Colombia; +2018-12-03T17:59:57Z;Júlio;8215.2;115866514;Colombia; +2018-12-03T17:42:51Z;Eduardo;5818.004;114463470;Colombia; +2018-12-03T17:36:50Z;nathalia;5.34816;114645072;Colombia; +2018-12-03T17:23:02Z;Júlio Cesar;509.6135;114571481;Colombia; +2018-12-03T17:20:59Z;Sandra;192.0825;116063133;Colombia; +2018-12-03T16:52:55Z;Júlio Cesar;3760.094;114666298;Colombia; +2018-12-03T15:49:28Z;Eduardo;2998.279;115511277;Colombia; +2018-12-03T15:48:57Z;Ana;261.923;115998676;Colombia; +2018-12-03T15:22:29Z;Sandra;4000.425;115193129;Colombia; +2018-12-03T15:10:20Z;Ana;852.9988;115992369;Colombia; +2018-12-03T14:59:58Z;Ana;3713.609;116295979;Colombia; +2018-12-03T14:45:14Z;Sandra;0.8746537;114953149;Colombia; +2018-12-03T14:40:02Z;Eduardo;8089.291;114830486;Colombia; +2018-12-03T13:57:16Z;nathalia;4276.886;114706341;Colombia; +2018-12-03T13:46:25Z;nathalia;426.0702;116298952;Colombia; +2018-12-03T13:02:43Z;nathalia;44.85968;114431530;Colombia; +2018-12-03T13:01:44Z;Armando;2882.147;115439362;Colombia; +2018-12-03T12:58:44Z;Eduardo;403.2663;116226391;Colombia; +2018-12-03T12:45:26Z;Eduardo;506.624;116213480;Colombia; +2018-12-03T12:42:12Z;Júlio;684.6861;115460127;Colombia; +2018-12-03T12:33:27Z;Nathália;3540.922;115048490;Colombia; +2018-12-03T12:28:11Z;Júlio;733.4138;114979005;Colombia; +2018-12-03T12:03:57Z;Júlio;643.2357;114732244;Colombia; +2018-12-03T11:30:53Z;Júlio;727.5952;114987456;Colombia; +2018-12-03T11:07:58Z;Sandra;4241.834;114466180;Colombia; +2018-12-03T10:49:46Z;nathalia;916.1154;114301543;Colombia; +2018-12-03T10:38:34Z;nathalia;7504.546;115579496;Colombia; +2018-12-03T10:34:13Z;Júlio Cesar;720.6441;114760588;Colombia; +2018-12-03T10:30:34Z;Armando;11540.92;114952115;Colombia; +2018-12-03T09:42:58Z;nathalia;4148.986;114574071;Colombia; +2018-12-03T09:18:05Z;Eduardo;478.7289;115775873;Colombia; +2018-12-03T09:02:44Z;Armando;3551.943;116158194;Colombia; +2018-12-03T08:56:44Z;Eduardo;6110.492;116167284;Colombia; +2018-12-03T08:55:46Z;nathalia;4394.581;116000364;Colombia; +2018-12-03T08:44:32Z;Júlio Cesar;1337.048;115479495;Colombia; +2018-12-03T08:26:50Z;Sandra;10543.54;114763979;Colombia; +2018-12-03T08:23:31Z;Eduardo;7353.148;115758743;Colombia; +2018-12-03T08:01:11Z;Nathália;259.9096;115905694;Colombia; +2018-12-03T07:57:17Z;Armando;1678.628;116283890;Colombia; +2018-12-03T07:57:14Z;Sandra;138.4677;115117501;Colombia; +2018-12-03T07:49:55Z;Eduardo;2201.145;114797361;Colombia; +2018-12-03T07:01:46Z;nathalia;11662.35;115049405;Colombia; +2018-12-03T06:51:04Z;Júlio;4063.087;116196423;Colombia; +2018-12-03T06:17:43Z;Ana;360.1651;115749219;Colombia; +2018-12-03T05:47:26Z;Nathália;10899.84;116168037;Colombia; +2018-12-03T05:35:42Z;Eduardo;1147.715;115022228;Colombia; +2018-12-03T05:34:59Z;Ana;479.8077;115179434;Colombia; +2018-12-03T05:27:51Z;Júlio Cesar;8.512549;115562156;Colombia; +2018-12-03T05:21:41Z;Sandra;416.5673;115008488;Colombia; +2018-12-03T04:48:52Z;Nathália;2488.457;114929666;Colombia; +2018-12-03T04:41:18Z;Júlio Cesar;1837.476;114733475;Colombia; +2018-12-03T04:31:45Z;Eduardo;1063.22;115694805;Colombia; +2018-12-03T04:30:14Z;Júlio Cesar;287.9909;114272277;Colombia; +2018-12-03T04:29:33Z;Nathália;5737.447;115688950;Colombia; +2018-12-03T04:27:28Z;Ana;7354.097;115190086;Colombia; +2018-12-03T03:16:06Z;Ana;588.7466;115646744;Colombia; +2018-12-03T03:15:56Z;nathalia;143.7585;115919197;Colombia; +2018-12-03T02:55:49Z;Júlio;711.5165;115867850;Colombia; +2018-12-03T02:47:45Z;Júlio Cesar;751.4166;115091943;Colombia; +2018-12-03T02:29:14Z;Eduardo;1860.783;114626488;Colombia; +2018-12-03T02:21:59Z;nathalia;2746.029;115976993;Colombia; +2018-12-03T02:17:04Z;Eduardo;2863.385;115770732;Colombia; +2018-12-03T02:13:37Z;Sandra;210.7472;114833155;Colombia; +2018-12-03T01:51:48Z;Eduardo;2015.826;115600906;Colombia; +2018-12-03T01:18:25Z;nathalia;10837.09;115807852;Colombia; +2018-12-03T01:01:11Z;Armando;449.9387;114899552;Colombia; +2018-12-03T00:46:17Z;Ana;2060.88;116067624;Colombia; +2018-12-03T00:33:40Z;Eduardo;5424.131;115825530;Colombia; +2018-12-03T00:24:45Z;nathalia;753.0523;115563624;Colombia; +2018-12-03T00:18:57Z;nathalia;2350.314;114415977;Colombia; +2018-12-02T23:14:44Z;Júlio Cesar;631.863;114549248;Colombia; +2018-12-02T22:59:55Z;Ana;1506.253;115675201;Colombia; +2018-12-02T22:44:25Z;Eduardo;4219.735;114759918;Colombia; +2018-12-02T22:24:23Z;Sandra;1964.636;115550087;Colombia; +2018-12-02T22:22:07Z;Nathália;5055.364;115767608;Colombia; +2018-12-02T22:08:51Z;Júlio Cesar;8048.255;115711715;Colombia; +2018-12-02T21:46:39Z;Júlio Cesar;694.6389;114698171;Colombia; +2018-12-02T21:19:30Z;Júlio Cesar;9618.458;116014966;Colombia; +2018-12-02T21:02:40Z;Nathália;389.933;115056239;Colombia; +2018-12-02T20:56:21Z;Ana;2962.52;115020003;Colombia; +2018-12-02T20:48:52Z;Sandra;155.7232;115323065;Colombia; +2018-12-02T20:35:25Z;Ana;3427.598;115091255;Colombia; +2018-12-02T20:08:21Z;Armando;446.6944;115228012;Colombia; +2018-12-02T19:15:25Z;Ana;7836.039;116279746;Colombia; +2018-12-02T18:30:09Z;Armando;1414.177;115911477;Colombia; +2018-12-02T18:17:04Z;Júlio;5864.798;115681746;Colombia; +2018-12-02T18:15:42Z;Armando;1343.403;115617774;Colombia; +2018-12-02T17:53:38Z;Sandra;259.0799;115518806;Colombia; +2018-12-02T17:01:56Z;Ana;1340.889;116370418;Colombia; +2018-12-02T16:51:01Z;Nathália;514.9653;114773629;Colombia; +2018-12-02T16:34:52Z;Júlio;3599.533;114705792;Colombia; +2018-12-02T16:23:31Z;Eduardo;3144.66;114451668;Colombia; +2018-12-02T16:07:44Z;nathalia;103.4637;116236850;Colombia; +2018-12-02T15:47:37Z;Sandra;2126.951;115223930;Colombia; +2018-12-02T15:37:43Z;Júlio;4280.023;115510547;Colombia; +2018-12-02T15:28:34Z;nathalia;6271.748;116370131;Colombia; +2018-12-02T15:23:02Z;Armando;6372.125;114683545;Colombia; +2018-12-02T14:38:40Z;Júlio Cesar;7542.591;116289266;Colombia; +2018-12-02T14:34:20Z;Nathália;1060.95;114978944;Colombia; +2018-12-02T14:30:18Z;Júlio Cesar;2382.397;114891095;Colombia; +2018-12-02T14:15:22Z;Júlio;4713.43;115083076;Colombia; +2018-12-02T14:13:51Z;Armando;2726.325;115445246;Colombia; +2018-12-02T14:04:54Z;nathalia;8764.707;115531113;Colombia; +2018-12-02T13:30:33Z;Eduardo;2442.603;114879265;Colombia; +2018-12-02T13:16:51Z;Armando;288.7171;115767421;Colombia; +2018-12-02T13:02:47Z;Nathália;10535.8;115733081;Colombia; +2018-12-02T12:24:41Z;Ana;8430.813;114285503;Colombia; +2018-12-02T12:02:11Z;Eduardo;509.475;114672065;Colombia; +2018-12-02T11:50:02Z;Ana;11552.22;116063229;Colombia; +2018-12-02T11:42:43Z;Armando;3843.941;116281790;Colombia; +2018-12-02T11:35:09Z;Eduardo;3132.776;116080929;Colombia; +2018-12-02T11:21:52Z;nathalia;1500.139;114223816;Colombia; +2018-12-02T11:07:21Z;Sandra;4299.738;114873365;Colombia; +2018-12-02T10:54:26Z;Júlio;501.1319;116054455;Colombia; +2018-12-02T10:49:01Z;Sandra;338.664;114254851;Colombia; +2018-12-02T10:44:57Z;nathalia;339.3922;116128667;Colombia; +2018-12-02T10:32:16Z;Armando;3527.724;115607854;Colombia; +2018-12-02T10:24:55Z;Júlio Cesar;785.434;114747197;Colombia; +2018-12-02T10:16:46Z;Eduardo;947.1626;116178842;Colombia; +2018-12-02T09:55:45Z;Júlio;5161.43;115272866;Colombia; +2018-12-02T09:00:45Z;Sandra;627.6138;115686654;Colombia; +2018-12-02T08:56:51Z;Armando;5047.675;114341230;Colombia; +2018-12-02T08:47:45Z;Júlio Cesar;2419.109;115306564;Colombia; +2018-12-02T08:36:25Z;Eduardo;3.907456;115604500;Colombia; +2018-12-02T08:27:51Z;Júlio Cesar;1955.466;115191357;Colombia; +2018-12-02T08:15:58Z;Sandra;1749.126;114371720;Colombia; +2018-12-02T07:11:13Z;Armando;3458.172;115383388;Colombia; +2018-12-02T06:47:16Z;nathalia;1322.392;114753928;Colombia; +2018-12-02T06:44:41Z;nathalia;2625.35;115039638;Colombia; +2018-12-02T06:43:29Z;Nathália;2760.997;115367981;Colombia; +2018-12-02T06:25:28Z;Armando;1533.002;114467948;Colombia; +2018-12-02T05:51:27Z;Nathália;3894.054;116265171;Colombia; +2018-12-02T05:31:37Z;Júlio Cesar;1376.07;116327753;Colombia; +2018-12-02T05:30:57Z;Nathália;2644.05;114448764;Colombia; +2018-12-02T05:02:47Z;Júlio Cesar;46.98931;116337692;Colombia; +2018-12-02T04:57:21Z;Júlio Cesar;1368.402;114380200;Colombia; +2018-12-02T04:45:21Z;Júlio;7773.911;114414143;Colombia; +2018-12-02T04:41:16Z;Júlio Cesar;9602.25;114886237;Colombia; +2018-12-02T04:33:54Z;Júlio Cesar;2342.321;114440758;Colombia; +2018-12-02T04:25:08Z;Nathália;685.2515;114680237;Colombia; +2018-12-02T04:08:02Z;Júlio;6209.286;114719653;Colombia; +2018-12-02T04:02:50Z;Eduardo;53.87137;114243341;Colombia; +2018-12-02T04:00:02Z;Ana;2286.779;114786590;Colombia; +2018-12-02T03:45:21Z;nathalia;6602.411;114989256;Colombia; +2018-12-02T03:44:13Z;Eduardo;496.7825;116131615;Colombia; +2018-12-02T03:28:09Z;Armando;2793.289;115309715;Colombia; +2018-12-02T02:57:23Z;nathalia;11387.22;114492149;Colombia; +2018-12-02T02:16:02Z;Armando;2399.252;115644666;Colombia; +2018-12-02T02:01:32Z;Sandra;9693.395;114450009;Colombia; +2018-12-02T01:57:47Z;Armando;1318.133;115746251;Colombia; +2018-12-02T01:55:56Z;Júlio;3137.841;114807422;Colombia; +2018-12-02T01:54:48Z;Armando;2829.743;114390467;Colombia; +2018-12-02T01:53:46Z;nathalia;9227.423;115132585;Colombia; +2018-12-02T01:36:48Z;Sandra;898.0975;114946068;Colombia; +2018-12-02T01:31:17Z;Eduardo;823.0326;114755959;Colombia; +2018-12-02T01:22:24Z;Armando;2096.944;115077180;Colombia; +2018-12-02T01:19:34Z;nathalia;1566.627;116323667;Colombia; +2018-12-02T00:59:18Z;nathalia;49.37912;116077761;Colombia; +2018-12-02T00:49:54Z;Nathália;2533.279;115963677;Colombia; +2018-12-02T00:30:31Z;Eduardo;831.7154;114322786;Colombia; +2018-12-02T00:17:10Z;Sandra;2957.148;115338118;Colombia; +2018-12-01T23:58:31Z;Sandra;8376.758;115648204;Colombia; +2018-12-01T23:57:02Z;Nathália;2226.412;115001749;Colombia; +2018-12-01T23:32:46Z;Júlio;849.963;116212991;Colombia; +2018-12-01T23:18:22Z;Nathália;4338.981;114748231;Colombia; +2018-12-01T22:40:37Z;Júlio;2396.515;115375842;Colombia; +2018-12-01T22:21:36Z;Júlio Cesar;5507.777;116027024;Colombia; +2018-12-01T21:40:39Z;Nathália;4272.548;115281845;Colombia; +2018-12-01T21:34:42Z;Ana;7392.735;115054343;Colombia; +2018-12-01T21:21:00Z;nathalia;6872.071;116365303;Colombia; +2018-12-01T21:13:08Z;Júlio Cesar;113.779;114249236;Colombia; +2018-12-01T21:02:15Z;nathalia;28.57263;114518884;Colombia; +2018-12-01T20:59:33Z;Júlio;4492.244;115437364;Colombia; +2018-12-01T20:57:45Z;nathalia;1050.743;116104821;Colombia; +2018-12-01T20:55:35Z;Júlio;293.6953;115995447;Colombia; +2018-12-01T20:47:35Z;Júlio Cesar;158.4772;114646380;Colombia; +2018-12-01T20:42:06Z;Sandra;2602.772;115486623;Colombia; +2018-12-01T20:27:14Z;Armando;524.2213;114302719;Colombia; +2018-12-01T19:59:19Z;Armando;2702.89;114280785;Colombia; +2018-12-01T19:44:35Z;Armando;805.2046;116281668;Colombia; +2018-12-01T19:43:21Z;Armando;1776.857;116244781;Colombia; +2018-12-01T19:37:04Z;Júlio Cesar;990.5703;116201312;Colombia; +2018-12-01T19:23:56Z;Ana;4447.533;114864801;Colombia; +2018-12-01T18:58:38Z;Sandra;443.4071;115063291;Colombia; +2018-12-01T18:17:31Z;Júlio Cesar;4999.799;114423594;Colombia; +2018-12-01T18:03:12Z;Júlio;2510.605;115177577;Colombia; +2018-12-01T17:53:06Z;Júlio Cesar;9313.869;115941388;Colombia; +2018-12-01T17:32:28Z;Ana;1037.192;114247786;Colombia; +2018-12-01T16:52:02Z;nathalia;14417.42;115041604;Colombia; +2018-12-01T16:44:23Z;Ana;754.4697;114711985;Colombia; +2018-12-01T16:15:51Z;Júlio Cesar;9079.898;115488876;Colombia; +2018-12-01T16:01:48Z;nathalia;7854.91;115424489;Colombia; +2018-12-01T15:35:48Z;Júlio;579.076;114908608;Colombia; +2018-12-01T15:10:18Z;Sandra;9422.95;116185451;Colombia; +2018-12-01T14:26:10Z;Júlio Cesar;3398.224;115401010;Colombia; +2018-12-01T14:16:08Z;Sandra;8288.952;115780584;Colombia; +2018-12-01T14:10:10Z;Ana;4701.073;114963082;Colombia; +2018-12-01T13:13:04Z;Sandra;2505.092;115502846;Colombia; +2018-12-01T12:51:23Z;Sandra;624.5817;114473991;Colombia; +2018-12-01T12:34:25Z;Júlio Cesar;5644.798;116157031;Colombia; +2018-12-01T12:21:18Z;Júlio;41.89189;115409941;Colombia; +2018-12-01T11:56:08Z;Eduardo;1705.3;115546959;Colombia; +2018-12-01T11:31:19Z;nathalia;2569.639;115458194;Colombia; +2018-12-01T11:23:52Z;Júlio Cesar;313.1059;114803023;Colombia; +2018-12-01T11:21:01Z;Ana;1830.842;115075645;Colombia; +2018-12-01T10:41:14Z;Nathália;440.6855;116025744;Colombia; +2018-12-01T10:16:22Z;nathalia;747.0106;116161252;Colombia; +2018-12-01T10:13:04Z;Júlio Cesar;1410.707;114654177;Colombia; +2018-12-01T09:57:47Z;Eduardo;11752.67;115538809;Colombia; +2018-12-01T09:52:54Z;nathalia;3690.59;115372797;Colombia; +2018-12-01T09:48:51Z;Ana;3457.751;115098451;Colombia; +2018-12-01T09:47:32Z;Júlio Cesar;8955.162;114527480;Colombia; +2018-12-01T09:22:20Z;Júlio;886.553;115590383;Colombia; +2018-12-01T09:13:00Z;Júlio Cesar;3296.753;115693045;Colombia; +2018-12-01T09:08:38Z;Ana;31.68253;115830725;Colombia; +2018-12-01T08:56:12Z;Ana;4335.527;115076433;Colombia; +2018-12-01T08:53:59Z;Ana;2153.882;115669443;Colombia; +2018-12-01T08:15:06Z;Sandra;471.0402;115225366;Colombia; +2018-12-01T07:48:27Z;Júlio Cesar;908.7495;115000592;Colombia; +2018-12-01T07:21:14Z;Júlio;2147.155;114595413;Colombia; +2018-12-01T07:20:23Z;Júlio Cesar;4052.615;115523617;Colombia; +2018-12-01T07:11:36Z;Nathália;4713.664;116393982;Colombia; +2018-12-01T07:03:54Z;Júlio Cesar;2339.542;116299043;Colombia; +2018-12-01T06:56:58Z;Nathália;1945.554;114929333;Colombia; +2018-12-01T06:41:08Z;Júlio;5533.725;115112014;Colombia; +2018-12-01T06:33:47Z;nathalia;290.3275;114753618;Colombia; +2018-12-01T06:14:33Z;Júlio;6159.488;115553400;Colombia; +2018-12-01T05:48:51Z;Sandra;5615.611;115112202;Colombia; +2018-12-01T05:44:34Z;Ana;2216.606;115876473;Colombia; +2018-12-01T05:35:46Z;nathalia;2600.186;116269717;Colombia; +2018-12-01T05:17:57Z;Nathália;3256.773;115464852;Colombia; +2018-12-01T05:15:44Z;Júlio;2338.573;115166017;Colombia; +2018-12-01T04:54:25Z;Sandra;3833.976;115810433;Colombia; +2018-12-01T04:53:12Z;Júlio;607.4401;114330635;Colombia; +2018-12-01T03:57:45Z;Sandra;563.3674;116347037;Colombia; +2018-12-01T03:47:31Z;Ana;2879.669;115202116;Colombia; +2018-12-01T03:43:50Z;Ana;9368.432;115606148;Colombia; +2018-12-01T03:43:38Z;Ana;2247.706;116022316;Colombia; +2018-12-01T03:22:00Z;Ana;2877.574;114618870;Colombia; +2018-12-01T03:13:26Z;Armando;6021.852;114823805;Colombia; +2018-12-01T02:59:30Z;Nathália;8076.596;114257172;Colombia; +2018-12-01T02:56:46Z;nathalia;1627.925;115114993;Colombia; +2018-12-01T02:54:00Z;Júlio;502.7024;115347927;Colombia; +2018-12-01T02:45:33Z;Sandra;1663.569;116073364;Colombia; +2018-12-01T02:24:00Z;Nathália;5074.343;115170022;Colombia; +2018-12-01T02:19:57Z;Eduardo;6470.276;115027233;Colombia; +2018-12-01T02:19:54Z;Sandra;3684.781;114790712;Colombia; +2018-12-01T01:44:48Z;Armando;2999.014;114573270;Colombia; +2018-12-01T01:38:04Z;Júlio Cesar;2802.917;114601659;Colombia; +2018-12-01T01:31:05Z;Armando;4213.598;114355367;Colombia; +2018-12-01T01:29:42Z;nathalia;24.62318;115566111;Colombia; +2018-12-01T01:04:31Z;Armando;116.9062;115999788;Colombia; +2018-12-01T00:34:42Z;Armando;6990.7;116334349;Colombia; +2018-12-01T00:30:11Z;Ana;106.6841;116229237;Colombia; +2018-12-01T00:17:16Z;Eduardo;553.8004;115364779;Colombia; +2018-12-01T00:09:55Z;nathalia;1804.221;115763229;Colombia; +2018-11-30T23:46:14Z;nathalia;2865.206;115442323;Colombia; +2018-11-30T23:37:40Z;nathalia;1875.025;116371169;Colombia; +2018-11-30T23:30:45Z;Ana;1548.714;114520565;Colombia; +2018-11-30T23:13:14Z;Nathália;631.4383;114625504;Colombia; +2018-11-30T23:05:27Z;Júlio;0.7078436;114436170;Colombia; +2018-11-30T23:01:06Z;Eduardo;4602.35;115898577;Colombia; +2018-11-30T22:52:35Z;Júlio;5449.21;115101845;Colombia; +2018-11-30T22:28:10Z;Nathália;3043.481;115886097;Colombia; +2018-11-30T22:23:48Z;Armando;5085.562;115843006;Colombia; +2018-11-30T22:19:53Z;nathalia;7153.114;115771698;Colombia; +2018-11-30T22:13:04Z;Eduardo;986.6385;116240282;Colombia; +2018-11-30T22:03:52Z;nathalia;9177.38;114714108;Colombia; +2018-11-30T21:48:06Z;Nathália;2045.503;115394987;Colombia; +2018-11-30T21:45:13Z;Júlio Cesar;6057.763;114656540;Colombia; +2018-11-30T21:39:40Z;Armando;1116.565;115612408;Colombia; +2018-11-30T21:27:14Z;Júlio Cesar;2133.888;116012433;Colombia; +2018-11-30T21:19:37Z;Júlio;5555.338;114694861;Colombia; +2018-11-30T21:11:42Z;Júlio Cesar;3235.012;115630098;Colombia; +2018-11-30T21:11:19Z;Júlio Cesar;681.9401;115143013;Colombia; +2018-11-30T21:05:11Z;Júlio;2772.987;115809663;Colombia; +2018-11-30T20:22:49Z;Sandra;7072.302;115146905;Colombia; +2018-11-30T20:19:39Z;Eduardo;1025.11;115927648;Colombia; +2018-11-30T20:18:41Z;Júlio Cesar;5658.8;115461613;Colombia; +2018-11-30T20:15:46Z;Sandra;3930.393;116063682;Colombia; +2018-11-30T20:13:09Z;Júlio Cesar;972.6416;114504603;Colombia; +2018-11-30T20:04:59Z;Júlio Cesar;1730.284;114287251;Colombia; +2018-11-30T19:49:33Z;Júlio;5881.708;115810406;Colombia; +2018-11-30T19:24:37Z;Armando;490.8612;114997479;Colombia; +2018-11-30T19:12:35Z;Ana;9153.624;114746662;Colombia; +2018-11-30T19:09:23Z;nathalia;3556.586;115231752;Colombia; +2018-11-30T19:00:23Z;Nathália;3215.653;114533798;Colombia; +2018-11-30T18:28:14Z;nathalia;8893.397;114256229;Colombia; +2018-11-30T18:13:46Z;Armando;4115.363;116326984;Colombia; +2018-11-30T18:08:21Z;nathalia;997.7785;114864280;Colombia; +2018-11-30T17:16:11Z;Nathália;2640.668;114897369;Colombia; +2018-11-30T16:46:49Z;Eduardo;699.4832;115905064;Colombia; +2018-11-30T16:43:59Z;Nathália;1574.219;114672866;Colombia; +2018-11-30T16:35:29Z;Eduardo;6421.611;114385900;Colombia; +2018-11-30T16:29:21Z;Eduardo;8618.269;114681686;Colombia; +2018-11-30T15:43:07Z;Ana;4903.882;116201029;Colombia; +2018-11-30T15:20:54Z;Júlio;768.8341;115333624;Colombia; +2018-11-30T15:09:57Z;Júlio Cesar;727.0739;114746132;Colombia; +2018-11-30T14:33:26Z;Armando;3902.754;114830477;Colombia; +2018-11-30T14:26:49Z;nathalia;2028.152;115956148;Colombia; +2018-11-30T14:21:10Z;Júlio Cesar;1164.151;114330192;Colombia; +2018-11-30T14:18:31Z;Nathália;6046.273;115629830;Colombia; +2018-11-30T14:04:53Z;nathalia;5715.289;115450612;Colombia; +2018-11-30T13:23:58Z;Armando;87.19411;116082947;Colombia; +2018-11-30T13:01:59Z;Júlio Cesar;255.3579;114510605;Colombia; +2018-11-30T12:52:34Z;Nathália;7236.013;115882875;Colombia; +2018-11-30T12:48:15Z;Nathália;386.1985;115480773;Colombia; +2018-11-30T12:36:42Z;Armando;2696.79;115692611;Colombia; +2018-11-30T12:26:54Z;nathalia;34.99069;115424087;Colombia; +2018-11-30T12:24:41Z;Júlio;2223.014;115188183;Colombia; +2018-11-30T12:19:13Z;Sandra;351.9942;114794989;Colombia; +2018-11-30T11:54:18Z;Ana;6020.48;114601675;Colombia; +2018-11-30T11:33:47Z;nathalia;6336.421;115899470;Colombia; +2018-11-30T11:13:26Z;Júlio Cesar;3579.934;115302458;Colombia; +2018-11-30T10:55:53Z;Júlio;1549.517;116088731;Colombia; +2018-11-30T10:50:51Z;Eduardo;7337.76;114425788;Colombia; +2018-11-30T09:44:08Z;Júlio;2533.301;115472874;Colombia; +2018-11-30T09:40:31Z;Armando;1584.57;116100626;Colombia; +2018-11-30T09:13:37Z;Sandra;1688.156;115956019;Colombia; +2018-11-30T09:05:04Z;Armando;5725.368;115936659;Colombia; +2018-11-30T08:58:26Z;Ana;7528.882;114275788;Colombia; +2018-11-30T08:58:20Z;Júlio Cesar;110.5175;114593222;Colombia; +2018-11-30T08:49:01Z;Ana;1354.366;114838110;Colombia; +2018-11-30T08:33:15Z;Ana;3878.787;115741146;Colombia; +2018-11-30T08:13:54Z;Júlio;1035.377;115943548;Colombia; +2018-11-30T07:48:57Z;Júlio;347.2258;116319165;Colombia; +2018-11-30T07:35:01Z;Júlio;734.3335;114663500;Colombia; +2018-11-30T07:32:27Z;Júlio Cesar;7448.445;114997428;Colombia; +2018-11-30T07:23:48Z;Armando;1451.886;114404909;Colombia; +2018-11-30T07:22:28Z;Ana;260.8488;116354036;Colombia; +2018-11-30T07:13:28Z;nathalia;7580.324;115980576;Colombia; +2018-11-30T07:08:29Z;Nathália;4266.57;115397870;Colombia; +2018-11-30T06:12:30Z;Júlio Cesar;3505.219;115610368;Colombia; +2018-11-30T06:04:08Z;Nathália;523.2045;115574379;Colombia; +2018-11-30T05:50:03Z;Eduardo;173.346;115358784;Colombia; +2018-11-30T05:45:20Z;Ana;894.7283;114928019;Colombia; +2018-11-30T05:36:36Z;Nathália;3266.083;116293421;Colombia; +2018-11-30T05:30:16Z;Eduardo;4300.239;116106089;Colombia; +2018-11-30T05:23:00Z;Nathália;1860.81;116137982;Colombia; +2018-11-30T04:44:54Z;Nathália;5293.681;115358131;Colombia; +2018-11-30T04:29:33Z;Eduardo;4650.428;114216204;Colombia; +2018-11-30T04:19:53Z;Júlio Cesar;2078.317;115972488;Colombia; +2018-11-30T04:05:11Z;Júlio Cesar;8564.543;114460726;Colombia; +2018-11-30T03:30:02Z;Júlio Cesar;6241.534;114752417;Colombia; +2018-11-30T03:10:30Z;Sandra;5188.032;115103266;Colombia; +2018-11-30T02:21:12Z;Nathália;2277.938;114548114;Colombia; +2018-11-30T01:58:04Z;Júlio;2382.364;114719018;Colombia; +2018-11-30T01:55:31Z;Nathália;2183.72;115672864;Colombia; +2018-11-30T01:53:19Z;Júlio Cesar;3265.277;115148589;Colombia; +2018-11-30T01:42:40Z;Nathália;546.8317;115219599;Colombia; +2018-11-30T01:17:37Z;Júlio Cesar;964.0419;115155548;Colombia; +2018-11-30T01:02:05Z;Ana;3250.078;114712207;Colombia; +2018-11-30T00:32:22Z;Nathália;7056.682;116173417;Colombia; +2018-11-30T00:30:25Z;Sandra;156.8856;114366469;Colombia; +2018-11-30T00:25:57Z;Armando;202.7685;116147981;Colombia; +2018-11-29T23:57:16Z;Júlio;2751.5;115317320;Colombia; +2018-11-29T23:53:14Z;nathalia;2713.061;114500956;Colombia; +2018-11-29T23:45:41Z;nathalia;3729.137;114419939;Colombia; +2018-11-29T23:25:56Z;Júlio Cesar;2135.011;115352872;Colombia; +2018-11-29T23:14:30Z;Armando;542.4925;115208723;Colombia; +2018-11-29T23:01:06Z;Sandra;4029.769;114960284;Colombia; +2018-11-29T22:46:50Z;Sandra;5276.131;114608027;Colombia; +2018-11-29T21:43:28Z;Júlio;3057.539;115466660;Colombia; +2018-11-29T21:40:41Z;Júlio Cesar;3159.478;115927618;Colombia; +2018-11-29T21:39:30Z;Armando;5689.734;116231255;Colombia; +2018-11-29T20:39:41Z;Júlio;3755.444;115676249;Colombia; +2018-11-29T19:02:25Z;Eduardo;486.6479;115681386;Colombia; +2018-11-29T18:41:22Z;nathalia;3600.464;114757157;Colombia; +2018-11-29T18:35:51Z;Júlio;425.8626;115511061;Colombia; +2018-11-29T18:32:32Z;Ana;3440.053;114385534;Colombia; +2018-11-29T18:14:38Z;Júlio Cesar;1789.57;115786702;Colombia; +2018-11-29T17:57:28Z;Júlio Cesar;1738.634;115435568;Colombia; +2018-11-29T17:06:05Z;Júlio Cesar;2734.414;114935083;Colombia; +2018-11-29T16:53:30Z;Armando;613.1406;115422284;Colombia; +2018-11-29T16:42:44Z;Júlio;3242.457;115435538;Colombia; +2018-11-29T16:27:31Z;Eduardo;167.3409;115604815;Colombia; +2018-11-29T16:22:15Z;Armando;1940.158;114529842;Colombia; +2018-11-29T16:02:05Z;Nathália;2973.678;115132102;Colombia; +2018-11-29T15:22:01Z;Eduardo;1496.058;114421901;Colombia; +2018-11-29T15:09:20Z;Armando;133.5044;115990431;Colombia; +2018-11-29T14:50:50Z;Júlio Cesar;960.6887;115513926;Colombia; +2018-11-29T14:42:38Z;Júlio Cesar;4165.292;115226169;Colombia; +2018-11-29T14:33:36Z;nathalia;3339.377;115249853;Colombia; +2018-11-29T14:31:32Z;nathalia;214.8837;116187881;Colombia; +2018-11-29T12:42:54Z;Sandra;7765.425;116266994;Colombia; +2018-11-29T12:36:03Z;Júlio Cesar;117.066;114626696;Colombia; +2018-11-29T12:33:19Z;Nathália;2194.371;116014828;Colombia; +2018-11-29T12:01:45Z;Júlio;3859.446;115017787;Colombia; +2018-11-29T11:53:22Z;Armando;1580.791;115949631;Colombia; +2018-11-29T11:30:25Z;Júlio Cesar;342.2322;115259283;Colombia; +2018-11-29T11:03:28Z;Armando;1887.51;115023323;Colombia; +2018-11-29T10:52:53Z;Ana;619.8252;116276948;Colombia; +2018-11-29T10:39:20Z;Sandra;390.1884;115603988;Colombia; +2018-11-29T10:11:34Z;Armando;1163.588;116295530;Colombia; +2018-11-29T09:58:55Z;Júlio Cesar;119.086;114211236;Colombia; +2018-11-29T09:43:36Z;Sandra;4600.001;115252159;Colombia; +2018-11-29T08:47:06Z;Sandra;1553.305;114335346;Colombia; +2018-11-29T08:40:02Z;nathalia;1517.465;115327517;Colombia; +2018-11-29T08:35:11Z;Ana;1354.656;114903817;Colombia; +2018-11-29T08:25:59Z;nathalia;822.7431;114218505;Colombia; +2018-11-29T08:20:43Z;Júlio Cesar;196.2692;114625743;Colombia; +2018-11-29T07:59:10Z;Eduardo;6717.884;116196131;Colombia; +2018-11-29T07:48:01Z;Júlio;10991;116330587;Colombia; +2018-11-29T07:46:48Z;Nathália;193.2123;115728895;Colombia; +2018-11-29T07:40:30Z;Eduardo;3690.833;114952254;Colombia; +2018-11-29T07:08:03Z;Eduardo;4094.25;116158311;Colombia; +2018-11-29T06:34:49Z;Armando;1717.18;114425479;Colombia; +2018-11-29T06:22:14Z;Nathália;1594.933;114597115;Colombia; +2018-11-29T06:17:45Z;Armando;277.8089;115304790;Colombia; +2018-11-29T06:06:45Z;Júlio;2359.426;115907107;Colombia; +2018-11-29T06:05:45Z;Eduardo;98.71488;115464138;Colombia; +2018-11-29T06:01:52Z;Eduardo;7121.476;114518930;Colombia; +2018-11-29T05:44:27Z;Ana;2573.127;114337147;Colombia; +2018-11-29T05:34:48Z;Ana;593.8844;114544903;Colombia; +2018-11-29T05:21:27Z;Ana;1461.638;114247445;Colombia; +2018-11-29T05:11:56Z;Júlio;2917.74;115244463;Colombia; +2018-11-29T05:06:28Z;Nathália;7835.009;114237133;Colombia; +2018-11-29T05:03:23Z;Júlio Cesar;2967.08;115203439;Colombia; +2018-11-29T04:39:20Z;nathalia;6894.646;114719420;Colombia; +2018-11-29T04:33:31Z;nathalia;455.4224;116162293;Colombia; +2018-11-29T04:32:16Z;Eduardo;6229.479;114863517;Colombia; +2018-11-29T04:07:00Z;Nathália;8850.881;114235711;Colombia; +2018-11-29T03:26:07Z;Sandra;366.3944;114906534;Colombia; +2018-11-29T02:44:38Z;Sandra;593.7706;114819814;Colombia; +2018-11-29T01:51:21Z;Ana;4627.995;115931124;Colombia; +2018-11-29T01:23:19Z;Júlio Cesar;21.12341;116086769;Colombia; +2018-11-29T01:21:20Z;Ana;5301.68;116066967;Colombia; +2018-11-29T01:09:55Z;Júlio;4294.331;115731044;Colombia; +2018-11-29T00:55:07Z;nathalia;3826.212;115206404;Colombia; +2018-11-29T00:42:28Z;Nathália;4557.611;115840893;Colombia; +2018-11-29T00:35:03Z;Ana;872.1548;114478958;Colombia; +2018-11-29T00:06:24Z;Ana;835.4811;116183912;Colombia; +2018-11-28T23:50:59Z;Nathália;7021.496;116099122;Colombia; +2018-11-28T23:42:27Z;Ana;165.2039;116255733;Colombia; +2018-11-28T22:46:37Z;Ana;339.2439;114331858;Colombia; +2018-11-28T22:45:01Z;Sandra;3192.644;115602268;Colombia; +2018-11-28T22:31:05Z;Nathália;6536.628;115133884;Colombia; +2018-11-28T22:21:26Z;Ana;7153.488;114555600;Colombia; +2018-11-28T22:19:00Z;Júlio Cesar;2726.778;115083181;Colombia; +2018-11-28T22:18:58Z;Eduardo;931.639;115936637;Colombia; +2018-11-28T22:03:23Z;Eduardo;113.736;115329797;Colombia; +2018-11-28T21:51:16Z;Armando;218.3149;114592982;Colombia; +2018-11-28T21:02:00Z;Sandra;512.7131;116193817;Colombia; +2018-11-28T21:01:29Z;Eduardo;46.41333;115233812;Colombia; +2018-11-28T20:45:35Z;Ana;2226.989;116194797;Colombia; +2018-11-28T20:45:04Z;Júlio Cesar;3432.176;114771511;Colombia; +2018-11-28T20:21:31Z;nathalia;1323.307;114335067;Colombia; +2018-11-28T19:41:30Z;Nathália;191.0815;114924769;Colombia; +2018-11-28T19:29:34Z;Nathália;3866.938;115582859;Colombia; +2018-11-28T19:18:48Z;Júlio;3381.392;115135220;Colombia; +2018-11-28T18:37:16Z;Eduardo;996.5026;115665578;Colombia; +2018-11-28T18:23:56Z;Ana;8264.222;116356450;Colombia; +2018-11-28T18:13:48Z;Eduardo;139.3534;114276798;Colombia; +2018-11-28T18:04:48Z;Sandra;3554.935;114342834;Colombia; +2018-11-28T18:00:47Z;Nathália;1003.6;116047899;Colombia; +2018-11-28T17:37:03Z;nathalia;7792.048;115909649;Colombia; +2018-11-28T17:10:00Z;Sandra;1633.002;116030688;Colombia; +2018-11-28T16:47:27Z;Júlio;32.02722;116100136;Colombia; +2018-11-28T16:43:48Z;Sandra;8874.386;116151621;Colombia; +2018-11-28T16:35:37Z;Armando;3041.463;114242118;Colombia; +2018-11-28T16:33:37Z;nathalia;8237.579;114772324;Colombia; +2018-11-28T16:27:40Z;Ana;1557.726;115000595;Colombia; +2018-11-28T16:21:39Z;Nathália;670.7377;114912174;Colombia; +2018-11-28T15:54:29Z;Eduardo;5728.077;115889379;Colombia; +2018-11-28T15:26:08Z;Júlio Cesar;5472.975;115955565;Colombia; +2018-11-28T15:16:00Z;Júlio Cesar;7866.872;115000204;Colombia; +2018-11-28T14:58:31Z;Eduardo;9841.781;115662722;Colombia; +2018-11-28T14:55:36Z;Ana;1294.402;115185709;Colombia; +2018-11-28T14:55:18Z;Júlio;2924.116;115114330;Colombia; +2018-11-28T14:40:33Z;Júlio;3463.84;115973477;Colombia; +2018-11-28T14:29:46Z;Armando;2440.609;115760599;Colombia; +2018-11-28T14:13:06Z;Sandra;597.4797;115422197;Colombia; +2018-11-28T14:01:23Z;Armando;833.4649;116394758;Colombia; +2018-11-28T13:57:53Z;Ana;888.4579;114300782;Colombia; +2018-11-28T13:46:35Z;nathalia;3619.113;115142485;Colombia; +2018-11-28T13:10:51Z;Eduardo;91.01539;116135815;Colombia; +2018-11-28T12:57:26Z;Júlio Cesar;217.2162;114856438;Colombia; +2018-11-28T12:34:19Z;Sandra;148.7926;115626335;Colombia; +2018-11-28T12:22:52Z;nathalia;742.3341;115067136;Colombia; +2018-11-28T12:16:39Z;Júlio;1.49915;114482602;Colombia; +2018-11-28T11:54:19Z;Eduardo;2011.085;114751992;Colombia; +2018-11-28T11:14:06Z;Júlio;9704.504;114627068;Colombia; +2018-11-28T10:29:01Z;nathalia;3184.238;114762067;Colombia; +2018-11-28T10:10:23Z;Júlio Cesar;5792.686;115567209;Colombia; +2018-11-28T10:00:29Z;Sandra;117.1951;114587877;Colombia; +2018-11-28T09:41:43Z;Nathália;2621.092;116279896;Colombia; +2018-11-28T09:31:36Z;Ana;10491.41;115111586;Colombia; +2018-11-28T09:24:09Z;Júlio;3182.928;114639433;Colombia; +2018-11-28T08:47:30Z;Nathália;3754.061;114507997;Colombia; +2018-11-28T08:15:42Z;Júlio Cesar;1429.87;115940533;Colombia; +2018-11-28T08:07:21Z;Nathália;1252.317;114835736;Colombia; +2018-11-28T07:52:16Z;Nathália;4004.389;114608697;Colombia; +2018-11-28T06:38:05Z;Sandra;3679.903;115430275;Colombia; +2018-11-28T06:20:38Z;Nathália;5577.219;115016170;Colombia; +2018-11-28T06:02:06Z;nathalia;6579.501;114777278;Colombia; +2018-11-28T06:01:27Z;Ana;4890.907;115674649;Colombia; +2018-11-28T05:59:39Z;Armando;4571.956;114468725;Colombia; +2018-11-28T05:46:43Z;Eduardo;1059.474;115491125;Colombia; +2018-11-28T05:22:32Z;Sandra;2661.968;116041930;Colombia; +2018-11-28T05:12:43Z;Armando;4924.611;115376869;Colombia; +2018-11-28T04:47:24Z;Júlio;258.9252;115667755;Colombia; +2018-11-28T03:25:18Z;Júlio Cesar;927.7435;116213829;Colombia; +2018-11-28T03:16:08Z;Ana;5126.342;114309781;Colombia; +2018-11-28T02:58:54Z;Júlio Cesar;998.0814;115955898;Colombia; +2018-11-28T02:37:57Z;Sandra;2129.567;115220034;Colombia; +2018-11-28T02:02:27Z;Júlio;630.3421;115898514;Colombia; +2018-11-28T01:58:15Z;Sandra;531.6878;115653674;Colombia; +2018-11-28T01:12:54Z;Eduardo;1515.85;115087876;Colombia; +2018-11-28T01:10:57Z;Júlio Cesar;3615.659;114218894;Colombia; +2018-11-28T00:32:12Z;Sandra;2867.258;115396544;Colombia; +2018-11-28T00:24:29Z;Ana;4529.626;114217231;Colombia; +2018-11-27T23:12:14Z;nathalia;3207.099;114853664;Colombia; +2018-11-27T22:18:43Z;Armando;5554.377;114710201;Colombia; +2018-11-27T22:14:05Z;Nathália;6757.502;114870471;Colombia; +2018-11-27T22:13:44Z;Sandra;8348.969;114717988;Colombia; +2018-11-27T22:07:25Z;Armando;918.7415;115776465;Colombia; +2018-11-27T22:01:28Z;Armando;15.15248;114653556;Colombia; +2018-11-27T21:02:20Z;Nathália;261.8614;114568770;Colombia; +2018-11-27T20:56:07Z;Nathália;2.405109;114823535;Colombia; +2018-11-27T20:51:06Z;Nathália;2629.6;115510174;Colombia; +2018-11-27T20:31:24Z;Eduardo;6459.821;115451732;Colombia; +2018-11-27T20:12:19Z;Nathália;640.0454;116350262;Colombia; +2018-11-27T20:03:52Z;Nathália;4302.448;115316222;Colombia; +2018-11-27T19:46:29Z;Sandra;1235.696;116209040;Colombia; +2018-11-27T19:15:57Z;Nathália;1854.472;116246028;Colombia; +2018-11-27T19:00:13Z;Ana;3260.819;115774538;Colombia; +2018-11-27T18:46:54Z;Nathália;6099.985;114519092;Colombia; +2018-11-27T18:26:02Z;Sandra;194.5718;114236873;Colombia; +2018-11-27T18:24:02Z;nathalia;2023.235;116271842;Colombia; +2018-11-27T17:46:25Z;Júlio Cesar;12002.4;115430382;Colombia; +2018-11-27T17:38:07Z;Sandra;1764.075;114748554;Colombia; +2018-11-27T17:32:04Z;Ana;1393.873;114566687;Colombia; +2018-11-27T16:48:09Z;Júlio;2324.126;115178699;Colombia; +2018-11-27T16:46:36Z;Sandra;3849.391;114417389;Colombia; +2018-11-27T16:16:27Z;Júlio;1336.963;114332076;Colombia; +2018-11-27T15:52:56Z;Armando;275.8482;115619773;Colombia; +2018-11-27T15:38:53Z;Nathália;624.9548;115316805;Colombia; +2018-11-27T15:30:51Z;Júlio Cesar;9275.999;114238287;Colombia; +2018-11-27T15:10:53Z;Armando;1061.51;114263764;Colombia; +2018-11-27T14:54:05Z;Ana;1633.589;114293518;Colombia; +2018-11-27T13:15:56Z;Júlio Cesar;1046.319;116022362;Colombia; +2018-11-27T12:56:40Z;Eduardo;134.2327;114890994;Colombia; +2018-11-27T12:49:23Z;Júlio Cesar;3474.071;116091738;Colombia; +2018-11-27T12:40:57Z;nathalia;1478.851;115854994;Colombia; +2018-11-27T12:24:44Z;Ana;1619.273;115205747;Colombia; +2018-11-27T12:16:33Z;Júlio;1569.713;115332767;Colombia; +2018-11-27T12:05:01Z;Júlio;4759.325;115732757;Colombia; +2018-11-27T11:41:10Z;Nathália;1680.19;114418703;Colombia; +2018-11-27T11:30:44Z;Nathália;602.1632;115513091;Colombia; +2018-11-27T11:14:57Z;Júlio Cesar;912.7985;114754530;Colombia; +2018-11-27T11:01:01Z;Eduardo;2776.857;115207825;Colombia; +2018-11-27T10:59:12Z;Eduardo;5973.26;115630920;Colombia; +2018-11-27T10:55:00Z;Ana;758.6595;114670948;Colombia; +2018-11-27T10:53:02Z;Eduardo;1801.361;116346001;Colombia; +2018-11-27T10:31:52Z;nathalia;1307.783;114738184;Colombia; +2018-11-27T10:26:50Z;Nathália;1968.657;114486746;Colombia; +2018-11-27T09:55:12Z;Sandra;3706.251;115736237;Colombia; +2018-11-27T09:50:27Z;Júlio Cesar;125.9267;116131015;Colombia; +2018-11-27T09:12:31Z;nathalia;1635.177;115520877;Colombia; +2018-11-27T09:08:50Z;Ana;1242.812;116248801;Colombia; +2018-11-27T09:06:03Z;Ana;2300.47;114589879;Colombia; +2018-11-27T08:53:28Z;Ana;32.44551;114502673;Colombia; +2018-11-27T08:51:23Z;Eduardo;446.3404;115872902;Colombia; +2018-11-27T08:28:15Z;Eduardo;385.0911;115666115;Colombia; +2018-11-27T08:18:26Z;Eduardo;5021.299;115353174;Colombia; +2018-11-27T08:18:04Z;Armando;2097.446;115850177;Colombia; +2018-11-27T08:04:51Z;Júlio Cesar;3281.531;115842313;Colombia; +2018-11-27T07:47:42Z;nathalia;427.0845;114629777;Colombia; +2018-11-27T07:40:57Z;nathalia;453.2051;116186462;Colombia; +2018-11-27T07:26:38Z;Ana;892.8588;114483512;Colombia; +2018-11-27T07:07:12Z;Sandra;1494.814;115074974;Colombia; +2018-11-27T07:06:43Z;nathalia;1242.431;115532531;Colombia; +2018-11-27T06:42:15Z;Armando;11957.43;114367251;Colombia; +2018-11-27T06:35:00Z;Júlio Cesar;14.94031;116183132;Colombia; +2018-11-27T06:26:05Z;Ana;3360.612;114528594;Colombia; +2018-11-27T06:25:16Z;Eduardo;609.6833;114373619;Colombia; +2018-11-27T05:58:53Z;nathalia;2436.585;114983657;Colombia; +2018-11-27T05:53:47Z;Sandra;3215.674;115522073;Colombia; +2018-11-27T05:53:13Z;Ana;317.6156;116374122;Colombia; +2018-11-27T05:53:10Z;Nathália;5143.185;116317175;Colombia; +2018-11-27T05:00:51Z;nathalia;570.9795;116318379;Colombia; +2018-11-27T05:00:50Z;Júlio Cesar;7554.648;115913671;Colombia; +2018-11-27T04:53:27Z;Sandra;204.2976;114457724;Colombia; +2018-11-27T04:45:55Z;Sandra;4762.483;115076117;Colombia; +2018-11-27T03:53:58Z;Ana;1648.62;116128220;Colombia; +2018-11-27T03:47:44Z;Eduardo;902.2407;116142417;Colombia; +2018-11-27T03:19:34Z;Ana;7605.065;115672004;Colombia; +2018-11-27T03:09:52Z;Sandra;4377.607;114355807;Colombia; +2018-11-27T02:33:41Z;nathalia;4018.114;114585050;Colombia; +2018-11-27T02:20:08Z;Sandra;1339.135;115539130;Colombia; +2018-11-27T02:00:39Z;Armando;414.7667;114979671;Colombia; +2018-11-27T01:48:46Z;nathalia;242.4334;115268223;Colombia; +2018-11-27T01:37:35Z;Ana;1263.181;115439727;Colombia; +2018-11-27T01:30:14Z;Sandra;12537.89;115986560;Colombia; +2018-11-27T01:27:32Z;nathalia;12214.77;114413280;Colombia; +2018-11-27T01:24:55Z;Júlio;8466.807;114703619;Colombia; +2018-11-27T01:10:55Z;Nathália;5710.387;114421012;Colombia; +2018-11-27T01:07:38Z;Eduardo;82.90571;115838850;Colombia; +2018-11-27T01:02:03Z;nathalia;2770.532;115861405;Colombia; +2018-11-27T01:01:26Z;Ana;230.5683;115913468;Colombia; +2018-11-27T00:58:54Z;Sandra;6137.822;115996117;Colombia; +2018-11-27T00:42:59Z;Sandra;915.875;116380744;Colombia; +2018-11-27T00:36:50Z;Júlio;4931.842;114992956;Colombia; +2018-11-26T23:47:49Z;Júlio Cesar;5817.05;116271812;Colombia; +2018-11-26T23:46:42Z;Eduardo;2517.897;115944034;Colombia; +2018-11-26T23:27:56Z;nathalia;1808.547;114795940;Colombia; +2018-11-26T23:25:13Z;Armando;644.614;114615683;Colombia; +2018-11-26T23:22:59Z;Eduardo;1693.719;114620147;Colombia; +2018-11-26T23:11:52Z;nathalia;1299.658;115929528;Colombia; +2018-11-26T23:02:45Z;Sandra;4515.524;115743229;Colombia; +2018-11-26T22:45:53Z;Eduardo;1207.329;115436577;Colombia; +2018-11-26T22:42:00Z;Júlio Cesar;687.8356;114961532;Colombia; +2018-11-26T22:35:11Z;Júlio;741.2126;114695697;Colombia; +2018-11-26T22:08:12Z;Ana;1353.073;115054344;Colombia; +2018-11-26T21:58:13Z;nathalia;3401.691;114716043;Colombia; +2018-11-26T21:52:39Z;nathalia;8628.037;115402754;Colombia; +2018-11-26T21:50:24Z;Armando;6420.494;115749412;Colombia; +2018-11-26T21:36:23Z;Nathália;1799.371;116326921;Colombia; +2018-11-26T21:09:18Z;Sandra;5238.63;114899570;Colombia; +2018-11-26T21:01:19Z;Júlio Cesar;5772.307;115805030;Colombia; +2018-11-26T20:34:18Z;Júlio Cesar;13754.09;116355989;Colombia; +2018-11-26T20:29:52Z;Sandra;841.6418;116117346;Colombia; +2018-11-26T19:53:41Z;Júlio;2214.129;114465994;Colombia; +2018-11-26T19:50:50Z;Armando;1194.707;114985051;Colombia; +2018-11-26T19:21:42Z;Ana;7167.332;114458360;Colombia; +2018-11-26T18:58:24Z;Eduardo;71.42128;115980922;Colombia; +2018-11-26T18:53:08Z;Armando;422.9312;114711124;Colombia; +2018-11-26T18:17:35Z;Ana;941.607;116214122;Colombia; +2018-11-26T17:53:50Z;nathalia;3336.734;116243134;Colombia; +2018-11-26T17:46:03Z;Ana;545.5582;115131330;Colombia; +2018-11-26T17:28:23Z;Júlio;1930.501;115868505;Colombia; +2018-11-26T17:21:45Z;Júlio;27.08792;114592107;Colombia; +2018-11-26T16:48:00Z;Júlio Cesar;10896.87;115832950;Colombia; +2018-11-26T16:38:57Z;Armando;6085.732;115489231;Colombia; +2018-11-26T16:30:50Z;Nathália;1070.984;115469315;Colombia; +2018-11-26T16:23:32Z;Armando;310.8692;114845566;Colombia; +2018-11-26T16:20:00Z;Armando;2774.912;116049812;Colombia; +2018-11-26T16:13:16Z;Júlio;11.3448;115111815;Colombia; +2018-11-26T15:56:07Z;Sandra;1333.221;115435280;Colombia; +2018-11-26T15:43:43Z;Armando;9579.369;115551119;Colombia; +2018-11-26T15:30:37Z;Armando;4822.333;115991988;Colombia; +2018-11-26T15:29:27Z;Eduardo;2730.598;114435375;Colombia; +2018-11-26T15:28:11Z;Eduardo;1034.217;116383597;Colombia; +2018-11-26T14:44:31Z;nathalia;1683.808;115206570;Colombia; +2018-11-26T14:43:09Z;Eduardo;5393.45;115632618;Colombia; +2018-11-26T14:35:32Z;Ana;4684.748;115843989;Colombia; +2018-11-26T14:23:03Z;Sandra;294.1586;115643910;Colombia; +2018-11-26T14:10:36Z;Armando;5841.644;114959808;Colombia; +2018-11-26T14:05:02Z;Eduardo;2932.178;115877420;Colombia; +2018-11-26T13:39:27Z;Ana;2722.256;116137395;Colombia; +2018-11-26T13:30:35Z;Eduardo;475.8577;114558553;Colombia; +2018-11-26T13:11:13Z;nathalia;1198.525;116089630;Colombia; +2018-11-26T13:09:24Z;Armando;2320.655;114422435;Colombia; +2018-11-26T13:02:40Z;Nathália;705.964;114871489;Colombia; +2018-11-26T12:52:52Z;Armando;4797.482;115908412;Colombia; +2018-11-26T12:52:37Z;Ana;3913.16;115447753;Colombia; +2018-11-26T12:27:53Z;Armando;437.4738;114836317;Colombia; +2018-11-26T12:18:08Z;Nathália;2143.365;116114598;Colombia; +2018-11-26T12:03:16Z;Júlio Cesar;2835.517;116232416;Colombia; +2018-11-26T12:02:03Z;Eduardo;999.9935;114561456;Colombia; +2018-11-26T11:44:55Z;Nathália;5753.838;116151993;Colombia; +2018-11-26T11:29:03Z;Armando;1008.644;116225037;Colombia; +2018-11-26T11:08:03Z;Ana;6056.031;116256016;Colombia; +2018-11-26T11:01:44Z;Júlio;2722.278;114505600;Colombia; +2018-11-26T10:34:45Z;Eduardo;1164.377;116366054;Colombia; +2018-11-26T10:31:12Z;Ana;598.1894;115484871;Colombia; +2018-11-26T10:18:12Z;Ana;23.50983;115619684;Colombia; +2018-11-26T10:09:31Z;Sandra;615.5242;114909431;Colombia; +2018-11-26T09:42:06Z;Ana;206.5032;115743833;Colombia; +2018-11-26T09:19:52Z;Armando;2968.016;116137981;Colombia; +2018-11-26T09:00:49Z;Júlio;9758.659;115932324;Colombia; +2018-11-26T08:51:14Z;Júlio;850.4709;115820319;Colombia; +2018-11-26T07:49:26Z;Armando;928.704;114787306;Colombia; +2018-11-26T07:05:57Z;nathalia;11992.8;115428207;Colombia; +2018-11-26T07:00:27Z;Sandra;581.6742;115608736;Colombia; +2018-11-26T06:55:58Z;Nathália;821.5439;114346532;Colombia; +2018-11-26T06:45:44Z;Eduardo;4062.09;116017055;Colombia; +2018-11-26T06:12:13Z;Sandra;224.8004;114348691;Colombia; +2018-11-26T06:04:57Z;Eduardo;3991.422;116102578;Colombia; +2018-11-26T06:02:41Z;nathalia;1026.07;114576242;Colombia; +2018-11-26T05:49:22Z;Sandra;4243.573;114934088;Colombia; +2018-11-26T05:16:05Z;Nathália;2520.826;115208182;Colombia; +2018-11-26T04:40:13Z;Nathália;1033.003;115377454;Colombia; +2018-11-26T04:29:57Z;nathalia;2972.25;115554726;Colombia; +2018-11-26T04:22:56Z;Júlio Cesar;7654.558;115742408;Colombia; +2018-11-26T04:03:33Z;Nathália;6508.256;115165140;Colombia; +2018-11-26T03:51:44Z;Armando;1094.873;115670957;Colombia; +2018-11-26T03:51:32Z;Júlio;3853.982;115719884;Colombia; +2018-11-26T03:39:31Z;Sandra;778.4492;116322697;Colombia; +2018-11-26T03:25:17Z;Nathália;1535.449;114281649;Colombia; +2018-11-26T03:24:02Z;Sandra;2708.61;115084723;Colombia; +2018-11-26T03:12:21Z;Eduardo;738.9507;115271811;Colombia; +2018-11-26T02:54:47Z;Júlio Cesar;2330.136;115096076;Colombia; +2018-11-26T02:54:20Z;Armando;360.2682;115802937;Colombia; +2018-11-26T02:52:57Z;Eduardo;147.2793;114929983;Colombia; +2018-11-26T02:11:18Z;nathalia;2462.034;114756442;Colombia; +2018-11-26T01:21:00Z;Sandra;162.0304;114853950;Colombia; +2018-11-26T01:00:30Z;Armando;3877.289;114254524;Colombia; +2018-11-26T00:49:14Z;Júlio;85.51389;115016270;Colombia; +2018-11-25T23:58:41Z;Ana;4076.826;115554861;Colombia; +2018-11-25T23:46:07Z;Júlio;205.6474;116035597;Colombia; +2018-11-25T23:41:45Z;Armando;1094.375;116131496;Colombia; +2018-11-25T23:30:10Z;Sandra;4220.084;114516681;Colombia; +2018-11-25T23:04:27Z;Júlio Cesar;6502.131;115638094;Colombia; +2018-11-25T22:46:30Z;Júlio;110.81;115499013;Colombia; +2018-11-25T22:26:12Z;Armando;3076.514;114961455;Colombia; +2018-11-25T22:07:36Z;Sandra;2300.31;114831350;Colombia; +2018-11-25T21:26:13Z;Armando;478.2547;115462051;Colombia; +2018-11-25T20:41:40Z;Júlio;916.3621;115515443;Colombia; +2018-11-25T20:27:52Z;Sandra;57.26822;115776522;Colombia; +2018-11-25T20:22:24Z;Eduardo;7961.804;115385648;Colombia; +2018-11-25T20:21:04Z;Eduardo;773.5418;114284382;Colombia; +2018-11-25T19:25:59Z;nathalia;6441.449;115799091;Colombia; +2018-11-25T19:19:23Z;Eduardo;4962.744;115555859;Colombia; +2018-11-25T19:15:46Z;Nathália;71.91045;115796129;Colombia; +2018-11-25T18:31:24Z;Armando;41.79765;115023904;Colombia; +2018-11-25T18:23:35Z;Júlio Cesar;1090.609;114366330;Colombia; +2018-11-25T17:39:54Z;Júlio;6767.496;114377177;Colombia; +2018-11-25T17:28:07Z;Júlio;6772.428;114958202;Colombia; +2018-11-25T17:22:42Z;Nathália;3076.253;115213168;Colombia; +2018-11-25T17:19:47Z;Armando;2110.199;114435102;Colombia; +2018-11-25T16:43:30Z;Ana;475.7024;116246132;Colombia; +2018-11-25T16:26:41Z;nathalia;1926.99;116365792;Colombia; +2018-11-25T16:22:03Z;Nathália;1223.006;114364480;Colombia; +2018-11-25T16:15:42Z;Armando;4794.666;115516551;Colombia; +2018-11-25T16:06:03Z;nathalia;693.5715;114489624;Colombia; +2018-11-25T15:56:05Z;Júlio;1389.096;115625641;Colombia; +2018-11-25T15:50:29Z;Armando;1512.051;115753569;Colombia; +2018-11-25T15:50:27Z;Sandra;3819.825;114874122;Colombia; +2018-11-25T15:40:24Z;Eduardo;7099.978;116041872;Colombia; +2018-11-25T15:18:07Z;Nathália;1576.772;114257997;Colombia; +2018-11-25T15:04:20Z;Sandra;3263.557;115813784;Colombia; +2018-11-25T13:50:47Z;Júlio;3094.037;116122166;Colombia; +2018-11-25T13:50:18Z;Nathália;1551.5;115469395;Colombia; +2018-11-25T13:33:38Z;Armando;10890.25;115944176;Colombia; +2018-11-25T13:24:22Z;Armando;2970.104;115452128;Colombia; +2018-11-25T13:16:15Z;Nathália;84.66993;114590017;Colombia; +2018-11-25T13:11:42Z;Júlio Cesar;35.24556;114283276;Colombia; +2018-11-25T12:49:09Z;nathalia;6701.628;114235169;Colombia; +2018-11-25T12:05:04Z;Júlio;1796.105;115255000;Colombia; +2018-11-25T11:26:34Z;Júlio;2442.285;114718966;Colombia; +2018-11-25T11:15:20Z;Júlio;1445.363;114957802;Colombia; +2018-11-25T10:48:53Z;Nathália;3817.699;114867673;Colombia; +2018-11-25T10:43:21Z;Júlio;302.0998;114203158;Colombia; +2018-11-25T10:43:14Z;Ana;935.9401;115158025;Colombia; +2018-11-25T10:16:41Z;Ana;1091.047;116107488;Colombia; +2018-11-25T09:49:50Z;Ana;433.4767;115257387;Colombia; +2018-11-25T09:24:59Z;Armando;287.9152;115861893;Colombia; +2018-11-25T09:17:57Z;Eduardo;2215.267;116066706;Colombia; +2018-11-25T09:12:55Z;Ana;82.25638;115018148;Colombia; +2018-11-25T08:53:27Z;Nathália;8846.757;115300954;Colombia; +2018-11-25T08:42:10Z;Ana;1079.107;115748059;Colombia; +2018-11-25T08:18:20Z;Júlio;4988.359;114669880;Colombia; +2018-11-25T08:13:50Z;Júlio Cesar;1794.194;116280328;Colombia; +2018-11-25T08:03:48Z;Armando;678.3656;116250342;Colombia; +2018-11-25T07:55:45Z;Eduardo;8060.424;115836176;Colombia; +2018-11-25T07:53:21Z;Eduardo;3107.409;115685666;Colombia; +2018-11-25T07:49:32Z;Armando;1656.339;115049587;Colombia; +2018-11-25T07:41:04Z;Ana;2436.852;115312102;Colombia; +2018-11-25T07:17:11Z;Júlio;1439.754;116134734;Colombia; +2018-11-25T07:16:59Z;Júlio Cesar;1578.06;114302817;Colombia; +2018-11-25T06:59:52Z;Eduardo;5455.516;114909804;Colombia; +2018-11-25T06:58:30Z;nathalia;1153.113;114307489;Colombia; +2018-11-25T06:34:09Z;Júlio;595.6967;115250871;Colombia; +2018-11-25T06:23:01Z;Ana;2570.01;115218839;Colombia; +2018-11-25T05:50:29Z;nathalia;51.18524;115835943;Colombia; +2018-11-25T05:31:56Z;Júlio Cesar;7585.664;115573147;Colombia; +2018-11-25T05:10:59Z;Sandra;7842.781;115677682;Colombia; +2018-11-25T04:44:50Z;Ana;2136.42;116340951;Colombia; +2018-11-25T04:42:12Z;Nathália;1034.859;116386932;Colombia; +2018-11-25T04:33:29Z;Júlio;3151.369;115473301;Colombia; +2018-11-25T04:23:58Z;Ana;6392.615;115950136;Colombia; +2018-11-25T03:37:40Z;Sandra;4295.116;115982320;Colombia; +2018-11-25T03:36:05Z;Nathália;100.351;115987921;Colombia; +2018-11-25T03:28:46Z;Armando;4150.023;114311230;Colombia; +2018-11-25T03:20:04Z;Júlio Cesar;1124.143;114425026;Colombia; +2018-11-25T03:17:30Z;Júlio;1187.625;115194011;Colombia; +2018-11-25T03:11:30Z;Nathália;4371;115756765;Colombia; +2018-11-25T03:04:29Z;Nathália;241.0349;115476739;Colombia; +2018-11-25T02:52:14Z;Ana;1760.981;114980310;Colombia; +2018-11-25T02:25:45Z;Eduardo;826.1519;115036501;Colombia; +2018-11-25T02:03:17Z;Armando;3855.949;116394980;Colombia; +2018-11-25T01:40:30Z;Júlio Cesar;12441.83;114802379;Colombia; +2018-11-25T01:04:21Z;Armando;7152.909;115773974;Colombia; +2018-11-25T00:49:13Z;Júlio Cesar;1363.357;116129693;Colombia; +2018-11-25T00:31:22Z;Sandra;3536.201;115672469;Colombia; +2018-11-25T00:20:59Z;Armando;273.8049;115445285;Colombia; +2018-11-24T23:56:46Z;Nathália;2632.102;115317852;Colombia; +2018-11-24T23:43:19Z;Júlio;2793.304;115914721;Colombia; +2018-11-24T23:24:36Z;Júlio;760.676;115983385;Colombia; +2018-11-24T22:58:55Z;Nathália;3990.031;114821527;Colombia; +2018-11-24T22:19:06Z;Nathália;2131.438;114227744;Colombia; +2018-11-24T22:17:29Z;Júlio;7942.125;114263937;Colombia; +2018-11-24T22:08:23Z;Sandra;5062.708;115738586;Colombia; +2018-11-24T21:54:01Z;Júlio;5698.268;116372996;Colombia; +2018-11-24T21:46:07Z;Ana;1685.878;115890615;Colombia; +2018-11-24T21:28:08Z;Júlio;2090.956;114638425;Colombia; +2018-11-24T21:22:37Z;Ana;4820.617;115799133;Colombia; +2018-11-24T21:13:51Z;Eduardo;5271.572;114443922;Colombia; +2018-11-24T21:08:32Z;Eduardo;1361.22;116324641;Colombia; +2018-11-24T20:36:14Z;Júlio Cesar;11500.93;116227220;Colombia; +2018-11-24T20:28:14Z;Nathália;6527.364;114439505;Colombia; +2018-11-24T20:15:36Z;Ana;576.3389;116198383;Colombia; +2018-11-24T20:08:58Z;Júlio Cesar;84.17297;114472352;Colombia; +2018-11-24T20:06:07Z;Eduardo;3038.147;115206217;Colombia; +2018-11-24T19:57:06Z;Armando;77.76776;115922335;Colombia; +2018-11-24T19:38:45Z;Eduardo;1164.007;115909359;Colombia; +2018-11-24T19:36:46Z;Eduardo;2178.108;115908390;Colombia; +2018-11-24T19:20:43Z;Ana;5786.133;115038212;Colombia; +2018-11-24T19:16:21Z;Eduardo;8582.072;115644592;Colombia; +2018-11-24T17:53:55Z;Armando;5550.158;115313654;Colombia; +2018-11-24T17:45:45Z;Nathália;1159.514;115749743;Colombia; +2018-11-24T17:33:04Z;Nathália;544.0363;115555863;Colombia; +2018-11-24T17:02:47Z;Sandra;4456.71;115209280;Colombia; +2018-11-24T16:54:52Z;Júlio Cesar;3292.893;115183508;Colombia; +2018-11-24T16:53:35Z;Nathália;1775.924;114955542;Colombia; +2018-11-24T16:49:49Z;Eduardo;3399.667;115200948;Colombia; +2018-11-24T16:35:22Z;Eduardo;74.32144;115591455;Colombia; +2018-11-24T16:29:36Z;Júlio Cesar;19.86605;115550615;Colombia; +2018-11-24T16:27:52Z;Ana;1385.386;115407503;Colombia; +2018-11-24T15:50:29Z;Eduardo;188.9536;115973601;Colombia; +2018-11-24T15:25:14Z;Nathália;3210.261;116286630;Colombia; +2018-11-24T15:19:47Z;Eduardo;1752.908;114419177;Colombia; +2018-11-24T15:15:57Z;nathalia;3268.581;114234429;Colombia; +2018-11-24T14:43:56Z;Ana;4896.144;116000437;Colombia; +2018-11-24T14:31:13Z;Eduardo;4196.984;115076311;Colombia; +2018-11-24T14:10:17Z;Júlio;1669.26;116010220;Colombia; +2018-11-24T14:03:39Z;Júlio;3125.89;115679912;Colombia; +2018-11-24T13:56:07Z;Júlio;804.7952;115362124;Colombia; +2018-11-24T13:37:21Z;Armando;602.8762;115890844;Colombia; +2018-11-24T13:28:06Z;Ana;7095.034;114657600;Colombia; +2018-11-24T13:13:23Z;Eduardo;2097.657;115044395;Colombia; +2018-11-24T12:45:56Z;Sandra;312.6534;116303633;Colombia; +2018-11-24T12:30:22Z;Nathália;79.74989;115577622;Colombia; +2018-11-24T12:18:45Z;nathalia;3317.255;115047338;Colombia; +2018-11-24T12:11:30Z;Armando;2020.201;115137429;Colombia; +2018-11-24T12:06:14Z;Júlio;2920.026;115727405;Colombia; +2018-11-24T11:39:32Z;Ana;9929.414;115740248;Colombia; +2018-11-24T11:28:28Z;Ana;4264.829;115714820;Colombia; +2018-11-24T10:52:23Z;Nathália;6167.744;115161973;Colombia; +2018-11-24T10:39:28Z;Sandra;1715.191;116039604;Colombia; +2018-11-24T09:53:38Z;Ana;685.7496;115550227;Colombia; +2018-11-24T09:48:55Z;Eduardo;632.0654;116053526;Colombia; +2018-11-24T09:19:36Z;Júlio;3863.114;115902702;Colombia; +2018-11-24T09:03:42Z;Sandra;3736.602;114890725;Colombia; +2018-11-24T08:56:11Z;Armando;2940.442;115243047;Colombia; +2018-11-24T08:52:31Z;Armando;35.53955;114889138;Colombia; +2018-11-24T08:07:21Z;Júlio;6370.493;115937477;Colombia; +2018-11-24T08:00:12Z;Eduardo;1476.657;114753150;Colombia; +2018-11-24T07:11:33Z;Nathália;842.597;114712857;Colombia; +2018-11-24T07:06:42Z;Nathália;2488.761;116032122;Colombia; +2018-11-24T06:57:55Z;Armando;1464.704;116198689;Colombia; +2018-11-24T06:51:48Z;Eduardo;3902.628;115261616;Colombia; +2018-11-24T06:45:48Z;Sandra;2188.95;115247762;Colombia; +2018-11-24T06:26:35Z;Nathália;2833.366;115089096;Colombia; +2018-11-24T05:29:50Z;nathalia;2962.691;115061106;Colombia; +2018-11-24T05:28:42Z;Ana;2638.952;116040560;Colombia; +2018-11-24T04:58:27Z;nathalia;3436.431;116372131;Colombia; +2018-11-24T04:36:47Z;Júlio;477.5911;115173768;Colombia; +2018-11-24T04:33:55Z;Nathália;1382.298;115208677;Colombia; +2018-11-24T04:12:10Z;nathalia;2050.707;115116359;Colombia; +2018-11-24T04:10:53Z;Júlio;3778.18;115493530;Colombia; +2018-11-24T04:07:43Z;Nathália;1800.525;114794136;Colombia; +2018-11-24T03:40:43Z;Ana;159.9513;114639153;Colombia; +2018-11-24T03:24:57Z;nathalia;3405.086;116092215;Colombia; +2018-11-24T03:21:49Z;Júlio Cesar;364.2163;115445474;Colombia; +2018-11-24T03:10:00Z;nathalia;10204.98;114764005;Colombia; +2018-11-24T02:56:48Z;Ana;7637.541;115165894;Colombia; +2018-11-24T02:51:00Z;nathalia;2773.542;114376778;Colombia; +2018-11-24T02:26:21Z;Júlio;298.5934;115957977;Colombia; +2018-11-24T01:32:58Z;Sandra;175.6115;116202584;Colombia; +2018-11-24T00:36:49Z;Sandra;1384.1;116188608;Colombia; +2018-11-24T00:35:23Z;Eduardo;481.7965;115535748;Colombia; +2018-11-24T00:16:23Z;Armando;1133.395;114717947;Colombia; +2018-11-24T00:13:13Z;Nathália;505.2359;114665866;Colombia; +2018-11-23T23:38:30Z;Júlio Cesar;1617.434;116247863;Colombia; +2018-11-23T23:31:33Z;nathalia;498.3638;115109966;Colombia; +2018-11-23T22:33:34Z;Nathália;626.8438;114970036;Colombia; +2018-11-23T22:29:53Z;Júlio;499.8869;114353871;Colombia; +2018-11-23T22:27:10Z;Nathália;5042.057;115750062;Colombia; +2018-11-23T22:15:47Z;Sandra;63.22975;115112304;Colombia; +2018-11-23T22:10:39Z;nathalia;8934.129;114587000;Colombia; +2018-11-23T22:05:26Z;Júlio;5522.397;116088589;Colombia; +2018-11-23T21:59:42Z;Eduardo;5769.683;114646565;Colombia; +2018-11-23T21:51:18Z;Júlio Cesar;5913.832;115239798;Colombia; +2018-11-23T21:45:55Z;Júlio Cesar;16766.63;115151126;Colombia; +2018-11-23T21:43:43Z;Júlio Cesar;30.5004;116019488;Colombia; +2018-11-23T21:41:47Z;Nathália;4886.378;115693582;Colombia; +2018-11-23T21:31:21Z;Júlio Cesar;4771.721;116293665;Colombia; +2018-11-23T21:23:14Z;nathalia;417.6904;115461564;Colombia; +2018-11-23T21:03:40Z;Armando;110.9679;115281493;Colombia; +2018-11-23T21:03:08Z;Júlio Cesar;6208.568;116279117;Colombia; +2018-11-23T20:31:32Z;Nathália;9745.18;114353234;Colombia; +2018-11-23T20:22:57Z;Sandra;2229.541;114606089;Colombia; +2018-11-23T20:21:05Z;Sandra;67.51459;114470293;Colombia; +2018-11-23T20:20:43Z;Armando;1378.883;114822421;Colombia; +2018-11-23T20:08:40Z;Eduardo;1571.389;116315074;Colombia; +2018-11-23T20:05:12Z;Júlio Cesar;1619.253;115057727;Colombia; +2018-11-23T20:03:02Z;Júlio Cesar;140.0364;116147168;Colombia; +2018-11-23T19:56:12Z;Júlio;7536.069;116374954;Colombia; +2018-11-23T19:49:54Z;Júlio;4019.992;114946693;Colombia; +2018-11-23T19:43:18Z;Júlio Cesar;2170.519;116293785;Colombia; +2018-11-23T19:22:47Z;Sandra;1863.68;115929524;Colombia; +2018-11-23T19:22:14Z;Armando;802.667;115489321;Colombia; +2018-11-23T19:01:52Z;Sandra;2397.151;114827801;Colombia; +2018-11-23T18:58:34Z;Armando;4232.272;115241175;Colombia; +2018-11-23T18:55:52Z;Nathália;1453.974;115096961;Colombia; +2018-11-23T18:46:18Z;nathalia;5713.109;114708371;Colombia; +2018-11-23T18:40:24Z;Nathália;5345.415;114953527;Colombia; +2018-11-23T18:35:45Z;nathalia;60.26795;116281122;Colombia; +2018-11-23T18:25:36Z;Nathália;3655.299;115135156;Colombia; +2018-11-23T18:16:26Z;Sandra;920.9177;115903254;Colombia; +2018-11-23T17:57:42Z;Nathália;5810.676;115140155;Colombia; +2018-11-23T17:50:31Z;Sandra;8101.323;114274133;Colombia; +2018-11-23T17:48:37Z;Júlio;878.2434;115385112;Colombia; +2018-11-23T17:13:33Z;Eduardo;2839.686;114331518;Colombia; +2018-11-23T15:55:08Z;Sandra;358.1566;115143926;Colombia; +2018-11-23T15:32:21Z;Armando;3888.582;116288571;Colombia; +2018-11-23T15:08:12Z;Eduardo;2847.259;115432882;Colombia; +2018-11-23T14:57:00Z;Nathália;1135.842;116372002;Colombia; +2018-11-23T14:51:05Z;Júlio Cesar;2973.51;114956413;Colombia; +2018-11-23T14:42:59Z;Ana;4524.816;115403522;Colombia; +2018-11-23T14:20:36Z;Sandra;1905.86;115050799;Colombia; +2018-11-23T14:15:24Z;Júlio;5769.008;114375160;Colombia; +2018-11-23T14:00:09Z;Sandra;9852.526;115159834;Colombia; +2018-11-23T13:50:27Z;Eduardo;571.866;114642881;Colombia; +2018-11-23T13:20:32Z;Armando;2450.226;115583059;Colombia; +2018-11-23T13:13:16Z;Eduardo;1915.518;116207517;Colombia; +2018-11-23T12:50:19Z;Sandra;4613.652;114869263;Colombia; +2018-11-23T12:38:25Z;Sandra;7294.737;114387584;Colombia; +2018-11-23T12:33:53Z;nathalia;1234.5;116121251;Colombia; +2018-11-23T12:29:40Z;nathalia;2361.387;114989182;Colombia; +2018-11-23T12:16:32Z;Armando;5068.239;115250485;Colombia; +2018-11-23T11:58:36Z;Eduardo;6078.745;114723274;Colombia; +2018-11-23T11:53:19Z;Ana;8504.721;114454435;Colombia; +2018-11-23T11:51:40Z;Júlio Cesar;31.87846;114717800;Colombia; +2018-11-23T11:06:27Z;Júlio Cesar;243.9354;114878302;Colombia; +2018-11-23T11:02:41Z;Ana;316.5815;116208441;Colombia; +2018-11-23T10:54:01Z;Júlio Cesar;202.5797;115495763;Colombia; +2018-11-23T10:49:39Z;Júlio Cesar;105.6358;115069065;Colombia; +2018-11-23T10:32:56Z;Júlio;4002.366;115885990;Colombia; +2018-11-23T10:21:57Z;Armando;1154.37;114372873;Colombia; +2018-11-23T10:09:03Z;Sandra;16676.49;114634852;Colombia; +2018-11-23T10:02:45Z;Eduardo;1309.687;114215390;Colombia; +2018-11-23T09:41:36Z;Eduardo;2516.793;114585560;Colombia; +2018-11-23T09:35:15Z;Ana;11623.25;115548193;Colombia; +2018-11-23T09:19:54Z;Armando;1320.95;115775936;Colombia; +2018-11-23T09:16:29Z;nathalia;3180.976;114264890;Colombia; +2018-11-23T09:13:20Z;Júlio Cesar;1451.711;114401720;Colombia; +2018-11-23T09:07:57Z;Sandra;127.1391;115763293;Colombia; +2018-11-23T08:57:29Z;Júlio;320.2934;115759713;Colombia; +2018-11-23T08:36:10Z;Ana;895.9304;115078172;Colombia; +2018-11-23T08:26:25Z;Nathália;5427.792;116040684;Colombia; +2018-11-23T08:26:11Z;Eduardo;705.8183;114567562;Colombia; +2018-11-23T08:03:43Z;Ana;10478.84;115779099;Colombia; +2018-11-23T08:02:07Z;Sandra;5436.95;115211587;Colombia; +2018-11-23T07:45:18Z;Sandra;1370.461;114837678;Colombia; +2018-11-23T07:15:23Z;Ana;3875.774;115292778;Colombia; +2018-11-23T06:55:25Z;Nathália;6634.961;115738262;Colombia; +2018-11-23T06:38:19Z;Júlio Cesar;8463.912;115047975;Colombia; +2018-11-23T06:04:00Z;Júlio Cesar;1705.193;114782971;Colombia; +2018-11-23T05:52:35Z;Nathália;1564.614;114236065;Colombia; +2018-11-23T05:40:23Z;Ana;655.3743;114365949;Colombia; +2018-11-23T04:52:17Z;Eduardo;92.47406;115478843;Colombia; +2018-11-23T04:49:24Z;Armando;1824.7;115977098;Colombia; +2018-11-23T04:47:02Z;Nathália;1247.172;115549285;Colombia; +2018-11-23T04:42:42Z;Ana;524.8627;115023628;Colombia; +2018-11-23T04:11:39Z;nathalia;1131.814;114460218;Colombia; +2018-11-23T03:43:31Z;Armando;3596.777;114601554;Colombia; +2018-11-23T03:08:19Z;Sandra;589.9871;116187490;Colombia; +2018-11-23T03:06:22Z;Júlio Cesar;2746.828;115137619;Colombia; +2018-11-23T02:50:23Z;nathalia;8098.709;115558735;Colombia; +2018-11-23T02:36:40Z;Armando;1794.331;116002607;Colombia; +2018-11-23T01:55:39Z;Júlio;5728.477;114530130;Colombia; +2018-11-23T01:22:10Z;Júlio Cesar;3547.958;114501157;Colombia; +2018-11-23T01:17:09Z;Sandra;2786.772;116243573;Colombia; +2018-11-23T00:38:12Z;Sandra;1800.277;115627232;Colombia; +2018-11-23T00:27:24Z;Júlio Cesar;2705.811;114441590;Colombia; +2018-11-23T00:10:23Z;Nathália;4247.86;115914178;Colombia; +2018-11-23T00:04:16Z;Júlio Cesar;10298.17;114208895;Colombia; +2018-11-23T00:02:31Z;Júlio Cesar;1216.848;114329118;Colombia; +2018-11-22T23:49:02Z;Sandra;4061.339;116344062;Colombia; +2018-11-22T23:45:55Z;Sandra;3722.808;115085575;Colombia; +2018-11-22T23:32:11Z;Júlio;718.8211;114606732;Colombia; +2018-11-22T23:16:49Z;Júlio;6641.174;115698089;Colombia; +2018-11-22T22:59:13Z;Ana;4437.887;115052826;Colombia; +2018-11-22T22:07:09Z;Armando;3069.873;114885958;Colombia; +2018-11-22T21:48:28Z;Júlio Cesar;4696.167;114899086;Colombia; +2018-11-22T21:30:01Z;Eduardo;63.26558;115962371;Colombia; +2018-11-22T21:09:52Z;nathalia;2993.933;115993807;Colombia; +2018-11-22T21:05:54Z;Júlio;5719.771;115035183;Colombia; +2018-11-22T20:56:19Z;Júlio;9719.817;114987213;Colombia; +2018-11-22T20:46:37Z;nathalia;945.5543;115632500;Colombia; +2018-11-22T20:41:33Z;nathalia;3708.814;116321353;Colombia; +2018-11-22T20:30:15Z;Ana;1544.099;115368246;Colombia; +2018-11-22T20:21:32Z;Sandra;2279.927;115616670;Colombia; +2018-11-22T19:46:23Z;Eduardo;5124.103;115576103;Colombia; +2018-11-22T18:59:14Z;Júlio;3552.285;115622637;Colombia; +2018-11-22T18:49:10Z;Júlio Cesar;7724.384;115172234;Colombia; +2018-11-22T18:29:21Z;Nathália;2666.657;116151757;Colombia; +2018-11-22T17:56:32Z;Sandra;3206.345;116228571;Colombia; +2018-11-22T17:56:22Z;Júlio;4446.127;116296340;Colombia; +2018-11-22T17:44:59Z;nathalia;1373.182;114343473;Colombia; +2018-11-22T17:34:44Z;Júlio Cesar;1592.765;116184329;Colombia; +2018-11-22T17:27:10Z;Eduardo;14769.65;115706425;Colombia; +2018-11-22T17:25:49Z;Júlio Cesar;375.3113;115555788;Colombia; +2018-11-22T17:21:00Z;Sandra;3965.956;115231203;Colombia; +2018-11-22T17:06:50Z;Júlio Cesar;494.1137;116389415;Colombia; +2018-11-22T16:52:54Z;Júlio Cesar;6184.134;115113114;Colombia; +2018-11-22T16:49:44Z;Nathália;8224.758;114725360;Colombia; +2018-11-22T16:49:27Z;Júlio Cesar;4538.688;115731243;Colombia; +2018-11-22T16:16:07Z;Armando;4220.608;115172532;Colombia; +2018-11-22T15:44:13Z;Eduardo;4295.312;115464246;Colombia; +2018-11-22T15:20:50Z;Armando;12410.59;114818431;Colombia; +2018-11-22T14:39:32Z;nathalia;5882.639;116059477;Colombia; +2018-11-22T14:31:03Z;Júlio;661.6124;116300022;Colombia; +2018-11-22T14:05:39Z;Ana;775.4522;116295799;Colombia; +2018-11-22T13:54:31Z;nathalia;9768.408;116084495;Colombia; +2018-11-22T13:41:53Z;Eduardo;5189.272;114211788;Colombia; +2018-11-22T13:38:35Z;Júlio Cesar;8371.163;115462452;Colombia; +2018-11-22T13:31:27Z;Sandra;2355.673;115871086;Colombia; +2018-11-22T13:24:36Z;Nathália;4551.147;114608173;Colombia; +2018-11-22T12:37:57Z;nathalia;2415.752;115393989;Colombia; +2018-11-22T12:09:41Z;Júlio;2520.053;115377758;Colombia; +2018-11-22T12:08:16Z;Júlio Cesar;3345.76;116132464;Colombia; +2018-11-22T11:38:06Z;nathalia;6022.791;115266121;Colombia; +2018-11-22T11:00:17Z;Júlio Cesar;3595.366;114450850;Colombia; +2018-11-22T10:51:01Z;Júlio Cesar;21.52411;115622017;Colombia; +2018-11-22T10:33:27Z;Armando;1378.664;114602290;Colombia; +2018-11-22T09:46:15Z;Armando;3311.804;115072765;Colombia; +2018-11-22T09:36:50Z;nathalia;527.4223;114564870;Colombia; +2018-11-22T09:16:40Z;Armando;2662.876;116242610;Colombia; +2018-11-22T09:00:35Z;Júlio Cesar;6921.156;115159150;Colombia; +2018-11-22T08:49:17Z;Eduardo;5672.805;115446608;Colombia; +2018-11-22T08:33:24Z;Sandra;4043.685;114747190;Colombia; +2018-11-22T08:09:17Z;Armando;4364.884;114663507;Colombia; +2018-11-22T08:01:16Z;Nathália;5276.528;116241558;Colombia; +2018-11-22T07:50:17Z;Armando;3522.138;114219072;Colombia; +2018-11-22T07:43:13Z;nathalia;3180.338;115113230;Colombia; +2018-11-22T07:43:02Z;Ana;396.9614;116347361;Colombia; +2018-11-22T06:52:13Z;Eduardo;254.5325;115125903;Colombia; +2018-11-22T06:36:30Z;Sandra;311.452;115330639;Colombia; +2018-11-22T06:20:50Z;Armando;1939.171;115818774;Colombia; +2018-11-22T06:06:00Z;Sandra;1618.215;115943945;Colombia; +2018-11-22T05:48:38Z;Sandra;4777.219;114897617;Colombia; +2018-11-22T05:17:54Z;Nathália;1717.518;114566839;Colombia; +2018-11-22T04:42:13Z;Armando;40.19536;114476837;Colombia; +2018-11-22T04:21:55Z;Júlio;2482.76;114839883;Colombia; +2018-11-22T04:16:16Z;Nathália;1196.11;116318323;Colombia; +2018-11-22T02:14:15Z;Sandra;4555.899;115889205;Colombia; +2018-11-22T01:54:04Z;Júlio Cesar;1344.131;115903001;Colombia; +2018-11-22T01:49:10Z;Sandra;146.5895;114903211;Colombia; +2018-11-22T01:35:24Z;Sandra;3932.76;114307056;Colombia; +2018-11-22T01:06:34Z;Nathália;659.9751;115029628;Colombia; +2018-11-22T01:05:54Z;Júlio Cesar;4659.158;115033061;Colombia; +2018-11-22T00:15:25Z;Eduardo;4798.065;114447118;Colombia; +2018-11-21T23:40:24Z;Armando;211.9418;115562361;Colombia; +2018-11-21T23:24:20Z;nathalia;3885.54;115789830;Colombia; +2018-11-21T23:21:02Z;Júlio;2212.781;116175468;Colombia; +2018-11-21T23:19:36Z;Ana;288.2747;116165017;Colombia; +2018-11-21T23:13:05Z;nathalia;3431.808;114682075;Colombia; +2018-11-21T23:12:45Z;Ana;2358.415;115043665;Colombia; +2018-11-21T23:04:43Z;Ana;916.9821;116236114;Colombia; +2018-11-21T22:56:44Z;Júlio Cesar;62.26592;115116761;Colombia; +2018-11-21T22:50:53Z;Eduardo;3395.758;115676950;Colombia; +2018-11-21T22:48:09Z;Eduardo;4853.893;114967287;Colombia; +2018-11-21T22:46:11Z;Júlio Cesar;2011.823;115702331;Colombia; +2018-11-21T22:34:52Z;Armando;1030.916;115941248;Colombia; +2018-11-21T22:28:35Z;nathalia;3984.646;115567370;Colombia; +2018-11-21T22:27:44Z;Armando;260.019;115633826;Colombia; +2018-11-21T22:22:19Z;Sandra;2862.43;115766004;Colombia; +2018-11-21T22:14:30Z;Ana;731.5583;115469688;Colombia; +2018-11-21T21:56:19Z;Sandra;627.4984;115738402;Colombia; +2018-11-21T21:45:23Z;Júlio;3040.136;115110494;Colombia; +2018-11-21T21:36:49Z;Eduardo;2404.305;114801471;Colombia; +2018-11-21T21:27:24Z;Armando;271.9652;115996646;Colombia; +2018-11-21T21:00:10Z;Eduardo;8897.077;114757059;Colombia; +2018-11-21T20:59:44Z;Nathália;7615.356;116192639;Colombia; +2018-11-21T20:50:21Z;Júlio;315.4268;115826405;Colombia; +2018-11-21T20:27:09Z;Sandra;680.772;114273776;Colombia; +2018-11-21T19:30:54Z;Júlio;10.1695;115606599;Colombia; +2018-11-21T19:19:03Z;Júlio;4922.495;115871102;Colombia; +2018-11-21T18:21:26Z;Nathália;1546.982;114874570;Colombia; +2018-11-21T18:14:13Z;Nathália;2519.412;115899966;Colombia; +2018-11-21T18:13:21Z;nathalia;120.4914;114992545;Colombia; +2018-11-21T17:23:50Z;Eduardo;631.1033;115642158;Colombia; +2018-11-21T17:13:45Z;Ana;5764.148;115247243;Colombia; +2018-11-21T17:12:23Z;Ana;5205.555;116179042;Colombia; +2018-11-21T17:02:25Z;Nathália;4147.299;116242949;Colombia; +2018-11-21T16:39:52Z;Sandra;9356.514;115692308;Colombia; +2018-11-21T16:32:53Z;Eduardo;4264.66;115957170;Colombia; +2018-11-21T16:18:23Z;Sandra;1551.736;116178447;Colombia; +2018-11-21T16:04:03Z;nathalia;3432.822;114603059;Colombia; +2018-11-21T15:52:44Z;Ana;2902.314;114918846;Colombia; +2018-11-21T15:42:29Z;Armando;12965.56;115157187;Colombia; +2018-11-21T15:38:12Z;Armando;400.0189;114662021;Colombia; +2018-11-21T14:43:11Z;Armando;2327.243;116330593;Colombia; +2018-11-21T14:38:10Z;Eduardo;3120.325;116399325;Colombia; +2018-11-21T14:35:12Z;Eduardo;939.5531;114314689;Colombia; +2018-11-21T14:23:31Z;Armando;296.4077;114606119;Colombia; +2018-11-21T14:21:32Z;Armando;645.805;114773216;Colombia; +2018-11-21T14:04:09Z;Sandra;4124.098;116392079;Colombia; +2018-11-21T13:54:15Z;Júlio Cesar;2154.905;115088690;Colombia; +2018-11-21T13:52:46Z;Armando;577.4278;115487119;Colombia; +2018-11-21T13:25:49Z;Júlio;396.8033;115658539;Colombia; +2018-11-21T13:21:36Z;Eduardo;10323.88;115198262;Colombia; +2018-11-21T13:13:11Z;Júlio Cesar;18.76464;115091261;Colombia; +2018-11-21T13:10:07Z;Sandra;6715.512;114875587;Colombia; +2018-11-21T12:58:29Z;Nathália;312.6511;115827289;Colombia; +2018-11-21T12:54:36Z;Armando;1075.021;115031208;Colombia; +2018-11-21T12:53:19Z;Nathália;352.2498;115656062;Colombia; +2018-11-21T12:24:07Z;Ana;7382.3;115950296;Colombia; +2018-11-21T12:09:45Z;Sandra;3708.693;114654551;Colombia; +2018-11-21T11:57:16Z;Sandra;1830.478;116360016;Colombia; +2018-11-21T11:51:53Z;Armando;7673.175;115207441;Colombia; +2018-11-21T11:50:15Z;Sandra;7947.295;114697742;Colombia; +2018-11-21T11:38:12Z;Júlio Cesar;3549.271;114502586;Colombia; +2018-11-21T11:22:18Z;Ana;1400.615;114678123;Colombia; +2018-11-21T11:14:39Z;Eduardo;1940.089;116392044;Colombia; +2018-11-21T11:14:33Z;Sandra;2560.162;114354596;Colombia; +2018-11-21T10:08:28Z;Júlio Cesar;1649.647;115132509;Colombia; +2018-11-21T10:02:21Z;Armando;8718.866;116083825;Colombia; +2018-11-21T09:51:31Z;Ana;437.9904;115615502;Colombia; +2018-11-21T09:41:37Z;Júlio Cesar;1498.79;114786369;Colombia; +2018-11-21T08:29:59Z;Nathália;205.4315;115219454;Colombia; +2018-11-21T07:44:06Z;Júlio;1015.171;114354122;Colombia; +2018-11-21T07:35:28Z;nathalia;117.9427;115768278;Colombia; +2018-11-21T07:33:45Z;Nathália;4588.286;114282570;Colombia; +2018-11-21T07:25:18Z;Sandra;1123.621;115854955;Colombia; +2018-11-21T07:24:56Z;Ana;4363.496;115458756;Colombia; +2018-11-21T06:59:01Z;Eduardo;3649.742;114532235;Colombia; +2018-11-21T06:19:27Z;Eduardo;4189.416;115299392;Colombia; +2018-11-21T06:05:16Z;Eduardo;7155.061;115711229;Colombia; +2018-11-21T05:58:08Z;Nathália;3414.446;115494186;Colombia; +2018-11-21T05:24:10Z;Ana;6152.156;115254345;Colombia; +2018-11-21T05:01:08Z;Júlio Cesar;3902.947;114582597;Colombia; +2018-11-21T04:54:53Z;Júlio;13577.78;114455544;Colombia; +2018-11-21T04:53:31Z;Nathália;9252.075;115650965;Colombia; +2018-11-21T04:48:16Z;Nathália;4756.972;115032895;Colombia; +2018-11-21T04:37:12Z;nathalia;884.6706;115254697;Colombia; +2018-11-21T04:37:07Z;Nathália;4434.361;114672902;Colombia; +2018-11-21T04:23:12Z;Júlio;2021.323;115648918;Colombia; +2018-11-21T04:16:48Z;Sandra;3981.645;116156067;Colombia; +2018-11-21T04:15:40Z;Nathália;707.7848;116162854;Colombia; +2018-11-21T04:04:12Z;Nathália;290.6914;115629473;Colombia; +2018-11-21T04:02:37Z;Júlio;6249.016;114364867;Colombia; +2018-11-21T03:36:06Z;Júlio;5954.111;114990832;Colombia; +2018-11-21T03:22:43Z;Ana;176.9333;115416702;Colombia; +2018-11-21T02:48:37Z;nathalia;3073.322;115468534;Colombia; +2018-11-21T02:00:10Z;nathalia;5722.315;114279112;Colombia; +2018-11-21T01:30:38Z;Sandra;5038.002;115644766;Colombia; +2018-11-21T01:24:14Z;Nathália;4089.815;114784649;Colombia; +2018-11-21T01:23:15Z;Júlio;2007.979;114369654;Colombia; +2018-11-21T00:57:43Z;Armando;3952.6;115564720;Colombia; +2018-11-21T00:55:42Z;Eduardo;11153.63;114295534;Colombia; +2018-11-21T00:55:27Z;Ana;1567.382;115875613;Colombia; +2018-11-21T00:53:28Z;Sandra;683.3626;116012128;Colombia; +2018-11-21T00:16:40Z;Júlio;2311.096;115501788;Colombia; +2018-11-21T00:12:13Z;Sandra;1066.275;115822983;Colombia; +2018-11-21T00:02:55Z;Júlio;640.3435;115442825;Colombia; +2018-11-20T23:29:55Z;nathalia;236.5359;115443637;Colombia; +2018-11-20T22:46:54Z;Eduardo;3239.762;115827539;Colombia; +2018-11-20T22:15:25Z;Sandra;10923.84;115974882;Colombia; +2018-11-20T22:10:47Z;Eduardo;2109.821;114256290;Colombia; +2018-11-20T22:04:46Z;Júlio;10853.39;115264089;Colombia; +2018-11-20T20:25:56Z;Júlio;1980.486;115641769;Colombia; +2018-11-20T20:25:38Z;Nathália;3400.968;115342218;Colombia; +2018-11-20T20:04:48Z;Ana;2863.686;115044121;Colombia; +2018-11-20T20:00:54Z;Nathália;88.08591;114869921;Colombia; +2018-11-20T19:49:38Z;Nathália;183.5247;114640672;Colombia; +2018-11-20T19:49:16Z;nathalia;2143.714;114404932;Colombia; +2018-11-20T19:40:00Z;Sandra;13106.86;114851363;Colombia; +2018-11-20T19:39:38Z;Sandra;1601.815;115808608;Colombia; +2018-11-20T19:11:23Z;Júlio;575.1436;115581740;Colombia; +2018-11-20T18:57:44Z;Sandra;875.5247;114691356;Colombia; +2018-11-20T18:55:21Z;Júlio Cesar;2511.988;115785045;Colombia; +2018-11-20T18:40:38Z;Sandra;2221.526;114359402;Colombia; +2018-11-20T18:34:10Z;Júlio Cesar;2406.837;114969920;Colombia; +2018-11-20T18:33:21Z;nathalia;7743.647;114742166;Colombia; +2018-11-20T18:32:45Z;Júlio;1708.917;114434430;Colombia; +2018-11-20T18:32:23Z;nathalia;100.297;114673577;Colombia; +2018-11-20T18:04:14Z;Armando;1024.733;115404572;Colombia; +2018-11-20T18:03:55Z;Ana;456.5387;115694703;Colombia; +2018-11-20T18:02:07Z;Nathália;644.2328;115663153;Colombia; +2018-11-20T17:55:57Z;Armando;6798.053;115808301;Colombia; +2018-11-20T17:40:18Z;Nathália;5116.501;116114687;Colombia; +2018-11-20T17:39:49Z;nathalia;2055.647;115429293;Colombia; +2018-11-20T17:33:27Z;Júlio;3938.49;114903085;Colombia; +2018-11-20T17:30:22Z;Nathália;7050.73;116348113;Colombia; +2018-11-20T17:20:56Z;Júlio Cesar;4444.114;116109096;Colombia; +2018-11-20T17:13:13Z;nathalia;11220.11;115810475;Colombia; +2018-11-20T16:54:03Z;Ana;1765.726;115056604;Colombia; +2018-11-20T16:46:14Z;nathalia;1596.978;115827045;Colombia; +2018-11-20T16:34:45Z;Júlio Cesar;137.4904;115133345;Colombia; +2018-11-20T16:22:39Z;Nathália;576.4717;114807875;Colombia; +2018-11-20T16:22:04Z;nathalia;676.4055;114978971;Colombia; +2018-11-20T16:08:10Z;nathalia;1862.204;114541603;Colombia; +2018-11-20T15:29:52Z;Sandra;3963.8;114282394;Colombia; +2018-11-20T15:17:23Z;Sandra;9291.129;115570823;Colombia; +2018-11-20T14:57:31Z;Júlio Cesar;3390.279;114327846;Colombia; +2018-11-20T14:51:37Z;Nathália;10040.38;115086941;Colombia; +2018-11-20T14:49:06Z;Júlio Cesar;1813.018;115321413;Colombia; +2018-11-20T14:07:58Z;Eduardo;1911.904;115695829;Colombia; +2018-11-20T14:01:48Z;Ana;1724.19;116005433;Colombia; +2018-11-20T13:57:59Z;nathalia;2981.922;115241820;Colombia; +2018-11-20T13:38:30Z;Júlio;1903.306;114507862;Colombia; +2018-11-20T13:27:24Z;Armando;8640.371;114442985;Colombia; +2018-11-20T13:21:59Z;Júlio Cesar;287.2745;116279900;Colombia; +2018-11-20T13:20:54Z;Sandra;2979.176;115485957;Colombia; +2018-11-20T13:01:38Z;Júlio Cesar;33.15591;114781930;Colombia; +2018-11-20T12:40:03Z;nathalia;3096.666;116116124;Colombia; +2018-11-20T12:38:28Z;Júlio Cesar;3330.545;115744913;Colombia; +2018-11-20T12:21:10Z;nathalia;5059.729;115789804;Colombia; +2018-11-20T11:51:47Z;Júlio;165.0712;116179722;Colombia; +2018-11-20T11:43:42Z;Eduardo;799.8047;114539295;Colombia; +2018-11-20T11:42:29Z;Eduardo;3385.63;115293749;Colombia; +2018-11-20T11:41:52Z;Sandra;3944.572;114776144;Colombia; +2018-11-20T11:39:00Z;Júlio;2579.591;114500089;Colombia; +2018-11-20T10:39:39Z;Eduardo;262.3733;114569469;Colombia; +2018-11-20T09:29:43Z;nathalia;2023.353;116041743;Colombia; +2018-11-20T08:57:42Z;nathalia;640.5345;115573145;Colombia; +2018-11-20T08:55:22Z;Júlio;3035.756;114368831;Colombia; +2018-11-20T08:45:30Z;Armando;4633.133;115196066;Colombia; +2018-11-20T08:27:19Z;Armando;767.9483;114338573;Colombia; +2018-11-20T07:57:37Z;Ana;457.7602;116143925;Colombia; +2018-11-20T07:27:37Z;Eduardo;488.6971;115898156;Colombia; +2018-11-20T07:21:17Z;Armando;2224.435;115760791;Colombia; +2018-11-20T06:03:56Z;nathalia;959.4203;114459695;Colombia; +2018-11-20T05:50:18Z;Nathália;3412.808;115917321;Colombia; +2018-11-20T05:43:44Z;Eduardo;703.5548;116045859;Colombia; +2018-11-20T05:04:58Z;Júlio Cesar;262.9548;116358282;Colombia; +2018-11-20T04:30:26Z;Nathália;5062.208;116118147;Colombia; +2018-11-20T04:22:07Z;Ana;1704.424;116136757;Colombia; +2018-11-20T04:02:22Z;Nathália;1560.999;115783862;Colombia; +2018-11-20T03:48:59Z;Eduardo;680.7435;115883817;Colombia; +2018-11-20T03:14:21Z;Júlio Cesar;1771.424;115010817;Colombia; +2018-11-20T03:09:43Z;Júlio;3731.653;114709648;Colombia; +2018-11-20T03:02:16Z;Sandra;787.893;115515402;Colombia; +2018-11-20T03:00:09Z;Sandra;389.7657;114445803;Colombia; +2018-11-20T02:44:38Z;Nathália;65.47264;116248239;Colombia; +2018-11-20T02:44:17Z;Sandra;4507.634;116011047;Colombia; +2018-11-20T02:21:54Z;Júlio Cesar;5677.659;114232120;Colombia; +2018-11-20T02:14:58Z;nathalia;5054.569;116164598;Colombia; +2018-11-20T02:11:41Z;Júlio;5693.75;114910596;Colombia; +2018-11-20T01:40:45Z;Sandra;1098.063;115148395;Colombia; +2018-11-20T01:36:23Z;nathalia;341.2012;114394968;Colombia; +2018-11-20T01:26:50Z;Nathália;1356.595;114850471;Colombia; +2018-11-20T01:18:46Z;Sandra;3017.736;115871020;Colombia; +2018-11-20T01:14:09Z;nathalia;808.8132;114339678;Colombia; +2018-11-20T01:13:25Z;Nathália;20968.6;114839218;Colombia; +2018-11-20T01:11:13Z;Júlio;1014.966;116351723;Colombia; +2018-11-20T00:23:21Z;Júlio;30.55986;115975653;Colombia; +2018-11-19T23:43:29Z;Sandra;3874.594;116115917;Colombia; +2018-11-19T23:43:00Z;Sandra;10337.29;115187296;Colombia; +2018-11-19T23:37:31Z;Nathália;1661.549;115054648;Colombia; +2018-11-19T23:18:29Z;Nathália;6476.241;115230708;Colombia; +2018-11-19T23:18:25Z;Eduardo;8079.657;116304649;Colombia; +2018-11-19T22:52:49Z;Júlio Cesar;1427.345;115329489;Colombia; +2018-11-19T22:46:35Z;Ana;940.3509;116312223;Colombia; +2018-11-19T22:41:52Z;Sandra;622.0566;115830196;Colombia; +2018-11-19T22:22:26Z;Júlio Cesar;7886.397;114563709;Colombia; +2018-11-19T22:19:13Z;Armando;151.9191;115752533;Colombia; +2018-11-19T21:58:26Z;Ana;1325.698;114749469;Colombia; +2018-11-19T21:16:25Z;Júlio Cesar;9039.956;116376934;Colombia; +2018-11-19T21:14:43Z;Júlio Cesar;3729.814;114474571;Colombia; +2018-11-19T20:56:14Z;Júlio Cesar;1515.491;115333281;Colombia; +2018-11-19T20:53:40Z;Nathália;112.9674;114944573;Colombia; +2018-11-19T20:38:34Z;Armando;211.5739;115179930;Colombia; +2018-11-19T20:31:23Z;Nathália;6510.304;114274512;Colombia; +2018-11-19T20:24:55Z;Armando;4005.118;115544941;Colombia; +2018-11-19T20:12:25Z;nathalia;11104.38;114874890;Colombia; +2018-11-19T19:48:56Z;Armando;547.9653;116161327;Colombia; +2018-11-19T19:09:28Z;Júlio Cesar;5637.131;115290910;Colombia; +2018-11-19T18:58:13Z;Sandra;1309.843;116385109;Colombia; +2018-11-19T18:54:37Z;Júlio;4575.093;115367727;Colombia; +2018-11-19T18:33:55Z;Armando;5580.309;115310240;Colombia; +2018-11-19T18:30:24Z;Eduardo;2386.497;116016914;Colombia; +2018-11-19T18:23:30Z;Júlio;4338.597;115988509;Colombia; +2018-11-19T18:08:40Z;Júlio;159.0736;114321131;Colombia; +2018-11-19T17:39:31Z;Eduardo;2439.808;115851663;Colombia; +2018-11-19T17:24:57Z;Eduardo;3026.521;114344861;Colombia; +2018-11-19T17:02:12Z;Sandra;117.3218;114530323;Colombia; +2018-11-19T16:50:11Z;Sandra;722.6101;116341030;Colombia; +2018-11-19T16:40:48Z;Sandra;1212.45;114825975;Colombia; +2018-11-19T16:02:15Z;Ana;51.07896;115046979;Colombia; +2018-11-19T15:54:20Z;Nathália;849.0232;116391161;Colombia; +2018-11-19T15:29:14Z;nathalia;2737.873;114321011;Colombia; +2018-11-19T14:54:30Z;nathalia;984.0742;114862072;Colombia; +2018-11-19T14:42:39Z;Júlio;3558.256;114825535;Colombia; +2018-11-19T14:42:10Z;Sandra;4589.317;114776836;Colombia; +2018-11-19T14:40:42Z;Júlio Cesar;2979.834;114958563;Colombia; +2018-11-19T13:52:15Z;Armando;1108.609;115136237;Colombia; +2018-11-19T13:38:57Z;Nathália;2295.216;116123063;Colombia; +2018-11-19T13:10:36Z;Eduardo;7050.669;115673210;Colombia; +2018-11-19T12:50:58Z;Ana;1185.573;115760642;Colombia; +2018-11-19T12:14:54Z;Júlio;7295.026;115327495;Colombia; +2018-11-19T12:10:34Z;Júlio;677.8602;115369041;Colombia; +2018-11-19T12:00:00Z;nathalia;335.732;115622918;Colombia; +2018-11-19T11:22:22Z;Júlio;563.5186;115969188;Colombia; +2018-11-19T11:16:48Z;Sandra;672.9202;115023125;Colombia; +2018-11-19T10:54:59Z;Nathália;2157.486;115448545;Colombia; +2018-11-19T10:34:39Z;Ana;872.6968;115883115;Colombia; +2018-11-19T10:25:26Z;Nathália;4300.11;115119091;Colombia; +2018-11-19T10:15:21Z;Armando;444.6421;115903255;Colombia; +2018-11-19T09:42:06Z;Eduardo;2575.977;115860349;Colombia; +2018-11-19T09:29:21Z;Nathália;4356.755;114368723;Colombia; +2018-11-19T08:41:53Z;Nathália;438.5126;114616275;Colombia; +2018-11-19T08:41:21Z;nathalia;9379.742;115172416;Colombia; +2018-11-19T08:32:07Z;Júlio Cesar;17113.99;116027189;Colombia; +2018-11-19T08:28:32Z;Nathália;430.7367;115179879;Colombia; +2018-11-19T08:28:08Z;Nathália;6350.192;116214287;Colombia; +2018-11-19T08:06:59Z;nathalia;760.3296;115960602;Colombia; +2018-11-19T07:28:50Z;Júlio;9503.565;114207882;Colombia; +2018-11-19T07:04:57Z;Nathália;5127.224;114998318;Colombia; +2018-11-19T06:39:39Z;Armando;3254.665;114610188;Colombia; +2018-11-19T06:24:29Z;Nathália;9445.226;115953842;Colombia; +2018-11-19T06:12:32Z;Sandra;9364.414;115978185;Colombia; +2018-11-19T06:04:34Z;Nathália;1530.554;115540922;Colombia; +2018-11-19T05:57:28Z;Sandra;12426.65;114280541;Colombia; +2018-11-19T05:49:24Z;Nathália;559.3975;116202774;Colombia; +2018-11-19T05:48:31Z;Nathália;352.1966;115719749;Colombia; +2018-11-19T05:00:39Z;Júlio;6834.245;114775053;Colombia; +2018-11-19T04:46:41Z;nathalia;2495.738;115963750;Colombia; +2018-11-19T04:36:08Z;Júlio;395.7294;115464391;Colombia; +2018-11-19T04:24:46Z;Sandra;1023.534;115597811;Colombia; +2018-11-19T04:06:04Z;Ana;485.1225;116340974;Colombia; +2018-11-19T04:03:08Z;Júlio Cesar;699.0397;114715028;Colombia; +2018-11-19T03:58:46Z;Sandra;241.9004;116003126;Colombia; +2018-11-19T03:23:59Z;Júlio;1613.545;115161924;Colombia; +2018-11-19T03:00:26Z;Ana;588.6903;114668795;Colombia; +2018-11-19T02:49:09Z;Sandra;1133.487;116204172;Colombia; +2018-11-19T02:14:38Z;Eduardo;700.2562;116319076;Colombia; +2018-11-19T02:08:47Z;Júlio;1771.337;116137525;Colombia; +2018-11-19T02:07:28Z;Sandra;4658.223;114857861;Colombia; +2018-11-19T01:29:53Z;Nathália;792.5746;114418879;Colombia; +2018-11-19T01:07:04Z;Sandra;227.6753;114658780;Colombia; +2018-11-19T00:49:10Z;Ana;2476.486;114209793;Colombia; +2018-11-19T00:46:13Z;nathalia;1890.882;115330213;Colombia; +2018-11-19T00:38:44Z;Júlio;1030.634;115138722;Colombia; +2018-11-19T00:27:30Z;nathalia;1059.858;115609764;Colombia; +2018-11-19T00:08:07Z;Sandra;4901.467;115955770;Colombia; +2018-11-19T00:01:25Z;Eduardo;4762.89;115816090;Colombia; +2018-11-18T23:47:05Z;Armando;3811.011;114352338;Colombia; +2018-11-18T23:46:01Z;Eduardo;483.1601;114501286;Colombia; +2018-11-18T22:33:42Z;Armando;1218.981;115462684;Colombia; +2018-11-18T22:31:09Z;nathalia;6957.287;114504267;Colombia; +2018-11-18T22:04:34Z;Eduardo;7728.155;116303880;Colombia; +2018-11-18T21:43:23Z;Armando;9098.702;115253918;Colombia; +2018-11-18T21:27:50Z;Nathália;126.4794;115307726;Colombia; +2018-11-18T20:56:33Z;Sandra;4584.336;115325217;Colombia; +2018-11-18T20:53:52Z;nathalia;3407.497;114625003;Colombia; +2018-11-18T20:48:23Z;Júlio Cesar;1461.455;115139738;Colombia; +2018-11-18T20:19:18Z;Armando;1495.831;115449389;Colombia; +2018-11-18T20:16:10Z;Nathália;647.9663;116023958;Colombia; +2018-11-18T20:14:54Z;Nathália;5444.204;114247393;Colombia; +2018-11-18T20:08:27Z;Nathália;2309.857;115401173;Colombia; +2018-11-18T19:57:06Z;nathalia;625.8334;115537323;Colombia; +2018-11-18T19:52:20Z;Nathália;4950.228;114360421;Colombia; +2018-11-18T19:26:50Z;Sandra;1448.372;114771639;Colombia; +2018-11-18T19:15:48Z;Sandra;7498.256;114468456;Colombia; +2018-11-18T19:08:31Z;Júlio Cesar;5327.127;114461029;Colombia; +2018-11-18T18:45:32Z;Nathália;125.342;114594091;Colombia; +2018-11-18T18:42:53Z;Júlio;1509.674;115495249;Colombia; +2018-11-18T17:19:50Z;Júlio;500.0798;114350018;Colombia; +2018-11-18T17:13:51Z;Júlio Cesar;1946.26;115264717;Colombia; +2018-11-18T17:02:05Z;Eduardo;545.8296;114344941;Colombia; +2018-11-18T17:00:35Z;Júlio;203.4463;116137816;Colombia; +2018-11-18T16:50:27Z;Ana;607.3561;115344114;Colombia; +2018-11-18T16:36:03Z;Júlio Cesar;1784.309;115281043;Colombia; +2018-11-18T16:28:46Z;Armando;689.8021;115371969;Colombia; +2018-11-18T16:16:24Z;Nathália;288.6605;116072215;Colombia; +2018-11-18T16:10:45Z;Eduardo;258.219;115659168;Colombia; +2018-11-18T15:49:25Z;Nathália;2470.193;115015192;Colombia; +2018-11-18T15:23:16Z;Armando;259.1711;114259052;Colombia; +2018-11-18T15:03:12Z;Armando;5326.356;114483771;Colombia; +2018-11-18T15:00:32Z;Armando;1210.404;114314565;Colombia; +2018-11-18T14:38:46Z;Júlio Cesar;4292.044;116114083;Colombia; +2018-11-18T14:36:11Z;Júlio;950.6483;114292523;Colombia; +2018-11-18T14:28:26Z;Nathália;6230.47;116225274;Colombia; +2018-11-18T14:17:50Z;Eduardo;2606.234;114260787;Colombia; +2018-11-18T13:52:05Z;Eduardo;383.3099;115955409;Colombia; +2018-11-18T13:26:34Z;Júlio;10867.04;116229076;Colombia; +2018-11-18T13:05:09Z;Eduardo;2902.252;114742716;Colombia; +2018-11-18T12:59:24Z;Sandra;4253.174;114322071;Colombia; +2018-11-18T12:58:08Z;Armando;3248.685;115651545;Colombia; +2018-11-18T12:26:15Z;Armando;519.6098;115881393;Colombia; +2018-11-18T12:22:03Z;nathalia;390.0127;114471197;Colombia; +2018-11-18T11:29:22Z;Nathália;2982.341;116065871;Colombia; +2018-11-18T11:25:06Z;nathalia;2098.773;115532335;Colombia; +2018-11-18T10:49:55Z;Ana;1468.774;115392137;Colombia; +2018-11-18T10:48:49Z;Ana;1357.498;114267227;Colombia; +2018-11-18T10:23:48Z;Nathália;3566.945;114719462;Colombia; +2018-11-18T10:05:40Z;Eduardo;7475.264;114224705;Colombia; +2018-11-18T09:10:35Z;Eduardo;736.4177;116028524;Colombia; +2018-11-18T08:45:51Z;Ana;4226.261;116374006;Colombia; +2018-11-18T08:39:49Z;Ana;2345.823;115235743;Colombia; +2018-11-18T08:17:27Z;Júlio Cesar;3101.508;114204418;Colombia; +2018-11-18T08:13:27Z;Júlio Cesar;6259.296;114935425;Colombia; +2018-11-18T07:51:49Z;nathalia;9265.154;115498126;Colombia; +2018-11-18T07:38:37Z;Nathália;5575.97;115994356;Colombia; +2018-11-18T07:33:51Z;Sandra;911.2562;116222946;Colombia; +2018-11-18T07:24:29Z;Ana;57.39407;116236194;Colombia; +2018-11-18T06:58:58Z;Júlio;7971.702;115732482;Colombia; +2018-11-18T06:55:31Z;nathalia;608.7547;114892445;Colombia; +2018-11-18T06:47:53Z;Júlio;15230.64;115335198;Colombia; +2018-11-18T06:19:50Z;Júlio Cesar;710.9522;114828327;Colombia; +2018-11-18T06:19:49Z;nathalia;1865.372;114222451;Colombia; +2018-11-18T05:55:58Z;Ana;4450.074;115135300;Colombia; +2018-11-18T05:31:49Z;Júlio Cesar;3712.805;114992912;Colombia; +2018-11-18T05:28:42Z;Ana;4976.705;115033312;Colombia; +2018-11-18T04:56:43Z;Júlio Cesar;44.90074;115673437;Colombia; +2018-11-18T04:31:17Z;Ana;92.92069;115204355;Colombia; +2018-11-18T04:21:36Z;Nathália;4228.28;115847532;Colombia; +2018-11-18T04:08:09Z;nathalia;6302.578;115675816;Colombia; +2018-11-18T04:02:51Z;Armando;1472.072;114391003;Colombia; +2018-11-18T03:50:54Z;Sandra;5317.445;115977820;Colombia; +2018-11-18T03:39:36Z;Armando;621.296;115355592;Colombia; +2018-11-18T03:39:08Z;Eduardo;2291.884;115635868;Colombia; +2018-11-18T03:19:49Z;Nathália;990.8055;114219985;Colombia; +2018-11-18T03:03:11Z;Sandra;4878.273;115362353;Colombia; +2018-11-18T02:58:51Z;Júlio Cesar;229.032;114750775;Colombia; +2018-11-18T02:55:11Z;Júlio Cesar;3120.184;115157433;Colombia; +2018-11-18T02:49:25Z;Nathália;2801.758;114847496;Colombia; +2018-11-18T02:26:53Z;Sandra;1937.626;116059938;Colombia; +2018-11-18T02:19:43Z;Ana;2043.799;114450314;Colombia; +2018-11-18T02:13:12Z;Eduardo;14817.9;116158769;Colombia; +2018-11-18T02:12:56Z;Nathália;1568.105;115799880;Colombia; +2018-11-18T02:03:58Z;nathalia;7213.115;114806534;Colombia; +2018-11-18T01:56:19Z;Júlio;8360.055;114717973;Colombia; +2018-11-18T01:38:14Z;Nathália;681.446;116276984;Colombia; +2018-11-18T00:47:41Z;Júlio Cesar;2642.504;114990640;Colombia; +2018-11-18T00:41:14Z;Nathália;417.8381;114826722;Colombia; +2018-11-18T00:33:53Z;nathalia;742.3303;114592084;Colombia; +2018-11-18T00:24:46Z;Júlio;15682.56;115759583;Colombia; +2018-11-18T00:23:44Z;Júlio Cesar;3109.934;115640059;Colombia; +2018-11-17T23:51:08Z;Sandra;631.0943;115814747;Colombia; +2018-11-17T23:36:21Z;Armando;7161.344;115910022;Colombia; +2018-11-17T23:11:35Z;Eduardo;509.1924;115000070;Colombia; +2018-11-17T22:59:08Z;Ana;1319.872;115204409;Colombia; +2018-11-17T22:54:21Z;Armando;69.35116;116219810;Colombia; +2018-11-17T22:33:07Z;Eduardo;1287.722;114797339;Colombia; +2018-11-17T22:29:19Z;Júlio Cesar;1968.725;114528544;Colombia; +2018-11-17T21:58:32Z;Armando;11750.13;115123114;Colombia; +2018-11-17T21:29:21Z;Armando;1525.148;114651584;Colombia; +2018-11-17T21:16:43Z;Júlio Cesar;863.351;114862381;Colombia; +2018-11-17T21:10:16Z;Júlio;480.3313;115665247;Colombia; +2018-11-17T20:45:16Z;nathalia;7155.469;114747497;Colombia; +2018-11-17T20:45:04Z;Ana;418.0462;115198418;Colombia; +2018-11-17T20:17:25Z;Júlio;1866.222;114920010;Colombia; +2018-11-17T20:13:59Z;nathalia;1787.964;115771250;Colombia; +2018-11-17T19:54:16Z;Júlio Cesar;3752.891;115036880;Colombia; +2018-11-17T19:50:18Z;Sandra;5810.391;114250214;Colombia; +2018-11-17T19:45:51Z;Júlio Cesar;1108.827;115512405;Colombia; +2018-11-17T19:26:39Z;Armando;1046.405;115930718;Colombia; +2018-11-17T19:16:05Z;Armando;2242.337;116043904;Colombia; +2018-11-17T19:07:17Z;Nathália;762.9241;115000665;Colombia; +2018-11-17T19:04:16Z;Júlio Cesar;620.5022;114526227;Colombia; +2018-11-17T18:54:00Z;Armando;6865.985;115618032;Colombia; +2018-11-17T18:52:49Z;Júlio;2892.864;115687252;Colombia; +2018-11-17T18:19:54Z;Júlio;1636.034;116298767;Colombia; +2018-11-17T17:41:23Z;Ana;1857.943;114274467;Colombia; +2018-11-17T17:22:16Z;nathalia;4927.6;114287499;Colombia; +2018-11-17T17:18:21Z;Júlio;4303.285;115745675;Colombia; +2018-11-17T17:01:58Z;Júlio Cesar;1054.59;114316148;Colombia; +2018-11-17T16:24:57Z;Eduardo;8979.227;115779226;Colombia; +2018-11-17T16:02:30Z;Júlio;1141.849;115155859;Colombia; +2018-11-17T15:21:36Z;Júlio Cesar;4910.059;115129623;Colombia; +2018-11-17T15:10:36Z;Júlio Cesar;117.0156;114208883;Colombia; +2018-11-17T14:47:59Z;Armando;10754.04;114658926;Colombia; +2018-11-17T14:25:20Z;Júlio Cesar;1888.761;115558187;Colombia; +2018-11-17T14:11:12Z;nathalia;6752.77;114333151;Colombia; +2018-11-17T14:02:27Z;Nathália;7493.605;115969539;Colombia; +2018-11-17T13:51:44Z;Ana;1246.431;116228677;Colombia; +2018-11-17T13:45:31Z;Nathália;4680.366;115925826;Colombia; +2018-11-17T13:35:03Z;Júlio;2423.154;114649806;Colombia; +2018-11-17T13:29:15Z;Ana;661.0593;114566664;Colombia; +2018-11-17T13:10:57Z;Ana;4431.985;114273509;Colombia; +2018-11-17T13:07:12Z;Ana;15205.03;115702326;Colombia; +2018-11-17T12:46:12Z;Eduardo;4150.244;114884017;Colombia; +2018-11-17T11:53:38Z;Nathália;8128.519;116050064;Colombia; +2018-11-17T11:51:56Z;Sandra;11020.17;115131915;Colombia; +2018-11-17T11:24:49Z;Júlio Cesar;3695.426;114266724;Colombia; +2018-11-17T11:13:27Z;Ana;8459.706;115740906;Colombia; +2018-11-17T11:11:45Z;Armando;7487.231;116179919;Colombia; +2018-11-17T10:59:06Z;nathalia;5635.043;115118402;Colombia; +2018-11-17T10:56:48Z;Armando;2884.692;114525738;Colombia; +2018-11-17T10:42:31Z;Armando;1122.878;114853601;Colombia; +2018-11-17T10:41:07Z;Eduardo;195.7432;114763443;Colombia; +2018-11-17T10:21:17Z;Eduardo;8028.907;114815169;Colombia; +2018-11-17T10:06:10Z;Eduardo;897.4629;115135278;Colombia; +2018-11-17T09:48:16Z;Júlio Cesar;11608.48;115282461;Colombia; +2018-11-17T09:11:45Z;Eduardo;168.9395;115782306;Colombia; +2018-11-17T09:07:06Z;Júlio Cesar;9693.868;115233265;Colombia; +2018-11-17T09:02:26Z;Júlio;698.842;115017566;Colombia; +2018-11-17T09:01:33Z;Nathália;4277.604;114842658;Colombia; +2018-11-17T08:37:40Z;Nathália;3857.086;115285855;Colombia; +2018-11-17T07:54:32Z;Sandra;7831.263;114226369;Colombia; +2018-11-17T07:40:21Z;Eduardo;1497.611;115027875;Colombia; +2018-11-17T07:37:50Z;Júlio Cesar;8520.928;115778766;Colombia; +2018-11-17T07:35:00Z;Armando;621.9272;114590963;Colombia; +2018-11-17T07:25:54Z;Ana;1407.874;115877070;Colombia; +2018-11-17T07:22:45Z;Júlio;4604.145;115938117;Colombia; +2018-11-17T07:19:29Z;nathalia;4440.16;115935522;Colombia; +2018-11-17T07:13:42Z;Eduardo;1939.202;116204923;Colombia; +2018-11-17T07:08:44Z;Sandra;1264.921;115201961;Colombia; +2018-11-17T07:07:48Z;Nathália;4650.846;114671047;Colombia; +2018-11-17T07:07:12Z;Júlio Cesar;518.5727;115595456;Colombia; +2018-11-17T07:05:27Z;Eduardo;227.7459;115933749;Colombia; +2018-11-17T07:01:01Z;Júlio;1696.296;116117473;Colombia; +2018-11-17T06:52:14Z;Eduardo;414.4005;114689256;Colombia; +2018-11-17T06:12:08Z;Nathália;75.99901;115453893;Colombia; +2018-11-17T06:05:19Z;Armando;3737.484;114446686;Colombia; +2018-11-17T05:47:21Z;Nathália;6044.489;115155745;Colombia; +2018-11-17T05:39:47Z;nathalia;1726.748;115681768;Colombia; +2018-11-17T05:28:56Z;Júlio;753.8849;115498697;Colombia; +2018-11-17T05:17:40Z;Armando;8454.478;115734077;Colombia; +2018-11-17T05:17:18Z;nathalia;3208.764;115572356;Colombia; +2018-11-17T04:32:30Z;Eduardo;6042.13;115750269;Colombia; +2018-11-17T04:31:37Z;Armando;9538.075;115440687;Colombia; +2018-11-17T04:29:56Z;Ana;3273.324;114675840;Colombia; +2018-11-17T04:16:23Z;Júlio Cesar;90.52192;114467485;Colombia; +2018-11-17T04:12:09Z;Júlio Cesar;1733.266;115674430;Colombia; +2018-11-17T03:11:54Z;Armando;4111.712;116324448;Colombia; +2018-11-17T02:59:14Z;Armando;1002.695;115216789;Colombia; +2018-11-17T02:53:01Z;Ana;3454.647;114640525;Colombia; +2018-11-17T02:35:33Z;Ana;2640.163;115853387;Colombia; +2018-11-17T02:22:04Z;Eduardo;2285.167;116335251;Colombia; +2018-11-17T02:17:56Z;Ana;5519.973;116200129;Colombia; +2018-11-17T01:32:00Z;Júlio Cesar;7324.161;115536851;Colombia; +2018-11-17T00:53:48Z;nathalia;4596.957;115637247;Colombia; +2018-11-17T00:26:08Z;Sandra;595.8119;114858973;Colombia; +2018-11-17T00:05:31Z;Júlio Cesar;1961.423;114208874;Colombia; +2018-11-17T00:05:02Z;Nathália;3552.916;116398106;Colombia; +2018-11-16T23:38:42Z;nathalia;1884.675;115703447;Colombia; +2018-11-16T23:35:24Z;Armando;5614.601;115236692;Colombia; +2018-11-16T23:27:28Z;Ana;6110.726;115601780;Colombia; +2018-11-16T23:25:12Z;Sandra;420.0433;115134991;Colombia; +2018-11-16T22:39:15Z;Júlio Cesar;3159.156;116383099;Colombia; +2018-11-16T22:36:03Z;Nathália;335.1931;116251217;Colombia; +2018-11-16T22:00:10Z;nathalia;2233.656;115685057;Colombia; +2018-11-16T21:52:54Z;Júlio;897.3372;115611162;Colombia; +2018-11-16T21:42:35Z;Ana;8744.307;115325095;Colombia; +2018-11-16T21:37:44Z;Júlio Cesar;1825.874;114855735;Colombia; +2018-11-16T21:24:38Z;nathalia;1443.163;115441006;Colombia; +2018-11-16T21:17:42Z;Sandra;1761.66;114685465;Colombia; +2018-11-16T20:54:20Z;Sandra;8265.242;115731940;Colombia; +2018-11-16T20:51:15Z;Armando;457.4854;115672508;Colombia; +2018-11-16T19:08:34Z;Nathália;8573.867;115144257;Colombia; +2018-11-16T18:58:32Z;Ana;963.3646;114640349;Colombia; +2018-11-16T18:47:28Z;Júlio Cesar;1092.059;114524688;Colombia; +2018-11-16T18:43:20Z;Júlio Cesar;10102.37;115445060;Colombia; +2018-11-16T18:41:08Z;Eduardo;4426.654;114500706;Colombia; +2018-11-16T18:04:42Z;Armando;49.90802;115499726;Colombia; +2018-11-16T17:44:02Z;Armando;967.7986;114773575;Colombia; +2018-11-16T17:35:42Z;Nathália;1108.743;116256471;Colombia; +2018-11-16T17:25:17Z;Nathália;7226.67;115319435;Colombia; +2018-11-16T16:54:11Z;nathalia;1765.864;116126153;Colombia; +2018-11-16T16:51:22Z;Júlio Cesar;6547.845;114275669;Colombia; +2018-11-16T16:49:02Z;Armando;4142.421;115536096;Colombia; +2018-11-16T16:42:09Z;Ana;1018.905;115878906;Colombia; +2018-11-16T16:41:03Z;Júlio;3669.922;116027264;Colombia; +2018-11-16T16:35:16Z;nathalia;1179.266;115235979;Colombia; +2018-11-16T16:13:11Z;Júlio Cesar;4509.879;115741657;Colombia; +2018-11-16T15:56:01Z;Eduardo;9166.882;115665389;Colombia; +2018-11-16T15:53:05Z;nathalia;1805.401;114891658;Colombia; +2018-11-16T15:45:55Z;nathalia;7212.929;116092211;Colombia; +2018-11-16T15:01:22Z;Júlio;7877.646;115936135;Colombia; +2018-11-16T14:57:13Z;Nathália;718.1376;115240043;Colombia; +2018-11-16T14:47:53Z;Nathália;1752.557;116267615;Colombia; +2018-11-16T14:42:25Z;Júlio Cesar;5724.243;114296449;Colombia; +2018-11-16T14:19:51Z;Júlio Cesar;546.3997;115012366;Colombia; +2018-11-16T14:18:15Z;Sandra;12343.41;115286060;Colombia; +2018-11-16T14:16:14Z;Ana;451.1443;115755968;Colombia; +2018-11-16T13:20:51Z;Sandra;5190.142;114691901;Colombia; +2018-11-16T13:08:59Z;Ana;7628.924;116317053;Colombia; +2018-11-16T13:02:36Z;Júlio;2431.41;115011177;Colombia; +2018-11-16T12:40:50Z;Júlio Cesar;9475.304;115135541;Colombia; +2018-11-16T12:35:25Z;Nathália;5555.76;115215369;Colombia; +2018-11-16T12:29:58Z;nathalia;5859.946;115602122;Colombia; +2018-11-16T11:32:10Z;Eduardo;1609.59;115473854;Colombia; +2018-11-16T11:15:20Z;Eduardo;3492.085;115850598;Colombia; +2018-11-16T10:14:56Z;Armando;9232.85;115917353;Colombia; +2018-11-16T09:36:48Z;nathalia;2634.627;114823376;Colombia; +2018-11-16T09:11:49Z;Nathália;7275.412;114885954;Colombia; +2018-11-16T09:10:05Z;Ana;2731.248;114950706;Colombia; +2018-11-16T08:36:42Z;Ana;7576.938;116292520;Colombia; +2018-11-16T08:30:32Z;Júlio;855.9809;116383564;Colombia; +2018-11-16T08:23:01Z;Ana;3334.81;116189434;Colombia; +2018-11-16T08:14:27Z;Nathália;3773.359;114220960;Colombia; +2018-11-16T07:52:58Z;Armando;1614.833;116224115;Colombia; +2018-11-16T06:20:59Z;Armando;2603.608;115604284;Colombia; +2018-11-16T05:27:37Z;Júlio;4890.05;116251819;Colombia; +2018-11-16T04:58:21Z;Ana;423.2361;116091338;Colombia; +2018-11-16T04:44:15Z;Eduardo;1307.425;115750866;Colombia; +2018-11-16T04:39:39Z;nathalia;1269.841;114515218;Colombia; +2018-11-16T04:16:32Z;Ana;220.2819;115326180;Colombia; +2018-11-16T03:45:41Z;Sandra;1080.061;114876747;Colombia; +2018-11-16T03:29:13Z;Sandra;680.9183;115787615;Colombia; +2018-11-16T03:18:39Z;Sandra;5750.28;115385788;Colombia; +2018-11-16T03:11:11Z;Armando;5703.583;115808511;Colombia; +2018-11-16T02:54:18Z;Sandra;9248.909;114802349;Colombia; +2018-11-16T02:28:04Z;Eduardo;1008.12;116379139;Colombia; +2018-11-16T02:03:31Z;Eduardo;2017.519;115135704;Colombia; +2018-11-16T01:12:14Z;Nathália;2674.138;116262563;Colombia; +2018-11-16T01:07:59Z;Sandra;4749.048;115656123;Colombia; +2018-11-16T01:02:33Z;Nathália;1342.242;116373669;Colombia; +2018-11-16T01:00:27Z;Júlio;4589.405;114333063;Colombia; +2018-11-16T00:38:13Z;Ana;1939.613;115905260;Colombia; +2018-11-16T00:26:12Z;Júlio Cesar;1085.057;115700435;Colombia; +2018-11-16T00:07:05Z;nathalia;1807.648;115732557;Colombia; +2018-11-15T23:59:02Z;Ana;100.1163;114851963;Colombia; +2018-11-15T23:36:24Z;Júlio Cesar;3038.609;115410559;Colombia; +2018-11-15T23:33:18Z;Ana;44.66163;115911527;Colombia; +2018-11-15T23:24:21Z;Ana;731.5747;114597084;Colombia; +2018-11-15T23:05:30Z;Sandra;475.138;115215839;Colombia; +2018-11-15T23:03:51Z;Júlio Cesar;2673.693;115934297;Colombia; +2018-11-15T21:59:18Z;Júlio;245.0772;114530169;Colombia; +2018-11-15T21:58:41Z;Ana;1464.214;116236367;Colombia; +2018-11-15T21:56:46Z;Nathália;4104.195;116290431;Colombia; +2018-11-15T21:40:32Z;Júlio;1881.191;114698822;Colombia; +2018-11-15T20:56:53Z;Nathália;3129.329;115211633;Colombia; +2018-11-15T20:54:50Z;Armando;16220.82;115873537;Colombia; +2018-11-15T20:40:19Z;Eduardo;1180.943;114518937;Colombia; +2018-11-15T20:05:42Z;Júlio;2567.908;115397007;Colombia; +2018-11-15T19:57:47Z;Ana;202.3874;115275502;Colombia; +2018-11-15T19:42:32Z;Eduardo;8330.537;115759867;Colombia; +2018-11-15T19:17:37Z;Júlio Cesar;1215.882;115855885;Colombia; +2018-11-15T19:06:33Z;Júlio;1258.79;114222760;Colombia; +2018-11-15T18:34:51Z;Júlio Cesar;2752.9;116080953;Colombia; +2018-11-15T18:33:58Z;Júlio;9654.737;114469278;Colombia; +2018-11-15T18:32:18Z;Armando;633.5046;116219404;Colombia; +2018-11-15T18:06:25Z;nathalia;1907.263;116100017;Colombia; +2018-11-15T17:10:23Z;Júlio;3021.692;114959852;Colombia; +2018-11-15T17:08:24Z;nathalia;2221.132;114715528;Colombia; +2018-11-15T17:01:51Z;Ana;3807.741;116056043;Colombia; +2018-11-15T16:41:36Z;Armando;764.2429;116000044;Colombia; +2018-11-15T16:39:30Z;nathalia;1091.697;114627407;Colombia; +2018-11-15T16:25:06Z;nathalia;3200.679;115277527;Colombia; +2018-11-15T16:13:12Z;nathalia;561.686;114469244;Colombia; +2018-11-15T16:03:26Z;Sandra;2002.658;114819895;Colombia; +2018-11-15T15:02:12Z;Eduardo;15909.85;115573492;Colombia; +2018-11-15T14:16:39Z;nathalia;4143.325;114615077;Colombia; +2018-11-15T14:10:26Z;Eduardo;8651.159;116067986;Colombia; +2018-11-15T14:09:51Z;Armando;4906.756;115071009;Colombia; +2018-11-15T13:40:08Z;Armando;2814.83;115910512;Colombia; +2018-11-15T13:32:28Z;Eduardo;5954.717;115804732;Colombia; +2018-11-15T13:26:11Z;Júlio Cesar;5210.334;116111962;Colombia; +2018-11-15T13:25:01Z;Armando;474.5602;116270710;Colombia; +2018-11-15T12:48:07Z;Júlio;138.6076;114257031;Colombia; +2018-11-15T12:38:02Z;Eduardo;826.9007;115608311;Colombia; +2018-11-15T12:36:16Z;Nathália;4491.178;114201644;Colombia; +2018-11-15T12:34:11Z;Ana;10773.44;115938587;Colombia; +2018-11-15T12:29:43Z;Júlio;1070.614;116028843;Colombia; +2018-11-15T12:27:50Z;Júlio;10915.51;115559185;Colombia; +2018-11-15T12:27:33Z;Armando;4012.926;115998739;Colombia; +2018-11-15T12:13:04Z;Eduardo;11266.86;115962288;Colombia; +2018-11-15T11:52:10Z;Sandra;233.4147;114955455;Colombia; +2018-11-15T11:49:04Z;Armando;2988.122;115500202;Colombia; +2018-11-15T11:42:50Z;Nathália;7316.643;115189868;Colombia; +2018-11-15T11:13:52Z;Júlio;5506.346;115962952;Colombia; +2018-11-15T11:08:15Z;Sandra;13142.94;115234076;Colombia; +2018-11-15T10:39:25Z;nathalia;1422.159;116188327;Colombia; +2018-11-15T09:35:47Z;Ana;2228.927;114374490;Colombia; +2018-11-15T09:34:47Z;Júlio;450.7072;114921444;Colombia; +2018-11-15T09:24:09Z;Ana;13615.53;114996258;Colombia; +2018-11-15T09:15:19Z;Armando;10685.84;115880478;Colombia; +2018-11-15T08:38:19Z;nathalia;1461.701;115034380;Colombia; +2018-11-15T07:42:43Z;Júlio Cesar;328.7631;114912609;Colombia; +2018-11-15T07:40:19Z;Ana;1439.094;115257202;Colombia; +2018-11-15T07:28:29Z;Ana;5182.937;114298223;Colombia; +2018-11-15T07:26:08Z;Júlio;7977.975;115422513;Colombia; +2018-11-15T07:25:39Z;Ana;154.8076;116260585;Colombia; +2018-11-15T06:47:53Z;Armando;1839.759;115698855;Colombia; +2018-11-15T06:43:53Z;Armando;4629.483;114260381;Colombia; +2018-11-15T06:21:08Z;Eduardo;72.75405;116231328;Colombia; +2018-11-15T06:11:29Z;Ana;21321.02;115562608;Colombia; +2018-11-15T05:59:01Z;Sandra;1568.635;114852093;Colombia; +2018-11-15T05:47:29Z;Armando;2156.215;114559557;Colombia; +2018-11-15T05:41:10Z;nathalia;3130.163;114263437;Colombia; +2018-11-15T05:26:17Z;Nathália;28.95637;114989213;Colombia; +2018-11-15T04:29:55Z;Eduardo;154.0514;116372900;Colombia; +2018-11-15T04:24:33Z;Nathália;161.2148;114319480;Colombia; +2018-11-15T04:15:02Z;Sandra;637.7739;114635031;Colombia; +2018-11-15T04:06:41Z;nathalia;1575.652;114386293;Colombia; +2018-11-15T03:48:42Z;Ana;14472.63;115478621;Colombia; +2018-11-15T03:43:55Z;Armando;4013.971;115505932;Colombia; +2018-11-15T03:34:14Z;Júlio Cesar;1649.495;114331606;Colombia; +2018-11-15T03:08:22Z;nathalia;6302.209;114602459;Colombia; +2018-11-15T02:40:54Z;nathalia;6222.226;115877018;Colombia; +2018-11-15T02:27:02Z;Ana;1776.984;116149358;Colombia; +2018-11-15T02:21:49Z;Armando;1557.599;114422599;Colombia; +2018-11-15T01:32:09Z;Júlio Cesar;2780.86;115352277;Colombia; +2018-11-15T01:07:29Z;Armando;403.1564;115801337;Colombia; +2018-11-15T01:02:18Z;Eduardo;606.8125;115307288;Colombia; +2018-11-15T01:02:06Z;Ana;395.5423;115351024;Colombia; +2018-11-15T01:01:02Z;Júlio;827.4333;116281348;Colombia; +2018-11-15T00:38:21Z;Eduardo;5645.522;115762025;Colombia; +2018-11-15T00:19:07Z;Júlio;3837.454;116113434;Colombia; +2018-11-15T00:10:37Z;Armando;6833.777;116004759;Colombia; +2018-11-14T23:55:59Z;Júlio;3206.013;115647668;Colombia; +2018-11-14T23:38:53Z;Eduardo;8748.96;114914107;Colombia; +2018-11-14T23:27:15Z;Nathália;10752.42;115730086;Colombia; +2018-11-14T23:21:54Z;nathalia;1406.417;115560385;Colombia; +2018-11-14T23:01:43Z;Júlio Cesar;296.6515;114898674;Colombia; +2018-11-14T22:50:12Z;Armando;1636.545;115066933;Colombia; +2018-11-14T22:32:29Z;Eduardo;8906.443;115965598;Colombia; +2018-11-14T22:05:50Z;Júlio Cesar;3210.994;115929341;Colombia; +2018-11-14T22:03:03Z;Sandra;517.1775;116251739;Colombia; +2018-11-14T21:22:59Z;Sandra;1608.642;115628368;Colombia; +2018-11-14T21:21:27Z;nathalia;914.7871;116207523;Colombia; +2018-11-14T21:08:34Z;Ana;4189.162;115282322;Colombia; +2018-11-14T21:05:55Z;Júlio Cesar;14.14336;116345564;Colombia; +2018-11-14T20:50:04Z;Armando;632.542;115137001;Colombia; +2018-11-14T20:30:48Z;Nathália;1243.821;115647664;Colombia; +2018-11-14T20:12:27Z;Eduardo;5289.698;116339120;Colombia; +2018-11-14T20:01:27Z;Sandra;6596.622;115377090;Colombia; +2018-11-14T19:45:05Z;Eduardo;5357.97;114417436;Colombia; +2018-11-14T19:35:05Z;Ana;2249.669;115214457;Colombia; +2018-11-14T19:16:25Z;Armando;2123.508;116349670;Colombia; +2018-11-14T19:07:22Z;Júlio Cesar;529.9545;114538623;Colombia; +2018-11-14T18:53:39Z;Nathália;3641.167;115828238;Colombia; +2018-11-14T18:50:17Z;Júlio Cesar;595.7215;114951139;Colombia; +2018-11-14T18:41:26Z;Nathália;3463.911;114650665;Colombia; +2018-11-14T18:35:50Z;Sandra;4615.466;116023365;Colombia; +2018-11-14T18:25:07Z;Nathália;4918.644;114488947;Colombia; +2018-11-14T18:10:20Z;Eduardo;2764.011;114346881;Colombia; +2018-11-14T17:56:12Z;Júlio Cesar;3881.362;114947638;Colombia; +2018-11-14T17:53:16Z;Eduardo;44.90703;114974197;Colombia; +2018-11-14T17:48:58Z;Nathália;617.2539;114560231;Colombia; +2018-11-14T17:30:55Z;nathalia;5058.151;115358030;Colombia; +2018-11-14T17:20:04Z;Sandra;1721.654;115976555;Colombia; +2018-11-14T17:09:11Z;Júlio;319.4594;114511661;Colombia; +2018-11-14T16:51:30Z;Nathália;5551.946;115842111;Colombia; +2018-11-14T16:42:47Z;Sandra;1614.455;114326743;Colombia; +2018-11-14T16:12:18Z;Eduardo;1370.056;116130194;Colombia; +2018-11-14T16:10:41Z;Júlio;4422.75;114425090;Colombia; +2018-11-14T15:41:15Z;Eduardo;2379.11;114459061;Colombia; +2018-11-14T15:39:34Z;nathalia;1042.447;116253647;Colombia; +2018-11-14T15:38:08Z;Armando;165.0076;115989222;Colombia; +2018-11-14T15:31:12Z;Nathália;162.0955;114605477;Colombia; +2018-11-14T14:46:32Z;nathalia;7208.11;116167340;Colombia; +2018-11-14T14:31:02Z;Sandra;915.0462;114287823;Colombia; +2018-11-14T14:28:36Z;Júlio;125.2251;115354429;Colombia; +2018-11-14T14:15:28Z;Eduardo;1506.458;114720952;Colombia; +2018-11-14T14:15:02Z;Armando;1183.996;116181455;Colombia; +2018-11-14T14:09:57Z;nathalia;394.5688;115859648;Colombia; +2018-11-14T13:53:19Z;Nathália;342.8352;116152370;Colombia; +2018-11-14T13:46:49Z;Júlio Cesar;2517.593;115837610;Colombia; +2018-11-14T13:41:49Z;Sandra;4294.198;115166633;Colombia; +2018-11-14T13:09:40Z;Nathália;6430.287;114533603;Colombia; +2018-11-14T13:03:21Z;Armando;6074.748;115798142;Colombia; +2018-11-14T12:32:04Z;Nathália;2897.85;115208318;Colombia; +2018-11-14T12:19:32Z;nathalia;3471.41;115574816;Colombia; +2018-11-14T11:51:15Z;Armando;2982.708;114726058;Colombia; +2018-11-14T11:01:05Z;Eduardo;10236.33;116031092;Colombia; +2018-11-14T10:57:11Z;Nathália;889.3307;116026143;Colombia; +2018-11-14T10:35:24Z;Nathália;2523.901;114824243;Colombia; +2018-11-14T09:57:12Z;Ana;474.3625;115865531;Colombia; +2018-11-14T09:19:43Z;Ana;1531.638;115663731;Colombia; +2018-11-14T08:50:51Z;Júlio;7557.517;115951518;Colombia; +2018-11-14T08:35:48Z;Ana;8292.971;116235224;Colombia; +2018-11-14T08:33:32Z;Nathália;3991.943;114902174;Colombia; +2018-11-14T08:11:19Z;Armando;790.1183;116335138;Colombia; +2018-11-14T08:04:52Z;Eduardo;5545.659;116095787;Colombia; +2018-11-14T08:03:59Z;Júlio Cesar;14.61191;114569902;Colombia; +2018-11-14T07:51:56Z;Júlio;1217.507;114631227;Colombia; +2018-11-14T07:32:33Z;Júlio Cesar;1744.546;114514145;Colombia; +2018-11-14T07:30:16Z;Júlio Cesar;1367.054;116217932;Colombia; +2018-11-14T07:18:57Z;Sandra;2046.334;116230777;Colombia; +2018-11-14T07:13:05Z;nathalia;2450.914;114753914;Colombia; +2018-11-14T07:12:51Z;Nathália;132.3729;114440293;Colombia; +2018-11-14T06:12:36Z;Ana;1140.925;114797619;Colombia; +2018-11-14T06:04:19Z;Júlio Cesar;70.20546;114408004;Colombia; +2018-11-14T05:38:24Z;nathalia;5353.61;116061184;Colombia; +2018-11-14T05:25:26Z;Júlio Cesar;728.8208;116267634;Colombia; +2018-11-14T05:14:49Z;Sandra;2528.64;115750159;Colombia; +2018-11-14T05:10:17Z;Nathália;5677.767;115265527;Colombia; +2018-11-14T04:35:43Z;Júlio Cesar;9545.536;114913340;Colombia; +2018-11-14T04:00:35Z;Armando;1917.659;114593629;Colombia; +2018-11-14T03:55:08Z;Ana;935.2244;116320235;Colombia; +2018-11-14T03:47:33Z;Júlio Cesar;2155.253;114954968;Colombia; +2018-11-14T03:33:25Z;Ana;5577.491;116316932;Colombia; +2018-11-14T03:33:05Z;Júlio Cesar;7.478812;116033576;Colombia; +2018-11-14T03:27:26Z;Sandra;11399.25;115371585;Colombia; +2018-11-14T03:25:41Z;nathalia;2898.312;115108768;Colombia; +2018-11-14T03:14:26Z;Nathália;4112.56;114274563;Colombia; +2018-11-14T02:45:28Z;Eduardo;3342.597;114908747;Colombia; +2018-11-14T02:31:24Z;Júlio;5252.894;116183642;Colombia; +2018-11-14T02:06:24Z;Eduardo;194.8426;115173722;Colombia; +2018-11-14T01:47:59Z;Armando;1916.409;115469719;Colombia; +2018-11-14T01:34:10Z;nathalia;1309.535;114853804;Colombia; +2018-11-14T01:20:13Z;Nathália;13111.8;114970523;Colombia; +2018-11-14T01:16:50Z;Sandra;1748.474;115443781;Colombia; +2018-11-14T00:31:23Z;nathalia;1233.977;116138885;Colombia; +2018-11-14T00:28:21Z;Armando;167.5305;115730573;Colombia; +2018-11-14T00:25:53Z;nathalia;6785.577;116199678;Colombia; +2018-11-14T00:25:41Z;Sandra;392.012;114348953;Colombia; +2018-11-13T23:37:00Z;nathalia;2303.436;114383595;Colombia; +2018-11-13T23:27:19Z;Sandra;1313.397;114940092;Colombia; +2018-11-13T23:15:44Z;Nathália;3622.518;114462379;Colombia; +2018-11-13T23:02:40Z;Nathália;3120.268;116362727;Colombia; +2018-11-13T22:47:37Z;Ana;1365.995;114745200;Colombia; +2018-11-13T22:37:06Z;Sandra;58.61971;114975416;Colombia; +2018-11-13T22:35:27Z;Sandra;1909.434;115295954;Colombia; +2018-11-13T22:28:51Z;Eduardo;6036.232;115791856;Colombia; +2018-11-13T22:28:31Z;Armando;1428.196;115872670;Colombia; +2018-11-13T22:13:14Z;Nathália;3515.535;114822390;Colombia; +2018-11-13T22:12:18Z;Sandra;763.8414;115147478;Colombia; +2018-11-13T22:01:51Z;Júlio;5109.028;116139122;Colombia; +2018-11-13T21:24:26Z;Ana;1103.998;114632901;Colombia; +2018-11-13T21:16:50Z;Júlio Cesar;6234.228;114954952;Colombia; +2018-11-13T21:13:33Z;Eduardo;10974.64;115115924;Colombia; +2018-11-13T21:09:55Z;nathalia;2818.381;115894138;Colombia; +2018-11-13T20:54:35Z;nathalia;4005.776;114444644;Colombia; +2018-11-13T19:49:38Z;Armando;1320.061;114405272;Colombia; +2018-11-13T19:48:37Z;Ana;4096.13;116305701;Colombia; +2018-11-13T19:33:37Z;Eduardo;3451.921;115512841;Colombia; +2018-11-13T19:17:44Z;Ana;5538.343;115685755;Colombia; +2018-11-13T18:51:01Z;Ana;4811.874;114674992;Colombia; +2018-11-13T18:08:09Z;Eduardo;217.7628;114411955;Colombia; +2018-11-13T17:51:24Z;Júlio;3273.131;116345028;Colombia; +2018-11-13T17:26:19Z;Júlio;7468.728;116110539;Colombia; +2018-11-13T17:14:02Z;Júlio Cesar;574.7145;115561582;Colombia; +2018-11-13T16:25:59Z;Sandra;4011.409;115584063;Colombia; +2018-11-13T16:23:32Z;Sandra;3413.751;114456569;Colombia; +2018-11-13T16:01:00Z;Júlio Cesar;1400.673;116311124;Colombia; +2018-11-13T15:57:35Z;Júlio;6032.337;114432327;Colombia; +2018-11-13T15:17:37Z;Sandra;39.12584;114260972;Colombia; +2018-11-13T15:08:04Z;Nathália;656.199;114528614;Colombia; +2018-11-13T14:58:14Z;Sandra;3314.701;114597356;Colombia; +2018-11-13T14:53:41Z;Armando;1154.986;114618294;Colombia; +2018-11-13T14:49:03Z;Ana;1680.603;116271745;Colombia; +2018-11-13T14:26:04Z;Sandra;9625.724;114852059;Colombia; +2018-11-13T12:57:12Z;Armando;143.4712;115684118;Colombia; +2018-11-13T12:54:42Z;Sandra;4985.493;115137314;Colombia; +2018-11-13T11:27:23Z;Eduardo;5548.074;114597141;Colombia; +2018-11-13T11:20:32Z;Armando;3044.438;115008889;Colombia; +2018-11-13T11:14:02Z;Ana;286.623;115193909;Colombia; +2018-11-13T11:04:50Z;Ana;6605.721;115559839;Colombia; +2018-11-13T10:23:48Z;nathalia;146.2368;116238125;Colombia; +2018-11-13T10:22:07Z;Ana;4763.624;115950602;Colombia; +2018-11-13T10:21:21Z;Júlio;1.025818;116308967;Colombia; +2018-11-13T10:16:59Z;Sandra;2712.007;115107048;Colombia; +2018-11-13T10:03:32Z;Júlio Cesar;597.5725;115853541;Colombia; +2018-11-13T09:42:07Z;Nathália;6841.148;115977305;Colombia; +2018-11-13T08:55:00Z;nathalia;1544.323;114803678;Colombia; +2018-11-13T08:36:48Z;Sandra;482.9355;115194299;Colombia; +2018-11-13T08:29:46Z;Nathália;3828.704;114792279;Colombia; +2018-11-13T08:29:21Z;Eduardo;1892.091;115623693;Colombia; +2018-11-13T07:57:39Z;Nathália;551.1411;115359505;Colombia; +2018-11-13T07:49:27Z;Eduardo;822.1083;114219176;Colombia; +2018-11-13T07:37:53Z;Júlio Cesar;2463.742;114285698;Colombia; +2018-11-13T07:36:17Z;Júlio Cesar;2264.865;115757109;Colombia; +2018-11-13T07:31:34Z;Armando;4392.509;116257536;Colombia; +2018-11-13T07:23:58Z;Eduardo;460.2667;115239880;Colombia; +2018-11-13T07:04:26Z;nathalia;5632.797;115316508;Colombia; +2018-11-13T07:01:27Z;nathalia;942.5478;114974258;Colombia; +2018-11-13T06:57:51Z;Eduardo;7064.861;114453710;Colombia; +2018-11-13T06:57:27Z;Eduardo;1122.004;115907631;Colombia; +2018-11-13T06:49:19Z;Eduardo;2621.201;116394215;Colombia; +2018-11-13T06:41:17Z;Eduardo;4034.337;115777170;Colombia; +2018-11-13T06:22:37Z;nathalia;2930.782;116217711;Colombia; +2018-11-13T06:10:02Z;Sandra;1893.38;116157599;Colombia; +2018-11-13T06:04:10Z;Eduardo;2284.305;116155391;Colombia; +2018-11-13T05:54:18Z;Júlio Cesar;103.9755;115648718;Colombia; +2018-11-13T05:32:12Z;Nathália;3023.157;115114465;Colombia; +2018-11-13T04:56:03Z;Eduardo;778.7297;115990805;Colombia; +2018-11-13T04:53:21Z;Eduardo;7116.92;116070766;Colombia; +2018-11-13T04:09:00Z;Ana;6355.504;116193343;Colombia; +2018-11-13T04:03:03Z;Sandra;3172.415;115155910;Colombia; +2018-11-13T03:21:27Z;Nathália;4051.12;115949830;Colombia; +2018-11-13T03:09:17Z;Ana;6244.548;115203668;Colombia; +2018-11-13T02:33:17Z;nathalia;379.6849;115720646;Colombia; +2018-11-13T02:17:01Z;nathalia;3169.614;115970964;Colombia; +2018-11-13T02:06:58Z;Sandra;1031.052;114908928;Colombia; +2018-11-13T02:06:04Z;Nathália;2396.367;116273413;Colombia; +2018-11-13T01:48:06Z;Nathália;5609.019;116038384;Colombia; +2018-11-13T01:40:57Z;Júlio Cesar;743.8331;116217294;Colombia; +2018-11-13T01:15:30Z;Nathália;5667.354;114752261;Colombia; +2018-11-13T01:06:54Z;Armando;5085.951;116298667;Colombia; +2018-11-13T01:01:45Z;Sandra;3888.472;115396776;Colombia; +2018-12-06T21:40:21Z;Ana;2945.025;115946034;Ecuador; +2018-12-06T21:36:58Z;Ana;434.6674;115298688;Ecuador; +2018-12-06T21:31:57Z;Júlio;11440.45;116231558;Ecuador; +2018-12-06T21:20:39Z;nathalia;43.56889;115192862;Ecuador; +2018-12-06T21:13:07Z;Nathália;1796.085;114550616;Ecuador; +2018-12-06T21:11:11Z;Júlio Cesar;9903.41;115298265;Ecuador; +2018-12-06T20:46:13Z;Eduardo;1692.126;115903161;Ecuador; +2018-12-06T20:23:58Z;Nathália;259.1644;114387164;Ecuador; +2018-12-06T20:23:53Z;Armando;2803.404;114596395;Ecuador; +2018-12-06T20:18:21Z;Armando;3922.746;115502415;Ecuador; +2018-12-06T20:05:50Z;Sandra;1373.082;114342767;Ecuador; +2018-12-06T19:56:19Z;Eduardo;1713.252;114288333;Ecuador; +2018-12-06T19:54:25Z;Eduardo;30.75461;115571944;Ecuador; +2018-12-06T19:54:07Z;Ana;6071.445;115786009;Ecuador; +2018-12-06T19:43:38Z;Armando;18709.85;114526985;Ecuador; +2018-12-06T19:14:32Z;Júlio Cesar;4038.378;114336995;Ecuador; +2018-12-06T19:07:57Z;Eduardo;5915.661;114212524;Ecuador; +2018-12-06T18:59:45Z;Júlio;3377.698;115268581;Ecuador; +2018-12-06T18:58:27Z;Ana;1073.637;114543377;Ecuador; +2018-12-06T18:56:29Z;Eduardo;3147.128;114647641;Ecuador; +2018-12-06T18:54:25Z;Júlio Cesar;6367.99;116274376;Ecuador; +2018-12-06T18:39:51Z;Armando;1105.191;115066736;Ecuador; +2018-12-06T18:11:49Z;Sandra;5862.902;115840001;Ecuador; +2018-12-06T17:56:48Z;Júlio;22537.52;115837352;Ecuador; +2018-12-06T17:56:34Z;Ana;5573.222;115040008;Ecuador; +2018-12-06T17:48:30Z;nathalia;2437.746;114366552;Ecuador; +2018-12-06T17:41:38Z;Eduardo;25748.7;114531961;Ecuador; +2018-12-06T17:23:02Z;nathalia;3178.423;114391415;Ecuador; +2018-12-06T16:47:19Z;Armando;8987.987;114822548;Ecuador; +2018-12-06T16:45:40Z;Nathália;350.2107;115815378;Ecuador; +2018-12-06T16:03:21Z;Nathália;3103.525;115291391;Ecuador; +2018-12-06T16:01:21Z;Nathália;14840.3;114485180;Ecuador; +2018-12-06T15:19:35Z;Nathália;6117.547;114810659;Ecuador; +2018-12-06T15:15:33Z;Nathália;2171.26;116166022;Ecuador; +2018-12-06T15:11:33Z;Ana;9604.828;115550293;Ecuador; +2018-12-06T14:33:53Z;Júlio Cesar;8779.484;115905460;Ecuador; +2018-12-06T14:30:29Z;Sandra;7451.193;116221182;Ecuador; +2018-12-06T14:29:22Z;Sandra;345.8352;115021068;Ecuador; +2018-12-06T14:23:41Z;Júlio;3356.031;114473429;Ecuador; +2018-12-06T14:23:24Z;Nathália;7824.44;116041134;Ecuador; +2018-12-06T14:22:48Z;nathalia;165.0783;114917055;Ecuador; +2018-12-06T13:51:09Z;nathalia;19111.09;115880865;Ecuador; +2018-12-06T13:36:53Z;nathalia;3427.566;114246430;Ecuador; +2018-12-06T13:32:39Z;Armando;991.3576;115310623;Ecuador; +2018-12-06T13:19:19Z;Eduardo;1387.906;116323792;Ecuador; +2018-12-06T13:17:39Z;Armando;584.0444;114405404;Ecuador; +2018-12-06T13:05:45Z;Nathália;7153.234;114912166;Ecuador; +2018-12-06T13:03:49Z;Ana;4296.432;116313687;Ecuador; +2018-12-06T12:45:55Z;Eduardo;18293.61;114511384;Ecuador; +2018-12-06T12:20:06Z;Sandra;2037.673;114410008;Ecuador; +2018-12-06T12:01:44Z;Ana;539.9627;115013797;Ecuador; +2018-12-06T10:59:05Z;nathalia;93.55501;114821221;Ecuador; +2018-12-06T10:41:24Z;Armando;2398.578;116187169;Ecuador; +2018-12-06T10:29:56Z;Júlio Cesar;27707.44;115990702;Ecuador; +2018-12-06T10:28:26Z;Ana;410.9497;115032513;Ecuador; +2018-12-06T10:22:48Z;Nathália;4716.871;115213049;Ecuador; +2018-12-06T09:41:51Z;nathalia;5922.654;115960191;Ecuador; +2018-12-06T09:32:40Z;Nathália;10378.98;115183193;Ecuador; +2018-12-06T09:15:17Z;Nathália;9896.662;115390023;Ecuador; +2018-12-06T09:09:50Z;Nathália;29413.89;114872505;Ecuador; +2018-12-06T08:50:58Z;Sandra;2158.148;115635585;Ecuador; +2018-12-06T08:31:28Z;Eduardo;751.5381;114460684;Ecuador; +2018-12-06T08:31:25Z;Júlio Cesar;2675.747;114967489;Ecuador; +2018-12-06T08:05:53Z;Júlio Cesar;17433.96;116069061;Ecuador; +2018-12-06T07:58:16Z;Júlio;1934.206;114226088;Ecuador; +2018-12-06T07:46:35Z;Nathália;5639.339;115704462;Ecuador; +2018-12-06T07:42:29Z;Armando;5167.388;115553820;Ecuador; +2018-12-06T06:54:10Z;Nathália;20614.07;115905544;Ecuador; +2018-12-06T06:52:18Z;nathalia;3503.305;114290747;Ecuador; +2018-12-06T06:48:15Z;nathalia;298.4899;114367689;Ecuador; +2018-12-06T06:47:46Z;Sandra;7317.377;114914700;Ecuador; +2018-12-06T06:46:17Z;Sandra;10865.98;114998992;Ecuador; +2018-12-06T06:29:54Z;nathalia;1068.744;115535671;Ecuador; +2018-12-06T06:22:08Z;Sandra;2660.575;116323399;Ecuador; +2018-12-06T06:18:23Z;nathalia;9477.656;116134842;Ecuador; +2018-12-06T06:11:34Z;nathalia;15241.7;114986018;Ecuador; +2018-12-06T06:05:09Z;Ana;8031.837;114402589;Ecuador; +2018-12-06T05:43:31Z;Nathália;2356.528;114857460;Ecuador; +2018-12-06T05:18:19Z;Nathália;2027.531;114534086;Ecuador; +2018-12-06T05:04:24Z;Júlio Cesar;3152.6;115225662;Ecuador; +2018-12-06T04:54:01Z;Sandra;7244.081;114837836;Ecuador; +2018-12-06T04:51:14Z;Nathália;2747.938;114376581;Ecuador; +2018-12-06T04:29:33Z;Eduardo;875.6664;115027431;Ecuador; +2018-12-06T04:06:18Z;Armando;310.0596;114606276;Ecuador; +2018-12-06T04:00:26Z;Júlio Cesar;11867.06;114213999;Ecuador; +2018-12-06T03:58:30Z;Eduardo;4168.881;116174557;Ecuador; +2018-12-06T03:57:47Z;Júlio Cesar;272.7976;115505185;Ecuador; +2018-12-06T03:55:54Z;Ana;15760.73;114980858;Ecuador; +2018-12-06T03:14:03Z;Armando;3151.869;116361955;Ecuador; +2018-12-06T02:56:44Z;Júlio Cesar;15907.95;115238442;Ecuador; +2018-12-06T02:56:11Z;Júlio;17377.94;114487803;Ecuador; +2018-12-06T02:52:55Z;Nathália;6840.836;114821713;Ecuador; +2018-12-06T02:48:41Z;Sandra;4156.602;114898801;Ecuador; +2018-12-06T02:35:31Z;Júlio;13315.48;115682532;Ecuador; +2018-12-06T02:17:07Z;Nathália;31802.05;116149033;Ecuador; +2018-12-06T02:16:47Z;Nathália;23512.16;115244323;Ecuador; +2018-12-06T02:06:42Z;nathalia;3596.626;115933515;Ecuador; +2018-12-06T02:00:36Z;Júlio;10764.3;115894567;Ecuador; +2018-12-06T01:27:42Z;nathalia;17150.23;114329826;Ecuador; +2018-12-06T01:21:37Z;nathalia;9692.031;115117926;Ecuador; +2018-12-06T00:29:33Z;nathalia;9966.621;115452160;Ecuador; +2018-12-06T00:17:08Z;Júlio;4284.006;114923252;Ecuador; +2018-12-06T00:04:44Z;Sandra;6885.113;115653787;Ecuador; +2018-12-05T23:49:10Z;Ana;20693.48;114563386;Ecuador; +2018-12-05T23:31:51Z;Eduardo;3748.432;116269995;Ecuador; +2018-12-05T23:31:21Z;Nathália;8707.427;115499120;Ecuador; +2018-12-05T23:13:34Z;Nathália;869.3058;114912217;Ecuador; +2018-12-05T22:56:15Z;Armando;8169.702;114825299;Ecuador; +2018-12-05T22:24:38Z;Ana;10071.44;115994010;Ecuador; +2018-12-05T22:07:50Z;Eduardo;6308.928;114309064;Ecuador; +2018-12-05T21:11:15Z;Nathália;6181.383;115439012;Ecuador; +2018-12-05T20:25:16Z;Sandra;12907.83;116283997;Ecuador; +2018-12-05T19:44:28Z;Júlio Cesar;3394.55;115547426;Ecuador; +2018-12-05T19:42:48Z;Ana;297.1686;116231775;Ecuador; +2018-12-05T19:33:56Z;Ana;3396.435;116177121;Ecuador; +2018-12-05T19:16:17Z;Armando;22030.25;114784095;Ecuador; +2018-12-05T18:51:36Z;Júlio;10125.68;114677682;Ecuador; +2018-12-05T18:50:30Z;Armando;3801.03;115674442;Ecuador; +2018-12-05T17:52:07Z;Júlio Cesar;11240.11;115467275;Ecuador; +2018-12-05T17:00:31Z;Sandra;315.9008;115347552;Ecuador; +2018-12-05T16:57:30Z;Armando;5444.671;115401020;Ecuador; +2018-12-05T16:09:02Z;nathalia;2425.74;115661789;Ecuador; +2018-12-05T15:56:40Z;Eduardo;576.172;115680343;Ecuador; +2018-12-05T15:38:25Z;Júlio Cesar;18818.21;115935680;Ecuador; +2018-12-05T15:36:05Z;Júlio Cesar;4436.981;115131739;Ecuador; +2018-12-05T14:55:19Z;Júlio;9830.602;115346064;Ecuador; +2018-12-05T14:35:42Z;Nathália;4255.61;114823041;Ecuador; +2018-12-05T14:29:07Z;Armando;166.8393;115246288;Ecuador; +2018-12-05T14:28:07Z;Sandra;18530.47;114335689;Ecuador; +2018-12-05T14:19:45Z;nathalia;19419.65;114411416;Ecuador; +2018-12-05T14:11:35Z;nathalia;499.1162;114864089;Ecuador; +2018-12-05T13:45:56Z;Eduardo;3185.365;115762350;Ecuador; +2018-12-05T12:53:25Z;nathalia;17081.18;116051419;Ecuador; +2018-12-05T12:45:58Z;Sandra;540.2684;114396580;Ecuador; +2018-12-05T12:18:34Z;nathalia;6753.773;116158457;Ecuador; +2018-12-05T11:43:23Z;Júlio Cesar;4890.107;115144897;Ecuador; +2018-12-05T11:09:50Z;Armando;19746.41;114453874;Ecuador; +2018-12-05T11:08:50Z;Júlio;13537.63;114517909;Ecuador; +2018-12-05T10:41:37Z;Júlio;3615.8;116150612;Ecuador; +2018-12-05T10:35:45Z;nathalia;13225.83;115054487;Ecuador; +2018-12-05T10:26:40Z;Sandra;6926.587;114663494;Ecuador; +2018-12-05T10:09:24Z;Armando;10361.73;115593848;Ecuador; +2018-12-05T10:04:52Z;nathalia;12773.3;115638036;Ecuador; +2018-12-05T09:54:04Z;Eduardo;5238.666;115345694;Ecuador; +2018-12-05T09:37:21Z;Eduardo;17745.47;115781269;Ecuador; +2018-12-05T09:31:59Z;Sandra;7887.855;114584098;Ecuador; +2018-12-05T09:15:39Z;Ana;1163.357;114503933;Ecuador; +2018-12-05T09:07:26Z;Ana;3111.354;115109458;Ecuador; +2018-12-05T09:06:03Z;Nathália;1577.117;116034336;Ecuador; +2018-12-05T08:45:22Z;nathalia;1371.992;115134191;Ecuador; +2018-12-05T08:23:53Z;Armando;7798.018;115331687;Ecuador; +2018-12-05T07:35:23Z;Júlio Cesar;18495.51;116291909;Ecuador; +2018-12-05T07:35:10Z;Armando;4947.475;114328542;Ecuador; +2018-12-05T06:47:23Z;Sandra;14949.33;114578341;Ecuador; +2018-12-05T06:45:18Z;Armando;12273.66;115155442;Ecuador; +2018-12-05T06:12:06Z;Nathália;500.6769;116066089;Ecuador; +2018-12-05T06:10:03Z;Ana;9335.852;114381447;Ecuador; +2018-12-05T05:45:12Z;Sandra;21513.07;114686786;Ecuador; +2018-12-05T05:03:14Z;Armando;1307.276;115126310;Ecuador; +2018-12-05T04:59:05Z;Eduardo;10356.47;116219592;Ecuador; +2018-12-05T04:41:14Z;nathalia;8683.816;116214153;Ecuador; +2018-12-05T04:37:59Z;Ana;11302.04;114988390;Ecuador; +2018-12-05T04:35:09Z;Nathália;2808.859;114793326;Ecuador; +2018-12-05T04:22:30Z;Armando;6061.887;114995928;Ecuador; +2018-12-05T04:19:53Z;Nathália;5410.321;116206352;Ecuador; +2018-12-05T03:33:48Z;Júlio;8602.174;115988122;Ecuador; +2018-12-05T03:19:47Z;Armando;3454.426;116214654;Ecuador; +2018-12-05T03:18:10Z;nathalia;1362.31;115722294;Ecuador; +2018-12-05T03:00:01Z;Júlio;3390.407;114566004;Ecuador; +2018-12-05T02:50:05Z;Nathália;11501.45;115814447;Ecuador; +2018-12-05T02:24:00Z;Eduardo;2027.151;116014298;Ecuador; +2018-12-05T02:12:21Z;nathalia;3952.461;115158894;Ecuador; +2018-12-05T02:09:45Z;Sandra;3091.833;115995877;Ecuador; +2018-12-05T01:52:09Z;Sandra;2427.375;114230002;Ecuador; +2018-12-05T01:21:47Z;Ana;5436.507;115733610;Ecuador; +2018-12-05T01:20:24Z;Nathália;6933.089;114244686;Ecuador; +2018-12-05T01:20:02Z;Armando;509.7808;114637947;Ecuador; +2018-12-05T01:19:25Z;Armando;7075.696;115549628;Ecuador; +2018-12-05T01:03:51Z;Júlio;10035.27;116356534;Ecuador; +2018-12-05T00:22:24Z;Júlio;15235.58;114739075;Ecuador; +2018-12-05T00:21:41Z;Armando;13323.09;116124758;Ecuador; +2018-12-05T00:18:56Z;Júlio Cesar;3083.382;114406602;Ecuador; +2018-12-05T00:09:53Z;Nathália;4969.137;114612834;Ecuador; +2018-12-04T23:59:57Z;Sandra;2627.55;116240426;Ecuador; +2018-12-04T23:41:34Z;Sandra;4915.564;115626185;Ecuador; +2018-12-04T23:22:05Z;Eduardo;1968.233;115938760;Ecuador; +2018-12-04T23:03:26Z;Nathália;10069.87;114865404;Ecuador; +2018-12-04T22:58:12Z;Júlio;15958.6;114458347;Ecuador; +2018-12-04T22:39:13Z;Eduardo;9650.261;115613650;Ecuador; +2018-12-04T22:21:49Z;Nathália;600.1466;115717421;Ecuador; +2018-12-04T22:09:09Z;nathalia;6118.281;115218105;Ecuador; +2018-12-04T22:05:47Z;Nathália;17534.28;114337602;Ecuador; +2018-12-04T21:51:06Z;Ana;6775.054;114520510;Ecuador; +2018-12-04T21:38:35Z;Júlio;18265.74;114230636;Ecuador; +2018-12-04T21:12:39Z;Ana;10781.4;114446372;Ecuador; +2018-12-04T21:04:20Z;Sandra;12305.77;115544813;Ecuador; +2018-12-04T20:51:41Z;Júlio Cesar;16648.01;116285558;Ecuador; +2018-12-04T20:34:52Z;Armando;357.052;116035167;Ecuador; +2018-12-04T20:13:34Z;Sandra;146.0742;115134724;Ecuador; +2018-12-04T20:05:34Z;Sandra;2672.382;115106622;Ecuador; +2018-12-04T19:32:41Z;Armando;517.8544;115133911;Ecuador; +2018-12-04T19:29:10Z;nathalia;11513.19;115903727;Ecuador; +2018-12-04T19:11:49Z;Nathália;18864.63;115375890;Ecuador; +2018-12-04T18:30:43Z;Eduardo;2215.845;115380501;Ecuador; +2018-12-04T17:34:06Z;Ana;5959.418;116242444;Ecuador; +2018-12-04T17:17:54Z;Ana;3314.894;114292078;Ecuador; +2018-12-04T17:11:14Z;Júlio Cesar;10358.23;115965247;Ecuador; +2018-12-04T16:31:44Z;Nathália;3889.227;116010911;Ecuador; +2018-12-04T16:23:16Z;Ana;5397.777;114717146;Ecuador; +2018-12-04T16:11:14Z;nathalia;227.4836;116284720;Ecuador; +2018-12-04T16:08:54Z;Júlio Cesar;10356.46;114637483;Ecuador; +2018-12-04T16:08:50Z;Júlio;13271.74;115104876;Ecuador; +2018-12-04T16:07:34Z;Ana;699.5798;115094863;Ecuador; +2018-12-04T15:41:35Z;Sandra;736.6865;115124669;Ecuador; +2018-12-04T15:36:36Z;Armando;5736.355;115115625;Ecuador; +2018-12-04T15:31:14Z;nathalia;2611.167;115204572;Ecuador; +2018-12-04T15:21:13Z;Eduardo;12526.21;116171514;Ecuador; +2018-12-04T15:14:40Z;Armando;18581.75;115111218;Ecuador; +2018-12-04T14:05:25Z;nathalia;11026.9;114357042;Ecuador; +2018-12-04T13:59:17Z;Ana;178.0058;114766522;Ecuador; +2018-12-04T13:28:51Z;Nathália;3485.658;114866157;Ecuador; +2018-12-04T13:25:57Z;Júlio;16207.39;115187242;Ecuador; +2018-12-04T13:17:14Z;Sandra;348.0299;114546885;Ecuador; +2018-12-04T12:59:52Z;Armando;2795.598;116181432;Ecuador; +2018-12-04T11:58:41Z;Júlio;3768.083;115998220;Ecuador; +2018-12-04T11:51:29Z;Armando;2969.425;116396670;Ecuador; +2018-12-04T11:44:06Z;Eduardo;19715.56;116051242;Ecuador; +2018-12-04T11:39:27Z;Armando;13140.01;116132293;Ecuador; +2018-12-04T11:35:30Z;Eduardo;11140.13;114273455;Ecuador; +2018-12-04T11:25:17Z;nathalia;5426.249;115496439;Ecuador; +2018-12-04T11:24:13Z;Armando;586.9929;116298687;Ecuador; +2018-12-04T11:22:11Z;Armando;3833.234;116374791;Ecuador; +2018-12-04T11:14:06Z;Ana;523.3825;115879255;Ecuador; +2018-12-04T10:31:36Z;Júlio;2256.51;115232916;Ecuador; +2018-12-04T10:25:59Z;Júlio Cesar;184.4248;114560746;Ecuador; +2018-12-04T10:17:48Z;Júlio;10938.43;116370116;Ecuador; +2018-12-04T10:09:50Z;Nathália;2347.251;115644891;Ecuador; +2018-12-04T09:50:41Z;Armando;338.4853;114527167;Ecuador; +2018-12-04T09:33:46Z;Júlio;265.264;114726782;Ecuador; +2018-12-04T08:53:18Z;Armando;3349.982;114605803;Ecuador; +2018-12-04T08:15:05Z;Júlio;1853.06;116249455;Ecuador; +2018-12-04T08:03:44Z;Ana;791.4844;114423158;Ecuador; +2018-12-04T07:48:15Z;Nathália;1293.447;114240685;Ecuador; +2018-12-04T07:47:37Z;Júlio;20370.65;115749060;Ecuador; +2018-12-04T07:47:24Z;Sandra;5769.649;116110621;Ecuador; +2018-12-04T07:43:15Z;Eduardo;8963.113;115749944;Ecuador; +2018-12-04T07:41:02Z;Sandra;10870.91;115409997;Ecuador; +2018-12-04T07:30:34Z;Júlio Cesar;10439.62;116212419;Ecuador; +2018-12-04T07:23:10Z;Ana;1710.647;116278535;Ecuador; +2018-12-04T07:03:16Z;Nathália;15832.16;115902937;Ecuador; +2018-12-04T06:52:18Z;Armando;6915.361;114601020;Ecuador; +2018-12-04T06:34:53Z;Armando;3841.574;114337300;Ecuador; +2018-12-04T06:10:01Z;Júlio Cesar;37.31482;116173404;Ecuador; +2018-12-04T05:10:45Z;Sandra;821.2551;114653354;Ecuador; +2018-12-04T04:12:23Z;Armando;1612.309;116313101;Ecuador; +2018-12-04T04:04:02Z;Ana;10098.65;115477104;Ecuador; +2018-12-04T04:03:41Z;Sandra;5143.278;114606440;Ecuador; +2018-12-04T04:00:26Z;nathalia;434.6349;116074906;Ecuador; +2018-12-04T03:56:47Z;Sandra;2605.276;116146543;Ecuador; +2018-12-04T03:51:07Z;Júlio Cesar;1574.003;115938138;Ecuador; +2018-12-04T03:48:19Z;Ana;1716.593;115234077;Ecuador; +2018-12-04T03:42:00Z;Eduardo;11398.46;115573982;Ecuador; +2018-12-04T03:40:14Z;Júlio Cesar;404.152;115912188;Ecuador; +2018-12-04T03:32:35Z;Armando;12747.02;116081813;Ecuador; +2018-12-04T03:23:39Z;Armando;4298.99;114915068;Ecuador; +2018-12-04T03:21:50Z;Sandra;1513.028;115456939;Ecuador; +2018-12-04T03:13:45Z;Nathália;681.0102;114831080;Ecuador; +2018-12-04T03:02:14Z;Júlio Cesar;3328.827;114200612;Ecuador; +2018-12-04T02:56:19Z;Júlio Cesar;1370.362;114801790;Ecuador; +2018-12-04T02:51:56Z;nathalia;4317.54;114949864;Ecuador; +2018-12-04T02:44:32Z;Júlio;9427.16;114965197;Ecuador; +2018-12-04T02:39:38Z;Sandra;9854.935;115068490;Ecuador; +2018-12-04T02:36:25Z;Nathália;17673.79;115155401;Ecuador; +2018-12-04T02:31:04Z;Sandra;1548.539;114802297;Ecuador; +2018-12-04T02:26:34Z;Ana;9097.784;114780609;Ecuador; +2018-12-04T02:21:50Z;Eduardo;2075.805;116258559;Ecuador; +2018-12-04T02:20:30Z;nathalia;14610.04;114599944;Ecuador; +2018-12-04T02:07:21Z;Júlio;2339.171;114874255;Ecuador; +2018-12-04T01:47:10Z;Ana;8341.278;114965327;Ecuador; +2018-12-04T01:21:25Z;Júlio;1115.164;114274940;Ecuador; +2018-12-04T01:15:15Z;nathalia;216.7988;114403725;Ecuador; +2018-12-04T00:52:27Z;Nathália;15614.36;115570060;Ecuador; +2018-12-04T00:45:48Z;Nathália;2436.948;116064936;Ecuador; +2018-12-04T00:18:59Z;Eduardo;10207.95;115001015;Ecuador; +2018-12-03T23:47:53Z;Júlio Cesar;3877.628;114910054;Ecuador; +2018-12-03T23:47:17Z;Eduardo;4842.112;115118553;Ecuador; +2018-12-03T23:39:27Z;Armando;1461.382;115863241;Ecuador; +2018-12-03T23:19:08Z;Ana;13627.83;114613993;Ecuador; +2018-12-03T23:15:57Z;Júlio Cesar;7567.516;114921451;Ecuador; +2018-12-03T22:48:04Z;Ana;538.8256;115041357;Ecuador; +2018-12-03T21:44:54Z;Júlio Cesar;5583.443;115558606;Ecuador; +2018-12-03T21:19:46Z;Ana;3656.669;114333238;Ecuador; +2018-12-03T21:18:15Z;Ana;2476.697;115293058;Ecuador; +2018-12-03T21:17:16Z;Eduardo;3147.777;114697585;Ecuador; +2018-12-03T20:52:31Z;Nathália;2311.876;115125717;Ecuador; +2018-12-03T20:51:52Z;Eduardo;11642.42;114872339;Ecuador; +2018-12-03T20:27:24Z;Júlio Cesar;978.5043;114244455;Ecuador; +2018-12-03T20:01:47Z;nathalia;2476.577;114776713;Ecuador; +2018-12-03T19:54:43Z;Júlio;4353.668;114443387;Ecuador; +2018-12-03T19:32:26Z;Eduardo;10131.22;115834852;Ecuador; +2018-12-03T19:31:31Z;Nathália;619.1951;114512198;Ecuador; +2018-12-03T19:30:46Z;Eduardo;411.5841;116250712;Ecuador; +2018-12-03T19:11:23Z;Armando;10327.72;115910914;Ecuador; +2018-12-03T19:08:41Z;Júlio;8827.955;115675309;Ecuador; +2018-12-03T18:58:03Z;Eduardo;10976.28;114384247;Ecuador; +2018-12-03T18:49:53Z;Ana;13115.06;114550587;Ecuador; +2018-12-03T18:46:59Z;Júlio;2170.229;114322272;Ecuador; +2018-12-03T18:16:58Z;Júlio;135.3001;115369581;Ecuador; +2018-12-03T18:02:20Z;Ana;397.0472;114858411;Ecuador; +2018-12-03T17:25:04Z;Eduardo;2404.634;115921683;Ecuador; +2018-12-03T17:24:14Z;Eduardo;673.7312;114936191;Ecuador; +2018-12-03T17:15:34Z;nathalia;4636.584;114612498;Ecuador; +2018-12-03T16:48:42Z;Eduardo;7842.258;114806664;Ecuador; +2018-12-03T16:36:31Z;nathalia;3553.982;115416430;Ecuador; +2018-12-03T16:17:13Z;nathalia;4164.952;114657445;Ecuador; +2018-12-03T16:14:38Z;Eduardo;1619.194;114335023;Ecuador; +2018-12-03T16:03:11Z;Ana;12035.31;116048287;Ecuador; +2018-12-03T15:49:27Z;Nathália;7814.211;115387710;Ecuador; +2018-12-03T15:23:10Z;Armando;8284.329;114421469;Ecuador; +2018-12-03T14:30:59Z;Armando;2123.909;114583148;Ecuador; +2018-12-03T14:23:24Z;Nathália;4785.398;115590722;Ecuador; +2018-12-03T14:22:29Z;nathalia;3995.609;114569177;Ecuador; +2018-12-03T14:18:20Z;Armando;6011.943;116259184;Ecuador; +2018-12-03T14:14:35Z;Júlio;9202.591;115879152;Ecuador; +2018-12-03T14:11:39Z;Eduardo;17587.58;114882824;Ecuador; +2018-12-03T14:07:52Z;Júlio;7557.033;116391527;Ecuador; +2018-12-03T14:00:02Z;Nathália;13038.6;116333016;Ecuador; +2018-12-03T13:58:55Z;Armando;6402.459;115673577;Ecuador; +2018-12-03T13:47:52Z;Eduardo;2478.043;115986206;Ecuador; +2018-12-03T13:40:51Z;nathalia;1455.94;116121797;Ecuador; +2018-12-03T13:22:24Z;Júlio Cesar;1726.632;115836137;Ecuador; +2018-12-03T13:15:58Z;Júlio Cesar;1635.363;115745222;Ecuador; +2018-12-03T13:08:04Z;Eduardo;20469.64;114849034;Ecuador; +2018-12-03T12:41:13Z;Júlio Cesar;1048.263;116156437;Ecuador; +2018-12-03T12:31:20Z;Júlio;286.6002;115896672;Ecuador; +2018-12-03T12:03:31Z;Júlio Cesar;2188.583;114411982;Ecuador; +2018-12-03T11:50:45Z;Nathália;2521.786;115142747;Ecuador; +2018-12-03T11:49:59Z;Sandra;9259.029;114702676;Ecuador; +2018-12-03T11:47:36Z;Sandra;17446.48;114729956;Ecuador; +2018-12-03T11:44:40Z;nathalia;11487.8;114432161;Ecuador; +2018-12-03T11:34:04Z;Júlio;23129.47;115539317;Ecuador; +2018-12-03T11:24:02Z;Júlio;4157.314;115891216;Ecuador; +2018-12-03T11:20:52Z;Sandra;5743.321;115804106;Ecuador; +2018-12-03T11:16:28Z;Júlio Cesar;845.9567;114723237;Ecuador; +2018-12-03T11:14:28Z;Eduardo;1565.074;114268216;Ecuador; +2018-12-03T11:12:33Z;Ana;11406.85;115362537;Ecuador; +2018-12-03T11:03:52Z;Eduardo;4015.236;114847282;Ecuador; +2018-12-03T11:01:17Z;Ana;5345.073;115567504;Ecuador; +2018-12-03T10:55:32Z;Júlio;5498.435;115920996;Ecuador; +2018-12-03T10:36:53Z;Júlio;12116.6;115423485;Ecuador; +2018-12-03T10:06:21Z;nathalia;11947.09;115617777;Ecuador; +2018-12-03T10:05:11Z;Armando;7713.225;115150335;Ecuador; +2018-12-03T09:45:32Z;Sandra;1402.636;114904734;Ecuador; +2018-12-03T09:45:27Z;Júlio;91.48641;114982104;Ecuador; +2018-12-03T09:42:52Z;Armando;2939.044;115330042;Ecuador; +2018-12-03T09:41:16Z;Eduardo;15324.54;115157252;Ecuador; +2018-12-03T09:35:25Z;Júlio;10310.89;114244986;Ecuador; +2018-12-03T09:13:13Z;Eduardo;16029.45;116337407;Ecuador; +2018-12-03T08:44:10Z;Ana;5915.951;114674323;Ecuador; +2018-12-03T08:43:15Z;nathalia;4853.534;114640785;Ecuador; +2018-12-03T08:26:03Z;Júlio;11803.63;114316086;Ecuador; +2018-12-03T08:24:12Z;Sandra;2237.661;115726549;Ecuador; +2018-12-03T07:36:36Z;Armando;2912.792;115250804;Ecuador; +2018-12-03T06:47:28Z;Nathália;2069.649;115741621;Ecuador; +2018-12-03T06:25:52Z;Ana;7748.037;116272121;Ecuador; +2018-12-03T06:20:51Z;Júlio;11068.76;115458501;Ecuador; +2018-12-03T05:51:45Z;Sandra;1685.824;115444584;Ecuador; +2018-12-03T05:39:50Z;Sandra;4449.242;116341312;Ecuador; +2018-12-03T05:36:12Z;Armando;2316.607;114610679;Ecuador; +2018-12-03T05:21:39Z;Ana;4948.161;116148545;Ecuador; +2018-12-03T05:03:23Z;Ana;961.9732;115006568;Ecuador; +2018-12-03T04:46:25Z;Armando;1153.772;116020639;Ecuador; +2018-12-03T04:34:49Z;Ana;1128.385;114215081;Ecuador; +2018-12-03T04:29:32Z;Júlio;12.40382;116099979;Ecuador; +2018-12-03T04:16:36Z;Armando;179.4376;115039246;Ecuador; +2018-12-03T04:15:15Z;Sandra;23558.27;115569228;Ecuador; +2018-12-03T03:23:14Z;Sandra;13994.99;114941250;Ecuador; +2018-12-03T03:20:34Z;Ana;23169.48;114838112;Ecuador; +2018-12-03T02:54:06Z;nathalia;18489.46;115597766;Ecuador; +2018-12-03T02:09:43Z;nathalia;1626.844;114847703;Ecuador; +2018-12-03T02:08:08Z;Eduardo;8862.513;115650593;Ecuador; +2018-12-03T01:36:19Z;Ana;8021.571;115884231;Ecuador; +2018-12-03T01:25:39Z;Armando;2863.878;116220184;Ecuador; +2018-12-03T01:19:20Z;Nathália;14518.74;115242437;Ecuador; +2018-12-03T01:17:25Z;Eduardo;918.3204;115107770;Ecuador; +2018-12-03T01:17:07Z;Júlio Cesar;10801.47;114619200;Ecuador; +2018-12-03T01:05:15Z;Eduardo;12938.45;114755619;Ecuador; +2018-12-03T01:02:41Z;Júlio;1723.953;115632743;Ecuador; +2018-12-02T23:48:03Z;Ana;8610.795;116118131;Ecuador; +2018-12-02T23:16:01Z;Júlio;5626.099;115940436;Ecuador; +2018-12-02T22:56:22Z;Júlio;13512.81;115790613;Ecuador; +2018-12-02T22:33:22Z;Armando;2212.299;115851907;Ecuador; +2018-12-02T22:13:20Z;Júlio Cesar;12742.01;114987051;Ecuador; +2018-12-02T21:19:39Z;Eduardo;8086.909;116131107;Ecuador; +2018-12-02T21:07:27Z;Ana;4047.438;114726429;Ecuador; +2018-12-02T20:20:36Z;Júlio Cesar;2003.592;114294133;Ecuador; +2018-12-02T19:47:33Z;Armando;918.8474;114424274;Ecuador; +2018-12-02T19:25:25Z;Sandra;20704.73;115036588;Ecuador; +2018-12-02T19:24:55Z;Júlio;1066.173;115485689;Ecuador; +2018-12-02T18:48:55Z;Armando;17830.46;114715957;Ecuador; +2018-12-02T18:07:32Z;nathalia;23099.46;115126710;Ecuador; +2018-12-02T17:28:52Z;Ana;1274.8;115028269;Ecuador; +2018-12-02T17:10:19Z;Sandra;17071.81;115768727;Ecuador; +2018-12-02T17:05:31Z;Júlio Cesar;5910.297;114975454;Ecuador; +2018-12-02T16:45:13Z;Eduardo;17025.8;115781169;Ecuador; +2018-12-02T15:41:41Z;Nathália;99.69326;115180273;Ecuador; +2018-12-02T14:26:31Z;Júlio;2425.112;116040412;Ecuador; +2018-12-02T14:17:56Z;Eduardo;4130.019;114874383;Ecuador; +2018-12-02T14:17:09Z;Júlio;10417.48;115146040;Ecuador; +2018-12-02T14:14:29Z;Sandra;7391.134;115700224;Ecuador; +2018-12-02T13:22:53Z;Eduardo;1683.054;116032336;Ecuador; +2018-12-02T13:19:24Z;Sandra;684.1989;115606387;Ecuador; +2018-12-02T13:12:17Z;Sandra;4615.554;116342127;Ecuador; +2018-12-02T12:20:22Z;Nathália;1660.589;114931783;Ecuador; +2018-12-02T12:14:33Z;Nathália;5407.167;115343455;Ecuador; +2018-12-02T11:53:57Z;Eduardo;11578.98;115123750;Ecuador; +2018-12-02T11:44:17Z;Nathália;2189.591;116194020;Ecuador; +2018-12-02T11:43:16Z;nathalia;1037.137;116115460;Ecuador; +2018-12-02T11:15:56Z;Sandra;2492.095;115749666;Ecuador; +2018-12-02T11:10:44Z;Sandra;7825.731;114739039;Ecuador; +2018-12-02T10:19:09Z;nathalia;489.563;114402731;Ecuador; +2018-12-02T09:59:22Z;Júlio;392.79;115669586;Ecuador; +2018-12-02T09:54:59Z;Júlio Cesar;1325.869;115155653;Ecuador; +2018-12-02T09:20:04Z;Eduardo;124.2226;115141573;Ecuador; +2018-12-02T09:14:36Z;Armando;957.3491;114428178;Ecuador; +2018-12-02T09:09:23Z;Nathália;1759.791;115449329;Ecuador; +2018-12-02T09:03:38Z;Ana;12911.82;114929364;Ecuador; +2018-12-02T08:51:44Z;Ana;6630.361;115198166;Ecuador; +2018-12-02T08:51:02Z;nathalia;2644.463;115171067;Ecuador; +2018-12-02T08:38:50Z;nathalia;148.0407;114253412;Ecuador; +2018-12-02T08:37:49Z;Júlio Cesar;2513.54;116187582;Ecuador; +2018-12-02T08:34:31Z;nathalia;11883.17;115139936;Ecuador; +2018-12-02T08:26:20Z;nathalia;16248.08;115355704;Ecuador; +2018-12-02T07:57:45Z;Eduardo;1314.812;116257229;Ecuador; +2018-12-02T07:40:05Z;Ana;4399.45;115001843;Ecuador; +2018-12-02T07:30:59Z;nathalia;16722.07;114976653;Ecuador; +2018-12-02T07:29:16Z;Sandra;1651.997;114856267;Ecuador; +2018-12-02T07:22:48Z;nathalia;4730.556;114790625;Ecuador; +2018-12-02T06:59:19Z;Eduardo;20545.15;115466888;Ecuador; +2018-12-02T06:46:14Z;Júlio;6877.735;115639054;Ecuador; +2018-12-02T06:35:31Z;Armando;17846.62;115679134;Ecuador; +2018-12-02T06:32:41Z;Eduardo;2424.42;115824686;Ecuador; +2018-12-02T05:51:38Z;Sandra;10820.24;115123786;Ecuador; +2018-12-02T05:24:49Z;Ana;8275.811;116149527;Ecuador; +2018-12-02T05:12:46Z;nathalia;4353.24;116330140;Ecuador; +2018-12-02T04:58:37Z;Armando;24988.71;115706955;Ecuador; +2018-12-02T04:42:21Z;Júlio Cesar;4693.496;114290791;Ecuador; +2018-12-02T04:37:51Z;Nathália;1562.412;114807272;Ecuador; +2018-12-02T04:31:08Z;Júlio Cesar;8156.568;115373478;Ecuador; +2018-12-02T04:21:17Z;Armando;4318.844;114520828;Ecuador; +2018-12-02T03:58:13Z;Ana;1639.471;115905363;Ecuador; +2018-12-02T03:56:09Z;Ana;3109.572;116344537;Ecuador; +2018-12-02T03:54:30Z;Sandra;2783.207;114450338;Ecuador; +2018-12-02T03:46:44Z;nathalia;6280.765;114397579;Ecuador; +2018-12-02T03:43:43Z;Nathália;770.6122;114977418;Ecuador; +2018-12-02T03:31:43Z;Armando;12087.01;114922716;Ecuador; +2018-12-02T02:57:25Z;Júlio Cesar;9468.334;115206674;Ecuador; +2018-12-02T02:41:48Z;Eduardo;7745.748;115435548;Ecuador; +2018-12-02T02:06:32Z;Nathália;259.6673;115708023;Ecuador; +2018-12-02T02:02:44Z;Júlio Cesar;14281.36;115389711;Ecuador; +2018-12-02T01:50:43Z;Ana;252.7725;115402964;Ecuador; +2018-12-02T01:36:38Z;Sandra;194.7576;114428919;Ecuador; +2018-12-02T01:23:33Z;Júlio Cesar;18903.92;114715160;Ecuador; +2018-12-02T01:15:19Z;Júlio Cesar;414.774;114345921;Ecuador; +2018-12-02T00:39:24Z;Armando;12470.14;115290877;Ecuador; +2018-12-02T00:35:32Z;Júlio Cesar;12552.26;115362209;Ecuador; +2018-12-02T00:35:05Z;Ana;3910.803;116123626;Ecuador; +2018-12-02T00:23:12Z;Nathália;6117.164;115422870;Ecuador; +2018-12-01T23:55:56Z;Eduardo;5087.528;115524170;Ecuador; +2018-12-01T23:24:51Z;nathalia;1183.034;115942014;Ecuador; +2018-12-01T23:23:44Z;Armando;1330.158;115116374;Ecuador; +2018-12-01T22:52:30Z;Júlio Cesar;127.6605;115242380;Ecuador; +2018-12-01T22:28:01Z;Nathália;20887.4;115393262;Ecuador; +2018-12-01T22:00:36Z;Sandra;3908.813;116082125;Ecuador; +2018-12-01T21:56:38Z;Nathália;5800.984;114397772;Ecuador; +2018-12-01T21:51:08Z;Júlio;10476.98;115849400;Ecuador; +2018-12-01T21:45:48Z;Sandra;9926.68;115971823;Ecuador; +2018-12-01T21:35:36Z;Ana;7434.077;116345921;Ecuador; +2018-12-01T20:59:49Z;Júlio;434.9505;114239140;Ecuador; +2018-12-01T20:55:50Z;Sandra;2149.358;115482783;Ecuador; +2018-12-01T20:15:54Z;Nathália;5124.122;116195967;Ecuador; +2018-12-01T19:45:43Z;Júlio Cesar;915.6324;115786789;Ecuador; +2018-12-01T19:34:24Z;Nathália;1753.379;116135780;Ecuador; +2018-12-01T19:27:03Z;Armando;11155.43;114702711;Ecuador; +2018-12-01T19:26:44Z;nathalia;3752.032;115925316;Ecuador; +2018-12-01T19:14:43Z;nathalia;13181.63;115685707;Ecuador; +2018-12-01T18:46:45Z;Ana;1396.173;115733700;Ecuador; +2018-12-01T18:37:12Z;Nathália;128.1015;115172606;Ecuador; +2018-12-01T18:34:01Z;Nathália;4808.204;114684516;Ecuador; +2018-12-01T18:24:19Z;Armando;1248.619;114326119;Ecuador; +2018-12-01T18:18:34Z;Armando;2196.026;115119698;Ecuador; +2018-12-01T17:52:59Z;Sandra;2704.813;115547914;Ecuador; +2018-12-01T17:44:09Z;Júlio;13556.53;116367837;Ecuador; +2018-12-01T17:38:15Z;Júlio Cesar;17285.23;115778022;Ecuador; +2018-12-01T16:58:56Z;Eduardo;775.1948;115316981;Ecuador; +2018-12-01T15:56:57Z;Júlio;855.1135;116369208;Ecuador; +2018-12-01T15:42:18Z;Nathália;17080.54;114490544;Ecuador; +2018-12-01T15:34:10Z;Júlio Cesar;9667.225;114511996;Ecuador; +2018-12-01T15:31:59Z;Eduardo;27088.5;115685552;Ecuador; +2018-12-01T15:25:52Z;Júlio;255.4001;115325714;Ecuador; +2018-12-01T15:24:38Z;Armando;1608.661;114262764;Ecuador; +2018-12-01T14:40:22Z;Júlio;6083.286;114231969;Ecuador; +2018-12-01T14:27:11Z;nathalia;2606.966;115934014;Ecuador; +2018-12-01T14:21:50Z;nathalia;27574.98;116216082;Ecuador; +2018-12-01T14:18:16Z;Armando;4180.381;114729834;Ecuador; +2018-12-01T14:17:11Z;Eduardo;10650.68;115211262;Ecuador; +2018-12-01T14:14:10Z;Júlio Cesar;6529.907;114541403;Ecuador; +2018-12-01T13:53:48Z;Sandra;24801.48;116370035;Ecuador; +2018-12-01T13:52:51Z;Nathália;19189.29;115013161;Ecuador; +2018-12-01T13:46:32Z;Júlio;1022.179;115423331;Ecuador; +2018-12-01T13:36:49Z;nathalia;8329.245;114329961;Ecuador; +2018-12-01T13:17:08Z;Nathália;2259.329;115575305;Ecuador; +2018-12-01T12:59:30Z;Sandra;2768.83;114301336;Ecuador; +2018-12-01T12:52:21Z;Sandra;7118.034;115625184;Ecuador; +2018-12-01T12:47:07Z;Ana;21765.77;115837777;Ecuador; +2018-12-01T12:31:49Z;Armando;2784.752;116215334;Ecuador; +2018-12-01T12:18:43Z;Eduardo;2532.88;114763849;Ecuador; +2018-12-01T12:08:41Z;nathalia;182.7697;114820108;Ecuador; +2018-12-01T11:49:31Z;Júlio Cesar;1693.288;114803671;Ecuador; +2018-12-01T11:41:10Z;Nathália;973.9292;115631044;Ecuador; +2018-12-01T11:18:04Z;Eduardo;8727.47;115181900;Ecuador; +2018-12-01T11:07:54Z;nathalia;1059.37;114872183;Ecuador; +2018-12-01T10:49:22Z;Armando;5294.443;115082145;Ecuador; +2018-12-01T10:34:57Z;Júlio Cesar;7152.498;116195065;Ecuador; +2018-12-01T10:28:13Z;nathalia;9930.746;114458866;Ecuador; +2018-12-01T10:25:14Z;Nathália;997.5674;115926069;Ecuador; +2018-12-01T09:42:35Z;Sandra;5554.151;115124095;Ecuador; +2018-12-01T09:39:41Z;Ana;991.6856;115925083;Ecuador; +2018-12-01T08:31:25Z;nathalia;2395.907;115513466;Ecuador; +2018-12-01T08:22:27Z;nathalia;5688.318;116271268;Ecuador; +2018-12-01T07:58:49Z;Júlio Cesar;11681.02;115875970;Ecuador; +2018-12-01T07:31:02Z;nathalia;16255.77;115626973;Ecuador; +2018-12-01T06:44:48Z;Ana;16000.74;114718507;Ecuador; +2018-12-01T06:14:16Z;Ana;6448.345;115794888;Ecuador; +2018-12-01T06:09:49Z;Sandra;11880.93;114858750;Ecuador; +2018-12-01T05:50:20Z;Eduardo;9350.525;115613123;Ecuador; +2018-12-01T05:39:53Z;Ana;18827.74;114334976;Ecuador; +2018-12-01T05:24:15Z;nathalia;8123.381;115563461;Ecuador; +2018-12-01T05:06:15Z;Sandra;8956.542;116281597;Ecuador; +2018-12-01T04:26:03Z;nathalia;4812.952;115014440;Ecuador; +2018-12-01T04:22:36Z;Júlio Cesar;739.0753;116162785;Ecuador; +2018-12-01T04:09:32Z;Júlio Cesar;2844.602;115833721;Ecuador; +2018-12-01T03:55:47Z;nathalia;2817.85;116221843;Ecuador; +2018-12-01T03:49:39Z;nathalia;2560.415;116161578;Ecuador; +2018-12-01T03:33:10Z;Júlio Cesar;1723.509;114530330;Ecuador; +2018-12-01T03:12:57Z;Nathália;1313.054;115891589;Ecuador; +2018-12-01T03:08:13Z;Nathália;1690.813;115940896;Ecuador; +2018-12-01T02:59:40Z;nathalia;479.7445;114823392;Ecuador; +2018-12-01T02:45:41Z;Ana;1700.781;115231685;Ecuador; +2018-12-01T02:21:57Z;Sandra;2743.897;115320810;Ecuador; +2018-12-01T02:19:34Z;nathalia;10853.51;114219482;Ecuador; +2018-12-01T02:13:44Z;Ana;3040.668;115133395;Ecuador; +2018-12-01T02:07:56Z;Júlio Cesar;5065.509;114555841;Ecuador; +2018-12-01T01:56:59Z;Júlio;158.6405;116111472;Ecuador; +2018-12-01T01:37:02Z;Sandra;1141.148;114738377;Ecuador; +2018-12-01T01:30:22Z;Sandra;787.5089;115635513;Ecuador; +2018-12-01T01:20:25Z;Ana;3541.465;114856486;Ecuador; +2018-12-01T00:49:36Z;Ana;1862.307;116142753;Ecuador; +2018-12-01T00:49:03Z;nathalia;8981.385;114214642;Ecuador; +2018-12-01T00:43:29Z;Júlio;6250.792;115612009;Ecuador; +2018-12-01T00:19:32Z;Eduardo;25411.64;114446534;Ecuador; +2018-12-01T00:15:27Z;Ana;289.4874;115514558;Ecuador; +2018-12-01T00:09:36Z;Nathália;24215.25;114635653;Ecuador; +2018-11-30T23:39:33Z;Ana;1518.323;116174712;Ecuador; +2018-11-30T23:37:32Z;Júlio Cesar;2684.13;114229993;Ecuador; +2018-11-30T23:34:29Z;Eduardo;557.7104;114981571;Ecuador; +2018-11-30T22:23:36Z;Sandra;7032.31;115815083;Ecuador; +2018-11-30T22:18:48Z;Eduardo;7110.45;114468524;Ecuador; +2018-11-30T21:32:40Z;nathalia;14926.16;115466882;Ecuador; +2018-11-30T21:32:11Z;Nathália;604.4642;115042825;Ecuador; +2018-11-30T21:07:51Z;Júlio;1807.753;115872537;Ecuador; +2018-11-30T20:41:55Z;nathalia;503.8089;114383751;Ecuador; +2018-11-30T20:33:22Z;Ana;1639.869;115365044;Ecuador; +2018-11-30T20:26:16Z;Nathália;8797.559;115837678;Ecuador; +2018-11-30T20:08:14Z;Sandra;9023.686;114356077;Ecuador; +2018-11-30T19:30:27Z;Ana;4354.51;115403183;Ecuador; +2018-11-30T19:15:27Z;Júlio Cesar;4772.64;115347741;Ecuador; +2018-11-30T18:48:49Z;Júlio;1658.041;116213375;Ecuador; +2018-11-30T18:45:11Z;Eduardo;5415.387;116284008;Ecuador; +2018-11-30T18:29:29Z;Ana;14640.98;114645155;Ecuador; +2018-11-30T18:11:44Z;Júlio;9219.076;114392383;Ecuador; +2018-11-30T17:47:32Z;Eduardo;905.2576;115780237;Ecuador; +2018-11-30T17:32:38Z;Eduardo;20466.52;115942448;Ecuador; +2018-11-30T17:26:08Z;Eduardo;4313.411;114745385;Ecuador; +2018-11-30T17:13:00Z;Júlio;11200.97;114224858;Ecuador; +2018-11-30T17:02:53Z;Nathália;4572.146;115553472;Ecuador; +2018-11-30T17:00:53Z;Nathália;7992.795;115328926;Ecuador; +2018-11-30T16:58:30Z;Júlio;3044.99;115814979;Ecuador; +2018-11-30T16:53:15Z;nathalia;13890.96;114933733;Ecuador; +2018-11-30T16:46:08Z;Ana;3350.223;114492700;Ecuador; +2018-11-30T15:58:45Z;Júlio;9416.75;114479628;Ecuador; +2018-11-30T15:26:13Z;Nathália;16338.63;114489472;Ecuador; +2018-11-30T15:16:52Z;Eduardo;4736.998;116398903;Ecuador; +2018-11-30T15:09:50Z;Armando;6311.217;114867490;Ecuador; +2018-11-30T15:05:12Z;nathalia;2657.913;115696427;Ecuador; +2018-11-30T14:55:31Z;nathalia;7403.694;116377602;Ecuador; +2018-11-30T14:52:14Z;Nathália;1279.077;115914866;Ecuador; +2018-11-30T14:39:57Z;Ana;4096.984;115452480;Ecuador; +2018-11-30T14:30:16Z;Júlio;1058.372;115058465;Ecuador; +2018-11-30T13:19:38Z;Júlio Cesar;27233.78;116161652;Ecuador; +2018-11-30T12:19:30Z;Nathália;2181.66;116343488;Ecuador; +2018-11-30T12:04:10Z;Nathália;8887.766;114910348;Ecuador; +2018-11-30T11:46:56Z;Sandra;518.226;115644158;Ecuador; +2018-11-30T11:33:03Z;Sandra;6366.954;114612993;Ecuador; +2018-11-30T09:58:18Z;Júlio;262.4645;116293966;Ecuador; +2018-11-30T09:42:09Z;Nathália;2066.986;116130212;Ecuador; +2018-11-30T09:09:21Z;Sandra;3167.111;115987662;Ecuador; +2018-11-30T09:01:02Z;Armando;688.7549;115852380;Ecuador; +2018-11-30T08:54:36Z;Nathália;4603.934;116208366;Ecuador; +2018-11-30T08:52:08Z;Júlio;22716.74;115030950;Ecuador; +2018-11-30T08:11:50Z;Júlio;2513.08;115107210;Ecuador; +2018-11-30T08:10:42Z;Nathália;9741.517;115930239;Ecuador; +2018-11-30T08:04:14Z;Eduardo;3667.122;115667373;Ecuador; +2018-11-30T07:42:17Z;nathalia;8467.117;115115999;Ecuador; +2018-11-30T07:24:11Z;Ana;15226.99;114347005;Ecuador; +2018-11-30T07:19:24Z;nathalia;3127.863;114484033;Ecuador; +2018-11-30T07:00:07Z;Nathália;716.3962;116067352;Ecuador; +2018-11-30T06:39:49Z;Nathália;4381.435;115974864;Ecuador; +2018-11-30T06:36:52Z;Júlio Cesar;3573.855;115850878;Ecuador; +2018-11-30T06:29:12Z;Nathália;1043.871;114719337;Ecuador; +2018-11-30T06:12:55Z;Júlio;2731.351;116242958;Ecuador; +2018-11-30T06:11:27Z;nathalia;3170.771;115606679;Ecuador; +2018-11-30T06:08:01Z;Armando;7199.012;116199144;Ecuador; +2018-11-30T05:46:59Z;Júlio;615.52;114544961;Ecuador; +2018-11-30T05:24:51Z;Armando;384.2636;115286251;Ecuador; +2018-11-30T05:17:37Z;nathalia;4970.612;114492025;Ecuador; +2018-11-30T04:13:44Z;Ana;9946.41;116286586;Ecuador; +2018-11-30T03:27:32Z;Ana;538.2323;116350063;Ecuador; +2018-11-30T03:16:10Z;Armando;5893.743;115833149;Ecuador; +2018-11-30T02:54:40Z;Armando;3902.111;115688766;Ecuador; +2018-11-30T02:49:48Z;nathalia;8146.414;116330259;Ecuador; +2018-11-30T02:38:09Z;Júlio;5326.235;116346149;Ecuador; +2018-11-30T02:35:51Z;Ana;1608.885;114287092;Ecuador; +2018-11-30T02:21:11Z;Júlio;15077.32;115069399;Ecuador; +2018-11-30T02:05:23Z;Nathália;4927.636;115026507;Ecuador; +2018-11-30T01:40:12Z;Eduardo;4946.269;116335806;Ecuador; +2018-11-30T01:36:07Z;Júlio Cesar;4951.282;115838205;Ecuador; +2018-11-30T01:29:42Z;Júlio Cesar;13433.71;114426990;Ecuador; +2018-11-30T01:02:08Z;Júlio;4884.05;116104276;Ecuador; +2018-11-30T00:34:39Z;Armando;507.1303;116312625;Ecuador; +2018-11-29T23:46:38Z;Eduardo;11719.2;116051691;Ecuador; +2018-11-29T23:44:21Z;Eduardo;4187.165;116016785;Ecuador; +2018-11-29T23:42:59Z;Eduardo;7889.505;116021853;Ecuador; +2018-11-29T23:31:21Z;Nathália;7162.16;115155995;Ecuador; +2018-11-29T23:29:35Z;Ana;6614.691;116079627;Ecuador; +2018-11-29T23:05:53Z;Sandra;681.8796;115806873;Ecuador; +2018-11-29T22:28:42Z;Sandra;5960.934;116205879;Ecuador; +2018-11-29T22:25:43Z;Júlio Cesar;770.775;115058402;Ecuador; +2018-11-29T22:21:16Z;Armando;10566.23;114532684;Ecuador; +2018-11-29T22:13:10Z;Armando;2608.466;114875380;Ecuador; +2018-11-29T22:08:47Z;Nathália;12547.52;115547093;Ecuador; +2018-11-29T22:06:10Z;Ana;106.1692;114861106;Ecuador; +2018-11-29T21:44:56Z;Sandra;674.6691;115362710;Ecuador; +2018-11-29T21:43:46Z;Júlio Cesar;4699.959;115567531;Ecuador; +2018-11-29T21:40:33Z;Sandra;76.62342;115385902;Ecuador; +2018-11-29T21:29:22Z;Júlio;1328.547;114473303;Ecuador; +2018-11-29T21:27:49Z;Ana;6187.799;115883181;Ecuador; +2018-11-29T21:19:03Z;Eduardo;7203.168;116170264;Ecuador; +2018-11-29T21:13:13Z;Nathália;4051.991;115025032;Ecuador; +2018-11-29T20:33:47Z;Nathália;4301.486;116260813;Ecuador; +2018-11-29T20:32:37Z;Sandra;6583.266;115256685;Ecuador; +2018-11-29T20:29:10Z;Nathália;3845.157;115687231;Ecuador; +2018-11-29T20:28:30Z;Nathália;7377.881;115246828;Ecuador; +2018-11-29T20:26:11Z;Ana;4504.02;115640791;Ecuador; +2018-11-29T19:48:52Z;Nathália;4980.954;114870296;Ecuador; +2018-11-29T19:39:42Z;Júlio Cesar;10241.24;114367185;Ecuador; +2018-11-29T19:28:56Z;Ana;4797.718;114500470;Ecuador; +2018-11-29T19:20:58Z;Nathália;2678.036;116384192;Ecuador; +2018-11-29T19:20:34Z;Júlio;1085.622;114979309;Ecuador; +2018-11-29T18:38:23Z;Eduardo;4649.126;115921562;Ecuador; +2018-11-29T18:32:29Z;Armando;2788.624;114519040;Ecuador; +2018-11-29T18:27:38Z;Júlio Cesar;14658.22;114626819;Ecuador; +2018-11-29T18:02:06Z;nathalia;6185.545;114383796;Ecuador; +2018-11-29T18:00:29Z;Eduardo;15213.97;114645416;Ecuador; +2018-11-29T17:29:46Z;Sandra;8653.894;114485135;Ecuador; +2018-11-29T17:20:09Z;Eduardo;11478.12;115671772;Ecuador; +2018-11-29T16:59:48Z;Júlio Cesar;2852.264;114488516;Ecuador; +2018-11-29T16:49:04Z;Sandra;3448.266;114513341;Ecuador; +2018-11-29T16:34:14Z;Sandra;81.05269;115452050;Ecuador; +2018-11-29T16:31:18Z;Nathália;16492.26;114979289;Ecuador; +2018-11-29T15:47:42Z;Eduardo;9858.999;116206385;Ecuador; +2018-11-29T15:15:58Z;Nathália;6278.792;114610368;Ecuador; +2018-11-29T15:00:39Z;nathalia;11618.22;115140841;Ecuador; +2018-11-29T14:43:24Z;nathalia;23.75722;115356286;Ecuador; +2018-11-29T14:18:17Z;Júlio;1437.377;114666493;Ecuador; +2018-11-29T13:33:38Z;Júlio Cesar;7544.491;116343522;Ecuador; +2018-11-29T13:23:24Z;Nathália;19898.93;114954350;Ecuador; +2018-11-29T13:21:34Z;Nathália;2092.324;116356147;Ecuador; +2018-11-29T13:15:26Z;Ana;760.4785;115920954;Ecuador; +2018-11-29T13:14:45Z;nathalia;6357.782;115066866;Ecuador; +2018-11-29T13:10:08Z;Sandra;1698.844;116092769;Ecuador; +2018-11-29T13:00:08Z;Nathália;9891.589;114479560;Ecuador; +2018-11-29T12:57:56Z;Eduardo;5619.168;114684846;Ecuador; +2018-11-29T12:56:23Z;nathalia;8134.302;116028176;Ecuador; +2018-11-29T12:40:23Z;Armando;4309.903;114767766;Ecuador; +2018-11-29T12:39:31Z;Sandra;9428.099;114980730;Ecuador; +2018-11-29T12:37:06Z;Júlio;1540.154;115357234;Ecuador; +2018-11-29T12:20:44Z;Sandra;134.6485;114575941;Ecuador; +2018-11-29T12:11:19Z;nathalia;7958.737;115502198;Ecuador; +2018-11-29T12:00:43Z;Nathália;55.78103;115518902;Ecuador; +2018-11-29T11:39:01Z;Júlio Cesar;18618.98;116335866;Ecuador; +2018-11-29T11:33:42Z;Armando;10928.21;115333223;Ecuador; +2018-11-29T10:33:20Z;Sandra;19352.84;114590451;Ecuador; +2018-11-29T10:20:43Z;Júlio Cesar;2623.18;116329220;Ecuador; +2018-11-29T09:57:07Z;Sandra;13440.32;116026840;Ecuador; +2018-11-29T09:54:51Z;Júlio;3432.003;115039920;Ecuador; +2018-11-29T09:22:02Z;Armando;2093.894;116089940;Ecuador; +2018-11-29T09:11:00Z;Sandra;12908.38;115975887;Ecuador; +2018-11-29T09:02:10Z;Ana;3608.458;115537594;Ecuador; +2018-11-29T08:57:19Z;Armando;28427.76;114747111;Ecuador; +2018-11-29T08:32:38Z;Ana;8573.548;115794755;Ecuador; +2018-11-29T08:26:32Z;Armando;4658.568;114926570;Ecuador; +2018-11-29T07:36:15Z;Sandra;11788.99;115086026;Ecuador; +2018-11-29T07:33:06Z;Júlio Cesar;1883.258;115383720;Ecuador; +2018-11-29T07:27:38Z;Nathália;7464.921;116136151;Ecuador; +2018-11-29T07:17:50Z;Júlio;7207.46;114491153;Ecuador; +2018-11-29T06:56:16Z;nathalia;7718.82;115599013;Ecuador; +2018-11-29T06:46:56Z;Júlio;11374.06;115251907;Ecuador; +2018-11-29T06:41:31Z;Nathália;3938.99;114252156;Ecuador; +2018-11-29T06:08:12Z;nathalia;14043.22;115764319;Ecuador; +2018-11-29T06:03:09Z;nathalia;1822.061;114492154;Ecuador; +2018-11-29T05:20:45Z;nathalia;6422.629;114697405;Ecuador; +2018-11-29T05:09:23Z;Armando;3148.364;116215156;Ecuador; +2018-11-29T04:58:07Z;Sandra;10881.35;115657430;Ecuador; +2018-11-29T04:28:01Z;Ana;10171.42;114713965;Ecuador; +2018-11-29T04:27:23Z;Júlio Cesar;10709.63;114873720;Ecuador; +2018-11-29T04:04:42Z;Sandra;302.9964;114546779;Ecuador; +2018-11-29T04:01:13Z;Sandra;2919.843;115404407;Ecuador; +2018-11-29T03:36:02Z;nathalia;11974.73;114731035;Ecuador; +2018-11-29T03:34:32Z;nathalia;1912.232;114338358;Ecuador; +2018-11-29T03:20:38Z;Júlio Cesar;3161.366;115982925;Ecuador; +2018-11-29T03:08:14Z;nathalia;1232.537;114486903;Ecuador; +2018-11-29T02:55:26Z;Sandra;11080.99;114450697;Ecuador; +2018-11-29T02:07:20Z;nathalia;9089.187;115025741;Ecuador; +2018-11-29T01:59:21Z;nathalia;1718.172;115588158;Ecuador; +2018-11-29T01:46:21Z;Júlio;19281.81;114227794;Ecuador; +2018-11-29T00:25:37Z;Júlio;600.2421;115711071;Ecuador; +2018-11-29T00:24:52Z;Ana;5073.819;114350292;Ecuador; +2018-11-29T00:17:51Z;Eduardo;993.1991;116330271;Ecuador; +2018-11-28T23:50:25Z;Sandra;9880.428;114860847;Ecuador; +2018-11-28T23:41:13Z;Armando;15104.83;115010382;Ecuador; +2018-11-28T23:28:01Z;Armando;4474.756;115796122;Ecuador; +2018-11-28T23:19:30Z;Eduardo;4321.37;115019411;Ecuador; +2018-11-28T22:52:29Z;Sandra;9163.255;114723850;Ecuador; +2018-11-28T22:40:56Z;Armando;2211.977;114382237;Ecuador; +2018-11-28T22:29:37Z;Armando;3992.838;116070529;Ecuador; +2018-11-28T21:48:03Z;Sandra;243.5312;115397078;Ecuador; +2018-11-28T21:46:21Z;Sandra;10416.94;116121181;Ecuador; +2018-11-28T21:35:01Z;Júlio;1722.827;114766783;Ecuador; +2018-11-28T21:30:47Z;Sandra;3319.018;114925293;Ecuador; +2018-11-28T20:45:02Z;Ana;1006.964;114234486;Ecuador; +2018-11-28T20:43:16Z;Júlio Cesar;2287.07;116033082;Ecuador; +2018-11-28T20:03:54Z;Sandra;15719.45;115621770;Ecuador; +2018-11-28T19:51:08Z;Eduardo;4017.066;115933185;Ecuador; +2018-11-28T19:50:22Z;Nathália;6364.469;115349961;Ecuador; +2018-11-28T19:17:39Z;Júlio;641.3218;115630668;Ecuador; +2018-11-28T18:59:46Z;Júlio Cesar;569.54;115187226;Ecuador; +2018-11-28T18:18:49Z;Sandra;7473.911;114314958;Ecuador; +2018-11-28T18:10:34Z;nathalia;10536.9;115217859;Ecuador; +2018-11-28T18:09:46Z;Júlio;22581.24;116254151;Ecuador; +2018-11-28T17:57:54Z;Sandra;4223.483;115228818;Ecuador; +2018-11-28T17:44:29Z;Armando;14532.45;115964214;Ecuador; +2018-11-28T17:15:40Z;Sandra;1001.053;115534373;Ecuador; +2018-11-28T16:51:50Z;Nathália;8033.019;115056096;Ecuador; +2018-11-28T16:49:29Z;Ana;10376.79;115474229;Ecuador; +2018-11-28T16:30:43Z;Ana;3981.483;114514951;Ecuador; +2018-11-28T15:43:45Z;Eduardo;5503.165;115690590;Ecuador; +2018-11-28T15:22:47Z;Júlio;3356.769;115106239;Ecuador; +2018-11-28T15:21:32Z;Eduardo;9421.651;114817864;Ecuador; +2018-11-28T15:18:39Z;Júlio Cesar;7160.826;115830853;Ecuador; +2018-11-28T15:05:40Z;Nathália;3929.323;116015560;Ecuador; +2018-11-28T15:02:18Z;Júlio;5947.499;115977539;Ecuador; +2018-11-28T14:46:57Z;nathalia;11968.34;115090497;Ecuador; +2018-11-28T14:42:21Z;Armando;20426.18;115997111;Ecuador; +2018-11-28T14:18:35Z;Júlio;6374.797;114440166;Ecuador; +2018-11-28T14:14:55Z;nathalia;9919.168;114586712;Ecuador; +2018-11-28T13:50:14Z;nathalia;5427.691;115302544;Ecuador; +2018-11-28T13:26:09Z;Ana;6949.324;115032534;Ecuador; +2018-11-28T13:21:42Z;Eduardo;8133.497;114628609;Ecuador; +2018-11-28T13:07:23Z;Nathália;15978.06;114717904;Ecuador; +2018-11-28T13:02:08Z;Júlio;671.5131;115906683;Ecuador; +2018-11-28T12:56:06Z;Sandra;2882.246;115689707;Ecuador; +2018-11-28T12:41:27Z;Armando;714.1616;115563110;Ecuador; +2018-11-28T11:46:51Z;Júlio Cesar;1733.856;115294250;Ecuador; +2018-11-28T11:46:01Z;Júlio;12367.55;114868089;Ecuador; +2018-11-28T11:21:13Z;Júlio Cesar;136.0753;115303740;Ecuador; +2018-11-28T11:14:14Z;Nathália;7765.655;115835105;Ecuador; +2018-11-28T10:58:01Z;nathalia;1177.145;114852773;Ecuador; +2018-11-28T10:53:17Z;Eduardo;3460.535;114841049;Ecuador; +2018-11-28T10:49:48Z;Eduardo;2869.321;116017271;Ecuador; +2018-11-28T10:20:25Z;Eduardo;1044.451;115204027;Ecuador; +2018-11-28T10:16:36Z;nathalia;13279.2;115137371;Ecuador; +2018-11-28T10:09:16Z;Sandra;826.9388;115709498;Ecuador; +2018-11-28T09:53:42Z;Júlio Cesar;17881.46;114328308;Ecuador; +2018-11-28T09:41:04Z;Eduardo;18344.24;115399272;Ecuador; +2018-11-28T09:38:09Z;Eduardo;3245.86;115516287;Ecuador; +2018-11-28T08:48:18Z;Ana;1427.936;114495846;Ecuador; +2018-11-28T08:47:55Z;Ana;12919.56;115645068;Ecuador; +2018-11-28T08:42:57Z;Sandra;525.6511;115732638;Ecuador; +2018-11-28T08:23:00Z;Ana;3444.534;115123103;Ecuador; +2018-11-28T07:40:51Z;Eduardo;13577.34;115403142;Ecuador; +2018-11-28T07:36:30Z;Sandra;2276.122;115506242;Ecuador; +2018-11-28T07:20:10Z;Nathália;9300.135;114441853;Ecuador; +2018-11-28T07:00:05Z;Júlio;349.731;116096800;Ecuador; +2018-11-28T06:57:19Z;Júlio Cesar;4735.189;114395007;Ecuador; +2018-11-28T06:49:01Z;Júlio;8060.725;114372823;Ecuador; +2018-11-28T06:09:05Z;Júlio;1471.387;114399536;Ecuador; +2018-11-28T05:57:09Z;Sandra;7659.628;115468199;Ecuador; +2018-11-28T05:53:36Z;Armando;4855.962;116254655;Ecuador; +2018-11-28T05:43:58Z;Júlio;11168.8;115339960;Ecuador; +2018-11-28T05:38:28Z;Sandra;8821.584;114912475;Ecuador; +2018-11-28T05:19:11Z;Júlio Cesar;1283.431;114426601;Ecuador; +2018-11-28T05:04:44Z;Sandra;5232.115;115720145;Ecuador; +2018-11-28T05:03:00Z;Nathália;16532.29;114211171;Ecuador; +2018-11-28T04:53:27Z;Júlio Cesar;11665.82;116364001;Ecuador; +2018-11-28T04:43:10Z;Júlio Cesar;13023.25;115032380;Ecuador; +2018-11-28T04:42:42Z;Armando;3749.549;116216020;Ecuador; +2018-11-28T03:54:48Z;Ana;6677.167;116164816;Ecuador; +2018-11-28T03:47:45Z;Sandra;5567.024;116235299;Ecuador; +2018-11-28T03:35:35Z;nathalia;1288.38;115563294;Ecuador; +2018-11-28T03:07:54Z;Eduardo;4417.574;115181850;Ecuador; +2018-11-28T02:58:54Z;Ana;20310.83;114730870;Ecuador; +2018-11-28T02:53:13Z;Sandra;19000.13;116032694;Ecuador; +2018-11-28T02:20:26Z;Júlio Cesar;2175.268;114509176;Ecuador; +2018-11-28T01:27:28Z;Ana;12260.62;114527505;Ecuador; +2018-11-28T00:40:25Z;Nathália;5437.55;115623000;Ecuador; +2018-11-28T00:17:44Z;nathalia;459.8403;115746247;Ecuador; +2018-11-27T23:54:37Z;Armando;6725.45;115955750;Ecuador; +2018-11-27T23:31:31Z;Júlio;9716.01;116110928;Ecuador; +2018-11-27T22:45:56Z;Sandra;9204.775;115242037;Ecuador; +2018-11-27T22:31:09Z;Ana;5089.051;116035891;Ecuador; +2018-11-27T22:28:47Z;Armando;14448.54;114271380;Ecuador; +2018-11-27T22:18:55Z;Sandra;25116.19;114629752;Ecuador; +2018-11-27T22:05:19Z;Nathália;17371.95;114374308;Ecuador; +2018-11-27T21:11:51Z;Nathália;9295.124;116157845;Ecuador; +2018-11-27T21:07:23Z;Júlio Cesar;2430.734;114818348;Ecuador; +2018-11-27T20:56:58Z;Júlio;3453.926;116019792;Ecuador; +2018-11-27T20:46:34Z;Nathália;5994.066;114511708;Ecuador; +2018-11-27T20:34:19Z;Armando;11000.47;115855310;Ecuador; +2018-11-27T20:15:56Z;Júlio Cesar;13836.71;114572367;Ecuador; +2018-11-27T20:10:36Z;Nathália;1215.239;115103332;Ecuador; +2018-11-27T20:05:22Z;Ana;3708.171;116195129;Ecuador; +2018-11-27T20:00:13Z;Ana;309.201;114752900;Ecuador; +2018-11-27T19:58:01Z;Nathália;16384.73;114244725;Ecuador; +2018-11-27T19:51:58Z;Nathália;6105.137;114600974;Ecuador; +2018-11-27T19:41:46Z;nathalia;57.00109;116069941;Ecuador; +2018-11-27T19:36:15Z;Sandra;6255.012;116067010;Ecuador; +2018-11-27T19:01:22Z;nathalia;7020.05;114854638;Ecuador; +2018-11-27T18:52:10Z;Júlio Cesar;22694.69;114809713;Ecuador; +2018-11-27T18:47:28Z;Ana;10000.42;114376707;Ecuador; +2018-11-27T18:37:03Z;Júlio;4065.922;115863020;Ecuador; +2018-11-27T18:35:41Z;Júlio;2107.461;115848320;Ecuador; +2018-11-27T18:26:22Z;Eduardo;550.6449;115267823;Ecuador; +2018-11-27T18:12:28Z;Júlio Cesar;12637;116028558;Ecuador; +2018-11-27T18:11:04Z;Eduardo;5604.916;114810349;Ecuador; +2018-11-27T18:03:25Z;Júlio;10189.95;115281169;Ecuador; +2018-11-27T18:01:35Z;Ana;11937.08;115175335;Ecuador; +2018-11-27T17:26:26Z;Sandra;16933.89;114497746;Ecuador; +2018-11-27T17:24:04Z;Júlio Cesar;2954.27;116249647;Ecuador; +2018-11-27T17:11:43Z;Eduardo;4102.438;114769793;Ecuador; +2018-11-27T16:54:10Z;nathalia;12420.03;115692451;Ecuador; +2018-11-27T16:53:22Z;Nathália;10256.54;115201762;Ecuador; +2018-11-27T16:50:53Z;Ana;10995.4;116229559;Ecuador; +2018-11-27T16:44:09Z;nathalia;11139.48;115623250;Ecuador; +2018-11-27T16:40:30Z;Eduardo;18520.54;115316289;Ecuador; +2018-11-27T16:21:20Z;nathalia;964.3251;115579196;Ecuador; +2018-11-27T16:16:56Z;Nathália;4544.761;116150300;Ecuador; +2018-11-27T15:56:44Z;Júlio Cesar;15905.64;115062909;Ecuador; +2018-11-27T15:53:35Z;Júlio Cesar;4281.793;114499651;Ecuador; +2018-11-27T14:56:01Z;Sandra;1578.531;114274114;Ecuador; +2018-11-27T14:36:48Z;Eduardo;144.7978;115109672;Ecuador; +2018-11-27T14:08:46Z;Nathália;12349.47;114873097;Ecuador; +2018-11-27T14:05:09Z;Eduardo;7220.984;114233250;Ecuador; +2018-11-27T14:01:21Z;Ana;7160.333;114476308;Ecuador; +2018-11-27T13:55:54Z;nathalia;1931.416;114502049;Ecuador; +2018-11-27T13:54:47Z;Eduardo;1619.896;115301359;Ecuador; +2018-11-27T13:52:26Z;Júlio Cesar;1637.161;115884118;Ecuador; +2018-11-27T13:52:16Z;Nathália;2021.349;116126767;Ecuador; +2018-11-27T13:40:28Z;Sandra;10252.12;115966032;Ecuador; +2018-11-27T13:12:40Z;Eduardo;11381.09;116213272;Ecuador; +2018-11-27T13:05:24Z;Armando;8640.646;115239814;Ecuador; +2018-11-27T13:04:06Z;Armando;4662.481;115288577;Ecuador; +2018-11-27T12:12:07Z;Eduardo;8721.156;115730078;Ecuador; +2018-11-27T12:10:12Z;Júlio;7876.368;116390839;Ecuador; +2018-11-27T11:31:23Z;Júlio;1596.318;114879482;Ecuador; +2018-11-27T11:25:47Z;Ana;17402.99;115864730;Ecuador; +2018-11-27T10:33:14Z;Nathália;1880.995;115464503;Ecuador; +2018-11-27T10:32:09Z;Eduardo;11042.52;115745614;Ecuador; +2018-11-27T10:27:09Z;Eduardo;6246.459;115401305;Ecuador; +2018-11-27T10:04:28Z;Júlio Cesar;2954.319;114827998;Ecuador; +2018-11-27T09:42:48Z;Júlio Cesar;3668.976;115614491;Ecuador; +2018-11-27T09:08:16Z;Armando;5224.458;114843526;Ecuador; +2018-11-27T08:33:03Z;Júlio Cesar;30134.21;114706528;Ecuador; +2018-11-27T08:29:03Z;Armando;3472.886;115396189;Ecuador; +2018-11-27T08:21:05Z;nathalia;9291.363;114603313;Ecuador; +2018-11-27T07:47:56Z;nathalia;10231.95;114775670;Ecuador; +2018-11-27T07:44:36Z;Eduardo;21847.15;114771816;Ecuador; +2018-11-27T07:41:49Z;Júlio;5829.711;115950694;Ecuador; +2018-11-27T07:37:14Z;Armando;13063.7;115673692;Ecuador; +2018-11-27T07:34:00Z;Ana;4844.319;115519675;Ecuador; +2018-11-27T07:32:23Z;Júlio Cesar;18331.12;114896988;Ecuador; +2018-11-27T07:20:52Z;Sandra;1634.751;114369163;Ecuador; +2018-11-27T07:18:18Z;Júlio;497.053;114912402;Ecuador; +2018-11-27T07:10:01Z;Sandra;20349.17;114904221;Ecuador; +2018-11-27T07:00:02Z;nathalia;9273.308;114725653;Ecuador; +2018-11-27T06:36:59Z;Júlio;2823.322;114233574;Ecuador; +2018-11-27T06:26:18Z;Armando;630.8797;114434514;Ecuador; +2018-11-27T06:05:38Z;Eduardo;12416.84;116131723;Ecuador; +2018-11-27T05:59:17Z;Júlio;1746.073;114724660;Ecuador; +2018-11-27T05:53:05Z;Sandra;22024.07;116184767;Ecuador; +2018-11-27T05:48:44Z;nathalia;10434.25;114349317;Ecuador; +2018-11-27T05:40:13Z;Sandra;9577.606;114653123;Ecuador; +2018-11-27T05:20:09Z;Sandra;2538.478;116008538;Ecuador; +2018-11-27T05:13:35Z;Júlio Cesar;6343.497;114291560;Ecuador; +2018-11-27T05:02:17Z;Nathália;12668.85;115620189;Ecuador; +2018-11-27T04:56:47Z;Sandra;5536.871;114431231;Ecuador; +2018-11-27T04:30:34Z;Nathália;5552.93;114837127;Ecuador; +2018-11-27T04:29:13Z;Armando;302.9202;115809646;Ecuador; +2018-11-27T04:24:30Z;nathalia;7456.513;114695059;Ecuador; +2018-11-27T03:22:55Z;nathalia;692.2075;114968591;Ecuador; +2018-11-27T03:19:12Z;Armando;3207.346;116229639;Ecuador; +2018-11-27T03:13:40Z;Ana;2172.993;115900828;Ecuador; +2018-11-27T03:04:12Z;Ana;10395.79;115183068;Ecuador; +2018-11-27T02:55:42Z;Eduardo;11147.72;115713324;Ecuador; +2018-11-27T02:50:16Z;Sandra;7720.217;115499749;Ecuador; +2018-11-27T02:48:14Z;nathalia;3348.586;115452522;Ecuador; +2018-11-27T02:46:47Z;Nathália;6289.693;116358569;Ecuador; +2018-11-27T01:58:09Z;Júlio;5598.7;115682809;Ecuador; +2018-11-27T01:12:58Z;Júlio;5682.407;115942571;Ecuador; +2018-11-27T01:10:17Z;Armando;14957.42;114478713;Ecuador; +2018-11-27T01:06:37Z;Ana;2657.236;114213938;Ecuador; +2018-11-27T01:01:05Z;Ana;1333.251;114328191;Ecuador; +2018-11-27T00:41:33Z;Ana;3310.408;114573529;Ecuador; +2018-11-27T00:40:14Z;Armando;2158;116155561;Ecuador; +2018-11-27T00:39:56Z;Armando;990.0665;115952872;Ecuador; +2018-11-27T00:39:26Z;Armando;1161.749;115767743;Ecuador; +2018-11-27T00:32:06Z;Sandra;5849.194;114531657;Ecuador; +2018-11-27T00:18:04Z;Nathália;422.2657;115626608;Ecuador; +2018-11-26T23:49:21Z;Júlio Cesar;1503.491;114303760;Ecuador; +2018-11-26T23:38:48Z;Eduardo;19429.99;116157855;Ecuador; +2018-11-26T23:28:47Z;Eduardo;11232.3;114427749;Ecuador; +2018-11-26T23:23:52Z;nathalia;962.542;114383123;Ecuador; +2018-11-26T23:14:33Z;Sandra;5611.468;116027741;Ecuador; +2018-11-26T22:19:08Z;Nathália;10316.64;114647945;Ecuador; +2018-11-26T22:07:16Z;Ana;2815.668;115674654;Ecuador; +2018-11-26T21:55:06Z;Júlio Cesar;1838.388;115407793;Ecuador; +2018-11-26T21:51:13Z;Ana;1561.441;116215071;Ecuador; +2018-11-26T21:48:05Z;Sandra;4346.053;116351375;Ecuador; +2018-11-26T21:26:33Z;Eduardo;128.5062;115393600;Ecuador; +2018-11-26T21:25:33Z;nathalia;10240.83;115734744;Ecuador; +2018-11-26T21:00:33Z;Armando;361.9302;114920003;Ecuador; +2018-11-26T20:38:23Z;Ana;17890.18;115044259;Ecuador; +2018-11-26T20:29:14Z;Nathália;4586.219;116294263;Ecuador; +2018-11-26T20:26:13Z;Sandra;19480.35;114637236;Ecuador; +2018-11-26T20:25:22Z;Júlio Cesar;8365.474;115065949;Ecuador; +2018-11-26T19:35:47Z;Sandra;2462.821;115033551;Ecuador; +2018-11-26T19:24:22Z;nathalia;4834.671;114797725;Ecuador; +2018-11-26T19:21:47Z;nathalia;5856.519;114437417;Ecuador; +2018-11-26T19:04:34Z;Nathália;4350.903;115557640;Ecuador; +2018-11-26T18:52:08Z;Ana;5367.623;115733528;Ecuador; +2018-11-26T18:37:56Z;Eduardo;604.5717;115945411;Ecuador; +2018-11-26T18:00:43Z;nathalia;42.52915;114439712;Ecuador; +2018-11-26T17:49:17Z;Eduardo;19490.94;115387373;Ecuador; +2018-11-26T17:31:20Z;Júlio Cesar;378.5125;116115958;Ecuador; +2018-11-26T17:15:05Z;Sandra;689.7764;114306155;Ecuador; +2018-11-26T17:11:43Z;Nathália;2878.994;115025567;Ecuador; +2018-11-26T17:02:51Z;Júlio Cesar;16220.31;115681716;Ecuador; +2018-11-26T16:57:15Z;Sandra;10870.5;115190996;Ecuador; +2018-11-26T16:52:21Z;Armando;28415.98;114564148;Ecuador; +2018-11-26T16:33:33Z;Ana;5896.232;115789374;Ecuador; +2018-11-26T16:32:34Z;nathalia;10187.05;115361337;Ecuador; +2018-11-26T16:21:09Z;Ana;25918.72;115344126;Ecuador; +2018-11-26T16:09:48Z;Júlio Cesar;8066.371;114304636;Ecuador; +2018-11-26T15:41:42Z;Nathália;9316.211;115539922;Ecuador; +2018-11-26T15:40:53Z;Ana;3502.585;116380564;Ecuador; +2018-11-26T15:39:01Z;Júlio;5125.792;116097243;Ecuador; +2018-11-26T15:35:51Z;Ana;7068.116;114755279;Ecuador; +2018-11-26T15:31:02Z;Eduardo;15852.9;115581933;Ecuador; +2018-11-26T14:46:34Z;Júlio;4790.865;114594844;Ecuador; +2018-11-26T14:35:13Z;Eduardo;6688.312;115196909;Ecuador; +2018-11-26T14:10:33Z;Eduardo;13103.62;114776789;Ecuador; +2018-11-26T13:30:14Z;Sandra;17981.55;114936063;Ecuador; +2018-11-26T13:26:56Z;Sandra;3894.829;114511157;Ecuador; +2018-11-26T13:09:34Z;Eduardo;753.3727;114433494;Ecuador; +2018-11-26T13:08:56Z;Júlio Cesar;8739.365;115034742;Ecuador; +2018-11-26T13:06:29Z;Eduardo;14468.52;115538633;Ecuador; +2018-11-26T12:43:33Z;Nathália;15294.88;114278327;Ecuador; +2018-11-26T12:33:30Z;Ana;11564.19;116359162;Ecuador; +2018-11-26T12:23:08Z;nathalia;15335.5;114585511;Ecuador; +2018-11-26T12:13:32Z;Sandra;15878.6;114225875;Ecuador; +2018-11-26T11:38:29Z;Sandra;5703.633;115462505;Ecuador; +2018-11-26T11:23:55Z;Ana;10211.24;114645937;Ecuador; +2018-11-26T10:55:19Z;nathalia;11918.15;115962320;Ecuador; +2018-11-26T10:53:41Z;Ana;1082.855;114565371;Ecuador; +2018-11-26T10:23:48Z;Ana;3047.557;116248782;Ecuador; +2018-11-26T10:19:57Z;Nathália;9810.996;115908532;Ecuador; +2018-11-26T09:36:09Z;Júlio;3148.449;114254786;Ecuador; +2018-11-26T09:18:47Z;Sandra;4921.78;115274393;Ecuador; +2018-11-26T09:13:50Z;Sandra;9668.402;114662679;Ecuador; +2018-11-26T09:11:57Z;Sandra;17451.69;116001487;Ecuador; +2018-11-26T08:56:08Z;Eduardo;5177.928;115157453;Ecuador; +2018-11-26T08:55:49Z;Júlio Cesar;2779.583;114555845;Ecuador; +2018-11-26T08:42:50Z;Júlio;7198.041;115546070;Ecuador; +2018-11-26T08:31:13Z;Júlio;1104.616;114747707;Ecuador; +2018-11-26T08:16:56Z;nathalia;8216.311;115208544;Ecuador; +2018-11-26T07:57:56Z;Júlio;9378.253;116272936;Ecuador; +2018-11-26T07:38:56Z;Sandra;195.6166;116282572;Ecuador; +2018-11-26T07:13:16Z;Nathália;3477.749;115069026;Ecuador; +2018-11-26T06:55:29Z;Sandra;23163.01;115746472;Ecuador; +2018-11-26T06:25:11Z;Sandra;10028.75;114550404;Ecuador; +2018-11-26T06:25:06Z;Nathália;823.617;114407821;Ecuador; +2018-11-26T05:11:13Z;Nathália;6533.028;114998267;Ecuador; +2018-11-26T05:05:24Z;Nathália;2644.91;115659034;Ecuador; +2018-11-26T04:56:00Z;Nathália;21218.77;115852454;Ecuador; +2018-11-26T04:36:10Z;Eduardo;1777.453;116100718;Ecuador; +2018-11-26T04:33:38Z;Júlio Cesar;8653.38;115916218;Ecuador; +2018-11-26T04:05:25Z;nathalia;8174.533;115471682;Ecuador; +2018-11-26T03:23:21Z;Júlio Cesar;25558.31;114392538;Ecuador; +2018-11-26T03:07:07Z;Sandra;2177.72;114456940;Ecuador; +2018-11-26T03:05:13Z;Ana;10976.35;116102645;Ecuador; +2018-11-26T02:06:56Z;Armando;768.5214;114712134;Ecuador; +2018-11-26T02:00:40Z;nathalia;21326.12;114653347;Ecuador; +2018-11-26T01:35:08Z;Armando;14402.24;114261131;Ecuador; +2018-11-26T01:05:59Z;Júlio;479.8161;114407196;Ecuador; +2018-11-26T00:49:54Z;Ana;1744.596;114245776;Ecuador; +2018-11-26T00:33:13Z;Júlio Cesar;2145.661;115570753;Ecuador; +2018-11-26T00:20:12Z;Sandra;11376.31;115876950;Ecuador; +2018-11-25T23:55:59Z;Armando;3759.191;114908122;Ecuador; +2018-11-25T23:36:26Z;Eduardo;1523.652;116087578;Ecuador; +2018-11-25T23:35:30Z;Júlio Cesar;13693.55;116395590;Ecuador; +2018-11-25T23:34:32Z;Nathália;689.7035;116108236;Ecuador; +2018-11-25T23:33:33Z;Armando;7979.503;116197940;Ecuador; +2018-11-25T23:25:26Z;Nathália;10177.88;116047516;Ecuador; +2018-11-25T23:23:08Z;Eduardo;1294.179;115105298;Ecuador; +2018-11-25T23:15:57Z;Júlio;3243.574;116091800;Ecuador; +2018-11-25T23:04:35Z;Eduardo;666.7359;115706720;Ecuador; +2018-11-25T22:45:29Z;Sandra;213.1901;114380029;Ecuador; +2018-11-25T22:39:48Z;Ana;11224.29;114491930;Ecuador; +2018-11-25T22:27:44Z;nathalia;25374.85;114367708;Ecuador; +2018-11-25T22:12:20Z;nathalia;8123.235;114999789;Ecuador; +2018-11-25T21:54:19Z;Júlio Cesar;2872.529;115482044;Ecuador; +2018-11-25T21:48:34Z;Ana;4530.657;114375416;Ecuador; +2018-11-25T21:45:44Z;Eduardo;18925.71;116343883;Ecuador; +2018-11-25T21:36:46Z;Ana;376.836;114556996;Ecuador; +2018-11-25T21:29:25Z;Júlio;12869.55;114674595;Ecuador; +2018-11-25T21:26:43Z;nathalia;9461.4;114725912;Ecuador; +2018-11-25T20:39:24Z;Ana;19903.56;115850017;Ecuador; +2018-11-25T20:33:11Z;Júlio Cesar;2270.621;115628976;Ecuador; +2018-11-25T20:30:13Z;Nathália;205.427;115266478;Ecuador; +2018-11-25T20:16:31Z;Ana;8655.542;115629204;Ecuador; +2018-11-25T19:52:49Z;Sandra;4870.034;114283621;Ecuador; +2018-11-25T19:30:10Z;Armando;15689.37;116345408;Ecuador; +2018-11-25T19:27:23Z;nathalia;1007.345;116324251;Ecuador; +2018-11-25T19:10:37Z;Ana;18303.73;115658107;Ecuador; +2018-11-25T19:03:18Z;Sandra;14711.77;114294560;Ecuador; +2018-11-25T18:56:21Z;Ana;2176.829;116257584;Ecuador; +2018-11-25T18:23:46Z;nathalia;1000.106;114283158;Ecuador; +2018-11-25T18:22:33Z;Eduardo;10946.67;114620306;Ecuador; +2018-11-25T17:51:46Z;Nathália;5732.924;115442487;Ecuador; +2018-11-25T17:47:32Z;Nathália;18030.95;115524590;Ecuador; +2018-11-25T17:47:02Z;Sandra;2122.32;115134634;Ecuador; +2018-11-25T17:36:57Z;Ana;12469.86;115549196;Ecuador; +2018-11-25T17:25:03Z;nathalia;5849.683;115386423;Ecuador; +2018-11-25T17:20:26Z;Júlio;8089.86;115017198;Ecuador; +2018-11-25T17:00:02Z;Armando;689.4778;115666770;Ecuador; +2018-11-25T16:54:02Z;nathalia;15316.03;115955927;Ecuador; +2018-11-25T16:00:49Z;Nathália;15388.86;115986610;Ecuador; +2018-11-25T15:52:25Z;Júlio Cesar;10638.34;114414219;Ecuador; +2018-11-25T15:15:40Z;Ana;25516.68;115725801;Ecuador; +2018-11-25T15:09:50Z;Eduardo;15330.47;115535751;Ecuador; +2018-11-25T15:07:58Z;nathalia;4715.761;114647455;Ecuador; +2018-11-25T14:15:38Z;Júlio Cesar;4983.168;114619317;Ecuador; +2018-11-25T13:58:22Z;Sandra;599.4711;114545996;Ecuador; +2018-11-25T13:50:18Z;Ana;10381.87;115718895;Ecuador; +2018-11-25T13:40:03Z;Ana;6883.818;114524031;Ecuador; +2018-11-25T12:20:32Z;Ana;3560.262;115864075;Ecuador; +2018-11-25T12:12:41Z;Ana;6732.764;114497942;Ecuador; +2018-11-25T10:36:50Z;Eduardo;9174.508;115599281;Ecuador; +2018-11-25T10:30:30Z;Eduardo;3097.04;116068743;Ecuador; +2018-11-25T09:38:39Z;Armando;12839.17;115414884;Ecuador; +2018-11-25T09:37:02Z;Armando;8765.673;114786673;Ecuador; +2018-11-25T09:25:11Z;Eduardo;7957.607;116358061;Ecuador; +2018-11-25T09:21:18Z;Ana;25673.23;116334352;Ecuador; +2018-11-25T09:09:25Z;Júlio;812.5319;114843066;Ecuador; +2018-11-25T08:38:41Z;Júlio Cesar;4154.644;115455559;Ecuador; +2018-11-25T07:59:32Z;Ana;4866.125;116303501;Ecuador; +2018-11-25T07:37:15Z;Nathália;3977.848;115707053;Ecuador; +2018-11-25T07:21:20Z;Júlio;2354.779;116252869;Ecuador; +2018-11-25T07:19:01Z;Nathália;6958.635;115879531;Ecuador; +2018-11-25T07:05:39Z;Júlio;1138.834;116293585;Ecuador; +2018-11-25T06:48:33Z;nathalia;2981.531;114938203;Ecuador; +2018-11-25T06:37:23Z;Eduardo;8364.478;115765652;Ecuador; +2018-11-25T06:18:33Z;Ana;6111.567;115608209;Ecuador; +2018-11-25T05:30:15Z;nathalia;16666.38;115861865;Ecuador; +2018-11-25T05:28:19Z;Sandra;3495.093;116287124;Ecuador; +2018-11-25T05:03:07Z;Eduardo;14547.32;115074985;Ecuador; +2018-11-25T05:01:52Z;Eduardo;969.6588;115755531;Ecuador; +2018-11-25T04:51:12Z;Eduardo;9794.391;114812824;Ecuador; +2018-11-25T04:40:03Z;Nathália;14395.14;115552102;Ecuador; +2018-11-25T04:39:57Z;Júlio Cesar;161.2185;115215269;Ecuador; +2018-11-25T04:33:47Z;Nathália;14835.18;115023473;Ecuador; +2018-11-25T04:22:24Z;Sandra;5285.95;115821203;Ecuador; +2018-11-25T04:18:02Z;Nathália;4645.447;114887131;Ecuador; +2018-11-25T04:15:54Z;Ana;6184.252;114506809;Ecuador; +2018-11-25T03:56:14Z;nathalia;13931.45;115220307;Ecuador; +2018-11-25T03:47:16Z;Ana;12533.26;115664615;Ecuador; +2018-11-25T03:45:46Z;Júlio;10421.13;115699632;Ecuador; +2018-11-25T03:27:13Z;Sandra;7673.489;114581583;Ecuador; +2018-11-25T02:45:20Z;Júlio Cesar;18414.73;115328938;Ecuador; +2018-11-25T02:15:04Z;Júlio;1227.86;114291187;Ecuador; +2018-11-25T02:09:41Z;Eduardo;18206.91;114320856;Ecuador; +2018-11-25T02:06:12Z;Ana;4012.901;115198126;Ecuador; +2018-11-25T01:52:24Z;Sandra;13859.62;115782812;Ecuador; +2018-11-25T01:40:24Z;nathalia;6824.737;116049205;Ecuador; +2018-11-25T01:09:55Z;Armando;3528.286;115889582;Ecuador; +2018-11-25T00:50:53Z;Ana;164.0484;116084721;Ecuador; +2018-11-25T00:50:43Z;Ana;8902.671;115731127;Ecuador; +2018-11-25T00:31:21Z;Júlio Cesar;18397.7;116374250;Ecuador; +2018-11-25T00:09:33Z;Nathália;4193.857;116324259;Ecuador; +2018-11-25T00:06:53Z;Armando;1361.204;114436715;Ecuador; +2018-11-24T23:59:00Z;Nathália;6503.689;116361780;Ecuador; +2018-11-24T23:56:05Z;Ana;5922.873;115047444;Ecuador; +2018-11-24T23:54:59Z;Júlio Cesar;2760.761;116101652;Ecuador; +2018-11-24T23:52:13Z;Armando;8457.29;115562108;Ecuador; +2018-11-24T23:21:35Z;Nathália;8606.251;114887735;Ecuador; +2018-11-24T22:47:09Z;Júlio Cesar;1067.028;114441433;Ecuador; +2018-11-24T22:34:45Z;Armando;1051.334;115813102;Ecuador; +2018-11-24T22:13:52Z;nathalia;9972.333;115670348;Ecuador; +2018-11-24T22:09:13Z;Armando;2832.625;115313956;Ecuador; +2018-11-24T21:58:44Z;Ana;1439.351;114300537;Ecuador; +2018-11-24T21:53:25Z;Júlio;10973.64;114962609;Ecuador; +2018-11-24T21:51:35Z;Júlio;9670.378;115839174;Ecuador; +2018-11-24T21:43:11Z;Nathália;2919.315;115930428;Ecuador; +2018-11-24T21:16:50Z;Sandra;11486.44;116351924;Ecuador; +2018-11-24T21:06:43Z;Júlio Cesar;723.3805;115393385;Ecuador; +2018-11-24T20:54:11Z;Nathália;6312.46;115465620;Ecuador; +2018-11-24T20:51:37Z;Eduardo;15316.96;115670308;Ecuador; +2018-11-24T20:35:50Z;Ana;2546.856;115921081;Ecuador; +2018-11-24T20:26:16Z;Armando;11181.44;115561068;Ecuador; +2018-11-24T20:19:33Z;Ana;4561.85;115042441;Ecuador; +2018-11-24T19:57:46Z;nathalia;3337.891;115345030;Ecuador; +2018-11-24T19:53:03Z;Armando;10202.86;114571592;Ecuador; +2018-11-24T19:43:23Z;Júlio Cesar;210.3376;116287292;Ecuador; +2018-11-24T19:20:01Z;Ana;10628.15;114443947;Ecuador; +2018-11-24T19:07:24Z;Nathália;4419.435;115651193;Ecuador; +2018-11-24T18:53:31Z;Júlio;16947.79;114974739;Ecuador; +2018-11-24T18:53:01Z;Nathália;4898.742;114991199;Ecuador; +2018-11-24T18:52:05Z;Armando;11817.79;115959461;Ecuador; +2018-11-24T18:46:28Z;Sandra;5833.088;116220794;Ecuador; +2018-11-24T18:38:54Z;Ana;8142.03;115943960;Ecuador; +2018-11-24T18:26:37Z;Júlio;364.8055;114421244;Ecuador; +2018-11-24T17:59:32Z;Ana;1767.894;115996860;Ecuador; +2018-11-24T16:43:06Z;Eduardo;10073.46;116175778;Ecuador; +2018-11-24T16:39:10Z;Eduardo;15558.73;116152771;Ecuador; +2018-11-24T16:37:45Z;Nathália;15075.07;114305398;Ecuador; +2018-11-24T16:22:43Z;nathalia;5790.843;115874818;Ecuador; +2018-11-24T16:15:39Z;Ana;8121.569;115865710;Ecuador; +2018-11-24T16:07:46Z;Júlio Cesar;706.4714;115306548;Ecuador; +2018-11-24T15:57:28Z;Eduardo;14438.82;116212757;Ecuador; +2018-11-24T15:54:34Z;Ana;720.0343;114623030;Ecuador; +2018-11-24T15:21:38Z;Sandra;338.2286;114923055;Ecuador; +2018-11-24T14:45:26Z;Armando;5647.809;114444614;Ecuador; +2018-11-24T13:48:57Z;Ana;3775.926;115219641;Ecuador; +2018-11-24T13:39:12Z;nathalia;12964.4;114440210;Ecuador; +2018-11-24T13:29:43Z;Armando;1094.505;114364168;Ecuador; +2018-11-24T13:11:30Z;Nathália;2931.778;114772959;Ecuador; +2018-11-24T13:00:03Z;Nathália;10845.43;115270221;Ecuador; +2018-11-24T12:52:47Z;Sandra;5563.927;115539373;Ecuador; +2018-11-24T12:50:03Z;Eduardo;2355.727;114333535;Ecuador; +2018-11-24T12:40:47Z;nathalia;714.8401;114894394;Ecuador; +2018-11-24T11:05:10Z;Ana;4489.001;114925232;Ecuador; +2018-11-24T10:53:57Z;Nathália;10519.65;114336003;Ecuador; +2018-11-24T10:42:41Z;Júlio Cesar;2122.446;114739964;Ecuador; +2018-11-24T10:36:58Z;Ana;3437.846;115931638;Ecuador; +2018-11-24T10:25:43Z;Nathália;12818.57;115132822;Ecuador; +2018-11-24T10:19:51Z;Júlio Cesar;12137.54;115747664;Ecuador; +2018-11-24T10:03:13Z;Eduardo;2390.596;114929748;Ecuador; +2018-11-24T09:59:29Z;Júlio Cesar;6080.842;115915287;Ecuador; +2018-11-24T09:30:51Z;Sandra;4287.373;116040541;Ecuador; +2018-11-24T09:20:26Z;Nathália;9950.383;116061951;Ecuador; +2018-11-24T08:53:48Z;Ana;2359.887;114261617;Ecuador; +2018-11-24T08:31:05Z;nathalia;5003.051;115417181;Ecuador; +2018-11-24T08:30:51Z;nathalia;1816.26;114560729;Ecuador; +2018-11-24T08:30:50Z;Júlio Cesar;15160.7;114840104;Ecuador; +2018-11-24T07:46:05Z;Sandra;6901.196;114368036;Ecuador; +2018-11-24T07:41:15Z;Armando;753.3349;115617300;Ecuador; +2018-11-24T07:36:03Z;Júlio;19973.57;114617143;Ecuador; +2018-11-24T07:19:23Z;Júlio;3563.926;115530919;Ecuador; +2018-11-24T07:02:23Z;Júlio;805.132;114324514;Ecuador; +2018-11-24T06:29:02Z;Júlio;11565.66;116095103;Ecuador; +2018-11-24T05:39:03Z;Ana;4089.29;114707154;Ecuador; +2018-11-24T05:33:27Z;Sandra;1887.212;115819275;Ecuador; +2018-11-24T05:19:18Z;Ana;124.2498;115695397;Ecuador; +2018-11-24T04:55:38Z;Júlio Cesar;2381.97;115689843;Ecuador; +2018-11-24T04:35:50Z;Júlio;1726.816;115155145;Ecuador; +2018-11-24T04:29:29Z;Júlio;13090.81;116261290;Ecuador; +2018-11-24T03:41:16Z;Sandra;16114.4;115356962;Ecuador; +2018-11-24T03:06:16Z;Júlio Cesar;1325.814;115614369;Ecuador; +2018-11-24T03:05:38Z;Júlio;2561.745;116301374;Ecuador; +2018-11-24T02:53:58Z;Armando;2561.268;116021045;Ecuador; +2018-11-24T02:47:48Z;Júlio;2937.579;115181496;Ecuador; +2018-11-24T02:30:44Z;Eduardo;1820.387;114694061;Ecuador; +2018-11-24T01:48:54Z;Sandra;914.0767;115043380;Ecuador; +2018-11-24T01:18:58Z;nathalia;4393.301;114731679;Ecuador; +2018-11-24T01:18:11Z;Júlio;822.6897;115804090;Ecuador; +2018-11-24T01:17:01Z;Ana;10695.27;115192987;Ecuador; +2018-11-24T00:53:06Z;Eduardo;5950.284;116267978;Ecuador; +2018-11-24T00:43:11Z;Ana;9727.765;114614007;Ecuador; +2018-11-23T23:46:12Z;Júlio Cesar;14980.8;114925307;Ecuador; +2018-11-23T23:22:52Z;Ana;4347.261;116050613;Ecuador; +2018-11-23T23:08:18Z;Eduardo;2810.169;115718812;Ecuador; +2018-11-23T23:08:16Z;Nathália;12100.87;114371563;Ecuador; +2018-11-23T21:21:31Z;Júlio Cesar;3728.882;116250386;Ecuador; +2018-11-23T20:48:47Z;Júlio;9488.127;116043208;Ecuador; +2018-11-23T20:47:09Z;Nathália;1900.087;114306568;Ecuador; +2018-11-23T20:34:11Z;Nathália;3593.787;116239107;Ecuador; +2018-11-23T20:19:16Z;Ana;2886.782;114550078;Ecuador; +2018-11-23T20:18:51Z;Júlio Cesar;2896.755;114442527;Ecuador; +2018-11-23T20:18:38Z;Júlio Cesar;9325.583;115141483;Ecuador; +2018-11-23T20:10:20Z;Ana;6414.9;114993416;Ecuador; +2018-11-23T20:04:43Z;Armando;18746.31;114504883;Ecuador; +2018-11-23T19:54:40Z;Armando;14474.95;114741617;Ecuador; +2018-11-23T19:53:07Z;Eduardo;4331.357;116312971;Ecuador; +2018-11-23T19:38:56Z;Júlio;359.27;116136845;Ecuador; +2018-11-23T19:38:26Z;Armando;10871.6;115109480;Ecuador; +2018-11-23T19:16:32Z;Armando;15592.8;114255294;Ecuador; +2018-11-23T19:05:31Z;Júlio Cesar;8060.634;115318148;Ecuador; +2018-11-23T18:17:32Z;Nathália;327.0608;115240496;Ecuador; +2018-11-23T18:16:08Z;Júlio Cesar;12328.9;116069819;Ecuador; +2018-11-23T17:40:00Z;nathalia;3072.043;114267697;Ecuador; +2018-11-23T17:25:29Z;Armando;7742.139;114517137;Ecuador; +2018-11-23T16:52:17Z;nathalia;9972.358;114664505;Ecuador; +2018-11-23T16:40:21Z;Júlio;4685.881;114460665;Ecuador; +2018-11-23T16:30:59Z;Júlio Cesar;2762.255;114440875;Ecuador; +2018-11-23T16:29:53Z;Júlio Cesar;7479.279;114872326;Ecuador; +2018-11-23T16:22:11Z;Nathália;2210.432;115962970;Ecuador; +2018-11-23T15:34:46Z;nathalia;9394.249;114607438;Ecuador; +2018-11-23T15:33:18Z;Júlio Cesar;2308.45;114882617;Ecuador; +2018-11-23T14:42:00Z;Ana;8111.399;115462813;Ecuador; +2018-11-23T14:34:36Z;Sandra;7337.686;115011741;Ecuador; +2018-11-23T14:34:31Z;nathalia;7197.29;115511116;Ecuador; +2018-11-23T13:54:43Z;Sandra;9490.55;115383569;Ecuador; +2018-11-23T13:50:18Z;nathalia;15223.06;115102478;Ecuador; +2018-11-23T13:50:15Z;nathalia;14721.71;115066517;Ecuador; +2018-11-23T13:41:03Z;Júlio;7955.382;115018137;Ecuador; +2018-11-23T13:32:16Z;Júlio;3309.947;115755662;Ecuador; +2018-11-23T13:13:35Z;Nathália;13438.81;114507675;Ecuador; +2018-11-23T13:12:11Z;Sandra;899.0202;114650872;Ecuador; +2018-11-23T13:06:41Z;nathalia;20171.46;115013856;Ecuador; +2018-11-23T12:55:14Z;Eduardo;733.2569;115992416;Ecuador; +2018-11-23T12:51:54Z;Sandra;13307.3;116110638;Ecuador; +2018-11-23T12:44:47Z;Ana;4792.053;116226955;Ecuador; +2018-11-23T12:21:29Z;Sandra;6869.062;115369244;Ecuador; +2018-11-23T12:13:37Z;Júlio;2568.086;114831455;Ecuador; +2018-11-23T12:02:47Z;nathalia;6613.023;115101814;Ecuador; +2018-11-23T11:42:19Z;Júlio;9514.026;114847209;Ecuador; +2018-11-23T10:57:17Z;Nathália;3864.824;115493117;Ecuador; +2018-11-23T10:34:46Z;Nathália;2317.136;116026189;Ecuador; +2018-11-23T10:18:55Z;Júlio Cesar;11156.81;115186533;Ecuador; +2018-11-23T10:18:38Z;Sandra;9651.46;115860964;Ecuador; +2018-11-23T10:07:39Z;Sandra;368.6237;115599241;Ecuador; +2018-11-23T10:04:38Z;Sandra;473.1268;116326908;Ecuador; +2018-11-23T09:57:06Z;Júlio Cesar;6566.896;115840926;Ecuador; +2018-11-23T09:54:53Z;Armando;5598.351;115374895;Ecuador; +2018-11-23T09:35:18Z;Eduardo;5594.157;115711468;Ecuador; +2018-11-23T09:22:01Z;nathalia;5650.165;114775686;Ecuador; +2018-11-23T09:12:57Z;Sandra;16492.49;116152179;Ecuador; +2018-11-23T08:33:29Z;Armando;1152.369;115582872;Ecuador; +2018-11-23T08:24:28Z;Sandra;497.4382;115603174;Ecuador; +2018-11-23T08:15:51Z;Eduardo;665.9082;114767632;Ecuador; +2018-11-23T08:04:37Z;Júlio;6342.253;115920087;Ecuador; +2018-11-23T07:05:42Z;Eduardo;3875.556;114283085;Ecuador; +2018-11-23T06:54:27Z;Armando;6102.161;114986008;Ecuador; +2018-11-23T06:51:06Z;Júlio;15637.91;115927611;Ecuador; +2018-11-23T06:33:36Z;Júlio Cesar;12442.61;114384962;Ecuador; +2018-11-23T06:17:22Z;Armando;4411.587;114588167;Ecuador; +2018-11-23T06:12:39Z;Júlio Cesar;23296.85;114241270;Ecuador; +2018-11-23T06:02:03Z;Eduardo;2281.503;114593608;Ecuador; +2018-11-23T05:45:16Z;Júlio Cesar;15468.04;116196484;Ecuador; +2018-11-23T05:33:16Z;Júlio;9299.245;116236174;Ecuador; +2018-11-23T05:32:20Z;Sandra;16906.29;114385365;Ecuador; +2018-11-23T05:07:12Z;Nathália;8023.57;114738481;Ecuador; +2018-11-23T04:35:38Z;Ana;1387.059;115811235;Ecuador; +2018-11-23T04:21:46Z;Nathália;13582.43;116279616;Ecuador; +2018-11-23T04:04:04Z;Eduardo;4489.416;115230055;Ecuador; +2018-11-23T04:00:04Z;Eduardo;1863.428;116193550;Ecuador; +2018-11-23T03:52:45Z;Júlio;213.2915;115276355;Ecuador; +2018-11-23T03:29:29Z;Júlio Cesar;11660.25;115217175;Ecuador; +2018-11-23T03:12:30Z;Júlio;3727.079;114345008;Ecuador; +2018-11-23T03:01:52Z;Ana;3562.438;116142609;Ecuador; +2018-11-23T02:27:37Z;Ana;1812.93;115352777;Ecuador; +2018-11-23T02:09:20Z;Eduardo;6916.387;115375138;Ecuador; +2018-11-23T01:58:17Z;Júlio;8760.829;114842239;Ecuador; +2018-11-23T01:55:16Z;Ana;14250.48;115132603;Ecuador; +2018-11-23T01:54:48Z;nathalia;8549.09;115018633;Ecuador; +2018-11-23T01:42:50Z;Júlio Cesar;2787.903;116334987;Ecuador; +2018-11-23T01:23:28Z;Ana;451.6104;115822948;Ecuador; +2018-11-23T01:17:57Z;Ana;4808.869;114523602;Ecuador; +2018-11-23T01:15:27Z;Júlio Cesar;11141.19;114274059;Ecuador; +2018-11-23T01:07:27Z;Ana;19039.9;114948975;Ecuador; +2018-11-23T00:51:29Z;Júlio;4466.997;115556721;Ecuador; +2018-11-23T00:50:25Z;Ana;6041.04;115865187;Ecuador; +2018-11-23T00:25:03Z;Eduardo;16342.68;116063832;Ecuador; +2018-11-23T00:18:22Z;Júlio;8030.559;115811726;Ecuador; +2018-11-23T00:10:58Z;Ana;3405.832;114264710;Ecuador; +2018-11-22T23:51:55Z;Ana;4254.889;115889344;Ecuador; +2018-11-22T23:47:57Z;Sandra;3821.401;115010332;Ecuador; +2018-11-22T23:06:41Z;nathalia;7410.969;116084984;Ecuador; +2018-11-22T22:24:33Z;Armando;179.8394;114531095;Ecuador; +2018-11-22T22:20:02Z;Júlio;17226.54;115441202;Ecuador; +2018-11-22T22:11:21Z;Sandra;3568.432;115871599;Ecuador; +2018-11-22T22:08:54Z;Sandra;653.3953;115458930;Ecuador; +2018-11-22T22:04:17Z;Sandra;14676.95;116150079;Ecuador; +2018-11-22T21:19:48Z;nathalia;966.2052;115020089;Ecuador; +2018-11-22T20:51:26Z;Júlio;18741.47;114528927;Ecuador; +2018-11-22T20:39:58Z;nathalia;13609.89;115423035;Ecuador; +2018-11-22T19:44:58Z;Nathália;5359.585;114330633;Ecuador; +2018-11-22T18:57:48Z;Nathália;6483.812;115611492;Ecuador; +2018-11-22T18:25:14Z;Armando;8887.858;115563236;Ecuador; +2018-11-22T18:24:11Z;Nathália;3563.863;116374332;Ecuador; +2018-11-22T18:16:45Z;Nathália;3597.949;114394272;Ecuador; +2018-11-22T18:15:30Z;Ana;14212.31;115744046;Ecuador; +2018-11-22T18:08:39Z;nathalia;7659.457;114539939;Ecuador; +2018-11-22T17:54:19Z;nathalia;6457.721;115257972;Ecuador; +2018-11-22T17:44:34Z;Eduardo;4324.791;115806988;Ecuador; +2018-11-22T17:30:52Z;Armando;593.6147;116322642;Ecuador; +2018-11-22T17:28:34Z;Júlio Cesar;4940.829;115202872;Ecuador; +2018-11-22T17:25:21Z;Armando;7187.502;115723256;Ecuador; +2018-11-22T17:23:54Z;Nathália;3007.331;116171128;Ecuador; +2018-11-22T17:21:04Z;Sandra;3387.852;115617227;Ecuador; +2018-11-22T17:19:15Z;Júlio;1409.588;116157200;Ecuador; +2018-11-22T17:14:57Z;Júlio;8252.823;115797378;Ecuador; +2018-11-22T17:13:50Z;Armando;24199.84;115881563;Ecuador; +2018-11-22T17:09:46Z;Eduardo;4566.878;116128741;Ecuador; +2018-11-22T17:03:40Z;Nathália;7470.135;114303788;Ecuador; +2018-11-22T17:02:39Z;nathalia;1512.137;115355082;Ecuador; +2018-11-22T16:50:27Z;Ana;1687.267;116002953;Ecuador; +2018-11-22T15:59:46Z;Ana;11.4055;114597516;Ecuador; +2018-11-22T15:45:57Z;Armando;6832.551;115057309;Ecuador; +2018-11-22T15:31:15Z;Eduardo;5418.887;114378326;Ecuador; +2018-11-22T15:29:50Z;Sandra;14818.27;114703259;Ecuador; +2018-11-22T15:20:59Z;Júlio;8573.545;114755787;Ecuador; +2018-11-22T15:02:54Z;Júlio;1539.969;114544837;Ecuador; +2018-11-22T14:57:32Z;Eduardo;1179.205;114574049;Ecuador; +2018-11-22T14:55:00Z;Júlio Cesar;129.514;114200103;Ecuador; +2018-11-22T14:16:55Z;Armando;16535.8;114242174;Ecuador; +2018-11-22T13:38:33Z;Ana;514.4042;116220862;Ecuador; +2018-11-22T13:32:45Z;Júlio Cesar;16878.62;115505404;Ecuador; +2018-11-22T13:22:17Z;Júlio Cesar;4079.255;114317683;Ecuador; +2018-11-22T13:11:36Z;nathalia;28563.67;114278326;Ecuador; +2018-11-22T13:03:03Z;Júlio Cesar;11943.44;114528741;Ecuador; +2018-11-22T12:54:24Z;Nathália;2898.997;115345016;Ecuador; +2018-11-22T12:46:11Z;Sandra;882.8212;115724885;Ecuador; +2018-11-22T12:40:59Z;Sandra;9762.248;114664598;Ecuador; +2018-11-22T12:19:19Z;Júlio;26.55041;114872041;Ecuador; +2018-11-22T11:48:11Z;Júlio Cesar;2852.591;116221175;Ecuador; +2018-11-22T11:43:58Z;Júlio Cesar;6044.852;115164016;Ecuador; +2018-11-22T11:41:49Z;Eduardo;1240.218;116177315;Ecuador; +2018-11-22T11:40:24Z;Ana;441.1432;115406053;Ecuador; +2018-11-22T10:47:22Z;Nathália;12837.01;114944197;Ecuador; +2018-11-22T10:35:36Z;Sandra;753.5655;115025758;Ecuador; +2018-11-22T10:30:18Z;Sandra;4063.622;114879606;Ecuador; +2018-11-22T10:10:07Z;Júlio Cesar;1939.193;114521232;Ecuador; +2018-11-22T09:52:47Z;Sandra;21467.55;115260435;Ecuador; +2018-11-22T09:49:30Z;Ana;2423.386;115950639;Ecuador; +2018-11-22T09:42:18Z;Júlio;10767.68;115977497;Ecuador; +2018-11-22T09:36:01Z;nathalia;5334.646;115781924;Ecuador; +2018-11-22T09:25:21Z;Sandra;3505.297;116110151;Ecuador; +2018-11-22T08:51:02Z;Júlio;345.6699;114802347;Ecuador; +2018-11-22T07:58:48Z;Armando;8351.922;114721515;Ecuador; +2018-11-22T07:22:20Z;Armando;2115.971;115772463;Ecuador; +2018-11-22T06:44:24Z;Júlio Cesar;1699.043;114883358;Ecuador; +2018-11-22T06:41:50Z;Nathália;20657.14;115927021;Ecuador; +2018-11-22T05:49:25Z;nathalia;12275.61;114578637;Ecuador; +2018-11-22T05:48:44Z;Júlio;12964.49;116146557;Ecuador; +2018-11-22T05:15:08Z;Júlio Cesar;6920.798;114570751;Ecuador; +2018-11-22T04:51:48Z;Nathália;3671.51;116248910;Ecuador; +2018-11-22T03:47:24Z;Nathália;12503.45;114537554;Ecuador; +2018-11-22T03:28:42Z;Júlio;21086.07;114745053;Ecuador; +2018-11-22T02:45:48Z;Armando;8957.148;115520590;Ecuador; +2018-11-22T02:20:13Z;Armando;14172.75;115886447;Ecuador; +2018-11-22T02:11:10Z;Júlio;6046.289;115222678;Ecuador; +2018-11-22T02:03:27Z;Ana;1579.029;115829104;Ecuador; +2018-11-22T00:54:56Z;nathalia;5374.957;114584007;Ecuador; +2018-11-22T00:32:21Z;Sandra;12870.55;114681102;Ecuador; +2018-11-21T23:52:54Z;Sandra;14359.2;114910668;Ecuador; +2018-11-21T23:42:28Z;Júlio;3598.647;116119857;Ecuador; +2018-11-21T22:49:20Z;Júlio;8998.717;115740469;Ecuador; +2018-11-21T22:43:53Z;Júlio;12016.05;115396491;Ecuador; +2018-11-21T21:49:30Z;Júlio;28523.01;115149754;Ecuador; +2018-11-21T21:36:04Z;nathalia;2078.641;114984578;Ecuador; +2018-11-21T21:26:41Z;Nathália;24967.18;116164606;Ecuador; +2018-11-21T21:14:34Z;Ana;24433.52;116154570;Ecuador; +2018-11-21T21:13:32Z;Armando;1700.572;116387257;Ecuador; +2018-11-21T20:37:28Z;Nathália;7853.634;116284539;Ecuador; +2018-11-21T20:20:01Z;Júlio;6049.624;114475071;Ecuador; +2018-11-21T20:16:44Z;Júlio Cesar;8748.601;115951131;Ecuador; +2018-11-21T20:07:33Z;nathalia;392.8689;115044660;Ecuador; +2018-11-21T19:39:36Z;Júlio Cesar;3441.922;115539960;Ecuador; +2018-11-21T19:27:55Z;Júlio;597.675;115386603;Ecuador; +2018-11-21T18:23:22Z;Júlio;18838.58;115647888;Ecuador; +2018-11-21T17:58:42Z;Nathália;1005.477;114259462;Ecuador; +2018-11-21T17:33:40Z;Sandra;3335.63;115071727;Ecuador; +2018-11-21T17:21:35Z;nathalia;343.1183;114915841;Ecuador; +2018-11-21T17:18:56Z;Ana;6141.895;116393261;Ecuador; +2018-11-21T16:41:48Z;Armando;22472.17;114337306;Ecuador; +2018-11-21T16:34:26Z;Júlio Cesar;7679.3;114861143;Ecuador; +2018-11-21T16:22:07Z;Armando;4259.347;114814402;Ecuador; +2018-11-21T16:17:28Z;Júlio Cesar;9117.139;115037265;Ecuador; +2018-11-21T15:54:06Z;Armando;292.626;115548689;Ecuador; +2018-11-21T15:13:13Z;Sandra;10192.55;114616344;Ecuador; +2018-11-21T14:27:16Z;Eduardo;10113.03;115232674;Ecuador; +2018-11-21T14:20:04Z;Ana;11842.74;114943681;Ecuador; +2018-11-21T14:04:39Z;Armando;2905.979;116362522;Ecuador; +2018-11-21T14:04:03Z;nathalia;14622.53;115787099;Ecuador; +2018-11-21T14:02:58Z;Ana;5471.794;115807648;Ecuador; +2018-11-21T13:55:28Z;nathalia;6832.857;116245967;Ecuador; +2018-11-21T13:24:44Z;Ana;4618.791;114971837;Ecuador; +2018-11-21T13:23:30Z;Júlio;1359.867;115258961;Ecuador; +2018-11-21T13:13:54Z;Júlio Cesar;5231.79;114292077;Ecuador; +2018-11-21T13:11:03Z;Ana;5594.276;115570308;Ecuador; +2018-11-21T12:50:42Z;Júlio;7367.065;115958774;Ecuador; +2018-11-21T12:28:14Z;Nathália;8819.934;116224377;Ecuador; +2018-11-21T11:57:09Z;Ana;3765.329;114791659;Ecuador; +2018-11-21T11:18:35Z;Júlio Cesar;1534.901;115335556;Ecuador; +2018-11-21T11:12:37Z;Júlio Cesar;19896.8;114820151;Ecuador; +2018-11-21T11:08:41Z;Júlio;11948.07;114209852;Ecuador; +2018-11-21T10:46:45Z;Armando;950.5352;114642783;Ecuador; +2018-11-21T10:13:29Z;Júlio;2750.213;114454920;Ecuador; +2018-11-21T09:46:36Z;Sandra;10926.21;115078909;Ecuador; +2018-11-21T09:37:21Z;Armando;4140.24;116307352;Ecuador; +2018-11-21T09:05:11Z;Nathália;3917.291;114704908;Ecuador; +2018-11-21T09:03:41Z;nathalia;23279.79;114877916;Ecuador; +2018-11-21T08:42:44Z;Eduardo;12268.87;114252426;Ecuador; +2018-11-21T08:33:50Z;Ana;19145.28;115699839;Ecuador; +2018-11-21T08:27:24Z;Nathália;11379.5;115252724;Ecuador; +2018-11-21T08:01:49Z;Sandra;1632.123;114205304;Ecuador; +2018-11-21T07:22:06Z;Armando;225.6338;115943379;Ecuador; +2018-11-21T07:20:53Z;Ana;8854.107;115061035;Ecuador; +2018-11-21T06:38:54Z;Ana;12464.89;116318468;Ecuador; +2018-11-21T06:14:57Z;Sandra;11109.08;115858340;Ecuador; +2018-11-21T06:11:55Z;Armando;1610.233;115276605;Ecuador; +2018-11-21T06:09:20Z;Nathália;2560.729;115023250;Ecuador; +2018-11-21T06:08:13Z;Eduardo;6342.994;114634965;Ecuador; +2018-11-21T05:58:06Z;nathalia;10980.98;115927317;Ecuador; +2018-11-21T05:42:05Z;Sandra;3459.167;116394663;Ecuador; +2018-11-21T04:59:24Z;Nathália;6655.214;115194020;Ecuador; +2018-11-21T04:40:28Z;Nathália;10567.31;114680585;Ecuador; +2018-11-21T04:32:33Z;Ana;1288.376;114654797;Ecuador; +2018-11-21T04:28:19Z;Armando;6432.642;115559341;Ecuador; +2018-11-21T04:19:01Z;Júlio Cesar;12815.01;114972930;Ecuador; +2018-11-21T03:42:32Z;Eduardo;4117.414;115435203;Ecuador; +2018-11-21T03:32:57Z;Armando;13180.6;114341644;Ecuador; +2018-11-21T02:55:16Z;Júlio Cesar;1025.964;114305557;Ecuador; +2018-11-21T02:54:48Z;Ana;7960.137;116254580;Ecuador; +2018-11-21T02:40:20Z;Júlio;5131.855;115046177;Ecuador; +2018-11-21T02:30:08Z;Eduardo;7111.961;115172542;Ecuador; +2018-11-21T02:12:30Z;Sandra;117.4852;114449610;Ecuador; +2018-11-21T01:21:49Z;Eduardo;10920.24;114524250;Ecuador; +2018-11-21T01:08:48Z;nathalia;820.777;114599410;Ecuador; +2018-11-21T00:53:41Z;Armando;2924.598;115883092;Ecuador; +2018-11-21T00:25:36Z;nathalia;8635.254;115226277;Ecuador; +2018-11-21T00:20:43Z;Ana;111.814;114617492;Ecuador; +2018-11-21T00:15:55Z;Júlio Cesar;2274.397;114738424;Ecuador; +2018-11-20T23:58:19Z;nathalia;5819.852;114929327;Ecuador; +2018-11-20T23:42:23Z;Nathália;16323.6;114888423;Ecuador; +2018-11-20T23:39:26Z;nathalia;7236.948;115562291;Ecuador; +2018-11-20T22:35:13Z;Armando;2752.434;115298046;Ecuador; +2018-11-20T22:11:50Z;Ana;6340.053;114596141;Ecuador; +2018-11-20T22:09:26Z;Eduardo;4953.227;114820306;Ecuador; +2018-11-20T22:03:17Z;Júlio;20282.04;114799409;Ecuador; +2018-11-20T21:47:56Z;Júlio;14017.33;114477549;Ecuador; +2018-11-20T21:17:07Z;Júlio;9779.866;114369521;Ecuador; +2018-11-20T20:44:02Z;Eduardo;11157.48;116145266;Ecuador; +2018-11-20T20:43:27Z;Ana;128.0351;115249821;Ecuador; +2018-11-20T19:13:54Z;Ana;233.8503;116377202;Ecuador; +2018-11-20T19:11:25Z;Ana;20926.31;115606568;Ecuador; +2018-11-20T19:11:01Z;Júlio;5159.725;114514796;Ecuador; +2018-11-20T18:20:08Z;Armando;18563.14;116285717;Ecuador; +2018-11-20T17:11:05Z;Sandra;518.7531;115934938;Ecuador; +2018-11-20T17:07:41Z;Júlio Cesar;4629.27;114976647;Ecuador; +2018-11-20T16:56:34Z;Ana;12473.3;115093949;Ecuador; +2018-11-20T16:49:18Z;Nathália;8198.104;114959499;Ecuador; +2018-11-20T16:20:48Z;Júlio Cesar;4882.49;114397176;Ecuador; +2018-11-20T15:43:33Z;Eduardo;3361.786;114934996;Ecuador; +2018-11-20T15:34:36Z;Eduardo;18326.34;115404756;Ecuador; +2018-11-20T15:26:45Z;Júlio;2857.338;116395525;Ecuador; +2018-11-20T15:14:43Z;Sandra;16629.06;114687650;Ecuador; +2018-11-20T14:32:58Z;Eduardo;2574.93;114312546;Ecuador; +2018-11-20T14:14:45Z;Júlio Cesar;3582.214;115063675;Ecuador; +2018-11-20T14:14:43Z;Júlio Cesar;3534.387;114380312;Ecuador; +2018-11-20T14:11:15Z;Nathália;3257.985;115778247;Ecuador; +2018-11-20T13:54:55Z;Júlio Cesar;5440.59;114466392;Ecuador; +2018-11-20T13:41:46Z;Sandra;15393.5;116211198;Ecuador; +2018-11-20T13:34:52Z;Nathália;142.5035;114241785;Ecuador; +2018-11-20T13:16:00Z;Eduardo;1039.046;115177103;Ecuador; +2018-11-20T13:09:38Z;Armando;4223.638;114622810;Ecuador; +2018-11-20T12:55:46Z;Nathália;3509.584;115175690;Ecuador; +2018-11-20T12:51:05Z;Nathália;5203.679;114932374;Ecuador; +2018-11-20T12:01:51Z;Júlio;104.2736;114374582;Ecuador; +2018-11-20T12:01:51Z;Júlio;22178.87;115502702;Ecuador; +2018-11-20T11:54:36Z;Sandra;10539.57;115023686;Ecuador; +2018-11-20T11:52:17Z;Ana;360.3303;114757227;Ecuador; +2018-11-20T11:25:05Z;Armando;6649.217;115643973;Ecuador; +2018-11-20T11:20:00Z;Júlio;5779.661;116374734;Ecuador; +2018-11-20T11:12:09Z;Júlio Cesar;930.9513;115014719;Ecuador; +2018-11-20T10:59:29Z;Ana;88.72388;115365785;Ecuador; +2018-11-20T10:53:42Z;nathalia;7702.73;114788884;Ecuador; +2018-11-20T10:31:27Z;Sandra;213.4953;114905873;Ecuador; +2018-11-20T10:05:52Z;Nathália;18234.59;115894681;Ecuador; +2018-11-20T10:05:43Z;Eduardo;2237.55;116314232;Ecuador; +2018-11-20T09:56:24Z;Júlio Cesar;5097.241;116214821;Ecuador; +2018-11-20T09:34:34Z;Sandra;2115.503;114847159;Ecuador; +2018-11-20T09:21:10Z;Armando;10140.12;115557591;Ecuador; +2018-11-20T09:18:46Z;Ana;8056.914;115231740;Ecuador; +2018-11-20T08:56:24Z;Sandra;3890.143;115106409;Ecuador; +2018-11-20T08:45:00Z;Armando;9799.05;114998604;Ecuador; +2018-11-20T08:14:57Z;Júlio Cesar;13065.86;114746170;Ecuador; +2018-11-20T08:12:17Z;Armando;4547.565;115877333;Ecuador; +2018-11-20T07:58:31Z;Júlio;2513.501;115447020;Ecuador; +2018-11-20T07:39:39Z;Júlio;16956.58;116211900;Ecuador; +2018-11-20T07:34:54Z;Júlio Cesar;3802.881;116174363;Ecuador; +2018-11-20T06:50:21Z;Júlio;346.9254;115247195;Ecuador; +2018-11-20T06:30:24Z;Eduardo;6816.835;116255821;Ecuador; +2018-11-20T06:00:32Z;Júlio;9558.418;114626654;Ecuador; +2018-11-20T05:51:09Z;Eduardo;1109.953;115411993;Ecuador; +2018-11-20T05:21:08Z;nathalia;146.9324;115134408;Ecuador; +2018-11-20T05:20:51Z;Sandra;7846.335;115628167;Ecuador; +2018-11-20T05:19:01Z;Nathália;2137.141;115463734;Ecuador; +2018-11-20T04:52:48Z;Ana;10879.92;115847077;Ecuador; +2018-11-20T04:32:04Z;Armando;17500.15;116183998;Ecuador; +2018-11-20T04:14:45Z;Júlio;5671.118;115334341;Ecuador; +2018-11-20T04:06:43Z;Júlio;4593.42;115535133;Ecuador; +2018-11-20T03:23:59Z;Nathália;3122.457;115483605;Ecuador; +2018-11-20T03:18:08Z;Nathália;2166.057;114296849;Ecuador; +2018-11-20T02:02:56Z;Júlio;13485.31;116135493;Ecuador; +2018-11-20T01:51:03Z;nathalia;9670.077;115435958;Ecuador; +2018-11-20T01:45:05Z;Eduardo;2695.913;114326443;Ecuador; +2018-11-20T01:04:01Z;Nathália;6759.019;115176758;Ecuador; +2018-11-20T00:55:59Z;Nathália;4380.799;114431099;Ecuador; +2018-11-20T00:52:32Z;Armando;2097.585;114952647;Ecuador; +2018-11-20T00:12:35Z;Nathália;8124.264;114977734;Ecuador; +2018-11-20T00:04:00Z;Armando;5622.809;115825180;Ecuador; +2018-11-19T23:36:05Z;nathalia;7904.908;114791213;Ecuador; +2018-11-19T23:25:15Z;Sandra;1852.81;115527780;Ecuador; +2018-11-19T23:18:42Z;Nathália;6752.281;115659931;Ecuador; +2018-11-19T22:46:42Z;Ana;8917.824;116359361;Ecuador; +2018-11-19T22:29:55Z;Eduardo;2409.613;116364961;Ecuador; +2018-11-19T22:23:16Z;Júlio;4331.814;115078297;Ecuador; +2018-11-19T22:14:51Z;Nathália;2687.463;115083366;Ecuador; +2018-11-19T21:40:35Z;Eduardo;8700.548;114281461;Ecuador; +2018-11-19T20:52:35Z;Júlio Cesar;7310.62;115054844;Ecuador; +2018-11-19T20:51:13Z;Eduardo;5789.181;115758967;Ecuador; +2018-11-19T20:27:13Z;Armando;1893.894;114250234;Ecuador; +2018-11-19T19:32:55Z;Armando;658.7652;115957169;Ecuador; +2018-11-19T19:29:15Z;Nathália;4288.607;114808348;Ecuador; +2018-11-19T19:10:21Z;nathalia;9747.153;115726107;Ecuador; +2018-11-19T19:02:22Z;Sandra;5848.658;114896746;Ecuador; +2018-11-19T18:52:25Z;Júlio Cesar;3212.438;115856625;Ecuador; +2018-11-19T18:44:08Z;Júlio Cesar;5891.559;114932379;Ecuador; +2018-11-19T18:37:02Z;Nathália;456.6071;116024179;Ecuador; +2018-11-19T18:10:23Z;Nathália;17959.32;114564606;Ecuador; +2018-11-19T18:09:01Z;Armando;284.6777;115350377;Ecuador; +2018-11-19T17:54:34Z;Ana;911.7533;114858056;Ecuador; +2018-11-19T17:52:27Z;Sandra;151.3049;116234373;Ecuador; +2018-11-19T17:51:07Z;Ana;6440.553;115832991;Ecuador; +2018-11-19T17:27:12Z;Armando;18892.64;114635239;Ecuador; +2018-11-19T17:26:58Z;Júlio;2766.243;115428692;Ecuador; +2018-11-19T17:12:06Z;nathalia;4718.34;114823864;Ecuador; +2018-11-19T17:10:26Z;Armando;13015.69;115181449;Ecuador; +2018-11-19T17:08:29Z;Júlio;4698.422;114655408;Ecuador; +2018-11-19T17:05:21Z;Ana;219.9777;114673742;Ecuador; +2018-11-19T16:55:15Z;Armando;18197.77;115434364;Ecuador; +2018-11-19T16:42:05Z;Nathália;1755.824;114547331;Ecuador; +2018-11-19T16:38:55Z;Júlio;4072.996;114986804;Ecuador; +2018-11-19T16:33:26Z;Armando;9371.025;114234588;Ecuador; +2018-11-19T15:59:03Z;nathalia;463.9205;116305331;Ecuador; +2018-11-19T15:57:12Z;Sandra;7722.526;114819249;Ecuador; +2018-11-19T15:50:19Z;Ana;9979;115256801;Ecuador; +2018-11-19T15:43:03Z;Júlio Cesar;961.4578;115341282;Ecuador; +2018-11-19T15:19:03Z;Júlio Cesar;9279.569;115079526;Ecuador; +2018-11-19T15:07:52Z;Júlio Cesar;4021.881;115690624;Ecuador; +2018-11-19T15:07:12Z;Júlio;7986.695;115175637;Ecuador; +2018-11-19T14:56:45Z;Júlio Cesar;1589.017;116236371;Ecuador; +2018-11-19T14:38:45Z;Ana;3501.816;115483411;Ecuador; +2018-11-19T14:06:23Z;Armando;18509.28;116283358;Ecuador; +2018-11-19T13:59:52Z;Armando;4096.914;115339974;Ecuador; +2018-11-19T13:47:17Z;Júlio;2012.297;115790792;Ecuador; +2018-11-19T13:38:22Z;Nathália;6296.343;116276677;Ecuador; +2018-11-19T13:31:56Z;nathalia;2214.762;116353992;Ecuador; +2018-11-19T13:21:52Z;Sandra;19755.02;115545224;Ecuador; +2018-11-19T13:17:41Z;nathalia;8665.582;115535059;Ecuador; +2018-11-19T13:13:30Z;Júlio;421.9896;116274527;Ecuador; +2018-11-19T13:12:54Z;Sandra;21962.92;115805061;Ecuador; +2018-11-19T13:06:02Z;Armando;3060.042;114366037;Ecuador; +2018-11-19T13:03:58Z;nathalia;643.8843;116059577;Ecuador; +2018-11-19T12:28:12Z;Júlio Cesar;1759.472;114384595;Ecuador; +2018-11-19T11:59:47Z;Eduardo;3129.389;116166600;Ecuador; +2018-11-19T11:21:00Z;Eduardo;8087.215;116294146;Ecuador; +2018-11-19T10:56:39Z;nathalia;6729.46;114932895;Ecuador; +2018-11-19T10:52:33Z;Eduardo;13367.73;114723543;Ecuador; +2018-11-19T10:52:19Z;nathalia;11410.47;115611549;Ecuador; +2018-11-19T10:26:48Z;Sandra;561.3703;115363235;Ecuador; +2018-11-19T10:23:22Z;Sandra;8980.217;115960362;Ecuador; +2018-11-19T10:20:36Z;Nathália;2425.145;116257608;Ecuador; +2018-11-19T10:07:05Z;Júlio Cesar;3084.22;115916189;Ecuador; +2018-11-19T09:47:37Z;Armando;5373.606;115748114;Ecuador; +2018-11-19T09:35:43Z;Eduardo;2612.43;115230863;Ecuador; +2018-11-19T09:21:14Z;Ana;1364.056;115614092;Ecuador; +2018-11-19T09:16:43Z;Nathália;11587.96;115628202;Ecuador; +2018-11-19T09:13:52Z;Júlio;14665.83;114986143;Ecuador; +2018-11-19T08:42:01Z;Nathália;1046.263;115089879;Ecuador; +2018-11-19T08:37:23Z;Armando;7951.8;116072673;Ecuador; +2018-11-19T08:25:54Z;Eduardo;7464.741;115927083;Ecuador; +2018-11-19T08:01:16Z;Eduardo;2233.318;115955139;Ecuador; +2018-11-19T07:52:41Z;nathalia;3085.645;115908339;Ecuador; +2018-11-19T07:01:36Z;Ana;11077.45;116237459;Ecuador; +2018-11-19T06:43:05Z;Armando;1315.185;115517384;Ecuador; +2018-11-19T06:42:41Z;Ana;562.6359;114316355;Ecuador; +2018-11-19T06:26:50Z;Sandra;7555.664;115967090;Ecuador; +2018-11-19T06:25:06Z;Eduardo;783.6779;114718069;Ecuador; +2018-11-19T06:16:29Z;Nathália;22911.41;114740937;Ecuador; +2018-11-19T06:12:59Z;Eduardo;13858.38;114602827;Ecuador; +2018-11-19T05:43:21Z;Nathália;5389.357;114586664;Ecuador; +2018-11-19T05:42:58Z;Júlio;886.4654;114832199;Ecuador; +2018-11-19T05:40:35Z;nathalia;11278.86;114875714;Ecuador; +2018-11-19T05:24:36Z;Ana;4783.647;115748026;Ecuador; +2018-11-19T05:21:09Z;Ana;5594.128;114413628;Ecuador; +2018-11-19T04:49:45Z;Sandra;16973.72;115914139;Ecuador; +2018-11-19T04:32:52Z;Nathália;1238.354;115016230;Ecuador; +2018-11-19T04:12:32Z;Ana;5408.096;114791216;Ecuador; +2018-11-19T03:52:00Z;nathalia;1161.713;114944817;Ecuador; +2018-11-19T03:51:41Z;Júlio Cesar;7404.533;115826638;Ecuador; +2018-11-19T03:42:40Z;Júlio;9783.864;114290794;Ecuador; +2018-11-19T03:33:46Z;Eduardo;21502.45;115760309;Ecuador; +2018-11-19T02:45:07Z;Júlio Cesar;8534.976;114204567;Ecuador; +2018-11-19T02:28:21Z;Eduardo;802.0515;114291464;Ecuador; +2018-11-19T02:28:12Z;Sandra;299.7631;116015852;Ecuador; +2018-11-19T02:11:27Z;Nathália;4627.228;116093171;Ecuador; +2018-11-19T02:10:45Z;Ana;228.3028;114373445;Ecuador; +2018-11-19T02:03:27Z;Júlio Cesar;7755.714;116075028;Ecuador; +2018-11-19T01:20:26Z;Júlio;4929.477;115939082;Ecuador; +2018-11-19T01:10:21Z;Ana;2730.352;115403051;Ecuador; +2018-11-19T00:28:07Z;Júlio;6957.778;114774795;Ecuador; +2018-11-19T00:06:35Z;Júlio;22764.45;116280930;Ecuador; +2018-11-18T23:52:01Z;Júlio;6181.531;115920128;Ecuador; +2018-11-18T23:48:29Z;Eduardo;7815.569;114650613;Ecuador; +2018-11-18T23:31:31Z;Armando;11430.14;115606419;Ecuador; +2018-11-18T23:23:23Z;Ana;718.6161;115250546;Ecuador; +2018-11-18T23:10:22Z;Ana;4672.952;114895607;Ecuador; +2018-11-18T22:50:21Z;Júlio;6658.933;115026992;Ecuador; +2018-11-18T22:47:26Z;Armando;14179.87;116015629;Ecuador; +2018-11-18T22:43:16Z;Eduardo;936.1738;114989501;Ecuador; +2018-11-18T22:10:54Z;Júlio Cesar;4777.908;116150710;Ecuador; +2018-11-18T22:09:18Z;Júlio;140.5966;114798295;Ecuador; +2018-11-18T21:55:29Z;nathalia;2254.295;115187954;Ecuador; +2018-11-18T21:36:27Z;Júlio Cesar;1675.57;115209740;Ecuador; +2018-11-18T21:06:33Z;nathalia;6987.371;115432612;Ecuador; +2018-11-18T20:55:20Z;Júlio Cesar;5970.544;116089403;Ecuador; +2018-11-18T20:04:33Z;Nathália;7656.588;115024927;Ecuador; +2018-11-18T19:06:41Z;Sandra;3763.28;115719196;Ecuador; +2018-11-18T19:02:27Z;Júlio Cesar;2501.85;114887286;Ecuador; +2018-11-18T18:29:10Z;Júlio;1893.966;115100459;Ecuador; +2018-11-18T18:26:23Z;nathalia;1760.009;115498209;Ecuador; +2018-11-18T18:23:17Z;nathalia;7444.819;114251191;Ecuador; +2018-11-18T18:15:07Z;Júlio;4452.092;114439500;Ecuador; +2018-11-18T18:05:00Z;Sandra;8090.104;114952557;Ecuador; +2018-11-18T17:50:39Z;Júlio Cesar;4714.417;116083288;Ecuador; +2018-11-18T17:44:56Z;Júlio Cesar;334.9695;115842941;Ecuador; +2018-11-18T17:38:33Z;Eduardo;19017.01;114809325;Ecuador; +2018-11-18T16:59:02Z;Armando;1086.296;114685481;Ecuador; +2018-11-18T16:51:47Z;Eduardo;2891.773;115186334;Ecuador; +2018-11-18T16:51:02Z;Ana;2699.342;116186101;Ecuador; +2018-11-18T16:41:00Z;Eduardo;3988.039;116031928;Ecuador; +2018-11-18T16:40:27Z;Nathália;17127.11;115220821;Ecuador; +2018-11-18T16:32:18Z;Nathália;5483.503;114220815;Ecuador; +2018-11-18T16:09:52Z;Júlio;7967.826;115235126;Ecuador; +2018-11-18T16:01:13Z;Armando;1100.229;115575365;Ecuador; +2018-11-18T15:27:00Z;Ana;341.6763;114421120;Ecuador; +2018-11-18T15:20:06Z;Nathália;2551.576;116143272;Ecuador; +2018-11-18T15:08:15Z;Júlio Cesar;1963.351;116229267;Ecuador; +2018-11-18T15:03:57Z;Sandra;2447.149;114362049;Ecuador; +2018-11-18T14:40:56Z;Júlio;8922.176;116210517;Ecuador; +2018-11-18T14:27:38Z;Júlio Cesar;7354.992;116268427;Ecuador; +2018-11-18T14:26:17Z;Ana;12556.51;115517213;Ecuador; +2018-11-18T14:16:58Z;Ana;10382.69;114974834;Ecuador; +2018-11-18T14:16:24Z;Sandra;3599.216;114840046;Ecuador; +2018-11-18T13:35:14Z;Júlio;24174.18;115680839;Ecuador; +2018-11-18T13:30:15Z;Nathália;4940.891;116206896;Ecuador; +2018-11-18T13:17:44Z;Júlio;8613.61;115747747;Ecuador; +2018-11-18T13:17:29Z;Sandra;7006.861;114712162;Ecuador; +2018-11-18T13:14:16Z;Nathália;954.8868;115022191;Ecuador; +2018-11-18T13:13:55Z;Júlio Cesar;5612.343;116354923;Ecuador; +2018-11-18T13:12:12Z;Armando;6120.524;115165951;Ecuador; +2018-11-18T13:04:55Z;Eduardo;4421.052;114980226;Ecuador; +2018-11-18T12:52:04Z;Júlio Cesar;895.4309;115903711;Ecuador; +2018-11-18T12:40:38Z;Júlio Cesar;17145.97;116102431;Ecuador; +2018-11-18T12:36:14Z;nathalia;5292.95;114696127;Ecuador; +2018-11-18T12:33:38Z;Júlio;7702.107;115974301;Ecuador; +2018-11-18T12:31:21Z;Ana;2439.785;116338117;Ecuador; +2018-11-18T12:23:20Z;Ana;3990.756;114545033;Ecuador; +2018-11-18T11:39:45Z;nathalia;1710.094;114273150;Ecuador; +2018-11-18T11:35:51Z;Júlio;7305.922;116059864;Ecuador; +2018-11-18T11:24:50Z;Júlio Cesar;10382.03;114234437;Ecuador; +2018-11-18T11:10:37Z;Ana;1431.027;114547510;Ecuador; +2018-11-18T11:05:31Z;Armando;14593.99;114934819;Ecuador; +2018-11-18T10:48:31Z;Eduardo;24223.76;114871502;Ecuador; +2018-11-18T10:17:38Z;Júlio Cesar;375.8077;115223466;Ecuador; +2018-11-18T10:12:08Z;Júlio;1731.986;114495765;Ecuador; +2018-11-18T10:08:50Z;Sandra;6680.341;114397985;Ecuador; +2018-11-18T10:04:36Z;Júlio;16195.47;114851649;Ecuador; +2018-11-18T09:28:23Z;Eduardo;5322.12;115917399;Ecuador; +2018-11-18T09:01:55Z;Armando;388.2182;114700273;Ecuador; +2018-11-18T08:53:20Z;Nathália;4638.537;114254671;Ecuador; +2018-11-18T08:36:54Z;nathalia;994.664;114375615;Ecuador; +2018-11-18T08:11:33Z;Júlio;9080.174;115753328;Ecuador; +2018-11-18T07:46:27Z;Armando;2701.153;115741543;Ecuador; +2018-11-18T07:45:02Z;Júlio Cesar;3266.963;114368708;Ecuador; +2018-11-18T07:43:42Z;nathalia;6023.045;115925651;Ecuador; +2018-11-18T07:35:45Z;Nathália;646.9361;114208441;Ecuador; +2018-11-18T07:23:46Z;Armando;3172.248;115177947;Ecuador; +2018-11-18T06:58:44Z;Sandra;6253.927;115402574;Ecuador; +2018-11-18T06:52:28Z;Júlio Cesar;4026.683;114602294;Ecuador; +2018-11-18T06:44:16Z;nathalia;5958.783;115901603;Ecuador; +2018-11-18T06:43:13Z;Eduardo;5520.84;114515501;Ecuador; +2018-11-18T06:00:22Z;Júlio Cesar;17247.82;115614341;Ecuador; +2018-11-18T05:59:32Z;Júlio;8327.75;115033516;Ecuador; +2018-11-18T05:18:41Z;nathalia;2456.254;115433631;Ecuador; +2018-11-18T05:16:25Z;Júlio;4340.477;115558541;Ecuador; +2018-11-18T05:13:56Z;Nathália;8930.34;115768170;Ecuador; +2018-11-18T05:11:10Z;Eduardo;983.4422;116307182;Ecuador; +2018-11-18T04:39:44Z;Nathália;4007.79;116288950;Ecuador; +2018-11-18T04:33:47Z;Nathália;3154.758;115616499;Ecuador; +2018-11-18T04:07:58Z;nathalia;3632.16;114226152;Ecuador; +2018-11-18T04:02:40Z;Júlio Cesar;236.2143;116004302;Ecuador; +2018-11-18T04:00:01Z;Armando;9231.45;116033345;Ecuador; +2018-11-18T03:37:18Z;Júlio;22097.6;116347531;Ecuador; +2018-11-18T03:30:52Z;nathalia;271.2432;114779666;Ecuador; +2018-11-18T02:58:55Z;Ana;225.1302;115591191;Ecuador; +2018-11-18T02:31:37Z;Armando;30185.06;115989858;Ecuador; +2018-11-18T02:27:28Z;Ana;9519.913;115433993;Ecuador; +2018-11-18T02:26:56Z;Sandra;1049.435;115749012;Ecuador; +2018-11-18T02:03:45Z;Sandra;15066.94;115718298;Ecuador; +2018-11-18T01:38:49Z;Ana;13734.1;114469797;Ecuador; +2018-11-18T01:33:21Z;Júlio;5677.378;115452933;Ecuador; +2018-11-18T01:30:09Z;Júlio Cesar;3885.76;115997775;Ecuador; +2018-11-18T01:18:45Z;Júlio Cesar;5941.541;114385430;Ecuador; +2018-11-18T00:44:34Z;Júlio;918.7282;115330263;Ecuador; +2018-11-18T00:33:44Z;nathalia;367.8588;114220888;Ecuador; +2018-11-18T00:23:36Z;Armando;5231.652;114385264;Ecuador; +2018-11-18T00:19:41Z;Sandra;16642.06;114602208;Ecuador; +2018-11-18T00:01:45Z;Sandra;6840.932;114765827;Ecuador; +2018-11-17T23:32:38Z;Sandra;15024.56;115077929;Ecuador; +2018-11-17T23:31:21Z;Eduardo;3540.204;115965346;Ecuador; +2018-11-17T23:12:05Z;Sandra;486.786;114730138;Ecuador; +2018-11-17T23:08:17Z;Sandra;15.71148;115527861;Ecuador; +2018-11-17T22:42:20Z;Ana;91.84359;115510889;Ecuador; +2018-11-17T22:25:08Z;Júlio;12669.2;116258341;Ecuador; +2018-11-17T22:01:38Z;Armando;6493.132;114873443;Ecuador; +2018-11-17T21:40:59Z;Eduardo;430.8366;116147201;Ecuador; +2018-11-17T21:35:51Z;Júlio;658.7272;116161402;Ecuador; +2018-11-17T21:27:47Z;Júlio;889.4403;116052197;Ecuador; +2018-11-17T21:12:26Z;Ana;5279.507;115959376;Ecuador; +2018-11-17T21:04:21Z;nathalia;5081.815;115418451;Ecuador; +2018-11-17T20:57:19Z;Nathália;3726.178;116219823;Ecuador; +2018-11-17T20:01:58Z;Eduardo;4508.008;115121610;Ecuador; +2018-11-17T19:11:14Z;Eduardo;461.0882;114663625;Ecuador; +2018-11-17T19:10:36Z;Júlio;11936.14;115847761;Ecuador; +2018-11-17T19:01:27Z;nathalia;22843.61;114844906;Ecuador; +2018-11-17T18:49:33Z;Júlio;10820.89;116090973;Ecuador; +2018-11-17T18:32:12Z;Nathália;11066.79;114386705;Ecuador; +2018-11-17T17:55:56Z;nathalia;7032.661;115145941;Ecuador; +2018-11-17T17:54:45Z;Júlio Cesar;13198.14;114541569;Ecuador; +2018-11-17T17:54:36Z;Júlio Cesar;1643.106;115057856;Ecuador; +2018-11-17T17:51:04Z;Ana;2781.648;115166033;Ecuador; +2018-11-17T17:38:36Z;Júlio Cesar;1340.334;115774987;Ecuador; +2018-11-17T17:29:24Z;Ana;1012.533;114461913;Ecuador; +2018-11-17T17:18:23Z;Armando;5113.373;116000700;Ecuador; +2018-11-17T17:14:39Z;Ana;2098.115;115165015;Ecuador; +2018-11-17T16:29:24Z;nathalia;2417.375;115924207;Ecuador; +2018-11-17T16:18:18Z;Sandra;11396.48;115922178;Ecuador; +2018-11-17T16:14:37Z;Júlio Cesar;904.5581;116158814;Ecuador; +2018-11-17T15:54:25Z;Nathália;6149.754;115340620;Ecuador; +2018-11-17T15:51:59Z;Nathália;2430.956;116074915;Ecuador; +2018-11-17T15:50:42Z;Júlio;18025.55;114870337;Ecuador; +2018-11-17T15:37:40Z;Júlio Cesar;206.9991;115039752;Ecuador; +2018-11-17T15:17:08Z;Júlio Cesar;17886.35;115221865;Ecuador; +2018-11-17T15:10:10Z;Eduardo;1527.042;116172628;Ecuador; +2018-11-17T15:03:46Z;Sandra;8521.681;114299945;Ecuador; +2018-11-17T14:17:44Z;nathalia;10480.45;115820819;Ecuador; +2018-11-17T13:50:56Z;Júlio;8529.637;114394804;Ecuador; +2018-11-17T13:45:28Z;Nathália;9174.145;115691861;Ecuador; +2018-11-17T13:39:46Z;Júlio Cesar;2881.849;115882053;Ecuador; +2018-11-17T13:27:35Z;Nathália;11856.27;115354965;Ecuador; +2018-11-17T13:03:39Z;Armando;4002.726;115057853;Ecuador; +2018-11-17T13:02:42Z;Ana;17729.87;115626279;Ecuador; +2018-11-17T13:01:42Z;Júlio;1995.178;114927352;Ecuador; +2018-11-17T12:18:20Z;Nathália;6663.428;114238764;Ecuador; +2018-11-17T12:04:19Z;Júlio;722.3882;114233737;Ecuador; +2018-11-17T11:55:07Z;Eduardo;6450;116041090;Ecuador; +2018-11-17T11:52:51Z;nathalia;1448.76;115305097;Ecuador; +2018-11-17T11:35:18Z;Eduardo;8372.859;116271964;Ecuador; +2018-11-17T11:19:46Z;Júlio Cesar;2151.548;115934788;Ecuador; +2018-11-17T11:01:52Z;nathalia;1413.073;116277344;Ecuador; +2018-11-17T10:35:26Z;Ana;1248.047;115704408;Ecuador; +2018-11-17T10:29:24Z;Júlio;4182.778;114203876;Ecuador; +2018-11-17T10:02:40Z;Ana;6987.016;115920102;Ecuador; +2018-11-17T10:01:27Z;Nathália;133.497;115516870;Ecuador; +2018-11-17T09:55:20Z;Júlio;11369.49;115650483;Ecuador; +2018-11-17T09:54:04Z;Ana;12836.65;114575171;Ecuador; +2018-11-17T09:35:39Z;Nathália;256.1312;115296780;Ecuador; +2018-11-17T09:13:26Z;Ana;4680.28;115342758;Ecuador; +2018-11-17T09:10:19Z;nathalia;8835.865;114574805;Ecuador; +2018-11-17T09:02:59Z;Nathália;1380.28;114347451;Ecuador; +2018-11-17T08:57:45Z;Sandra;16793.62;114210098;Ecuador; +2018-11-17T08:30:03Z;Júlio Cesar;2149.498;115911430;Ecuador; +2018-11-17T08:29:49Z;Sandra;1113.689;114879986;Ecuador; +2018-11-17T08:23:29Z;Ana;3335.795;115272440;Ecuador; +2018-11-17T08:05:18Z;Júlio;12443.32;114237988;Ecuador; +2018-11-17T07:59:15Z;Júlio;402.7761;115939172;Ecuador; +2018-11-17T07:55:54Z;Armando;6757.151;116191745;Ecuador; +2018-11-17T07:42:38Z;Júlio;2425.088;115334695;Ecuador; +2018-11-17T07:42:11Z;nathalia;11222.74;116382326;Ecuador; +2018-11-17T07:11:09Z;nathalia;2013.189;116166449;Ecuador; +2018-11-17T06:44:21Z;Júlio Cesar;17175.08;115652692;Ecuador; +2018-11-17T06:28:36Z;nathalia;5881.7;115965131;Ecuador; +2018-11-17T06:24:19Z;Armando;9503.832;115639717;Ecuador; +2018-11-17T06:10:34Z;Júlio Cesar;6557.44;115665348;Ecuador; +2018-11-17T05:59:05Z;Nathália;4864.863;114255709;Ecuador; +2018-11-17T05:57:42Z;Sandra;2237.437;114644555;Ecuador; +2018-11-17T04:54:18Z;Júlio Cesar;4591.364;115752286;Ecuador; +2018-11-17T04:36:52Z;Eduardo;6378.871;115708722;Ecuador; +2018-11-17T04:17:35Z;Nathália;8394.702;116376665;Ecuador; +2018-11-17T04:04:33Z;Júlio;743.5066;116217085;Ecuador; +2018-11-17T03:08:03Z;Ana;7057.384;114935979;Ecuador; +2018-11-17T02:25:24Z;Sandra;6644.743;115588875;Ecuador; +2018-11-17T02:25:16Z;Eduardo;3118.893;115026647;Ecuador; +2018-11-17T02:13:18Z;Eduardo;14807.19;116191730;Ecuador; +2018-11-17T02:01:42Z;Ana;433.6753;114767367;Ecuador; +2018-11-17T01:43:29Z;Nathália;2069.399;114889221;Ecuador; +2018-11-17T01:40:45Z;Nathália;4627.953;114783688;Ecuador; +2018-11-17T01:34:44Z;Eduardo;25380.96;114341569;Ecuador; +2018-11-17T01:24:46Z;Armando;3153.429;115858647;Ecuador; +2018-11-17T01:17:38Z;Eduardo;11133.37;116136686;Ecuador; +2018-11-17T01:04:09Z;Eduardo;7131.64;115035325;Ecuador; +2018-11-17T00:43:30Z;Nathália;2547.326;116081347;Ecuador; +2018-11-17T00:02:46Z;Ana;1589.451;114642313;Ecuador; +2018-11-16T23:43:36Z;nathalia;6245.111;115305261;Ecuador; +2018-11-16T23:36:48Z;Júlio Cesar;1774.783;114745878;Ecuador; +2018-11-16T23:11:50Z;Júlio;5541.251;115031378;Ecuador; +2018-11-16T22:31:31Z;nathalia;9511.638;115960937;Ecuador; +2018-11-16T22:30:02Z;Nathália;836.5739;115087478;Ecuador; +2018-11-16T22:28:46Z;Armando;23.98539;114779450;Ecuador; +2018-11-16T22:14:14Z;Júlio;8231.397;114802685;Ecuador; +2018-11-16T22:00:42Z;Nathália;13540.24;116281053;Ecuador; +2018-11-16T21:58:41Z;Júlio Cesar;2092.29;114842892;Ecuador; +2018-11-16T21:18:08Z;Ana;2554.909;114641571;Ecuador; +2018-11-16T21:11:44Z;Eduardo;2537.847;115417945;Ecuador; +2018-11-16T19:34:17Z;Júlio;165.9898;114946162;Ecuador; +2018-11-16T19:00:12Z;nathalia;1846.794;115474379;Ecuador; +2018-11-16T18:15:30Z;Eduardo;15426.56;114378497;Ecuador; +2018-11-16T18:14:24Z;Júlio Cesar;5730.398;116018987;Ecuador; +2018-11-16T18:14:22Z;nathalia;1211.72;114420839;Ecuador; +2018-11-16T18:12:34Z;nathalia;2589.915;115129821;Ecuador; +2018-11-16T18:07:55Z;Eduardo;5436.183;116162777;Ecuador; +2018-11-16T17:56:48Z;Júlio Cesar;17241.77;114717448;Ecuador; +2018-11-16T17:13:11Z;nathalia;2633.661;115436139;Ecuador; +2018-11-16T17:03:43Z;nathalia;1273.481;115506730;Ecuador; +2018-11-16T16:57:19Z;Sandra;18735.65;115252322;Ecuador; +2018-11-16T16:52:16Z;Júlio;5300.185;114778276;Ecuador; +2018-11-16T16:39:15Z;Júlio Cesar;417.2371;114817709;Ecuador; +2018-11-16T16:24:45Z;Sandra;525.0475;114602599;Ecuador; +2018-11-16T16:14:22Z;nathalia;2634.981;115144105;Ecuador; +2018-11-16T16:04:30Z;Eduardo;11647.1;115686048;Ecuador; +2018-11-16T15:36:17Z;Eduardo;14697.9;114386431;Ecuador; +2018-11-16T15:22:33Z;Sandra;1389.973;114649016;Ecuador; +2018-11-16T15:00:13Z;Ana;5948.155;114872295;Ecuador; +2018-11-16T14:41:06Z;Ana;1794.447;115755210;Ecuador; +2018-11-16T14:38:21Z;Sandra;17247.62;115879163;Ecuador; +2018-11-16T14:07:40Z;Eduardo;6929.9;114723781;Ecuador; +2018-11-16T14:03:33Z;Nathália;2214.936;116141589;Ecuador; +2018-11-16T13:56:24Z;Júlio;2130.813;115999416;Ecuador; +2018-11-16T13:45:07Z;Júlio;11268.3;114991348;Ecuador; +2018-11-16T12:44:09Z;Júlio Cesar;3846.918;114532148;Ecuador; +2018-11-16T12:31:06Z;Armando;814.5258;114690814;Ecuador; +2018-11-16T12:15:10Z;nathalia;1234.382;114402177;Ecuador; +2018-11-16T12:14:37Z;Ana;5626.434;115162677;Ecuador; +2018-11-16T11:59:10Z;nathalia;969.8078;115018150;Ecuador; +2018-11-16T11:48:38Z;Sandra;11523.26;115890850;Ecuador; +2018-11-16T11:38:43Z;Júlio Cesar;3991.889;115922546;Ecuador; +2018-11-16T11:35:22Z;nathalia;1087.116;115949457;Ecuador; +2018-11-16T11:27:51Z;Armando;17071.74;115230691;Ecuador; +2018-11-16T11:16:28Z;Ana;7345.12;115927724;Ecuador; +2018-11-16T09:31:22Z;Júlio;5115.479;115116959;Ecuador; +2018-11-16T09:21:42Z;nathalia;4659.818;115220398;Ecuador; +2018-11-16T08:57:56Z;Ana;35129.43;115902710;Ecuador; +2018-11-16T08:51:05Z;Nathália;11966.31;114480519;Ecuador; +2018-11-16T08:18:27Z;Ana;4497.474;116082279;Ecuador; +2018-11-16T07:54:19Z;nathalia;1856.964;114397587;Ecuador; +2018-11-16T07:52:42Z;Armando;4213.104;115495840;Ecuador; +2018-11-16T07:51:06Z;Armando;7399.618;115258431;Ecuador; +2018-11-16T07:49:03Z;Eduardo;5613.564;114865407;Ecuador; +2018-11-16T07:28:21Z;Júlio Cesar;10381.61;114397173;Ecuador; +2018-11-16T07:21:40Z;nathalia;6163.349;116104257;Ecuador; +2018-11-16T07:17:35Z;Júlio;2771.384;114339914;Ecuador; +2018-11-16T07:05:57Z;Armando;12748.83;114407683;Ecuador; +2018-11-16T06:54:37Z;Ana;4036.36;115070854;Ecuador; +2018-11-16T06:53:55Z;Sandra;3114.835;116222510;Ecuador; +2018-11-16T06:53:33Z;Sandra;28545.48;114379335;Ecuador; +2018-11-16T06:46:17Z;nathalia;2455.95;116131171;Ecuador; +2018-11-16T06:30:28Z;Ana;156.4003;114937057;Ecuador; +2018-11-16T05:23:38Z;Júlio Cesar;14473.68;114985633;Ecuador; +2018-11-16T05:03:00Z;Eduardo;13584.8;115265242;Ecuador; +2018-11-16T04:53:22Z;Júlio Cesar;4990.686;114277490;Ecuador; +2018-11-16T04:49:38Z;Armando;11000.37;115407027;Ecuador; +2018-11-16T04:22:21Z;Ana;9011.392;115603873;Ecuador; +2018-11-16T03:53:21Z;nathalia;8600.077;115371531;Ecuador; +2018-11-16T03:41:29Z;Júlio Cesar;6788.577;114769498;Ecuador; +2018-11-16T03:35:50Z;Júlio;1295.149;115150734;Ecuador; +2018-11-16T03:30:35Z;nathalia;9675.066;116110060;Ecuador; +2018-11-16T03:27:24Z;Júlio Cesar;4061.135;116294403;Ecuador; +2018-11-16T03:08:00Z;Júlio;24402.35;115834349;Ecuador; +2018-11-16T02:30:40Z;nathalia;2120.682;115766828;Ecuador; +2018-11-16T02:15:02Z;Júlio;7270.119;115371172;Ecuador; +2018-11-16T02:14:15Z;Ana;4300.203;115475636;Ecuador; +2018-11-16T02:09:19Z;nathalia;4472.826;115400202;Ecuador; +2018-11-16T01:57:09Z;Armando;4552.106;115039306;Ecuador; +2018-11-16T01:44:11Z;Júlio;8997.084;115685410;Ecuador; +2018-11-16T01:38:38Z;nathalia;15268.99;115015942;Ecuador; +2018-11-16T01:31:55Z;Ana;6833.139;115959799;Ecuador; +2018-11-16T01:16:52Z;Júlio Cesar;10640.96;114896144;Ecuador; +2018-11-16T01:14:27Z;Sandra;2414.449;114249003;Ecuador; +2018-11-16T01:13:24Z;Júlio Cesar;453.9963;114950219;Ecuador; +2018-11-16T00:53:25Z;Eduardo;12063.32;115384103;Ecuador; +2018-11-16T00:37:55Z;nathalia;9081.51;114415996;Ecuador; +2018-11-16T00:35:32Z;Ana;6921.751;115473114;Ecuador; +2018-11-16T00:30:02Z;Ana;4580.084;115024198;Ecuador; +2018-11-15T23:46:17Z;Eduardo;20787.7;115282852;Ecuador; +2018-11-15T23:43:26Z;Eduardo;65.59084;114888265;Ecuador; +2018-11-15T23:38:29Z;Eduardo;3336.628;116189265;Ecuador; +2018-11-15T23:34:04Z;Ana;6992.209;114856019;Ecuador; +2018-11-15T23:21:50Z;Júlio;15862.31;115145078;Ecuador; +2018-11-15T23:04:40Z;nathalia;18882.09;115555615;Ecuador; +2018-11-15T22:54:29Z;Júlio;6465.395;114339531;Ecuador; +2018-11-15T22:51:53Z;Júlio;351.4973;115113013;Ecuador; +2018-11-15T22:44:53Z;nathalia;3779.335;116330198;Ecuador; +2018-11-15T22:41:50Z;Júlio Cesar;25299.09;114202404;Ecuador; +2018-11-15T21:55:12Z;Eduardo;16251.61;114265619;Ecuador; +2018-11-15T21:46:14Z;Eduardo;14314.29;116329971;Ecuador; +2018-11-15T21:40:03Z;Júlio;15807.29;114552174;Ecuador; +2018-11-15T21:36:25Z;Júlio;9888.566;116204505;Ecuador; +2018-11-15T20:45:20Z;nathalia;14179.97;114865283;Ecuador; +2018-11-15T20:23:25Z;Eduardo;8512.424;116161110;Ecuador; +2018-11-15T20:01:55Z;Eduardo;941.8437;114597078;Ecuador; +2018-11-15T19:46:37Z;nathalia;6505.633;116088523;Ecuador; +2018-11-15T19:44:37Z;nathalia;10956.62;115866736;Ecuador; +2018-11-15T19:23:29Z;Nathália;12665.37;115833435;Ecuador; +2018-11-15T19:04:28Z;Júlio;2016.836;115111433;Ecuador; +2018-11-15T18:32:37Z;Júlio Cesar;9902.845;115627632;Ecuador; +2018-11-15T18:26:53Z;Júlio;1951.102;114340732;Ecuador; +2018-11-15T18:26:03Z;nathalia;2496.94;115654650;Ecuador; +2018-11-15T18:25:45Z;Nathália;9332.364;114969727;Ecuador; +2018-11-15T18:02:24Z;nathalia;19153.89;115391784;Ecuador; +2018-11-15T18:01:47Z;Eduardo;4666.448;115612255;Ecuador; +2018-11-15T17:57:20Z;nathalia;5537.175;115467169;Ecuador; +2018-11-15T17:52:25Z;nathalia;6854.105;116234542;Ecuador; +2018-11-15T17:46:33Z;Nathália;15020.55;114543317;Ecuador; +2018-11-15T17:21:32Z;Sandra;6825.954;115635434;Ecuador; +2018-11-15T17:13:40Z;Ana;13291.57;115675083;Ecuador; +2018-11-15T16:51:23Z;Nathália;1191.853;115998453;Ecuador; +2018-11-15T16:35:02Z;Júlio;14657.08;115673325;Ecuador; +2018-11-15T16:26:29Z;Júlio Cesar;2850.226;115435618;Ecuador; +2018-11-15T16:20:21Z;Nathália;918.0028;114854083;Ecuador; +2018-11-15T16:15:41Z;Sandra;58.96919;114740930;Ecuador; +2018-11-15T16:06:44Z;Armando;15961.83;114366280;Ecuador; +2018-11-15T15:53:20Z;Eduardo;1186.266;114911080;Ecuador; +2018-11-15T14:59:30Z;nathalia;4548.681;116136321;Ecuador; +2018-11-15T14:47:20Z;Júlio Cesar;2819.054;114633837;Ecuador; +2018-11-15T14:33:10Z;Júlio;9971.14;114843031;Ecuador; +2018-11-15T14:19:09Z;Armando;527.2231;116033843;Ecuador; +2018-11-15T14:11:33Z;Sandra;15076.98;115091425;Ecuador; +2018-11-15T13:43:51Z;Ana;13988.55;115618386;Ecuador; +2018-11-15T13:23:11Z;Sandra;2752.778;115973190;Ecuador; +2018-11-15T13:21:10Z;Ana;4894.783;115765683;Ecuador; +2018-11-15T12:56:56Z;Ana;15422.29;114379219;Ecuador; +2018-11-15T12:55:59Z;nathalia;16222.4;115267645;Ecuador; +2018-11-15T12:54:26Z;Júlio;7133.242;115781697;Ecuador; +2018-11-15T12:47:15Z;Armando;9.310838;116315809;Ecuador; +2018-11-15T12:32:38Z;nathalia;983.6588;115556488;Ecuador; +2018-11-15T12:05:28Z;Ana;1729.015;115251215;Ecuador; +2018-11-15T11:08:10Z;Júlio Cesar;14159.17;115502213;Ecuador; +2018-11-15T10:33:09Z;Eduardo;6218.999;114923872;Ecuador; +2018-11-15T10:31:45Z;Nathália;5129.874;115696936;Ecuador; +2018-11-15T10:22:21Z;Júlio;2887.791;114873457;Ecuador; +2018-11-15T09:52:38Z;Sandra;11499.92;114957132;Ecuador; +2018-11-15T09:48:07Z;nathalia;5000.049;115886659;Ecuador; +2018-11-15T09:25:06Z;Júlio Cesar;1910.344;115176344;Ecuador; +2018-11-15T08:53:26Z;Ana;6851.741;116094913;Ecuador; +2018-11-15T08:01:29Z;Eduardo;1299.898;115159807;Ecuador; +2018-11-15T07:59:59Z;Armando;1998.574;116031300;Ecuador; +2018-11-15T07:27:53Z;Ana;9369.156;116166670;Ecuador; +2018-11-15T07:24:29Z;Júlio Cesar;7275.424;114579567;Ecuador; +2018-11-15T07:24:05Z;Júlio;3321.946;116233165;Ecuador; +2018-11-15T07:17:50Z;Eduardo;14543.33;114521787;Ecuador; +2018-11-15T07:15:22Z;Nathália;11246.24;115815137;Ecuador; +2018-11-15T06:55:43Z;Sandra;4950.321;115165826;Ecuador; +2018-11-15T06:45:28Z;nathalia;4614.902;115037252;Ecuador; +2018-11-15T06:12:11Z;Nathália;2877.592;115432525;Ecuador; +2018-11-15T06:10:40Z;Nathália;1028.264;115934109;Ecuador; +2018-11-15T05:46:29Z;Sandra;1156.512;114344504;Ecuador; +2018-11-15T05:27:38Z;Eduardo;8716.592;114670693;Ecuador; +2018-11-15T05:02:44Z;Sandra;2847.234;114842826;Ecuador; +2018-11-15T04:36:01Z;Sandra;6969.848;114966684;Ecuador; +2018-11-15T04:07:58Z;Júlio;337.4882;115236946;Ecuador; +2018-11-15T03:50:05Z;Armando;231.7152;114949617;Ecuador; +2018-11-15T03:49:06Z;Júlio;601.2329;115317447;Ecuador; +2018-11-15T03:36:24Z;Sandra;2382.923;114722010;Ecuador; +2018-11-15T03:36:16Z;Júlio Cesar;125.2906;115700614;Ecuador; +2018-11-15T03:31:05Z;Júlio;8966.277;114693488;Ecuador; +2018-11-15T03:16:22Z;Armando;730.3571;114512779;Ecuador; +2018-11-15T03:07:42Z;Nathália;19675.49;115404400;Ecuador; +2018-11-15T03:00:37Z;Eduardo;5063.815;115331915;Ecuador; +2018-11-15T02:45:45Z;Ana;1965.6;115900324;Ecuador; +2018-11-15T02:27:14Z;Júlio;4263.723;114319856;Ecuador; +2018-11-15T02:06:37Z;Júlio;1312.061;114861642;Ecuador; +2018-11-15T01:54:38Z;Sandra;653.9249;116392875;Ecuador; +2018-11-15T01:53:02Z;nathalia;769.7184;114250670;Ecuador; +2018-11-15T01:52:00Z;Nathália;1073.363;115910764;Ecuador; +2018-11-15T01:47:21Z;Júlio Cesar;12186.93;116258852;Ecuador; +2018-11-15T01:47:12Z;Júlio;10019.66;116220675;Ecuador; +2018-11-15T01:20:36Z;nathalia;2536.869;115985567;Ecuador; +2018-11-15T01:14:11Z;Eduardo;3615.899;115960029;Ecuador; +2018-11-15T01:00:12Z;Júlio;16945.53;114230781;Ecuador; +2018-11-15T00:59:53Z;nathalia;26573.66;114823870;Ecuador; +2018-11-15T00:47:43Z;Sandra;2120.547;115019388;Ecuador; +2018-11-15T00:40:02Z;Eduardo;433.7531;114268895;Ecuador; +2018-11-15T00:38:35Z;Ana;6438.781;114749434;Ecuador; +2018-11-15T00:30:23Z;Eduardo;15300.55;116037686;Ecuador; +2018-11-15T00:22:21Z;Júlio Cesar;8900.659;115122800;Ecuador; +2018-11-15T00:11:49Z;Júlio Cesar;8021.32;115713146;Ecuador; +2018-11-15T00:00:59Z;Júlio;1240.422;116102376;Ecuador; +2018-11-14T23:45:02Z;nathalia;3720.833;114234094;Ecuador; +2018-11-14T23:07:57Z;Ana;5381.545;116286273;Ecuador; +2018-11-14T22:39:23Z;Eduardo;19036.38;114814906;Ecuador; +2018-11-14T21:42:44Z;Nathália;119.5105;115168267;Ecuador; +2018-11-14T21:29:59Z;Júlio;4248.807;116324361;Ecuador; +2018-11-14T21:24:04Z;nathalia;12768.59;114472428;Ecuador; +2018-11-14T21:16:07Z;Armando;2330.158;115017590;Ecuador; +2018-11-14T21:02:38Z;Eduardo;18518.24;115459460;Ecuador; +2018-11-14T20:48:54Z;Eduardo;7056.395;114207861;Ecuador; +2018-11-14T20:47:30Z;Ana;1696.709;114689647;Ecuador; +2018-11-14T20:42:04Z;nathalia;0.6452489;115959375;Ecuador; +2018-11-14T20:23:28Z;Sandra;7666.977;115582299;Ecuador; +2018-11-14T19:27:22Z;nathalia;7114.423;114354465;Ecuador; +2018-11-14T19:24:02Z;Nathália;8888.546;115810272;Ecuador; +2018-11-14T19:07:24Z;Armando;16651.91;115584290;Ecuador; +2018-11-14T18:56:24Z;Júlio Cesar;1625.349;116186558;Ecuador; +2018-11-14T18:45:21Z;Armando;7232.483;114557155;Ecuador; +2018-11-14T18:40:19Z;Ana;1724.668;114497509;Ecuador; +2018-11-14T18:08:39Z;Eduardo;7824.003;115240174;Ecuador; +2018-11-14T17:56:22Z;Nathália;7696.084;115282692;Ecuador; +2018-11-14T17:43:09Z;Sandra;2242.007;115397531;Ecuador; +2018-11-14T17:35:50Z;Júlio Cesar;2212.904;115874471;Ecuador; +2018-11-14T17:26:58Z;Sandra;10820.81;114508912;Ecuador; +2018-11-14T16:39:32Z;nathalia;11291.85;115256262;Ecuador; +2018-11-14T16:35:28Z;Armando;741.7765;114617370;Ecuador; +2018-11-14T16:33:05Z;Júlio;808.1498;116021155;Ecuador; +2018-11-14T16:31:04Z;nathalia;12573.04;116152753;Ecuador; +2018-11-14T16:05:13Z;Sandra;13148.39;115341971;Ecuador; +2018-11-14T15:54:48Z;Ana;231.9368;114334933;Ecuador; +2018-11-14T15:48:01Z;Armando;8962.626;114776940;Ecuador; +2018-11-14T15:26:11Z;Armando;8043.632;114844632;Ecuador; +2018-11-14T14:01:02Z;Armando;3975.095;115865895;Ecuador; +2018-11-14T13:49:51Z;Júlio;5712.997;115541722;Ecuador; +2018-11-14T12:59:24Z;Júlio Cesar;2293.087;114933858;Ecuador; +2018-11-14T12:34:12Z;Sandra;361.3235;115698857;Ecuador; +2018-11-14T12:12:53Z;Sandra;1090.17;114975751;Ecuador; +2018-11-14T12:00:00Z;nathalia;5397.631;114782521;Ecuador; +2018-11-14T11:52:09Z;Júlio Cesar;1610.105;116097604;Ecuador; +2018-11-14T11:43:09Z;Júlio;22470.38;115887706;Ecuador; +2018-11-14T11:38:46Z;Nathália;11832.02;114682372;Ecuador; +2018-11-14T11:27:38Z;nathalia;12748.04;114343646;Ecuador; +2018-11-14T11:26:53Z;Nathália;12148.27;115103544;Ecuador; +2018-11-14T11:10:50Z;Ana;973.7131;116034715;Ecuador; +2018-11-14T10:31:13Z;Eduardo;14298.82;114463406;Ecuador; +2018-11-14T10:29:12Z;Nathália;11219.45;115333239;Ecuador; +2018-11-14T10:18:18Z;Ana;3520.356;116285533;Ecuador; +2018-11-14T10:17:38Z;Júlio;63.41275;115290257;Ecuador; +2018-11-14T09:17:25Z;Júlio;2977.146;115977896;Ecuador; +2018-11-14T09:13:12Z;Sandra;12372.86;115729406;Ecuador; +2018-11-14T08:33:21Z;Júlio;573.4954;115661949;Ecuador; +2018-11-14T08:29:47Z;Nathália;12579.34;115001113;Ecuador; +2018-11-14T08:20:06Z;Nathália;14288.77;114207780;Ecuador; +2018-11-14T08:17:39Z;Nathália;1961.802;114960915;Ecuador; +2018-11-14T07:14:48Z;Júlio;9378.921;116205968;Ecuador; +2018-11-14T07:11:38Z;Júlio;8117.724;115063985;Ecuador; +2018-11-14T06:12:25Z;Júlio;9080.076;114404420;Ecuador; +2018-11-14T06:09:33Z;Júlio Cesar;9860.51;114596058;Ecuador; +2018-11-14T06:06:19Z;Armando;12214.91;114585886;Ecuador; +2018-11-14T05:59:51Z;Júlio Cesar;9205.49;115674049;Ecuador; +2018-11-14T05:50:44Z;Armando;3548.004;116200464;Ecuador; +2018-11-14T05:25:01Z;Júlio;3463.38;114616577;Ecuador; +2018-11-14T04:43:12Z;Armando;2735.195;114750175;Ecuador; +2018-11-14T04:00:37Z;Eduardo;89.83689;114669982;Ecuador; +2018-11-14T03:51:55Z;Nathália;12707.25;116277397;Ecuador; +2018-11-14T03:40:57Z;Sandra;8612.465;115006451;Ecuador; +2018-11-14T03:37:45Z;Ana;2679.75;115751742;Ecuador; +2018-11-14T03:19:35Z;Eduardo;2387.317;115724387;Ecuador; +2018-11-14T03:09:42Z;Armando;6270.957;115172119;Ecuador; +2018-11-14T03:04:13Z;Júlio Cesar;188.61;115692178;Ecuador; +2018-11-14T02:52:53Z;Nathália;11913.07;116371594;Ecuador; +2018-11-14T02:34:37Z;Júlio Cesar;15121.69;114596965;Ecuador; +2018-11-14T02:34:04Z;Júlio Cesar;4287.375;116223321;Ecuador; +2018-11-14T02:22:40Z;Júlio Cesar;12011.86;115037056;Ecuador; +2018-11-14T01:42:04Z;Eduardo;20741.38;114226849;Ecuador; +2018-11-14T01:38:59Z;Armando;2965.976;116368378;Ecuador; +2018-11-14T01:35:50Z;nathalia;4943.886;115388992;Ecuador; +2018-11-14T01:16:48Z;Júlio;6997.556;115548175;Ecuador; +2018-11-14T01:09:03Z;Eduardo;1718.537;116003039;Ecuador; +2018-11-14T00:48:16Z;Júlio Cesar;19898.03;114341024;Ecuador; +2018-11-14T00:13:30Z;Eduardo;4043.876;115421348;Ecuador; +2018-11-13T23:52:13Z;Eduardo;8220.322;115257431;Ecuador; +2018-11-13T23:42:13Z;Júlio;5547.175;114304191;Ecuador; +2018-11-13T23:25:42Z;Eduardo;1675.678;114386531;Ecuador; +2018-11-13T23:02:45Z;Armando;16087.43;116122844;Ecuador; +2018-11-13T23:01:30Z;Armando;1896.797;115756557;Ecuador; +2018-11-13T22:59:09Z;Júlio Cesar;521.5609;115352066;Ecuador; +2018-11-13T22:41:58Z;Armando;6952.399;114720982;Ecuador; +2018-11-13T22:26:17Z;Eduardo;176.5253;115341626;Ecuador; +2018-11-13T22:19:45Z;Armando;2914.209;114504633;Ecuador; +2018-11-13T22:16:28Z;Júlio;227.3595;114840679;Ecuador; +2018-11-13T21:56:51Z;Júlio;1579.065;115903203;Ecuador; +2018-11-13T21:52:34Z;Sandra;10942.04;114650523;Ecuador; +2018-11-13T21:48:34Z;Sandra;1160.612;116319639;Ecuador; +2018-11-13T21:35:16Z;Sandra;19699.84;114674473;Ecuador; +2018-11-13T21:24:57Z;Sandra;9152.494;115522080;Ecuador; +2018-11-13T21:22:26Z;Júlio Cesar;6279.421;114707457;Ecuador; +2018-11-13T20:58:39Z;Ana;14469.32;114580803;Ecuador; +2018-11-13T20:38:43Z;nathalia;401.4798;116020531;Ecuador; +2018-11-13T20:21:05Z;Júlio;4566.281;116032635;Ecuador; +2018-11-13T20:06:04Z;Armando;5121.088;115165662;Ecuador; +2018-11-13T19:55:15Z;Sandra;27357.93;114641741;Ecuador; +2018-11-13T19:51:16Z;Eduardo;5681.612;114735928;Ecuador; +2018-11-13T19:11:13Z;Júlio;8164.212;114924328;Ecuador; +2018-11-13T18:33:32Z;Ana;5722.622;115998989;Ecuador; +2018-11-13T18:15:15Z;Ana;5679.991;116180186;Ecuador; +2018-11-13T18:13:02Z;Ana;15786.69;116079381;Ecuador; +2018-11-13T18:12:34Z;nathalia;7239.282;115063921;Ecuador; +2018-11-13T17:57:36Z;Ana;17224.41;116198360;Ecuador; +2018-11-13T17:34:02Z;Armando;14166.64;116260663;Ecuador; +2018-11-13T17:32:32Z;Ana;1017.616;115151653;Ecuador; +2018-11-13T16:39:37Z;Sandra;14123.85;115168337;Ecuador; +2018-11-13T16:37:51Z;Nathália;4806.899;114677616;Ecuador; +2018-11-13T16:08:34Z;Eduardo;3368.41;115500436;Ecuador; +2018-11-13T16:04:28Z;Júlio Cesar;19053.16;115874785;Ecuador; +2018-11-13T15:57:00Z;Júlio Cesar;2248.825;115985222;Ecuador; +2018-11-13T15:41:23Z;Sandra;5401.464;114647750;Ecuador; +2018-11-13T15:25:06Z;Ana;8215.272;115711789;Ecuador; +2018-11-13T15:16:09Z;Júlio;1359.157;114487294;Ecuador; +2018-11-13T15:13:52Z;Júlio;2978.404;115660281;Ecuador; +2018-11-13T14:43:37Z;Júlio Cesar;2970.679;114913335;Ecuador; +2018-11-13T14:28:48Z;Ana;14787.21;114455656;Ecuador; +2018-11-13T14:16:40Z;nathalia;387.1608;116038627;Ecuador; +2018-11-13T14:10:49Z;Ana;4869.733;114476336;Ecuador; +2018-11-13T13:47:23Z;Nathália;2766.241;114319260;Ecuador; +2018-11-13T13:15:17Z;Eduardo;10724.61;115606307;Ecuador; +2018-11-13T13:02:58Z;Nathália;9544.026;114601515;Ecuador; +2018-11-13T12:42:39Z;Armando;1103.947;114330221;Ecuador; +2018-11-13T12:22:20Z;Ana;1473.361;115973558;Ecuador; +2018-11-13T12:19:13Z;Sandra;9594.327;114658132;Ecuador; +2018-11-13T12:06:49Z;Armando;599.3767;114552027;Ecuador; +2018-11-13T11:50:46Z;Nathália;3704.373;114664114;Ecuador; +2018-11-13T10:56:53Z;Sandra;10122.31;116129663;Ecuador; +2018-11-13T10:42:44Z;nathalia;15164.49;115176736;Ecuador; +2018-11-13T10:33:33Z;Nathália;2597.482;116225823;Ecuador; +2018-11-13T10:00:24Z;Júlio;7576.811;114768122;Ecuador; +2018-11-13T09:43:41Z;nathalia;1989.367;116139064;Ecuador; +2018-11-13T08:56:27Z;Armando;11903.99;115190824;Ecuador; +2018-11-13T08:38:16Z;Ana;7260.828;114364859;Ecuador; +2018-11-13T08:28:10Z;Júlio Cesar;540.0866;115179105;Ecuador; +2018-11-13T08:24:28Z;Eduardo;515.4533;114392858;Ecuador; +2018-11-13T08:05:18Z;nathalia;1387.67;115995942;Ecuador; +2018-11-13T08:01:28Z;Ana;25804.89;114570443;Ecuador; +2018-11-13T07:55:29Z;Júlio Cesar;10978.47;115232531;Ecuador; +2018-11-13T07:19:10Z;Ana;8598.833;115557188;Ecuador; +2018-11-13T06:47:08Z;Júlio;101.8311;114905915;Ecuador; +2018-11-13T06:26:54Z;Ana;4523.354;114739650;Ecuador; +2018-11-13T06:26:37Z;Sandra;95.25112;114688681;Ecuador; +2018-11-13T06:18:21Z;Ana;2566.578;115874404;Ecuador; +2018-11-13T06:17:18Z;Júlio Cesar;22791.62;115272620;Ecuador; +2018-11-13T06:02:34Z;Armando;26349.49;115043758;Ecuador; +2018-11-13T05:32:00Z;Ana;19193.45;116115315;Ecuador; +2018-11-13T05:28:41Z;Ana;1982.17;115805856;Ecuador; +2018-11-13T05:13:59Z;nathalia;12378.87;115071261;Ecuador; +2018-11-13T04:50:26Z;Eduardo;3916.297;114293703;Ecuador; +2018-11-13T04:40:57Z;Sandra;434.8023;114674861;Ecuador; +2018-11-13T04:18:38Z;Eduardo;132.5337;114887288;Ecuador; +2018-11-13T03:44:17Z;Nathália;804.9181;115228996;Ecuador; +2018-11-13T03:37:56Z;Armando;1055.945;115503964;Ecuador; +2018-11-13T03:37:41Z;Júlio Cesar;1195.375;115690390;Ecuador; +2018-11-13T03:06:36Z;Eduardo;14985.24;114440154;Ecuador; +2018-11-13T03:04:10Z;Eduardo;669.8412;115327585;Ecuador; +2018-11-13T02:53:44Z;nathalia;495.0713;114676053;Ecuador; +2018-11-13T02:36:06Z;Sandra;3165.448;114265017;Ecuador; +2018-11-13T02:28:29Z;Nathália;11065.22;115658751;Ecuador; +2018-11-13T02:12:39Z;Nathália;14596.65;116332130;Ecuador; +2018-11-13T02:05:34Z;Eduardo;6988.621;115244368;Ecuador; +2018-11-13T02:02:23Z;Nathália;2838.331;114236843;Ecuador; +2018-11-13T01:42:21Z;Ana;4787.763;115734739;Ecuador; +2018-11-13T01:26:01Z;Júlio;3292.41;115446548;Ecuador; +2018-11-13T00:47:29Z;nathalia;4018.12;115890226;Ecuador; +2018-11-13T00:45:17Z;Armando;7192.354;115159424;Ecuador; +2018-11-13T00:41:13Z;Armando;957.7536;115137422;Ecuador; +2018-11-13T00:40:54Z;nathalia;3709.382;114945515;Ecuador; +2018-12-06T22:17:27Z;Júlio Cesar;801.8116;115232776;Mexico; +2018-12-06T22:16:34Z;Eduardo;1336.224;115138676;Mexico; +2018-12-06T21:46:25Z;nathalia;1815.507;115412374;Mexico; +2018-12-06T21:40:42Z;Júlio;746.5302;114912552;Mexico; +2018-12-06T21:36:42Z;Ana;79.7757;114948271;Mexico; +2018-12-06T21:07:34Z;Eduardo;5527.731;116078973;Mexico; +2018-12-06T21:03:45Z;Armando;4033.25;115471774;Mexico; +2018-12-06T21:03:29Z;Ana;501.9907;115576462;Mexico; +2018-12-06T20:59:15Z;Sandra;33.96639;115449921;Mexico; +2018-12-06T20:21:58Z;Sandra;3209.101;115460692;Mexico; +2018-12-06T20:04:06Z;Armando;3864.575;115057584;Mexico; +2018-12-06T20:03:02Z;Eduardo;194.493;114716230;Mexico; +2018-12-06T19:38:56Z;nathalia;729.994;115812348;Mexico; +2018-12-06T19:19:13Z;Ana;167.82;115729003;Mexico; +2018-12-06T18:51:54Z;Júlio Cesar;3146.653;116096536;Mexico; +2018-12-06T18:48:34Z;Júlio Cesar;2247.619;114890893;Mexico; +2018-12-06T18:37:55Z;Eduardo;6936.621;114899987;Mexico; +2018-12-06T18:24:49Z;Eduardo;2056.792;115013030;Mexico; +2018-12-06T17:50:59Z;Armando;1806.162;114388835;Mexico; +2018-12-06T17:47:18Z;nathalia;1882.646;115430433;Mexico; +2018-12-06T17:47:08Z;Júlio;443.1348;115987820;Mexico; +2018-12-06T17:18:33Z;Júlio;3239.322;115080804;Mexico; +2018-12-06T17:15:57Z;Júlio;405.8957;114643928;Mexico; +2018-12-06T17:08:17Z;nathalia;2816.066;116180800;Mexico; +2018-12-06T17:04:13Z;Armando;37.35736;114416170;Mexico; +2018-12-06T16:57:04Z;Armando;2703.655;115807927;Mexico; +2018-12-06T16:54:42Z;nathalia;685.5825;114552380;Mexico; +2018-12-06T16:08:50Z;nathalia;2122.027;114200117;Mexico; +2018-12-06T16:08:20Z;Ana;452.5917;114646293;Mexico; +2018-12-06T15:19:20Z;Júlio Cesar;2061.456;115978500;Mexico; +2018-12-06T15:07:15Z;Júlio;153.3828;115873979;Mexico; +2018-12-06T15:01:03Z;Eduardo;617.541;115282006;Mexico; +2018-12-06T14:31:25Z;Júlio;331.3693;115006941;Mexico; +2018-12-06T14:13:08Z;Sandra;42.62371;114345156;Mexico; +2018-12-06T14:09:56Z;Ana;2216.667;115114115;Mexico; +2018-12-06T14:08:30Z;Júlio Cesar;1851.134;115307257;Mexico; +2018-12-06T14:07:50Z;nathalia;3366.76;115175725;Mexico; +2018-12-06T14:04:06Z;Armando;5025.227;115268090;Mexico; +2018-12-06T13:48:02Z;nathalia;3731.061;116350557;Mexico; +2018-12-06T13:10:59Z;Sandra;1097.383;114715505;Mexico; +2018-12-06T12:11:01Z;Ana;1514.214;114397814;Mexico; +2018-12-06T11:43:05Z;nathalia;4979.651;114316577;Mexico; +2018-12-06T11:40:25Z;Júlio Cesar;2089.349;116294918;Mexico; +2018-12-06T10:38:21Z;Nathália;1142.798;114794315;Mexico; +2018-12-06T10:32:47Z;nathalia;2985.366;115039527;Mexico; +2018-12-06T09:39:40Z;nathalia;4151.915;114745496;Mexico; +2018-12-06T08:40:27Z;nathalia;8528.061;116056633;Mexico; +2018-12-06T08:22:49Z;Armando;886.7217;116102616;Mexico; +2018-12-06T08:10:44Z;Armando;9351.311;115957158;Mexico; +2018-12-06T08:09:23Z;nathalia;708.9307;115872627;Mexico; +2018-12-06T07:30:38Z;nathalia;3522.819;115662654;Mexico; +2018-12-06T07:26:37Z;Armando;70.2649;114925636;Mexico; +2018-12-06T07:25:01Z;nathalia;2258.052;116204694;Mexico; +2018-12-06T06:56:26Z;Eduardo;5054.313;115246906;Mexico; +2018-12-06T06:46:37Z;Eduardo;1326.402;116126241;Mexico; +2018-12-06T06:27:23Z;Ana;2280.288;116210436;Mexico; +2018-12-06T06:14:31Z;Nathália;1006.364;114967888;Mexico; +2018-12-06T06:02:23Z;Sandra;811.3799;115409449;Mexico; +2018-12-06T05:26:19Z;Sandra;7469.68;115583647;Mexico; +2018-12-06T05:22:53Z;Júlio;1263.841;114914156;Mexico; +2018-12-06T05:07:40Z;Sandra;881.5468;114867021;Mexico; +2018-12-06T05:01:23Z;Júlio Cesar;1594.655;116007394;Mexico; +2018-12-06T04:41:02Z;Armando;5544.32;115343206;Mexico; +2018-12-06T04:21:47Z;Armando;294.5635;116107943;Mexico; +2018-12-06T03:56:05Z;nathalia;760.1157;115277858;Mexico; +2018-12-06T02:52:14Z;nathalia;4415.27;115673949;Mexico; +2018-12-06T02:35:18Z;nathalia;626.8578;115060316;Mexico; +2018-12-06T02:25:10Z;Júlio;145.6436;115318017;Mexico; +2018-12-06T01:59:44Z;Armando;4601.798;115363054;Mexico; +2018-12-06T01:53:24Z;Sandra;126.8603;116055513;Mexico; +2018-12-06T01:45:58Z;Eduardo;872.2201;114408295;Mexico; +2018-12-06T01:38:51Z;Ana;1006.817;116282313;Mexico; +2018-12-06T01:34:49Z;Armando;2423.503;115910999;Mexico; +2018-12-06T01:09:15Z;Júlio;3238.36;115143309;Mexico; +2018-12-06T01:08:20Z;Júlio Cesar;539.9349;115605873;Mexico; +2018-12-06T00:48:50Z;Júlio;3779.707;115269713;Mexico; +2018-12-06T00:48:50Z;nathalia;143.5321;115464296;Mexico; +2018-12-06T00:36:04Z;Sandra;251.7565;114250774;Mexico; +2018-12-06T00:16:22Z;nathalia;1136.264;116214487;Mexico; +2018-12-06T00:08:12Z;Armando;274.4896;116015784;Mexico; +2018-12-05T23:55:11Z;Eduardo;2411.76;116168677;Mexico; +2018-12-05T23:42:27Z;Eduardo;1035.303;114448731;Mexico; +2018-12-05T23:41:58Z;nathalia;39.95662;114437775;Mexico; +2018-12-05T23:25:45Z;Sandra;61.71409;114230203;Mexico; +2018-12-05T23:25:13Z;nathalia;3410.932;115693012;Mexico; +2018-12-05T23:17:55Z;Ana;3381.554;115699883;Mexico; +2018-12-05T23:04:12Z;Nathália;1046.709;114287989;Mexico; +2018-12-05T22:35:11Z;Júlio;2003.59;114927312;Mexico; +2018-12-05T22:35:04Z;Ana;2844.94;114935124;Mexico; +2018-12-05T22:26:13Z;Eduardo;7627.714;114424172;Mexico; +2018-12-05T22:24:44Z;Eduardo;5940.049;115998728;Mexico; +2018-12-05T21:49:23Z;Júlio Cesar;1958.532;114448026;Mexico; +2018-12-05T21:36:31Z;Júlio Cesar;1222.635;114302621;Mexico; +2018-12-05T21:25:59Z;Ana;1916.587;116239715;Mexico; +2018-12-05T21:24:25Z;Eduardo;3166.572;115029468;Mexico; +2018-12-05T21:08:11Z;Júlio Cesar;4661.376;114227362;Mexico; +2018-12-05T20:34:36Z;Nathália;1358.863;115160528;Mexico; +2018-12-05T20:25:38Z;Eduardo;974.5689;114749740;Mexico; +2018-12-05T20:24:23Z;Júlio Cesar;1485.388;114569246;Mexico; +2018-12-05T20:02:20Z;Armando;322.5776;115727549;Mexico; +2018-12-05T19:57:09Z;Eduardo;1381.583;116378018;Mexico; +2018-12-05T19:53:05Z;Júlio Cesar;6160.406;116027689;Mexico; +2018-12-05T19:37:11Z;Ana;2899.834;116317149;Mexico; +2018-12-05T18:53:31Z;Eduardo;399.4246;114317795;Mexico; +2018-12-05T18:41:15Z;nathalia;277.8627;114557271;Mexico; +2018-12-05T18:26:12Z;Júlio;1699.982;115437732;Mexico; +2018-12-05T18:23:39Z;Eduardo;3311.238;115339305;Mexico; +2018-12-05T18:19:12Z;Eduardo;2483.39;115603999;Mexico; +2018-12-05T18:12:34Z;nathalia;699.509;114800319;Mexico; +2018-12-05T17:59:19Z;nathalia;156.4217;114693384;Mexico; +2018-12-05T17:57:22Z;Armando;3368.949;116149141;Mexico; +2018-12-05T17:49:22Z;Nathália;291.2343;115283104;Mexico; +2018-12-05T17:46:15Z;Júlio Cesar;2475.85;115375211;Mexico; +2018-12-05T17:38:53Z;Sandra;3514.764;115594328;Mexico; +2018-12-05T17:35:25Z;nathalia;1602.229;115085700;Mexico; +2018-12-05T17:13:23Z;Júlio;5642.043;114352617;Mexico; +2018-12-05T16:29:01Z;Júlio Cesar;1450.967;115253891;Mexico; +2018-12-05T16:22:40Z;Júlio Cesar;3210.931;116115097;Mexico; +2018-12-05T16:22:14Z;Júlio Cesar;3522.943;116301206;Mexico; +2018-12-05T15:54:08Z;nathalia;945.0902;115839031;Mexico; +2018-12-05T15:31:47Z;nathalia;3521.796;115345192;Mexico; +2018-12-05T15:30:45Z;Ana;1468.004;114343999;Mexico; +2018-12-05T15:19:19Z;Nathália;2512.264;114324387;Mexico; +2018-12-05T15:03:44Z;Nathália;812.0171;115411732;Mexico; +2018-12-05T14:56:44Z;Júlio Cesar;45.5022;116026886;Mexico; +2018-12-05T14:49:34Z;Eduardo;1517.149;114215595;Mexico; +2018-12-05T14:29:47Z;Nathália;149.3661;115688869;Mexico; +2018-12-05T14:23:03Z;Sandra;3165.088;115568929;Mexico; +2018-12-05T13:44:30Z;Eduardo;1588.342;114352400;Mexico; +2018-12-05T13:34:48Z;Eduardo;1017.548;116344147;Mexico; +2018-12-05T13:31:53Z;Armando;126.0166;115533106;Mexico; +2018-12-05T13:23:43Z;Júlio Cesar;1082.436;115836532;Mexico; +2018-12-05T13:13:06Z;Sandra;2062.586;115229155;Mexico; +2018-12-05T12:52:51Z;Júlio;21.85992;115129164;Mexico; +2018-12-05T12:52:47Z;Ana;568.1429;114734403;Mexico; +2018-12-05T12:47:02Z;Ana;2716.699;115125147;Mexico; +2018-12-05T12:40:43Z;Nathália;567.4892;115995208;Mexico; +2018-12-05T12:34:28Z;Sandra;2097.005;116139348;Mexico; +2018-12-05T12:02:17Z;Júlio Cesar;1603.225;114630860;Mexico; +2018-12-05T11:57:05Z;Ana;749.7244;116154287;Mexico; +2018-12-05T11:34:42Z;Nathália;38.33635;114525872;Mexico; +2018-12-05T11:00:00Z;Júlio Cesar;2292.335;116316498;Mexico; +2018-12-05T10:47:55Z;Nathália;454.3723;115778193;Mexico; +2018-12-05T10:41:46Z;Júlio Cesar;821.8413;115465241;Mexico; +2018-12-05T10:11:56Z;Armando;1956.474;115093104;Mexico; +2018-12-05T10:00:37Z;Sandra;773.5483;115464918;Mexico; +2018-12-05T09:33:21Z;Eduardo;738.6708;115248833;Mexico; +2018-12-05T09:25:29Z;Ana;2425.477;115081778;Mexico; +2018-12-05T09:14:19Z;Eduardo;3232.975;115629906;Mexico; +2018-12-05T08:20:45Z;Armando;5531.43;115728921;Mexico; +2018-12-05T07:41:07Z;Júlio;663.7185;114938167;Mexico; +2018-12-05T07:37:26Z;Armando;8025.018;115633246;Mexico; +2018-12-05T07:36:31Z;Nathália;408.1094;114255231;Mexico; +2018-12-05T07:18:04Z;Nathália;2840.442;114395219;Mexico; +2018-12-05T06:58:51Z;nathalia;749.4545;115269630;Mexico; +2018-12-05T06:33:13Z;Júlio;127.9568;115913163;Mexico; +2018-12-05T06:26:26Z;Júlio Cesar;43.10234;116372124;Mexico; +2018-12-05T06:24:23Z;nathalia;1294.756;114651948;Mexico; +2018-12-05T05:56:42Z;nathalia;2893.32;114627852;Mexico; +2018-12-05T05:54:12Z;Ana;3034.095;115713059;Mexico; +2018-12-05T05:51:21Z;Júlio;1443.958;114298604;Mexico; +2018-12-05T05:51:18Z;Nathália;2823.745;115460533;Mexico; +2018-12-05T05:27:34Z;Sandra;890.6747;114489867;Mexico; +2018-12-05T05:25:15Z;Sandra;1790.793;115216217;Mexico; +2018-12-05T05:02:59Z;Armando;29.40705;114954641;Mexico; +2018-12-05T04:39:51Z;nathalia;1316.866;115167914;Mexico; +2018-12-05T04:18:16Z;Armando;3728.276;114821320;Mexico; +2018-12-05T04:17:07Z;Ana;3016.775;114352483;Mexico; +2018-12-05T04:16:16Z;Nathália;2208.471;116017525;Mexico; +2018-12-05T04:08:46Z;Nathália;4505.092;115837062;Mexico; +2018-12-05T03:46:42Z;Júlio Cesar;1087.93;114301760;Mexico; +2018-12-05T03:41:49Z;Nathália;1.307727;114741705;Mexico; +2018-12-05T03:16:25Z;Eduardo;156.4587;115461645;Mexico; +2018-12-05T03:04:47Z;Nathália;2454.613;114720532;Mexico; +2018-12-05T02:35:01Z;Ana;652.1383;115029392;Mexico; +2018-12-05T02:00:44Z;Armando;2541.554;115245048;Mexico; +2018-12-05T01:46:21Z;Júlio;2648.593;114686166;Mexico; +2018-12-05T01:43:44Z;Júlio;1502.025;114903423;Mexico; +2018-12-05T01:32:29Z;nathalia;1991.854;116017198;Mexico; +2018-12-05T00:04:37Z;Júlio;960.0554;115679991;Mexico; +2018-12-04T23:54:42Z;Júlio Cesar;3104.606;114789391;Mexico; +2018-12-04T23:48:32Z;Armando;2990.192;114994587;Mexico; +2018-12-04T23:47:53Z;nathalia;5731.733;114848051;Mexico; +2018-12-04T23:43:40Z;Sandra;2849.089;115108538;Mexico; +2018-12-04T23:42:43Z;Sandra;5249.317;116233605;Mexico; +2018-12-04T23:36:08Z;Nathália;1790.037;116194194;Mexico; +2018-12-04T23:16:30Z;Eduardo;1939.992;115735921;Mexico; +2018-12-04T23:15:44Z;Ana;1062.175;115084967;Mexico; +2018-12-04T22:26:42Z;Eduardo;2466.277;116120875;Mexico; +2018-12-04T22:25:21Z;Nathália;314.0569;114371965;Mexico; +2018-12-04T22:21:35Z;Júlio;72.44246;115303987;Mexico; +2018-12-04T21:58:44Z;Armando;545.1235;115401670;Mexico; +2018-12-04T21:58:30Z;Júlio Cesar;1764.54;115975239;Mexico; +2018-12-04T21:52:31Z;Eduardo;3704.119;115596961;Mexico; +2018-12-04T21:25:14Z;nathalia;5079.871;115404724;Mexico; +2018-12-04T21:22:31Z;Júlio;2223.212;115730990;Mexico; +2018-12-04T21:19:27Z;Júlio Cesar;241.9803;116328163;Mexico; +2018-12-04T21:05:39Z;Júlio Cesar;5487.319;116317097;Mexico; +2018-12-04T20:57:41Z;Sandra;1048.155;115387990;Mexico; +2018-12-04T20:44:07Z;Júlio;525.903;114245329;Mexico; +2018-12-04T20:37:12Z;Sandra;346.4141;115211732;Mexico; +2018-12-04T20:26:29Z;Ana;1533.414;115671630;Mexico; +2018-12-04T20:00:03Z;Sandra;122.7484;114918925;Mexico; +2018-12-04T19:39:19Z;Nathália;1102.767;114737092;Mexico; +2018-12-04T19:22:28Z;Júlio Cesar;246.1453;114378672;Mexico; +2018-12-04T19:17:17Z;Júlio Cesar;992.3152;114368745;Mexico; +2018-12-04T19:04:16Z;nathalia;3424.527;115149223;Mexico; +2018-12-04T17:58:07Z;Júlio Cesar;369.4922;115724333;Mexico; +2018-12-04T17:56:29Z;Eduardo;1911.106;115361939;Mexico; +2018-12-04T17:52:58Z;Júlio;3940.863;115754115;Mexico; +2018-12-04T17:45:41Z;Nathália;913.5325;115694053;Mexico; +2018-12-04T17:23:29Z;Eduardo;4721.278;115342977;Mexico; +2018-12-04T17:06:03Z;Eduardo;991.2938;114574669;Mexico; +2018-12-04T17:05:23Z;Eduardo;2026.249;115867840;Mexico; +2018-12-04T16:53:53Z;Ana;37.53996;115286606;Mexico; +2018-12-04T16:30:46Z;Ana;361.3541;115910520;Mexico; +2018-12-04T16:01:14Z;Nathália;5431.406;114768487;Mexico; +2018-12-04T15:56:15Z;Eduardo;2946.124;114440355;Mexico; +2018-12-04T15:39:17Z;Sandra;1478.345;115100520;Mexico; +2018-12-04T15:36:46Z;Júlio;4666.021;115507983;Mexico; +2018-12-04T15:31:22Z;Sandra;39.04204;115551424;Mexico; +2018-12-04T15:20:34Z;nathalia;280.1029;115853344;Mexico; +2018-12-04T15:07:28Z;Júlio;91.57309;114459192;Mexico; +2018-12-04T14:49:36Z;Eduardo;3075.385;115952236;Mexico; +2018-12-04T14:48:42Z;Nathália;2000.087;116312287;Mexico; +2018-12-04T14:45:10Z;Sandra;1467.171;114813414;Mexico; +2018-12-04T14:15:25Z;nathalia;5165.327;115693635;Mexico; +2018-12-04T14:07:22Z;nathalia;1454.595;116114225;Mexico; +2018-12-04T13:53:17Z;Eduardo;5612.59;115838370;Mexico; +2018-12-04T13:51:14Z;Nathália;1244.886;116093885;Mexico; +2018-12-04T13:23:10Z;Sandra;141.6427;114861798;Mexico; +2018-12-04T12:11:55Z;Ana;4299.064;114794921;Mexico; +2018-12-04T12:01:08Z;nathalia;158.4138;115777445;Mexico; +2018-12-04T11:53:05Z;Eduardo;1178.561;114312535;Mexico; +2018-12-04T11:40:48Z;Armando;2899.88;115561542;Mexico; +2018-12-04T11:33:54Z;Júlio Cesar;513.3067;114233400;Mexico; +2018-12-04T11:30:59Z;Nathália;58.34998;114595742;Mexico; +2018-12-04T10:49:20Z;Sandra;118.5049;115104513;Mexico; +2018-12-04T10:06:38Z;Eduardo;1277.049;115660121;Mexico; +2018-12-04T09:40:54Z;Júlio;918.9774;115409008;Mexico; +2018-12-04T09:21:57Z;Eduardo;1217.739;116198981;Mexico; +2018-12-04T09:18:04Z;Júlio Cesar;405.2824;114550665;Mexico; +2018-12-04T08:50:22Z;Júlio Cesar;3928.404;114400978;Mexico; +2018-12-04T08:27:22Z;Júlio Cesar;1988.58;115878864;Mexico; +2018-12-04T08:13:49Z;nathalia;1474.395;115990290;Mexico; +2018-12-04T07:59:48Z;Armando;307.1002;114498399;Mexico; +2018-12-04T07:57:36Z;Armando;208.1582;115046511;Mexico; +2018-12-04T07:13:33Z;Eduardo;1892.286;116126539;Mexico; +2018-12-04T07:11:12Z;Júlio Cesar;3264.094;114314104;Mexico; +2018-12-04T07:08:02Z;Júlio;2512.653;115086048;Mexico; +2018-12-04T06:08:29Z;Armando;604.7487;115243530;Mexico; +2018-12-04T05:59:43Z;Sandra;2225.831;116280551;Mexico; +2018-12-04T05:46:34Z;Armando;1767.484;116035105;Mexico; +2018-12-04T05:42:21Z;Ana;676.1915;116312682;Mexico; +2018-12-04T05:41:42Z;Sandra;1280.966;116085114;Mexico; +2018-12-04T05:35:50Z;Júlio Cesar;1277.95;114623777;Mexico; +2018-12-04T05:24:11Z;Júlio Cesar;3228.054;115973468;Mexico; +2018-12-04T04:49:34Z;Júlio;913.2989;114778040;Mexico; +2018-12-04T04:38:25Z;Júlio Cesar;489.6473;114403486;Mexico; +2018-12-04T04:37:51Z;Armando;4730.436;114900162;Mexico; +2018-12-04T04:14:16Z;Eduardo;1058.697;114428642;Mexico; +2018-12-04T03:57:16Z;Ana;769.4532;115388749;Mexico; +2018-12-04T03:46:04Z;Nathália;88.83053;115436903;Mexico; +2018-12-04T03:38:23Z;Sandra;624.4349;114611519;Mexico; +2018-12-04T03:21:07Z;Sandra;173.267;115080242;Mexico; +2018-12-04T03:13:57Z;Sandra;933.9064;116275197;Mexico; +2018-12-04T03:10:33Z;Júlio;6360.98;114480157;Mexico; +2018-12-04T02:15:18Z;Júlio;6803.234;115477829;Mexico; +2018-12-04T01:33:47Z;Nathália;701.762;116135505;Mexico; +2018-12-04T00:35:12Z;Júlio;1195.805;114661436;Mexico; +2018-12-04T00:07:07Z;Sandra;1662.47;115892033;Mexico; +2018-12-03T23:58:45Z;Eduardo;3735.331;114513984;Mexico; +2018-12-03T23:32:58Z;Nathália;90.02939;115571605;Mexico; +2018-12-03T23:32:48Z;Nathália;2338.895;115430014;Mexico; +2018-12-03T21:48:22Z;Sandra;1103.418;115346230;Mexico; +2018-12-03T21:42:06Z;Armando;1122.163;115780693;Mexico; +2018-12-03T21:06:47Z;Nathália;1284.892;115627927;Mexico; +2018-12-03T20:54:24Z;nathalia;379.1557;114492017;Mexico; +2018-12-03T20:18:38Z;Armando;2698.784;114648433;Mexico; +2018-12-03T20:09:37Z;Sandra;3980.255;116293085;Mexico; +2018-12-03T19:55:21Z;Sandra;4124.446;114794501;Mexico; +2018-12-03T18:47:09Z;Ana;3845.031;114608743;Mexico; +2018-12-03T18:31:29Z;Júlio Cesar;381.1958;116147078;Mexico; +2018-12-03T18:23:06Z;Nathália;682.1903;115992949;Mexico; +2018-12-03T18:14:08Z;Júlio;1341.312;114279505;Mexico; +2018-12-03T18:04:05Z;Júlio;1066.154;116128105;Mexico; +2018-12-03T17:26:14Z;Júlio Cesar;1780.072;115907141;Mexico; +2018-12-03T17:14:45Z;Nathália;261.5594;116349523;Mexico; +2018-12-03T17:13:26Z;nathalia;543.0422;115747463;Mexico; +2018-12-03T16:55:47Z;Eduardo;419.7676;115584172;Mexico; +2018-12-03T16:50:26Z;Júlio Cesar;335.9401;114676586;Mexico; +2018-12-03T16:41:20Z;Ana;6901.922;114461636;Mexico; +2018-12-03T16:36:12Z;Júlio;587.7048;115945986;Mexico; +2018-12-03T16:26:42Z;Ana;2218.056;115125708;Mexico; +2018-12-03T16:25:48Z;Júlio;3695.503;115628674;Mexico; +2018-12-03T16:12:19Z;Ana;605.8964;115212528;Mexico; +2018-12-03T15:49:03Z;Nathália;5644.688;115876487;Mexico; +2018-12-03T15:44:57Z;Armando;1.353845;115249955;Mexico; +2018-12-03T15:41:32Z;Ana;3772.953;116056187;Mexico; +2018-12-03T15:35:32Z;Armando;104.9843;115089215;Mexico; +2018-12-03T15:08:02Z;Júlio Cesar;1503.646;115062775;Mexico; +2018-12-03T15:04:42Z;Sandra;5.28136;115365420;Mexico; +2018-12-03T14:58:13Z;Júlio Cesar;4033.259;114986902;Mexico; +2018-12-03T14:49:56Z;Júlio;5845.386;115988896;Mexico; +2018-12-03T14:24:15Z;nathalia;704.6307;116129398;Mexico; +2018-12-03T14:19:10Z;nathalia;2261.928;115816458;Mexico; +2018-12-03T14:15:15Z;Júlio;2760.368;114686902;Mexico; +2018-12-03T13:47:34Z;nathalia;2206.695;114662888;Mexico; +2018-12-03T13:22:52Z;Sandra;834.0926;116034812;Mexico; +2018-12-03T13:18:36Z;nathalia;4027.4;115694349;Mexico; +2018-12-03T13:16:36Z;Nathália;254.3233;114634495;Mexico; +2018-12-03T12:58:20Z;Júlio Cesar;1066.725;114289130;Mexico; +2018-12-03T12:50:22Z;Nathália;3410.722;114422123;Mexico; +2018-12-03T12:40:32Z;nathalia;5335.341;115142152;Mexico; +2018-12-03T12:38:58Z;Eduardo;1038.646;115069653;Mexico; +2018-12-03T12:29:18Z;nathalia;470.6611;114293529;Mexico; +2018-12-03T12:26:39Z;Armando;426.4;115177280;Mexico; +2018-12-03T12:25:45Z;Eduardo;6829.574;115872616;Mexico; +2018-12-03T12:25:25Z;Nathália;3506;115698658;Mexico; +2018-12-03T12:01:57Z;Nathália;1626.928;115953064;Mexico; +2018-12-03T11:35:33Z;nathalia;1627.776;115017046;Mexico; +2018-12-03T11:17:18Z;Júlio;1887.492;115203611;Mexico; +2018-12-03T11:15:18Z;Armando;2388.474;115407265;Mexico; +2018-12-03T10:08:19Z;Nathália;6208.262;116331612;Mexico; +2018-12-03T10:00:02Z;Júlio;90.06051;114656722;Mexico; +2018-12-03T09:46:32Z;Sandra;3988.034;114446327;Mexico; +2018-12-03T09:39:30Z;Ana;5849.527;115574492;Mexico; +2018-12-03T09:19:19Z;Júlio;867.6354;116171437;Mexico; +2018-12-03T09:11:45Z;Armando;1483.645;115858815;Mexico; +2018-12-03T09:05:46Z;nathalia;34.43937;115154246;Mexico; +2018-12-03T08:52:04Z;Armando;931.0113;115338351;Mexico; +2018-12-03T08:43:12Z;Nathália;4013.785;115790054;Mexico; +2018-12-03T08:28:02Z;nathalia;190.0661;115947662;Mexico; +2018-12-03T08:15:48Z;Ana;2475.515;114207567;Mexico; +2018-12-03T08:12:05Z;Júlio Cesar;3924.453;114633554;Mexico; +2018-12-03T08:06:58Z;Armando;1658.258;114309377;Mexico; +2018-12-03T08:00:33Z;nathalia;868.9149;115622761;Mexico; +2018-12-03T07:36:07Z;Júlio;4121.247;114750494;Mexico; +2018-12-03T07:33:27Z;Júlio Cesar;4190.06;115038312;Mexico; +2018-12-03T07:21:28Z;Nathália;975.3672;114982614;Mexico; +2018-12-03T07:17:08Z;Sandra;1040.993;115164227;Mexico; +2018-12-03T07:09:47Z;nathalia;1118.339;114604359;Mexico; +2018-12-03T06:42:32Z;nathalia;5027.978;115116803;Mexico; +2018-12-03T06:22:10Z;Armando;890.9577;115660811;Mexico; +2018-12-03T05:07:56Z;Júlio Cesar;83.13501;114822595;Mexico; +2018-12-03T04:56:18Z;Júlio;2250.13;114752121;Mexico; +2018-12-03T04:40:07Z;Armando;4974.584;114249233;Mexico; +2018-12-03T04:20:23Z;Sandra;892.785;114811039;Mexico; +2018-12-03T04:18:01Z;Sandra;7955.61;114674450;Mexico; +2018-12-03T04:08:29Z;nathalia;433.5322;115548337;Mexico; +2018-12-03T04:01:20Z;Júlio;259.7039;115174276;Mexico; +2018-12-03T02:48:41Z;Ana;3873.58;115807706;Mexico; +2018-12-03T02:35:04Z;Júlio;1057.351;114846593;Mexico; +2018-12-03T02:17:54Z;Sandra;2377.223;115100678;Mexico; +2018-12-03T02:10:54Z;Ana;1168.506;114224961;Mexico; +2018-12-03T01:58:00Z;Sandra;3483.03;115953418;Mexico; +2018-12-03T01:50:24Z;Júlio Cesar;2768.125;115805153;Mexico; +2018-12-03T01:43:26Z;Eduardo;6323.917;115141354;Mexico; +2018-12-03T00:37:55Z;Armando;822.0852;115926018;Mexico; +2018-12-02T23:51:35Z;Júlio Cesar;38.21798;114786726;Mexico; +2018-12-02T23:28:56Z;Eduardo;156.6523;114254529;Mexico; +2018-12-02T23:23:15Z;Nathália;699.3778;115564761;Mexico; +2018-12-02T23:17:43Z;Júlio Cesar;2179.899;116292353;Mexico; +2018-12-02T22:28:20Z;Sandra;3746.835;114570158;Mexico; +2018-12-02T22:22:59Z;Sandra;219.0285;114302125;Mexico; +2018-12-02T22:02:49Z;Nathália;248.3718;115297896;Mexico; +2018-12-02T21:49:06Z;Nathália;91.11319;115692279;Mexico; +2018-12-02T21:47:36Z;Eduardo;1117.767;116250850;Mexico; +2018-12-02T21:21:18Z;nathalia;4325.541;115787755;Mexico; +2018-12-02T20:41:36Z;Armando;167.9226;114666492;Mexico; +2018-12-02T20:35:08Z;Ana;377.0052;114947272;Mexico; +2018-12-02T20:34:06Z;Júlio;1811.694;116196274;Mexico; +2018-12-02T20:01:25Z;Sandra;8112.823;114244740;Mexico; +2018-12-02T19:37:17Z;Armando;3710.914;115898170;Mexico; +2018-12-02T19:34:34Z;Júlio;4350.416;116185291;Mexico; +2018-12-02T19:31:57Z;Eduardo;2441.059;115118950;Mexico; +2018-12-02T19:26:24Z;nathalia;2077.082;115598680;Mexico; +2018-12-02T19:22:39Z;Júlio Cesar;3093.291;116004406;Mexico; +2018-12-02T19:00:36Z;Nathália;859.1035;114576960;Mexico; +2018-12-02T18:25:21Z;Armando;2836.653;115731937;Mexico; +2018-12-02T18:21:35Z;Armando;1109.502;115373048;Mexico; +2018-12-02T18:09:54Z;nathalia;3510.82;114884784;Mexico; +2018-12-02T18:07:22Z;Eduardo;490.3768;114863088;Mexico; +2018-12-02T17:48:24Z;Armando;3539.461;114877819;Mexico; +2018-12-02T17:20:10Z;Júlio;561.7006;114965883;Mexico; +2018-12-02T17:15:17Z;nathalia;549.9188;115718960;Mexico; +2018-12-02T17:07:18Z;Nathália;507.5479;116004449;Mexico; +2018-12-02T16:51:49Z;Eduardo;1709.793;115900548;Mexico; +2018-12-02T16:47:18Z;Ana;510.3718;115601565;Mexico; +2018-12-02T16:37:36Z;Eduardo;5878.754;116205524;Mexico; +2018-12-02T16:31:50Z;Sandra;3950.33;115340907;Mexico; +2018-12-02T16:08:55Z;Nathália;3217.594;114704523;Mexico; +2018-12-02T15:43:24Z;Sandra;1569.494;114241399;Mexico; +2018-12-02T15:40:10Z;Ana;1601.906;115399617;Mexico; +2018-12-02T15:24:04Z;Nathália;4081.327;115600171;Mexico; +2018-12-02T14:25:19Z;Ana;3633.142;115408847;Mexico; +2018-12-02T14:24:23Z;Júlio Cesar;446.2116;116284619;Mexico; +2018-12-02T14:22:00Z;nathalia;892.6982;114207178;Mexico; +2018-12-02T13:59:43Z;Júlio;888.6107;115333237;Mexico; +2018-12-02T13:56:56Z;Júlio Cesar;302.4278;115744996;Mexico; +2018-12-02T13:51:29Z;nathalia;1663.544;115059853;Mexico; +2018-12-02T13:30:25Z;Sandra;836.3765;114959902;Mexico; +2018-12-02T12:36:52Z;Armando;1172.737;115977736;Mexico; +2018-12-02T12:26:04Z;Armando;2199.493;114256869;Mexico; +2018-12-02T11:34:31Z;Nathália;5426.674;115363704;Mexico; +2018-12-02T11:09:59Z;Armando;1473.194;114357983;Mexico; +2018-12-02T11:02:31Z;Nathália;3729.978;114230316;Mexico; +2018-12-02T11:01:23Z;Júlio;173.191;115325829;Mexico; +2018-12-02T10:50:49Z;Sandra;4680.46;115510797;Mexico; +2018-12-02T10:35:36Z;Sandra;926.3516;114418762;Mexico; +2018-12-02T10:34:56Z;Ana;3216.495;114931022;Mexico; +2018-12-02T09:43:54Z;Armando;2326.592;114215673;Mexico; +2018-12-02T09:24:46Z;Armando;1067.215;114992118;Mexico; +2018-12-02T08:51:32Z;Júlio;5544.511;116313574;Mexico; +2018-12-02T08:43:07Z;Armando;740.2524;114917412;Mexico; +2018-12-02T08:39:18Z;Nathália;1731.202;115126826;Mexico; +2018-12-02T07:58:06Z;Ana;206.8779;114573057;Mexico; +2018-12-02T07:43:09Z;Nathália;2719.528;116361288;Mexico; +2018-12-02T07:36:23Z;nathalia;5827.898;114268466;Mexico; +2018-12-02T07:09:24Z;Sandra;85.0702;114860910;Mexico; +2018-12-02T06:46:37Z;Ana;2412.899;114839590;Mexico; +2018-12-02T06:25:57Z;Sandra;3478.796;114213996;Mexico; +2018-12-02T05:51:29Z;Júlio Cesar;8048.155;114919037;Mexico; +2018-12-02T05:47:48Z;Júlio;1753.068;114733399;Mexico; +2018-12-02T05:43:19Z;Armando;1960.834;114969192;Mexico; +2018-12-02T05:19:52Z;nathalia;1382.006;114572924;Mexico; +2018-12-02T05:12:49Z;Ana;815.0348;116185461;Mexico; +2018-12-02T04:30:37Z;nathalia;560.4586;115658909;Mexico; +2018-12-02T04:27:09Z;nathalia;142.3741;115734498;Mexico; +2018-12-02T04:00:57Z;Sandra;4025.195;115627928;Mexico; +2018-12-02T03:48:14Z;Eduardo;641.2832;115945805;Mexico; +2018-12-02T03:15:43Z;Júlio Cesar;1027.964;115026407;Mexico; +2018-12-02T03:04:38Z;Sandra;642.1972;114711023;Mexico; +2018-12-02T03:02:31Z;Sandra;81.73275;114799218;Mexico; +2018-12-02T02:42:52Z;Júlio;5025.43;115915984;Mexico; +2018-12-02T02:34:29Z;Eduardo;3087.203;114262915;Mexico; +2018-12-02T02:29:23Z;Júlio Cesar;777.1449;114772481;Mexico; +2018-12-02T01:55:16Z;Júlio;912.3063;115430093;Mexico; +2018-12-02T01:16:55Z;Júlio;350.2881;115611422;Mexico; +2018-12-02T00:45:50Z;Armando;595.6472;115485424;Mexico; +2018-12-01T23:58:10Z;Sandra;790.2577;114528033;Mexico; +2018-12-01T23:35:38Z;Júlio Cesar;794.9887;114942772;Mexico; +2018-12-01T23:10:17Z;nathalia;3333.784;115131579;Mexico; +2018-12-01T22:48:07Z;Sandra;550.6369;114902113;Mexico; +2018-12-01T22:31:48Z;Ana;1535.359;114727289;Mexico; +2018-12-01T22:20:25Z;Sandra;3977.715;115268815;Mexico; +2018-12-01T22:19:04Z;Júlio;250.6078;114913119;Mexico; +2018-12-01T21:51:17Z;Sandra;2934.984;115913025;Mexico; +2018-12-01T21:45:39Z;nathalia;1070.048;114232395;Mexico; +2018-12-01T21:44:52Z;nathalia;3396.929;116203062;Mexico; +2018-12-01T21:20:48Z;Sandra;775.0209;115104435;Mexico; +2018-12-01T21:10:23Z;Sandra;863.3791;115094259;Mexico; +2018-12-01T21:09:46Z;Sandra;195.1686;114263736;Mexico; +2018-12-01T20:38:08Z;Eduardo;1377.278;114262945;Mexico; +2018-12-01T20:25:10Z;Eduardo;3706.061;114526116;Mexico; +2018-12-01T19:59:35Z;nathalia;800.4997;115905646;Mexico; +2018-12-01T19:55:01Z;nathalia;771.1876;116059537;Mexico; +2018-12-01T19:33:31Z;Júlio;1593.524;114368429;Mexico; +2018-12-01T19:32:32Z;Ana;468.5656;116278823;Mexico; +2018-12-01T19:19:11Z;Eduardo;3005.969;116193049;Mexico; +2018-12-01T18:40:37Z;Júlio;1122.779;115468401;Mexico; +2018-12-01T18:23:21Z;Ana;2692.25;116094945;Mexico; +2018-12-01T17:42:55Z;Ana;729.6277;115389680;Mexico; +2018-12-01T17:40:06Z;nathalia;3178.844;114278078;Mexico; +2018-12-01T17:31:50Z;Júlio Cesar;3015.736;114784925;Mexico; +2018-12-01T17:25:48Z;Sandra;103.8363;115078246;Mexico; +2018-12-01T17:10:38Z;Eduardo;29.26921;115355385;Mexico; +2018-12-01T17:02:30Z;Nathália;564.4355;115824523;Mexico; +2018-12-01T16:42:21Z;Júlio;689.6093;115098040;Mexico; +2018-12-01T15:25:01Z;nathalia;3846.23;114770420;Mexico; +2018-12-01T14:14:04Z;Júlio;1631.639;114713642;Mexico; +2018-12-01T14:12:16Z;nathalia;19.04292;114350901;Mexico; +2018-12-01T13:50:01Z;Júlio;9147.073;115209282;Mexico; +2018-12-01T13:26:45Z;Eduardo;3038.534;115798332;Mexico; +2018-12-01T13:09:50Z;Eduardo;84.76961;115313033;Mexico; +2018-12-01T12:22:30Z;Nathália;4166.934;115919169;Mexico; +2018-12-01T12:00:08Z;Eduardo;2365.383;115777378;Mexico; +2018-12-01T11:52:23Z;Nathália;2662.897;115485359;Mexico; +2018-12-01T11:13:16Z;Eduardo;1362.754;114537844;Mexico; +2018-12-01T11:01:16Z;Sandra;1920.62;114539638;Mexico; +2018-12-01T10:16:30Z;Eduardo;512.4087;114223109;Mexico; +2018-12-01T10:09:36Z;Ana;1995.393;114700002;Mexico; +2018-12-01T09:58:44Z;Ana;817.146;115927193;Mexico; +2018-12-01T09:53:53Z;Eduardo;243.0112;114517917;Mexico; +2018-12-01T09:52:32Z;Eduardo;2902.298;114480792;Mexico; +2018-12-01T09:45:57Z;Júlio;2182.015;114419981;Mexico; +2018-12-01T09:42:21Z;Ana;164.546;115925198;Mexico; +2018-12-01T09:39:39Z;Armando;1691.291;115757616;Mexico; +2018-12-01T09:01:24Z;Sandra;2797.706;115138138;Mexico; +2018-12-01T09:01:22Z;Nathália;1126.254;115263165;Mexico; +2018-12-01T08:49:15Z;Nathália;3199.558;114590376;Mexico; +2018-12-01T08:26:34Z;Júlio;2591.624;114902683;Mexico; +2018-12-01T08:21:47Z;Armando;2309.648;114997393;Mexico; +2018-12-01T08:10:38Z;nathalia;3260.274;116379886;Mexico; +2018-12-01T08:01:28Z;Armando;2596.914;115072887;Mexico; +2018-12-01T06:35:19Z;Sandra;4526.127;114286648;Mexico; +2018-12-01T06:27:18Z;Júlio Cesar;2418.338;116056467;Mexico; +2018-12-01T05:49:42Z;Nathália;2897.837;116303388;Mexico; +2018-12-01T05:37:42Z;Nathália;1816.394;114536530;Mexico; +2018-12-01T05:05:49Z;Júlio;1713.269;114646372;Mexico; +2018-12-01T05:00:30Z;Sandra;384.3607;114729825;Mexico; +2018-12-01T04:54:28Z;Júlio;4668.393;114821035;Mexico; +2018-12-01T04:42:09Z;Nathália;147.0772;114605037;Mexico; +2018-12-01T04:14:55Z;Júlio Cesar;3767.876;114324671;Mexico; +2018-12-01T03:58:38Z;Eduardo;1047.777;115610628;Mexico; +2018-12-01T03:46:06Z;nathalia;2302.957;116072213;Mexico; +2018-12-01T03:41:43Z;Armando;2220.702;114579594;Mexico; +2018-12-01T03:30:56Z;Ana;815.9477;115068439;Mexico; +2018-12-01T02:56:38Z;nathalia;90.02432;114664752;Mexico; +2018-12-01T02:29:00Z;Armando;326.0663;116342406;Mexico; +2018-12-01T02:26:55Z;Eduardo;522.4987;115804783;Mexico; +2018-12-01T02:14:22Z;Ana;4760.624;114520536;Mexico; +2018-12-01T02:10:27Z;Armando;2191.101;116289807;Mexico; +2018-12-01T01:54:22Z;Sandra;765.3325;115197947;Mexico; +2018-12-01T01:46:30Z;nathalia;763.912;114290422;Mexico; +2018-12-01T01:44:59Z;Ana;5074.928;115261366;Mexico; +2018-12-01T01:42:42Z;Júlio;197.6318;116162203;Mexico; +2018-12-01T01:36:22Z;Ana;4627.974;116377476;Mexico; +2018-12-01T01:06:07Z;Armando;330.6721;115878485;Mexico; +2018-12-01T00:41:50Z;Armando;5227.507;114699061;Mexico; +2018-12-01T00:36:21Z;Sandra;1036.915;114946781;Mexico; +2018-12-01T00:24:05Z;Ana;3649.727;116169047;Mexico; +2018-11-30T23:32:00Z;Júlio Cesar;3466.04;115855431;Mexico; +2018-11-30T23:21:09Z;Nathália;4010.379;114358637;Mexico; +2018-11-30T23:12:05Z;Sandra;2639.521;116328124;Mexico; +2018-11-30T21:43:56Z;Eduardo;2883.14;115642113;Mexico; +2018-11-30T21:28:54Z;Júlio Cesar;193.771;115420278;Mexico; +2018-11-30T20:42:39Z;nathalia;2647.807;114605120;Mexico; +2018-11-30T20:32:56Z;Nathália;1907.705;115858852;Mexico; +2018-11-30T20:27:37Z;nathalia;38.92846;115152287;Mexico; +2018-11-30T20:22:25Z;Júlio Cesar;1040.17;114446286;Mexico; +2018-11-30T19:47:43Z;Armando;1245.513;115343321;Mexico; +2018-11-30T19:35:05Z;Nathália;893.6503;115949441;Mexico; +2018-11-30T19:29:52Z;Eduardo;5440.048;115039465;Mexico; +2018-11-30T19:03:55Z;Nathália;4827.293;115891568;Mexico; +2018-11-30T18:57:43Z;Júlio Cesar;1748.592;114208990;Mexico; +2018-11-30T18:43:23Z;nathalia;850.0651;116300836;Mexico; +2018-11-30T18:13:00Z;Armando;1418.414;114421681;Mexico; +2018-11-30T18:10:32Z;nathalia;1990.162;116116706;Mexico; +2018-11-30T18:00:41Z;Sandra;2710.434;115314592;Mexico; +2018-11-30T17:58:42Z;nathalia;6300.688;116009854;Mexico; +2018-11-30T17:14:13Z;Ana;160.7832;115022921;Mexico; +2018-11-30T16:53:53Z;Júlio;1630.314;115781146;Mexico; +2018-11-30T16:52:45Z;Nathália;4333.575;114317407;Mexico; +2018-11-30T16:47:10Z;Nathália;1283.339;114377577;Mexico; +2018-11-30T16:33:34Z;Sandra;1949.873;115234230;Mexico; +2018-11-30T16:17:41Z;Armando;1453.314;116206816;Mexico; +2018-11-30T16:14:36Z;Júlio;2358.473;116310192;Mexico; +2018-11-30T16:10:43Z;Júlio Cesar;3253.178;114796040;Mexico; +2018-11-30T16:00:04Z;Nathália;504.7798;115179208;Mexico; +2018-11-30T15:43:47Z;Júlio;1942.832;115470051;Mexico; +2018-11-30T15:31:02Z;Armando;1575.226;116230712;Mexico; +2018-11-30T15:14:39Z;Nathália;152.4517;115925012;Mexico; +2018-11-30T14:55:41Z;nathalia;1384.22;114792942;Mexico; +2018-11-30T14:41:49Z;nathalia;3488.663;116114777;Mexico; +2018-11-30T14:39:25Z;Ana;660.3317;116049587;Mexico; +2018-11-30T14:35:29Z;Nathália;6593.161;114455229;Mexico; +2018-11-30T14:26:12Z;Armando;1611.241;115095618;Mexico; +2018-11-30T14:20:26Z;nathalia;3246.61;115199742;Mexico; +2018-11-30T14:10:18Z;Ana;641.5811;115005846;Mexico; +2018-11-30T13:42:35Z;Armando;5064.352;116285397;Mexico; +2018-11-30T13:10:41Z;Armando;4667.894;115628062;Mexico; +2018-11-30T12:45:15Z;nathalia;193.9921;114601142;Mexico; +2018-11-30T12:44:47Z;Sandra;1779.234;115568192;Mexico; +2018-11-30T12:18:17Z;Júlio;687.784;114354426;Mexico; +2018-11-30T11:56:04Z;Júlio;226.5645;114705524;Mexico; +2018-11-30T11:32:32Z;Nathália;2347.095;116330997;Mexico; +2018-11-30T11:01:58Z;nathalia;2769.897;115010387;Mexico; +2018-11-30T10:21:10Z;Júlio Cesar;1500.192;114660856;Mexico; +2018-11-30T09:57:40Z;Ana;305.1419;114985968;Mexico; +2018-11-30T09:50:09Z;nathalia;1851.093;115869265;Mexico; +2018-11-30T09:48:32Z;Ana;484.6139;114499069;Mexico; +2018-11-30T09:44:37Z;Armando;2617.965;116320119;Mexico; +2018-11-30T09:38:50Z;Sandra;1947.56;114261772;Mexico; +2018-11-30T09:15:45Z;Nathália;671.1526;115183196;Mexico; +2018-11-30T09:03:21Z;Júlio;710.3024;115077245;Mexico; +2018-11-30T08:58:03Z;Júlio;581.3768;115602831;Mexico; +2018-11-30T08:38:15Z;nathalia;2345.827;114763442;Mexico; +2018-11-30T08:36:14Z;Eduardo;168.0564;115255728;Mexico; +2018-11-30T07:20:40Z;Eduardo;13.53882;115012198;Mexico; +2018-11-30T07:00:48Z;Eduardo;967.4165;115663597;Mexico; +2018-11-30T06:56:35Z;Júlio Cesar;2.358013;116209726;Mexico; +2018-11-30T06:49:02Z;Júlio;1255.867;114310382;Mexico; +2018-11-30T06:37:14Z;Armando;3501.767;114462702;Mexico; +2018-11-30T06:29:35Z;Júlio;4441.797;114684160;Mexico; +2018-11-30T06:01:40Z;Eduardo;485.2383;115806123;Mexico; +2018-11-30T05:40:49Z;Armando;1902.184;114632624;Mexico; +2018-11-30T05:26:32Z;Ana;700.2735;114753423;Mexico; +2018-11-30T05:20:34Z;Júlio Cesar;665.791;115382226;Mexico; +2018-11-30T05:06:17Z;Nathália;1893.404;114352885;Mexico; +2018-11-30T04:56:34Z;Armando;652.6521;114313974;Mexico; +2018-11-30T04:53:47Z;Armando;1122.729;114861579;Mexico; +2018-11-30T04:47:59Z;Ana;568.2617;115390059;Mexico; +2018-11-30T04:18:23Z;Armando;3768.195;114545834;Mexico; +2018-11-30T03:41:08Z;Ana;5238.815;114710240;Mexico; +2018-11-30T03:22:25Z;Armando;3326.955;115519874;Mexico; +2018-11-30T03:20:41Z;nathalia;3822.927;115660481;Mexico; +2018-11-30T03:16:52Z;Armando;6178.034;115920892;Mexico; +2018-11-30T03:08:28Z;Armando;5216.965;115402451;Mexico; +2018-11-30T02:40:18Z;nathalia;2477;114589561;Mexico; +2018-11-30T02:32:32Z;Armando;2248.649;116327027;Mexico; +2018-11-30T02:28:52Z;Armando;1767.867;114591542;Mexico; +2018-11-30T01:57:54Z;Eduardo;305.9695;116181899;Mexico; +2018-11-30T01:53:24Z;Eduardo;1640.053;114745507;Mexico; +2018-11-30T01:23:12Z;Júlio Cesar;3504.662;115303881;Mexico; +2018-11-30T00:51:43Z;Ana;296.0041;115721059;Mexico; +2018-11-30T00:40:41Z;Nathália;529.3354;115831519;Mexico; +2018-11-30T00:34:43Z;Júlio;761.812;115644645;Mexico; +2018-11-30T00:04:32Z;Armando;514.3502;115955243;Mexico; +2018-11-30T00:01:28Z;Júlio Cesar;3230.941;116369321;Mexico; +2018-11-30T00:01:04Z;Júlio Cesar;388.2907;116332235;Mexico; +2018-11-29T23:45:44Z;Armando;4129.584;115164586;Mexico; +2018-11-29T23:03:58Z;nathalia;155.2266;116241160;Mexico; +2018-11-29T22:36:49Z;Júlio Cesar;1960.167;115988505;Mexico; +2018-11-29T22:31:11Z;nathalia;730.9434;115071118;Mexico; +2018-11-29T22:29:36Z;Armando;195.8506;114925595;Mexico; +2018-11-29T22:26:25Z;nathalia;3734.158;115651036;Mexico; +2018-11-29T22:19:42Z;Sandra;37.488;114521166;Mexico; +2018-11-29T22:14:19Z;Sandra;12.80803;115091136;Mexico; +2018-11-29T22:09:33Z;Nathália;1475.973;116375235;Mexico; +2018-11-29T22:00:03Z;Ana;4064.398;115872853;Mexico; +2018-11-29T21:44:08Z;Júlio;969.3869;114533812;Mexico; +2018-11-29T21:38:10Z;Eduardo;4375.891;115986355;Mexico; +2018-11-29T21:27:09Z;Nathália;3344.586;115339257;Mexico; +2018-11-29T21:20:33Z;Nathália;2345.706;114930773;Mexico; +2018-11-29T21:13:31Z;Eduardo;5842.063;115008241;Mexico; +2018-11-29T20:56:47Z;Sandra;3429.783;115185913;Mexico; +2018-11-29T20:45:04Z;Ana;2623.615;114507289;Mexico; +2018-11-29T20:43:03Z;Júlio;1260.341;115215283;Mexico; +2018-11-29T20:18:32Z;Júlio;219.7204;114374237;Mexico; +2018-11-29T20:16:42Z;Eduardo;6054.311;114375267;Mexico; +2018-11-29T20:12:33Z;Armando;4187.177;115398904;Mexico; +2018-11-29T20:11:29Z;Nathália;1810.743;115545280;Mexico; +2018-11-29T20:05:43Z;nathalia;2136.802;115007706;Mexico; +2018-11-29T20:04:04Z;Armando;823.1986;115184225;Mexico; +2018-11-29T20:03:00Z;Ana;1137.038;115186927;Mexico; +2018-11-29T19:58:52Z;Júlio;99.42723;115466439;Mexico; +2018-11-29T19:49:44Z;Júlio;2740.322;115535264;Mexico; +2018-11-29T19:47:18Z;Nathália;654.3647;114392124;Mexico; +2018-11-29T19:40:47Z;Nathália;3298.225;114378313;Mexico; +2018-11-29T19:25:48Z;Júlio;731.7049;115009506;Mexico; +2018-11-29T19:15:07Z;Júlio;870.4814;115527176;Mexico; +2018-11-29T19:13:35Z;Eduardo;2140.31;115548966;Mexico; +2018-11-29T19:10:54Z;Nathália;2843.926;115848019;Mexico; +2018-11-29T18:39:47Z;Nathália;5302.423;114417758;Mexico; +2018-11-29T18:29:44Z;Ana;31.44355;114802374;Mexico; +2018-11-29T18:29:06Z;Sandra;4459.671;114869985;Mexico; +2018-11-29T18:03:08Z;Sandra;3519.607;114751335;Mexico; +2018-11-29T17:50:01Z;Ana;2242.559;114949402;Mexico; +2018-11-29T17:34:31Z;nathalia;184.5419;114805923;Mexico; +2018-11-29T17:33:55Z;Nathália;1067.555;114700029;Mexico; +2018-11-29T17:06:59Z;Ana;2302.908;116215405;Mexico; +2018-11-29T17:05:19Z;Ana;2420.369;114546571;Mexico; +2018-11-29T17:01:37Z;Júlio;380.6514;115901470;Mexico; +2018-11-29T16:57:31Z;Nathália;1563.757;114299062;Mexico; +2018-11-29T16:51:43Z;Sandra;6272.73;115759468;Mexico; +2018-11-29T16:51:01Z;Nathália;3702.284;115832801;Mexico; +2018-11-29T16:45:29Z;Nathália;3364.453;115297334;Mexico; +2018-11-29T15:30:33Z;Ana;1239.425;116297024;Mexico; +2018-11-29T15:23:20Z;Sandra;2613.145;115103451;Mexico; +2018-11-29T15:15:25Z;Júlio;831.9625;115618006;Mexico; +2018-11-29T14:50:07Z;Ana;1300.41;115273960;Mexico; +2018-11-29T14:22:02Z;Júlio;4259.471;114570300;Mexico; +2018-11-29T14:12:59Z;Ana;367.4868;115684878;Mexico; +2018-11-29T14:04:32Z;Júlio;1308.703;116362885;Mexico; +2018-11-29T13:50:54Z;Nathália;915.5599;116269878;Mexico; +2018-11-29T13:33:48Z;Nathália;1771.033;114340590;Mexico; +2018-11-29T13:04:24Z;Armando;1817.371;115605378;Mexico; +2018-11-29T13:00:54Z;nathalia;2446.98;115242179;Mexico; +2018-11-29T12:55:39Z;Ana;3617.662;115668101;Mexico; +2018-11-29T12:33:19Z;Eduardo;2520.562;114703971;Mexico; +2018-11-29T12:22:13Z;Armando;1206.344;114828456;Mexico; +2018-11-29T12:13:02Z;Armando;988.1241;116091719;Mexico; +2018-11-29T12:06:02Z;Ana;244.2848;116135216;Mexico; +2018-11-29T11:56:27Z;Ana;977.9236;115897186;Mexico; +2018-11-29T11:51:01Z;nathalia;124.8351;115563239;Mexico; +2018-11-29T11:40:55Z;Eduardo;3118.305;115433200;Mexico; +2018-11-29T11:13:26Z;nathalia;3803.562;116007942;Mexico; +2018-11-29T11:13:04Z;Ana;3876.65;116021331;Mexico; +2018-11-29T11:12:10Z;Ana;2892.872;115420418;Mexico; +2018-11-29T10:47:41Z;Sandra;2312.361;115141649;Mexico; +2018-11-29T10:45:01Z;nathalia;1738.757;114658614;Mexico; +2018-11-29T10:27:46Z;Armando;1027.517;115804153;Mexico; +2018-11-29T10:22:24Z;nathalia;1841.86;115618201;Mexico; +2018-11-29T10:18:51Z;Ana;60.41243;115096274;Mexico; +2018-11-29T10:08:58Z;Sandra;1157.358;115179541;Mexico; +2018-11-29T10:07:11Z;Júlio Cesar;3109.664;116239474;Mexico; +2018-11-29T10:01:34Z;nathalia;2729.918;114459688;Mexico; +2018-11-29T09:51:19Z;Júlio;4902.189;115306544;Mexico; +2018-11-29T09:04:27Z;Júlio Cesar;318.7729;115147446;Mexico; +2018-11-29T09:01:11Z;Sandra;2841.225;116029239;Mexico; +2018-11-29T08:49:05Z;Eduardo;4115.694;115494756;Mexico; +2018-11-29T08:29:55Z;Armando;139.6799;115042011;Mexico; +2018-11-29T08:23:02Z;Júlio Cesar;4480.943;114606499;Mexico; +2018-11-29T08:21:26Z;Armando;624.3978;116171287;Mexico; +2018-11-29T08:19:03Z;Sandra;507.1462;116288285;Mexico; +2018-11-29T08:10:38Z;Sandra;6579.327;115413827;Mexico; +2018-11-29T08:08:36Z;Ana;1191.412;114224762;Mexico; +2018-11-29T08:04:52Z;Armando;831.0765;115105148;Mexico; +2018-11-29T07:42:04Z;Armando;2088.213;115406403;Mexico; +2018-11-29T06:59:49Z;Eduardo;2991.898;115598011;Mexico; +2018-11-29T06:46:46Z;Júlio Cesar;6459.789;114864221;Mexico; +2018-11-29T06:19:09Z;Júlio Cesar;3266.199;114868376;Mexico; +2018-11-29T06:10:49Z;Armando;1218.614;115798776;Mexico; +2018-11-29T05:43:31Z;Sandra;293.2318;114702250;Mexico; +2018-11-29T05:34:30Z;nathalia;107.2039;114378007;Mexico; +2018-11-29T05:32:01Z;Eduardo;1654.053;114552633;Mexico; +2018-11-29T05:26:39Z;Ana;1308.954;114320445;Mexico; +2018-11-29T05:17:56Z;nathalia;414.9886;114398077;Mexico; +2018-11-29T05:10:49Z;nathalia;6215.085;115666921;Mexico; +2018-11-29T03:53:45Z;Armando;1995.22;114346396;Mexico; +2018-11-29T03:36:26Z;Júlio;1148.074;115289242;Mexico; +2018-11-29T03:24:08Z;Júlio Cesar;6130.881;114448441;Mexico; +2018-11-29T03:13:24Z;Eduardo;4914.514;116146063;Mexico; +2018-11-29T03:03:04Z;nathalia;36.65141;115291599;Mexico; +2018-11-29T02:18:40Z;Ana;6808.559;114202102;Mexico; +2018-11-29T02:08:33Z;Júlio;1964.749;114634231;Mexico; +2018-11-29T02:06:56Z;Nathália;475.9969;114529737;Mexico; +2018-11-29T01:34:01Z;Armando;119.6521;116262571;Mexico; +2018-11-29T01:30:24Z;Ana;387.7481;114975364;Mexico; +2018-11-29T01:19:38Z;Sandra;1077.617;116378798;Mexico; +2018-11-29T01:09:32Z;Eduardo;1585.772;115651566;Mexico; +2018-11-29T01:06:01Z;Júlio;65.69757;116294808;Mexico; +2018-11-29T00:51:08Z;Júlio Cesar;555.5925;114897414;Mexico; +2018-11-29T00:43:31Z;nathalia;324.614;116333861;Mexico; +2018-11-29T00:01:29Z;nathalia;3456.581;115607949;Mexico; +2018-11-28T23:52:31Z;Eduardo;88.54702;115789700;Mexico; +2018-11-28T23:35:29Z;Júlio;156.1189;114822557;Mexico; +2018-11-28T23:34:43Z;Armando;1482.497;115333769;Mexico; +2018-11-28T23:19:02Z;Eduardo;3924.641;115769519;Mexico; +2018-11-28T23:09:57Z;Júlio;2950.924;114425295;Mexico; +2018-11-28T22:39:06Z;Júlio;609.563;114593915;Mexico; +2018-11-28T22:23:11Z;Nathália;1480.984;115059027;Mexico; +2018-11-28T22:14:56Z;Armando;2664.527;115296961;Mexico; +2018-11-28T21:47:34Z;Júlio Cesar;2087.581;115513479;Mexico; +2018-11-28T21:39:24Z;nathalia;1357.078;114673246;Mexico; +2018-11-28T21:30:31Z;Nathália;2072.32;114703940;Mexico; +2018-11-28T21:26:21Z;Júlio Cesar;1006.419;114536295;Mexico; +2018-11-28T21:05:22Z;Nathália;1431.396;114564762;Mexico; +2018-11-28T20:47:41Z;Nathália;1866.053;114584608;Mexico; +2018-11-28T20:23:24Z;Júlio Cesar;849.0873;115750270;Mexico; +2018-11-28T19:37:44Z;Júlio;1339.995;115662107;Mexico; +2018-11-28T19:10:00Z;nathalia;2934.559;114331755;Mexico; +2018-11-28T19:06:52Z;Ana;1052.505;115537892;Mexico; +2018-11-28T19:02:41Z;Sandra;1537.733;115589574;Mexico; +2018-11-28T18:09:55Z;Armando;1896.681;115313363;Mexico; +2018-11-28T18:08:00Z;Sandra;2982.828;114822013;Mexico; +2018-11-28T18:03:42Z;Eduardo;1396.792;114405873;Mexico; +2018-11-28T17:24:57Z;Armando;833.7318;116069548;Mexico; +2018-11-28T17:21:13Z;Sandra;1557.662;115490098;Mexico; +2018-11-28T17:19:43Z;Armando;3287.553;114976028;Mexico; +2018-11-28T17:05:49Z;Ana;388.1612;114374463;Mexico; +2018-11-28T16:29:36Z;Sandra;3515.162;115029192;Mexico; +2018-11-28T15:53:11Z;Júlio;1522.005;114995599;Mexico; +2018-11-28T15:40:01Z;Armando;1166.976;114816094;Mexico; +2018-11-28T15:23:26Z;Armando;4203.663;115481499;Mexico; +2018-11-28T15:12:18Z;Ana;2183.805;116042209;Mexico; +2018-11-28T15:00:31Z;nathalia;3208.51;114736907;Mexico; +2018-11-28T14:33:01Z;Eduardo;557.97;114310981;Mexico; +2018-11-28T14:22:05Z;Nathália;1091.868;115317263;Mexico; +2018-11-28T14:06:27Z;Ana;392.2579;115941565;Mexico; +2018-11-28T13:44:02Z;Armando;3504.182;115776332;Mexico; +2018-11-28T13:04:50Z;Eduardo;834.9731;114200340;Mexico; +2018-11-28T12:49:30Z;Júlio;928.9682;114748971;Mexico; +2018-11-28T12:36:58Z;Sandra;245.3158;114601709;Mexico; +2018-11-28T12:27:24Z;Eduardo;201.1895;115604687;Mexico; +2018-11-28T12:19:02Z;nathalia;3820.759;114343917;Mexico; +2018-11-28T12:03:41Z;Júlio;2341.783;115039545;Mexico; +2018-11-28T11:53:11Z;nathalia;3177.959;115883454;Mexico; +2018-11-28T11:45:15Z;Eduardo;495.1343;115572055;Mexico; +2018-11-28T11:32:54Z;Sandra;1965.058;115384650;Mexico; +2018-11-28T11:30:51Z;nathalia;3947.777;114934335;Mexico; +2018-11-28T11:20:29Z;Júlio;163.797;116080156;Mexico; +2018-11-28T11:19:14Z;Eduardo;1421.709;114922571;Mexico; +2018-11-28T10:35:53Z;Eduardo;133.5623;115367925;Mexico; +2018-11-28T09:56:30Z;Eduardo;114.8294;115316437;Mexico; +2018-11-28T09:37:42Z;Sandra;324.9669;116055480;Mexico; +2018-11-28T09:34:10Z;Armando;1025.92;114337096;Mexico; +2018-11-28T09:01:51Z;Júlio;357.2727;115106882;Mexico; +2018-11-28T08:17:20Z;nathalia;815.3489;115457415;Mexico; +2018-11-28T07:58:44Z;Nathália;1971.803;115464863;Mexico; +2018-11-28T07:48:32Z;Sandra;3471.935;115420698;Mexico; +2018-11-28T07:28:14Z;Eduardo;211.9732;115268704;Mexico; +2018-11-28T07:22:01Z;Ana;416.8333;115495877;Mexico; +2018-11-28T06:51:59Z;Sandra;1053.849;116355670;Mexico; +2018-11-28T06:49:48Z;Ana;161.2865;116163674;Mexico; +2018-11-28T06:49:28Z;Sandra;2132.131;115150433;Mexico; +2018-11-28T06:37:11Z;Sandra;1.777352;115693727;Mexico; +2018-11-28T06:35:28Z;Júlio;356.2395;115921993;Mexico; +2018-11-28T06:19:44Z;nathalia;920.7323;114661494;Mexico; +2018-11-28T05:58:02Z;Júlio;3095.81;115244590;Mexico; +2018-11-28T05:47:03Z;Júlio;146.7072;114819029;Mexico; +2018-11-28T05:38:23Z;Ana;6679.922;114223578;Mexico; +2018-11-28T05:30:11Z;nathalia;283.2482;114538643;Mexico; +2018-11-28T05:23:13Z;nathalia;63.37901;115129180;Mexico; +2018-11-28T04:53:29Z;Sandra;5130.767;114452928;Mexico; +2018-11-28T04:22:36Z;Júlio;4820.719;114653616;Mexico; +2018-11-28T04:19:37Z;Nathália;728.8735;115875843;Mexico; +2018-11-28T03:43:59Z;Júlio Cesar;2156.483;114845427;Mexico; +2018-11-28T03:02:07Z;Nathália;1764.304;115504633;Mexico; +2018-11-28T02:54:29Z;Júlio;5203.061;114302141;Mexico; +2018-11-28T02:51:20Z;Ana;4189.36;115685700;Mexico; +2018-11-28T02:30:07Z;Armando;2298.899;115059315;Mexico; +2018-11-28T02:18:18Z;Júlio Cesar;3699.665;116253440;Mexico; +2018-11-28T02:13:41Z;nathalia;1465.274;114933872;Mexico; +2018-11-28T02:02:36Z;Ana;6702.375;116041116;Mexico; +2018-11-28T01:59:59Z;Ana;316.6367;114325534;Mexico; +2018-11-28T01:25:34Z;Eduardo;1105.981;115248852;Mexico; +2018-11-28T01:25:16Z;Júlio Cesar;2210.182;116104355;Mexico; +2018-11-28T00:34:45Z;Júlio;205.4125;115450294;Mexico; +2018-11-27T23:43:20Z;Ana;5514.413;115790441;Mexico; +2018-11-27T23:37:43Z;nathalia;9.798431;115249964;Mexico; +2018-11-27T23:16:52Z;Eduardo;843.6778;115485129;Mexico; +2018-11-27T23:16:28Z;Sandra;1117.711;115639647;Mexico; +2018-11-27T23:08:46Z;Eduardo;2411.804;116236586;Mexico; +2018-11-27T23:03:44Z;Júlio;799.0185;115307895;Mexico; +2018-11-27T22:54:03Z;Armando;2381.558;114945965;Mexico; +2018-11-27T22:49:49Z;Júlio;3495.251;116066604;Mexico; +2018-11-27T22:33:35Z;Eduardo;170.377;114986411;Mexico; +2018-11-27T22:19:10Z;Júlio Cesar;2619.306;115451669;Mexico; +2018-11-27T21:25:19Z;Ana;1038.572;115592676;Mexico; +2018-11-27T20:36:27Z;Júlio;2933.058;114626810;Mexico; +2018-11-27T20:25:35Z;Ana;2702.05;114787127;Mexico; +2018-11-27T20:22:34Z;Júlio;1314.553;115195891;Mexico; +2018-11-27T20:05:18Z;Armando;1077.008;115255400;Mexico; +2018-11-27T20:04:22Z;Ana;2068.798;116102727;Mexico; +2018-11-27T19:23:16Z;Armando;467.679;115330253;Mexico; +2018-11-27T18:46:57Z;Nathália;716.6198;114733537;Mexico; +2018-11-27T18:46:35Z;Júlio Cesar;270.123;116378896;Mexico; +2018-11-27T18:39:03Z;Júlio;4111.101;114710311;Mexico; +2018-11-27T18:17:17Z;Júlio Cesar;1655.028;114816527;Mexico; +2018-11-27T17:55:41Z;Júlio;3555.235;115128639;Mexico; +2018-11-27T17:51:54Z;Eduardo;1085.895;114279827;Mexico; +2018-11-27T17:32:40Z;Sandra;440.597;116383455;Mexico; +2018-11-27T17:31:27Z;nathalia;2783.227;114265932;Mexico; +2018-11-27T17:14:54Z;Armando;1713.524;115986171;Mexico; +2018-11-27T16:10:50Z;Júlio Cesar;441.3875;115670605;Mexico; +2018-11-27T16:05:58Z;nathalia;1075.886;115512808;Mexico; +2018-11-27T16:03:11Z;nathalia;640.8593;116236797;Mexico; +2018-11-27T16:02:55Z;Armando;3600.219;115058240;Mexico; +2018-11-27T15:50:14Z;Armando;1803.263;116369762;Mexico; +2018-11-27T15:11:55Z;Armando;373.9809;114753439;Mexico; +2018-11-27T15:10:00Z;nathalia;260.594;115890461;Mexico; +2018-11-27T14:12:15Z;Nathália;778.497;115724857;Mexico; +2018-11-27T13:55:57Z;Júlio;217.8854;115140504;Mexico; +2018-11-27T13:29:33Z;nathalia;2782.111;115478868;Mexico; +2018-11-27T12:43:31Z;Eduardo;981.8847;114519555;Mexico; +2018-11-27T11:40:41Z;Ana;105.4054;115029223;Mexico; +2018-11-27T11:17:34Z;Nathália;420.4697;115433648;Mexico; +2018-11-27T11:09:51Z;Armando;4054.501;116103327;Mexico; +2018-11-27T11:02:39Z;Ana;2691.893;115184866;Mexico; +2018-11-27T10:48:35Z;nathalia;2359.984;114460489;Mexico; +2018-11-27T10:28:50Z;Júlio;2274.66;115120932;Mexico; +2018-11-27T10:22:44Z;Júlio;1396.981;115903818;Mexico; +2018-11-27T10:12:42Z;Nathália;7755.911;114831475;Mexico; +2018-11-27T09:49:40Z;nathalia;2469.262;115923429;Mexico; +2018-11-27T09:48:38Z;Júlio;2542.696;114659872;Mexico; +2018-11-27T09:30:26Z;Ana;839.3926;114799602;Mexico; +2018-11-27T09:18:42Z;Armando;74.37661;115015730;Mexico; +2018-11-27T08:40:27Z;Júlio Cesar;882.6248;116302293;Mexico; +2018-11-27T08:37:13Z;Júlio;812.7451;115701862;Mexico; +2018-11-27T08:35:34Z;Eduardo;1701.01;115105773;Mexico; +2018-11-27T08:12:20Z;nathalia;419.0872;115630758;Mexico; +2018-11-27T07:38:27Z;nathalia;2047.578;115216747;Mexico; +2018-11-27T06:52:32Z;Júlio;26.31087;115940311;Mexico; +2018-11-27T06:50:58Z;Eduardo;1193.103;115900835;Mexico; +2018-11-27T06:45:38Z;Eduardo;1686.979;115293088;Mexico; +2018-11-27T06:32:01Z;Júlio Cesar;187.8523;116248131;Mexico; +2018-11-27T06:22:36Z;Júlio;5318.442;115751821;Mexico; +2018-11-27T06:02:01Z;Sandra;100.4064;116125230;Mexico; +2018-11-27T05:51:03Z;Ana;5613.702;115236247;Mexico; +2018-11-27T05:49:15Z;Sandra;1820.679;116396881;Mexico; +2018-11-27T05:48:42Z;Eduardo;1960.221;114878784;Mexico; +2018-11-27T04:49:57Z;Eduardo;2688.768;115308357;Mexico; +2018-11-27T04:45:39Z;Júlio Cesar;4196.085;114424587;Mexico; +2018-11-27T04:40:24Z;nathalia;1047.527;115244461;Mexico; +2018-11-27T04:26:31Z;Sandra;753.5198;114591853;Mexico; +2018-11-27T04:05:35Z;Eduardo;2227.173;115441447;Mexico; +2018-11-27T03:57:00Z;Júlio;322.6578;115495646;Mexico; +2018-11-27T03:31:39Z;Eduardo;1375.202;116223062;Mexico; +2018-11-27T03:10:32Z;Armando;3988.991;115021768;Mexico; +2018-11-27T02:58:13Z;Ana;924.6352;115458646;Mexico; +2018-11-27T02:11:58Z;Sandra;329.7137;114308810;Mexico; +2018-11-27T01:35:32Z;Armando;3504.394;114547611;Mexico; +2018-11-27T01:03:58Z;Sandra;2448.19;114437250;Mexico; +2018-11-27T00:34:09Z;Armando;1163.691;115862198;Mexico; +2018-11-27T00:26:06Z;Júlio Cesar;2729.727;114716345;Mexico; +2018-11-27T00:18:03Z;Sandra;5678.816;115771359;Mexico; +2018-11-27T00:13:24Z;nathalia;938.0983;114821849;Mexico; +2018-11-27T00:12:22Z;Eduardo;368.5665;115459015;Mexico; +2018-11-26T23:42:16Z;Sandra;2843.829;115644395;Mexico; +2018-11-26T23:34:12Z;nathalia;2405.47;114343295;Mexico; +2018-11-26T23:00:59Z;Armando;5147.139;115454136;Mexico; +2018-11-26T23:00:41Z;Nathália;5785.88;116370360;Mexico; +2018-11-26T22:56:03Z;nathalia;732.8672;114423903;Mexico; +2018-11-26T22:54:41Z;Nathália;3706.862;114720666;Mexico; +2018-11-26T22:54:29Z;Eduardo;2246.559;116143347;Mexico; +2018-11-26T22:53:21Z;nathalia;807.9815;115703967;Mexico; +2018-11-26T22:27:56Z;nathalia;2408.727;115401705;Mexico; +2018-11-26T21:47:24Z;Eduardo;603.2303;115431957;Mexico; +2018-11-26T21:40:59Z;Nathália;76.1203;115491301;Mexico; +2018-11-26T21:39:02Z;Júlio Cesar;208.5602;114351740;Mexico; +2018-11-26T21:12:47Z;Sandra;750.2338;114410002;Mexico; +2018-11-26T20:48:07Z;Eduardo;1707.026;116092312;Mexico; +2018-11-26T20:41:54Z;Ana;2798.62;114314457;Mexico; +2018-11-26T20:36:30Z;Júlio;3463.551;114959167;Mexico; +2018-11-26T20:06:11Z;Armando;432.9622;114649984;Mexico; +2018-11-26T19:47:39Z;Júlio;534.8698;114692828;Mexico; +2018-11-26T19:11:37Z;Armando;1280.95;114273004;Mexico; +2018-11-26T19:09:13Z;nathalia;4026.742;115256988;Mexico; +2018-11-26T18:47:45Z;Nathália;4673.309;115343695;Mexico; +2018-11-26T18:41:15Z;Júlio;2079.608;114453064;Mexico; +2018-11-26T18:12:41Z;Ana;1229.382;114920505;Mexico; +2018-11-26T17:56:05Z;nathalia;1122.127;115515635;Mexico; +2018-11-26T17:56:03Z;Júlio Cesar;186.8238;114809427;Mexico; +2018-11-26T17:32:38Z;Eduardo;1456.135;115555179;Mexico; +2018-11-26T17:09:21Z;Júlio;908.4964;115952545;Mexico; +2018-11-26T17:06:35Z;nathalia;1487.426;115040142;Mexico; +2018-11-26T16:48:21Z;Nathália;2615.848;114774219;Mexico; +2018-11-26T15:29:40Z;Júlio Cesar;1792.33;114605747;Mexico; +2018-11-26T15:25:26Z;Sandra;626.7274;114550229;Mexico; +2018-11-26T15:04:13Z;Ana;371.3947;115314965;Mexico; +2018-11-26T14:49:56Z;nathalia;247.3045;115419068;Mexico; +2018-11-26T14:42:13Z;Sandra;1905.142;115444660;Mexico; +2018-11-26T14:38:17Z;Júlio Cesar;3059.558;115406427;Mexico; +2018-11-26T14:24:03Z;Eduardo;633.7924;115070459;Mexico; +2018-11-26T14:11:44Z;nathalia;522.0752;114375697;Mexico; +2018-11-26T13:53:37Z;Sandra;6119.971;115489146;Mexico; +2018-11-26T13:50:02Z;Júlio Cesar;729.3187;114884091;Mexico; +2018-11-26T13:41:38Z;Ana;4006.883;114760783;Mexico; +2018-11-26T13:37:02Z;Júlio;671.9064;116214785;Mexico; +2018-11-26T13:33:28Z;Júlio;1386.662;115127035;Mexico; +2018-11-26T13:28:39Z;Júlio Cesar;5883.365;115368032;Mexico; +2018-11-26T12:55:36Z;Júlio Cesar;1154.814;114323139;Mexico; +2018-11-26T12:45:35Z;Nathália;1540.459;115945083;Mexico; +2018-11-26T12:37:49Z;nathalia;3241.904;114263717;Mexico; +2018-11-26T12:34:42Z;Ana;207.61;114637786;Mexico; +2018-11-26T12:29:27Z;Sandra;1223.938;116339137;Mexico; +2018-11-26T12:17:18Z;Ana;154.0095;115118021;Mexico; +2018-11-26T12:10:58Z;nathalia;1619.585;115229312;Mexico; +2018-11-26T11:19:45Z;nathalia;1266.014;115256471;Mexico; +2018-11-26T10:39:16Z;Júlio;2347.117;115774229;Mexico; +2018-11-26T10:16:01Z;Ana;7538.086;115530895;Mexico; +2018-11-26T09:14:07Z;Eduardo;6159.607;116364475;Mexico; +2018-11-26T09:08:01Z;Sandra;4346.655;114821213;Mexico; +2018-11-26T09:02:34Z;Eduardo;281.3314;115978913;Mexico; +2018-11-26T08:38:56Z;Eduardo;2723.256;115168773;Mexico; +2018-11-26T07:51:44Z;Júlio Cesar;1514.872;115071620;Mexico; +2018-11-26T07:33:19Z;Sandra;1595.972;115787210;Mexico; +2018-11-26T07:19:59Z;Ana;1210.358;114336277;Mexico; +2018-11-26T07:09:22Z;Júlio;875.3035;114271916;Mexico; +2018-11-26T06:52:03Z;Júlio Cesar;69.92358;115145864;Mexico; +2018-11-26T06:36:24Z;nathalia;609.7979;115038365;Mexico; +2018-11-26T06:20:56Z;Eduardo;241.8183;114918438;Mexico; +2018-11-26T05:49:08Z;Júlio Cesar;3873.078;115063130;Mexico; +2018-11-26T05:26:34Z;Nathália;845.9139;114587606;Mexico; +2018-11-26T05:17:02Z;nathalia;2161.833;114727211;Mexico; +2018-11-26T05:09:29Z;Júlio;3071.064;115303161;Mexico; +2018-11-26T04:50:37Z;Armando;37.32986;114761736;Mexico; +2018-11-26T04:23:25Z;Sandra;3100.727;116344567;Mexico; +2018-11-26T03:54:23Z;Júlio;39.24373;114575170;Mexico; +2018-11-26T03:36:44Z;Sandra;2163.959;115039701;Mexico; +2018-11-26T03:28:23Z;Armando;4137.796;115441773;Mexico; +2018-11-26T02:56:01Z;Eduardo;6236.872;114755528;Mexico; +2018-11-26T02:52:11Z;Eduardo;112.0795;115121759;Mexico; +2018-11-26T02:51:37Z;Nathália;822.6485;115139262;Mexico; +2018-11-26T02:29:33Z;Nathália;265.2389;115519495;Mexico; +2018-11-26T02:26:11Z;Júlio;29.205;115642802;Mexico; +2018-11-26T02:25:18Z;Júlio Cesar;256.7769;115360878;Mexico; +2018-11-26T02:25:15Z;Eduardo;4243.518;115304070;Mexico; +2018-11-26T02:09:16Z;Armando;513.2524;114506004;Mexico; +2018-11-26T02:03:50Z;Júlio;617.5801;116168225;Mexico; +2018-11-26T02:00:04Z;Sandra;2921.985;114647484;Mexico; +2018-11-26T01:51:17Z;Nathália;2769.302;116150569;Mexico; +2018-11-26T01:39:24Z;Ana;1213.56;115633891;Mexico; +2018-11-26T01:39:15Z;Sandra;4108.917;115709681;Mexico; +2018-11-26T01:02:09Z;Júlio Cesar;872.7254;114524718;Mexico; +2018-11-26T00:40:30Z;Ana;1076.655;114890306;Mexico; +2018-11-26T00:10:20Z;Júlio Cesar;3404.779;115916087;Mexico; +2018-11-26T00:03:52Z;Sandra;1825.211;115542653;Mexico; +2018-11-25T23:35:23Z;nathalia;1846.168;116094081;Mexico; +2018-11-25T23:28:22Z;Ana;583.8078;116004862;Mexico; +2018-11-25T23:28:15Z;nathalia;2373.515;114397693;Mexico; +2018-11-25T23:21:20Z;Eduardo;705.1544;116348025;Mexico; +2018-11-25T22:50:58Z;Nathália;4447.548;114907321;Mexico; +2018-11-25T22:38:14Z;nathalia;3542.829;114331430;Mexico; +2018-11-25T22:26:53Z;Armando;4771.55;116107706;Mexico; +2018-11-25T21:57:12Z;Júlio Cesar;4361.403;116357260;Mexico; +2018-11-25T21:25:42Z;Nathália;186.1229;115939554;Mexico; +2018-11-25T21:23:53Z;Sandra;4479.02;114683423;Mexico; +2018-11-25T21:22:33Z;Eduardo;5124.565;115695814;Mexico; +2018-11-25T20:53:08Z;Júlio;2097.286;116252403;Mexico; +2018-11-25T20:51:35Z;nathalia;4369.184;116167232;Mexico; +2018-11-25T20:42:08Z;Júlio;430.7292;115154258;Mexico; +2018-11-25T19:13:37Z;Eduardo;420.1841;116027808;Mexico; +2018-11-25T19:10:09Z;nathalia;2695.373;116286561;Mexico; +2018-11-25T19:02:48Z;Júlio Cesar;466.0503;115358744;Mexico; +2018-11-25T18:52:11Z;Júlio;4774.077;114641939;Mexico; +2018-11-25T18:35:57Z;Armando;5879.809;116338513;Mexico; +2018-11-25T18:30:42Z;Sandra;999.6806;114623508;Mexico; +2018-11-25T18:20:11Z;Júlio;2488.929;114995027;Mexico; +2018-11-25T18:19:56Z;Sandra;280.9417;115204718;Mexico; +2018-11-25T18:16:07Z;Ana;8.578018;115205898;Mexico; +2018-11-25T17:47:42Z;Eduardo;2121.959;114827703;Mexico; +2018-11-25T17:29:24Z;nathalia;3595.865;114405175;Mexico; +2018-11-25T17:22:24Z;Sandra;97.87768;115263838;Mexico; +2018-11-25T16:55:28Z;Nathália;2963.828;114390519;Mexico; +2018-11-25T16:27:59Z;Ana;3647.837;116358771;Mexico; +2018-11-25T16:23:52Z;Sandra;3065.102;114519583;Mexico; +2018-11-25T16:21:50Z;Eduardo;2202.029;114442589;Mexico; +2018-11-25T16:20:27Z;Armando;3337.752;114638116;Mexico; +2018-11-25T16:08:11Z;Júlio Cesar;662.9759;114784501;Mexico; +2018-11-25T15:35:24Z;Armando;764.097;115275789;Mexico; +2018-11-25T15:27:52Z;Júlio;4283.378;115798182;Mexico; +2018-11-25T15:26:13Z;Júlio;2.963138;115550469;Mexico; +2018-11-25T15:08:32Z;nathalia;571.2485;116301594;Mexico; +2018-11-25T14:59:47Z;Júlio;4675.902;114721582;Mexico; +2018-11-25T14:43:08Z;Nathália;5302.44;115082792;Mexico; +2018-11-25T14:27:40Z;Nathália;624.4993;115392887;Mexico; +2018-11-25T14:27:07Z;nathalia;2613.61;114713434;Mexico; +2018-11-25T14:25:03Z;nathalia;235.4727;115214891;Mexico; +2018-11-25T14:12:47Z;Armando;1740.478;115050006;Mexico; +2018-11-25T13:41:45Z;Júlio Cesar;2967.259;116395148;Mexico; +2018-11-25T13:34:28Z;Júlio Cesar;3059.505;114782197;Mexico; +2018-11-25T13:24:58Z;nathalia;191.1639;115199453;Mexico; +2018-11-25T13:02:26Z;Júlio;500.264;115114510;Mexico; +2018-11-25T12:34:48Z;Júlio;1905.63;115830994;Mexico; +2018-11-25T12:27:25Z;nathalia;315.6093;115643658;Mexico; +2018-11-25T11:50:02Z;Eduardo;3120.03;116019210;Mexico; +2018-11-25T11:24:57Z;nathalia;126.3316;115853020;Mexico; +2018-11-25T11:20:38Z;Ana;217.2351;115219959;Mexico; +2018-11-25T11:10:35Z;nathalia;3517.236;114372377;Mexico; +2018-11-25T10:37:12Z;Sandra;987.946;114233242;Mexico; +2018-11-25T10:35:43Z;Júlio;2600.513;114212434;Mexico; +2018-11-25T10:07:29Z;Eduardo;4228.909;115996081;Mexico; +2018-11-25T10:05:52Z;Júlio Cesar;2752.681;115040380;Mexico; +2018-11-25T09:52:18Z;Júlio Cesar;1286.212;114622969;Mexico; +2018-11-25T09:48:46Z;nathalia;1776.107;114822324;Mexico; +2018-11-25T09:44:52Z;Nathália;509.9368;116287077;Mexico; +2018-11-25T09:42:16Z;Nathália;3236.988;116328873;Mexico; +2018-11-25T09:19:38Z;nathalia;136.412;114836463;Mexico; +2018-11-25T08:05:02Z;Júlio Cesar;2166.134;114689478;Mexico; +2018-11-25T07:41:37Z;Nathália;1967.604;115706343;Mexico; +2018-11-25T07:13:57Z;Ana;131.3702;115045133;Mexico; +2018-11-25T06:59:48Z;Armando;3387.207;114209136;Mexico; +2018-11-25T06:37:58Z;Júlio;1868.871;115175609;Mexico; +2018-11-25T06:28:33Z;Júlio Cesar;2655.579;115614820;Mexico; +2018-11-25T05:52:31Z;Sandra;1023.368;115198292;Mexico; +2018-11-25T05:42:06Z;Eduardo;671.8461;116341268;Mexico; +2018-11-25T05:25:48Z;Armando;145.3574;114227388;Mexico; +2018-11-25T05:19:47Z;Ana;21.63342;115697820;Mexico; +2018-11-25T05:02:40Z;Ana;381.1871;114797677;Mexico; +2018-11-25T04:53:46Z;Ana;3179.232;114586866;Mexico; +2018-11-25T03:17:06Z;Nathália;636.1843;115269588;Mexico; +2018-11-25T03:06:43Z;Armando;982.22260000000006;115745275;Mexico; +2018-11-25T02:44:33Z;Armando;856.0904;115622148;Mexico; +2018-11-25T02:32:14Z;Armando;894.4066;116161389;Mexico; +2018-11-25T02:31:35Z;Nathália;1614.517;115859872;Mexico; +2018-11-25T02:27:18Z;Eduardo;1350.446;115942667;Mexico; +2018-11-25T01:55:46Z;Júlio;5509.569;115215662;Mexico; +2018-11-25T01:32:30Z;Júlio Cesar;3184.557;115278735;Mexico; +2018-11-25T01:23:53Z;Nathália;128.1764;114349708;Mexico; +2018-11-25T01:11:24Z;Júlio;1350.39;115797288;Mexico; +2018-11-25T01:02:42Z;Sandra;808.0698;115759768;Mexico; +2018-11-25T00:50:52Z;Júlio;8091.656;114955226;Mexico; +2018-11-25T00:47:14Z;Júlio Cesar;2625.746;116291134;Mexico; +2018-11-25T00:24:30Z;Júlio;978.6162;115590115;Mexico; +2018-11-25T00:17:16Z;Nathália;1417.28;115731674;Mexico; +2018-11-24T23:53:16Z;Júlio Cesar;1741.168;114228039;Mexico; +2018-11-24T23:52:22Z;nathalia;516.5967;114547190;Mexico; +2018-11-24T23:18:12Z;Júlio;2819.725;114200390;Mexico; +2018-11-24T23:18:08Z;Júlio;4700.466;114736367;Mexico; +2018-11-24T23:07:11Z;Nathália;1251.828;115346153;Mexico; +2018-11-24T22:52:19Z;Júlio;667.3071;115452808;Mexico; +2018-11-24T22:43:45Z;Armando;2718.018;115716271;Mexico; +2018-11-24T22:07:40Z;Eduardo;3693.406;115671067;Mexico; +2018-11-24T21:49:26Z;Júlio Cesar;130.2323;115658816;Mexico; +2018-11-24T21:38:37Z;Ana;2462.572;116018892;Mexico; +2018-11-24T21:22:54Z;Júlio;354.2544;114989681;Mexico; +2018-11-24T20:55:14Z;Sandra;936.7429;116171265;Mexico; +2018-11-24T20:32:50Z;Eduardo;2806.491;116138918;Mexico; +2018-11-24T20:19:26Z;Ana;1318.052;115072757;Mexico; +2018-11-24T20:15:01Z;Júlio;4786.259;115985362;Mexico; +2018-11-24T20:03:53Z;nathalia;1396.864;114738526;Mexico; +2018-11-24T19:58:04Z;nathalia;494.5845;115668943;Mexico; +2018-11-24T19:55:50Z;Júlio;1459.058;115541012;Mexico; +2018-11-24T19:16:20Z;Ana;2845.028;114812847;Mexico; +2018-11-24T18:32:45Z;Armando;1041.677;115214332;Mexico; +2018-11-24T18:30:26Z;Sandra;145.2638;114369532;Mexico; +2018-11-24T17:36:28Z;Eduardo;260.8471;115405430;Mexico; +2018-11-24T17:34:05Z;Armando;3342.951;114379653;Mexico; +2018-11-24T17:24:34Z;nathalia;2572.236;114351226;Mexico; +2018-11-24T17:01:39Z;Sandra;6112.002;115538974;Mexico; +2018-11-24T16:45:57Z;Armando;102.7384;114447258;Mexico; +2018-11-24T16:45:10Z;Júlio Cesar;1512.558;115483183;Mexico; +2018-11-24T16:18:34Z;Armando;1703.421;114670200;Mexico; +2018-11-24T16:15:51Z;Eduardo;1395.937;115166153;Mexico; +2018-11-24T16:10:08Z;Eduardo;2065.749;115351328;Mexico; +2018-11-24T15:45:25Z;Nathália;1578.322;115820761;Mexico; +2018-11-24T15:42:18Z;Ana;1287.1;115121405;Mexico; +2018-11-24T15:30:02Z;Júlio Cesar;1707.091;114660852;Mexico; +2018-11-24T15:27:02Z;Eduardo;1980.408;114269585;Mexico; +2018-11-24T15:19:57Z;nathalia;1367.931;114588204;Mexico; +2018-11-24T15:03:25Z;Júlio;616.4221;114389928;Mexico; +2018-11-24T13:48:37Z;Armando;202.3184;116163756;Mexico; +2018-11-24T13:45:03Z;Júlio Cesar;945.5377;115722174;Mexico; +2018-11-24T13:33:51Z;Júlio Cesar;3052.611;115723199;Mexico; +2018-11-24T13:23:09Z;nathalia;2535.07;114453984;Mexico; +2018-11-24T13:08:31Z;Ana;308.2493;115273050;Mexico; +2018-11-24T13:04:13Z;Eduardo;366.5917;115179078;Mexico; +2018-11-24T12:29:19Z;Júlio;510.6585;114358823;Mexico; +2018-11-24T12:13:18Z;Ana;3864.277;116199868;Mexico; +2018-11-24T11:44:56Z;Júlio;3602.749;115899758;Mexico; +2018-11-24T11:29:25Z;nathalia;2993.81;115712528;Mexico; +2018-11-24T11:28:15Z;Júlio Cesar;3514.348;116032258;Mexico; +2018-11-24T10:45:17Z;Júlio;479.9957;114951654;Mexico; +2018-11-24T10:34:41Z;Sandra;2575.719;116108164;Mexico; +2018-11-24T10:25:38Z;Eduardo;431.5332;115289538;Mexico; +2018-11-24T10:20:07Z;Júlio Cesar;918.2646;114848393;Mexico; +2018-11-24T10:14:12Z;Júlio;3864.879;115413958;Mexico; +2018-11-24T10:10:50Z;Júlio Cesar;1540.534;114489429;Mexico; +2018-11-24T09:38:38Z;nathalia;803.8197;115988886;Mexico; +2018-11-24T08:57:31Z;Nathália;2971.63;114239491;Mexico; +2018-11-24T08:40:32Z;Sandra;4817.581;115191211;Mexico; +2018-11-24T08:29:12Z;Júlio;3587.219;115159978;Mexico; +2018-11-24T08:25:53Z;nathalia;5990.469;115065482;Mexico; +2018-11-24T07:47:03Z;Ana;811.9907;115612153;Mexico; +2018-11-24T06:57:03Z;Nathália;2106.949;115509647;Mexico; +2018-11-24T06:49:12Z;Eduardo;3476.046;115430872;Mexico; +2018-11-24T06:45:53Z;Ana;140.5002;116283332;Mexico; +2018-11-24T06:35:56Z;Júlio Cesar;408.3081;116209892;Mexico; +2018-11-24T06:07:43Z;Nathália;1972.492;114731511;Mexico; +2018-11-24T05:52:22Z;Ana;139.9945;114511870;Mexico; +2018-11-24T05:52:06Z;Sandra;1863.087;116350905;Mexico; +2018-11-24T05:49:48Z;nathalia;1624.412;114393397;Mexico; +2018-11-24T05:44:38Z;Armando;601.0664;116188637;Mexico; +2018-11-24T05:38:20Z;Júlio;1141.995;114753072;Mexico; +2018-11-24T05:17:10Z;nathalia;1765.994;114328060;Mexico; +2018-11-24T05:16:40Z;Ana;19.1542;115810920;Mexico; +2018-11-24T05:13:14Z;Eduardo;674.7574;115725891;Mexico; +2018-11-24T04:36:04Z;Júlio;304.7258;115002379;Mexico; +2018-11-24T04:21:40Z;Eduardo;947.1355;114392375;Mexico; +2018-11-24T04:13:39Z;nathalia;2417.094;115180970;Mexico; +2018-11-24T04:13:17Z;Eduardo;3848.216;116157016;Mexico; +2018-11-24T04:10:32Z;nathalia;1165.193;116358343;Mexico; +2018-11-24T04:02:37Z;Júlio Cesar;3134.151;116089326;Mexico; +2018-11-24T04:02:29Z;Nathália;5133.739;114226836;Mexico; +2018-11-24T02:16:47Z;Armando;1323.359;115195009;Mexico; +2018-11-24T02:08:49Z;Eduardo;9181.171;114669063;Mexico; +2018-11-24T01:49:43Z;Nathália;240.9508;116386404;Mexico; +2018-11-24T01:47:53Z;nathalia;1200.283;114219501;Mexico; +2018-11-24T01:42:45Z;Sandra;1490.44;114767489;Mexico; +2018-11-24T01:30:42Z;Júlio Cesar;491.467;115739592;Mexico; +2018-11-24T00:59:38Z;Armando;1803.001;115870972;Mexico; +2018-11-24T00:47:47Z;Eduardo;956.3794;115103792;Mexico; +2018-11-24T00:42:33Z;Júlio;1361.766;115507284;Mexico; +2018-11-24T00:40:25Z;Ana;1219.039;115505793;Mexico; +2018-11-24T00:01:31Z;Eduardo;1333.553;114351135;Mexico; +2018-11-23T23:52:29Z;Nathália;951.4138;114315194;Mexico; +2018-11-23T23:44:21Z;Júlio;1996.215;114795638;Mexico; +2018-11-23T23:33:03Z;Ana;7350.954;114364571;Mexico; +2018-11-23T23:23:08Z;Ana;3891.729;116380672;Mexico; +2018-11-23T22:59:37Z;Nathália;3722.798;115976463;Mexico; +2018-11-23T22:45:09Z;Sandra;2017.181;115475688;Mexico; +2018-11-23T22:40:16Z;Sandra;128.1569;115918382;Mexico; +2018-11-23T22:34:14Z;Júlio;1470.443;115517785;Mexico; +2018-11-23T22:18:47Z;Júlio;2357.975;115098491;Mexico; +2018-11-23T22:08:28Z;Armando;12.14778;115714683;Mexico; +2018-11-23T22:04:28Z;Nathália;91.50607;116109912;Mexico; +2018-11-23T21:49:09Z;Júlio;2392.67;114915958;Mexico; +2018-11-23T21:36:44Z;Armando;1132.245;114641598;Mexico; +2018-11-23T21:32:23Z;Armando;1176.728;114289373;Mexico; +2018-11-23T21:17:23Z;Ana;475.9497;115192354;Mexico; +2018-11-23T21:11:13Z;Ana;5161.869;114390444;Mexico; +2018-11-23T21:07:26Z;Eduardo;4333.944;115488117;Mexico; +2018-11-23T20:54:54Z;Júlio;2706.101;114321510;Mexico; +2018-11-23T20:14:59Z;Sandra;1944.875;115776535;Mexico; +2018-11-23T19:59:06Z;Júlio Cesar;684.1663;114789173;Mexico; +2018-11-23T19:41:12Z;Júlio Cesar;3809.7;115465832;Mexico; +2018-11-23T19:37:58Z;Ana;2496.181;115147540;Mexico; +2018-11-23T19:23:20Z;Sandra;2376.784;114390661;Mexico; +2018-11-23T18:52:59Z;Nathália;2411.826;115077590;Mexico; +2018-11-23T18:44:39Z;Júlio;2533.615;114850630;Mexico; +2018-11-23T18:12:17Z;nathalia;164.4171;114981808;Mexico; +2018-11-23T18:04:03Z;Sandra;4528.305;115029070;Mexico; +2018-11-23T18:02:04Z;Eduardo;1448.55;116220010;Mexico; +2018-11-23T17:55:07Z;nathalia;16.31373;116040513;Mexico; +2018-11-23T17:27:49Z;Nathália;87.01171;114590968;Mexico; +2018-11-23T17:21:39Z;Júlio;1001.095;116061314;Mexico; +2018-11-23T17:20:10Z;Sandra;4374.447;114574490;Mexico; +2018-11-23T17:19:20Z;Júlio;764.5348;116261150;Mexico; +2018-11-23T17:02:12Z;Júlio Cesar;4408.398;115057595;Mexico; +2018-11-23T16:58:27Z;Ana;906.4623;114518006;Mexico; +2018-11-23T16:45:58Z;Ana;3422.266;115230323;Mexico; +2018-11-23T15:45:43Z;Júlio Cesar;1000.746;114681103;Mexico; +2018-11-23T15:32:04Z;Ana;2313.433;114764440;Mexico; +2018-11-23T14:55:11Z;Júlio Cesar;2754.917;114548318;Mexico; +2018-11-23T14:46:18Z;Eduardo;402.2147;114380225;Mexico; +2018-11-23T13:23:17Z;Ana;584.3906;114356780;Mexico; +2018-11-23T13:19:34Z;Ana;1363.482;114475493;Mexico; +2018-11-23T13:13:29Z;nathalia;3940.724;114575026;Mexico; +2018-11-23T12:57:56Z;Júlio Cesar;1334.018;115558369;Mexico; +2018-11-23T12:38:19Z;Ana;678.1851;114796828;Mexico; +2018-11-23T11:34:42Z;Sandra;3865.643;116018604;Mexico; +2018-11-23T11:20:27Z;Ana;373.3825;116094490;Mexico; +2018-11-23T11:17:32Z;nathalia;638.963;114307001;Mexico; +2018-11-23T11:05:28Z;Júlio Cesar;1254.17;115952984;Mexico; +2018-11-23T10:57:53Z;Nathália;1334.823;115146885;Mexico; +2018-11-23T10:25:33Z;Nathália;576.1352;115791812;Mexico; +2018-11-23T09:55:28Z;Armando;1766.973;115732498;Mexico; +2018-11-23T09:48:59Z;Júlio;236.0226;114673504;Mexico; +2018-11-23T09:47:28Z;Armando;3629.347;115714796;Mexico; +2018-11-23T09:39:40Z;Eduardo;3191.151;115977553;Mexico; +2018-11-23T08:58:14Z;Júlio Cesar;2853.691;115580832;Mexico; +2018-11-23T08:50:40Z;Júlio;853.9332;115051180;Mexico; +2018-11-23T08:42:15Z;Nathália;4257.147;114387885;Mexico; +2018-11-23T08:18:45Z;Armando;6134.293;115733734;Mexico; +2018-11-23T08:00:36Z;Nathália;715.1444;114280936;Mexico; +2018-11-23T07:56:59Z;Júlio Cesar;883.2001;115539295;Mexico; +2018-11-23T07:40:19Z;Nathália;1118.271;115523654;Mexico; +2018-11-23T07:05:17Z;nathalia;5625.982;114449593;Mexico; +2018-11-23T07:03:09Z;Júlio;3841.282;114248937;Mexico; +2018-11-23T06:54:08Z;Ana;2368.009;115278030;Mexico; +2018-11-23T06:53:52Z;Sandra;1434.52;115401417;Mexico; +2018-11-23T06:52:38Z;Ana;1761.401;116304783;Mexico; +2018-11-23T06:38:15Z;Ana;362.0368;115099957;Mexico; +2018-11-23T06:13:14Z;nathalia;4352.008;114489358;Mexico; +2018-11-23T05:49:13Z;Júlio;1845.858;115871221;Mexico; +2018-11-23T05:40:20Z;Júlio;2154.026;115563406;Mexico; +2018-11-23T05:32:35Z;Sandra;329.8161;115625036;Mexico; +2018-11-23T05:22:03Z;Ana;544.5295;116283689;Mexico; +2018-11-23T05:19:33Z;Armando;3275.174;115800362;Mexico; +2018-11-23T05:19:27Z;Armando;1421.384;116289638;Mexico; +2018-11-23T05:14:36Z;Júlio Cesar;2273.199;114556137;Mexico; +2018-11-23T04:23:18Z;Ana;674.7763;114882475;Mexico; +2018-11-23T04:21:53Z;Nathália;1985.52;115751453;Mexico; +2018-11-23T03:29:21Z;Ana;1956.678;115322871;Mexico; +2018-11-23T03:27:22Z;Ana;1907.529;114333167;Mexico; +2018-11-23T03:09:05Z;Nathália;482.5764;115243217;Mexico; +2018-11-23T02:59:57Z;Ana;1110.03;116007905;Mexico; +2018-11-23T02:45:35Z;Eduardo;3846.634;116002154;Mexico; +2018-11-23T02:36:36Z;Armando;2849.863;116279752;Mexico; +2018-11-23T02:31:22Z;Eduardo;2141.37;114631917;Mexico; +2018-11-23T02:02:07Z;Sandra;321.6765;115599888;Mexico; +2018-11-23T01:59:06Z;Ana;7622.875;114637529;Mexico; +2018-11-23T01:42:42Z;Nathália;263.2371;114736533;Mexico; +2018-11-23T01:22:19Z;Nathália;2741.899;116174100;Mexico; +2018-11-23T01:13:08Z;Júlio;8680.868;114675179;Mexico; +2018-11-23T01:02:27Z;Ana;852.5433;116107323;Mexico; +2018-11-23T00:49:17Z;Sandra;521.8246;115177554;Mexico; +2018-11-23T00:42:48Z;Sandra;746.3236;116288702;Mexico; +2018-11-23T00:27:16Z;Júlio;3767.568;116345793;Mexico; +2018-11-23T00:26:59Z;Eduardo;1692.786;115850283;Mexico; +2018-11-23T00:20:34Z;Sandra;3079.68;115064976;Mexico; +2018-11-23T00:03:38Z;Eduardo;3384.531;115927626;Mexico; +2018-11-22T23:31:16Z;Eduardo;1804.683;114817638;Mexico; +2018-11-22T22:32:47Z;Eduardo;977.07;114886162;Mexico; +2018-11-22T22:21:09Z;Júlio;8190.885;114707660;Mexico; +2018-11-22T22:02:27Z;Sandra;3175.207;115042075;Mexico; +2018-11-22T21:55:45Z;Júlio;489.5167;116110291;Mexico; +2018-11-22T21:43:28Z;nathalia;753.5378;114356612;Mexico; +2018-11-22T21:30:41Z;Armando;1962.686;115364125;Mexico; +2018-11-22T21:29:43Z;Eduardo;2931.868;114495600;Mexico; +2018-11-22T21:19:46Z;Eduardo;1829.975;115870572;Mexico; +2018-11-22T21:01:58Z;Júlio Cesar;828.1249;115391872;Mexico; +2018-11-22T20:54:30Z;Júlio Cesar;1390.325;114905768;Mexico; +2018-11-22T20:48:25Z;Nathália;1330.37;115082141;Mexico; +2018-11-22T20:30:58Z;Sandra;1555.13;115534101;Mexico; +2018-11-22T20:28:15Z;Sandra;3112.767;115322174;Mexico; +2018-11-22T19:20:18Z;Nathália;1258.975;114223846;Mexico; +2018-11-22T19:18:21Z;Júlio Cesar;3016.212;115735264;Mexico; +2018-11-22T19:09:20Z;Júlio Cesar;1243.501;116315689;Mexico; +2018-11-22T18:53:40Z;nathalia;355.8213;116334287;Mexico; +2018-11-22T18:52:54Z;Eduardo;1434.43;115060176;Mexico; +2018-11-22T18:04:37Z;Júlio Cesar;1442.027;116382593;Mexico; +2018-11-22T17:53:53Z;Armando;2545.134;114769044;Mexico; +2018-11-22T17:53:31Z;Sandra;1169.827;114748407;Mexico; +2018-11-22T17:49:25Z;Ana;298.1744;116061805;Mexico; +2018-11-22T17:37:40Z;nathalia;921.9714;114539293;Mexico; +2018-11-22T17:04:25Z;Eduardo;2723.215;115232161;Mexico; +2018-11-22T16:56:29Z;Nathália;5550.628;115734162;Mexico; +2018-11-22T16:42:41Z;Sandra;1428.806;116248086;Mexico; +2018-11-22T16:34:59Z;Ana;909.6555;115039103;Mexico; +2018-11-22T16:19:28Z;Armando;2997.335;115606273;Mexico; +2018-11-22T15:48:10Z;Eduardo;2071.214;115409949;Mexico; +2018-11-22T15:39:03Z;Nathália;3660.131;114457550;Mexico; +2018-11-22T15:33:33Z;Sandra;2889.709;116073025;Mexico; +2018-11-22T15:32:04Z;Ana;1767.44;114525413;Mexico; +2018-11-22T15:30:18Z;Eduardo;739.0401;114615396;Mexico; +2018-11-22T15:17:02Z;Nathália;3277.583;114348837;Mexico; +2018-11-22T14:49:58Z;Nathália;4857.885;115469582;Mexico; +2018-11-22T14:42:37Z;Ana;3335.17;114686890;Mexico; +2018-11-22T13:57:40Z;Ana;5966.574;114618447;Mexico; +2018-11-22T13:53:19Z;nathalia;201.7727;115335706;Mexico; +2018-11-22T13:18:37Z;Ana;1336.214;115173795;Mexico; +2018-11-22T13:18:27Z;Ana;503.5584;114304641;Mexico; +2018-11-22T13:04:39Z;Armando;1258.213;116252820;Mexico; +2018-11-22T12:00:05Z;Ana;146.8225;115694710;Mexico; +2018-11-22T11:53:57Z;Nathália;3514.448;114658877;Mexico; +2018-11-22T11:52:45Z;nathalia;3724.21;114703379;Mexico; +2018-11-22T11:42:54Z;Ana;2905.833;116038227;Mexico; +2018-11-22T11:15:39Z;Ana;443.7749;115886841;Mexico; +2018-11-22T11:14:57Z;Sandra;2461.746;115428153;Mexico; +2018-11-22T11:03:55Z;Júlio Cesar;235.0271;115237316;Mexico; +2018-11-22T10:50:09Z;Nathália;598.7103;116363421;Mexico; +2018-11-22T10:47:32Z;Júlio;212.1003;114220759;Mexico; +2018-11-22T10:16:17Z;Sandra;3582.403;114383823;Mexico; +2018-11-22T09:38:03Z;Nathália;4366.122;116365083;Mexico; +2018-11-22T09:36:21Z;Armando;3773.667;115707260;Mexico; +2018-11-22T09:36:05Z;Sandra;79.69471;115810609;Mexico; +2018-11-22T09:25:58Z;Júlio;2857.645;115052914;Mexico; +2018-11-22T09:22:03Z;nathalia;161.2131;115891128;Mexico; +2018-11-22T08:54:28Z;Júlio Cesar;3523.532;114785036;Mexico; +2018-11-22T08:26:17Z;nathalia;2942.037;114846765;Mexico; +2018-11-22T08:16:10Z;nathalia;2091.018;114836633;Mexico; +2018-11-22T07:51:41Z;Nathália;3438.565;115264909;Mexico; +2018-11-22T07:50:29Z;Júlio;988.6467;115277031;Mexico; +2018-11-22T07:06:30Z;Júlio Cesar;460.1791;115661541;Mexico; +2018-11-22T06:58:38Z;nathalia;47.49317;116272971;Mexico; +2018-11-22T06:54:06Z;nathalia;115.1963;116319093;Mexico; +2018-11-22T06:53:45Z;Eduardo;663.8634;114337125;Mexico; +2018-11-22T06:41:58Z;Eduardo;175.6992;115179035;Mexico; +2018-11-22T06:40:13Z;Sandra;4077.791;114879243;Mexico; +2018-11-22T06:12:07Z;Júlio Cesar;2719.99;114411852;Mexico; +2018-11-22T06:06:04Z;Júlio;489.2149;114588193;Mexico; +2018-11-22T05:47:06Z;Ana;3333.481;115770427;Mexico; +2018-11-22T05:27:33Z;Nathália;772.1161;114999760;Mexico; +2018-11-22T05:24:59Z;Júlio;1848.672;114920018;Mexico; +2018-11-22T05:02:00Z;Ana;776.8661;116119561;Mexico; +2018-11-22T04:37:01Z;Nathália;2300.216;114641232;Mexico; +2018-11-22T04:31:42Z;nathalia;4422.491;116331298;Mexico; +2018-11-22T04:21:29Z;Nathália;1436.549;114602786;Mexico; +2018-11-22T04:04:40Z;Ana;2430.24;114976532;Mexico; +2018-11-22T03:53:05Z;nathalia;542.2302;116308989;Mexico; +2018-11-22T03:31:45Z;Armando;253.849;115392130;Mexico; +2018-11-22T03:20:38Z;Sandra;33.35486;114838266;Mexico; +2018-11-22T03:03:33Z;Eduardo;3057.856;114603637;Mexico; +2018-11-22T02:40:30Z;Nathália;3407.292;114411444;Mexico; +2018-11-22T02:25:10Z;Júlio;297.1037;115786999;Mexico; +2018-11-22T02:16:56Z;Júlio;2946.397;115688826;Mexico; +2018-11-22T02:12:56Z;Eduardo;6220.936;114967898;Mexico; +2018-11-22T01:43:26Z;Júlio;1490.974;116038959;Mexico; +2018-11-22T01:20:22Z;Ana;489.1137;115249276;Mexico; +2018-11-22T01:01:14Z;Armando;2439.143;115222558;Mexico; +2018-11-22T00:39:24Z;nathalia;1267.509;115650878;Mexico; +2018-11-22T00:29:51Z;nathalia;923.5405;114683662;Mexico; +2018-11-22T00:21:26Z;Júlio;3930.712;115294093;Mexico; +2018-11-21T23:55:18Z;Eduardo;108.3825;114789466;Mexico; +2018-11-21T23:39:32Z;Sandra;818.4749;114344446;Mexico; +2018-11-21T23:11:50Z;Sandra;637.6943;116149967;Mexico; +2018-11-21T22:36:40Z;nathalia;1155.416;114665250;Mexico; +2018-11-21T22:04:27Z;Nathália;1790.406;115625200;Mexico; +2018-11-21T21:55:17Z;nathalia;839.6789;116276330;Mexico; +2018-11-21T21:54:32Z;Júlio;914.0862;114418190;Mexico; +2018-11-21T21:47:50Z;Ana;847.2788;115186290;Mexico; +2018-11-21T21:32:53Z;Júlio;2323.508;115278277;Mexico; +2018-11-21T21:32:18Z;Ana;5580.462;115525477;Mexico; +2018-11-21T20:55:08Z;Júlio;1495.318;115594584;Mexico; +2018-11-21T20:17:01Z;nathalia;830.7766;115584524;Mexico; +2018-11-21T20:15:45Z;Nathália;1626.791;115079794;Mexico; +2018-11-21T19:53:57Z;Ana;280.6012;116154165;Mexico; +2018-11-21T19:48:28Z;Sandra;4037.175;114687018;Mexico; +2018-11-21T19:40:35Z;Nathália;1038.257;116131152;Mexico; +2018-11-21T19:35:01Z;Ana;1648.021;115405746;Mexico; +2018-11-21T19:27:30Z;Eduardo;558.9482;115995957;Mexico; +2018-11-21T19:27:16Z;nathalia;3772.741;115833070;Mexico; +2018-11-21T19:06:45Z;Ana;2035.617;114881115;Mexico; +2018-11-21T19:05:47Z;Ana;1026.458;115580810;Mexico; +2018-11-21T19:01:50Z;Eduardo;723.7152;114332699;Mexico; +2018-11-21T18:44:36Z;Eduardo;290.2449;114320007;Mexico; +2018-11-21T18:38:37Z;Nathália;1693.295;114980600;Mexico; +2018-11-21T18:36:01Z;Armando;6517.11;115222058;Mexico; +2018-11-21T18:34:04Z;Ana;3012.556;114575391;Mexico; +2018-11-21T18:26:09Z;Ana;2996.452;115970387;Mexico; +2018-11-21T18:19:03Z;nathalia;3233.849;115506598;Mexico; +2018-11-21T17:49:47Z;Júlio;3095.564;115944241;Mexico; +2018-11-21T17:25:07Z;Armando;4075.855;115102334;Mexico; +2018-11-21T16:59:46Z;Ana;1926.215;116033383;Mexico; +2018-11-21T16:56:11Z;Júlio Cesar;569.1183;115206563;Mexico; +2018-11-21T16:47:29Z;nathalia;1894.453;115829455;Mexico; +2018-11-21T16:30:33Z;Sandra;3998.359;114766731;Mexico; +2018-11-21T16:29:34Z;Ana;2264.959;115433988;Mexico; +2018-11-21T16:24:00Z;Júlio;4035.923;115585497;Mexico; +2018-11-21T16:05:36Z;Eduardo;1006.091;115203861;Mexico; +2018-11-21T16:01:29Z;Júlio Cesar;1066.301;116214209;Mexico; +2018-11-21T15:29:43Z;Eduardo;1389.917;115135487;Mexico; +2018-11-21T15:15:13Z;Ana;1490.149;114415531;Mexico; +2018-11-21T14:58:52Z;Júlio Cesar;6074.397;114892083;Mexico; +2018-11-21T14:34:17Z;Sandra;4370.831;116377674;Mexico; +2018-11-21T13:51:50Z;nathalia;993.4362;115624735;Mexico; +2018-11-21T13:41:05Z;Ana;4511.268;114265842;Mexico; +2018-11-21T13:33:05Z;Júlio;2108.244;115725974;Mexico; +2018-11-21T13:19:47Z;Júlio;5919.611;115583033;Mexico; +2018-11-21T13:08:21Z;Nathália;3899.343;114603065;Mexico; +2018-11-21T12:47:04Z;Sandra;1531.455;115661467;Mexico; +2018-11-21T12:42:56Z;Júlio Cesar;4055.468;114542003;Mexico; +2018-11-21T12:23:51Z;Nathália;2686.919;114726742;Mexico; +2018-11-21T11:25:59Z;Nathália;706.5043;114382062;Mexico; +2018-11-21T11:22:49Z;Armando;180.8223;115676823;Mexico; +2018-11-21T11:04:04Z;Armando;1331.146;114824485;Mexico; +2018-11-21T10:54:17Z;Júlio;1979.278;114851428;Mexico; +2018-11-21T10:51:03Z;Júlio Cesar;3749.13;115130001;Mexico; +2018-11-21T10:45:29Z;Eduardo;1804.824;116165084;Mexico; +2018-11-21T10:41:10Z;Sandra;457.0596;114670771;Mexico; +2018-11-21T10:37:24Z;Júlio Cesar;87.62396;116152921;Mexico; +2018-11-21T10:25:46Z;Eduardo;318.8182;114297780;Mexico; +2018-11-21T10:25:29Z;Júlio;5692.786;115013964;Mexico; +2018-11-21T10:16:04Z;Júlio Cesar;4372.967;114917078;Mexico; +2018-11-21T09:53:14Z;Júlio Cesar;2902.471;116319472;Mexico; +2018-11-21T09:05:38Z;Armando;2820.584;115592273;Mexico; +2018-11-21T09:04:06Z;Armando;264.4715;115681107;Mexico; +2018-11-21T08:47:57Z;nathalia;3117.123;114776399;Mexico; +2018-11-21T08:42:17Z;Júlio;6227.022;116001825;Mexico; +2018-11-21T08:37:39Z;nathalia;4714.163;115494626;Mexico; +2018-11-21T07:55:23Z;nathalia;5363.852;114770478;Mexico; +2018-11-21T07:25:04Z;Júlio Cesar;533.1049;114321982;Mexico; +2018-11-21T06:51:34Z;Nathália;1853.016;116024923;Mexico; +2018-11-21T06:42:19Z;Ana;708.5022;115255555;Mexico; +2018-11-21T06:21:32Z;Armando;1506.213;114651715;Mexico; +2018-11-21T06:19:02Z;Eduardo;3745.258;114466277;Mexico; +2018-11-21T06:09:04Z;Júlio Cesar;1593.303;114870751;Mexico; +2018-11-21T06:05:30Z;Nathália;3870.115;115232286;Mexico; +2018-11-21T05:50:47Z;Sandra;111.1001;114842943;Mexico; +2018-11-21T05:26:41Z;Eduardo;1158.414;114987498;Mexico; +2018-11-21T05:20:59Z;Armando;4440.925;116311879;Mexico; +2018-11-21T05:20:23Z;Sandra;945.1242;116251124;Mexico; +2018-11-21T04:22:05Z;Eduardo;245.3134;115128012;Mexico; +2018-11-21T03:35:18Z;nathalia;116.1148;114268658;Mexico; +2018-11-21T03:25:39Z;Nathália;2515.333;116015527;Mexico; +2018-11-21T03:24:46Z;nathalia;684.9544;115884580;Mexico; +2018-11-21T03:20:29Z;Armando;132.7511;114239026;Mexico; +2018-11-21T03:01:20Z;Sandra;581.0123;115138139;Mexico; +2018-11-21T02:52:22Z;Ana;814.017;116396787;Mexico; +2018-11-21T02:49:30Z;Júlio Cesar;229.1557;116389763;Mexico; +2018-11-21T02:47:39Z;Sandra;563.4195;114983603;Mexico; +2018-11-21T02:43:32Z;Nathália;501.0757;114663769;Mexico; +2018-11-21T02:34:04Z;Ana;3758.452;115289716;Mexico; +2018-11-21T02:18:02Z;Júlio Cesar;888.8195;114685566;Mexico; +2018-11-21T02:17:51Z;Ana;52.77494;116288468;Mexico; +2018-11-21T02:11:06Z;Nathália;36.43744;115436893;Mexico; +2018-11-21T02:06:19Z;Sandra;303.8165;114668710;Mexico; +2018-11-21T01:59:27Z;Armando;1373.383;116181217;Mexico; +2018-11-21T01:55:48Z;Eduardo;2975.369;115563953;Mexico; +2018-11-21T01:14:09Z;Eduardo;2692.069;116312107;Mexico; +2018-11-21T00:49:24Z;Júlio;5825.963;116075775;Mexico; +2018-11-21T00:37:27Z;nathalia;1274.2;115973713;Mexico; +2018-11-21T00:31:43Z;Nathália;18.32086;114589148;Mexico; +2018-11-21T00:08:40Z;Júlio;2703.823;116050526;Mexico; +2018-11-20T23:48:18Z;Júlio;1963.382;114267132;Mexico; +2018-11-20T23:45:27Z;nathalia;4821.23;115820425;Mexico; +2018-11-20T23:34:26Z;nathalia;6444.068;115700771;Mexico; +2018-11-20T23:31:23Z;Eduardo;3212.964;116300160;Mexico; +2018-11-20T23:26:17Z;nathalia;191.3858;115335338;Mexico; +2018-11-20T23:15:40Z;Ana;857.0561;116190532;Mexico; +2018-11-20T22:56:39Z;Júlio Cesar;2564.64;115805342;Mexico; +2018-11-20T22:15:06Z;Sandra;110.7812;115912348;Mexico; +2018-11-20T22:13:09Z;Armando;1138.243;114480954;Mexico; +2018-11-20T21:12:59Z;Eduardo;2320.348;115756847;Mexico; +2018-11-20T20:50:03Z;Nathália;6979.257;114697027;Mexico; +2018-11-20T20:03:22Z;Ana;305.2669;114611377;Mexico; +2018-11-20T19:57:56Z;Júlio Cesar;7592.303;115314549;Mexico; +2018-11-20T19:52:36Z;Júlio Cesar;737.8571;114490325;Mexico; +2018-11-20T18:59:14Z;nathalia;3863.014;114704566;Mexico; +2018-11-20T18:54:05Z;Júlio Cesar;1319.299;115737624;Mexico; +2018-11-20T18:17:20Z;Armando;432.8528;115726960;Mexico; +2018-11-20T18:04:15Z;Eduardo;2027.014;116025740;Mexico; +2018-11-20T17:32:11Z;Sandra;3001.723;114992556;Mexico; +2018-11-20T17:28:45Z;nathalia;111.0804;115668936;Mexico; +2018-11-20T17:21:31Z;Armando;4272.144;115809300;Mexico; +2018-11-20T17:07:30Z;Armando;2477.145;114652349;Mexico; +2018-11-20T17:04:30Z;Júlio;2721.094;114335031;Mexico; +2018-11-20T17:00:21Z;nathalia;509.7175;114480531;Mexico; +2018-11-20T16:57:25Z;Júlio;4801.312;116216489;Mexico; +2018-11-20T16:54:55Z;Armando;272.4802;115782266;Mexico; +2018-11-20T15:27:08Z;Ana;3340.061;116353895;Mexico; +2018-11-20T14:29:22Z;Júlio Cesar;6850.142;115779775;Mexico; +2018-11-20T14:09:16Z;Eduardo;625.8849;114578506;Mexico; +2018-11-20T13:50:39Z;Armando;3837.863;116235558;Mexico; +2018-11-20T13:29:40Z;Sandra;1536.607;116284773;Mexico; +2018-11-20T13:11:10Z;Sandra;1573.776;116205119;Mexico; +2018-11-20T13:10:25Z;Júlio;1629.548;115373846;Mexico; +2018-11-20T13:10:03Z;Ana;19.25704;115045833;Mexico; +2018-11-20T12:49:38Z;Júlio;2043.212;114645938;Mexico; +2018-11-20T12:33:42Z;Ana;1634.217;114677875;Mexico; +2018-11-20T12:00:04Z;Júlio Cesar;4132.142;114210483;Mexico; +2018-11-20T11:53:20Z;nathalia;1172.647;114371816;Mexico; +2018-11-20T11:38:56Z;Júlio Cesar;773.4947;115054565;Mexico; +2018-11-20T11:17:51Z;Ana;60.77373;116019194;Mexico; +2018-11-20T10:59:45Z;Júlio Cesar;1313.268;115453469;Mexico; +2018-11-20T10:39:38Z;Armando;102.8612;115395158;Mexico; +2018-11-20T10:23:12Z;Nathália;4967.924;115183527;Mexico; +2018-11-20T10:17:05Z;Armando;5089.917;114343495;Mexico; +2018-11-20T10:03:55Z;Armando;938.4562;114385030;Mexico; +2018-11-20T09:02:08Z;Ana;1401.609;116391910;Mexico; +2018-11-20T08:48:16Z;Armando;169.1451;114540195;Mexico; +2018-11-20T08:15:10Z;nathalia;939.9087;115648487;Mexico; +2018-11-20T07:06:38Z;Nathália;1909.419;115209499;Mexico; +2018-11-20T06:59:54Z;Sandra;3416.276;114990467;Mexico; +2018-11-20T06:53:36Z;Nathália;3163.822;114713328;Mexico; +2018-11-20T06:46:06Z;Júlio;3134.439;115356713;Mexico; +2018-11-20T06:44:02Z;nathalia;9296.294;115607031;Mexico; +2018-11-20T05:36:26Z;Júlio;2369.252;114915293;Mexico; +2018-11-20T05:16:51Z;nathalia;1385.125;114319616;Mexico; +2018-11-20T04:24:20Z;Nathália;894.791;115043096;Mexico; +2018-11-20T04:23:37Z;Nathália;3596.243;114849262;Mexico; +2018-11-20T04:17:24Z;Sandra;1276.924;115107640;Mexico; +2018-11-20T04:01:51Z;Júlio;1249.994;116377895;Mexico; +2018-11-20T03:40:43Z;Eduardo;872.7067;114349397;Mexico; +2018-11-20T03:33:44Z;Eduardo;935.3267;115112642;Mexico; +2018-11-20T03:33:29Z;nathalia;2992.14;115667464;Mexico; +2018-11-20T03:00:50Z;Ana;692.7832;115961326;Mexico; +2018-11-20T02:55:10Z;Ana;113.0116;114801161;Mexico; +2018-11-20T02:54:42Z;Ana;3332.571;116333547;Mexico; +2018-11-20T02:50:44Z;Eduardo;5752.293;116217251;Mexico; +2018-11-20T02:05:25Z;Sandra;824.4316;115023220;Mexico; +2018-11-20T01:52:02Z;Ana;3444.92;115425218;Mexico; +2018-11-20T01:30:10Z;Ana;2868.631;116263534;Mexico; +2018-11-20T01:18:09Z;Ana;114.7747;114738020;Mexico; +2018-11-20T01:02:12Z;Ana;921.7447;115867312;Mexico; +2018-11-20T00:19:54Z;Nathália;815.6186;115380969;Mexico; +2018-11-20T00:00:26Z;Sandra;162.1934;114876201;Mexico; +2018-11-19T23:47:21Z;Júlio Cesar;730.9051;114218400;Mexico; +2018-11-19T23:45:44Z;Júlio;4835.924;115815996;Mexico; +2018-11-19T23:31:52Z;Armando;237.3342;116001080;Mexico; +2018-11-19T23:07:06Z;Ana;3709.348;115233510;Mexico; +2018-11-19T22:24:43Z;Nathália;1092.076;115246247;Mexico; +2018-11-19T22:19:16Z;Júlio Cesar;688.574;115713854;Mexico; +2018-11-19T22:17:06Z;Ana;5050.698;114754351;Mexico; +2018-11-19T21:59:32Z;Júlio;86.90192;114399617;Mexico; +2018-11-19T21:57:55Z;Eduardo;3629.014;115036550;Mexico; +2018-11-19T21:39:23Z;Ana;94.03828;116030059;Mexico; +2018-11-19T21:29:40Z;Eduardo;300.292;115170063;Mexico; +2018-11-19T20:58:08Z;Eduardo;4907.908;114637072;Mexico; +2018-11-19T20:50:02Z;Ana;2969.624;114467337;Mexico; +2018-11-19T20:19:36Z;Júlio;4128.86;114982575;Mexico; +2018-11-19T20:18:08Z;nathalia;1080.137;115190003;Mexico; +2018-11-19T20:14:16Z;Ana;32.15425;115162113;Mexico; +2018-11-19T20:13:44Z;Júlio Cesar;547.5413;116284747;Mexico; +2018-11-19T19:52:19Z;Júlio Cesar;1101.293;114903875;Mexico; +2018-11-19T19:31:13Z;Ana;2160.761;115713505;Mexico; +2018-11-19T18:58:01Z;nathalia;451.9456;115574572;Mexico; +2018-11-19T18:57:38Z;Júlio;1585.731;115407698;Mexico; +2018-11-19T18:57:00Z;Júlio Cesar;2048.316;116183484;Mexico; +2018-11-19T18:39:57Z;Sandra;164.7043;115138696;Mexico; +2018-11-19T18:15:24Z;Ana;5737.562;115978131;Mexico; +2018-11-19T17:45:04Z;Ana;4174.155;115705989;Mexico; +2018-11-19T17:34:49Z;Ana;3207.494;114575836;Mexico; +2018-11-19T17:31:33Z;Sandra;1637.708;115647223;Mexico; +2018-11-19T17:22:38Z;Ana;903.755;114348405;Mexico; +2018-11-19T16:58:09Z;Júlio;55.89748;115828042;Mexico; +2018-11-19T16:39:01Z;Nathália;1039.022;114245524;Mexico; +2018-11-19T15:46:06Z;Nathália;643.9639;114901919;Mexico; +2018-11-19T14:33:25Z;Armando;985.6957;114741388;Mexico; +2018-11-19T14:28:50Z;Sandra;4137.88;116309539;Mexico; +2018-11-19T14:26:45Z;Nathália;1582.38;114416147;Mexico; +2018-11-19T14:14:14Z;Júlio Cesar;428.5417;115055926;Mexico; +2018-11-19T14:12:50Z;Júlio Cesar;1350.226;115835020;Mexico; +2018-11-19T14:07:59Z;Sandra;578.3376;116175133;Mexico; +2018-11-19T13:59:39Z;Júlio;2299.248;115631526;Mexico; +2018-11-19T13:58:28Z;Júlio Cesar;5964.361;114745415;Mexico; +2018-11-19T13:56:17Z;Armando;4248.588;114591567;Mexico; +2018-11-19T13:38:44Z;nathalia;4531.484;114717308;Mexico; +2018-11-19T13:26:19Z;Júlio Cesar;165.9755;114230283;Mexico; +2018-11-19T12:56:17Z;Nathália;1176.501;116286114;Mexico; +2018-11-19T12:46:45Z;Nathália;579.0814;114354318;Mexico; +2018-11-19T12:46:35Z;Ana;371.0657;116029609;Mexico; +2018-11-19T12:21:59Z;Nathália;1519.954;116218053;Mexico; +2018-11-19T12:21:42Z;Júlio Cesar;3150.674;115577298;Mexico; +2018-11-19T12:11:51Z;Sandra;491.0348;115718270;Mexico; +2018-11-19T12:10:16Z;Armando;1541.457;114401665;Mexico; +2018-11-19T11:39:27Z;Ana;1333.892;114332634;Mexico; +2018-11-19T11:26:57Z;Armando;3079.055;115178857;Mexico; +2018-11-19T11:19:49Z;nathalia;60.53076;115028524;Mexico; +2018-11-19T11:16:59Z;Sandra;4735.72;116300175;Mexico; +2018-11-19T11:15:31Z;Júlio Cesar;1908.218;114319574;Mexico; +2018-11-19T10:58:06Z;Eduardo;1436.604;114468871;Mexico; +2018-11-19T10:18:01Z;nathalia;101.3119;115955510;Mexico; +2018-11-19T10:14:31Z;Armando;1096.559;115827368;Mexico; +2018-11-19T09:52:14Z;Eduardo;1680.821;114352000;Mexico; +2018-11-19T09:18:53Z;Ana;6704.825;116261447;Mexico; +2018-11-19T09:10:10Z;Sandra;9859.557;114401947;Mexico; +2018-11-19T08:55:43Z;Júlio;1458.757;114338641;Mexico; +2018-11-19T08:41:27Z;Júlio Cesar;1837.667;114258097;Mexico; +2018-11-19T07:55:16Z;Armando;622.1369;114612306;Mexico; +2018-11-19T07:38:44Z;Sandra;51.54816;115309044;Mexico; +2018-11-19T07:35:33Z;Júlio;1736.995;115211666;Mexico; +2018-11-19T07:17:49Z;Nathália;1138.149;116039820;Mexico; +2018-11-19T07:08:51Z;nathalia;186.3101;116326827;Mexico; +2018-11-19T06:21:11Z;Sandra;1227.528;114511233;Mexico; +2018-11-19T06:11:02Z;Júlio;2945.147;114694294;Mexico; +2018-11-19T06:06:56Z;nathalia;683.3938;114755287;Mexico; +2018-11-19T05:49:07Z;Armando;1320.759;115181719;Mexico; +2018-11-19T05:38:29Z;Armando;73.91269;115300264;Mexico; +2018-11-19T05:27:00Z;nathalia;3810.583;115076461;Mexico; +2018-11-19T05:08:30Z;Eduardo;2359.622;116284386;Mexico; +2018-11-19T04:36:11Z;Sandra;1581.597;115512511;Mexico; +2018-11-19T04:24:48Z;Ana;3313.319;114839159;Mexico; +2018-11-19T04:11:54Z;Júlio;335.2585;115896775;Mexico; +2018-11-19T03:36:38Z;Júlio;5020.703;116008816;Mexico; +2018-11-19T03:35:47Z;Eduardo;2318.167;115389630;Mexico; +2018-11-19T03:28:59Z;nathalia;3306.677;114722762;Mexico; +2018-11-19T03:17:22Z;Júlio Cesar;862.7227;115331581;Mexico; +2018-11-19T02:59:23Z;Armando;5698.654;114382256;Mexico; +2018-11-19T02:46:13Z;Nathália;3414.052;114287367;Mexico; +2018-11-19T02:44:12Z;Sandra;909.1896;115670480;Mexico; +2018-11-19T02:35:18Z;Armando;2581.362;115328833;Mexico; +2018-11-19T02:32:25Z;nathalia;81.70649;116012478;Mexico; +2018-11-19T01:58:14Z;nathalia;2201.332;114776868;Mexico; +2018-11-19T01:25:11Z;Nathália;5664.119;116202887;Mexico; +2018-11-19T01:21:59Z;Nathália;2026.698;114577741;Mexico; +2018-11-19T01:21:44Z;Júlio Cesar;1738.281;115127379;Mexico; +2018-11-19T00:59:16Z;Júlio Cesar;4804.164;116182118;Mexico; +2018-11-19T00:58:35Z;Nathália;979.9613;114402859;Mexico; +2018-11-19T00:48:37Z;nathalia;339.4979;115645276;Mexico; +2018-11-19T00:26:44Z;Sandra;92.35118;115289514;Mexico; +2018-11-19T00:23:46Z;Nathália;1578.757;114875235;Mexico; +2018-11-19T00:16:13Z;Júlio Cesar;3135.011;115723482;Mexico; +2018-11-19T00:06:19Z;Sandra;2279.026;115065401;Mexico; +2018-11-18T23:58:38Z;Nathália;809.1295;114980557;Mexico; +2018-11-18T23:38:38Z;Armando;1240.165;114418490;Mexico; +2018-11-18T23:31:28Z;Ana;3813.419;115900091;Mexico; +2018-11-18T23:27:42Z;Sandra;317.7347;114423734;Mexico; +2018-11-18T23:14:11Z;Eduardo;5394.485;114651382;Mexico; +2018-11-18T23:04:19Z;Sandra;1511.917;114791362;Mexico; +2018-11-18T22:54:26Z;Ana;2844.273;114536492;Mexico; +2018-11-18T22:37:47Z;Júlio Cesar;691.8474;115518702;Mexico; +2018-11-18T22:35:54Z;Ana;2786.888;115854576;Mexico; +2018-11-18T22:03:10Z;nathalia;6253.093;115572544;Mexico; +2018-11-18T21:21:51Z;Júlio;2054.145;115223277;Mexico; +2018-11-18T21:07:52Z;Armando;1370.466;114638535;Mexico; +2018-11-18T20:59:39Z;Nathália;120.555;115820536;Mexico; +2018-11-18T20:46:20Z;Júlio;289.7337;114490104;Mexico; +2018-11-18T20:44:41Z;Júlio;1888.014;115635964;Mexico; +2018-11-18T20:37:27Z;Armando;1165.675;114416427;Mexico; +2018-11-18T20:22:50Z;nathalia;4308.289;115359681;Mexico; +2018-11-18T20:11:34Z;Nathália;1281.737;116320733;Mexico; +2018-11-18T19:52:56Z;Ana;443.889;115862205;Mexico; +2018-11-18T19:43:26Z;Sandra;2930.92;115837376;Mexico; +2018-11-18T19:29:35Z;Armando;2.469225;114219183;Mexico; +2018-11-18T19:07:30Z;Ana;2609.879;115894103;Mexico; +2018-11-18T19:06:26Z;Nathália;2355.283;115511676;Mexico; +2018-11-18T19:05:18Z;Nathália;2669.067;116043983;Mexico; +2018-11-18T17:59:33Z;Eduardo;2172.76;115615884;Mexico; +2018-11-18T16:57:58Z;Sandra;2068.77;116250709;Mexico; +2018-11-18T16:33:41Z;Armando;862.8909;115100331;Mexico; +2018-11-18T15:39:20Z;Júlio;1155.011;115898171;Mexico; +2018-11-18T15:38:50Z;Armando;2549.59;115578300;Mexico; +2018-11-18T15:24:58Z;Nathália;110.3333;114958599;Mexico; +2018-11-18T15:11:03Z;Júlio Cesar;7107.387;115332231;Mexico; +2018-11-18T15:09:07Z;Júlio;4.428317;115314177;Mexico; +2018-11-18T14:50:17Z;Júlio Cesar;1232.692;116031064;Mexico; +2018-11-18T14:32:02Z;Eduardo;1316.641;115291719;Mexico; +2018-11-18T14:23:48Z;nathalia;1835.859;114443728;Mexico; +2018-11-18T13:55:05Z;Armando;2451.924;114937151;Mexico; +2018-11-18T13:42:55Z;Júlio Cesar;6056.893;114374835;Mexico; +2018-11-18T13:36:51Z;Nathália;4201.249;115569443;Mexico; +2018-11-18T13:31:13Z;nathalia;1450.985;115865135;Mexico; +2018-11-18T13:21:41Z;Armando;1609.119;114951340;Mexico; +2018-11-18T13:10:22Z;Júlio;934.636;115958540;Mexico; +2018-11-18T13:07:28Z;Júlio;2992.16;115988971;Mexico; +2018-11-18T13:03:44Z;Júlio Cesar;1472.742;115051494;Mexico; +2018-11-18T12:56:22Z;Sandra;143.8215;115586945;Mexico; +2018-11-18T12:54:13Z;Sandra;375.8435;114742338;Mexico; +2018-11-18T12:51:19Z;Ana;1057.882;116348581;Mexico; +2018-11-18T12:43:12Z;nathalia;118.7004;115997493;Mexico; +2018-11-18T12:06:50Z;nathalia;101.3888;115098146;Mexico; +2018-11-18T11:40:57Z;Eduardo;502.1729;115412263;Mexico; +2018-11-18T10:52:11Z;Nathália;1008.755;115609412;Mexico; +2018-11-18T10:44:14Z;Júlio;2312.09;115453186;Mexico; +2018-11-18T10:24:52Z;Sandra;1512.452;114896835;Mexico; +2018-11-18T10:01:20Z;nathalia;501.6977;114465210;Mexico; +2018-11-18T09:56:06Z;Júlio Cesar;2449.062;114304620;Mexico; +2018-11-18T09:39:29Z;Eduardo;4202.422;116380136;Mexico; +2018-11-18T09:23:37Z;Nathália;369.1979;114298046;Mexico; +2018-11-18T09:09:39Z;Ana;420.3187;115401625;Mexico; +2018-11-18T08:18:57Z;Eduardo;4387.017;115642137;Mexico; +2018-11-18T08:17:38Z;Júlio Cesar;1766.42;115591414;Mexico; +2018-11-18T07:34:38Z;Eduardo;1676.599;116147269;Mexico; +2018-11-18T07:09:35Z;Ana;1467.124;115286618;Mexico; +2018-11-18T07:08:43Z;Nathália;3604.155;115254452;Mexico; +2018-11-18T07:04:40Z;Ana;841.2996;114475264;Mexico; +2018-11-18T06:53:46Z;Júlio Cesar;1952.888;115150173;Mexico; +2018-11-18T06:52:22Z;Júlio Cesar;986.2092;115681816;Mexico; +2018-11-18T06:48:28Z;Eduardo;506.1015;115062298;Mexico; +2018-11-18T06:02:33Z;Armando;2954.112;115542661;Mexico; +2018-11-18T05:54:56Z;Júlio Cesar;1176.078;115812826;Mexico; +2018-11-18T05:48:44Z;Nathália;1104.357;114918958;Mexico; +2018-11-18T05:46:05Z;Júlio Cesar;203.4352;115346811;Mexico; +2018-11-18T05:39:14Z;Ana;3197.852;114542712;Mexico; +2018-11-18T05:34:47Z;Nathália;5312.21;115209322;Mexico; +2018-11-18T05:25:22Z;nathalia;144.2358;115096655;Mexico; +2018-11-18T05:06:35Z;Júlio;2308.657;115877450;Mexico; +2018-11-18T04:59:44Z;Eduardo;1101.343;115831883;Mexico; +2018-11-18T04:30:21Z;Sandra;1877.958;114818846;Mexico; +2018-11-18T04:24:54Z;Sandra;198.9464;114915880;Mexico; +2018-11-18T04:09:30Z;Sandra;1752.769;114920965;Mexico; +2018-11-18T03:49:07Z;Júlio Cesar;740.3887;114937649;Mexico; +2018-11-18T03:33:03Z;Armando;3017.658;115206066;Mexico; +2018-11-18T03:31:02Z;Eduardo;437.175;114312829;Mexico; +2018-11-18T02:19:40Z;Armando;28.65328;116225446;Mexico; +2018-11-18T01:17:55Z;Júlio Cesar;3548.738;116244929;Mexico; +2018-11-18T01:11:40Z;nathalia;2579.019;115759406;Mexico; +2018-11-18T00:58:27Z;Ana;486.2584;116146505;Mexico; +2018-11-18T00:14:49Z;Nathália;3406.909;116299967;Mexico; +2018-11-17T23:58:26Z;Eduardo;2923.005;116210751;Mexico; +2018-11-17T23:57:23Z;Ana;847.7059;115122180;Mexico; +2018-11-17T23:43:16Z;Júlio;1470.749;114496419;Mexico; +2018-11-17T23:38:44Z;Júlio Cesar;4190.021;116394806;Mexico; +2018-11-17T23:30:24Z;Armando;2377.827;114652245;Mexico; +2018-11-17T23:29:58Z;Ana;2978.978;115732529;Mexico; +2018-11-17T23:28:30Z;Nathália;1253.653;114760117;Mexico; +2018-11-17T23:10:04Z;Júlio Cesar;4690.463;115921674;Mexico; +2018-11-17T22:59:18Z;Eduardo;4536.522;115708445;Mexico; +2018-11-17T22:32:45Z;Eduardo;2624.82;114754444;Mexico; +2018-11-17T21:35:34Z;Júlio Cesar;3558.601;114704256;Mexico; +2018-11-17T21:30:14Z;Júlio;578.0975;116114669;Mexico; +2018-11-17T21:18:47Z;Armando;3910.363;115005674;Mexico; +2018-11-17T21:02:01Z;Armando;2342.806;116326658;Mexico; +2018-11-17T21:00:01Z;Ana;4287.458;116126579;Mexico; +2018-11-17T20:51:10Z;Sandra;3592.388;115926830;Mexico; +2018-11-17T20:50:53Z;Sandra;2041.052;114881674;Mexico; +2018-11-17T20:49:01Z;nathalia;2154.546;115827013;Mexico; +2018-11-17T20:48:39Z;Júlio Cesar;2193.623;115237749;Mexico; +2018-11-17T20:39:54Z;Eduardo;139.6076;115925422;Mexico; +2018-11-17T20:12:53Z;Armando;1817.347;115972878;Mexico; +2018-11-17T20:10:30Z;nathalia;477.5845;114684733;Mexico; +2018-11-17T20:03:07Z;Nathália;1528.956;114398306;Mexico; +2018-11-17T19:57:50Z;nathalia;3976.521;114714978;Mexico; +2018-11-17T19:16:57Z;nathalia;6837.748;114296540;Mexico; +2018-11-17T19:15:07Z;Júlio;1807.623;115704251;Mexico; +2018-11-17T19:09:40Z;Sandra;3527.981;115549710;Mexico; +2018-11-17T19:05:59Z;Júlio Cesar;5016.916;115795441;Mexico; +2018-11-17T19:04:35Z;nathalia;1297.395;115595010;Mexico; +2018-11-17T19:03:38Z;Armando;1695.394;115745402;Mexico; +2018-11-17T18:59:40Z;Eduardo;60.45444;114477633;Mexico; +2018-11-17T18:22:57Z;Sandra;1723.788;114918628;Mexico; +2018-11-17T18:06:44Z;Sandra;602.649;115350219;Mexico; +2018-11-17T17:51:58Z;Júlio Cesar;6035.738;115885633;Mexico; +2018-11-17T17:13:28Z;Júlio;1204.194;115564843;Mexico; +2018-11-17T17:06:32Z;Armando;213.0142;115755191;Mexico; +2018-11-17T17:00:44Z;Nathália;2964.738;115365163;Mexico; +2018-11-17T16:53:30Z;Júlio Cesar;85.98019;116380169;Mexico; +2018-11-17T16:53:21Z;Júlio Cesar;783.4772;116162516;Mexico; +2018-11-17T16:43:10Z;Nathália;1011.575;115595970;Mexico; +2018-11-17T16:12:20Z;Armando;1514.064;115670274;Mexico; +2018-11-17T15:56:44Z;Júlio Cesar;146.2845;116232848;Mexico; +2018-11-17T15:47:53Z;Nathália;4057.577;114308347;Mexico; +2018-11-17T15:44:18Z;Sandra;1396.704;115509515;Mexico; +2018-11-17T15:43:01Z;Sandra;1057.598;115869788;Mexico; +2018-11-17T15:16:22Z;Nathália;553.217;114257566;Mexico; +2018-11-17T15:12:44Z;Ana;925.6312;115375180;Mexico; +2018-11-17T14:24:18Z;Eduardo;564.2523;115435828;Mexico; +2018-11-17T14:07:51Z;nathalia;39.97917;114355360;Mexico; +2018-11-17T14:03:10Z;Júlio Cesar;669.28510000000006;116198149;Mexico; +2018-11-17T13:55:29Z;Júlio;69.96197;114268775;Mexico; +2018-11-17T13:15:10Z;Ana;4766.336;116227512;Mexico; +2018-11-17T13:11:04Z;Ana;3228.166;114666402;Mexico; +2018-11-17T12:43:31Z;Eduardo;2883.998;115742687;Mexico; +2018-11-17T12:34:36Z;Sandra;79.3832;114942831;Mexico; +2018-11-17T12:16:44Z;Nathália;6321.545;116315658;Mexico; +2018-11-17T12:12:02Z;Ana;975.5136;115488400;Mexico; +2018-11-17T12:09:19Z;Nathália;2360.564;114993380;Mexico; +2018-11-17T11:44:34Z;Júlio;1726.816;116193547;Mexico; +2018-11-17T11:20:16Z;Júlio;65.25469;114944118;Mexico; +2018-11-17T11:18:24Z;Eduardo;350.1683;115291880;Mexico; +2018-11-17T10:45:23Z;nathalia;1191.645;115541104;Mexico; +2018-11-17T10:33:42Z;Nathália;1900.142;115914824;Mexico; +2018-11-17T09:47:14Z;Júlio;5535.275;115809904;Mexico; +2018-11-17T09:41:36Z;Júlio;733.838;115764640;Mexico; +2018-11-17T09:39:00Z;nathalia;228.9889;114805152;Mexico; +2018-11-17T09:36:55Z;Júlio Cesar;3978.425;114929093;Mexico; +2018-11-17T09:29:03Z;Eduardo;1983.021;116399356;Mexico; +2018-11-17T09:23:45Z;Eduardo;888.0151;115713482;Mexico; +2018-11-17T09:19:49Z;Ana;1406.152;116159466;Mexico; +2018-11-17T09:17:55Z;Júlio Cesar;188.5855;115563015;Mexico; +2018-11-17T09:09:35Z;Nathália;449.5839;114370496;Mexico; +2018-11-17T08:39:57Z;nathalia;5142.24;114556925;Mexico; +2018-11-17T08:14:33Z;Júlio;3545.663;115183912;Mexico; +2018-11-17T07:50:36Z;Júlio;651.3644;115933755;Mexico; +2018-11-17T07:32:31Z;Nathália;1271.518;115975465;Mexico; +2018-11-17T07:24:05Z;Armando;1280.605;115712205;Mexico; +2018-11-17T07:22:36Z;Armando;1857.141;114551537;Mexico; +2018-11-17T06:15:18Z;Armando;2311.204;114376551;Mexico; +2018-11-17T05:51:39Z;Eduardo;7810.355;115223618;Mexico; +2018-11-17T05:39:56Z;Armando;357.8077;115618967;Mexico; +2018-11-17T05:12:54Z;Ana;584.2329;114243565;Mexico; +2018-11-17T05:12:05Z;Júlio Cesar;187.865;115150910;Mexico; +2018-11-17T05:10:57Z;Ana;2920.497;114578594;Mexico; +2018-11-17T04:31:49Z;Júlio Cesar;346.6308;114990915;Mexico; +2018-11-17T04:15:29Z;Ana;1761.599;116043134;Mexico; +2018-11-17T03:57:16Z;Júlio Cesar;435.7627;116335613;Mexico; +2018-11-17T03:30:09Z;Armando;3374.851;115090115;Mexico; +2018-11-17T03:29:49Z;Júlio Cesar;363.9432;114416768;Mexico; +2018-11-17T03:02:15Z;Nathália;517.2184;114973878;Mexico; +2018-11-17T02:54:09Z;nathalia;1642.124;115852202;Mexico; +2018-11-17T02:36:37Z;nathalia;722.7875;115082540;Mexico; +2018-11-17T02:36:22Z;Júlio;86.99557;114303866;Mexico; +2018-11-17T02:15:30Z;Ana;3208.468;114487222;Mexico; +2018-11-17T02:01:00Z;Júlio Cesar;276.0359;115688642;Mexico; +2018-11-17T01:47:06Z;Nathália;4589.356;115795766;Mexico; +2018-11-17T01:32:38Z;nathalia;1399.671;115500316;Mexico; +2018-11-17T01:17:54Z;Sandra;3228.568;114269826;Mexico; +2018-11-17T00:51:37Z;Eduardo;2686.983;116273929;Mexico; +2018-11-17T00:47:44Z;Júlio;171.4502;116057339;Mexico; +2018-11-17T00:23:21Z;Ana;951.54;116393539;Mexico; +2018-11-17T00:21:54Z;Júlio;2218.187;114473533;Mexico; +2018-11-16T23:49:52Z;Júlio;2978.745;114437995;Mexico; +2018-11-16T22:54:52Z;Armando;2108.898;116016039;Mexico; +2018-11-16T22:52:42Z;Ana;1901.916;115897397;Mexico; +2018-11-16T22:02:04Z;Júlio Cesar;4191.097;115490120;Mexico; +2018-11-16T21:57:48Z;Júlio Cesar;2144.577;115225527;Mexico; +2018-11-16T21:53:37Z;Nathália;329.9728;115938376;Mexico; +2018-11-16T21:28:51Z;Júlio;5257.151;116030705;Mexico; +2018-11-16T21:02:08Z;Armando;2668.852;115773153;Mexico; +2018-11-16T20:52:50Z;Júlio Cesar;5533.396;115256897;Mexico; +2018-11-16T20:36:12Z;Eduardo;2198.894;115428460;Mexico; +2018-11-16T20:30:36Z;Nathália;1163.469;116237046;Mexico; +2018-11-16T20:23:57Z;Armando;2869.219;115705456;Mexico; +2018-11-16T20:13:27Z;Júlio Cesar;6.010427;116195005;Mexico; +2018-11-16T20:11:01Z;Nathália;3719.967;114853324;Mexico; +2018-11-16T19:52:07Z;nathalia;4214.054;114334351;Mexico; +2018-11-16T19:43:27Z;Eduardo;1902.958;114699403;Mexico; +2018-11-16T19:01:15Z;Ana;1150.387;116119756;Mexico; +2018-11-16T18:59:45Z;Eduardo;603.5679;115823793;Mexico; +2018-11-16T18:54:40Z;Ana;399.1912;116092637;Mexico; +2018-11-16T18:43:15Z;Nathália;3695.56;116376326;Mexico; +2018-11-16T18:30:34Z;Armando;1179.752;116194604;Mexico; +2018-11-16T18:26:00Z;Júlio;3283.572;114843083;Mexico; +2018-11-16T18:24:15Z;Sandra;4121.292;115289797;Mexico; +2018-11-16T18:23:01Z;nathalia;64.20588;115268157;Mexico; +2018-11-16T18:11:57Z;Ana;453.6223;114531389;Mexico; +2018-11-16T17:36:08Z;Eduardo;1222.053;115794199;Mexico; +2018-11-16T17:21:15Z;Armando;589.5061;115627040;Mexico; +2018-11-16T17:16:10Z;Júlio Cesar;928.1607;114878342;Mexico; +2018-11-16T17:13:10Z;Ana;2398.603;115286687;Mexico; +2018-11-16T17:08:36Z;Nathália;3797.526;114762138;Mexico; +2018-11-16T16:46:37Z;Júlio;2325.099;115772342;Mexico; +2018-11-16T16:40:47Z;Júlio;1392.665;114833140;Mexico; +2018-11-16T16:38:32Z;Júlio Cesar;1305.477;116151038;Mexico; +2018-11-16T16:36:44Z;Júlio Cesar;295.9974;114830703;Mexico; +2018-11-16T16:34:54Z;Júlio Cesar;982.7593;114666975;Mexico; +2018-11-16T16:05:52Z;Sandra;4216.159;114283977;Mexico; +2018-11-16T15:28:42Z;Nathália;589.3942;115449551;Mexico; +2018-11-16T15:23:49Z;nathalia;586.8482;115940489;Mexico; +2018-11-16T15:01:27Z;Júlio Cesar;864.8436;114785081;Mexico; +2018-11-16T14:55:08Z;nathalia;444.0659;116014747;Mexico; +2018-11-16T14:51:23Z;nathalia;21.0388;114458403;Mexico; +2018-11-16T14:25:55Z;Sandra;96.59401;114999525;Mexico; +2018-11-16T13:40:29Z;Júlio Cesar;980.0661;115808103;Mexico; +2018-11-16T13:12:52Z;nathalia;605.0332;114988805;Mexico; +2018-11-16T13:09:51Z;Eduardo;6551.181;115557110;Mexico; +2018-11-16T12:30:13Z;Armando;2146.486;116273247;Mexico; +2018-11-16T11:40:43Z;Armando;38.73254;114765067;Mexico; +2018-11-16T11:17:08Z;Júlio Cesar;1235.083;115881585;Mexico; +2018-11-16T11:08:29Z;Júlio;2565.069;114592544;Mexico; +2018-11-16T10:32:58Z;nathalia;983.3951;115447566;Mexico; +2018-11-16T10:19:21Z;Júlio Cesar;330.5593;114884712;Mexico; +2018-11-16T09:57:05Z;Júlio Cesar;42.78515;115323320;Mexico; +2018-11-16T09:55:46Z;Nathália;3027.851;115709053;Mexico; +2018-11-16T09:47:11Z;Ana;2097.14;115401817;Mexico; +2018-11-16T09:34:07Z;nathalia;651.3645;114653677;Mexico; +2018-11-16T08:40:44Z;Sandra;423.8066;115127139;Mexico; +2018-11-16T08:30:24Z;Armando;1652.564;114923578;Mexico; +2018-11-16T08:06:20Z;Nathália;1088.499;115744152;Mexico; +2018-11-16T08:02:42Z;Nathália;2478.932;114417058;Mexico; +2018-11-16T07:44:01Z;Armando;3492.08;114904471;Mexico; +2018-11-16T07:39:54Z;Sandra;5433.64;115917616;Mexico; +2018-11-16T07:36:52Z;Júlio;756.2348;114314159;Mexico; +2018-11-16T06:31:28Z;Júlio;1768.583;115340378;Mexico; +2018-11-16T05:04:44Z;Nathália;2226.664;115202287;Mexico; +2018-11-16T04:46:24Z;Sandra;1891.101;115756346;Mexico; +2018-11-16T04:37:47Z;Ana;258.3802;114854105;Mexico; +2018-11-16T04:15:03Z;Ana;2280.809;116025484;Mexico; +2018-11-16T03:56:56Z;nathalia;689.3874;116360224;Mexico; +2018-11-16T02:25:45Z;Eduardo;4761.346;115164051;Mexico; +2018-11-16T02:23:35Z;Ana;1788.2;114696043;Mexico; +2018-11-16T02:16:32Z;Armando;2072.504;114768439;Mexico; +2018-11-16T02:15:25Z;Ana;2215.047;114518296;Mexico; +2018-11-16T01:15:23Z;Nathália;2749.287;114301931;Mexico; +2018-11-16T00:37:54Z;Júlio;986.4586;114471707;Mexico; +2018-11-16T00:13:16Z;Júlio Cesar;2248.654;114553931;Mexico; +2018-11-16T00:12:10Z;nathalia;1706.831;114941372;Mexico; +2018-11-16T00:04:26Z;Armando;289.5637;115742284;Mexico; +2018-11-16T00:01:02Z;Nathália;2095.675;114486100;Mexico; +2018-11-15T23:51:07Z;nathalia;1966.476;115312673;Mexico; +2018-11-15T23:22:21Z;Júlio Cesar;3074.92;114595521;Mexico; +2018-11-15T22:45:06Z;Nathália;90.96004;114750063;Mexico; +2018-11-15T22:25:56Z;Júlio Cesar;2601.988;115995777;Mexico; +2018-11-15T22:22:01Z;Sandra;2196.32;114442024;Mexico; +2018-11-15T21:30:23Z;Armando;1331.584;116137806;Mexico; +2018-11-15T20:48:24Z;Júlio;641.1645;116001702;Mexico; +2018-11-15T19:59:55Z;Ana;3445.111;115064710;Mexico; +2018-11-15T19:42:47Z;Eduardo;1665.41;114646681;Mexico; +2018-11-15T19:37:50Z;Júlio;1791.411;114422560;Mexico; +2018-11-15T19:18:31Z;Nathália;5637.596;114930600;Mexico; +2018-11-15T18:54:38Z;Júlio;579.357;115790320;Mexico; +2018-11-15T18:45:54Z;Ana;2340.974;116327831;Mexico; +2018-11-15T17:56:32Z;Armando;414.7431;115334403;Mexico; +2018-11-15T17:55:12Z;Eduardo;1970.721;114596494;Mexico; +2018-11-15T17:27:42Z;Júlio;4663.99;115510140;Mexico; +2018-11-15T17:12:25Z;Sandra;4494.047;115768369;Mexico; +2018-11-15T17:08:26Z;Armando;1208.398;114804310;Mexico; +2018-11-15T17:02:41Z;Armando;429.9429;115926407;Mexico; +2018-11-15T16:38:21Z;Armando;2178.861;114864456;Mexico; +2018-11-15T16:26:15Z;Nathália;1565.092;115769368;Mexico; +2018-11-15T15:57:15Z;Nathália;7580.645;115074018;Mexico; +2018-11-15T15:52:02Z;Ana;5335.743;116245766;Mexico; +2018-11-15T15:30:32Z;Armando;3125.428;114782224;Mexico; +2018-11-15T15:19:42Z;nathalia;2134.779;114883206;Mexico; +2018-11-15T15:19:24Z;Sandra;1169.521;116022423;Mexico; +2018-11-15T15:01:49Z;Ana;2072.893;115040675;Mexico; +2018-11-15T14:59:50Z;Ana;3644.183;114580689;Mexico; +2018-11-15T14:37:08Z;Sandra;3136.948;115865923;Mexico; +2018-11-15T14:32:47Z;Eduardo;1110.819;116338736;Mexico; +2018-11-15T14:17:46Z;Júlio Cesar;1104.939;115748574;Mexico; +2018-11-15T13:52:45Z;Ana;1362.072;115000587;Mexico; +2018-11-15T13:25:10Z;nathalia;2636.489;115743928;Mexico; +2018-11-15T13:16:46Z;Eduardo;2479.566;116148695;Mexico; +2018-11-15T12:55:23Z;Júlio;1372.716;116243801;Mexico; +2018-11-15T12:50:36Z;Nathália;2485.049;115173550;Mexico; +2018-11-15T12:49:15Z;Eduardo;2234.282;116127104;Mexico; +2018-11-15T12:46:25Z;Júlio Cesar;1059.609;114584907;Mexico; +2018-11-15T12:09:25Z;Sandra;1251.009;115603239;Mexico; +2018-11-15T12:04:39Z;Júlio;423.8083;114220884;Mexico; +2018-11-15T11:42:53Z;Sandra;312.1906;114588680;Mexico; +2018-11-15T11:42:06Z;Ana;960.5417;114255666;Mexico; +2018-11-15T11:25:47Z;Ana;54.29205;114431010;Mexico; +2018-11-15T11:18:25Z;Armando;1057.382;116372773;Mexico; +2018-11-15T11:10:51Z;Júlio Cesar;4193.902;114804371;Mexico; +2018-11-15T11:01:37Z;Armando;95.60429;115938141;Mexico; +2018-11-15T10:51:19Z;Júlio Cesar;3561.162;115756224;Mexico; +2018-11-15T10:41:24Z;Sandra;1720.809;115255166;Mexico; +2018-11-15T10:13:58Z;Júlio;1167.872;114907572;Mexico; +2018-11-15T10:01:06Z;Ana;247.3388;116251705;Mexico; +2018-11-15T09:39:42Z;Júlio;1615.557;116123821;Mexico; +2018-11-15T09:34:00Z;Eduardo;4115.196;115600507;Mexico; +2018-11-15T09:22:23Z;Nathália;28.86354;115867111;Mexico; +2018-11-15T09:20:14Z;Armando;32.41555;115512503;Mexico; +2018-11-15T09:18:57Z;Eduardo;2319.928;115310921;Mexico; +2018-11-15T09:01:12Z;Nathália;109.0935;116375948;Mexico; +2018-11-15T08:40:37Z;nathalia;217.3699;114539049;Mexico; +2018-11-15T08:03:54Z;Sandra;368.9936;115393233;Mexico; +2018-11-15T07:25:24Z;Armando;2562.85;114657441;Mexico; +2018-11-15T06:59:17Z;Eduardo;131.618;114683795;Mexico; +2018-11-15T06:58:38Z;Armando;102.3479;115773777;Mexico; +2018-11-15T06:35:25Z;Eduardo;1213.848;116279161;Mexico; +2018-11-15T06:32:40Z;nathalia;610.6491;115646010;Mexico; +2018-11-15T06:29:32Z;Júlio;2888.169;115992458;Mexico; +2018-11-15T06:08:51Z;Sandra;5145.446;116262792;Mexico; +2018-11-15T05:32:57Z;Sandra;821.4189;116397576;Mexico; +2018-11-15T05:30:42Z;Ana;5165.125;115506696;Mexico; +2018-11-15T04:50:22Z;Júlio;881.3353;114205359;Mexico; +2018-11-15T04:10:26Z;Júlio Cesar;488.0275;115155847;Mexico; +2018-11-15T04:07:18Z;Eduardo;174.4275;115803815;Mexico; +2018-11-15T04:01:53Z;Júlio Cesar;378.6915;116251056;Mexico; +2018-11-15T03:52:04Z;Júlio Cesar;2038.132;114584192;Mexico; +2018-11-15T03:46:54Z;Armando;1156.743;115772907;Mexico; +2018-11-15T03:25:30Z;Júlio;400.3826;115625444;Mexico; +2018-11-15T03:16:44Z;Júlio;2115.171;115611196;Mexico; +2018-11-15T03:14:42Z;Nathália;3281.261;114538874;Mexico; +2018-11-15T02:24:48Z;Armando;1191.44;115633684;Mexico; +2018-11-15T02:15:27Z;Armando;27.80237;116307974;Mexico; +2018-11-15T02:07:11Z;Eduardo;2037.259;114736692;Mexico; +2018-11-15T01:55:19Z;Júlio Cesar;3011.024;115143615;Mexico; +2018-11-15T01:35:48Z;Sandra;4466.86;115776219;Mexico; +2018-11-15T01:30:52Z;Sandra;1820.201;115069485;Mexico; +2018-11-15T01:19:50Z;Nathália;1050.097;114223761;Mexico; +2018-11-15T00:46:46Z;Nathália;1524.574;114922770;Mexico; +2018-11-15T00:39:13Z;nathalia;606.4028;114618692;Mexico; +2018-11-14T23:51:54Z;Armando;3364.622;115407287;Mexico; +2018-11-14T23:31:42Z;Eduardo;502.9071;116346932;Mexico; +2018-11-14T23:20:45Z;nathalia;2361.89;115917925;Mexico; +2018-11-14T23:03:46Z;Ana;275.8641;116377006;Mexico; +2018-11-14T22:56:35Z;Júlio Cesar;466.8635;115231594;Mexico; +2018-11-14T22:52:25Z;Nathália;1230.747;115464794;Mexico; +2018-11-14T22:29:45Z;Nathália;165.3538;115732941;Mexico; +2018-11-14T22:28:13Z;Júlio;2292.992;115665447;Mexico; +2018-11-14T22:20:30Z;Eduardo;1066.828;114954430;Mexico; +2018-11-14T22:16:29Z;nathalia;985.0268;115109860;Mexico; +2018-11-14T21:49:59Z;nathalia;61.0318;116248946;Mexico; +2018-11-14T21:49:46Z;Eduardo;41.0317;115274409;Mexico; +2018-11-14T21:43:59Z;nathalia;1027.005;115523229;Mexico; +2018-11-14T21:25:59Z;Júlio;687.9971;115727862;Mexico; +2018-11-14T21:09:24Z;Nathália;3550.35;114881880;Mexico; +2018-11-14T21:05:41Z;Armando;978.4152;115254938;Mexico; +2018-11-14T20:44:06Z;Nathália;4225.047;115909992;Mexico; +2018-11-14T20:38:48Z;Ana;2164.345;114551241;Mexico; +2018-11-14T20:27:36Z;Eduardo;1344.897;115194714;Mexico; +2018-11-14T20:13:15Z;Júlio;6240.906;114941947;Mexico; +2018-11-14T20:06:07Z;Eduardo;3529.865;114766291;Mexico; +2018-11-14T20:05:23Z;Armando;1244.33;114927435;Mexico; +2018-11-14T20:04:41Z;nathalia;1107.062;115979692;Mexico; +2018-11-14T19:58:38Z;Eduardo;2477.509;115299746;Mexico; +2018-11-14T19:55:53Z;Júlio Cesar;2508.484;114880059;Mexico; +2018-11-14T19:40:23Z;Júlio Cesar;6222.678;116065665;Mexico; +2018-11-14T19:35:39Z;Eduardo;1064.308;115619205;Mexico; +2018-11-14T19:33:49Z;Júlio;359.0097;115297529;Mexico; +2018-11-14T19:31:41Z;Nathália;4453.893;114875894;Mexico; +2018-11-14T19:24:58Z;Júlio Cesar;1319.791;115401511;Mexico; +2018-11-14T19:06:38Z;nathalia;7387.768;115146056;Mexico; +2018-11-14T19:03:42Z;Eduardo;5029.15;114529624;Mexico; +2018-11-14T18:48:56Z;Armando;6030.133;115080113;Mexico; +2018-11-14T18:33:15Z;Júlio Cesar;3722.226;115410217;Mexico; +2018-11-14T18:20:09Z;Ana;1329.463;114845974;Mexico; +2018-11-14T18:16:55Z;Eduardo;888.4462;116259022;Mexico; +2018-11-14T18:07:44Z;nathalia;3577.715;114202487;Mexico; +2018-11-14T17:16:28Z;Júlio Cesar;5139.278;114803183;Mexico; +2018-11-14T17:04:35Z;Júlio;389.8967;114653168;Mexico; +2018-11-14T16:36:39Z;Sandra;3092.996;115846141;Mexico; +2018-11-14T15:44:04Z;Júlio;2033.464;115202940;Mexico; +2018-11-14T15:31:55Z;Júlio Cesar;256.9513;115781101;Mexico; +2018-11-14T15:06:34Z;Eduardo;4314.027;114663322;Mexico; +2018-11-14T14:53:42Z;Ana;872.2589;114412278;Mexico; +2018-11-14T14:46:42Z;Júlio Cesar;299.7841;116395596;Mexico; +2018-11-14T14:18:08Z;Ana;229.655;115369413;Mexico; +2018-11-14T14:17:21Z;Eduardo;2688.741;114412517;Mexico; +2018-11-14T14:16:14Z;Nathália;266.902;114356475;Mexico; +2018-11-14T14:14:14Z;Júlio;3657.526;114237272;Mexico; +2018-11-14T14:10:54Z;Ana;2571.363;114400817;Mexico; +2018-11-14T14:10:45Z;Armando;1844.169;115453843;Mexico; +2018-11-14T13:46:59Z;nathalia;797.7956;115840818;Mexico; +2018-11-14T13:33:30Z;Nathália;1707.787;116277206;Mexico; +2018-11-14T13:25:45Z;Eduardo;1393.954;114541051;Mexico; +2018-11-14T13:15:50Z;nathalia;2640.1;115854270;Mexico; +2018-11-14T13:14:03Z;Eduardo;2268.17;114974037;Mexico; +2018-11-14T12:48:19Z;nathalia;1865.546;114339518;Mexico; +2018-11-14T12:02:55Z;Sandra;1188.267;114714868;Mexico; +2018-11-14T11:49:16Z;Ana;1022.714;114597505;Mexico; +2018-11-14T11:27:29Z;Eduardo;840.7327;114761469;Mexico; +2018-11-14T11:10:38Z;nathalia;830.7531;114767019;Mexico; +2018-11-14T11:00:43Z;Nathália;3317.247;115196444;Mexico; +2018-11-14T10:43:05Z;Sandra;109.1022;115192391;Mexico; +2018-11-14T10:02:50Z;Júlio Cesar;132.3794;116378758;Mexico; +2018-11-14T09:55:05Z;Armando;140.1281;114706085;Mexico; +2018-11-14T09:43:52Z;Júlio Cesar;1542.183;114241191;Mexico; +2018-11-14T08:55:27Z;Ana;2008.127;115749310;Mexico; +2018-11-14T08:48:22Z;nathalia;2633.171;116232741;Mexico; +2018-11-14T08:18:55Z;Armando;308.7779;115693255;Mexico; +2018-11-14T08:14:41Z;nathalia;2117.554;114225542;Mexico; +2018-11-14T07:27:13Z;Júlio;1392.731;115777040;Mexico; +2018-11-14T07:16:59Z;Eduardo;2307.806;114435272;Mexico; +2018-11-14T07:12:21Z;Ana;141.5953;116249930;Mexico; +2018-11-14T06:40:22Z;Eduardo;941.254;115523320;Mexico; +2018-11-14T06:32:36Z;Armando;294.4476;115069812;Mexico; +2018-11-14T06:14:32Z;Júlio;1775.738;115496782;Mexico; +2018-11-14T05:44:10Z;Nathália;951.7751;114490745;Mexico; +2018-11-14T05:40:34Z;Júlio;738.2789;115108008;Mexico; +2018-11-14T05:28:36Z;Júlio;3108.52;115308471;Mexico; +2018-11-14T05:08:11Z;Nathália;2947.108;116208015;Mexico; +2018-11-14T04:59:26Z;Júlio Cesar;1805.031;115839418;Mexico; +2018-11-14T04:53:25Z;Júlio;3299.232;115051293;Mexico; +2018-11-14T04:41:41Z;Júlio Cesar;2327.352;114289914;Mexico; +2018-11-14T04:32:16Z;Nathália;3008.752;114922830;Mexico; +2018-11-14T04:29:18Z;Nathália;5186.669;115610709;Mexico; +2018-11-14T04:25:21Z;Nathália;2699.125;114986054;Mexico; +2018-11-14T04:12:39Z;Armando;1407.293;115723453;Mexico; +2018-11-14T04:10:44Z;Nathália;508.2547;115777224;Mexico; +2018-11-14T04:02:19Z;Júlio;19.42668;114670593;Mexico; +2018-11-14T03:00:57Z;Eduardo;3182.372;115962607;Mexico; +2018-11-14T02:59:58Z;Júlio;6012.155;114255798;Mexico; +2018-11-14T02:47:11Z;Sandra;2042.228;115468936;Mexico; +2018-11-14T02:42:16Z;Ana;68.05975;115580648;Mexico; +2018-11-14T02:29:15Z;Nathália;931.5112;115078634;Mexico; +2018-11-14T02:06:12Z;Júlio;565.8513;115520398;Mexico; +2018-11-14T01:59:12Z;Armando;4908.842;114982042;Mexico; +2018-11-14T01:53:14Z;Sandra;1902.3;116168800;Mexico; +2018-11-14T00:10:14Z;Armando;4612.44;114756345;Mexico; +2018-11-13T23:54:51Z;Júlio Cesar;5574.933;116101461;Mexico; +2018-11-13T23:49:58Z;Armando;1059.102;115768637;Mexico; +2018-11-13T23:39:29Z;Júlio Cesar;1171.251;114897080;Mexico; +2018-11-13T23:05:49Z;Júlio Cesar;290.7124;116364318;Mexico; +2018-11-13T22:55:08Z;Júlio;1641.133;114908546;Mexico; +2018-11-13T22:20:32Z;Sandra;2082.811;114962510;Mexico; +2018-11-13T22:05:36Z;Júlio;347.3536;116373811;Mexico; +2018-11-13T21:55:31Z;Ana;862.4201;116088847;Mexico; +2018-11-13T21:41:55Z;Ana;397.6163;115314635;Mexico; +2018-11-13T21:30:17Z;Júlio;2531.656;115453049;Mexico; +2018-11-13T19:32:46Z;Ana;1856.668;114291328;Mexico; +2018-11-13T19:00:55Z;Eduardo;633.1454;114246282;Mexico; +2018-11-13T18:57:11Z;Armando;4588.551;115252604;Mexico; +2018-11-13T18:44:59Z;Júlio Cesar;5748.565;115604727;Mexico; +2018-11-13T18:37:10Z;Sandra;149.156;116141667;Mexico; +2018-11-13T18:30:41Z;Júlio Cesar;4953.859;115702139;Mexico; +2018-11-13T18:28:50Z;Nathália;970.2523;116261939;Mexico; +2018-11-13T18:01:15Z;nathalia;1964.25;115203512;Mexico; +2018-11-13T17:26:19Z;nathalia;843.9097;115576603;Mexico; +2018-11-13T17:22:41Z;Sandra;2258.403;115620258;Mexico; +2018-11-13T17:07:14Z;Júlio Cesar;260.2736;114677197;Mexico; +2018-11-13T16:49:32Z;Júlio Cesar;7446.577;115904883;Mexico; +2018-11-13T15:26:02Z;nathalia;2368.804;115379494;Mexico; +2018-11-13T15:09:46Z;nathalia;495.8214;114736825;Mexico; +2018-11-13T14:52:07Z;Eduardo;3213.272;114985790;Mexico; +2018-11-13T14:49:08Z;nathalia;960.0864;115713891;Mexico; +2018-11-13T14:19:41Z;Armando;2506.115;114664047;Mexico; +2018-11-13T13:39:27Z;Júlio;109.6219;115006598;Mexico; +2018-11-13T13:26:40Z;nathalia;1038.854;115043825;Mexico; +2018-11-13T12:56:57Z;nathalia;3655.076;114498153;Mexico; +2018-11-13T12:32:31Z;Nathália;5342.977;114667414;Mexico; +2018-11-13T12:30:37Z;Armando;884.3963;114251912;Mexico; +2018-11-13T12:17:46Z;Armando;4206.644;114799199;Mexico; +2018-11-13T12:13:00Z;Eduardo;2.688768;114346051;Mexico; +2018-11-13T11:52:19Z;Júlio;2638.939;115956771;Mexico; +2018-11-13T11:45:27Z;Júlio Cesar;414.1815;115341989;Mexico; +2018-11-13T11:31:08Z;Júlio Cesar;1308.686;116213199;Mexico; +2018-11-13T11:19:50Z;Ana;886.1608;114622981;Mexico; +2018-11-13T11:17:58Z;Armando;9.39341;115292984;Mexico; +2018-11-13T11:02:34Z;Eduardo;420.5551;115620583;Mexico; +2018-11-13T10:07:13Z;Nathália;1423.335;114278563;Mexico; +2018-11-13T10:03:45Z;Armando;1544.916;115095102;Mexico; +2018-11-13T09:24:09Z;Eduardo;136.2943;115201934;Mexico; +2018-11-13T09:22:06Z;Júlio Cesar;2010.896;115338353;Mexico; +2018-11-13T09:14:48Z;Júlio Cesar;234.416;116045523;Mexico; +2018-11-13T08:46:36Z;Júlio;1220.986;115293807;Mexico; +2018-11-13T08:40:04Z;Eduardo;103.0166;116394681;Mexico; +2018-11-13T07:58:47Z;Armando;635.519;114276664;Mexico; +2018-11-13T07:11:20Z;nathalia;469.5557;116115479;Mexico; +2018-11-13T07:08:00Z;Ana;1442.525;115397204;Mexico; +2018-11-13T06:53:33Z;Nathália;848.781;115535695;Mexico; +2018-11-13T06:27:21Z;Júlio Cesar;1408.782;115146221;Mexico; +2018-11-13T06:21:36Z;Eduardo;1123.275;115691427;Mexico; +2018-11-13T06:07:27Z;Ana;4073.581;114683818;Mexico; +2018-11-13T06:04:20Z;Armando;3753.849;114913695;Mexico; +2018-11-13T06:02:07Z;nathalia;2998.002;114754180;Mexico; +2018-11-13T05:48:37Z;Nathália;1383.677;114656834;Mexico; +2018-11-13T05:41:13Z;Nathália;1471.342;116136848;Mexico; +2018-11-13T05:08:58Z;Júlio Cesar;3999.88;116057613;Mexico; +2018-11-13T05:08:50Z;Júlio Cesar;1126.152;115226023;Mexico; +2018-11-13T05:07:59Z;Júlio;3847.601;115945622;Mexico; +2018-11-13T05:06:59Z;Armando;4596.803;116082475;Mexico; +2018-11-13T05:00:46Z;Ana;4498.182;115718505;Mexico; +2018-11-13T04:52:44Z;Júlio;4793.922;115614304;Mexico; +2018-11-13T04:43:23Z;Eduardo;218.2371;116377352;Mexico; +2018-11-13T04:40:53Z;Ana;750.8989;114785328;Mexico; +2018-11-13T04:08:27Z;Sandra;2643.709;115520841;Mexico; +2018-11-13T03:56:25Z;Ana;5034.607;114571723;Mexico; +2018-11-13T03:10:01Z;Júlio;3916.355;116251522;Mexico; +2018-11-13T03:08:53Z;Sandra;2844.671;114290828;Mexico; +2018-11-13T02:55:35Z;Júlio;841.6329;114544171;Mexico; +2018-11-13T02:52:36Z;Eduardo;2698.008;114621800;Mexico; +2018-11-13T02:23:58Z;Júlio Cesar;204.5327;115267306;Mexico; +2018-11-13T02:12:16Z;Júlio Cesar;200.9917;115098096;Mexico; +2018-11-13T02:10:21Z;Sandra;188.2115;115504405;Mexico; +2018-11-13T01:30:12Z;Júlio;1510.275;115435166;Mexico; +2018-11-13T00:55:52Z;Ana;3017.214;116127475;Mexico; +2018-11-13T00:40:44Z;Nathália;957.9087;114909328;Mexico; +2018-11-13T00:37:43Z;Nathália;1900.37;115183185;Mexico; +2018-12-06T21:48:54Z;Sandra;4830.607;114588002;Peru; +2018-12-06T21:42:54Z;Sandra;4098.347;116293275;Peru; +2018-12-06T21:34:09Z;Júlio Cesar;2363.088;114793907;Peru; +2018-12-06T21:10:07Z;Ana;5648.74;115591439;Peru; +2018-12-06T21:09:18Z;nathalia;446.4653;114939043;Peru; +2018-12-06T20:43:39Z;Eduardo;79.83377;116345333;Peru; +2018-12-06T20:40:11Z;Júlio;697.3612;114932888;Peru; +2018-12-06T20:25:47Z;Júlio Cesar;3434.833;115287119;Peru; +2018-12-06T20:16:39Z;Armando;1308.204;115504060;Peru; +2018-12-06T20:09:49Z;Nathália;3285.853;116117324;Peru; +2018-12-06T20:00:03Z;Armando;5090.043;116220873;Peru; +2018-12-06T19:57:17Z;nathalia;69.34432;116191822;Peru; +2018-12-06T19:20:18Z;Sandra;2451.12;116215434;Peru; +2018-12-06T18:59:44Z;nathalia;3396.494;114514430;Peru; +2018-12-06T18:42:11Z;Sandra;4761.761;116256167;Peru; +2018-12-06T18:19:34Z;Armando;406.3698;114782664;Peru; +2018-12-06T17:49:48Z;Armando;10427.54;114806745;Peru; +2018-12-06T17:48:52Z;Armando;521.312;114479133;Peru; +2018-12-06T17:42:48Z;Eduardo;936.6427;116191900;Peru; +2018-12-06T17:36:22Z;Júlio;7064.189;115378866;Peru; +2018-12-06T17:14:45Z;Armando;2700.462;114786624;Peru; +2018-12-06T17:10:49Z;nathalia;10147.48;115500483;Peru; +2018-12-06T17:08:57Z;Sandra;3870.188;115381896;Peru; +2018-12-06T17:07:53Z;Sandra;3252.357;114246016;Peru; +2018-12-06T17:04:40Z;Ana;3752.471;115639161;Peru; +2018-12-06T16:58:15Z;Júlio;2458.774;114585814;Peru; +2018-12-06T16:55:13Z;nathalia;3141.904;114698944;Peru; +2018-12-06T16:25:09Z;Nathália;3573.769;116372519;Peru; +2018-12-06T16:12:38Z;Eduardo;5956.311;114204039;Peru; +2018-12-06T16:06:04Z;Júlio Cesar;7187.371;115858173;Peru; +2018-12-06T15:59:30Z;nathalia;3679.482;115433670;Peru; +2018-12-06T15:56:49Z;Sandra;9014.154;115072214;Peru; +2018-12-06T15:52:02Z;Armando;6603.038;115607626;Peru; +2018-12-06T15:51:23Z;Sandra;2053.723;115695151;Peru; +2018-12-06T15:37:35Z;Nathália;1017.935;114299194;Peru; +2018-12-06T15:35:54Z;Ana;84.3191;115531876;Peru; +2018-12-06T15:32:38Z;Júlio Cesar;1214.547;115490105;Peru; +2018-12-06T15:15:38Z;Ana;4170.994;115251098;Peru; +2018-12-06T15:02:11Z;Eduardo;3978.304;114379072;Peru; +2018-12-06T14:39:24Z;Sandra;5430.914;115090204;Peru; +2018-12-06T14:35:08Z;nathalia;7299.314;115916737;Peru; +2018-12-06T14:34:25Z;Ana;5591.438;114309898;Peru; +2018-12-06T14:29:38Z;Ana;851.8108;114335037;Peru; +2018-12-06T14:15:51Z;Eduardo;597.3871;116118763;Peru; +2018-12-06T13:48:23Z;Júlio;713.6113;115275993;Peru; +2018-12-06T13:32:11Z;Júlio;8859.963;116023802;Peru; +2018-12-06T13:18:31Z;Sandra;9062.275;115365692;Peru; +2018-12-06T13:15:17Z;Sandra;11377.43;115772005;Peru; +2018-12-06T13:07:15Z;Eduardo;5760.758;114755916;Peru; +2018-12-06T12:18:03Z;Júlio;1160.847;114455624;Peru; +2018-12-06T11:33:47Z;Nathália;2014.672;114870723;Peru; +2018-12-06T11:20:23Z;Nathália;860.3632;116347523;Peru; +2018-12-06T11:11:05Z;Eduardo;4323.04;116087998;Peru; +2018-12-06T11:04:58Z;Júlio;1195.48;115340510;Peru; +2018-12-06T11:03:25Z;Ana;7812.859;115367993;Peru; +2018-12-06T10:48:23Z;Eduardo;289.312;114216419;Peru; +2018-12-06T10:29:23Z;Júlio;1857.636;116087896;Peru; +2018-12-06T10:29:20Z;Nathália;3750.111;115444978;Peru; +2018-12-06T10:25:10Z;Ana;8992.713;114294067;Peru; +2018-12-06T10:21:41Z;Sandra;10259.18;114405748;Peru; +2018-12-06T10:19:19Z;nathalia;2135.251;114220766;Peru; +2018-12-06T10:18:01Z;Ana;1011.408;114720305;Peru; +2018-12-06T10:16:40Z;Júlio Cesar;8532.492;115405061;Peru; +2018-12-06T09:39:53Z;Júlio Cesar;7392.432;114832778;Peru; +2018-12-06T09:24:18Z;Júlio;6997.622;115254491;Peru; +2018-12-06T09:00:55Z;Armando;4343.326;115732977;Peru; +2018-12-06T08:52:09Z;Nathália;4593.627;114547222;Peru; +2018-12-06T08:25:31Z;nathalia;1743.442;115188650;Peru; +2018-12-06T08:23:21Z;Ana;1570.13;115830268;Peru; +2018-12-06T07:53:54Z;Armando;9391.677;115273699;Peru; +2018-12-06T07:18:46Z;Ana;3373.106;114901930;Peru; +2018-12-06T06:52:46Z;Sandra;4084.747;114571067;Peru; +2018-12-06T06:40:23Z;Sandra;1877.788;116161318;Peru; +2018-12-06T06:27:26Z;Nathália;454.866;116118430;Peru; +2018-12-06T06:15:23Z;Júlio Cesar;1601.953;114895599;Peru; +2018-12-06T06:00:49Z;nathalia;2204.9;114352229;Peru; +2018-12-06T05:46:07Z;Armando;1040.421;114570278;Peru; +2018-12-06T05:35:34Z;Ana;2852.32;114357708;Peru; +2018-12-06T05:29:15Z;Armando;342.9857;115882320;Peru; +2018-12-06T05:07:10Z;Sandra;3035.703;114905794;Peru; +2018-12-06T05:05:54Z;Júlio Cesar;5564.867;114468435;Peru; +2018-12-06T04:59:17Z;Júlio Cesar;2202.836;116220482;Peru; +2018-12-06T04:44:27Z;Nathália;10386.44;116174006;Peru; +2018-12-06T04:30:40Z;Eduardo;528.1894;115496935;Peru; +2018-12-06T04:25:57Z;Ana;762.5657;115959259;Peru; +2018-12-06T04:22:05Z;nathalia;6016.455;114570225;Peru; +2018-12-06T04:12:19Z;Júlio Cesar;5834.55;115990321;Peru; +2018-12-06T04:06:58Z;Nathália;4662.96;115803477;Peru; +2018-12-06T04:06:09Z;Eduardo;3586.98;115186460;Peru; +2018-12-06T04:02:05Z;nathalia;9839.032;116134066;Peru; +2018-12-06T04:01:13Z;nathalia;1251.252;115611774;Peru; +2018-12-06T03:48:27Z;Nathália;4990.577;115726861;Peru; +2018-12-06T03:47:40Z;nathalia;3122.612;115909276;Peru; +2018-12-06T03:42:53Z;Sandra;5073.572;116113670;Peru; +2018-12-06T03:33:08Z;Nathália;2443.056;115845417;Peru; +2018-12-06T02:52:53Z;Júlio;7400.655;114848059;Peru; +2018-12-06T02:36:05Z;Ana;785.7827;115685599;Peru; +2018-12-06T02:22:05Z;Sandra;3377.109;114593401;Peru; +2018-12-06T01:57:00Z;Júlio Cesar;4643.014;114566302;Peru; +2018-12-06T01:33:33Z;Sandra;1065.084;114961899;Peru; +2018-12-06T01:31:21Z;Júlio Cesar;1678.433;114555852;Peru; +2018-12-06T01:25:44Z;nathalia;5286.825;115530978;Peru; +2018-12-06T01:24:04Z;Júlio;5870.063;114330290;Peru; +2018-12-06T01:08:40Z;nathalia;4106.673;116251129;Peru; +2018-12-06T01:01:58Z;Júlio Cesar;575.3149;114991898;Peru; +2018-12-06T01:01:36Z;Ana;5044.007;114742263;Peru; +2018-12-06T00:58:19Z;Júlio Cesar;3210.607;115125369;Peru; +2018-12-06T00:46:25Z;Sandra;5848.597;116370653;Peru; +2018-12-06T00:25:06Z;Armando;2835.243;115984002;Peru; +2018-12-06T00:08:27Z;Nathália;940.6619;115733928;Peru; +2018-12-06T00:00:48Z;Eduardo;237.0196;116389811;Peru; +2018-12-05T23:48:05Z;nathalia;3375.464;114356399;Peru; +2018-12-05T23:40:05Z;Eduardo;4149.641;114478906;Peru; +2018-12-05T23:03:47Z;Sandra;9104.018;115578204;Peru; +2018-12-05T22:21:13Z;Eduardo;3147.76;115969736;Peru; +2018-12-05T22:17:28Z;Eduardo;1881.961;116316411;Peru; +2018-12-05T22:11:29Z;Armando;5902.583;116245255;Peru; +2018-12-05T22:07:49Z;Armando;5812.047;115358143;Peru; +2018-12-05T22:06:19Z;Nathália;7379.839;115263854;Peru; +2018-12-05T20:59:15Z;Armando;4185.46;116007956;Peru; +2018-12-05T20:47:19Z;Júlio;8885.949;114991407;Peru; +2018-12-05T20:10:34Z;Nathália;3324.597;114387911;Peru; +2018-12-05T19:59:39Z;Eduardo;3502.953;116076121;Peru; +2018-12-05T19:49:39Z;Nathália;7160.67;116365619;Peru; +2018-12-05T19:44:59Z;Júlio;1341.972;115792135;Peru; +2018-12-05T19:41:55Z;Júlio Cesar;8362.849;115961955;Peru; +2018-12-05T19:24:26Z;Sandra;4673.524;116344472;Peru; +2018-12-05T19:10:34Z;Ana;1882.658;115957360;Peru; +2018-12-05T19:02:10Z;Ana;3682.58;114803461;Peru; +2018-12-05T18:48:51Z;Júlio;200.0719;114700117;Peru; +2018-12-05T18:46:15Z;Eduardo;3462.979;114337925;Peru; +2018-12-05T17:50:13Z;Nathália;3671.377;115945738;Peru; +2018-12-05T17:43:19Z;nathalia;2828.321;115411550;Peru; +2018-12-05T17:30:52Z;Júlio Cesar;4964.252;116216997;Peru; +2018-12-05T17:20:43Z;Sandra;1479.924;115988790;Peru; +2018-12-05T17:17:43Z;Ana;4574.891;115842568;Peru; +2018-12-05T17:00:46Z;nathalia;12965.51;116354440;Peru; +2018-12-05T16:40:06Z;Ana;4199.165;115987405;Peru; +2018-12-05T15:58:03Z;Júlio Cesar;7140.905;114581880;Peru; +2018-12-05T15:36:15Z;nathalia;5121.396;114750971;Peru; +2018-12-05T15:21:01Z;Sandra;5749.097;115258194;Peru; +2018-12-05T14:58:06Z;Júlio Cesar;7857.19;116264760;Peru; +2018-12-05T13:45:18Z;Júlio;1123.648;115199224;Peru; +2018-12-05T13:18:24Z;Armando;1486.584;115768341;Peru; +2018-12-05T13:03:06Z;Júlio;11287.57;115610469;Peru; +2018-12-05T12:35:55Z;Armando;2219.923;115076975;Peru; +2018-12-05T12:25:57Z;Ana;4688.46;115790045;Peru; +2018-12-05T11:46:44Z;Sandra;11187.17;115553194;Peru; +2018-12-05T11:43:15Z;Júlio Cesar;8085.324;115071918;Peru; +2018-12-05T11:17:05Z;Sandra;8343.08;115512304;Peru; +2018-12-05T11:00:01Z;Nathália;1461.105;115047595;Peru; +2018-12-05T10:59:27Z;Armando;3247.805;115406658;Peru; +2018-12-05T10:45:31Z;Ana;616.5352;116180632;Peru; +2018-12-05T10:35:57Z;Júlio Cesar;3788.355;115887231;Peru; +2018-12-05T10:09:01Z;Armando;7737.862;115167605;Peru; +2018-12-05T10:00:24Z;Ana;10017.25;114392560;Peru; +2018-12-05T09:29:40Z;Júlio;3199.647;115638067;Peru; +2018-12-05T09:23:07Z;Nathália;1649.723;114694953;Peru; +2018-12-05T09:21:17Z;Júlio;2207.154;115149979;Peru; +2018-12-05T08:56:32Z;Júlio Cesar;3003.291;115744761;Peru; +2018-12-05T08:35:33Z;Sandra;10999.92;114425469;Peru; +2018-12-05T08:26:50Z;Júlio;3020.924;115073446;Peru; +2018-12-05T08:20:16Z;Júlio Cesar;1224.49;114877808;Peru; +2018-12-05T08:17:48Z;Sandra;1727.995;115167137;Peru; +2018-12-05T08:15:15Z;Sandra;4973.499;115687838;Peru; +2018-12-05T07:58:25Z;Eduardo;5624.073;115048724;Peru; +2018-12-05T07:52:13Z;Nathália;155.3478;116157216;Peru; +2018-12-05T07:38:50Z;Ana;6867.676;116337858;Peru; +2018-12-05T07:37:31Z;Sandra;2199.879;114478670;Peru; +2018-12-05T07:29:47Z;nathalia;4572.901;114512927;Peru; +2018-12-05T07:18:53Z;Júlio Cesar;567.1394;114821899;Peru; +2018-12-05T07:13:10Z;Ana;1131.492;116349377;Peru; +2018-12-05T06:55:26Z;Júlio;1990.66;115331196;Peru; +2018-12-05T06:46:39Z;Nathália;1433.351;116289927;Peru; +2018-12-05T06:36:54Z;Nathália;3440.574;114419429;Peru; +2018-12-05T06:34:58Z;Ana;6125.316;115068010;Peru; +2018-12-05T05:50:20Z;Júlio Cesar;4768.996;115536271;Peru; +2018-12-05T05:27:19Z;Júlio Cesar;799.3125;116187518;Peru; +2018-12-05T05:09:02Z;Júlio Cesar;1828.829;116361920;Peru; +2018-12-05T04:56:24Z;nathalia;1729.517;114624162;Peru; +2018-12-05T04:21:07Z;Júlio Cesar;3865.004;116157699;Peru; +2018-12-05T04:20:23Z;Júlio;1568.906;114225258;Peru; +2018-12-05T04:11:35Z;Júlio;3521.515;115267185;Peru; +2018-12-05T04:01:32Z;Eduardo;3280.755;115587885;Peru; +2018-12-05T03:46:54Z;Júlio Cesar;1156.63;115926104;Peru; +2018-12-05T02:59:18Z;Nathália;1324.128;115233832;Peru; +2018-12-05T02:05:28Z;Sandra;4234.846;116251793;Peru; +2018-12-05T02:03:02Z;Ana;6683.04;114862044;Peru; +2018-12-05T01:56:34Z;Eduardo;360.1858;115692127;Peru; +2018-12-05T01:44:22Z;nathalia;466.8705;115828075;Peru; +2018-12-05T01:12:54Z;Júlio;1902.697;114212490;Peru; +2018-12-05T00:36:44Z;Júlio Cesar;518.0221;116170366;Peru; +2018-12-05T00:33:49Z;Sandra;6820.895;115979702;Peru; +2018-12-05T00:18:54Z;Nathália;5739.763;116178677;Peru; +2018-12-04T23:23:08Z;Sandra;5668.622;116232453;Peru; +2018-12-04T22:52:52Z;Ana;7224.904;114450538;Peru; +2018-12-04T22:37:49Z;Júlio Cesar;3157.893;114705307;Peru; +2018-12-04T22:36:32Z;Eduardo;6561.581;116065403;Peru; +2018-12-04T22:36:19Z;Júlio Cesar;3618.64;114950757;Peru; +2018-12-04T22:31:44Z;Nathália;4943.181;114597846;Peru; +2018-12-04T22:30:04Z;nathalia;5720.178;114546489;Peru; +2018-12-04T22:05:42Z;Nathália;5855.561;114576613;Peru; +2018-12-04T21:57:44Z;Júlio;5027.421;115995746;Peru; +2018-12-04T21:41:58Z;Júlio Cesar;4281.494;115022615;Peru; +2018-12-04T21:00:48Z;Nathália;6750.379;115870478;Peru; +2018-12-04T20:54:33Z;Júlio Cesar;6552.387;114940590;Peru; +2018-12-04T20:54:31Z;Eduardo;361.0193;116255987;Peru; +2018-12-04T20:41:17Z;Eduardo;380.4467;114764654;Peru; +2018-12-04T20:29:54Z;Ana;3468.299;115913445;Peru; +2018-12-04T20:21:55Z;nathalia;375.4197;115160988;Peru; +2018-12-04T20:10:03Z;Ana;2571.399;116010905;Peru; +2018-12-04T19:50:12Z;Júlio;129.4537;115390699;Peru; +2018-12-04T19:31:41Z;Júlio Cesar;12260.91;114204029;Peru; +2018-12-04T19:18:43Z;Júlio Cesar;2111.281;116125603;Peru; +2018-12-04T19:13:23Z;Ana;3007.314;114480746;Peru; +2018-12-04T19:08:14Z;Armando;1286.427;115453286;Peru; +2018-12-04T18:51:08Z;Júlio;1664.31;114211829;Peru; +2018-12-04T18:47:55Z;Ana;924.9032;114205919;Peru; +2018-12-04T18:31:53Z;nathalia;7590.705;114885604;Peru; +2018-12-04T18:01:41Z;Eduardo;7661.673;115943137;Peru; +2018-12-04T17:58:50Z;Armando;783.3742;116378206;Peru; +2018-12-04T16:56:51Z;Júlio;744.6093;115487499;Peru; +2018-12-04T16:48:10Z;Eduardo;4107.092;115908123;Peru; +2018-12-04T16:23:10Z;Nathália;3078.282;114493540;Peru; +2018-12-04T16:12:18Z;Júlio;2544.667;115418059;Peru; +2018-12-04T16:03:49Z;Júlio Cesar;3938.998;114610343;Peru; +2018-12-04T16:02:47Z;Sandra;5130.874;114278534;Peru; +2018-12-04T15:10:04Z;Nathália;6595.644;116351587;Peru; +2018-12-04T14:54:22Z;Sandra;12703.83;114553068;Peru; +2018-12-04T14:25:24Z;Eduardo;7954.566;115261802;Peru; +2018-12-04T14:18:36Z;Sandra;518.2669;115748912;Peru; +2018-12-04T14:18:34Z;Ana;7855.902;115644442;Peru; +2018-12-04T14:02:23Z;nathalia;6558.623;115796852;Peru; +2018-12-04T13:58:45Z;Armando;6853.613;116046146;Peru; +2018-12-04T13:36:18Z;nathalia;775.6725;114833139;Peru; +2018-12-04T13:04:35Z;Júlio;3948.998;115832476;Peru; +2018-12-04T12:50:44Z;Armando;995.407;116247169;Peru; +2018-12-04T12:33:41Z;Nathália;3462.662;114864966;Peru; +2018-12-04T12:08:44Z;nathalia;1683.964;114200373;Peru; +2018-12-04T11:44:31Z;nathalia;2588.59;115527493;Peru; +2018-12-04T11:25:10Z;Sandra;5347.002;115929383;Peru; +2018-12-04T11:21:29Z;Eduardo;2388.434;116351761;Peru; +2018-12-04T11:16:54Z;Eduardo;2601.446;115133693;Peru; +2018-12-04T11:03:11Z;Armando;6559.181;115626570;Peru; +2018-12-04T10:59:03Z;Nathália;3008.02;115343277;Peru; +2018-12-04T10:46:38Z;nathalia;4863.541;115356690;Peru; +2018-12-04T10:29:17Z;nathalia;1043.523;115129846;Peru; +2018-12-04T10:17:03Z;Sandra;5245.839;115266314;Peru; +2018-12-04T10:06:58Z;nathalia;11298.34;115161836;Peru; +2018-12-04T09:48:11Z;Júlio;106.6405;114398512;Peru; +2018-12-04T09:28:21Z;Sandra;3804.472;115733735;Peru; +2018-12-04T09:18:22Z;Nathália;1857.94;115521183;Peru; +2018-12-04T09:11:56Z;Sandra;1108.491;114715369;Peru; +2018-12-04T09:07:02Z;Júlio;2275.239;116306362;Peru; +2018-12-04T09:06:04Z;Nathália;3415.737;115855043;Peru; +2018-12-04T08:53:56Z;nathalia;154.8884;115120623;Peru; +2018-12-04T08:51:49Z;Eduardo;12336.18;114343812;Peru; +2018-12-04T08:25:05Z;Júlio Cesar;4490.397;116211224;Peru; +2018-12-04T07:59:39Z;Ana;2130.737;114724041;Peru; +2018-12-04T07:43:26Z;Júlio;256.6828;115531666;Peru; +2018-12-04T07:29:30Z;Júlio;1038.214;114547905;Peru; +2018-12-04T07:23:49Z;Ana;5256.541;115815991;Peru; +2018-12-04T07:23:32Z;Nathália;5421.518;114408451;Peru; +2018-12-04T07:04:30Z;nathalia;3347.03;115777852;Peru; +2018-12-04T06:56:02Z;nathalia;136.9247;115533565;Peru; +2018-12-04T06:46:47Z;nathalia;886.5018;115926615;Peru; +2018-12-04T06:39:05Z;Nathália;6695.486;114617805;Peru; +2018-12-04T06:18:59Z;Júlio Cesar;6271.827;115582705;Peru; +2018-12-04T06:18:04Z;Sandra;473.788;115471524;Peru; +2018-12-04T06:12:44Z;Nathália;918.9865;114383519;Peru; +2018-12-04T05:58:00Z;Eduardo;8744.701;115373135;Peru; +2018-12-04T05:32:07Z;Eduardo;1885.06;115240393;Peru; +2018-12-04T05:07:49Z;Júlio Cesar;5905.094;115070975;Peru; +2018-12-04T04:57:28Z;Júlio;822.55;115395468;Peru; +2018-12-04T04:30:17Z;Nathália;1864.191;114313260;Peru; +2018-12-04T04:29:42Z;Júlio Cesar;5637.535;114974625;Peru; +2018-12-04T04:17:36Z;Eduardo;5711.076;115456742;Peru; +2018-12-04T04:05:14Z;nathalia;5920.192;114784341;Peru; +2018-12-04T03:59:12Z;Júlio Cesar;1550.871;116096099;Peru; +2018-12-04T03:40:16Z;Júlio;3141.167;114365271;Peru; +2018-12-04T03:08:50Z;Júlio Cesar;1344.962;114717061;Peru; +2018-12-04T03:04:16Z;Júlio Cesar;4667.961;114810169;Peru; +2018-12-04T02:57:17Z;Armando;5810.804;114848666;Peru; +2018-12-04T02:55:53Z;Nathália;441.4884;114700687;Peru; +2018-12-04T02:54:41Z;Nathália;3343.375;114610854;Peru; +2018-12-04T02:36:39Z;Armando;8129.352;115651615;Peru; +2018-12-04T02:19:17Z;Júlio Cesar;2336.066;115742744;Peru; +2018-12-04T02:08:49Z;Armando;8336.246;115570919;Peru; +2018-12-04T02:01:16Z;Júlio;48.07837;115322497;Peru; +2018-12-04T01:52:16Z;Armando;112.5502;115791236;Peru; +2018-12-04T01:44:00Z;Armando;9864.665;114229812;Peru; +2018-12-04T01:22:43Z;nathalia;432.0442;115102628;Peru; +2018-12-04T01:09:53Z;Júlio;1003.112;115371651;Peru; +2018-12-04T00:34:54Z;Ana;3417.88;114318138;Peru; +2018-12-04T00:24:06Z;Eduardo;3542.031;114788298;Peru; +2018-12-04T00:19:38Z;nathalia;141.1899;114297150;Peru; +2018-12-04T00:02:22Z;Eduardo;2282.321;115813410;Peru; +2018-12-03T23:56:59Z;Armando;2612.735;114789881;Peru; +2018-12-03T23:50:48Z;Nathália;5815.013;115131882;Peru; +2018-12-03T23:41:19Z;Nathália;246.6619;116244898;Peru; +2018-12-03T23:32:17Z;Ana;2768.497;114410213;Peru; +2018-12-03T22:53:59Z;Armando;3986.091;116194429;Peru; +2018-12-03T22:49:00Z;Júlio;32.63858;115129003;Peru; +2018-12-03T21:36:17Z;Ana;13345.19;114542902;Peru; +2018-12-03T21:33:32Z;Júlio Cesar;2981.908;115452372;Peru; +2018-12-03T21:26:42Z;Júlio;3430.849;115558875;Peru; +2018-12-03T21:01:15Z;Armando;1731.235;115761955;Peru; +2018-12-03T20:40:22Z;Armando;1933.096;114884830;Peru; +2018-12-03T20:14:46Z;Júlio;6374.176;114511856;Peru; +2018-12-03T19:56:47Z;Júlio Cesar;721.0499;114957680;Peru; +2018-12-03T19:48:18Z;Eduardo;8751.912;115622423;Peru; +2018-12-03T19:24:01Z;Nathália;6888.744;116315525;Peru; +2018-12-03T19:15:12Z;Eduardo;2602.006;116329978;Peru; +2018-12-03T18:33:11Z;Júlio;7285.336;115125146;Peru; +2018-12-03T18:06:08Z;Júlio;5575.254;115287222;Peru; +2018-12-03T17:58:33Z;Júlio Cesar;4499.368;116009293;Peru; +2018-12-03T17:23:10Z;Nathália;12175.4;114243414;Peru; +2018-12-03T17:10:31Z;Nathália;5278.201;114726404;Peru; +2018-12-03T17:02:45Z;Eduardo;12176.67;115552721;Peru; +2018-12-03T16:40:29Z;Júlio Cesar;6717.015;116131713;Peru; +2018-12-03T16:33:23Z;Sandra;12878.52;114976946;Peru; +2018-12-03T15:59:42Z;Armando;4160.499;115875095;Peru; +2018-12-03T15:55:04Z;Júlio;3988.416;114955347;Peru; +2018-12-03T15:50:32Z;Armando;8118.093;114856875;Peru; +2018-12-03T15:48:09Z;Eduardo;6053.816;116124551;Peru; +2018-12-03T15:23:03Z;Eduardo;3818.513;116204648;Peru; +2018-12-03T15:10:41Z;Sandra;28.64532;115828706;Peru; +2018-12-03T14:33:01Z;Júlio Cesar;11347.59;114981303;Peru; +2018-12-03T14:32:49Z;Ana;1424.443;116264506;Peru; +2018-12-03T14:29:38Z;Júlio;1664.144;115012778;Peru; +2018-12-03T14:21:39Z;Júlio Cesar;1534.872;114310231;Peru; +2018-12-03T13:28:09Z;nathalia;4889.692;116174113;Peru; +2018-12-03T13:20:27Z;nathalia;8138.168;115511378;Peru; +2018-12-03T13:20:19Z;Júlio;824.3336;115103463;Peru; +2018-12-03T13:06:05Z;nathalia;969.4183;114722141;Peru; +2018-12-03T13:03:12Z;Nathália;5904.706;116111890;Peru; +2018-12-03T12:59:36Z;Júlio Cesar;7715.737;114201256;Peru; +2018-12-03T12:55:26Z;Sandra;5440.832;115819870;Peru; +2018-12-03T12:48:57Z;Armando;6098.198;114881619;Peru; +2018-12-03T12:47:25Z;Júlio;8040.963;114865552;Peru; +2018-12-03T12:23:20Z;nathalia;9107.429;115492478;Peru; +2018-12-03T11:15:55Z;Júlio;8531.336;115220588;Peru; +2018-12-03T11:10:24Z;Eduardo;3159.429;114655726;Peru; +2018-12-03T10:59:54Z;Júlio;6992.114;115988579;Peru; +2018-12-03T10:40:25Z;Eduardo;3477.832;115609322;Peru; +2018-12-03T10:34:27Z;Armando;11692.22;116308678;Peru; +2018-12-03T10:33:50Z;Ana;2212.122;114513802;Peru; +2018-12-03T10:26:32Z;Júlio Cesar;166.3287;115089912;Peru; +2018-12-03T10:24:27Z;Armando;7284.601;116186863;Peru; +2018-12-03T10:22:15Z;Armando;8739.11;116124162;Peru; +2018-12-03T10:20:10Z;Nathália;8837.489;115812248;Peru; +2018-12-03T10:18:44Z;Ana;424.8074;114376387;Peru; +2018-12-03T10:01:44Z;Armando;5713.423;116270164;Peru; +2018-12-03T09:54:05Z;Júlio;9543.902;114291423;Peru; +2018-12-03T09:06:03Z;Sandra;5042.405;114670655;Peru; +2018-12-03T09:04:57Z;Sandra;1361.33;115025278;Peru; +2018-12-03T08:55:18Z;Sandra;8249.264;115141014;Peru; +2018-12-03T08:45:42Z;Ana;6062.602;115336593;Peru; +2018-12-03T08:35:29Z;Armando;4490.319;116091968;Peru; +2018-12-03T08:23:00Z;Nathália;3995.192;114398592;Peru; +2018-12-03T08:20:41Z;nathalia;4245.227;115536622;Peru; +2018-12-03T08:10:05Z;nathalia;1287.962;115671904;Peru; +2018-12-03T08:05:50Z;nathalia;1146.576;115304399;Peru; +2018-12-03T07:49:24Z;Júlio Cesar;6267.883;114497348;Peru; +2018-12-03T07:44:43Z;Sandra;4498.57;116326623;Peru; +2018-12-03T07:42:44Z;nathalia;2585.423;114282932;Peru; +2018-12-03T07:20:49Z;Nathália;8362.166;115057470;Peru; +2018-12-03T06:50:10Z;Júlio;1265.428;115543921;Peru; +2018-12-03T06:35:13Z;nathalia;7044.551;115971152;Peru; +2018-12-03T05:54:44Z;Júlio;10100.4;115770111;Peru; +2018-12-03T05:42:59Z;Sandra;7656.165;114590455;Peru; +2018-12-03T05:33:33Z;Júlio;3303.702;115731298;Peru; +2018-12-03T05:31:04Z;Sandra;910.5926;115305041;Peru; +2018-12-03T05:23:40Z;Nathália;4887.17;115923591;Peru; +2018-12-03T05:01:49Z;Ana;7477.109;115211432;Peru; +2018-12-03T04:32:23Z;Armando;958.4108;116167310;Peru; +2018-12-03T04:22:07Z;Júlio Cesar;1821.994;114780493;Peru; +2018-12-03T03:53:23Z;Júlio;3568.609;116022953;Peru; +2018-12-03T03:45:15Z;nathalia;11018.07;115006800;Peru; +2018-12-03T03:39:57Z;Júlio;6061.934;114561764;Peru; +2018-12-03T03:33:22Z;Eduardo;3905.024;114610392;Peru; +2018-12-03T03:26:22Z;Ana;195.7344;116248697;Peru; +2018-12-03T03:22:54Z;Júlio;1205.738;115778377;Peru; +2018-12-03T03:10:46Z;nathalia;631.8427;114807084;Peru; +2018-12-03T02:43:22Z;Armando;2730.219;114285205;Peru; +2018-12-03T02:37:18Z;Sandra;1082.269;114982624;Peru; +2018-12-03T02:35:13Z;Armando;2928.331;114324940;Peru; +2018-12-03T02:33:50Z;Júlio;241.3975;115422633;Peru; +2018-12-03T02:27:58Z;Armando;2807.287;114843567;Peru; +2018-12-03T02:17:40Z;Júlio Cesar;1845.169;115618281;Peru; +2018-12-03T02:14:07Z;Nathália;5647.442;116290276;Peru; +2018-12-03T02:11:11Z;Nathália;4787.488;115605285;Peru; +2018-12-03T01:52:15Z;Ana;2315.677;115093920;Peru; +2018-12-03T01:46:19Z;Eduardo;300.2974;115056793;Peru; +2018-12-03T01:30:52Z;Ana;6571.723;115251328;Peru; +2018-12-03T01:16:52Z;Eduardo;956.6224;116304500;Peru; +2018-12-03T01:01:23Z;Júlio;6786.187;115109624;Peru; +2018-12-03T00:51:55Z;Eduardo;181.6212;116023492;Peru; +2018-12-03T00:39:34Z;Ana;9166.05;114703958;Peru; +2018-12-03T00:21:34Z;Armando;3956.807;114529290;Peru; +2018-12-03T00:20:26Z;Sandra;3091.054;115932837;Peru; +2018-12-03T00:18:11Z;Sandra;3370.385;115544720;Peru; +2018-12-03T00:15:01Z;Nathália;3610.092;114881420;Peru; +2018-12-02T23:28:36Z;Nathália;555.1256;115588736;Peru; +2018-12-02T22:49:26Z;Sandra;6348.99;114934966;Peru; +2018-12-02T22:16:14Z;Eduardo;1005.262;115804886;Peru; +2018-12-02T22:01:45Z;Júlio;3047.507;116073253;Peru; +2018-12-02T21:45:18Z;Eduardo;5018.706;116114936;Peru; +2018-12-02T21:32:44Z;Sandra;174.7419;114358655;Peru; +2018-12-02T21:18:49Z;Eduardo;699.4014;114311067;Peru; +2018-12-02T20:15:29Z;nathalia;8960.676;115815794;Peru; +2018-12-02T20:14:41Z;Armando;5663.144;116071335;Peru; +2018-12-02T19:58:28Z;nathalia;3574.331;115887863;Peru; +2018-12-02T19:54:00Z;Júlio Cesar;7134.291;114239114;Peru; +2018-12-02T19:43:30Z;nathalia;3827.003;116244771;Peru; +2018-12-02T19:39:27Z;Sandra;5815.146;115142099;Peru; +2018-12-02T19:26:22Z;Sandra;1438.638;115512767;Peru; +2018-12-02T18:41:01Z;Nathália;2420.646;115989996;Peru; +2018-12-02T18:35:01Z;Nathália;978.8141;116177686;Peru; +2018-12-02T18:08:15Z;Ana;6598.239;115298127;Peru; +2018-12-02T17:52:14Z;Armando;3203.002;114437925;Peru; +2018-12-02T17:44:21Z;Sandra;4722.728;115279676;Peru; +2018-12-02T17:14:07Z;Eduardo;5723.725;115419886;Peru; +2018-12-02T16:57:53Z;nathalia;247.9116;114609139;Peru; +2018-12-02T16:53:02Z;Sandra;3848.368;115641850;Peru; +2018-12-02T16:48:09Z;Eduardo;1748.399;115442890;Peru; +2018-12-02T16:44:47Z;Ana;2487.579;115364416;Peru; +2018-12-02T16:42:41Z;Sandra;2233.658;115516363;Peru; +2018-12-02T16:41:03Z;nathalia;3162.475;114200359;Peru; +2018-12-02T16:24:51Z;Júlio Cesar;718.1889;114711329;Peru; +2018-12-02T16:15:54Z;Armando;7992.34;115894432;Peru; +2018-12-02T15:36:55Z;nathalia;29.26008;115577903;Peru; +2018-12-02T15:21:46Z;Sandra;12475.93;115455461;Peru; +2018-12-02T15:20:13Z;Armando;3574.265;114984325;Peru; +2018-12-02T15:19:50Z;Nathália;7864.234;115725614;Peru; +2018-12-02T15:04:57Z;Júlio Cesar;778.1023;116189701;Peru; +2018-12-02T14:59:43Z;Ana;16487.15;114326690;Peru; +2018-12-02T14:49:36Z;Armando;3340.72;114833558;Peru; +2018-12-02T14:46:33Z;Armando;1869.401;115741149;Peru; +2018-12-02T14:37:11Z;Ana;5089.422;115974549;Peru; +2018-12-02T14:34:20Z;Eduardo;251.8034;114896567;Peru; +2018-12-02T14:28:39Z;nathalia;2539.997;115329935;Peru; +2018-12-02T14:13:23Z;Sandra;8255.059;115526056;Peru; +2018-12-02T14:12:01Z;Júlio;6027.925;115566302;Peru; +2018-12-02T14:03:01Z;Eduardo;1044.071;115681466;Peru; +2018-12-02T13:58:18Z;Eduardo;1420.688;115209589;Peru; +2018-12-02T13:44:36Z;Ana;6355.376;114386307;Peru; +2018-12-02T13:39:31Z;Júlio Cesar;3777.55;114217133;Peru; +2018-12-02T13:35:57Z;nathalia;10975.9;115370535;Peru; +2018-12-02T13:35:21Z;Júlio Cesar;6740.254;116157516;Peru; +2018-12-02T13:19:49Z;Júlio Cesar;13152.08;115434522;Peru; +2018-12-02T13:15:53Z;Eduardo;15603.37;116251673;Peru; +2018-12-02T12:48:01Z;Júlio;2628.691;115756302;Peru; +2018-12-02T12:42:59Z;Sandra;8848.782;115356624;Peru; +2018-12-02T12:40:14Z;Sandra;6515.267;114279373;Peru; +2018-12-02T12:29:36Z;Eduardo;7107.35;115849994;Peru; +2018-12-02T12:26:34Z;Júlio;2501.7;114896992;Peru; +2018-12-02T11:25:44Z;Júlio;2416.439;115803790;Peru; +2018-12-02T10:49:18Z;Ana;4540.138;114870707;Peru; +2018-12-02T10:15:36Z;Nathália;5460.088;115829763;Peru; +2018-12-02T10:09:07Z;Nathália;2380.975;115535484;Peru; +2018-12-02T09:55:45Z;nathalia;20.49685;114615299;Peru; +2018-12-02T09:35:55Z;Armando;181.9364;114311221;Peru; +2018-12-02T08:55:18Z;Nathália;5489.535;114400933;Peru; +2018-12-02T08:47:56Z;Nathália;5122.264;114535610;Peru; +2018-12-02T08:28:56Z;nathalia;1029.133;115596615;Peru; +2018-12-02T08:15:58Z;Ana;1497.829;115393496;Peru; +2018-12-02T07:37:50Z;Armando;8586.351;116098411;Peru; +2018-12-02T07:37:09Z;nathalia;6044.529;115522701;Peru; +2018-12-02T07:05:04Z;Nathália;12388.36;116046203;Peru; +2018-12-02T07:04:35Z;Sandra;786.7644;114949783;Peru; +2018-12-02T07:01:37Z;nathalia;11780.15;115057465;Peru; +2018-12-02T06:51:10Z;Nathália;5994.247;114282559;Peru; +2018-12-02T06:20:04Z;Júlio;1551.745;114525839;Peru; +2018-12-02T06:16:13Z;Ana;1348.853;115071227;Peru; +2018-12-02T06:16:09Z;nathalia;8803.105;115125736;Peru; +2018-12-02T05:46:44Z;Sandra;8847.18;115288618;Peru; +2018-12-02T05:42:15Z;Júlio;137.3268;116296204;Peru; +2018-12-02T05:27:43Z;Ana;5492.085;115629872;Peru; +2018-12-02T05:22:22Z;Eduardo;7154.722;116310239;Peru; +2018-12-02T05:21:18Z;Júlio Cesar;6195.562;114361123;Peru; +2018-12-02T05:10:10Z;Nathália;402.6189;115356127;Peru; +2018-12-02T05:06:08Z;Armando;8348.535;115528040;Peru; +2018-12-02T05:05:43Z;Eduardo;1187.481;116119393;Peru; +2018-12-02T04:56:35Z;Júlio;7839.348;115738130;Peru; +2018-12-02T04:55:35Z;Ana;3979.638;115749544;Peru; +2018-12-02T04:28:39Z;nathalia;2432.663;114760345;Peru; +2018-12-02T03:59:43Z;Júlio;2425.312;115948536;Peru; +2018-12-02T03:51:29Z;Júlio;1629.385;114829206;Peru; +2018-12-02T03:37:50Z;Sandra;4931.188;116266600;Peru; +2018-12-02T03:29:27Z;Sandra;3267.01;115826883;Peru; +2018-12-02T02:56:24Z;nathalia;1196.694;114444712;Peru; +2018-12-02T02:55:06Z;Júlio;8562.943;115708443;Peru; +2018-12-02T02:50:27Z;Eduardo;1879.825;115150523;Peru; +2018-12-02T02:32:07Z;Júlio;1643.494;115857552;Peru; +2018-12-02T01:45:02Z;Armando;678.4593;116042342;Peru; +2018-12-02T01:42:07Z;Eduardo;1528.117;115972348;Peru; +2018-12-02T01:21:49Z;Júlio Cesar;6311.293;115192103;Peru; +2018-12-02T00:58:54Z;nathalia;3576.439;115411876;Peru; +2018-12-02T00:24:38Z;Ana;6883.112;116272575;Peru; +2018-12-02T00:01:48Z;Nathália;1247.895;116365567;Peru; +2018-12-02T00:01:44Z;Ana;2096.716;116290517;Peru; +2018-12-01T23:51:21Z;Eduardo;4632.382;115705905;Peru; +2018-12-01T23:49:36Z;Nathália;1494.275;115004780;Peru; +2018-12-01T23:46:13Z;Armando;2395.616;114756762;Peru; +2018-12-01T23:37:00Z;Júlio;2463.383;115374215;Peru; +2018-12-01T23:16:41Z;Nathália;111.053;114267762;Peru; +2018-12-01T23:16:41Z;nathalia;8869.99;115913137;Peru; +2018-12-01T23:04:28Z;Armando;212.7301;114387869;Peru; +2018-12-01T22:59:55Z;nathalia;2465.579;115512830;Peru; +2018-12-01T22:55:07Z;Armando;3301.233;114684058;Peru; +2018-12-01T22:53:46Z;Eduardo;9304.437;115023958;Peru; +2018-12-01T22:25:09Z;Sandra;3894.673;115527329;Peru; +2018-12-01T22:20:56Z;Armando;2067.274;114987174;Peru; +2018-12-01T22:03:26Z;Eduardo;8609.303;116193734;Peru; +2018-12-01T22:01:36Z;Júlio Cesar;6196.27;116284277;Peru; +2018-12-01T21:47:06Z;Júlio;814.0011;116193560;Peru; +2018-12-01T20:59:17Z;Júlio;7262.671;114470979;Peru; +2018-12-01T20:36:00Z;Júlio Cesar;12682.35;114650454;Peru; +2018-12-01T20:28:22Z;Armando;8001.45;114526926;Peru; +2018-12-01T20:24:33Z;Armando;6303.152;116005908;Peru; +2018-12-01T20:13:28Z;Ana;6340.416;115393588;Peru; +2018-12-01T20:13:04Z;Sandra;5919.233;114680321;Peru; +2018-12-01T20:03:52Z;Armando;5186.339;114365049;Peru; +2018-12-01T20:00:19Z;Sandra;6821.69;116376655;Peru; +2018-12-01T19:25:41Z;nathalia;2662.926;116057811;Peru; +2018-12-01T18:34:03Z;Júlio Cesar;6513.719;114547293;Peru; +2018-12-01T18:32:36Z;Ana;3887.99;115389939;Peru; +2018-12-01T18:28:29Z;Nathália;4145.55;115637601;Peru; +2018-12-01T18:08:37Z;Ana;2603.546;116084549;Peru; +2018-12-01T18:06:02Z;Júlio Cesar;6260.563;114410850;Peru; +2018-12-01T17:42:15Z;Júlio Cesar;3104.876;114770810;Peru; +2018-12-01T17:17:36Z;Eduardo;226.1089;116041042;Peru; +2018-12-01T16:48:24Z;Eduardo;6585.095;115765711;Peru; +2018-12-01T16:32:43Z;nathalia;1860.174;114206916;Peru; +2018-12-01T16:28:24Z;Júlio;5383.668;116163775;Peru; +2018-12-01T16:11:40Z;Júlio;1274.129;115284781;Peru; +2018-12-01T15:54:40Z;Nathália;3804.518;115814551;Peru; +2018-12-01T15:19:52Z;Nathália;9289.291;115349990;Peru; +2018-12-01T15:16:51Z;Ana;762.6174;114579216;Peru; +2018-12-01T15:13:56Z;Eduardo;3468.175;115403419;Peru; +2018-12-01T14:53:48Z;Nathália;6791.487;115105568;Peru; +2018-12-01T14:30:09Z;Nathália;6441.24;114803291;Peru; +2018-12-01T14:06:11Z;Nathália;5840.745;115912530;Peru; +2018-12-01T14:05:29Z;nathalia;801.2523;114501432;Peru; +2018-12-01T13:56:28Z;Sandra;1521.791;116187505;Peru; +2018-12-01T13:25:42Z;Ana;5631.208;115206994;Peru; +2018-12-01T13:23:16Z;Sandra;2677.078;114895006;Peru; +2018-12-01T12:20:53Z;Eduardo;5717.203;114600391;Peru; +2018-12-01T11:27:53Z;nathalia;431.8631;114233613;Peru; +2018-12-01T11:24:32Z;nathalia;6607.293;114586862;Peru; +2018-12-01T10:46:52Z;Júlio Cesar;2143.584;114896842;Peru; +2018-12-01T09:53:19Z;Júlio Cesar;9972.398;116237977;Peru; +2018-12-01T09:10:52Z;Ana;1373.148;114397763;Peru; +2018-12-01T08:55:06Z;nathalia;10818.41;116187618;Peru; +2018-12-01T08:55:05Z;Sandra;2135.127;114738250;Peru; +2018-12-01T08:54:54Z;Júlio;3498.918;116122225;Peru; +2018-12-01T08:44:30Z;nathalia;10719.43;115632943;Peru; +2018-12-01T08:34:54Z;Ana;2829.934;115513740;Peru; +2018-12-01T08:28:24Z;Nathália;497.1094;116215108;Peru; +2018-12-01T07:32:38Z;Armando;2451.594;114355150;Peru; +2018-12-01T07:09:50Z;Júlio Cesar;1304.908;115618427;Peru; +2018-12-01T06:17:01Z;Júlio Cesar;342.875;115393658;Peru; +2018-12-01T06:12:40Z;Eduardo;10300.63;115792225;Peru; +2018-12-01T06:10:23Z;Júlio Cesar;5437.213;114248731;Peru; +2018-12-01T05:39:06Z;nathalia;2520.854;114698446;Peru; +2018-12-01T05:37:55Z;Armando;3341.355;115297789;Peru; +2018-12-01T05:29:16Z;Armando;5964.907;114638002;Peru; +2018-12-01T05:22:56Z;Nathália;4173.249;115442254;Peru; +2018-12-01T05:18:28Z;Nathália;1508.326;116143581;Peru; +2018-12-01T05:15:16Z;Nathália;7048.868;115508539;Peru; +2018-12-01T05:07:27Z;Sandra;4991.977;115295263;Peru; +2018-12-01T05:06:20Z;Nathália;4480.529;115170311;Peru; +2018-12-01T05:02:11Z;Ana;2821.133;115708828;Peru; +2018-12-01T04:39:39Z;Júlio;3331.354;114452068;Peru; +2018-12-01T04:25:13Z;Sandra;5907.806;116075334;Peru; +2018-12-01T04:24:30Z;Sandra;1215.196;116315903;Peru; +2018-12-01T04:17:18Z;Júlio;6428.515;114912308;Peru; +2018-12-01T04:12:18Z;Sandra;6542.489;114415874;Peru; +2018-12-01T03:25:26Z;Eduardo;1525.292;116042604;Peru; +2018-12-01T03:25:08Z;Sandra;6898.517;116073478;Peru; +2018-12-01T03:22:41Z;Nathália;1090.176;114272762;Peru; +2018-12-01T02:47:08Z;Júlio;9313.199;114918418;Peru; +2018-12-01T02:32:35Z;Ana;527.1447;114232278;Peru; +2018-12-01T01:58:11Z;Sandra;1701.037;115802646;Peru; +2018-12-01T01:10:05Z;nathalia;4380.077;116256756;Peru; +2018-12-01T00:59:07Z;nathalia;2625.07;116258916;Peru; +2018-12-01T00:48:46Z;Armando;2047.913;114313072;Peru; +2018-12-01T00:36:48Z;Júlio;7095.836;114925589;Peru; +2018-12-01T00:31:05Z;Ana;6251.474;115812679;Peru; +2018-12-01T00:03:23Z;Eduardo;394.7285;115523568;Peru; +2018-11-30T23:18:10Z;Armando;3583.207;114224550;Peru; +2018-11-30T23:11:57Z;Sandra;3287.041;114855875;Peru; +2018-11-30T22:55:23Z;Ana;2975.178;116260240;Peru; +2018-11-30T22:53:03Z;nathalia;3050.908;115399864;Peru; +2018-11-30T22:50:18Z;Júlio;2447.281;115138726;Peru; +2018-11-30T22:42:01Z;Júlio Cesar;3544.548;114808182;Peru; +2018-11-30T22:34:36Z;Júlio Cesar;1285.823;116078661;Peru; +2018-11-30T22:27:10Z;Sandra;4143.038;116168758;Peru; +2018-11-30T22:15:16Z;Nathália;3420.008;114639921;Peru; +2018-11-30T22:11:12Z;nathalia;10198.19;115270472;Peru; +2018-11-30T21:38:19Z;Eduardo;2295.582;114907023;Peru; +2018-11-30T21:26:38Z;nathalia;5908.865;115912317;Peru; +2018-11-30T21:23:56Z;Nathália;4033.635;115569883;Peru; +2018-11-30T21:10:33Z;Júlio;3085.27;116136098;Peru; +2018-11-30T21:06:39Z;Nathália;2692.709;116011259;Peru; +2018-11-30T20:53:23Z;Júlio;2053.424;114853006;Peru; +2018-11-30T20:38:46Z;Júlio Cesar;3450.867;114525438;Peru; +2018-11-30T20:25:10Z;Ana;8558.857;115347783;Peru; +2018-11-30T20:18:22Z;nathalia;1869.544;115739204;Peru; +2018-11-30T20:01:14Z;Júlio;2085.388;114477374;Peru; +2018-11-30T20:00:58Z;Eduardo;3974.436;115156072;Peru; +2018-11-30T19:55:53Z;nathalia;1054.33;114263543;Peru; +2018-11-30T19:25:30Z;Júlio Cesar;7465.541;115465192;Peru; +2018-11-30T19:22:32Z;Eduardo;6433.982;116019802;Peru; +2018-11-30T19:11:43Z;Júlio;6867.78;114990656;Peru; +2018-11-30T19:07:12Z;Ana;10665.7;116372011;Peru; +2018-11-30T18:46:17Z;nathalia;8643.947;115632504;Peru; +2018-11-30T18:18:39Z;Ana;46.08862;116133429;Peru; +2018-11-30T17:36:42Z;Armando;936.5413;115552473;Peru; +2018-11-30T17:35:03Z;Eduardo;5499.412;115588374;Peru; +2018-11-30T17:26:03Z;Júlio;8830.501;115899220;Peru; +2018-11-30T17:12:34Z;Júlio;5429.064;115228074;Peru; +2018-11-30T16:51:25Z;Sandra;5109.572;115773451;Peru; +2018-11-30T16:46:03Z;Júlio Cesar;6323.321;116311485;Peru; +2018-11-30T16:40:05Z;Nathália;3163.065;115298709;Peru; +2018-11-30T16:30:19Z;Júlio Cesar;2484.655;116134895;Peru; +2018-11-30T16:07:20Z;Júlio;3686.783;114408688;Peru; +2018-11-30T15:38:50Z;Júlio Cesar;4182.281;115873931;Peru; +2018-11-30T15:29:47Z;Júlio Cesar;5478.97;115980387;Peru; +2018-11-30T14:59:21Z;nathalia;2977.505;115384559;Peru; +2018-11-30T14:56:26Z;Ana;3719.305;114804955;Peru; +2018-11-30T14:53:46Z;nathalia;1304.016;114269260;Peru; +2018-11-30T14:34:53Z;Ana;5573.481;116340582;Peru; +2018-11-30T14:18:57Z;Sandra;3604.699;114315168;Peru; +2018-11-30T13:32:54Z;Ana;2351.075;115640320;Peru; +2018-11-30T13:22:19Z;Sandra;6542.647;115717931;Peru; +2018-11-30T12:39:56Z;Eduardo;1526.103;115586868;Peru; +2018-11-30T12:15:46Z;Armando;4140.402;114830404;Peru; +2018-11-30T11:55:38Z;Júlio Cesar;301.3267;116260707;Peru; +2018-11-30T11:16:35Z;Armando;237.0224;115415371;Peru; +2018-11-30T11:12:56Z;Ana;2070.569;115608221;Peru; +2018-11-30T11:12:34Z;Júlio Cesar;968.156;116177838;Peru; +2018-11-30T11:05:14Z;Nathália;4660.213;115706038;Peru; +2018-11-30T10:50:43Z;Armando;101.6969;115790799;Peru; +2018-11-30T10:41:03Z;nathalia;6667.887;114735364;Peru; +2018-11-30T10:40:06Z;nathalia;7806.998;115666331;Peru; +2018-11-30T10:17:22Z;nathalia;4984.284;115393581;Peru; +2018-11-30T10:12:02Z;Sandra;1147.341;115104293;Peru; +2018-11-30T10:02:32Z;Sandra;697.5707;114867658;Peru; +2018-11-30T09:47:20Z;Júlio Cesar;8383.214;114914419;Peru; +2018-11-30T09:35:38Z;Ana;5062.204;115660196;Peru; +2018-11-30T09:32:21Z;Ana;5706.941;116290354;Peru; +2018-11-30T09:19:12Z;Ana;2931.836;115434257;Peru; +2018-11-30T09:00:58Z;Nathália;2377.243;115090304;Peru; +2018-11-30T08:50:29Z;nathalia;8555.678;115848945;Peru; +2018-11-30T08:19:59Z;Nathália;155.1543;115517520;Peru; +2018-11-30T08:12:34Z;Nathália;4136.55;114453936;Peru; +2018-11-30T07:25:13Z;Sandra;5365.105;116302114;Peru; +2018-11-30T07:09:35Z;Eduardo;3585.224;116140670;Peru; +2018-11-30T07:08:08Z;Júlio Cesar;3895.936;115195667;Peru; +2018-11-30T07:05:36Z;Armando;8186.977;115064198;Peru; +2018-11-30T06:54:25Z;nathalia;543.5516;115371291;Peru; +2018-11-30T06:49:02Z;Nathália;57.52135;116215424;Peru; +2018-11-30T06:20:25Z;Júlio;3907.442;116387028;Peru; +2018-11-30T06:06:07Z;Júlio;731.459;115155250;Peru; +2018-11-30T06:01:12Z;Armando;285.7301;115498043;Peru; +2018-11-30T06:01:11Z;Júlio;1935.09;114874758;Peru; +2018-11-30T05:56:49Z;Júlio;4390.52;115934696;Peru; +2018-11-30T05:48:40Z;nathalia;2491.125;115509798;Peru; +2018-11-30T05:47:29Z;Júlio;3065.948;114934862;Peru; +2018-11-30T05:38:35Z;Júlio;450.7243;114336977;Peru; +2018-11-30T05:34:46Z;nathalia;1023.136;116067707;Peru; +2018-11-30T05:06:59Z;Nathália;2737.917;114943209;Peru; +2018-11-30T04:13:52Z;Ana;7982.406;115781172;Peru; +2018-11-30T03:57:13Z;Armando;10693;115404357;Peru; +2018-11-30T02:54:59Z;Sandra;6278.221;115623099;Peru; +2018-11-30T02:54:00Z;Júlio Cesar;1887.275;116300492;Peru; +2018-11-30T02:47:41Z;Sandra;3284.113;114919136;Peru; +2018-11-30T02:46:41Z;Ana;2688.478;114391681;Peru; +2018-11-30T02:37:50Z;Júlio;5703.469;115577112;Peru; +2018-11-30T02:22:40Z;Ana;824.9634;115803785;Peru; +2018-11-30T02:12:00Z;Nathália;6635.605;115536562;Peru; +2018-11-30T01:59:58Z;Júlio;5047.264;115779345;Peru; +2018-11-30T01:36:43Z;nathalia;662.408;115917283;Peru; +2018-11-30T01:30:29Z;nathalia;7482.224;115399729;Peru; +2018-11-30T01:26:01Z;Júlio Cesar;6769.474;115113504;Peru; +2018-11-30T00:49:55Z;Sandra;6482.547;114631430;Peru; +2018-11-30T00:16:58Z;nathalia;452.7966;115568355;Peru; +2018-11-30T00:11:58Z;Júlio Cesar;1024.587;116301968;Peru; +2018-11-30T00:10:53Z;Sandra;5396.893;116380665;Peru; +2018-11-29T23:48:04Z;Eduardo;4852.301;115064550;Peru; +2018-11-29T23:41:56Z;Júlio;2384.428;114900149;Peru; +2018-11-29T23:38:48Z;Ana;6574.787;116057905;Peru; +2018-11-29T23:32:44Z;Júlio;2582.21;115322865;Peru; +2018-11-29T23:23:48Z;Armando;672.3035;114438079;Peru; +2018-11-29T23:19:46Z;Armando;8541.847;114363619;Peru; +2018-11-29T23:05:44Z;Armando;5606.602;114640733;Peru; +2018-11-29T22:51:46Z;Sandra;4662.394;114535824;Peru; +2018-11-29T22:31:26Z;Nathália;3956.482;115562716;Peru; +2018-11-29T22:20:33Z;Sandra;5820.976;114835877;Peru; +2018-11-29T22:10:27Z;Ana;3843.298;115257550;Peru; +2018-11-29T22:08:52Z;Nathália;11830.26;115614179;Peru; +2018-11-29T21:15:19Z;Sandra;2899.191;115992911;Peru; +2018-11-29T20:40:34Z;Júlio;4143.977;114714713;Peru; +2018-11-29T20:35:56Z;Ana;8463.946;116015891;Peru; +2018-11-29T20:05:23Z;Júlio Cesar;5099.983;114694000;Peru; +2018-11-29T19:50:57Z;nathalia;13947.62;115918554;Peru; +2018-11-29T19:50:48Z;Ana;153.5551;116349267;Peru; +2018-11-29T19:40:55Z;Júlio Cesar;3520.804;114995496;Peru; +2018-11-29T19:39:26Z;Eduardo;2740.774;115725514;Peru; +2018-11-29T18:34:45Z;Júlio Cesar;558.1164;115822312;Peru; +2018-11-29T18:30:30Z;Nathália;4652.548;116116472;Peru; +2018-11-29T18:24:27Z;Eduardo;7843.366;115446584;Peru; +2018-11-29T18:18:58Z;Júlio;7681.787;114914344;Peru; +2018-11-29T18:12:08Z;Ana;3772.281;116068868;Peru; +2018-11-29T17:59:14Z;Armando;5287.222;114933536;Peru; +2018-11-29T17:47:50Z;Júlio Cesar;3081.001;115894106;Peru; +2018-11-29T17:31:27Z;nathalia;5816.468;116218132;Peru; +2018-11-29T17:30:15Z;Nathália;8276.242;115946508;Peru; +2018-11-29T17:16:38Z;nathalia;4027.391;115778682;Peru; +2018-11-29T17:12:39Z;Ana;3468.166;114409531;Peru; +2018-11-29T16:58:07Z;Eduardo;658.358;115616718;Peru; +2018-11-29T16:48:54Z;Eduardo;4591.546;114357150;Peru; +2018-11-29T16:38:52Z;Eduardo;1383.157;116072350;Peru; +2018-11-29T16:28:44Z;Júlio;540.2155;115853319;Peru; +2018-11-29T16:13:43Z;Armando;1248.918;115440266;Peru; +2018-11-29T15:27:23Z;Eduardo;2468.384;114473936;Peru; +2018-11-29T15:17:42Z;nathalia;560.8997;115129971;Peru; +2018-11-29T15:10:24Z;Júlio;6759.349;115765694;Peru; +2018-11-29T14:47:07Z;Nathália;5693.913;114840184;Peru; +2018-11-29T14:39:33Z;Júlio Cesar;1606.627;116068455;Peru; +2018-11-29T14:39:32Z;Júlio Cesar;7693.421;114710831;Peru; +2018-11-29T14:24:07Z;Ana;1186.058;116347007;Peru; +2018-11-29T14:08:29Z;Nathália;3721.711;116322214;Peru; +2018-11-29T13:24:17Z;Júlio;1501.877;116260421;Peru; +2018-11-29T13:23:13Z;Eduardo;1264.211;114370342;Peru; +2018-11-29T13:12:05Z;Júlio Cesar;2560.152;115767717;Peru; +2018-11-29T12:49:19Z;Eduardo;1061.097;115219461;Peru; +2018-11-29T12:46:49Z;Sandra;1811.793;115817826;Peru; +2018-11-29T12:10:45Z;nathalia;3471.491;115637720;Peru; +2018-11-29T11:56:58Z;Júlio Cesar;2411.801;115780674;Peru; +2018-11-29T11:30:55Z;Sandra;2942.275;115090227;Peru; +2018-11-29T11:12:53Z;Nathália;5150.875;114645244;Peru; +2018-11-29T11:09:37Z;Nathália;402.9244;114648000;Peru; +2018-11-29T11:01:45Z;nathalia;4228.234;114571786;Peru; +2018-11-29T10:47:38Z;Ana;126.1393;115712646;Peru; +2018-11-29T10:46:41Z;Armando;2978.452;114259412;Peru; +2018-11-29T10:36:56Z;nathalia;3276.761;114697157;Peru; +2018-11-29T10:33:47Z;Eduardo;4710.439;115847267;Peru; +2018-11-29T10:30:45Z;Armando;457.5385;116029105;Peru; +2018-11-29T10:07:30Z;nathalia;9905.132;115806867;Peru; +2018-11-29T09:57:24Z;Ana;208.7045;114895183;Peru; +2018-11-29T09:46:31Z;Armando;4135.061;114390119;Peru; +2018-11-29T09:35:30Z;Júlio;3610.44;114838195;Peru; +2018-11-29T09:10:46Z;Eduardo;3676.631;115634966;Peru; +2018-11-29T09:01:56Z;Armando;8251.271;114812335;Peru; +2018-11-29T08:14:40Z;Sandra;2343.738;115384555;Peru; +2018-11-29T07:26:43Z;Sandra;3421.898;115173676;Peru; +2018-11-29T07:05:41Z;nathalia;5915.191;115307261;Peru; +2018-11-29T07:03:51Z;Nathália;11262.37;115887364;Peru; +2018-11-29T06:45:54Z;Júlio;8159.954;114516664;Peru; +2018-11-29T06:08:08Z;Ana;6613.266;116007128;Peru; +2018-11-29T06:07:46Z;Ana;831.3738;116070976;Peru; +2018-11-29T05:54:34Z;Sandra;169.8285;115906892;Peru; +2018-11-29T05:50:42Z;nathalia;8706.788;114867138;Peru; +2018-11-29T05:39:38Z;Júlio Cesar;7970.568;114788856;Peru; +2018-11-29T05:38:08Z;Ana;6877.77;116054096;Peru; +2018-11-29T05:30:49Z;Nathália;229.1296;115361261;Peru; +2018-11-29T05:22:00Z;Eduardo;4134.822;114944412;Peru; +2018-11-29T05:08:51Z;Eduardo;2048.933;115938066;Peru; +2018-11-29T05:07:54Z;Armando;6049.956;116210703;Peru; +2018-11-29T05:05:12Z;Ana;5012.53;115670907;Peru; +2018-11-29T04:36:28Z;nathalia;1584.943;114712460;Peru; +2018-11-29T04:35:02Z;Ana;2289.478;115893920;Peru; +2018-11-29T04:17:18Z;Eduardo;941.6996;114973424;Peru; +2018-11-29T04:05:04Z;Ana;5871.536;116298857;Peru; +2018-11-29T04:00:16Z;Armando;1381.943;115219989;Peru; +2018-11-29T03:57:25Z;Sandra;1164.435;116231746;Peru; +2018-11-29T03:55:00Z;Júlio Cesar;42.55783;115249257;Peru; +2018-11-29T03:48:27Z;Júlio;7891.74;116157109;Peru; +2018-11-29T03:48:13Z;Sandra;1001.37;116052125;Peru; +2018-11-29T03:42:47Z;Ana;5424.566;114241078;Peru; +2018-11-29T03:24:13Z;Sandra;614.1647;116133430;Peru; +2018-11-29T02:45:38Z;Júlio Cesar;289.6544;115429631;Peru; +2018-11-29T02:42:09Z;nathalia;6786.996;114570583;Peru; +2018-11-29T02:33:59Z;Júlio;11002.18;115629230;Peru; +2018-11-29T02:19:21Z;Júlio;5849.496;115438885;Peru; +2018-11-29T02:17:02Z;Júlio Cesar;2235.987;115154373;Peru; +2018-11-29T02:07:31Z;Armando;7304.758;114276781;Peru; +2018-11-29T02:05:38Z;nathalia;3756.162;115073765;Peru; +2018-11-29T01:57:23Z;Armando;747.8499;114562872;Peru; +2018-11-29T01:29:24Z;Júlio Cesar;10685.02;115387260;Peru; +2018-11-29T01:18:27Z;Nathália;1499.467;116070406;Peru; +2018-11-29T01:10:57Z;Ana;9874.543;115926387;Peru; +2018-11-29T00:58:33Z;nathalia;1236.516;115473230;Peru; +2018-11-29T00:06:16Z;Júlio;7163.707;115512939;Peru; +2018-11-29T00:04:16Z;Eduardo;7834.807;114482997;Peru; +2018-11-29T00:00:47Z;Júlio Cesar;509.5854;116303333;Peru; +2018-11-28T23:18:29Z;Eduardo;6290.756;115373145;Peru; +2018-11-28T23:06:02Z;Ana;1402.786;114269997;Peru; +2018-11-28T22:17:07Z;Nathália;3612.769;114918133;Peru; +2018-11-28T21:47:24Z;Armando;11867.22;115374623;Peru; +2018-11-28T21:27:00Z;nathalia;7847.992;115976082;Peru; +2018-11-28T20:58:43Z;Nathália;3369.212;115745562;Peru; +2018-11-28T20:16:03Z;Eduardo;295.3058;114498301;Peru; +2018-11-28T20:15:48Z;Júlio Cesar;9176.052;116231481;Peru; +2018-11-28T20:09:39Z;Armando;11470.4;115184447;Peru; +2018-11-28T19:48:16Z;Júlio Cesar;2533.263;114915401;Peru; +2018-11-28T19:24:27Z;nathalia;1970.783;114650505;Peru; +2018-11-28T19:20:22Z;Armando;11240.57;114608177;Peru; +2018-11-28T19:13:06Z;Armando;3874.705;116043886;Peru; +2018-11-28T18:44:20Z;Júlio;717.3634;114821280;Peru; +2018-11-28T18:37:28Z;nathalia;1172.857;115675465;Peru; +2018-11-28T18:22:58Z;Armando;9425.249;114315516;Peru; +2018-11-28T18:20:42Z;Nathália;1993.844;116035137;Peru; +2018-11-28T18:13:37Z;Ana;6149.416;115840552;Peru; +2018-11-28T17:39:19Z;Sandra;5435.85;114453865;Peru; +2018-11-28T17:31:26Z;nathalia;4148.965;114513043;Peru; +2018-11-28T17:16:35Z;nathalia;3825.849;115276452;Peru; +2018-11-28T16:59:11Z;Nathália;4832.973;114860145;Peru; +2018-11-28T16:22:45Z;Júlio Cesar;478.8499;115083620;Peru; +2018-11-28T16:11:28Z;Armando;1667.961;115170602;Peru; +2018-11-28T15:02:16Z;Júlio;4032.08;114849235;Peru; +2018-11-28T14:50:37Z;Eduardo;11320.44;115979787;Peru; +2018-11-28T14:50:29Z;Nathália;1195.711;115002909;Peru; +2018-11-28T14:48:11Z;Eduardo;3365.993;115746133;Peru; +2018-11-28T14:17:29Z;Armando;746.7373;115544708;Peru; +2018-11-28T14:11:03Z;Ana;1707.489;116020900;Peru; +2018-11-28T14:06:20Z;Sandra;395.9569;114692311;Peru; +2018-11-28T12:40:44Z;nathalia;2672.669;114864789;Peru; +2018-11-28T12:31:58Z;nathalia;1818.899;116025999;Peru; +2018-11-28T12:29:07Z;Ana;817.4896;114782093;Peru; +2018-11-28T12:15:14Z;Ana;8110.954;115598174;Peru; +2018-11-28T12:02:31Z;Eduardo;6301.512;115007233;Peru; +2018-11-28T11:28:07Z;Eduardo;5982.856;114728751;Peru; +2018-11-28T11:24:18Z;Nathália;3481.238;115119988;Peru; +2018-11-28T11:21:42Z;nathalia;2431.56;115683155;Peru; +2018-11-28T11:01:43Z;Júlio Cesar;3561.006;115446935;Peru; +2018-11-28T10:55:44Z;Júlio;1668.034;114530276;Peru; +2018-11-28T10:52:56Z;nathalia;5585.693;116113102;Peru; +2018-11-28T10:41:53Z;Júlio;4228.56;115086992;Peru; +2018-11-28T10:33:35Z;Nathália;2509.802;114555825;Peru; +2018-11-28T10:22:10Z;Sandra;8460.184;114766266;Peru; +2018-11-28T09:52:53Z;Eduardo;6200.853;115991391;Peru; +2018-11-28T09:44:23Z;Eduardo;6539.035;114657027;Peru; +2018-11-28T09:09:24Z;Júlio;4420.149;116365013;Peru; +2018-11-28T09:04:02Z;Nathália;4174.816;114983040;Peru; +2018-11-28T08:53:05Z;Armando;5200.613;115005772;Peru; +2018-11-28T07:50:47Z;Júlio Cesar;4635.934;115497011;Peru; +2018-11-28T07:14:38Z;Eduardo;447.3175;114507595;Peru; +2018-11-28T06:59:34Z;Júlio Cesar;6780.473;115355130;Peru; +2018-11-28T06:59:32Z;Sandra;2071.152;115287232;Peru; +2018-11-28T06:46:45Z;nathalia;5052.447;114902221;Peru; +2018-11-28T06:04:49Z;Nathália;5228.657;116285152;Peru; +2018-11-28T05:59:03Z;Eduardo;334.8265;115452865;Peru; +2018-11-28T05:58:28Z;Eduardo;2936.495;115284879;Peru; +2018-11-28T05:43:48Z;Júlio Cesar;602.0564;116269539;Peru; +2018-11-28T05:39:06Z;Nathália;579.2709;115592722;Peru; +2018-11-28T05:37:45Z;Sandra;3841.585;114307985;Peru; +2018-11-28T05:20:18Z;nathalia;4530.828;116268951;Peru; +2018-11-28T05:05:22Z;Ana;5025.592;114262170;Peru; +2018-11-28T04:23:38Z;Sandra;412.7729;115000702;Peru; +2018-11-28T04:12:44Z;Júlio Cesar;598.0296;115169246;Peru; +2018-11-28T04:09:03Z;Sandra;376.6784;115249615;Peru; +2018-11-28T04:07:45Z;Júlio Cesar;1359.792;116148547;Peru; +2018-11-28T03:39:16Z;Júlio;5229.739;116044719;Peru; +2018-11-28T03:37:46Z;Sandra;2094.64;116229896;Peru; +2018-11-28T03:25:34Z;Armando;4952.996;115137536;Peru; +2018-11-28T03:18:17Z;Sandra;6478.298;115537098;Peru; +2018-11-28T03:10:13Z;Júlio;1434.026;116020153;Peru; +2018-11-28T03:01:59Z;Nathália;4417.24;114768199;Peru; +2018-11-28T02:53:36Z;Nathália;7320.763;114773901;Peru; +2018-11-28T02:43:37Z;Nathália;1131.562;114793087;Peru; +2018-11-28T02:41:08Z;Júlio;6131.796;114742450;Peru; +2018-11-28T02:01:52Z;Armando;3515.388;114246372;Peru; +2018-11-28T01:48:04Z;Júlio Cesar;7686.299;114419492;Peru; +2018-11-28T01:15:33Z;Júlio;1414.942;115148246;Peru; +2018-11-28T00:35:04Z;Ana;7489.095;115506884;Peru; +2018-11-28T00:25:16Z;nathalia;3537.574;115280855;Peru; +2018-11-28T00:12:38Z;Júlio;1057.757;115723190;Peru; +2018-11-27T23:55:13Z;Armando;3300.546;116228868;Peru; +2018-11-27T23:48:33Z;Júlio;1341.662;114572777;Peru; +2018-11-27T23:32:16Z;Ana;4583.322;115987284;Peru; +2018-11-27T22:09:20Z;Sandra;9634.298;114678414;Peru; +2018-11-27T21:39:25Z;Júlio;7520.114;116285252;Peru; +2018-11-27T21:33:20Z;Nathália;7617.195;115804432;Peru; +2018-11-27T21:19:03Z;Júlio Cesar;7241.723;114597165;Peru; +2018-11-27T20:55:39Z;Júlio Cesar;2989.747;115434861;Peru; +2018-11-27T20:53:40Z;Júlio Cesar;834.9877;115666292;Peru; +2018-11-27T20:36:05Z;Nathália;1506.86;116180031;Peru; +2018-11-27T20:33:47Z;Ana;730.2047;114362910;Peru; +2018-11-27T20:07:13Z;Ana;1112.717;115154132;Peru; +2018-11-27T20:01:12Z;Sandra;2430.308;116341678;Peru; +2018-11-27T19:48:10Z;nathalia;1697.376;115854378;Peru; +2018-11-27T19:30:03Z;Júlio Cesar;2356.137;114752361;Peru; +2018-11-27T19:20:17Z;Nathália;3782.936;115556121;Peru; +2018-11-27T19:12:23Z;Sandra;3024.62;115448814;Peru; +2018-11-27T18:57:05Z;Eduardo;6828.6;114674092;Peru; +2018-11-27T18:53:34Z;Júlio;13310.66;115700312;Peru; +2018-11-27T18:19:56Z;Ana;5629.069;115779461;Peru; +2018-11-27T17:52:39Z;Armando;1546.085;114913573;Peru; +2018-11-27T17:19:30Z;Júlio;449.8737;115927627;Peru; +2018-11-27T16:24:06Z;Júlio;3088.05;115646066;Peru; +2018-11-27T16:22:35Z;Armando;4576.811;114631894;Peru; +2018-11-27T16:21:25Z;Ana;2732.972;114351982;Peru; +2018-11-27T16:13:11Z;Nathália;7570.896;115772686;Peru; +2018-11-27T15:42:40Z;Armando;2085.715;114545645;Peru; +2018-11-27T15:07:37Z;Ana;9505.055;115766716;Peru; +2018-11-27T14:43:25Z;Sandra;6838.323;114462510;Peru; +2018-11-27T14:41:14Z;Júlio;4599.28;114514805;Peru; +2018-11-27T14:03:18Z;nathalia;1700.007;115134211;Peru; +2018-11-27T14:00:39Z;Júlio;3433.379;115133468;Peru; +2018-11-27T13:59:38Z;Armando;10135.48;114689769;Peru; +2018-11-27T13:43:39Z;Sandra;3299.563;114785953;Peru; +2018-11-27T13:43:10Z;Júlio;5469.187;114989798;Peru; +2018-11-27T13:41:36Z;Júlio;3638.293;116029108;Peru; +2018-11-27T13:40:49Z;Armando;3682.607;114808235;Peru; +2018-11-27T13:18:21Z;nathalia;1604.075;115164012;Peru; +2018-11-27T13:17:19Z;Nathália;325.0872;114420573;Peru; +2018-11-27T13:03:18Z;Nathália;3033.635;114558592;Peru; +2018-11-27T12:51:41Z;Sandra;3252.423;114559647;Peru; +2018-11-27T12:37:52Z;Armando;4136.354;114380479;Peru; +2018-11-27T12:19:15Z;Eduardo;329.7829;114208312;Peru; +2018-11-27T12:17:33Z;Nathália;5107.268;116165525;Peru; +2018-11-27T12:17:26Z;Eduardo;2331.099;115478896;Peru; +2018-11-27T11:55:46Z;Júlio;1078.086;116379163;Peru; +2018-11-27T10:22:23Z;Ana;4127.6;114320012;Peru; +2018-11-27T10:06:22Z;Júlio;1813.085;115934229;Peru; +2018-11-27T09:53:17Z;Armando;1571.44;116093577;Peru; +2018-11-27T09:45:05Z;Sandra;156.3015;114203686;Peru; +2018-11-27T09:37:57Z;Júlio;377.1699;114738111;Peru; +2018-11-27T09:32:43Z;Eduardo;1229.328;116278774;Peru; +2018-11-27T09:27:49Z;Eduardo;6925.827;114661885;Peru; +2018-11-27T08:54:41Z;Júlio;18035.58;115469610;Peru; +2018-11-27T08:49:18Z;Ana;5594.854;115901336;Peru; +2018-11-27T08:41:03Z;nathalia;461.6464;114485040;Peru; +2018-11-27T08:19:07Z;Ana;331.8706;114279649;Peru; +2018-11-27T07:52:36Z;Eduardo;4524.807;115636480;Peru; +2018-11-27T07:21:27Z;nathalia;2471.029;115048838;Peru; +2018-11-27T07:08:48Z;Sandra;9676.919;116111929;Peru; +2018-11-27T06:55:34Z;Armando;995.0279;115932031;Peru; +2018-11-27T06:01:26Z;nathalia;1547.398;116279594;Peru; +2018-11-27T05:29:30Z;Eduardo;1195.413;114975683;Peru; +2018-11-27T05:07:25Z;Júlio Cesar;8406.955;115208070;Peru; +2018-11-27T04:49:04Z;Sandra;4699.404;115657387;Peru; +2018-11-27T04:44:46Z;Nathália;3146.358;115080920;Peru; +2018-11-27T04:33:20Z;Ana;253.3102;114513822;Peru; +2018-11-27T04:13:41Z;Júlio;162.9782;114531038;Peru; +2018-11-27T03:15:38Z;Nathália;443.7553;116159574;Peru; +2018-11-27T03:06:40Z;Júlio;3997.03;115661256;Peru; +2018-11-27T03:05:28Z;Nathália;7429.227;115818848;Peru; +2018-11-27T02:46:12Z;nathalia;7938.801;115461122;Peru; +2018-11-27T02:33:30Z;Eduardo;1664.872;115327796;Peru; +2018-11-27T02:24:36Z;Ana;1488.542;115936410;Peru; +2018-11-27T02:17:00Z;Júlio;7425.517;114434343;Peru; +2018-11-27T02:02:42Z;Ana;11623.92;114514064;Peru; +2018-11-27T01:38:37Z;Sandra;2904.709;115121519;Peru; +2018-11-27T01:33:20Z;Júlio;1981.078;114526813;Peru; +2018-11-27T00:55:23Z;Eduardo;283.5508;115677933;Peru; +2018-11-27T00:47:38Z;Sandra;6278.191;114374859;Peru; +2018-11-27T00:43:16Z;Júlio Cesar;4024.942;115668641;Peru; +2018-11-26T23:52:06Z;Ana;1103.289;115397769;Peru; +2018-11-26T23:24:05Z;Nathália;7433.184;115433895;Peru; +2018-11-26T23:10:01Z;Júlio;6118.506;114912160;Peru; +2018-11-26T23:06:52Z;Nathália;4414.073;114600049;Peru; +2018-11-26T22:57:05Z;nathalia;1987.3;114775281;Peru; +2018-11-26T22:50:20Z;Ana;3454.557;114795971;Peru; +2018-11-26T22:49:56Z;Eduardo;7109.114;115141453;Peru; +2018-11-26T22:48:20Z;Ana;583.5499;114457411;Peru; +2018-11-26T22:14:27Z;Nathália;1437.198;116329356;Peru; +2018-11-26T21:49:07Z;Nathália;4624.311;114442349;Peru; +2018-11-26T21:36:33Z;Nathália;3290.809;115188835;Peru; +2018-11-26T21:25:23Z;Armando;4441.514;114413830;Peru; +2018-11-26T21:20:55Z;Sandra;1726.631;115125182;Peru; +2018-11-26T21:08:08Z;Armando;805.5216;115366952;Peru; +2018-11-26T20:08:23Z;Nathália;4461.749;116337381;Peru; +2018-11-26T19:46:21Z;Nathália;2925.694;116131123;Peru; +2018-11-26T19:33:22Z;Nathália;7898.279;114846926;Peru; +2018-11-26T18:49:27Z;Ana;6323.361;116260602;Peru; +2018-11-26T18:44:31Z;Eduardo;390.8734;116397198;Peru; +2018-11-26T18:44:07Z;Sandra;8177.111;115072168;Peru; +2018-11-26T18:41:48Z;Armando;6892.309;114733831;Peru; +2018-11-26T18:40:11Z;Júlio;1260.093;115547749;Peru; +2018-11-26T18:05:43Z;Nathália;1953.596;115176926;Peru; +2018-11-26T17:35:38Z;Ana;3188.847;116167019;Peru; +2018-11-26T17:15:11Z;Júlio;3687.369;114931826;Peru; +2018-11-26T17:06:24Z;Armando;671.7076;116269755;Peru; +2018-11-26T16:53:19Z;Sandra;10447.09;114973840;Peru; +2018-11-26T16:41:30Z;Júlio Cesar;8636.473;114672619;Peru; +2018-11-26T16:12:38Z;Eduardo;395.4063;116243295;Peru; +2018-11-26T15:59:15Z;Nathália;582.9094;115587647;Peru; +2018-11-26T15:31:22Z;Eduardo;4688.865;115658571;Peru; +2018-11-26T15:29:06Z;Ana;8695.611;115203215;Peru; +2018-11-26T14:51:34Z;Júlio;7282.567;115711720;Peru; +2018-11-26T14:36:58Z;Eduardo;1057.517;116006593;Peru; +2018-11-26T13:58:16Z;Júlio Cesar;6226.279;114842018;Peru; +2018-11-26T13:51:46Z;Sandra;17248.78;114256825;Peru; +2018-11-26T13:40:59Z;Eduardo;5089.865;114871002;Peru; +2018-11-26T13:37:24Z;Júlio Cesar;3210.683;115876155;Peru; +2018-11-26T13:11:11Z;Nathália;9218.718;114477749;Peru; +2018-11-26T13:10:33Z;Ana;2177.357;115913034;Peru; +2018-11-26T13:08:50Z;Júlio Cesar;7087.114;116211856;Peru; +2018-11-26T13:01:51Z;Eduardo;3758.429;114908323;Peru; +2018-11-26T12:36:50Z;Nathália;7034.879;116236414;Peru; +2018-11-26T12:19:28Z;nathalia;2167.02;115689053;Peru; +2018-11-26T12:17:03Z;Júlio;589.5209;114396978;Peru; +2018-11-26T12:00:50Z;Júlio Cesar;958.3034;115444005;Peru; +2018-11-26T11:26:32Z;nathalia;9784.217;115878229;Peru; +2018-11-26T10:58:51Z;Eduardo;547.2802;115164837;Peru; +2018-11-26T10:57:22Z;nathalia;650.5689;114340491;Peru; +2018-11-26T10:52:30Z;Nathália;7023.868;115588029;Peru; +2018-11-26T10:50:01Z;nathalia;2084.601;114380076;Peru; +2018-11-26T10:33:19Z;Ana;4529.041;115809510;Peru; +2018-11-26T10:00:25Z;Sandra;1198.426;115280151;Peru; +2018-11-26T09:55:32Z;Sandra;9023.706;115702864;Peru; +2018-11-26T09:48:25Z;Júlio;3421.722;115632111;Peru; +2018-11-26T09:24:17Z;Armando;3344.442;114800400;Peru; +2018-11-26T09:23:33Z;Júlio Cesar;2055.705;115358949;Peru; +2018-11-26T09:07:19Z;Eduardo;1491.962;116386331;Peru; +2018-11-26T08:59:31Z;Eduardo;6982.733;114803444;Peru; +2018-11-26T08:44:36Z;Eduardo;119.2607;115835470;Peru; +2018-11-26T08:42:18Z;Armando;5858.95;115934691;Peru; +2018-11-26T08:41:19Z;Eduardo;8805.005;116368703;Peru; +2018-11-26T08:23:45Z;Nathália;6344.353;114436357;Peru; +2018-11-26T08:14:53Z;Ana;10955.68;115067308;Peru; +2018-11-26T08:11:21Z;Armando;2956.176;116281618;Peru; +2018-11-26T07:44:57Z;Sandra;791.4193;115140772;Peru; +2018-11-26T07:24:51Z;Ana;5869.722;116062505;Peru; +2018-11-26T07:17:48Z;Júlio;1828.773;114859503;Peru; +2018-11-26T06:50:44Z;Armando;6125.431;115406881;Peru; +2018-11-26T06:03:10Z;nathalia;1586.416;115557305;Peru; +2018-11-26T05:48:24Z;Eduardo;965.9866;114208305;Peru; +2018-11-26T05:18:02Z;Júlio;2318.763;116163184;Peru; +2018-11-26T05:14:52Z;Nathália;4582.676;115907642;Peru; +2018-11-26T05:12:39Z;Nathália;1678.201;115249084;Peru; +2018-11-26T05:05:56Z;Sandra;562.327;115451674;Peru; +2018-11-26T04:56:12Z;Sandra;2846.192;115097381;Peru; +2018-11-26T04:32:49Z;nathalia;5252.224;115822273;Peru; +2018-11-26T04:32:24Z;Sandra;5342.614;114853949;Peru; +2018-11-26T04:21:11Z;Armando;2014.395;116170335;Peru; +2018-11-26T04:18:22Z;Armando;1347.848;115685106;Peru; +2018-11-26T04:11:30Z;Júlio Cesar;11029.28;115958365;Peru; +2018-11-26T04:04:23Z;Eduardo;4893.627;116035730;Peru; +2018-11-26T03:47:46Z;Sandra;1737.411;116246453;Peru; +2018-11-26T03:34:57Z;Armando;1815.863;114674436;Peru; +2018-11-26T03:31:23Z;Júlio;339.7537;115487775;Peru; +2018-11-26T03:16:11Z;Armando;10306.93;115813885;Peru; +2018-11-26T03:15:53Z;Armando;1557.433;115353605;Peru; +2018-11-26T02:38:54Z;Sandra;545.9929;115705520;Peru; +2018-11-26T02:28:10Z;nathalia;1635.491;114524129;Peru; +2018-11-26T02:21:17Z;Júlio;1506.972;115824851;Peru; +2018-11-26T02:19:17Z;Eduardo;7343.768;115192360;Peru; +2018-11-26T02:06:59Z;Júlio Cesar;4699.015;114586319;Peru; +2018-11-26T02:05:17Z;Armando;2695.636;115217360;Peru; +2018-11-26T02:04:12Z;Armando;352.6764;115650511;Peru; +2018-11-26T01:48:34Z;Sandra;4823.34;115757367;Peru; +2018-11-26T01:27:32Z;Júlio Cesar;675.4049;114966054;Peru; +2018-11-26T00:44:07Z;Nathália;5248.515;115928307;Peru; +2018-11-26T00:19:37Z;Nathália;3386.169;114466927;Peru; +2018-11-26T00:07:13Z;Júlio Cesar;2607.734;115905352;Peru; +2018-11-26T00:05:21Z;Armando;3836.219;115663557;Peru; +2018-11-25T23:48:19Z;Júlio Cesar;2774.36;114690846;Peru; +2018-11-25T23:38:52Z;Sandra;3751.656;116370482;Peru; +2018-11-25T23:31:47Z;Eduardo;3597.55;114669043;Peru; +2018-11-25T23:05:08Z;Nathália;9033.63;115133454;Peru; +2018-11-25T22:59:39Z;Eduardo;4049.896;115361778;Peru; +2018-11-25T22:54:47Z;Armando;276.737;115223210;Peru; +2018-11-25T22:45:35Z;Júlio Cesar;966.6604;116211964;Peru; +2018-11-25T22:38:57Z;Armando;4165.083;116135530;Peru; +2018-11-25T22:27:39Z;Armando;785.1602;115490235;Peru; +2018-11-25T22:22:14Z;nathalia;5931.892;115540108;Peru; +2018-11-25T22:20:11Z;Armando;3130.28;115380991;Peru; +2018-11-25T22:08:30Z;Eduardo;2332.691;114511746;Peru; +2018-11-25T22:05:15Z;Armando;3765.53;115810015;Peru; +2018-11-25T21:59:07Z;Nathália;4102.359;116192266;Peru; +2018-11-25T21:37:45Z;nathalia;4556.468;115978501;Peru; +2018-11-25T21:30:18Z;Júlio Cesar;527.5562;115561291;Peru; +2018-11-25T21:02:40Z;Eduardo;9088.551;114925383;Peru; +2018-11-25T20:57:31Z;Júlio;5593.696;114862907;Peru; +2018-11-25T20:54:55Z;nathalia;2388.702;114325426;Peru; +2018-11-25T20:22:44Z;Sandra;5707.574;114358215;Peru; +2018-11-25T20:04:20Z;nathalia;125.0058;115239547;Peru; +2018-11-25T19:44:28Z;Sandra;2417.898;115822585;Peru; +2018-11-25T19:04:53Z;Júlio;9388.909;115365700;Peru; +2018-11-25T18:39:46Z;Ana;586.5644;114335173;Peru; +2018-11-25T17:49:13Z;Armando;3226.82;114873891;Peru; +2018-11-25T17:47:42Z;Nathália;6736.452;115892607;Peru; +2018-11-25T17:45:09Z;Júlio;1459.38;116086331;Peru; +2018-11-25T17:36:41Z;Sandra;6182.95;114535034;Peru; +2018-11-25T17:13:34Z;Eduardo;3824.287;115803829;Peru; +2018-11-25T17:11:55Z;Sandra;2361.215;116387148;Peru; +2018-11-25T17:09:29Z;Ana;1316.964;115824467;Peru; +2018-11-25T16:14:41Z;Eduardo;1148.089;115363785;Peru; +2018-11-25T16:12:54Z;Júlio;8572.449;114317936;Peru; +2018-11-25T16:08:00Z;Júlio;8492.796;116138131;Peru; +2018-11-25T16:04:08Z;Ana;4185.279;115012803;Peru; +2018-11-25T15:23:04Z;nathalia;6386.196;114655534;Peru; +2018-11-25T15:17:28Z;Armando;3691.769;115057293;Peru; +2018-11-25T15:14:00Z;Júlio Cesar;573.3686;115707190;Peru; +2018-11-25T15:06:01Z;Sandra;2956.161;115210581;Peru; +2018-11-25T14:47:36Z;nathalia;3715.339;115952875;Peru; +2018-11-25T14:40:31Z;Júlio Cesar;6335.048;114222964;Peru; +2018-11-25T14:37:45Z;Armando;11148.59;114835456;Peru; +2018-11-25T14:35:45Z;Eduardo;915.9156;114417187;Peru; +2018-11-25T14:33:20Z;Júlio Cesar;6315.348;115025707;Peru; +2018-11-25T14:23:25Z;Nathália;2907.853;115218978;Peru; +2018-11-25T14:16:50Z;Ana;6702.764;115835820;Peru; +2018-11-25T14:06:21Z;Júlio Cesar;1348.279;115829888;Peru; +2018-11-25T13:44:20Z;Armando;7556.78;115278182;Peru; +2018-11-25T13:41:20Z;Eduardo;4845.999;115636909;Peru; +2018-11-25T13:20:39Z;Armando;7577.12;114604817;Peru; +2018-11-25T13:10:48Z;Nathália;6077.008;114609040;Peru; +2018-11-25T13:01:46Z;Júlio Cesar;4488.296;115005705;Peru; +2018-11-25T13:01:12Z;Eduardo;1394.077;115914151;Peru; +2018-11-25T12:33:12Z;Nathália;6410.066;116344479;Peru; +2018-11-25T12:32:19Z;Eduardo;2028.207;116341544;Peru; +2018-11-25T12:22:49Z;Sandra;7518.482;114717692;Peru; +2018-11-25T12:01:32Z;nathalia;6370.044;114356192;Peru; +2018-11-25T11:45:35Z;Ana;2004.697;115434342;Peru; +2018-11-25T11:26:47Z;Armando;604.8489;115086970;Peru; +2018-11-25T11:16:07Z;Eduardo;554.9416;115586729;Peru; +2018-11-25T11:15:31Z;Nathália;5113.935;115291970;Peru; +2018-11-25T10:53:30Z;Nathália;3654.562;115574898;Peru; +2018-11-25T10:02:42Z;Eduardo;3328.69;115135935;Peru; +2018-11-25T09:41:28Z;nathalia;5671.849;116123281;Peru; +2018-11-25T09:31:07Z;Armando;1287.647;114393094;Peru; +2018-11-25T09:27:46Z;Nathália;1444.284;115745855;Peru; +2018-11-25T09:26:28Z;Armando;2049.223;114492566;Peru; +2018-11-25T08:35:50Z;Armando;12253.37;114275541;Peru; +2018-11-25T08:22:52Z;Júlio;7734.987;116097363;Peru; +2018-11-25T08:18:05Z;Júlio;1842.191;115269688;Peru; +2018-11-25T08:17:21Z;nathalia;4184.816;116264649;Peru; +2018-11-25T07:49:26Z;Eduardo;890.0438;114923436;Peru; +2018-11-25T07:33:01Z;Eduardo;8379.927;116207836;Peru; +2018-11-25T07:28:47Z;Nathália;621.4696;114303193;Peru; +2018-11-25T07:09:35Z;Sandra;3313.849;114355354;Peru; +2018-11-25T05:46:02Z;Ana;4087.213;116095923;Peru; +2018-11-25T05:41:07Z;Júlio Cesar;7833.893;116035237;Peru; +2018-11-25T05:40:30Z;Júlio;3191.035;115564813;Peru; +2018-11-25T05:22:17Z;Armando;5726.056;114297999;Peru; +2018-11-25T04:50:47Z;Armando;4304.945;115568269;Peru; +2018-11-25T04:49:58Z;Ana;8184.91;114703788;Peru; +2018-11-25T04:49:45Z;Sandra;433.4825;115789984;Peru; +2018-11-25T04:47:21Z;Ana;2903.258;116391644;Peru; +2018-11-25T04:27:57Z;Eduardo;3230.513;114853598;Peru; +2018-11-25T04:17:14Z;Nathália;2514.405;116134754;Peru; +2018-11-25T03:39:35Z;Júlio;3239.007;116376404;Peru; +2018-11-25T03:32:45Z;Júlio;1542.073;114456775;Peru; +2018-11-25T03:22:13Z;nathalia;1199.403;114345088;Peru; +2018-11-25T02:53:46Z;Júlio;3158.76;114609951;Peru; +2018-11-25T02:19:34Z;Ana;4491.489;116196355;Peru; +2018-11-25T02:11:01Z;nathalia;6572.773;116259788;Peru; +2018-11-25T02:08:39Z;Armando;8653.105;114509173;Peru; +2018-11-25T01:53:14Z;Ana;1069.781;115733262;Peru; +2018-11-25T01:50:24Z;nathalia;311.1364;116133191;Peru; +2018-11-25T01:45:02Z;nathalia;3052.17;116066546;Peru; +2018-11-25T01:31:32Z;Júlio;2955.63;114635387;Peru; +2018-11-25T01:19:34Z;Ana;2295.266;115318791;Peru; +2018-11-25T01:17:59Z;Armando;4954.924;114932947;Peru; +2018-11-25T01:03:45Z;Ana;5350.569;115632903;Peru; +2018-11-25T00:46:00Z;Armando;8349.11;115998900;Peru; +2018-11-25T00:45:52Z;nathalia;4910.027;115599942;Peru; +2018-11-25T00:42:06Z;nathalia;2439.186;115147852;Peru; +2018-11-25T00:13:07Z;Sandra;1426.171;114491447;Peru; +2018-11-24T23:47:09Z;Sandra;7950.371;115125423;Peru; +2018-11-24T23:38:20Z;Eduardo;5542.118;114676180;Peru; +2018-11-24T23:35:26Z;Ana;5970.006;114635639;Peru; +2018-11-24T23:19:25Z;Armando;623.0564;114804314;Peru; +2018-11-24T22:54:47Z;nathalia;5032.996;115825623;Peru; +2018-11-24T22:31:56Z;nathalia;1819.457;116237552;Peru; +2018-11-24T21:44:17Z;Sandra;2193.258;115947424;Peru; +2018-11-24T21:24:28Z;Júlio Cesar;2153.099;115958640;Peru; +2018-11-24T21:18:27Z;Armando;375.7526;116046223;Peru; +2018-11-24T21:15:22Z;Júlio;1996.283;114353604;Peru; +2018-11-24T21:12:26Z;Ana;1568.895;115179755;Peru; +2018-11-24T21:00:51Z;Sandra;2300.942;114458507;Peru; +2018-11-24T20:54:50Z;Eduardo;7998.388;115684607;Peru; +2018-11-24T20:19:32Z;Sandra;4080.058;114778348;Peru; +2018-11-24T19:44:35Z;Sandra;283.2085;115901105;Peru; +2018-11-24T19:17:35Z;Júlio;841.0795;114732585;Peru; +2018-11-24T19:00:12Z;Júlio;4738.954;115495221;Peru; +2018-11-24T18:49:53Z;Sandra;6269.671;115749494;Peru; +2018-11-24T18:25:42Z;Júlio Cesar;7198.431;115052422;Peru; +2018-11-24T18:07:33Z;Eduardo;11633.63;115117081;Peru; +2018-11-24T18:04:14Z;nathalia;8631.235;115012227;Peru; +2018-11-24T17:36:02Z;Ana;2566.714;115642299;Peru; +2018-11-24T17:00:32Z;Júlio;6892.13;116060615;Peru; +2018-11-24T16:47:54Z;Júlio Cesar;4780.12;115560518;Peru; +2018-11-24T16:35:19Z;nathalia;5617.836;115847867;Peru; +2018-11-24T16:33:10Z;Armando;2267.039;115393744;Peru; +2018-11-24T16:31:08Z;Sandra;14533.36;114683901;Peru; +2018-11-24T16:15:00Z;Ana;4066.229;116150725;Peru; +2018-11-24T16:04:40Z;Sandra;940.8588;114383646;Peru; +2018-11-24T15:53:02Z;Sandra;9378.261;114895470;Peru; +2018-11-24T15:40:11Z;Júlio Cesar;2493.864;115105855;Peru; +2018-11-24T15:21:08Z;Júlio;1447.256;115375469;Peru; +2018-11-24T15:07:17Z;Ana;7113.285;114543538;Peru; +2018-11-24T15:02:09Z;Sandra;5359.63;114922327;Peru; +2018-11-24T14:53:14Z;Ana;209.3007;115941627;Peru; +2018-11-24T14:35:14Z;Nathália;133.1697;114706074;Peru; +2018-11-24T14:22:02Z;Eduardo;3487.744;115581728;Peru; +2018-11-24T14:18:06Z;Júlio;5345.525;115013665;Peru; +2018-11-24T13:53:31Z;Júlio Cesar;10310.94;115098500;Peru; +2018-11-24T13:49:23Z;Nathália;11810.31;115022068;Peru; +2018-11-24T13:34:07Z;Eduardo;9668.502;115796416;Peru; +2018-11-24T13:27:12Z;Júlio Cesar;4340.473;114978423;Peru; +2018-11-24T12:58:35Z;Sandra;1713.426;116042654;Peru; +2018-11-24T12:02:49Z;Armando;107.1049;116356768;Peru; +2018-11-24T11:27:40Z;Sandra;463.8115;114261910;Peru; +2018-11-24T11:15:40Z;Nathália;4917.493;115330297;Peru; +2018-11-24T11:14:26Z;Júlio;509.3049;114690893;Peru; +2018-11-24T11:11:16Z;Eduardo;1047.438;114283237;Peru; +2018-11-24T11:05:31Z;Armando;309.7705;115217156;Peru; +2018-11-24T10:51:18Z;Júlio Cesar;4221.052;115944635;Peru; +2018-11-24T10:36:14Z;Nathália;3216.713;114756552;Peru; +2018-11-24T10:24:01Z;nathalia;1475.58;115796007;Peru; +2018-11-24T10:18:01Z;Armando;80.56557;114526193;Peru; +2018-11-24T09:57:53Z;Sandra;5759.478;116154981;Peru; +2018-11-24T09:09:57Z;Júlio;3347.209;114658267;Peru; +2018-11-24T09:06:38Z;Eduardo;4879.9;115970529;Peru; +2018-11-24T08:34:49Z;Júlio Cesar;4669.753;114248608;Peru; +2018-11-24T08:26:22Z;nathalia;5826.871;115799494;Peru; +2018-11-24T08:06:53Z;Eduardo;1682.673;116037902;Peru; +2018-11-24T07:51:14Z;Ana;5783.947;114410574;Peru; +2018-11-24T07:40:11Z;Eduardo;7851.061;114475097;Peru; +2018-11-24T07:40:00Z;nathalia;6400.718;116160915;Peru; +2018-11-24T07:34:27Z;Júlio Cesar;4007.307;115467686;Peru; +2018-11-24T07:25:33Z;Nathália;2394.892;116256591;Peru; +2018-11-24T07:18:21Z;Júlio Cesar;7985.125;115979978;Peru; +2018-11-24T06:56:49Z;Júlio Cesar;3217.338;116333674;Peru; +2018-11-24T06:51:49Z;Júlio Cesar;1721.561;115170285;Peru; +2018-11-24T06:31:41Z;Júlio;3386.573;115393085;Peru; +2018-11-24T06:28:46Z;Júlio;5524.222;116015097;Peru; +2018-11-24T06:27:45Z;Armando;6204.033;115987457;Peru; +2018-11-24T05:48:53Z;Nathália;2257.433;114404592;Peru; +2018-11-24T05:34:03Z;Armando;2823.187;116141653;Peru; +2018-11-24T05:28:54Z;Júlio Cesar;67.0823;114764304;Peru; +2018-11-24T05:23:23Z;Armando;4525.902;115227526;Peru; +2018-11-24T04:56:21Z;Nathália;503.6442;115292276;Peru; +2018-11-24T04:52:07Z;Eduardo;1660.823;115137601;Peru; +2018-11-24T04:51:05Z;nathalia;96.03104;115114582;Peru; +2018-11-24T04:23:21Z;Ana;5304.942;114908811;Peru; +2018-11-24T04:17:38Z;Nathália;1394.051;114345732;Peru; +2018-11-24T04:05:30Z;nathalia;7573.324;114502305;Peru; +2018-11-24T04:00:28Z;Eduardo;8260.864;115955815;Peru; +2018-11-24T03:55:51Z;Eduardo;1629.283;115596488;Peru; +2018-11-24T03:47:27Z;Sandra;3728.332;115332556;Peru; +2018-11-24T03:39:46Z;Júlio Cesar;3232.687;116055930;Peru; +2018-11-24T03:27:15Z;Júlio;1962.484;114726315;Peru; +2018-11-24T02:42:15Z;nathalia;2101.165;114863447;Peru; +2018-11-24T02:31:36Z;Eduardo;5303.715;114350714;Peru; +2018-11-24T01:58:37Z;Armando;1165.174;115868123;Peru; +2018-11-24T01:35:18Z;Ana;3502.475;114414609;Peru; +2018-11-24T01:09:08Z;Nathália;2409.557;114689454;Peru; +2018-11-24T01:08:36Z;Armando;7288.718;116020989;Peru; +2018-11-24T00:57:34Z;Nathália;2215.009;115304969;Peru; +2018-11-24T00:28:38Z;Nathália;4128.209;116307813;Peru; +2018-11-24T00:25:12Z;Nathália;5388.198;116065273;Peru; +2018-11-24T00:00:44Z;Sandra;2244.383;116001603;Peru; +2018-11-23T23:45:40Z;Eduardo;11264.82;114767056;Peru; +2018-11-23T23:01:08Z;Júlio Cesar;10190.51;114581145;Peru; +2018-11-23T22:28:57Z;Nathália;12318.95;115756958;Peru; +2018-11-23T22:26:41Z;Armando;2632.087;116147220;Peru; +2018-11-23T22:16:50Z;Eduardo;8280.25;115896010;Peru; +2018-11-23T22:15:01Z;nathalia;2830.419;114469548;Peru; +2018-11-23T22:14:11Z;nathalia;3664.596;115039016;Peru; +2018-11-23T21:46:21Z;Júlio Cesar;7837.764;115236996;Peru; +2018-11-23T21:37:37Z;Sandra;7783.924;114695488;Peru; +2018-11-23T21:37:09Z;Sandra;271.2438;116104161;Peru; +2018-11-23T21:20:07Z;Armando;1024.176;115957920;Peru; +2018-11-23T21:06:28Z;nathalia;10594.52;114587580;Peru; +2018-11-23T20:57:52Z;Armando;3277.253;114289066;Peru; +2018-11-23T20:34:46Z;Armando;4897.485;115558249;Peru; +2018-11-23T20:22:52Z;Júlio Cesar;6389.076;115092382;Peru; +2018-11-23T19:57:51Z;nathalia;5392.471;115635902;Peru; +2018-11-23T19:26:41Z;Armando;1580.576;114856605;Peru; +2018-11-23T18:41:18Z;Nathália;2136.05;116184088;Peru; +2018-11-23T18:40:16Z;Ana;842.2316;114225812;Peru; +2018-11-23T18:38:24Z;nathalia;3156.829;115640603;Peru; +2018-11-23T17:41:43Z;Nathália;3616.196;115197802;Peru; +2018-11-23T17:21:57Z;Nathália;4724.981;114325993;Peru; +2018-11-23T16:41:32Z;Júlio;8795.626;116098865;Peru; +2018-11-23T16:23:32Z;nathalia;6764.187;114833867;Peru; +2018-11-23T16:11:01Z;Júlio Cesar;7545.758;115909053;Peru; +2018-11-23T15:50:14Z;Júlio;6434.195;116399793;Peru; +2018-11-23T15:49:52Z;nathalia;5878.083;114657069;Peru; +2018-11-23T15:44:25Z;Eduardo;74.92186;114261877;Peru; +2018-11-23T15:43:57Z;nathalia;1701.935;115311163;Peru; +2018-11-23T15:43:42Z;nathalia;4022.605;115976835;Peru; +2018-11-23T15:41:15Z;Sandra;6213.943;115438041;Peru; +2018-11-23T15:32:23Z;Júlio Cesar;2220.529;115705044;Peru; +2018-11-23T15:28:34Z;nathalia;11438.68;116014657;Peru; +2018-11-23T15:27:39Z;Armando;5839.377;115272625;Peru; +2018-11-23T14:54:57Z;Júlio;1313.054;115450911;Peru; +2018-11-23T14:19:18Z;Sandra;1278.447;114770754;Peru; +2018-11-23T14:10:56Z;Júlio Cesar;3920.47;115649235;Peru; +2018-11-23T14:09:43Z;Armando;7179.776;115095662;Peru; +2018-11-23T14:04:38Z;Júlio Cesar;992.7786;115289526;Peru; +2018-11-23T13:49:01Z;Nathália;5533.944;115985023;Peru; +2018-11-23T13:43:58Z;Armando;557.5573;114838538;Peru; +2018-11-23T13:03:19Z;Armando;4384.484;114274883;Peru; +2018-11-23T12:46:33Z;nathalia;21.04299;114282178;Peru; +2018-11-23T12:43:35Z;Ana;1769.1;116190237;Peru; +2018-11-23T12:38:55Z;Nathália;2921.885;115421464;Peru; +2018-11-23T12:33:29Z;Armando;6626.148;115193566;Peru; +2018-11-23T12:21:17Z;nathalia;5949.625;114762392;Peru; +2018-11-23T12:12:09Z;nathalia;12573.29;116164419;Peru; +2018-11-23T12:01:46Z;Eduardo;7340.776;115506549;Peru; +2018-11-23T11:48:50Z;Eduardo;2430.062;116260229;Peru; +2018-11-23T11:17:02Z;Sandra;3374.885;115807321;Peru; +2018-11-23T11:13:03Z;Eduardo;1176.073;115370185;Peru; +2018-11-23T11:08:19Z;Júlio Cesar;365.4537;114501900;Peru; +2018-11-23T10:47:27Z;Júlio;4867.599;115964676;Peru; +2018-11-23T10:47:16Z;Júlio;1731.13;116364490;Peru; +2018-11-23T10:44:39Z;Armando;2574.025;115701008;Peru; +2018-11-23T10:29:07Z;nathalia;13640.9;115748309;Peru; +2018-11-23T10:12:42Z;Júlio Cesar;1186.895;114244325;Peru; +2018-11-23T10:11:30Z;Armando;5508.192;115338402;Peru; +2018-11-23T09:35:29Z;Júlio;1847.015;114302588;Peru; +2018-11-23T09:18:52Z;Júlio;9032.51;114246368;Peru; +2018-11-23T09:18:28Z;Armando;2361.994;114967071;Peru; +2018-11-23T09:14:21Z;Nathália;5742.857;115670667;Peru; +2018-11-23T08:49:30Z;Ana;1235.316;114551415;Peru; +2018-11-23T08:25:57Z;Júlio;6699.732;114238973;Peru; +2018-11-23T08:25:43Z;nathalia;870.5251;115722358;Peru; +2018-11-23T08:25:20Z;Júlio Cesar;4582.772;115986778;Peru; +2018-11-23T08:21:49Z;Júlio;2495.501;115127632;Peru; +2018-11-23T08:05:08Z;Júlio;3476.428;114698479;Peru; +2018-11-23T08:00:41Z;Ana;2118.689;114695660;Peru; +2018-11-23T07:56:40Z;Sandra;854.3352;116003976;Peru; +2018-11-23T07:47:19Z;Sandra;520.84760000000006;115446353;Peru; +2018-11-23T07:35:56Z;nathalia;6841.5;115049530;Peru; +2018-11-23T07:32:41Z;nathalia;1219.701;116373573;Peru; +2018-11-23T07:23:05Z;Sandra;2252.813;116027832;Peru; +2018-11-23T07:13:51Z;Eduardo;2712.597;115796921;Peru; +2018-11-23T07:07:30Z;Júlio Cesar;4773.071;115655465;Peru; +2018-11-23T07:04:03Z;Armando;85.53312;115410281;Peru; +2018-11-23T06:52:50Z;Sandra;2442.572;115727280;Peru; +2018-11-23T06:30:15Z;nathalia;138.5838;114480053;Peru; +2018-11-23T06:28:20Z;Sandra;7959.991;114333281;Peru; +2018-11-23T06:22:03Z;Júlio Cesar;4138.117;116399746;Peru; +2018-11-23T05:59:24Z;Júlio;4026.876;114230334;Peru; +2018-11-23T05:34:47Z;nathalia;2493.314;116202019;Peru; +2018-11-23T05:32:37Z;Eduardo;240.4164;114326341;Peru; +2018-11-23T05:17:19Z;Júlio;3578.206;114358868;Peru; +2018-11-23T04:56:19Z;Nathália;8144.101;115450232;Peru; +2018-11-23T04:46:56Z;Sandra;2026.311;114700101;Peru; +2018-11-23T04:40:43Z;Júlio Cesar;3414.14;116110682;Peru; +2018-11-23T04:22:02Z;Sandra;2321.678;116271851;Peru; +2018-11-23T03:40:03Z;Nathália;2526.499;114847669;Peru; +2018-11-23T03:18:59Z;Sandra;643.5184;116336312;Peru; +2018-11-23T03:17:23Z;Nathália;4868.35;114237812;Peru; +2018-11-23T03:04:00Z;Eduardo;3717.564;115170366;Peru; +2018-11-23T02:48:30Z;Armando;7990.381;116039735;Peru; +2018-11-23T02:30:22Z;nathalia;7756.662;116348220;Peru; +2018-11-23T02:15:20Z;nathalia;5393.681;115072997;Peru; +2018-11-23T02:11:09Z;Júlio Cesar;287.9666;115513358;Peru; +2018-11-23T01:59:30Z;nathalia;452.7584;115729776;Peru; +2018-11-23T01:09:44Z;Júlio Cesar;2183.504;114235895;Peru; +2018-11-23T01:02:24Z;Júlio;3091.169;115219761;Peru; +2018-11-23T00:45:07Z;nathalia;468.3455;116360135;Peru; +2018-11-23T00:39:55Z;Júlio Cesar;1665.735;114693028;Peru; +2018-11-23T00:03:19Z;Sandra;3260.07;115046320;Peru; +2018-11-23T00:00:36Z;Eduardo;1238.027;115456780;Peru; +2018-11-22T23:48:33Z;Sandra;5558.136;114529213;Peru; +2018-11-22T23:07:50Z;Eduardo;3756.591;115173440;Peru; +2018-11-22T22:45:56Z;nathalia;1856.465;116267699;Peru; +2018-11-22T22:40:15Z;Júlio;2297.954;114963234;Peru; +2018-11-22T22:37:11Z;Sandra;1230.687;114692371;Peru; +2018-11-22T22:07:41Z;Eduardo;3803.736;115448420;Peru; +2018-11-22T21:56:03Z;Sandra;7111.488;116136343;Peru; +2018-11-22T21:53:14Z;Nathália;2235.349;115979536;Peru; +2018-11-22T21:38:43Z;Júlio Cesar;5893.213;115366500;Peru; +2018-11-22T21:19:27Z;Júlio Cesar;6736.087;115396216;Peru; +2018-11-22T21:09:26Z;nathalia;906.4795;115059258;Peru; +2018-11-22T21:02:56Z;Júlio Cesar;5026.05;114229455;Peru; +2018-11-22T20:58:06Z;nathalia;5504.898;114250116;Peru; +2018-11-22T20:55:31Z;nathalia;3651.247;116262659;Peru; +2018-11-22T20:11:06Z;Sandra;5204.205;115711567;Peru; +2018-11-22T20:10:04Z;Júlio;20.97206;115987688;Peru; +2018-11-22T19:36:32Z;Júlio;165.9435;114739396;Peru; +2018-11-22T18:53:05Z;Nathália;3335.651;116227726;Peru; +2018-11-22T18:14:17Z;Nathália;2561.656;115590927;Peru; +2018-11-22T18:02:26Z;Eduardo;911.2952;116380467;Peru; +2018-11-22T17:51:45Z;Júlio Cesar;2797.088;114919658;Peru; +2018-11-22T17:51:06Z;Nathália;1098.21;114547123;Peru; +2018-11-22T17:47:15Z;Júlio;7991.581;115866818;Peru; +2018-11-22T17:40:46Z;Armando;1639.981;116012089;Peru; +2018-11-22T17:25:08Z;Ana;2095.825;115379258;Peru; +2018-11-22T17:10:04Z;Ana;9834.305;115688749;Peru; +2018-11-22T17:02:33Z;Nathália;893.4027;115624633;Peru; +2018-11-22T16:23:28Z;Eduardo;5623.951;115210272;Peru; +2018-11-22T15:59:56Z;Armando;4117.871;116085943;Peru; +2018-11-22T15:35:01Z;Ana;2175.611;115962314;Peru; +2018-11-22T15:06:25Z;Júlio Cesar;7580.347;114415299;Peru; +2018-11-22T15:05:44Z;Júlio;7497.091;115303453;Peru; +2018-11-22T14:38:13Z;Eduardo;4253.76;114276121;Peru; +2018-11-22T14:36:05Z;nathalia;126.671;116053974;Peru; +2018-11-22T14:24:33Z;nathalia;11239.53;115744484;Peru; +2018-11-22T14:22:15Z;nathalia;1841.306;114251483;Peru; +2018-11-22T14:17:22Z;Júlio Cesar;1414.851;115201538;Peru; +2018-11-22T13:46:19Z;Ana;3264.012;114926995;Peru; +2018-11-22T13:29:15Z;nathalia;3099.278;114360491;Peru; +2018-11-22T13:24:40Z;nathalia;4876.186;115571719;Peru; +2018-11-22T13:15:31Z;nathalia;636.2019;114352126;Peru; +2018-11-22T12:58:15Z;nathalia;498.9368;114237021;Peru; +2018-11-22T12:27:42Z;Armando;2185.161;116368318;Peru; +2018-11-22T12:27:39Z;Armando;1513.865;115231383;Peru; +2018-11-22T12:21:56Z;Sandra;1502.985;114362232;Peru; +2018-11-22T11:44:33Z;Eduardo;1746.928;114478918;Peru; +2018-11-22T11:00:08Z;Armando;14614.45;115946583;Peru; +2018-11-22T10:52:53Z;Armando;6815.528;115632148;Peru; +2018-11-22T10:43:58Z;Ana;5482.329;116256855;Peru; +2018-11-22T10:09:04Z;Armando;950.8769;116077029;Peru; +2018-11-22T09:46:09Z;Armando;8072.868;115409167;Peru; +2018-11-22T09:31:54Z;Júlio Cesar;1715.781;115976898;Peru; +2018-11-22T09:20:28Z;Eduardo;6640.98;115035154;Peru; +2018-11-22T08:58:59Z;Júlio;1494.219;115962138;Peru; +2018-11-22T08:56:53Z;Júlio Cesar;11294.22;115097594;Peru; +2018-11-22T07:42:58Z;Sandra;6583.29;116062840;Peru; +2018-11-22T07:39:03Z;Eduardo;3819.953;115836485;Peru; +2018-11-22T07:39:03Z;Nathália;7364.266;116372089;Peru; +2018-11-22T07:35:47Z;Nathália;3503.718;115406924;Peru; +2018-11-22T07:14:13Z;Nathália;1052.32;116002007;Peru; +2018-11-22T07:03:49Z;Ana;2762.652;114559081;Peru; +2018-11-22T06:57:08Z;Ana;3726.861;114680690;Peru; +2018-11-22T06:51:08Z;Júlio Cesar;4192.475;115351911;Peru; +2018-11-22T06:19:29Z;Sandra;6383.992;115343105;Peru; +2018-11-22T06:19:28Z;Júlio Cesar;2087.772;116384854;Peru; +2018-11-22T06:14:07Z;Eduardo;5242.096;115105652;Peru; +2018-11-22T05:50:54Z;Armando;3486.023;114709862;Peru; +2018-11-22T05:48:57Z;Ana;10352.22;116046825;Peru; +2018-11-22T05:27:56Z;Ana;4742.113;116096984;Peru; +2018-11-22T05:13:34Z;Armando;5380.591;115100259;Peru; +2018-11-22T05:04:50Z;Nathália;2649.498;115882295;Peru; +2018-11-22T04:58:23Z;Júlio;3858.608;114223508;Peru; +2018-11-22T04:58:13Z;Júlio;2602.141;114692102;Peru; +2018-11-22T04:53:51Z;Júlio;12061.79;115359127;Peru; +2018-11-22T04:37:52Z;Armando;5685.561;115795926;Peru; +2018-11-22T04:34:05Z;Ana;6580.458;116030564;Peru; +2018-11-22T04:22:57Z;Nathália;3045.005;115765323;Peru; +2018-11-22T04:19:36Z;Nathália;2725.514;116091360;Peru; +2018-11-22T04:14:25Z;Armando;3673.044;115210676;Peru; +2018-11-22T04:13:45Z;Júlio;2112.308;114839040;Peru; +2018-11-22T03:36:07Z;Júlio Cesar;2409.125;116207266;Peru; +2018-11-22T03:05:23Z;Sandra;308.8636;115300112;Peru; +2018-11-22T02:57:10Z;Nathália;8701.004;115090811;Peru; +2018-11-22T02:55:03Z;nathalia;3710.246;114464531;Peru; +2018-11-22T02:53:19Z;nathalia;7354.381;115312991;Peru; +2018-11-22T02:42:22Z;Sandra;901.6783;115638670;Peru; +2018-11-22T02:42:08Z;Sandra;1305.569;116388865;Peru; +2018-11-22T02:36:23Z;Sandra;2460.307;114837130;Peru; +2018-11-22T01:51:28Z;Armando;15.45572;115710439;Peru; +2018-11-22T01:40:45Z;Sandra;9090.168;116128565;Peru; +2018-11-22T00:57:32Z;Armando;3861.017;114561446;Peru; +2018-11-22T00:47:37Z;Armando;1152.82;115004045;Peru; +2018-11-22T00:41:35Z;nathalia;8433.32;114763989;Peru; +2018-11-22T00:17:01Z;nathalia;8458.333;115625119;Peru; +2018-11-21T23:45:49Z;Armando;8572.77;114994348;Peru; +2018-11-21T23:21:50Z;Júlio Cesar;1415.036;116275810;Peru; +2018-11-21T23:19:44Z;Ana;2632.274;116215787;Peru; +2018-11-21T23:18:38Z;Júlio Cesar;4021.109;114416187;Peru; +2018-11-21T22:55:18Z;nathalia;768.8911;114424969;Peru; +2018-11-21T22:44:47Z;Sandra;3748.665;116348132;Peru; +2018-11-21T22:42:53Z;Nathália;7276.544;114463113;Peru; +2018-11-21T22:12:21Z;Júlio;6441.768;115276584;Peru; +2018-11-21T22:01:13Z;Armando;5813.94;114542774;Peru; +2018-11-21T21:48:26Z;Ana;9641.961;115990758;Peru; +2018-11-21T21:35:41Z;Armando;10332.34;115970433;Peru; +2018-11-21T21:28:37Z;Júlio Cesar;387.8431;115469964;Peru; +2018-11-21T21:28:09Z;Júlio Cesar;6588.655;115839726;Peru; +2018-11-21T21:09:46Z;nathalia;4841.908;114499173;Peru; +2018-11-21T20:41:01Z;Júlio Cesar;9351.028;115729678;Peru; +2018-11-21T20:40:11Z;Júlio Cesar;3916.607;115519208;Peru; +2018-11-21T20:21:24Z;Ana;2088.633;116129936;Peru; +2018-11-21T20:19:31Z;nathalia;2089.062;116335999;Peru; +2018-11-21T20:17:20Z;Armando;7065.663;115408499;Peru; +2018-11-21T20:02:26Z;Eduardo;4059.555;116086879;Peru; +2018-11-21T20:01:05Z;Armando;7143.128;114380465;Peru; +2018-11-21T18:31:45Z;nathalia;2807.512;115983605;Peru; +2018-11-21T18:27:56Z;Sandra;779.5324;116026571;Peru; +2018-11-21T18:21:52Z;Ana;1204.229;114261612;Peru; +2018-11-21T18:11:42Z;Sandra;2974.03;115686192;Peru; +2018-11-21T18:04:55Z;Sandra;7813.673;114636394;Peru; +2018-11-21T18:01:50Z;Eduardo;1764.987;114236880;Peru; +2018-11-21T17:59:25Z;Armando;1562.951;115705459;Peru; +2018-11-21T17:07:03Z;Júlio Cesar;926.0487;114886077;Peru; +2018-11-21T16:43:44Z;Armando;574.7236;115450945;Peru; +2018-11-21T16:28:01Z;Armando;1251.791;115041994;Peru; +2018-11-21T15:57:24Z;nathalia;6345.083;115405390;Peru; +2018-11-21T15:56:04Z;Sandra;1331.004;115244049;Peru; +2018-11-21T15:14:04Z;Sandra;123.283;115377720;Peru; +2018-11-21T15:11:48Z;nathalia;5659.603;116193600;Peru; +2018-11-21T14:04:33Z;Armando;4902.862;115667948;Peru; +2018-11-21T13:43:15Z;Júlio;2218.16;114959814;Peru; +2018-11-21T13:05:18Z;Armando;8680.051;115795388;Peru; +2018-11-21T12:55:43Z;Sandra;9238.398;114365983;Peru; +2018-11-21T12:30:22Z;Eduardo;2010.996;115477585;Peru; +2018-11-21T12:17:06Z;Ana;8424.165;114376152;Peru; +2018-11-21T12:09:40Z;nathalia;2743.332;115179326;Peru; +2018-11-21T11:15:53Z;Júlio;3410.258;115036093;Peru; +2018-11-21T11:11:02Z;Eduardo;2255.473;115382192;Peru; +2018-11-21T09:34:38Z;Nathália;2542.616;115331079;Peru; +2018-11-21T08:52:59Z;Ana;523.8051;114694374;Peru; +2018-11-21T08:34:16Z;Nathália;11244.76;115967672;Peru; +2018-11-21T08:21:53Z;Eduardo;14035.84;115274630;Peru; +2018-11-21T07:49:14Z;Nathália;3388.467;114980334;Peru; +2018-11-21T07:45:05Z;Ana;1170.751;116122864;Peru; +2018-11-21T07:25:01Z;Eduardo;4060.987;114385088;Peru; +2018-11-21T07:11:26Z;nathalia;2204.932;114583012;Peru; +2018-11-21T06:58:05Z;Nathália;1218.198;114863891;Peru; +2018-11-21T06:57:07Z;Armando;1795.971;115438613;Peru; +2018-11-21T06:41:07Z;nathalia;751.5909;114965103;Peru; +2018-11-21T06:38:31Z;nathalia;6691.983;115587621;Peru; +2018-11-21T06:24:52Z;Júlio;338.9949;114460172;Peru; +2018-11-21T06:23:22Z;Armando;6316.818;115699193;Peru; +2018-11-21T04:53:59Z;Ana;5399.648;114541847;Peru; +2018-11-21T04:51:37Z;nathalia;2953.613;115579830;Peru; +2018-11-21T04:41:44Z;Armando;2665.105;116105528;Peru; +2018-11-21T04:08:54Z;nathalia;2820.758;115331323;Peru; +2018-11-21T04:08:53Z;Nathália;5277.341;114289176;Peru; +2018-11-21T04:03:18Z;Sandra;4181.042;115114412;Peru; +2018-11-21T03:55:44Z;Júlio;1978.344;114907297;Peru; +2018-11-21T03:48:50Z;Júlio;40.50991;115405028;Peru; +2018-11-21T03:36:55Z;Eduardo;2593.045;114895181;Peru; +2018-11-21T03:07:14Z;nathalia;589.4188;115786985;Peru; +2018-11-21T02:52:56Z;Sandra;7199.655;115591244;Peru; +2018-11-21T02:45:47Z;Sandra;9825.418;114788092;Peru; +2018-11-21T02:44:16Z;Nathália;1469.506;114832024;Peru; +2018-11-21T02:37:14Z;Nathália;4260.124;115358387;Peru; +2018-11-21T02:29:06Z;Ana;7568.44;115484975;Peru; +2018-11-21T02:26:34Z;Armando;5764.563;115897213;Peru; +2018-11-21T02:14:07Z;Júlio Cesar;1770.624;116162870;Peru; +2018-11-21T02:11:55Z;Júlio Cesar;94.625470000000007;114748582;Peru; +2018-11-21T01:54:40Z;Ana;4285.83;115029987;Peru; +2018-11-21T01:49:14Z;Armando;4253.015;116383543;Peru; +2018-11-21T01:44:56Z;Eduardo;1411.572;114902100;Peru; +2018-11-21T01:39:02Z;nathalia;3410.932;115589092;Peru; +2018-11-21T01:28:18Z;Júlio;1723.066;115537443;Peru; +2018-11-21T01:25:48Z;Nathália;93.61378;116287151;Peru; +2018-11-21T01:09:58Z;Armando;1108.576;115023283;Peru; +2018-11-21T01:00:56Z;Júlio Cesar;5000.622;115987501;Peru; +2018-11-21T00:08:48Z;Sandra;2994.464;115460601;Peru; +2018-11-21T00:07:55Z;Sandra;4828.115;115662630;Peru; +2018-11-20T22:59:13Z;Ana;4546.16;114736260;Peru; +2018-11-20T22:54:30Z;Sandra;4245.882;116368160;Peru; +2018-11-20T22:54:07Z;nathalia;447.5885;114712931;Peru; +2018-11-20T22:52:51Z;Sandra;6307.648;114732376;Peru; +2018-11-20T22:50:18Z;Ana;3170.821;116019067;Peru; +2018-11-20T22:41:15Z;nathalia;104.6004;115729456;Peru; +2018-11-20T22:30:53Z;Nathália;198.0893;115905313;Peru; +2018-11-20T22:05:33Z;Ana;2052.411;115943766;Peru; +2018-11-20T22:04:26Z;Ana;350.8054;116316736;Peru; +2018-11-20T21:17:40Z;Sandra;9179.652;114565643;Peru; +2018-11-20T21:02:17Z;Júlio Cesar;2256.475;115548986;Peru; +2018-11-20T20:19:23Z;Nathália;1128.319;114724340;Peru; +2018-11-20T20:15:55Z;Eduardo;836.1218;116061939;Peru; +2018-11-20T20:13:20Z;nathalia;575.3803;115003695;Peru; +2018-11-20T19:37:56Z;Júlio Cesar;3356.788;115505690;Peru; +2018-11-20T19:32:46Z;Júlio Cesar;7502.985;115236579;Peru; +2018-11-20T19:27:25Z;Júlio;5818.69;116272470;Peru; +2018-11-20T19:15:07Z;Ana;3379.33;114799126;Peru; +2018-11-20T19:11:18Z;Armando;105.7427;114671908;Peru; +2018-11-20T19:01:09Z;Nathália;2904.168;116093298;Peru; +2018-11-20T17:58:00Z;Armando;4037.432;114966989;Peru; +2018-11-20T17:34:08Z;Sandra;1683.937;114444982;Peru; +2018-11-20T17:20:48Z;Sandra;3060.085;114934144;Peru; +2018-11-20T17:20:03Z;Eduardo;5155.692;116316968;Peru; +2018-11-20T17:10:57Z;Nathália;771.7495;115127227;Peru; +2018-11-20T17:07:35Z;Sandra;12603.54;114879801;Peru; +2018-11-20T16:46:30Z;Júlio;5372.243;115890591;Peru; +2018-11-20T16:45:16Z;nathalia;1930.247;115219349;Peru; +2018-11-20T16:40:32Z;Ana;693.6281;114952731;Peru; +2018-11-20T16:34:54Z;nathalia;224.5703;115261079;Peru; +2018-11-20T16:34:21Z;Júlio;609.3683;114517097;Peru; +2018-11-20T16:21:56Z;Nathália;3901.017;114880739;Peru; +2018-11-20T16:07:40Z;Sandra;7236.481;114277390;Peru; +2018-11-20T15:54:26Z;Júlio Cesar;7369.153;115060905;Peru; +2018-11-20T15:44:22Z;Ana;2621.453;116329499;Peru; +2018-11-20T15:08:19Z;Nathália;1450.922;115003115;Peru; +2018-11-20T15:07:18Z;Ana;3068.012;115449022;Peru; +2018-11-20T14:54:30Z;Júlio Cesar;445.0985;115235565;Peru; +2018-11-20T14:41:50Z;Eduardo;2556.719;116335470;Peru; +2018-11-20T14:24:28Z;nathalia;8450.182;115687658;Peru; +2018-11-20T14:08:38Z;Armando;6707.18;116254050;Peru; +2018-11-20T14:06:12Z;Armando;9944.016;114931092;Peru; +2018-11-20T14:05:05Z;Sandra;1559.092;115348571;Peru; +2018-11-20T14:02:24Z;Sandra;8431.91;115838970;Peru; +2018-11-20T13:52:16Z;Júlio Cesar;5932.036;116270656;Peru; +2018-11-20T13:33:18Z;Eduardo;6789.487;115671237;Peru; +2018-11-20T13:24:09Z;Nathália;1402.3;116126252;Peru; +2018-11-20T13:09:19Z;Júlio Cesar;7695.176;115508105;Peru; +2018-11-20T13:03:57Z;Eduardo;1764.495;114281158;Peru; +2018-11-20T12:57:53Z;Ana;5026.418;116361722;Peru; +2018-11-20T12:57:17Z;Eduardo;8130.535;115770749;Peru; +2018-11-20T12:33:43Z;Júlio;1314.129;115321756;Peru; +2018-11-20T12:07:41Z;Eduardo;322.823;114625347;Peru; +2018-11-20T12:04:28Z;Ana;6010.449;114843339;Peru; +2018-11-20T12:01:06Z;Eduardo;584.5222;116043273;Peru; +2018-11-20T11:59:22Z;Júlio;1435.55;115038868;Peru; +2018-11-20T11:27:19Z;Armando;881.4833;115236602;Peru; +2018-11-20T11:07:49Z;Armando;7722.466;116220691;Peru; +2018-11-20T10:44:50Z;Nathália;5704.596;114338491;Peru; +2018-11-20T10:43:40Z;Ana;5221.626;114275056;Peru; +2018-11-20T10:43:39Z;Júlio;4518.187;114693430;Peru; +2018-11-20T10:36:02Z;Júlio;1779.758;116391183;Peru; +2018-11-20T10:31:50Z;Nathália;2875.655;116382958;Peru; +2018-11-20T10:23:43Z;Júlio;9254.136;114366240;Peru; +2018-11-20T10:06:15Z;Sandra;4900.801;114204163;Peru; +2018-11-20T10:05:07Z;Júlio;7350.244;114458619;Peru; +2018-11-20T09:57:27Z;Júlio;1449.769;115109183;Peru; +2018-11-20T09:08:30Z;Nathália;2159.922;114945889;Peru; +2018-11-20T09:06:42Z;Ana;8902.066;114779344;Peru; +2018-11-20T08:47:31Z;Eduardo;9312.001;114716843;Peru; +2018-11-20T08:38:41Z;Júlio;1316.362;115592990;Peru; +2018-11-20T08:30:09Z;Sandra;9109.966;115916088;Peru; +2018-11-20T08:28:49Z;Júlio;5569.588;114332295;Peru; +2018-11-20T08:26:06Z;Sandra;10374.76;115456001;Peru; +2018-11-20T08:13:15Z;Sandra;9841.377;114844166;Peru; +2018-11-20T08:05:04Z;Nathália;983.4245;115588281;Peru; +2018-11-20T07:59:08Z;Nathália;5317.527;115725580;Peru; +2018-11-20T07:39:18Z;Júlio Cesar;2035.109;115959889;Peru; +2018-11-20T07:23:50Z;Sandra;2224.687;116280433;Peru; +2018-11-20T07:22:21Z;Eduardo;5938.887;114754501;Peru; +2018-11-20T07:07:15Z;Júlio Cesar;2151.241;115073800;Peru; +2018-11-20T07:06:22Z;Júlio Cesar;7040.383;114319208;Peru; +2018-11-20T06:29:34Z;Júlio;9476.865;114246440;Peru; +2018-11-20T06:06:47Z;Júlio;313.2416;114831351;Peru; +2018-11-20T05:54:19Z;Armando;3337.982;114218456;Peru; +2018-11-20T05:43:49Z;Nathália;7615.642;115404215;Peru; +2018-11-20T05:25:26Z;Nathália;7245.589;115335889;Peru; +2018-11-20T05:19:06Z;Ana;7547.382;116064688;Peru; +2018-11-20T05:18:42Z;nathalia;36.96689;114483713;Peru; +2018-11-20T05:14:24Z;Ana;2462.143;115179556;Peru; +2018-11-20T05:06:54Z;Sandra;9826.972;115163570;Peru; +2018-11-20T04:59:49Z;Júlio;4836.883;114259528;Peru; +2018-11-20T04:51:01Z;Ana;4886.44;115836092;Peru; +2018-11-20T04:32:26Z;Eduardo;2962.241;115466216;Peru; +2018-11-20T04:32:04Z;Júlio Cesar;4603.575;116040733;Peru; +2018-11-20T04:11:55Z;Ana;2918.884;114678379;Peru; +2018-11-20T04:03:56Z;Sandra;508.8035;114494944;Peru; +2018-11-20T03:47:58Z;Ana;3345.729;115306748;Peru; +2018-11-20T03:36:55Z;Júlio;1023.751;114333808;Peru; +2018-11-20T03:30:48Z;Sandra;5097.563;115051116;Peru; +2018-11-20T03:19:30Z;Ana;4380.044;116272728;Peru; +2018-11-20T03:11:42Z;Nathália;7939.526;115672523;Peru; +2018-11-20T02:55:42Z;Armando;11214.02;115391587;Peru; +2018-11-20T02:38:35Z;Júlio;8135.977;115404257;Peru; +2018-11-20T02:26:04Z;Eduardo;1136.507;114940996;Peru; +2018-11-20T02:13:05Z;Armando;2493.652;115805203;Peru; +2018-11-20T01:47:20Z;Júlio;12149.27;114954915;Peru; +2018-11-20T01:43:39Z;nathalia;163.227;114486291;Peru; +2018-11-20T01:30:14Z;Nathália;3515.541;116176240;Peru; +2018-11-20T01:14:54Z;Armando;1942.222;115628462;Peru; +2018-11-20T00:22:40Z;Eduardo;3649.939;116140071;Peru; +2018-11-20T00:11:47Z;Eduardo;3648.963;114342271;Peru; +2018-11-20T00:07:44Z;Júlio Cesar;4256.321;114590633;Peru; +2018-11-19T23:51:09Z;Ana;68.8738;114666457;Peru; +2018-11-19T22:11:10Z;Júlio Cesar;3506.847;114634498;Peru; +2018-11-19T21:54:15Z;Ana;1563.846;115366962;Peru; +2018-11-19T21:51:25Z;Armando;7286.127;115112684;Peru; +2018-11-19T21:36:56Z;nathalia;1239.534;116096217;Peru; +2018-11-19T21:31:55Z;Júlio Cesar;862.0411;114874761;Peru; +2018-11-19T21:24:15Z;Eduardo;2324.603;115585106;Peru; +2018-11-19T21:17:16Z;Sandra;7484.96;115743050;Peru; +2018-11-19T21:05:15Z;Nathália;70.52998;115911687;Peru; +2018-11-19T20:59:13Z;Júlio;831.3329;116148685;Peru; +2018-11-19T20:50:13Z;Ana;1105.295;114886754;Peru; +2018-11-19T20:48:30Z;Júlio;4831.412;115986923;Peru; +2018-11-19T20:24:20Z;Júlio;1187.482;116057191;Peru; +2018-11-19T20:21:13Z;Armando;713.2922;116154643;Peru; +2018-11-19T19:32:27Z;Júlio;928.5815;115030469;Peru; +2018-11-19T19:29:48Z;Sandra;9546.882;116360111;Peru; +2018-11-19T19:05:49Z;Armando;3825.269;114615480;Peru; +2018-11-19T18:38:28Z;Júlio;6209.352;114808613;Peru; +2018-11-19T18:36:05Z;Armando;2564.26;115133554;Peru; +2018-11-19T18:32:53Z;Eduardo;1568.423;114310024;Peru; +2018-11-19T18:23:33Z;Nathália;367.4478;114907350;Peru; +2018-11-19T18:09:41Z;Ana;5928.845;115360180;Peru; +2018-11-19T17:54:41Z;Sandra;148.5185;115471478;Peru; +2018-11-19T17:51:07Z;Eduardo;5335.94;115111742;Peru; +2018-11-19T17:24:00Z;nathalia;2266.946;114876427;Peru; +2018-11-19T17:18:42Z;Armando;1638.019;115231829;Peru; +2018-11-19T17:07:12Z;Eduardo;5712.418;115062492;Peru; +2018-11-19T16:39:31Z;Sandra;4270.499;116110886;Peru; +2018-11-19T16:26:12Z;nathalia;4436.845;115067002;Peru; +2018-11-19T15:56:22Z;Nathália;1832.152;114427009;Peru; +2018-11-19T15:10:10Z;Júlio Cesar;858.6976;114838925;Peru; +2018-11-19T15:10:04Z;Júlio;2277.967;115868969;Peru; +2018-11-19T14:43:43Z;Júlio;954.7516;114279067;Peru; +2018-11-19T14:19:02Z;Ana;4325.612;114858430;Peru; +2018-11-19T14:12:13Z;Júlio;7858.657;114901330;Peru; +2018-11-19T13:36:47Z;Ana;2380.777;116231461;Peru; +2018-11-19T13:35:50Z;Ana;106.835;114787966;Peru; +2018-11-19T13:09:26Z;Sandra;9901.367;115266836;Peru; +2018-11-19T13:01:50Z;Ana;1008.313;114571139;Peru; +2018-11-19T12:50:22Z;Eduardo;1778.646;115313250;Peru; +2018-11-19T12:28:47Z;Sandra;4.379218;114925947;Peru; +2018-11-19T11:39:29Z;Eduardo;3716.131;114663706;Peru; +2018-11-19T10:36:10Z;nathalia;9042.682;115146423;Peru; +2018-11-19T10:35:08Z;Nathália;4248.163;114652629;Peru; +2018-11-19T10:02:00Z;Eduardo;2339.859;115412558;Peru; +2018-11-19T09:42:38Z;Ana;1134.671;114355552;Peru; +2018-11-19T09:30:05Z;Júlio;3201.525;115334224;Peru; +2018-11-19T09:13:45Z;Sandra;982.6881;115705490;Peru; +2018-11-19T09:05:45Z;Ana;152.3516;115135386;Peru; +2018-11-19T08:42:03Z;Júlio;3335.734;114437194;Peru; +2018-11-19T08:37:34Z;Júlio Cesar;4758.968;114451828;Peru; +2018-11-19T08:30:36Z;Nathália;4686.498;115016255;Peru; +2018-11-19T08:27:16Z;Armando;11060.58;115475233;Peru; +2018-11-19T08:24:19Z;Júlio;4196.773;116386614;Peru; +2018-11-19T07:38:25Z;nathalia;1072.061;114418510;Peru; +2018-11-19T07:25:29Z;nathalia;5069.498;114951507;Peru; +2018-11-19T06:24:08Z;Eduardo;7203.138;114901433;Peru; +2018-11-19T06:22:03Z;Júlio Cesar;13946.52;115838649;Peru; +2018-11-19T06:05:33Z;Ana;602.6764;114788626;Peru; +2018-11-19T06:04:25Z;Nathália;2039.121;114920560;Peru; +2018-11-19T05:23:41Z;Júlio Cesar;6744.269;116079442;Peru; +2018-11-19T05:11:06Z;Sandra;1780.512;114909054;Peru; +2018-11-19T05:09:56Z;Júlio;4230.741;115609743;Peru; +2018-11-19T04:59:13Z;Júlio Cesar;2503.527;116301871;Peru; +2018-11-19T04:48:14Z;Júlio Cesar;3571.688;114230592;Peru; +2018-11-19T04:41:00Z;Sandra;3409.802;114498742;Peru; +2018-11-19T04:09:49Z;Ana;756.3658;114397472;Peru; +2018-11-19T04:05:39Z;Ana;5655.822;114930126;Peru; +2018-11-19T03:57:43Z;Eduardo;4168.717;115504423;Peru; +2018-11-19T03:47:56Z;Ana;697.6647;115253476;Peru; +2018-11-19T03:00:24Z;nathalia;2888.216;115187999;Peru; +2018-11-19T02:20:30Z;Armando;2491.51;115047821;Peru; +2018-11-19T02:04:48Z;nathalia;2887.913;116105910;Peru; +2018-11-19T02:04:37Z;Júlio;766.6045;116295056;Peru; +2018-11-19T01:49:52Z;Ana;7048.976;115844896;Peru; +2018-11-19T01:47:03Z;Nathália;2419.312;114231690;Peru; +2018-11-19T01:27:23Z;Nathália;5405.167;115668667;Peru; +2018-11-19T01:13:24Z;nathalia;7111.445;115768752;Peru; +2018-11-19T01:00:58Z;nathalia;5241.319;114832210;Peru; +2018-11-19T00:41:06Z;Nathália;256.1636;115913510;Peru; +2018-11-19T00:36:20Z;Júlio;2028.139;115982594;Peru; +2018-11-19T00:30:05Z;Júlio Cesar;2230.839;116131137;Peru; +2018-11-19T00:23:31Z;nathalia;629.0477;114412103;Peru; +2018-11-19T00:04:06Z;nathalia;5055.032;114806765;Peru; +2018-11-18T23:42:21Z;Júlio;1049.69;115948277;Peru; +2018-11-18T23:39:53Z;nathalia;4596.746;115074117;Peru; +2018-11-18T23:12:31Z;nathalia;4349.801;114585084;Peru; +2018-11-18T23:08:00Z;Ana;3519.228;114796585;Peru; +2018-11-18T22:47:38Z;Eduardo;3426.503;114926208;Peru; +2018-11-18T22:32:56Z;nathalia;2602.809;114881125;Peru; +2018-11-18T22:25:00Z;Eduardo;4460.133;114695521;Peru; +2018-11-18T22:15:42Z;Nathália;9051.905;115205356;Peru; +2018-11-18T22:08:52Z;Sandra;6204;114617021;Peru; +2018-11-18T22:07:38Z;Armando;1192.128;114327177;Peru; +2018-11-18T21:21:36Z;Nathália;8255.08;115830150;Peru; +2018-11-18T21:14:37Z;Eduardo;1327.944;114379015;Peru; +2018-11-18T21:14:15Z;nathalia;15577.95;116202852;Peru; +2018-11-18T21:14:04Z;Ana;784.2513;115959855;Peru; +2018-11-18T21:11:35Z;Nathália;1295.481;115037898;Peru; +2018-11-18T20:51:18Z;nathalia;5434.64;115064300;Peru; +2018-11-18T20:45:43Z;nathalia;11137.3;115426381;Peru; +2018-11-18T20:43:03Z;Júlio;1654.595;114760977;Peru; +2018-11-18T20:42:14Z;Ana;992.3786;114451138;Peru; +2018-11-18T20:33:39Z;Sandra;853.9542;116357355;Peru; +2018-11-18T20:16:48Z;Júlio Cesar;4076.914;114885969;Peru; +2018-11-18T20:04:51Z;Júlio;2901.62;115638167;Peru; +2018-11-18T19:58:20Z;Ana;8466.218;115088129;Peru; +2018-11-18T19:55:47Z;Nathália;6775.738;115651747;Peru; +2018-11-18T19:46:13Z;Júlio Cesar;4136.812;115046227;Peru; +2018-11-18T19:43:04Z;Ana;12731.56;115938053;Peru; +2018-11-18T19:11:07Z;nathalia;991.4995;114660809;Peru; +2018-11-18T18:58:47Z;Sandra;2261.415;115763801;Peru; +2018-11-18T18:45:18Z;Ana;7454.783;115159207;Peru; +2018-11-18T18:31:53Z;Eduardo;8878.537;114912668;Peru; +2018-11-18T18:29:27Z;Sandra;4160.939;115366330;Peru; +2018-11-18T18:14:06Z;Armando;7496.316;115245701;Peru; +2018-11-18T18:12:45Z;Ana;1930.371;116335608;Peru; +2018-11-18T18:12:41Z;Sandra;9043.613;115308938;Peru; +2018-11-18T17:34:02Z;Júlio Cesar;2262.411;116067611;Peru; +2018-11-18T17:22:17Z;Armando;8095.155;115232792;Peru; +2018-11-18T17:20:09Z;Júlio;3781.919;115677295;Peru; +2018-11-18T17:13:08Z;Sandra;2928.46;115178276;Peru; +2018-11-18T16:56:08Z;Júlio Cesar;5437.286;116252531;Peru; +2018-11-18T16:40:19Z;Júlio Cesar;866.1458;115528634;Peru; +2018-11-18T16:14:03Z;Júlio;1514.447;115682148;Peru; +2018-11-18T16:09:11Z;Nathália;9247.003;115384932;Peru; +2018-11-18T15:46:36Z;Sandra;5307.771;114698221;Peru; +2018-11-18T15:16:53Z;Armando;3349.268;114310768;Peru; +2018-11-18T14:54:32Z;Júlio Cesar;3602.3;115854819;Peru; +2018-11-18T14:18:12Z;Júlio Cesar;4033.921;114289859;Peru; +2018-11-18T14:02:09Z;Armando;3043.618;115004323;Peru; +2018-11-18T13:56:11Z;nathalia;7661.851;114353082;Peru; +2018-11-18T13:37:20Z;Nathália;416.484;116284650;Peru; +2018-11-18T12:59:55Z;Júlio;2680.913;115886982;Peru; +2018-11-18T12:57:34Z;Júlio;1259.851;115071303;Peru; +2018-11-18T12:43:02Z;Nathália;182.7544;116166489;Peru; +2018-11-18T12:41:45Z;Armando;4699.512;116303645;Peru; +2018-11-18T12:38:27Z;Ana;4074.669;114533980;Peru; +2018-11-18T12:23:27Z;Ana;8820.608;114911735;Peru; +2018-11-18T12:11:16Z;Sandra;8222.012;115993744;Peru; +2018-11-18T12:07:37Z;Júlio;2156.161;115488147;Peru; +2018-11-18T12:00:08Z;Sandra;1019.704;115756641;Peru; +2018-11-18T11:32:30Z;Ana;4829.766;116343587;Peru; +2018-11-18T11:26:31Z;Armando;2069.346;115814769;Peru; +2018-11-18T11:22:00Z;nathalia;8597.904;114266731;Peru; +2018-11-18T11:21:15Z;Júlio;59.43223;115061838;Peru; +2018-11-18T11:18:37Z;Ana;3621.431;115348872;Peru; +2018-11-18T11:10:08Z;Sandra;3826.717;115020591;Peru; +2018-11-18T11:01:53Z;Eduardo;8371.602;115156297;Peru; +2018-11-18T10:33:47Z;Armando;9678.78;114661098;Peru; +2018-11-18T10:29:19Z;Ana;1278.513;114965096;Peru; +2018-11-18T10:25:03Z;Sandra;1374.16;115186607;Peru; +2018-11-18T10:16:53Z;Ana;5282.995;115756621;Peru; +2018-11-18T10:12:21Z;Sandra;927.0287;115259277;Peru; +2018-11-18T09:47:39Z;Júlio Cesar;3522.184;115439826;Peru; +2018-11-18T09:31:10Z;Júlio Cesar;5916.797;114791750;Peru; +2018-11-18T09:28:06Z;Júlio Cesar;6529.462;114953793;Peru; +2018-11-18T09:08:52Z;Armando;6684.613;115940888;Peru; +2018-11-18T08:56:38Z;Júlio Cesar;8889.872;116320218;Peru; +2018-11-18T08:24:33Z;Júlio;1907.287;114254115;Peru; +2018-11-18T08:00:58Z;Júlio;11948.76;115017131;Peru; +2018-11-18T07:42:09Z;Eduardo;3357.075;114288017;Peru; +2018-11-18T07:14:55Z;Júlio;6607.491;114317518;Peru; +2018-11-18T06:33:01Z;Armando;3663.865;114768264;Peru; +2018-11-18T06:13:17Z;Eduardo;3271.999;115700970;Peru; +2018-11-18T05:55:55Z;Sandra;5181.259;114334789;Peru; +2018-11-18T05:43:53Z;Armando;3599.206;115231869;Peru; +2018-11-18T05:41:05Z;nathalia;7498.762;115087992;Peru; +2018-11-18T05:26:06Z;Júlio Cesar;5234.045;115192592;Peru; +2018-11-18T05:01:48Z;Eduardo;6049.628;116120956;Peru; +2018-11-18T04:59:16Z;Nathália;3690.066;115134491;Peru; +2018-11-18T04:45:39Z;Ana;5141.12;115891504;Peru; +2018-11-18T04:25:34Z;nathalia;1311.458;115976239;Peru; +2018-11-18T03:57:31Z;Armando;3191.746;115423091;Peru; +2018-11-18T03:41:35Z;nathalia;3772.224;115449367;Peru; +2018-11-18T03:32:18Z;Júlio Cesar;4872.017;115379953;Peru; +2018-11-18T03:09:23Z;nathalia;4036.184;114268094;Peru; +2018-11-18T02:59:43Z;nathalia;4032.94;114213452;Peru; +2018-11-18T02:52:23Z;Ana;912.8928;115440748;Peru; +2018-11-18T02:50:49Z;Armando;4146.233;114815180;Peru; +2018-11-18T02:47:19Z;Júlio Cesar;8024.597;115134291;Peru; +2018-11-18T02:29:07Z;Eduardo;6527.134;115250458;Peru; +2018-11-18T02:07:55Z;Júlio Cesar;3583.91;114851654;Peru; +2018-11-18T02:06:40Z;Armando;3485.227;115814781;Peru; +2018-11-18T02:06:10Z;Eduardo;4096.989;115879841;Peru; +2018-11-18T01:48:43Z;Nathália;3672.74;114373903;Peru; +2018-11-18T01:41:27Z;Sandra;1994.603;114917744;Peru; +2018-11-18T01:39:36Z;Eduardo;609.3494;114361598;Peru; +2018-11-18T01:29:25Z;Nathália;2361.257;116210380;Peru; +2018-11-18T01:12:35Z;Sandra;2790.812;116261268;Peru; +2018-11-18T00:54:36Z;Júlio;12316.48;115502437;Peru; +2018-11-18T00:53:15Z;Ana;12117.65;114686844;Peru; +2018-11-17T23:57:21Z;Armando;1617.788;115140020;Peru; +2018-11-17T23:36:04Z;Eduardo;1916.22;114734922;Peru; +2018-11-17T23:25:30Z;Júlio Cesar;1184.294;115277911;Peru; +2018-11-17T23:21:53Z;Armando;4949.407;115464078;Peru; +2018-11-17T23:21:21Z;Armando;9760.932;116093050;Peru; +2018-11-17T22:43:17Z;Eduardo;2037.892;115515399;Peru; +2018-11-17T22:39:34Z;Nathália;173.2445;114606503;Peru; +2018-11-17T22:17:11Z;Ana;9511.736;114535153;Peru; +2018-11-17T22:15:07Z;Júlio;3813.448;115708934;Peru; +2018-11-17T22:04:11Z;Sandra;5385.665;115969408;Peru; +2018-11-17T21:55:28Z;nathalia;5224.689;115725205;Peru; +2018-11-17T21:53:34Z;Júlio;3907.908;115832572;Peru; +2018-11-17T21:47:10Z;Júlio;4952.683;115942029;Peru; +2018-11-17T21:15:34Z;Sandra;4938.869;116161637;Peru; +2018-11-17T20:58:38Z;nathalia;4252.259;115478978;Peru; +2018-11-17T20:43:32Z;Sandra;3678.093;115361927;Peru; +2018-11-17T20:18:28Z;Júlio Cesar;1528.114;116293373;Peru; +2018-11-17T20:05:31Z;Júlio;1267.312;115447746;Peru; +2018-11-17T20:04:13Z;Sandra;148.5986;116065713;Peru; +2018-11-17T19:59:09Z;Sandra;2858.517;115956124;Peru; +2018-11-17T19:55:49Z;Ana;2041.918;114525833;Peru; +2018-11-17T19:49:08Z;Júlio Cesar;1160.786;116112222;Peru; +2018-11-17T19:07:27Z;Nathália;153.7436;116130321;Peru; +2018-11-17T18:58:36Z;Armando;7018.847;116261455;Peru; +2018-11-17T18:58:02Z;nathalia;7848.31;114767771;Peru; +2018-11-17T18:42:21Z;Júlio Cesar;244.6074;116317792;Peru; +2018-11-17T18:15:03Z;Eduardo;7727.366;115811986;Peru; +2018-11-17T18:02:23Z;Júlio;382.9027;114670383;Peru; +2018-11-17T17:55:00Z;Sandra;1652.843;114547574;Peru; +2018-11-17T17:51:39Z;Sandra;9334.686;115793662;Peru; +2018-11-17T17:32:23Z;Nathália;2216.339;116011525;Peru; +2018-11-17T17:22:54Z;nathalia;3105.291;115336261;Peru; +2018-11-17T17:12:32Z;Júlio;3693.096;114842532;Peru; +2018-11-17T17:05:28Z;Armando;6480.795;115068601;Peru; +2018-11-17T16:43:51Z;Eduardo;8601.122;114921410;Peru; +2018-11-17T16:30:01Z;Júlio Cesar;2758.367;114510200;Peru; +2018-11-17T16:16:51Z;Sandra;145.3322;114224103;Peru; +2018-11-17T16:06:37Z;Nathália;1029.002;116342097;Peru; +2018-11-17T16:02:08Z;Ana;4429.75;115524120;Peru; +2018-11-17T15:59:35Z;Eduardo;4537.28;114474768;Peru; +2018-11-17T15:46:35Z;Ana;1040.494;114582782;Peru; +2018-11-17T15:39:49Z;nathalia;3587.52;114237717;Peru; +2018-11-17T15:36:00Z;Sandra;7406.645;114272174;Peru; +2018-11-17T15:31:59Z;Eduardo;1931.384;115014910;Peru; +2018-11-17T15:13:46Z;Ana;2083.363;114839726;Peru; +2018-11-17T15:01:22Z;Júlio;4012.97;115602298;Peru; +2018-11-17T14:59:50Z;Ana;1587.94;115918825;Peru; +2018-11-17T14:55:29Z;Nathália;1947.832;116376658;Peru; +2018-11-17T14:27:40Z;Ana;551.8231;116091062;Peru; +2018-11-17T14:17:32Z;Sandra;3928.071;115512221;Peru; +2018-11-17T14:07:50Z;Júlio Cesar;4681.845;116218492;Peru; +2018-11-17T13:49:11Z;Júlio Cesar;6460.908;114814304;Peru; +2018-11-17T13:18:07Z;nathalia;6205.75;114868500;Peru; +2018-11-17T13:10:01Z;Nathália;436.5301;114950743;Peru; +2018-11-17T12:04:34Z;Sandra;3435.746;114870580;Peru; +2018-11-17T11:55:15Z;Júlio Cesar;1795.406;114472509;Peru; +2018-11-17T11:48:24Z;Ana;7383.579;116283232;Peru; +2018-11-17T11:32:11Z;Ana;4513.602;114690239;Peru; +2018-11-17T11:27:39Z;nathalia;513.2544;114765924;Peru; +2018-11-17T11:01:19Z;nathalia;1985.373;115694653;Peru; +2018-11-17T10:55:31Z;nathalia;1787.399;115724100;Peru; +2018-11-17T10:46:03Z;Eduardo;2888.558;114878528;Peru; +2018-11-17T10:34:08Z;nathalia;3146.461;116245212;Peru; +2018-11-17T10:31:39Z;Armando;3038.362;115556227;Peru; +2018-11-17T10:22:38Z;Júlio;8165.894;114897775;Peru; +2018-11-17T10:17:10Z;Eduardo;908.3946;116025020;Peru; +2018-11-17T10:16:27Z;nathalia;6892.636;115762836;Peru; +2018-11-17T10:16:06Z;nathalia;4147.927;114395303;Peru; +2018-11-17T09:55:10Z;Júlio Cesar;3845.902;114229149;Peru; +2018-11-17T09:41:52Z;Sandra;10751.6;114271005;Peru; +2018-11-17T08:57:34Z;nathalia;2988.074;116080472;Peru; +2018-11-17T08:43:41Z;Armando;2685.649;115695142;Peru; +2018-11-17T08:36:38Z;Eduardo;4000.401;115724277;Peru; +2018-11-17T08:29:03Z;Eduardo;809.6926;115922621;Peru; +2018-11-17T08:28:37Z;Ana;4829.095;115005423;Peru; +2018-11-17T08:05:51Z;Armando;1858.436;114582901;Peru; +2018-11-17T07:45:57Z;Júlio Cesar;2542.493;114292987;Peru; +2018-11-17T07:39:38Z;Armando;726.4986;115426200;Peru; +2018-11-17T07:37:55Z;Eduardo;3754.383;115452920;Peru; +2018-11-17T07:23:47Z;nathalia;4525.841;114978342;Peru; +2018-11-17T07:03:37Z;Sandra;4164.168;115456907;Peru; +2018-11-17T06:41:34Z;Júlio;546.4788;114827846;Peru; +2018-11-17T06:34:08Z;Júlio Cesar;2979.781;114949501;Peru; +2018-11-17T06:27:08Z;Nathália;2853.006;114239326;Peru; +2018-11-17T06:14:53Z;nathalia;4168.358;116333383;Peru; +2018-11-17T06:01:38Z;Júlio;2348.312;116265091;Peru; +2018-11-17T05:49:15Z;Eduardo;3942.734;114201015;Peru; +2018-11-17T05:42:10Z;Armando;9304.248;115887985;Peru; +2018-11-17T05:25:43Z;Armando;6787.524;114333388;Peru; +2018-11-17T05:23:50Z;Armando;6992.111;115776183;Peru; +2018-11-17T05:16:30Z;nathalia;3890.238;115987534;Peru; +2018-11-17T05:07:21Z;nathalia;4817.485;116085232;Peru; +2018-11-17T04:47:39Z;nathalia;6273;116297265;Peru; +2018-11-17T04:33:39Z;Eduardo;8649.972;114928633;Peru; +2018-11-17T04:02:27Z;Sandra;5364.055;115711486;Peru; +2018-11-17T03:57:34Z;Júlio Cesar;8533.129;114580827;Peru; +2018-11-17T03:18:15Z;Ana;343.6084;115100938;Peru; +2018-11-17T03:12:43Z;Armando;3783.237;115293302;Peru; +2018-11-17T02:39:28Z;nathalia;477.1578;115360719;Peru; +2018-11-17T02:03:40Z;Júlio;7769.807;115125340;Peru; +2018-11-17T01:40:47Z;Sandra;756.171;116225473;Peru; +2018-11-17T01:33:35Z;Ana;6723.58;114352066;Peru; +2018-11-17T01:23:50Z;Júlio;764.4839;115642122;Peru; +2018-11-17T01:07:58Z;Ana;2489.703;115708891;Peru; +2018-11-17T01:05:33Z;Júlio Cesar;5557.344;115059834;Peru; +2018-11-17T00:39:28Z;nathalia;10640.52;115491077;Peru; +2018-11-17T00:36:39Z;Eduardo;188.1791;115194087;Peru; +2018-11-17T00:14:14Z;Júlio Cesar;2489.972;115470958;Peru; +2018-11-17T00:06:51Z;Eduardo;4311.203;114445577;Peru; +2018-11-16T23:39:13Z;Júlio Cesar;6178.075;114506724;Peru; +2018-11-16T23:36:48Z;Armando;3925.002;115569084;Peru; +2018-11-16T23:09:10Z;Nathália;5312.149;116112727;Peru; +2018-11-16T22:56:58Z;Sandra;5409.366;115969480;Peru; +2018-11-16T22:15:59Z;Ana;2112.519;116339941;Peru; +2018-11-16T22:04:42Z;Nathália;1455.008;116331101;Peru; +2018-11-16T22:02:54Z;Eduardo;7259.385;116368704;Peru; +2018-11-16T22:02:45Z;nathalia;3478.823;116082003;Peru; +2018-11-16T21:08:34Z;Júlio Cesar;188.7275;115527351;Peru; +2018-11-16T21:07:40Z;Nathália;4345.647;115459735;Peru; +2018-11-16T20:16:16Z;Sandra;1641.654;115961418;Peru; +2018-11-16T20:10:21Z;Armando;995.5439;115347900;Peru; +2018-11-16T20:04:05Z;Armando;3191.52;115815842;Peru; +2018-11-16T20:01:10Z;Ana;1417.984;116144136;Peru; +2018-11-16T19:59:23Z;Nathália;1229.641;115977564;Peru; +2018-11-16T19:37:18Z;Eduardo;5797.85;115516746;Peru; +2018-11-16T19:27:51Z;Ana;3356.201;115453097;Peru; +2018-11-16T19:17:55Z;Nathália;1154.569;116290426;Peru; +2018-11-16T19:05:35Z;Armando;84.85259;116015656;Peru; +2018-11-16T19:05:04Z;nathalia;2653.937;116090943;Peru; +2018-11-16T18:56:04Z;Júlio Cesar;7467.511;114965845;Peru; +2018-11-16T18:51:36Z;Nathália;1375.482;114553207;Peru; +2018-11-16T18:29:43Z;Sandra;2040.882;115954888;Peru; +2018-11-16T18:21:39Z;nathalia;1023.452;114632269;Peru; +2018-11-16T18:13:36Z;Ana;2626.332;115085685;Peru; +2018-11-16T18:06:56Z;Júlio;1801.421;116342803;Peru; +2018-11-16T17:51:36Z;Nathália;9.540751;114933794;Peru; +2018-11-16T17:24:11Z;nathalia;5927.848;116089032;Peru; +2018-11-16T17:13:08Z;Sandra;1525.508;114846220;Peru; +2018-11-16T17:06:17Z;Eduardo;1436.955;114981366;Peru; +2018-11-16T16:44:59Z;Nathália;550.927;114678023;Peru; +2018-11-16T16:40:10Z;Eduardo;3346.116;114361339;Peru; +2018-11-16T16:31:20Z;Eduardo;7039.594;114267773;Peru; +2018-11-16T16:15:04Z;nathalia;6749.364;115870525;Peru; +2018-11-16T16:13:28Z;Júlio;5008.162;115605256;Peru; +2018-11-16T16:07:17Z;Júlio;421.9588;115822145;Peru; +2018-11-16T15:26:50Z;Nathália;2818.517;115178369;Peru; +2018-11-16T14:55:07Z;Júlio Cesar;9441.311;114210105;Peru; +2018-11-16T14:39:49Z;nathalia;1914.493;116166517;Peru; +2018-11-16T14:27:28Z;Eduardo;5094.858;114624049;Peru; +2018-11-16T13:40:02Z;Eduardo;4484.009;115767252;Peru; +2018-11-16T13:29:35Z;Armando;11108.23;116246471;Peru; +2018-11-16T13:20:33Z;Armando;3357.217;115356426;Peru; +2018-11-16T12:18:18Z;Sandra;1460.377;114737958;Peru; +2018-11-16T11:56:55Z;Armando;12565.84;116387898;Peru; +2018-11-16T11:53:45Z;nathalia;587.5807;115822014;Peru; +2018-11-16T11:50:16Z;Sandra;903.3112;116101076;Peru; +2018-11-16T11:29:19Z;Júlio;3075.575;114861315;Peru; +2018-11-16T11:24:23Z;Sandra;5462.917;116284912;Peru; +2018-11-16T11:24:02Z;Júlio;1548.474;115374222;Peru; +2018-11-16T11:11:00Z;Sandra;2303.504;116215378;Peru; +2018-11-16T11:06:34Z;Ana;236.9411;116232238;Peru; +2018-11-16T10:56:08Z;Ana;4170.612;115664945;Peru; +2018-11-16T10:30:56Z;nathalia;1169.12;115382580;Peru; +2018-11-16T10:28:00Z;Eduardo;5894.868;116210745;Peru; +2018-11-16T10:18:43Z;Júlio Cesar;115.5132;116009527;Peru; +2018-11-16T10:12:51Z;Nathália;4870.591;116306014;Peru; +2018-11-16T10:11:14Z;Ana;9412.244;114691744;Peru; +2018-11-16T09:34:17Z;Nathália;6234.621;115826058;Peru; +2018-11-16T09:03:09Z;Júlio Cesar;562.7288;114599020;Peru; +2018-11-16T08:46:36Z;Júlio;8313.254;114569907;Peru; +2018-11-16T08:13:00Z;Armando;1540.219;114868126;Peru; +2018-11-16T07:46:14Z;Ana;7181.482;116184468;Peru; +2018-11-16T07:42:53Z;Júlio Cesar;4881.336;114395610;Peru; +2018-11-16T06:56:15Z;Nathália;3014.798;116274960;Peru; +2018-11-16T06:46:10Z;Júlio Cesar;4368.908;115377258;Peru; +2018-11-16T06:36:01Z;nathalia;5674.367;115948345;Peru; +2018-11-16T06:22:49Z;Eduardo;176.9211;115865266;Peru; +2018-11-16T05:27:42Z;Sandra;277.9265;114979998;Peru; +2018-11-16T05:03:17Z;Júlio;1897.799;115497066;Peru; +2018-11-16T04:32:23Z;nathalia;6906.263;114850697;Peru; +2018-11-16T04:29:33Z;nathalia;6170.608;115398231;Peru; +2018-11-16T04:28:46Z;Eduardo;1942.643;115668845;Peru; +2018-11-16T04:21:02Z;Júlio Cesar;6888.17;116222718;Peru; +2018-11-16T04:07:19Z;Sandra;3565.605;115457456;Peru; +2018-11-16T03:25:09Z;Júlio Cesar;4042.84;114769592;Peru; +2018-11-16T03:07:32Z;Armando;1430.071;115792184;Peru; +2018-11-16T03:02:49Z;nathalia;5236.111;114403681;Peru; +2018-11-16T03:02:47Z;Ana;422.6802;114486371;Peru; +2018-11-16T01:54:21Z;Ana;2766.755;115921141;Peru; +2018-11-16T01:51:41Z;Armando;4330.74;115687751;Peru; +2018-11-16T01:34:56Z;Eduardo;6621.463;114662442;Peru; +2018-11-16T01:29:54Z;Júlio Cesar;923.5092;115658332;Peru; +2018-11-16T01:22:23Z;Júlio Cesar;2596.509;116283444;Peru; +2018-11-16T01:17:48Z;Eduardo;4244.452;116133713;Peru; +2018-11-16T00:56:45Z;Nathália;1162.291;114799025;Peru; +2018-11-16T00:49:28Z;Ana;4071.442;114771028;Peru; +2018-11-16T00:20:30Z;Nathália;6466.658;115822099;Peru; +2018-11-16T00:17:39Z;Ana;134.3215;114840313;Peru; +2018-11-16T00:14:19Z;Nathália;2415.402;115078744;Peru; +2018-11-15T23:41:08Z;Nathália;4951.736;114684032;Peru; +2018-11-15T23:34:56Z;Eduardo;1981.513;114287681;Peru; +2018-11-15T23:21:19Z;Eduardo;7359.716;114748515;Peru; +2018-11-15T23:01:52Z;Eduardo;2146.546;115576550;Peru; +2018-11-15T23:00:12Z;Ana;511.5927;115509879;Peru; +2018-11-15T22:54:50Z;Nathália;3516.917;114589124;Peru; +2018-11-15T22:50:13Z;Júlio Cesar;2547.055;114318500;Peru; +2018-11-15T22:39:11Z;Nathália;1930.236;115492798;Peru; +2018-11-15T22:16:28Z;Sandra;5154.411;115504988;Peru; +2018-11-15T21:58:30Z;Júlio;1193.45;114223033;Peru; +2018-11-15T21:58:11Z;Armando;1157.63;114510093;Peru; +2018-11-15T21:44:14Z;Júlio Cesar;6856.614;115774305;Peru; +2018-11-15T21:33:19Z;Sandra;3293.62;115675710;Peru; +2018-11-15T21:27:22Z;Armando;788.812;115699998;Peru; +2018-11-15T21:25:14Z;Sandra;3979.256;115578889;Peru; +2018-11-15T21:22:58Z;Júlio;9222.241;114969387;Peru; +2018-11-15T21:12:14Z;Nathália;6961.433;115062163;Peru; +2018-11-15T21:10:27Z;nathalia;4943.874;116206546;Peru; +2018-11-15T20:56:50Z;Eduardo;5343.331;115495430;Peru; +2018-11-15T20:55:29Z;Júlio;2862.196;114334484;Peru; +2018-11-15T20:28:53Z;Sandra;4925.884;116230915;Peru; +2018-11-15T20:11:46Z;nathalia;10777.26;116024999;Peru; +2018-11-15T19:46:09Z;Eduardo;995.3467;115256382;Peru; +2018-11-15T19:45:22Z;Júlio;2058.119;116000708;Peru; +2018-11-15T19:40:43Z;Eduardo;4064.469;116337278;Peru; +2018-11-15T19:34:44Z;Sandra;2101.403;115999237;Peru; +2018-11-15T19:29:49Z;Ana;240.8039;114749911;Peru; +2018-11-15T19:24:36Z;Sandra;1772.106;114638441;Peru; +2018-11-15T18:51:27Z;Ana;3218.347;115845112;Peru; +2018-11-15T18:49:03Z;Nathália;5954.924;115669482;Peru; +2018-11-15T18:35:27Z;Sandra;7485.893;114684861;Peru; +2018-11-15T18:24:26Z;Nathália;4479.375;115629635;Peru; +2018-11-15T18:20:20Z;Nathália;5891.085;115265376;Peru; +2018-11-15T18:09:35Z;Nathália;7118.786;115829927;Peru; +2018-11-15T18:03:43Z;nathalia;6332.622;115873145;Peru; +2018-11-15T17:43:12Z;Sandra;480.7158;115868487;Peru; +2018-11-15T17:38:02Z;Nathália;3018.795;114458840;Peru; +2018-11-15T17:27:11Z;Eduardo;3925.591;116153656;Peru; +2018-11-15T17:21:19Z;Júlio;5524.683;114446910;Peru; +2018-11-15T17:10:58Z;Armando;3283.919;114678427;Peru; +2018-11-15T16:45:29Z;Nathália;5340.436;114614111;Peru; +2018-11-15T16:38:54Z;Júlio Cesar;1241.234;115817339;Peru; +2018-11-15T16:38:17Z;Júlio Cesar;506.9305;114768169;Peru; +2018-11-15T15:43:57Z;Ana;5157.718;115847873;Peru; +2018-11-15T15:39:21Z;Armando;4672.765;114839545;Peru; +2018-11-15T15:33:38Z;Eduardo;429.5544;115599997;Peru; +2018-11-15T15:13:29Z;Nathália;4349.705;116255511;Peru; +2018-11-15T14:40:58Z;Nathália;1606.492;114303976;Peru; +2018-11-15T13:55:29Z;Nathália;5329.974;115458554;Peru; +2018-11-15T13:48:02Z;Júlio Cesar;3113.895;115722142;Peru; +2018-11-15T13:18:21Z;Sandra;8009.321;114692318;Peru; +2018-11-15T13:05:57Z;Júlio Cesar;5494.71;115571964;Peru; +2018-11-15T13:03:20Z;Sandra;6862.021;116061486;Peru; +2018-11-15T12:59:38Z;Ana;1798.293;114232606;Peru; +2018-11-15T12:41:33Z;Eduardo;518.6618;115888878;Peru; +2018-11-15T12:07:27Z;Armando;122.0545;115486325;Peru; +2018-11-15T10:39:27Z;Ana;1871.356;115045805;Peru; +2018-11-15T10:29:16Z;Ana;9267.879;114951361;Peru; +2018-11-15T10:28:59Z;Ana;4108.689;115368921;Peru; +2018-11-15T09:54:37Z;Nathália;4535.401;116276660;Peru; +2018-11-15T09:43:30Z;Júlio;2393.982;115793496;Peru; +2018-11-15T09:41:20Z;Nathália;2917.728;115017895;Peru; +2018-11-15T09:33:40Z;Sandra;4697.686;115598229;Peru; +2018-11-15T09:30:49Z;Eduardo;7552.774;115762844;Peru; +2018-11-15T08:45:04Z;nathalia;3656.405;116037341;Peru; +2018-11-15T08:36:52Z;Nathália;8114.871;114856864;Peru; +2018-11-15T07:51:16Z;Armando;9617.234;116345228;Peru; +2018-11-15T07:32:45Z;Ana;2730.893;116319427;Peru; +2018-11-15T07:09:40Z;Eduardo;1859.43;116357690;Peru; +2018-11-15T07:03:00Z;Júlio Cesar;7186.374;114425692;Peru; +2018-11-15T06:59:39Z;Eduardo;5698.836;115821179;Peru; +2018-11-15T06:35:10Z;Sandra;1144.6;114658747;Peru; +2018-11-15T06:18:39Z;Eduardo;3248.555;114511351;Peru; +2018-11-15T06:17:02Z;Nathália;11125.44;114388670;Peru; +2018-11-15T06:10:19Z;Ana;1993.332;114406983;Peru; +2018-11-15T06:02:58Z;Júlio;1649.69;114927630;Peru; +2018-11-15T05:35:03Z;Júlio Cesar;3165.927;114344684;Peru; +2018-11-15T04:55:28Z;Ana;4181.788;114276503;Peru; +2018-11-15T04:39:39Z;Eduardo;5580.06;116072934;Peru; +2018-11-15T04:28:44Z;Júlio;546.7462;114222559;Peru; +2018-11-15T04:26:31Z;Júlio;992.9778;114520013;Peru; +2018-11-15T04:24:42Z;Eduardo;7130.044;114652294;Peru; +2018-11-15T04:12:29Z;Eduardo;4032.199;114779704;Peru; +2018-11-15T04:05:36Z;Nathália;5561.599;115427710;Peru; +2018-11-15T04:04:53Z;Júlio Cesar;1238.274;114706878;Peru; +2018-11-15T03:58:59Z;Armando;907.0244;116071334;Peru; +2018-11-15T03:41:15Z;Sandra;1523.412;116208018;Peru; +2018-11-15T03:12:28Z;Júlio Cesar;5397.132;114633195;Peru; +2018-11-15T03:10:25Z;Nathália;4704.691;114515719;Peru; +2018-11-15T03:06:40Z;nathalia;4221.507;115478157;Peru; +2018-11-15T03:00:57Z;Armando;11302.71;115092339;Peru; +2018-11-15T02:44:47Z;Armando;5614.105;115000080;Peru; +2018-11-15T02:30:32Z;Eduardo;2723.461;116024875;Peru; +2018-11-15T02:28:11Z;nathalia;12066.01;115436930;Peru; +2018-11-15T01:50:16Z;nathalia;10463.78;116245198;Peru; +2018-11-15T01:45:38Z;Júlio Cesar;314.1142;115107474;Peru; +2018-11-15T01:30:49Z;Nathália;3456.762;114946338;Peru; +2018-11-15T01:27:56Z;Armando;916.636;115616636;Peru; +2018-11-15T01:15:45Z;Sandra;8268.432;114219128;Peru; +2018-11-15T00:34:27Z;Ana;362.9641;115131551;Peru; +2018-11-15T00:10:52Z;Armando;7091.908;115379423;Peru; +2018-11-15T00:03:18Z;Eduardo;9032.563;116095587;Peru; +2018-11-14T23:43:31Z;Nathália;5309.327;115130861;Peru; +2018-11-14T23:37:49Z;Nathália;2242.355;114488241;Peru; +2018-11-14T23:31:49Z;Eduardo;4389.204;115994653;Peru; +2018-11-14T22:45:28Z;Armando;10941.34;114521355;Peru; +2018-11-14T22:40:59Z;nathalia;4187.148;114750490;Peru; +2018-11-14T22:39:38Z;Sandra;1105.754;116342799;Peru; +2018-11-14T22:33:03Z;nathalia;3651.445;115847276;Peru; +2018-11-14T22:14:28Z;Júlio Cesar;3630.905;114372459;Peru; +2018-11-14T21:51:13Z;Eduardo;6108.847;115197689;Peru; +2018-11-14T21:44:51Z;Eduardo;5794.79;115561535;Peru; +2018-11-14T21:40:05Z;Sandra;694.7015;116269149;Peru; +2018-11-14T21:16:59Z;Nathália;573.6924;115317768;Peru; +2018-11-14T21:15:47Z;Nathália;6305.713;116139567;Peru; +2018-11-14T21:14:42Z;Júlio;2254.202;116281546;Peru; +2018-11-14T20:40:45Z;Eduardo;8152.232;116354060;Peru; +2018-11-14T20:27:22Z;Nathália;718.6781;114623596;Peru; +2018-11-14T20:25:46Z;Ana;1816.785;115320452;Peru; +2018-11-14T19:56:03Z;Júlio;4667.292;114511507;Peru; +2018-11-14T19:38:19Z;Armando;15.08886;114720053;Peru; +2018-11-14T19:05:06Z;Armando;7601.689;114417176;Peru; +2018-11-14T18:45:45Z;Júlio;780.7838;115337728;Peru; +2018-11-14T18:20:46Z;Sandra;9975.236;114969068;Peru; +2018-11-14T18:14:33Z;Armando;1480.884;114738695;Peru; +2018-11-14T17:49:39Z;Sandra;2113.019;114428136;Peru; +2018-11-14T17:44:10Z;Armando;8723.328;114474621;Peru; +2018-11-14T17:40:15Z;nathalia;462.5718;115048980;Peru; +2018-11-14T17:34:36Z;Armando;601.7276;114801253;Peru; +2018-11-14T17:29:29Z;Eduardo;9611.356;114538006;Peru; +2018-11-14T17:25:48Z;Eduardo;5809.912;114339455;Peru; +2018-11-14T17:19:52Z;Ana;5315.999;116003508;Peru; +2018-11-14T17:18:17Z;Júlio;8115.825;114767664;Peru; +2018-11-14T17:17:13Z;Sandra;177.2176;114341854;Peru; +2018-11-14T16:58:07Z;Eduardo;9523.593;114624761;Peru; +2018-11-14T16:46:34Z;Nathália;10024.92;115483893;Peru; +2018-11-14T16:24:13Z;Júlio Cesar;911.5136;116088867;Peru; +2018-11-14T16:16:57Z;Júlio;5932.697;115176307;Peru; +2018-11-14T16:03:35Z;Júlio Cesar;6805.771;116075507;Peru; +2018-11-14T15:42:53Z;Ana;1288.695;114756761;Peru; +2018-11-14T15:41:01Z;Armando;583.1515;115320865;Peru; +2018-11-14T15:00:03Z;Júlio Cesar;772.0514;116265582;Peru; +2018-11-14T14:50:55Z;Sandra;2973.858;115802571;Peru; +2018-11-14T14:44:56Z;Armando;9822.206;115464871;Peru; +2018-11-14T14:34:22Z;Júlio Cesar;6152.141;115358869;Peru; +2018-11-14T14:09:38Z;nathalia;4475.444;115540366;Peru; +2018-11-14T14:00:50Z;Ana;8399.317;116366645;Peru; +2018-11-14T13:42:20Z;nathalia;6580.584;114884193;Peru; +2018-11-14T13:29:40Z;Armando;4184.59;115763420;Peru; +2018-11-14T13:20:14Z;Júlio;5740.999;116013411;Peru; +2018-11-14T13:12:17Z;Júlio;2919.174;116122011;Peru; +2018-11-14T13:11:24Z;Júlio;12078.77;115703978;Peru; +2018-11-14T13:01:38Z;Júlio Cesar;2899.381;114771144;Peru; +2018-11-14T12:51:13Z;Sandra;4899.37;115895966;Peru; +2018-11-14T12:36:06Z;Eduardo;3678.718;115964127;Peru; +2018-11-14T11:55:18Z;Eduardo;2532.144;115966967;Peru; +2018-11-14T11:35:44Z;Sandra;5318.412;115223931;Peru; +2018-11-14T11:32:50Z;Nathália;1764.741;115670767;Peru; +2018-11-14T11:21:42Z;Armando;186.4949;115044394;Peru; +2018-11-14T11:17:42Z;Armando;1315.676;115415353;Peru; +2018-11-14T10:59:45Z;Armando;6165.683;115446719;Peru; +2018-11-14T10:53:28Z;Júlio;3672.359;114454712;Peru; +2018-11-14T10:46:20Z;Ana;9489.071;115956546;Peru; +2018-11-14T10:19:30Z;Sandra;44.50108;115612832;Peru; +2018-11-14T09:24:06Z;Júlio Cesar;3075.444;115767667;Peru; +2018-11-14T08:16:01Z;Eduardo;1261.54;115901809;Peru; +2018-11-14T08:10:36Z;Ana;1842.718;114458107;Peru; +2018-11-14T07:54:46Z;Júlio;2882.997;114866084;Peru; +2018-11-14T07:49:26Z;Ana;1183.334;114410753;Peru; +2018-11-14T07:49:25Z;Nathália;1847.716;116020001;Peru; +2018-11-14T07:43:01Z;nathalia;2219.043;114890169;Peru; +2018-11-14T07:38:40Z;Armando;5788.262;114670987;Peru; +2018-11-14T07:28:47Z;Sandra;6237.922;114668870;Peru; +2018-11-14T06:45:47Z;Júlio;5642.743;115986761;Peru; +2018-11-14T06:37:45Z;Eduardo;4412.23;116261563;Peru; +2018-11-14T06:20:23Z;Nathália;6776.463;116172279;Peru; +2018-11-14T05:55:00Z;Eduardo;4207.235;114474380;Peru; +2018-11-14T05:54:06Z;Nathália;7261.183;116113891;Peru; +2018-11-14T05:07:55Z;Júlio;2771.438;114222175;Peru; +2018-11-14T04:48:25Z;nathalia;438.1181;116092039;Peru; +2018-11-14T04:36:17Z;Armando;705.7834;116054751;Peru; +2018-11-14T04:35:58Z;Júlio Cesar;6278.178;116267785;Peru; +2018-11-14T04:31:22Z;Nathália;885.1323;115346273;Peru; +2018-11-14T03:41:31Z;Júlio Cesar;296.3592;115168872;Peru; +2018-11-14T03:33:35Z;Júlio;1309.771;114855813;Peru; +2018-11-14T03:10:40Z;Ana;4180.505;114620684;Peru; +2018-11-14T02:41:29Z;Júlio Cesar;3466.312;116323129;Peru; +2018-11-14T02:30:47Z;Ana;8056.357;114601257;Peru; +2018-11-14T02:16:19Z;nathalia;9224.707;115313083;Peru; +2018-11-14T02:10:47Z;Júlio;3778.297;115238868;Peru; +2018-11-14T02:10:22Z;Sandra;6118.074;116345628;Peru; +2018-11-14T02:09:54Z;Eduardo;856.2676;116004023;Peru; +2018-11-14T02:08:22Z;Júlio;4208.337;116126409;Peru; +2018-11-14T01:51:33Z;Ana;4481.445;115062607;Peru; +2018-11-14T01:27:49Z;Júlio Cesar;4451;115980046;Peru; +2018-11-14T01:16:34Z;Ana;6256.08;115080536;Peru; +2018-11-14T01:16:10Z;nathalia;317.2784;114869810;Peru; +2018-11-14T00:44:46Z;Júlio Cesar;1883.232;114252938;Peru; +2018-11-14T00:40:57Z;Júlio Cesar;10258.82;116331052;Peru; +2018-11-14T00:28:27Z;Sandra;1717.503;114434522;Peru; +2018-11-13T23:52:47Z;Júlio;5098.623;115547479;Peru; +2018-11-13T23:30:33Z;Sandra;2100.016;114523650;Peru; +2018-11-13T23:24:46Z;Eduardo;2770.552;116353258;Peru; +2018-11-13T23:11:03Z;Eduardo;173.3046;115098724;Peru; +2018-11-13T22:37:00Z;Júlio Cesar;1672.48;114831810;Peru; +2018-11-13T22:06:36Z;Eduardo;6935.444;114913405;Peru; +2018-11-13T21:56:42Z;Júlio;4208.902;116068095;Peru; +2018-11-13T21:50:20Z;Ana;8217.391;115581319;Peru; +2018-11-13T21:48:50Z;Ana;2154.425;115772994;Peru; +2018-11-13T21:18:44Z;Júlio;4216.452;116038786;Peru; +2018-11-13T21:18:36Z;Ana;3290.623;115153458;Peru; +2018-11-13T21:06:18Z;nathalia;8309.74;114216708;Peru; +2018-11-13T20:51:56Z;nathalia;1814.595;114281317;Peru; +2018-11-13T20:34:23Z;Nathália;3203.531;115814637;Peru; +2018-11-13T20:17:21Z;Nathália;5413.956;115370921;Peru; +2018-11-13T20:02:49Z;Nathália;2617.822;115430018;Peru; +2018-11-13T19:57:05Z;Júlio;10206.72;114495545;Peru; +2018-11-13T19:19:42Z;nathalia;3283.686;114503726;Peru; +2018-11-13T19:14:32Z;Júlio;8228.558;115965383;Peru; +2018-11-13T19:05:28Z;Sandra;6776.503;114579996;Peru; +2018-11-13T18:15:52Z;nathalia;6261.907;114635253;Peru; +2018-11-13T18:01:08Z;Eduardo;6517.081;114877869;Peru; +2018-11-13T17:34:40Z;Nathália;2635.39;114643548;Peru; +2018-11-13T16:39:08Z;Júlio Cesar;523.0186;114760731;Peru; +2018-11-13T16:08:18Z;Armando;206.0614;115252090;Peru; +2018-11-13T16:00:24Z;Ana;259.4668;114723967;Peru; +2018-11-13T15:23:56Z;Eduardo;5748.376;115010472;Peru; +2018-11-13T15:14:02Z;Ana;140.5736;115612784;Peru; +2018-11-13T15:09:39Z;Sandra;4912.963;114890791;Peru; +2018-11-13T14:13:15Z;Júlio;439.7001;115511863;Peru; +2018-11-13T13:51:25Z;Nathália;1987.08;115209090;Peru; +2018-11-13T13:33:09Z;Júlio Cesar;6790.947;116244298;Peru; +2018-11-13T13:32:37Z;Ana;7038.477;115226100;Peru; +2018-11-13T13:00:50Z;nathalia;1337.012;115233332;Peru; +2018-11-13T12:28:02Z;Júlio Cesar;4716.011;116128752;Peru; +2018-11-13T12:11:33Z;Júlio;2353.15;114620983;Peru; +2018-11-13T12:02:28Z;nathalia;8987.717;115656994;Peru; +2018-11-13T11:40:47Z;Júlio;3012.444;115348548;Peru; +2018-11-13T11:30:35Z;Júlio Cesar;1849.688;115358787;Peru; +2018-11-13T11:14:47Z;Eduardo;964.8392;114836212;Peru; +2018-11-13T11:12:19Z;Ana;7663.657;114576607;Peru; +2018-11-13T10:53:47Z;Ana;3290.398;114448374;Peru; +2018-11-13T10:49:23Z;Júlio Cesar;2592.592;114410007;Peru; +2018-11-13T10:41:17Z;Ana;580.0292;114453731;Peru; +2018-11-13T10:30:59Z;Júlio Cesar;3165.045;115885467;Peru; +2018-11-13T10:27:46Z;Armando;4391.047;114937441;Peru; +2018-11-13T08:35:11Z;nathalia;2718.048;114749486;Peru; +2018-11-13T08:16:51Z;nathalia;5679.831;115580253;Peru; +2018-11-13T08:04:54Z;Nathália;1568.231;114378054;Peru; +2018-11-13T07:50:13Z;Sandra;5827.749;115449003;Peru; +2018-11-13T07:47:56Z;Júlio;4811.646;115857737;Peru; +2018-11-13T07:26:17Z;Sandra;5946.454;115151415;Peru; +2018-11-13T07:20:13Z;Nathália;2059.398;115279350;Peru; +2018-11-13T06:59:05Z;Sandra;1943.111;115076126;Peru; +2018-11-13T06:54:45Z;Júlio Cesar;2140.127;114901118;Peru; +2018-11-13T06:44:45Z;Ana;1417.216;114941676;Peru; +2018-11-13T06:36:37Z;Ana;2291.283;114433606;Peru; +2018-11-13T06:25:39Z;Júlio Cesar;3553.315;116395439;Peru; +2018-11-13T06:19:09Z;Sandra;1090.483;115519606;Peru; +2018-11-13T06:18:55Z;Ana;2868.786;114651687;Peru; +2018-11-13T05:56:17Z;Sandra;3786.593;114328781;Peru; +2018-11-13T05:23:01Z;Sandra;1106.153;115256307;Peru; +2018-11-13T05:19:31Z;Júlio;7215.463;115158303;Peru; +2018-11-13T05:18:01Z;nathalia;1200.13;116264997;Peru; +2018-11-13T04:58:08Z;nathalia;1160.849;114814800;Peru; +2018-11-13T04:52:43Z;Sandra;8509.295;114312330;Peru; +2018-11-13T04:19:27Z;Nathália;2939.318;116213581;Peru; +2018-11-13T04:01:50Z;Nathália;344.0256;114562759;Peru; +2018-11-13T03:57:49Z;nathalia;1446.726;116028092;Peru; +2018-11-13T03:15:01Z;Ana;3649.294;114321394;Peru; +2018-11-13T03:01:23Z;Armando;66.69416;115196616;Peru; +2018-11-13T02:59:31Z;Eduardo;4714.091;116083160;Peru; +2018-11-13T02:43:31Z;Nathália;5248.934;114566022;Peru; +2018-11-13T02:42:45Z;Nathália;1720.237;114757158;Peru; +2018-11-13T02:38:46Z;Júlio Cesar;11705.22;115724886;Peru; +2018-11-13T02:29:14Z;Sandra;1522.327;116029599;Peru; +2018-11-13T02:23:03Z;Júlio Cesar;11500.28;115111551;Peru; +2018-11-13T02:22:59Z;Júlio;5478.018;115417402;Peru; +2018-11-13T01:55:00Z;Júlio;11059.28;115152609;Peru; +2018-11-13T01:19:02Z;Eduardo;588.907;115226619;Peru; +2018-11-13T01:08:13Z;Nathália;780.862;116377350;Peru; +2018-11-13T00:47:37Z;Sandra;4800.437;115859719;Peru; +2018-11-13T00:43:30Z;Nathália;6072.188;114635019;Peru; +2018-11-13T00:34:49Z;Eduardo;3193.442;115421372;Peru; +2018-12-06T22:27:38Z;Ana;563.6714;115747774;Puerto Rico; +2018-12-06T21:42:09Z;Armando;1544.178;114763045;Puerto Rico; +2018-12-06T21:23:55Z;Nathália;5719.617;115123812;Puerto Rico; +2018-12-06T21:19:14Z;Nathália;3576.495;114204801;Puerto Rico; +2018-12-06T21:12:40Z;Nathália;52.70618;115114344;Puerto Rico; +2018-12-06T21:11:15Z;Ana;9450.672;115260216;Puerto Rico; +2018-12-06T20:58:33Z;Júlio;5989.441;115041446;Puerto Rico; +2018-12-06T20:20:57Z;Eduardo;17.07943;115527932;Puerto Rico; +2018-12-06T19:54:02Z;nathalia;3924.149;115261221;Puerto Rico; +2018-12-06T19:36:26Z;Ana;8725.295;114721521;Puerto Rico; +2018-12-06T19:30:22Z;Armando;9336.352;116153935;Puerto Rico; +2018-12-06T19:28:49Z;Sandra;7315.522;114725340;Puerto Rico; +2018-12-06T19:01:48Z;Júlio Cesar;583.4776;115751666;Puerto Rico; +2018-12-06T18:40:06Z;Nathália;8348.456;115412783;Puerto Rico; +2018-12-06T18:38:55Z;Ana;6174.997;115910483;Puerto Rico; +2018-12-06T18:24:04Z;Eduardo;7672.615;115297681;Puerto Rico; +2018-12-06T18:21:43Z;Júlio Cesar;278.6223;115309467;Puerto Rico; +2018-12-06T18:03:27Z;Júlio Cesar;75.89098;115013315;Puerto Rico; +2018-12-06T18:02:14Z;nathalia;411.3807;115195279;Puerto Rico; +2018-12-06T17:48:00Z;Nathália;1611.489;114303797;Puerto Rico; +2018-12-06T17:46:00Z;Júlio;500.5228;115019603;Puerto Rico; +2018-12-06T17:38:30Z;nathalia;1473.909;115260805;Puerto Rico; +2018-12-06T17:31:49Z;nathalia;182.9888;114502877;Puerto Rico; +2018-12-06T17:16:03Z;Nathália;453.6741;114931662;Puerto Rico; +2018-12-06T17:01:01Z;Júlio;3865.045;116397969;Puerto Rico; +2018-12-06T17:00:19Z;Eduardo;4227.131;115721500;Puerto Rico; +2018-12-06T16:51:48Z;Eduardo;3060.089;115746488;Puerto Rico; +2018-12-06T16:33:49Z;Ana;2990.654;114366988;Puerto Rico; +2018-12-06T16:25:27Z;Ana;191.828;116003599;Puerto Rico; +2018-12-06T16:12:34Z;Nathália;5998.195;115684571;Puerto Rico; +2018-12-06T16:05:25Z;Júlio;3935.784;115139704;Puerto Rico; +2018-12-06T16:05:22Z;nathalia;4571.719;114682272;Puerto Rico; +2018-12-06T16:02:38Z;Sandra;2284.132;116126697;Puerto Rico; +2018-12-06T15:31:43Z;Eduardo;1490.258;115899570;Puerto Rico; +2018-12-06T14:55:14Z;Nathália;5467.925;114966116;Puerto Rico; +2018-12-06T14:46:57Z;Eduardo;4199.177;115428513;Puerto Rico; +2018-12-06T14:41:44Z;Júlio;5612.118;116384168;Puerto Rico; +2018-12-06T14:41:34Z;Júlio;2130.736;115185872;Puerto Rico; +2018-12-06T14:39:13Z;Júlio Cesar;1782.504;114301233;Puerto Rico; +2018-12-06T14:21:39Z;Júlio;1740.911;115707044;Puerto Rico; +2018-12-06T14:18:34Z;Júlio Cesar;10699.46;114918189;Puerto Rico; +2018-12-06T14:14:27Z;Sandra;11316.99;114656126;Puerto Rico; +2018-12-06T13:52:37Z;Armando;8669.03;114578001;Puerto Rico; +2018-12-06T13:48:12Z;Júlio Cesar;3296.486;116226012;Puerto Rico; +2018-12-06T13:46:24Z;Nathália;5397.045;114639551;Puerto Rico; +2018-12-06T13:37:08Z;Sandra;3973.825;116269685;Puerto Rico; +2018-12-06T13:29:33Z;nathalia;1090.156;114977109;Puerto Rico; +2018-12-06T13:01:29Z;nathalia;318.4563;115312035;Puerto Rico; +2018-12-06T12:45:41Z;Eduardo;7067.676;116372618;Puerto Rico; +2018-12-06T12:44:13Z;Nathália;10730.46;114845538;Puerto Rico; +2018-12-06T12:34:15Z;Armando;3231.718;115920946;Puerto Rico; +2018-12-06T12:33:32Z;Eduardo;8490.507;115932347;Puerto Rico; +2018-12-06T12:29:39Z;nathalia;2421.884;116168828;Puerto Rico; +2018-12-06T12:23:52Z;Eduardo;5456.724;116247086;Puerto Rico; +2018-12-06T12:11:50Z;Júlio;1621.58;114449022;Puerto Rico; +2018-12-06T12:11:45Z;Eduardo;3419.563;114364785;Puerto Rico; +2018-12-06T12:11:19Z;nathalia;1030.269;114742082;Puerto Rico; +2018-12-06T12:10:15Z;Ana;13176.6;115228421;Puerto Rico; +2018-12-06T11:51:23Z;Júlio Cesar;3185.06;116138432;Puerto Rico; +2018-12-06T11:42:55Z;Ana;3285.13;115458920;Puerto Rico; +2018-12-06T11:02:34Z;Sandra;2048.902;114944838;Puerto Rico; +2018-12-06T10:47:15Z;Eduardo;571.1261;114856057;Puerto Rico; +2018-12-06T10:44:52Z;Júlio;219.3827;115489437;Puerto Rico; +2018-12-06T10:39:53Z;Júlio;4164.074;114332340;Puerto Rico; +2018-12-06T10:24:37Z;Nathália;4868.177;115067156;Puerto Rico; +2018-12-06T10:15:59Z;Eduardo;653.168;115695646;Puerto Rico; +2018-12-06T10:15:01Z;Júlio Cesar;14300.99;114724869;Puerto Rico; +2018-12-06T10:00:17Z;Armando;512.6388;114904850;Puerto Rico; +2018-12-06T09:57:41Z;Ana;3487.13;115857603;Puerto Rico; +2018-12-06T09:18:18Z;Ana;3855.969;115938865;Puerto Rico; +2018-12-06T08:56:13Z;Eduardo;1758.671;114997656;Puerto Rico; +2018-12-06T08:45:05Z;Júlio Cesar;4469.793;115015534;Puerto Rico; +2018-12-06T08:43:09Z;Armando;3845.978;115810100;Puerto Rico; +2018-12-06T08:43:07Z;Sandra;9988.695;114646564;Puerto Rico; +2018-12-06T08:21:09Z;Júlio;2102.067;114472659;Puerto Rico; +2018-12-06T08:20:08Z;Sandra;4104.051;115991558;Puerto Rico; +2018-12-06T08:14:34Z;Eduardo;5698.684;115998205;Puerto Rico; +2018-12-06T07:34:23Z;Armando;6567.764;114948390;Puerto Rico; +2018-12-06T06:11:05Z;nathalia;5128.991;115841933;Puerto Rico; +2018-12-06T05:44:40Z;Ana;419.9854;116123053;Puerto Rico; +2018-12-06T05:16:55Z;Nathália;4208.8;114522520;Puerto Rico; +2018-12-06T05:12:20Z;Sandra;11240.58;115975022;Puerto Rico; +2018-12-06T05:07:47Z;Eduardo;395.0851;116285616;Puerto Rico; +2018-12-06T04:55:40Z;Armando;3352.305;115246609;Puerto Rico; +2018-12-06T04:25:21Z;Sandra;757.9077;115963790;Puerto Rico; +2018-12-06T04:21:48Z;Sandra;7514.456;114832830;Puerto Rico; +2018-12-06T04:14:26Z;Júlio Cesar;7160.657;116115172;Puerto Rico; +2018-12-06T04:02:39Z;Sandra;1393.032;115928314;Puerto Rico; +2018-12-06T03:59:51Z;Júlio Cesar;11152.27;115209598;Puerto Rico; +2018-12-06T03:55:28Z;Ana;3163.754;115440560;Puerto Rico; +2018-12-06T03:17:38Z;Eduardo;6917.984;114201997;Puerto Rico; +2018-12-06T02:57:18Z;Eduardo;1297.171;114327918;Puerto Rico; +2018-12-06T02:55:20Z;Júlio Cesar;3584.86;116369859;Puerto Rico; +2018-12-06T02:52:33Z;Sandra;411.6276;114349892;Puerto Rico; +2018-12-06T02:49:39Z;Ana;9362.817;115124720;Puerto Rico; +2018-12-06T02:43:35Z;Júlio;3163.082;115716537;Puerto Rico; +2018-12-06T02:42:40Z;nathalia;1273.419;114502256;Puerto Rico; +2018-12-06T02:10:05Z;Ana;7144.316;115132389;Puerto Rico; +2018-12-06T02:00:38Z;Júlio Cesar;4245.19;116200479;Puerto Rico; +2018-12-06T01:52:24Z;Ana;4029.231;115309786;Puerto Rico; +2018-12-06T01:48:27Z;Júlio;1888.54;114542242;Puerto Rico; +2018-12-06T01:44:20Z;Júlio Cesar;5214.256;116296747;Puerto Rico; +2018-12-06T01:05:09Z;Sandra;3197.826;115766127;Puerto Rico; +2018-12-06T00:56:02Z;Armando;321.2405;115816204;Puerto Rico; +2018-12-06T00:53:46Z;nathalia;6706.196;114931723;Puerto Rico; +2018-12-06T00:50:49Z;nathalia;9903.121;114578355;Puerto Rico; +2018-12-06T00:35:19Z;nathalia;4303.698;116223085;Puerto Rico; +2018-12-06T00:28:53Z;Sandra;2141.895;114259435;Puerto Rico; +2018-12-06T00:21:01Z;Eduardo;1661.661;116125113;Puerto Rico; +2018-12-05T23:35:22Z;Eduardo;7001.969;115770351;Puerto Rico; +2018-12-05T22:52:02Z;Eduardo;7820.237;115386275;Puerto Rico; +2018-12-05T22:29:16Z;Sandra;12069.07;115361552;Puerto Rico; +2018-12-05T22:11:32Z;Nathália;381.9737;115867900;Puerto Rico; +2018-12-05T22:05:53Z;Ana;21.44042;116328081;Puerto Rico; +2018-12-05T21:56:32Z;nathalia;1300.463;115823549;Puerto Rico; +2018-12-05T21:41:31Z;Nathália;7675.686;116018560;Puerto Rico; +2018-12-05T21:38:48Z;Armando;4353.667;115503032;Puerto Rico; +2018-12-05T21:29:50Z;Júlio Cesar;5470.564;115306874;Puerto Rico; +2018-12-05T21:16:08Z;Eduardo;725.058;116209192;Puerto Rico; +2018-12-05T21:02:20Z;Júlio;3071.922;115854628;Puerto Rico; +2018-12-05T20:57:00Z;Júlio Cesar;2669.155;115772954;Puerto Rico; +2018-12-05T20:33:25Z;Júlio;505.4093;116143637;Puerto Rico; +2018-12-05T20:31:53Z;Nathália;1142.796;115913380;Puerto Rico; +2018-12-05T20:25:26Z;Ana;8695.779;115052035;Puerto Rico; +2018-12-05T19:59:17Z;Júlio Cesar;2859.181;115238133;Puerto Rico; +2018-12-05T19:45:10Z;Júlio Cesar;9814.294;115278506;Puerto Rico; +2018-12-05T19:26:04Z;nathalia;4457.219;114990918;Puerto Rico; +2018-12-05T19:23:38Z;Eduardo;4430.782;115930077;Puerto Rico; +2018-12-05T18:57:43Z;Júlio Cesar;330.4109;116263758;Puerto Rico; +2018-12-05T18:49:10Z;Nathália;9961.12;114209757;Puerto Rico; +2018-12-05T18:43:36Z;Ana;4569.498;116275006;Puerto Rico; +2018-12-05T18:29:55Z;Armando;8314.847;115236929;Puerto Rico; +2018-12-05T18:06:23Z;Júlio;5740.68;115162280;Puerto Rico; +2018-12-05T17:47:51Z;Eduardo;6654.222;115985472;Puerto Rico; +2018-12-05T17:40:17Z;Armando;13827.42;114665428;Puerto Rico; +2018-12-05T17:29:48Z;Ana;1387.51;114917820;Puerto Rico; +2018-12-05T17:19:40Z;Eduardo;5999.626;114852593;Puerto Rico; +2018-12-05T16:41:35Z;Júlio;788.3618;114266319;Puerto Rico; +2018-12-05T16:28:33Z;Nathália;616.8113;115514737;Puerto Rico; +2018-12-05T16:18:50Z;Armando;5538.796;116334074;Puerto Rico; +2018-12-05T15:50:03Z;Ana;455.955;114281743;Puerto Rico; +2018-12-05T15:46:48Z;Armando;4327.005;114712712;Puerto Rico; +2018-12-05T15:12:54Z;Júlio;761.4899;116165063;Puerto Rico; +2018-12-05T14:46:59Z;Júlio Cesar;12510.19;116268643;Puerto Rico; +2018-12-05T14:18:18Z;Júlio Cesar;13337.3;115047327;Puerto Rico; +2018-12-05T13:28:06Z;Júlio Cesar;1470.9;115706937;Puerto Rico; +2018-12-05T13:25:27Z;Júlio Cesar;10898.98;114648309;Puerto Rico; +2018-12-05T13:20:43Z;Eduardo;1137.365;115111074;Puerto Rico; +2018-12-05T13:17:54Z;Armando;656.4563;114221906;Puerto Rico; +2018-12-05T12:44:42Z;Júlio;4739.393;116155660;Puerto Rico; +2018-12-05T12:44:40Z;Júlio Cesar;3302.321;115329433;Puerto Rico; +2018-12-05T12:34:23Z;Eduardo;3102.421;116336099;Puerto Rico; +2018-12-05T12:26:02Z;Júlio Cesar;2972.713;115968446;Puerto Rico; +2018-12-05T12:07:01Z;Armando;1289.346;114897719;Puerto Rico; +2018-12-05T12:02:47Z;Ana;1562.117;115739747;Puerto Rico; +2018-12-05T11:59:41Z;Sandra;3904.818;114462519;Puerto Rico; +2018-12-05T11:23:49Z;Júlio Cesar;5769.343;115366993;Puerto Rico; +2018-12-05T10:59:57Z;nathalia;5826.068;114279594;Puerto Rico; +2018-12-05T10:24:50Z;Ana;5695.008;114456474;Puerto Rico; +2018-12-05T10:20:39Z;Ana;266.3732;116305217;Puerto Rico; +2018-12-05T10:18:42Z;Nathália;808.375;115031619;Puerto Rico; +2018-12-05T10:18:02Z;Eduardo;914.3973;115163793;Puerto Rico; +2018-12-05T10:01:45Z;Sandra;619.9176;115833666;Puerto Rico; +2018-12-05T10:01:10Z;Eduardo;10540.3;115570342;Puerto Rico; +2018-12-05T09:26:05Z;Júlio;3452.832;115925423;Puerto Rico; +2018-12-05T09:10:59Z;Ana;3373.806;115143605;Puerto Rico; +2018-12-05T08:56:51Z;Sandra;560.3154;116085664;Puerto Rico; +2018-12-05T08:46:53Z;Nathália;5427.83;115446144;Puerto Rico; +2018-12-05T08:43:28Z;nathalia;906.0166;114772507;Puerto Rico; +2018-12-05T08:40:10Z;Armando;5246.115;114553289;Puerto Rico; +2018-12-05T08:08:03Z;Júlio;1321.897;114218124;Puerto Rico; +2018-12-05T07:57:52Z;Nathália;2442.838;115966140;Puerto Rico; +2018-12-05T07:02:52Z;Armando;2415.555;114343696;Puerto Rico; +2018-12-05T06:58:48Z;Sandra;4537.923;115886142;Puerto Rico; +2018-12-05T06:50:14Z;Júlio;6537.536;114991821;Puerto Rico; +2018-12-05T06:39:09Z;Sandra;5230.654;115961713;Puerto Rico; +2018-12-05T06:14:50Z;Nathália;3441.643;115280380;Puerto Rico; +2018-12-05T06:14:01Z;Eduardo;755.0953;115125469;Puerto Rico; +2018-12-05T06:13:30Z;Ana;933.677;115898033;Puerto Rico; +2018-12-05T06:06:34Z;Eduardo;795.5195;115496942;Puerto Rico; +2018-12-05T06:03:03Z;Ana;6265.529;114549252;Puerto Rico; +2018-12-05T05:14:50Z;Ana;5130.729;114965421;Puerto Rico; +2018-12-05T05:12:17Z;Armando;7729.954;115582283;Puerto Rico; +2018-12-05T04:23:44Z;Eduardo;1585.476;114861006;Puerto Rico; +2018-12-05T04:22:32Z;Júlio;2578.765;116280617;Puerto Rico; +2018-12-05T04:15:28Z;Júlio;9580.136;114278200;Puerto Rico; +2018-12-05T04:14:38Z;Eduardo;1274.031;114684984;Puerto Rico; +2018-12-05T04:12:59Z;Júlio Cesar;9235.886;116370372;Puerto Rico; +2018-12-05T04:05:49Z;Sandra;9452.417;114239738;Puerto Rico; +2018-12-05T04:05:28Z;Nathália;3891.567;115552734;Puerto Rico; +2018-12-05T04:03:48Z;Júlio Cesar;4390.958;116175108;Puerto Rico; +2018-12-05T03:54:22Z;Nathália;373.4519;114635873;Puerto Rico; +2018-12-05T03:48:44Z;Armando;12215.68;115983657;Puerto Rico; +2018-12-05T03:25:21Z;Eduardo;11366.25;116070145;Puerto Rico; +2018-12-05T03:08:55Z;Ana;881.8849;115513591;Puerto Rico; +2018-12-05T03:03:44Z;Sandra;2414.271;115349957;Puerto Rico; +2018-12-05T02:24:33Z;Nathália;7906.336;114471050;Puerto Rico; +2018-12-05T02:04:16Z;Júlio Cesar;13.58819;115114023;Puerto Rico; +2018-12-05T01:40:11Z;Eduardo;4829.89;115490403;Puerto Rico; +2018-12-05T01:32:53Z;Júlio;1137.953;115539415;Puerto Rico; +2018-12-05T00:40:00Z;Sandra;7844.531;115895065;Puerto Rico; +2018-12-05T00:38:57Z;Júlio;3948.632;114471625;Puerto Rico; +2018-12-05T00:19:00Z;nathalia;606.7266;114355322;Puerto Rico; +2018-12-05T00:13:24Z;Júlio Cesar;4456.666;114627308;Puerto Rico; +2018-12-05T00:11:24Z;Armando;443.7188;115502930;Puerto Rico; +2018-12-05T00:06:50Z;Nathália;141.9487;115381857;Puerto Rico; +2018-12-04T23:41:42Z;Sandra;4213.329;115942872;Puerto Rico; +2018-12-04T23:38:47Z;Sandra;3197.232;114407093;Puerto Rico; +2018-12-04T23:30:13Z;Júlio;2034.065;115683093;Puerto Rico; +2018-12-04T23:23:50Z;Ana;12415.9;115261899;Puerto Rico; +2018-12-04T23:22:28Z;Júlio Cesar;8723.067;115718706;Puerto Rico; +2018-12-04T23:09:18Z;Júlio;6323.63;115041602;Puerto Rico; +2018-12-04T22:56:48Z;Eduardo;35.38584;115639393;Puerto Rico; +2018-12-04T22:54:39Z;Eduardo;1349.374;114343800;Puerto Rico; +2018-12-04T22:53:06Z;Sandra;10308.54;114656508;Puerto Rico; +2018-12-04T22:36:48Z;Ana;8836.769;114868191;Puerto Rico; +2018-12-04T22:31:11Z;Nathália;1572.376;115851251;Puerto Rico; +2018-12-04T22:27:09Z;Nathália;3224.142;115618261;Puerto Rico; +2018-12-04T22:07:58Z;nathalia;683.9008;115970407;Puerto Rico; +2018-12-04T21:54:58Z;Eduardo;7363.403;114917070;Puerto Rico; +2018-12-04T21:23:44Z;nathalia;8263.24;115136963;Puerto Rico; +2018-12-04T21:22:26Z;nathalia;257.7262;114500009;Puerto Rico; +2018-12-04T20:38:34Z;Ana;2160.231;116332855;Puerto Rico; +2018-12-04T20:35:53Z;Sandra;4144.179;114696871;Puerto Rico; +2018-12-04T20:31:34Z;Júlio;1958.352;114275746;Puerto Rico; +2018-12-04T20:21:30Z;Júlio Cesar;4209.641;114924631;Puerto Rico; +2018-12-04T20:05:56Z;Sandra;1667.42;114939795;Puerto Rico; +2018-12-04T19:59:44Z;Armando;3777.246;114394474;Puerto Rico; +2018-12-04T19:50:26Z;Ana;4773.76;114690089;Puerto Rico; +2018-12-04T19:47:27Z;Júlio;2400.467;114563154;Puerto Rico; +2018-12-04T19:41:26Z;Eduardo;459.5144;115185717;Puerto Rico; +2018-12-04T19:32:22Z;Sandra;4763.975;115755586;Puerto Rico; +2018-12-04T19:18:29Z;Nathália;4018.212;116366423;Puerto Rico; +2018-12-04T19:07:56Z;Nathália;378.2947;115033382;Puerto Rico; +2018-12-04T18:40:33Z;Armando;2742.821;115374853;Puerto Rico; +2018-12-04T18:05:01Z;Sandra;3578.921;115065957;Puerto Rico; +2018-12-04T17:52:30Z;Sandra;3483.4;115626686;Puerto Rico; +2018-12-04T17:36:46Z;Eduardo;3894.914;115170780;Puerto Rico; +2018-12-04T17:35:01Z;Sandra;2294.013;115217611;Puerto Rico; +2018-12-04T17:33:18Z;Júlio;189.895;115657189;Puerto Rico; +2018-12-04T17:32:37Z;Nathália;1454.018;115405157;Puerto Rico; +2018-12-04T17:30:46Z;nathalia;4957.545;116152617;Puerto Rico; +2018-12-04T17:27:25Z;Sandra;1471.911;115717522;Puerto Rico; +2018-12-04T17:07:37Z;Júlio;5229.097;115488609;Puerto Rico; +2018-12-04T16:40:25Z;nathalia;6581.49;115651683;Puerto Rico; +2018-12-04T16:26:56Z;Armando;136.9169;115991445;Puerto Rico; +2018-12-04T16:04:59Z;Nathália;10641.01;114455121;Puerto Rico; +2018-12-04T15:57:29Z;Armando;2492.896;115001503;Puerto Rico; +2018-12-04T15:56:25Z;Eduardo;8179.965;114516979;Puerto Rico; +2018-12-04T15:45:42Z;Ana;7226.259;114905162;Puerto Rico; +2018-12-04T15:20:14Z;nathalia;12787.14;114648123;Puerto Rico; +2018-12-04T14:46:25Z;Armando;6903.818;115909242;Puerto Rico; +2018-12-04T14:29:03Z;Armando;10094.72;114770468;Puerto Rico; +2018-12-04T14:03:37Z;Armando;5549.874;115521394;Puerto Rico; +2018-12-04T13:31:59Z;nathalia;2517.588;115395445;Puerto Rico; +2018-12-04T13:28:32Z;Nathália;1698.263;116303774;Puerto Rico; +2018-12-04T12:50:11Z;Armando;8379.704;116032905;Puerto Rico; +2018-12-04T12:28:06Z;Eduardo;10462.64;116206846;Puerto Rico; +2018-12-04T12:23:56Z;Ana;2944.945;114620989;Puerto Rico; +2018-12-04T12:17:42Z;Júlio;388.2749;115999488;Puerto Rico; +2018-12-04T12:10:02Z;Sandra;5427.57;114849198;Puerto Rico; +2018-12-04T11:59:04Z;Ana;9575.964;114473107;Puerto Rico; +2018-12-04T11:56:36Z;Júlio;5863.224;114291456;Puerto Rico; +2018-12-04T11:09:10Z;Eduardo;796.8223;115598631;Puerto Rico; +2018-12-04T11:05:02Z;Nathália;446.1319;115753973;Puerto Rico; +2018-12-04T11:01:19Z;Júlio Cesar;1983.692;115798599;Puerto Rico; +2018-12-04T10:59:58Z;Nathália;1039.03;115771131;Puerto Rico; +2018-12-04T10:52:24Z;Armando;5795.862;115171371;Puerto Rico; +2018-12-04T10:51:11Z;nathalia;571.8594;114320177;Puerto Rico; +2018-12-04T10:34:52Z;Ana;8003.932;115884631;Puerto Rico; +2018-12-04T10:28:15Z;Ana;1882.191;114890727;Puerto Rico; +2018-12-04T09:53:14Z;Nathália;117.5725;115607966;Puerto Rico; +2018-12-04T08:59:34Z;nathalia;622.5184;116082371;Puerto Rico; +2018-12-04T08:58:36Z;Júlio Cesar;1405.339;115670452;Puerto Rico; +2018-12-04T08:45:37Z;Nathália;12497.45;114659424;Puerto Rico; +2018-12-04T08:41:27Z;Armando;1514.366;115389697;Puerto Rico; +2018-12-04T08:39:01Z;Ana;317.9518;116275068;Puerto Rico; +2018-12-04T08:27:42Z;Eduardo;2624.082;115390984;Puerto Rico; +2018-12-04T08:20:15Z;Armando;2489.148;116074632;Puerto Rico; +2018-12-04T08:18:04Z;Nathália;3919.159;116036570;Puerto Rico; +2018-12-04T08:14:43Z;Júlio Cesar;1896.778;115696285;Puerto Rico; +2018-12-04T08:12:55Z;Eduardo;4883.223;114414180;Puerto Rico; +2018-12-04T08:03:54Z;nathalia;3833.788;115858346;Puerto Rico; +2018-12-04T07:57:30Z;Júlio;5132.039;114452705;Puerto Rico; +2018-12-04T07:47:26Z;Armando;2648.373;115643425;Puerto Rico; +2018-12-04T07:28:40Z;Armando;43.8093;116152320;Puerto Rico; +2018-12-04T07:27:21Z;Júlio;7737.686;114639164;Puerto Rico; +2018-12-04T07:07:21Z;Armando;6281.843;115927739;Puerto Rico; +2018-12-04T07:02:54Z;Júlio;1608.62;115659357;Puerto Rico; +2018-12-04T06:53:20Z;Ana;7135.021;114649308;Puerto Rico; +2018-12-04T06:32:25Z;Ana;7524.187;114441973;Puerto Rico; +2018-12-04T06:05:31Z;Júlio Cesar;4896.855;115857568;Puerto Rico; +2018-12-04T06:03:46Z;Júlio;1142.34;114471402;Puerto Rico; +2018-12-04T06:00:22Z;Júlio;7085.284;115421933;Puerto Rico; +2018-12-04T05:44:43Z;Sandra;1918.492;114420174;Puerto Rico; +2018-12-04T05:40:53Z;Júlio;2208.379;115687844;Puerto Rico; +2018-12-04T05:11:44Z;Júlio Cesar;4471.39;115286506;Puerto Rico; +2018-12-04T04:11:21Z;Armando;5392.743;114230792;Puerto Rico; +2018-12-04T03:51:38Z;Júlio;140.3594;114745295;Puerto Rico; +2018-12-04T03:44:16Z;Armando;5346.923;114453678;Puerto Rico; +2018-12-04T03:27:25Z;Júlio;2785.427;115668032;Puerto Rico; +2018-12-04T03:25:46Z;Júlio Cesar;1375.359;114653621;Puerto Rico; +2018-12-04T03:25:01Z;nathalia;10886.18;116303423;Puerto Rico; +2018-12-04T03:21:28Z;nathalia;4307.28;114446203;Puerto Rico; +2018-12-04T03:06:08Z;nathalia;2022.447;114972039;Puerto Rico; +2018-12-04T03:01:46Z;Júlio Cesar;4605.388;116244108;Puerto Rico; +2018-12-04T02:47:31Z;Eduardo;539.5949;115902923;Puerto Rico; +2018-12-04T02:10:25Z;Júlio Cesar;2985.312;114347016;Puerto Rico; +2018-12-04T01:51:55Z;Júlio;8143.878;115382501;Puerto Rico; +2018-12-04T01:46:22Z;Júlio Cesar;1089.883;115544762;Puerto Rico; +2018-12-04T01:15:26Z;Júlio;6532.699;115371650;Puerto Rico; +2018-12-04T01:07:23Z;Eduardo;5885.804;115710982;Puerto Rico; +2018-12-04T00:54:43Z;nathalia;785.8115;116304259;Puerto Rico; +2018-12-04T00:10:59Z;nathalia;3300.151;116224162;Puerto Rico; +2018-12-03T23:48:15Z;Júlio Cesar;2379.025;114395158;Puerto Rico; +2018-12-03T23:26:24Z;Nathália;6044.157;116303482;Puerto Rico; +2018-12-03T23:25:42Z;Júlio Cesar;6882.396;114589897;Puerto Rico; +2018-12-03T23:22:19Z;Nathália;4168.976;115188858;Puerto Rico; +2018-12-03T23:11:36Z;Júlio;72.2855;116148825;Puerto Rico; +2018-12-03T22:18:06Z;Sandra;1662.04;114427105;Puerto Rico; +2018-12-03T22:16:28Z;nathalia;1707.807;115797837;Puerto Rico; +2018-12-03T21:41:39Z;nathalia;4003.827;114232050;Puerto Rico; +2018-12-03T21:17:30Z;Eduardo;1017.797;115436368;Puerto Rico; +2018-12-03T20:51:52Z;Júlio;1737.849;114903293;Puerto Rico; +2018-12-03T20:04:35Z;Armando;87.73611;114434670;Puerto Rico; +2018-12-03T19:58:33Z;Eduardo;1892.558;116369102;Puerto Rico; +2018-12-03T19:57:06Z;Ana;5392.566;114302620;Puerto Rico; +2018-12-03T18:42:24Z;Sandra;4601.931;114448248;Puerto Rico; +2018-12-03T18:00:46Z;Júlio Cesar;5953;114761624;Puerto Rico; +2018-12-03T17:49:07Z;Sandra;1.775849;115636267;Puerto Rico; +2018-12-03T17:48:25Z;Nathália;1831.59;114339528;Puerto Rico; +2018-12-03T17:28:49Z;Júlio;3370.983;114460839;Puerto Rico; +2018-12-03T17:18:40Z;Júlio Cesar;2325.739;114223478;Puerto Rico; +2018-12-03T16:46:00Z;Eduardo;3173.782;115586603;Puerto Rico; +2018-12-03T16:34:49Z;nathalia;725.9167;115363687;Puerto Rico; +2018-12-03T16:34:39Z;Nathália;6438.523;114592814;Puerto Rico; +2018-12-03T16:06:03Z;Júlio Cesar;4970.186;115126265;Puerto Rico; +2018-12-03T15:46:03Z;Júlio;4662.55;114653505;Puerto Rico; +2018-12-03T15:40:07Z;Eduardo;775.6306;114235431;Puerto Rico; +2018-12-03T15:33:56Z;Sandra;455.7978;114847070;Puerto Rico; +2018-12-03T15:02:08Z;Júlio Cesar;1995.957;116069465;Puerto Rico; +2018-12-03T15:01:59Z;Eduardo;481.2766;116114252;Puerto Rico; +2018-12-03T14:55:20Z;Nathália;2968.881;114786782;Puerto Rico; +2018-12-03T14:49:43Z;Júlio Cesar;8738.51;115914860;Puerto Rico; +2018-12-03T14:46:17Z;Ana;5134.677;114951382;Puerto Rico; +2018-12-03T14:34:20Z;Júlio;15129.66;114280898;Puerto Rico; +2018-12-03T14:23:50Z;Júlio;4773.512;114904477;Puerto Rico; +2018-12-03T14:11:25Z;Sandra;1087.26;114502578;Puerto Rico; +2018-12-03T13:07:07Z;Sandra;5735.443;114547433;Puerto Rico; +2018-12-03T13:00:33Z;Júlio Cesar;1309.737;114600860;Puerto Rico; +2018-12-03T12:52:43Z;Júlio;88.93403;114551566;Puerto Rico; +2018-12-03T12:40:19Z;Eduardo;3912.289;116141003;Puerto Rico; +2018-12-03T12:37:52Z;Júlio Cesar;5178.066;114602402;Puerto Rico; +2018-12-03T12:37:41Z;Sandra;1889.138;114984134;Puerto Rico; +2018-12-03T12:16:28Z;Eduardo;7824.28;115416870;Puerto Rico; +2018-12-03T11:55:44Z;Júlio;3409.632;115542355;Puerto Rico; +2018-12-03T11:45:20Z;Nathália;6382.621;115649769;Puerto Rico; +2018-12-03T11:24:49Z;Júlio Cesar;3789.308;115099027;Puerto Rico; +2018-12-03T11:23:03Z;nathalia;3455.558;115656270;Puerto Rico; +2018-12-03T11:16:54Z;nathalia;883.4407;114860963;Puerto Rico; +2018-12-03T10:53:33Z;Ana;11703.16;116275226;Puerto Rico; +2018-12-03T10:31:21Z;Júlio Cesar;6843.383;115743173;Puerto Rico; +2018-12-03T10:13:48Z;Eduardo;7347.992;115069688;Puerto Rico; +2018-12-03T10:05:51Z;Eduardo;6262.74;116146840;Puerto Rico; +2018-12-03T10:05:44Z;Júlio Cesar;4613.12;114610605;Puerto Rico; +2018-12-03T09:59:46Z;Armando;8111.472;116121505;Puerto Rico; +2018-12-03T09:20:25Z;Armando;3644.53;114381894;Puerto Rico; +2018-12-03T08:28:59Z;Armando;849.4964;114617762;Puerto Rico; +2018-12-03T08:26:26Z;Armando;3118.81;114337157;Puerto Rico; +2018-12-03T08:20:46Z;Sandra;6149.081;115384434;Puerto Rico; +2018-12-03T08:07:42Z;Nathália;231.5784;115023321;Puerto Rico; +2018-12-03T07:50:38Z;Ana;882.2949;114241861;Puerto Rico; +2018-12-03T07:46:10Z;Sandra;5724.626;114647461;Puerto Rico; +2018-12-03T07:41:49Z;Nathália;206.9045;114663780;Puerto Rico; +2018-12-03T07:33:50Z;Nathália;1777.495;115723433;Puerto Rico; +2018-12-03T07:33:47Z;Júlio;4734.51;115335624;Puerto Rico; +2018-12-03T07:12:30Z;Nathália;10586.45;116332799;Puerto Rico; +2018-12-03T07:11:47Z;Júlio;2391.327;116265557;Puerto Rico; +2018-12-03T06:56:07Z;nathalia;8310.457;116058942;Puerto Rico; +2018-12-03T06:35:32Z;Armando;4641.314;116375533;Puerto Rico; +2018-12-03T06:32:04Z;Sandra;6168.694;116039867;Puerto Rico; +2018-12-03T05:34:19Z;Eduardo;4142.131;115710266;Puerto Rico; +2018-12-03T05:09:33Z;Sandra;2761.64;116186301;Puerto Rico; +2018-12-03T04:45:55Z;nathalia;8644.795;115255934;Puerto Rico; +2018-12-03T04:16:07Z;nathalia;1025.459;114280186;Puerto Rico; +2018-12-03T04:16:05Z;Armando;3741.47;114424054;Puerto Rico; +2018-12-03T03:03:36Z;Sandra;2874.981;114764683;Puerto Rico; +2018-12-03T02:41:59Z;Júlio;4406.316;116112587;Puerto Rico; +2018-12-03T02:38:28Z;Júlio;593.6213;116253256;Puerto Rico; +2018-12-03T02:06:35Z;Júlio Cesar;6081.492;115773490;Puerto Rico; +2018-12-03T02:01:12Z;Júlio;8235.571;114724061;Puerto Rico; +2018-12-03T01:28:15Z;Júlio;755.3659;114624105;Puerto Rico; +2018-12-03T01:24:59Z;Nathália;7078.185;115129327;Puerto Rico; +2018-12-03T01:14:45Z;nathalia;2101.44;114411657;Puerto Rico; +2018-12-03T01:04:02Z;Armando;2780.527;114285513;Puerto Rico; +2018-12-03T00:58:16Z;nathalia;5632.331;115384959;Puerto Rico; +2018-12-03T00:27:12Z;Eduardo;4964.169;116315940;Puerto Rico; +2018-12-03T00:14:11Z;Armando;11905.13;114248532;Puerto Rico; +2018-12-03T00:08:52Z;nathalia;3239.138;115089492;Puerto Rico; +2018-12-02T23:37:08Z;Armando;914.0596;114878906;Puerto Rico; +2018-12-02T23:21:02Z;Armando;3071.415;115041453;Puerto Rico; +2018-12-02T23:16:26Z;Nathália;8922.769;115249907;Puerto Rico; +2018-12-02T22:56:53Z;nathalia;8303.338;114313927;Puerto Rico; +2018-12-02T22:55:13Z;Ana;1524.604;116321994;Puerto Rico; +2018-12-02T22:49:28Z;Ana;5952.046;115214877;Puerto Rico; +2018-12-02T22:42:49Z;Sandra;15783.48;115382702;Puerto Rico; +2018-12-02T22:42:04Z;Nathália;1481.434;114488233;Puerto Rico; +2018-12-02T22:36:22Z;nathalia;221.3038;115653776;Puerto Rico; +2018-12-02T22:19:21Z;Júlio Cesar;8505.397;115349389;Puerto Rico; +2018-12-02T22:04:11Z;Júlio;4357.666;116361419;Puerto Rico; +2018-12-02T21:59:50Z;Eduardo;4604.938;114544802;Puerto Rico; +2018-12-02T21:28:03Z;nathalia;5584.35;115029755;Puerto Rico; +2018-12-02T21:08:54Z;Nathália;1508.312;115305276;Puerto Rico; +2018-12-02T21:00:13Z;Ana;3105.665;114930731;Puerto Rico; +2018-12-02T20:53:03Z;Júlio;1924.668;115277103;Puerto Rico; +2018-12-02T20:51:52Z;Sandra;2484.025;115046969;Puerto Rico; +2018-12-02T20:39:12Z;Nathália;2360.339;114536955;Puerto Rico; +2018-12-02T19:19:36Z;Júlio Cesar;3132.728;116365051;Puerto Rico; +2018-12-02T19:16:05Z;Eduardo;1220.862;115898269;Puerto Rico; +2018-12-02T18:53:51Z;Armando;10273.53;114631245;Puerto Rico; +2018-12-02T18:40:07Z;Ana;805.7878;114346155;Puerto Rico; +2018-12-02T18:26:05Z;Eduardo;7151.298;115768275;Puerto Rico; +2018-12-02T18:21:58Z;Júlio;965.3865;116373327;Puerto Rico; +2018-12-02T18:11:11Z;Nathália;4235.031;116100611;Puerto Rico; +2018-12-02T18:05:46Z;nathalia;5931.152;115125065;Puerto Rico; +2018-12-02T18:05:00Z;Armando;3774.7;114856066;Puerto Rico; +2018-12-02T17:37:40Z;Júlio;1656.239;115565106;Puerto Rico; +2018-12-02T17:37:06Z;Ana;7637.5;114612174;Puerto Rico; +2018-12-02T17:21:49Z;Sandra;1089.772;115650001;Puerto Rico; +2018-12-02T17:18:38Z;Nathália;1323.574;115098868;Puerto Rico; +2018-12-02T17:11:54Z;Nathália;3816.777;114879422;Puerto Rico; +2018-12-02T16:54:43Z;Sandra;5733.116;115242595;Puerto Rico; +2018-12-02T16:46:15Z;Ana;1509.973;114574932;Puerto Rico; +2018-12-02T16:30:51Z;Eduardo;10058.96;114288276;Puerto Rico; +2018-12-02T16:22:55Z;Ana;2336.391;114992353;Puerto Rico; +2018-12-02T16:07:51Z;Armando;810.3699;116355151;Puerto Rico; +2018-12-02T15:52:26Z;Ana;5927.606;116101464;Puerto Rico; +2018-12-02T15:43:13Z;Armando;7530.31;114628538;Puerto Rico; +2018-12-02T15:07:24Z;nathalia;2319.656;116374357;Puerto Rico; +2018-12-02T15:02:19Z;Armando;3764.54;114504412;Puerto Rico; +2018-12-02T15:00:25Z;Armando;536.1001;114386465;Puerto Rico; +2018-12-02T14:54:51Z;Armando;4215.464;116295092;Puerto Rico; +2018-12-02T14:27:11Z;Sandra;9863.907;115066344;Puerto Rico; +2018-12-02T14:19:47Z;Nathália;1228.196;114930412;Puerto Rico; +2018-12-02T14:15:41Z;Nathália;1641.779;114545222;Puerto Rico; +2018-12-02T14:07:19Z;Armando;7805.778;115075475;Puerto Rico; +2018-12-02T13:17:00Z;Ana;11713.37;114703476;Puerto Rico; +2018-12-02T13:01:03Z;Júlio;6729.673;116069536;Puerto Rico; +2018-12-02T12:48:14Z;Nathália;1105.164;115985823;Puerto Rico; +2018-12-02T12:33:09Z;Ana;1106.601;115751700;Puerto Rico; +2018-12-02T12:27:43Z;Nathália;702.163;115607273;Puerto Rico; +2018-12-02T12:26:56Z;Júlio Cesar;1636.703;115097030;Puerto Rico; +2018-12-02T12:26:17Z;Júlio;4556.501;116198400;Puerto Rico; +2018-12-02T12:23:52Z;Eduardo;3320.671;116392679;Puerto Rico; +2018-12-02T12:02:04Z;Júlio;2291.851;116135578;Puerto Rico; +2018-12-02T12:01:53Z;Nathália;4786.605;115439201;Puerto Rico; +2018-12-02T11:56:26Z;Júlio Cesar;2066.026;116380078;Puerto Rico; +2018-12-02T11:47:56Z;Júlio;5503.494;115756504;Puerto Rico; +2018-12-02T11:15:33Z;Júlio;10070.41;114835771;Puerto Rico; +2018-12-02T11:05:43Z;Nathália;6750.792;114964445;Puerto Rico; +2018-12-02T11:01:00Z;Sandra;564.4779;114898930;Puerto Rico; +2018-12-02T10:44:28Z;nathalia;738.7773;115428975;Puerto Rico; +2018-12-02T10:35:16Z;Eduardo;6218.621;115826894;Puerto Rico; +2018-12-02T10:26:25Z;nathalia;4176.823;114655749;Puerto Rico; +2018-12-02T10:19:20Z;Sandra;8792.316;114487316;Puerto Rico; +2018-12-02T10:18:49Z;nathalia;10876.49;115594846;Puerto Rico; +2018-12-02T10:17:06Z;Eduardo;5766.84;115871326;Puerto Rico; +2018-12-02T10:06:12Z;Sandra;1235.14;115644090;Puerto Rico; +2018-12-02T09:53:10Z;nathalia;1111.22;114975108;Puerto Rico; +2018-12-02T09:36:27Z;Eduardo;12295.59;115215105;Puerto Rico; +2018-12-02T09:31:17Z;Júlio Cesar;322.5019;114562550;Puerto Rico; +2018-12-02T09:06:56Z;Armando;2905.171;115684570;Puerto Rico; +2018-12-02T09:00:40Z;Armando;4280.884;114428131;Puerto Rico; +2018-12-02T08:48:23Z;Eduardo;2750.462;114950646;Puerto Rico; +2018-12-02T08:07:14Z;Eduardo;7706.726;115010356;Puerto Rico; +2018-12-02T07:51:39Z;nathalia;6882.585;114396527;Puerto Rico; +2018-12-02T07:48:32Z;Sandra;12454.95;115444276;Puerto Rico; +2018-12-02T07:45:29Z;Armando;6365.615;115085672;Puerto Rico; +2018-12-02T07:32:55Z;Armando;3961.129;115682834;Puerto Rico; +2018-12-02T07:31:51Z;Ana;4196.656;115096492;Puerto Rico; +2018-12-02T07:02:23Z;Armando;1163.734;116020851;Puerto Rico; +2018-12-02T06:51:19Z;Eduardo;323.7207;115388430;Puerto Rico; +2018-12-02T06:45:18Z;Júlio Cesar;6646.922;114429099;Puerto Rico; +2018-12-02T06:28:47Z;nathalia;6730.515;115688448;Puerto Rico; +2018-12-02T06:11:21Z;Eduardo;798.1192;114553060;Puerto Rico; +2018-12-02T05:55:49Z;Nathália;8805.116;116072491;Puerto Rico; +2018-12-02T05:37:37Z;Júlio;5281.302;115193307;Puerto Rico; +2018-12-02T05:02:54Z;Júlio;634.0662;114310257;Puerto Rico; +2018-12-02T04:45:23Z;Eduardo;1275.664;115303645;Puerto Rico; +2018-12-02T04:40:31Z;Nathália;3713.566;116206601;Puerto Rico; +2018-12-02T04:24:33Z;Armando;638.8414;114800448;Puerto Rico; +2018-12-02T04:16:02Z;Armando;979.4639;115397456;Puerto Rico; +2018-12-02T03:32:01Z;Júlio Cesar;492.1696;116127204;Puerto Rico; +2018-12-02T03:21:38Z;Sandra;3076.883;114807631;Puerto Rico; +2018-12-02T02:48:27Z;nathalia;7469.569;114343663;Puerto Rico; +2018-12-02T02:42:48Z;Armando;5783.107;116217457;Puerto Rico; +2018-12-02T02:21:08Z;Júlio;2465.887;114209653;Puerto Rico; +2018-12-02T01:42:44Z;Eduardo;4059.339;114968542;Puerto Rico; +2018-12-02T01:32:35Z;Sandra;4228.294;114224736;Puerto Rico; +2018-12-02T01:28:17Z;Júlio Cesar;6896.439;116221646;Puerto Rico; +2018-12-02T01:22:17Z;Nathália;4798.413;116182064;Puerto Rico; +2018-12-02T00:42:25Z;Eduardo;9300.959;114525922;Puerto Rico; +2018-12-02T00:18:28Z;Júlio Cesar;5024.506;114496332;Puerto Rico; +2018-12-02T00:10:14Z;Júlio;5896.837;114463910;Puerto Rico; +2018-12-01T23:50:47Z;Júlio;5066.357;114378994;Puerto Rico; +2018-12-01T23:43:06Z;Nathália;2546.811;116050307;Puerto Rico; +2018-12-01T23:07:00Z;Júlio Cesar;6790.811;115051733;Puerto Rico; +2018-12-01T22:48:49Z;Júlio Cesar;578.0622;114570753;Puerto Rico; +2018-12-01T22:45:45Z;Nathália;7517.365;114260806;Puerto Rico; +2018-12-01T22:06:41Z;nathalia;7653.38;114252099;Puerto Rico; +2018-12-01T21:58:31Z;Eduardo;12564.52;115634875;Puerto Rico; +2018-12-01T21:47:32Z;Júlio;7927.388;115265618;Puerto Rico; +2018-12-01T21:25:40Z;nathalia;1419.337;115547266;Puerto Rico; +2018-12-01T21:16:29Z;Sandra;5443.926;115738307;Puerto Rico; +2018-12-01T20:38:35Z;Nathália;6714.879;115743781;Puerto Rico; +2018-12-01T20:37:34Z;Nathália;2610.43;114650768;Puerto Rico; +2018-12-01T20:19:05Z;Eduardo;3275.359;116206473;Puerto Rico; +2018-12-01T20:10:03Z;Armando;5767.565;114917482;Puerto Rico; +2018-12-01T19:58:59Z;Armando;4552.226;115133658;Puerto Rico; +2018-12-01T19:56:48Z;Armando;4416.2;115990317;Puerto Rico; +2018-12-01T19:38:24Z;Júlio;898.3702;115682730;Puerto Rico; +2018-12-01T19:12:22Z;Armando;1040.927;115953306;Puerto Rico; +2018-12-01T19:00:09Z;Nathália;1822.439;115851764;Puerto Rico; +2018-12-01T18:42:30Z;nathalia;2207.751;116146444;Puerto Rico; +2018-12-01T18:31:38Z;Sandra;7211.217;115269322;Puerto Rico; +2018-12-01T18:13:49Z;Ana;994.4857;114255380;Puerto Rico; +2018-12-01T17:42:58Z;Sandra;731.2951;116039534;Puerto Rico; +2018-12-01T17:39:53Z;Júlio Cesar;161.3023;115789938;Puerto Rico; +2018-12-01T17:36:07Z;Ana;7040.42;114375748;Puerto Rico; +2018-12-01T17:27:20Z;Armando;501.5335;115306145;Puerto Rico; +2018-12-01T16:42:50Z;Nathália;4123;114591811;Puerto Rico; +2018-12-01T16:31:33Z;Nathália;3632.526;115561403;Puerto Rico; +2018-12-01T16:20:35Z;Júlio Cesar;10364.26;114435925;Puerto Rico; +2018-12-01T16:06:53Z;Júlio;430.6324;115210196;Puerto Rico; +2018-12-01T16:05:49Z;nathalia;6165.109;115605374;Puerto Rico; +2018-12-01T15:56:04Z;Nathália;6607.829;115749775;Puerto Rico; +2018-12-01T15:47:33Z;Eduardo;4561.978;115091562;Puerto Rico; +2018-12-01T15:20:36Z;Armando;3223.077;115534729;Puerto Rico; +2018-12-01T15:15:58Z;Júlio Cesar;5936.662;116078067;Puerto Rico; +2018-12-01T15:10:37Z;Júlio Cesar;920.3447;114916374;Puerto Rico; +2018-12-01T14:16:18Z;Nathália;3581.182;115812251;Puerto Rico; +2018-12-01T13:38:11Z;Nathália;7215.368;114875378;Puerto Rico; +2018-12-01T13:36:33Z;Nathália;6806.415;114625408;Puerto Rico; +2018-12-01T13:34:58Z;Ana;1298.92;116054815;Puerto Rico; +2018-12-01T13:32:17Z;Eduardo;512.7684;114475670;Puerto Rico; +2018-12-01T13:28:38Z;nathalia;7535.122;115778356;Puerto Rico; +2018-12-01T13:25:18Z;Armando;655.6441;116341501;Puerto Rico; +2018-12-01T13:13:43Z;Nathália;2831.742;114987197;Puerto Rico; +2018-12-01T12:41:54Z;Júlio;1474.851;116154202;Puerto Rico; +2018-12-01T12:31:28Z;Júlio Cesar;5205.291;116076253;Puerto Rico; +2018-12-01T12:21:46Z;Armando;2066.719;115036843;Puerto Rico; +2018-12-01T12:18:04Z;Júlio Cesar;5743.203;115337989;Puerto Rico; +2018-12-01T12:00:11Z;Sandra;7002.69;115969762;Puerto Rico; +2018-12-01T11:55:08Z;nathalia;3815.103;114909766;Puerto Rico; +2018-12-01T11:35:25Z;Eduardo;3410.901;114880341;Puerto Rico; +2018-12-01T11:28:54Z;Sandra;1238.561;114484750;Puerto Rico; +2018-12-01T11:24:41Z;Eduardo;2540.376;115563800;Puerto Rico; +2018-12-01T11:01:18Z;Nathália;11486.08;115137200;Puerto Rico; +2018-12-01T10:50:06Z;Júlio Cesar;13796.41;115379431;Puerto Rico; +2018-12-01T10:40:52Z;Eduardo;971.7275;114239730;Puerto Rico; +2018-12-01T10:32:41Z;Eduardo;9611.267;114882014;Puerto Rico; +2018-12-01T10:15:23Z;Júlio;3064.136;116100745;Puerto Rico; +2018-12-01T10:02:47Z;nathalia;5159.006;115844666;Puerto Rico; +2018-12-01T09:30:26Z;Júlio Cesar;7641.041;115578532;Puerto Rico; +2018-12-01T09:15:36Z;Sandra;3418.664;115275013;Puerto Rico; +2018-12-01T08:51:36Z;Júlio Cesar;23.85921;116177175;Puerto Rico; +2018-12-01T08:37:31Z;Ana;2181.063;114777548;Puerto Rico; +2018-12-01T08:35:32Z;Eduardo;1341.455;114997107;Puerto Rico; +2018-12-01T08:26:56Z;Sandra;6234.002;115093662;Puerto Rico; +2018-12-01T08:07:22Z;Júlio;950.9107;115080190;Puerto Rico; +2018-12-01T07:30:03Z;nathalia;1129.048;115224403;Puerto Rico; +2018-12-01T07:25:56Z;Júlio Cesar;4955.526;114457629;Puerto Rico; +2018-12-01T07:19:45Z;Eduardo;5844.623;115778297;Puerto Rico; +2018-12-01T07:17:48Z;Nathália;8147.283;114391013;Puerto Rico; +2018-12-01T07:06:34Z;Nathália;10840.88;115535676;Puerto Rico; +2018-12-01T06:58:54Z;Nathália;15951.22;115465029;Puerto Rico; +2018-12-01T06:58:29Z;Eduardo;277.2386;115223671;Puerto Rico; +2018-12-01T06:42:47Z;Eduardo;1477.172;115681881;Puerto Rico; +2018-12-01T06:07:16Z;Armando;202.0268;115849893;Puerto Rico; +2018-12-01T05:29:41Z;Ana;4243.09;115248484;Puerto Rico; +2018-12-01T05:27:10Z;Júlio;13467.69;115822772;Puerto Rico; +2018-12-01T05:26:07Z;Eduardo;2925.484;114844120;Puerto Rico; +2018-12-01T04:06:04Z;Júlio Cesar;1070.239;115286841;Puerto Rico; +2018-12-01T03:04:34Z;Armando;964.5372;115770785;Puerto Rico; +2018-12-01T02:51:59Z;Nathália;650.3719;114613397;Puerto Rico; +2018-12-01T02:51:36Z;Ana;10775.69;114771355;Puerto Rico; +2018-12-01T02:51:03Z;Eduardo;4961.126;116213831;Puerto Rico; +2018-12-01T02:20:06Z;Júlio Cesar;3156.413;114685520;Puerto Rico; +2018-12-01T02:00:31Z;Eduardo;395.5691;115983931;Puerto Rico; +2018-12-01T01:52:21Z;Nathália;7817.207;114661074;Puerto Rico; +2018-12-01T01:30:23Z;Armando;8448.528;115719992;Puerto Rico; +2018-12-01T01:02:39Z;Júlio;4720.98;114447477;Puerto Rico; +2018-12-01T00:41:19Z;Júlio Cesar;482.8094;115668886;Puerto Rico; +2018-11-30T23:54:50Z;Júlio;4948.963;116018413;Puerto Rico; +2018-11-30T23:53:02Z;Nathália;3530.257;114425925;Puerto Rico; +2018-11-30T23:31:04Z;Armando;181.5269;116296205;Puerto Rico; +2018-11-30T22:59:52Z;Nathália;3031.861;114613097;Puerto Rico; +2018-11-30T22:52:19Z;Júlio Cesar;48.17227;114520690;Puerto Rico; +2018-11-30T22:46:15Z;Armando;2893.554;114436797;Puerto Rico; +2018-11-30T22:35:23Z;Júlio;5979.357;114946184;Puerto Rico; +2018-11-30T22:18:12Z;nathalia;5797.484;115924835;Puerto Rico; +2018-11-30T21:52:17Z;Armando;14337.22;114871029;Puerto Rico; +2018-11-30T21:32:42Z;Armando;1621.826;115428898;Puerto Rico; +2018-11-30T21:05:23Z;nathalia;5645.177;115001093;Puerto Rico; +2018-11-30T20:58:24Z;nathalia;11049.86;114590074;Puerto Rico; +2018-11-30T20:28:07Z;Sandra;808.3593;116091865;Puerto Rico; +2018-11-30T20:16:42Z;Nathália;3745.867;114996755;Puerto Rico; +2018-11-30T20:15:08Z;Eduardo;2322.879;115870241;Puerto Rico; +2018-11-30T19:14:23Z;Ana;188.8525;115980678;Puerto Rico; +2018-11-30T18:48:37Z;Eduardo;2247.019;116161204;Puerto Rico; +2018-11-30T18:46:26Z;nathalia;2503.013;115620049;Puerto Rico; +2018-11-30T18:13:19Z;nathalia;2961.561;114566267;Puerto Rico; +2018-11-30T18:11:46Z;nathalia;4146.914;116153949;Puerto Rico; +2018-11-30T17:44:51Z;Sandra;1105.904;114261215;Puerto Rico; +2018-11-30T17:31:02Z;Ana;5978.983;116103193;Puerto Rico; +2018-11-30T17:09:58Z;Nathália;377.8046;115570223;Puerto Rico; +2018-11-30T16:22:58Z;Ana;263.952;114637139;Puerto Rico; +2018-11-30T16:15:37Z;Sandra;5733.75;116043329;Puerto Rico; +2018-11-30T16:10:37Z;Nathália;3817.095;114329575;Puerto Rico; +2018-11-30T15:38:00Z;Júlio Cesar;7656.492;114708767;Puerto Rico; +2018-11-30T15:20:28Z;nathalia;4090.449;115588802;Puerto Rico; +2018-11-30T14:26:05Z;Sandra;3344.296;114389425;Puerto Rico; +2018-11-30T13:55:09Z;Sandra;7903.424;115003419;Puerto Rico; +2018-11-30T13:51:38Z;Nathália;743.1597;114277073;Puerto Rico; +2018-11-30T13:37:13Z;Júlio Cesar;6226.606;115296725;Puerto Rico; +2018-11-30T13:28:01Z;Júlio Cesar;284.6426;115287231;Puerto Rico; +2018-11-30T13:27:57Z;Ana;6411.182;116001472;Puerto Rico; +2018-11-30T11:44:38Z;Eduardo;18080.92;116208278;Puerto Rico; +2018-11-30T11:40:25Z;Nathália;5238.819;115533888;Puerto Rico; +2018-11-30T11:33:08Z;nathalia;7577.796;114697205;Puerto Rico; +2018-11-30T11:11:47Z;Júlio;741.2248;116321997;Puerto Rico; +2018-11-30T10:41:06Z;Armando;1631.191;115261924;Puerto Rico; +2018-11-30T10:20:22Z;Sandra;3278.304;115398429;Puerto Rico; +2018-11-30T10:20:17Z;Sandra;961.0443;115539382;Puerto Rico; +2018-11-30T10:19:17Z;Nathália;4935.475;116201269;Puerto Rico; +2018-11-30T09:32:00Z;Armando;2677.949;115203511;Puerto Rico; +2018-11-30T09:25:53Z;Sandra;6963.771;114360162;Puerto Rico; +2018-11-30T09:25:53Z;Ana;2393.727;115659353;Puerto Rico; +2018-11-30T08:54:35Z;Júlio;9603.876;115005795;Puerto Rico; +2018-11-30T08:40:08Z;Júlio Cesar;1344.769;115803888;Puerto Rico; +2018-11-30T08:32:55Z;Sandra;4964.706;115664096;Puerto Rico; +2018-11-30T08:29:54Z;Júlio;3507.373;115299955;Puerto Rico; +2018-11-30T08:19:24Z;Nathália;10989.71;116046319;Puerto Rico; +2018-11-30T08:06:12Z;Eduardo;3242.135;115189097;Puerto Rico; +2018-11-30T07:59:41Z;Sandra;10558.86;114423017;Puerto Rico; +2018-11-30T07:53:32Z;Júlio Cesar;5579.811;116248463;Puerto Rico; +2018-11-30T07:02:39Z;Nathália;10659.99;114445042;Puerto Rico; +2018-11-30T06:55:16Z;Eduardo;1954.143;115110778;Puerto Rico; +2018-11-30T06:52:28Z;Armando;6981.322;114205505;Puerto Rico; +2018-11-30T06:17:14Z;Ana;4285.54;114367780;Puerto Rico; +2018-11-30T06:15:57Z;Eduardo;4333.002;114546627;Puerto Rico; +2018-11-30T05:58:37Z;Eduardo;18.85155;116376218;Puerto Rico; +2018-11-30T05:50:41Z;Ana;1628.373;115939703;Puerto Rico; +2018-11-30T05:38:13Z;nathalia;2237.243;114563985;Puerto Rico; +2018-11-30T05:34:18Z;nathalia;12324.82;115618621;Puerto Rico; +2018-11-30T05:29:09Z;Nathália;1456.132;115785677;Puerto Rico; +2018-11-30T05:15:50Z;Ana;4578.913;115821406;Puerto Rico; +2018-11-30T04:56:35Z;Júlio Cesar;1892.331;115641304;Puerto Rico; +2018-11-30T04:55:23Z;Nathália;6708.841;114417586;Puerto Rico; +2018-11-30T04:31:39Z;Armando;4850.176;114855801;Puerto Rico; +2018-11-30T04:23:59Z;Nathália;73.38024;115330385;Puerto Rico; +2018-11-30T04:23:34Z;nathalia;788.8176;115906493;Puerto Rico; +2018-11-30T03:53:59Z;Nathália;287.7664;114604235;Puerto Rico; +2018-11-30T03:36:21Z;Sandra;1345.005;115194141;Puerto Rico; +2018-11-30T03:07:48Z;Nathália;14133.87;115022346;Puerto Rico; +2018-11-30T03:04:30Z;Eduardo;5287.57;115462294;Puerto Rico; +2018-11-30T02:55:22Z;nathalia;313.1799;114222158;Puerto Rico; +2018-11-30T02:43:21Z;Júlio Cesar;3540.589;115915471;Puerto Rico; +2018-11-30T02:39:50Z;Sandra;1933.684;116198371;Puerto Rico; +2018-11-30T02:38:48Z;nathalia;12265.15;114964682;Puerto Rico; +2018-11-30T02:38:12Z;Júlio;9927.607;114927485;Puerto Rico; +2018-11-30T02:19:56Z;Eduardo;7988.454;115856348;Puerto Rico; +2018-11-30T02:12:07Z;nathalia;10764.11;114401692;Puerto Rico; +2018-11-30T02:05:15Z;nathalia;2278.582;115370919;Puerto Rico; +2018-11-30T02:00:59Z;Ana;1813.464;115594949;Puerto Rico; +2018-11-30T01:44:26Z;Armando;1833.292;115132980;Puerto Rico; +2018-11-30T01:30:44Z;Júlio Cesar;4312.46;115632440;Puerto Rico; +2018-11-30T01:28:22Z;Eduardo;457.7103;115606006;Puerto Rico; +2018-11-30T01:16:53Z;Sandra;4486.369;116186710;Puerto Rico; +2018-11-30T01:11:00Z;Júlio Cesar;7951.883;115535008;Puerto Rico; +2018-11-30T01:01:58Z;nathalia;13615.56;116282614;Puerto Rico; +2018-11-30T00:55:30Z;Júlio Cesar;6744.132;116077862;Puerto Rico; +2018-11-30T00:43:11Z;Ana;7163.628;114961319;Puerto Rico; +2018-11-30T00:33:07Z;Nathália;9261.3;114963571;Puerto Rico; +2018-11-30T00:18:10Z;Armando;7165.78;114939719;Puerto Rico; +2018-11-30T00:16:32Z;Nathália;2596.248;115770526;Puerto Rico; +2018-11-30T00:12:02Z;Ana;6283.883;116208882;Puerto Rico; +2018-11-30T00:05:13Z;nathalia;2095.064;116043580;Puerto Rico; +2018-11-29T23:57:02Z;Sandra;921.9314;115545299;Puerto Rico; +2018-11-29T23:36:16Z;nathalia;4959.622;114938556;Puerto Rico; +2018-11-29T23:35:25Z;Sandra;990.4395;114425820;Puerto Rico; +2018-11-29T23:26:21Z;Júlio;1747.812;115597775;Puerto Rico; +2018-11-29T23:23:03Z;nathalia;2025.096;114519641;Puerto Rico; +2018-11-29T23:11:15Z;Sandra;4557.35;114728961;Puerto Rico; +2018-11-29T22:54:22Z;Ana;424.5127;115943683;Puerto Rico; +2018-11-29T22:45:10Z;Eduardo;2143.398;114871693;Puerto Rico; +2018-11-29T21:57:31Z;nathalia;5030.223;115424593;Puerto Rico; +2018-11-29T21:26:22Z;Júlio Cesar;8570.471;115228589;Puerto Rico; +2018-11-29T21:22:58Z;Ana;795.2866;116105998;Puerto Rico; +2018-11-29T21:14:03Z;Sandra;9030.429;115610864;Puerto Rico; +2018-11-29T21:13:30Z;Júlio;897.3688;116238718;Puerto Rico; +2018-11-29T21:09:19Z;Sandra;144.648;116333965;Puerto Rico; +2018-11-29T20:50:03Z;Júlio;3159.91;115780859;Puerto Rico; +2018-11-29T20:37:16Z;nathalia;5659.317;114937900;Puerto Rico; +2018-11-29T20:36:30Z;Júlio Cesar;7145.466;115413213;Puerto Rico; +2018-11-29T20:17:01Z;Ana;7107.532;114773275;Puerto Rico; +2018-11-29T19:50:16Z;Júlio;9140.511;116312070;Puerto Rico; +2018-11-29T19:29:44Z;Júlio Cesar;636.6958;114583854;Puerto Rico; +2018-11-29T19:23:04Z;Ana;2123.023;114384718;Puerto Rico; +2018-11-29T19:00:04Z;Eduardo;1028.505;114577760;Puerto Rico; +2018-11-29T18:39:47Z;nathalia;8301.614;116142105;Puerto Rico; +2018-11-29T18:36:22Z;Ana;10396.5;114963495;Puerto Rico; +2018-11-29T18:19:31Z;Ana;2956.411;115659279;Puerto Rico; +2018-11-29T18:02:43Z;Eduardo;4192.793;115061511;Puerto Rico; +2018-11-29T17:55:07Z;nathalia;7449.169;115822868;Puerto Rico; +2018-11-29T17:54:41Z;Ana;615.8545;114405720;Puerto Rico; +2018-11-29T17:40:46Z;Sandra;6501.132;115191188;Puerto Rico; +2018-11-29T16:48:02Z;Sandra;664.6563;115098619;Puerto Rico; +2018-11-29T16:37:53Z;Júlio Cesar;13761.17;114952899;Puerto Rico; +2018-11-29T16:32:17Z;Sandra;4439.986;114448261;Puerto Rico; +2018-11-29T16:22:16Z;Sandra;2836.872;114928098;Puerto Rico; +2018-11-29T16:17:28Z;Sandra;2628.67;115184411;Puerto Rico; +2018-11-29T16:15:07Z;nathalia;339.2308;114530266;Puerto Rico; +2018-11-29T16:09:55Z;Nathália;2547.26;114733791;Puerto Rico; +2018-11-29T15:49:07Z;Sandra;3069.648;116396530;Puerto Rico; +2018-11-29T15:30:30Z;Júlio;782.3851;115043903;Puerto Rico; +2018-11-29T15:22:27Z;Ana;2544.832;116136931;Puerto Rico; +2018-11-29T14:51:01Z;Júlio;8171.009;115999256;Puerto Rico; +2018-11-29T14:45:45Z;nathalia;2560.161;115381470;Puerto Rico; +2018-11-29T14:31:54Z;Sandra;2646.181;115938430;Puerto Rico; +2018-11-29T14:01:43Z;Armando;3078.219;116108803;Puerto Rico; +2018-11-29T13:54:49Z;Sandra;1886.353;115802425;Puerto Rico; +2018-11-29T13:54:27Z;nathalia;1318.676;115953680;Puerto Rico; +2018-11-29T13:04:51Z;Nathália;1642.815;114655957;Puerto Rico; +2018-11-29T12:28:29Z;Nathália;1496.758;114387967;Puerto Rico; +2018-11-29T12:03:18Z;Ana;5291.62;115504126;Puerto Rico; +2018-11-29T11:45:03Z;Ana;1210.201;115612469;Puerto Rico; +2018-11-29T11:27:08Z;Nathália;1687.543;115131461;Puerto Rico; +2018-11-29T11:21:39Z;Ana;9175.75;115311589;Puerto Rico; +2018-11-29T10:26:19Z;Nathália;11176.27;115980478;Puerto Rico; +2018-11-29T09:27:23Z;Nathália;128.4482;115717666;Puerto Rico; +2018-11-29T09:08:44Z;Sandra;5118.975;115424144;Puerto Rico; +2018-11-29T08:59:13Z;nathalia;3958.773;114348031;Puerto Rico; +2018-11-29T08:54:19Z;nathalia;255.6236;115409910;Puerto Rico; +2018-11-29T08:54:07Z;Júlio Cesar;1210.318;114953184;Puerto Rico; +2018-11-29T07:57:36Z;Armando;716.3313;115589734;Puerto Rico; +2018-11-29T07:20:14Z;Sandra;6893.507;115168298;Puerto Rico; +2018-11-29T06:56:37Z;Eduardo;4805.86;115541186;Puerto Rico; +2018-11-29T06:19:18Z;Júlio;11131.51;114352282;Puerto Rico; +2018-11-29T06:18:41Z;Nathália;5938.512;115142587;Puerto Rico; +2018-11-29T06:18:10Z;nathalia;8237.781;114970082;Puerto Rico; +2018-11-29T06:08:54Z;nathalia;11.05116;115597680;Puerto Rico; +2018-11-29T06:06:16Z;nathalia;6388.16;114321942;Puerto Rico; +2018-11-29T05:34:16Z;Sandra;1460.873;114226106;Puerto Rico; +2018-11-29T05:20:33Z;Nathália;1450.255;114639907;Puerto Rico; +2018-11-29T05:05:45Z;Júlio Cesar;5867.705;116166963;Puerto Rico; +2018-11-29T04:56:24Z;Ana;979.6523;114240773;Puerto Rico; +2018-11-29T04:54:56Z;Ana;1111.304;116187295;Puerto Rico; +2018-11-29T04:54:45Z;nathalia;2311.443;114993650;Puerto Rico; +2018-11-29T04:53:33Z;Sandra;3826.505;116044411;Puerto Rico; +2018-11-29T04:35:01Z;Eduardo;2495.581;114611073;Puerto Rico; +2018-11-29T03:53:32Z;Armando;4537.861;114392910;Puerto Rico; +2018-11-29T03:50:03Z;Sandra;3369.632;114773415;Puerto Rico; +2018-11-29T03:35:49Z;Armando;856.0107;114341038;Puerto Rico; +2018-11-29T03:29:04Z;Ana;7396.685;115016359;Puerto Rico; +2018-11-29T03:06:17Z;Nathália;668.9901;115811795;Puerto Rico; +2018-11-29T02:56:11Z;Armando;3078.89;114784641;Puerto Rico; +2018-11-29T02:51:02Z;nathalia;1682.999;115431620;Puerto Rico; +2018-11-29T02:47:30Z;Armando;4560.175;114644629;Puerto Rico; +2018-11-29T02:30:40Z;Eduardo;5485.272;115163635;Puerto Rico; +2018-11-29T02:09:19Z;Eduardo;5596.821;115651938;Puerto Rico; +2018-11-29T01:47:08Z;Sandra;5601.995;116000581;Puerto Rico; +2018-11-29T01:39:44Z;Júlio;746.1445;114250406;Puerto Rico; +2018-11-29T01:32:11Z;Júlio;3348.431;115200787;Puerto Rico; +2018-11-29T01:13:03Z;Sandra;9184.801;114466779;Puerto Rico; +2018-11-29T01:03:17Z;Armando;6516.224;116311203;Puerto Rico; +2018-11-29T00:31:19Z;nathalia;8110.669;114622172;Puerto Rico; +2018-11-29T00:22:32Z;Armando;6902.8;115427112;Puerto Rico; +2018-11-29T00:12:05Z;Nathália;2735.531;114755937;Puerto Rico; +2018-11-29T00:11:24Z;nathalia;1942.982;115290089;Puerto Rico; +2018-11-29T00:04:07Z;Júlio Cesar;2319.826;115520434;Puerto Rico; +2018-11-29T00:03:26Z;Júlio Cesar;437.7434;115122355;Puerto Rico; +2018-11-28T23:53:55Z;Sandra;1970.794;114649058;Puerto Rico; +2018-11-28T23:39:18Z;Júlio Cesar;4902.75;115544842;Puerto Rico; +2018-11-28T23:28:37Z;Nathália;1049.301;114283314;Puerto Rico; +2018-11-28T23:13:33Z;nathalia;264.4551;115059785;Puerto Rico; +2018-11-28T23:13:18Z;nathalia;5902.288;115964668;Puerto Rico; +2018-11-28T21:15:42Z;nathalia;5028.306;115409947;Puerto Rico; +2018-11-28T20:15:34Z;Ana;1410.411;114901358;Puerto Rico; +2018-11-28T20:02:42Z;Nathália;2767.553;115605096;Puerto Rico; +2018-11-28T19:53:06Z;Ana;5259.742;116226256;Puerto Rico; +2018-11-28T19:52:25Z;Eduardo;8094.215;116273252;Puerto Rico; +2018-11-28T19:36:15Z;Eduardo;1255.113;115151998;Puerto Rico; +2018-11-28T18:33:45Z;Nathália;879.976;115466482;Puerto Rico; +2018-11-28T18:11:20Z;Júlio;682.9297;116177659;Puerto Rico; +2018-11-28T17:55:32Z;Eduardo;3051.9;114586372;Puerto Rico; +2018-11-28T17:52:16Z;Armando;1247.505;115525394;Puerto Rico; +2018-11-28T17:51:51Z;Nathália;12774.68;116269076;Puerto Rico; +2018-11-28T17:43:32Z;Eduardo;7761.387;114955445;Puerto Rico; +2018-11-28T17:40:49Z;Eduardo;1462.606;114597565;Puerto Rico; +2018-11-28T17:03:47Z;Sandra;1551.781;116325246;Puerto Rico; +2018-11-28T16:58:14Z;Júlio;233.0518;115113943;Puerto Rico; +2018-11-28T16:46:54Z;nathalia;5425.443;115456220;Puerto Rico; +2018-11-28T16:36:17Z;Júlio;1102.542;116265209;Puerto Rico; +2018-11-28T16:22:34Z;Nathália;239.3953;116082958;Puerto Rico; +2018-11-28T15:44:53Z;Eduardo;4505.82;114306494;Puerto Rico; +2018-11-28T15:44:21Z;Júlio;6380.86;115686116;Puerto Rico; +2018-11-28T15:42:38Z;Eduardo;2115.088;115479762;Puerto Rico; +2018-11-28T15:31:35Z;nathalia;11252.41;115995495;Puerto Rico; +2018-11-28T15:07:21Z;Júlio;2352.167;115520358;Puerto Rico; +2018-11-28T14:51:04Z;Armando;1312.71;115427527;Puerto Rico; +2018-11-28T14:47:43Z;nathalia;2224.409;114444980;Puerto Rico; +2018-11-28T14:37:41Z;Eduardo;8.573841;115207277;Puerto Rico; +2018-11-28T14:26:44Z;Ana;4450.29;114409804;Puerto Rico; +2018-11-28T14:15:34Z;Ana;5384.327;115955719;Puerto Rico; +2018-11-28T14:14:45Z;Sandra;2574.994;115733753;Puerto Rico; +2018-11-28T14:07:46Z;Eduardo;4472.275;116200308;Puerto Rico; +2018-11-28T13:47:10Z;nathalia;1426.432;116171130;Puerto Rico; +2018-11-28T13:11:10Z;Armando;1110.527;115198117;Puerto Rico; +2018-11-28T13:05:05Z;Nathália;14382.86;114882835;Puerto Rico; +2018-11-28T13:01:35Z;Ana;172.7878;114829303;Puerto Rico; +2018-11-28T12:44:48Z;Armando;815.7583;114511261;Puerto Rico; +2018-11-28T12:21:16Z;Júlio;4017.914;116090248;Puerto Rico; +2018-11-28T12:19:55Z;Ana;10628.43;116344410;Puerto Rico; +2018-11-28T12:10:32Z;nathalia;2185.331;115750020;Puerto Rico; +2018-11-28T11:59:00Z;nathalia;617.4316;115939019;Puerto Rico; +2018-11-28T11:51:09Z;Ana;865.4535;114487231;Puerto Rico; +2018-11-28T11:39:10Z;nathalia;2461.865;115391226;Puerto Rico; +2018-11-28T11:28:53Z;Júlio;754.26;114842969;Puerto Rico; +2018-11-28T11:02:36Z;Nathália;10565.45;115363486;Puerto Rico; +2018-11-28T10:56:52Z;nathalia;4326.086;114938605;Puerto Rico; +2018-11-28T10:47:22Z;Júlio Cesar;5055.172;115907393;Puerto Rico; +2018-11-28T10:43:59Z;Armando;691.0314;114781549;Puerto Rico; +2018-11-28T10:19:30Z;Sandra;3914.77;114968646;Puerto Rico; +2018-11-28T10:02:29Z;Júlio Cesar;1969.674;115375162;Puerto Rico; +2018-11-28T09:59:24Z;Nathália;2892.6;114862173;Puerto Rico; +2018-11-28T09:42:10Z;nathalia;3662.81;114452175;Puerto Rico; +2018-11-28T09:34:36Z;Armando;1545.702;115050711;Puerto Rico; +2018-11-28T09:28:47Z;Júlio;3996.212;114460965;Puerto Rico; +2018-11-28T08:59:34Z;Júlio;679.1262;114282373;Puerto Rico; +2018-11-28T08:56:26Z;nathalia;7682.34;116218254;Puerto Rico; +2018-11-28T08:45:11Z;nathalia;764.6187;115573930;Puerto Rico; +2018-11-28T08:41:09Z;Ana;6102.853;115645235;Puerto Rico; +2018-11-28T07:42:55Z;nathalia;2771.638;114955939;Puerto Rico; +2018-11-28T07:35:16Z;Nathália;494.5858;116342654;Puerto Rico; +2018-11-28T07:28:02Z;Eduardo;6786.782;114879894;Puerto Rico; +2018-11-28T06:34:42Z;Eduardo;1283.101;115361694;Puerto Rico; +2018-11-28T06:07:56Z;Ana;2877.412;114635988;Puerto Rico; +2018-11-28T05:39:06Z;Júlio;1119.553;115178979;Puerto Rico; +2018-11-28T05:16:38Z;Eduardo;4993.592;116272551;Puerto Rico; +2018-11-28T05:12:26Z;Júlio;1196.062;115160390;Puerto Rico; +2018-11-28T03:43:06Z;Sandra;13810.42;115001028;Puerto Rico; +2018-11-28T03:40:19Z;nathalia;5730.708;115693880;Puerto Rico; +2018-11-28T03:24:32Z;Sandra;2989.539;115335260;Puerto Rico; +2018-11-28T03:21:55Z;Armando;8856.607;115078004;Puerto Rico; +2018-11-28T03:16:35Z;Eduardo;29.82153;114982986;Puerto Rico; +2018-11-28T03:16:25Z;nathalia;183.898;115601276;Puerto Rico; +2018-11-28T03:04:45Z;Ana;5497.096;114477142;Puerto Rico; +2018-11-28T02:30:48Z;Eduardo;1689.399;116055885;Puerto Rico; +2018-11-28T02:27:10Z;Júlio;3269.402;115656794;Puerto Rico; +2018-11-28T02:05:26Z;Ana;3167.372;114570170;Puerto Rico; +2018-11-28T01:43:58Z;Júlio Cesar;6619.376;115908617;Puerto Rico; +2018-11-28T01:28:02Z;Ana;8508.356;114386535;Puerto Rico; +2018-11-28T01:20:11Z;Nathália;3135.228;116132192;Puerto Rico; +2018-11-28T00:39:09Z;Armando;3819.156;114241087;Puerto Rico; +2018-11-28T00:15:59Z;Sandra;4361.46;114629418;Puerto Rico; +2018-11-27T23:41:48Z;Ana;371.2863;114484836;Puerto Rico; +2018-11-27T22:40:46Z;Nathália;3193.984;114429728;Puerto Rico; +2018-11-27T21:53:54Z;Júlio Cesar;3365.692;114391375;Puerto Rico; +2018-11-27T21:53:50Z;Júlio;7365.297;114747486;Puerto Rico; +2018-11-27T20:56:55Z;nathalia;4889.368;114521803;Puerto Rico; +2018-11-27T20:55:54Z;Ana;2187.802;114350904;Puerto Rico; +2018-11-27T20:44:52Z;Nathália;2021.746;115319214;Puerto Rico; +2018-11-27T20:29:14Z;Júlio Cesar;317.5119;115811283;Puerto Rico; +2018-11-27T20:23:16Z;Júlio Cesar;2010.932;115716295;Puerto Rico; +2018-11-27T20:11:15Z;Júlio Cesar;1757.609;115775397;Puerto Rico; +2018-11-27T19:37:42Z;Eduardo;2073.677;115117770;Puerto Rico; +2018-11-27T19:33:14Z;Júlio Cesar;496.9966;116269040;Puerto Rico; +2018-11-27T18:48:54Z;nathalia;4025.582;114235914;Puerto Rico; +2018-11-27T18:47:53Z;Armando;262.2386;115283734;Puerto Rico; +2018-11-27T18:36:25Z;Sandra;10216.36;116026519;Puerto Rico; +2018-11-27T18:20:31Z;Armando;2918.72;114338541;Puerto Rico; +2018-11-27T17:43:17Z;Júlio;633.6425;115207708;Puerto Rico; +2018-11-27T17:40:08Z;Ana;2326.643;115817294;Puerto Rico; +2018-11-27T17:33:17Z;Júlio;2641.095;115659269;Puerto Rico; +2018-11-27T17:22:09Z;Eduardo;8134.282;115605645;Puerto Rico; +2018-11-27T17:20:17Z;Ana;540.978;115042124;Puerto Rico; +2018-11-27T17:11:31Z;Eduardo;4173.147;114559224;Puerto Rico; +2018-11-27T16:43:00Z;Eduardo;3710.388;115644212;Puerto Rico; +2018-11-27T16:38:33Z;Júlio;556.0314;115704689;Puerto Rico; +2018-11-27T16:29:02Z;Júlio Cesar;289.5291;115178192;Puerto Rico; +2018-11-27T16:05:56Z;Sandra;19.68623;115359332;Puerto Rico; +2018-11-27T15:56:55Z;Sandra;8938.412;115664028;Puerto Rico; +2018-11-27T15:52:32Z;Ana;426.9718;114676872;Puerto Rico; +2018-11-27T15:37:42Z;Eduardo;3739.533;115624832;Puerto Rico; +2018-11-27T14:39:12Z;Armando;2382.967;116306859;Puerto Rico; +2018-11-27T14:09:12Z;Júlio Cesar;3734.786;115113311;Puerto Rico; +2018-11-27T13:59:22Z;Eduardo;5388.127;115624103;Puerto Rico; +2018-11-27T13:48:59Z;Júlio;955.0059;116095260;Puerto Rico; +2018-11-27T13:39:15Z;Sandra;100.901;115849074;Puerto Rico; +2018-11-27T13:35:00Z;Eduardo;208.1164;115307204;Puerto Rico; +2018-11-27T13:30:27Z;nathalia;132.8502;115815222;Puerto Rico; +2018-11-27T13:25:30Z;Ana;211.0727;114786867;Puerto Rico; +2018-11-27T13:18:30Z;Júlio;3831.451;114222637;Puerto Rico; +2018-11-27T12:52:15Z;Júlio Cesar;10888.66;115301250;Puerto Rico; +2018-11-27T12:51:42Z;Nathália;3518.593;114383829;Puerto Rico; +2018-11-27T12:51:28Z;Júlio Cesar;553.3191;115789076;Puerto Rico; +2018-11-27T12:04:40Z;nathalia;4443.13;114744059;Puerto Rico; +2018-11-27T11:56:16Z;Júlio;1514.845;115469015;Puerto Rico; +2018-11-27T11:53:26Z;Eduardo;1123.25;116270552;Puerto Rico; +2018-11-27T11:18:52Z;Armando;1325.322;115767841;Puerto Rico; +2018-11-27T10:58:41Z;Júlio;2935.037;115364531;Puerto Rico; +2018-11-27T10:39:28Z;Sandra;7575.951;116016421;Puerto Rico; +2018-11-27T10:26:53Z;Armando;3651.542;114282334;Puerto Rico; +2018-11-27T10:18:13Z;nathalia;1848.963;116153415;Puerto Rico; +2018-11-27T10:15:47Z;Ana;1049.079;116025528;Puerto Rico; +2018-11-27T09:48:38Z;Júlio;4940.06;115015641;Puerto Rico; +2018-11-27T09:33:44Z;Sandra;79.79412;116398657;Puerto Rico; +2018-11-27T09:32:08Z;Ana;8327.972;116210169;Puerto Rico; +2018-11-27T09:29:30Z;Eduardo;1657.066;115754923;Puerto Rico; +2018-11-27T09:23:20Z;Júlio;3945.027;116232764;Puerto Rico; +2018-11-27T08:59:20Z;Ana;5945.013;114991483;Puerto Rico; +2018-11-27T08:48:31Z;Sandra;1624.524;115827077;Puerto Rico; +2018-11-27T08:35:02Z;Nathália;189.8799;116171385;Puerto Rico; +2018-11-27T08:25:36Z;Eduardo;7338.974;114702483;Puerto Rico; +2018-11-27T08:06:12Z;Júlio;4238.4;116098288;Puerto Rico; +2018-11-27T08:00:59Z;Júlio;3801.178;116295322;Puerto Rico; +2018-11-27T07:51:51Z;Sandra;246.6063;114503005;Puerto Rico; +2018-11-27T07:38:28Z;Júlio;5576.465;115111902;Puerto Rico; +2018-11-27T07:16:44Z;Júlio;1947.375;114391847;Puerto Rico; +2018-11-27T06:45:27Z;Armando;12064.43;116122957;Puerto Rico; +2018-11-27T06:39:16Z;Eduardo;5326.765;114494037;Puerto Rico; +2018-11-27T06:37:52Z;Júlio;2099.456;114279507;Puerto Rico; +2018-11-27T06:05:40Z;Ana;12693.81;116204085;Puerto Rico; +2018-11-27T06:01:53Z;Armando;4271.152;115402966;Puerto Rico; +2018-11-27T06:00:39Z;Sandra;14402.45;114638467;Puerto Rico; +2018-11-27T05:54:52Z;Eduardo;4352.759;115313961;Puerto Rico; +2018-11-27T05:44:35Z;Ana;2789.416;114686164;Puerto Rico; +2018-11-27T05:13:52Z;Júlio;256.959;116225321;Puerto Rico; +2018-11-27T05:10:53Z;Eduardo;9918.879;115401931;Puerto Rico; +2018-11-27T05:09:14Z;Júlio Cesar;5799.228;115038357;Puerto Rico; +2018-11-27T05:05:47Z;Júlio Cesar;4137.274;115998486;Puerto Rico; +2018-11-27T04:56:43Z;Júlio;1610.184;115988088;Puerto Rico; +2018-11-27T04:18:22Z;Nathália;100.5628;115462817;Puerto Rico; +2018-11-27T04:10:17Z;Ana;3862.362;115155791;Puerto Rico; +2018-11-27T03:57:16Z;Ana;1290.89;115832835;Puerto Rico; +2018-11-27T03:49:30Z;Nathália;3011.102;115394090;Puerto Rico; +2018-11-27T03:35:31Z;Júlio;4654.419;115630342;Puerto Rico; +2018-11-27T03:30:36Z;nathalia;5096.894;114660990;Puerto Rico; +2018-11-27T03:23:25Z;Júlio Cesar;468.6096;115986616;Puerto Rico; +2018-11-27T03:12:37Z;nathalia;952.1206;115480070;Puerto Rico; +2018-11-27T02:53:48Z;Júlio Cesar;9255.676;115879005;Puerto Rico; +2018-11-27T02:49:16Z;Sandra;8827.737;114878174;Puerto Rico; +2018-11-27T02:47:04Z;Júlio;99.30289;116146358;Puerto Rico; +2018-11-27T01:33:22Z;Nathália;5344.058;114292905;Puerto Rico; +2018-11-27T01:32:18Z;Júlio;4604.653;114503846;Puerto Rico; +2018-11-27T01:08:22Z;nathalia;12687.64;114235507;Puerto Rico; +2018-11-27T01:04:24Z;Júlio;2580.692;115951132;Puerto Rico; +2018-11-26T23:34:32Z;Ana;7465.5;115332668;Puerto Rico; +2018-11-26T23:33:11Z;Ana;7879.107;114758224;Puerto Rico; +2018-11-26T23:24:54Z;Sandra;1318.883;116300083;Puerto Rico; +2018-11-26T23:21:03Z;nathalia;39.93272;114912573;Puerto Rico; +2018-11-26T23:15:14Z;Sandra;1391.955;115891917;Puerto Rico; +2018-11-26T23:05:33Z;Júlio;7646.922;114741502;Puerto Rico; +2018-11-26T23:02:18Z;Eduardo;898.9275;114961840;Puerto Rico; +2018-11-26T22:31:52Z;nathalia;1140.3;116001668;Puerto Rico; +2018-11-26T22:20:31Z;Armando;5997.743;115451124;Puerto Rico; +2018-11-26T22:13:37Z;Ana;2006.95;115782120;Puerto Rico; +2018-11-26T22:07:43Z;Nathália;736.5873;116397491;Puerto Rico; +2018-11-26T22:03:35Z;Eduardo;1616.849;115315363;Puerto Rico; +2018-11-26T21:45:17Z;Júlio Cesar;3605.508;114743445;Puerto Rico; +2018-11-26T21:33:54Z;nathalia;4162.954;115435471;Puerto Rico; +2018-11-26T21:32:46Z;Júlio Cesar;7304.631;114503561;Puerto Rico; +2018-11-26T21:02:38Z;Armando;7072.02;114814959;Puerto Rico; +2018-11-26T21:01:21Z;Nathália;831.393;114934755;Puerto Rico; +2018-11-26T20:59:42Z;Nathália;96.24766;114827668;Puerto Rico; +2018-11-26T20:46:05Z;nathalia;391.8953;114901868;Puerto Rico; +2018-11-26T20:09:57Z;Júlio Cesar;11464.38;115025324;Puerto Rico; +2018-11-26T19:50:09Z;Eduardo;6994.153;114383040;Puerto Rico; +2018-11-26T19:17:48Z;Eduardo;5348.269;115070298;Puerto Rico; +2018-11-26T19:13:26Z;Armando;1032.29;116184817;Puerto Rico; +2018-11-26T18:24:57Z;nathalia;2133.025;114924655;Puerto Rico; +2018-11-26T18:13:48Z;Armando;9489.685;116198057;Puerto Rico; +2018-11-26T17:36:42Z;nathalia;1717.32;114978381;Puerto Rico; +2018-11-26T17:25:59Z;Júlio;123.5448;116333097;Puerto Rico; +2018-11-26T17:15:57Z;Júlio;4062.672;114525321;Puerto Rico; +2018-11-26T16:54:05Z;nathalia;3151.259;114690930;Puerto Rico; +2018-11-26T16:39:11Z;Ana;1904.663;115674930;Puerto Rico; +2018-11-26T16:38:42Z;nathalia;8802.362;114261665;Puerto Rico; +2018-11-26T16:37:02Z;Júlio Cesar;9327.204;115072280;Puerto Rico; +2018-11-26T16:36:06Z;Armando;550.7104;114299595;Puerto Rico; +2018-11-26T16:34:12Z;Nathália;4087.035;114216140;Puerto Rico; +2018-11-26T16:10:27Z;Nathália;8783.241;115668588;Puerto Rico; +2018-11-26T15:48:56Z;Sandra;1990.249;114319296;Puerto Rico; +2018-11-26T15:25:08Z;Ana;3674.402;114419722;Puerto Rico; +2018-11-26T15:08:31Z;Sandra;895.6932;114502038;Puerto Rico; +2018-11-26T14:15:26Z;Ana;2557.281;116031999;Puerto Rico; +2018-11-26T14:05:38Z;Armando;7383.154;115789577;Puerto Rico; +2018-11-26T13:51:56Z;Ana;1058.269;115911537;Puerto Rico; +2018-11-26T13:51:48Z;nathalia;10372.49;115525523;Puerto Rico; +2018-11-26T13:49:57Z;Júlio Cesar;1319.629;116045793;Puerto Rico; +2018-11-26T13:48:09Z;nathalia;1463.298;115513330;Puerto Rico; +2018-11-26T13:12:16Z;Sandra;4687.736;115420242;Puerto Rico; +2018-11-26T12:57:58Z;Nathália;18.37913;114387687;Puerto Rico; +2018-11-26T12:33:30Z;Armando;1950.153;115060771;Puerto Rico; +2018-11-26T12:22:35Z;Sandra;8875.142;115059950;Puerto Rico; +2018-11-26T11:53:10Z;Eduardo;4788.681;114304101;Puerto Rico; +2018-11-26T11:25:25Z;Júlio;1495.478;115078900;Puerto Rico; +2018-11-26T11:18:11Z;Júlio;5612.73;116161930;Puerto Rico; +2018-11-26T11:14:00Z;Júlio;4559.203;115086118;Puerto Rico; +2018-11-26T11:02:19Z;nathalia;5372.117;114237669;Puerto Rico; +2018-11-26T10:50:51Z;Júlio Cesar;816.911;116383680;Puerto Rico; +2018-11-26T10:26:32Z;Eduardo;1264.681;115841782;Puerto Rico; +2018-11-26T10:04:54Z;Eduardo;1571.114;114632621;Puerto Rico; +2018-11-26T10:02:19Z;Sandra;9201.599;115348248;Puerto Rico; +2018-11-26T09:35:24Z;Eduardo;1611.114;115590345;Puerto Rico; +2018-11-26T09:13:54Z;Eduardo;6180.161;115209967;Puerto Rico; +2018-11-26T08:54:44Z;Júlio;650.7693;114967798;Puerto Rico; +2018-11-26T08:50:00Z;Sandra;43.31259;115672810;Puerto Rico; +2018-11-26T08:44:25Z;Armando;5797.56;115706197;Puerto Rico; +2018-11-26T08:30:03Z;nathalia;1536.71;115645981;Puerto Rico; +2018-11-26T08:16:50Z;Sandra;4226.241;114381707;Puerto Rico; +2018-11-26T07:51:53Z;Nathália;6988.963;115972399;Puerto Rico; +2018-11-26T07:22:01Z;Júlio Cesar;9414.233;114219758;Puerto Rico; +2018-11-26T07:19:19Z;Júlio Cesar;2759.389;115385167;Puerto Rico; +2018-11-26T07:18:02Z;Júlio Cesar;9378.497;116331467;Puerto Rico; +2018-11-26T07:03:55Z;Nathália;617.0551;115868335;Puerto Rico; +2018-11-26T07:02:59Z;nathalia;1536.845;114442109;Puerto Rico; +2018-11-26T06:48:16Z;Eduardo;3793.201;115354655;Puerto Rico; +2018-11-26T06:10:11Z;Armando;2741.228;114408744;Puerto Rico; +2018-11-26T06:04:54Z;Eduardo;2275.9;116184350;Puerto Rico; +2018-11-26T05:27:16Z;Júlio Cesar;13044.08;115679876;Puerto Rico; +2018-11-26T05:22:53Z;Sandra;4126.029;115146161;Puerto Rico; +2018-11-26T05:21:26Z;Nathália;2514.731;115627183;Puerto Rico; +2018-11-26T05:17:17Z;Júlio;66.577;115526167;Puerto Rico; +2018-11-26T04:48:57Z;Júlio;7955.629;114945831;Puerto Rico; +2018-11-26T03:53:26Z;Júlio;4836.276;114242007;Puerto Rico; +2018-11-26T03:33:18Z;Júlio;230.854;115430219;Puerto Rico; +2018-11-26T03:14:16Z;Sandra;3140.494;115303120;Puerto Rico; +2018-11-26T03:08:40Z;Ana;9539.339;115907303;Puerto Rico; +2018-11-26T03:02:54Z;nathalia;2932.88;114375879;Puerto Rico; +2018-11-26T03:02:52Z;Ana;7593.036;115470403;Puerto Rico; +2018-11-26T02:58:04Z;Ana;8350.379;114600122;Puerto Rico; +2018-11-26T02:56:20Z;Júlio Cesar;2142.437;115071264;Puerto Rico; +2018-11-26T02:36:48Z;Nathália;777.6503;115500376;Puerto Rico; +2018-11-26T02:29:34Z;Júlio Cesar;7247.331;114404632;Puerto Rico; +2018-11-26T01:57:32Z;Júlio Cesar;4598.74;115337240;Puerto Rico; +2018-11-26T01:37:54Z;Ana;1886.631;116170420;Puerto Rico; +2018-11-26T01:35:49Z;Nathália;606.9615;115177931;Puerto Rico; +2018-11-26T01:29:09Z;Júlio Cesar;9324.034;114225661;Puerto Rico; +2018-11-26T01:25:36Z;Armando;6117.041;115762148;Puerto Rico; +2018-11-26T01:13:04Z;Ana;6551.314;115704010;Puerto Rico; +2018-11-26T00:47:30Z;Armando;990.016;114527600;Puerto Rico; +2018-11-26T00:41:17Z;Júlio;465.4441;115674235;Puerto Rico; +2018-11-26T00:15:07Z;Júlio Cesar;1114.711;114584464;Puerto Rico; +2018-11-25T23:57:54Z;Júlio Cesar;9820.272;114509652;Puerto Rico; +2018-11-25T23:52:09Z;Ana;2568.13;115209021;Puerto Rico; +2018-11-25T23:49:21Z;Nathália;2126.796;114921170;Puerto Rico; +2018-11-25T23:48:56Z;Sandra;1089.648;115983897;Puerto Rico; +2018-11-25T23:43:11Z;Eduardo;4312.612;114827296;Puerto Rico; +2018-11-25T23:38:21Z;Sandra;6914.566;115747384;Puerto Rico; +2018-11-25T23:18:21Z;Armando;9460.434;115142085;Puerto Rico; +2018-11-25T23:12:17Z;Nathália;26.38126;115457300;Puerto Rico; +2018-11-25T23:06:13Z;Eduardo;1558.084;115395032;Puerto Rico; +2018-11-25T22:41:48Z;Ana;4674.608;114958575;Puerto Rico; +2018-11-25T22:15:06Z;Júlio Cesar;2127.81;114592461;Puerto Rico; +2018-11-25T21:39:02Z;Júlio Cesar;3687.834;115541369;Puerto Rico; +2018-11-25T21:26:42Z;Júlio Cesar;486.259;116140415;Puerto Rico; +2018-11-25T20:56:21Z;Armando;685.2983;115914356;Puerto Rico; +2018-11-25T20:46:06Z;Júlio Cesar;5221.791;115337947;Puerto Rico; +2018-11-25T20:43:33Z;Armando;2470.493;115288972;Puerto Rico; +2018-11-25T20:31:19Z;Júlio;8532.44;114320986;Puerto Rico; +2018-11-25T20:09:50Z;Júlio;1550.903;114989364;Puerto Rico; +2018-11-25T20:06:30Z;Júlio;5714.042;114839807;Puerto Rico; +2018-11-25T20:01:00Z;Júlio;342.52;115434949;Puerto Rico; +2018-11-25T19:40:19Z;Eduardo;10778.28;115025936;Puerto Rico; +2018-11-25T19:39:04Z;Nathália;3082.49;115425599;Puerto Rico; +2018-11-25T19:20:10Z;Armando;578.7909;114931428;Puerto Rico; +2018-11-25T19:12:03Z;Ana;2147.623;114917378;Puerto Rico; +2018-11-25T19:11:31Z;Júlio Cesar;507.6836;116241495;Puerto Rico; +2018-11-25T18:56:15Z;Júlio Cesar;7459.554;114381327;Puerto Rico; +2018-11-25T18:28:52Z;nathalia;1998.438;115586580;Puerto Rico; +2018-11-25T18:22:30Z;nathalia;3000.873;114961593;Puerto Rico; +2018-11-25T18:20:16Z;Eduardo;1406.776;116356785;Puerto Rico; +2018-11-25T18:19:23Z;Armando;10734.01;114783242;Puerto Rico; +2018-11-25T18:16:48Z;nathalia;4808.725;115096510;Puerto Rico; +2018-11-25T18:09:29Z;Júlio Cesar;615.6531;115693858;Puerto Rico; +2018-11-25T17:00:22Z;Júlio Cesar;1967.485;116399162;Puerto Rico; +2018-11-25T16:49:21Z;Eduardo;7467.301;115172570;Puerto Rico; +2018-11-25T16:42:11Z;Sandra;1371.805;114651482;Puerto Rico; +2018-11-25T16:37:20Z;Nathália;9191.325;115142754;Puerto Rico; +2018-11-25T16:27:53Z;Sandra;9991.066;115580984;Puerto Rico; +2018-11-25T16:24:16Z;Sandra;1666.064;116346997;Puerto Rico; +2018-11-25T16:16:25Z;nathalia;298.5946;115562709;Puerto Rico; +2018-11-25T16:07:49Z;Júlio Cesar;7740.042;115554782;Puerto Rico; +2018-11-25T16:06:35Z;nathalia;4636.584;116112627;Puerto Rico; +2018-11-25T15:46:18Z;Júlio Cesar;5559.315;114230458;Puerto Rico; +2018-11-25T15:42:37Z;nathalia;8032.769;115693479;Puerto Rico; +2018-11-25T15:34:18Z;Júlio Cesar;14292.77;115892481;Puerto Rico; +2018-11-25T15:30:32Z;Nathália;9242.998;115314375;Puerto Rico; +2018-11-25T15:26:44Z;Sandra;3411.193;114461194;Puerto Rico; +2018-11-25T15:19:04Z;nathalia;2088.078;114511524;Puerto Rico; +2018-11-25T15:08:59Z;Júlio;1687.616;114905726;Puerto Rico; +2018-11-25T14:41:57Z;Ana;7518.736;115572817;Puerto Rico; +2018-11-25T14:40:43Z;Júlio;501.7231;114933489;Puerto Rico; +2018-11-25T13:47:20Z;nathalia;4073.276;115731744;Puerto Rico; +2018-11-25T13:44:00Z;Júlio;2941.163;114948371;Puerto Rico; +2018-11-25T13:37:48Z;Armando;2969.314;114431635;Puerto Rico; +2018-11-25T13:33:27Z;Eduardo;4533.114;115097626;Puerto Rico; +2018-11-25T13:25:22Z;Eduardo;237.2175;116069143;Puerto Rico; +2018-11-25T13:05:38Z;Nathália;3652.792;115533497;Puerto Rico; +2018-11-25T12:51:30Z;Ana;3828.75;114344096;Puerto Rico; +2018-11-25T12:38:33Z;Sandra;2720.677;115669236;Puerto Rico; +2018-11-25T12:21:40Z;Júlio Cesar;1997.62;115576313;Puerto Rico; +2018-11-25T12:07:57Z;Sandra;4801.654;114203989;Puerto Rico; +2018-11-25T12:04:04Z;Eduardo;2446.748;115017232;Puerto Rico; +2018-11-25T11:39:15Z;Nathália;1844.034;115025105;Puerto Rico; +2018-11-25T11:27:05Z;Sandra;145.5129;115291264;Puerto Rico; +2018-11-25T11:13:00Z;Armando;4487.624;116352477;Puerto Rico; +2018-11-25T11:00:49Z;Júlio Cesar;9805.289;116057774;Puerto Rico; +2018-11-25T11:00:20Z;Armando;6021.906;115353664;Puerto Rico; +2018-11-25T10:59:08Z;Ana;2050.898;116202825;Puerto Rico; +2018-11-25T10:55:58Z;Júlio;1905.776;115800773;Puerto Rico; +2018-11-25T10:50:22Z;Júlio;2139.808;114657266;Puerto Rico; +2018-11-25T10:42:07Z;Sandra;1350.534;115937756;Puerto Rico; +2018-11-25T10:28:20Z;nathalia;32.63234;114445143;Puerto Rico; +2018-11-25T10:21:09Z;Armando;838.7605;114395327;Puerto Rico; +2018-11-25T09:52:13Z;Eduardo;12534.25;115638441;Puerto Rico; +2018-11-25T09:07:23Z;Sandra;11174.66;115820573;Puerto Rico; +2018-11-25T09:05:02Z;Nathália;3300.23;116302859;Puerto Rico; +2018-11-25T08:58:19Z;Júlio;1661.263;114315013;Puerto Rico; +2018-11-25T08:57:53Z;nathalia;941.7784;115570543;Puerto Rico; +2018-11-25T08:46:34Z;Eduardo;1928.023;115811134;Puerto Rico; +2018-11-25T08:43:03Z;Ana;3771.023;115142061;Puerto Rico; +2018-11-25T08:38:21Z;nathalia;58.18642;114233007;Puerto Rico; +2018-11-25T08:35:17Z;nathalia;2821.025;114448187;Puerto Rico; +2018-11-25T08:32:46Z;Júlio;1905.17;114408464;Puerto Rico; +2018-11-25T08:28:32Z;Júlio;2684.179;116323494;Puerto Rico; +2018-11-25T08:12:37Z;Nathália;4504.33;115664195;Puerto Rico; +2018-11-25T08:01:07Z;Júlio;1828.043;114874074;Puerto Rico; +2018-11-25T07:31:42Z;Eduardo;260.0973;115517713;Puerto Rico; +2018-11-25T07:07:38Z;Armando;1232.564;116023766;Puerto Rico; +2018-11-25T06:42:50Z;nathalia;493.6791;115244125;Puerto Rico; +2018-11-25T06:40:18Z;Ana;3019.772;115151292;Puerto Rico; +2018-11-25T06:33:58Z;nathalia;11359.73;115937751;Puerto Rico; +2018-11-25T06:13:48Z;Júlio Cesar;875.6889;114386764;Puerto Rico; +2018-11-25T05:36:46Z;nathalia;951.9718;116002657;Puerto Rico; +2018-11-25T05:29:45Z;Ana;2925.544;114482737;Puerto Rico; +2018-11-25T04:51:48Z;Júlio;7502.505;114751745;Puerto Rico; +2018-11-25T04:17:14Z;Júlio Cesar;4101.7;114792368;Puerto Rico; +2018-11-25T04:04:52Z;Sandra;833.0792;115231044;Puerto Rico; +2018-11-25T03:56:19Z;Armando;3006.443;115421821;Puerto Rico; +2018-11-25T03:13:38Z;Armando;3613.856;114957318;Puerto Rico; +2018-11-25T02:41:29Z;Sandra;4510.856;114797977;Puerto Rico; +2018-11-25T02:21:41Z;Sandra;8216.645;114639745;Puerto Rico; +2018-11-25T01:38:15Z;nathalia;6715.442;115218951;Puerto Rico; +2018-11-25T01:23:49Z;Júlio Cesar;7391.077;114545637;Puerto Rico; +2018-11-25T01:21:57Z;Sandra;770.5586;116252851;Puerto Rico; +2018-11-25T01:17:23Z;Júlio Cesar;2926.428;114291609;Puerto Rico; +2018-11-25T00:50:40Z;Júlio Cesar;3874.309;114953593;Puerto Rico; +2018-11-25T00:34:03Z;Júlio;91.42902;115722879;Puerto Rico; +2018-11-25T00:30:41Z;nathalia;10658.42;115314916;Puerto Rico; +2018-11-25T00:09:23Z;Armando;3888.261;115523464;Puerto Rico; +2018-11-24T23:58:25Z;Armando;3013.844;114855410;Puerto Rico; +2018-11-24T23:55:08Z;nathalia;1263.418;115268487;Puerto Rico; +2018-11-24T23:54:52Z;nathalia;3586.224;115543871;Puerto Rico; +2018-11-24T23:30:27Z;nathalia;2858.773;114732880;Puerto Rico; +2018-11-24T23:16:15Z;Eduardo;9106.419;114787020;Puerto Rico; +2018-11-24T22:41:43Z;Júlio;4950.205;115198900;Puerto Rico; +2018-11-24T22:20:04Z;Armando;1472.883;116044847;Puerto Rico; +2018-11-24T21:56:32Z;Eduardo;3609.507;116151347;Puerto Rico; +2018-11-24T21:15:10Z;Ana;4502.833;114843008;Puerto Rico; +2018-11-24T21:06:00Z;Júlio Cesar;13017.03;116372146;Puerto Rico; +2018-11-24T20:55:18Z;Sandra;6052.262;115590804;Puerto Rico; +2018-11-24T20:51:27Z;Júlio;1916.457;116359695;Puerto Rico; +2018-11-24T20:25:45Z;Armando;411.4278;115264790;Puerto Rico; +2018-11-24T19:54:03Z;Júlio;1707.986;114980988;Puerto Rico; +2018-11-24T19:35:20Z;Júlio;8315.238;115498622;Puerto Rico; +2018-11-24T19:12:19Z;Júlio Cesar;5200.9;114313584;Puerto Rico; +2018-11-24T19:10:48Z;nathalia;1856.434;116303189;Puerto Rico; +2018-11-24T18:02:28Z;Júlio;3087.148;116123494;Puerto Rico; +2018-11-24T17:13:41Z;Nathália;464.7964;116111507;Puerto Rico; +2018-11-24T16:56:37Z;Nathália;3531.576;114579121;Puerto Rico; +2018-11-24T16:39:10Z;Júlio;2006.38;114856422;Puerto Rico; +2018-11-24T16:11:53Z;Júlio;3390.884;115365443;Puerto Rico; +2018-11-24T15:51:29Z;Ana;32.43412;114219787;Puerto Rico; +2018-11-24T15:32:12Z;Armando;1670.542;114994090;Puerto Rico; +2018-11-24T15:29:56Z;Eduardo;2273.562;115864605;Puerto Rico; +2018-11-24T15:25:29Z;Júlio Cesar;2676.634;116288491;Puerto Rico; +2018-11-24T15:18:46Z;Ana;2179.363;114346766;Puerto Rico; +2018-11-24T14:28:22Z;Sandra;6395.252;114241729;Puerto Rico; +2018-11-24T14:05:23Z;nathalia;5425.995;114914950;Puerto Rico; +2018-11-24T13:42:38Z;Ana;572.1116;116135096;Puerto Rico; +2018-11-24T13:39:35Z;Nathália;5960.994;115788600;Puerto Rico; +2018-11-24T13:39:08Z;Nathália;2622.642;115510798;Puerto Rico; +2018-11-24T13:37:52Z;Ana;4722.321;115157656;Puerto Rico; +2018-11-24T13:03:21Z;Armando;7757.528;114376602;Puerto Rico; +2018-11-24T12:55:19Z;Eduardo;8592.298;114831576;Puerto Rico; +2018-11-24T12:53:40Z;Sandra;718.8596;115602628;Puerto Rico; +2018-11-24T12:38:27Z;Armando;6951.402;114632997;Puerto Rico; +2018-11-24T12:35:37Z;nathalia;3659.148;115696868;Puerto Rico; +2018-11-24T12:29:32Z;Júlio;269.9253;114212138;Puerto Rico; +2018-11-24T12:28:49Z;Nathália;666.4188;115396912;Puerto Rico; +2018-11-24T12:02:26Z;Nathália;5348.097;114953709;Puerto Rico; +2018-11-24T11:36:14Z;nathalia;680.7378;114809016;Puerto Rico; +2018-11-24T11:01:45Z;Armando;1851.943;114869721;Puerto Rico; +2018-11-24T10:58:27Z;Júlio;5780.374;114313703;Puerto Rico; +2018-11-24T10:58:23Z;Ana;1577.473;115576378;Puerto Rico; +2018-11-24T10:47:29Z;Sandra;7980.354;116220780;Puerto Rico; +2018-11-24T10:29:05Z;Júlio;7363.522;115965775;Puerto Rico; +2018-11-24T10:03:04Z;Júlio;7120.084;116279941;Puerto Rico; +2018-11-24T09:32:14Z;Sandra;617.0244;116366683;Puerto Rico; +2018-11-24T09:24:09Z;Júlio;6328.581;114293108;Puerto Rico; +2018-11-24T09:07:24Z;Eduardo;6774.321;115809900;Puerto Rico; +2018-11-24T08:53:05Z;nathalia;343.655;115488741;Puerto Rico; +2018-11-24T08:44:35Z;nathalia;2180.971;114915918;Puerto Rico; +2018-11-24T08:43:31Z;Armando;16360.07;114773719;Puerto Rico; +2018-11-24T07:39:47Z;Nathália;5477.628;114589625;Puerto Rico; +2018-11-24T07:29:43Z;Ana;2103.575;115778427;Puerto Rico; +2018-11-24T07:16:58Z;Armando;4345.062;116108315;Puerto Rico; +2018-11-24T07:04:20Z;Júlio Cesar;1547.868;114622385;Puerto Rico; +2018-11-24T06:34:46Z;Júlio Cesar;4571.365;114581920;Puerto Rico; +2018-11-24T06:29:37Z;Eduardo;235.1683;115755935;Puerto Rico; +2018-11-24T06:22:26Z;Ana;2239.307;116298480;Puerto Rico; +2018-11-24T06:14:09Z;Nathália;6792.835;114915696;Puerto Rico; +2018-11-24T05:41:46Z;Armando;4750.473;115370945;Puerto Rico; +2018-11-24T05:07:57Z;Armando;1712.98;114859804;Puerto Rico; +2018-11-24T05:06:58Z;nathalia;7743.429;115788534;Puerto Rico; +2018-11-24T04:02:01Z;nathalia;2943.034;116027860;Puerto Rico; +2018-11-24T03:51:51Z;Júlio;4502.486;114888120;Puerto Rico; +2018-11-24T03:48:13Z;Nathália;1917.096;115474858;Puerto Rico; +2018-11-24T02:43:06Z;nathalia;3603.928;115024792;Puerto Rico; +2018-11-24T02:24:34Z;Júlio;1918.723;116237749;Puerto Rico; +2018-11-24T02:23:30Z;Júlio Cesar;3286.887;114493450;Puerto Rico; +2018-11-24T01:58:52Z;Júlio Cesar;11717.83;115712592;Puerto Rico; +2018-11-24T01:58:05Z;Armando;4857.665;115241083;Puerto Rico; +2018-11-24T00:32:31Z;Armando;3483.097;114547019;Puerto Rico; +2018-11-23T23:44:57Z;Ana;7683.143;115564587;Puerto Rico; +2018-11-23T23:41:29Z;Ana;3232.794;115968847;Puerto Rico; +2018-11-23T23:40:09Z;Nathália;2080.258;115810104;Puerto Rico; +2018-11-23T23:25:20Z;Armando;1466.216;115695365;Puerto Rico; +2018-11-23T23:23:25Z;Nathália;7308.369;115781842;Puerto Rico; +2018-11-23T23:13:43Z;Júlio;4313.844;114774049;Puerto Rico; +2018-11-23T22:45:24Z;Eduardo;5135.288;115411950;Puerto Rico; +2018-11-23T22:38:35Z;Eduardo;1963.076;114813410;Puerto Rico; +2018-11-23T22:27:53Z;Ana;1677.279;116377149;Puerto Rico; +2018-11-23T22:20:29Z;Sandra;6395.633;115970214;Puerto Rico; +2018-11-23T21:39:51Z;Sandra;1049.267;115010199;Puerto Rico; +2018-11-23T21:31:15Z;nathalia;2283.329;115918287;Puerto Rico; +2018-11-23T21:22:00Z;Júlio;6973.359;115264911;Puerto Rico; +2018-11-23T21:12:20Z;Eduardo;3874.865;116361427;Puerto Rico; +2018-11-23T21:10:34Z;Nathália;4335.912;116031047;Puerto Rico; +2018-11-23T21:08:17Z;Nathália;4428.474;114492620;Puerto Rico; +2018-11-23T20:49:10Z;nathalia;5729.675;114681062;Puerto Rico; +2018-11-23T20:46:11Z;Júlio Cesar;2385.434;115727360;Puerto Rico; +2018-11-23T20:41:00Z;Sandra;10685.24;114833585;Puerto Rico; +2018-11-23T20:35:31Z;Ana;2364.81;114906191;Puerto Rico; +2018-11-23T19:59:09Z;nathalia;1246.607;114890588;Puerto Rico; +2018-11-23T19:58:04Z;Júlio;4141.869;116077893;Puerto Rico; +2018-11-23T19:54:31Z;nathalia;4650.437;114919387;Puerto Rico; +2018-11-23T19:50:20Z;Júlio Cesar;3620.457;115619091;Puerto Rico; +2018-11-23T19:16:28Z;Júlio Cesar;2521.351;114617581;Puerto Rico; +2018-11-23T19:07:23Z;Ana;4521.852;115700859;Puerto Rico; +2018-11-23T18:21:08Z;Júlio;1781.221;114281138;Puerto Rico; +2018-11-23T17:57:18Z;Eduardo;3013.673;114321925;Puerto Rico; +2018-11-23T17:55:00Z;Nathália;11414.91;115964703;Puerto Rico; +2018-11-23T17:44:19Z;Júlio Cesar;6512.856;116325556;Puerto Rico; +2018-11-23T17:39:34Z;Júlio Cesar;156.2754;115267800;Puerto Rico; +2018-11-23T17:35:28Z;Ana;5632.165;114513985;Puerto Rico; +2018-11-23T17:31:07Z;nathalia;2372.741;115307910;Puerto Rico; +2018-11-23T17:08:45Z;Eduardo;1637.289;114874551;Puerto Rico; +2018-11-23T16:47:44Z;Eduardo;3047.505;115245318;Puerto Rico; +2018-11-23T16:27:37Z;nathalia;2754.484;114712381;Puerto Rico; +2018-11-23T16:25:52Z;Sandra;4473.924;114590790;Puerto Rico; +2018-11-23T16:23:33Z;Armando;3066.122;114337001;Puerto Rico; +2018-11-23T16:21:27Z;Nathália;3820.657;115211176;Puerto Rico; +2018-11-23T15:38:09Z;Júlio;3043.958;115499608;Puerto Rico; +2018-11-23T15:28:49Z;Sandra;779.3041;115668000;Puerto Rico; +2018-11-23T15:22:39Z;Júlio;33.71913;115363983;Puerto Rico; +2018-11-23T15:01:06Z;nathalia;928.7556;115716801;Puerto Rico; +2018-11-23T14:27:48Z;Nathália;119.4387;114433309;Puerto Rico; +2018-11-23T14:21:42Z;Nathália;133.8417;114647205;Puerto Rico; +2018-11-23T13:56:08Z;nathalia;4751.852;115168825;Puerto Rico; +2018-11-23T13:22:13Z;Júlio Cesar;129.4833;115413881;Puerto Rico; +2018-11-23T13:15:09Z;Sandra;10433.75;116345880;Puerto Rico; +2018-11-23T12:51:27Z;Júlio;2350.671;116378911;Puerto Rico; +2018-11-23T12:36:39Z;Eduardo;948.2787;115206542;Puerto Rico; +2018-11-23T12:07:36Z;Júlio Cesar;7303.969;115799134;Puerto Rico; +2018-11-23T11:57:52Z;Ana;5971.849;115765789;Puerto Rico; +2018-11-23T11:57:04Z;Júlio Cesar;1808.771;114520680;Puerto Rico; +2018-11-23T11:12:11Z;Júlio;7798.438;114578433;Puerto Rico; +2018-11-23T11:02:43Z;Armando;2875.679;114868948;Puerto Rico; +2018-11-23T10:55:35Z;Ana;1590.414;115114413;Puerto Rico; +2018-11-23T10:46:13Z;Eduardo;736.2244;115619568;Puerto Rico; +2018-11-23T10:19:13Z;Armando;14.87257;116289255;Puerto Rico; +2018-11-23T10:12:12Z;Sandra;2244.615;115110602;Puerto Rico; +2018-11-23T10:11:25Z;Armando;1741.087;114827840;Puerto Rico; +2018-11-23T10:07:06Z;Júlio Cesar;3329.795;116226789;Puerto Rico; +2018-11-23T09:52:06Z;Ana;4647.099;115923323;Puerto Rico; +2018-11-23T09:24:48Z;Eduardo;231.9462;115206695;Puerto Rico; +2018-11-23T09:15:51Z;Júlio;7993.547;114386185;Puerto Rico; +2018-11-23T09:14:54Z;Eduardo;2391.193;114512045;Puerto Rico; +2018-11-23T09:08:04Z;Eduardo;3254.868;116362679;Puerto Rico; +2018-11-23T09:06:21Z;Nathália;12218.34;115963689;Puerto Rico; +2018-11-23T08:42:58Z;Júlio Cesar;756.1128;116073074;Puerto Rico; +2018-11-23T08:05:05Z;Júlio Cesar;1897.085;114401228;Puerto Rico; +2018-11-23T07:55:51Z;nathalia;6528.037;116356151;Puerto Rico; +2018-11-23T07:25:17Z;Júlio;3478.868;115689204;Puerto Rico; +2018-11-23T07:24:28Z;Nathália;6392.89;114324199;Puerto Rico; +2018-11-23T07:17:10Z;Ana;1361.389;115979947;Puerto Rico; +2018-11-23T07:06:14Z;Eduardo;9581.745;114609178;Puerto Rico; +2018-11-23T07:05:56Z;Armando;329.288;116000854;Puerto Rico; +2018-11-23T07:04:07Z;Eduardo;7993.603;114229578;Puerto Rico; +2018-11-23T06:16:49Z;Sandra;8819.275;116243086;Puerto Rico; +2018-11-23T06:00:50Z;Júlio Cesar;2884.767;116289776;Puerto Rico; +2018-11-23T05:55:35Z;Sandra;4734.422;115075230;Puerto Rico; +2018-11-23T05:38:18Z;Júlio Cesar;2353.717;114747272;Puerto Rico; +2018-11-23T05:37:42Z;nathalia;1617.553;114234697;Puerto Rico; +2018-11-23T05:11:24Z;Armando;4542.924;116148343;Puerto Rico; +2018-11-23T04:17:03Z;Ana;7896.981;115472983;Puerto Rico; +2018-11-23T02:59:14Z;Sandra;2046.1;114299074;Puerto Rico; +2018-11-23T02:26:59Z;Nathália;3623.556;115918050;Puerto Rico; +2018-11-23T01:29:26Z;Ana;3716.293;115879530;Puerto Rico; +2018-11-23T01:21:08Z;Júlio Cesar;5417.551;115795083;Puerto Rico; +2018-11-23T01:15:18Z;Júlio;12377.28;115093299;Puerto Rico; +2018-11-23T00:53:57Z;Júlio Cesar;5104.017;115170344;Puerto Rico; +2018-11-23T00:50:15Z;Eduardo;6447.602;115566868;Puerto Rico; +2018-11-23T00:33:23Z;Sandra;13947.68;114857124;Puerto Rico; +2018-11-23T00:09:21Z;Ana;5.007844;114961333;Puerto Rico; +2018-11-23T00:07:05Z;nathalia;507.4324;116157024;Puerto Rico; +2018-11-23T00:02:34Z;Armando;3841.732;116301911;Puerto Rico; +2018-11-22T22:56:51Z;Sandra;4724.751;115598759;Puerto Rico; +2018-11-22T22:52:36Z;Ana;3171.091;114830391;Puerto Rico; +2018-11-22T22:47:57Z;Júlio;3280.071;115554510;Puerto Rico; +2018-11-22T22:18:46Z;Nathália;2604.692;115593971;Puerto Rico; +2018-11-22T22:02:49Z;Júlio Cesar;7726.163;114874834;Puerto Rico; +2018-11-22T20:55:33Z;Ana;5890.366;115285747;Puerto Rico; +2018-11-22T20:54:38Z;Ana;273.5048;114696822;Puerto Rico; +2018-11-22T20:34:23Z;Ana;8664.334;115596930;Puerto Rico; +2018-11-22T20:29:13Z;nathalia;305.5432;116227543;Puerto Rico; +2018-11-22T19:56:01Z;Júlio Cesar;966.7896;116269540;Puerto Rico; +2018-11-22T19:55:34Z;Sandra;4505.581;115643855;Puerto Rico; +2018-11-22T19:51:34Z;nathalia;2859.651;115293939;Puerto Rico; +2018-11-22T19:30:47Z;Sandra;5472.695;115522796;Puerto Rico; +2018-11-22T18:44:55Z;Eduardo;1074.053;115695392;Puerto Rico; +2018-11-22T18:35:01Z;Eduardo;3497.702;115738039;Puerto Rico; +2018-11-22T18:34:08Z;Ana;3353.059;116097844;Puerto Rico; +2018-11-22T18:29:39Z;Ana;4053.543;114284365;Puerto Rico; +2018-11-22T17:49:27Z;Ana;1420.864;115188927;Puerto Rico; +2018-11-22T17:04:35Z;Armando;8943.099;115826700;Puerto Rico; +2018-11-22T16:47:58Z;Júlio Cesar;3637.704;116043614;Puerto Rico; +2018-11-22T16:00:47Z;Armando;148.7179;115877090;Puerto Rico; +2018-11-22T15:58:49Z;Júlio Cesar;1934.502;116255462;Puerto Rico; +2018-11-22T15:30:46Z;nathalia;8075.531;116070132;Puerto Rico; +2018-11-22T15:30:20Z;Eduardo;5507.775;115528048;Puerto Rico; +2018-11-22T15:06:56Z;Júlio Cesar;6810.059;115624229;Puerto Rico; +2018-11-22T15:04:03Z;Eduardo;3607.859;115762904;Puerto Rico; +2018-11-22T14:47:20Z;Armando;2843.894;115346321;Puerto Rico; +2018-11-22T14:47:13Z;Sandra;4428.418;115727024;Puerto Rico; +2018-11-22T14:45:47Z;Júlio Cesar;2215.862;115280522;Puerto Rico; +2018-11-22T14:37:00Z;Eduardo;15395.46;115002742;Puerto Rico; +2018-11-22T14:36:08Z;Ana;1099.111;115555319;Puerto Rico; +2018-11-22T14:19:09Z;Sandra;7768.524;115336621;Puerto Rico; +2018-11-22T14:08:34Z;Armando;8145.229;114877988;Puerto Rico; +2018-11-22T13:57:32Z;Eduardo;12880.22;115372374;Puerto Rico; +2018-11-22T13:56:16Z;Eduardo;451.0387;114901181;Puerto Rico; +2018-11-22T13:52:34Z;Júlio;9203.265;116397807;Puerto Rico; +2018-11-22T13:47:49Z;Armando;638.9197;115722747;Puerto Rico; +2018-11-22T13:01:24Z;nathalia;1283.259;114375159;Puerto Rico; +2018-11-22T12:56:11Z;nathalia;4998.596;116175629;Puerto Rico; +2018-11-22T12:43:39Z;Eduardo;2516.794;114670857;Puerto Rico; +2018-11-22T12:43:28Z;Júlio Cesar;5431.011;116140568;Puerto Rico; +2018-11-22T12:40:10Z;Ana;1382.356;115469242;Puerto Rico; +2018-11-22T12:32:27Z;Nathália;2431.859;115060623;Puerto Rico; +2018-11-22T12:18:59Z;Júlio;11887.96;116286707;Puerto Rico; +2018-11-22T11:20:03Z;Ana;8429.309;115554893;Puerto Rico; +2018-11-22T10:45:07Z;Júlio Cesar;4138.778;115854367;Puerto Rico; +2018-11-22T10:21:21Z;Ana;10720.75;115208016;Puerto Rico; +2018-11-22T10:19:09Z;Nathália;3896.921;115472691;Puerto Rico; +2018-11-22T10:10:10Z;Júlio;798.6204;114363395;Puerto Rico; +2018-11-22T09:49:25Z;Armando;6335.553;116324383;Puerto Rico; +2018-11-22T09:44:13Z;Júlio Cesar;2902.976;114970686;Puerto Rico; +2018-11-22T09:37:09Z;Ana;3221.192;115492433;Puerto Rico; +2018-11-22T09:14:12Z;Júlio;8377.31;116213204;Puerto Rico; +2018-11-22T08:45:47Z;Eduardo;5585.303;116126694;Puerto Rico; +2018-11-22T08:11:25Z;Eduardo;1060.265;114984131;Puerto Rico; +2018-11-22T07:53:11Z;Eduardo;1505.523;115900839;Puerto Rico; +2018-11-22T07:30:40Z;Sandra;144.0474;115606727;Puerto Rico; +2018-11-22T07:25:46Z;Nathália;5608.773;114956123;Puerto Rico; +2018-11-22T07:20:49Z;Júlio;4553.978;114411205;Puerto Rico; +2018-11-22T06:39:31Z;Eduardo;237.9168;114286129;Puerto Rico; +2018-11-22T06:06:27Z;Eduardo;3003.444;116380405;Puerto Rico; +2018-11-22T05:55:10Z;Júlio;8705.308;116069250;Puerto Rico; +2018-11-22T05:40:59Z;Júlio;4429.101;115838470;Puerto Rico; +2018-11-22T05:13:38Z;Eduardo;4741.767;115828787;Puerto Rico; +2018-11-22T04:59:34Z;Júlio;2624.496;114361677;Puerto Rico; +2018-11-22T04:51:41Z;nathalia;6983.143;116120496;Puerto Rico; +2018-11-22T04:28:07Z;Nathália;6192.09;114296747;Puerto Rico; +2018-11-22T03:38:14Z;nathalia;1092.104;115656135;Puerto Rico; +2018-11-22T02:55:26Z;Júlio Cesar;3493.878;114813580;Puerto Rico; +2018-11-22T02:51:34Z;Ana;4342.333;115152844;Puerto Rico; +2018-11-22T02:44:20Z;Sandra;1634.086;114318520;Puerto Rico; +2018-11-22T02:20:28Z;Júlio Cesar;1017.397;116279196;Puerto Rico; +2018-11-22T02:04:46Z;Armando;8479.666;114942509;Puerto Rico; +2018-11-22T01:56:23Z;Armando;1075.604;114484860;Puerto Rico; +2018-11-22T01:50:05Z;nathalia;5529.137;114361754;Puerto Rico; +2018-11-22T01:44:39Z;Armando;1082.998;116078897;Puerto Rico; +2018-11-22T00:51:24Z;Eduardo;536.3887;116130257;Puerto Rico; +2018-11-22T00:21:47Z;nathalia;5359.972;116338401;Puerto Rico; +2018-11-21T23:01:11Z;nathalia;4736.58;115765866;Puerto Rico; +2018-11-21T22:42:38Z;Nathália;324.7897;116106391;Puerto Rico; +2018-11-21T22:35:26Z;nathalia;6072.474;114510919;Puerto Rico; +2018-11-21T22:27:58Z;Júlio Cesar;6207.976;114699661;Puerto Rico; +2018-11-21T22:23:35Z;Júlio Cesar;4342.596;114784581;Puerto Rico; +2018-11-21T21:47:05Z;Júlio;567.6978;114920236;Puerto Rico; +2018-11-21T21:37:10Z;Sandra;6920.554;115390760;Puerto Rico; +2018-11-21T21:25:25Z;Júlio;937.6624;116370390;Puerto Rico; +2018-11-21T21:24:54Z;Sandra;2589.736;114825263;Puerto Rico; +2018-11-21T21:21:15Z;Sandra;7390.534;116198280;Puerto Rico; +2018-11-21T21:02:48Z;Júlio;5875.415;114774744;Puerto Rico; +2018-11-21T20:25:19Z;Nathália;568.3611;114292061;Puerto Rico; +2018-11-21T19:58:12Z;Eduardo;7095.66;115057446;Puerto Rico; +2018-11-21T19:54:38Z;Nathália;806.7436;115100680;Puerto Rico; +2018-11-21T19:52:01Z;Júlio;407.5204;114281462;Puerto Rico; +2018-11-21T19:48:41Z;Ana;3000.582;114997273;Puerto Rico; +2018-11-21T18:29:02Z;Armando;4976.61;115634234;Puerto Rico; +2018-11-21T18:19:10Z;Eduardo;3911.078;114455759;Puerto Rico; +2018-11-21T17:53:28Z;Júlio;5051.798;115392733;Puerto Rico; +2018-11-21T17:44:58Z;Júlio;1100.246;115061937;Puerto Rico; +2018-11-21T17:20:04Z;Eduardo;8707.606;115325186;Puerto Rico; +2018-11-21T17:08:49Z;Armando;1089.629;115306384;Puerto Rico; +2018-11-21T16:59:03Z;Júlio;2109.514;114555309;Puerto Rico; +2018-11-21T16:41:36Z;Júlio Cesar;6970.604;114207873;Puerto Rico; +2018-11-21T16:36:00Z;Armando;7777.918;115816376;Puerto Rico; +2018-11-21T16:16:36Z;Nathália;1777.551;115818821;Puerto Rico; +2018-11-21T16:12:42Z;Nathália;673.7516;114562958;Puerto Rico; +2018-11-21T16:06:57Z;nathalia;14502.51;114517973;Puerto Rico; +2018-11-21T15:15:27Z;Nathália;5311.406;115362344;Puerto Rico; +2018-11-21T15:06:07Z;Armando;9164.625;115306508;Puerto Rico; +2018-11-21T14:59:53Z;Nathália;7684.657;114359565;Puerto Rico; +2018-11-21T14:26:15Z;Eduardo;7209.287;114411566;Puerto Rico; +2018-11-21T14:12:00Z;nathalia;314.0783;116144212;Puerto Rico; +2018-11-21T13:55:51Z;Armando;2587.354;116230376;Puerto Rico; +2018-11-21T13:48:27Z;nathalia;181.4383;115430921;Puerto Rico; +2018-11-21T13:19:35Z;Ana;7522.1;114712254;Puerto Rico; +2018-11-21T13:06:38Z;Sandra;12109.13;116252638;Puerto Rico; +2018-11-21T12:47:41Z;Eduardo;5215.75;115897788;Puerto Rico; +2018-11-21T11:50:09Z;Ana;425.1549;115793596;Puerto Rico; +2018-11-21T11:13:52Z;Eduardo;11888.11;114931112;Puerto Rico; +2018-11-21T10:39:47Z;Júlio;9422.813;115640077;Puerto Rico; +2018-11-21T10:38:32Z;Sandra;101.5824;115701065;Puerto Rico; +2018-11-21T10:26:02Z;Júlio;2049.755;115961433;Puerto Rico; +2018-11-21T10:09:18Z;Eduardo;1983.952;116298714;Puerto Rico; +2018-11-21T10:08:10Z;Armando;5314.323;115152733;Puerto Rico; +2018-11-21T09:59:28Z;Armando;3966.273;115632433;Puerto Rico; +2018-11-21T09:55:53Z;Nathália;7321.638;115011851;Puerto Rico; +2018-11-21T09:34:55Z;Eduardo;8693.38;116302620;Puerto Rico; +2018-11-21T09:08:38Z;Júlio Cesar;7722.192;115287167;Puerto Rico; +2018-11-21T09:08:12Z;nathalia;10008.38;116279549;Puerto Rico; +2018-11-21T08:21:05Z;nathalia;2369.008;115615557;Puerto Rico; +2018-11-21T08:02:39Z;Júlio Cesar;12366.56;114597874;Puerto Rico; +2018-11-21T07:58:49Z;Ana;222.1393;115397367;Puerto Rico; +2018-11-21T07:56:04Z;Sandra;11439.87;114522768;Puerto Rico; +2018-11-21T07:52:39Z;Armando;6458.416;114781875;Puerto Rico; +2018-11-21T07:48:06Z;Sandra;1928.982;114278809;Puerto Rico; +2018-11-21T07:01:33Z;Armando;1181.56;115372865;Puerto Rico; +2018-11-21T06:36:18Z;nathalia;181.5813;114723113;Puerto Rico; +2018-11-21T06:01:04Z;Armando;1993.757;115457391;Puerto Rico; +2018-11-21T05:51:25Z;Júlio Cesar;2198.246;115702401;Puerto Rico; +2018-11-21T05:42:37Z;Júlio Cesar;2746.712;116334570;Puerto Rico; +2018-11-21T05:41:16Z;Eduardo;6815.163;115668035;Puerto Rico; +2018-11-21T05:39:33Z;nathalia;4535.726;114835978;Puerto Rico; +2018-11-21T04:40:03Z;Ana;14315.67;116351786;Puerto Rico; +2018-11-21T04:38:15Z;Júlio;1959.847;114529124;Puerto Rico; +2018-11-21T04:29:24Z;Nathália;7699.03;114806831;Puerto Rico; +2018-11-21T04:29:08Z;Ana;7377.353;115260511;Puerto Rico; +2018-11-21T04:27:22Z;Armando;7348.215;116094504;Puerto Rico; +2018-11-21T04:17:28Z;Nathália;566.5495;115986449;Puerto Rico; +2018-11-21T04:07:16Z;Ana;1577.222;115924852;Puerto Rico; +2018-11-21T04:06:39Z;nathalia;6636.972;115814277;Puerto Rico; +2018-11-21T03:33:32Z;Eduardo;4870.63;114532629;Puerto Rico; +2018-11-21T03:30:22Z;Armando;7543.682;114763602;Puerto Rico; +2018-11-21T03:29:07Z;Ana;3619.216;115432522;Puerto Rico; +2018-11-21T03:27:26Z;Nathália;886.5762;114899821;Puerto Rico; +2018-11-21T03:17:29Z;Eduardo;4729.822;115958159;Puerto Rico; +2018-11-21T03:10:17Z;Eduardo;2739.448;116372863;Puerto Rico; +2018-11-21T03:10:10Z;Sandra;4433.433;115548076;Puerto Rico; +2018-11-21T03:07:38Z;Júlio;5291.149;116269761;Puerto Rico; +2018-11-21T02:37:15Z;Júlio Cesar;5243.358;115415741;Puerto Rico; +2018-11-21T02:02:16Z;Júlio Cesar;10537.59;114508524;Puerto Rico; +2018-11-21T01:58:12Z;Eduardo;5769.808;116241970;Puerto Rico; +2018-11-21T01:51:34Z;Armando;6519.922;114430713;Puerto Rico; +2018-11-21T01:34:56Z;Nathália;5177.811;114940463;Puerto Rico; +2018-11-21T01:17:51Z;Nathália;10195.89;115468688;Puerto Rico; +2018-11-21T00:44:39Z;nathalia;2375.816;114387839;Puerto Rico; +2018-11-21T00:08:47Z;Júlio;2585.673;114785958;Puerto Rico; +2018-11-21T00:02:49Z;nathalia;5969.755;116170152;Puerto Rico; +2018-11-21T00:02:41Z;Sandra;1264.451;114433355;Puerto Rico; +2018-11-20T23:51:31Z;Nathália;592.5738;115298969;Puerto Rico; +2018-11-20T23:43:47Z;Armando;1848.656;114855451;Puerto Rico; +2018-11-20T23:41:46Z;Nathália;2297.196;115938483;Puerto Rico; +2018-11-20T23:23:14Z;Júlio Cesar;516.1112;115576296;Puerto Rico; +2018-11-20T23:09:42Z;nathalia;10185.5;115556900;Puerto Rico; +2018-11-20T23:09:31Z;Júlio;400.962;116371481;Puerto Rico; +2018-11-20T22:25:47Z;Armando;3195.969;116210367;Puerto Rico; +2018-11-20T22:21:10Z;Eduardo;31.23753;114612078;Puerto Rico; +2018-11-20T22:16:26Z;nathalia;767.8141;114879050;Puerto Rico; +2018-11-20T22:04:50Z;Júlio;1223.533;115654723;Puerto Rico; +2018-11-20T21:43:48Z;Eduardo;7136.346;116324811;Puerto Rico; +2018-11-20T21:32:37Z;Sandra;8248.636;115840669;Puerto Rico; +2018-11-20T21:18:46Z;Júlio Cesar;181.0681;115936157;Puerto Rico; +2018-11-20T21:14:29Z;Júlio;507.5042;115837065;Puerto Rico; +2018-11-20T21:06:33Z;Armando;341.2936;116332481;Puerto Rico; +2018-11-20T19:51:02Z;Sandra;3292.561;115213433;Puerto Rico; +2018-11-20T19:46:16Z;Júlio;566.7272;115625144;Puerto Rico; +2018-11-20T19:31:50Z;Ana;1665.204;116147334;Puerto Rico; +2018-11-20T19:30:30Z;Júlio;2567.793;115804869;Puerto Rico; +2018-11-20T18:25:12Z;Júlio;4560.28;116341323;Puerto Rico; +2018-11-20T18:06:40Z;Júlio;1489.619;114953147;Puerto Rico; +2018-11-20T17:17:36Z;Armando;1831.32;114979400;Puerto Rico; +2018-11-20T17:05:03Z;Armando;2767.716;115958831;Puerto Rico; +2018-11-20T17:01:22Z;Sandra;5254.341;115840225;Puerto Rico; +2018-11-20T16:27:59Z;Sandra;10694.69;116094535;Puerto Rico; +2018-11-20T16:15:00Z;nathalia;5020.207;115074848;Puerto Rico; +2018-11-20T16:01:43Z;Júlio;3587.034;116088749;Puerto Rico; +2018-11-20T15:49:48Z;nathalia;3214.413;114920749;Puerto Rico; +2018-11-20T15:22:47Z;Ana;5686.406;114926442;Puerto Rico; +2018-11-20T15:08:53Z;Ana;5184.223;115117229;Puerto Rico; +2018-11-20T15:03:47Z;Armando;3886.342;115311209;Puerto Rico; +2018-11-20T14:49:57Z;Eduardo;4576.582;116099123;Puerto Rico; +2018-11-20T14:00:56Z;Sandra;2341.778;116368424;Puerto Rico; +2018-11-20T13:19:07Z;nathalia;7012.049;116260191;Puerto Rico; +2018-11-20T13:03:28Z;Eduardo;173.6879;114676440;Puerto Rico; +2018-11-20T12:58:49Z;Eduardo;1412.138;116299141;Puerto Rico; +2018-11-20T12:34:02Z;Júlio;1605.324;114872608;Puerto Rico; +2018-11-20T12:31:45Z;Eduardo;3850.588;115076148;Puerto Rico; +2018-11-20T12:25:20Z;Sandra;1844.965;115161311;Puerto Rico; +2018-11-20T12:21:18Z;Júlio;455.7142;114942314;Puerto Rico; +2018-11-20T12:21:03Z;Júlio Cesar;929.831;114513745;Puerto Rico; +2018-11-20T12:20:51Z;Ana;3120.022;115826823;Puerto Rico; +2018-11-20T12:18:31Z;Júlio;7285.112;114213721;Puerto Rico; +2018-11-20T12:10:09Z;nathalia;2416.009;114635458;Puerto Rico; +2018-11-20T11:47:28Z;Sandra;5038.948;115424459;Puerto Rico; +2018-11-20T11:41:11Z;Armando;9765.493;114474936;Puerto Rico; +2018-11-20T11:07:47Z;Ana;7907.514;114786427;Puerto Rico; +2018-11-20T11:02:39Z;Eduardo;136.5851;115334723;Puerto Rico; +2018-11-20T10:36:20Z;Armando;345.5893;115420786;Puerto Rico; +2018-11-20T10:16:17Z;Sandra;2411.125;114692152;Puerto Rico; +2018-11-20T10:15:40Z;Júlio Cesar;4151.502;114466302;Puerto Rico; +2018-11-20T09:59:05Z;Sandra;708.8842;114597414;Puerto Rico; +2018-11-20T09:57:43Z;Júlio;6691.787;115243611;Puerto Rico; +2018-11-20T09:53:08Z;nathalia;5367.197;115825083;Puerto Rico; +2018-11-20T09:21:12Z;Júlio;3375.03;115128718;Puerto Rico; +2018-11-20T08:52:12Z;Eduardo;8348.812;114499740;Puerto Rico; +2018-11-20T08:46:32Z;Sandra;2942.944;115091859;Puerto Rico; +2018-11-20T08:35:33Z;Eduardo;7170.634;114274166;Puerto Rico; +2018-11-20T08:17:45Z;Ana;8649.189;115984422;Puerto Rico; +2018-11-20T08:04:57Z;nathalia;5574.759;115824055;Puerto Rico; +2018-11-20T08:04:19Z;Eduardo;2355.065;116254516;Puerto Rico; +2018-11-20T07:55:48Z;Armando;1604.502;115703090;Puerto Rico; +2018-11-20T07:36:28Z;Sandra;1543.109;115057976;Puerto Rico; +2018-11-20T07:28:49Z;Sandra;4101.948;115297382;Puerto Rico; +2018-11-20T07:27:18Z;Armando;1505.411;114212867;Puerto Rico; +2018-11-20T07:03:11Z;Júlio;696.3097;115090317;Puerto Rico; +2018-11-20T06:41:11Z;Armando;1878.691;116332695;Puerto Rico; +2018-11-20T06:28:38Z;Júlio;11407.29;114244985;Puerto Rico; +2018-11-20T06:24:47Z;Nathália;1192.947;115423232;Puerto Rico; +2018-11-20T06:13:28Z;Armando;1929.689;114486175;Puerto Rico; +2018-11-20T05:24:23Z;Ana;3928.719;115267296;Puerto Rico; +2018-11-20T05:19:42Z;Armando;517.5112;114835687;Puerto Rico; +2018-11-20T04:51:58Z;nathalia;4847.685;114350772;Puerto Rico; +2018-11-20T04:38:24Z;Júlio;668.5002;114803257;Puerto Rico; +2018-11-20T04:29:44Z;Sandra;8131.251;114219071;Puerto Rico; +2018-11-20T04:02:16Z;nathalia;3278.976;115551930;Puerto Rico; +2018-11-20T04:00:58Z;nathalia;5124.61;116123522;Puerto Rico; +2018-11-20T03:38:49Z;Armando;3792.615;114272563;Puerto Rico; +2018-11-20T03:36:25Z;Júlio;5651.881;115390033;Puerto Rico; +2018-11-20T03:11:32Z;Júlio;10698.42;114951755;Puerto Rico; +2018-11-20T03:10:48Z;Sandra;4406.448;114746130;Puerto Rico; +2018-11-20T02:57:05Z;Sandra;1578.293;114941391;Puerto Rico; +2018-11-20T02:49:28Z;Nathália;3019.696;116014235;Puerto Rico; +2018-11-20T02:48:55Z;Armando;8921.798;116082065;Puerto Rico; +2018-11-20T02:48:54Z;Júlio Cesar;5045.272;116385311;Puerto Rico; +2018-11-20T02:37:07Z;Ana;4927.875;114431561;Puerto Rico; +2018-11-20T02:34:51Z;Ana;604.9051;116193537;Puerto Rico; +2018-11-20T02:30:22Z;Nathália;1927.125;115552892;Puerto Rico; +2018-11-20T02:04:29Z;Armando;3150.246;115047820;Puerto Rico; +2018-11-20T02:02:22Z;Júlio Cesar;7200.423;115306660;Puerto Rico; +2018-11-20T01:47:43Z;Júlio Cesar;2703.416;114659245;Puerto Rico; +2018-11-20T01:24:54Z;Eduardo;8267.984;115092225;Puerto Rico; +2018-11-20T00:41:11Z;Armando;1156.153;115970129;Puerto Rico; +2018-11-20T00:31:14Z;Júlio Cesar;1807.518;114521058;Puerto Rico; +2018-11-19T23:57:42Z;nathalia;5164.288;116240351;Puerto Rico; +2018-11-19T23:40:51Z;Ana;5495.525;114865231;Puerto Rico; +2018-11-19T23:30:49Z;Sandra;3946.427;115823583;Puerto Rico; +2018-11-19T23:30:21Z;Nathália;5229.108;116185916;Puerto Rico; +2018-11-19T23:12:03Z;Júlio;2421.768;115752422;Puerto Rico; +2018-11-19T23:05:20Z;Júlio;2199.288;115807635;Puerto Rico; +2018-11-19T23:04:04Z;Armando;3144.763;115722104;Puerto Rico; +2018-11-19T22:58:32Z;Eduardo;8834.171;115132841;Puerto Rico; +2018-11-19T22:41:06Z;Júlio;7793.441;116248738;Puerto Rico; +2018-11-19T22:40:16Z;Armando;4616.118;116045411;Puerto Rico; +2018-11-19T22:24:11Z;Júlio;6251.849;114580311;Puerto Rico; +2018-11-19T22:23:06Z;Ana;248.2352;114345425;Puerto Rico; +2018-11-19T20:53:58Z;Eduardo;4408.637;115261787;Puerto Rico; +2018-11-19T20:20:25Z;Nathália;1489.693;115662839;Puerto Rico; +2018-11-19T20:01:38Z;Júlio Cesar;9662.561;115981841;Puerto Rico; +2018-11-19T19:43:58Z;Nathália;4361.077;114391161;Puerto Rico; +2018-11-19T19:22:31Z;Júlio Cesar;4271.762;116133340;Puerto Rico; +2018-11-19T18:54:45Z;Júlio Cesar;11082.7;116099468;Puerto Rico; +2018-11-19T18:46:27Z;nathalia;4273.652;115157302;Puerto Rico; +2018-11-19T18:39:45Z;Nathália;1783.911;114222693;Puerto Rico; +2018-11-19T18:29:06Z;Sandra;865.9653;115157909;Puerto Rico; +2018-11-19T18:27:36Z;Sandra;138.714;114240028;Puerto Rico; +2018-11-19T18:25:51Z;nathalia;4595.102;114596942;Puerto Rico; +2018-11-19T18:23:53Z;nathalia;4502.519;115565068;Puerto Rico; +2018-11-19T18:03:59Z;Nathália;1991.605;116124055;Puerto Rico; +2018-11-19T17:05:45Z;Nathália;59.44706;116020610;Puerto Rico; +2018-11-19T16:36:52Z;Júlio;2820.391;114438985;Puerto Rico; +2018-11-19T16:31:31Z;Júlio Cesar;2022.553;116012481;Puerto Rico; +2018-11-19T16:11:29Z;Armando;5625.119;114699641;Puerto Rico; +2018-11-19T16:08:01Z;Sandra;4302.729;114400553;Puerto Rico; +2018-11-19T16:04:19Z;nathalia;417.9058;115976206;Puerto Rico; +2018-11-19T15:51:44Z;Ana;1654.517;114308888;Puerto Rico; +2018-11-19T15:48:33Z;nathalia;73.48391;114951640;Puerto Rico; +2018-11-19T15:40:59Z;Júlio Cesar;644.8509;115765815;Puerto Rico; +2018-11-19T14:43:53Z;Sandra;3027.774;114303085;Puerto Rico; +2018-11-19T14:14:49Z;Ana;587.6314;115046660;Puerto Rico; +2018-11-19T14:11:39Z;Júlio;8108.149;115996165;Puerto Rico; +2018-11-19T13:55:53Z;Armando;426.356;116191868;Puerto Rico; +2018-11-19T13:05:35Z;Júlio;4485.311;114941454;Puerto Rico; +2018-11-19T12:53:03Z;nathalia;3159.131;114373056;Puerto Rico; +2018-11-19T12:50:34Z;Júlio Cesar;2771.628;115395722;Puerto Rico; +2018-11-19T12:44:28Z;Eduardo;6865.079;114204388;Puerto Rico; +2018-11-19T12:41:08Z;Júlio Cesar;6841.774;115032352;Puerto Rico; +2018-11-19T11:59:34Z;Ana;2249.994;114971127;Puerto Rico; +2018-11-19T11:48:54Z;Eduardo;3468.983;115033938;Puerto Rico; +2018-11-19T11:34:57Z;Sandra;2610.639;116159212;Puerto Rico; +2018-11-19T11:34:55Z;Júlio;4944.302;115774596;Puerto Rico; +2018-11-19T11:27:27Z;Sandra;2350.302;115113069;Puerto Rico; +2018-11-19T11:10:32Z;Nathália;1846.15;114665322;Puerto Rico; +2018-11-19T10:39:36Z;Armando;449.9051;114529447;Puerto Rico; +2018-11-19T10:22:16Z;Sandra;1167.617;116225573;Puerto Rico; +2018-11-19T09:53:54Z;Nathália;1395.64;115026932;Puerto Rico; +2018-11-19T09:48:51Z;Júlio Cesar;1151.381;115778607;Puerto Rico; +2018-11-19T09:44:12Z;Sandra;566.5105;114932939;Puerto Rico; +2018-11-19T09:30:23Z;Júlio;1973.738;114653926;Puerto Rico; +2018-11-19T09:10:15Z;Nathália;6168.102;114602431;Puerto Rico; +2018-11-19T09:04:44Z;Ana;607.8631;114577496;Puerto Rico; +2018-11-19T09:03:47Z;Nathália;11427.93;114665558;Puerto Rico; +2018-11-19T08:49:15Z;Júlio;839.3334;115640091;Puerto Rico; +2018-11-19T08:39:55Z;Armando;623.9475;116386604;Puerto Rico; +2018-11-19T08:23:47Z;Sandra;1960.799;114918381;Puerto Rico; +2018-11-19T07:36:28Z;Sandra;7327.973;115417130;Puerto Rico; +2018-11-19T07:35:45Z;nathalia;376.6307;115405627;Puerto Rico; +2018-11-19T07:29:08Z;nathalia;3884.89;115841860;Puerto Rico; +2018-11-19T07:23:04Z;Ana;1226.619;116123059;Puerto Rico; +2018-11-19T06:59:38Z;Sandra;5968.673;116000801;Puerto Rico; +2018-11-19T06:35:15Z;nathalia;754.7147;114654319;Puerto Rico; +2018-11-19T06:22:18Z;Nathália;15287.07;115206088;Puerto Rico; +2018-11-19T05:48:56Z;Nathália;1061.14;116032650;Puerto Rico; +2018-11-19T05:24:47Z;Eduardo;1660.399;114831206;Puerto Rico; +2018-11-19T04:52:29Z;nathalia;10933.15;115626668;Puerto Rico; +2018-11-19T04:42:54Z;nathalia;4530.104;114434521;Puerto Rico; +2018-11-19T04:36:16Z;Júlio;6973.164;114637875;Puerto Rico; +2018-11-19T04:32:57Z;Ana;2758.072;115916683;Puerto Rico; +2018-11-19T03:57:24Z;Ana;3923.746;115009157;Puerto Rico; +2018-11-19T03:34:44Z;Nathália;190.1799;114389931;Puerto Rico; +2018-11-19T03:05:10Z;Nathália;8836.396;114557309;Puerto Rico; +2018-11-19T02:43:21Z;Eduardo;4486.937;115859623;Puerto Rico; +2018-11-19T02:34:23Z;Sandra;5755.314;115739811;Puerto Rico; +2018-11-19T02:23:38Z;Eduardo;5908.107;116326457;Puerto Rico; +2018-11-19T02:14:55Z;nathalia;3143.287;115034571;Puerto Rico; +2018-11-19T01:22:19Z;Eduardo;2334.697;116336889;Puerto Rico; +2018-11-19T01:19:21Z;Nathália;1548.959;115486352;Puerto Rico; +2018-11-19T01:16:34Z;Armando;292.1759;115774255;Puerto Rico; +2018-11-19T01:14:07Z;Ana;4520.429;114532719;Puerto Rico; +2018-11-19T00:35:40Z;Armando;2039.497;116258989;Puerto Rico; +2018-11-19T00:28:03Z;Sandra;5591.923;116123871;Puerto Rico; +2018-11-19T00:21:23Z;Sandra;938.3505;116083883;Puerto Rico; +2018-11-19T00:17:13Z;Júlio;3987.795;114226344;Puerto Rico; +2018-11-19T00:05:06Z;Ana;6722.933;116366828;Puerto Rico; +2018-11-19T00:00:06Z;Eduardo;5002.513;116160352;Puerto Rico; +2018-11-18T23:19:58Z;nathalia;1177.37;115345918;Puerto Rico; +2018-11-18T23:05:56Z;Sandra;1583.616;115295964;Puerto Rico; +2018-11-18T22:52:16Z;Júlio Cesar;2852.939;115427318;Puerto Rico; +2018-11-18T22:50:07Z;nathalia;933.861;116170651;Puerto Rico; +2018-11-18T22:19:25Z;Sandra;11790.47;114746686;Puerto Rico; +2018-11-18T21:50:38Z;Ana;2518.763;115155830;Puerto Rico; +2018-11-18T21:24:42Z;Eduardo;750.9283;115599566;Puerto Rico; +2018-11-18T21:21:54Z;Júlio Cesar;430.7807;115083106;Puerto Rico; +2018-11-18T21:18:15Z;nathalia;8955.834;116097203;Puerto Rico; +2018-11-18T20:42:55Z;nathalia;1910.383;114799668;Puerto Rico; +2018-11-18T20:29:46Z;Ana;3602.141;114477385;Puerto Rico; +2018-11-18T19:39:39Z;Armando;6228.804;114718118;Puerto Rico; +2018-11-18T19:33:38Z;Ana;2197.153;116334535;Puerto Rico; +2018-11-18T19:22:42Z;Armando;878.9378;114547698;Puerto Rico; +2018-11-18T19:18:53Z;nathalia;9126.382;116361797;Puerto Rico; +2018-11-18T18:35:42Z;Ana;4327.235;115124977;Puerto Rico; +2018-11-18T18:27:53Z;Nathália;6482.169;114226119;Puerto Rico; +2018-11-18T18:24:22Z;Nathália;5049.951;115326059;Puerto Rico; +2018-11-18T18:21:35Z;Nathália;3949.514;114438950;Puerto Rico; +2018-11-18T18:04:43Z;Eduardo;4771.462;115516627;Puerto Rico; +2018-11-18T16:48:19Z;Júlio;2721.708;115692028;Puerto Rico; +2018-11-18T16:37:14Z;Eduardo;82.77831;114474931;Puerto Rico; +2018-11-18T16:31:35Z;nathalia;6264.637;116034921;Puerto Rico; +2018-11-18T16:14:15Z;Ana;2440.447;115567609;Puerto Rico; +2018-11-18T16:05:17Z;Sandra;152.6201;114389754;Puerto Rico; +2018-11-18T16:01:27Z;Ana;263.2001;115221914;Puerto Rico; +2018-11-18T15:56:00Z;Júlio;4965.905;114317198;Puerto Rico; +2018-11-18T15:47:01Z;Nathália;1522.712;115343103;Puerto Rico; +2018-11-18T15:44:47Z;Sandra;2046.76;116092487;Puerto Rico; +2018-11-18T15:42:23Z;Sandra;3268.696;114958731;Puerto Rico; +2018-11-18T15:33:35Z;Armando;668.7407;114849749;Puerto Rico; +2018-11-18T15:22:08Z;Armando;12502.21;115863645;Puerto Rico; +2018-11-18T15:02:05Z;Armando;11050.95;115480675;Puerto Rico; +2018-11-18T14:54:45Z;Sandra;6391.743;114631600;Puerto Rico; +2018-11-18T14:35:39Z;Armando;4617.215;116186320;Puerto Rico; +2018-11-18T14:19:36Z;Júlio;759.4187;114726081;Puerto Rico; +2018-11-18T13:18:00Z;Armando;2101.502;115372564;Puerto Rico; +2018-11-18T12:59:28Z;Armando;1648.936;115006968;Puerto Rico; +2018-11-18T12:59:19Z;Nathália;3601.308;114724901;Puerto Rico; +2018-11-18T12:50:07Z;Eduardo;441.3173;115389406;Puerto Rico; +2018-11-18T12:48:09Z;nathalia;3159.88;116088935;Puerto Rico; +2018-11-18T11:17:04Z;Júlio Cesar;3052.821;114368543;Puerto Rico; +2018-11-18T10:50:33Z;Armando;2759.306;114737897;Puerto Rico; +2018-11-18T10:32:36Z;Armando;4776.6;114475305;Puerto Rico; +2018-11-18T10:30:39Z;Armando;2784.65;114863061;Puerto Rico; +2018-11-18T10:13:57Z;Nathália;9393.682;116223121;Puerto Rico; +2018-11-18T09:20:26Z;Eduardo;165.1923;114674361;Puerto Rico; +2018-11-18T09:16:44Z;Nathália;3268.259;114359785;Puerto Rico; +2018-11-18T09:06:51Z;Júlio;5084.735;115152154;Puerto Rico; +2018-11-18T08:32:28Z;Armando;2182.23;114504372;Puerto Rico; +2018-11-18T08:30:59Z;Júlio Cesar;5608.164;115963110;Puerto Rico; +2018-11-18T08:29:07Z;Júlio;1973.44;114976845;Puerto Rico; +2018-11-18T08:09:34Z;Eduardo;1082.423;115998413;Puerto Rico; +2018-11-18T07:38:42Z;Júlio Cesar;51.05836;116056105;Puerto Rico; +2018-11-18T07:32:36Z;Nathália;5100.815;114539544;Puerto Rico; +2018-11-18T07:08:33Z;Sandra;4491.629;114638692;Puerto Rico; +2018-11-18T06:29:06Z;Júlio;2355.472;114432895;Puerto Rico; +2018-11-18T06:13:25Z;Nathália;780.4093;114650817;Puerto Rico; +2018-11-18T06:02:24Z;nathalia;2252.568;114971919;Puerto Rico; +2018-11-18T05:59:03Z;Nathália;434.4204;115717620;Puerto Rico; +2018-11-18T05:57:37Z;Júlio;3545.433;116241420;Puerto Rico; +2018-11-18T05:45:41Z;Sandra;4164.02;115839499;Puerto Rico; +2018-11-18T05:45:34Z;Sandra;6316.314;114824262;Puerto Rico; +2018-11-18T05:27:42Z;nathalia;1097.897;115455043;Puerto Rico; +2018-11-18T05:08:15Z;Nathália;5610.608;115991143;Puerto Rico; +2018-11-18T04:47:44Z;Ana;1320.561;114248239;Puerto Rico; +2018-11-18T04:09:56Z;Eduardo;213.7296;116138135;Puerto Rico; +2018-11-18T03:54:00Z;Eduardo;937.3776;115968691;Puerto Rico; +2018-11-18T03:41:15Z;Eduardo;2038.209;115320550;Puerto Rico; +2018-11-18T03:12:54Z;Eduardo;6353.456;114904755;Puerto Rico; +2018-11-18T02:37:32Z;Eduardo;3447.107;115759431;Puerto Rico; +2018-11-18T02:31:19Z;Sandra;2205.663;114453895;Puerto Rico; +2018-11-18T02:25:27Z;Nathália;999.2209;115220875;Puerto Rico; +2018-11-18T02:20:07Z;Armando;7177.382;114692821;Puerto Rico; +2018-11-18T02:19:35Z;nathalia;690.6854;115857306;Puerto Rico; +2018-11-18T02:06:24Z;nathalia;1370.356;116393218;Puerto Rico; +2018-11-18T01:45:21Z;Ana;3745.667;115894472;Puerto Rico; +2018-11-18T01:39:53Z;Ana;2182.043;115533284;Puerto Rico; +2018-11-18T01:21:44Z;Sandra;325.9014;116060911;Puerto Rico; +2018-11-18T01:06:10Z;Eduardo;3020.773;115074488;Puerto Rico; +2018-11-18T00:51:24Z;Sandra;3553.043;114903933;Puerto Rico; +2018-11-18T00:14:23Z;Júlio Cesar;10808.18;116348466;Puerto Rico; +2018-11-18T00:04:59Z;nathalia;2927.523;116085466;Puerto Rico; +2018-11-18T00:02:26Z;Ana;172.2231;116263278;Puerto Rico; +2018-11-17T23:57:53Z;Júlio;5482.761;115845517;Puerto Rico; +2018-11-17T23:39:06Z;Ana;104.5279;114416099;Puerto Rico; +2018-11-17T23:32:56Z;Ana;2391.948;115162370;Puerto Rico; +2018-11-17T23:32:33Z;nathalia;1405.028;114791689;Puerto Rico; +2018-11-17T22:33:14Z;Sandra;837.6771;114955063;Puerto Rico; +2018-11-17T21:53:14Z;nathalia;1288.752;116041880;Puerto Rico; +2018-11-17T21:36:38Z;Nathália;41.76662;115850827;Puerto Rico; +2018-11-17T21:22:30Z;Ana;6226.792;115717187;Puerto Rico; +2018-11-17T21:18:31Z;Ana;10826.46;114857893;Puerto Rico; +2018-11-17T19:55:09Z;Ana;2697.942;114850849;Puerto Rico; +2018-11-17T19:50:48Z;Armando;9358.784;116119165;Puerto Rico; +2018-11-17T19:48:07Z;Júlio Cesar;220.8572;116331055;Puerto Rico; +2018-11-17T19:43:37Z;Júlio Cesar;5834.225;115254392;Puerto Rico; +2018-11-17T19:41:25Z;nathalia;2923.397;114303979;Puerto Rico; +2018-11-17T19:38:31Z;Ana;9210.165;115212613;Puerto Rico; +2018-11-17T19:02:20Z;Eduardo;1478.447;114287537;Puerto Rico; +2018-11-17T18:18:52Z;Armando;2208.916;116067465;Puerto Rico; +2018-11-17T18:15:01Z;Júlio Cesar;10344.49;115115036;Puerto Rico; +2018-11-17T18:09:56Z;Armando;6480.196;115116798;Puerto Rico; +2018-11-17T17:59:26Z;Ana;1677.161;115286292;Puerto Rico; +2018-11-17T17:51:04Z;Nathália;3326.672;115783444;Puerto Rico; +2018-11-17T17:49:58Z;Sandra;10631.34;115852438;Puerto Rico; +2018-11-17T17:46:55Z;Armando;5866.067;114674204;Puerto Rico; +2018-11-17T17:43:29Z;Eduardo;399.0449;115281813;Puerto Rico; +2018-11-17T17:34:35Z;Eduardo;5348.468;114463776;Puerto Rico; +2018-11-17T16:56:54Z;Armando;394.9313;114857684;Puerto Rico; +2018-11-17T16:40:59Z;Ana;6535.821;114735775;Puerto Rico; +2018-11-17T16:28:08Z;Eduardo;230.5457;114961515;Puerto Rico; +2018-11-17T16:02:04Z;Nathália;6544.281;114945173;Puerto Rico; +2018-11-17T15:55:57Z;Júlio Cesar;9301.601;115529578;Puerto Rico; +2018-11-17T15:52:41Z;Armando;3309.283;116361145;Puerto Rico; +2018-11-17T15:39:02Z;Júlio Cesar;1071.479;116056690;Puerto Rico; +2018-11-17T15:26:35Z;nathalia;6534.788;114796097;Puerto Rico; +2018-11-17T15:24:41Z;nathalia;1466.774;114419550;Puerto Rico; +2018-11-17T15:20:44Z;Júlio Cesar;3284.285;114875889;Puerto Rico; +2018-11-17T15:06:34Z;Júlio;279.396;115344463;Puerto Rico; +2018-11-17T15:02:54Z;Sandra;2708.098;115218288;Puerto Rico; +2018-11-17T14:58:00Z;Sandra;1701.527;116097097;Puerto Rico; +2018-11-17T14:43:24Z;nathalia;922.7401;115424377;Puerto Rico; +2018-11-17T14:32:57Z;Júlio Cesar;3175.333;114690865;Puerto Rico; +2018-11-17T14:27:58Z;Nathália;3534.703;115041677;Puerto Rico; +2018-11-17T14:24:14Z;Ana;3875.435;116120309;Puerto Rico; +2018-11-17T14:12:01Z;nathalia;1792.5;114284633;Puerto Rico; +2018-11-17T13:52:30Z;Eduardo;654.388;114290458;Puerto Rico; +2018-11-17T13:26:41Z;Armando;2881.312;115918625;Puerto Rico; +2018-11-17T12:46:51Z;Júlio;4746.126;115449956;Puerto Rico; +2018-11-17T12:43:24Z;Eduardo;2497.905;115937911;Puerto Rico; +2018-11-17T12:01:27Z;nathalia;944.0225;115666533;Puerto Rico; +2018-11-17T11:39:17Z;Eduardo;4355.247;115935848;Puerto Rico; +2018-11-17T11:38:43Z;nathalia;6193.383;115600040;Puerto Rico; +2018-11-17T11:10:48Z;Armando;4901.201;116109412;Puerto Rico; +2018-11-17T11:09:12Z;Armando;545.4526;115463411;Puerto Rico; +2018-11-17T10:54:32Z;Sandra;1013.175;115310953;Puerto Rico; +2018-11-17T10:20:27Z;Júlio Cesar;1484.24;114964200;Puerto Rico; +2018-11-17T10:17:31Z;Sandra;3841.974;116029734;Puerto Rico; +2018-11-17T09:26:11Z;Eduardo;8427.931;116190959;Puerto Rico; +2018-11-17T09:19:24Z;nathalia;1447.415;115526224;Puerto Rico; +2018-11-17T09:15:07Z;nathalia;1839.288;115478309;Puerto Rico; +2018-11-17T08:49:03Z;Armando;2698;114933425;Puerto Rico; +2018-11-17T08:32:00Z;nathalia;843.6544;115865738;Puerto Rico; +2018-11-17T08:29:56Z;Armando;6465.604;115019326;Puerto Rico; +2018-11-17T08:26:24Z;Ana;2179.135;116152482;Puerto Rico; +2018-11-17T08:06:29Z;Júlio Cesar;2036.458;114527878;Puerto Rico; +2018-11-17T07:46:12Z;nathalia;6610.828;114911212;Puerto Rico; +2018-11-17T07:40:34Z;Nathália;1081.935;114825795;Puerto Rico; +2018-11-17T07:10:28Z;Eduardo;2997.349;115142881;Puerto Rico; +2018-11-17T07:04:09Z;Sandra;7823.706;114312228;Puerto Rico; +2018-11-17T06:52:26Z;Nathália;299.8916;115118708;Puerto Rico; +2018-11-17T06:20:40Z;Júlio;3275.584;114783531;Puerto Rico; +2018-11-17T05:59:09Z;Sandra;2082.709;114501037;Puerto Rico; +2018-11-17T05:46:50Z;Eduardo;688.5487;115566997;Puerto Rico; +2018-11-17T05:34:20Z;nathalia;1056.233;114988502;Puerto Rico; +2018-11-17T05:27:19Z;Sandra;118.6767;114540736;Puerto Rico; +2018-11-17T05:09:12Z;Sandra;7814.23;115831421;Puerto Rico; +2018-11-17T05:03:21Z;Ana;10075.96;115107138;Puerto Rico; +2018-11-17T04:33:39Z;Eduardo;4953.525;114865013;Puerto Rico; +2018-11-17T04:10:40Z;Nathália;3505.862;114249465;Puerto Rico; +2018-11-17T03:58:26Z;nathalia;5379.346;115653148;Puerto Rico; +2018-11-17T03:28:13Z;Eduardo;401.262;115963407;Puerto Rico; +2018-11-17T03:27:34Z;Nathália;8646.146;114898436;Puerto Rico; +2018-11-17T03:18:47Z;Eduardo;1440.165;114243491;Puerto Rico; +2018-11-17T02:59:09Z;Júlio;1574.934;114778929;Puerto Rico; +2018-11-17T02:51:37Z;Nathália;8156.729;114812272;Puerto Rico; +2018-11-17T02:48:40Z;Ana;4298.446;115089041;Puerto Rico; +2018-11-17T02:41:40Z;Júlio Cesar;1061.691;114735584;Puerto Rico; +2018-11-17T02:38:30Z;Ana;496.9552;115827987;Puerto Rico; +2018-11-17T02:33:21Z;Nathália;9676.305;116007179;Puerto Rico; +2018-11-17T02:25:42Z;nathalia;6328.631;114469524;Puerto Rico; +2018-11-17T02:11:27Z;Nathália;96.05259;115577078;Puerto Rico; +2018-11-17T01:57:45Z;Armando;7679.234;116355813;Puerto Rico; +2018-11-17T01:54:05Z;Júlio;69.33424;116181316;Puerto Rico; +2018-11-17T01:20:05Z;Armando;1049.814;115838288;Puerto Rico; +2018-11-17T00:40:49Z;nathalia;4453.018;114585534;Puerto Rico; +2018-11-17T00:35:13Z;Júlio;3114.888;114410421;Puerto Rico; +2018-11-17T00:28:07Z;Júlio;5090.847;115576348;Puerto Rico; +2018-11-16T23:44:12Z;Sandra;186.9474;114355420;Puerto Rico; +2018-11-16T23:30:42Z;Armando;1124.714;114343230;Puerto Rico; +2018-11-16T23:28:44Z;Nathália;2443.701;115024345;Puerto Rico; +2018-11-16T23:01:06Z;Sandra;10216.82;114267194;Puerto Rico; +2018-11-16T22:58:10Z;Sandra;4702.509;114591540;Puerto Rico; +2018-11-16T22:57:04Z;Júlio;2695.32;115974074;Puerto Rico; +2018-11-16T22:35:52Z;Sandra;11128.49;115214494;Puerto Rico; +2018-11-16T22:14:31Z;nathalia;678.0496;114783552;Puerto Rico; +2018-11-16T22:14:21Z;Júlio Cesar;1503.485;116312785;Puerto Rico; +2018-11-16T22:12:32Z;Armando;6247.705;114285268;Puerto Rico; +2018-11-16T21:29:35Z;Eduardo;6314.746;116043226;Puerto Rico; +2018-11-16T21:16:36Z;Armando;6748.043;116024963;Puerto Rico; +2018-11-16T20:54:49Z;Ana;4648.724;115537728;Puerto Rico; +2018-11-16T20:23:56Z;Nathália;1846.512;114911172;Puerto Rico; +2018-11-16T20:20:17Z;Eduardo;72.23943;114691632;Puerto Rico; +2018-11-16T20:19:55Z;Armando;6004.142;115639644;Puerto Rico; +2018-11-16T19:47:26Z;nathalia;1676.252;114535270;Puerto Rico; +2018-11-16T19:40:08Z;nathalia;166.8464;114517652;Puerto Rico; +2018-11-16T19:16:03Z;Armando;1814.743;114414649;Puerto Rico; +2018-11-16T19:11:36Z;Nathália;12328.57;115553735;Puerto Rico; +2018-11-16T19:08:42Z;nathalia;681.3776;116377851;Puerto Rico; +2018-11-16T19:00:59Z;Armando;1962.346;114541417;Puerto Rico; +2018-11-16T18:56:55Z;Armando;4277.321;114215830;Puerto Rico; +2018-11-16T18:08:42Z;Sandra;192.9893;116354097;Puerto Rico; +2018-11-16T18:01:21Z;Ana;652.3723;115395149;Puerto Rico; +2018-11-16T17:58:46Z;Eduardo;1421.36;114404328;Puerto Rico; +2018-11-16T17:58:37Z;Eduardo;5783.407;115835478;Puerto Rico; +2018-11-16T17:57:43Z;Sandra;2552.094;115584294;Puerto Rico; +2018-11-16T17:47:14Z;Sandra;11265.51;115878631;Puerto Rico; +2018-11-16T17:38:00Z;Júlio;296.5037;115928575;Puerto Rico; +2018-11-16T17:37:56Z;Sandra;1843.38;115826737;Puerto Rico; +2018-11-16T17:31:21Z;Sandra;3449.628;115434199;Puerto Rico; +2018-11-16T17:26:36Z;nathalia;1556.729;115076467;Puerto Rico; +2018-11-16T16:45:43Z;nathalia;15323.32;114545792;Puerto Rico; +2018-11-16T16:18:58Z;Júlio;2784.409;116291988;Puerto Rico; +2018-11-16T16:15:10Z;Eduardo;215.4136;115466321;Puerto Rico; +2018-11-16T15:44:28Z;Júlio Cesar;8865.205;114830850;Puerto Rico; +2018-11-16T15:33:19Z;Júlio Cesar;8469.685;114420310;Puerto Rico; +2018-11-16T15:10:43Z;Júlio;158.7146;115538454;Puerto Rico; +2018-11-16T14:56:52Z;Armando;2733.673;115115875;Puerto Rico; +2018-11-16T14:52:01Z;Eduardo;5778.559;114545979;Puerto Rico; +2018-11-16T14:41:36Z;Júlio;8907.153;114558378;Puerto Rico; +2018-11-16T14:32:40Z;Ana;4052.46;115203586;Puerto Rico; +2018-11-16T13:37:50Z;Sandra;467.9411;115274617;Puerto Rico; +2018-11-16T13:30:46Z;Armando;1390.548;114645614;Puerto Rico; +2018-11-16T12:58:26Z;Sandra;7628.774;115020941;Puerto Rico; +2018-11-16T12:58:07Z;Júlio;9502.627;116369746;Puerto Rico; +2018-11-16T12:50:23Z;Nathália;1992.62;115380360;Puerto Rico; +2018-11-16T12:39:03Z;nathalia;1554.567;115531646;Puerto Rico; +2018-11-16T12:31:19Z;Eduardo;1292.317;115002499;Puerto Rico; +2018-11-16T12:21:10Z;Eduardo;6131.26;115738421;Puerto Rico; +2018-11-16T12:08:15Z;Armando;931.6561;114880156;Puerto Rico; +2018-11-16T12:04:32Z;nathalia;1556.193;115478722;Puerto Rico; +2018-11-16T11:44:52Z;Júlio;6094.663;115327842;Puerto Rico; +2018-11-16T11:32:28Z;Júlio;1809.477;116345203;Puerto Rico; +2018-11-16T11:29:19Z;Armando;6891.518;115241587;Puerto Rico; +2018-11-16T11:25:30Z;Armando;1888.365;115774313;Puerto Rico; +2018-11-16T11:23:23Z;Júlio;432.2573;115714916;Puerto Rico; +2018-11-16T11:16:34Z;Nathália;3710.259;115430288;Puerto Rico; +2018-11-16T11:14:37Z;Sandra;5602.816;116328428;Puerto Rico; +2018-11-16T11:08:55Z;Nathália;1813.977;114231559;Puerto Rico; +2018-11-16T11:02:45Z;Júlio Cesar;588.5601;114934170;Puerto Rico; +2018-11-16T10:58:49Z;Armando;5202.994;114459894;Puerto Rico; +2018-11-16T10:39:48Z;Júlio Cesar;2123.501;116051866;Puerto Rico; +2018-11-16T10:36:11Z;Sandra;2844.834;115671014;Puerto Rico; +2018-11-16T09:53:44Z;nathalia;2904.305;114673242;Puerto Rico; +2018-11-16T09:53:05Z;Ana;434.3813;116223785;Puerto Rico; +2018-11-16T09:50:36Z;Júlio;594.0169;114542956;Puerto Rico; +2018-11-16T09:17:51Z;Ana;5805.476;116278715;Puerto Rico; +2018-11-16T09:14:18Z;nathalia;2554.383;114613477;Puerto Rico; +2018-11-16T08:46:03Z;Eduardo;6847.451;114343727;Puerto Rico; +2018-11-16T08:38:47Z;Eduardo;3740.93;116353807;Puerto Rico; +2018-11-16T08:11:42Z;Ana;521.4399;114652508;Puerto Rico; +2018-11-16T07:41:27Z;Nathália;1569.793;114735567;Puerto Rico; +2018-11-16T07:21:36Z;Nathália;7811.334;114237634;Puerto Rico; +2018-11-16T06:49:18Z;nathalia;1795.188;114354312;Puerto Rico; +2018-11-16T06:42:57Z;Júlio;938.465;116070985;Puerto Rico; +2018-11-16T06:03:42Z;Júlio Cesar;2776.521;114807936;Puerto Rico; +2018-11-16T05:46:17Z;Júlio;826.8303;115095009;Puerto Rico; +2018-11-16T05:34:02Z;Ana;4615.653;114724684;Puerto Rico; +2018-11-16T05:21:10Z;Ana;10903.46;115779387;Puerto Rico; +2018-11-16T05:06:46Z;Eduardo;6408.209;114444728;Puerto Rico; +2018-11-16T04:33:56Z;nathalia;3235.656;115320517;Puerto Rico; +2018-11-16T04:15:45Z;Júlio;2018.507;116201214;Puerto Rico; +2018-11-16T04:08:22Z;Eduardo;3262.515;116292298;Puerto Rico; +2018-11-16T03:55:53Z;Júlio;2598.454;114249113;Puerto Rico; +2018-11-16T03:52:14Z;Ana;7346.62;115280034;Puerto Rico; +2018-11-16T03:28:45Z;nathalia;7462.552;115851615;Puerto Rico; +2018-11-16T03:22:37Z;nathalia;13325.81;116374239;Puerto Rico; +2018-11-16T03:14:22Z;Armando;4292.126;114859921;Puerto Rico; +2018-11-16T03:08:59Z;Nathália;10075.02;116383152;Puerto Rico; +2018-11-16T02:45:24Z;Eduardo;4069.367;115238063;Puerto Rico; +2018-11-16T02:29:31Z;Sandra;908.0265;115107959;Puerto Rico; +2018-11-16T01:53:01Z;Armando;4206.466;114670913;Puerto Rico; +2018-11-16T01:49:23Z;Armando;3198.803;114284077;Puerto Rico; +2018-11-16T01:36:09Z;Júlio Cesar;3889.545;114636295;Puerto Rico; +2018-11-16T01:35:43Z;Ana;1723.743;114954136;Puerto Rico; +2018-11-16T01:09:17Z;Eduardo;3838.338;115497911;Puerto Rico; +2018-11-16T01:04:44Z;Nathália;940.0735;115313236;Puerto Rico; +2018-11-16T01:03:00Z;Júlio Cesar;8083.936;115343831;Puerto Rico; +2018-11-16T00:51:09Z;Sandra;12082.77;115003228;Puerto Rico; +2018-11-16T00:26:53Z;Júlio Cesar;1627.198;116133272;Puerto Rico; +2018-11-16T00:24:05Z;nathalia;7043.806;116277896;Puerto Rico; +2018-11-16T00:21:32Z;Armando;8453.171;115064699;Puerto Rico; +2018-11-16T00:17:56Z;Nathália;187.9091;114830206;Puerto Rico; +2018-11-16T00:16:10Z;Ana;2917.378;116012351;Puerto Rico; +2018-11-16T00:06:21Z;Júlio;414.3499;116342651;Puerto Rico; +2018-11-15T23:25:41Z;Armando;417.4213;115570219;Puerto Rico; +2018-11-15T23:25:19Z;Eduardo;8216.02;115244986;Puerto Rico; +2018-11-15T22:42:12Z;Armando;2919.921;114858416;Puerto Rico; +2018-11-15T22:30:26Z;Júlio Cesar;3460.636;115131509;Puerto Rico; +2018-11-15T21:44:07Z;Nathália;5430.071;116170711;Puerto Rico; +2018-11-15T21:42:18Z;Armando;1149.627;116154794;Puerto Rico; +2018-11-15T21:18:21Z;Júlio Cesar;1745.282;114952457;Puerto Rico; +2018-11-15T21:17:21Z;Armando;5013.911;115087212;Puerto Rico; +2018-11-15T21:09:43Z;Júlio;2608.026;114982325;Puerto Rico; +2018-11-15T21:01:16Z;Eduardo;1481.356;114438992;Puerto Rico; +2018-11-15T20:56:18Z;Ana;5736.772;115442561;Puerto Rico; +2018-11-15T20:42:04Z;Armando;4244.734;115337079;Puerto Rico; +2018-11-15T20:39:27Z;Armando;316.4735;115510985;Puerto Rico; +2018-11-15T20:33:56Z;Eduardo;966.1143;114658303;Puerto Rico; +2018-11-15T20:16:53Z;Sandra;1492.963;116162046;Puerto Rico; +2018-11-15T20:15:36Z;nathalia;36.7529;114714679;Puerto Rico; +2018-11-15T20:07:50Z;Sandra;969.2025;114468906;Puerto Rico; +2018-11-15T20:05:49Z;Sandra;1678.927;115212906;Puerto Rico; +2018-11-15T20:05:32Z;Júlio Cesar;9579.637;115191052;Puerto Rico; +2018-11-15T19:32:35Z;nathalia;1911.783;115267768;Puerto Rico; +2018-11-15T19:24:34Z;Armando;56.9046;114268586;Puerto Rico; +2018-11-15T19:17:47Z;Júlio Cesar;821.8989;116094542;Puerto Rico; +2018-11-15T19:14:23Z;Armando;6379.115;116322482;Puerto Rico; +2018-11-15T19:03:15Z;Armando;634.5834;114644638;Puerto Rico; +2018-11-15T18:36:08Z;Sandra;55.98699;114326986;Puerto Rico; +2018-11-15T18:35:55Z;Nathália;2894.792;115791253;Puerto Rico; +2018-11-15T18:35:54Z;Ana;10823.88;116153636;Puerto Rico; +2018-11-15T18:28:58Z;Sandra;1568.445;115829580;Puerto Rico; +2018-11-15T18:24:32Z;Júlio;1496.868;114977351;Puerto Rico; +2018-11-15T18:03:44Z;Sandra;6566.192;114598988;Puerto Rico; +2018-11-15T17:59:49Z;nathalia;533.0609;114346731;Puerto Rico; +2018-11-15T17:57:52Z;Júlio Cesar;791.3126;115937886;Puerto Rico; +2018-11-15T17:32:53Z;Júlio Cesar;8439.921;115389334;Puerto Rico; +2018-11-15T17:18:46Z;Júlio;5088.113;114477466;Puerto Rico; +2018-11-15T17:15:00Z;Júlio Cesar;8005.027;116068601;Puerto Rico; +2018-11-15T17:12:56Z;Nathália;8111.555;114386678;Puerto Rico; +2018-11-15T16:57:54Z;Júlio Cesar;132.6009;114822966;Puerto Rico; +2018-11-15T16:39:00Z;Júlio;6446.516;114902978;Puerto Rico; +2018-11-15T16:28:28Z;Sandra;4778.297;114744273;Puerto Rico; +2018-11-15T16:18:00Z;Júlio Cesar;2876.136;115148382;Puerto Rico; +2018-11-15T16:11:48Z;Nathália;4220.22;115047247;Puerto Rico; +2018-11-15T15:38:50Z;Júlio Cesar;3803.018;115227633;Puerto Rico; +2018-11-15T15:30:17Z;Júlio;1125.239;115485383;Puerto Rico; +2018-11-15T15:08:00Z;nathalia;2270.991;114435189;Puerto Rico; +2018-11-15T14:39:13Z;Júlio;1055.563;114904660;Puerto Rico; +2018-11-15T14:05:23Z;Sandra;1331.954;114990508;Puerto Rico; +2018-11-15T14:03:19Z;Nathália;1034.453;116085855;Puerto Rico; +2018-11-15T14:00:19Z;Nathália;2696.073;116227400;Puerto Rico; +2018-11-15T13:57:52Z;Sandra;3231.131;115559293;Puerto Rico; +2018-11-15T13:46:33Z;Júlio;1439.196;116267890;Puerto Rico; +2018-11-15T13:31:35Z;Eduardo;4455.841;116132298;Puerto Rico; +2018-11-15T13:08:46Z;Nathália;7982.551;115467515;Puerto Rico; +2018-11-15T13:01:10Z;Ana;1631.854;114719614;Puerto Rico; +2018-11-15T12:56:57Z;Júlio Cesar;2018.581;114673007;Puerto Rico; +2018-11-15T12:27:54Z;Armando;275.9404;115496329;Puerto Rico; +2018-11-15T12:26:13Z;Armando;13018.58;114503242;Puerto Rico; +2018-11-15T12:10:40Z;Eduardo;1576.517;114771100;Puerto Rico; +2018-11-15T11:42:00Z;Eduardo;5665.118;115683734;Puerto Rico; +2018-11-15T11:33:23Z;Nathália;4080.218;115009486;Puerto Rico; +2018-11-15T11:21:47Z;Ana;5294.167;115156646;Puerto Rico; +2018-11-15T11:17:52Z;Ana;1999.759;115654641;Puerto Rico; +2018-11-15T11:12:51Z;Nathália;3080.641;115595587;Puerto Rico; +2018-11-15T11:00:29Z;Armando;5305.848;116319678;Puerto Rico; +2018-11-15T10:53:57Z;Júlio;7285.734;115219626;Puerto Rico; +2018-11-15T10:08:24Z;Sandra;7365.866;116032573;Puerto Rico; +2018-11-15T09:43:39Z;nathalia;7907.425;115612269;Puerto Rico; +2018-11-15T09:11:01Z;Sandra;6152.773;115538028;Puerto Rico; +2018-11-15T08:33:22Z;Júlio Cesar;27.55507;115039915;Puerto Rico; +2018-11-15T07:31:15Z;Júlio;2781.549;114330621;Puerto Rico; +2018-11-15T07:29:35Z;Sandra;734.7921;116059843;Puerto Rico; +2018-11-15T07:22:47Z;Júlio Cesar;7986.337;115494718;Puerto Rico; +2018-11-15T07:05:51Z;Eduardo;5196.564;114431168;Puerto Rico; +2018-11-15T06:41:07Z;Eduardo;732.3508;115235305;Puerto Rico; +2018-11-15T06:37:00Z;Eduardo;4945.897;115734660;Puerto Rico; +2018-11-15T05:55:13Z;Ana;6977.553;116020466;Puerto Rico; +2018-11-15T05:49:09Z;Eduardo;278.451;115083662;Puerto Rico; +2018-11-15T05:37:27Z;Armando;3332.676;116017225;Puerto Rico; +2018-11-15T05:33:27Z;Armando;1323.558;115703456;Puerto Rico; +2018-11-15T05:08:10Z;Júlio Cesar;376.3366;114506466;Puerto Rico; +2018-11-15T04:57:08Z;Eduardo;2848.371;115361245;Puerto Rico; +2018-11-15T04:46:24Z;Armando;651.6305;115345846;Puerto Rico; +2018-11-15T03:45:24Z;Júlio;650.9184;114312736;Puerto Rico; +2018-11-15T03:16:07Z;Sandra;5143.335;114751019;Puerto Rico; +2018-11-15T02:57:33Z;nathalia;6119.227;116166417;Puerto Rico; +2018-11-15T02:41:41Z;Nathália;7430.722;115767522;Puerto Rico; +2018-11-15T02:30:27Z;Armando;619.9339;115208696;Puerto Rico; +2018-11-15T02:21:58Z;Júlio Cesar;3908.161;115031911;Puerto Rico; +2018-11-15T02:14:18Z;Júlio Cesar;5065.283;116047941;Puerto Rico; +2018-11-15T02:12:43Z;Júlio Cesar;5064.788;115867565;Puerto Rico; +2018-11-15T01:55:33Z;Armando;3140.37;114754372;Puerto Rico; +2018-11-15T01:47:58Z;Nathália;5090.787;114446181;Puerto Rico; +2018-11-15T01:45:36Z;nathalia;5616.24;116330789;Puerto Rico; +2018-11-15T01:35:21Z;Armando;2369.809;115695984;Puerto Rico; +2018-11-15T01:12:11Z;Júlio Cesar;907.6329;115698804;Puerto Rico; +2018-11-15T00:48:41Z;Nathália;4456.83;114928487;Puerto Rico; +2018-11-15T00:43:44Z;Eduardo;521.499;115762238;Puerto Rico; +2018-11-15T00:41:47Z;Eduardo;3038.016;114546842;Puerto Rico; +2018-11-15T00:05:46Z;Sandra;2335.59;115754408;Puerto Rico; +2018-11-14T23:57:53Z;Sandra;5277.24;115480311;Puerto Rico; +2018-11-14T23:29:56Z;Eduardo;1456.48;115836535;Puerto Rico; +2018-11-14T23:00:34Z;Ana;2397.487;116309411;Puerto Rico; +2018-11-14T22:51:32Z;Eduardo;5467.393;114578284;Puerto Rico; +2018-11-14T22:17:29Z;Armando;5078.631;115119421;Puerto Rico; +2018-11-14T21:57:13Z;nathalia;1357.005;114212778;Puerto Rico; +2018-11-14T21:33:45Z;Nathália;166.288;115098464;Puerto Rico; +2018-11-14T21:13:03Z;Eduardo;6916.051;115028653;Puerto Rico; +2018-11-14T20:52:44Z;Armando;313.8979;115472143;Puerto Rico; +2018-11-14T20:35:59Z;Júlio;6003.992;115048857;Puerto Rico; +2018-11-14T20:17:44Z;Eduardo;4747.928;114778238;Puerto Rico; +2018-11-14T19:42:03Z;Júlio Cesar;1995.63;116105062;Puerto Rico; +2018-11-14T19:40:15Z;nathalia;4107.179;114269027;Puerto Rico; +2018-11-14T19:39:11Z;Armando;3989.243;116253332;Puerto Rico; +2018-11-14T19:23:56Z;nathalia;241.8488;114741639;Puerto Rico; +2018-11-14T18:46:33Z;Júlio Cesar;4020.656;115582071;Puerto Rico; +2018-11-14T18:29:09Z;Armando;5902.637;115744163;Puerto Rico; +2018-11-14T18:26:56Z;Eduardo;1527.633;115040550;Puerto Rico; +2018-11-14T18:19:05Z;Júlio Cesar;6675.53;114970031;Puerto Rico; +2018-11-14T17:58:06Z;Nathália;5707.992;115259042;Puerto Rico; +2018-11-14T17:52:55Z;Júlio;8303.872;114765987;Puerto Rico; +2018-11-14T17:51:41Z;Ana;1855.92;115984889;Puerto Rico; +2018-11-14T17:23:02Z;Eduardo;9063.505;114222116;Puerto Rico; +2018-11-14T17:20:52Z;nathalia;1458.598;114948240;Puerto Rico; +2018-11-14T17:13:02Z;Nathália;1196.945;115959808;Puerto Rico; +2018-11-14T15:57:56Z;nathalia;1648.427;115137827;Puerto Rico; +2018-11-14T15:57:55Z;Nathália;6659.997;115544597;Puerto Rico; +2018-11-14T15:52:31Z;Júlio Cesar;2119.851;114379743;Puerto Rico; +2018-11-14T15:20:40Z;Nathália;1572.537;114551514;Puerto Rico; +2018-11-14T15:17:27Z;Armando;1023.495;115830872;Puerto Rico; +2018-11-14T14:47:44Z;Júlio;436.2046;115643571;Puerto Rico; +2018-11-14T14:28:55Z;nathalia;10424.45;115127331;Puerto Rico; +2018-11-14T13:27:07Z;Nathália;2958.789;114205960;Puerto Rico; +2018-11-14T13:19:55Z;Júlio Cesar;3184.813;115594982;Puerto Rico; +2018-11-14T12:53:17Z;Armando;78.42444;114813278;Puerto Rico; +2018-11-14T12:45:50Z;Nathália;7140.995;114312705;Puerto Rico; +2018-11-14T12:15:13Z;Nathália;8726.04;115770784;Puerto Rico; +2018-11-14T12:00:10Z;Nathália;974.565;115929172;Puerto Rico; +2018-11-14T11:55:54Z;Eduardo;716.3079;114989809;Puerto Rico; +2018-11-14T11:54:05Z;Armando;5285.812;114583402;Puerto Rico; +2018-11-14T11:47:32Z;Júlio;2497.181;116056860;Puerto Rico; +2018-11-14T11:32:32Z;Sandra;1400.453;114620757;Puerto Rico; +2018-11-14T11:28:23Z;Sandra;2008.29;114800558;Puerto Rico; +2018-11-14T11:24:10Z;Sandra;86.49753;116394306;Puerto Rico; +2018-11-14T11:08:13Z;Armando;130.6217;115138312;Puerto Rico; +2018-11-14T10:51:43Z;Nathália;5454.682;115579504;Puerto Rico; +2018-11-14T10:16:43Z;Júlio;8822.729;116296303;Puerto Rico; +2018-11-14T09:42:58Z;Júlio;6489.669;114213208;Puerto Rico; +2018-11-14T09:32:37Z;Júlio;9455.837;116379942;Puerto Rico; +2018-11-14T09:02:04Z;Armando;3798.116;114595676;Puerto Rico; +2018-11-14T08:48:37Z;Júlio Cesar;5774.591;116185858;Puerto Rico; +2018-11-14T08:43:13Z;Júlio Cesar;5117.372;115774184;Puerto Rico; +2018-11-14T08:30:23Z;Ana;201.8977;116201091;Puerto Rico; +2018-11-14T08:15:17Z;Sandra;1562.755;115095244;Puerto Rico; +2018-11-14T08:11:18Z;Eduardo;3976.959;115601493;Puerto Rico; +2018-11-14T07:36:07Z;Armando;4995.78;115466145;Puerto Rico; +2018-11-14T07:27:29Z;Ana;602.4411;116230273;Puerto Rico; +2018-11-14T07:19:03Z;Eduardo;1481.552;115570475;Puerto Rico; +2018-11-14T07:11:05Z;Júlio;4761.541;116158767;Puerto Rico; +2018-11-14T06:21:18Z;Armando;1700.656;114535899;Puerto Rico; +2018-11-14T06:06:25Z;Ana;11901.18;116026102;Puerto Rico; +2018-11-14T06:00:40Z;Nathália;10638.07;115329323;Puerto Rico; +2018-11-14T05:48:29Z;Júlio Cesar;6373.991;116313017;Puerto Rico; +2018-11-14T05:43:17Z;nathalia;5506.951;114441190;Puerto Rico; +2018-11-14T04:50:15Z;Júlio;1044.4;115157822;Puerto Rico; +2018-11-14T04:34:53Z;Sandra;6133.758;114710686;Puerto Rico; +2018-11-14T04:25:34Z;Júlio;7151.863;115064396;Puerto Rico; +2018-11-14T04:18:32Z;nathalia;3384.503;114556808;Puerto Rico; +2018-11-14T04:12:03Z;Júlio Cesar;115.7668;115220095;Puerto Rico; +2018-11-14T04:10:57Z;Sandra;5342.387;115164161;Puerto Rico; +2018-11-14T03:50:34Z;Júlio Cesar;4007.588;115275349;Puerto Rico; +2018-11-14T03:30:35Z;Júlio Cesar;786.8193;114572314;Puerto Rico; +2018-11-14T03:29:21Z;Ana;8157.524;115264274;Puerto Rico; +2018-11-14T03:17:27Z;Eduardo;8045.919;114725500;Puerto Rico; +2018-11-14T02:51:53Z;Ana;4916.61;114646403;Puerto Rico; +2018-11-14T02:27:44Z;Ana;2657.341;114939551;Puerto Rico; +2018-11-14T02:23:06Z;Júlio;1547.562;115946489;Puerto Rico; +2018-11-14T02:11:26Z;Armando;866.7771;114356858;Puerto Rico; +2018-11-14T02:06:56Z;Júlio;2532.337;115868080;Puerto Rico; +2018-11-14T02:06:05Z;Sandra;1345.194;115916913;Puerto Rico; +2018-11-14T01:42:13Z;Eduardo;5135.661;116190694;Puerto Rico; +2018-11-14T01:29:46Z;Nathália;1987.763;116174909;Puerto Rico; +2018-11-14T01:13:14Z;Sandra;4735.312;114208897;Puerto Rico; +2018-11-14T01:04:51Z;nathalia;420.4978;115604617;Puerto Rico; +2018-11-14T00:45:20Z;Armando;14482.23;115467893;Puerto Rico; +2018-11-14T00:34:13Z;Nathália;1760.139;115253624;Puerto Rico; +2018-11-14T00:19:27Z;nathalia;3199.679;116250411;Puerto Rico; +2018-11-13T23:43:16Z;Sandra;10959.53;114477028;Puerto Rico; +2018-11-13T23:13:46Z;Ana;74.64388;114253057;Puerto Rico; +2018-11-13T23:12:07Z;Nathália;1167.464;115229955;Puerto Rico; +2018-11-13T23:06:53Z;Sandra;2079.064;115440293;Puerto Rico; +2018-11-13T23:03:04Z;Júlio;3989.094;114782442;Puerto Rico; +2018-11-13T22:50:56Z;nathalia;4237.559;114614729;Puerto Rico; +2018-11-13T22:50:09Z;Júlio;312.9504;116132155;Puerto Rico; +2018-11-13T22:34:34Z;Júlio Cesar;468.271;115664440;Puerto Rico; +2018-11-13T22:30:17Z;Júlio;7836.797;114803283;Puerto Rico; +2018-11-13T22:27:09Z;Ana;4364.637;114465060;Puerto Rico; +2018-11-13T22:26:47Z;Armando;687.4754;114377957;Puerto Rico; +2018-11-13T22:04:12Z;Nathália;3117.772;114784161;Puerto Rico; +2018-11-13T21:29:04Z;Sandra;5342.17;114900513;Puerto Rico; +2018-11-13T20:41:25Z;Nathália;5299.077;114293379;Puerto Rico; +2018-11-13T19:52:23Z;Júlio Cesar;392.2452;115867750;Puerto Rico; +2018-11-13T19:38:52Z;Júlio Cesar;10221.53;115605159;Puerto Rico; +2018-11-13T19:29:15Z;Júlio Cesar;3497.583;115039980;Puerto Rico; +2018-11-13T19:25:26Z;Júlio Cesar;5836.51;114544270;Puerto Rico; +2018-11-13T19:24:14Z;Júlio Cesar;7104.025;115509221;Puerto Rico; +2018-11-13T19:08:47Z;Armando;1138.463;114439606;Puerto Rico; +2018-11-13T19:07:51Z;Nathália;4505.256;114620138;Puerto Rico; +2018-11-13T18:54:53Z;Júlio;6585.429;114225933;Puerto Rico; +2018-11-13T18:36:12Z;Júlio Cesar;106.1377;114621047;Puerto Rico; +2018-11-13T18:22:05Z;Júlio;9175.596;115697906;Puerto Rico; +2018-11-13T17:29:17Z;Armando;2239.064;115507579;Puerto Rico; +2018-11-13T16:42:28Z;Júlio;3168.969;115597909;Puerto Rico; +2018-11-13T16:37:09Z;Ana;436.4845;115930728;Puerto Rico; +2018-11-13T16:27:41Z;nathalia;252.7898;115040429;Puerto Rico; +2018-11-13T16:21:39Z;Nathália;6237.659;115126626;Puerto Rico; +2018-11-13T16:15:37Z;Júlio;1346.093;115310411;Puerto Rico; +2018-11-13T16:10:53Z;Nathália;4511.238;114730299;Puerto Rico; +2018-11-13T15:58:39Z;Júlio;4765.523;116127561;Puerto Rico; +2018-11-13T15:27:28Z;Sandra;6006.077;116031880;Puerto Rico; +2018-11-13T15:15:51Z;Júlio;4724.363;114631470;Puerto Rico; +2018-11-13T15:02:57Z;Sandra;6727.3;115814906;Puerto Rico; +2018-11-13T14:50:52Z;Júlio;8968.985;115683327;Puerto Rico; +2018-11-13T14:46:56Z;Eduardo;4173.334;115263245;Puerto Rico; +2018-11-13T14:16:43Z;Armando;5662.462;114886755;Puerto Rico; +2018-11-13T14:07:51Z;Armando;318.7817;116251723;Puerto Rico; +2018-11-13T14:01:46Z;Júlio Cesar;5830.045;114610577;Puerto Rico; +2018-11-13T13:02:34Z;Sandra;7614.335;114520302;Puerto Rico; +2018-11-13T12:35:04Z;Ana;841.1535;114754948;Puerto Rico; +2018-11-13T12:32:06Z;Nathália;8545.835;115687689;Puerto Rico; +2018-11-13T12:20:10Z;Sandra;2291.645;114688867;Puerto Rico; +2018-11-13T12:16:26Z;Júlio;6539.392;115413325;Puerto Rico; +2018-11-13T11:37:36Z;Sandra;917.092;116023550;Puerto Rico; +2018-11-13T11:18:12Z;Nathália;8757.032;114948705;Puerto Rico; +2018-11-13T10:15:54Z;Ana;12462.63;115883569;Puerto Rico; +2018-11-13T10:14:11Z;Nathália;12383.35;114823739;Puerto Rico; +2018-11-13T10:02:53Z;Nathália;232.0769;115931850;Puerto Rico; +2018-11-13T09:50:34Z;Júlio Cesar;3393.73;114366590;Puerto Rico; +2018-11-13T09:35:16Z;Armando;6516.199;115665303;Puerto Rico; +2018-11-13T09:09:58Z;Nathália;3719.307;114707782;Puerto Rico; +2018-11-13T08:55:20Z;Sandra;458.179;115086281;Puerto Rico; +2018-11-13T08:40:37Z;Armando;6631.912;115550217;Puerto Rico; +2018-11-13T08:38:44Z;Eduardo;4815.529;116018894;Puerto Rico; +2018-11-13T08:14:02Z;Júlio Cesar;2103.731;115801122;Puerto Rico; +2018-11-13T07:49:57Z;Ana;285.702;116292473;Puerto Rico; +2018-11-13T07:43:59Z;Eduardo;6706.569;116202606;Puerto Rico; +2018-11-13T07:42:37Z;Nathália;3155.348;115756141;Puerto Rico; +2018-11-13T07:19:17Z;Júlio Cesar;3264.566;114592067;Puerto Rico; +2018-11-13T07:19:12Z;Júlio;43.86456;114449186;Puerto Rico; +2018-11-13T07:16:44Z;Sandra;8826.668;115410041;Puerto Rico; +2018-11-13T07:13:01Z;Nathália;13943.78;115825444;Puerto Rico; +2018-11-13T06:59:11Z;Ana;3863.18;114793786;Puerto Rico; +2018-11-13T06:43:16Z;Ana;2341.362;114552472;Puerto Rico; +2018-11-13T06:29:54Z;Júlio Cesar;7374.204;114884717;Puerto Rico; +2018-11-13T06:28:29Z;Eduardo;1696.502;116352103;Puerto Rico; +2018-11-13T06:24:32Z;Júlio Cesar;2566.809;115380439;Puerto Rico; +2018-11-13T06:21:29Z;Armando;5963.404;116214561;Puerto Rico; +2018-11-13T05:54:51Z;Eduardo;95.18887;114360392;Puerto Rico; +2018-11-13T05:53:48Z;Armando;4892.563;115604035;Puerto Rico; +2018-11-13T05:49:48Z;Armando;3410.186;114577057;Puerto Rico; +2018-11-13T05:19:09Z;Júlio;956.9847;115187047;Puerto Rico; +2018-11-13T04:43:13Z;nathalia;4944.29;115230886;Puerto Rico; +2018-11-13T03:53:31Z;nathalia;2412.102;115392056;Puerto Rico; +2018-11-13T03:39:44Z;Ana;1105.902;115581549;Puerto Rico; +2018-11-13T03:29:35Z;nathalia;407.6182;115208441;Puerto Rico; +2018-11-13T03:14:38Z;Nathália;7827.907;114973882;Puerto Rico; +2018-11-13T03:06:56Z;Eduardo;2331.743;115598602;Puerto Rico; +2018-11-13T03:00:28Z;Júlio Cesar;4374.558;115894839;Puerto Rico; +2018-11-13T02:56:56Z;Júlio;1416.811;115676990;Puerto Rico; +2018-11-13T02:51:54Z;Eduardo;6801.498;114507250;Puerto Rico; +2018-11-13T02:43:23Z;Armando;1271.09;116080427;Puerto Rico; +2018-11-13T02:21:22Z;nathalia;2568.055;114508652;Puerto Rico; +2018-11-13T02:12:53Z;nathalia;90.30838;114669113;Puerto Rico; +2018-11-13T02:04:26Z;Ana;2832.283;116049758;Puerto Rico; +2018-11-13T01:59:40Z;Ana;512.6945;116109921;Puerto Rico; +2018-11-13T01:47:29Z;Eduardo;2431.622;114752334;Puerto Rico; +2018-11-13T01:39:03Z;Sandra;4786.784;116306544;Puerto Rico; +2018-11-13T00:54:13Z;Eduardo;3342.902;115960155;Puerto Rico; +2018-12-06T22:25:33Z;Eduardo;2036.312;116388874;Venezuela; +2018-12-06T22:20:06Z;Ana;349.4675;115725591;Venezuela; +2018-12-06T21:50:28Z;Júlio Cesar;389.112;115347240;Venezuela; +2018-12-06T21:49:58Z;Eduardo;3971.992;115787758;Venezuela; +2018-12-06T21:32:28Z;Armando;439.4302;114700250;Venezuela; +2018-12-06T21:08:54Z;Armando;3002.654;114322018;Venezuela; +2018-12-06T20:58:55Z;Nathália;3520.588;114641628;Venezuela; +2018-12-06T20:55:28Z;Armando;188.0616;116054069;Venezuela; +2018-12-06T20:50:54Z;nathalia;4693.187;114305507;Venezuela; +2018-12-06T20:42:29Z;Sandra;5935.056;114971787;Venezuela; +2018-12-06T20:33:31Z;Júlio Cesar;1655.446;115701527;Venezuela; +2018-12-06T20:32:20Z;Ana;3563.508;114253729;Venezuela; +2018-12-06T20:29:48Z;Júlio Cesar;365.0174;114663525;Venezuela; +2018-12-06T20:07:13Z;Júlio;8597.25;116306534;Venezuela; +2018-12-06T19:56:06Z;Ana;4602.725;115583447;Venezuela; +2018-12-06T19:09:12Z;Nathália;482.5012;115017484;Venezuela; +2018-12-06T18:41:00Z;Júlio Cesar;668.4377;114913577;Venezuela; +2018-12-06T18:22:36Z;Ana;3901.685;114859978;Venezuela; +2018-12-06T17:45:57Z;Armando;917.7871;115439674;Venezuela; +2018-12-06T17:43:39Z;Eduardo;3125.267;114643243;Venezuela; +2018-12-06T17:34:47Z;Armando;270.9457;116134688;Venezuela; +2018-12-06T17:30:50Z;Eduardo;40.9093;114661771;Venezuela; +2018-12-06T17:28:07Z;Sandra;1223.634;115288692;Venezuela; +2018-12-06T16:37:03Z;Ana;213.3399;115247023;Venezuela; +2018-12-06T16:34:33Z;Júlio Cesar;180.1817;115437354;Venezuela; +2018-12-06T16:19:45Z;Júlio;4413.482;114373612;Venezuela; +2018-12-06T16:18:44Z;Armando;1551.537;115528559;Venezuela; +2018-12-06T16:13:00Z;Eduardo;774.5454;114239613;Venezuela; +2018-12-06T16:02:01Z;Júlio Cesar;383.4059;116078707;Venezuela; +2018-12-06T15:57:24Z;Ana;139.9779;114511722;Venezuela; +2018-12-06T15:48:13Z;Sandra;96.38617;116308161;Venezuela; +2018-12-06T15:25:33Z;Armando;912.4362;116280426;Venezuela; +2018-12-06T15:01:38Z;Armando;352.4785;116353223;Venezuela; +2018-12-06T14:28:06Z;nathalia;346.6822;115855614;Venezuela; +2018-12-06T14:02:22Z;Ana;718.5249;114494203;Venezuela; +2018-12-06T13:36:12Z;Júlio Cesar;3304.302;114921487;Venezuela; +2018-12-06T13:35:06Z;Eduardo;1185.777;115310557;Venezuela; +2018-12-06T12:56:37Z;nathalia;197.642;116059342;Venezuela; +2018-12-06T12:50:14Z;Júlio;145.123;116278224;Venezuela; +2018-12-06T12:48:26Z;Nathália;1311.038;115296864;Venezuela; +2018-12-06T12:45:55Z;Júlio;1990.166;114982244;Venezuela; +2018-12-06T12:42:15Z;nathalia;2668.072;114439701;Venezuela; +2018-12-06T12:10:11Z;nathalia;868.158;114910729;Venezuela; +2018-12-06T11:51:09Z;Ana;311.0302;115063131;Venezuela; +2018-12-06T11:36:57Z;Júlio;609.7267;114734041;Venezuela; +2018-12-06T11:24:05Z;nathalia;1706.555;114678063;Venezuela; +2018-12-06T11:06:16Z;Júlio Cesar;3141.789;115843002;Venezuela; +2018-12-06T10:54:34Z;nathalia;3417.061;115111204;Venezuela; +2018-12-06T10:52:05Z;Júlio;1046.897;114521717;Venezuela; +2018-12-06T10:50:49Z;nathalia;818.0314;115261419;Venezuela; +2018-12-06T10:28:51Z;Nathália;3635.003;114858718;Venezuela; +2018-12-06T10:09:16Z;Ana;30.22695;115541916;Venezuela; +2018-12-06T10:04:45Z;Ana;1041.083;114956537;Venezuela; +2018-12-06T09:52:41Z;nathalia;0.9306517;114562752;Venezuela; +2018-12-06T09:48:52Z;Sandra;467.9477;114278766;Venezuela; +2018-12-06T09:44:51Z;Eduardo;183.1719;115750003;Venezuela; +2018-12-06T09:36:07Z;Nathália;6.221057;115543406;Venezuela; +2018-12-06T09:23:29Z;Júlio;317.3349;115859580;Venezuela; +2018-12-06T09:13:37Z;Armando;197.203;116351342;Venezuela; +2018-12-06T09:13:02Z;Nathália;316.8458;115729991;Venezuela; +2018-12-06T08:59:43Z;Armando;302.7466;114271604;Venezuela; +2018-12-06T08:59:13Z;Ana;1428.459;116159864;Venezuela; +2018-12-06T08:56:52Z;Eduardo;4430.265;116016025;Venezuela; +2018-12-06T08:55:16Z;Eduardo;3767.031;114843044;Venezuela; +2018-12-06T08:52:29Z;Júlio Cesar;6742.862;115943705;Venezuela; +2018-12-06T08:01:27Z;nathalia;4216.557;115412519;Venezuela; +2018-12-06T07:33:35Z;Júlio Cesar;274.4887;115200925;Venezuela; +2018-12-06T07:32:10Z;Armando;9130.205;115549309;Venezuela; +2018-12-06T06:55:18Z;Nathália;1819.655;115309526;Venezuela; +2018-12-06T06:27:56Z;Ana;1778.578;115724195;Venezuela; +2018-12-06T06:24:09Z;Armando;3404.074;114788732;Venezuela; +2018-12-06T06:17:53Z;Armando;266.6295;114249829;Venezuela; +2018-12-06T06:15:40Z;Armando;2482.602;114794196;Venezuela; +2018-12-06T05:49:55Z;nathalia;52.65357;114318023;Venezuela; +2018-12-06T05:39:32Z;Nathália;1792.073;116284206;Venezuela; +2018-12-06T05:36:51Z;Armando;2092.353;115641748;Venezuela; +2018-12-06T05:04:53Z;Júlio Cesar;1300.044;116093881;Venezuela; +2018-12-06T05:04:19Z;Nathália;1146.343;116210126;Venezuela; +2018-12-06T05:01:32Z;Júlio;4741.22;115761932;Venezuela; +2018-12-06T04:39:49Z;Nathália;22.00951;114858965;Venezuela; +2018-12-06T04:08:30Z;Júlio Cesar;4275.725;116205714;Venezuela; +2018-12-06T03:49:10Z;Júlio;4573.343;115736941;Venezuela; +2018-12-06T03:33:27Z;Eduardo;1169.099;115455654;Venezuela; +2018-12-06T03:15:54Z;Eduardo;1282.05;116302731;Venezuela; +2018-12-06T03:14:02Z;Armando;49.87238;116186092;Venezuela; +2018-12-06T02:25:37Z;Nathália;1196.634;115848494;Venezuela; +2018-12-06T01:59:11Z;Nathália;3667.026;115288415;Venezuela; +2018-12-06T01:55:14Z;Eduardo;821.0728;115599730;Venezuela; +2018-12-06T01:48:32Z;Nathália;714.7263;114273999;Venezuela; +2018-12-06T01:44:23Z;Júlio Cesar;759.1848;115563084;Venezuela; +2018-12-06T01:08:28Z;Eduardo;63.04983;114551273;Venezuela; +2018-12-06T00:49:45Z;nathalia;2397.267;114722013;Venezuela; +2018-12-06T00:45:53Z;Eduardo;217.4949;115857300;Venezuela; +2018-12-06T00:15:06Z;Júlio;165.5047;115241201;Venezuela; +2018-12-05T23:53:02Z;Ana;1320.845;116155294;Venezuela; +2018-12-05T23:24:35Z;Júlio Cesar;2868.856;115120490;Venezuela; +2018-12-05T22:52:39Z;Sandra;1860.975;116266787;Venezuela; +2018-12-05T22:34:23Z;Eduardo;203.9056;114552223;Venezuela; +2018-12-05T22:30:20Z;Ana;4547.871;114655016;Venezuela; +2018-12-05T22:01:14Z;Nathália;982.889;115253011;Venezuela; +2018-12-05T21:54:07Z;Júlio Cesar;4118.023;114906918;Venezuela; +2018-12-05T21:42:27Z;Ana;832.8187;116263960;Venezuela; +2018-12-05T21:27:51Z;Sandra;2723.023;116157629;Venezuela; +2018-12-05T21:23:25Z;Armando;1729.135;115923281;Venezuela; +2018-12-05T21:14:32Z;Nathália;2345.064;116323693;Venezuela; +2018-12-05T21:01:02Z;Armando;6007.959;114220752;Venezuela; +2018-12-05T20:52:59Z;nathalia;213.2194;115374931;Venezuela; +2018-12-05T20:46:58Z;Armando;7078.966;114214413;Venezuela; +2018-12-05T20:27:10Z;Ana;202.8033;114582178;Venezuela; +2018-12-05T20:13:47Z;Júlio Cesar;217.6116;115502922;Venezuela; +2018-12-05T20:00:56Z;Júlio;90.89154;116166234;Venezuela; +2018-12-05T19:47:16Z;Nathália;280.4379;114285923;Venezuela; +2018-12-05T19:39:35Z;Ana;1597.169;115900515;Venezuela; +2018-12-05T19:24:00Z;Sandra;5149.431;115247527;Venezuela; +2018-12-05T19:18:55Z;Júlio;1254.377;114958089;Venezuela; +2018-12-05T18:58:00Z;nathalia;2784.866;115256829;Venezuela; +2018-12-05T18:53:46Z;Sandra;316.8963;114942224;Venezuela; +2018-12-05T18:46:06Z;nathalia;749.2607;115440476;Venezuela; +2018-12-05T18:34:27Z;Ana;566.4964;115394005;Venezuela; +2018-12-05T18:32:32Z;Ana;1569.754;114734224;Venezuela; +2018-12-05T18:23:51Z;Júlio Cesar;3064.285;114969244;Venezuela; +2018-12-05T17:34:20Z;Júlio;54.82711;114205162;Venezuela; +2018-12-05T16:56:43Z;Sandra;582.9257;116138514;Venezuela; +2018-12-05T16:50:54Z;Sandra;598.569;114733862;Venezuela; +2018-12-05T16:23:11Z;Júlio;526.6949;114371269;Venezuela; +2018-12-05T16:13:52Z;Ana;5312.087;114250877;Venezuela; +2018-12-05T16:08:27Z;Eduardo;2652.241;114661264;Venezuela; +2018-12-05T15:58:16Z;Armando;1589.266;114932272;Venezuela; +2018-12-05T15:44:14Z;Sandra;229.6072;114810759;Venezuela; +2018-12-05T15:41:52Z;Armando;2120.142;114390170;Venezuela; +2018-12-05T15:39:49Z;Júlio Cesar;3036.535;114841317;Venezuela; +2018-12-05T14:11:29Z;Ana;1015.297;115689584;Venezuela; +2018-12-05T13:29:17Z;Eduardo;1397.072;114307216;Venezuela; +2018-12-05T13:01:08Z;Júlio;3985.281;114887868;Venezuela; +2018-12-05T12:41:17Z;nathalia;2917.592;114406848;Venezuela; +2018-12-05T12:20:10Z;Eduardo;2164.589;115272235;Venezuela; +2018-12-05T12:17:22Z;nathalia;2550.096;115424894;Venezuela; +2018-12-05T12:14:34Z;Ana;53.69266;115866486;Venezuela; +2018-12-05T12:11:06Z;Nathália;32.49001;116001576;Venezuela; +2018-12-05T11:36:14Z;Júlio Cesar;1117.86;116201497;Venezuela; +2018-12-05T11:22:42Z;Júlio;2622.42;115714858;Venezuela; +2018-12-05T11:06:18Z;Júlio;1437.295;115683187;Venezuela; +2018-12-05T10:36:35Z;Armando;6202.893;116089434;Venezuela; +2018-12-05T10:22:01Z;Eduardo;3438.076;115775615;Venezuela; +2018-12-05T10:11:50Z;Júlio Cesar;819.8778;116322206;Venezuela; +2018-12-05T10:11:08Z;Armando;2548.527;114638905;Venezuela; +2018-12-05T10:03:51Z;Armando;475.6793;115744586;Venezuela; +2018-12-05T10:02:51Z;Nathália;129.4241;116025493;Venezuela; +2018-12-05T09:58:24Z;Ana;7553.206;115254325;Venezuela; +2018-12-05T09:40:20Z;Sandra;1706.244;116036719;Venezuela; +2018-12-05T09:20:19Z;Ana;5482.541;115930422;Venezuela; +2018-12-05T09:16:19Z;Eduardo;2159.576;115796903;Venezuela; +2018-12-05T09:03:08Z;nathalia;2212.495;115467551;Venezuela; +2018-12-05T08:36:04Z;Eduardo;4370.609;115768118;Venezuela; +2018-12-05T08:29:19Z;Sandra;6100.758;116325977;Venezuela; +2018-12-05T08:22:08Z;Eduardo;315.1183;116129236;Venezuela; +2018-12-05T08:21:40Z;nathalia;6758.011;115271808;Venezuela; +2018-12-05T08:20:39Z;nathalia;3820.89;115434099;Venezuela; +2018-12-05T08:20:18Z;Ana;107.4137;115103625;Venezuela; +2018-12-05T07:56:45Z;Armando;7405.674;115980726;Venezuela; +2018-12-05T07:35:20Z;Eduardo;2165.822;115694052;Venezuela; +2018-12-05T07:19:16Z;Júlio Cesar;213.0227;116284529;Venezuela; +2018-12-05T07:13:08Z;Nathália;86.99207;114631170;Venezuela; +2018-12-05T07:01:58Z;Júlio;6135.835;114936985;Venezuela; +2018-12-05T06:51:08Z;Eduardo;653.1934;115680256;Venezuela; +2018-12-05T06:28:48Z;Nathália;1127.323;114515552;Venezuela; +2018-12-05T06:20:25Z;Júlio;784.1644;114958981;Venezuela; +2018-12-05T06:15:57Z;Júlio;131.1005;115361733;Venezuela; +2018-12-05T05:35:13Z;Sandra;622.0653;115337929;Venezuela; +2018-12-05T05:14:05Z;Júlio;2499.221;114523390;Venezuela; +2018-12-05T04:46:52Z;Júlio;244.3488;115514420;Venezuela; +2018-12-05T04:25:44Z;Júlio Cesar;1592.272;115798857;Venezuela; +2018-12-05T04:01:48Z;Júlio;672.1411;115618780;Venezuela; +2018-12-05T04:01:07Z;Júlio;425.0859;114729984;Venezuela; +2018-12-05T03:42:57Z;Nathália;3710.375;115151244;Venezuela; +2018-12-05T03:41:19Z;Armando;2454.176;114964261;Venezuela; +2018-12-05T03:10:17Z;nathalia;911.2307;115597231;Venezuela; +2018-12-05T03:06:53Z;Júlio Cesar;4030.242;114994098;Venezuela; +2018-12-05T02:47:33Z;Ana;154.442;114467298;Venezuela; +2018-12-05T02:33:05Z;Ana;1124.7;116037627;Venezuela; +2018-12-05T02:13:30Z;Júlio;211.0735;116264553;Venezuela; +2018-12-05T02:08:52Z;Júlio;1515.915;115229112;Venezuela; +2018-12-05T01:49:10Z;Sandra;1232.559;115708340;Venezuela; +2018-12-05T01:34:32Z;Júlio;1791.83;115341161;Venezuela; +2018-12-05T01:22:19Z;Eduardo;351.4802;115208824;Venezuela; +2018-12-05T01:14:10Z;Nathália;5435.062;115180478;Venezuela; +2018-12-05T01:01:40Z;Armando;3966.383;114681018;Venezuela; +2018-12-05T00:33:11Z;Sandra;800.8663;115150094;Venezuela; +2018-12-05T00:25:52Z;nathalia;4032.696;114764107;Venezuela; +2018-12-05T00:21:42Z;Júlio;837.0736;116087850;Venezuela; +2018-12-05T00:00:27Z;Armando;2982.042;114899506;Venezuela; +2018-12-04T23:56:13Z;Júlio Cesar;1581.397;115079634;Venezuela; +2018-12-04T23:40:20Z;Armando;678.9297;114718565;Venezuela; +2018-12-04T23:19:03Z;Ana;1589.002;115313294;Venezuela; +2018-12-04T23:03:44Z;Júlio;245.0218;114377327;Venezuela; +2018-12-04T22:54:52Z;Júlio Cesar;590.4062;115869980;Venezuela; +2018-12-04T22:48:10Z;nathalia;744.5619;115968988;Venezuela; +2018-12-04T22:29:19Z;Júlio;1898.36;115757298;Venezuela; +2018-12-04T21:30:42Z;Júlio Cesar;2696.419;116297823;Venezuela; +2018-12-04T20:51:03Z;Júlio;1839.09;115530669;Venezuela; +2018-12-04T20:40:40Z;Eduardo;2893.427;115852063;Venezuela; +2018-12-04T20:37:03Z;Júlio;1957.913;114831803;Venezuela; +2018-12-04T20:08:45Z;Nathália;875.6727;115764365;Venezuela; +2018-12-04T19:54:35Z;Ana;3905.43;115879412;Venezuela; +2018-12-04T19:36:09Z;Eduardo;1984.232;115626111;Venezuela; +2018-12-04T19:21:13Z;Armando;371.8242;115125354;Venezuela; +2018-12-04T19:16:52Z;nathalia;496.1466;115421436;Venezuela; +2018-12-04T19:01:48Z;Júlio Cesar;5338.076;115141182;Venezuela; +2018-12-04T18:22:10Z;Nathália;47.47094;115419213;Venezuela; +2018-12-04T18:20:54Z;nathalia;369.4077;116290758;Venezuela; +2018-12-04T18:10:10Z;Ana;1345.732;116162520;Venezuela; +2018-12-04T17:35:34Z;nathalia;2.962778;116219341;Venezuela; +2018-12-04T17:31:35Z;Júlio;7312.386;115169180;Venezuela; +2018-12-04T17:06:42Z;Eduardo;2100.876;114730098;Venezuela; +2018-12-04T17:06:21Z;Sandra;5676.016;114734296;Venezuela; +2018-12-04T16:45:32Z;Sandra;187.6102;115797427;Venezuela; +2018-12-04T16:40:30Z;nathalia;326.2035;114501904;Venezuela; +2018-12-04T16:25:25Z;Nathália;604.7548;116084107;Venezuela; +2018-12-04T16:22:46Z;Sandra;6185.188;114803695;Venezuela; +2018-12-04T16:18:57Z;Ana;1855.018;115384273;Venezuela; +2018-12-04T16:13:35Z;Armando;5.115653;116099105;Venezuela; +2018-12-04T16:05:15Z;Eduardo;3233.567;114527279;Venezuela; +2018-12-04T15:54:56Z;Sandra;1228.089;115111294;Venezuela; +2018-12-04T15:32:35Z;Ana;303.3251;114765634;Venezuela; +2018-12-04T15:12:09Z;Armando;3865.453;114752248;Venezuela; +2018-12-04T14:31:02Z;Nathália;1896.67;116064519;Venezuela; +2018-12-04T14:30:15Z;Ana;820.0747;114773954;Venezuela; +2018-12-04T14:25:45Z;Armando;6110.077;115999102;Venezuela; +2018-12-04T14:00:17Z;nathalia;3003.617;114459612;Venezuela; +2018-12-04T13:28:46Z;Eduardo;1120.375;114710571;Venezuela; +2018-12-04T13:19:27Z;Júlio Cesar;244.2874;114283006;Venezuela; +2018-12-04T13:11:36Z;nathalia;3286.246;116149881;Venezuela; +2018-12-04T13:03:01Z;Armando;1560.669;115106637;Venezuela; +2018-12-04T12:56:26Z;Eduardo;931.3128;114989343;Venezuela; +2018-12-04T12:43:21Z;Júlio Cesar;1629.703;116373000;Venezuela; +2018-12-04T12:10:54Z;Sandra;6377.64;115172067;Venezuela; +2018-12-04T12:09:01Z;nathalia;205.4236;116019653;Venezuela; +2018-12-04T12:08:38Z;Nathália;901.3351;115238535;Venezuela; +2018-12-04T12:03:39Z;Júlio Cesar;2657.327;114768006;Venezuela; +2018-12-04T11:59:47Z;Júlio;5285.702;114382339;Venezuela; +2018-12-04T11:59:11Z;Júlio Cesar;302.602;115058377;Venezuela; +2018-12-04T11:56:44Z;Ana;3938.041;114954251;Venezuela; +2018-12-04T11:41:47Z;Júlio Cesar;6620.746;115322209;Venezuela; +2018-12-04T11:06:49Z;Ana;1016.049;114764354;Venezuela; +2018-12-04T10:56:30Z;Júlio;2744.924;114763344;Venezuela; +2018-12-04T10:41:55Z;Júlio Cesar;6356.375;115720195;Venezuela; +2018-12-04T10:12:36Z;Sandra;1964.888;116332555;Venezuela; +2018-12-04T10:08:23Z;Eduardo;3552.765;116365263;Venezuela; +2018-12-04T09:57:25Z;Júlio Cesar;8526.039;116131092;Venezuela; +2018-12-04T09:16:07Z;Eduardo;79.28809;115494013;Venezuela; +2018-12-04T08:48:03Z;Sandra;1746.532;115647944;Venezuela; +2018-12-04T08:37:43Z;nathalia;2536.543;116252349;Venezuela; +2018-12-04T08:04:47Z;Armando;187.6995;114478442;Venezuela; +2018-12-04T08:02:40Z;Eduardo;1263.727;114786003;Venezuela; +2018-12-04T07:41:16Z;Júlio Cesar;2434.184;115615740;Venezuela; +2018-12-04T07:38:51Z;Júlio Cesar;5859.83;115502322;Venezuela; +2018-12-04T07:37:52Z;Armando;518.3573;114573498;Venezuela; +2018-12-04T07:32:15Z;Armando;4192.657;114554258;Venezuela; +2018-12-04T07:19:21Z;Júlio Cesar;621.9966;114903229;Venezuela; +2018-12-04T07:11:24Z;nathalia;998.3185;115553460;Venezuela; +2018-12-04T06:36:44Z;Ana;1539.965;115020759;Venezuela; +2018-12-04T06:31:44Z;Armando;391.0229;114562530;Venezuela; +2018-12-04T06:29:07Z;Ana;936.8669;114532944;Venezuela; +2018-12-04T06:25:58Z;Eduardo;232.2531;115387874;Venezuela; +2018-12-04T05:34:44Z;Nathália;5568.812;114745071;Venezuela; +2018-12-04T05:33:36Z;Eduardo;2424.611;114430275;Venezuela; +2018-12-04T05:17:13Z;nathalia;157.2497;114766197;Venezuela; +2018-12-04T04:20:24Z;nathalia;1605.933;115633862;Venezuela; +2018-12-04T04:16:51Z;Nathália;485.0692;114920409;Venezuela; +2018-12-04T04:15:54Z;Ana;700.0338;115242599;Venezuela; +2018-12-04T04:14:29Z;Júlio Cesar;299.1279;115320182;Venezuela; +2018-12-04T03:47:20Z;Nathália;376.4574;114866930;Venezuela; +2018-12-04T03:23:34Z;Eduardo;114.8163;115825987;Venezuela; +2018-12-04T03:20:01Z;Júlio;1609.813;115229256;Venezuela; +2018-12-04T03:07:13Z;nathalia;270.0089;115803503;Venezuela; +2018-12-04T02:31:59Z;Júlio;2423.902;114562948;Venezuela; +2018-12-04T02:28:08Z;Ana;758.7885;115756038;Venezuela; +2018-12-04T02:25:24Z;Sandra;758.7467;114711966;Venezuela; +2018-12-04T02:00:12Z;Júlio Cesar;410.8857;115952437;Venezuela; +2018-12-04T00:59:41Z;Júlio Cesar;2857.156;115175955;Venezuela; +2018-12-04T00:52:41Z;Nathália;870.7256;115819025;Venezuela; +2018-12-04T00:32:16Z;Júlio Cesar;1917.93;115966315;Venezuela; +2018-12-04T00:26:35Z;Júlio;6078.481;115746403;Venezuela; +2018-12-04T00:19:47Z;Júlio Cesar;890.2263;115844946;Venezuela; +2018-12-04T00:16:42Z;Ana;1975.494;114393229;Venezuela; +2018-12-03T23:52:11Z;Nathália;4650.565;115470618;Venezuela; +2018-12-03T23:39:31Z;Sandra;316.9861;116363360;Venezuela; +2018-12-03T23:27:08Z;Ana;805.7791;114278902;Venezuela; +2018-12-03T23:19:50Z;Eduardo;6241.083;115617433;Venezuela; +2018-12-03T23:08:34Z;Nathália;2292.136;115442215;Venezuela; +2018-12-03T22:58:47Z;nathalia;5965.862;115079916;Venezuela; +2018-12-03T22:22:43Z;Armando;2123.866;114988204;Venezuela; +2018-12-03T22:06:46Z;Ana;204.6757;116222684;Venezuela; +2018-12-03T21:44:45Z;Eduardo;621.0723;116290285;Venezuela; +2018-12-03T21:38:00Z;nathalia;8194.038;114427453;Venezuela; +2018-12-03T21:05:12Z;Júlio;1117.155;114579743;Venezuela; +2018-12-03T20:55:16Z;Eduardo;1120.176;115440495;Venezuela; +2018-12-03T20:47:56Z;Armando;3765.272;114662413;Venezuela; +2018-12-03T20:43:51Z;nathalia;233.4675;115400863;Venezuela; +2018-12-03T20:18:13Z;Eduardo;1623.874;114353432;Venezuela; +2018-12-03T20:02:54Z;Júlio Cesar;2048.417;115863235;Venezuela; +2018-12-03T18:37:32Z;Nathália;1468.139;114592134;Venezuela; +2018-12-03T18:17:47Z;Júlio Cesar;3465.074;115485759;Venezuela; +2018-12-03T17:47:55Z;Júlio Cesar;1479.608;115338619;Venezuela; +2018-12-03T17:38:01Z;Nathália;244.5595;115013613;Venezuela; +2018-12-03T17:36:46Z;nathalia;781.0765;114574726;Venezuela; +2018-12-03T17:15:15Z;Sandra;4933.39;115949753;Venezuela; +2018-12-03T17:14:17Z;Sandra;1999.898;115873782;Venezuela; +2018-12-03T16:55:07Z;Armando;2367.028;115480871;Venezuela; +2018-12-03T16:47:15Z;Eduardo;686.9283;115340871;Venezuela; +2018-12-03T16:29:08Z;Júlio Cesar;1635.494;116061057;Venezuela; +2018-12-03T16:02:50Z;nathalia;1095.546;116047286;Venezuela; +2018-12-03T15:42:25Z;Nathália;1182.946;114619540;Venezuela; +2018-12-03T14:56:08Z;Armando;514.8906;115630887;Venezuela; +2018-12-03T14:55:57Z;Nathália;5105.896;114456060;Venezuela; +2018-12-03T14:42:04Z;Ana;367.2021;116046601;Venezuela; +2018-12-03T14:22:39Z;Eduardo;442.4687;114302640;Venezuela; +2018-12-03T14:07:45Z;nathalia;1417.542;115009624;Venezuela; +2018-12-03T14:00:00Z;Júlio;1251.108;115009834;Venezuela; +2018-12-03T13:53:23Z;nathalia;6087.193;116250362;Venezuela; +2018-12-03T13:25:18Z;Eduardo;3818.89;115296326;Venezuela; +2018-12-03T13:19:56Z;Júlio Cesar;8340.291;116174124;Venezuela; +2018-12-03T13:18:33Z;Júlio Cesar;141.612;116302999;Venezuela; +2018-12-03T13:07:46Z;Armando;1931.278;116182171;Venezuela; +2018-12-03T12:44:14Z;Ana;4272.803;115316709;Venezuela; +2018-12-03T12:31:44Z;Armando;58.37475;114448273;Venezuela; +2018-12-03T12:26:02Z;Armando;911.1604;115336836;Venezuela; +2018-12-03T12:26:01Z;Júlio Cesar;1304.439;115131872;Venezuela; +2018-12-03T12:24:09Z;nathalia;2152.558;115683377;Venezuela; +2018-12-03T12:20:24Z;Eduardo;1602.714;115083334;Venezuela; +2018-12-03T12:19:07Z;Júlio Cesar;1341.044;116235672;Venezuela; +2018-12-03T11:55:08Z;Nathália;2855.464;114785876;Venezuela; +2018-12-03T11:12:26Z;Júlio Cesar;6011.328;114315383;Venezuela; +2018-12-03T10:54:08Z;Nathália;741.2383;116009402;Venezuela; +2018-12-03T10:49:10Z;Ana;1282.937;116141134;Venezuela; +2018-12-03T10:44:11Z;Júlio;69.15612;116207589;Venezuela; +2018-12-03T09:18:01Z;Ana;3197.689;114557863;Venezuela; +2018-12-03T09:11:40Z;Júlio;206.0544;114503981;Venezuela; +2018-12-03T09:11:00Z;nathalia;2158.34;115731760;Venezuela; +2018-12-03T08:47:32Z;Júlio Cesar;10219.59;115240030;Venezuela; +2018-12-03T08:16:06Z;Eduardo;2601.733;114999929;Venezuela; +2018-12-03T08:14:03Z;Júlio Cesar;3669.486;115855240;Venezuela; +2018-12-03T07:58:48Z;Sandra;678.6916;115450788;Venezuela; +2018-12-03T07:55:59Z;nathalia;817.3187;116297933;Venezuela; +2018-12-03T07:54:13Z;Júlio Cesar;2636.239;116313611;Venezuela; +2018-12-03T07:22:42Z;Armando;1138.966;115831691;Venezuela; +2018-12-03T07:21:52Z;Nathália;1634.902;115409736;Venezuela; +2018-12-03T07:13:44Z;Júlio Cesar;4119.563;115036744;Venezuela; +2018-12-03T06:44:07Z;Júlio;1529.268;114970101;Venezuela; +2018-12-03T06:35:18Z;Armando;555.6699;116368129;Venezuela; +2018-12-03T06:33:40Z;Júlio Cesar;1279.717;114351104;Venezuela; +2018-12-03T05:57:22Z;Ana;7991.533;114686990;Venezuela; +2018-12-03T05:56:14Z;Júlio;3142.884;115646815;Venezuela; +2018-12-03T05:53:50Z;Armando;1240.676;115714076;Venezuela; +2018-12-03T05:49:10Z;Eduardo;3355.064;114941820;Venezuela; +2018-12-03T05:33:32Z;Armando;1447.269;116158446;Venezuela; +2018-12-03T05:32:06Z;nathalia;949.561;114654506;Venezuela; +2018-12-03T05:31:14Z;Ana;1308.63;114326844;Venezuela; +2018-12-03T04:06:14Z;Eduardo;5062.106;116005627;Venezuela; +2018-12-03T03:54:53Z;Júlio Cesar;1373.241;114906478;Venezuela; +2018-12-03T03:52:58Z;nathalia;7359.758;114507102;Venezuela; +2018-12-03T03:35:57Z;Eduardo;3617.982;116009277;Venezuela; +2018-12-03T03:17:16Z;Júlio Cesar;580.2724;114801095;Venezuela; +2018-12-03T03:12:15Z;Eduardo;2626.101;114797004;Venezuela; +2018-12-03T03:09:22Z;Sandra;1969.579;116078967;Venezuela; +2018-12-03T03:01:47Z;Armando;1596.035;114883102;Venezuela; +2018-12-03T03:01:36Z;Sandra;1103.671;114519559;Venezuela; +2018-12-03T02:49:45Z;Ana;735.3111;114463907;Venezuela; +2018-12-03T02:38:43Z;Júlio Cesar;2356.802;114629976;Venezuela; +2018-12-03T02:36:54Z;Júlio Cesar;2415.828;116046163;Venezuela; +2018-12-03T01:58:55Z;Eduardo;4345.054;114567961;Venezuela; +2018-12-03T01:52:51Z;Júlio;118.2369;115396774;Venezuela; +2018-12-03T01:42:40Z;Nathália;393.1799;115536770;Venezuela; +2018-12-03T01:33:26Z;Nathália;6355.922;114277584;Venezuela; +2018-12-03T01:12:47Z;nathalia;66.54505;116258309;Venezuela; +2018-12-03T00:54:09Z;Júlio Cesar;4524.065;115616428;Venezuela; +2018-12-03T00:53:23Z;nathalia;3823.062;116088198;Venezuela; +2018-12-03T00:42:44Z;Eduardo;3002.234;114603167;Venezuela; +2018-12-03T00:09:56Z;Júlio Cesar;143.1422;115275062;Venezuela; +2018-12-02T23:49:53Z;nathalia;2151.746;114251745;Venezuela; +2018-12-02T23:26:35Z;Armando;3091.08;114890519;Venezuela; +2018-12-02T23:13:35Z;Ana;1732.408;115174760;Venezuela; +2018-12-02T22:57:46Z;nathalia;1990.902;115769884;Venezuela; +2018-12-02T22:16:06Z;Sandra;3314.426;115435759;Venezuela; +2018-12-02T22:16:05Z;Júlio Cesar;33.85795;116380989;Venezuela; +2018-12-02T22:15:04Z;Armando;2350.407;114897814;Venezuela; +2018-12-02T22:01:50Z;Armando;987.2077;115204123;Venezuela; +2018-12-02T21:53:14Z;Sandra;46.93743;114829829;Venezuela; +2018-12-02T21:52:48Z;nathalia;710.97;114566186;Venezuela; +2018-12-02T21:51:49Z;Sandra;921.345;115246753;Venezuela; +2018-12-02T21:36:32Z;nathalia;134.7018;115881221;Venezuela; +2018-12-02T21:12:21Z;Nathália;466.2135;116366655;Venezuela; +2018-12-02T21:10:47Z;Júlio;353.4865;114693318;Venezuela; +2018-12-02T20:56:52Z;Ana;2337.984;114309581;Venezuela; +2018-12-02T20:33:06Z;Armando;6075.521;116059330;Venezuela; +2018-12-02T20:12:50Z;Armando;619.3632;115587201;Venezuela; +2018-12-02T19:58:41Z;Armando;288.0765;115650839;Venezuela; +2018-12-02T19:49:30Z;Nathália;112.4581;114354593;Venezuela; +2018-12-02T19:48:00Z;Eduardo;185.4073;114889535;Venezuela; +2018-12-02T19:35:10Z;Eduardo;12629.62;114545535;Venezuela; +2018-12-02T19:20:57Z;Armando;48.30103;116087906;Venezuela; +2018-12-02T18:52:36Z;Sandra;1600.703;115454797;Venezuela; +2018-12-02T18:43:29Z;Júlio;565.8108;114448642;Venezuela; +2018-12-02T18:03:28Z;Júlio;2522.869;114683817;Venezuela; +2018-12-02T17:57:17Z;nathalia;863.7273;115891912;Venezuela; +2018-12-02T17:45:47Z;Armando;3700.457;114523848;Venezuela; +2018-12-02T17:43:55Z;Armando;2159.205;116370724;Venezuela; +2018-12-02T17:17:38Z;Armando;661.2969;115760241;Venezuela; +2018-12-02T17:08:50Z;Júlio;1017.832;115274233;Venezuela; +2018-12-02T16:57:16Z;Armando;4417.711;116321758;Venezuela; +2018-12-02T16:46:40Z;Sandra;7241.754;115668914;Venezuela; +2018-12-02T16:28:16Z;Eduardo;227.0499;114628005;Venezuela; +2018-12-02T16:10:32Z;Sandra;2763.778;116062971;Venezuela; +2018-12-02T15:32:39Z;Nathália;6529.08;114855477;Venezuela; +2018-12-02T15:31:10Z;Armando;877.0218;115377371;Venezuela; +2018-12-02T15:06:42Z;Júlio;6347.423;114617512;Venezuela; +2018-12-02T14:40:38Z;Eduardo;2451.713;115138979;Venezuela; +2018-12-02T14:17:26Z;Eduardo;5144.637;114902479;Venezuela; +2018-12-02T13:50:48Z;Nathália;5549.077;114689966;Venezuela; +2018-12-02T12:38:21Z;nathalia;2872.341;115561650;Venezuela; +2018-12-02T12:27:01Z;Ana;339.2714;115358830;Venezuela; +2018-12-02T12:14:02Z;Eduardo;2920.764;115816202;Venezuela; +2018-12-02T11:33:58Z;Júlio Cesar;233.6709;115985112;Venezuela; +2018-12-02T11:28:14Z;Armando;1001.999;116243782;Venezuela; +2018-12-02T11:08:22Z;Júlio;1583.358;114308772;Venezuela; +2018-12-02T11:05:34Z;Nathália;3771.131;116153005;Venezuela; +2018-12-02T10:41:10Z;Sandra;5068.703;115809391;Venezuela; +2018-12-02T09:37:39Z;Eduardo;3668.495;115995416;Venezuela; +2018-12-02T09:31:17Z;Júlio;6263.2;115353646;Venezuela; +2018-12-02T09:30:20Z;nathalia;1742.641;115692078;Venezuela; +2018-12-02T09:22:40Z;Sandra;2211.692;116003357;Venezuela; +2018-12-02T09:19:46Z;Ana;149.4036;115868851;Venezuela; +2018-12-02T09:15:47Z;Armando;7241.878;115385365;Venezuela; +2018-12-02T08:47:23Z;Sandra;426.5519;114734723;Venezuela; +2018-12-02T08:45:59Z;Júlio Cesar;1453.444;114927724;Venezuela; +2018-12-02T08:38:18Z;nathalia;1501.015;115523895;Venezuela; +2018-12-02T08:35:51Z;Armando;5721.042;115918926;Venezuela; +2018-12-02T07:58:45Z;Eduardo;1322.256;115853435;Venezuela; +2018-12-02T07:42:38Z;Júlio;2302.963;114864022;Venezuela; +2018-12-02T07:29:09Z;Sandra;37.41743;115104461;Venezuela; +2018-12-02T06:45:14Z;Sandra;5035.725;114531317;Venezuela; +2018-12-02T06:31:33Z;Nathália;315.5849;116108149;Venezuela; +2018-12-02T06:19:40Z;Júlio;1748.557;114720031;Venezuela; +2018-12-02T05:37:25Z;Sandra;703.5446;115307305;Venezuela; +2018-12-02T05:30:59Z;Nathália;3112.587;114383779;Venezuela; +2018-12-02T05:20:50Z;Eduardo;1536.802;115216135;Venezuela; +2018-12-02T05:13:23Z;nathalia;1025.439;115138818;Venezuela; +2018-12-02T05:01:37Z;Ana;2771.123;114339651;Venezuela; +2018-12-02T04:50:15Z;Júlio;422.8832;115919472;Venezuela; +2018-12-02T03:59:00Z;Armando;958.8319;115278484;Venezuela; +2018-12-02T03:53:19Z;Ana;4198.108;114422132;Venezuela; +2018-12-02T03:51:20Z;Júlio;3201.128;114577833;Venezuela; +2018-12-02T03:01:33Z;Nathália;765.3968;115999379;Venezuela; +2018-12-02T02:33:17Z;nathalia;2298.124;115054174;Venezuela; +2018-12-02T02:33:02Z;Ana;1592.258;115076219;Venezuela; +2018-12-02T02:21:24Z;Sandra;417.8419;114272229;Venezuela; +2018-12-02T02:13:18Z;Nathália;5664.145;114609635;Venezuela; +2018-12-02T01:32:42Z;Armando;2618.694;114605309;Venezuela; +2018-12-02T01:26:03Z;Nathália;1303.221;114608473;Venezuela; +2018-12-02T01:03:35Z;Júlio;1029.301;115386908;Venezuela; +2018-12-02T01:02:59Z;Júlio;190.88;115728407;Venezuela; +2018-12-02T00:59:34Z;Armando;834.3599;114300205;Venezuela; +2018-12-02T00:26:37Z;Sandra;4078.655;114539059;Venezuela; +2018-12-02T00:01:56Z;Nathália;167.7778;115185833;Venezuela; +2018-12-01T23:32:52Z;Júlio;22.93009;116225681;Venezuela; +2018-12-01T23:19:43Z;nathalia;9236.692;114742929;Venezuela; +2018-12-01T23:18:45Z;Nathália;124.9958;115360092;Venezuela; +2018-12-01T23:18:16Z;Armando;197.1906;115079861;Venezuela; +2018-12-01T23:13:12Z;Armando;4646.12;116172339;Venezuela; +2018-12-01T23:10:29Z;Ana;588.559;114312042;Venezuela; +2018-12-01T23:09:14Z;Eduardo;3982.068;114857470;Venezuela; +2018-12-01T23:06:41Z;Ana;1681.253;115130602;Venezuela; +2018-12-01T23:05:31Z;Júlio;291.4358;115242249;Venezuela; +2018-12-01T23:04:07Z;Sandra;451.952;115323449;Venezuela; +2018-12-01T22:59:48Z;Júlio Cesar;1224.356;114938379;Venezuela; +2018-12-01T22:59:08Z;Ana;321.222;116181505;Venezuela; +2018-12-01T22:43:37Z;Ana;6472.893;114844469;Venezuela; +2018-12-01T22:29:57Z;Armando;3307.643;116056573;Venezuela; +2018-12-01T22:23:16Z;Júlio Cesar;4268.848;114254532;Venezuela; +2018-12-01T21:58:34Z;Armando;3118.626;115996644;Venezuela; +2018-12-01T21:54:31Z;Ana;1673.521;114725552;Venezuela; +2018-12-01T21:34:47Z;Armando;1757.4;114900703;Venezuela; +2018-12-01T21:29:20Z;nathalia;1184.87;114937856;Venezuela; +2018-12-01T21:06:27Z;Eduardo;2470.095;114589869;Venezuela; +2018-12-01T20:58:55Z;Júlio;2656.032;115759630;Venezuela; +2018-12-01T20:41:14Z;Júlio Cesar;394.739;115360548;Venezuela; +2018-12-01T20:15:59Z;Júlio;88.82778;114400378;Venezuela; +2018-12-01T20:12:15Z;nathalia;4842.947;116300565;Venezuela; +2018-12-01T19:59:19Z;Júlio Cesar;2856.66;116284048;Venezuela; +2018-12-01T19:52:40Z;Armando;1473.734;116068837;Venezuela; +2018-12-01T19:46:31Z;Júlio Cesar;2141.855;115598750;Venezuela; +2018-12-01T19:35:16Z;Júlio Cesar;3992.427;115320453;Venezuela; +2018-12-01T19:30:18Z;Armando;124.6588;114378480;Venezuela; +2018-12-01T19:25:21Z;Sandra;3156.778;115969402;Venezuela; +2018-12-01T18:57:27Z;Júlio Cesar;254.091;115849808;Venezuela; +2018-12-01T18:25:48Z;Eduardo;9.681542;114509468;Venezuela; +2018-12-01T18:12:42Z;Júlio Cesar;491.8501;116032213;Venezuela; +2018-12-01T17:12:26Z;Sandra;1441.181;115934070;Venezuela; +2018-12-01T16:55:26Z;Eduardo;1133.85;115012522;Venezuela; +2018-12-01T16:39:21Z;Júlio Cesar;2138.218;115099035;Venezuela; +2018-12-01T16:11:02Z;Nathália;1874.311;114560413;Venezuela; +2018-12-01T16:08:29Z;Júlio;4364.402;116214645;Venezuela; +2018-12-01T15:24:48Z;Eduardo;2891.414;116025154;Venezuela; +2018-12-01T15:20:59Z;Sandra;203.9013;115189186;Venezuela; +2018-12-01T15:16:59Z;Armando;2740.46;115904168;Venezuela; +2018-12-01T15:06:41Z;Ana;35.36481;114720455;Venezuela; +2018-12-01T14:59:26Z;Armando;2919.203;115840355;Venezuela; +2018-12-01T14:17:34Z;Ana;3285.648;114628540;Venezuela; +2018-12-01T14:17:16Z;Ana;278.6956;115445850;Venezuela; +2018-12-01T14:15:25Z;Júlio Cesar;294.265;115587505;Venezuela; +2018-12-01T14:05:28Z;Armando;216.9971;115490789;Venezuela; +2018-12-01T13:43:44Z;Nathália;1929.54;116070599;Venezuela; +2018-12-01T13:42:43Z;Sandra;1844.484;114573513;Venezuela; +2018-12-01T13:42:26Z;Sandra;8563.995;115574617;Venezuela; +2018-12-01T13:28:25Z;Nathália;14.72946;115070183;Venezuela; +2018-12-01T13:20:14Z;Nathália;930.6732;114731278;Venezuela; +2018-12-01T12:56:17Z;Ana;830.8517;114720577;Venezuela; +2018-12-01T12:50:23Z;nathalia;576.0013;115708018;Venezuela; +2018-12-01T12:45:19Z;Eduardo;3129.62;114953524;Venezuela; +2018-12-01T12:29:14Z;nathalia;1555.522;115598225;Venezuela; +2018-12-01T12:06:12Z;Nathália;2166.809;115591818;Venezuela; +2018-12-01T11:17:47Z;Eduardo;3770.301;116226947;Venezuela; +2018-12-01T10:43:41Z;Eduardo;2492.779;114850947;Venezuela; +2018-12-01T10:22:53Z;Nathália;430.8335;114882564;Venezuela; +2018-12-01T10:22:35Z;nathalia;1757.537;115769931;Venezuela; +2018-12-01T10:17:12Z;Nathália;2257.558;116356982;Venezuela; +2018-12-01T09:57:02Z;Júlio;1792.322;115174681;Venezuela; +2018-12-01T09:51:43Z;Júlio Cesar;79.03272;115411929;Venezuela; +2018-12-01T09:50:00Z;Armando;123.0741;114742009;Venezuela; +2018-12-01T09:47:49Z;nathalia;1413.461;114234951;Venezuela; +2018-12-01T09:42:12Z;nathalia;2732.605;115866802;Venezuela; +2018-12-01T09:18:47Z;Armando;531.5108;114419275;Venezuela; +2018-12-01T09:16:07Z;Nathália;2869.093;114760520;Venezuela; +2018-12-01T09:11:48Z;nathalia;1824.531;114886542;Venezuela; +2018-12-01T09:10:04Z;Armando;740.5788;115126271;Venezuela; +2018-12-01T08:54:50Z;Ana;683.2132;115542687;Venezuela; +2018-12-01T08:15:09Z;Eduardo;805.975;115719605;Venezuela; +2018-12-01T08:07:55Z;Júlio Cesar;1885.966;114466351;Venezuela; +2018-12-01T07:45:37Z;nathalia;680.1793;114698173;Venezuela; +2018-12-01T07:44:49Z;Eduardo;2103.344;115018825;Venezuela; +2018-12-01T07:15:31Z;Nathália;570.6451;115493692;Venezuela; +2018-12-01T06:42:15Z;Nathália;1135.408;114278090;Venezuela; +2018-12-01T05:30:35Z;nathalia;939.0191;114266037;Venezuela; +2018-12-01T04:16:33Z;Nathália;9621.999;114750196;Venezuela; +2018-12-01T03:55:18Z;Nathália;186.4706;116016753;Venezuela; +2018-12-01T03:33:07Z;Júlio Cesar;242.1254;114357828;Venezuela; +2018-12-01T03:00:07Z;Júlio;3549.122;115735656;Venezuela; +2018-12-01T02:58:53Z;Ana;2515.969;114371534;Venezuela; +2018-12-01T02:51:47Z;Sandra;37.34107;114811897;Venezuela; +2018-12-01T00:37:40Z;Júlio Cesar;3461.197;116198039;Venezuela; +2018-12-01T00:28:34Z;Ana;5067.467;116344510;Venezuela; +2018-12-01T00:26:57Z;Sandra;5689.935;115078308;Venezuela; +2018-11-30T23:56:34Z;Sandra;81.66195;114976543;Venezuela; +2018-11-30T23:25:50Z;Sandra;348.3701;115373980;Venezuela; +2018-11-30T23:24:15Z;nathalia;6054.483;114330161;Venezuela; +2018-11-30T23:13:03Z;Eduardo;2408.633;115970475;Venezuela; +2018-11-30T23:09:26Z;Júlio;1124.728;115884015;Venezuela; +2018-11-30T23:02:19Z;Sandra;307.5983;114562370;Venezuela; +2018-11-30T22:54:08Z;Júlio Cesar;2404.37;115882516;Venezuela; +2018-11-30T22:30:15Z;Júlio;798.9089;115855812;Venezuela; +2018-11-30T22:21:00Z;Júlio Cesar;2007.851;114276470;Venezuela; +2018-11-30T22:05:34Z;Eduardo;7129.725;114320962;Venezuela; +2018-11-30T22:02:48Z;Nathália;1246.033;115567418;Venezuela; +2018-11-30T22:00:19Z;Eduardo;3071.263;115800947;Venezuela; +2018-11-30T21:53:11Z;Nathália;1598.361;115288338;Venezuela; +2018-11-30T21:48:08Z;Júlio;2602.359;114550936;Venezuela; +2018-11-30T21:32:24Z;Ana;232.9623;115814571;Venezuela; +2018-11-30T21:25:03Z;Júlio Cesar;504.5398;114986277;Venezuela; +2018-11-30T21:15:14Z;Ana;247.5042;115521111;Venezuela; +2018-11-30T20:52:26Z;Nathália;3861.297;114579810;Venezuela; +2018-11-30T20:50:20Z;Armando;2522.85;115527303;Venezuela; +2018-11-30T20:46:22Z;Armando;3340.15;115848025;Venezuela; +2018-11-30T20:41:28Z;Júlio Cesar;896.2968;115187089;Venezuela; +2018-11-30T20:36:05Z;Ana;4301.364;116125855;Venezuela; +2018-11-30T20:35:38Z;Armando;3387.904;115322466;Venezuela; +2018-11-30T20:25:03Z;Armando;344.4047;115652740;Venezuela; +2018-11-30T20:19:52Z;Armando;167.8375;114237706;Venezuela; +2018-11-30T20:16:50Z;Sandra;2384.887;114394218;Venezuela; +2018-11-30T20:16:32Z;Júlio Cesar;3165.61;115236379;Venezuela; +2018-11-30T20:14:29Z;Júlio Cesar;2013.512;115853625;Venezuela; +2018-11-30T20:11:18Z;Júlio Cesar;149.0721;115564480;Venezuela; +2018-11-30T19:55:11Z;nathalia;3505.765;116304476;Venezuela; +2018-11-30T19:51:15Z;nathalia;84.60612;115159594;Venezuela; +2018-11-30T19:14:02Z;Sandra;5471.592;115053783;Venezuela; +2018-11-30T19:11:00Z;Sandra;4728.406;116218645;Venezuela; +2018-11-30T19:08:40Z;Ana;4190.888;114385592;Venezuela; +2018-11-30T18:55:19Z;Nathália;53.11747;114443587;Venezuela; +2018-11-30T18:44:58Z;Eduardo;85.92426;116276519;Venezuela; +2018-11-30T18:17:49Z;Júlio Cesar;4621.029;114791345;Venezuela; +2018-11-30T18:05:47Z;Eduardo;594.6457;114875870;Venezuela; +2018-11-30T18:00:15Z;Eduardo;465.4528;115480621;Venezuela; +2018-11-30T17:54:47Z;Eduardo;3087.801;114385201;Venezuela; +2018-11-30T17:38:51Z;Armando;950.3661;115327413;Venezuela; +2018-11-30T17:37:04Z;Sandra;29.16153;115904629;Venezuela; +2018-11-30T17:33:38Z;Nathália;3360.682;115254556;Venezuela; +2018-11-30T17:13:49Z;Eduardo;622.6259;116346143;Venezuela; +2018-11-30T17:07:20Z;Júlio;1922.107;115878870;Venezuela; +2018-11-30T16:52:56Z;Júlio Cesar;3303.44;114925287;Venezuela; +2018-11-30T16:43:38Z;Nathália;3018.459;115124652;Venezuela; +2018-11-30T16:32:19Z;Júlio Cesar;525.4593;115813740;Venezuela; +2018-11-30T16:11:43Z;Eduardo;8651.356;114465107;Venezuela; +2018-11-30T16:10:49Z;Armando;647.2921;116240535;Venezuela; +2018-11-30T15:36:06Z;Eduardo;48.85312;114521250;Venezuela; +2018-11-30T15:16:40Z;Sandra;6002.973;114527664;Venezuela; +2018-11-30T15:12:45Z;Sandra;3775.988;116225113;Venezuela; +2018-11-30T14:39:18Z;Júlio;1627.239;115214228;Venezuela; +2018-11-30T14:14:28Z;Eduardo;580.9434;116190141;Venezuela; +2018-11-30T14:04:18Z;Júlio Cesar;1127.384;115679622;Venezuela; +2018-11-30T13:52:27Z;Nathália;1935.387;114312851;Venezuela; +2018-11-30T13:52:02Z;Júlio;1169.586;116270254;Venezuela; +2018-11-30T13:51:52Z;Sandra;159.9222;114884900;Venezuela; +2018-11-30T13:29:40Z;Sandra;6300.828;114568080;Venezuela; +2018-11-30T13:25:18Z;Nathália;2456.526;115448094;Venezuela; +2018-11-30T13:18:44Z;nathalia;1687.847;114884177;Venezuela; +2018-11-30T13:11:52Z;Nathália;766.1118;115741516;Venezuela; +2018-11-30T12:36:54Z;nathalia;642.7774;115436021;Venezuela; +2018-11-30T12:31:14Z;nathalia;19.09406;115604990;Venezuela; +2018-11-30T12:12:22Z;Armando;4569.223;114689818;Venezuela; +2018-11-30T12:10:48Z;Eduardo;1885.798;115650219;Venezuela; +2018-11-30T11:57:10Z;Sandra;1645.793;115767010;Venezuela; +2018-11-30T11:45:35Z;Ana;3.581695;114564798;Venezuela; +2018-11-30T11:42:12Z;nathalia;55.30901;116045050;Venezuela; +2018-11-30T11:35:49Z;Ana;2902.146;114593689;Venezuela; +2018-11-30T11:29:36Z;Júlio Cesar;4356.399;116145969;Venezuela; +2018-11-30T11:23:36Z;Nathália;656.5882;115103880;Venezuela; +2018-11-30T10:43:38Z;nathalia;347.2128;116023631;Venezuela; +2018-11-30T10:38:49Z;Nathália;16.52255;115336121;Venezuela; +2018-11-30T10:06:44Z;Sandra;144.2213;115084752;Venezuela; +2018-11-30T09:54:36Z;Armando;462.7967;114954089;Venezuela; +2018-11-30T09:45:01Z;Armando;364.2448;115555553;Venezuela; +2018-11-30T09:18:42Z;Ana;2065.371;114592323;Venezuela; +2018-11-30T09:04:34Z;Armando;3325.8;114601484;Venezuela; +2018-11-30T08:40:35Z;Eduardo;1074.819;115122488;Venezuela; +2018-11-30T08:37:13Z;Sandra;946.6545;115299552;Venezuela; +2018-11-30T08:21:09Z;Eduardo;436.9754;114815402;Venezuela; +2018-11-30T07:59:10Z;Eduardo;675.1765;115805188;Venezuela; +2018-11-30T07:32:49Z;Nathália;1382.963;116251726;Venezuela; +2018-11-30T07:20:04Z;Sandra;5374.255;114262688;Venezuela; +2018-11-30T07:14:22Z;Eduardo;803.1842;114311803;Venezuela; +2018-11-30T07:10:04Z;Sandra;5874.002;114527820;Venezuela; +2018-11-30T07:06:54Z;Júlio;87.50341;114592671;Venezuela; +2018-11-30T07:06:00Z;Nathália;7280.163;115960663;Venezuela; +2018-11-30T06:35:32Z;Sandra;180.1074;114615135;Venezuela; +2018-11-30T06:23:51Z;nathalia;565.166;114376279;Venezuela; +2018-11-30T06:15:50Z;Ana;3947.154;115067423;Venezuela; +2018-11-30T05:54:22Z;Armando;2281.736;114346467;Venezuela; +2018-11-30T05:43:15Z;Sandra;3778.786;116003971;Venezuela; +2018-11-30T05:22:38Z;nathalia;5849.439;115629835;Venezuela; +2018-11-30T05:11:53Z;Eduardo;380.3348;116090853;Venezuela; +2018-11-30T05:07:17Z;Sandra;261.407;116019353;Venezuela; +2018-11-30T04:39:16Z;Eduardo;2115.335;115039283;Venezuela; +2018-11-30T03:30:08Z;Ana;615.7823;114542760;Venezuela; +2018-11-30T03:28:24Z;Eduardo;144.4867;115743268;Venezuela; +2018-11-30T02:55:12Z;Ana;2573.299;116347535;Venezuela; +2018-11-30T02:28:07Z;Eduardo;1381.852;115223091;Venezuela; +2018-11-30T02:25:59Z;Júlio;911.7275;115643962;Venezuela; +2018-11-30T01:06:10Z;Sandra;2298.143;115821821;Venezuela; +2018-11-30T00:53:55Z;Eduardo;4049.768;114841619;Venezuela; +2018-11-30T00:50:49Z;Nathália;1754.613;114556448;Venezuela; +2018-11-30T00:17:57Z;Nathália;3269.662;115688851;Venezuela; +2018-11-29T23:28:40Z;Armando;3451.503;115785163;Venezuela; +2018-11-29T23:17:23Z;Ana;2447.993;114332947;Venezuela; +2018-11-29T23:02:31Z;Júlio Cesar;7050.488;115208116;Venezuela; +2018-11-29T22:34:30Z;Júlio Cesar;1408.252;114947816;Venezuela; +2018-11-29T22:05:23Z;Nathália;3882.943;115767624;Venezuela; +2018-11-29T21:54:19Z;Júlio;735.0303;115452677;Venezuela; +2018-11-29T21:24:26Z;Júlio Cesar;4206.865;114820927;Venezuela; +2018-11-29T21:08:01Z;Nathália;197.2228;114535804;Venezuela; +2018-11-29T20:36:53Z;Sandra;6021.5;115332286;Venezuela; +2018-11-29T20:33:15Z;Ana;1655.051;114230262;Venezuela; +2018-11-29T20:27:28Z;Júlio Cesar;4251.858;115429350;Venezuela; +2018-11-29T20:13:05Z;Eduardo;2605.055;115985728;Venezuela; +2018-11-29T19:51:33Z;nathalia;771.905;115103440;Venezuela; +2018-11-29T19:51:30Z;Armando;8109.522;114789341;Venezuela; +2018-11-29T19:46:09Z;Sandra;1425.904;115294905;Venezuela; +2018-11-29T19:46:04Z;Armando;974.98;114626772;Venezuela; +2018-11-29T19:46:01Z;Nathália;6070.905;115037899;Venezuela; +2018-11-29T19:15:42Z;Sandra;2019.23;115720171;Venezuela; +2018-11-29T18:44:11Z;Eduardo;1480.404;115070587;Venezuela; +2018-11-29T18:34:27Z;Júlio;2254.991;116207102;Venezuela; +2018-11-29T18:31:51Z;nathalia;2196.691;115269585;Venezuela; +2018-11-29T18:28:54Z;Júlio;1770.16;116166586;Venezuela; +2018-11-29T18:13:37Z;Sandra;5545.141;115785841;Venezuela; +2018-11-29T17:57:37Z;Sandra;479.1004;114919507;Venezuela; +2018-11-29T17:40:35Z;Nathália;3969.089;115443584;Venezuela; +2018-11-29T17:35:32Z;Armando;5931.59;116282838;Venezuela; +2018-11-29T17:15:21Z;Júlio;52.99663;115074389;Venezuela; +2018-11-29T17:15:19Z;Júlio Cesar;5275.108;114314552;Venezuela; +2018-11-29T16:52:51Z;Júlio;7338.542;115735139;Venezuela; +2018-11-29T16:51:31Z;Ana;4559.563;114790111;Venezuela; +2018-11-29T16:26:08Z;Júlio Cesar;340.4604;116399520;Venezuela; +2018-11-29T16:22:16Z;Nathália;946.748;115770915;Venezuela; +2018-11-29T15:59:51Z;Armando;2507.959;115113169;Venezuela; +2018-11-29T15:45:30Z;Nathália;1939.303;115909341;Venezuela; +2018-11-29T15:03:12Z;Sandra;1622.039;115627310;Venezuela; +2018-11-29T14:27:00Z;Eduardo;5261.629;115995263;Venezuela; +2018-11-29T14:22:37Z;nathalia;4658.991;115582938;Venezuela; +2018-11-29T14:14:24Z;nathalia;2777.832;115401496;Venezuela; +2018-11-29T14:13:21Z;Sandra;2534.286;115627347;Venezuela; +2018-11-29T14:11:28Z;Nathália;3820.948;114779488;Venezuela; +2018-11-29T14:10:23Z;Nathália;1028.25;115575419;Venezuela; +2018-11-29T14:08:03Z;nathalia;3274.109;114609356;Venezuela; +2018-11-29T13:58:42Z;Ana;5526.314;114430378;Venezuela; +2018-11-29T13:46:22Z;Nathália;4085.562;116318493;Venezuela; +2018-11-29T13:35:26Z;Armando;1603.724;115433298;Venezuela; +2018-11-29T13:27:46Z;Júlio Cesar;2379.26;114968209;Venezuela; +2018-11-29T13:07:03Z;Sandra;553.1007;115149324;Venezuela; +2018-11-29T12:53:10Z;Nathália;2405.04;114816421;Venezuela; +2018-11-29T12:44:04Z;Júlio Cesar;231.6038;116173215;Venezuela; +2018-11-29T12:35:02Z;Nathália;5826.086;115610461;Venezuela; +2018-11-29T12:33:48Z;Júlio Cesar;4356.511;115536606;Venezuela; +2018-11-29T12:30:20Z;Ana;1359.388;114776321;Venezuela; +2018-11-29T12:26:21Z;Júlio Cesar;1689.103;114667294;Venezuela; +2018-11-29T12:19:25Z;Ana;1344.158;114459279;Venezuela; +2018-11-29T12:03:48Z;Armando;798.4896;114315115;Venezuela; +2018-11-29T11:57:25Z;Júlio;2982.464;115508496;Venezuela; +2018-11-29T11:20:58Z;Eduardo;143.5651;114830246;Venezuela; +2018-11-29T10:53:41Z;Ana;3991.937;116312635;Venezuela; +2018-11-29T10:42:47Z;Júlio;477.1976;116151831;Venezuela; +2018-11-29T10:32:45Z;Nathália;4632.535;114321863;Venezuela; +2018-11-29T09:47:55Z;Eduardo;317.5367;114684420;Venezuela; +2018-11-29T09:38:20Z;nathalia;7325.469;114516910;Venezuela; +2018-11-29T09:30:20Z;Sandra;230.9302;115128202;Venezuela; +2018-11-29T08:40:45Z;nathalia;1238.594;114742005;Venezuela; +2018-11-29T08:35:59Z;nathalia;2561.363;114612692;Venezuela; +2018-11-29T07:09:25Z;Sandra;1097.454;115467677;Venezuela; +2018-11-29T07:03:54Z;Nathália;793.8636;114829445;Venezuela; +2018-11-29T06:40:40Z;Nathália;373.7296;115990515;Venezuela; +2018-11-29T06:36:00Z;Eduardo;2957.379;116215027;Venezuela; +2018-11-29T06:16:34Z;Sandra;133.0239;116252440;Venezuela; +2018-11-29T06:07:55Z;Nathália;47.1769;114223118;Venezuela; +2018-11-29T05:47:17Z;Ana;363.2712;115968022;Venezuela; +2018-11-29T05:23:26Z;Ana;1295.916;115691086;Venezuela; +2018-11-29T05:23:02Z;Nathália;1555.964;114652228;Venezuela; +2018-11-29T05:16:25Z;Armando;3506.662;115410165;Venezuela; +2018-11-29T05:13:53Z;Sandra;4031.304;114567653;Venezuela; +2018-11-29T05:09:27Z;Nathália;2403.791;115329539;Venezuela; +2018-11-29T04:48:31Z;nathalia;319.3784;115077131;Venezuela; +2018-11-29T04:43:10Z;Sandra;3006.328;115913829;Venezuela; +2018-11-29T04:38:06Z;nathalia;552.3908;115275801;Venezuela; +2018-11-29T04:28:03Z;Armando;1649.051;115800270;Venezuela; +2018-11-29T04:05:11Z;nathalia;151.1005;114520702;Venezuela; +2018-11-29T03:39:28Z;Júlio;2869.729;115336747;Venezuela; +2018-11-29T02:23:54Z;Armando;6638.875;115302150;Venezuela; +2018-11-29T01:46:35Z;nathalia;3798.315;114589260;Venezuela; +2018-11-29T01:44:45Z;Júlio;527.8509;115487578;Venezuela; +2018-11-29T01:16:08Z;Sandra;387.4916;114266193;Venezuela; +2018-11-29T00:48:33Z;nathalia;2213.286;114450014;Venezuela; +2018-11-29T00:24:36Z;Armando;599.2621;114715303;Venezuela; +2018-11-29T00:08:39Z;Armando;2078.54;115776728;Venezuela; +2018-11-28T23:52:41Z;Ana;7315.46;114869014;Venezuela; +2018-11-28T23:31:50Z;Júlio;605.3168;114968590;Venezuela; +2018-11-28T23:26:56Z;Eduardo;8807.472;114240431;Venezuela; +2018-11-28T22:53:55Z;nathalia;349.5925;114249992;Venezuela; +2018-11-28T22:32:05Z;Ana;4402.941;115700758;Venezuela; +2018-11-28T22:26:21Z;Júlio;2752.113;114775612;Venezuela; +2018-11-28T22:21:50Z;Júlio Cesar;5195.755;116264248;Venezuela; +2018-11-28T22:21:50Z;nathalia;1612.113;114506013;Venezuela; +2018-11-28T22:21:48Z;nathalia;2504.793;116212964;Venezuela; +2018-11-28T22:09:21Z;Eduardo;825.7249;115415568;Venezuela; +2018-11-28T21:50:34Z;Sandra;1092.293;114330550;Venezuela; +2018-11-28T21:47:25Z;nathalia;114.5778;114869990;Venezuela; +2018-11-28T21:44:35Z;Nathália;2287.377;114593191;Venezuela; +2018-11-28T21:44:08Z;nathalia;3767.06;115529329;Venezuela; +2018-11-28T21:23:54Z;Júlio;5867.809;114815365;Venezuela; +2018-11-28T20:09:51Z;Ana;2465.864;114902615;Venezuela; +2018-11-28T19:50:28Z;Júlio Cesar;3637.892;114743789;Venezuela; +2018-11-28T19:40:34Z;Júlio;409.2696;114418985;Venezuela; +2018-11-28T19:35:36Z;Sandra;7791.335;115807000;Venezuela; +2018-11-28T19:25:12Z;nathalia;302.297;116114906;Venezuela; +2018-11-28T19:23:40Z;Sandra;2241.879;114751403;Venezuela; +2018-11-28T19:10:51Z;Ana;557.5406;115295004;Venezuela; +2018-11-28T19:02:48Z;nathalia;1261.321;114576014;Venezuela; +2018-11-28T18:57:33Z;Nathália;49.37999;115965538;Venezuela; +2018-11-28T18:55:06Z;Eduardo;719.03;115545343;Venezuela; +2018-11-28T18:41:06Z;Sandra;3739.538;115238461;Venezuela; +2018-11-28T18:37:59Z;Nathália;3525.298;114902836;Venezuela; +2018-11-28T18:33:17Z;Ana;2591.126;115704263;Venezuela; +2018-11-28T18:21:11Z;Eduardo;4681.867;115883899;Venezuela; +2018-11-28T18:07:07Z;Júlio Cesar;945.371;114795342;Venezuela; +2018-11-28T18:02:36Z;Armando;3116.953;114639525;Venezuela; +2018-11-28T17:59:15Z;Nathália;1018.385;116265133;Venezuela; +2018-11-28T17:49:30Z;Júlio;3519.212;115710520;Venezuela; +2018-11-28T17:41:16Z;nathalia;5152.24;114694501;Venezuela; +2018-11-28T17:36:41Z;Armando;828.1397;115816476;Venezuela; +2018-11-28T17:05:26Z;Júlio Cesar;232.8511;115492376;Venezuela; +2018-11-28T16:41:40Z;nathalia;1395.149;115403437;Venezuela; +2018-11-28T16:36:28Z;Júlio Cesar;75.19556;116008916;Venezuela; +2018-11-28T16:33:05Z;Júlio Cesar;5271.037;115811806;Venezuela; +2018-11-28T16:02:47Z;Júlio Cesar;6036.081;114945568;Venezuela; +2018-11-28T15:50:09Z;Júlio Cesar;2314.65;114273091;Venezuela; +2018-11-28T15:44:03Z;Nathália;5194.743;114948034;Venezuela; +2018-11-28T15:39:00Z;Eduardo;3716.213;114911911;Venezuela; +2018-11-28T15:28:21Z;nathalia;2716.344;114744412;Venezuela; +2018-11-28T15:16:56Z;Júlio;3610.226;115584506;Venezuela; +2018-11-28T15:09:16Z;Nathália;1868.835;114277464;Venezuela; +2018-11-28T15:03:00Z;Júlio Cesar;8235.685;116300073;Venezuela; +2018-11-28T14:56:53Z;Eduardo;5933.711;114961206;Venezuela; +2018-11-28T14:54:27Z;Armando;1283.48;115091502;Venezuela; +2018-11-28T14:22:18Z;nathalia;4415.42;116364972;Venezuela; +2018-11-28T13:57:39Z;Sandra;2720.572;115578550;Venezuela; +2018-11-28T13:43:14Z;Júlio Cesar;5805.255;116022122;Venezuela; +2018-11-28T13:31:06Z;Júlio Cesar;3.222791;114937840;Venezuela; +2018-11-28T13:27:02Z;Eduardo;718.285;114984555;Venezuela; +2018-11-28T13:23:18Z;Eduardo;3003.876;115388682;Venezuela; +2018-11-28T13:21:39Z;Júlio;787.9883;115232279;Venezuela; +2018-11-28T13:20:14Z;nathalia;2093.842;114889237;Venezuela; +2018-11-28T13:14:28Z;Nathália;681.7045;114944170;Venezuela; +2018-11-28T13:03:07Z;nathalia;2317.586;114824613;Venezuela; +2018-11-28T12:39:42Z;Eduardo;119.0456;115779741;Venezuela; +2018-11-28T12:33:41Z;Sandra;197.8862;114840094;Venezuela; +2018-11-28T12:04:40Z;Júlio Cesar;770.2548;115332475;Venezuela; +2018-11-28T11:35:29Z;Nathália;1247.447;116133576;Venezuela; +2018-11-28T11:25:51Z;Ana;38.72032;116375719;Venezuela; +2018-11-28T10:48:14Z;Ana;4667.09;116345465;Venezuela; +2018-11-28T10:30:00Z;Júlio;3044.689;116387226;Venezuela; +2018-11-28T10:09:23Z;Júlio;5503.176;114546270;Venezuela; +2018-11-28T09:55:17Z;Armando;3837.801;115158680;Venezuela; +2018-11-28T08:52:06Z;Ana;1829.831;115495125;Venezuela; +2018-11-28T08:00:50Z;nathalia;6035.126;116361185;Venezuela; +2018-11-28T07:38:32Z;Armando;2521.706;115815754;Venezuela; +2018-11-28T07:24:32Z;Júlio Cesar;3368.794;114305984;Venezuela; +2018-11-28T07:21:14Z;Ana;793.0518;114408373;Venezuela; +2018-11-28T06:58:01Z;Júlio Cesar;7375.565;116176604;Venezuela; +2018-11-28T06:47:52Z;nathalia;1136.489;114845276;Venezuela; +2018-11-28T06:40:24Z;Nathália;458.3703;115712278;Venezuela; +2018-11-28T06:30:59Z;Armando;128.0546;115980903;Venezuela; +2018-11-28T06:17:12Z;Armando;151.4588;116202254;Venezuela; +2018-11-28T06:10:40Z;Ana;6632.83;116338703;Venezuela; +2018-11-28T05:21:21Z;Júlio;1619.373;115279648;Venezuela; +2018-11-28T05:19:18Z;Sandra;3012.914;115670252;Venezuela; +2018-11-28T05:12:32Z;nathalia;4080.514;114728858;Venezuela; +2018-11-28T05:11:53Z;Nathália;304.2349;115212994;Venezuela; +2018-11-28T04:47:30Z;Eduardo;4484.315;114584210;Venezuela; +2018-11-28T04:37:28Z;Sandra;612.8861;114265603;Venezuela; +2018-11-28T04:33:04Z;Ana;953.1452;114717657;Venezuela; +2018-11-28T03:41:08Z;Nathália;5678.927;114696996;Venezuela; +2018-11-28T03:17:35Z;Ana;2628.84;115003759;Venezuela; +2018-11-28T03:05:11Z;Júlio;947.5334;116370401;Venezuela; +2018-11-28T02:38:46Z;Ana;710.7945;116238127;Venezuela; +2018-11-28T02:34:48Z;nathalia;5187.577;115852271;Venezuela; +2018-11-28T02:34:02Z;Ana;4248.639;115687620;Venezuela; +2018-11-28T02:21:28Z;Armando;2372.167;115379118;Venezuela; +2018-11-28T02:12:16Z;nathalia;1182.737;115124179;Venezuela; +2018-11-28T02:12:14Z;Nathália;128.5398;115124273;Venezuela; +2018-11-28T02:09:11Z;Ana;4695.257;116269377;Venezuela; +2018-11-28T02:01:14Z;Armando;242.3265;114931291;Venezuela; +2018-11-28T01:40:23Z;Júlio Cesar;108.2111;115239830;Venezuela; +2018-11-28T01:33:58Z;Sandra;432.6769;114964385;Venezuela; +2018-11-28T01:22:08Z;Ana;198.2052;116214306;Venezuela; +2018-11-28T01:10:29Z;Nathália;2030.938;115222325;Venezuela; +2018-11-28T00:22:24Z;Ana;1337.828;114598552;Venezuela; +2018-11-28T00:14:21Z;Armando;4551.931;116165434;Venezuela; +2018-11-27T23:48:09Z;Eduardo;19.01015;114954774;Venezuela; +2018-11-27T23:46:29Z;Ana;2390.85;114406539;Venezuela; +2018-11-27T23:36:02Z;Nathália;575.5744;115953707;Venezuela; +2018-11-27T23:34:51Z;Sandra;490.1585;114516429;Venezuela; +2018-11-27T23:08:38Z;Nathália;3509.796;116319989;Venezuela; +2018-11-27T22:53:04Z;Nathália;195.0519;115247473;Venezuela; +2018-11-27T22:39:06Z;Eduardo;7781.466;116275690;Venezuela; +2018-11-27T22:25:41Z;Armando;1535.12;116207381;Venezuela; +2018-11-27T22:12:02Z;Júlio Cesar;1247.468;115033194;Venezuela; +2018-11-27T22:01:00Z;Ana;1378.37;116341159;Venezuela; +2018-11-27T21:40:16Z;Eduardo;45.98688;115706411;Venezuela; +2018-11-27T21:38:34Z;Ana;2334.057;116095354;Venezuela; +2018-11-27T21:22:51Z;Sandra;1141.097;116021927;Venezuela; +2018-11-27T21:06:28Z;Júlio Cesar;3760.173;114331788;Venezuela; +2018-11-27T20:52:27Z;nathalia;49.86901;115811512;Venezuela; +2018-11-27T20:52:08Z;Júlio;671.4423;116371492;Venezuela; +2018-11-27T20:44:13Z;Ana;527.326;115785234;Venezuela; +2018-11-27T20:41:18Z;Eduardo;118.7444;114669028;Venezuela; +2018-11-27T20:39:59Z;Júlio Cesar;809.049;114532254;Venezuela; +2018-11-27T20:32:58Z;Ana;1574.98;115529898;Venezuela; +2018-11-27T20:32:53Z;Armando;2428.653;114949443;Venezuela; +2018-11-27T20:10:28Z;Sandra;2426.156;114579447;Venezuela; +2018-11-27T19:33:56Z;Júlio Cesar;2418.939;114691122;Venezuela; +2018-11-27T19:23:06Z;Sandra;18.42017;114561113;Venezuela; +2018-11-27T19:11:39Z;Júlio;6445.042;116208783;Venezuela; +2018-11-27T18:57:22Z;Ana;2134.968;115653211;Venezuela; +2018-11-27T18:39:55Z;Ana;1131.505;115176139;Venezuela; +2018-11-27T17:42:01Z;nathalia;6.116802;114941096;Venezuela; +2018-11-27T17:36:05Z;Eduardo;1363.809;114491073;Venezuela; +2018-11-27T16:51:26Z;Nathália;243.1003;114997061;Venezuela; +2018-11-27T16:46:45Z;Ana;1789.102;114948493;Venezuela; +2018-11-27T16:43:33Z;Ana;497.7528;116145679;Venezuela; +2018-11-27T16:33:42Z;Júlio;189.9371;116008106;Venezuela; +2018-11-27T15:40:59Z;nathalia;3611.941;114901802;Venezuela; +2018-11-27T15:11:44Z;nathalia;61.69566;115393956;Venezuela; +2018-11-27T14:59:45Z;Júlio Cesar;982.8715;116156230;Venezuela; +2018-11-27T14:35:16Z;Armando;274.5805;114730908;Venezuela; +2018-11-27T14:28:44Z;Nathália;4750.79;115779732;Venezuela; +2018-11-27T14:28:37Z;Ana;3066.647;114829337;Venezuela; +2018-11-27T14:11:59Z;Armando;698.4525;114802444;Venezuela; +2018-11-27T14:08:25Z;Ana;3455.574;115639554;Venezuela; +2018-11-27T13:47:33Z;Ana;3367.234;114412064;Venezuela; +2018-11-27T13:46:49Z;Eduardo;2313.372;115124754;Venezuela; +2018-11-27T12:59:43Z;Sandra;1972.649;116052227;Venezuela; +2018-11-27T12:59:22Z;Júlio Cesar;1250.027;116033934;Venezuela; +2018-11-27T12:43:59Z;Júlio Cesar;3960.568;115742575;Venezuela; +2018-11-27T12:37:18Z;nathalia;491.3535;115397513;Venezuela; +2018-11-27T12:24:08Z;Armando;3109.895;116069971;Venezuela; +2018-11-27T12:13:56Z;Armando;2408.375;114523652;Venezuela; +2018-11-27T12:01:29Z;Armando;9823.261;115353921;Venezuela; +2018-11-27T11:20:40Z;Júlio;359.2584;114329656;Venezuela; +2018-11-27T11:09:17Z;Sandra;1648.507;115267530;Venezuela; +2018-11-27T11:04:39Z;Ana;797.7234;114647316;Venezuela; +2018-11-27T11:02:22Z;Júlio Cesar;1218.312;116318427;Venezuela; +2018-11-27T10:53:49Z;Júlio;2485.64;114944074;Venezuela; +2018-11-27T10:51:36Z;Armando;763.4187;116072079;Venezuela; +2018-11-27T10:17:49Z;Nathália;6748.711;115221602;Venezuela; +2018-11-27T09:46:42Z;Júlio;1940.441;115608984;Venezuela; +2018-11-27T09:29:20Z;nathalia;3018.544;115030193;Venezuela; +2018-11-27T09:22:06Z;Júlio Cesar;5992.317;114383180;Venezuela; +2018-11-27T09:18:44Z;Júlio Cesar;200.2804;115928387;Venezuela; +2018-11-27T09:17:01Z;Eduardo;1583.014;114457574;Venezuela; +2018-11-27T09:13:46Z;Armando;3282.766;114254770;Venezuela; +2018-11-27T09:08:32Z;Ana;6278.049;115144855;Venezuela; +2018-11-27T08:50:49Z;nathalia;1806.91;114298031;Venezuela; +2018-11-27T08:43:38Z;Júlio;1645.293;114961815;Venezuela; +2018-11-27T08:08:57Z;Armando;8371.146;115474009;Venezuela; +2018-11-27T08:03:21Z;Sandra;917.9673;115922324;Venezuela; +2018-11-27T08:03:12Z;Eduardo;5203.173;116193813;Venezuela; +2018-11-27T07:53:55Z;Armando;2594.76;115019612;Venezuela; +2018-11-27T07:34:43Z;Eduardo;252.1357;115866679;Venezuela; +2018-11-27T07:28:57Z;Sandra;1210.586;116188025;Venezuela; +2018-11-27T07:27:08Z;Júlio Cesar;4557.439;114522540;Venezuela; +2018-11-27T06:37:35Z;nathalia;5317.574;115005194;Venezuela; +2018-11-27T06:11:15Z;Ana;3360.866;116367832;Venezuela; +2018-11-27T04:57:48Z;nathalia;3773.759;116145282;Venezuela; +2018-11-27T04:52:45Z;Nathália;1409;114738464;Venezuela; +2018-11-27T04:44:35Z;Ana;1212.871;114971364;Venezuela; +2018-11-27T04:03:48Z;nathalia;856.3686;115641256;Venezuela; +2018-11-27T03:43:45Z;Armando;258.2591;115306742;Venezuela; +2018-11-27T03:14:35Z;Armando;4027.496;115436525;Venezuela; +2018-11-27T02:55:33Z;Armando;791.0923;115061047;Venezuela; +2018-11-27T02:46:32Z;Júlio Cesar;4401.35;114740246;Venezuela; +2018-11-27T02:21:32Z;Júlio;3561.044;115700094;Venezuela; +2018-11-27T02:19:18Z;Nathália;571.9422;114330075;Venezuela; +2018-11-27T00:46:41Z;Nathália;1489.193;116108700;Venezuela; +2018-11-27T00:41:52Z;Ana;310.587;114812466;Venezuela; +2018-11-27T00:26:10Z;Nathália;2670.3;114429354;Venezuela; +2018-11-27T00:21:12Z;nathalia;326.9118;114955312;Venezuela; +2018-11-27T00:17:20Z;nathalia;3056.937;114920595;Venezuela; +2018-11-26T23:42:22Z;nathalia;67.38052;115128809;Venezuela; +2018-11-26T23:40:27Z;Armando;1417.184;114316803;Venezuela; +2018-11-26T22:53:11Z;Eduardo;802.896;115041565;Venezuela; +2018-11-26T22:39:11Z;Sandra;1919.266;115357960;Venezuela; +2018-11-26T22:15:48Z;Sandra;95.5832;114336918;Venezuela; +2018-11-26T21:56:43Z;nathalia;3709.431;115103218;Venezuela; +2018-11-26T21:26:33Z;nathalia;1195.755;114514323;Venezuela; +2018-11-26T21:20:20Z;Nathália;525.4868;116165848;Venezuela; +2018-11-26T21:10:53Z;Eduardo;3079.384;115136397;Venezuela; +2018-11-26T20:54:21Z;Eduardo;3822.496;115980262;Venezuela; +2018-11-26T20:44:18Z;Júlio;1469.641;114384732;Venezuela; +2018-11-26T20:35:17Z;Eduardo;5105.708;115863917;Venezuela; +2018-11-26T20:34:50Z;Nathália;2984.089;116306663;Venezuela; +2018-11-26T19:39:06Z;Júlio Cesar;602.9463;116379786;Venezuela; +2018-11-26T19:22:02Z;Armando;2263.304;116305300;Venezuela; +2018-11-26T19:19:20Z;Armando;3074.492;115826641;Venezuela; +2018-11-26T18:57:55Z;Eduardo;2138.771;115365760;Venezuela; +2018-11-26T18:54:49Z;nathalia;105.4669;115997727;Venezuela; +2018-11-26T18:25:52Z;Ana;276.1485;115218708;Venezuela; +2018-11-26T18:00:40Z;Júlio;128.0115;115709716;Venezuela; +2018-11-26T17:32:49Z;Sandra;1875.997;116267394;Venezuela; +2018-11-26T17:18:52Z;Júlio;4615.086;115416382;Venezuela; +2018-11-26T16:56:38Z;Júlio;17.45039;114915732;Venezuela; +2018-11-26T16:54:07Z;Júlio Cesar;2220.949;114882079;Venezuela; +2018-11-26T16:41:24Z;Nathália;4866.175;115453350;Venezuela; +2018-11-26T16:02:21Z;Nathália;118.8785;115304745;Venezuela; +2018-11-26T15:47:39Z;Sandra;4163.693;114335650;Venezuela; +2018-11-26T15:34:37Z;Sandra;575.9986;116053814;Venezuela; +2018-11-26T15:27:49Z;nathalia;1752.442;115512747;Venezuela; +2018-11-26T15:16:05Z;Sandra;1336.976;116179398;Venezuela; +2018-11-26T15:11:37Z;Eduardo;173.6409;114867279;Venezuela; +2018-11-26T15:05:08Z;Júlio Cesar;288.5496;115248684;Venezuela; +2018-11-26T14:11:32Z;nathalia;472.3599;115866741;Venezuela; +2018-11-26T14:10:18Z;Júlio Cesar;1059.177;115555512;Venezuela; +2018-11-26T14:06:58Z;nathalia;7570.946;115967029;Venezuela; +2018-11-26T13:48:52Z;Eduardo;2566.279;115261687;Venezuela; +2018-11-26T13:44:39Z;nathalia;8167.282;115373737;Venezuela; +2018-11-26T13:34:55Z;Nathália;1603.394;116085189;Venezuela; +2018-11-26T13:27:28Z;Júlio;1407.805;115927211;Venezuela; +2018-11-26T13:07:49Z;Armando;11.37574;116266912;Venezuela; +2018-11-26T13:05:30Z;Ana;4199.59;115542983;Venezuela; +2018-11-26T12:43:40Z;Júlio Cesar;5629.811;116126414;Venezuela; +2018-11-26T12:42:15Z;Eduardo;262.5027;116388591;Venezuela; +2018-11-26T12:40:30Z;Júlio Cesar;1924.467;115427068;Venezuela; +2018-11-26T12:32:40Z;Eduardo;160.5906;114324431;Venezuela; +2018-11-26T12:25:02Z;Ana;2209.697;114587207;Venezuela; +2018-11-26T12:11:58Z;nathalia;201.5239;115012410;Venezuela; +2018-11-26T12:06:25Z;Nathália;275.5745;114914202;Venezuela; +2018-11-26T11:54:44Z;Sandra;3869.901;114680154;Venezuela; +2018-11-26T11:26:00Z;Armando;3019.211;114243573;Venezuela; +2018-11-26T11:24:39Z;Armando;3914.118;115598297;Venezuela; +2018-11-26T11:01:53Z;Júlio Cesar;180.4015;115430141;Venezuela; +2018-11-26T10:41:56Z;Sandra;1605.732;116022301;Venezuela; +2018-11-26T10:32:36Z;Armando;9696.383;114809847;Venezuela; +2018-11-26T10:27:40Z;Sandra;6698.781;116329976;Venezuela; +2018-11-26T09:53:33Z;Nathália;6645.274;115636628;Venezuela; +2018-11-26T09:20:23Z;Nathália;3342.743;115326474;Venezuela; +2018-11-26T08:47:04Z;Sandra;6620.342;114415453;Venezuela; +2018-11-26T08:43:46Z;Sandra;609.1374;115675686;Venezuela; +2018-11-26T08:41:38Z;Júlio Cesar;3304.773;115719879;Venezuela; +2018-11-26T08:02:58Z;nathalia;717.0212;116176208;Venezuela; +2018-11-26T07:02:12Z;Eduardo;937.1265;114728506;Venezuela; +2018-11-26T06:43:23Z;Ana;4420.47;115273738;Venezuela; +2018-11-26T05:58:41Z;Ana;1943.446;116043163;Venezuela; +2018-11-26T05:58:05Z;Júlio;4780.009;115491159;Venezuela; +2018-11-26T05:53:54Z;Ana;984.9829;115883359;Venezuela; +2018-11-26T05:42:33Z;Sandra;3473.197;116219093;Venezuela; +2018-11-26T05:25:50Z;Júlio Cesar;2371.665;114280683;Venezuela; +2018-11-26T05:18:08Z;Ana;2864.542;114720563;Venezuela; +2018-11-26T04:28:16Z;Júlio;1137.565;115479345;Venezuela; +2018-11-26T04:26:00Z;Júlio;4916.096;114606814;Venezuela; +2018-11-26T03:29:53Z;Eduardo;1380.646;114868315;Venezuela; +2018-11-26T03:26:03Z;Júlio;1917.892;116062110;Venezuela; +2018-11-26T03:13:57Z;nathalia;4520.134;115625077;Venezuela; +2018-11-26T03:13:21Z;Sandra;7103.151;115703738;Venezuela; +2018-11-26T03:09:31Z;Sandra;552.8963;114557378;Venezuela; +2018-11-26T03:02:16Z;Sandra;163.0169;114469766;Venezuela; +2018-11-26T02:39:48Z;Júlio;638.4118;115141363;Venezuela; +2018-11-26T02:36:08Z;Armando;197.9815;116015885;Venezuela; +2018-11-26T01:59:49Z;Sandra;1389.791;115059757;Venezuela; +2018-11-26T01:55:28Z;Ana;235.8195;115023559;Venezuela; +2018-11-26T01:36:45Z;Júlio Cesar;155.9628;115573149;Venezuela; +2018-11-26T00:37:19Z;Júlio Cesar;7013.211;115148786;Venezuela; +2018-11-26T00:31:12Z;Ana;1165.07;116222602;Venezuela; +2018-11-26T00:26:22Z;Júlio;1239.31;115876206;Venezuela; +2018-11-26T00:21:49Z;Júlio;806.1766;114445186;Venezuela; +2018-11-25T23:49:56Z;Nathália;2268.194;115049983;Venezuela; +2018-11-25T23:09:32Z;Júlio Cesar;2553.227;115287070;Venezuela; +2018-11-25T23:04:11Z;Eduardo;3933.295;115946856;Venezuela; +2018-11-25T22:27:12Z;Eduardo;5345.245;114282552;Venezuela; +2018-11-25T21:09:10Z;Júlio Cesar;9554.572;115304797;Venezuela; +2018-11-25T20:59:10Z;Eduardo;2116.977;115698613;Venezuela; +2018-11-25T20:36:08Z;Nathália;5541.475;115765188;Venezuela; +2018-11-25T20:24:11Z;Júlio;1157.833;114852209;Venezuela; +2018-11-25T20:20:17Z;Armando;616.7744;114705677;Venezuela; +2018-11-25T20:14:46Z;Ana;259.7503;116380193;Venezuela; +2018-11-25T19:55:46Z;Júlio;1422.824;116376104;Venezuela; +2018-11-25T19:16:43Z;Ana;547.5111;115921470;Venezuela; +2018-11-25T19:12:29Z;Nathália;2.118928;115709289;Venezuela; +2018-11-25T18:59:33Z;Júlio Cesar;3248.014;115678180;Venezuela; +2018-11-25T18:19:54Z;Armando;2574.484;115550717;Venezuela; +2018-11-25T18:08:57Z;Júlio Cesar;597.2285;116040744;Venezuela; +2018-11-25T17:54:12Z;Sandra;2308.233;116018793;Venezuela; +2018-11-25T17:05:30Z;Sandra;16.71206;115366387;Venezuela; +2018-11-25T17:03:05Z;Sandra;775.3955;116076981;Venezuela; +2018-11-25T16:49:01Z;Armando;1176.395;115847527;Venezuela; +2018-11-25T16:39:25Z;nathalia;942.0955;115405088;Venezuela; +2018-11-25T16:38:55Z;Sandra;1117.635;116266161;Venezuela; +2018-11-25T16:32:14Z;Júlio;4602.96;115800007;Venezuela; +2018-11-25T16:10:54Z;Júlio;727.5852;115593766;Venezuela; +2018-11-25T16:07:21Z;Eduardo;39.8556;114299349;Venezuela; +2018-11-25T16:05:46Z;Nathália;927.5626;115586598;Venezuela; +2018-11-25T15:49:07Z;Júlio Cesar;1163.665;114551188;Venezuela; +2018-11-25T15:47:33Z;Júlio;1265.321;115242271;Venezuela; +2018-11-25T15:46:23Z;Júlio;2890.166;115893521;Venezuela; +2018-11-25T15:09:19Z;Nathália;445.5665;114676423;Venezuela; +2018-11-25T15:01:18Z;Armando;285.6686;115967426;Venezuela; +2018-11-25T14:56:03Z;Armando;1823.996;114548437;Venezuela; +2018-11-25T14:47:40Z;Eduardo;331.7869;116125369;Venezuela; +2018-11-25T14:45:28Z;Júlio;813.8905;115394534;Venezuela; +2018-11-25T14:45:11Z;Júlio Cesar;1842.953;114911343;Venezuela; +2018-11-25T14:43:30Z;nathalia;1965.202;115481303;Venezuela; +2018-11-25T14:39:55Z;Sandra;5293.368;115458638;Venezuela; +2018-11-25T14:19:08Z;Eduardo;4151.166;115368914;Venezuela; +2018-11-25T14:18:42Z;Eduardo;1123.958;114684165;Venezuela; +2018-11-25T14:07:56Z;Júlio;848.9222;116103403;Venezuela; +2018-11-25T14:05:49Z;Eduardo;6013.93;114965304;Venezuela; +2018-11-25T13:45:00Z;Armando;589.0414;116279623;Venezuela; +2018-11-25T13:39:45Z;Eduardo;374.1275;114367501;Venezuela; +2018-11-25T13:20:04Z;Júlio;285.6995;114307924;Venezuela; +2018-11-25T13:07:47Z;Júlio Cesar;890.7388;115743129;Venezuela; +2018-11-25T13:06:41Z;Armando;5366.062;114590434;Venezuela; +2018-11-25T12:58:26Z;Sandra;1401.546;115933807;Venezuela; +2018-11-25T12:55:01Z;Sandra;2905.189;114612603;Venezuela; +2018-11-25T12:31:26Z;Ana;597.1897;115125070;Venezuela; +2018-11-25T11:16:59Z;Eduardo;965.5572;115854215;Venezuela; +2018-11-25T11:02:40Z;Eduardo;4491.821;114777309;Venezuela; +2018-11-25T10:56:41Z;Sandra;4472.772;115558722;Venezuela; +2018-11-25T10:42:25Z;Armando;833.5676;114656043;Venezuela; +2018-11-25T10:32:28Z;Eduardo;2473.15;114439296;Venezuela; +2018-11-25T10:30:43Z;Júlio Cesar;658.3077;114355071;Venezuela; +2018-11-25T10:20:09Z;Júlio;6772.031;115333839;Venezuela; +2018-11-25T10:19:58Z;Sandra;9325.499;116099351;Venezuela; +2018-11-25T10:07:27Z;Armando;2175.659;116289552;Venezuela; +2018-11-25T09:55:16Z;Eduardo;789.092;115726326;Venezuela; +2018-11-25T09:16:23Z;Júlio Cesar;92.03319;115341328;Venezuela; +2018-11-25T08:05:13Z;Júlio Cesar;16.72765;115650150;Venezuela; +2018-11-25T07:15:50Z;Armando;308.8848;114623249;Venezuela; +2018-11-25T06:44:54Z;Nathália;2892.74;114329700;Venezuela; +2018-11-25T06:26:56Z;Júlio;2244.055;115235720;Venezuela; +2018-11-25T05:53:18Z;Eduardo;1157.456;114215840;Venezuela; +2018-11-25T05:51:34Z;Eduardo;379.1614;116141973;Venezuela; +2018-11-25T05:48:44Z;Nathália;458.9539;114260984;Venezuela; +2018-11-25T05:11:52Z;Júlio;3964.829;114452435;Venezuela; +2018-11-25T05:00:17Z;nathalia;2757.083;115021002;Venezuela; +2018-11-25T04:58:37Z;Ana;236.2273;115255079;Venezuela; +2018-11-25T03:56:30Z;nathalia;259.8098;115731745;Venezuela; +2018-11-25T03:37:18Z;Nathália;401.7637;114490336;Venezuela; +2018-11-25T03:33:02Z;nathalia;1444.764;116000755;Venezuela; +2018-11-25T03:15:20Z;nathalia;6773.236;114768384;Venezuela; +2018-11-25T03:12:18Z;Júlio;410.4012;114297232;Venezuela; +2018-11-25T03:00:42Z;nathalia;814.1887;114336812;Venezuela; +2018-11-25T01:40:13Z;nathalia;1941.936;115943315;Venezuela; +2018-11-25T01:33:37Z;nathalia;741.23;114561498;Venezuela; +2018-11-25T01:03:40Z;Júlio;820.2178;115641292;Venezuela; +2018-11-25T00:57:01Z;Sandra;185.8836;116036519;Venezuela; +2018-11-25T00:51:32Z;Júlio Cesar;2325.51;115407522;Venezuela; +2018-11-25T00:44:04Z;Armando;1625.125;116078055;Venezuela; +2018-11-25T00:43:45Z;Sandra;2663.7;116299374;Venezuela; +2018-11-25T00:40:47Z;Ana;2123.081;115716218;Venezuela; +2018-11-25T00:23:47Z;Júlio;507.064;115707814;Venezuela; +2018-11-25T00:05:33Z;Eduardo;4458.866;115239581;Venezuela; +2018-11-25T00:01:33Z;Sandra;484.5495;114773561;Venezuela; +2018-11-24T23:40:20Z;Júlio;4724.176;116196597;Venezuela; +2018-11-24T23:13:11Z;Sandra;5630.377;116221001;Venezuela; +2018-11-24T22:18:06Z;Armando;4103.433;115369970;Venezuela; +2018-11-24T22:17:37Z;Sandra;273.5362;116317872;Venezuela; +2018-11-24T21:25:18Z;Júlio;3365.791;115094703;Venezuela; +2018-11-24T21:08:03Z;Ana;1152.617;114638480;Venezuela; +2018-11-24T21:02:40Z;Eduardo;6726.619;114629119;Venezuela; +2018-11-24T21:01:40Z;Sandra;4084.502;114534818;Venezuela; +2018-11-24T20:28:21Z;Ana;4823.8;115670521;Venezuela; +2018-11-24T20:28:18Z;Sandra;501.9552;115912620;Venezuela; +2018-11-24T20:08:23Z;nathalia;1671.518;114208509;Venezuela; +2018-11-24T20:01:54Z;Ana;2707.012;115824418;Venezuela; +2018-11-24T19:43:02Z;Nathália;3487.185;114759951;Venezuela; +2018-11-24T19:33:29Z;Nathália;2834.427;116362945;Venezuela; +2018-11-24T19:30:21Z;Júlio Cesar;4777.613;116231572;Venezuela; +2018-11-24T19:25:40Z;Júlio;2648.478;115873272;Venezuela; +2018-11-24T19:14:40Z;Júlio;955.4922;114747887;Venezuela; +2018-11-24T19:11:45Z;Sandra;2171.926;114365070;Venezuela; +2018-11-24T17:37:51Z;Júlio Cesar;2417.872;114414477;Venezuela; +2018-11-24T17:34:04Z;nathalia;262.7315;115626309;Venezuela; +2018-11-24T17:16:21Z;Júlio;105.1377;116294309;Venezuela; +2018-11-24T17:15:34Z;nathalia;3365.667;114666957;Venezuela; +2018-11-24T16:58:02Z;Eduardo;1374.145;114811570;Venezuela; +2018-11-24T16:55:05Z;Júlio;251.3277;116291745;Venezuela; +2018-11-24T16:48:52Z;Júlio Cesar;1179.267;115623858;Venezuela; +2018-11-24T16:45:43Z;Júlio;330.9184;114219089;Venezuela; +2018-11-24T16:01:52Z;Júlio Cesar;4631.872;114746592;Venezuela; +2018-11-24T15:35:05Z;Júlio;9616.867;114422235;Venezuela; +2018-11-24T15:28:19Z;Nathália;431.8401;115919841;Venezuela; +2018-11-24T15:14:58Z;Eduardo;2864.864;114989799;Venezuela; +2018-11-24T15:10:35Z;Armando;3635.206;115898580;Venezuela; +2018-11-24T14:53:31Z;Sandra;468.6593;115396730;Venezuela; +2018-11-24T14:19:32Z;Júlio Cesar;3046.09;115500015;Venezuela; +2018-11-24T14:11:37Z;Armando;4948.683;114461938;Venezuela; +2018-11-24T14:06:49Z;Armando;13093.99;116080829;Venezuela; +2018-11-24T13:23:10Z;Júlio Cesar;536.4981;115225934;Venezuela; +2018-11-24T13:17:46Z;Ana;1728.239;115599943;Venezuela; +2018-11-24T13:17:19Z;Sandra;776.6054;114911655;Venezuela; +2018-11-24T13:14:11Z;Ana;1548.304;115941173;Venezuela; +2018-11-24T12:55:29Z;nathalia;2468.896;114389364;Venezuela; +2018-11-24T12:40:37Z;Eduardo;220.2318;114713855;Venezuela; +2018-11-24T12:14:43Z;Eduardo;658.7281;115260560;Venezuela; +2018-11-24T12:13:59Z;Sandra;2368.061;116195921;Venezuela; +2018-11-24T11:51:33Z;Armando;4152.528;114608654;Venezuela; +2018-11-24T11:35:18Z;Nathália;1976.967;115339766;Venezuela; +2018-11-24T11:05:13Z;Júlio Cesar;4830.328;115229046;Venezuela; +2018-11-24T11:00:46Z;Nathália;6269.446;114237835;Venezuela; +2018-11-24T10:54:51Z;Nathália;1794.561;114551790;Venezuela; +2018-11-24T10:48:31Z;nathalia;1978.153;115235005;Venezuela; +2018-11-24T10:47:06Z;Ana;148.8675;114950122;Venezuela; +2018-11-24T09:32:51Z;Júlio Cesar;268.592;114479446;Venezuela; +2018-11-24T08:50:21Z;Júlio Cesar;52.76221;115899219;Venezuela; +2018-11-24T08:49:08Z;Júlio;2774.968;114815596;Venezuela; +2018-11-24T08:31:52Z;Sandra;929.9392;114608452;Venezuela; +2018-11-24T08:21:57Z;nathalia;1431.349;115219409;Venezuela; +2018-11-24T08:10:03Z;Armando;2009.259;114696228;Venezuela; +2018-11-24T08:08:31Z;Ana;2411.01;115707058;Venezuela; +2018-11-24T07:55:53Z;Júlio;9263.022;114512398;Venezuela; +2018-11-24T07:45:41Z;Sandra;960.0731;114237716;Venezuela; +2018-11-24T07:42:43Z;Sandra;1968.684;115238724;Venezuela; +2018-11-24T07:40:07Z;Nathália;466.9638;114439955;Venezuela; +2018-11-24T07:32:33Z;Eduardo;254.9441;116290991;Venezuela; +2018-11-24T06:48:33Z;Júlio Cesar;3602.012;115891066;Venezuela; +2018-11-24T06:29:51Z;Júlio;793.2634;114596015;Venezuela; +2018-11-24T06:13:03Z;Eduardo;104.2729;115051198;Venezuela; +2018-11-24T06:07:32Z;Eduardo;1344.296;115174659;Venezuela; +2018-11-24T05:57:03Z;Sandra;798.7137;115817203;Venezuela; +2018-11-24T05:38:14Z;Ana;457.5178;114562402;Venezuela; +2018-11-24T05:34:45Z;nathalia;5.68476;116380246;Venezuela; +2018-11-24T05:00:23Z;Sandra;720.6229;115289715;Venezuela; +2018-11-24T04:43:22Z;Júlio Cesar;128.6252;115912203;Venezuela; +2018-11-24T04:15:47Z;Sandra;1338.745;116340724;Venezuela; +2018-11-24T04:09:48Z;Nathália;5090.474;116338879;Venezuela; +2018-11-24T03:58:17Z;Júlio Cesar;2854.091;114519547;Venezuela; +2018-11-24T03:40:41Z;Nathália;2416.26;115930002;Venezuela; +2018-11-24T03:23:19Z;Júlio Cesar;30.15177;114648776;Venezuela; +2018-11-24T03:18:11Z;Eduardo;364.0421;116062114;Venezuela; +2018-11-24T03:16:54Z;Sandra;4163.251;115236341;Venezuela; +2018-11-24T02:30:28Z;Sandra;6342.232;114385999;Venezuela; +2018-11-24T02:18:17Z;Nathália;1199.415;116233423;Venezuela; +2018-11-24T01:59:53Z;Júlio Cesar;4826.133;114393341;Venezuela; +2018-11-24T01:38:56Z;Júlio Cesar;9499.349;114336172;Venezuela; +2018-11-24T01:27:46Z;Armando;5836.845;114356585;Venezuela; +2018-11-24T01:11:07Z;Nathália;3225.627;114205727;Venezuela; +2018-11-24T00:48:29Z;nathalia;1393.962;116058410;Venezuela; +2018-11-23T23:56:58Z;Ana;3015.12;114532157;Venezuela; +2018-11-23T23:36:40Z;Júlio;910.7517;115169723;Venezuela; +2018-11-23T23:36:04Z;Ana;1837.838;115422083;Venezuela; +2018-11-23T23:24:41Z;Júlio Cesar;1904.577;114949118;Venezuela; +2018-11-23T23:00:50Z;Júlio;1366.238;114431108;Venezuela; +2018-11-23T22:59:31Z;Nathália;496.8406;114745264;Venezuela; +2018-11-23T22:48:28Z;Júlio;152.6483;115874826;Venezuela; +2018-11-23T22:45:39Z;Júlio;4241.989;115597826;Venezuela; +2018-11-23T22:42:02Z;Sandra;899.6791;114285378;Venezuela; +2018-11-23T22:41:15Z;nathalia;1533.495;116396617;Venezuela; +2018-11-23T22:29:51Z;Eduardo;3265.655;114602805;Venezuela; +2018-11-23T22:22:46Z;Ana;226.8293;114569277;Venezuela; +2018-11-23T21:34:38Z;Eduardo;443.3232;114452566;Venezuela; +2018-11-23T21:23:47Z;nathalia;4447.509;116351851;Venezuela; +2018-11-23T21:20:39Z;nathalia;8520.021;114563741;Venezuela; +2018-11-23T21:20:27Z;nathalia;963.27;115600840;Venezuela; +2018-11-23T20:46:52Z;nathalia;7669.53;115801315;Venezuela; +2018-11-23T20:37:10Z;Eduardo;114.0233;114433472;Venezuela; +2018-11-23T20:18:31Z;Eduardo;2364.51;114620767;Venezuela; +2018-11-23T20:16:55Z;Armando;8315.367;114448892;Venezuela; +2018-11-23T19:53:50Z;Ana;1063.849;115232892;Venezuela; +2018-11-23T19:47:40Z;Nathália;980.9409;115757700;Venezuela; +2018-11-23T19:44:44Z;Júlio Cesar;5706.144;115501023;Venezuela; +2018-11-23T19:37:43Z;Ana;1055.569;116022565;Venezuela; +2018-11-23T19:33:51Z;nathalia;2221.353;116051952;Venezuela; +2018-11-23T19:20:51Z;Júlio Cesar;5974.397;114815320;Venezuela; +2018-11-23T19:20:50Z;Ana;4246.332;116065067;Venezuela; +2018-11-23T19:09:57Z;Armando;1067.376;114371177;Venezuela; +2018-11-23T18:25:55Z;Ana;54.64348;116247491;Venezuela; +2018-11-23T18:06:57Z;nathalia;2835.644;115703960;Venezuela; +2018-11-23T18:02:33Z;Eduardo;934.0086;114541405;Venezuela; +2018-11-23T18:01:23Z;Júlio Cesar;309.995;114833917;Venezuela; +2018-11-23T17:59:16Z;Nathália;244.6942;116367988;Venezuela; +2018-11-23T17:45:47Z;Sandra;129.2814;114244285;Venezuela; +2018-11-23T17:35:51Z;Eduardo;107.4593;115064878;Venezuela; +2018-11-23T17:18:26Z;Nathália;4370.49;114860156;Venezuela; +2018-11-23T16:33:48Z;Eduardo;1215.49;115728836;Venezuela; +2018-11-23T16:27:15Z;nathalia;3463.078;114297530;Venezuela; +2018-11-23T16:14:42Z;Ana;1390.746;115771258;Venezuela; +2018-11-23T16:08:58Z;Sandra;123.9984;115846284;Venezuela; +2018-11-23T16:02:20Z;Júlio;620.9687;115634567;Venezuela; +2018-11-23T14:51:33Z;Armando;1121.155;114735539;Venezuela; +2018-11-23T14:45:39Z;Júlio Cesar;894.3277;114220563;Venezuela; +2018-11-23T14:41:51Z;Júlio Cesar;1010.058;115489113;Venezuela; +2018-11-23T14:09:13Z;Sandra;2028.943;114667463;Venezuela; +2018-11-23T13:48:20Z;nathalia;4070.133;114771152;Venezuela; +2018-11-23T13:35:57Z;Ana;8430.892;116118071;Venezuela; +2018-11-23T13:26:55Z;nathalia;1398.205;115673599;Venezuela; +2018-11-23T13:17:41Z;Eduardo;152.2791;116307296;Venezuela; +2018-11-23T13:17:32Z;Júlio;4132.576;114654763;Venezuela; +2018-11-23T13:10:39Z;Sandra;3089.011;115233225;Venezuela; +2018-11-23T13:08:01Z;nathalia;72.67201;114744165;Venezuela; +2018-11-23T12:42:11Z;Sandra;345.7638;114582569;Venezuela; +2018-11-23T12:35:59Z;Eduardo;3450.936;115515652;Venezuela; +2018-11-23T12:35:38Z;Sandra;1386.375;115109563;Venezuela; +2018-11-23T12:32:08Z;Júlio;6272.465;115049524;Venezuela; +2018-11-23T12:11:37Z;Júlio Cesar;7370.285;114553064;Venezuela; +2018-11-23T11:42:38Z;Eduardo;2303.059;115724478;Venezuela; +2018-11-23T11:12:47Z;Sandra;3174.545;114335392;Venezuela; +2018-11-23T11:03:37Z;nathalia;1396.444;115259745;Venezuela; +2018-11-23T10:35:24Z;Armando;1722.21;114560076;Venezuela; +2018-11-23T10:25:51Z;nathalia;3.816517;116089712;Venezuela; +2018-11-23T10:17:34Z;Júlio;2301.407;115286464;Venezuela; +2018-11-23T09:50:02Z;Júlio Cesar;1055.09;114623021;Venezuela; +2018-11-23T09:42:23Z;Júlio;6836.03;115477893;Venezuela; +2018-11-23T09:31:28Z;Eduardo;1678.6;116167561;Venezuela; +2018-11-23T09:30:32Z;Júlio Cesar;6345.913;114975511;Venezuela; +2018-11-23T09:15:27Z;Eduardo;300.3931;115985138;Venezuela; +2018-11-23T09:10:12Z;Ana;2761.707;115344206;Venezuela; +2018-11-23T09:07:59Z;nathalia;2633.27;115647883;Venezuela; +2018-11-23T08:54:00Z;Sandra;3701.635;115263141;Venezuela; +2018-11-23T08:48:25Z;Júlio;3627.836;115010389;Venezuela; +2018-11-23T08:47:38Z;Eduardo;2635.714;115262210;Venezuela; +2018-11-23T08:40:31Z;Armando;3849.279;114246644;Venezuela; +2018-11-23T08:35:04Z;Armando;1983.307;115441709;Venezuela; +2018-11-23T08:27:19Z;Armando;597.173;115142349;Venezuela; +2018-11-23T07:30:52Z;Sandra;114.8815;114252506;Venezuela; +2018-11-23T07:30:28Z;nathalia;4800.736;116359175;Venezuela; +2018-11-23T07:25:14Z;Júlio Cesar;151.88;114899071;Venezuela; +2018-11-23T07:15:08Z;Ana;2966.709;116033805;Venezuela; +2018-11-23T07:10:29Z;Júlio;404.6252;115781425;Venezuela; +2018-11-23T07:05:47Z;Nathália;3646.326;114242597;Venezuela; +2018-11-23T07:01:12Z;nathalia;2857.218;115466129;Venezuela; +2018-11-23T06:54:35Z;Nathália;482.1977;116067538;Venezuela; +2018-11-23T05:31:41Z;Júlio;1262.58;115952559;Venezuela; +2018-11-23T05:20:19Z;Júlio;1698.374;116187623;Venezuela; +2018-11-23T04:56:24Z;Sandra;2591.267;115606594;Venezuela; +2018-11-23T04:50:35Z;Nathália;2684.716;116047439;Venezuela; +2018-11-23T04:40:49Z;Ana;1200.53;114813867;Venezuela; +2018-11-23T04:40:15Z;Nathália;2406.901;114719719;Venezuela; +2018-11-23T04:12:23Z;Sandra;1498.559;115689453;Venezuela; +2018-11-23T04:10:15Z;Ana;2401.415;116166731;Venezuela; +2018-11-23T04:03:24Z;Júlio;378.3089;114830504;Venezuela; +2018-11-23T03:45:21Z;Ana;1533.928;115909975;Venezuela; +2018-11-23T03:39:05Z;Júlio;48.20905;116212370;Venezuela; +2018-11-23T03:05:25Z;Júlio;1442.735;114414504;Venezuela; +2018-11-23T02:33:55Z;Armando;3553.104;115537905;Venezuela; +2018-11-23T02:27:15Z;Sandra;1749.808;115383426;Venezuela; +2018-11-23T02:09:11Z;Júlio Cesar;1137.981;114608752;Venezuela; +2018-11-23T02:05:59Z;Júlio;1360.975;114640497;Venezuela; +2018-11-23T01:38:13Z;Júlio;1207.541;114560416;Venezuela; +2018-11-23T01:36:03Z;Ana;2659.186;114947495;Venezuela; +2018-11-23T01:22:54Z;Eduardo;2055.263;114514994;Venezuela; +2018-11-23T01:16:24Z;nathalia;2792.01;115044163;Venezuela; +2018-11-23T01:13:30Z;Ana;4801.85;115566318;Venezuela; +2018-11-23T01:05:25Z;Ana;2117.489;114873218;Venezuela; +2018-11-22T23:56:10Z;Nathália;902.2028;114625205;Venezuela; +2018-11-22T23:33:17Z;Júlio;7065.826;114417059;Venezuela; +2018-11-22T23:20:46Z;Sandra;151.6847;115230757;Venezuela; +2018-11-22T23:17:43Z;Júlio Cesar;1036.11;115184403;Venezuela; +2018-11-22T23:10:39Z;Ana;8089.007;114929636;Venezuela; +2018-11-22T22:52:53Z;Nathália;2828.742;115306296;Venezuela; +2018-11-22T22:52:39Z;Eduardo;1.666418;115088721;Venezuela; +2018-11-22T22:48:23Z;Nathália;1586.61;114289146;Venezuela; +2018-11-22T22:45:51Z;Armando;2690.607;114371316;Venezuela; +2018-11-22T22:43:57Z;Júlio;5021.199;114394782;Venezuela; +2018-11-22T22:41:54Z;nathalia;6284.923;114653679;Venezuela; +2018-11-22T22:35:23Z;Eduardo;1635.594;115795879;Venezuela; +2018-11-22T22:32:41Z;Armando;3528.282;114294732;Venezuela; +2018-11-22T22:24:09Z;Júlio;4121.034;115015029;Venezuela; +2018-11-22T22:21:05Z;Júlio;179.4844;114384236;Venezuela; +2018-11-22T22:18:29Z;Eduardo;776.7424;116240310;Venezuela; +2018-11-22T22:12:23Z;Eduardo;1653.377;116277510;Venezuela; +2018-11-22T22:02:22Z;nathalia;386.8521;116284499;Venezuela; +2018-11-22T21:43:59Z;Armando;1304.689;114658458;Venezuela; +2018-11-22T21:37:10Z;nathalia;495.4631;114606027;Venezuela; +2018-11-22T21:35:03Z;Armando;5564.842;114462243;Venezuela; +2018-11-22T21:20:24Z;Júlio;198.983;114720932;Venezuela; +2018-11-22T21:12:07Z;Armando;526.6452;115397839;Venezuela; +2018-11-22T21:02:25Z;Sandra;2462.35;116327185;Venezuela; +2018-11-22T21:02:11Z;Ana;3834.938;115036261;Venezuela; +2018-11-22T20:31:03Z;Armando;138.7979;114298697;Venezuela; +2018-11-22T20:28:03Z;Nathália;1832.273;116152735;Venezuela; +2018-11-22T20:08:28Z;Armando;3079.775;115032537;Venezuela; +2018-11-22T19:52:18Z;Armando;1145.242;115246774;Venezuela; +2018-11-22T19:40:17Z;Júlio;3209.143;114645611;Venezuela; +2018-11-22T19:16:31Z;Armando;2873.824;115916862;Venezuela; +2018-11-22T19:16:01Z;Júlio;374.7955;114411744;Venezuela; +2018-11-22T19:03:35Z;Nathália;3569.851;115272627;Venezuela; +2018-11-22T18:59:16Z;nathalia;1313.139;115460008;Venezuela; +2018-11-22T18:44:05Z;Júlio;184.8071;115903435;Venezuela; +2018-11-22T18:22:36Z;Júlio;68.36049;116125317;Venezuela; +2018-11-22T18:04:09Z;Armando;644.8832;116040838;Venezuela; +2018-11-22T18:03:32Z;Júlio Cesar;1830.706;116120173;Venezuela; +2018-11-22T18:01:27Z;Armando;737.424;115346066;Venezuela; +2018-11-22T17:39:35Z;Ana;1143.455;116086412;Venezuela; +2018-11-22T17:12:43Z;Eduardo;1269.825;115798234;Venezuela; +2018-11-22T16:35:00Z;Júlio;2857.989;114533976;Venezuela; +2018-11-22T16:29:07Z;Ana;4292.442;116339994;Venezuela; +2018-11-22T16:13:35Z;Armando;310.0026;115166296;Venezuela; +2018-11-22T16:08:28Z;Júlio Cesar;1142.095;114813695;Venezuela; +2018-11-22T15:49:56Z;Armando;1.353741;115232200;Venezuela; +2018-11-22T15:00:05Z;Eduardo;2382.698;115825481;Venezuela; +2018-11-22T14:36:12Z;Júlio Cesar;3341.377;115960367;Venezuela; +2018-11-22T14:26:57Z;Ana;1161.709;114349722;Venezuela; +2018-11-22T14:13:39Z;Armando;3020.625;115922697;Venezuela; +2018-11-22T14:10:10Z;Júlio Cesar;1366.133;115697047;Venezuela; +2018-11-22T14:05:48Z;Armando;5.839447;114951566;Venezuela; +2018-11-22T13:22:43Z;Nathália;4794.517;115378242;Venezuela; +2018-11-22T13:20:06Z;Armando;677.1204;114669528;Venezuela; +2018-11-22T13:17:13Z;nathalia;98.19432;115708393;Venezuela; +2018-11-22T12:50:52Z;Armando;328.1138;115770751;Venezuela; +2018-11-22T12:41:36Z;Júlio Cesar;1219.14;115657500;Venezuela; +2018-11-22T12:28:11Z;Júlio Cesar;1391.982;115800960;Venezuela; +2018-11-22T12:22:53Z;Júlio;6282.336;115785153;Venezuela; +2018-11-22T12:19:15Z;Ana;1085.605;114388932;Venezuela; +2018-11-22T12:10:45Z;Eduardo;7335.406;114565576;Venezuela; +2018-11-22T12:06:18Z;Ana;4018.374;115817928;Venezuela; +2018-11-22T11:58:27Z;nathalia;716.6738;114334506;Venezuela; +2018-11-22T11:53:07Z;nathalia;1996.727;115040798;Venezuela; +2018-11-22T11:48:42Z;Sandra;2824.738;115120137;Venezuela; +2018-11-22T11:42:30Z;Sandra;353.7372;115693308;Venezuela; +2018-11-22T11:06:34Z;Nathália;5987.366;114514469;Venezuela; +2018-11-22T10:19:13Z;Júlio;5891.088;115146772;Venezuela; +2018-11-22T09:44:04Z;Ana;1926.704;116207951;Venezuela; +2018-11-22T09:40:16Z;Ana;1468.315;114378596;Venezuela; +2018-11-22T09:24:35Z;Nathália;2279.762;116052897;Venezuela; +2018-11-22T09:20:38Z;Júlio Cesar;1132.794;114672099;Venezuela; +2018-11-22T09:14:48Z;Júlio;1717.482;114932791;Venezuela; +2018-11-22T08:53:35Z;Sandra;2516.853;115992334;Venezuela; +2018-11-22T08:44:12Z;Ana;934.7716;115647639;Venezuela; +2018-11-22T08:07:42Z;Armando;899.8771;115858222;Venezuela; +2018-11-22T08:06:59Z;Sandra;2550.41;115501873;Venezuela; +2018-11-22T07:59:26Z;Júlio Cesar;914.5491;115552761;Venezuela; +2018-11-22T07:54:02Z;Júlio;510.2749;115098977;Venezuela; +2018-11-22T07:51:13Z;nathalia;2718.102;115799941;Venezuela; +2018-11-22T07:38:13Z;nathalia;5396.95;115892030;Venezuela; +2018-11-22T07:33:00Z;Armando;1304.424;114367834;Venezuela; +2018-11-22T07:26:14Z;Júlio;1169.936;116316217;Venezuela; +2018-11-22T07:17:23Z;nathalia;1189.226;114480657;Venezuela; +2018-11-22T07:06:13Z;Ana;13.80434;114294461;Venezuela; +2018-11-22T07:05:17Z;Nathália;269.5523;114414075;Venezuela; +2018-11-22T07:04:30Z;nathalia;10952.75;116060649;Venezuela; +2018-11-22T06:58:44Z;Júlio Cesar;403.0218;115132827;Venezuela; +2018-11-22T06:54:22Z;Ana;1061.408;114465302;Venezuela; +2018-11-22T06:34:38Z;Nathália;1104.964;114376334;Venezuela; +2018-11-22T06:24:03Z;Sandra;5028.382;115094049;Venezuela; +2018-11-22T06:20:12Z;Eduardo;507.1039;114420294;Venezuela; +2018-11-22T05:37:12Z;Eduardo;5099.247;114849928;Venezuela; +2018-11-22T05:33:46Z;nathalia;1109.495;115343108;Venezuela; +2018-11-22T05:27:54Z;Armando;1360.584;114241396;Venezuela; +2018-11-22T05:17:55Z;Eduardo;181.9455;115678347;Venezuela; +2018-11-22T05:15:53Z;Nathália;395.0507;115625998;Venezuela; +2018-11-22T04:53:17Z;Eduardo;3051.203;116038461;Venezuela; +2018-11-22T04:47:49Z;Nathália;1172.494;114241874;Venezuela; +2018-11-22T04:44:53Z;nathalia;825.3063;115282927;Venezuela; +2018-11-22T03:57:19Z;Armando;1701.512;114735914;Venezuela; +2018-11-22T03:48:01Z;Armando;1047.912;114297739;Venezuela; +2018-11-22T03:22:48Z;nathalia;655.8801;114761607;Venezuela; +2018-11-22T02:54:54Z;Júlio;1520.159;114206150;Venezuela; +2018-11-22T02:46:03Z;Ana;237.2341;115908611;Venezuela; +2018-11-22T02:45:56Z;nathalia;3235.978;114674350;Venezuela; +2018-11-22T02:22:21Z;Júlio Cesar;4526.204;114348079;Venezuela; +2018-11-22T02:05:22Z;Nathália;4916.304;115324654;Venezuela; +2018-11-22T01:11:31Z;nathalia;4151.895;115463330;Venezuela; +2018-11-21T23:57:02Z;Nathália;7165.524;116283579;Venezuela; +2018-11-21T23:52:43Z;Ana;2991.204;114590262;Venezuela; +2018-11-21T23:51:10Z;Sandra;8643.171;115181851;Venezuela; +2018-11-21T23:43:12Z;Nathália;5279.746;116216218;Venezuela; +2018-11-21T23:41:09Z;nathalia;281.9099;115002771;Venezuela; +2018-11-21T23:33:52Z;nathalia;3478.784;116176176;Venezuela; +2018-11-21T23:19:21Z;Armando;3496.888;115397776;Venezuela; +2018-11-21T23:01:38Z;Ana;9119.108;114622523;Venezuela; +2018-11-21T22:59:36Z;Sandra;2158.495;116199817;Venezuela; +2018-11-21T22:52:52Z;Júlio Cesar;2745.823;115170439;Venezuela; +2018-11-21T22:52:04Z;nathalia;1764.135;114939846;Venezuela; +2018-11-21T22:42:04Z;Júlio Cesar;21.96135;116130160;Venezuela; +2018-11-21T22:36:53Z;Armando;2210.07;114408027;Venezuela; +2018-11-21T21:48:36Z;Armando;3103.494;115026601;Venezuela; +2018-11-21T21:36:03Z;Ana;139.669;114574123;Venezuela; +2018-11-21T21:24:45Z;Júlio Cesar;8235.612;114409255;Venezuela; +2018-11-21T21:19:57Z;Armando;4328.959;116036539;Venezuela; +2018-11-21T21:07:26Z;Nathália;0.2619445;115194733;Venezuela; +2018-11-21T20:47:52Z;Armando;1645.858;114439480;Venezuela; +2018-11-21T20:36:03Z;Nathália;5639.315;116043265;Venezuela; +2018-11-21T20:25:07Z;Sandra;648.5415;116181342;Venezuela; +2018-11-21T19:55:44Z;nathalia;3750.979;114904568;Venezuela; +2018-11-21T19:55:09Z;Júlio;1161.784;115377237;Venezuela; +2018-11-21T19:41:31Z;Sandra;779.7961;115454830;Venezuela; +2018-11-21T19:37:16Z;Júlio Cesar;160.381;115298406;Venezuela; +2018-11-21T19:23:16Z;Júlio Cesar;126.0658;115256953;Venezuela; +2018-11-21T19:14:35Z;Sandra;683.3805;115478797;Venezuela; +2018-11-21T19:10:06Z;nathalia;2735.456;116326022;Venezuela; +2018-11-21T18:59:20Z;Nathália;3317.992;116222610;Venezuela; +2018-11-21T18:50:12Z;nathalia;1347.022;115472006;Venezuela; +2018-11-21T18:31:12Z;Armando;0.6727713;114940976;Venezuela; +2018-11-21T18:07:30Z;Armando;2327.658;114594084;Venezuela; +2018-11-21T18:03:43Z;Armando;268.4936;115450335;Venezuela; +2018-11-21T17:57:37Z;Júlio;1897.986;116326427;Venezuela; +2018-11-21T17:51:20Z;Júlio;2145.738;115248691;Venezuela; +2018-11-21T17:19:47Z;Sandra;964.6764;115243795;Venezuela; +2018-11-21T17:05:41Z;Júlio Cesar;1217.713;116050706;Venezuela; +2018-11-21T16:31:19Z;Eduardo;745.2972;115689103;Venezuela; +2018-11-21T16:24:30Z;nathalia;212.1302;114571686;Venezuela; +2018-11-21T16:06:44Z;Eduardo;1454.874;115287366;Venezuela; +2018-11-21T16:01:09Z;Sandra;85.24959;116370628;Venezuela; +2018-11-21T15:27:39Z;Ana;1701.372;116217423;Venezuela; +2018-11-21T15:25:43Z;Ana;35.72484;116031567;Venezuela; +2018-11-21T15:10:34Z;Eduardo;2534.952;115774505;Venezuela; +2018-11-21T14:07:12Z;Nathália;7.564053;115716708;Venezuela; +2018-11-21T14:03:03Z;nathalia;3398.125;114532309;Venezuela; +2018-11-21T13:42:18Z;Júlio;8266.335;114365207;Venezuela; +2018-11-21T13:37:31Z;Júlio Cesar;74.14219;114731012;Venezuela; +2018-11-21T13:25:23Z;Sandra;83.32324;114208206;Venezuela; +2018-11-21T13:16:52Z;Nathália;375.0065;114679704;Venezuela; +2018-11-21T13:13:06Z;nathalia;2769.355;116017974;Venezuela; +2018-11-21T12:36:37Z;Júlio;815.4581;115162753;Venezuela; +2018-11-21T11:43:48Z;nathalia;870.3044;115127142;Venezuela; +2018-11-21T11:37:30Z;Armando;6.935332;115509151;Venezuela; +2018-11-21T11:33:46Z;Nathália;918.8363;114625349;Venezuela; +2018-11-21T11:28:07Z;nathalia;641.1485;116287926;Venezuela; +2018-11-21T11:19:31Z;Júlio;777.9235;114852971;Venezuela; +2018-11-21T11:15:50Z;Ana;700.7774;114656292;Venezuela; +2018-11-21T11:00:04Z;Júlio;6252.352;115926852;Venezuela; +2018-11-21T10:58:49Z;Nathália;4477.666;114217293;Venezuela; +2018-11-21T10:09:39Z;nathalia;1172.792;115163827;Venezuela; +2018-11-21T09:14:38Z;Ana;942.9777;116062173;Venezuela; +2018-11-21T09:02:08Z;Júlio;1978.69;115607686;Venezuela; +2018-11-21T08:55:27Z;Júlio;5370.77;116255514;Venezuela; +2018-11-21T08:35:36Z;Júlio Cesar;386.8829;116227841;Venezuela; +2018-11-21T08:10:14Z;nathalia;335.8421;115412749;Venezuela; +2018-11-21T08:05:59Z;Eduardo;1610.796;114450575;Venezuela; +2018-11-21T07:55:46Z;Armando;315.3861;115055300;Venezuela; +2018-11-21T07:27:25Z;Nathália;305.5078;116093688;Venezuela; +2018-11-21T07:23:00Z;Nathália;5566.854;114748426;Venezuela; +2018-11-21T07:15:25Z;Ana;4297.418;115895286;Venezuela; +2018-11-21T06:49:26Z;Júlio;1802.849;115452685;Venezuela; +2018-11-21T06:24:19Z;Júlio Cesar;9549.651;115065431;Venezuela; +2018-11-21T06:19:02Z;Nathália;8426.895;116150632;Venezuela; +2018-11-21T06:13:58Z;Ana;3581.581;115598211;Venezuela; +2018-11-21T05:46:51Z;Nathália;497.1563;115558989;Venezuela; +2018-11-21T05:45:49Z;Armando;5767.02;114683298;Venezuela; +2018-11-21T05:37:25Z;Nathália;235.7072;115745412;Venezuela; +2018-11-21T05:30:56Z;Eduardo;209.4706;115018495;Venezuela; +2018-11-21T05:26:33Z;Ana;1061.349;114721519;Venezuela; +2018-11-21T05:21:20Z;Júlio Cesar;692.1735;114339431;Venezuela; +2018-11-21T05:13:54Z;Eduardo;898.3315;114350256;Venezuela; +2018-11-21T05:06:55Z;nathalia;3481.384;114775095;Venezuela; +2018-11-21T05:06:04Z;nathalia;99.24345;116297413;Venezuela; +2018-11-21T04:29:20Z;Eduardo;1872.616;115096487;Venezuela; +2018-11-21T04:24:45Z;Sandra;2514.46;115510305;Venezuela; +2018-11-21T04:19:51Z;Ana;4828.231;115572159;Venezuela; +2018-11-21T03:56:47Z;Sandra;182.2187;115997945;Venezuela; +2018-11-21T03:56:05Z;Nathália;559.3624;116387865;Venezuela; +2018-11-21T03:54:12Z;Júlio;103.5346;115550281;Venezuela; +2018-11-21T03:52:06Z;Sandra;3373.836;115602101;Venezuela; +2018-11-21T03:45:10Z;Júlio;751.446;114458237;Venezuela; +2018-11-21T03:30:10Z;Nathália;3440.435;114798577;Venezuela; +2018-11-21T03:27:36Z;Eduardo;27.75377;114598959;Venezuela; +2018-11-21T03:22:30Z;nathalia;129.7875;115185647;Venezuela; +2018-11-21T02:55:35Z;Ana;4036.199;114943151;Venezuela; +2018-11-21T02:50:19Z;nathalia;279.8694;116135490;Venezuela; +2018-11-21T02:48:28Z;Eduardo;1870.879;114987737;Venezuela; +2018-11-21T02:43:27Z;Eduardo;166.2196;114903927;Venezuela; +2018-11-21T02:22:33Z;Sandra;2683.622;114876545;Venezuela; +2018-11-21T02:19:27Z;nathalia;10.77984;114565457;Venezuela; +2018-11-21T02:14:29Z;Sandra;1347.772;115877098;Venezuela; +2018-11-21T01:58:43Z;Júlio Cesar;164.2915;115240012;Venezuela; +2018-11-21T01:37:51Z;Júlio Cesar;4278.415;115815252;Venezuela; +2018-11-21T01:35:56Z;Júlio Cesar;501.8997;114731136;Venezuela; +2018-11-21T01:10:29Z;Armando;4875.755;115462233;Venezuela; +2018-11-21T01:06:50Z;Júlio;1529.079;114307185;Venezuela; +2018-11-21T01:00:52Z;Eduardo;227.5798;114962034;Venezuela; +2018-11-21T00:59:33Z;Sandra;2924.176;115927010;Venezuela; +2018-11-21T00:53:48Z;Sandra;7961.156;114398796;Venezuela; +2018-11-21T00:41:14Z;Júlio Cesar;775.626;115363579;Venezuela; +2018-11-21T00:17:33Z;Ana;4938.189;114323202;Venezuela; +2018-11-21T00:06:47Z;Júlio;1677.988;116041304;Venezuela; +2018-11-21T00:03:12Z;Júlio;5614.076;115858534;Venezuela; +2018-11-20T23:58:39Z;Ana;107.7261;115667774;Venezuela; +2018-11-20T23:58:00Z;Eduardo;1835.037;115756927;Venezuela; +2018-11-20T23:37:43Z;Júlio Cesar;5455.268;115613686;Venezuela; +2018-11-20T23:23:33Z;Ana;2415.034;115085889;Venezuela; +2018-11-20T23:21:27Z;Eduardo;3283.757;115057918;Venezuela; +2018-11-20T23:04:04Z;Eduardo;80.30734;116311027;Venezuela; +2018-11-20T23:00:47Z;Ana;2010.368;115663307;Venezuela; +2018-11-20T22:56:49Z;Eduardo;378.6451;115733370;Venezuela; +2018-11-20T22:46:58Z;Sandra;3154.32;115483318;Venezuela; +2018-11-20T22:44:43Z;Júlio;185.848;114587958;Venezuela; +2018-11-20T22:29:21Z;Ana;1530.62;115155179;Venezuela; +2018-11-20T22:28:47Z;Júlio Cesar;7937.185;115236781;Venezuela; +2018-11-20T22:24:15Z;Eduardo;1051.556;115888132;Venezuela; +2018-11-20T22:23:50Z;Sandra;31.50583;115682127;Venezuela; +2018-11-20T22:16:09Z;Ana;640.2817;114468606;Venezuela; +2018-11-20T22:02:01Z;Júlio Cesar;2963.857;114318164;Venezuela; +2018-11-20T22:00:43Z;Armando;1837.091;114336155;Venezuela; +2018-11-20T21:53:23Z;Armando;1435.035;114542245;Venezuela; +2018-11-20T21:49:15Z;Júlio Cesar;1976.48;116048229;Venezuela; +2018-11-20T21:42:10Z;Sandra;1923.935;114386326;Venezuela; +2018-11-20T21:13:09Z;Armando;821.4471;115688698;Venezuela; +2018-11-20T20:53:20Z;Júlio Cesar;1106.425;115943347;Venezuela; +2018-11-20T20:51:26Z;Ana;2473.938;114629844;Venezuela; +2018-11-20T20:43:37Z;Sandra;1196.587;114885747;Venezuela; +2018-11-20T20:29:47Z;Sandra;223.0043;114287889;Venezuela; +2018-11-20T20:00:30Z;Nathália;2366.185;115470472;Venezuela; +2018-11-20T19:54:56Z;Júlio;223.1518;116130838;Venezuela; +2018-11-20T19:51:12Z;Sandra;1589.856;115742976;Venezuela; +2018-11-20T19:18:48Z;nathalia;200.3805;116131230;Venezuela; +2018-11-20T19:16:32Z;Júlio;573.8411;114564085;Venezuela; +2018-11-20T19:04:42Z;Júlio Cesar;3216.132;115323317;Venezuela; +2018-11-20T18:48:31Z;Júlio;537.4267;116215502;Venezuela; +2018-11-20T18:44:07Z;Eduardo;3478.03;115677873;Venezuela; +2018-11-20T18:11:12Z;Sandra;6212.014;114664383;Venezuela; +2018-11-20T18:01:42Z;Eduardo;2041.09;115714199;Venezuela; +2018-11-20T17:51:37Z;Júlio Cesar;426.7585;116038848;Venezuela; +2018-11-20T17:49:10Z;Júlio;1113.657;115524868;Venezuela; +2018-11-20T17:42:25Z;nathalia;898.5699;114532960;Venezuela; +2018-11-20T17:32:46Z;Sandra;140.4467;115136818;Venezuela; +2018-11-20T17:23:40Z;nathalia;2276.656;115049495;Venezuela; +2018-11-20T16:58:41Z;Nathália;3259.25;115372959;Venezuela; +2018-11-20T16:55:54Z;Júlio;1202.102;116307165;Venezuela; +2018-11-20T16:34:13Z;Júlio Cesar;2569.331;114868949;Venezuela; +2018-11-20T16:15:26Z;Júlio;1898.707;115188113;Venezuela; +2018-11-20T16:11:47Z;Júlio Cesar;3395.93;114787233;Venezuela; +2018-11-20T16:04:53Z;Sandra;1466.048;115115745;Venezuela; +2018-11-20T15:52:03Z;Eduardo;8298.787;114582995;Venezuela; +2018-11-20T15:40:11Z;Eduardo;2896.679;116092209;Venezuela; +2018-11-20T15:39:30Z;Sandra;1645.69;114966864;Venezuela; +2018-11-20T15:25:56Z;Ana;263.324;115258910;Venezuela; +2018-11-20T15:16:41Z;Júlio Cesar;3683.163;115316675;Venezuela; +2018-11-20T15:01:57Z;Júlio;3180.775;114379477;Venezuela; +2018-11-20T14:52:01Z;Sandra;8015.047;115166926;Venezuela; +2018-11-20T14:29:36Z;Júlio Cesar;3197.48;115685262;Venezuela; +2018-11-20T14:01:40Z;Nathália;466.7702;115000972;Venezuela; +2018-11-20T13:33:15Z;Júlio Cesar;2326.877;115498084;Venezuela; +2018-11-20T13:23:05Z;Armando;211.0404;115506887;Venezuela; +2018-11-20T13:22:49Z;Júlio;1820.338;114650712;Venezuela; +2018-11-20T13:20:03Z;Armando;555.0886;115946997;Venezuela; +2018-11-20T13:12:50Z;Júlio;912.3226;115156045;Venezuela; +2018-11-20T12:59:57Z;nathalia;470.7539;114326475;Venezuela; +2018-11-20T12:59:11Z;Júlio;3988.06;115851349;Venezuela; +2018-11-20T12:06:59Z;Eduardo;435.8545;114832600;Venezuela; +2018-11-20T11:36:42Z;Júlio;752.5407;115182484;Venezuela; +2018-11-20T11:27:26Z;Nathália;405.5268;115711371;Venezuela; +2018-11-20T10:45:44Z;Eduardo;369.7006;115697693;Venezuela; +2018-11-20T10:33:19Z;Nathália;1759.679;114835898;Venezuela; +2018-11-20T10:12:54Z;Ana;3006.501;116330096;Venezuela; +2018-11-20T10:01:22Z;Ana;1650.295;115013810;Venezuela; +2018-11-20T09:52:45Z;nathalia;662.5656;115271029;Venezuela; +2018-11-20T09:40:40Z;Nathália;526.6233;115289541;Venezuela; +2018-11-20T09:27:31Z;Nathália;5399.258;115653348;Venezuela; +2018-11-20T09:17:00Z;Júlio Cesar;722.188;114529595;Venezuela; +2018-11-20T08:43:42Z;Júlio;3980.293;114433600;Venezuela; +2018-11-20T08:40:10Z;Júlio;999.7403;116288313;Venezuela; +2018-11-20T08:39:54Z;Júlio Cesar;662.9053;115550551;Venezuela; +2018-11-20T08:33:39Z;Júlio;758.0488;115838988;Venezuela; +2018-11-20T08:26:56Z;Júlio;1044.609;116322956;Venezuela; +2018-11-20T08:22:16Z;nathalia;2315.047;115739734;Venezuela; +2018-11-20T08:22:10Z;Eduardo;2069.037;115716971;Venezuela; +2018-11-20T08:18:50Z;Júlio Cesar;1650.526;115302869;Venezuela; +2018-11-20T08:12:17Z;Eduardo;505.2231;115352486;Venezuela; +2018-11-20T08:01:45Z;Júlio Cesar;3780.091;114885256;Venezuela; +2018-11-20T07:56:53Z;Armando;1642.32;115844492;Venezuela; +2018-11-20T07:39:53Z;nathalia;703.4111;114969802;Venezuela; +2018-11-20T07:14:19Z;nathalia;4456.655;115817911;Venezuela; +2018-11-20T07:12:54Z;Sandra;425.5823;116248295;Venezuela; +2018-11-20T07:07:40Z;Armando;197.5247;115778344;Venezuela; +2018-11-20T06:53:18Z;Eduardo;854.5541;114338648;Venezuela; +2018-11-20T05:26:11Z;Ana;5614.511;115191936;Venezuela; +2018-11-20T05:00:23Z;Eduardo;2883.369;115915335;Venezuela; +2018-11-20T04:58:05Z;Eduardo;937.6766;116311142;Venezuela; +2018-11-20T04:49:30Z;Júlio;1201.969;115741053;Venezuela; +2018-11-20T04:35:15Z;Sandra;143.7686;115822853;Venezuela; +2018-11-20T04:25:08Z;Júlio Cesar;922.4943;114351556;Venezuela; +2018-11-20T03:54:24Z;Eduardo;285.5935;116162032;Venezuela; +2018-11-20T03:34:14Z;nathalia;887.156;115970761;Venezuela; +2018-11-20T03:14:06Z;Júlio Cesar;1016.716;115702028;Venezuela; +2018-11-20T03:05:18Z;Ana;4481.356;115163114;Venezuela; +2018-11-20T03:00:46Z;Eduardo;6195.421;114344126;Venezuela; +2018-11-20T02:45:45Z;Sandra;340.4477;115971378;Venezuela; +2018-11-20T02:13:23Z;Armando;1153.188;115963998;Venezuela; +2018-11-20T02:06:15Z;Júlio Cesar;748.2299;114755700;Venezuela; +2018-11-20T02:03:18Z;Sandra;327.6553;114261843;Venezuela; +2018-11-20T01:02:14Z;Ana;4071.223;116191736;Venezuela; +2018-11-20T00:58:42Z;Júlio;6401.367;115105554;Venezuela; +2018-11-20T00:30:32Z;Ana;6641.385;114416206;Venezuela; +2018-11-20T00:15:02Z;nathalia;734.9553;116361384;Venezuela; +2018-11-20T00:14:44Z;Armando;1286.696;114539941;Venezuela; +2018-11-20T00:02:22Z;Ana;1195.027;114586603;Venezuela; +2018-11-19T23:58:43Z;Eduardo;15.37908;115490534;Venezuela; +2018-11-19T23:17:43Z;Nathália;1710.663;116072655;Venezuela; +2018-11-19T22:10:24Z;Armando;508.7968;115899995;Venezuela; +2018-11-19T21:51:09Z;Sandra;1039.712;114450113;Venezuela; +2018-11-19T21:39:06Z;Júlio Cesar;1748.074;115006360;Venezuela; +2018-11-19T21:20:04Z;Eduardo;5712.843;116398349;Venezuela; +2018-11-19T21:16:40Z;Ana;1276.506;116253136;Venezuela; +2018-11-19T20:47:28Z;nathalia;4028.477;114869181;Venezuela; +2018-11-19T20:29:29Z;Nathália;471.0862;116056228;Venezuela; +2018-11-19T20:28:13Z;Júlio;1781.739;114910273;Venezuela; +2018-11-19T20:22:12Z;Nathália;1107.778;114314387;Venezuela; +2018-11-19T19:37:15Z;Júlio Cesar;726.0899;114651082;Venezuela; +2018-11-19T19:32:53Z;Júlio;874.6942;114612974;Venezuela; +2018-11-19T19:23:50Z;Ana;3816.892;115813847;Venezuela; +2018-11-19T18:47:22Z;Ana;391.5277;115277543;Venezuela; +2018-11-19T18:37:41Z;Sandra;7831.112;115161417;Venezuela; +2018-11-19T18:27:28Z;Nathália;3179.634;116390940;Venezuela; +2018-11-19T18:25:43Z;Sandra;2699.985;115903622;Venezuela; +2018-11-19T18:22:20Z;Eduardo;762.0161;114552909;Venezuela; +2018-11-19T18:16:30Z;Nathália;2298.486;116202810;Venezuela; +2018-11-19T18:06:45Z;Ana;1725.583;114399716;Venezuela; +2018-11-19T18:02:56Z;Sandra;6848.005;114740236;Venezuela; +2018-11-19T18:01:47Z;Armando;594.484;115354909;Venezuela; +2018-11-19T17:59:40Z;nathalia;3612.467;115655667;Venezuela; +2018-11-19T17:41:14Z;Júlio Cesar;4423.333;114849900;Venezuela; +2018-11-19T17:29:45Z;Sandra;6209.683;114968965;Venezuela; +2018-11-19T17:19:19Z;nathalia;108.2126;114430911;Venezuela; +2018-11-19T17:01:23Z;Armando;3137.912;114777543;Venezuela; +2018-11-19T16:58:51Z;Júlio Cesar;3041.396;115014178;Venezuela; +2018-11-19T16:27:32Z;Nathália;3489.123;115897801;Venezuela; +2018-11-19T15:40:29Z;Júlio Cesar;2886.308;115393629;Venezuela; +2018-11-19T15:12:01Z;nathalia;6138.656;115831081;Venezuela; +2018-11-19T15:10:40Z;Júlio;1744.281;115323957;Venezuela; +2018-11-19T14:57:48Z;nathalia;52.07229;114463703;Venezuela; +2018-11-19T14:52:58Z;Nathália;482.1201;114760601;Venezuela; +2018-11-19T14:41:20Z;Júlio Cesar;366.8262;115681279;Venezuela; +2018-11-19T14:13:54Z;Sandra;2499.048;114406755;Venezuela; +2018-11-19T14:13:38Z;Armando;4008.841;115510680;Venezuela; +2018-11-19T14:02:34Z;Júlio;880.7395;115534696;Venezuela; +2018-11-19T13:51:26Z;Nathália;4406.384;115198514;Venezuela; +2018-11-19T13:35:19Z;Júlio Cesar;1544.967;114489223;Venezuela; +2018-11-19T13:22:01Z;nathalia;8572.2;116357341;Venezuela; +2018-11-19T12:41:30Z;Nathália;723.5773;115170988;Venezuela; +2018-11-19T12:38:45Z;Nathália;2409.896;114906460;Venezuela; +2018-11-19T12:31:36Z;Eduardo;288.4169;114346237;Venezuela; +2018-11-19T11:46:07Z;Júlio Cesar;1604.398;114896783;Venezuela; +2018-11-19T10:36:57Z;Júlio;700.1997;114909564;Venezuela; +2018-11-19T10:19:27Z;Júlio;788.9877;115828678;Venezuela; +2018-11-19T10:17:51Z;Ana;413.8064;114534348;Venezuela; +2018-11-19T10:08:04Z;Ana;3855.745;116356061;Venezuela; +2018-11-19T09:13:23Z;nathalia;3800.435;116051317;Venezuela; +2018-11-19T08:56:06Z;Armando;4307.204;114598640;Venezuela; +2018-11-19T08:29:43Z;Armando;456.9266;114718330;Venezuela; +2018-11-19T08:22:21Z;Armando;1984.476;115195303;Venezuela; +2018-11-19T08:13:49Z;Júlio Cesar;379.4751;114568332;Venezuela; +2018-11-19T08:07:44Z;Sandra;3528.751;115781145;Venezuela; +2018-11-19T07:36:18Z;Eduardo;764.4651;116336235;Venezuela; +2018-11-19T07:23:04Z;Ana;939.1516;114642467;Venezuela; +2018-11-19T07:07:42Z;Ana;2440.226;115824674;Venezuela; +2018-11-19T07:02:01Z;Ana;5864.013;115998719;Venezuela; +2018-11-19T06:46:40Z;nathalia;148.8095;115642637;Venezuela; +2018-11-19T05:53:44Z;Júlio Cesar;84.30441;115886251;Venezuela; +2018-11-19T05:50:52Z;nathalia;1001.774;116120657;Venezuela; +2018-11-19T04:47:59Z;Júlio;966.346;115715472;Venezuela; +2018-11-19T04:37:31Z;Júlio Cesar;2055.938;114934666;Venezuela; +2018-11-19T04:29:17Z;Júlio Cesar;1219.735;114774993;Venezuela; +2018-11-19T04:20:30Z;Sandra;5241.986;115907093;Venezuela; +2018-11-19T03:24:33Z;Júlio Cesar;1222.497;114895096;Venezuela; +2018-11-19T03:24:01Z;Sandra;3101.706;114523374;Venezuela; +2018-11-19T03:08:13Z;Júlio;3599.313;114309591;Venezuela; +2018-11-19T02:54:56Z;Júlio Cesar;179.4056;114517699;Venezuela; +2018-11-19T02:53:10Z;Nathália;277.677;115342188;Venezuela; +2018-11-19T02:49:53Z;nathalia;2000.752;114505645;Venezuela; +2018-11-19T02:49:25Z;nathalia;899.8322;114664754;Venezuela; +2018-11-19T02:41:40Z;Nathália;474.3018;116037561;Venezuela; +2018-11-19T02:39:42Z;Ana;52.79541;115763387;Venezuela; +2018-11-19T02:15:28Z;Nathália;1027.697;114377316;Venezuela; +2018-11-19T02:11:58Z;Armando;4496.155;115390881;Venezuela; +2018-11-19T02:08:42Z;Júlio;321.6746;114366997;Venezuela; +2018-11-19T01:44:26Z;Ana;161.3608;115837470;Venezuela; +2018-11-19T00:43:17Z;Júlio Cesar;1155.074;114224353;Venezuela; +2018-11-19T00:36:47Z;Ana;1383.44;114973582;Venezuela; +2018-11-19T00:12:49Z;Júlio Cesar;1564.485;116198902;Venezuela; +2018-11-19T00:04:13Z;Eduardo;1107.836;115268074;Venezuela; +2018-11-18T23:45:20Z;Nathália;2620.67;114438125;Venezuela; +2018-11-18T23:02:00Z;Eduardo;7163.665;115028394;Venezuela; +2018-11-18T22:39:23Z;Ana;1948.887;114784124;Venezuela; +2018-11-18T22:30:38Z;Eduardo;2714.356;116350170;Venezuela; +2018-11-18T22:20:23Z;Eduardo;4064.633;114240522;Venezuela; +2018-11-18T22:01:04Z;Júlio Cesar;3739.716;116240454;Venezuela; +2018-11-18T21:44:53Z;Sandra;5720.609;114285340;Venezuela; +2018-11-18T21:38:24Z;Nathália;902.4403;114466907;Venezuela; +2018-11-18T21:20:30Z;Nathália;1233.302;115592515;Venezuela; +2018-11-18T21:11:57Z;Júlio;1283.17;114983515;Venezuela; +2018-11-18T20:55:34Z;Eduardo;720.2771;115703565;Venezuela; +2018-11-18T20:36:52Z;Ana;1720.375;115561389;Venezuela; +2018-11-18T20:24:26Z;Júlio;5073.996;116082654;Venezuela; +2018-11-18T20:14:59Z;nathalia;1346.136;115196487;Venezuela; +2018-11-18T19:59:14Z;Sandra;1558.937;115116859;Venezuela; +2018-11-18T19:48:14Z;Júlio Cesar;1569.811;115088060;Venezuela; +2018-11-18T19:41:42Z;Júlio;1024.052;114838651;Venezuela; +2018-11-18T19:40:47Z;Armando;199.8931;114461085;Venezuela; +2018-11-18T19:39:33Z;Armando;44.34764;115350428;Venezuela; +2018-11-18T19:09:42Z;nathalia;270.1763;115938402;Venezuela; +2018-11-18T18:56:35Z;Júlio Cesar;3971.706;114471478;Venezuela; +2018-11-18T18:52:36Z;Ana;3284.094;116340648;Venezuela; +2018-11-18T18:49:52Z;Júlio;2570.983;115803115;Venezuela; +2018-11-18T18:38:51Z;Sandra;6013.438;114928264;Venezuela; +2018-11-18T18:36:48Z;Sandra;4280.546;116211947;Venezuela; +2018-11-18T18:12:25Z;Júlio;7225.354;115476357;Venezuela; +2018-11-18T18:07:37Z;nathalia;3071.107;114812131;Venezuela; +2018-11-18T17:40:16Z;Sandra;1967.429;115615148;Venezuela; +2018-11-18T17:31:04Z;nathalia;1260.522;114200748;Venezuela; +2018-11-18T17:25:00Z;Sandra;1579.46;115875431;Venezuela; +2018-11-18T16:20:18Z;Júlio;2645.225;114272095;Venezuela; +2018-11-18T16:18:57Z;nathalia;348.0145;116103543;Venezuela; +2018-11-18T16:17:45Z;nathalia;75.41284;115321859;Venezuela; +2018-11-18T15:59:16Z;Ana;56.58485;115392207;Venezuela; +2018-11-18T15:24:07Z;Júlio;1126.783;115211985;Venezuela; +2018-11-18T15:21:40Z;Eduardo;7860.395;114382969;Venezuela; +2018-11-18T14:59:36Z;Júlio Cesar;946.7076;116169077;Venezuela; +2018-11-18T14:47:18Z;Nathália;4666.979;116253878;Venezuela; +2018-11-18T14:40:05Z;Eduardo;3334.945;115757398;Venezuela; +2018-11-18T14:33:24Z;Ana;542.0126;114507295;Venezuela; +2018-11-18T14:28:04Z;Eduardo;808.1844;114221585;Venezuela; +2018-11-18T14:24:41Z;Sandra;5890.528;116211920;Venezuela; +2018-11-18T14:20:55Z;Sandra;5567.451;115524944;Venezuela; +2018-11-18T14:09:51Z;Sandra;1619.599;116124545;Venezuela; +2018-11-18T14:03:17Z;nathalia;4609.469;115185628;Venezuela; +2018-11-18T14:02:51Z;nathalia;93.69818;115491474;Venezuela; +2018-11-18T13:34:34Z;nathalia;175.0824;115843487;Venezuela; +2018-11-18T13:24:04Z;nathalia;1004.865;116016516;Venezuela; +2018-11-18T13:06:14Z;Ana;395.3685;116065901;Venezuela; +2018-11-18T13:06:00Z;nathalia;3042.95;116096467;Venezuela; +2018-11-18T12:43:35Z;Ana;956.5774;114632570;Venezuela; +2018-11-18T12:27:51Z;Sandra;68.67583;116297435;Venezuela; +2018-11-18T12:07:05Z;Armando;497.7981;116276359;Venezuela; +2018-11-18T11:49:00Z;Armando;1628.505;115946114;Venezuela; +2018-11-18T11:36:47Z;Armando;598.2179;115851028;Venezuela; +2018-11-18T11:19:08Z;Eduardo;1537.464;115342604;Venezuela; +2018-11-18T11:15:36Z;Armando;509.5787;116173323;Venezuela; +2018-11-18T11:04:01Z;Eduardo;6382.301;114668225;Venezuela; +2018-11-18T09:48:35Z;nathalia;9210.985;115788353;Venezuela; +2018-11-18T09:45:00Z;Eduardo;618.7224;114523117;Venezuela; +2018-11-18T09:18:27Z;nathalia;2583.899;114240621;Venezuela; +2018-11-18T08:58:52Z;Nathália;2967.619;114337561;Venezuela; +2018-11-18T08:47:16Z;Ana;208.9667;114266551;Venezuela; +2018-11-18T08:44:25Z;Júlio Cesar;3750.376;114261449;Venezuela; +2018-11-18T08:03:54Z;Júlio Cesar;790.7859;115385514;Venezuela; +2018-11-18T07:50:28Z;Sandra;498.2076;114367081;Venezuela; +2018-11-18T07:46:33Z;Júlio;4847.648;114473648;Venezuela; +2018-11-18T07:18:16Z;Eduardo;706.7865;114230219;Venezuela; +2018-11-18T07:09:58Z;Armando;2785.353;115706373;Venezuela; +2018-11-18T07:05:34Z;Ana;430.2381;116188810;Venezuela; +2018-11-18T06:55:32Z;Nathália;305.7498;116011888;Venezuela; +2018-11-18T06:27:29Z;Júlio Cesar;1569.323;114713496;Venezuela; +2018-11-18T06:20:10Z;Eduardo;370.4787;116139992;Venezuela; +2018-11-18T05:58:02Z;Júlio Cesar;7094.179;114425598;Venezuela; +2018-11-18T05:41:25Z;Armando;3513.304;116050451;Venezuela; +2018-11-18T05:21:46Z;Júlio;6684.105;114235278;Venezuela; +2018-11-18T05:19:31Z;Eduardo;794.7278;114928285;Venezuela; +2018-11-18T05:02:31Z;Ana;4412.463;115998158;Venezuela; +2018-11-18T04:59:28Z;Júlio;9428.678;115052215;Venezuela; +2018-11-18T04:51:49Z;Ana;3290.227;115986689;Venezuela; +2018-11-18T04:49:26Z;Armando;971.7415;114988895;Venezuela; +2018-11-18T04:37:04Z;Armando;939.5552;114287467;Venezuela; +2018-11-18T04:32:30Z;nathalia;4444.113;114726987;Venezuela; +2018-11-18T04:30:35Z;Júlio;739.7039;115949532;Venezuela; +2018-11-18T04:10:34Z;Eduardo;448.3957;115887415;Venezuela; +2018-11-18T03:34:13Z;Nathália;630.6385;115295785;Venezuela; +2018-11-18T03:15:35Z;Júlio;866.1181;114932352;Venezuela; +2018-11-18T03:11:50Z;Júlio;1878.436;114949900;Venezuela; +2018-11-18T03:11:24Z;Sandra;1118.482;116198549;Venezuela; +2018-11-18T02:13:23Z;Ana;4661.384;115091334;Venezuela; +2018-11-18T02:12:49Z;Júlio Cesar;5115.184;116173971;Venezuela; +2018-11-18T02:09:27Z;Ana;4210.669;114676443;Venezuela; +2018-11-18T01:49:09Z;Ana;2691.397;115671648;Venezuela; +2018-11-18T01:43:56Z;Sandra;3037.598;115896564;Venezuela; +2018-11-18T01:38:24Z;Nathália;367.8295;115680471;Venezuela; +2018-11-18T01:33:39Z;Eduardo;160.9321;115630099;Venezuela; +2018-11-18T01:23:07Z;Júlio Cesar;2709.888;115365837;Venezuela; +2018-11-18T01:01:20Z;Júlio Cesar;3353.219;115706423;Venezuela; +2018-11-18T01:00:39Z;Ana;2692.651;114262448;Venezuela; +2018-11-18T00:18:36Z;Armando;584.1783;114770981;Venezuela; +2018-11-18T00:05:58Z;Ana;1186.376;114271037;Venezuela; +2018-11-17T23:42:11Z;Ana;660.9527;114726052;Venezuela; +2018-11-17T23:38:26Z;Armando;2907.815;114561292;Venezuela; +2018-11-17T22:43:07Z;Nathália;6082.854;115631991;Venezuela; +2018-11-17T22:37:36Z;Eduardo;3842.545;116079014;Venezuela; +2018-11-17T22:24:15Z;Júlio Cesar;3215.62;115588355;Venezuela; +2018-11-17T22:08:31Z;nathalia;3345.053;115923056;Venezuela; +2018-11-17T21:45:34Z;Armando;298.2647;116245792;Venezuela; +2018-11-17T21:44:49Z;Armando;3737.635;115810247;Venezuela; +2018-11-17T21:36:11Z;Eduardo;336.7936;114286676;Venezuela; +2018-11-17T21:30:20Z;Nathália;4463.956;115454185;Venezuela; +2018-11-17T21:26:28Z;nathalia;732.1822;114414970;Venezuela; +2018-11-17T21:01:51Z;Júlio Cesar;2633.256;115271170;Venezuela; +2018-11-17T20:56:54Z;Sandra;6051.155;115481577;Venezuela; +2018-11-17T20:28:32Z;Eduardo;203.2739;115322488;Venezuela; +2018-11-17T20:14:08Z;Júlio Cesar;38.54259;116092794;Venezuela; +2018-11-17T20:08:57Z;Eduardo;815.9203;115202546;Venezuela; +2018-11-17T19:59:49Z;Sandra;351.8267;115729262;Venezuela; +2018-11-17T19:00:30Z;Júlio;54.4183;114971589;Venezuela; +2018-11-17T18:53:40Z;Nathália;1884.686;114244019;Venezuela; +2018-11-17T18:26:03Z;Eduardo;2501.7;114473363;Venezuela; +2018-11-17T18:25:03Z;Armando;1566.222;116095285;Venezuela; +2018-11-17T17:45:46Z;nathalia;1502.897;114443699;Venezuela; +2018-11-17T17:32:23Z;nathalia;982.5634;115802036;Venezuela; +2018-11-17T17:00:47Z;Eduardo;218.1683;114956221;Venezuela; +2018-11-17T16:58:52Z;Armando;992.0075;115146630;Venezuela; +2018-11-17T16:58:33Z;Ana;5734.005;114872926;Venezuela; +2018-11-17T16:50:46Z;Sandra;2288.639;116071020;Venezuela; +2018-11-17T16:28:40Z;Ana;282.4553;114692625;Venezuela; +2018-11-17T16:26:17Z;Armando;6885.221;116284550;Venezuela; +2018-11-17T16:12:34Z;Júlio Cesar;1906.817;115833870;Venezuela; +2018-11-17T15:42:38Z;Ana;1617.226;116338694;Venezuela; +2018-11-17T15:41:27Z;Nathália;2920.059;114697672;Venezuela; +2018-11-17T15:17:50Z;Júlio;664.4468;116102660;Venezuela; +2018-11-17T15:00:10Z;Armando;2778.79;115705660;Venezuela; +2018-11-17T14:59:37Z;Nathália;3350.878;115063558;Venezuela; +2018-11-17T14:59:08Z;Nathália;1403.394;114831978;Venezuela; +2018-11-17T13:43:15Z;Júlio Cesar;3865.281;115617192;Venezuela; +2018-11-17T13:27:16Z;nathalia;1985.679;114660552;Venezuela; +2018-11-17T13:26:33Z;nathalia;664.7589;114624848;Venezuela; +2018-11-17T13:22:00Z;Sandra;6681.421;115383086;Venezuela; +2018-11-17T12:56:29Z;Armando;5036.534;116192459;Venezuela; +2018-11-17T12:38:35Z;Sandra;6295.581;115699337;Venezuela; +2018-11-17T12:10:45Z;Nathália;1722.924;114370709;Venezuela; +2018-11-17T12:08:15Z;Armando;5441.875;114633308;Venezuela; +2018-11-17T11:55:48Z;Ana;336.9569;114585236;Venezuela; +2018-11-17T11:55:21Z;Eduardo;1323.25;114492297;Venezuela; +2018-11-17T11:38:06Z;Júlio;107.3323;116339274;Venezuela; +2018-11-17T11:00:13Z;Júlio Cesar;2069.94;114240761;Venezuela; +2018-11-17T10:45:47Z;Armando;3207.222;114310442;Venezuela; +2018-11-17T10:23:30Z;Júlio Cesar;3114.862;114823265;Venezuela; +2018-11-17T10:21:11Z;Ana;1831.518;116320792;Venezuela; +2018-11-17T10:15:12Z;nathalia;2718.519;114959763;Venezuela; +2018-11-17T09:56:16Z;Nathália;1901.781;114719435;Venezuela; +2018-11-17T09:39:38Z;Nathália;138.9157;115569219;Venezuela; +2018-11-17T09:07:43Z;Júlio Cesar;639.9854;116119894;Venezuela; +2018-11-17T09:03:23Z;Júlio Cesar;510.6993;115319952;Venezuela; +2018-11-17T09:02:59Z;Ana;1571.909;114456028;Venezuela; +2018-11-17T08:56:04Z;Eduardo;4204.091;115363174;Venezuela; +2018-11-17T08:39:01Z;nathalia;1168.001;116211724;Venezuela; +2018-11-17T08:22:52Z;nathalia;6262.626;115397941;Venezuela; +2018-11-17T08:16:28Z;nathalia;1059.152;116085551;Venezuela; +2018-11-17T07:56:53Z;Ana;5689.616;116078361;Venezuela; +2018-11-17T07:24:40Z;Eduardo;5065.551;115677076;Venezuela; +2018-11-17T07:20:22Z;Armando;6539.322;115544450;Venezuela; +2018-11-17T06:46:15Z;Júlio;1994.01;115824807;Venezuela; +2018-11-17T06:32:36Z;Sandra;707.3386;114670308;Venezuela; +2018-11-17T06:21:08Z;Júlio;3383.189;114667124;Venezuela; +2018-11-17T06:18:31Z;Armando;91.89188;116241630;Venezuela; +2018-11-17T05:53:19Z;Júlio Cesar;191.5828;115087265;Venezuela; +2018-11-17T05:37:12Z;Armando;4138.469;116109928;Venezuela; +2018-11-17T05:29:45Z;Eduardo;644.5329;115159691;Venezuela; +2018-11-17T05:28:47Z;Nathália;3039.245;115029808;Venezuela; +2018-11-17T04:41:34Z;Nathália;1368.611;116072589;Venezuela; +2018-11-17T04:41:19Z;Sandra;2333.496;115937555;Venezuela; +2018-11-17T04:17:12Z;Sandra;3842.786;114767158;Venezuela; +2018-11-17T04:14:37Z;Armando;1459.812;114375116;Venezuela; +2018-11-17T03:44:42Z;Júlio;10.9704;116065450;Venezuela; +2018-11-17T03:39:40Z;Júlio;3418.006;115596246;Venezuela; +2018-11-17T03:35:54Z;Júlio;5136.239;114922227;Venezuela; +2018-11-17T03:35:24Z;Armando;549.742;115254138;Venezuela; +2018-11-17T03:33:09Z;Sandra;4665.71;116364284;Venezuela; +2018-11-17T02:14:31Z;Júlio Cesar;427.7134;114968519;Venezuela; +2018-11-17T01:32:32Z;Júlio Cesar;1618.598;115672398;Venezuela; +2018-11-17T01:22:08Z;Júlio Cesar;904.2147;114895286;Venezuela; +2018-11-17T00:50:20Z;Júlio;3249.788;115600607;Venezuela; +2018-11-17T00:26:25Z;Armando;2828.78;114425919;Venezuela; +2018-11-17T00:19:54Z;nathalia;6807.548;116089865;Venezuela; +2018-11-16T23:25:25Z;Júlio Cesar;971.6327;114861880;Venezuela; +2018-11-16T23:17:30Z;nathalia;3008.295;115858778;Venezuela; +2018-11-16T23:14:08Z;nathalia;5641.336;116009958;Venezuela; +2018-11-16T23:09:52Z;Sandra;2476.701;115330307;Venezuela; +2018-11-16T22:53:28Z;Nathália;635.8576;116171279;Venezuela; +2018-11-16T22:15:06Z;Eduardo;562.7897;115728549;Venezuela; +2018-11-16T22:08:43Z;Eduardo;137.8599;115640394;Venezuela; +2018-11-16T21:36:17Z;Júlio;624.8195;114490893;Venezuela; +2018-11-16T21:15:25Z;Ana;370.9147;116268921;Venezuela; +2018-11-16T20:22:54Z;Sandra;1448.082;116149564;Venezuela; +2018-11-16T20:18:12Z;Armando;191.1577;115236800;Venezuela; +2018-11-16T19:51:38Z;nathalia;144.8196;114286845;Venezuela; +2018-11-16T19:38:37Z;Júlio;5279.954;115297223;Venezuela; +2018-11-16T19:23:02Z;Ana;807.2653;115511508;Venezuela; +2018-11-16T19:22:52Z;Júlio Cesar;1439.831;114252342;Venezuela; +2018-11-16T19:18:46Z;Nathália;287.7464;116109575;Venezuela; +2018-11-16T19:12:05Z;Armando;584.2954;115808011;Venezuela; +2018-11-16T18:57:04Z;Júlio Cesar;4215.445;114600149;Venezuela; +2018-11-16T18:56:52Z;Nathália;2578.61;115359688;Venezuela; +2018-11-16T18:43:38Z;Eduardo;3359.306;114483915;Venezuela; +2018-11-16T18:31:03Z;Júlio;1002.159;114447795;Venezuela; +2018-11-16T18:08:34Z;Ana;3920.765;114232531;Venezuela; +2018-11-16T17:00:26Z;Nathália;5325.31;114305878;Venezuela; +2018-11-16T16:57:56Z;Júlio;416.794;116378082;Venezuela; +2018-11-16T16:32:36Z;Sandra;1165.36;116119738;Venezuela; +2018-11-16T16:31:27Z;Júlio;4425.172;116079414;Venezuela; +2018-11-16T16:18:11Z;Júlio Cesar;141.8661;116040089;Venezuela; +2018-11-16T16:05:19Z;Júlio Cesar;48.94339;115196048;Venezuela; +2018-11-16T16:03:07Z;Ana;4227.463;116078172;Venezuela; +2018-11-16T16:01:17Z;Armando;81.66321;115072584;Venezuela; +2018-11-16T15:47:29Z;Júlio;329.8257;115840654;Venezuela; +2018-11-16T15:38:06Z;nathalia;1362.935;116258113;Venezuela; +2018-11-16T15:08:39Z;Júlio Cesar;20.80092;115767232;Venezuela; +2018-11-16T14:50:47Z;Eduardo;1835.7;116368415;Venezuela; +2018-11-16T14:32:17Z;Ana;619.7844;115630576;Venezuela; +2018-11-16T14:23:41Z;Sandra;2037.13;115091105;Venezuela; +2018-11-16T13:42:50Z;Sandra;1460.645;116110796;Venezuela; +2018-11-16T13:42:49Z;Júlio;1856.795;115335604;Venezuela; +2018-11-16T13:00:58Z;Armando;1613.99;114862233;Venezuela; +2018-11-16T12:56:05Z;nathalia;682.5155;115337936;Venezuela; +2018-11-16T12:50:26Z;Sandra;1817.141;114774592;Venezuela; +2018-11-16T12:42:24Z;nathalia;4955.639;114795434;Venezuela; +2018-11-16T12:34:28Z;Júlio;708.8212;114247009;Venezuela; +2018-11-16T12:32:00Z;Nathália;156.8357;114939434;Venezuela; +2018-11-16T12:12:49Z;Nathália;2536.143;115856637;Venezuela; +2018-11-16T12:12:39Z;nathalia;3290.122;115095608;Venezuela; +2018-11-16T11:58:49Z;Eduardo;1654.228;115151015;Venezuela; +2018-11-16T11:42:43Z;Sandra;3646.198;115664464;Venezuela; +2018-11-16T11:12:23Z;nathalia;357.0182;114500918;Venezuela; +2018-11-16T10:49:07Z;Armando;1824.199;114619933;Venezuela; +2018-11-16T10:48:59Z;nathalia;475.6129;116075609;Venezuela; +2018-11-16T10:34:32Z;Sandra;7260.155;115389298;Venezuela; +2018-11-16T10:33:31Z;Nathália;519.2921;114703483;Venezuela; +2018-11-16T10:21:58Z;nathalia;603.0786;116266062;Venezuela; +2018-11-16T10:19:36Z;Sandra;2255.732;116001717;Venezuela; +2018-11-16T09:56:02Z;Sandra;57.26228;115418504;Venezuela; +2018-11-16T09:24:43Z;Eduardo;952.3597;115921039;Venezuela; +2018-11-16T08:59:23Z;Eduardo;213.5695;114741625;Venezuela; +2018-11-16T08:47:01Z;nathalia;752.7812;114700446;Venezuela; +2018-11-16T08:41:23Z;Ana;2235.592;115379591;Venezuela; +2018-11-16T08:31:54Z;Júlio Cesar;433.2124;114784508;Venezuela; +2018-11-16T08:10:40Z;Júlio;2048.691;115167423;Venezuela; +2018-11-16T07:52:42Z;Eduardo;1874.999;114482083;Venezuela; +2018-11-16T07:40:08Z;Armando;1525.968;115568108;Venezuela; +2018-11-16T07:26:47Z;Júlio;1737.251;114545580;Venezuela; +2018-11-16T06:55:40Z;Júlio Cesar;785.7036;114661837;Venezuela; +2018-11-16T06:51:18Z;Sandra;1004.857;115178791;Venezuela; +2018-11-16T06:47:50Z;Júlio Cesar;2158.75;116107690;Venezuela; +2018-11-16T06:04:09Z;Júlio;1096.799;114787175;Venezuela; +2018-11-16T05:37:11Z;Júlio;2242.542;116303879;Venezuela; +2018-11-16T05:19:37Z;nathalia;4136.315;114797143;Venezuela; +2018-11-16T05:16:56Z;nathalia;1793.622;114787652;Venezuela; +2018-11-16T05:14:12Z;Sandra;2798.468;115365832;Venezuela; +2018-11-16T05:04:22Z;Ana;496.5505;114481558;Venezuela; +2018-11-16T04:50:35Z;Eduardo;2033.847;114868033;Venezuela; +2018-11-16T04:46:46Z;Armando;1639.029;115494708;Venezuela; +2018-11-16T04:43:28Z;Ana;464.7205;115005696;Venezuela; +2018-11-16T04:43:23Z;Armando;888.383;115442951;Venezuela; +2018-11-16T04:31:56Z;Ana;3204.239;114882656;Venezuela; +2018-11-16T04:30:32Z;nathalia;113.6083;114748152;Venezuela; +2018-11-16T04:18:20Z;Armando;99.54432;115744718;Venezuela; +2018-11-16T04:13:56Z;Armando;1056.58;114532526;Venezuela; +2018-11-16T04:07:51Z;Nathália;447.3218;114782271;Venezuela; +2018-11-16T03:50:28Z;Eduardo;4807.091;115121204;Venezuela; +2018-11-16T03:30:35Z;Ana;1923.836;116250617;Venezuela; +2018-11-16T03:19:31Z;Júlio Cesar;5956.905;116246606;Venezuela; +2018-11-16T03:19:28Z;Eduardo;2500.143;116241704;Venezuela; +2018-11-16T03:14:52Z;Eduardo;794.5058;114630661;Venezuela; +2018-11-16T03:14:33Z;Eduardo;3824.942;114810772;Venezuela; +2018-11-16T03:07:16Z;nathalia;65.5761;115006102;Venezuela; +2018-11-16T03:01:07Z;nathalia;3005.456;114941916;Venezuela; +2018-11-16T02:58:25Z;Eduardo;3079.399;115672249;Venezuela; +2018-11-16T02:50:38Z;Sandra;3079.44;116376848;Venezuela; +2018-11-16T02:05:08Z;Júlio Cesar;2085.427;115541757;Venezuela; +2018-11-16T01:16:10Z;Júlio Cesar;1945.826;115577016;Venezuela; +2018-11-16T01:04:58Z;Ana;8390.219;114270838;Venezuela; +2018-11-16T00:44:57Z;Sandra;5666.113;114922592;Venezuela; +2018-11-16T00:23:37Z;Eduardo;1518.216;115838128;Venezuela; +2018-11-16T00:16:49Z;Júlio Cesar;3219.637;115480446;Venezuela; +2018-11-16T00:12:16Z;Nathália;3202.116;115627228;Venezuela; +2018-11-16T00:08:37Z;Armando;2227.695;116056239;Venezuela; +2018-11-16T00:07:25Z;Eduardo;1168.701;115966383;Venezuela; +2018-11-15T23:59:15Z;Armando;2368.225;114707395;Venezuela; +2018-11-15T23:54:53Z;Armando;566.7144;115730157;Venezuela; +2018-11-15T23:48:06Z;Nathália;1327.811;115364291;Venezuela; +2018-11-15T23:45:32Z;Júlio Cesar;6925.362;115526344;Venezuela; +2018-11-15T23:16:48Z;Eduardo;3779.914;115389064;Venezuela; +2018-11-15T22:55:20Z;Eduardo;3288.168;115441196;Venezuela; +2018-11-15T22:42:39Z;nathalia;633.8198;115357602;Venezuela; +2018-11-15T22:31:10Z;nathalia;5464.226;115399213;Venezuela; +2018-11-15T22:30:59Z;Ana;261.0177;115131704;Venezuela; +2018-11-15T22:02:37Z;Eduardo;4146.494;115623497;Venezuela; +2018-11-15T21:52:35Z;Júlio Cesar;1129.072;116255098;Venezuela; +2018-11-15T21:47:42Z;Ana;88.68892;116162917;Venezuela; +2018-11-15T21:47:13Z;Júlio;4044.83;116013620;Venezuela; +2018-11-15T21:41:59Z;Eduardo;747.3409;115739180;Venezuela; +2018-11-15T21:41:59Z;Júlio;8544.213;114618155;Venezuela; +2018-11-15T21:40:39Z;Sandra;896.7114;115862073;Venezuela; +2018-11-15T21:40:03Z;Sandra;307.2382;114935999;Venezuela; +2018-11-15T21:26:42Z;Júlio;5850.393;115082721;Venezuela; +2018-11-15T21:26:21Z;Ana;3400.565;116367918;Venezuela; +2018-11-15T21:18:24Z;Ana;2547.825;114270749;Venezuela; +2018-11-15T21:18:12Z;Nathália;1698.075;114344156;Venezuela; +2018-11-15T21:12:25Z;nathalia;3489.307;115810755;Venezuela; +2018-11-15T20:49:38Z;Nathália;5149.382;114530424;Venezuela; +2018-11-15T20:06:22Z;Sandra;6102.167;115409659;Venezuela; +2018-11-15T20:00:59Z;Eduardo;2636.961;114473571;Venezuela; +2018-11-15T19:41:37Z;Eduardo;3577.795;114625040;Venezuela; +2018-11-15T19:33:12Z;Sandra;4581.215;115722991;Venezuela; +2018-11-15T19:30:09Z;Júlio;1489.188;114918638;Venezuela; +2018-11-15T19:12:58Z;nathalia;3416.778;116017263;Venezuela; +2018-11-15T18:33:57Z;Ana;358.0492;114232661;Venezuela; +2018-11-15T18:18:15Z;Armando;3909.429;114663907;Venezuela; +2018-11-15T18:16:53Z;Eduardo;1301.815;115759046;Venezuela; +2018-11-15T17:31:51Z;Ana;1106.232;115108483;Venezuela; +2018-11-15T17:17:45Z;Júlio Cesar;2145.434;116387447;Venezuela; +2018-11-15T17:10:04Z;Armando;4055.601;115010214;Venezuela; +2018-11-15T17:01:32Z;nathalia;2717.043;114694140;Venezuela; +2018-11-15T16:56:14Z;Nathália;83.31716;114944259;Venezuela; +2018-11-15T16:41:29Z;Ana;3736.614;114541837;Venezuela; +2018-11-15T16:33:00Z;Eduardo;2302.988;115886705;Venezuela; +2018-11-15T16:30:03Z;Sandra;325.0069;116073947;Venezuela; +2018-11-15T16:29:59Z;nathalia;2188.788;115111032;Venezuela; +2018-11-15T16:25:51Z;nathalia;3897.541;116123797;Venezuela; +2018-11-15T15:56:30Z;Ana;7078.393;114716266;Venezuela; +2018-11-15T15:54:13Z;Júlio Cesar;2898.553;114820594;Venezuela; +2018-11-15T15:13:58Z;Eduardo;3161.969;115835707;Venezuela; +2018-11-15T15:08:45Z;Júlio Cesar;2412.139;115799769;Venezuela; +2018-11-15T15:06:31Z;Nathália;1293.829;114828297;Venezuela; +2018-11-15T15:00:48Z;Eduardo;223.9363;115597333;Venezuela; +2018-11-15T15:00:11Z;Eduardo;232.4195;115520342;Venezuela; +2018-11-15T14:53:54Z;Ana;18.55091;115008505;Venezuela; +2018-11-15T14:15:11Z;Sandra;96.55139;114906616;Venezuela; +2018-11-15T14:08:57Z;nathalia;399.09;114615627;Venezuela; +2018-11-15T14:05:06Z;Júlio Cesar;3122.536;115350390;Venezuela; +2018-11-15T13:42:49Z;Eduardo;961.1212;116193815;Venezuela; +2018-11-15T13:01:19Z;Nathália;7961.381;114331323;Venezuela; +2018-11-15T12:38:55Z;Júlio Cesar;2139.424;114567701;Venezuela; +2018-11-15T12:28:41Z;Júlio Cesar;22.10039;115238753;Venezuela; +2018-11-15T12:25:19Z;Sandra;561.6058;114545586;Venezuela; +2018-11-15T12:01:47Z;Júlio;1021.729;114481712;Venezuela; +2018-11-15T11:57:02Z;nathalia;341.1096;115146009;Venezuela; +2018-11-15T11:55:12Z;Júlio Cesar;1058.526;116343121;Venezuela; +2018-11-15T11:53:06Z;nathalia;4721.975;115564288;Venezuela; +2018-11-15T11:24:50Z;Armando;2982.482;114870129;Venezuela; +2018-11-15T11:19:26Z;Nathália;1125.924;115692244;Venezuela; +2018-11-15T11:05:29Z;Ana;1148.931;114760940;Venezuela; +2018-11-15T10:59:38Z;Armando;142.7191;115610428;Venezuela; +2018-11-15T09:51:39Z;Eduardo;893.462;115227071;Venezuela; +2018-11-15T09:27:47Z;Júlio Cesar;5618.506;115911588;Venezuela; +2018-11-15T08:51:09Z;nathalia;2729.395;114789711;Venezuela; +2018-11-15T08:31:04Z;Sandra;1471.615;114849162;Venezuela; +2018-11-15T08:01:42Z;Eduardo;346.2984;114696664;Venezuela; +2018-11-15T08:00:48Z;Armando;5580.237;116302423;Venezuela; +2018-11-15T07:48:05Z;Ana;413.8844;115898089;Venezuela; +2018-11-15T07:38:45Z;Armando;3900.579;114697632;Venezuela; +2018-11-15T07:38:33Z;Eduardo;1378.152;115155157;Venezuela; +2018-11-15T07:23:57Z;Nathália;698.1073;116376483;Venezuela; +2018-11-15T07:11:20Z;Júlio Cesar;5627.036;115192218;Venezuela; +2018-11-15T07:01:21Z;Júlio;161.3997;114539217;Venezuela; +2018-11-15T06:54:46Z;Ana;3013.799;114407284;Venezuela; +2018-11-15T06:51:42Z;Sandra;1878.428;114750355;Venezuela; +2018-11-15T06:48:10Z;Júlio;920.8374;115347013;Venezuela; +2018-11-15T06:18:11Z;Sandra;5041.224;115771071;Venezuela; +2018-11-15T05:50:55Z;Júlio Cesar;1979.206;114445407;Venezuela; +2018-11-15T05:47:25Z;Eduardo;959.2056;115386245;Venezuela; +2018-11-15T05:19:15Z;Nathália;7035.058;115645984;Venezuela; +2018-11-15T05:17:15Z;Armando;2203.381;114512670;Venezuela; +2018-11-15T05:16:52Z;Armando;7659.456;115040670;Venezuela; +2018-11-15T05:13:45Z;nathalia;1156.973;114764973;Venezuela; +2018-11-15T04:50:43Z;Ana;1218.094;114747299;Venezuela; +2018-11-15T04:45:12Z;Nathália;2229.094;115933116;Venezuela; +2018-11-15T04:40:48Z;Nathália;590.6595;115269573;Venezuela; +2018-11-15T04:12:07Z;Armando;987.5571;116190814;Venezuela; +2018-11-15T04:05:06Z;Júlio;5674.77;114778691;Venezuela; +2018-11-15T03:56:38Z;Sandra;359.5042;115599826;Venezuela; +2018-11-15T03:48:47Z;Eduardo;4908.703;114362193;Venezuela; +2018-11-15T03:36:28Z;Nathália;7370.176;116104868;Venezuela; +2018-11-15T03:15:03Z;Nathália;123.6783;114548244;Venezuela; +2018-11-15T03:13:04Z;Sandra;1982.055;114305260;Venezuela; +2018-11-15T02:40:39Z;Júlio;272.7692;116389747;Venezuela; +2018-11-15T02:38:51Z;Nathália;4456.987;115323081;Venezuela; +2018-11-15T02:32:02Z;Ana;898.1335;114761366;Venezuela; +2018-11-15T02:15:48Z;Eduardo;436.9646;115032077;Venezuela; +2018-11-15T02:14:53Z;Armando;5635.631;114920239;Venezuela; +2018-11-15T02:03:08Z;nathalia;889.2637;116050682;Venezuela; +2018-11-15T01:46:46Z;Nathália;4025.453;115022229;Venezuela; +2018-11-15T01:45:25Z;Sandra;190.2213;114702414;Venezuela; +2018-11-15T01:44:35Z;Ana;3784.511;115430752;Venezuela; +2018-11-15T01:30:10Z;Sandra;3984.942;116087542;Venezuela; +2018-11-15T01:21:23Z;Ana;3255.562;114635795;Venezuela; +2018-11-15T00:54:22Z;Sandra;3468.993;115518976;Venezuela; +2018-11-15T00:52:49Z;Sandra;3044.135;115773759;Venezuela; +2018-11-15T00:46:54Z;Nathália;1733.682;114657336;Venezuela; +2018-11-15T00:35:49Z;Júlio Cesar;892.7023;114555888;Venezuela; +2018-11-15T00:27:33Z;Eduardo;2830.999;115266322;Venezuela; +2018-11-15T00:19:33Z;Armando;1517.376;115074201;Venezuela; +2018-11-15T00:18:56Z;Eduardo;30.8489;114945315;Venezuela; +2018-11-15T00:10:27Z;nathalia;82.6255;115061955;Venezuela; +2018-11-15T00:09:56Z;Ana;889.6054;115995370;Venezuela; +2018-11-14T23:58:17Z;Eduardo;3721.229;114767564;Venezuela; +2018-11-14T23:38:53Z;Ana;925.3544;114469134;Venezuela; +2018-11-14T23:08:18Z;nathalia;23.24884;115382395;Venezuela; +2018-11-14T23:07:03Z;nathalia;3305.696;116388009;Venezuela; +2018-11-14T22:58:08Z;Armando;1480.091;114866377;Venezuela; +2018-11-14T22:57:51Z;Júlio;323.5698;115912124;Venezuela; +2018-11-14T22:53:47Z;Armando;3459.165;116294070;Venezuela; +2018-11-14T22:51:36Z;nathalia;868.3199;116289533;Venezuela; +2018-11-14T22:27:36Z;Nathália;394.5423;115247689;Venezuela; +2018-11-14T22:18:24Z;Ana;1553.597;114586951;Venezuela; +2018-11-14T22:08:05Z;Nathália;403.5345;115760474;Venezuela; +2018-11-14T21:50:49Z;Eduardo;1579.758;114710403;Venezuela; +2018-11-14T21:46:50Z;Júlio Cesar;194.949;115514434;Venezuela; +2018-11-14T21:43:57Z;Júlio Cesar;230.4773;115308892;Venezuela; +2018-11-14T21:35:10Z;nathalia;3760.8;116384000;Venezuela; +2018-11-14T21:26:21Z;Armando;136.4215;115651512;Venezuela; +2018-11-14T21:21:37Z;Ana;2766.551;115540534;Venezuela; +2018-11-14T20:39:56Z;Ana;1327.742;114318904;Venezuela; +2018-11-14T20:20:51Z;nathalia;339.3796;116140768;Venezuela; +2018-11-14T20:10:20Z;Armando;939.944;114461277;Venezuela; +2018-11-14T20:07:01Z;nathalia;2914.621;115630496;Venezuela; +2018-11-14T20:02:33Z;Ana;2175.106;114733010;Venezuela; +2018-11-14T19:17:55Z;Sandra;727.0437;115130019;Venezuela; +2018-11-14T18:42:31Z;Nathália;3143.427;115853349;Venezuela; +2018-11-14T18:03:15Z;nathalia;464.1263;114868211;Venezuela; +2018-11-14T18:01:03Z;Nathália;1341.258;114390995;Venezuela; +2018-11-14T17:56:47Z;Armando;524.5955;116370404;Venezuela; +2018-11-14T17:51:33Z;Nathália;697.907;116122077;Venezuela; +2018-11-14T17:46:43Z;nathalia;4363.487;114270855;Venezuela; +2018-11-14T17:35:00Z;Júlio;2897.263;116292906;Venezuela; +2018-11-14T17:22:04Z;Eduardo;131.1799;114946916;Venezuela; +2018-11-14T17:18:28Z;Nathália;2325.647;114450722;Venezuela; +2018-11-14T17:13:38Z;Eduardo;75.52625;115195907;Venezuela; +2018-11-14T17:12:29Z;Nathália;2141.77;115753410;Venezuela; +2018-11-14T16:51:30Z;Sandra;4664.807;116267801;Venezuela; +2018-11-14T16:39:09Z;Nathália;286.5188;114479913;Venezuela; +2018-11-14T16:14:16Z;Eduardo;287.2365;115834372;Venezuela; +2018-11-14T15:40:47Z;Júlio;6825.92;114543064;Venezuela; +2018-11-14T15:23:58Z;Eduardo;1390.711;115385374;Venezuela; +2018-11-14T15:18:30Z;nathalia;23.79908;115903621;Venezuela; +2018-11-14T15:09:16Z;Júlio Cesar;1017.664;115373369;Venezuela; +2018-11-14T15:07:29Z;nathalia;733.8419;114804087;Venezuela; +2018-11-14T15:01:40Z;Júlio;679.7906;114543464;Venezuela; +2018-11-14T14:44:12Z;Ana;1143.973;116343958;Venezuela; +2018-11-14T14:34:42Z;Nathália;4028.486;115715238;Venezuela; +2018-11-14T14:33:54Z;Nathália;2369.725;116371838;Venezuela; +2018-11-14T14:15:53Z;nathalia;6566.744;116381358;Venezuela; +2018-11-14T14:06:11Z;Armando;8888.93;115863555;Venezuela; +2018-11-14T13:48:04Z;Nathália;3180.704;114432077;Venezuela; +2018-11-14T13:35:37Z;Ana;1266.017;114523698;Venezuela; +2018-11-14T13:34:37Z;Sandra;2785.355;114414736;Venezuela; +2018-11-14T13:21:12Z;nathalia;4889.725;116101634;Venezuela; +2018-11-14T13:16:57Z;Ana;1347.322;115241652;Venezuela; +2018-11-14T13:12:15Z;nathalia;695.4981;114847776;Venezuela; +2018-11-14T13:09:42Z;Júlio;4411.025;115046710;Venezuela; +2018-11-14T13:06:48Z;Júlio Cesar;1029.765;115446885;Venezuela; +2018-11-14T12:57:00Z;nathalia;4217.016;114653405;Venezuela; +2018-11-14T12:53:12Z;Ana;2231.819;115197221;Venezuela; +2018-11-14T12:42:45Z;Armando;3109.266;115763257;Venezuela; +2018-11-14T12:40:28Z;Eduardo;4402.874;115264345;Venezuela; +2018-11-14T12:35:12Z;Nathália;38.10022;114957494;Venezuela; +2018-11-14T11:54:31Z;Sandra;1423.807;114530342;Venezuela; +2018-11-14T11:50:40Z;Júlio;5123.91;115994083;Venezuela; +2018-11-14T11:05:15Z;Sandra;671.9343;114231692;Venezuela; +2018-11-14T10:21:27Z;Nathália;545.0524;116154650;Venezuela; +2018-11-14T10:18:11Z;Armando;1399.572;115137488;Venezuela; +2018-11-14T09:53:34Z;Sandra;866.0451;114963745;Venezuela; +2018-11-14T09:20:39Z;Sandra;896.5087;115931661;Venezuela; +2018-11-14T08:58:51Z;Júlio Cesar;443.2323;115529593;Venezuela; +2018-11-14T08:48:24Z;Júlio Cesar;4316.725;115410059;Venezuela; +2018-11-14T08:36:52Z;Júlio Cesar;1566.576;115257484;Venezuela; +2018-11-14T07:53:22Z;Armando;2511.571;115759733;Venezuela; +2018-11-14T07:08:35Z;Armando;2989.258;114632001;Venezuela; +2018-11-14T06:54:19Z;Nathália;1208.977;115412614;Venezuela; +2018-11-14T06:22:53Z;Júlio Cesar;643.7475;115350336;Venezuela; +2018-11-14T06:14:36Z;Armando;238.6991;114562349;Venezuela; +2018-11-14T06:05:07Z;Armando;1594.883;114617801;Venezuela; +2018-11-14T06:02:23Z;Sandra;2406.162;115218866;Venezuela; +2018-11-14T05:31:55Z;Eduardo;533.2563;116321458;Venezuela; +2018-11-14T05:28:29Z;Nathália;2814.571;115392652;Venezuela; +2018-11-14T05:25:15Z;Ana;5544.472;115409836;Venezuela; +2018-11-14T05:14:21Z;Eduardo;3044.155;116295608;Venezuela; +2018-11-14T05:05:51Z;Júlio Cesar;725.4004;115999491;Venezuela; +2018-11-14T05:02:09Z;Ana;853.2074;116372473;Venezuela; +2018-11-14T04:31:05Z;Sandra;3505.738;115084924;Venezuela; +2018-11-14T04:30:16Z;Nathália;4751.852;116095323;Venezuela; +2018-11-14T04:16:30Z;Armando;1155.9;114948799;Venezuela; +2018-11-14T03:52:02Z;Eduardo;690.2101;116186430;Venezuela; +2018-11-14T03:03:04Z;Júlio;5187.274;115130241;Venezuela; +2018-11-14T02:21:49Z;Nathália;4359.627;116269177;Venezuela; +2018-11-14T02:09:30Z;Júlio;4672.327;114891091;Venezuela; +2018-11-14T02:01:03Z;Armando;890.3345;114319807;Venezuela; +2018-11-14T02:01:00Z;Eduardo;1155.116;115397160;Venezuela; +2018-11-14T02:00:15Z;Júlio;2025.667;115792775;Venezuela; +2018-11-14T01:48:14Z;Sandra;3732.954;114600769;Venezuela; +2018-11-14T01:04:49Z;Nathália;604.5204;114552669;Venezuela; +2018-11-14T00:33:08Z;Armando;4970.456;114712529;Venezuela; +2018-11-14T00:31:33Z;Ana;998.942;114691863;Venezuela; +2018-11-14T00:24:18Z;Nathália;2424.046;115778192;Venezuela; +2018-11-14T00:12:02Z;Ana;2217.795;115936831;Venezuela; +2018-11-13T23:56:42Z;Nathália;339.328;115596088;Venezuela; +2018-11-13T23:37:25Z;Ana;989.2796;116341761;Venezuela; +2018-11-13T23:34:13Z;Júlio;304.2796;115743657;Venezuela; +2018-11-13T23:01:06Z;Ana;4443.422;115803964;Venezuela; +2018-11-13T22:51:00Z;Armando;4096.009;114928101;Venezuela; +2018-11-13T22:48:14Z;Ana;3072.839;116316394;Venezuela; +2018-11-13T22:44:07Z;nathalia;791.8808;115774489;Venezuela; +2018-11-13T22:04:15Z;Júlio Cesar;2723.869;116388428;Venezuela; +2018-11-13T21:53:16Z;Eduardo;3680.807;116323952;Venezuela; +2018-11-13T21:25:40Z;Nathália;992.8799;116263081;Venezuela; +2018-11-13T21:10:55Z;Sandra;236.5458;114297844;Venezuela; +2018-11-13T21:09:52Z;nathalia;741.7159;114738810;Venezuela; +2018-11-13T21:09:10Z;Júlio Cesar;679.5842;116220435;Venezuela; +2018-11-13T20:39:54Z;Eduardo;6410.865;114268184;Venezuela; +2018-11-13T20:28:29Z;nathalia;3162.013;115941953;Venezuela; +2018-11-13T20:21:14Z;Eduardo;4462.499;114992432;Venezuela; +2018-11-13T20:17:22Z;Júlio;881.5665;115146892;Venezuela; +2018-11-13T20:13:47Z;Nathália;2084.646;114460046;Venezuela; +2018-11-13T19:09:54Z;Nathália;3059.203;115713109;Venezuela; +2018-11-13T19:08:39Z;Júlio;2408.715;116091515;Venezuela; +2018-11-13T18:37:44Z;Sandra;2542.837;115346249;Venezuela; +2018-11-13T18:37:20Z;Sandra;5671.509;115749778;Venezuela; +2018-11-13T18:37:11Z;Sandra;22.62743;116301512;Venezuela; +2018-11-13T18:26:39Z;nathalia;11463.37;114691374;Venezuela; +2018-11-13T18:03:30Z;Júlio;1911.943;114243940;Venezuela; +2018-11-13T17:54:01Z;Armando;3540.967;115548164;Venezuela; +2018-11-13T17:50:02Z;Ana;2314.437;115765430;Venezuela; +2018-11-13T17:45:11Z;Nathália;2942.177;114805342;Venezuela; +2018-11-13T17:44:57Z;Sandra;929.093;115236707;Venezuela; +2018-11-13T17:30:21Z;nathalia;1703.834;115641269;Venezuela; +2018-11-13T17:17:49Z;Nathália;712.525;116286063;Venezuela; +2018-11-13T17:11:15Z;Júlio Cesar;2238.301;114414789;Venezuela; +2018-11-13T17:09:42Z;nathalia;1461.752;115598877;Venezuela; +2018-11-13T16:51:12Z;Nathália;3075.072;114304354;Venezuela; +2018-11-13T16:48:07Z;Armando;3026.774;115676132;Venezuela; +2018-11-13T16:24:24Z;Júlio Cesar;2298.467;114795949;Venezuela; +2018-11-13T16:09:06Z;Eduardo;2744.034;115202792;Venezuela; +2018-11-13T15:35:07Z;Sandra;109.1995;116094172;Venezuela; +2018-11-13T14:43:03Z;Sandra;791.0975;114627375;Venezuela; +2018-11-13T13:25:44Z;Júlio Cesar;153.4777;115126383;Venezuela; +2018-11-13T13:04:03Z;Ana;2062.109;114230888;Venezuela; +2018-11-13T13:03:13Z;Ana;11.76681;115173185;Venezuela; +2018-11-13T12:55:27Z;Armando;3036.54;116094290;Venezuela; +2018-11-13T12:50:03Z;Nathália;1151.056;116184385;Venezuela; +2018-11-13T12:43:55Z;Júlio;3536.5;114931925;Venezuela; +2018-11-13T12:36:02Z;Sandra;188.4381;115253468;Venezuela; +2018-11-13T11:59:42Z;Júlio Cesar;2022.755;115014061;Venezuela; +2018-11-13T11:39:10Z;Armando;1615.56;115642574;Venezuela; +2018-11-13T10:52:22Z;Nathália;284.9331;116359756;Venezuela; +2018-11-13T10:47:29Z;Armando;1390.936;114683982;Venezuela; +2018-11-13T10:30:11Z;Eduardo;684.6728;116042676;Venezuela; +2018-11-13T10:29:33Z;Armando;5560.524;115480260;Venezuela; +2018-11-13T10:14:38Z;Sandra;606.9766;115034708;Venezuela; +2018-11-13T09:58:03Z;Júlio;5701.56;116130055;Venezuela; +2018-11-13T09:49:37Z;nathalia;1508.15;115874296;Venezuela; +2018-11-13T09:48:24Z;Armando;21.78096;115312816;Venezuela; +2018-11-13T09:31:28Z;Nathália;3471.835;114826562;Venezuela; +2018-11-13T08:39:05Z;Ana;331.3879;115051835;Venezuela; +2018-11-13T08:20:09Z;Sandra;1017.481;114825919;Venezuela; +2018-11-13T07:43:17Z;Júlio Cesar;2054.639;114672979;Venezuela; +2018-11-13T06:51:56Z;nathalia;708.0677;114863172;Venezuela; +2018-11-13T06:32:38Z;Eduardo;5648.588;114614835;Venezuela; +2018-11-13T05:34:05Z;Sandra;1682.481;115720545;Venezuela; +2018-11-13T05:28:14Z;Júlio Cesar;2201.173;116391134;Venezuela; +2018-11-13T05:08:56Z;Eduardo;3926.31;115674381;Venezuela; +2018-11-13T04:35:36Z;Júlio Cesar;1082.749;116058239;Venezuela; +2018-11-13T04:27:09Z;Sandra;182.3146;114770059;Venezuela; +2018-11-13T04:06:17Z;Júlio;955.5194;115696001;Venezuela; +2018-11-13T03:40:33Z;Armando;24.44053;115558563;Venezuela; +2018-11-13T02:57:43Z;Júlio Cesar;211.0019;115258491;Venezuela; +2018-11-13T02:56:58Z;Júlio;3978.505;115416718;Venezuela; +2018-11-13T02:41:39Z;Júlio Cesar;864.1194;115747011;Venezuela; +2018-11-13T02:40:01Z;Júlio Cesar;2074.83;116262617;Venezuela; +2018-11-13T02:37:25Z;Júlio;2034.164;115091041;Venezuela; +2018-11-13T02:09:15Z;Ana;898.9222;116035831;Venezuela; +2018-11-13T02:06:20Z;Eduardo;2672.916;114453801;Venezuela; +2018-11-13T01:53:46Z;Eduardo;6917.532;116009590;Venezuela; +2018-11-13T01:44:07Z;Eduardo;1016.706;115696264;Venezuela; +2018-11-13T01:34:58Z;Ana;147.4291;114717790;Venezuela; +2018-11-13T01:33:11Z;Ana;1672.279;116224993;Venezuela; +2018-11-13T01:31:15Z;Ana;2139.303;116159261;Venezuela; +2018-11-13T01:27:46Z;Eduardo;5455.884;114257414;Venezuela; +2018-11-13T01:25:34Z;Nathália;114.1689;115102957;Venezuela; +2018-11-13T01:10:31Z;Ana;1767.856;114788695;Venezuela; +2018-11-13T01:01:11Z;Nathália;2068.518;115364265;Venezuela; +2018-11-13T00:49:03Z;Júlio Cesar;658.1168;114493198;Venezuela; +2018-11-13T00:45:43Z;Sandra;1586.214;114433109;Venezuela; +2018-11-13T00:43:05Z;Ana;2601.455;115314005;Venezuela; +2018-12-20T00:31:17Z;Júlio;193;115555598;Germany; +2018-12-22T06:30:01Z;Sandra;100;116400001;Germany; +2018-12-22T06:35:00Z;Sandra;200;116400002;Germany; +2018-12-22T06:42:12Z;Eduardo;200;116400005;Germany; +2018-12-22T06:55:54Z;Eduardo;150;116400009;Germany; +2018-12-22T06:59:07Z;Eduardo;20000;116400010;Germany; +2018-11-10T04:02:56Z;;null;166420322;; +2018-11-10T13:12:06Z;;170.21;166420323;; +2018-11-10T05:12:09Z;;1002.35;166420324;; +2018-11-10T02:43:41Z;;2560.76;166420325;; + diff --git a/Data/user-events.json b/Data/user-events.json index 0c7aed03..4b14dd4c 100644 --- a/Data/user-events.json +++ b/Data/user-events.json @@ -1,3 +1,3 @@ -{"dateOfEvent":"15/06/2022","timeOfEvent":"15/06/2022 14:33:10","userId":"b902e51e-d043-4a66-afc4-a820173e1bb4","nameOfEvent":"entry"} -{"dateOfEvent":"15/06/2022","timeOfEvent":"15/06/2022 14:40:08","userId":"b902e51e-d043-4a66-afc4-a820173e1bb4","nameOfEvent":"click: shop"} +{"dateOfEvent":"15/06/2022","timeOfEvent":"15/06/2022 14:33:10","userId":"b902e51e-d043-4a66-afc4-a820173e1bb4","nameOfEvent":"entry"} +{"dateOfEvent":"15/06/2022","timeOfEvent":"15/06/2022 14:40:08","userId":"b902e51e-d043-4a66-afc4-a820173e1bb4","nameOfEvent":"click: shop"} {"dateOfEvent":"15/06/2022","timeOfEvent":"15/06/2022 15:48:41","userId":"b902e51e-d043-4a66-afc4-a820173e1bb4","nameOfEvent":"select: payment-method"} \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md index 5071e7f8..f07dcfaa 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,395 +1,395 @@ -Attribution 4.0 International -Copyright (c) 2023 Pedro Duarte Faria -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution 4.0 International Public License ("Public License"). To the -extent this Public License may be interpreted as a contract, You are -granted the Licensed Rights in consideration of Your acceptance of -these terms and conditions, and the Licensor grants You such rights in -consideration of benefits the Licensor receives from making the -Licensed Material available under these terms and conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Adapter's License means the license You apply to Your Copyright - and Similar Rights in Your contributions to Adapted Material in - accordance with the terms and conditions of this Public License. - - c. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - d. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - e. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - f. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - g. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - h. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - i. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - j. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - k. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part; and - - b. produce, reproduce, and Share Adapted Material. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material (including in modified - form), You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - 4. If You Share Adapted Material You produce, the Adapter's - License You apply must not prevent recipients of the Adapted - Material from complying with this Public License. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database; - - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material; and - - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - - -======================================================================= - -Creative Commons is not a party to its public -licenses. Notwithstanding, Creative Commons may elect to apply one of -its public licenses to material it publishes and in those instances -will be considered the “Licensor.†The text of the Creative Commons -public licenses is dedicated to the public domain under the CC0 Public -Domain Dedication. Except for the limited purpose of indicating that -material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the -public licenses. - -Creative Commons may be contacted at creativecommons.org. +Attribution 4.0 International +Copyright (c) 2023 Pedro Duarte Faria +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.†The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/README.md b/README.md index b6f18e74..7fdbd09c 100644 --- a/README.md +++ b/README.md @@ -1,39 +1,39 @@ -# Introd-pyspark - - An open and introductory book for the Python API of Apache Spark. The book "Introduction to pyspark" provides a quick introduction for the `pyspark` Python package, which is the Python API of Apache Spark. - -Read the book at: . - -With `pyspark` you are able to use the Python language to write Spark applications and run them on a Spark cluster in a scalable and elegant way. This book focus on teaching the fundamentals of `pyspark`, and how to use it for big data analysis. - -Some of the main subjects discussed in the book are: - -- How an Apache Spark application works? -- What are Spark DataFrames? -- How to transform and model your Spark DataFrame. -- How to import data into, and export data out of Apache Spark. -- How to work with SQL inside pyspark. -- Tools for manipulating specific data types (e.g. string, dates and datetimes). -- How to use window functions. - - -## About the author - -Pedro Duarte Faria have a bachelor degree in Economics from Federal University of Ouro Preto - Brazil. Currently, he is a Data Engineer at Blip, and an Associate Developer for Apache Spark 3.0 certified by Databricks. - -The author have more than 3 years of experience in the data analysis market. He developed data pipelines, reports and analysis for research institutions and some of the largest companies in the brazilian financial sector, such as the BMG Bank, Sodexo and Pan Bank, besides dealing with databases that go beyond the billion rows. - -Furthermore, Pedro is specialized on the R programming language, and have given several lectures and courses about it, inside graduate centers (such as PPEA-UFOP), in addition to federal and state organizations (such as FJP-MG). As researcher, he have experience in the field of Science, Technology and Innovation Economics. - -Personal Website: - -Twitter: [@PedroPark9](https://twitter.com/PedroPark9) - -Mastodon: [@pedropark99@fosstodon.org](https://fosstodon.org/@pedropark99) - - -## License - -Copyright © 2024 Pedro Duarte Faria. This book is licensed by the CC-BY 4.0 Creative Commons Attribution 4.0 International Public License. - -Creative Commons License +# Introd-pyspark + + An open and introductory book for the Python API of Apache Spark. The book "Introduction to pyspark" provides a quick introduction for the `pyspark` Python package, which is the Python API of Apache Spark. + +Read the book at: . + +With `pyspark` you are able to use the Python language to write Spark applications and run them on a Spark cluster in a scalable and elegant way. This book focus on teaching the fundamentals of `pyspark`, and how to use it for big data analysis. + +Some of the main subjects discussed in the book are: + +- How an Apache Spark application works? +- What are Spark DataFrames? +- How to transform and model your Spark DataFrame. +- How to import data into, and export data out of Apache Spark. +- How to work with SQL inside pyspark. +- Tools for manipulating specific data types (e.g. string, dates and datetimes). +- How to use window functions. + + +## About the author + +Pedro Duarte Faria have a bachelor degree in Economics from Federal University of Ouro Preto - Brazil. Currently, he is a Data Engineer at Blip, and an Associate Developer for Apache Spark 3.0 certified by Databricks. + +The author have more than 3 years of experience in the data analysis market. He developed data pipelines, reports and analysis for research institutions and some of the largest companies in the brazilian financial sector, such as the BMG Bank, Sodexo and Pan Bank, besides dealing with databases that go beyond the billion rows. + +Furthermore, Pedro is specialized on the R programming language, and have given several lectures and courses about it, inside graduate centers (such as PPEA-UFOP), in addition to federal and state organizations (such as FJP-MG). As researcher, he have experience in the field of Science, Technology and Innovation Economics. + +Personal Website: + +Twitter: [@PedroPark9](https://twitter.com/PedroPark9) + +Mastodon: [@pedropark99@fosstodon.org](https://fosstodon.org/@pedropark99) + + +## License + +Copyright © 2024 Pedro Duarte Faria. This book is licensed by the CC-BY 4.0 Creative Commons Attribution 4.0 International Public License. + +Creative Commons License diff --git a/Scripts/clean_output_stages.py b/Scripts/clean_output_stages.py index bd9d5235..72211652 100644 --- a/Scripts/clean_output_stages.py +++ b/Scripts/clean_output_stages.py @@ -1,45 +1,45 @@ -import re -from pathlib import Path -from bs4 import BeautifulSoup - - -def get_html_chapter_files(folder): - chapters_files = [x for x in Path(folder).iterdir()] - return [str(x) for x in chapters_files if x.is_file() and x.name.endswith('html')] - -chapters_folder = "./docs/Chapters/" -chapters_files = get_html_chapter_files(chapters_folder) - - -def read_file(path): - with open(path, mode = 'r', encoding = "utf8") as file_connection: - content = file_connection.readlines() - return content - -def read_html_file(path): - text_file = read_file(path) - text_file = ''.join(text_file) - return BeautifulSoup(text_file, features="html.parser") - - -def remove_stages(html_file): - for node in html_file.find_all("code"): - text = node.text - pattern = re.compile("^\\[Stage ") - if pattern.match(text): - node.decompose() - - return html_file - - -def rewrite_without_stages(path): - html_file = read_html_file(path) - html_file = remove_stages(html_file) - with open(path, "w", encoding = "utf8") as file_connection: - file_connection.write(str(html_file)) - return - - -for path in chapters_files: - print(f"[INFO]: Rewriting {path}...") - rewrite_without_stages(path) +import re +from pathlib import Path +from bs4 import BeautifulSoup + + +def get_html_chapter_files(folder): + chapters_files = [x for x in Path(folder).iterdir()] + return [str(x) for x in chapters_files if x.is_file() and x.name.endswith('html')] + +chapters_folder = "./docs/Chapters/" +chapters_files = get_html_chapter_files(chapters_folder) + + +def read_file(path): + with open(path, mode = 'r', encoding = "utf8") as file_connection: + content = file_connection.readlines() + return content + +def read_html_file(path): + text_file = read_file(path) + text_file = ''.join(text_file) + return BeautifulSoup(text_file, features="html.parser") + + +def remove_stages(html_file): + for node in html_file.find_all("code"): + text = node.text + pattern = re.compile("^\\[Stage ") + if pattern.match(text): + node.decompose() + + return html_file + + +def rewrite_without_stages(path): + html_file = read_html_file(path) + html_file = remove_stages(html_file) + with open(path, "w", encoding = "utf8") as file_connection: + file_connection.write(str(html_file)) + return + + +for path in chapters_files: + print(f"[INFO]: Rewriting {path}...") + rewrite_without_stages(path) diff --git a/Scripts/clean_pdf_outputs.py b/Scripts/clean_pdf_outputs.py index f8145fa1..2cc87ee4 100644 --- a/Scripts/clean_pdf_outputs.py +++ b/Scripts/clean_pdf_outputs.py @@ -1,132 +1,132 @@ -import sys -import os -import re -from itertools import chain - -from print_big_dataframe import print_dataframe -from print_big_list import print_big_list, split_list_into_lines -from print_big_text import print_big_text - -TEX_FILE_PATH = "Introduction-to-`pyspark`.tex" -# Number of characters to use as the limit for truncate -# lines of text -TRUNCATE_LIMIT = 65 -BEGIN_VERBATIM_REGEX = r'\\begin\{verbatim\}' -END_VERBATIM_REGEX = r'\\end\{verbatim\}' -STAGE_REGEX = r'^\[Stage' - -def read_text_file(file_path): - with open(file_path, mode = 'r', encoding = "utf8") as file_connection: - content = file_connection.read() - return content - -def write_text_file(file_path, content): - with open(file_path, 'w', encoding = 'utf-8') as file_connection: - file_connection.write(content) - -TEX_FILE = read_text_file(TEX_FILE_PATH) -TEX_LINES = TEX_FILE.split('\n') - - -def find_positions(lines, regex_pattern): - positions = list() - pattern = re.compile(regex_pattern) - - for i, string in enumerate(lines): - if pattern.search(string): - positions.append(i) - - return positions - - -BEGIN_POSITIONS = find_positions(TEX_LINES, BEGIN_VERBATIM_REGEX) -END_POSITIONS = find_positions(TEX_LINES, END_VERBATIM_REGEX) - - -def build_chunk_ranges(begin_positions, end_positions): - chunk_ranges = list() - for b, e in zip(begin_positions, end_positions): - chunk_ranges.append(list(range(b + 1, e + 1))) - return chunk_ranges - - -CHUNK_RANGES = build_chunk_ranges(BEGIN_POSITIONS, END_POSITIONS) -def collect_chunk_content(chunk_range): - s = chunk_range[0] - e = chunk_range[-1] - return '\n'.join(TEX_LINES[s:e]) - - -def is_dataframe_output(text): - return text.startswith('+--') - -def is_list_output(text): - regex = re.compile(r'(^\[)|(^StructType\()') - return regex.match(text) - -def is_stage_output(text): - regex = re.compile(STAGE_REGEX) - return regex.match(text) - - -def need_adjustment(text, n_chars = TRUNCATE_LIMIT): - lines = text.split('\n') - for line in lines: - if len(line) >= n_chars: - return True - - return False - -def adjust_chunk_output(text_to_adjust): - text_adjusted = text_to_adjust - if is_dataframe_output(text_to_adjust) and need_adjustment(text_to_adjust): - print("[INFO]: Found a DataFrame output that needs adjustment! Adjusting...") - return print_dataframe(text_to_adjust, n_chars = TRUNCATE_LIMIT) - if is_list_output(text_to_adjust) and need_adjustment(text_to_adjust): - print("[INFO]: Found a list output that needs adjustment! Adjusting...") - return print_big_list(text_to_adjust, n_chars = TRUNCATE_LIMIT) - if need_adjustment(text_to_adjust): - print("[INFO]: Found text output that needs adjustment! Adjusting...") - return print_big_text(text_to_adjust, n_chars = TRUNCATE_LIMIT) - - - return text_adjusted - - - -adjusted_lines = list() -last_index = 0 -for chunk_range in CHUNK_RANGES: - start_index = chunk_range[0] - end_index = chunk_range[-1] - print(f"[INFO]: Found chunk output at indexes {start_index}, {end_index}") - chunk_output = collect_chunk_content(chunk_range) - - if is_stage_output(chunk_output): - # Remove stage outputs - print("[INFO]: Found a stage output at: ", start_index) - adjusted_lines.append('\n'.join([ - '\n'.join(TEX_LINES[last_index:(start_index - 1)]) - ])) - last_index = end_index + 1 - continue - - # The chunk is not a stage output - adjusted_output = adjust_chunk_output(chunk_output) - adjusted_lines.append('\n'.join([ - '\n'.join(TEX_LINES[last_index:start_index]), - adjusted_output, - TEX_LINES[end_index] - ])) - last_index = end_index + 1 - - -# Append the last lines of the document -adjusted_lines.append('\n'.join([ - '\n'.join(TEX_LINES[last_index:]) -])) - -adjusted_lines = '\n'.join(adjusted_lines) -write_text_file('tex_adjusted.tex', adjusted_lines) -print(f"[INFO]: Rewrited tex file {'tex_adjusted.tex'}") - +import sys +import os +import re +from itertools import chain + +from print_big_dataframe import print_dataframe +from print_big_list import print_big_list, split_list_into_lines +from print_big_text import print_big_text + +TEX_FILE_PATH = "Introduction-to-`pyspark`.tex" +# Number of characters to use as the limit for truncate +# lines of text +TRUNCATE_LIMIT = 65 +BEGIN_VERBATIM_REGEX = r'\\begin\{verbatim\}' +END_VERBATIM_REGEX = r'\\end\{verbatim\}' +STAGE_REGEX = r'^\[Stage' + +def read_text_file(file_path): + with open(file_path, mode = 'r', encoding = "utf8") as file_connection: + content = file_connection.read() + return content + +def write_text_file(file_path, content): + with open(file_path, 'w', encoding = 'utf-8') as file_connection: + file_connection.write(content) + +TEX_FILE = read_text_file(TEX_FILE_PATH) +TEX_LINES = TEX_FILE.split('\n') + + +def find_positions(lines, regex_pattern): + positions = list() + pattern = re.compile(regex_pattern) + + for i, string in enumerate(lines): + if pattern.search(string): + positions.append(i) + + return positions + + +BEGIN_POSITIONS = find_positions(TEX_LINES, BEGIN_VERBATIM_REGEX) +END_POSITIONS = find_positions(TEX_LINES, END_VERBATIM_REGEX) + + +def build_chunk_ranges(begin_positions, end_positions): + chunk_ranges = list() + for b, e in zip(begin_positions, end_positions): + chunk_ranges.append(list(range(b + 1, e + 1))) + return chunk_ranges + + +CHUNK_RANGES = build_chunk_ranges(BEGIN_POSITIONS, END_POSITIONS) +def collect_chunk_content(chunk_range): + s = chunk_range[0] + e = chunk_range[-1] + return '\n'.join(TEX_LINES[s:e]) + + +def is_dataframe_output(text): + return text.startswith('+--') + +def is_list_output(text): + regex = re.compile(r'(^\[)|(^StructType\()') + return regex.match(text) + +def is_stage_output(text): + regex = re.compile(STAGE_REGEX) + return regex.match(text) + + +def need_adjustment(text, n_chars = TRUNCATE_LIMIT): + lines = text.split('\n') + for line in lines: + if len(line) >= n_chars: + return True + + return False + +def adjust_chunk_output(text_to_adjust): + text_adjusted = text_to_adjust + if is_dataframe_output(text_to_adjust) and need_adjustment(text_to_adjust): + print("[INFO]: Found a DataFrame output that needs adjustment! Adjusting...") + return print_dataframe(text_to_adjust, n_chars = TRUNCATE_LIMIT) + if is_list_output(text_to_adjust) and need_adjustment(text_to_adjust): + print("[INFO]: Found a list output that needs adjustment! Adjusting...") + return print_big_list(text_to_adjust, n_chars = TRUNCATE_LIMIT) + if need_adjustment(text_to_adjust): + print("[INFO]: Found text output that needs adjustment! Adjusting...") + return print_big_text(text_to_adjust, n_chars = TRUNCATE_LIMIT) + + + return text_adjusted + + + +adjusted_lines = list() +last_index = 0 +for chunk_range in CHUNK_RANGES: + start_index = chunk_range[0] + end_index = chunk_range[-1] + print(f"[INFO]: Found chunk output at indexes {start_index}, {end_index}") + chunk_output = collect_chunk_content(chunk_range) + + if is_stage_output(chunk_output): + # Remove stage outputs + print("[INFO]: Found a stage output at: ", start_index) + adjusted_lines.append('\n'.join([ + '\n'.join(TEX_LINES[last_index:(start_index - 1)]) + ])) + last_index = end_index + 1 + continue + + # The chunk is not a stage output + adjusted_output = adjust_chunk_output(chunk_output) + adjusted_lines.append('\n'.join([ + '\n'.join(TEX_LINES[last_index:start_index]), + adjusted_output, + TEX_LINES[end_index] + ])) + last_index = end_index + 1 + + +# Append the last lines of the document +adjusted_lines.append('\n'.join([ + '\n'.join(TEX_LINES[last_index:]) +])) + +adjusted_lines = '\n'.join(adjusted_lines) +write_text_file('tex_adjusted.tex', adjusted_lines) +print(f"[INFO]: Rewrited tex file {'tex_adjusted.tex'}") + diff --git a/Scripts/compile_book.py b/Scripts/compile_book.py index 01edce94..b9940a61 100644 --- a/Scripts/compile_book.py +++ b/Scripts/compile_book.py @@ -1,165 +1,165 @@ -import re -import os - - -from print_big_dataframe import print_dataframe -from print_big_list import print_big_list -from print_big_text import print_big_text - - -def read_file(path): - with open(path, 'r') as file: - file_contents = file.read() - return file_contents - -def write_file(path, text): - with open(path, 'w') as file: - file.write(text) - return True - -#os.system("quarto render . --to pdf") - - -files = os.listdir('.') -tex_path = list(filter(lambda x: x.endswith('.tex'), files))[0] -tex_path = '/home/pedro/Documentos/Projetos/Livros/Introd-pyspark/Introduction-to-`pyspark`.tex' -tex_file = read_file(tex_path) -tex_file = tex_file.split('\n') - - -def find_substring(lines, substring): - positions = list() - for i in range(len(lines)): - if substring in lines[i]: - positions.append(i) - - return positions - - -def get_chunk_content(chunk_text): - regex = r'\\begin{verbatim}\n|\n\\end{verbatim}' - content = re.sub(regex, '', chunk_text) - return content - - -def detect_chunk_type(content): - df_regex = r'^[+]--' - list_regex = r'^(\[|\{|StructType)' - df_description_regex = r'^DataFrame\[' - - if re.match(df_regex, content): - return 'DataFrame' - elif re.match(df_description_regex, content): - return 'DataFrame description' - elif re.match(list_regex, content): - return 'list' - else: - return 'str' - - -chunks_begin = find_substring(tex_file, '\\begin{verbatim}') -chunks_end = find_substring(tex_file, '\\end{verbatim}') - - - -if len(chunks_begin) != len(chunks_end): - print(len(chunks_begin)) - print(len(chunks_end)) - - print(chunks_begin) - print(chunks_end) - - raise Exception('Quantidade de inícios de chunks está diferente do número de finais de chunks!') - - -chunks = list() -for i in range(len(chunks_begin)): - begin = chunks_begin[i] - end = chunks_end[i] + 1 - chunk_text = '\n'.join(tex_file[begin:end]) - chunk_content = get_chunk_content(chunk_text) - chunk_type = detect_chunk_type(chunk_content) - chunks.append({ - 'chunk_begin': begin, 'chunk_end': end, - 'chunk_content': chunk_content, - 'chunk_type': chunk_type - }) - - - - - -def truncate_chunks(chunk, n_chars = 80): - chunk_type = chunk['chunk_type'] - if chunk_type == 'DataFrame': - chunk['chunk_content'] = print_dataframe(chunk['chunk_content'], n_chars) - return chunk - elif chunk_type == 'DataFrame description': - chunk['chunk_content'] = print_big_list(chunk['chunk_content'], n_chars) - return chunk - elif chunk_type == 'list': - chunk['chunk_content'] = print_big_list(chunk['chunk_content'], n_chars) - return chunk - else: - chunk['chunk_content'] = print_big_text(chunk['chunk_content'], n_chars) - return chunk - - -chunks = [truncate_chunks(chunk) for chunk in chunks] - -for chunk in chunks: - chunk_begin = chunk['chunk_begin'] - chunk_end = chunk['chunk_end'] - chunk_content = chunk['chunk_content'].split('\n') - - n_lines_content = len(chunk_content) - n_lines_content_with_begin_end = n_lines_content + 2 - n_lines_chunk = chunk_end - chunk_begin - if n_lines_content_with_begin_end > n_lines_chunk: - n_lines_to_merge = n_lines_content_with_begin_end - n_lines_chunk + 1 - lines_to_merge = chunk_content[(n_lines_content - n_lines_to_merge):n_lines_content] - merged_lines = '\n'.join(lines_to_merge) - chunk_content = chunk_content[:(n_lines_content - n_lines_to_merge)] - chunk_content.append(merged_lines) - - - tex_file[chunk_begin + 1:chunk_end - 1] = chunk_content - - -tex_file = '\n'.join(tex_file) -new_path = 'Introd-pyspark-fixed.tex' -write_file(new_path, tex_file) - -os.system(f"xelatex \"{new_path}\"") -os.system(f"bibtex \"{new_path}\"") -os.system(f"xelatex \"{new_path}\"") - -#### TESTS ================================ -# transf_chunk = list() -# for chunk in chunks: -# chunk_content = chunk['chunk_content'] -# if 'dateTransfer' in chunk_content: -# transf_chunk.append(chunk) - -# chunk = transf_chunk[0] -# chunk = truncate_chunks(chunk) -# chunk_begin = chunk['chunk_begin'] -# chunk_end = chunk['chunk_end'] -# chunk_content = chunk['chunk_content'].split('\n') - -# n_lines_content = len(chunk_content) -# n_lines_content_with_begin_end = n_lines_content + 2 -# n_lines_chunk = chunk_end - chunk_begin -# if n_lines_content_with_begin_end > n_lines_chunk: -# n_lines_to_merge = n_lines_content_with_begin_end - n_lines_chunk + 1 -# lines_to_merge = chunk_content[(n_lines_content - n_lines_to_merge):n_lines_content] -# merged_lines = '\n'.join(lines_to_merge) -# chunk_content = chunk_content[:(n_lines_content - n_lines_to_merge)] -# chunk_content.append(merged_lines) - - -# print(n_lines_content) -# print("================") -# print(tex_file[chunk_begin:chunk_end]) - - +import re +import os + + +from print_big_dataframe import print_dataframe +from print_big_list import print_big_list +from print_big_text import print_big_text + + +def read_file(path): + with open(path, 'r') as file: + file_contents = file.read() + return file_contents + +def write_file(path, text): + with open(path, 'w') as file: + file.write(text) + return True + +#os.system("quarto render . --to pdf") + + +files = os.listdir('.') +tex_path = list(filter(lambda x: x.endswith('.tex'), files))[0] +tex_path = '/home/pedro/Documentos/Projetos/Livros/Introd-pyspark/Introduction-to-`pyspark`.tex' +tex_file = read_file(tex_path) +tex_file = tex_file.split('\n') + + +def find_substring(lines, substring): + positions = list() + for i in range(len(lines)): + if substring in lines[i]: + positions.append(i) + + return positions + + +def get_chunk_content(chunk_text): + regex = r'\\begin{verbatim}\n|\n\\end{verbatim}' + content = re.sub(regex, '', chunk_text) + return content + + +def detect_chunk_type(content): + df_regex = r'^[+]--' + list_regex = r'^(\[|\{|StructType)' + df_description_regex = r'^DataFrame\[' + + if re.match(df_regex, content): + return 'DataFrame' + elif re.match(df_description_regex, content): + return 'DataFrame description' + elif re.match(list_regex, content): + return 'list' + else: + return 'str' + + +chunks_begin = find_substring(tex_file, '\\begin{verbatim}') +chunks_end = find_substring(tex_file, '\\end{verbatim}') + + + +if len(chunks_begin) != len(chunks_end): + print(len(chunks_begin)) + print(len(chunks_end)) + + print(chunks_begin) + print(chunks_end) + + raise Exception('Quantidade de inícios de chunks está diferente do número de finais de chunks!') + + +chunks = list() +for i in range(len(chunks_begin)): + begin = chunks_begin[i] + end = chunks_end[i] + 1 + chunk_text = '\n'.join(tex_file[begin:end]) + chunk_content = get_chunk_content(chunk_text) + chunk_type = detect_chunk_type(chunk_content) + chunks.append({ + 'chunk_begin': begin, 'chunk_end': end, + 'chunk_content': chunk_content, + 'chunk_type': chunk_type + }) + + + + + +def truncate_chunks(chunk, n_chars = 80): + chunk_type = chunk['chunk_type'] + if chunk_type == 'DataFrame': + chunk['chunk_content'] = print_dataframe(chunk['chunk_content'], n_chars) + return chunk + elif chunk_type == 'DataFrame description': + chunk['chunk_content'] = print_big_list(chunk['chunk_content'], n_chars) + return chunk + elif chunk_type == 'list': + chunk['chunk_content'] = print_big_list(chunk['chunk_content'], n_chars) + return chunk + else: + chunk['chunk_content'] = print_big_text(chunk['chunk_content'], n_chars) + return chunk + + +chunks = [truncate_chunks(chunk) for chunk in chunks] + +for chunk in chunks: + chunk_begin = chunk['chunk_begin'] + chunk_end = chunk['chunk_end'] + chunk_content = chunk['chunk_content'].split('\n') + + n_lines_content = len(chunk_content) + n_lines_content_with_begin_end = n_lines_content + 2 + n_lines_chunk = chunk_end - chunk_begin + if n_lines_content_with_begin_end > n_lines_chunk: + n_lines_to_merge = n_lines_content_with_begin_end - n_lines_chunk + 1 + lines_to_merge = chunk_content[(n_lines_content - n_lines_to_merge):n_lines_content] + merged_lines = '\n'.join(lines_to_merge) + chunk_content = chunk_content[:(n_lines_content - n_lines_to_merge)] + chunk_content.append(merged_lines) + + + tex_file[chunk_begin + 1:chunk_end - 1] = chunk_content + + +tex_file = '\n'.join(tex_file) +new_path = 'Introd-pyspark-fixed.tex' +write_file(new_path, tex_file) + +os.system(f"xelatex \"{new_path}\"") +os.system(f"bibtex \"{new_path}\"") +os.system(f"xelatex \"{new_path}\"") + +#### TESTS ================================ +# transf_chunk = list() +# for chunk in chunks: +# chunk_content = chunk['chunk_content'] +# if 'dateTransfer' in chunk_content: +# transf_chunk.append(chunk) + +# chunk = transf_chunk[0] +# chunk = truncate_chunks(chunk) +# chunk_begin = chunk['chunk_begin'] +# chunk_end = chunk['chunk_end'] +# chunk_content = chunk['chunk_content'].split('\n') + +# n_lines_content = len(chunk_content) +# n_lines_content_with_begin_end = n_lines_content + 2 +# n_lines_chunk = chunk_end - chunk_begin +# if n_lines_content_with_begin_end > n_lines_chunk: +# n_lines_to_merge = n_lines_content_with_begin_end - n_lines_chunk + 1 +# lines_to_merge = chunk_content[(n_lines_content - n_lines_to_merge):n_lines_content] +# merged_lines = '\n'.join(lines_to_merge) +# chunk_content = chunk_content[:(n_lines_content - n_lines_to_merge)] +# chunk_content.append(merged_lines) + + +# print(n_lines_content) +# print("================") +# print(tex_file[chunk_begin:chunk_end]) + + diff --git a/Scripts/compile_pdf_tex.R b/Scripts/compile_pdf_tex.R index 0735f7e4..aff034f0 100644 --- a/Scripts/compile_pdf_tex.R +++ b/Scripts/compile_pdf_tex.R @@ -1,13 +1,13 @@ -library(tinytex) -TEX_FILE <- "Introduction-to-`pyspark`.tex" -PDF_FILE <- "Introduction-to-`pyspark`.pdf" - -TEX_FILE <- "tex_adjusted.tex" -tinytex::xelatex(file = TEX_FILE, min_times = 2, max_times = 3, clean = TRUE) -# file.copy( -# from = PDF_FILE, -# to = paste0("docs/", PDF_FILE), -# overwrite = TRUE -# ) - +library(tinytex) +TEX_FILE <- "Introduction-to-`pyspark`.tex" +PDF_FILE <- "Introduction-to-`pyspark`.pdf" + +TEX_FILE <- "tex_adjusted.tex" +tinytex::xelatex(file = TEX_FILE, min_times = 2, max_times = 3, clean = TRUE) +# file.copy( +# from = PDF_FILE, +# to = paste0("docs/", PDF_FILE), +# overwrite = TRUE +# ) + # file.remove(PDF_FILE) \ No newline at end of file diff --git a/Scripts/pdf-test/.gitignore b/Scripts/pdf-test/.gitignore index ebd7da38..075b2542 100644 --- a/Scripts/pdf-test/.gitignore +++ b/Scripts/pdf-test/.gitignore @@ -1 +1 @@ -/.quarto/ +/.quarto/ diff --git a/Scripts/pdf-test/_quarto.yml b/Scripts/pdf-test/_quarto.yml index ca7825e6..de686b07 100644 --- a/Scripts/pdf-test/_quarto.yml +++ b/Scripts/pdf-test/_quarto.yml @@ -1,16 +1,16 @@ -project: - type: book - -book: - title: "Introduction to `pyspark`" - author: "Pedro Duarte Faria" - date: "today" - edition: "First edition" - chapters: - - index.qmd - -number-sections: true -format: - pdf: - fontsize: 11pt - keep-tex: true +project: + type: book + +book: + title: "Introduction to `pyspark`" + author: "Pedro Duarte Faria" + date: "today" + edition: "First edition" + chapters: + - index.qmd + +number-sections: true +format: + pdf: + fontsize: 11pt + keep-tex: true diff --git a/Scripts/pdf-test/index.qmd b/Scripts/pdf-test/index.qmd index d5ea918a..16c8ce57 100644 --- a/Scripts/pdf-test/index.qmd +++ b/Scripts/pdf-test/index.qmd @@ -1,58 +1,58 @@ -# Preface {.unnumbered} -## About this book {.unnumbered} - -Hello! This book provides an introduction to [`pyspark`](https://spark.apache.org/docs/latest/api/python/), which is a Python API to [Apache Spark](https://spark.apache.org/). Here, you will learn how to perform the most commom data analysis tasks and useful data transformations with Python to process huge amounts of data. - -```{python} -#| include: false -# To execute the next chunks with success, we need to start a Spark Session -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() -sc = spark.sparkContext -sc.setLogLevel("OFF") -``` - - -```{python} -from pyspark.sql.types import StructType, StructField -from pyspark.sql.types import DoubleType, StringType -from pyspark.sql.types import LongType, TimestampType, DateType -path = "../../Data/transf.csv" -schema = StructType([ - StructField('dateTransfer', DateType(), False), - StructField('datetimeTransfer', TimestampType(), False), - StructField('clientNumber', LongType(), False), - StructField('transferValue', DoubleType(), False), - StructField('transferCurrency', StringType(), False), - StructField('transferID', LongType(), False), - StructField('transferLog', StringType(), False), - StructField('destinationBankNumber', LongType(), False), - StructField('destinationBankBranch', LongType(), False), - StructField('destinationBankAccount', StringType(), False) -]) - -transf = spark.read\ - .csv(path, schema = schema, sep = ";", header = True) -``` - - -```{python} -transf.show() -``` - - -``` -StructType([StructField('id', LongType(), True), StructField('value', DoubleType(), True), StructField('date', DateType(), True)]) -``` - - -``` -Py4JError: An error occurred while calling o216.and. Trace: py4j.Py4JException: Method and([class java.lang.Integer]) does not exist aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:318) -at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:326) -at py4j.Gateway.invoke(Gateway.java:274) -at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:132) -at py4j.commands.CallCommand.execute(CallCommand.java:79) -at py4j.ClientServerConnection.waitForCommands(ClientServerConnection.java:182) -at py4j.ClientServerConnection.run(ClientServerConnection.java:106) -at java.base/java.lang.Thread.run(Thread.java:829) +# Preface {.unnumbered} +## About this book {.unnumbered} + +Hello! This book provides an introduction to [`pyspark`](https://spark.apache.org/docs/latest/api/python/), which is a Python API to [Apache Spark](https://spark.apache.org/). Here, you will learn how to perform the most commom data analysis tasks and useful data transformations with Python to process huge amounts of data. + +```{python} +#| include: false +# To execute the next chunks with success, we need to start a Spark Session +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() +sc = spark.sparkContext +sc.setLogLevel("OFF") +``` + + +```{python} +from pyspark.sql.types import StructType, StructField +from pyspark.sql.types import DoubleType, StringType +from pyspark.sql.types import LongType, TimestampType, DateType +path = "../../Data/transf.csv" +schema = StructType([ + StructField('dateTransfer', DateType(), False), + StructField('datetimeTransfer', TimestampType(), False), + StructField('clientNumber', LongType(), False), + StructField('transferValue', DoubleType(), False), + StructField('transferCurrency', StringType(), False), + StructField('transferID', LongType(), False), + StructField('transferLog', StringType(), False), + StructField('destinationBankNumber', LongType(), False), + StructField('destinationBankBranch', LongType(), False), + StructField('destinationBankAccount', StringType(), False) +]) + +transf = spark.read\ + .csv(path, schema = schema, sep = ";", header = True) +``` + + +```{python} +transf.show() +``` + + +``` +StructType([StructField('id', LongType(), True), StructField('value', DoubleType(), True), StructField('date', DateType(), True)]) +``` + + +``` +Py4JError: An error occurred while calling o216.and. Trace: py4j.Py4JException: Method and([class java.lang.Integer]) does not exist aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:318) +at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:326) +at py4j.Gateway.invoke(Gateway.java:274) +at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:132) +at py4j.commands.CallCommand.execute(CallCommand.java:79) +at py4j.ClientServerConnection.waitForCommands(ClientServerConnection.java:182) +at py4j.ClientServerConnection.run(ClientServerConnection.java:106) +at java.base/java.lang.Thread.run(Thread.java:829) ``` \ No newline at end of file diff --git a/Scripts/print_big_dataframe.py b/Scripts/print_big_dataframe.py index f7dc88e1..175683d2 100644 --- a/Scripts/print_big_dataframe.py +++ b/Scripts/print_big_dataframe.py @@ -1,148 +1,148 @@ -from contextlib import redirect_stdout -from print_big_text import print_big_text -import io - -df = '''+------------+-------------------+------------+-------------+----------------+----------+-----------+---------------------+---------------------+----------------------+ -|dateTransfer| datetimeTransfer|clientNumber|transferValue|transferCurrency|transferID|transferLog|destinationBankNumber|destinationBankBranch|destinationBankAccount| -+------------+-------------------+------------+-------------+----------------+----------+-----------+---------------------+---------------------+----------------------+ -| 2022-12-31|2022-12-31 07:37:02| 4608| 5603.0| dollar $| 20223561| null| 666| 4425| 41323-1| -| 2022-12-31|2022-12-31 07:35:05| 1121| 4365.22| dollar $| 20223560| null| 666| 2400| 74120-4| -| 2022-12-31|2022-12-31 02:44:46| 1121| 7158.0| zing ƒ| 20223558| null| 290| 1100| 35424-4| -| 2022-12-31|2022-12-31 01:02:06| 4862| 6714.0| dollar $| 20223557| null| 666| 1002| 71839-1| -| 2022-12-31|2022-12-31 00:48:47| 3294| 10882.52| dollar $| 20223556| null| 666| 2231| 50190-5| -+------------+-------------------+------------+-------------+----------------+----------+-----------+---------------------+---------------------+----------------------+''' - - -# https://stackoverflow.com/questions/1218933/can-i-redirect-the-stdout-into-some-sort-of-string-buffer -# with io.StringIO() as buf, redirect_stdout(buf): -# output = buf.getvalue() -def get_substring_indexes(text, substring): - indexes = list() - for i in range(len(text)): - char = text[i] - if char == substring: - indexes.append(i) - return indexes - - - -def get_columns_names(text): - column_names = text.split('|') - column_names = [name.strip() for name in column_names] - column_names = list(filter(lambda name: name != '', column_names)) - return column_names - -def get_columns_in_range(text, max_index): - truncated_text = text[0:max_index] - column_names = truncated_text.split('|') - column_names = [name.strip() for name in column_names] - column_names = list(filter(lambda name: name != '', column_names)) - return column_names - - -def create_remainder_message(columns, max_index, n_chars): - all_columns = get_columns_names(columns) - columns_in_range = get_columns_in_range(columns, max_index) - remaining_columns = list() - for column in all_columns: - if column not in columns_in_range: - remaining_columns.append(column) - - n = len(remaining_columns) - if n > 0: - columns = ', '.join(remaining_columns) - message = f"... with {n} more columns: {columns}" - message = print_big_text(message, max_index) - else: - return None - - return message - - -def add_column_delimiter(lines): - for i in range(len(lines)): - line = lines[i] - n = len(line) - if line[n - 1] == '-': - line = line + '+' - else: - line = line + '|' - - lines[i] = line - - return lines - - - - - - - -def print_dataframe_two_blocks(text, n_chars = 80): - lines = text.split('\n') - first_line = lines[0] - - if len(first_line) <= n_chars: - return text - - trunc_area = first_line[0:n_chars] - column_seps = get_substring_indexes(trunc_area, '+') - max_char = max(column_seps) - first_block = list() - second_block = list() - for i in range(len(lines)): - line = lines[i] - n = len(line) - first_block.append(line[0:max_char]) - second_block.append(line[(max_char+1):n]) - - first_block = add_column_delimiter(first_block) - - dataframe = first_block + [''] + second_block - dataframe = '\n'.join(dataframe) - - return dataframe - - - - - - -def print_dataframe(text, n_chars = 80): - lines = text.split('\n') - first_line = lines[0] - - if len(first_line) <= n_chars: - return text - - column_seps = get_substring_indexes(first_line, '+') - max_index = max(filter(lambda x: x <= n_chars, column_seps)) - remainder_message = create_remainder_message(lines[1], max_index, n_chars) - - truncated_block = list() - for i in range(len(lines)): - line = lines[i] - if 'only showing top' in line: - truncated_block.append(line) - break - - truncated_line = line[0:max_index] - - if truncated_line[max_index - 1] == '-': - truncated_line = truncated_line + '+' - else: - truncated_line = truncated_line + '|' - - truncated_block.append(truncated_line) - - if remainder_message: - truncated_block.append(remainder_message) - truncated_block = '\n'.join(truncated_block) - - return truncated_block - - - -# t = print_dataframe_two_blocks(df) - +from contextlib import redirect_stdout +from print_big_text import print_big_text +import io + +df = '''+------------+-------------------+------------+-------------+----------------+----------+-----------+---------------------+---------------------+----------------------+ +|dateTransfer| datetimeTransfer|clientNumber|transferValue|transferCurrency|transferID|transferLog|destinationBankNumber|destinationBankBranch|destinationBankAccount| ++------------+-------------------+------------+-------------+----------------+----------+-----------+---------------------+---------------------+----------------------+ +| 2022-12-31|2022-12-31 07:37:02| 4608| 5603.0| dollar $| 20223561| null| 666| 4425| 41323-1| +| 2022-12-31|2022-12-31 07:35:05| 1121| 4365.22| dollar $| 20223560| null| 666| 2400| 74120-4| +| 2022-12-31|2022-12-31 02:44:46| 1121| 7158.0| zing ƒ| 20223558| null| 290| 1100| 35424-4| +| 2022-12-31|2022-12-31 01:02:06| 4862| 6714.0| dollar $| 20223557| null| 666| 1002| 71839-1| +| 2022-12-31|2022-12-31 00:48:47| 3294| 10882.52| dollar $| 20223556| null| 666| 2231| 50190-5| ++------------+-------------------+------------+-------------+----------------+----------+-----------+---------------------+---------------------+----------------------+''' + + +# https://stackoverflow.com/questions/1218933/can-i-redirect-the-stdout-into-some-sort-of-string-buffer +# with io.StringIO() as buf, redirect_stdout(buf): +# output = buf.getvalue() +def get_substring_indexes(text, substring): + indexes = list() + for i in range(len(text)): + char = text[i] + if char == substring: + indexes.append(i) + return indexes + + + +def get_columns_names(text): + column_names = text.split('|') + column_names = [name.strip() for name in column_names] + column_names = list(filter(lambda name: name != '', column_names)) + return column_names + +def get_columns_in_range(text, max_index): + truncated_text = text[0:max_index] + column_names = truncated_text.split('|') + column_names = [name.strip() for name in column_names] + column_names = list(filter(lambda name: name != '', column_names)) + return column_names + + +def create_remainder_message(columns, max_index, n_chars): + all_columns = get_columns_names(columns) + columns_in_range = get_columns_in_range(columns, max_index) + remaining_columns = list() + for column in all_columns: + if column not in columns_in_range: + remaining_columns.append(column) + + n = len(remaining_columns) + if n > 0: + columns = ', '.join(remaining_columns) + message = f"... with {n} more columns: {columns}" + message = print_big_text(message, max_index) + else: + return None + + return message + + +def add_column_delimiter(lines): + for i in range(len(lines)): + line = lines[i] + n = len(line) + if line[n - 1] == '-': + line = line + '+' + else: + line = line + '|' + + lines[i] = line + + return lines + + + + + + + +def print_dataframe_two_blocks(text, n_chars = 80): + lines = text.split('\n') + first_line = lines[0] + + if len(first_line) <= n_chars: + return text + + trunc_area = first_line[0:n_chars] + column_seps = get_substring_indexes(trunc_area, '+') + max_char = max(column_seps) + first_block = list() + second_block = list() + for i in range(len(lines)): + line = lines[i] + n = len(line) + first_block.append(line[0:max_char]) + second_block.append(line[(max_char+1):n]) + + first_block = add_column_delimiter(first_block) + + dataframe = first_block + [''] + second_block + dataframe = '\n'.join(dataframe) + + return dataframe + + + + + + +def print_dataframe(text, n_chars = 80): + lines = text.split('\n') + first_line = lines[0] + + if len(first_line) <= n_chars: + return text + + column_seps = get_substring_indexes(first_line, '+') + max_index = max(filter(lambda x: x <= n_chars, column_seps)) + remainder_message = create_remainder_message(lines[1], max_index, n_chars) + + truncated_block = list() + for i in range(len(lines)): + line = lines[i] + if 'only showing top' in line: + truncated_block.append(line) + break + + truncated_line = line[0:max_index] + + if truncated_line[max_index - 1] == '-': + truncated_line = truncated_line + '+' + else: + truncated_line = truncated_line + '|' + + truncated_block.append(truncated_line) + + if remainder_message: + truncated_block.append(remainder_message) + truncated_block = '\n'.join(truncated_block) + + return truncated_block + + + +# t = print_dataframe_two_blocks(df) + # print(t) \ No newline at end of file diff --git a/Scripts/print_big_list.py b/Scripts/print_big_list.py index c73c71ef..742bd2d7 100644 --- a/Scripts/print_big_list.py +++ b/Scripts/print_big_list.py @@ -1,82 +1,82 @@ -import re -import subprocess -import os - -test_list = "StructType([StructField('id', LongType(), True), StructField('value', DoubleType(), True), StructField('date', DateType(), True)])" - - -def get_substring_indexes(text, substring): - indexes = list() - for i in range(len(text)): - char = text[i] - if char == substring: - indexes.append(i) - return indexes - - -def is_trunc_needed(lines, n_chars): - for line in lines: - n = len(line) - if n > n_chars: - return True - - return False - - -def truncate_line(line, n_chars): - truncated_text = list() - current_line = line - stage_regex = r'\[Stage [0-9]:>' - - while True: - if len(current_line) <= n_chars: - truncated_text.append(current_line) - break - - if re.match(stage_regex, current_line): - truncated_text.append(current_line) - break - - breakpoints = get_substring_indexes(current_line, ',') - max_index = max(filter(lambda index: index <= n_chars, breakpoints)) - - trunc_text = current_line[:max_index] - truncated_text.append(trunc_text) - current_line = current_line[max_index:] - - truncated_text = '\n'.join(truncated_text) - return truncated_text - - - - -def print_big_list(text, n_chars = 80): - from pprint import pformat - text = re.sub("\n", ' ', text) - formatted_output = pformat(text, indent = 2, width = n_chars) - formatted_output = re.sub("^[(]", "", formatted_output) - formatted_output = re.sub("[)]$", "", formatted_output) - formatted_output = formatted_output.split('\n') - for i in range(len(formatted_output)): - current_line = formatted_output[i] - for chr in current_line: - if chr == '"' or chr == "'": - char_to_replace = chr - break - - formatted_output[i] = re.sub(char_to_replace, '', current_line) - - formatted_output = "\n".join(formatted_output) - return formatted_output - - -def split_list_into_lines(input_list, max_items_per_line): - input_list = [x.strip() for x in input_list.split(',')] - result = [input_list[i:i + max_items_per_line] for i in range(0, len(input_list), max_items_per_line)] - adjusted_lines = list() - for line_elements in result: - adjusted_lines.append(', '.join(line_elements)) - - return ',\n'.join(adjusted_lines) - - +import re +import subprocess +import os + +test_list = "StructType([StructField('id', LongType(), True), StructField('value', DoubleType(), True), StructField('date', DateType(), True)])" + + +def get_substring_indexes(text, substring): + indexes = list() + for i in range(len(text)): + char = text[i] + if char == substring: + indexes.append(i) + return indexes + + +def is_trunc_needed(lines, n_chars): + for line in lines: + n = len(line) + if n > n_chars: + return True + + return False + + +def truncate_line(line, n_chars): + truncated_text = list() + current_line = line + stage_regex = r'\[Stage [0-9]:>' + + while True: + if len(current_line) <= n_chars: + truncated_text.append(current_line) + break + + if re.match(stage_regex, current_line): + truncated_text.append(current_line) + break + + breakpoints = get_substring_indexes(current_line, ',') + max_index = max(filter(lambda index: index <= n_chars, breakpoints)) + + trunc_text = current_line[:max_index] + truncated_text.append(trunc_text) + current_line = current_line[max_index:] + + truncated_text = '\n'.join(truncated_text) + return truncated_text + + + + +def print_big_list(text, n_chars = 80): + from pprint import pformat + text = re.sub("\n", ' ', text) + formatted_output = pformat(text, indent = 2, width = n_chars) + formatted_output = re.sub("^[(]", "", formatted_output) + formatted_output = re.sub("[)]$", "", formatted_output) + formatted_output = formatted_output.split('\n') + for i in range(len(formatted_output)): + current_line = formatted_output[i] + for chr in current_line: + if chr == '"' or chr == "'": + char_to_replace = chr + break + + formatted_output[i] = re.sub(char_to_replace, '', current_line) + + formatted_output = "\n".join(formatted_output) + return formatted_output + + +def split_list_into_lines(input_list, max_items_per_line): + input_list = [x.strip() for x in input_list.split(',')] + result = [input_list[i:i + max_items_per_line] for i in range(0, len(input_list), max_items_per_line)] + adjusted_lines = list() + for line_elements in result: + adjusted_lines.append(', '.join(line_elements)) + + return ',\n'.join(adjusted_lines) + + diff --git a/Scripts/print_big_text.py b/Scripts/print_big_text.py index 412b7934..b716e7b5 100644 --- a/Scripts/print_big_text.py +++ b/Scripts/print_big_text.py @@ -1,62 +1,62 @@ -import re - - -def is_trunc_needed(lines, n_chars): - ns = [len(line) > n_chars for line in lines] - if any(ns): - return True - else: - return False - - -def truncate_line(line, n_chars): - truncated_text = list() - current_line = line - max_index = n_chars - - while True: - if len(current_line) <= n_chars: - truncated_text.append(current_line) - break - - trunc_text = current_line[:max_index] - truncated_text.append(trunc_text) - current_line = current_line[max_index:] - - truncated_text = '\n'.join(truncated_text) - return truncated_text - - - -def print_big_text(text, n_chars = 80): - lines = text.split('\n') - if is_trunc_needed(lines, n_chars) == False: - return text - - truncated_text = list() - for line in lines: - n = len(line) - if n > n_chars: - truncated_text.append( - truncate_line(line, n_chars) - ) - else: - truncated_text.append(line) - - truncated_text = '\n'.join(truncated_text) - return truncated_text - - -test_text = '''Py4JError: An error occurred while calling o216.and. Trace: -py4j.Py4JException: Method and([class java.lang.Integer]) does not exist -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:318) -at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:326) -at py4j.Gateway.invoke(Gateway.java:274) -at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:132) -at py4j.commands.CallCommand.execute(CallCommand.java:79) -at py4j.ClientServerConnection.waitForCommands(ClientServerConnection.java:182) -at py4j.ClientServerConnection.run(ClientServerConnection.java:106) -at java.base/java.lang.Thread.run(Thread.java:829)''' - -# t = print_big_text(test_text) +import re + + +def is_trunc_needed(lines, n_chars): + ns = [len(line) > n_chars for line in lines] + if any(ns): + return True + else: + return False + + +def truncate_line(line, n_chars): + truncated_text = list() + current_line = line + max_index = n_chars + + while True: + if len(current_line) <= n_chars: + truncated_text.append(current_line) + break + + trunc_text = current_line[:max_index] + truncated_text.append(trunc_text) + current_line = current_line[max_index:] + + truncated_text = '\n'.join(truncated_text) + return truncated_text + + + +def print_big_text(text, n_chars = 80): + lines = text.split('\n') + if is_trunc_needed(lines, n_chars) == False: + return text + + truncated_text = list() + for line in lines: + n = len(line) + if n > n_chars: + truncated_text.append( + truncate_line(line, n_chars) + ) + else: + truncated_text.append(line) + + truncated_text = '\n'.join(truncated_text) + return truncated_text + + +test_text = '''Py4JError: An error occurred while calling o216.and. Trace: +py4j.Py4JException: Method and([class java.lang.Integer]) does not exist +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:318) +at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:326) +at py4j.Gateway.invoke(Gateway.java:274) +at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:132) +at py4j.commands.CallCommand.execute(CallCommand.java:79) +at py4j.ClientServerConnection.waitForCommands(ClientServerConnection.java:182) +at py4j.ClientServerConnection.run(ClientServerConnection.java:106) +at java.base/java.lang.Thread.run(Thread.java:829)''' + +# t = print_big_text(test_text) # print(t) \ No newline at end of file diff --git a/Scripts/terminal-engine.R b/Scripts/terminal-engine.R index 51dfec18..9a21d793 100644 --- a/Scripts/terminal-engine.R +++ b/Scripts/terminal-engine.R @@ -1,26 +1,26 @@ - - -knitr::knit_engines$set(terminal = function(options) { - code <- paste(options$code, collapse = "\n") - code_to_run <- stringr::str_replace_all( - code, "Terminal\\$ ", "" - ) - code_to_run <- paste0("bash -c ", shQuote(code_to_run), collapse = "") - out <- system(code_to_run, intern = TRUE) - out <- out[!is_log_info(out)] - -# code <- stringr::str_replace_all( -# code, "Terminal\\$ ", -# '\nTerminal$\n' -# ) - - knitr::engine_output(options, code, out) -}) - - -is_log_info <- function(output) { - log_regex <- "[0-9]{2}/[0-9]{2}/[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2} WARN|\\[Stage " - stringr::str_detect(output, log_regex) -} - - + + +knitr::knit_engines$set(terminal = function(options) { + code <- paste(options$code, collapse = "\n") + code_to_run <- stringr::str_replace_all( + code, "Terminal\\$ ", "" + ) + code_to_run <- paste0("bash -c ", shQuote(code_to_run), collapse = "") + out <- system(code_to_run, intern = TRUE) + out <- out[!is_log_info(out)] + +# code <- stringr::str_replace_all( +# code, "Terminal\\$ ", +# '\nTerminal$\n' +# ) + + knitr::engine_output(options, code, out) +}) + + +is_log_info <- function(output) { + log_regex <- "[0-9]{2}/[0-9]{2}/[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2} WARN|\\[Stage " + stringr::str_detect(output, log_regex) +} + + diff --git a/Scripts/transf.R b/Scripts/transf.R index ef9a3dc9..afe57f70 100644 --- a/Scripts/transf.R +++ b/Scripts/transf.R @@ -1,158 +1,158 @@ -library(tidyverse) - -names <- c( - "Anne Frank", "Michael Scott", "Pam Beesly", "Jim Halpert", - "Dwight Schrute", "Angela Martin", "Kelly Kapoor", "Ryan Howard", - "Troy Bolton", "Gabriella Montez", "Sharpay Evans", - "Gina Weasley", "Harry Potter", "Hermione Granger", - "Jake Peralta", "Rosa Diaz", "Amy Santiago", "Gina Linetti", "Ray Holt", - "Charles Boyle", "Edward Elric", "Alphonse Elric", "Roy Mustang", - "Winry Rockbell", "Maes Hughes", "Ling Yao" -) - -cities <- c( - "Amsterdam", rep("Scranton", times = 7), - rep("Salt Lake", times = 3), rep("London", times = 3), - rep("New York", times = 6), rep("Central City", times = 6) -) - -countries <- c( - "Netherlands", rep("United States", times = 10), - rep("United Kingdom", times = 3), rep("United States", times = 6), - rep("Amestris", times = 6) -) - -streets <- c( - "Boomstraat", "Foster St", "Meade Ave", "Gunster Ave", - "Hawk Pi", "Ward Pi", "Bartel St", "Penn Ave", - "300 N", "Euclid Ave", "Patricia Way", - "Seymour Rd", "Duckett Rd", "Cavendish Rd", - "Washington Ave", "Prescott St", "Spruce St", - "Lefferts Rd", "Claydon Rd", "Kenwood Rd", - "Laurel", "Mullberry", "Avalon", "Central Ring", - "Central Ring", "Royal Garden" -) - -set.seed(450) -numbers <- sample(12:450, size = length(names), replace = TRUE) -branchs <- c(3321L, 4425L, 1979L, 8521L) -branchs <- sample(branchs, size = length(names), replace = TRUE) -account_numbers <- sample(24561:86421, size = length(names)) -account_numbers <- str_c(account_numbers, "-", sample(0:9,size = length(names), replace = TRUE)) - - -accounts <- tibble( - clientNumber = sample(1114:6532, size = length(names)), - clientName = names, - branchNumber = branchs, - accountNumber = account_numbers, - addressCountry = countries, - addressCity = cities, - adressStreet = streets, - adressNumber = numbers -) - - -write_csv(accounts, "Data/accounts.csv") - - - - - - -set.seed(555) -dates <- seq.Date(as.Date("2022-01-01"), as.Date("2022-12-31"), by = 1) -dates <- sample(dates, size = 2421, replace = TRUE) -set.seed(129) -hours <- sample(0:23, size = 2421, replace = TRUE) -set.seed(321) -minutes <- sample(0:59, size = 2421, replace = TRUE) -set.seed(1240) -seconds <- sample(0:59, size = 2421, replace = TRUE) - -format_time <- function(x){ - need_ajustment <- x < 10 - as_text <- as.character(x) - as_text[need_ajustment] <- str_c("0", as_text[need_ajustment]) - as_text -} - -hours <- hours %>% format_time() -minutes <- minutes %>% format_time() -seconds <- seconds %>% format_time() - -times <- sprintf("%s:%s:%s", hours, minutes, seconds) -datetimes <- sprintf("%s %s", dates, times) - - -transfer_values <- rnorm(n = 2421, mean = 6295, sd = 2500) -transfer_values[transfer_values < 0] <- transfer_values[transfer_values < 0] * -1 -transfer_values[transfer_values < 50] <- transfer_values[transfer_values < 50] * 10 -transfer_values <- as.integer(transfer_values) -set.seed(890) -offsets <- round(rnorm(2421), 2) -random_indexes <- sample(seq_along(offsets), size = length(offsets) / 2) -offsets[random_indexes] <- 0 -transfer_values <- transfer_values + offsets - - -client_numbers <- sample(accounts$clientNumber, size = 2421, replace = TRUE) - -transf <- tibble( - dateTransfer = lubridate::as_date(dates), - datetimeTransfer = lubridate::as_datetime(datetimes), - clientNumber = client_numbers, - transferValue = transfer_values -) - - -set.seed(789) -n <- nrow(transf) -dbank_numbers = sample(c("033", "421", "290", "666"), size = n, replace = TRUE) -dbank_branchs <- c(3321L, 4425L, 1979L, 8521L, 4078L, 9921L, 2231L, 6552L, 1200L, 1100L, - 5420L, 6317L, 1002L, 8800L, 2400L) -dbank_branchs <- sample(dbank_branchs, size = n, replace = TRUE) -dbank_accounts <- sample(24561:86421, size = n) -dbank_accounts <- str_c(dbank_accounts, "-", sample(0:9,size = n, replace = TRUE)) - -client_country <- accounts$addressCountry -names(client_country) <- as.character(accounts$clientNumber) -countries <- client_country[as.character(transf$clientNumber)] %>% unname() -currencies <- c( - "Netherlands" = "euro \U20AC", - "United Kingdom" = "british pound \U00A3", - "United States" = "dollar \U0024", - "Amestris" = "zing \U0192" -) - -transf <- transf %>% - arrange(datetimeTransfer) %>% - mutate( - transferCurrency = currencies[countries] %>% unname(), - transferID = as.character(seq_len(n) + 20221142), - destinationBankNumber = dbank_numbers, - destinationBankBranch = dbank_branchs, - destinationBankAccount = dbank_accounts - ) - - -set.seed(888) -msgs <- c( - "408 Request Timeout", - "408 Request Timeout", - "408 Request Timeout", - "408 Request Timeout", - "500 Server Unavailable", - "500 Server Unavailable" -) -random_index <- sample(seq_len(n), size = length(msgs)) -transf$transferLog <- NA_character_ -transf$transferLog[random_index] <- msgs - -transf <- transf %>% - select( - 1:6, transferLog, - everything() - ) - -write_delim(transf, "Data/transf.csv", delim = ";", na = "") +library(tidyverse) + +names <- c( + "Anne Frank", "Michael Scott", "Pam Beesly", "Jim Halpert", + "Dwight Schrute", "Angela Martin", "Kelly Kapoor", "Ryan Howard", + "Troy Bolton", "Gabriella Montez", "Sharpay Evans", + "Gina Weasley", "Harry Potter", "Hermione Granger", + "Jake Peralta", "Rosa Diaz", "Amy Santiago", "Gina Linetti", "Ray Holt", + "Charles Boyle", "Edward Elric", "Alphonse Elric", "Roy Mustang", + "Winry Rockbell", "Maes Hughes", "Ling Yao" +) + +cities <- c( + "Amsterdam", rep("Scranton", times = 7), + rep("Salt Lake", times = 3), rep("London", times = 3), + rep("New York", times = 6), rep("Central City", times = 6) +) + +countries <- c( + "Netherlands", rep("United States", times = 10), + rep("United Kingdom", times = 3), rep("United States", times = 6), + rep("Amestris", times = 6) +) + +streets <- c( + "Boomstraat", "Foster St", "Meade Ave", "Gunster Ave", + "Hawk Pi", "Ward Pi", "Bartel St", "Penn Ave", + "300 N", "Euclid Ave", "Patricia Way", + "Seymour Rd", "Duckett Rd", "Cavendish Rd", + "Washington Ave", "Prescott St", "Spruce St", + "Lefferts Rd", "Claydon Rd", "Kenwood Rd", + "Laurel", "Mullberry", "Avalon", "Central Ring", + "Central Ring", "Royal Garden" +) + +set.seed(450) +numbers <- sample(12:450, size = length(names), replace = TRUE) +branchs <- c(3321L, 4425L, 1979L, 8521L) +branchs <- sample(branchs, size = length(names), replace = TRUE) +account_numbers <- sample(24561:86421, size = length(names)) +account_numbers <- str_c(account_numbers, "-", sample(0:9,size = length(names), replace = TRUE)) + + +accounts <- tibble( + clientNumber = sample(1114:6532, size = length(names)), + clientName = names, + branchNumber = branchs, + accountNumber = account_numbers, + addressCountry = countries, + addressCity = cities, + adressStreet = streets, + adressNumber = numbers +) + + +write_csv(accounts, "Data/accounts.csv") + + + + + + +set.seed(555) +dates <- seq.Date(as.Date("2022-01-01"), as.Date("2022-12-31"), by = 1) +dates <- sample(dates, size = 2421, replace = TRUE) +set.seed(129) +hours <- sample(0:23, size = 2421, replace = TRUE) +set.seed(321) +minutes <- sample(0:59, size = 2421, replace = TRUE) +set.seed(1240) +seconds <- sample(0:59, size = 2421, replace = TRUE) + +format_time <- function(x){ + need_ajustment <- x < 10 + as_text <- as.character(x) + as_text[need_ajustment] <- str_c("0", as_text[need_ajustment]) + as_text +} + +hours <- hours %>% format_time() +minutes <- minutes %>% format_time() +seconds <- seconds %>% format_time() + +times <- sprintf("%s:%s:%s", hours, minutes, seconds) +datetimes <- sprintf("%s %s", dates, times) + + +transfer_values <- rnorm(n = 2421, mean = 6295, sd = 2500) +transfer_values[transfer_values < 0] <- transfer_values[transfer_values < 0] * -1 +transfer_values[transfer_values < 50] <- transfer_values[transfer_values < 50] * 10 +transfer_values <- as.integer(transfer_values) +set.seed(890) +offsets <- round(rnorm(2421), 2) +random_indexes <- sample(seq_along(offsets), size = length(offsets) / 2) +offsets[random_indexes] <- 0 +transfer_values <- transfer_values + offsets + + +client_numbers <- sample(accounts$clientNumber, size = 2421, replace = TRUE) + +transf <- tibble( + dateTransfer = lubridate::as_date(dates), + datetimeTransfer = lubridate::as_datetime(datetimes), + clientNumber = client_numbers, + transferValue = transfer_values +) + + +set.seed(789) +n <- nrow(transf) +dbank_numbers = sample(c("033", "421", "290", "666"), size = n, replace = TRUE) +dbank_branchs <- c(3321L, 4425L, 1979L, 8521L, 4078L, 9921L, 2231L, 6552L, 1200L, 1100L, + 5420L, 6317L, 1002L, 8800L, 2400L) +dbank_branchs <- sample(dbank_branchs, size = n, replace = TRUE) +dbank_accounts <- sample(24561:86421, size = n) +dbank_accounts <- str_c(dbank_accounts, "-", sample(0:9,size = n, replace = TRUE)) + +client_country <- accounts$addressCountry +names(client_country) <- as.character(accounts$clientNumber) +countries <- client_country[as.character(transf$clientNumber)] %>% unname() +currencies <- c( + "Netherlands" = "euro \U20AC", + "United Kingdom" = "british pound \U00A3", + "United States" = "dollar \U0024", + "Amestris" = "zing \U0192" +) + +transf <- transf %>% + arrange(datetimeTransfer) %>% + mutate( + transferCurrency = currencies[countries] %>% unname(), + transferID = as.character(seq_len(n) + 20221142), + destinationBankNumber = dbank_numbers, + destinationBankBranch = dbank_branchs, + destinationBankAccount = dbank_accounts + ) + + +set.seed(888) +msgs <- c( + "408 Request Timeout", + "408 Request Timeout", + "408 Request Timeout", + "408 Request Timeout", + "500 Server Unavailable", + "500 Server Unavailable" +) +random_index <- sample(seq_len(n), size = length(msgs)) +transf$transferLog <- NA_character_ +transf$transferLog[random_index] <- msgs + +transf <- transf %>% + select( + 1:6, transferLog, + everything() + ) + +write_delim(transf, "Data/transf.csv", delim = ";", na = "") diff --git a/Scripts/user-events.py b/Scripts/user-events.py index ad905e29..6444785f 100644 --- a/Scripts/user-events.py +++ b/Scripts/user-events.py @@ -1,12 +1,12 @@ - -import pandas - -data = pandas.DataFrame({ - "dateOfEvent": "15/06/2022", - "timeOfEvent": ["15/06/2022 14:33:10", "15/06/2022 14:40:08", "15/06/2022 15:48:41"], - "userId": "b902e51e-d043-4a66-afc4-a820173e1bb4", - "nameOfEvent": ["entry", "click: shop", "select: payment-method"] -}) - - + +import pandas + +data = pandas.DataFrame({ + "dateOfEvent": "15/06/2022", + "timeOfEvent": ["15/06/2022 14:33:10", "15/06/2022 14:40:08", "15/06/2022 15:48:41"], + "userId": "b902e51e-d043-4a66-afc4-a820173e1bb4", + "nameOfEvent": ["entry", "click: shop", "select: payment-method"] +}) + + data.to_json("Data/user-events.json") \ No newline at end of file diff --git a/SparkExample/spark-example.py b/SparkExample/spark-example.py index ae82d026..738333fb 100644 --- a/SparkExample/spark-example.py +++ b/SparkExample/spark-example.py @@ -1,6 +1,6 @@ -from pyspark.sql import SparkSession -spark = SparkSession.builder.getOrCreate() - -table = spark.range(5) -result = table.collect() -print(result) +from pyspark.sql import SparkSession +spark = SparkSession.builder.getOrCreate() + +table = spark.range(5) +result = table.collect() +print(result) diff --git a/TODO b/TODO index 2c1b721d..03703c6f 100644 --- a/TODO +++ b/TODO @@ -1,26 +1,26 @@ -TODOS: -- Maybe the section for pulling data from sql databases whould be in another chapter; -- Add a chapter for date and datetime manipulation tools; -- Add a section to describe the new `withColumns()` method: https://spark.apache.org/docs/latest/api/python/reference/pyspark.sql/api/pyspark.sql.DataFrame.withColumns.html - - - -LIST OF METHODS: - - - -# Probably go to 2nd edition: -cache() -coalesce() -unpersist() -persist() - -# Probably go to 2nd edition: -foreach() -foreachPartition() -replace() - - -# Probably go to 2nd edition: -sampleBy() +TODOS: +- Maybe the section for pulling data from sql databases whould be in another chapter; +- Add a chapter for date and datetime manipulation tools; +- Add a section to describe the new `withColumns()` method: https://spark.apache.org/docs/latest/api/python/reference/pyspark.sql/api/pyspark.sql.DataFrame.withColumns.html + + + +LIST OF METHODS: + + + +# Probably go to 2nd edition: +cache() +coalesce() +unpersist() +persist() + +# Probably go to 2nd edition: +foreach() +foreachPartition() +replace() + + +# Probably go to 2nd edition: +sampleBy() randomSplit() \ No newline at end of file diff --git a/_quarto.yml b/_quarto.yml index a22e20a3..9df69b6f 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -1,47 +1,47 @@ -project: - type: book - output-dir: docs - - - -book: - title: "Introduction to `pyspark`" - author: "Pedro Duarte Faria" - date: "today" - navbar: - background: "#164e80" - left: - - text: "Visit the author's blog" - href: "https://pedro-faria.netlify.app/" - right: - - icon: github - href: "https://github.com/pedropark99/Introd-pyspark" - edition: "First edition" - cover-image: "Cover/cover1.png" - chapters: - - index.qmd - - Chapters/02-python.qmd - - Chapters/03-spark.qmd - - Chapters/04-dataframes.qmd - - Chapters/04-columns.qmd - - Chapters/05-transforming.qmd - - Chapters/07-import.qmd - - Chapters/06-dataframes-sql.qmd - - Chapters/08-transforming2.qmd - - Chapters/07-export.qmd - - Chapters/09-strings.qmd - - Chapters/10-datetime.qmd - - Chapters/11-window.qmd - - Chapters/references.qmd - -bibliography: references.bib -number-sections: true -format: - html: - theme: - - cosmo - - theme.scss - pdf: - fontsize: 11pt - keep-tex: true - include-in-header: font_config.tex +project: + type: book + output-dir: docs + + + +book: + title: "Introduction to `pyspark`" + author: "Pedro Duarte Faria" + date: "today" + navbar: + background: "#164e80" + left: + - text: "Visit the author's blog" + href: "https://pedro-faria.netlify.app/" + right: + - icon: github + href: "https://github.com/pedropark99/Introd-pyspark" + edition: "First edition" + cover-image: "Cover/cover1.png" + chapters: + - index.qmd + - Chapters/02-python.qmd + - Chapters/03-spark.qmd + - Chapters/04-dataframes.qmd + - Chapters/04-columns.qmd + - Chapters/05-transforming.qmd + - Chapters/07-import.qmd + - Chapters/06-dataframes-sql.qmd + - Chapters/08-transforming2.qmd + - Chapters/07-export.qmd + - Chapters/09-strings.qmd + - Chapters/10-datetime.qmd + - Chapters/11-window.qmd + - Chapters/references.qmd + +bibliography: references.bib +number-sections: true +format: + html: + theme: + - cosmo + - theme.scss + pdf: + fontsize: 11pt + keep-tex: true + include-in-header: font_config.tex diff --git a/docs/Chapters/02-python.html b/docs/Chapters/02-python.html index b9a9ca1a..9c79b58c 100644 --- a/docs/Chapters/02-python.html +++ b/docs/Chapters/02-python.html @@ -294,7 +294,7 @@

1.2 How to run a python program

As you learn to write your Spark applications with pyspark, at some point, you will want to actually execute this pyspark program, to see its result. To do so, you need to execute it as a python program. There are many ways to run a python program, but I will show you the more “standard†way. That is to use the python command inside the terminal of your OS (you need to have python already installed).

As an example, lets create a simple “Hello world†program. First, open a new text file then save it somewhere in your machine (with the name hello.py). Remember to save the file with the .py extension. Then copy and paste the following command into this file:

-
+
print("Hello World!")

It will be much easier to run this script, if you open your OS’s terminal inside the folder where you save the hello.py file. After you opened the terminal inside the folder, just run the python3 hello.py command. As a result, python will execute hello.py, and, the text Hello World! should be printed to the terminal:

@@ -314,7 +314,7 @@

+
x = 10
 print(x)
@@ -322,21 +322,21 @@

+
# Multiply by 2
 print(x * 2)
20
-
+
# Divide by 3
 print(x / 3)
3.3333333333333335
-
+
# Print its class
 print(type(x))
@@ -344,11 +344,11 @@