Session 10: An Introduction to UNIX Tools (Why? for the love of Pete, why?)

Today we step back to a simpler time when we interacted with computers through a handful of typed commands. Specifically, we’ll deal in some pretty old magic – UNIX commands. At one level, you can think of these as tools to help you manipulate programmatically the basic stuff of a computer. We’ll work with files and folders and running jobs. These tools come from a time when computers looked like this.

Pictured above are two of the developers of UNIX, Dennis Ritchie and Ken Thompson. To give their work some context, let’s define terms. The start of this notebook is a little chatty, but it will also be one of the most practial we’ll have during these sessions.

  __
o-''|\_____/)
 \_/|_)     )
    \  __  /
    (_/ (_/    

An operating system

An operating system is a piece of software (code) that organizes and controls hardware and other software so your computer behaves in a flexible but predictable way.

Most devices that contain a computer of some kind will have an OS. Operating systems appear when the appliance will have to deal with new applications, complex user input and possibly changing requirements of its function. In addition to a laptop or desktop computer, your smartphone, your car, your refrigerator all have operating systems.

The computer you’d use to run this notebook probably has a Windows, MacOS or Linux operating system.

Your computer

Let’s think about your computer a little more deeply – it consists of several components. The Central Processing Unit (CPU) or microprocessor (a microchip) is a complete computational engine, capable of carrying out a number of basic commands (perform simple arithmetic calculations, store and retrieve information from its memory, and so on).

The CPU itself has the capacity to store some amount of information, and when it needs more space, it moves data to another kind of chip known as Random Access Memory (RAM) — “random access” as opposed to, say, sequential access to memory locations.

Your computer also has one or more storage devices that can be used to organize and store data — hard disks or drives store data magnetically, while solid state drives again use special chips. (A solid state drive is a larger, more sophisticated version of s thumb drive.)

Operating systems, again

Your operating system, then, manages all of your computer’s resources, providing layers of abstraction for both you, the user, as well as developers who are writing new programs for your computer.

With the emergence of so-called cloud computing, we imagine a variety of computing resources “out there” on the web that we can execute – think about the variety of APIs we’ve encountered that do various smart things for us or to our data. In this model, computations are performed elsewhere, and your own computer might function more as a “browser” receiving results – Google’s Chrome operating system is “minimalist” in this sense.

But let’s not get ahead of ourselves. The computers you are probably sitting at are running the Mac OS which is built on a UNIX platform or Windows version 10 that also has access to a UNIX terminal. Let’s spend some time talking about Unix.

            /)-_-(\        /)-_-(\
             (o o)          (o o)
     .-----__/\o/            \o/\__-----.
    /  __      /              \      __  \
\__/\ /  \_\ |/                \| /_/  \ /\__/
     \\     ||                  ||      \\
     //     ||                  ||      //
     |\     |\                  /|     /|

UNIX history

In 1964, Bell Labs (the research arm of AT&T) partnered with MIT and GE to create Multics (for Multiplexed Information and Computing Service) – here is the vision they had for computing

“Such systems must run continuously and reliably 7 days a week, 24 hours a day in a way similar to telephone or power systems, and must be capable of meeting wide service demands: from multiple man-machine interaction to the sequential processing of absentee-user jobs; from the use of the system with dedicated languages and subsystems to the programming of the system itself”

Bell Labs pulled out of the Multics project in 1969, a group of researchers at Bell Labs started work on Unics (Uniplexed information and computing system) because initially it could only support one user; as the system matured, it was renamed UNIX, which isn’t an acronym for anything. Ritchie simply says that UNIX is a “somewhat treacherous pun on Multics.”

While this seems like quite a long time ago, consider how Dennis Ritchie described UNIX support for programming.

Ritchie observes: “What we wanted to preserve was not just a good environment in which to do programming, but a system around which a fellowship could form. We knew from experience that the essence of communal computing, as supplied by remote-access, time-shared machines, is not just to type programs into a terminal instead of a keypunch, but to encourage close communication.” The theme of computers being viewed not merely as logical devices by as the nuclei of communities was in the air; 1969 was also the year the ARPANET (the direct ancestor of today’s Internet) was invented. The theme of “fellowship” would resonate all through UNIX’s subsequent history.

From “The Art of Unix Programming” by Raymond

In Multics, we find the first notion of a hierarchical file system – software for organizing and storing computer files and the data they contain in UNIX, files are arranged in a tree structure that allows separate users to have control of their own areas. Think a system of folders or directories – one folder can contain files and other folders and so on. A tree! UNIX began (more or less) as a file system and then an interactive shell emerged to let you examine its contents and perform basic operations. And these are what we will focus on today.

The UNIX kernel and shell

The UNIX kernel is the part of the operating system that provides other programs access to the system’s resources (the computer’s CPU or central processing unit, its memory and various I/O or input/output devices).

The UNIX shell is a command-line interface to the kernel — keep in mind that UNIX was designed by computer scientists for computer scientists and the interface is not optimized for novices. (The term “shell” is general in that a shell is the outermost interface to the inner workings of the system it surrounds – where have we seen this idea before?)

The UNIX shell is a type of program called an interpreter — in this case, think of it as a text-based interface to the kernel. It operates in a simple loop: It accepts a command, interprets it, executes the command and waits for another. Very obedient. The shell displays a prompt to tell you that it is ready to accept a command.

On a Mac, you can open the Terminal application and be greeted with a happy UNIX prompt. On a Windows laptop, you can run a Unix shell but you’ll need something like WSL, cygwin or a virtual machine.

          /\___/\
          `)9 9('
          {_:Y:.}_
----------( )U-'( )----------

Getting started

We are going to explore UNIX with the “cell magic” syntax we’ve been using in our notebooks – remember we used %%HTML to have the notebook display HTML code. The cell magic %%sh indicates the text in the cell is meant to be interpreted as a series of UNIX commands. All of the commands in the cells below can be copied and pasted into a UNIX Terminal window (leaving out the %%sh) and will run “as is.”

One last comment. There are several versions of a UNIX shell. Why might we want different kinds of interfaces to our computer? Well, it turns out that some shells are good for interactive work (allowing you to hit the Tab key and have a command “autocomplete”) while others have additional programming support to help you make “scripts” (think of the move from single commands to functions in Python). The sh, or the Bourne Shell, is an old standby, whereas bash, or the Bourne Again Shell, combines many characteristics of different shells together (bashing them together).

We’ll stick to %%sh for now in our cell magic. So, let’s download a file and give you a sense of what UNIX commands are capable of.

We will work on this file, which is a log file from the journalism.columbia.edu web server from. couple years back. To download the file from github to our colab session instance, we can use a command-line tool called wget. Run the following command. Notice, again, the first line is %%sh which tells the notebook that the text in the cell is a UNIX shell command.

%%sh

wget https://github.com/computationaljournalism/columbia2019/raw/master/data/columbia.txt
--2020-06-09 16:29:26--  https://github.com/computationaljournalism/columbia2019/raw/master/data/columbia.txt
Resolving github.com (github.com)... 140.82.113.3
Connecting to github.com (github.com)|140.82.113.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/computationaljournalism/columbia2019/master/data/columbia.txt [following]
--2020-06-09 16:29:27--  https://raw.githubusercontent.com/computationaljournalism/columbia2019/master/data/columbia.txt
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.0.133, 151.101.64.133, 151.101.128.133, ...
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.0.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1048576 (1.0M) [text/plain]
Saving to: ‘columbia.txt’

     0K .......... .......... .......... .......... ..........  4% 1.89M 1s
    50K .......... .......... .......... .......... ..........  9% 3.93M 0s
   100K .......... .......... .......... .......... .......... 14% 10.4M 0s
   150K .......... .......... .......... .......... .......... 19% 6.17M 0s
   200K .......... .......... .......... .......... .......... 24% 8.87M 0s
   250K .......... .......... .......... .......... .......... 29% 7.75M 0s
   300K .......... .......... .......... .......... .......... 34% 7.58M 0s
   350K .......... .......... .......... .......... .......... 39% 8.65M 0s
   400K .......... .......... .......... .......... .......... 43% 7.26M 0s
   450K .......... .......... .......... .......... .......... 48% 8.75M 0s
   500K .......... .......... .......... .......... .......... 53% 9.53M 0s
   550K .......... .......... .......... .......... .......... 58% 7.68M 0s
   600K .......... .......... .......... .......... .......... 63% 9.69M 0s
   650K .......... .......... .......... .......... .......... 68% 9.56M 0s
   700K .......... .......... .......... .......... .......... 73% 12.4M 0s
   750K .......... .......... .......... .......... .......... 78% 8.84M 0s
   800K .......... .......... .......... .......... .......... 83% 11.3M 0s
   850K .......... .......... .......... .......... .......... 87% 13.5M 0s
   900K .......... .......... .......... .......... .......... 92% 7.30M 0s
   950K .......... .......... .......... .......... .......... 97% 9.19M 0s
  1000K .......... .......... ....                            100% 40.6M=0.1s

2020-06-09 16:29:27 (7.21 MB/s) - ‘columbia.txt’ saved [1048576/1048576]

A few for exploring your folders: pwd, ls, cd

Making and removing folders (directories): mkdir, rmdir

Copying, renaming and removing files: cp, mv, rm

     |\_/|                  
     | @ @   Woof! 
     |   <>              _  
     |  _/\------____ ((| |))
     |               `--' |   
 ____|_       ___|   |___.' 
/_/_____/____/_______|



First, pwd or “print working directory” will tell you which folder you’re in. For the notebook, this means the folder your data and notebook file are being stored in.

%%sh

pwd
/content

The command ls lists the contents of a folder. Compare this list below to what you see when you use your finder to examine the same folder.

%%sh

ls
columbia.txt
sample_data

Unix commands can be modified by adding one or more options. In the case of ls, we can add a “-l” for the “long” form of the output and a “-a” for all directories that begin with a “.” Another useful option is “-h” for humanly readable output or “-G” for color (which will only show up in the Terminal and not the notebook).

The long printout below tells us the size of each file and what we can do to it.

%%sh

ls -l 
total 1028
-rw-r--r-- 1 root root 1048576 Jun  9 16:29 columbia.txt
drwxr-xr-x 1 root root    4096 May 29 18:19 sample_data

To understand what this all means, let’s look at the first line (for me).

-rw-r--r--@  1 mark  staff       51649 Feb 15 07:55 01_Introductory_Drill.ipynb

Let’s split things up a bit.

 f1  f2   f3   f4  f5  f6    f7     f8     f9            f10
  -  rw-  r--  r--  1  mark  staff  51649  Feb 15 07:55  01_Introductory_Drill.ipynb

Let’s walk through the different fields.

f1: - for File, d for Directory, l for “Link”

f2, f3 and f4: These are “permissions” that mean you can read (r), write (w) and execute (x) a file, or not (-). They come in three different clusters specifing permissions

         f2: The owner has over the file,
         f3: The group has over the file, and
         f4: Everybody else has over the file

f5: This field specifies the number of links or directories inside this directory.

f6: This is the user who owns the file or directory.

f7: The group that file belongs to, and any user in that group will have the permissions given in the third field over that file.

f8: The size in bytes, you may modify this by using the -h option (humanly readable) together with -l this will have the output in k,M,G so it’s just a bit easier to understand.

f9: The date of last modification

f10: The name of the file

Aside: Why a command line?

While interacting with a computer by typing in commands might seem primitive, it has its advantages (there are reasons why it’s hanging around).

Agile — It is designed tok be very interactive, supporting exploratory analysis; it is also close to the “filesystem” which means the tools are close to the data you’re working with

Scalable — You are interacting with your computer by typing commands and not through a graphical user interface (GUI) which means your instructions can be combined into a file or script and reused

Extensible — New tools are being developed for the command line on a daily basis, being written in a variety of languages but all usable in the same way as the original tools that appeared in the 1960’s and 1970s

Ubiquitous — It is hard to find a computer system that you’ll purchase (desktop or laptop) and if you soar into “the cloud” you will likely encounter the various computers you find there through a command line interface

   _=,_
o_/6 /#\
\__ |##/
 ='|--\
   /   #'-.
   \#|_   _'-. /
    |/ \_( # |" 
   C/ ,--___/

Back to the drill

The command man will provide you with help on any Unix command. You simply supply the name of the command you are interested in as an argument.

%%sh

man ls
LS(1POSIX)                 POSIX Programmer's Manual                LS(1POSIX)

PROLOG
       This  manual  page is part of the POSIX Programmer's Manual.  The Linux
       implementation of this interface may differ (consult the  corresponding
       Linux  manual page for details of Linux behavior), or the interface may
       not be implemented on Linux.

NAME
       ls — list directory contents

SYNOPSIS
       ls [−ikqrs] [−glno] [−A|−a] [−C|−m|−x|−1] \
           [−F|−p] [−H|−L] [−R|−d] [−S|−f|−t] [−c|−u] [file...]

DESCRIPTION
       For each operand that names a file of a type other  than  directory  or
       symbolic  link  to  a directory, ls shall write the name of the file as
       well as any requested, associated information. For  each  operand  that
       names  a file of type directory, ls shall write the names of files con‐
       tained within the directory as well as any requested, associated infor‐
       mation.  Filenames  beginning with a <period> ('.')  and any associated
       information shall not be written out unless explicitly referenced,  the
       −A  or  −a  option  is supplied, or an implementation-defined condition
       causes them to be written. If one or more of the −d, −F, or −l  options
       are  specified,  and neither the −H nor the −L option is specified, for
       each operand that names a file of type symbolic link to a directory, ls
       shall  write  the name of the file as well as any requested, associated
       information. If none of the −d, −F, or −l options are specified, or the
       −H  or  −L options are specified, for each operand that names a file of
       type symbolic link to a directory, ls shall write the  names  of  files
       contained  within  the  directory  as well as any requested, associated
       information. In each case where the names of files contained  within  a
       directory  are  written,  if  the directory contains any symbolic links
       then ls shall evaluate the file information and file type to  be  those
       of the symbolic link itself, unless the −L option is specified.

       If no operands are specified, ls shall behave as if a single operand of
       dot ('.')  had been specified. If more than one operand  is  specified,
       ls  shall  write  non-directory operands first; it shall sort directory
       and  non-directory  operands  separately  according  to  the  collating
       sequence in the current locale.

       The  ls utility shall detect infinite loops; that is, entering a previ‐
       ously visited directory that is an ancestor of the  last  file  encoun‐
       tered.   When  it detects an infinite loop, ls shall write a diagnostic
       message to standard error and shall either recover its position in  the
       hierarchy or terminate.

OPTIONS
       The  ls  utility  shall  conform  to  the  Base  Definitions  volume of
       POSIX.1‐2008, Section 12.2, Utility Syntax Guidelines.

       The following options shall be supported:

       −A        Write out all directory entries, including those whose  names
                 begin  with  a  <period> ('.')  but excluding the entries dot
                 and dot-dot (if they exist).

       −C        Write multi-text-column output with entries sorted  down  the
                 columns,  according  to the collating sequence. The number of
                 text columns and the column separator characters are unspeci‐
                 fied,  but  should  be  adapted  to  the nature of the output
                 device. This option disables long format output.

       −F        Do not follow symbolic links named as operands unless the  −H
                 or  −L  options  are specified. Write a <slash> ('/') immedi‐
                 ately after each pathname that is a directory, an  <asterisk>
                 ('*')  after each that is executable, a <vertical-line> ('|')
                 after each that is a FIFO, and an at-sign  ('@')  after  each
                 that  is a symbolic link. For other file types, other symbols
                 may be written.

       −H        Evaluate the file information  and  file  type  for  symbolic
                 links  specified  on the command line to be those of the file
                 referenced by the link, and not the link itself; however,  ls
                 shall write the name of the link itself and not the file ref‐
                 erenced by the link.

       −L        Evaluate the file information and file type for all  symbolic
                 links  (whether named on the command line or encountered in a
                 file hierarchy) to be those of the  file  referenced  by  the
                 link,  and  not  the link itself; however, ls shall write the
                 name of the link itself and not the file  referenced  by  the
                 link. When −L is used with −l, write the contents of symbolic
                 links in the long format (see the STDOUT section).

       −R        Recursively list subdirectories encountered. When a  symbolic
                 link  to  a directory is encountered, the directory shall not
                 be recursively listed unless the −L option is specified.  The
                 use of −R with −d or −f produces unspecified results.

       −S        Sort  with  the  primary  key  being file size (in decreasing
                 order) and the secondary key being filename in the  collating
                 sequence (in increasing order).

       −a        Write  out all directory entries, including those whose names
                 begin with a <period> ('.').

       −c        Use time of last modification of the file status  information
                 (see   the   Base   Definitions   volume   of   POSIX.1‐2008,
                 <sys_stat.h>) instead of last modification of the file itself
                 for sorting (−t) or writing (−l).

       −d        Do  not follow symbolic links named as operands unless the −H
                 or −L options are specified. Do not treat directories differ‐
                 ently  than other types of files. The use of −d with −R or −f
                 produces unspecified results.

       −f        List the entries in directory  operands  in  the  order  they
                 appear in the directory. The behavior for non-directory oper‐
                 ands is unspecified. This option shall turn on −a.   When  −f
                 is  specified,  any occurrences of the −r, −S, and −t options
                 shall be ignored and any occurrences of the −A, −g,  −l,  −n,
                 −o,  and  −s options may be ignored. The use of −f with −R or
                 −d produces unspecified results.

       −g        Turn on the −l (ell) option, but disable writing  the  file's
                 owner name or number.  Disable the −C, −m, and −x options.

       −i        For  each  file,  write  the  file's  file serial number (see
                 stat() in the System Interfaces volume of POSIX.1‐2008).

       −k        Set the block size for the −s option  and  the  per-directory
                 block  count  written  for the −l, −n, −s, −g, and −o options
                 (see the STDOUT section) to 1024 bytes.

       −l        (The letter ell.) Do not follow symbolic links named as oper‐
                 ands  unless the −H or −L options are specified. Write out in
                 long format (see the STDOUT section). Disable the −C, −m, and
                 −x options.

       −m        Stream  output  format; list pathnames across the page, sepa‐
                 rated by a <comma> character followed by a <space> character.
                 Use  a  <newline>  character as the list terminator and after
                 the separator sequence when there is not room on a  line  for
                 the next list entry. This option disables long format output.

       −n        Turn  on  the  −l  (ell)  option, but when writing the file's
                 owner or group, write the file's numeric UID  or  GID  rather
                 than  the  user  or group name, respectively. Disable the −C,
                 −m, and −x options.

       −o        Turn on the −l (ell) option, but disable writing  the  file's
                 group name or number.  Disable the −C, −m, and −x options.

       −p        Write  a  <slash> ('/') after each filename if that file is a
                 directory.

       −q        Force each instance of non-printable filename characters  and
                 <tab>  characters  to be written as the <question-mark> ('?')
                 character. Implementations may provide this option by default
                 if the output is to a terminal device.

       −r        Reverse  the  order  of  the  sort  to  get reverse collating
                 sequence oldest first, or smallest file size first  depending
                 on the other options given.

       −s        Indicate  the  total number of file system blocks consumed by
                 each file displayed. If the −k option is also specified,  the
                 block  size shall be 1024 bytes; otherwise, the block size is
                 implementation-defined.

       −t        Sort with the primary key being time modified (most  recently
                 modified  first)  and the secondary key being filename in the
                 collating sequence.  For a symbolic link, the  time  used  as
                 the  sort  key is that of the symbolic link itself, unless ls
                 is evaluating its file information to be  that  of  the  file
                 referenced by the link (see the −H and −L options).

       −u        Use  time  of last access (see the Base Definitions volume of
                 POSIX.1‐2008, <sys_stat.h>) instead of last  modification  of
                 the file for sorting (−t) or writing (−l).

       −x        The  same  as −C, except that the multi-text-column output is
                 produced with entries sorted across, rather  than  down,  the
                 columns. This option disables long format output.

       −1        (The  numeric  digit  one.)  Force output to be one entry per
                 line.  This option does not disable long format output. (Long
                 format  output  is  enabled  by −g, −l (ell), −n, and −o; and
                 disabled by −C, −m, and −x.)

       If an option that enables long format output (−g, −l (ell), −n, and  −o
       is  given  with an option that disables long format output (−C, −m, and
       −x), this shall not be considered an error. The last of  these  options
       specified shall determine whether long format output is written.

       If  −R,  −d, or −f are specified, the results of specifying these mutu‐
       ally-exclusive options are  specified  by  the  descriptions  of  these
       options  above.  If  more than one of any of the other options shown in
       the SYNOPSIS section in mutually-exclusive sets are given,  this  shall
       not be considered an error; the last option specified in each set shall
       determine the output.

       Note that if −t is specified, −c and −u are not only mutually-exclusive
       with  each  other, they are also mutually-exclusive with −S when deter‐
       mining sort order. But even if −S is specified after all occurrences of
       −c,  −t,  and  −u,  the  last  use of −c or −u determines the timestamp
       printed when producing long format output.

OPERANDS
       The following operand shall be supported:

       file      A pathname of a file to be written. If the file specified  is
                 not  found,  a diagnostic message shall be output on standard
                 error.

STDIN
       Not used.

INPUT FILES
       None.

ENVIRONMENT VARIABLES
       The following environment variables shall affect the execution of ls:

       COLUMNS   Determine the user's  preferred  column  position  width  for
                 writing  multiple  text-column  output. If this variable con‐
                 tains a string representing a decimal integer, the ls utility
                 shall  calculate how many pathname text columns to write (see
                 −C) based on the width provided. If COLUMNS  is  not  set  or
                 invalid, an implementation-defined number of column positions
                 shall be assumed, based on the implementation's knowledge  of
                 the output device. The column width chosen to write the names
                 of files in any given directory shall be constant.  Filenames
                 shall  not  be truncated to fit into the multiple text-column
                 output.

       LANG      Provide a default value for  the  internationalization  vari‐
                 ables  that are unset or null. (See the Base Definitions vol‐
                 ume of POSIX.1‐2008, Section 8.2, Internationalization  Vari‐
                 ables  for  the  precedence of internationalization variables
                 used to determine the values of locale categories.)

       LC_ALL    If set to a non-empty string value, override  the  values  of
                 all the other internationalization variables.

       LC_COLLATE
                 Determine  the  locale for character collation information in
                 determining the pathname collation sequence.

       LC_CTYPE  Determine the locale for the interpretation of  sequences  of
                 bytes of text data as characters (for example, single-byte as
                 opposed to multi-byte  characters  in  arguments)  and  which
                 characters are defined as printable (character class print).

       LC_MESSAGES
                 Determine the locale that should be used to affect the format
                 and contents  of  diagnostic  messages  written  to  standard
                 error.

       LC_TIME   Determine  the  format and contents for date and time strings
                 written by ls.

       NLSPATH   Determine the location of message catalogs for the processing
                 of LC_MESSAGES.

       TZ        Determine  the  timezone for date and time strings written by
                 ls.  If TZ is unset or null, an unspecified default  timezone
                 shall be used.

ASYNCHRONOUS EVENTS
       Default.

STDOUT
       The default format shall be to list one entry per line to standard out‐
       put; the exceptions are to terminals or when one of the −C, −m,  or  −x
       options  is  specified.  If  the output is to a terminal, the format is
       implementation-defined.

       When −m is specified, the format used for the last element of the  list
       shall be:

           "%s\n", <filename>

       The format used for each other element of the list shall be:

           "%s,%s", <filename>, <separator>

       where,  if  there  is  not room for the next element of the list to fit
       within the current line length, <separator> is a string  containing  an
       optional  <space> character and a mandatory <newline> character; other‐
       wise it is a single <space> character.

       If the −i option is specified, the file's file serial number  (see  the
       Base Definitions volume of POSIX.1‐2008, <sys_stat.h>) shall be written
       in the following format before any other output for  the  corresponding
       entry:

           %u ", <file serial number>

       If the −l option is specified, the following information shall be writ‐
       ten for files other than character special and block special files:

           "%s %u %s %s %u %s %s\n", <file mode>, <number of links>,
               <owner name>, <group name>, <size>, <date and time>,
               <pathname>

       If the −l option is specified, the following information shall be writ‐
       ten for character special and block special files:

           "%s %u %s %s %s %s %s\n", <file mode>, <number of links>,
               <owner name>, <group name>, <device info>, <date and time>,
               <pathname>

       In  both cases if the file is a symbolic link and the −L option is also
       specified, this information shall be for the  file  resolved  from  the
       symbolic link, except that the <pathname> field shall contain the path‐
       name of the symbolic link itself. If the file is a  symbolic  link  and
       the  −L  option  is  not specified, this information shall be about the
       link itself and the <pathname> field shall be of the form:

           "%s −> %s", <pathname of link>, <contents of link>

       The −n, −g, and −o options use the same format as −l, but with  omitted
       items and their associated <blank> characters. See the OPTIONS section.

       In  both the preceding −l forms, if <owner name> or <group name> cannot
       be determined, or if −n is given, they shall  be  replaced  with  their
       associated numeric values using the format %u.

       The <size> field shall contain the value that would be returned for the
       file in the st_size field of struct stat (see the Base Definitions vol‐
       ume of POSIX.1‐2008, <sys_stat.h>).  Note that for some file types this
       value is unspecified.

       The <device info> field shall contain  implementation-defined  informa‐
       tion associated with the device in question.

       The  <date and time> field shall contain the appropriate date and time‐
       stamp of when the file was last modified.  In  the  POSIX  locale,  the
       field  shall be the equivalent of the output of the following date com‐
       mand:

           date "+%b %e %H:%M"

       if the file has been modified in the last six months, or:

           date "+%b %e %Y"

       (where two <space> characters are used between %e and %Y) if  the  file
       has  not  been  modified  in the last six months or if the modification
       date is in the future, except that, in both cases, the final  <newline>
       produced  by  date  shall not be included and the output shall be as if
       the date command were executed at the time  of  the  last  modification
       date  of the file rather than the current time. When the LC_TIME locale
       category is not set to the POSIX locale, a different format  and  order
       of presentation of this field may be used.

       If the pathname was specified as a file operand, it shall be written as
       specified.

       The file mode written under the −l, −n, −g, and −o options  shall  con‐
       sist of the following format:

           "%c%s%s%s%s", <entry type>, <owner permissions>,
               <group permissions>, <other permissions>,
               <optional alternate access method flag>

       The  <optional alternate access method flag>  shall be the empty string
       if there is no alternate or additional access control method associated
       with  the  file;  otherwise,  it  shall be a string containing a single
       printable character that is not a <blank>.

       The <entry type> character shall describe the type of file, as follows:

       d       Directory.

       b       Block special file.

       c       Character special file.

       l (ell) Symbolic link.

       p       FIFO.

       −       Regular file.

       Implementations may add other characters  to  this  list  to  represent
       other implementation-defined file types.

       The next three fields shall be three characters each:

       <owner permissions>
             Permissions  for  the  file owner class (see the Base Definitions
             volume of POSIX.1‐2008, Section 4.4, File Access Permissions).

       <group permissions>
             Permissions for the file group class.

       <other permissions>
             Permissions for the file other class.

       Each field shall have three character positions:

        1. If 'r', the file is readable; if '−', the file is not readable.

        2. If 'w', the file is writable; if '−', the file is not writable.

        3. The first of the following that applies:

           S     If in <owner permissions>, the file  is  not  executable  and
                 set-user-ID  mode is set. If in <group permissions>, the file
                 is not executable and set-group-ID mode is set.

           s     If in <owner permissions>, the file is  executable  and  set-
                 user-ID  mode  is set. If in <group permissions>, the file is
                 executable and set-group-ID mode is set.

           T     If in <other permissions> and the file is a directory, search
                 permission is not granted to others, and the restricted dele‐
                 tion flag is set.

           t     If in <other permissions> and the file is a directory, search
                 permission  is granted to others, and the restricted deletion
                 flag is set.

           x     The file is executable or the directory is searchable.

           −     None of the attributes of 'S', 's', 'T', 't', or 'x' applies.

           Implementations may add other characters to this list for the third
           character  position.  Such  additions shall, however, be written in
           lowercase if the file is executable or searchable, and in uppercase
           if it is not.

       If  any of the −l, −n, −s, −g, or −o options is specified, each list of
       files within the directory shall be preceded by a status line  indicat‐
       ing the number of file system blocks occupied by files in the directory
       in 512-byte units if the −k option is not specified, or 1024-byte units
       if  the  −k option is specified, rounded up to the next integral number
       of units, if necessary. In the POSIX locale, the format shall be:

           "total %u\n", <number of units in the directory>

       If more than one directory, or a combination of non-directory files and
       directories  are written, either as a result of specifying multiple op‐
       erands, or the −R option, each list of files within a  directory  shall
       be preceded by:

           "\n%s:\n", <directory name>

       If  this  string  is the first thing to be written, the first <newline>
       shall not be written. This output shall precede the number of units  in
       the directory.

       If  the  −s option is given, each file shall be written with the number
       of blocks used by the file. Along with −C, −1, −m, or  −x,  the  number
       and  a <space> shall precede the filename; with −l, −n, −g, or −o, they
       shall precede each line describing a file.

STDERR
       The standard error shall be used only for diagnostic messages.

OUTPUT FILES
       None.

EXTENDED DESCRIPTION
       None.

EXIT STATUS
       The following exit values shall be returned:

        0    Successful completion.

       >0    An error occurred.

CONSEQUENCES OF ERRORS
       Default.

       The following sections are informative.

APPLICATION USAGE
       Many implementations use the  <equals-sign>  ('=')  to  denote  sockets
       bound  to the file system for the −F option. Similarly, many historical
       implementations use the 's' character to denote sockets  as  the  entry
       type characters for the −l option.

       It  is difficult for an application to use every part of the file modes
       field of ls −l in a portable manner. Certain file types and  executable
       bits  are not guaranteed to be exactly as shown, as implementations may
       have extensions. Applications can use this field to pass directly to  a
       user  printout or prompt, but actions based on its contents should gen‐
       erally be deferred, instead, to the test utility.

       The output of ls (with the −l and related options) contains information
       that  logically  could  be used by utilities such as chmod and touch to
       restore files to a known state. However, this information is  presented
       in  a format that cannot be used directly by those utilities or be eas‐
       ily translated into a format that can be used.  A  character  has  been
       added  to  the  end  of  the permissions string so that applications at
       least have an indication that they may be working in an  area  they  do
       not  understand instead of assuming that they can translate the permis‐
       sions string into something  that  can  be  used.  Future  versions  or
       related documents may define one or more specific characters to be used
       based on different standard additional or  alternative  access  control
       mechanisms.

       As  with  many of the utilities that deal with filenames, the output of
       ls for multiple files or in one of the long  listing  formats  must  be
       used  carefully  on  systems where filenames can contain embedded white
       space. Systems and system administrators should institute policies  and
       user training to limit the use of such filenames.

       The  number  of disk blocks occupied by the file that it reports varies
       depending on underlying file system type, block  size  units  reported,
       and the method of calculating the number of blocks. On some file system
       types, the number is the actual number of blocks occupied by  the  file
       (counting indirect blocks and ignoring holes in the file); on others it
       is calculated based on the file size (usually making an  allowance  for
       indirect blocks, but ignoring holes).

EXAMPLES
       An example of a small directory tree being fully listed with ls −laRF a
       in the POSIX locale:

           total 11
           drwxr-xr-x   3 fox      prog          64 Jul  4 12:07 ./
           drwxrwxrwx   4 fox      prog        3264 Jul  4 12:09 ../
           drwxr-xr-x   2 fox      prog          48 Jul  4 12:07 b/
           -rwxr--r--   1 fox      prog         572 Jul  4 12:07 foo*

           a/b:
           total 4
           drwxr-xr-x   2 fox      prog          48 Jul  4 12:07 ./
           drwxr-xr-x   3 fox      prog          64 Jul  4 12:07 ../
           -rw-r--r--   1 fox      prog         700 Jul  4 12:07 bar

RATIONALE
       Some historical implementations of the ls utility show all entries in a
       directory  except  dot  and dot-dot when a superuser invokes ls without
       specifying the −a option. When ``normal'' users invoke ls without spec‐
       ifying  −a,  they should not see information about any files with names
       beginning with a <period> unless they were named as file operands.

       Implementations are expected to traverse arbitrary depths when process‐
       ing the −R option. The only limitation on depth should be based on run‐
       ning out of physical storage for keeping track of untraversed  directo‐
       ries.

       The  −1  (one)  option  was  historically  found in BSD and BSD-derived
       implementations only. It is required in this volume of POSIX.1‐2008  so
       that  conforming applications might ensure that output is one entry per
       line, even if the output is to a terminal.

       The −S option was added in Issue 7, but had been  provided  by  several
       implementations  for  many years. The description given in the standard
       documents historic practice, but does not match much of the  documenta‐
       tion  that  described  its behavior. Historical documentation typically
       described it as something like:

       −S        Sort by size (largest size first) instead of by name. Special
                 character devices (listed last) are sorted by name.

       even though the file type was never considered when sorting the output.
       Character special files do typically sort close to the end of the  list
       because  their  file size on most implementations is zero. But they are
       sorted alphabetically with any other files that happen to have the same
       file size (zero), not sorted separately and added to the end.

       This  volume  of  POSIX.1‐2008  is frequently silent about what happens
       when mutually-exclusive options are specified. Except for −R,  −d,  and
       −f,  the  ls  utility  is required to accept multiple options from each
       mutually-exclusive option set without treating them as  errors  and  to
       use  the  behavior specified by the last option given in each mutually-
       exclusive set. Since ls is one of the  most  aliased  commands,  it  is
       important  that the implementation perform intuitively. For example, if
       the alias were:

           alias ls="ls −C"

       and the user  typed  ls  −1  (one),  single-text-column  output  should
       result, not an error.

       The  −g,  −l  (ell),  −n,  and  −o  options  are not mutually-exclusive
       options. They all enable long format  output.  They  work  together  to
       determine  whether  the  file's owner is written (no if −g is present),
       file's group is written (no if −o is present), and if the file's  group
       or  owner  is  written whether it is written as the name (default) or a
       string representation of the UID or GID number (if −n is present).  The
       −C,  −m,  −x, and −1 (one) are mutually-exclusive options and the first
       three of these disable long format output. The −1 (one) option does not
       directly  change  whether  or not long format output is enabled, but by
       overriding −C, −m, and −x, it can re-enable long format output that had
       been disabled by one of these options.

       Earlier  versions  of  this standard did not describe the BSD −A option
       (like −a, but dot and dot-dot are not written out). It has  been  added
       due to widespread implementation.

       Implementations may make −q the default for terminals to prevent trojan
       horse attacks on terminals with special escape sequences.  This is  not
       required because:

        *  Some  control characters may be useful on some terminals; for exam‐
           ple, a system might write them as "\001" or "^A".

        *  Special behavior for terminals  is  not  relevant  to  applications
           portability.

       An    early    proposal    specified    that    the    <optional alter‐
       nate access method flag> had to be '+' if there was an alternate access
       method  used  on the file or <space> if there was not. This was changed
       to be <space> if there is not and a single printable character if there
       is. This was done for three reasons:

        1. There  are  historical  implementations using characters other than
           '+'.

        2. There are implementations that vary this  character  used  in  that
           position to distinguish between various alternate access methods in
           use.

        3. The standard developers did not want to preclude future  specifica‐
           tions  that  might  need  a  way to specify more than one alternate
           access method.

       Nonetheless, implementations providing a single alternate access method
       are encouraged to use '+'.

       Earlier  versions  of  this  standard did not have the −k option, which
       meant that the −s option could not be used portably as its  block  size
       was implementation-defined, and the units used to specify the number of
       blocks occupied by files in a directory in an ls −l listing were  fixed
       as  512-byte  units.  The −k option has been added to provide a way for
       the −s option to be used portably, and for consistency it also  changes
       the aforementioned units from 512-byte to 1024-byte.

       The  <date and time>  field  in the −l format is specified only for the
       POSIX locale. As noted, the format can be different in  other  locales.
       No   mechanism   for  defining  this  is  present  in  this  volume  of
       POSIX.1‐2008, as the appropriate vehicle is a  messaging  system;  that
       is, the format should be specified as a ``message''.

FUTURE DIRECTIONS
       Allowing  −f  to  ignore  the −A, −g, −l, −n, −o, and −s options may be
       removed in a future version.

SEE ALSO
       chmod, find

       The Base Definitions volume of POSIX.1‐2008, Section 4.4,  File  Access
       Permissions,  Chapter  8,  Environment Variables, Section 12.2, Utility
       Syntax Guidelines, <sys_stat.h>

       The System Interfaces volume of POSIX.1‐2008, fstatat()

COPYRIGHT
       Portions of this text are reprinted and reproduced in  electronic  form
       from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
       -- Portable Operating System Interface (POSIX),  The  Open  Group  Base
       Specifications Issue 7, Copyright (C) 2013 by the Institute of Electri‐
       cal and Electronics Engineers,  Inc  and  The  Open  Group.   (This  is
       POSIX.1-2008  with  the  2013  Technical Corrigendum 1 applied.) In the
       event of any discrepancy between this version and the original IEEE and
       The  Open Group Standard, the original IEEE and The Open Group Standard
       is the referee document. The original Standard can be  obtained  online
       at http://www.unix.org/online.html .

       Any  typographical  or  formatting  errors that appear in this page are
       most likely to have been introduced during the conversion of the source
       files  to  man page format. To report such errors, see https://www.ker‐
       nel.org/doc/man-pages/reporting_bugs.html .

IEEE/The Open Group                  2013                           LS(1POSIX)

In the man command above, the string “ls” is passed as an argument that tells UNIX which “data” to work with. Here’s another example of an argument.

The command head does what you might expect given our exposure to Pandas. It prints out the first 10 lines of a file, the name of which you pass as an argument. Here we look at the first 10 lines of “columbia.txt”. How do you get the last 10?

%%sh

cd sample_data
ls -l
total 55504
-rwxr-xr-x 1 root root     1697 Jan  1  2000 anscombe.json
-rw-r--r-- 1 root root   301141 May 29 18:19 california_housing_test.csv
-rw-r--r-- 1 root root  1706430 May 29 18:19 california_housing_train.csv
-rw-r--r-- 1 root root 18289443 May 29 18:19 mnist_test.csv
-rw-r--r-- 1 root root 36523880 May 29 18:19 mnist_train_small.csv
-rwxr-xr-x 1 root root      930 Jan  1  2000 README.md
%%sh 

head columbia.txt
128.59.40.117 - - [17/Apr/2016:06:27:25 -0400] "GET /robots.txt HTTP/1.0" 200 469 "-" "gsa-crawler (Enterprise; T4-BWMXW7XQDYSQL; search-admin@columbia.edu)"
194.71.161.156 - - [17/Apr/2016:06:27:25 -0400] "GET /feed/170.rss HTTP/1.1" 200 640 "-" "Barbarossa Spider/Nutch-1.8"
69.30.213.18 - - [17/Apr/2016:06:27:18 -0400] "GET /page/1249-metropolis-of-science-launches/748 HTTP/1.0" 200 5173 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)"
- - - [17/Apr/2016:06:27:18 -0400] "HEAD /page/1/1 HTTP/1.1" 200 377 "-" "-"
69.30.213.18 - - [17/Apr/2016:06:27:33 -0400] "GET /page/1253-columbia-journalism-partners-on-panama-papers/748 HTTP/1.0" 200 5061 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)"
69.30.213.18 - - [17/Apr/2016:06:27:38 -0400] "GET /page/18-technology-guide-2016-17/15 HTTP/1.0" 200 4210 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)"
69.30.213.18 - - [17/Apr/2016:06:27:40 -0400] "GET /page/18-technology-guide-2016-17/17 HTTP/1.0" 200 4148 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)"
207.46.13.74 - - [17/Apr/2016:06:27:43 -0400] "GET /page/277-contacts/145?printing=true HTTP/1.1" 200 11495 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
100.1.205.12 - - [17/Apr/2016:06:27:45 -0400] "GET /page/967-for-alumni/773 HTTP/1.1" 200 6204 "https://www.google.com/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1"
100.1.205.12 - - [17/Apr/2016:06:27:46 -0400] "GET /stylesheets/theme_stylesheets/mike1/colorbox.css HTTP/1.1" 200 1754 "http://www.journalism.columbia.edu/page/967-for-alumni/773" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1"
%%sh

man head
HEAD(1POSIX)               POSIX Programmer's Manual              HEAD(1POSIX)

PROLOG
       This  manual  page is part of the POSIX Programmer's Manual.  The Linux
       implementation of this interface may differ (consult the  corresponding
       Linux  manual page for details of Linux behavior), or the interface may
       not be implemented on Linux.

NAME
       head — copy the first part of files

SYNOPSIS
       head [−n number] [file...]

DESCRIPTION
       The head utility shall copy its input files  to  the  standard  output,
       ending the output for each file at a designated point.

       Copying  shall  end at the point in each input file indicated by the −n
       number option. The option-argument number shall be counted in units  of
       lines.

OPTIONS
       The  head  utility  shall  conform  to  the  Base Definitions volume of
       POSIX.1‐2008, Section 12.2, Utility Syntax Guidelines.

       The following option shall be supported:

       −n number The first number lines of each input file shall be copied  to
                 standard output. The application shall ensure that the number
                 option-argument is a positive decimal integer.

       When a file contains less than number lines,  it  shall  be  copied  to
       standard output in its entirety. This shall not be an error.

       If no options are specified, head shall act as if −n 10 had been speci‐
       fied.

OPERANDS
       The following operand shall be supported:

       file      A pathname of an input file. If no file operands  are  speci‐
                 fied, the standard input shall be used.

STDIN
       The standard input shall be used if no file operands are specified, and
       shall be used if a file operand is '−' and  the  implementation  treats
       the '−' as meaning standard input.  Otherwise, the standard input shall
       not be used.  See the INPUT FILES section.

INPUT FILES
       Input files shall be text files, but the line length is not  restricted
       to {LINE_MAX} bytes.

ENVIRONMENT VARIABLES
       The following environment variables shall affect the execution of head:

       LANG      Provide  a  default  value for the internationalization vari‐
                 ables that are unset or null. (See the Base Definitions  vol‐
                 ume  of POSIX.1‐2008, Section 8.2, Internationalization Vari‐
                 ables for the precedence  of  internationalization  variables
                 used to determine the values of locale categories.)

       LC_ALL    If  set  to  a non-empty string value, override the values of
                 all the other internationalization variables.

       LC_CTYPE  Determine the locale for the interpretation of  sequences  of
                 bytes of text data as characters (for example, single-byte as
                 opposed to  multi-byte  characters  in  arguments  and  input
                 files).

       LC_MESSAGES
                 Determine the locale that should be used to affect the format
                 and contents  of  diagnostic  messages  written  to  standard
                 error.

       NLSPATH   Determine the location of message catalogs for the processing
                 of LC_MESSAGES.

ASYNCHRONOUS EVENTS
       Default.

STDOUT
       The standard output shall contain  designated  portions  of  the  input
       files.

       If  multiple file operands are specified, head shall precede the output
       for each with the header:

           "\n==> %s <==\n", <pathname>

       except that the first header written  shall  not  include  the  initial
       <newline>.

STDERR
       The standard error shall be used only for diagnostic messages.

OUTPUT FILES
       None.

EXTENDED DESCRIPTION
       None.

EXIT STATUS
       The following exit values shall be returned:

        0    Successful completion.

       >0    An error occurred.

CONSEQUENCES OF ERRORS
       Default.

       The following sections are informative.

APPLICATION USAGE
       None.

EXAMPLES
       To  write the first ten lines of all files (except those with a leading
       period) in the directory:

           head −− *

RATIONALE
       Although it is possible to simulate head with  sed  10q  for  a  single
       file,  the  standard  developers decided that the popularity of head on
       historical BSD systems warranted its inclusion alongside tail.

       POSIX.1‐2008 version of head follows the Utility Syntax Guidelines. The
       −n  option  was added to this new interface so that head and tail would
       be more logically related. Earlier versions of this standard allowed  a
       −number  option.  This  form is no longer specified by POSIX.1‐2008 but
       may be present in some implementations.

       There is no −c option (as there is in tail) because it is not  histori‐
       cal practice and because other utilities in this volume of POSIX.1‐2008
       provide similar functionality.

FUTURE DIRECTIONS
       None.

SEE ALSO
       sed, tail

       The Base Definitions volume of  POSIX.1‐2008,  Chapter  8,  Environment
       Variables, Section 12.2, Utility Syntax Guidelines

COPYRIGHT
       Portions  of  this text are reprinted and reproduced in electronic form
       from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
       --  Portable  Operating  System  Interface (POSIX), The Open Group Base
       Specifications Issue 7, Copyright (C) 2013 by the Institute of Electri‐
       cal  and  Electronics  Engineers,  Inc  and  The  Open Group.  (This is
       POSIX.1-2008 with the 2013 Technical Corrigendum  1  applied.)  In  the
       event of any discrepancy between this version and the original IEEE and
       The Open Group Standard, the original IEEE and The Open Group  Standard
       is  the  referee document. The original Standard can be obtained online
       at http://www.unix.org/online.html .

       Any typographical or formatting errors that appear  in  this  page  are
       most likely to have been introduced during the conversion of the source
       files to man page format. To report such errors,  see  https://www.ker‐
       nel.org/doc/man-pages/reporting_bugs.html .

IEEE/The Open Group                  2013                         HEAD(1POSIX)

A UNIX command will often involve both arguments and options. Here we tell head to only print out the first three lines.

%%sh

head -3 columbia.txt
128.59.40.117 - - [17/Apr/2016:06:27:25 -0400] "GET /robots.txt HTTP/1.0" 200 469 "-" "gsa-crawler (Enterprise; T4-BWMXW7XQDYSQL; search-admin@columbia.edu)"
194.71.161.156 - - [17/Apr/2016:06:27:25 -0400] "GET /feed/170.rss HTTP/1.1" 200 640 "-" "Barbarossa Spider/Nutch-1.8"
69.30.213.18 - - [17/Apr/2016:06:27:18 -0400] "GET /page/1249-metropolis-of-science-launches/748 HTTP/1.0" 200 5173 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)"

And where there’s a head, you’ll also find a tail!

%%sh 

tail columbia.txt
64.236.208.25 - - [17/Apr/2016:09:12:52 -0400] "GET /stylesheets/theme_stylesheets/mike1/style.css HTTP/1.1" 200 10239 "http://www.journalism.columbia.edu/page/678-the-george-t-delacorte-center/753" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Firefox/45.0"
64.236.208.25 - - [17/Apr/2016:09:12:52 -0400] "GET /javascripts/theme_scripts/mike1/jquery.flexslider.js HTTP/1.1" 200 11424 "http://www.journalism.columbia.edu/page/678-the-george-t-delacorte-center/753" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Firefox/45.0"
64.236.208.25 - - [17/Apr/2016:09:12:52 -0400] "GET /javascripts/theme_scripts/mike1/jquery.js HTTP/1.1" 200 33752 "http://www.journalism.columbia.edu/page/678-the-george-t-delacorte-center/753" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Firefox/45.0"
59.149.195.151 - - [17/Apr/2016:09:12:52 -0400] "GET /javascripts/theme_scripts/mike1/jquery.colorbox.js HTTP/1.1" 200 4590 "http://www.journalism.columbia.edu/page/276-dualdegree-journalism-computer-science/279" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/49.0.2623.109 Mobile/13E238 Safari/601.1.46"
59.149.195.151 - - [17/Apr/2016:09:12:52 -0400] "GET /stylesheets/theme_stylesheets/mike1/colorbox.css HTTP/1.1" 200 1754 "http://www.journalism.columbia.edu/page/276-dualdegree-journalism-computer-science/279" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/49.0.2623.109 Mobile/13E238 Safari/601.1.46"
59.149.195.151 - - [17/Apr/2016:09:12:52 -0400] "GET /javascripts/theme_scripts/mike1/jquery.js HTTP/1.1" 200 33752 "http://www.journalism.columbia.edu/page/276-dualdegree-journalism-computer-science/279" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/49.0.2623.109 Mobile/13E238 Safari/601.1.46"
64.236.208.25 - - [17/Apr/2016:09:12:52 -0400] "GET /javascripts/theme_scripts/mike1/jquery.tablesorter.min.js HTTP/1.1" 200 5162 "http://www.journalism.columbia.edu/page/678-the-george-t-delacorte-center/753" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Firefox/45.0"
64.236.208.25 - - [17/Apr/2016:09:12:52 -0400] "GET /javascripts/theme_scripts/mike1/clndr.min.js HTTP/1.1" 200 3752 "http://www.journalism.columbia.edu/page/678-the-george-t-delacorte-center/753" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Firefox/45.0"
157.55.39.192 - - [17/Apr/2016:09:12:52 -0400] "GET /page/169-lukas-prize-project-awards/170 HTTP/1.1" 200 8047 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
64.236.208.25 - - [17/Apr/2016:09:12:53 -0400] "GET /javascripts/theme_scripts/mike1/underscore-min.js HTTP/1.1" 200 5285 "http://www.journalism.columbia.edu/page/678-the-george-t-delacorte-center/753" "

Web access logs

OK what kind of data do we have? This is the so-called combined log format from an Apache web server. Whenever you browse a web site (in this case, www.journalism.columbia.edu), there is a program responding to your requests. Want the home page? Want information about the Dual Degree? You request the HTML page and that request is recorded as a single line in the log file. Then, to render the page, your browser might need some CSS files or JavaScript files or just some simple images. The subsequent requests for these objects are also recorded, one line each, in the log file.

So the log file is growing with each user’s visit. Requests are logged to the bottom of the file in time, so the oldest entries are at the top of the file and the newest at the bottom. If many people are looking at the site at the same time, their requests are interleaved in the file, as it records requests in time order.

Each line in the log file hold these values

IP address
Identity
Userid
date
Request
Status
Bytes
Referrer
Agent

Let’s compare this information with the first line (oldest request) in our file. (Notice that these log lines are really long and so “wrap around” the cell and can look like two or more lines.)

%%sh

head -1 columbia.txt
128.59.40.117 - - [17/Apr/2016:06:27:25 -0400] "GET /robots.txt HTTP/1.0" 200 469 "-" "gsa-crawler (Enterprise; T4-BWMXW7XQDYSQL; search-admin@columbia.edu)"

So the visit was from someone using the address 128.59.40.117 at 17/Apr/2016:06:27:25. The request was for a file called “robots.txt” which describes where automated programs are allowed to scrape on the site. The 200 means that the transmission was completed and that 469 bytes were sent. The user agent is not a browser but a “crawler” which means an automated scraper that is sucking up our content, presumably because it’s feeding a search engine.

Finally, a UNIX command can help us figure out the IP address.

%%sh

whois 128.59.40.117
sh: 2: whois: not found

The newest entries in the file are obtained from the bottom of the file. The last few lines are displayed with tail.

%%sh

tail -1 columbia.txt
64.236.208.25 - - [17/Apr/2016:09:12:53 -0400] "GET /javascripts/theme_scripts/mike1/underscore-min.js HTTP/1.1" 200 5285 "http://www.journalism.columbia.edu/page/678-the-george-t-delacorte-center/753" "

This last request has a timestamp of “17/Apr/2016:09:12:53”. That means we have captured about 3 hours worth of activity on our site. How many requests is that? The command wc tells us how many lines, words and characters are in a file.

%%sh 

wc columbia.txt
   4052   87241 1048576 columbia.txt

So in our three hours we have 4,000 or so requests. What other questions might we ask of the data? We might want to know how many different IP addresses appear in the data set. Or maybe how many different status codes.

We can use the command cut to select specific items from the file. Here we pass options that include “-d” (a character to be used as a delimiter defining separate fields in the file) and “-f” (to specify which fields to cut from the file).

Below we define individual fields as being separated by a blank space character and then ask for just the first field, the IP address.

%%sh

cut -d" " -f1 columbia.txt 
128.59.40.117
194.71.161.156
69.30.213.18
-
69.30.213.18
69.30.213.18
69.30.213.18
207.46.13.74
100.1.205.12
100.1.205.12
100.1.205.12
207.46.13.69
69.30.213.18
69.30.213.18
128.59.40.117
128.59.40.117
69.30.213.18
69.30.213.18
194.71.161.156
194.71.161.156
69.30.213.18
69.30.213.18
69.30.213.18
69.30.213.18
69.30.213.18
69.30.213.18
116.235.146.3
116.235.146.3
116.235.146.3
194.187.168.214
116.235.146.3
116.235.146.3
116.235.146.3
116.235.146.3
116.235.146.3
116.235.146.3
116.235.146.3
69.30.213.18
180.76.15.157
116.235.146.3
116.235.146.3
116.235.146.3
188.40.112.210
5.9.94.207
5.9.94.207
194.71.161.156
77.245.58.28
69.30.213.18
194.71.161.156
207.46.13.74
128.59.40.117
207.46.13.74
207.46.13.74
69.162.124.235
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
87.211.107.246
157.55.39.192
116.235.146.3
133.130.54.151
194.71.161.156
207.46.13.69
68.180.231.24
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
100.1.205.12
68.180.231.24
87.214.216.228
66.249.66.31
128.59.40.117
100.1.205.12
207.46.13.69
128.59.40.117
204.152.200.42
194.71.161.156
41.218.218.99
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
54.177.28.124
157.55.39.192
165.242.51.192
165.242.51.192
165.242.51.192
165.242.51.192
91.200.12.97
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
207.46.13.69
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
207.46.13.69
128.199.53.63
128.199.53.63
128.199.53.63
128.199.53.63
194.71.161.156
128.59.40.117
128.59.40.117
180.76.15.146
194.71.161.156
66.249.64.158
128.59.40.117
194.71.161.156
194.71.161.156
207.46.13.69
194.71.161.156
128.59.40.117
194.71.161.156
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
101.58.21.11
194.71.161.156
101.58.21.11
101.58.21.11
74.71.177.140
101.58.21.11
101.58.21.11
101.58.21.11
101.58.21.11
74.71.177.140
74.71.177.140
74.71.177.140
199.104.126.60
101.58.21.11
194.71.161.156
101.58.21.11
101.58.21.11
101.58.21.11
69.162.124.235
207.46.13.92
101.58.21.11
101.58.21.11
74.71.177.140
74.71.177.140
74.71.177.140
74.71.177.140
101.58.21.11
101.58.21.11
101.58.21.11
128.59.40.117
207.46.13.69
101.58.21.11
207.46.13.74
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
41.77.79.58
66.249.66.31
128.59.40.117
178.255.153.2
194.71.161.156
194.71.161.156
207.46.13.92
128.59.40.117
5.143.231.13
5.143.231.13
5.143.231.13
194.71.161.156
5.143.231.13
5.143.231.13
207.46.13.74
5.143.231.13
65.52.129.59
54.210.147.136
5.143.231.13
207.46.13.92
128.59.40.117
128.59.40.117
194.71.161.156
66.249.64.158
128.59.40.117
66.249.66.130
207.46.13.92
194.71.161.156
77.75.79.32
111.196.221.217
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
194.71.161.156
194.71.161.156
217.73.208.148
69.162.124.235
65.17.253.220
95.63.16.179
95.63.16.179
95.63.16.179
95.63.16.179
95.63.16.179
95.63.16.179
95.63.16.179
95.63.16.179
95.63.16.179
95.63.16.179
95.63.16.179
66.249.66.31
46.183.222.93
128.59.40.117
66.249.66.28
172.246.33.74
172.246.33.74
172.246.33.74
172.246.33.74
172.246.33.74
172.246.33.74
172.246.33.74
172.246.33.74
172.246.33.74
172.246.33.74
172.246.33.74
157.55.39.192
172.246.33.74
172.246.33.74
172.246.33.74
207.46.13.92
72.46.153.26
70.214.96.88
70.214.96.88
70.214.96.88
194.71.161.156
207.46.13.74
117.201.88.147
194.71.161.156
117.201.88.147
66.249.66.137
24.63.241.42
24.63.241.42
24.63.241.42
24.63.241.42
24.63.241.42
24.63.241.42
24.63.241.42
24.63.241.42
59.56.89.231
117.201.88.147
207.46.13.92
119.57.158.139
46.119.127.129
46.119.127.129
46.119.127.129
207.46.13.74
207.46.13.69
207.46.13.69
141.0.15.248
141.0.15.248
194.71.161.156
91.200.12.97
151.80.31.160
207.46.13.74
77.245.58.28
81.91.253.250
212.95.226.66
207.46.13.92
66.249.64.146
209.235.213.246
64.90.160.178
194.71.161.156
69.162.124.235
128.59.99.2
128.59.99.2
128.59.99.2
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
128.59.40.117
128.59.40.117
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
58.20.192.227
66.249.66.28
194.71.161.156
62.149.225.67
194.71.161.156
108.168.196.54
194.71.161.156
194.71.161.156
46.20.45.18
66.249.92.29
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
46.28.137.72,
144.76.14.43
66.249.66.28
194.71.161.156
194.71.161.156
207.46.13.74
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
83.161.202.171
66.249.66.52
83.161.202.171
66.249.66.49
198.74.60.112
66.249.66.28
83.161.202.171
180.76.15.147
194.71.161.156
128.59.40.117
54.147.133.18
70.214.106.5
210.82.53.196
210.82.53.196
210.82.53.196
210.82.53.196
210.82.53.196
210.82.53.196
210.82.53.196
210.82.53.196
210.82.53.196
207.46.13.74
210.82.53.196
210.82.53.196
210.82.53.196
154.118.109.126
128.59.40.117
154.118.109.126
154.118.109.126
154.118.109.126
154.118.109.126
154.118.109.126
154.118.109.126
154.118.109.126
154.118.109.126
154.118.109.126
84.132.174.252
84.132.174.252
84.132.174.252
84.132.174.252
154.118.109.126
154.118.109.126
84.132.174.252
84.132.174.252
154.118.109.126
84.132.174.252
154.118.109.126
84.132.174.252
84.132.174.252
84.132.174.252
84.132.174.252
84.132.174.252
154.118.109.126
1.39.33.226
66.249.66.28
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
24.44.85.225
217.73.208.148
54.165.176.73
69.162.124.235
66.249.66.16
157.55.39.192
128.59.40.117
128.59.40.117
180.76.15.32
217.73.208.148
1.39.33.226
95.211.217.68
188.32.128.47
188.32.128.47
188.32.128.47
188.32.128.47
188.32.128.47
84.134.240.142
188.32.128.47
188.32.128.47
207.46.13.92
180.76.15.17
52.37.147.174
66.249.66.28
157.55.39.192
106.120.173.151
207.46.13.69
122.169.204.216,
122.169.204.216,
122.169.204.216,
122.169.204.216,
122.169.204.216,
122.169.204.216,
122.169.204.216,
157.55.39.192
122.169.204.216,
122.169.204.216,
122.169.204.216,
122.169.204.216,
122.169.204.216,
207.46.13.74
128.59.40.117
68.180.231.24
52.48.180.204
180.76.15.5
217.73.208.148
180.76.15.5
207.46.13.74
199.59.148.210
66.249.66.19
74.87.163.147
52.48.180.204
69.162.124.235
103.255.5.40
103.255.5.40
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
188.40.112.210
217.73.208.148
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
128.59.40.117
207.46.13.74
80.187.101.176
80.187.101.176
80.187.101.176
80.187.101.176
80.187.101.176
80.187.101.176
80.187.101.176
80.187.101.176
80.187.101.176
80.187.101.176
80.187.101.176
81.153.203.83
81.153.203.83
177.55.96.221
46.32.15.4
81.153.203.83
128.59.40.117
176.31.241.60
54.219.35.123
66.249.66.130
157.55.39.192
207.46.13.74
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
132.66.38.12
207.46.13.69
184.153.87.9
184.153.87.9
184.153.87.9
184.153.87.9
184.153.87.9
184.153.87.9
184.153.87.9
81.153.203.83
184.153.87.9
184.153.87.9
184.153.87.9
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
46.32.15.4
184.153.87.9
184.153.87.9
184.153.87.9
81.153.203.83
81.153.203.83
81.153.203.83
81.153.203.83
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
46.32.15.4
122.57.127.66
81.153.203.83
46.32.15.4
46.32.15.4
46.32.15.4
128.59.40.117
46.32.15.4
81.153.203.83
46.32.15.4
46.32.15.4
100.1.205.12
46.32.15.4
207.46.13.74
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
132.66.38.12
49.230.19.145
49.230.19.145
81.153.203.83
49.230.19.145
132.66.38.12
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
49.230.19.145
208.109.21.238
81.153.203.83
212.95.226.66
128.59.40.117
70.16.220.141
70.16.220.141
70.16.220.141
23.106.239.161
81.153.203.83
209.235.213.246
184.153.87.9
184.153.87.9
81.153.203.83
100.1.205.12
125.209.235.171
69.162.124.235
75.101.131.28
75.101.131.28
81.153.203.83
81.153.203.83
68.180.231.24
184.153.87.9
128.59.40.117
62.149.225.67
178.255.215.92
178.255.215.92
81.153.203.83
8.37.70.105
123.125.71.21
41.46.67.160
41.46.67.160
151.80.31.176
68.180.231.24
124.41.241.212
124.41.241.212
124.41.241.212
124.41.241.212
124.41.241.212
124.41.241.212
124.41.241.212
124.41.241.212
124.41.241.212
124.41.241.212
124.41.241.212
41.218.218.99
41.218.218.99
31.220.243.66
41.218.218.99
31.220.243.66
31.220.243.66
31.220.243.66
41.218.218.99
31.220.243.66
31.220.243.66
41.218.218.99
41.218.218.99
31.220.243.66
41.218.218.99
31.220.243.66
31.220.243.66
41.218.218.99
31.220.243.66
31.220.243.66
31.220.243.66
41.218.218.99
41.218.218.99
41.218.218.99
41.218.218.99
41.218.218.99
31.220.243.66
208.115.113.84
208.115.113.84
31.220.243.66
31.220.243.66
31.220.243.66
124.41.241.212
182.48.49.155
68.180.231.24
207.46.13.74
115.87.132.168
124.41.241.212
124.41.241.212
69.162.124.235
128.59.40.117
52.7.249.161
109.173.125.227
124.41.241.212
124.41.241.212
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
69.127.186.52
54.165.176.73
157.55.39.192
52.0.19.0
180.76.15.9
124.41.241.212
66.249.66.99
180.76.15.154
164.132.161.49
128.59.40.117
128.59.40.117
124.41.241.212
128.59.40.117
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
87.214.216.228
199.16.156.124
87.214.216.228
207.46.13.74
52.0.19.0
207.46.13.74
207.46.13.74
207.46.13.92
66.249.66.34
208.115.111.68
207.46.13.74
207.46.13.74
207.46.13.69
66.249.66.31
180.76.15.34
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
173.213.212.228
193.92.153.238
43.224.24.22
240d:0:4b14:c000:e06c:e2ec:4cbe:22cb,
207.46.13.74
69.162.124.235
87.253.132.203
128.59.40.117
43.224.24.22
207.46.13.69
207.46.13.92
68.180.231.24
184.75.214.66
207.46.13.69
141.8.143.188
141.8.143.188
208.115.113.84
66.220.156.98
68.180.231.24
66.249.66.30
66.249.66.28
180.76.15.163
180.76.15.147
52.7.249.161
104.43.198.26
45.33.70.235
66.249.66.5
208.109.21.238
81.91.253.250
180.76.15.144
212.95.226.66
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
104.162.240.3
164.132.161.89
209.235.213.246
173.213.212.228
87.214.216.228
69.162.124.235
207.46.13.92
128.59.40.117
128.59.40.117
207.46.13.69
199.16.156.125
136.243.9.138
62.149.225.67
180.76.15.25
86.44.27.25,
65.52.129.59
128.59.40.117
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
178.255.155.2
207.46.13.74
128.59.40.117
164.132.161.49
103.205.218.5
103.205.218.5
103.205.218.5
103.205.218.5
37.187.162.183
103.205.218.5
128.59.40.117
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
186.7.132.218
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
50.62.176.17
109.148.174.77
109.148.174.77
109.148.174.77
109.148.174.77
180.76.15.150
68.180.231.24
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
69.180.79.99
198.74.60.112
180.76.15.137
69.162.124.235
125.209.235.184
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
54.186.28.49
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
103.251.51.137
128.59.40.117
128.59.40.117
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
74.105.223.45
103.251.51.137
128.59.40.117
188.226.200.217
103.251.51.137
69.180.79.99
128.59.40.117
46.20.45.18
52.7.249.161
66.249.64.146
68.180.231.24
66.249.66.49
199.59.148.210
199.16.156.125
128.59.40.117
128.59.40.117
109.148.174.77
109.148.174.77
180.76.15.158
94.228.34.206
122.55.28.67
122.55.28.66
122.55.28.66
122.55.28.66
122.55.28.67
122.55.28.67
203.160.175.164
203.160.175.162
122.55.28.69
203.160.175.164
122.55.28.66
122.55.28.66
203.160.175.163
122.55.28.66
122.55.28.69
122.55.28.69
203.160.175.164
193.92.190.172
128.59.40.117
103.205.218.5
122.55.28.66
8.29.198.26
69.162.124.235
66.249.66.28
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
66.249.66.62
66.249.66.28
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
103.205.218.5
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
192.114.23.211
173.252.112.115
87.106.149.183
178.255.153.2
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
101.191.64.199
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
66.17.112.201
128.59.40.117
66.17.112.201
66.17.112.201
66.17.112.201
66.249.66.28
184.97.52.11
52.0.19.0
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
50.166.152.43
180.76.15.154
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
66.249.92.29
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
58.152.103.50
66.249.64.152
66.249.66.28
27.125.146.65
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
128.214.106.134
140.115.111.116
77.245.58.28
212.95.226.66
207.46.13.74
209.235.213.246
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
69.162.124.235
112.133.246.131
207.46.13.74
66.249.66.28
46.119.112.23
46.119.112.23
46.119.112.23
46.119.112.23
100.43.90.9
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
86.68.182.23
62.149.225.67
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
51.255.65.51
207.46.13.74
66.249.66.28
68.173.183.137
68.173.183.137
68.173.183.137
68.173.183.137
68.173.183.137
68.173.183.137
68.173.183.137
199.16.156.125
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
112.133.246.131
68.180.231.24
213.143.49.176
213.143.49.176
213.143.49.176
213.143.49.176
213.143.49.176
207.46.13.74
213.143.49.176
213.143.49.176
128.59.40.117
213.143.49.176
213.143.49.176
207.46.13.69
213.143.49.176
207.46.13.69
213.143.49.176
207.46.13.69
213.143.49.176
213.143.49.176
213.143.49.176
213.143.49.176
180.76.15.139
213.143.49.176
213.143.49.176
213.143.49.176
213.143.49.176
50.162.222.199
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
85.7.62.78
144.76.14.47
197.179.158.75
197.179.158.75
128.59.40.117
197.179.158.75
66.17.112.201
197.179.158.75
197.179.158.75
213.143.49.176
213.143.49.176
151.80.31.104
123.125.71.40
108.168.196.54
54.183.147.184
108.168.196.54
108.168.196.54
108.168.196.54
108.168.196.54
108.168.196.54
108.168.196.54
108.168.196.54
108.168.196.54
69.162.124.235
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
95.233.46.247
129.34.20.23
129.34.20.23
129.34.20.23
129.34.20.23
129.34.20.23
129.34.20.23
129.34.20.23
129.34.20.23
129.34.20.23
129.34.20.23
95.233.46.247
129.34.20.23
129.34.20.23
114.245.189.8
114.245.189.8
114.245.189.8
68.180.231.24
68.180.231.24
198.74.60.112
46.20.45.18
207.46.13.74
128.59.40.117
207.46.13.74
95.136.95.43
95.136.95.43
66.249.92.29
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
95.136.95.43
66.249.66.28
95.136.95.43
68.180.231.24
86.106.17.210
95.136.95.43
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
52.37.147.174
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
50.202.217.173
95.136.95.43
67.87.36.10
66.249.66.53
54.183.147.184
128.59.40.117
127.0.0.1,
71.244.157.123
71.244.157.123
71.244.157.123
71.244.157.123
71.244.157.123
71.244.157.123
71.244.157.123
71.244.157.123
71.244.157.123
71.244.157.123
71.244.157.123
71.244.157.123
128.59.40.117
95.136.95.43
66.249.66.28
202.9.41.135
79.178.151.171
180.76.15.134
24.61.15.17
24.61.15.17
24.61.15.17
24.61.15.17
24.61.15.17
24.61.15.17
24.61.15.17
24.61.15.17
24.61.15.17
24.61.15.17
207.46.13.74
180.76.15.161
69.162.124.235
69.162.124.235
184.38.213.170
198.71.226.42
51.255.65.85
24.61.15.17
66.249.66.188
66.249.66.185
66.249.66.185
107.77.70.54
107.77.70.54
107.77.70.54
107.77.70.54
107.77.70.54
107.77.70.54
107.77.70.54
107.77.70.54
107.77.70.54
107.77.70.54
107.77.70.54
107.77.70.54
66.249.66.78
66.249.66.78
180.76.15.5
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
207.138.211.44
66.249.66.28
95.136.95.43
68.180.231.24
198.50.159.225
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
75.106.17.188
95.136.95.43
95.136.95.43
75.106.17.188
86.99.20.182
86.99.20.182
86.99.20.182
86.99.20.182
86.99.20.182
86.99.20.182
86.99.20.182
86.99.20.182
86.99.20.182
86.99.20.182
86.99.20.182
95.136.95.43
99.230.38.173
66.249.66.1
74.117.181.205
128.59.40.117
77.252.206.157
149.202.82.236
66.249.66.28
52.7.249.161
208.109.21.238
207.46.13.74
212.95.226.66
128.59.40.117
64.90.160.178
140.115.111.128
69.162.124.235
140.115.111.128
140.115.111.128
140.115.111.128
1.39.21.0,
1.39.21.0,
1.39.21.0,
1.39.21.0,
1.39.21.0,
1.39.21.0,
1.39.21.0,
1.39.21.0,
1.39.21.0,
1.39.21.0,
1.39.21.0,
1.39.21.0,
208.115.111.68
208.115.111.68
62.149.225.67
87.253.132.202
66.249.92.29
54.183.147.184
136.243.145.41
119.57.158.139
90.64.78.87
41.82.101.54
99.230.38.173
66.249.66.28
99.230.38.173
99.230.38.173
106.120.173.151
70.172.193.143
70.172.193.143
70.172.193.143
70.172.193.143
70.172.193.143
70.172.193.143
27.125.146.65
180.76.15.153
128.59.40.117
52.7.249.161
98.14.104.71
98.14.104.71
98.14.104.71
98.14.104.71
98.14.104.71
98.14.104.71
98.14.104.71
98.14.104.71
98.14.104.71
98.14.104.71
98.14.104.71
98.14.104.71
130.126.153.55
128.59.40.117
45.55.134.15
45.55.134.15
45.55.134.15
45.55.134.15
45.55.134.15
66.249.66.28
95.136.95.43
180.76.15.142
128.59.40.117
69.162.124.235
207.46.13.69
128.59.40.117
128.59.40.117
99.230.38.173
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
66.249.66.28
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
88.3.211.207
185.20.4.220
70.32.40.2
173.252.90.109
99.224.60.79
99.224.60.79
99.224.60.79
99.224.60.79
128.59.40.117
99.224.60.79
52.7.249.161
66.249.66.28
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
65.96.12.53
99.230.38.173
41.46.67.160
41.46.67.160
41.46.67.160
41.46.67.160
65.96.12.53
74.178.53.235
151.48.128.79
54.157.9.156
121.204.11.124
66.249.66.31
217.69.133.219
213.251.182.111
69.162.124.235
65.17.253.220
99.224.60.79
207.46.13.69
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
66.220.156.112
117.99.163.211
99.224.60.79
5.9.112.6
99.224.60.79
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
180.76.15.18
204.152.200.42
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
78.46.156.169
194.177.236.117
194.177.236.117
78.46.156.169
128.59.40.117
207.46.13.69
65.96.12.53
65.96.12.53
65.96.12.53
144.76.71.83
194.177.236.117
194.177.236.117
194.177.236.117
194.177.236.117
66.249.66.28
117.99.163.211
52.7.249.161
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
66.249.66.100
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
178.255.215.84
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
128.59.40.117
73.134.142.66
73.134.142.66
73.134.142.66
73.134.142.66
73.134.142.66
73.134.142.66
73.134.142.66
73.134.142.66
73.134.142.66
73.134.142.66
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
74.117.179.19
207.46.13.92
207.46.13.92
81.91.253.250
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
68.180.231.24
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
212.95.226.66
1.39.8.0,
209.235.213.246
94.228.34.248
207.46.13.69
176.62.80.88
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
69.162.124.235
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
37.187.162.183
207.46.13.74
207.46.13.74
207.46.13.74
66.249.66.28
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
141.8.143.213
125.209.235.170
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
62.149.225.67
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
141.8.143.213
207.46.13.74
207.46.13.74
94.228.34.206
184.75.214.66
207.46.13.74
207.46.13.92
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
52.7.249.161
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
62.210.215.100
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
128.59.40.117
157.55.39.192
157.55.39.192
54.183.147.184
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
209.6.199.206
66.249.66.128
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
178.135.80.52
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
128.59.40.117
128.59.40.117
74.108.42.209
74.108.42.209
74.108.42.209
74.108.42.209
114.144.161.13
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
54.183.147.184
98.7.88.245
98.7.88.245
98.7.88.245
98.7.88.245
141.8.143.213
74.108.42.209
74.108.42.209
104.223.8.121
128.59.40.117
74.108.42.209
69.162.124.235
141.8.143.213
207.46.13.69
198.20.245.236
74.108.42.209
91.200.12.97
74.89.123.58
74.89.123.58
74.89.123.58
74.89.123.58
74.89.123.58
74.89.123.58
74.89.123.58
74.89.123.58
74.89.123.58
74.89.123.58
74.89.123.58
74.108.42.209
117.99.163.211
117.99.163.211
52.7.249.161
68.180.231.24
74.89.123.58
128.59.40.117
74.108.42.209
117.99.163.211
66.249.66.28
208.115.113.84
208.115.113.84
208.115.113.84
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
211.204.51.92
66.249.66.28
104.194.197.118
119.57.158.139
68.180.231.24
198.74.60.112
144.36.185.50
144.36.185.50
144.36.185.50
144.36.185.50
144.36.185.50
66.249.66.28
207.46.13.74
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
68.180.231.24
66.249.66.28
90.199.109.208
90.199.109.208
90.199.109.208
144.36.185.50
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
73.198.204.152
180.76.15.154
73.198.204.152
69.162.124.235
208.115.111.68
180.76.15.142
73.198.204.152
128.59.40.117
128.59.40.117
59.56.89.231
52.7.249.161
73.198.204.152
180.76.15.146
207.46.13.69
66.87.146.68
68.180.231.24
72.46.153.26
128.59.40.117
91.208.99.2
128.59.40.117
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
8.37.71.9
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
117.99.163.211
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
208.115.111.68
112.134.64.8
112.134.64.8
112.134.64.8
112.134.64.8
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
70.90.11.125
128.59.40.117
74.108.42.209
157.55.39.192
128.59.40.117
70.90.11.125
128.59.40.117
128.59.40.117
128.59.40.117
8.37.70.234
77.245.58.28
207.46.13.69
204.79.180.38
64.90.160.178
69.162.124.235
74.108.42.209
52.7.249.161
141.8.143.213
208.115.111.68
54.165.176.73
66.249.66.10
141.8.143.213
66.249.66.13
207.46.13.92
99.230.38.173
74.108.42.209
141.8.143.213
76.118.63.220
76.118.63.220
76.118.63.220
76.118.63.220
76.118.63.220
76.118.63.220
76.118.63.220
76.118.63.220
76.118.63.220
76.118.63.220
76.118.63.220
76.118.63.220
141.8.143.213
128.59.40.117
141.8.143.213
199.30.24.159
66.249.66.27
66.249.66.27
66.249.66.24
199.30.24.159
199.30.24.159
141.8.143.188
66.249.66.28
141.8.143.188
128.59.40.117
141.8.143.188
141.8.143.188
66.249.66.56
141.8.143.188
165.124.238.61
165.124.238.61
165.124.238.61
128.59.40.117
165.124.238.61
141.8.143.188
165.124.238.61
165.124.238.61
207.46.13.92
198.50.159.225
165.124.238.61
141.8.143.213
141.8.143.213
85.55.225.36
207.46.13.92
68.180.231.24
117.18.0.21
141.8.143.213
207.46.13.74
141.8.143.213
141.8.143.213
207.46.13.92
141.8.143.213
211.66.119.239
211.66.119.239
180.76.15.19
141.8.143.213
173.252.88.185
141.8.143.213
88.208.244.37
141.8.143.213
52.7.249.161
141.8.143.213
69.162.124.235
207.46.13.69
141.8.143.213
66.249.66.138
141.8.143.213
128.59.40.117
141.8.143.213
14.148.131.109
14.148.131.109
125.209.235.184
141.8.143.213
164.132.161.58
208.115.113.84
208.115.113.84
141.8.143.213
180.76.15.6
71.41.154.19
108.41.184.22
108.41.184.22
108.41.184.22
108.41.184.22
108.41.184.22
180.76.15.19
207.46.13.69
207.46.13.69
128.59.40.117
87.253.132.201
66.249.66.28
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
76.116.131.14
76.116.131.14
76.116.131.14
76.116.131.14
202.180.34.186
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
70.214.66.153
98.5.95.46
98.5.95.46
98.5.95.46
70.214.66.153
70.214.66.153
70.214.66.153
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
98.5.95.46
108.168.196.54
52.37.147.174
95.237.134.204
101.226.169.214
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
95.237.134.204
27.106.8.78
27.106.8.78
27.106.8.78
95.237.134.204
95.237.134.204
27.106.8.78
27.106.8.78
27.106.8.78
95.237.134.204
27.106.8.78
27.106.8.78
27.106.8.78
27.106.8.78
27.106.8.78
27.106.8.78
27.106.8.78
180.76.15.135
128.59.40.117
112.134.64.8
198.74.60.112
180.76.15.12
69.162.124.235
65.17.253.220
128.59.40.117
164.132.161.55
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
80.188.83.152
70.214.66.153
70.214.66.153
70.214.66.153
66.249.66.28
66.249.66.28
46.20.45.18
24.167.160.90
24.167.160.90
24.167.160.90
24.167.160.90
24.167.160.90
24.167.160.90
52.0.19.0
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
66.249.64.146
127.0.0.1,
108.176.52.250
108.176.52.250
108.176.52.250
108.176.52.250
108.176.52.250
108.176.52.250
108.176.52.250
108.176.52.250
108.176.52.250
108.176.52.250
108.176.52.250
108.176.52.250
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
157.55.39.192
157.55.39.192
31.15.10.37
182.118.25.205
66.249.66.28
207.46.13.74
68.9.129.236
96.27.72.74
96.27.72.74
96.27.72.74
96.27.72.74
96.27.72.74
96.27.72.74
96.27.72.74
96.27.72.74
96.27.72.74
96.27.72.74
96.27.72.74
96.27.72.74
91.200.12.97
91.200.12.97
91.228.167.130
123.203.88.70
123.203.88.70
123.203.88.70
123.203.88.70
123.203.88.70
208.109.21.238
99.230.38.173
128.59.40.117
212.95.226.66
68.180.231.24
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
24.151.32.82
209.235.213.246
176.31.241.60
69.162.124.235
157.55.39.192
207.46.13.69
108.176.21.213
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
108.176.21.213
173.252.90.111
124.170.11.248
207.46.13.69
207.46.13.69
77.75.78.167
100.1.205.12
100.1.205.12
100.1.205.12
66.249.66.28
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
100.1.205.12
100.1.205.12
100.1.205.12
68.180.231.24
127.0.0.1,
108.176.21.213
108.176.21.213
108.176.21.213
108.176.21.213
108.176.21.213
108.176.21.213
108.176.21.213
108.176.21.213
37.187.162.183
95.211.217.68
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
124.170.11.248
66.249.66.164
124.170.11.248
124.170.11.248
66.249.66.170
66.249.66.160
66.249.66.111
66.249.66.107
66.249.92.29
119.57.158.139
97.33.1.169
97.33.1.169
54.177.225.249
68.180.231.24
128.59.40.117
108.176.21.213
208.81.37.174,
24.90.155.217
24.90.155.217
24.90.155.217
24.90.155.217
24.90.155.217
24.90.155.217
24.90.155.217
24.90.155.217
24.90.155.217
24.90.155.217
24.90.155.217
97.33.1.169
52.7.249.161
66.249.84.208
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
197.211.52.18
23.239.9.218
104.239.198.35
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
45.121.225.249
99.230.38.173
140.115.111.130
99.230.38.173
128.59.40.117
128.59.40.117
106.38.241.102
69.162.124.235
207.46.13.74
180.76.15.162
199.16.156.125
128.59.102.65
128.59.102.65
128.59.102.65
128.59.102.65
128.59.102.65
128.59.102.65
128.59.102.65
128.59.102.65
128.59.102.65
128.59.102.65
128.59.102.65
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
207.46.13.69
67.87.36.10
104.162.1.1
104.162.1.1
104.162.1.1
104.162.1.1
104.162.1.1
104.162.1.1
104.162.1.1
104.162.1.1
104.162.1.1
104.162.1.1
104.162.1.1
207.46.13.92
76.72.167.90
100.1.205.12
207.46.13.74
128.59.40.117
182.118.22.142
182.118.25.207
123.120.59.42
123.120.59.42
128.59.40.117
180.76.15.134
8.29.198.25
66.249.66.144
141.8.143.209
104.162.1.1
66.249.66.28
128.59.40.117
66.249.66.28
157.55.39.140
145.132.169.223
112.134.64.8
112.134.64.8
99.230.38.173
69.162.124.235
65.17.253.220
66.249.66.28
97.89.16.117,
54.165.176.73
207.46.13.74
66.249.92.29
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
72.209.129.213
207.46.13.74
172.56.18.185
172.56.18.185
172.56.18.185
172.56.18.185
172.56.18.185
172.56.18.185
172.56.18.185
207.46.13.74
172.56.18.185
172.56.18.185
172.56.18.185
172.56.18.185
172.56.18.185
68.180.231.24
77.252.206.157
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
173.233.117.143
173.233.117.143
173.233.117.143
173.233.117.143
173.233.117.143
173.233.117.143
173.233.117.143
173.233.117.143
173.233.117.143
173.233.117.143
173.233.117.143
66.249.66.28
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
173.252.112.104
128.59.40.117
128.59.40.117
107.77.76.25
45.56.109.238
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
73.132.71.194
198.50.159.225
77.245.58.28
81.91.253.250
139.255.56.114
107.77.76.25
107.77.76.25
107.77.76.25
107.77.76.25
107.77.76.25
139.255.56.114
139.255.56.114
139.255.56.114
139.255.56.114
139.255.56.114
107.77.76.25
139.255.56.114
107.77.76.25
139.255.56.114
107.77.76.25
107.77.76.25
107.77.76.25
107.77.76.25
139.255.56.114
107.77.76.25
107.77.76.25
107.77.76.25
66.249.66.28
107.77.76.25
107.77.76.25
139.255.56.114
139.255.56.114
139.255.56.114
139.255.56.114
182.118.41.186
128.59.40.117
69.162.124.235
10.192.53.40,
133.130.49.166
133.130.49.166
133.130.49.166
68.180.231.24
180.76.15.26
133.130.49.166
207.46.13.92
68.180.231.24
133.130.49.166
66.163.125.144
66.163.125.144
66.163.125.144
66.163.125.144
66.163.125.144
66.163.125.144
66.163.125.144
66.163.125.144
66.163.125.144
66.163.125.144
66.163.125.144
66.163.125.144
133.130.49.166
128.68.14.110
199.59.148.209
133.130.49.166
54.236.1.73
173.233.117.143
133.130.49.166
107.77.76.25
133.130.49.166
173.233.117.143
173.233.117.143
133.130.49.166
128.59.40.117
133.130.49.166
173.233.117.143
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
133.130.49.166
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
32.212.12.247
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
199.16.156.126
133.130.49.166
68.180.231.24
66.249.66.28
133.130.49.166
155.4.131.99
155.4.131.99
155.4.131.99
155.4.131.99
74.73.61.247
155.4.131.99
155.4.131.99
155.4.131.99
74.73.61.247
74.73.61.247
74.73.61.247
155.4.131.99
155.4.131.99
74.73.61.247
74.73.61.247
74.73.61.247
74.73.61.247
74.73.61.247
155.4.131.99
155.4.131.99
74.73.61.247
74.73.61.247
155.4.131.99
74.73.61.247
74.73.61.247
155.4.131.99
155.4.131.99
155.4.131.99
155.4.131.99
155.4.131.99
155.4.131.99
155.4.131.99
155.4.131.99
155.4.131.99
155.4.131.99
66.249.66.5
155.4.131.99
133.130.49.166
207.46.13.69
133.130.49.166
62.210.215.100
133.130.49.166
54.165.176.73
69.162.124.235
133.130.49.166
133.130.49.166
173.233.117.143
128.59.40.117
52.7.249.161
133.130.49.166
195.154.233.224
133.130.49.166
8.37.70.135
64.222.164.230
64.222.164.230
64.222.164.230
64.222.164.230
64.222.164.230
64.222.164.230
64.222.164.230
64.222.164.230
64.222.164.230
64.222.164.230
64.222.164.230
64.222.164.230
133.130.49.166
66.220.158.96
66.249.66.28
66.249.66.28
66.249.66.28
66.249.66.28
133.130.49.166
66.249.66.28
66.249.66.28
66.249.66.28
184.75.214.66
66.249.66.28
54.186.28.49
133.130.49.166
62.210.248.185
24.193.90.224
24.193.90.224
24.193.90.224
24.193.90.224
24.193.90.224
24.193.90.224
24.193.90.224
133.130.49.166
133.130.49.166
188.58.60.47
133.130.49.166
128.59.40.117
133.130.49.166
5.9.94.207
8.37.70.80
195.154.172.143
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
133.130.49.166
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
220.72.7.131
220.72.7.131
220.72.7.131
220.72.7.131
216.196.231.99
216.196.231.99
216.196.231.99
216.196.231.99
220.72.7.131
220.72.7.131
220.72.7.131
220.72.7.131
216.196.231.99
220.72.7.131
216.196.231.99
220.72.7.131
220.72.7.131
220.72.7.131
220.72.7.131
220.72.7.131
66.249.66.28
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
73.212.220.113
133.130.49.166
73.212.220.113
73.212.220.113
86.136.231.7
86.136.231.7
86.136.231.7
86.136.231.7
86.136.231.7
86.136.231.7
86.136.231.7
86.136.231.7
86.136.231.7
86.136.231.7
86.136.231.7
133.130.49.166
66.163.125.144
188.58.60.47
133.130.49.166
66.163.125.144
128.59.40.117
133.130.49.166
66.249.66.34
133.130.49.166
107.77.76.117
107.77.76.117
107.77.76.117
14.175.138.146
133.130.49.166
172.56.34.147
172.56.34.147
172.56.34.147
172.56.34.147
133.130.49.166
66.249.92.29
73.212.220.113
133.130.49.166
69.162.124.235
133.130.49.166
65.17.253.220
52.7.249.161
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
133.130.49.166
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
67.188.98.56
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
67.188.98.56
133.130.49.166
66.249.69.76
121.54.44.89
121.54.44.89
121.54.44.89
121.54.44.89
121.54.44.89
121.54.44.89
121.54.44.89
121.54.44.89
121.54.44.89
121.54.44.89
121.54.44.89
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
50.172.161.15
121.54.44.89
133.130.49.166
188.58.60.47
133.130.49.166
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
67.68.60.92
74.71.124.56
74.71.124.56
74.71.124.56
67.68.60.92
67.68.60.92
74.71.124.56
144.76.14.47
67.68.60.92
67.68.60.92
67.68.60.92
74.71.124.56
74.71.124.56
67.68.60.92
67.68.60.92
74.71.124.56
74.71.124.56
74.71.124.56
74.71.124.56
199.30.24.21
199.30.24.21
199.30.24.21
67.68.60.92
67.68.60.92
199.30.24.21
133.130.49.166
199.30.24.21
144.36.185.50
144.36.185.50
144.36.185.50
144.36.185.50
144.36.185.50
144.36.185.50
144.36.185.50
144.36.185.50
50.153.250.74
144.36.185.50
144.36.185.50
144.36.185.50
144.76.93.46
133.130.49.166
144.76.93.46
144.76.93.46
50.153.250.74
50.153.250.74
74.71.124.56
144.76.93.46
144.76.93.46
144.76.93.46
133.130.49.166
54.151.34.231
144.76.93.46
144.36.185.50
144.36.185.50
144.36.185.50
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
50.153.250.74
128.59.40.117
144.36.185.50
133.130.49.166
31.13.113.76
133.130.49.166
50.153.250.74
5.80.46.180
5.80.46.180
5.80.46.180
5.80.46.180
133.130.49.166
207.46.13.74
133.130.49.166
188.58.60.47
50.153.250.74
74.71.124.56
133.130.49.166
65.55.210.16
133.130.49.166
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
74.65.194.193
144.36.185.50
144.36.185.50
133.130.49.166
68.180.231.24
180.76.15.11
144.36.185.50
133.130.49.166
77.245.58.28
185.20.4.143
27.33.24.166
27.33.24.166
27.33.24.166
27.33.24.166
27.33.24.166
133.130.49.166
43.225.249.113
43.225.249.113
43.225.249.113
81.91.253.250
43.225.249.113
43.225.249.113
27.33.24.166
27.33.24.166
43.225.249.113
43.225.249.113
43.225.249.113
43.225.249.113
43.225.249.113
212.95.226.66
133.130.49.166
128.59.40.117
117.216.211.133,
68.180.231.24
64.90.160.178
133.130.49.166
66.249.75.225
69.162.124.235
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
223.223.151.253
141.8.143.213
133.130.49.166
66.163.125.144
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
117.216.211.133,
141.8.143.213
133.130.49.166
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
188.58.60.47
141.8.143.213
133.130.49.166
62.149.225.67
133.130.49.166
138.28.213.62
141.8.143.213
223.223.151.253
66.249.66.28
141.8.143.213
133.130.49.166
180.76.15.160
141.8.143.213
68.98.4.127
68.98.4.127
68.98.4.127
133.130.49.166
68.180.231.24
141.8.143.213
133.130.49.166
141.8.143.213
133.130.49.166
141.8.143.213
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
24.91.19.135
42.60.123.172
24.91.19.135
24.91.19.135
24.91.19.135
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
133.130.49.166
42.60.123.172
24.91.19.135
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
42.60.123.172
141.8.143.213
133.130.49.166
141.8.143.213
188.58.60.47
188.58.60.47
188.58.60.47
133.130.49.166
208.115.113.84
188.58.60.47
133.130.49.166
141.8.143.213
66.249.75.241
91.200.12.97
119.57.158.139
133.130.49.166
8.29.198.25
133.130.49.166
207.46.13.69
52.7.249.161
50.153.250.74
133.130.49.166
87.253.132.201
133.130.49.166
133.130.49.166
73.167.107.49
73.167.107.49
73.167.107.49
73.167.107.49
73.167.107.49
202.125.77.178
202.125.77.178
202.125.77.178
202.125.77.178
133.130.49.166
202.125.77.178
202.125.77.178
202.125.77.178
202.125.77.178
202.125.77.178
202.125.77.178
202.125.77.178
202.125.77.178
202.125.77.178
207.46.13.92
207.46.13.92
128.59.40.117
207.46.13.92
207.46.13.92
220.72.7.131
220.72.7.131
220.72.7.131
207.46.13.92
220.72.7.131
220.72.7.131
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
133.130.49.166
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
92.111.38.118
92.111.38.118
66.249.75.233
133.130.49.166
92.111.38.118
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
106.219.62.235
207.46.13.92
207.46.13.92
207.46.13.92
106.219.62.235
106.219.62.235
106.219.62.235
106.219.62.235
207.46.13.92
207.46.13.74
207.46.13.92
106.219.62.235
207.46.13.92
133.130.49.166
207.46.13.92
207.46.13.92
106.219.62.235
207.46.13.92
66.249.75.233
106.219.62.235
122.206.190.100
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
133.130.49.166
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
69.200.246.225
106.51.19.21,
106.51.19.21,
106.51.19.21,
106.51.19.21,
106.51.19.21,
106.51.19.21,
106.51.19.21,
69.200.246.225
69.200.246.225
69.200.246.225
178.255.153.2
106.51.19.21,
106.51.19.21,
106.51.19.21,
68.180.231.24
106.51.19.21,
69.200.246.225
69.200.246.225
133.130.49.166
106.219.62.235
68.32.187.39
106.219.62.235
68.32.187.39
68.32.187.39
68.32.187.39
68.32.187.39
68.32.187.39
68.32.187.39
68.32.187.39
68.32.187.39
68.32.187.39
68.32.187.39
68.32.187.39
68.32.187.39
106.219.62.235
163.172.7.229
163.172.7.229
207.46.13.74
207.46.13.74
106.219.62.235
207.46.13.74
207.46.13.74
108.168.196.54
207.46.13.74
108.168.196.54
207.46.13.74
133.130.49.166
207.46.13.74
207.46.13.74
106.219.62.235
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
133.130.49.166
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
133.130.49.166
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
163.172.7.229
133.130.49.166
66.249.69.101
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
133.130.49.166
207.46.13.74
128.59.40.117
128.59.40.117
207.46.13.74
5.206.237.169
207.46.13.74
207.46.13.74
207.46.13.74
69.200.246.225
66.249.75.225
69.200.246.225
103.205.218.5
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
69.200.246.225
106.51.19.21
106.51.19.21
106.51.19.21
106.51.19.21
128.59.40.117
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
133.130.49.166
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
133.130.49.166
52.7.249.161
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
133.130.49.166
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
66.249.75.241
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
123.119.102.48
207.46.13.69
133.130.49.166
223.223.151.253
133.130.49.166
207.46.13.69
207.46.13.69
69.200.246.225
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
94.228.34.248
99.230.38.173
207.46.13.69
133.130.49.166
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
133.130.49.166
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
69.162.124.235
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
133.130.49.166
157.55.39.192
157.55.39.192
66.249.75.225
207.46.13.69
133.130.49.166
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
207.46.13.69
103.205.218.5
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
180.76.15.33
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
123.0.223.95
72.46.153.26
180.76.15.144
157.55.39.192
207.46.13.74
207.46.13.74
70.209.102.158
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.74
207.46.13.92
207.46.13.92
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
71.172.87.249
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
182.48.105.142
182.48.105.142
182.48.105.142
128.59.40.117
128.59.40.117
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
207.46.13.92
207.46.13.92
182.48.105.142
207.46.13.92
182.48.105.142
207.46.13.92
207.46.13.92
207.46.13.92
182.48.105.142
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
207.46.13.92
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
182.48.105.142
66.249.75.233
120.28.46.206
157.55.39.192
52.7.249.161
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
207.46.13.92
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
157.55.39.192
23.236.58.127
64.236.208.25
64.236.208.25
64.236.208.25
64.236.208.25
59.149.195.151
59.149.195.151
59.149.195.151
64.236.208.25
64.236.208.25
157.55.39.192
64.236.208.25
%%sh

cut -d" " -f10 columbia.txt 
469
640
5173
377
5061
4210
4148
11495
6204
1754
44085
4156
17808
6680
4404
6095
5530
7413
4741
5923
4776
5119
5696
5060
5125
4449
4538
10239
1675
8408
11424
1986
4590
9509
3752
45180
454
482
657
23377
1313
424
16842
16842
23632
5526
21065
58848
4472
3799
469
546
5212
281
575
5673
10239
1754
11424
1986
1418
5285
45180
13361
10189
23377
8213
444
13780
17029
32112
8344
1311
424
5203
19260
4453
5498
4094
153
5999
451
264333
11218
337676
5670
11218
7950
3062
4822
13780
211
454
153
5261
6203
4114
4133
5999
61244
557
1754
4590
33752
5285
5162
9509
1622
454
128017
1311
44085
424
1435
62822
4067
5562
5113
4839
4918
609
5999
1675
1754
4590
1986
1418
5285
45180
264333
337676
44085
444
178629
4822
13780
11218
1622
3864
4092
3062
338432
212783
1313
641
469
153
5933
5137
5636
7905
4576
5751
4218
5050
4266
6684
1675
1754
4590
1986
9509
5162
7950
5670
163280
264333
337676
23377
1318426
12217
181940
11424
33752
2983
1986
24676
1418
5285
6641
60344
54092
618
7877
5621
23377
13880
33587
281
5103
11845
1622
14742
31547
26173
59423
444
7681
424
469
4981
1435
546
8614
1754
11424
33752
5162
9509
3752
58825
59384
72521
557
454
69083
62749
69208
4715
469
5999
10907
4116
4351
6095
469
211
211
4757
211
211
4154
5924
21065
4618
211
652
546
10602
4306
8397
4133
4135
4116
4118
8047
1244
10239
1754
11424
1986
5162
9509
45180
44085
23377
454
557
7681
1435
424
6470
6282
5974
281
21065
10239
1754
11424
5162
5285
1418
3752
13780
23377
1311
1622
211
613
5999
153
10239
1754
11424
1986
5162
9509
3752
23377
444
45180
7681
5212
13780
1311
424
62698
5999
33752
1675
10239
20039
4053
557
134542
271925
5599
1754
4590
7950
241411
38787
337676
444
605264
996224
7077
6389
5999
1244
1244
1244
4126
752
5212
643
644
26173
21065
4041
4208
21065
21065
21065
4091
648
21065
21065
4106
5999
5999
264333
337676
5999
33752
1675
11424
1986
469
5212
9509
5285
13780
5670
11218
45180
7950
4822
1622
11218
163280
212783
338432
23377
1311
1313
1318426
6021
59990
21065
252912
21065
34335
17016
5999
648
200
200
200
200
304
200
200
304
200
200
304
200
200
6226
639
202946
4620
4144
6763
1754
4590
33752
1418
9509
1435
81741
116064
98390
44085
8213
1622
1754
1311
10239
62822
5736
8408
5378
3131
469
646
14816
1754
10239
11424
1418
1986
3752
1622
45180
7681
6739
424
44085
1435
5564
6095
10239
11424
33752
1986
5285
1418
45180
8213
152358
4102
1675
1754
4590
557
7681
1418
5162
454
3752
1313
8213
1622
13780
424
1313
1435
3285108
636
10239
1754
11424
1986
1418
5285
155312
45180
13780
444
424
1313
44085
4125
211
281
5026
898
469
5212
4051
3938
4713
5999
10239
1675
11424
1986
1418
5999
5285
57326
3811
4242
287364
4339
4120
5130
33752
200
200
200
200
200
200
200
4733
200
200
200
200
200
5631
4133
546
469
5088
5092
5188
5212
1135613
4802
4339
639
5999
205333
180454
1675
1754
11424
5162
3978
10239
4590
1675
1418
3752
5285
1622
454
16673
44085
1313
424
17388
5350
9509
3752
1986
44085
444
454
7681
13780
424
5999
211
10239
1986
1675
9509
3752
33752
11424
1622
1311
424
44085
10602
72777
614
5532
8616
4850
287364
211
4259
211
1121690
5009
10239
11424
1754
1986
1418
5285
45180
86189
454
13780
1622
1311
7681
424
9150
5870
1675
4590
33752
5162
9509
3752
5673
44085
13780
454
13361
13801
6831
8344
576031
547
7681
1313
1435
5130
60647
37635
117473
14757
208712
11267
14475
14496
13431
45668
13599
69312
17029
7892
10714
131853
23931
4219
18676
7554
129249
79181
8782
9878
3966
5999
175
175
1675
174
9509
174
163280
212783
152
44085
241411
152
377
1318426
1622
211
1246
211
5670
3062
11218
11218
151
21065
211
21065
469
6873
898
898
58848
53578
21065
7554
557
187845
3079300
542
281
33313
33313
66773
79095
211
321744
15694
21065
898
898
170068
7137
4618
136621
27431
7768
211
1675
1754
11424
1986
1418
5285
1435
23377
8213
1622
7681
14813
1675
7892
33752
10239
1754
11424
4590
1986
1418
5162
1418
45180
5285
13780
8213
3752
454
7681
424
44085
13780
444
1311
424
1435
627
655
7554
557
444
8373
616
211
57698
6716
4884
211
281
4133
62822
1244
150643
20039
8379
1675
11424
33752
5162
5285
3752
23377
13780
1622
557
7681
1313
211
1222789
320
145316
43523
5427
4988
3088
469
4926
60647
4174
14813
14813
14813
14813
14813
14813
469
14107
610
320
159831
631930
4739
6251
482
4312
4079
5683
4165
1187288
10239
11424
33752
1986
1418
5285
9509
45180
163280
264333
23377
42745
8213
444
1246
4822
7681
1622
11218
11218
11218
170408
898
200
3797
5999
389
469
215752
4845
4086
211
5999
3824
1435
36832
22401
898
3131
6221
648
4000
21065
62822
1059486
554
549
21065
21065
21065
21065
10239
1754
241411
264333
44085
1622
7950
38787
42745
1246
1318426
1311
424
11218
11218
1435
4940
21065
538
14813
281
9922
469
5609
1375
469
28611
21065
211
200
16799
6095
6680
1675
33752
4590
5162
9509
3752
44085
13780
454
1622
1313
3285108
1435
5999
5933
469
3670
6518
94836
73388
132460
62822
7554
469
10239
11424
1675
5162
1418
5285
1318426
1622
45180
44085
163280
264333
241411
1246
451
1318426
11218
11218
5670
4822
7681
1313
1435
6518
85516
454
73388
98568
608
24362
12202
7166
33892
318156
546
24746
1754
1675
4590
1986
9509
5162
557
8213
1622
1313
44085
424
1435
62822
4452
5999
5562
10239
1754
11424
1986
1418
5285
45180
163280
8213
264333
287364
7892
23377
1622
454
1313
424
469
6221
14054
4590
11424
10239
3752
1418
9509
38228
124860
66974
440789
98203
113108
11267
13182
28456
39180
35463
107558
164649
12924
69312
45180
25414
85923
122238
145194
73176
191533
77366
6133
6083
100684
16206
98244
10925
112585
12754
134218
13513
79181
31299
117068
15806
86903
55090
41626
98921
14923
1622
79281
15557
36468
1311
20543
43526
6737
63913
45362
13030
9127
84351
14496
92960
98159
5619
12413
48923
13868
9757
18676
103840
13431
444
6779
10641
12538
37786
106252
121265
10981
5537
9907
30518
8083
24746
469
5999
62822
152
152
5636
10812
10812
469
4763
112979
211
21065
62822
10239
33752
11424
1418
5285
3752
9509
4839
194359
238206
13780
1622
557
44085
7681
1311
3062
208712
469
211
231197
5003
5999
5537
5999
11424
33752
1986
5162
5285
9509
163280
45180
5670
4822
1246
7681
44085
338432
1313
241411
11218
11218
11218
85991
241411
288152
569
847
28247
10239
11424
33752
5162
1418
9509
13780
1622
444
23377
44085
7681
211
212783
163280
4822
42745
11218
264333
451
3864
3062
11218
7554
557
8616
42518
618
5999
6643
11424
1754
4590
5162
9509
3752
60647
44085
13780
454
7681
1313
1435
10239
1754
11424
1986
1418
5285
3752
112585
25906
44085
440789
13780
208712
7681
154914
123695
124860
66974
98203
13348
38532
76831
113108
11267
20927
112593
13182
28456
15825
85137
9618
12633
14496
35463
123246
45668
12924
164649
119754
12351
69312
5589
25414
126403
15557
5619
8296
125676
36468
153448
121265
192841
16897
6503
20543
9374
43526
48923
107114
10641
45362
81902
6737
15947
44195
18676
63913
6779
127990
103840
13030
129249
60513
5807
14357
10981
84351
9539
6095
9878
66257
54397
6835
35709
320
538
1318426
5999
1754
174
4590
5162
9509
3752
153
152
152
212783
152
152
13780
444
451
11218
11218
3864
152
1313
151
175
174
175
175
5285
174
174
23377
163280
152
152
264333
241411
150
7950
5670
3062
152
151
11218
152
151
10239
33752
175
1986
1418
5162
152
152
152
4822
152
152
13780
150
152
152
11218
7681
151
424
151
986088
1675
175
11424
175
174
5285
314
44085
45180
337676
152
212783
451
5999
1754
174
4590
5162
174
3752
23377
153
312
185952
444
264333
1246
7950
152
1622
11218
152
152
150
150
1313
5999
10239
1675
1754
5162
1418
636
3752
264333
57326
337676
8213
1318426
451
444
11218
11218
3864
7681
1313
5670
4822
241411
3845
152
385168
4538
10239
1754
33752
1418
1435
3752
45180
8213
1622
23377
44085
7681
14370
21065
21065
733
21065
5999
33752
1754
11424
1418
5285
9509
212783
7950
5670
23377
44085
45180
11218
3864
4822
3062
444
1311
11218
1313
451
5999
1318426
241411
643
21065
1244
1244
1244
66387
10239
1754
33752
1986
5285
3752
16673
13780
45180
444
424
1311
44085
21065
5042
8614
454
72521
71491
63466
69083
62749
4840
1455102
4979
1675
212783
38787
7950
241411
1246
705176
7033
13801
17029
6831
32112
576031
211
10239
1754
33752
5162
1418
546
3752
23377
469
42745
212783
783
337676
847
11218
879
451
1318426
444
4822
738506
1313
241411
424
1435
72528
10239
33752
11424
1986
1418
5285
23377
444
46186
13780
7681
1313
1435
5999
664663
65850
469
65856
4596
898
898
134770
454
650
6221
26888
284
5778
16813
3430
25793
14651
16204
4135
877
281
4339
1754
11424
33752
1418
5285
9509
12049
8213
13780
44085
1313
424
7681
1754
1675
33752
1418
5162
9509
12049
8213
454
7681
1435
424
23377
7413
7413
898
211
211
62822
5999
546
4133
5212
5999
1754
632
11424
4590
1418
3752
163280
5670
212783
23377
264333
42745
451
4822
13780
11218
1311
11218
11218
7681
1318426
3897
454
211
21033
4884
10239
1986
5162
11424
9509
45180
5285
287364
8213
13780
557
7681
424
44085
1754
10239
4590
1986
1418
5285
45180
132460
94836
98568
1622
23377
454
7681
1313
5980
5999
2983
285
5170
200
1754
10239
4590
1986
5285
3752
16820
454
1311
7681
44085
424
6095
6462
7864
321744
98208
605
4665
11424
4590
5162
3752
13780
557
1622
23377
1311
546
5055
281
5999
72528
618
5872
271925
1675
1754
1754
4482
4590
10239
1754
5285
1418
3752
45180
454
1622
424
23377
469
1754
10801
6873
4839
9509
1418
3752
6988
238206
1754
5162
33752
194359
225757
44085
23377
454
1622
13780
3062
1313
211
44285
82608
211
58848
176
174
10239
1675
174
5285
11424
181000
152
152
4973
77775
457673
5999
4590
11424
5162
5285
3752
163280
45180
250504
85991
250504
8408
80932
597
5999
469
62822
62822
4165
62822
21065
5870
21065
6095
21065
14510
5999
14336
16227
15646
200
200
200
200
200
200
200
200
200
200
200
200
16420
14871
21065
389
62822
284
6680
5999
604
21065
55553
641
612
22569
546
5673
13801
17029
10189
12058
32112
799891
3870
469
62822
5999
1675
1754
9509
5670
152
212783
451
444
11218
262088
351864
113106
7797
5999
11424
1418
1986
5285
152
211
211
6300
281
12171
469
5636
16179
5999
10239
1675
1754
1418
5162
9509
163280
212783
42745
8213
1246
11218
3864
337676
4822
1311
338432
13780
5670
451
241411
5134
5999
10239
11424
33752
5285
5162
3752
7950
212783
5670
338432
1622
241411
1311
451
424
23377
11218
11218
11218
5130
22715
117473
12395
454
688
5999
271925
8616
454
5301
109835
469
5748
62822
5999
1754
1675
11424
9509
1418
3752
212783
44085
38787
7950
11218
11218
337676
1313
3864
4822
11218
444
11218
3062
1318426
1435
18599
143681
58657
17362
13995
557
428184
98159
534
799891
5599
7429
616
5999
21065
4618
2565
5212
1435
11424
33752
4590
3752
5285
45180
1754
23377
44085
1622
8213
7681
65071
454
5803
165954
6127
10239
11424
33752
1986
5285
3752
45180
23377
44085
7950
1622
11218
3864
337676
1313
4822
11218
424
11218
3062
6665
5999
1081656
454
134770
1435
543000
6447
55064
5360145
4133
18543
117473
12395
22715
5360145
8127
50569
70571
66211
898
150643
62822
598
597
597
598
606
598
632
598
598
602
6221
647
607
734
587
600
211
575
599
605
575
631
561
598
632
602
612
598
596
597
598
597
469
5999
212783
7950
1246
11218
5670
11218
241411
3062
264333
598
599
597
656
608
598
598
597
598
605
609
626
599
633
587
5999
581
590
21065
603
562
584
623
211
598
598
587
624
596
598
596
605
21065
200
21065
672
597
145642
598
597
598
598
281
597
597
598
597
598
597
598
62822
597
598
649
4605
604
597
642
596
598
598
597
598
614
605
582
4447
4839
653
660
622
618
641
583
21065
571
601
580
619
567
598
4876
608
580
482
5999
607
211
621
581
594
598
598
605
62822
646
597
598
598
600
639
598
598
597
597
596
596
599
645
598
597
598
597
648
4133
635
610
284
4497
1675
4590
33752
1418
3752
9509
45180
8213
1622
1313
444
44085
1435
1986
590
595
627
585
614
612
634
562
615
617
599
598
598
614
621
898
5999
1675
11424
4590
1986
1418
3752
45180
212783
337676
241411
451
444
5670
3062
3864
11218
11218
4822
1313
42745
469
153
338432
1435
8616
454
227336
598
628
1059
597
598
604
598
597
598
598
260
5999
1675
1418
5162
4221
898
109835
898
5637
6127
281
4812
3130
553
5748
21065
1675
4590
1986
5162
5285
149756
45180
444
7681
1313
44085
5803
5183
20039
62822
211
454
6095
3285108
6054
898
14492
14672
17128
5999
10239
1754
4590
5162
9509
3752
3864
44085
42745
1622
13780
11218
5670
11218
7681
4822
3062
45180
264333
337676
1313
1435
898
898
5999
211
62822
10239
1418
163280
183896
183896
5140
1835905
10239
1675
11424
1418
5162
5285
3752
72777
454
557
1313
44085
211
12131
898
211
898
211
6873
4590
11424
33752
5162
9509
3752
4839
238206
225757
44085
1622
5113
454
557
1311
1313
21065
1435
5999
1244
21065
7707
469
5824
1753528
62822
190320
802351
211
1467333
211
5999
6095
553
5198
11424
10239
33752
4590
5162
9509
5285
45180
23377
163280
42745
241411
5223
1435
5162
11424
4590
1675
1986
1754
10239
8213
444
1311
1622
5670
7950
8213
1622
1246
11218
9947
11218
1311
3062
424
10239
1754
11424
1986
5162
5285
23377
45180
8213
454
444
1311
1313
1435
7354
7892
546
6565
19035
6578
7217
7046
5346
21065
7335
16529
21065
281
5980
62822
5061
627
211
1754
3868753
1675
5212
28264
82608
641220
6680
4590
33752
10239
5285
5162
9509
45180
1622
23377
444
1313
4203
469
3900
898
1675
10239
1754
493
1127
4032
9856
1455102
5924
4776
4114
1675
3984
5999
163280
152
4803
338432
4245
4133
337676
13868
26282
10896
5457
4720
211
211
211
1244
7181
74537
7344
5076
5026
5601
211
898
7230
4078
275584
4625
553
109676
62822
5879
5999
6437
6518
469
4490
6095
200898
1244
1244
4918
8217
5598
482
482
773787
7851
64643
1675
10239
5285
1622
454
4596
371093
34626
8397
389
643
10239
11424
1675
5162
5285
9509
163280
212783
38787
42745
44085
7681
11218
11218
444
1311
241411
5670
11218
3062
541552
5999
152
264333
338432
482
4590
33752
10239
1418
1986
3752
45180
264333
42745
44085
8213
1246
6662
337676
11218
7681
33752
45180
1986
444
1311
241411
424
11218
7950
451
27070
287364
5999
527
9509
11424
5162
5285
212783
4822
42745
1311
3062
264333
444
424
1622
1313
338432
7681
1246
10239
1754
33752
1318426
241411
1986
1418
5285
1435
44085
444
45180
8213
1622
1313
1435
4890
6105
5999
62822
597
281
21065
469
656
260037
4657
1675
33752
11424
5162
9509
3752
23377
44085
8213
1622
1313
1435
27344
18866
29030
4707
3941
5999
5999
1675
1986
5162
11424
33752
320
5999
1675
33752
4590
5162
9509
3752
44085
45180
264333
241411
212783
451
444
5670
3062
11218
11218
11218
424
7950
338432
4232
200
10239
1754
4590
1986
5285
3752
230974
1622
454
44085
1311
1313
8616
11424
1986
1418
5285
557
3397
31075
553
19035
6739
11267
1318426
1675
33752
4590
1986
5162
9509
72777
271925
557
1311
1313
44085
609
21065
30686
1435
898
7766
7766
898
21065
20783
469
21065
1452329
1675
1754
11424
1986
5162
3752
45180
5670
444
241411
3864
1311
38787
337676
23377
1313
7681
1622
7950
11218
1318426
21065
287364
281
211
30771
5870
6518
1675
33752
4590
5162
1675
3551598
5285
546
5212
62438
10239
1754
33752
7033
5162
5285
3752
45180
337676
264333
8213
23377
13780
1246
1622
11218
11218
7681
3062
7950
4822
241411
10239
1754
11424
1986
1418
5285
10602
271925
454
3131
200
5162
1418
33752
5285
3752
1622
13780
444
211
5999
10239
1754
11424
4590
5162
9509
3752
23377
8213
1622
469
557
1311
1754
1675
469
1754
642
5999
241411
264333
62822
211
7905
1313
200
10239
11424
1675
1986
5285
3752
45180
1311
1313
23377
424
877488
62822
365020
10239
1754
11424
1986
1418
5285
152
60586
152
7681
44085
1311
424
554
287364
8616
10239
33752
4590
1418
5162
9509
557
13780
8213
44085
424
1311
19429
24608
15455
469
5019
19035
5999
638
4242
4863
5999
1675
4590
33752
5162
9509
3752
212783
264333
338432
7950
6777
151354
166659
228115
6957
151
1675
4590
33752
1754
1418
9509
45180
1311
7681
1313
44085
546
5999
6204
7230
4133
526
19035
898
898
5170
2694728
1123
7065
32269
7355
8760
469
640
58848
898
5999
338432
15433
281
21065
5870
200
211
4843
211
3623
10239
1754
11424
1986
1418
5285
45180
13780
23377
444
7681
424
546
1754
33752
1675
1418
3752
9509
45180
5212
557
454
424
1313
44085
898
211
10239
1986
1418
1754
5162
1675
4590
557
444
1313
424
23377
7892
1675
11424
1754
5285
3752
9509
1622
454
1313
44085
5700
70571
50569
75636
155148
45180
5999
4133
1541236
62822
5130
1675
11424
1754
1418
9509
3752
12395
22715
37635
1622
44085
1311
444
424
7681
40174
21065
21065
4654
1675
10239
11424
1986
4590
1675
33752
4590
5162
9509
9509
5285
45180
45180
23803
20877
454
557
444
1622
444
1311
5870
424
23377
8213
1622
1313
1435
5999
6127
281
200
15191
19035
15694
211
3636
4616
556
6738
5212
1754
10239
11424
5162
1418
5285
45180
13780
23377
557
444
7681
6422
898
469
6641
16067
128017
4511
7239
6462
4575
164644
6508
6095
4574
53578
5999
1675
11424
4590
5162
9509
3752
44085
163280
212783
8213
13780
7950
1246
1318426
5562
7681
11218
3062
11218
11218
1313
338432
8614
71491
63466
69208
71196
69083
8616
8217
211
21961
4233
5999
1675
33752
4590
5212
1418
9509
3752
10239
1754
11424
1246
11218
1986
5162
9509
3752
45180
1622
5670
44085
444
1311
7681
1313
4822
451
7950
7681
8213
3062
45180
337676
1313
1318426
555
1435
4168
542
8616
646
6865
211
5999
9907
7215
150643
4102
62822
4757
189688
4997
5042
10239
1754
11424
1986
1418
5285
45180
8213
23377
13780
1313
424
4809
102570
10239
4590
33752
1986
5134
5285
5162
3752
5999
44085
287364
5359
163624
10239
14742
64643
67084
68136
112496
1311
9783
4147
17016
5207
4133
5183
17388
469
189688
10239
1754
11424
1986
1418
5285
45180
44085
163280
42745
7616
264333
13780
3864
11218
5670
1675
11424
10239
4590
451
7950
3062
1246
1986
5285
3752
5162
241411
134770
1435
8213
1622
44085
1313
454
636
1675
4590
33752
1986
5162
3752
7950
163280
337676
241411
1622
264333
7681
4822
23377
424
11218
42745
11218
1318426
4920
134770
557
1754
10239
4590
5162
1986
5285
1435
44085
8213
444
7681
24746
151
7299
5137
14813
469
6333
1763465
5091
5285
1418
4590
59373
6665
5999
1754
4590
10239
5870
643
98208
5879
281
7065
21065
62822
10239
33752
11424
1986
1418
3752
45180
163280
264333
8213
13780
7681
241411
3062
11218
3864
23377
42745
424
4822
7950
1435
6693
10239
1754
11424
1986
5162
5285
13801
44085
10578
8213
10189
444
7681
557
6831
12058
1313
6518
85516
73388
98568
454
1435
5031
1754
1675
11424
33752
5162
9509
5285
45180
47194
1622
444
7681
3842
4590
11424
1675
3752
1418
9509
45180
444
1311
1313
44085
23377
1435
5154
60647
7516
5999
1675
1754
33752
1986
1418
5162
212783
45180
451
241411
7681
44085
264333
1675
1754
4590
337676
23377
1986
5999
11218
11218
11218
9509
3752
42745
1318426
454
1311
1313
44085
898
898
4245
8616
454
493
7406
1127
310
212783
241411
189688
199824
451
11218
3864
9783
3062
38787
1246
482
6421
44051
19119
10896
112979
130066
23652
18044
16512
6204
211
25253
166659
166323
272314
5673
10578
10189
17029
32112
8344
4636
282831
7230
117361
6643
7321
584
898
898
898
7230
28230
6518
18615
8616
6536
4618
444
8047
7344
1675
33752
4590
5162
9509
3752
45180
82608
13780
1622
7681
424
1435
337676
501008
7778
211
4283
211
6799
21065
22406
4590
33752
5285
11629
64089
7371
10239
1754
11424
21065
5162
9509
424
3062
23377
45180
13780
7681
1313
21065
5575
469
200
211
21065
6221
31923
281
6873
1675
33752
4590
5162
9509
5285
23377
6988
13780
8213
557
7681
45180
194359
1311
238206
1313
4902
5673
5502
5999
5670
4822
1246
338432
11218
3864
337676
1318426
200
5923
5999
13801
10578
10189
6831
12058
14174
543
21065
7587
557
4913
457673
4227
7413
7554
58223
4060
898
6095
898
4309
7217
10897
7905
5091
7387
4397
1675
1754
11424
1986
1418
5285
45180
212783
6777
264333
166659
228115
272314
23377
42745
8213
13780
5066
11218
4168
11218
11218
1313
424
1246
3062
5670
5973
6073
5413
152
152
1318426
9856
695
3062
5331
4753
3977
609
5999
8760
636
5157
7291359
62822
6680
5736
389
5980
6795
610
898
898
898
898
1675
1754
11424
1986
4541
1418
5285
45180
8213
44085
454
7681
1313
424
4113
4118
469
15694
7768
5564
33752
11424
4906
557
23377
5601
11337
4181
6921
6232
5019
17280
7890
8465
3343
4924
251952
898
652
6873
759507
229644
51362
227336
227336
181000
15220
196725
3872
5065
10239
4590
1754
11424
4595
3088
3827
1418
4449
6777
4015
9598
5162
181000
4783
9509
1244
4615
4156
5145
6865
6643
17280
11902
5308
12650
4347
8217
5715
7661
10812
4125
3344
5999
10239
1754
4590
5162
9509
3752
44085
163280
8213
4822
5670
1246
11218
11218
13780
7681
1622
1313
241411
212783
200
304
304
200
200
200
200
1318426
8616
454
5999
200
200
200
211
200
109835
75436
8127
1622
4616
8213
1675
4590
33752
1418
9509
1435
45180
8213
13780
1622
557
7681
444
19035
19035
5754
8760
557
4168
4635
21065
6363
287364
5464
10801
5449
4824
23377
90867
20942
181000
181000
3797
6194
4535
4021
3852
4190
3870
4144
5439
5134
3952
6454
5524
4954
181000
6698
6956
19135
181000
7445
19035
7578
7905
7841
7797
7210
7429
4936
14079
469
6095
4893
45180
4036
4248
4041
4884
7803
5134
5042
5022
20452
3778
5350
8083
454
45180
44085
7681
3978
5225
5261
181000
22634
94812
108214
4546
31027
7892
5911
181000
135665
8217
3609
4643
3781
6300
5003
62822
7778
6742
4210
132587
3698
4987
4254
4245
7354
4354
6410
5198
6648
4088
6578
6256
6462
181000
5130
8616
6680
7148
3775
5134
5712
4168
15678
231680
9342
4804
4765
482
25753
4066
5343
6338
4973
3754
5093
15220
3977
4371
4117
6077
10986
7578
5999
4602
4720
34196
4511
7661
7374
19035
10494
10896
1375600
306456
4915
3783
5582
3894
3927
4272
4567
4481
4014
4113
4862
4430
4907
5879
4238
4054
4426
4266
6087
5858
4425
4604
21065
3881
3929
3916
4170
7190
4360
14054
182448
5999
21065
546
9725
4242
45180
4384
4066
3739
4023
8547
3861
11424
1418
10239
3752
38787
217200
215752
6900
6422
5636
4845
3859
4546
4763
3930
4195
6473
6389
5123
5480
5924
5999
1675
33752
469
4133
5162
9509
3752
44085
11218
1246
5670
11218
1311
451
4822
11218
4758
4279
444
4684
3062
3900
3859
4661
264333
4473
3936
4446
4127
3088
212783
1313
8616
952784
454
5686
557
83681
62822
107029
181000
3974
3845
15220
5584
4310
181000
9540
3913
4193
4492
181000
3562
5999
7406
10239
11424
33752
4590
1754
33752
5162
3752
8047
5285

Look at one of the log lines above and make sure you understand that the 10th field (as defined by spaces) is the number of bytes transferred.

Below, use another delimiter to pull out the month the request was made.

%%sh
# your code here

cut -d" " -f7 columbia.txt

/robots.txt
/feed/170.rss
/page/1249-metropolis-of-science-launches/748
/page/1/1
/page/1253-columbia-journalism-partners-on-panama-papers/748
/page/18-technology-guide-2016-17/15
/page/18-technology-guide-2016-17/17
/page/277-contacts/145?printing=true
/page/967-for-alumni/773
/stylesheets/theme_stylesheets/mike1/colorbox.css
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/photo/2296/11
/news/68/
/page/203-doctor-of-philosophy-in-communications/204
/page/1214-a-conversation-with-lester-holt/14
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/page/22-rss-feeds/22
/page/249-required-application-materials-for-knight-bagehot-fellowship-in-economics-and-business-journalism/250
/event/1394/14
/page/183-chancellor-award-nominations/184
/page/29-tech-discounts/29
/page/30-computer-labs/30
/page/31-computer-and-e-mail-accounts/31
/page/32-computer-faq/32
/page/34-file-management/34
/profile/34-john-dinges/
/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/page/89-the-master-s-project/89
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/line4.png
/robots.txt
/feed/1180.rss
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1//colorbox/border2.png
/news/613
/news/613
/archive/301/2012/2
/event/1361/14
/
/dupont
/event/1389/14
/photo/1298/629
/robots.txt
/cs/ContentServer/jrn/1165270075521/page/1165270075396/JRNSimplePage2.htm
/site_map
/
/cs/ContentServer/jrn/1165270051304/page/1165270114687/JRNLandingPage2.htm
/page/9-journalism-awards/9
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/2643/default/duPont_Icon.jpeg?1345138102
/system/photos/2642/default/Chancellor_Icon.jpeg?1345138083
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo.png
/system/photos/2644/default/Lukas_Icon.jpeg?1345138128
/system/photos/2640/default/Berger_Icon.jpeg?1345138050
/system/photos/2648/default/Dart_Icon.jpeg?1345138383
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border2.png
/page/1056-the-dupont-talks-inaugural-episode/9
/system/photos/2069/original/SNasar_112811.jpg?1322514324
/profile/43-marguerite-holloway/10
/event/1367?class=more
/photo/2172/610
/system/documents/903/original/jas_program.pdf
/
/images/theme_images/mike1/line1.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/logo.png
/news/630
/images/theme_images/mike1/line4.png
/system/documents/684/original/CLIMATE_CHANGE_FULL_WITH_COVER.pdf
/page/150-alumni-board/151
/page/145-benefits-services/146
/page/486-careers-in-television/399
/event/1523
/
/system/photos/3954/default/Haider_Poster.jpg?141522529
/images/theme_images/mike1/arrow1.png
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/line4.png
/system/photos/3004/original/Solomon_-Alisa.gif?1365706610
/images/theme_images/mike1/logo-footer.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/favicon.ico
/feed/301.rss
/photo/1974/22
/page/1-about-the-school/1
/system/photos/2216/default/Twitter_Web.jpg?1326137680
/system/photos/2215/default/FB_Web_New_New.jpg?1326137407
/system/photos/2218/default/blogtalkradiobutton.jpg?1326139152
/
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4579/default/berger_hp.jpg?1460236845
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/line3.png
/system/photos/3013/original/Fishman.gif?1365724719
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/photo/2432/123
/images/theme_images/mike1/icon-slider-nav1.png
/system/photos/4585/default/berger_hp.jpg?1460814085
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1//colorbox/border1.png
/feed/164.rss
/robots.txt
/system/documents/345/original/online_metrics_report.pdf
/page/190-lukas-prizes-how-to-enter/191
/page/47-payroll/47
/page/518-2008-mark-lynton-history-prize-finalist/188?printing=true?printing=true
/chancellor
/event/1401/14
/event/1347/14
/photo/2388/211
/event/1363?class=more
/page/18-technology-guide/488
/page/276-dual-degree-journalism-computer-science/279
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4579/default/berger_hp.jpg?1460236845
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/page/802-tobenkin-award-past-winners/613
/system/photos/4170/default/etan_hp.jpg?1425320228
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/jquery.masonry.js?1366664152
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/system/photos/4251/default/Puente.jpg?1428956574
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/page/62-contact-us/828
/system/photos/2891/default/Gina.jpg?1358280805
/system/photos/3369/default/izabela.jpg?1381854124
/test/wp-admin/
/system/photos/4248/default/sferriss.jpg?1428955674
/page/789-tobenkin-award-how-to-enter/598
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/system/photos/3071/default/HannahJones.jpg?1369154099
/system/photos/1715/default/ColumnshotsGriego_CM.jpg?1305554091
/
/page/10/10?category_ids=2&tags=PHOTOJOURNALISM
/system/photos/535/default/Read_Bernstein.jpg?1278621140
/images/theme_images/mike1/icon-donate.png
/system/photos/2961/default/ABedrick.jpg?1364245121
/system/photos/2973/default/Janine.jpg?1365015761
/system/photos/2974/default/Addeley.jpg?1365015784
/system/photos/4136/default/Ethan_2.jpg?1424104657
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border2.png
/robots.txt
/event/1169/14
/images/theme_images/mike1/favicon.ico
/cs/ContentServer/jrn/1165270109971/page/1212609902670/simplepage.htm
/page/1184-the-energy-and-environment-reporting-fellowship/8
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4434/default/mphillis.jpg?1444412517
/system/photos/4478/default/asif.jpg?1449684418
/system/photos/4430/default/dgrandoni.jpg?1444412472
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/line4.png
/system/photos/4436/default/srust.jpg?1444412536
/system/photos/4432/default/kjennings.jpg?1444412494
/system/photos/4435/default/sjerving.jpg?1444412526
/news/781
/robots.txt
/
/page/184-chancellor-award-past-winners/185
/page/111-thank-you-notes/112
/page/430-press-room/352
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/robots.txt
/event/1137/14
/event/1108/14
/profile/427-nina-berman/10
/page/1082/11
/page/1061-cost-of-attendance-the-lede-program/910
/photo/2540/592
/page/517-2008-mark-lynton-history-prize-winner/188
/
/page/1070-j-school-live/920
/profile/48-david-klatell/
/feed/416.rss
/cs/ContentServer/jrn/1165270052298/JRN_News_C/1212611760779/JRNNewsDetail.htm
/alumni/weekend2015
/profile/9
/page/514-2008-winner-press-release/188
/event/1523
/page/572-check-requests/741
/photo/2528/125
/page/66-job-hunting-links/66
/page/169-lukas-prizes/170
/favicon.ico
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/favicon.ico
/images/theme_images/mike1//colorbox/border2.png
/event/1360/14
/page/51-new-faculty-and-staff/51
/profile/29-helen-benedict/
/
/
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/icon-donate.png
/feed/301.rss
/
/home
/system/documents/585/original/it2104_fill_in.pdf
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/apply-button-bg.png
/site_map
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border2.png
/system/documents/263/original/August_2010_ENews.pdf
/
/javascripts/theme_scripts/mike1/jquery.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/style.css
/system/photos/191/default/International_Gates.jpg?1276270291
/photo/2368/501
/images/theme_images/mike1/arrow1.png
/system/photos/3492/default/cs-employers-1.jpg?1389305574
/system/photos/4509/default/aw16header.jpg
/news/367
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/4550/default/hearstspring2016.jpg?1459796440
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1/line3.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/system/documents/445/original/private_enterprise.pdf
/page/637-m-s-dual-degree-computer-science-required-application-materials/440
/page/372-tv-video-lab-and-studio-facilities/15
/
/xmlrpc.php?rsd
/blog/
/wp/
/page/113-clips-websites-and-reels/114
/cs/ContentServer?pagename=JRN/Render/PrintThisPage&childpagename=Journalism/JRN_Profile_C/JRNFacultyDetail&cid=1165270108880&c=JRN_Profile_C
/site_map?pagename=JRN/Render/PrintThisPage&childpagename=Journalism/JRN_Profile_C/JRNFacultyDetail&cid=1165270108880&c=JRN_Profile_C
/feed/199.rss
/feed/211.rss
/system/photos/2974/default/Addeley.jpg?1365015784
/
/profile/213-christopher-drew/
/photo/2457/201
/
/
/
/photo/2433/101
/feed/514.rss
/
/
/page/106-resumes/107
/
/
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4579/default/berger_hp.jpg?1460236845
/
/javascripts/theme_scripts/mike1/jquery.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/robots.txt
/site_map
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/system/photos/4585/default/berger_hp.jpg?1460814085
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border1.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/profile/29-helen-benedict/10
/system/photos/482/default/Pulitzer_Banner.jpg?1278532831
/
/system/documents/176/original/Meyer_Berger_Obit_5B1_5D.pdf
/
/system/photos/483/default/Tobenkin_Banner.jpg?1278532849
/page/1178-punch-sulzberger-program/1112
/
/feed/76.rss
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
/page/2
/feed/167.rss
/system/photos/4560/default/Krudy.jpg?1460139281
/page/1019/7
/photo/2524/50
/page/90-the-documentary-project/90
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/favicon.ico
/system/photos/4552/default/slideshow4.jpg?1459874593
/system/photos/4554/default/slideshow2.jpg?1459874691
/system/photos/4551/default/docprogramslideshow.?1459874769
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/stylesheets/theme_stylesheets/mike1/colorbox.css
/images/theme_images/mike1/logo-footer.png
/stylesheets/theme_stylesheets/mike1/style.css
/feed/301.rss
/page/933-brown-institute/929
/page/89-the-master-s-project/89
/page/10/10?tags=DIGITAL+MEDIA
/page/714
/robots.txt
/feed/628.rss
/page/63-faq-before-you-arrive/63
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/apply-button-bg.png
/page/1162/9
/images/theme_images/mike1//colorbox/border2.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/favicon.ico
/page/1234/8
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/main.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/header-bg.png
/system/photos/4477/default/videostorytelling.gif?1449517775
/profile/490-jacob-goldstein/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/apply-button-bg.png
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/images/theme_images/mike1/line4.png
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/system/photos/1885/default/colloqium.jpg?1317847264
/feed/22.rss
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/system/photos/3704/default/alacron_hp.jpg?1403827136
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/page/842-pitching-long-form-digital/637
/feed/277.rss
/
/news/366
/cabot/about/board-of-judges/feed/
/robots.txt
/site_map
/news/518
/page/83-student-life/4
/page/210-ph-d-students-on-the-job-market/211
/
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/
/javascripts/theme_scripts/mike1/underscore-min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.eot
/event/1199
/event/1520
/feed/301.rss
/profile/428-mark-hansen/10
/photo/2381/392
/page/7-our-programs/7
/javascripts/theme_scripts/mike1/jquery.js
"GET
"GET
"GET
"GET
"GET
"GET
"GET
/event/984
"GET
"GET
"GET
"GET
"GET
/page/939-cost-of-attendance-m-a/77
/event/1523
/cs/ContentServer/jrn/1175373219440/page/1175373827741/simplepage.htm
/robots.txt
/news/362
/news/446
/page/10/10?category_ids=2&tags=Data+Visualization+and+Statistics
/site_map
/system/documents/1013/original/kbf2016.pdf
/event/1362
/profile/428-mark-hansen/10
/feed/171.rss
/
/system/documents/1/original/Reconstruction_of_Journalism.pdf
/system/documents/1/original/Reconstruction_of_Journalism.pdf
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/profile/304-emily-bell/10
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/line4.png
/system/photos/2056/original/EBell_112811.jpg?1322508884
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1//colorbox/border2.png
/profile/501/10
/page/10?tags=SOCIAL+ISSUES
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1//colorbox/border2.png
/home
/photo/2528/12
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border2.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/page/12-alumni-and-friends/12
/system/photos/4511/default/wayne_aw16.jpg
/wp/wp-admin/
/page/72-apply/924
/page/4-prospective-students/4
/profile/62-michael-schudson/10
/feed/301.rss
/feed/301.rss
/event/1304
/photo/2267/146
/system/documents/793/original/elizabeth-spayd-new-editor-cjr-release.pdf
/profile/38-todd-gitlin/10
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.eot
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border2.png
/page/4-admissions/4?printing=true
/page/14-events-calendar/14
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/page/9-journalism-awards/9
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/line4.png
/system/photos/2643/default/duPont_Icon.jpeg?1345138102
/system/photos/2646/default/Pulitzer_Icon.jpeg?1345138168
/system/photos/2645/default/Oakes_Icon.jpeg?1345138150
/system/photos/2648/default/Dart_Icon.jpeg?1345138383
/system/photos/4412/default/logotype_bluebox70x70.jpg
/page/10-full-time-adjunct-visiting-faculty/10
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/page/7-our-programs/7
/system/photos/70/default/Knight-Bagehot.jpg?1275411514
/system/photos/68/default/International.jpg?1275411342
/system/photos/1888/default/colloqium_web_banner.jpg?1317849702
/system/photos/2056/default/EBell_112811.jpg?1322508884
/system/photos/2725/default/Nina-Berman.gif?1365711635
/system/photos/147/default/AnnCooper2.jpg?1276009818
/system/photos/2059/default/JCross_112811.jpg?1322510850
/system/photos/93/default/HFrench.jpg?1291237303
/system/photos/113/default/TGitlin.jpg?1291237356
/system/photos/88/default/WGrueskin.jpg?1291236298
/system/photos/97/default/LynNell-faculty.jpg?1368455738
/system/photos/155/default/mholloway2015.jpg?1438353363
/system/photos/2644/default/Lukas_Icon.jpeg?1345138128
/page/199-master-of-arts-in-journalism/200
/system/photos/2065/default/NLemann_112811.jpg?1322513292
/system/photos/1805/default/Susan_McGregor.png?1442594937
/system/photos/2075/default/MSchudson_112811.jpg?1322517107
/profile/549-tim-wu/10
/system/photos/2077/default/MShapiro_112811.jpg?1322518042
/page/8-training-programs/8
/system/photos/82/default/Stille.gif?1365718788
/system/photos/91/default/Duy_headshot-2web.jpg?1423507352
/page/507/501
/system/photos/128/default/Betsy_West2.jpg?1275668385
/event/1315?class=more
/
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/header-bg.png
/profile/38-todd-gitlin/10
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/icon-donate.png
/page/7-our-programs/7
/images/theme_images/mike1/icon-tags-small.png
/profile/38-todd-gitlin/10
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1//colorbox/border1.png
/
/page/199-master-of-arts-in-journalism/200
/
/robots.txt
/publishing
/apple-touch-icon.png
/apple-touch-icon-precomposed.png
/dupont
/system/photos/4390/default/ma_tab.jpg
/
/page/8-training-programs/8
/images/theme_images/mike1/arrow1.png
/system/photos/3250/default/Thank-you-photo-banner.gif?1375890513
/system/documents/800/original/alumni-newsletter-fall-2013.pdf
/cs/ContentServer/jrn/1165270071374/page/1175374096177/JRNTabPage.htm
/
/page/12-alumni-and-friends/12?utm_content=buffer2bf42&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer
/page/12-alumni-and-friends/12?utm_content=buffer2bf42&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer
/system/photos/3953/default/francis_nyt_student_article.jpg?1415225281
/system/photos/3987/default/hardy_student.jpg?1415830396
/page/286-international-affiliates/288
/system/photos/3226/default/Jschool_red_01_.gif?1375368881
/page/1135-2015-dupont-award-winners/986
/
/profile/333-melvin-mencher/video4.asp
/profile/333-melvin-mencher/video3.asp
/system/photos/4177/default/movement_article.jpg?1425932067
/page/236-frequently-asked-questions/1087
/page/1070-j-school-live/920
/system/documents/255/original/Performance_Appraisal_Presentation_042110_282_29.ppt
/system/documents/255/original/Performance_Appraisal_Presentation_042110_282_29.ppt
/page/114-how-to-get-a-job/115
/feed/1093.rss
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/favicon.ico
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/apply-button-bg.png
/page/155-newly-admitted-students/493
/stylesheets/theme_stylesheets/mike1/flexslider.css
/page/199-master-of-arts-in-journalism/200
/javascripts/theme_scripts/mike1/jquery.js
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/main.js
/images/theme_images/mike1/logo-horizontal-2.png
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/header-bg.png
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border2.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/favicon.ico
/cs/ContentServer/jrn/1165270069782/page/1175374446419/simplepage.htm
/studentwork/cns/2002-04-17/422.asp
/page/8-training-programs/8
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/line3.png
/page/491/63
/old/wp-admin/
/ContinuingEducation
/system/photos/3718/default/Giannina_Segnini.jpg?1406325332
/page/75-ph-d-required-application-materials/75
/page/1097/4
/page/1097/4
/
/event/1523
/feed/301.rss
/index.php/component/users/?view=registration
/system/photos/3727/default/ms_student.jpg?1406838491
/system/photos/191/default/International_Gates.jpg?1276270291
/page/503/501
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/feed/13.rss
/system/documents/350/original/Steele.pdf
/profile/31-sheila-coronel/10/feed
/system/documents/842/original/june_2014.pdf
/system/photos/192/default/Paris_Slide_1.jpg?1276270850
/news/696
/news/1489
/page/289-press-room/292
/robots.txt
/event/1161/14
/system/photos/70/default/Knight-Bagehot.jpg?1275411514
/profile/109-george
/page/155-newly-admitted-students/493
/page/155-newly-admitted-students/493
/page/155-newly-admitted-students/493
/page/155-newly-admitted-students/493
/page/155-newly-admitted-students/493
/page/155-newly-admitted-students/493
/robots.txt
/page/63-frequently-asked-questions-p
/system/documents/716/original/daedalus2013.pdf
/profile/29-helen-benedict/10/feed/
/system/documents/716/original/daedalus2013.pdf
/system/photos/3387/default/hunting-season-full-cover.png?1383241561
/news/503
/page/1165-berger-award-2015-winners/1013
/robots.txt
/page/164-pulitzer
/photo/2313/436
/page/430-press-room/114?printing=true
/profile/42-lynnell-hancock/10
/system/documents/439/original/Victorian_postal_reform.pdf
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/system/photos/2344/default/Building_1.jpg?1331058125
/favicon.ico
"GET
/photo/2036/79
/
/feed/301.rss
/robots.txt
/system/documents/1001/original/teachingdata16.pdf
/event/1230/14
/photo/2388/673
/page/151-alumni-association-awards/152
/
/event/1023
/images/theme_images/mike1/favicon.ico
/system/documents/521/original/Cabot_Prizes_Press_Release_2011_FINAL.pdf
/page/464-2007-oakes-presentation/194
/images/theme_images/doyle-georgia2/NewLogo.png?1327066847
/page/710-social-media-one-night-stand/532
/page/171-berger-award/172
/feed/76.rss
/profile/498-john-schoen/10
/
/feed/301.rss
/system/photos/553/default/Bikel_Hi_Rez.jpg
/feed/301.rss
/alumni/
/
/
/
/
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/system/photos/4550/default/hearstspring2016.jpg?1459796440
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/icon-tags-small.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/favicon.ico
/news/26
/
/
/page/155-newly-admitted-students/493
/
/page/505/501?printing=true
/robots.txt
/page/81-visit-the-school-events/4
/javascripts/theme_scripts/jquery.idTabs.pack.js?1444072995
/robots.txt
/news/314
/
/page/10/10?category_ids=2&tags=Politics
"GET
/profile/50-nicholas-lemann/10
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/page/203-doctor-of-philosophy-in-communications/204
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1//colorbox/border1.png
/system/photos/1885/default/colloqium.jpg?1317847264
/images/theme_images/mike1/favicon.ico
/
/page/190-the-lukas-prize-project-how-to-enter/191
/robots.txt
/profile/515-allison-parrish/
/page/11-current-students/11
/system/photos/3738/default/currentstudents_jschool.jpg?1407522722
/system/photos/3755/default/currentstudents_dos.jpg?1407864729
/system/photos/3740/default/currentstudents_univ.jpg?1407522881
/feed/301.rss
/page/8-training-programs/8
/robots.txt
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/logo-horizontal-2.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/line1.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/page/11-current-students/11
/system/photos/3737/default/currentstudents_academic.jpg?1407522692
/images/theme_images/mike1/line4.png
/system/photos/3755/default/currentstudents_dos.jpg?1407864729
/system/photos/3743/default/currentstudents_jschool.jpg?1407523259
/wp-admin/
/system/photos/1388/default/nlgja.jpg?1292614181
/system/photos/65/default/Studentlife_Side.jpg?1275401386
/system/photos/1386/default/nabj.png?1292614149
/system/photos/1390/default/spj.jpg?1292614207
/system/documents/916/original/tobeberger2015.pdf
/cs/ContentServer/jrn/1212612358814/page/1212612358795/JRNSimplePage2.htm
/page/412-dupont-columbia-winners-archive/1094
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/favicon.ico
/feed/301.rss
/news/892
/
/about
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/images/theme_images/mike1/header-bg.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/feed/301.rss
/page/199-master-of-arts-in-journalism/200
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/line4.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1//colorbox/border2.png
/robots.txt
/page/171-mike-berger-award/172
/page/10
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/4502/default/MATT.JPG?1452269654
/system/photos/150/default/Walt-Bogdanich.gif?1365714085
/system/photos/4506/default/tbradley.jpg?1453748798
/system/photos/3771/default/daniel_a.jpg?1408652577
/system/photos/2986/default/Burleigh_Nina.gif?1365706179
/system/photos/2989/default/Cohen_Sarah.gif?1365706228
/system/photos/147/default/AnnCooper2.jpg?1276009818
/system/photos/3256/default/deitsch_.jpg?1376325514
/system/photos/936/default/edsall.jpg?1304373008
/system/photos/645/default/Freeman.jpg?1279731376
/system/photos/3119/default/Vanessa.gif?1371498827
/system/photos/162/default/Stephen_Fried.gif?1365716551
/system/photos/2992/default/Hajdu_David.gif?1365706270
/system/photos/3545/default/hansen.jpg?1392670367
/system/photos/155/default/mholloway2015.jpg?1438353363
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4372/default/KANTROWITZ.jpg?1439496827
/system/photos/4171/default/Matt_Kozar.jpg?1425569363
/system/photos/1391/default/TamiLuhby.gif?1365717895
/system/photos/3000/default/Mintz_-Jim.gif?1365706529
/system/photos/2659/default/RNorton.jpg?1345495471
/system/photos/2997/default/Matloff_-Judith.gif?1365706478
/system/photos/3706/default/Diantha_Parker.jpg?1404750842
/system/photos/852/default/pool-eckert.jpg?1392672210
/system/photos/824/default/richmn.jpg?1392672219
/system/photos/823/default/RichSchapiro.gif?1365718608
/system/photos/872/default/Seave.jpg?1280954557
/system/photos/2682/default/ahmed-shihab-eldin.gif?1365717716
/system/photos/3235/default/Siegel_-Lloyd-2012.jpg?1375710566
/system/photos/1943/default/Dolores-Barclay.gif?1365711292
/system/photos/3055/default/Lennart-Bourin.jpg?1368456160
/system/photos/848/default/PaulaSpan.gif?1365717399
/system/photos/2080/default/JStewart_112811.jpg?1322518368
/system/photos/91/default/Duy_headshot-2web.jpg?1423507352
/system/photos/3188/default/Mike-Ventura.gif?1374078031
/system/photos/3008/default/Wheatley_-Bill.gif?1365706683
/system/photos/864/default/burford.jpg?1392672030
/system/photos/2987/default/Canipe_Chris.gif?1365706198
/system/photos/3278/default/Coll-web.gif?1377281425
/system/photos/4036/default/Cheryl_Einhorn.jpg?1417630376
/system/photos/3489/default/mario2015b.jpg?1420472366
/system/photos/86/default/AGoldman.jpg?1291237401
/images/theme_images/mike1/icon-donate.png
/system/photos/2995/default/Karle_-Stuart.gif?1365706445
/system/photos/1259/default/DKlatell.jpg?1291217138
/system/photos/3263/default/Tony-Maciulius.gif?1376424088
/images/theme_images/mike1/logo-footer.png
/system/photos/3288/default/habibanosheen2.jpg?1378324386
/system/photos/1914/default/Patel_Headshot2.jpg?1319040513
/system/photos/3432/default/schoen.jpg?1392672237
/system/photos/4039/default/SICHA_headshot.jpg?1417546936
/system/photos/4394/default/sataline.jpg?1441036959
/system/photos/3236/default/Karen-Stabiner.jpg?1375717512
/system/photos/847/default/Surowicz.jpg?1280952446
/system/photos/3007/default/Wald_-Jonathan.gif?1365706666
/system/photos/93/default/HFrench.jpg?1291237303
/system/photos/2713/default/HeatherCabot.gif?1365714437
/system/photos/2990/default/Coronel_Sheila.gif?1365706241
/system/photos/832/default/knee.jpg?1392672119
/system/photos/3529/default/hogan.jpg?1392672092
/system/photos/3708/default/Lisa_Pollak_Photo.jpg?1405027267
/system/photos/101/default/RJohn.jpg?1291236478
/system/photos/3664/default/jonathan-soma.jpg?1399473825
/system/photos/2077/default/MShapiro_112811.jpg?1322518042
/system/photos/1270/default/Ernie_Sotomayor.gif?1365717548
/system/photos/113/default/TGitlin.jpg?1291237356
/images/theme_images/mike1/line3.png
/system/photos/871/default/singer.jpg?1392672245
/system/photos/3377/default/robbins.jpg?1392672228
/system/photos/3665/default/chris-wiggins.jpg?1399473834
/system/photos/882/default/Epstein.jpg?1280954937
/system/photos/2984/default/Bennett_Rob.gif?1365706134
/system/photos/2999/default/Merchant_-Preston.gif?1365706509
/system/photos/125/default/Andie_Tucher2.jpg?1275665800
/page/72-apply/922
/page/1050-general-policy-on-conduct-and-discipline/925
/system/photos/4310/original/vrase-360specs-virtual-reality-headset-20.jpg?1431976761
/page/73-m-s-required-application-materials/73
/page/412-dupont-columbia-winners-archive/1094
/robots.txt
/
/feed/301.rss
/system/documents/929/original/16.2john.pdf
/system/documents/840/original/april_2014.pdf
/page/518-2008-mark-lynton-history-prize-finalist/188
/page/810/633
/page/810/633
/robots.txt
/news/860
/system/photos/3564/default/alumni-weekend-2014-slideshow.jpg
/page/1027-student-life/855
/
/feed/301.rss
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/2215/default/FB_Web_New_New.jpg?1326137407
/system/photos/4345/default/banner3_.jpg?1438357911
/system/photos/4358/default/bannercpc2.jpg?1438631256
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/arrow1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/icon-slider-nav1.png
/system/photos/2725/default/Nina-Berman.gif?1365711635
/robots.txt
/page/11-current-students/11
/system/photos/4350/default/cpcdescript.jpg?1438358735
/feed/596.rss
/
/page/72-apply/922
/
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/apply-button-bg.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/4585/default/berger_hp.jpg?1460814085
/images/theme_images/mike1//colorbox/border1.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.ttf
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/events/lukas/2004/
/pools
/page/208-ph-d-program-student-bios/209
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/line3.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/apply-button-bg.png
/page/4-prospective-students/4
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/images/theme_images/mike1/banners/The_New_York_World.jpg
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/page/8-training-programs/8
/images/theme_images/mike1/arrow1.png
/page/4-prospective-students/4
/system/photos/2814/default/Cartel.jpg?1355246488
/test/wp-admin/
/
/knight-bagehot
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/70/default/Knight-Bagehot.jpg?1275411514
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/1943/default/Dolores-Barclay.gif?1365711292
/system/photos/2057/default/HBenedict_112811.jpg?1322509591
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/3771/default/daniel_a.jpg?1408652577
/images/theme_images/mike1/logo.png
/system/photos/2725/default/Nina-Berman.gif?1365711635
/images/theme_images/mike1/apply-button-bg.png
/system/photos/2985/default/Blum_David.gif?1365706164
/system/photos/2692/default/GeorgeBodarky.gif?1365714064
/system/photos/150/default/Walt-Bogdanich.gif?1365714085
/system/photos/4506/default/tbradley.jpg?1453748798
/system/photos/2986/default/Burleigh_Nina.gif?1365706179
/system/photos/842/default/bruder.jpg?1392672045
/system/photos/3203/default/Elena.gif?1375217143
/system/photos/3262/default/LIsaRCohenPic.jpg?1425311022
/system/photos/2989/default/Cohen_Sarah.gif?1365706228
/system/photos/147/default/AnnCooper2.jpg?1276009818
/system/photos/160/default/Unknown-1.jpeg?1378227266
/system/photos/861/default/Brent-Cunningham.gif?1365714937
/system/photos/3256/default/deitsch_.jpg?1376325514
/system/photos/936/default/edsall.jpg?1304373008
/system/photos/2060/default/JDinges_112811.jpg?1322511090
/system/photos/3746/default/Justin_Elliott.png?1407529630
/system/photos/3488/default/ford.jpg?1392672068
/system/photos/2061/default/SFreedman_112811.jpg?1322511767
/system/photos/93/default/HFrench.jpg?1291237303
/system/photos/3119/default/Vanessa.gif?1371498827
/system/photos/836/default/MartyGoldensohn.gif?1365716789
/system/photos/88/default/WGrueskin.jpg?1291236298
/system/photos/3545/default/hansen.jpg?1392670367
/system/photos/2992/default/Hajdu_David.gif?1365706270
/system/photos/1530/default/LarryHeinzerling.gif?1365717071
/system/photos/3059/default/Lars-head-shot-v2.jpg?1368463497
/system/photos/155/default/mholloway2015.jpg?1438353363
/system/photos/4397/default/1510387_10153315953497491_8182635685450076815_n.jpg?1441053100
/system/photos/4372/default/KANTROWITZ.jpg?1439496827
/system/photos/858/default/RickKArr.gif?1365717241
/system/photos/1259/default/DKlatell.jpg?1291217138
/system/photos/832/default/knee.jpg?1392672119
/system/photos/156/default/haupt.jpg?1392672140
/system/photos/157/default/SethLipsky.gif?1365717822
/system/photos/3263/default/Tony-Maciulius.gif?1376424088
/system/photos/2690/default/TomMason.gif?1365718118
/system/photos/2999/default/Merchant_-Preston.gif?1365706509
/system/photos/2998/default/McDonald_-Erica.gif?1365706494
/system/photos/2069/default/SNasar_112811.jpg?1322514324
/system/photos/114/default/Victor_Navasky.jpg?1275575842
/system/photos/3288/default/habibanosheen2.jpg?1378324386
/system/photos/826/default/padawer.jpg?1392672201
/system/photos/1914/default/Patel_Headshot2.jpg?1319040513
/system/photos/3708/default/Lisa_Pollak_Photo.jpg?1405027267
/system/photos/4398/default/Whitney_Richardson_headshot.jpg?1441069694
/system/photos/3377/default/robbins.jpg?1392672228
/system/photos/4394/default/sataline.jpg?1441036959
/system/photos/1913/default/BJSchechter.gif?1365718488
/system/photos/3432/default/schoen.jpg?1392672237
/system/photos/2076/default/ESchumacher_112811.jpg?1322517858
/system/photos/4583/default/bio_segnini.jpg?1460492540
/system/photos/2077/default/MShapiro_112811.jpg?1322518042
/system/photos/4039/default/SICHA_headshot.jpg?1417546936
/system/photos/871/default/singer.jpg?1392672245
/system/photos/3004/default/Solomon_-Alisa.gif?1365706611
/system/photos/1270/default/Ernie_Sotomayor.gif?1365717548
/system/photos/3236/default/Karen-Stabiner.jpg?1375717512
/system/photos/82/default/Stille.gif?1365718788
/system/photos/4501/default/jacob.jpg?1452200850
/system/photos/105/default/topping.jpg?1392672489
/system/photos/3057/default/Dody.jpg?1368463129
/system/photos/125/default/Andie_Tucher2.jpg?1275665800
/system/photos/3007/default/Wald_-Jonathan.gif?1365706666
/system/photos/1261/default/wayne.jpg?1392672262
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/system/photos/128/default/Betsy_West2.jpg?1275668385
/system/photos/2604/default/Tali_Web.jpg?1339446488
/system/photos/3983/default/wu_faculty.jpg?1415814909
/page/786-2013-summer-investigative-reporting-course/8
/system/photos/3032/default/AilsaChang.jpg?1366834905
/profile/143-abi-wright/164/feed/
/
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/system/photos/4579/default/berger_hp.jpg?1460236845
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/system/photos/4585/default/berger_hp.jpg?1460814085
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/logo-footer.png
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/header-bg.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/system/photos/4585/default/berger_hp.jpg?1460814085
/images/theme_images/mike1/logo-footer.png
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/images/theme_images/mike1/banners/The_New_York_World.jpg
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/logo-footer.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1/header-bg.png
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1/line1.png
/
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/system/photos/4579/default/berger_hp.jpg?1460236845
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1/line3.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/line1.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1//colorbox/border1.png
/
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/main.js
/feed/22.rss
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.eot
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1/header-bg.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/banners/The_New_York_World.jpg
/system/photos/4557/default/panama_homepage.jpg?1459880343
/profile/90-kevin-coyne/10
/system/photos/13/default/Holloway.jpg?1274722088
/system/documents/703/original/Fink-Schudson-ContextualJournalism.pdf
/profile/66-james-stewart/10
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/main.js
/images/theme_images/mike1/favicon.ico
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/apply-button-bg.png
/event/1523?request=GetCapabilities&service=WMTS
/
/
/cs/ContentServer?pagename=JRN/Render/PrintThisPage&childpagename=Journalism/JRN_Page_C/JRNSimplePage&cid=1175295280344&c=JRN_Page_C
/
/
/javascripts/theme_scripts/mike1/jquery.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/line1.png
/
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/system/photos/4557/default/panama_homepage.jpg?1459880343
/feed/216.rss
/
/blog/robots.txt
/blog/
/wordpress/
/system/photos/1170/default/logo-Elusive-Peace-next.jpg?1289232817
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/2056/original/EBell_112811.jpg?1322508884
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/logo-footer.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/
/sites/search?query=Energy+environment+fellowship&go=Go
/page/1184-the-energy-and-environment-reporting-fellowship/8
/images/theme_images/mike1/line4.png
/system/photos/4430/default/dgrandoni.jpg?1444412472
/system/photos/4431/default/efeder.jpg?1444412482
/system/photos/4433/default/mhirsch.jpg?1444412504
/system/photos/4436/default/srust.jpg?1444412536
/system/photos/4432/default/kjennings.jpg?1444412494
/news/25
/system/documents/198/original/08_Summer.pdf
/page/1065-women-make-films-panel/634
/stylesheets/theme_stylesheets/mike1/flexslider.css
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/system/photos/4550/default/hearstspring2016.jpg?1459796440
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/icon-tags-small.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/page/628-tow-center-for-digitaljournalism
/system/photos/2646/default/Pulitzer_Icon.jpeg?1345138168
/system/photos/2644/default/Lukas_Icon.jpeg?1345138128
/system/photos/2645/default/Oakes_Icon.jpeg?1345138150
/system/photos/2640/default/Berger_Icon.jpeg?1345138050
/system/photos/4412/default/logotype_bluebox70x70.jpg
/ContinuingEducation
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/main.js
/cs/ContentServer/jrn/1175295263014/page/1175295262981/simplepage.htm
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/robots.txt
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/events/dupont/index.asp
/system/photos/4579/default/berger_hp.jpg?1460236845
/pools
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/404.html
/images/theme_images/mike1/line1.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/system/documents/610/original/Lukas_Overview.pdf
/images/theme_images/mike1//colorbox/border1.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/favicon.ico
/system/photos/4278/default/graduation_speakers.jpg?1430325991
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/line3.png
/system/photos/58/default/Outside_Scholarships.jpg?1275066765
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/
/system/documents/968/original/Balbi_John_2015.pdf
/system/documents/968/original/Balbi_John_2015.pdf
/robots.txt
/system/documents/968/original/Balbi_John_2015.pdf
/profile/37-howard-french/
/favicon.ico
/favicon.ico
/system/photos/3494/default/FINAL-Admissions-2.gif?1389479910
/images/theme_images/mike1/line4.png
/feed/195.rss
/page/171-berger-award/172
/page/1254-meet-the-2016-2017-knight-bagehot-fellows/1117
/system/photos/3256/original/deitsch_.jpg?1376325513
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/feed/1250.rss
/
/profile/428-mark-hansen/10
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/3545/original/hansen.jpg?1392670367
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/logo.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/apply-button-bg.png
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/3545/original/hansen.jpg?1392670367
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/favicon.ico
/images/theme_images/mike1//colorbox/border2.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/page/249-application-procedure-knight-bagehot-fellowship/250
/page/249-application-procedure-knight-bagehot-fellowship/250
/apple-touch-icon-precomposed.png
/profile/6-kate-grossman-97/3
/feed/137.rss
/feed/301.rss
/
/cs/ContentServer/jrn/1165270069757/JRN_Profile_C/1165270095819/JRNFacultyDetail.htm
/event/1523
/site_map
/
/stylesheets/theme_stylesheets/mike1/colorbox.css
/feed/72.rss
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/apply-button-bg.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/profile/331-joan-konner/
/images/theme_images/mike1/line4.png
/page/1098/4?utm_source=data&utm_medium=email&utm_campaign=sc
/page/1-about-the-school/1
/page/1097/4
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/javascripts/theme_scripts/mike1/underscore-min.js
/feed/301.rss
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border2.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/3740/default/currentstudents_univ.jpg?1407522881
/system/photos/3738/default/currentstudents_jschool.jpg?1407522722
/system/photos/3743/default/currentstudents_jschool.jpg?1407523259
/images/theme_images/mike1/icon-donate.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/page/85-master-of-science-degree/85
/
/javascripts/theme_scripts/jquery.masonry.js?1444072995
/system/photos/2938/default/TurnerCowlesSMALL.jpg?1361897553
/page/1216-overview/1076
"GET
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/2059/original/JCross_112811.jpg?1322510850
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/apply-button-bg.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1//colorbox/border2.png
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/page/275-dual-degree-programs/278
/page/169-the-2016-j-anthony-lukas-prize-project-awards-shortlist/9
/system/photos/3226/default/Jschool_red_01_.gif?1375368881
/system/photos/2990/original/Coronel_Sheila.gif?1365706240
/system/documents/841/original/may_2014.pdf
/page/473-alumni-awards-2011/152
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/icon-donate.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/logo-footer.png
/cs/ContentServer/jrn/1165270114892/page/1165270114875/JRNSimplePage2.htm
/news/464
/
/
/system/photos/4278/default/graduation_speakers.jpg?1430325991
/blog/wp-admin/
/page/417-carmen-aristegui-flores/9
/system/photos/4509/default/aw16header.jpg
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/profile/39-ari-goldman/10
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1//colorbox/border2.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/robots.txt
/stylesheets/theme_stylesheets/mike1/colorbox.css
/page/277-contacts/281
/publishing
/system/photos/2215/default/FB_Web_New_New.jpg?1326137407
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/2219/default/LinkedIn.jpg?1326139570
/system/photos/4358/default/bannercpc2.jpg?1438631256
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/jquery.js
/system/photos/4345/default/banner3_.jpg?1438357911
/system/photos/4343/default/banner1.jpg?1438357891
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1//colorbox/border1.png
/page/1224-tuition/1086
/system/documents/190/original/Berger_past_winners.pdf
/system/photos/3026/default/MS_Part-time.png?1366232446
/profile/43-marguerite-holloway/10
/dupont
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/system/photos/4455/default/cpcoxfordbg.jpg?1446058048
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/page/91-master-of-science-required-courses/91
/system/photos/3025/default/MS_Full_time.png?1366232436
/system/photos/4455/default/cpcoxfordbg.jpg?1446058048
/
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.ttf
/system/photos/4585/default/berger_hp.jpg?1460814085
/page/89-the-master-s-project/89
/system/photos/2884/default/Clarissa_Banner_Winter2013.jpg?1358199762
/studentwork/cns/2002-03-13/211.asp
/
/robots.txt
/feed/301.rss
/feed/301.rss
/profile/42-lynnell-hancock/10
/feed/301.rss
/
/page/14-events-calendar/14
/
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/
/profile/167-william-wheatley-jr/10?request=GetCapabilities&service=WMTS
/
/profile/304-emily-bell/10?request=GetCapabilities&service=WMTS
/profile/428-mark?request=GetCapabilities&service=WMTS
/profile/31-sheila-coronel/10?request=GetCapabilities&service=WMTS
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
"GET
/page/936-university-bill/
/event/1320/
/
/feed/301.rss
/feed/301.rss
/system/photos/3128/default/Jeff_Horwitz.jpg?1371663849
/page/203-doctor-of-philosophy-in-communications/204
/
/studentwork/801mag/images/jarule-lg.jpg
/
/page/277-contacts/10
/feed/13.rss
/page/1235/7
/page/1235/7
/cs/ContentServer/jrn/1175295266292/page/1175295266397/JRNLandingPage2.htm
/page/9-journalism-awards/9
/system/photos/2646/default/Pulitzer_Icon.jpeg?1345138168
/system/photos/2644/default/Lukas_Icon.jpeg?1345138128
/system/photos/2642/default/Chancellor_Icon.jpeg?1345138083
/system/photos/2647/default/Tobenkin_Icon.jpeg?1345138188
/system/photos/2640/default/Berger_Icon.jpeg?1345138050
/system/documents/703/original/Fink-Schudson-ContextualJournalism.pdf
/photo/2388/
/robots.txt
/feed/301.rss
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/system/photos/4585/default/berger_hp.jpg?1460814085
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/system/documents/272/original/CivicExperience.PDF
/page/441-2006-lukas-prize-release/188
/
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/underscore-min.js
/system/photos/923/default/Hervers.jpg?1281458690
/page/275-dual-degree-programs/278
/news/488
/page/516-2008-j-anthony-lukas-book-prize-finalist/188
/
/page/962/9
/robots.txt
/page/518-2008-mark-lynton-history-prize-finalist/188
/page/1020/7
/
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/logo-footer.png
/system/photos/4585/default/berger_hp.jpg?1460814085
/images/theme_images/mike1/logo.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/line1.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/page/986-ma-portal/930
/
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/system/photos/4585/default/berger_hp.jpg?1460814085
/images/theme_images/mike1/icon-donate.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/line1.png
/images/theme_images/mike1//colorbox/border2.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/page/7-our-programs/7
/system/photos/72/default/M.S._Program.jpg?1275416146
/system/photos/1888/default/colloqium_web_banner.jpg?1317849702
/system/photos/71/default/M.A._Program.jpg?1275416103
/images/theme_images/mike1/line4.png
/system/documents/1001/original/teachingdata16.pdf
/
/system/photos/4509/default/aw16header.jpg
/page/4-prospective-students/4
/images/theme_images/mike1/line4.png
/page/77-finance-your-education/77
/system/photos/2899/default/PhDFinancing_New.jpg?1359149593
/robots.txt
/page/939-cost-of-attendance-m-a/4
/feed/301.rss
/
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/4550/default/hearstspring2016.jpg?1459796440
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/icon-slider-nav1.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/favicon.ico
/page/260-professor-sam-freedman-on-new-york-city/83
/system/documents/255/original/Performance_Appraisal_Presentation_042110_282_29.ppt
/system/documents/255/original/Performance_Appraisal_Presentation_042110_282_29.ppt
/system/documents/255/original/Performance_Appraisal_Presentation_042110_282_29.ppt
/system/documents/255/original/Performance_Appraisal_Presentation_042110_282_29.ppt
/images/theme_images/mike1/arrow1.png
/system/documents/949/original/BA_Newsltr_April_2015.pdf
/system/photos/2990/default/Coronel_Sheila.gif?1365706241
/
/system/documents/703/original/Fink-Schudson-ContextualJournalism.pdf
/news/367
/news/1481
/old/wp-admin/
/
/
/page/1124-graduates-talk-about-their-j-school-experience/4
/javascripts/theme_scripts/swfobject.js?1366664152
/site_map
/images/theme_images/mike1/favicon.ico
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/stylesheets/theme_stylesheets/mike1/colorbox.css
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/apply-button-bg.png
/system/photos/4537/default/Elliott_Erwitt_USA_North_Carolina_1950.jpg?1458932725
/images/theme_images/mike1/line4.png
/page/940-cost-of-attendance-ph-d/4
/system/documents/599/original/May_ENews.pdf
/page/938-cost-of-attendance-m-s/4
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/icon-slider-nav1.png
/page/96-career-expo-2016/97
/
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/line4.png
/system/photos/3494/default/FINAL-Admissions-2.gif?1389479910
/images/theme_images/mike1/favicon.ico
/system/documents/611/original/116th_and_Bway_sprsum2012.pdf
/page/1231/8
/system/photos/4496/default/soto.jpg?1450118209
/system/documents/611/original/116th_and_Bway_sprsum2012.pdf
/event/1523
/page/840-alfred-i-dupont-columbia-awards/9
/system/photos/1888/default/colloqium_web_banner.jpg?1317849702
/system/photos/71/default/M.A._Program.jpg?1275416103
/system/photos/72/default/M.S._Program.jpg?1275416146
/system/documents/611/original/116th_and_Bway_sprsum2012.pdf
/page/1127-the-teacher-project/1104
/system/photos/4332/default/fellows_huseman.jpg?1436898559
/system/photos/4024/default/fellow_carr.jpg?1416939371
/system/photos/4025/default/fellow_collette.jpg?1416939384
/dupont/robots.txt
/system/photos/3727/default/ms_student.jpg?1406838491
/feed/301.rss
/studentwork/cns/2002-05-08/631.asp
/studentwork/cns/2002-07-07/276.asp
/studentwork/cns/2002-07-07/671.asp
/studentwork/cns/2003-04-27/182.asp
/studentwork/cns/2003-04-27/syndication/
/studentwork/cns/2003-05-23/269.asp
/studentwork/cns/2003-05-23/syndication/Burke-Pagan.txt
/studentwork/cns/2003-06-22/243.asp
/studentwork/cns/2003-06-22/340.asp
/studentwork/reutersjournal/ag/pg127.html
/page/171-mike-berger-award/172?printing=true?printing=true
/studentwork/nightlynews/2005/index.asp?course=nightlynews&issue=0
/studentwork/investigative/2001/intro.shtml
/studentwork/election/2004/minority_ali01.asp]http:0//www.americansagainsthate.org/Kerry_Drew_Disenchanted_Arabs.htm
/academics/faculty/wilentz.asp
/admissions/programs/courses/fall2005/
/page/932-cu-exclusive-internships/778
/cns/2002-02-22/224.asp
/events/dupont/press/winners_2007.asp
/events/schork/2003/ceremony.asp?image=8
/events/schork/winners/
/newmedia/masters/internet/Faces%20Behind%20WWW%20Art.html
/news/2002-07/
/studentwork/cns/2004-05-03/758.asp
/studentwork/bronxbeat/2001/051401/hernandez0514_01.shtml
/studentwork/children/2001/oped/hunt.asp
/studentwork/cityscape/2002/senior-murphy.asp
/studentwork/cns/2002-03-04/187.asp
/studentwork/cns/2002-03-04/93.asp
/studentwork/cns/2002-03-13/237.asp
/studentwork/cns/2002-04-03/358.asp
/studentwork/cns/2002-04-30/121.asp
/robots.txt
/
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/icon-slider-nav1.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/studentwork/cns/2002-05-08/621.asp
/studentwork/cns/2002-06-10/591.asp/
/studentwork/cns/2002-07-07/449.asp
/studentwork/cns/2004-03-15/syndication/spinelli-aphrodisiacpizza.txt
/studentwork/cns/2003-03-30/102.asptarget=
/studentwork/cns/2004-03-15/371.asp
/studentwork/cns/2003-04-27/245.asp
/studentwork/cns/2003-06-22/232.asp
/studentwork/cns/2003-06-22/319.asp
/studentwork/cns/2003-06-22/syndication/
/studentwork/reutersjournal/develop/pg64.html
/studentwork/radio/masters/1998/maestracci/maestracci.asp
/studentwork/nyrm/2001/features/Movies
/studentwork/newmedia/masters/internet/Olia%20Lialina.html
/academics/faculty/navasky.asp
/
/academics/programs/howard/
/alumni/reunions/agents/index.asp
/
/careers/resources/internships/brides.asp
/events//schork/
/events/cabot/2002/montas.asp
/studentwork/cns/2004%E2%80%9305%E2%80%9303/746.asp
/ContinuingEducation
/studentwork/cns/2004-05-03/766.asp
/studentwork/cns/2004-05-03/760.asp
/news/cabot_prize_release.asp
/studentwork/bronxbeat/2001/051401/navy0514_01.shtml
/studentwork/cns/2002-02-22/140.asp
/studentwork/cns/2002-03-04/117.asp
/studentwork/cns/2002-03-04/36.asp
/studentwork/cns/2002-03-04/syndication/
/
"GET
/
/feed/633.rss
/studentwork/cns/2004-04-05/689.asp
/system/photos/1956/default/6-Texas-3.jpg
/studentwork/cns/2002-04-30/455.asp
/studentwork/cns/2004-04-05/683.asp
/studentwork/cns/2002-04-30/537.asp
/studentwork/cns/2002-05-08/292.asp
/
/studentwork/cns/2002-03-20/286.asp
/studentwork/cns/2004-04-19/726.asp
/studentwork/cns/2002-04-03/263.asp
/studentwork/cns/2002-04-10/390.asp
/studentwork/cns/2002-04-30/137.asp
/studentwork/cns/2004-04-05/665.asp
/studentwork/cns/2002-05-08/256.asp
/feed/301.rss
/studentwork/cns/2002-05-08/550.asp
/studentwork/cns/2002-05-08/601.asp
/studentwork/cns/2002-05-08/syndication/cschreiber-sandwichman.txt
/event/1487/14
/studentwork/cns/2002-06-10/584.asp]
/studentwork/cns/2002-07-07/529.asp
/studentwork/cns/2002-07-07/syndication/jquigley-plussize.txt
/studentwork/cns/2003-04-27/51.asp
/studentwork/cns/2004-02-16/428.asp
/studentwork/cns/2003-06-22/145.asp
/studentwork/cns/2003-06-22/333.asp
/studentwork/cns/2003-06-22/339.asp
/studentwork/religion/2004/archives/000429.asp
/studentwork/radio/documentary/2002-05-08/
/studentwork/nyrm/index.html
/profile/53-dale-maharidge/10
/system/photos/2215/default/FB_Web_New_New.jpg?1326137407
/studentwork/nightlynews/2005/index_a.asp?course=nightlynews&issue=6
/studentwork/newmedia/masters/jazz/Traditions/Second%20Line/secondline.html
/studentwork/election2002/governor/mccall-hunter.asp
/studentwork/election/2004/immigrant_payne01.asp
/studentwork/deadline/2005/index.asp?course=deadline&issue=16
/admissions/extracurricular/
/
/studentwork/culture/
/events/dupont/winners%E2%82%82007.asp
/events/race/contactus.html
/events/schork/forms/2006_entryform-freelance.pdf
/faculty/nasar.asp
/studentwork/cns/2004-05-03/775.asp
/page/25-equipment-room/15
/prospective_students/pdfs/jbulletin07.pdf
/students/august/Week1.htm
/robots.txt
/
/robots.txt
/event/1415
/studentwork/bronxbeat/2001/051401/470514_01.shtml
/studentwork/children/2002/
/studentwork/cns/2002-02-22/15.asp
/studentwork/cns/2002-03-04/234.asp
/studentwork/cns/2002-04-03/398.asp
/studentwork/cns/2002-04-03/syndication/
/feed/301.rss
/studentwork/cns/2002-04-17/syndication/CCardoze-Unicycling.txt
/studentwork/cns/2002-04-30/311.asp
/studentwork/cns/2002-04-30/450.asp
/studentwork/cns/2002-04-30/507.asp
/studentwork/cns/2002-04-30/index.asp
/feed/182.rss
/studentwork/cns/2002-05-08/435.asp
/studentwork/cns/2002-06-10/551.asp
/studentwork/cns/2004-04-05/599.asp
/studentwork/cns/2002-07-07/627.asp
/studentwork/cns/2002-07-07/706.asp
/studentwork/cns/2003-02-28/57.asp
/studentwork/cns/2004-03-15/594.asp
/studentwork/cns/2004-02-16/syndication/tschweiger-oldgames.txt
/studentwork/cns/2003-04-27/212.asp
/studentwork/cns/2003-04-27/65.asp
/studentwork/cns/2003-06-22/247.asp
/studentwork/cns/2003-06-22/332.asp
/studentwork/youthmatters/2005/story.asp?course=youthmatters&id=414
/event/1523
/studentwork/terror/sep11/pettigrew.asp?printerfriendly=yes
/studentwork/reutersjournal/capmarts/pg27.html
/system/photos/3128/default/Jeff_Horwitz.jpg?1371663849
/profile/34-john-dinges/10
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/line3.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/favicon.ico
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/studentwork/nyrm/bland_bob.html
/studentwork/nyrm/Well/3rdfloor.htm
/studentwork/newmedia/masters/faces/history/indexf.html
/studentwork/misc/psychic.asp
/studentwork/election/2004/voting_roman01.asp
/studentwork/election/2004/catholic_vote.asp
/studentwork/election/2001/vallone.asp?printerfriendly=yes
/IO/graggy.html
/academics/studentwork/cns/2002-06-10/591.asp
/academics/studentwork/race/2002/korea-ryan.shtml
/studentwork/culture/harrisonhaiti.asp
/studentwork/cns/2004-05-03/772.asp
/studentwork/cns/2004-05-03/769.asp
/search/index.asp?searchstring=alexandra+polier
/studentwork/bronxbeat/051401/truancy0514_01.shtml
/favicon.ico
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/system/photos/4579/default/berger_hp.jpg?1460236845
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/line3.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/robots.txt
/system/documents/997/original/CPC2016_Oxford.pdf
/system/photos/4585/default/berger_hp.jpg?1460814085
/images/theme_images/mike1/favicon.ico
/page/4-prospective-students/4
/images/theme_images/mike1/line4.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/studentwork/cns/2004-05-03/750.asp
/studentwork/bronxbeat/2001/040901/delivery0409_01.html
/studentwork/cns/2002-02-22/181.asp),%E5%BE%9E%E5%93%A5%E5%80%AB%E6%AF%94%E4%BA%9E%E6%9C%8D%E5%8B%99%E5%A0%B1%E7%B4%99%E4%B8%AD%E4%B8%80%E5%80%8B%E9%97%9C%E6%96%BC%E6%91%A9%E7%88%BE%E9%96%80(%E5%BE%8C%E6%9C%9F%E8%81%96%E5%BE%92)%E5%82%B3%E6%95%99%E5%A3%AB%E5%9C%A8%E7%B4%90%E7%B4%84%E5%9F%8E%E5%B8%82%E5%82%B3%E6%95%99%E7%9A%84%E6%95%85%E4%BA%8B
/studentwork/cns/2002-04-03/113.asp
/studentwork/cns/2002-04-03/169.asp
/studentwork/cns/2004-04-05/syndication/
/studentwork/cns/2002-04-30/278.asp
/studentwork/cns/2004-04-05/687.asp
/studentwork/cns/2002-04-30/570.asp
/studentwork/cns/2002-05-08/428.asp
/system/photos/1512/default/AHaburchak.gif?1365716878
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/event/1255
/favicon.ico
/system/photos/2899/default/PhDFinancing_New.jpg?1359149593
/favicon.ico
/page/785-mike-berger-award-how-to-enter/592
/page/938-cost-of-attendance-m-s/4
/
/event/862/14
/page/61-career-services-events/61
/wordpress/wp-admin/
/page/939-cost-of-attendance-m-a/4
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/system/photos/3422/default/elizabeth-spayd.jpg?1385042507
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/page/940-cost-of-attendance-ph-d/4
/page/211-international-journalism-programs/212
/system/photos/191/default/International_Gates.jpg?1276270291
/feed/301.rss
/feed/1109.rss
/images/theme_images/mike1/line4.png
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/system/photos/1885/default/colloqium.jpg?1317847264
/page/212-dual-degree-sciences-po-paris/213
/cabot/wp-content/uploads/2013/10/Por-Que-Nos-Odian-Tanto.pdf
/event/1143/
/event/1370
/page/32-computer-faq/15
/
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/studentwork/cns/2002-03-20/286.asp
/system/documents/201/original/09-0622_Journ_v1_LR.pdf&sa=U&ved=0ahUKEwjq1Jj21JXMAhVD8RQKHSiYAII4yAEQFgjHBDBj&usg=AFQjCNEoUco0fLAf5i6Rspe7yVjgrd7cIg
/
/news/844
/feed/301.rss
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/main.js
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/event/1212/-1/14
/system/documents/672/original/winter_pub.pdf
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4511/default/wayne_aw16.jpg
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/feed/925.rss
/system/photos/3799/default/boston.jpeg?1409862426
/apple-touch-icon-precomposed.png
/page/7-our-programs/7
/apple-touch-icon.png
/page/275-dual-degree-programs/278
/publishing
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/2215/default/FB_Web_New_New.jpg?1326137407
/system/photos/4358/default/bannercpc2.jpg?1438631256
/system/photos/4343/default/banner1.jpg?1438357891
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/icon-donate.png
/system/photos/2216/default/Twitter_Web.jpg?1326137680
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border1.png
/
/images/theme_images/mike1/favicon.ico
/
/news/2002-09/taskforce.asp
/
/page/233-course-description/234
/robots.txt
/page/451-2000-lukas-prize-winners/188
/system/documents/576/original/Robber_Barons.pdf
/feed/301.rss
/system/photos/4349/default/cpcfaq.jpg?1438358725
/system/documents/910/original/2015grad_guide_register.pdf
/photo/1974/14
/system/photos/2299/default/Malveaux_Approved_1.jpg?1329169858
/news/778
/
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/blog/wp-admin/
/page/453-1999-lukas-prize-winners/188
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/system/photos/4557/default/panama_homepage.jpg?1459880343
/page/1155-student-project-gets-published-on-salon/748
/images/theme_images/mike1/favicon.ico
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/style.css
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/icon-donate.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/profile/396-amanda-hickman/164
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1//colorbox/border2.png
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/page/454-1999-lukas-press-release/188
/page/199-master-of-arts-in-journalism/200
/cs/ContentServer/jrn/1165270092535/page/1165270092455/simplepage.htm
/page/448-2002-lukas-prize-winners/188
/page/840-alfred-i-dupont-columbia-award/632
/page/440-2006-lukas-prize-winners/188
/page/447-2003-lukas-prize-winners/188
/page/438-2008-lukas-prize-winners/188
/page/207-ph-d-program-faculty/208
/
/page/627-photographers-credits/58?printing=true
/system/photos/542/default/Flores_LG.jpg?1278690514
/
/
/page/85-master-of-science-degree/85
/feed/301.rss
/page/1253-columbia-journalism-partners-on-panama-papers/748
/cs/ContentServer/jrn/1212609887025/page/1212609886988/JRNSimplePage2.htm
/feed/301.rss
/stylesheets/theme_stylesheets/mike1/colorbox.css
/system/documents/932/original/845472.pdf
/stylesheets/theme_stylesheets/mike1/flexslider.css
/site_map
/page/87-master-of-science-part-time-program/87
/system/photos/3026/default/MS_Part-time.png?1366232446
/system/documents/985/original/2014-2015_Annual_Report_FINAL.pdf
/page/203-doctor-of-philosophy-in-communications/204
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/icon-donate.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/line3.png
/images/theme_images/mike1//colorbox/border1.png
/page/1183/17
/robots.txt
/profile/357-richard-deitsch/
/stylesheets/theme_stylesheets/templatestyle.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/interior.js?1444072995
/javascripts/theme_scripts/media_assist.js?1444072995
/profile/122-rich-schapiro/10%3Ftags=HISTORY+OF+COMMUNICATIONS
/cabot
/system/documents/198/original/08_Summer.pdf
/page/517-2008-mark-lynton-history-prize-winner/188
/page/29-tech-discounts/29
/page/100-interviewing-tips/101
/stylesheets/theme_stylesheets/mike1/flexslider.css
/profile/307-rob-bennett/10?tags=HISTORY%20OF%20COMMUNICATIONS
/
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/profile/32-june-cross/104
/system/photos/4585/default/berger_hp.jpg?1460814085
/page/816-ph-d-program-funding-policies/626
/event/1523
/system/photos/4585/original/berger_hp.jpg?1460814084
/system/photos/101/default/RJohn.jpg?1291236478
/page/438-2008-lukas-prize-winners/188
/page/809-graduation/618
/news/699
/page/1224-tuition/1086
/page/8-training-programs/8
/photo/2100/151
/ContinuingEducation
/xmlrpc.php
/page/205-ph-d-financial-aid-housing/206
/system/photos/4524/default/navasky.jpg?1457708677
/page/87-m-s-part-time-program/87
/page/10/10?tags=INVESTIGATIVE+REPORTING
/news/366
/page/1175-m-a-thesis-published-in-the-new-yorker/748
/page/4-admissions/4
/apple-touch-icon-precomposed.png
/page/1058-the-lede-program-an-introduction-to-data-practices/906
/profile/337-constance-mitchell-ford/
/system/photos/4405/default/oakes2015snowroutetop.jpg?1441149874
/news/773
/wp/wp-admin/
/system/documents/583/original/fw4.pdf
/feed/301.rss
/page/988-m-a-outside-courses/980
/
/page/932-cu-exclusive-internships/778?ticketid=VspV7fP5xWWxLxWF3ZZCvVlnZvJMHCfgzz9wYmh
/students/
/robots.txt
/profile/66-james
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/system/documents/888/original/istss_pubadvocacyaward.pdf
/utility/convert/index.php?a=config&source=d7.2_x2.0
/bbs/utility/convert/index.php?a=config&source=d7.2_x2.0
/system/photos/2218/default/blogtalkradiobutton.jpg?1326139152
/page/790/633
/news/469
/robots.txt
/robots.txt
/system/documents/785/original/75881_JSchool_Educating_Journalists-WEB.PDF
/news/448
/system/photos/4137/default/Iralba_1.jpg?1424104667
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/line4.png
/profile/37-howard-french/
/system/photos/2540/original/columbiatv2.jpg
/system/photos/147/original/AnnCooper2.jpg?1276009818
/page/514-2008-winner-press-release/188
/feed/301.rss
/feed/216.rss
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/system/photos/4550/default/hearstspring2016.jpg?1459796440
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-footer.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/icon-slider-nav1.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/
/system/photos/4579/default/berger_hp.jpg?1460236845
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4585/default/berger_hp.jpg?1460814085
/robots.txt
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-tags-small.png
/news/1515
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/apply-button-bg.png
/javascripts/theme_scripts/mike1/jquery.js
/images/theme_images/mike1/logo-horizontal-2.png
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-footer.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/line1.png
/page/1127/8/
/feed/301.rss
/
/
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1/banners/The_New_York_World.jpg
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/icon-slider-nav1.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/images/theme_images/mike1/line3.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1//colorbox/border1.png
/system/photos/4585/default/berger_hp.jpg?1460814085
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/icon-tags-small.png
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.js
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/system/photos/4557/default/panama_homepage.jpg?1459880343
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/favicon.ico
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/news/721
/page/522-2008-j-anthony-lukas-work-in-progress-award-finalist/188
/
/feed/301.rss
/studentwork/cns/2002-03-13/116.asp
/
/
/robots.txt
/feed/899.rss
/system/photos/2325/default/Laura_Keller_Web.jpg?1330440845
/news/624
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/system/photos/4157/default/eve_2.jpg
/system/photos/2652/default/JCrist_Web.jpg?1345147327
/system/photos/2653/default/JKonner_Web.jpg?1345147340
/news/218
/profile/236-bruce-shapiro/10
/
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/profile/41-david-hajdu/10/feed
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/line3.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/system/photos/4585/default/berger_hp.jpg?1460814085
/profile/113-lisa-r-cohen/
"GET
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4353/default/cpcdmd.jpg?1438358772
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/line4.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border1.png
/page/4-prospective-students/4
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/arrow1.png
/system/photos/18/original/Smith.jpg?1274727462
/system/photos/2057/original/HBenedict_112811.jpg?1322509591
/old/wp-admin/
/dupont
/page/1162/9
/system/photos/147/default/AnnCooper2.jpg?1276009818
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/system/photos/4511/default/wayne_aw16.jpg
/system/photos/4509/default/aw16header.jpg
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/
/
/page/4-prospective-students/4
/images/theme_images/mike1/favicon.ico
/apple-touch-icon-precomposed.png
/page/74-m-a-required-application-materials/74
/page/74-m-a-required-application-materials/74
/apple-touch-icon.png
/
/page/1025-advice-for-students-from-alumni/848
/robots.txt
/
/system/documents/694/original/jschool_MA-singles.pdf
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/line3.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/images/theme_images/mike1/logo-footer.png
/system/photos/4550/default/hearstspring2016.jpg?1459796440
/system/photos/4579/default/berger_hp.jpg?1460236845
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/
/feed/301.rss
/
/page/301-news/12?printing=true
/system/photos/126/original/Richard_Wald2.jpg?1275665983
/page/14-events-calendar/14
/page/11-current-students/11
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/system/photos/3462/default/This_American_Life.JPG?1387295911
/javascripts/theme_scripts/mike1/underscore-min.js
/cs/ContentServer/jrn/1165270052298/JRN_News_C/1212612468059/JRNNewsDetail.htm
/site_map
/system/photos/3718/original/Giannina_Segnini.jpg?1406325331
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.js
/page/628
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/images/theme_images/mike1/header-bg.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/banners/The_New_York_World.jpg
/system/photos/4557/default/panama_homepage.jpg?1459880343
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/page/12-alumni-and-friends/12
/system/photos/4509/default/aw16header.jpg
/images/theme_images/mike1/line4.png
/page/218-digital-media-training/219
"GET
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/line3.png
/feed/301.rss
/
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/robots.txt
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/logo-footer.png
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/robots.txt
/stylesheets/theme_stylesheets/mike1/colorbox.css
/feed/13.rss
/
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/feed/301.rss
/event/903?class=more
/page/168-john-chancellor-award/169
/images/theme_images/mike1//colorbox/border1.png
"GET
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1//colorbox/border2.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/feed/301.rss
/system/documents/410/original/BA_Newsltr_Feb_2011_nu.pdf
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/system/photos/53/default/Ph.D_App_Main.jpg?1275056737
/system/photos/53/default/Ph.D_App_Main.jpg?1275056737
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/apply-button-bg.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border2.png
/feed/301.rss
/feed/301.rss
/page/4-admissions/4
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/header-bg.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/logo-footer.png
/page/144-alumni-update-contact-info/145
/page/96-career-expo-2016/97?request=GetCapabilities&service=WMTS
/page/705-social-media-tools/527
/robots.txt
/page/1219-exeter-college/1079
/dupont
/
/feed/982.rss
/event/1520
/event/1126/14
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4585/default/berger_hp.jpg?1460814085
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/page/13-career-development/13
/system/photos/4231/default/slide6.JPG?1428438755
/system/photos/4230/default/slide5.JPG?1428438492
/system/photos/4227/default/slide2.JPG?1428438368
/page/162-student-work-online/163
/images/theme_images/mike1/arrow1.png
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/cs/ContentServer/jrn/1165270069757/JRN_Profile_C/1212610450914/JRNFacultyDetail.htm
/
/page/967-for-alumni/773
/page/1058-the-lede-program-an-introduction-to-data-practices/906
/event/1523
/
/dupont
/apple-touch-icon.png
/apple-touch-icon-precomposed.png
/page/1216-the-book-program-u-k/1076
/system/documents/885/original/oct2014.pdf
/feed/245.rss
/page/162-student-work/748
/system/photos/4111/default/Boardman_Headshot_Small.jpg?1422559456
/news/609
/page/728/551
/robots.txt
/feed/167.rss
/dupont
/favicon.ico
/
/system/photos/4585/default/berger_hp.jpg?1460814085
/page/106-resumes/107
/
/
/page/14-events-calendar/14
"GET
/feed/4.rss
/page/109-work-sheet-how-much-do-i-need-to-make/678
/feed/301.rss
/profile/333-melvin-mencher/
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/logo.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border2.png
/cs/ContentServer/jrn/1165270052298/JRN_News_C/1212612334458/JRNNewsDetail.htm
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/site_map
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/line4.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/studentwork/nightlynews/
/feed/301.rss
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1//colorbox/border2.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/page/199-master-of-arts-in-journalism/200
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/line4.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/page/617/399
/system/photos/4024/default/fellow_carr.jpg?1416939371
/system/photos/4332/default/fellows_huseman.jpg?1436898559
/system/photos/4027/default/fellow_neason.jpg?1416939407
/system/photos/4257/default/ttp_green_page.jpg
/images/theme_images/mike1/logo-horizontal-2.png
/home
/event/1523
/system/documents/653/original/CPC2013_Brochure_web2.pdf
/feed/301.rss
/page/7-our-programs/7
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/71/default/M.A._Program.jpg?1275416103
/system/photos/72/default/M.S._Program.jpg?1275416146
/system/photos/68/default/International.jpg?1275411342
/images/theme_images/mike1/icon-donate.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/apply-button-bg.png
/page/802-tobenkin-award-past-winners/613
/
/
/profile/485-steve-coll/10
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/321/default/CPC_Alum_Lucas.jpg?1277391015
/system/photos/319/default/CPC_Alum_Claire.jpg?1277390274
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-footer.png
/calendar/
/images/theme_images/mike1//colorbox/border2.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/favicon.ico
/
/page/938-cost-of-attendance-m-s/4
/
"HEAD
/page/1135/9
/page/840-alfred-i-dupont-columbia-awards/632
/page/1135-2015-dupont-award-winners/986
/page/170-john-b-oakes-awards/171
/profile/533-justin-elliott/
/page/164-pulitzer-prizes/165
/feed/750.rss
/page/951-documentary-screenings-discussions/634
/site_map
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/logo.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/apply-button-bg.png
/page/1081-the-poliak-center/938
/images/theme_images/doyle-georgia2/NewLogo.png
/robots.txt
/page/62-contact-us/828
/profile/434-ahmed-shihab-eldin/10
/system/photos/3004/original/Solomon_-Alisa.gif?1365706610
/page/430-press-room/2
/page/236-frequently-asked-questions/237
/page/275-dual-degree-programs/278
/profile/41-david-hajdu/10
/system/photos/2992/original/Hajdu_David.gif?1365706269
/page/965-for-students/769
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/page/680-event-requests/489
/system/photos/4390/default/ma_tab.jpg
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/icon-tags-small.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/page/1-about-the-school/1
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1//colorbox/border1.png
/system/photos/4585/default/berger_hp.jpg?1460814085
/page/1184/8/
/system/photos/4431/default/efeder.jpg?1444412482
/system/photos/4433/default/mhirsch.jpg?1444412504
/system/photos/4435/default/sjerving.jpg?1444412526
/system/photos/4429/default/aliberman.jpg?1444412458
/system/photos/4436/default/srust.jpg?1444412536
/page/4-prospective-students/4
/page/790-dupont-columbia-awards-about/633
/ContinuingEducation
/system/photos/4224/default/grey_gardens_smaller_.jpg?1428413336
/page/173-dart-awards/174
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/site_map
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/icon-donate.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1//colorbox/border1.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/publishing
/images/theme_images/mike1/favicon.ico
/page/55-jobnews-career-management-center/55
/pools
/page/4-prospective-students/4
/feed/725.rss
/page/693-hearst-digital-media-lecture/712
/feed/277.rss
/
/page/1050-general-policy-on-conduct-and-discipline/925
/page/759-dual-degree-students/737
/system/photos/3727/default/ms_student.jpg?1406838491
/profile/75-jonathan
/feed/301.rss
/page/1236-contact-us/1096
/system/documents/1001/original/teachingdata16.pdf
/page/15-administrative-affairs/15
/sites/search?query=crack+crisis&go=Go
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/header-bg.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/logo.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1//colorbox/border2.png
/page/15-administrative-affairs/
/system/photos/2790/default/SikkaM.jpeg?1354225708
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/apply
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/feed/301.rss
/page/1192-the-lorana-sullivan-lecture-series/1045
/system/documents/1001/original/teachingdata16.pdf
/stylesheets/theme_stylesheets/mike1/style.css
/system/photos/2961/default/ABedrick.jpg?1364245121
/system/photos/4137/default/Iralba_1.jpg?1424104667
/system/photos/4045/default/Jane.jpg?1418075413
/system/photos/4138/default/Maria_2.jpg?1424104676
/system/photos/4046/default/me_columbia2.jpg?1431187366
/images/theme_images/mike1/logo-footer.png
/page/467-cross-registration-spring-2016/934
/page/739-journalism-school-centennial/595
/page/1178-punch-sulzberger-program/1112
/page/1215-columbia-publishing-course-at-oxford/1075
/event/1523
/page/211-international-journalism-programs/212
/profile/501/10
/robots.txt
/system/documents/1001/original/teachingdata16.pdf
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/page/824-news-and-events/634
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/icon-tags-small.png
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/3494/default/FINAL-Admissions-2.gif?1389479910
/images/theme_images/mike1/favicon.ico
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/icon-donate.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1/line4.png
/feed/22.rss
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4579/default/berger_hp.jpg?1460236845
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/icon-donate.png
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/page/1147-equal-opportunity-and-affirmative-action-notice-of-non-discrimination/994
/system/photos/3494/default/FINAL-Admissions-2.gif?1389479910
/images/theme_images/mike1/arrow1.png
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/favicon.ico
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/apply-button-bg.png
/page/412-dupont-columbia-winners-archive/1094
/images/theme_images/mike1/arrow1.png
/page/214-spencer-education-fellowship/8
/page/70-columbia-journalism-award/899
/page/155-newly-admitted-students/493
/robots.txt
/page/5-history-of-the-journalism-school/5
/system/documents/458/original/John--Innovation.pdf
/page/1016-spring-2016-m-a-schedule/1046
/javascripts/theme_scripts/mike1/underscore-min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/more_scholarships
/page/96-career-expo-2016/97
/
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/stylesheets/theme_stylesheets/mike1/style.css
/page/14-events-calendar/14
/feed/4.rss
/system/photos/2990/original/Coronel_Sheila.gif
/page/988-m-a-outside-courses/980
/
/page/162-student-work/748
/
/feed/301.rss
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/apply-button-bg.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/icon-slider-nav1.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/banners/Columbia_Journalism_Review.jpg
/images/theme_images/mike1/favicon.ico
/page/1027-student-life/855
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/system/photos/2646/default/Pulitzer_Icon.jpeg?1345138168
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/2641/default/Cabot_Icon.jpeg?1345138067
/images/theme_images/mike1/header-bg.png
/system/photos/2642/default/Chancellor_Icon.jpeg?1345138083
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/arrow1.png
/system/photos/2645/default/Oakes_Icon.jpeg?1345138150
/system/photos/2647/default/Tobenkin_Icon.jpeg?1345138188
/images/theme_images/mike1//colorbox/border1.png
/page/11-current-students/11
/system/photos/3737/default/currentstudents_academic.jpg?1407522692
/system/photos/3755/default/currentstudents_dos.jpg?1407864729
/system/photos/3743/default/currentstudents_jschool.jpg?1407523259
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/favicon.ico
/page/1147-equal-opportunity-and-affirmative-action-notice-of-non-discrimination/996
/stylesheets/theme_stylesheets/mike1/colorbox.css
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/279/default/Computer_Science_Slide_1.jpg?1276788721
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/apply-button-bg.png
/profile/63-michael-shapiro/10
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/clndr.min.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/line3.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/favicon.ico
/page/16-the-annual-fund/16
/system/photos/70/default/Knight-Bagehot.jpg?1275411514
/page/1140/9
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/line1.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/images/theme_images/mike1/apply-button-bg.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/system/photos/4579/default/berger_hp.jpg?1460236845
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1//colorbox/border1.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/stylesheets/theme_stylesheets/jenstyle.css
/stylesheets/theme_stylesheets/templatestyle.css
/javascripts/theme_scripts/chili-1.7.pack.js?1366664152
/page/4-prospective-students/4
/images/theme_images/mike1/line4.png
/javascripts/theme_scripts/interior.js?1366664152
/page/678-the-george-t-delacorte-center/753
/javascripts/theme_scripts/media_assist.js?1366664152
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/system/photos/4579/default/berger_hp.jpg?1460236845
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/page/467-cross-registration-spring-2016/934
/images/theme_images/mike1/icon-slider-nav1.png
/system/photos/4550/default/hearstspring2016.jpg?1459796440
/images/theme_images/mike1/icon-tags-small.png
/robots.txt
/page/1059-the-lede-program-application/907
/page/1255-about-the-berger-award/1118
/page/15-administrative-affairs/15
/page/809-graduation/618
/system/photos/3564/default/alumni-weekend-2014-slideshow.jpg
/system/photos/2897/default/MAFinancing.jpg?1359149566
/page/162-student-work/748
/page/17-technology/17
/page/430-press-room/2
/page/967-for-alumni/773
/feed/301.rss
/page/980-j-school-facts/794
/system/photos/4230/default/slide5.JPG?1428438492
/system/photos/4232/default/slide7.JPG?1428438590
/system/photos/4228/default/slide3.JPG?1428438396
/page/9-journalism-awards/9
/system/photos/2641/default/Cabot_Icon.jpeg?1345138067
/system/photos/2642/default/Chancellor_Icon.jpeg?1345138083
/system/photos/2644/default/Lukas_Icon.jpeg?1345138128
/system/photos/2640/default/Berger_Icon.jpeg?1345138050
/system/photos/2648/default/Dart_Icon.jpeg?1345138383
/news/1512
/system/photos/4229/default/slide4.JPG?1428438454
/page/1058-the-lede-program-an-introduction-to-data-practices/906
/system/photos/4555/default/papers_article.jpg?1459880164
/page/247-knight-bagehot-fellowship/248
/page/1048-3rd-semester-documentary-program/11
/studentwork/misc/amnesia.asp
/apple-touch-icon-precomposed.png
/apple-touch-icon.png
/studentwork/misc/amnesia.asp
/page/1058-the-lede-program-an-introduction-to-data-practices/906
/system/photos/1420/default/Lindsay.jpg?1294680106
/page/11-current-students/11
/more_scholarships
/page/4-prospective-students/4
/page/937-m-s-financing-options/4
/page/1070-j-school-live/920
/images/theme_images/mike1/line3.png
/page/169-2016-j-anthony-lukas-prize-project-awards/170
/page/87-m-s-part-time-program/87
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/3026/default/MS_Part-time.png?1366232446
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/favicon.ico
/system/photos/4579/default/berger_hp.jpg?1460236845
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/page/170-oakes-award/171
/news/389
/profile/440-heather-cabot/10
/page/199-master-of-arts-in-journalism/200
/event/1352/-1/14
/
/page/171-berger-award/172
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/underscore-min.js
/system/photos/477/default/Dart_Banner.jpg?1278532751
/system/photos/4575/default/berger_winners.jpg?1460233154
/page/628-tow-center-for-digital-journalism/853
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/icon-slider-nav1.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/
/page/71-henry-pringle-lecture/900
/robots.txt
"GET
/ContinuingEducation
/
/page/171-berger-award/172
/feed/53.rss
/
/publishing
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/underscore-min.js
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/system/photos/2219/default/LinkedIn.jpg?1326139570
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4345/default/banner3_.jpg?1438357911
/images/theme_images/mike1/logo-footer.png
/system/photos/4358/default/bannercpc2.jpg?1438631256
/images/theme_images/mike1//colorbox/border1.png
/page/53-past-events/14
/page/9-journalism-awards/9
/page/80-educational-financing-planner/80
/
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/icon-tags-small.png
/system/photos/4585/default/berger_hp.jpg?1460814085
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/images/theme_images/mike1/social_icons/soc_lt_gplus.png
/system/photos/4579/default/berger_hp.jpg?1460236845
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
"GET
/page/183-chancellor-award-nominations/184
/
/system/photos/2646/default/Pulitzer_Icon.jpeg?1345138168
/system/photos/2641/default/Cabot_Icon.jpeg?1345138067
/system/photos/2642/default/Chancellor_Icon.jpeg?1345138083
/system/photos/2645/default/Oakes_Icon.jpeg?1345138150
/system/photos/2647/default/Tobenkin_Icon.jpeg?1345138188
/page/10-full-time-visiting-and-special-faculty/10
/page/10-full-time-adjunct-visiting-faculty/10
/
/faculty
/images/theme_images/mike1/arrow1.png
/news/744
/system/photos/4455/default/cpcoxfordbg.jpg?1446058048
/page/1031/7
/page/249-application-procedure-knight-bagehot-fellowship/250
/page/8-training-programs/8
/system/documents/295/original/Cabot_2010_Spanish.pdf
/profile/387-dolores-barclay/
/apple-touch-icon-precomposed.png
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/apple-touch-icon.png
/page/845-professional-fellowships/640
/page/447-2003-lukas-prize-winners/188
/page/56-career-expo-recruiter-list/56
/page/168-john-chancellor-award/169
/page/1016/1046
/page/172-tobenkin-award/173
/event/1368
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/page/13-career-development/13
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/4230/default/slide5.JPG?1428438492
/system/photos/4227/default/slide2.JPG?1428438368
/system/photos/4228/default/slide3.JPG?1428438396
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/fonts/theme_fonts/mike1/newsgothicmt-webfont.woff
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/logo.png
/page/70-columbia-journalism-award/897
/images/theme_images/mike1/social_icons/soc_lt_yt.png
/page/55-jobnews-career-management-center/55
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1//colorbox/border2.png
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/icon-slider-nav1.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/page/1122/748
/page/985-important-student-dates/871
/page/215-dart-center/
/system/photos/4585/default/berger_hp.jpg?1460814085
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/page/167-cabot-prizes/168
/studentwork/bronxbeat/2001/021201/diallo021201_01.html
/images/theme_images/mike1/icon-slider-nav1.png
/page/3-profiles-in-journalism-2012/3
/news/484
/profile/315-alan-haburchak/
/
/
/page/728-dupont-awards-how-to-enter/551
/feed/22.rss
/page/1170-the-dupont-talks-clarissa-ward/1020
/system/photos/2457/original/_MG_6306.jpg
/feed/301.rss
/page/203-doctor-of-philosophy-in-communications/204
/page/933-brown-institute/929
/feed/301.rss
/page/85-master-of-science-degree/85
/page/57-for-employers/57
/studentwork/radio/261/2003-05-09/5681.asp
/apple-touch-icon-precomposed.png
/apple-touch-icon.png
/studentwork/radio/261/2003-05-09/5681.asp
/apple-touch-icon.png
/stylesheets/theme_stylesheets/mike1/flexslider.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.ui.tumblr.rss.js
/page/966-calendars-and-events/772
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/underscore-min.js
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/header-bg.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1//colorbox/border1.png
/images/theme_images/mike1//colorbox/border2.png
/page/60-job-hunting-resources/60
/page/66-job-hunting-links/66
/robots.txt
/page/1135-2015-dupont-award-winners/986
/page/114-how-to-get-a-job/115
/page/1234/8
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/page/1170-the-dupont-talks-clarissa-ward/9
/images/theme_images/mike1/arrow1.png
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/page/1175-m-a-thesis-published-in-the-new-yorker/748
/system/documents/254/original/Vacation_Personal_Leave_Request_Form.pdf
/page/1187-peer-advisers/11
/page/746/566
/page/780/7
/page/1219-exeter-college/1079
/page/1178-punch-sulzberger-program/1115
/page/316-donald-e-graham-knight-bahehot-anniversary-dinner/318
/page/206-ph-d-regulations-and-policies/207
/page/1239-where-to-ship-materials/1098
/page/1248-student-reporting-trip-to-italy-2016/748
/system/documents/785/original/75881_JSchool_Educating_Journalists-PPG_V2-16.pdf
/favicon.ico
/feed/1027.rss
/page/216-columbia-publishing-course/217
/system/documents/785/original/75881_JSchool_Educating_Journalists-PPG_V2-16.pdf
/system/documents/248/original/CUJSC_booklet.pdf
/system/documents/131/original/2009_Lukas_press_release.pdf
/system/documents/584/original/it2104e_fill_in.pdf
/system/documents/585/original/it2104_fill_in.pdf
/system/documents/652/original/WERT_Prog_Sum_9-20-12.pdf
/page/155-new-students/488
/system/documents/865/original/cabot_2014_winners_release.pdf
/profile/84-tom-herman/
/page/903-python-ide-installation-setup/697
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/page/970-contact-us/779
/profile/58-mirta-ojito/164
/profile/569-whitney-richardson/10
/javascripts/theme_scripts/mike1/main.js
/page/18-technology-guide/672
/page/13-career-development/13
/profile/514-matthew-l-jones/10
/page/167-cabot-prizes/9
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/system/documents/903/original/jas_program.pdf
/news/290
/javascripts/theme_scripts/mike1/moment.min.js
/favicon.ico
/profile/32-june-cross/10
/page/562-find-a-procedure/397
/page/663-terri-thompson/467
/page/693-hearst-digital-media-lecture/712
/page/247-knight-bagehot-fellowship/248
/page/1178-punch-sulzberger-program/1115
/page/733/9-program-descriptions-of-2010-dupont-columbia-award-winners/165
/page/1217-book-workshop/1077
/page/1093-upcoming-films/949
/page/775-about-john-w-kluge-37cc/466
/page/790-dupont-columbia-awards-about/633
/page/1225-grade-policy/11
/page/301/2
/page/810/633
/page/842-pitching-long-form-digital/637
/page/136-networking-links/137
/
/stylesheets/theme_stylesheets/mike1/style.css
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/system/photos/4584/default/towcenter_report2016.jpg?1460661625
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/icon-tags-small.png
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1//colorbox/border1.png
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/4558/default/careerexpo2016.jpg?1460148883
"GET
"GET
"GET
"GET
"GET
"GET
"GET
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/page/4-prospective-students/4
/images/theme_images/mike1/line4.png
/
"GET
"GET
"GET
/page/239-magazine-digital-media-program-2013/240
"GET
/system/photos/2899/default/PhDFinancing_New.jpg?1359149593
/system/photos/2898/default/MSFinancing_.jpg?1359149579
/page/1127-the-teacher-project/1104
/images/theme_images/mike1/icon-donate.png
/page/164-pulitzer-prizes/165
/images/theme_images/mike1/header-bg.png
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/main.js
/javascripts/theme_scripts/mike1/moment.min.js
/images/theme_images/mike1/favicon.ico
/images/theme_images/mike1/logo-horizontal-2.png
/images/theme_images/mike1/header-bg.png
/images/theme_images/mike1/logo.png
/images/theme_images/mike1/icon-donate.png
/images/theme_images/mike1/arrow1.png
/images/theme_images/mike1/apply-button-bg.png
/images/theme_images/mike1/line3.png
/dupont
/dupont
/page/26-columbia-j-school-studios/26
/page/728/551
/images/theme_images/mike1/arrow1.png
/page/55-the-new-jobnews-career-management-center/55
/page/1194-graduation-rates/11
/
/page/62-career-services-staff/62
/feed/301.rss
/page/31-computer-and-e-mail-accounts/15
/page/277-contacts/281
/page/1244-testimonials/1105
/page/30-computer-labs/17
/fonts/theme_fonts/mike1/newsgothiccondensed-webfont.woff
/system/documents/468/original/2011_Tobenkin.pdf
/system/documents/528/original/AV_services_Document_new.pdf
/system/documents/1002/original/gradcountdown2016.pdf
/system/documents/586/original/it2104_1_fill_in.pdf
/profile/90-kevin-coyne/
/page/980-j-school-facts/794
/profile/9-nicholas-lemann/3
/profile/88-thomas-kent/
/profile/87-seth-lipsky/
/profile/76-betsy-west/
/profile/577-matt-bockelman/
/profile/520-lisa-pollak/
/page/621-radio-audio-lab-and-studio-facilities/15
/page/986-ma-portal/930
/profile/498-john-schoen/
/page/177-cabot-prizes-past-winners/178
/page/621-radio-audio-lab-and-studio-facilities/19
/page/468-cross-registration/160
/system/documents/916/original/tobeberger2015.pdf
/page/464-2007-oakes-presentation/194
/page/460-2008-oakes-award-bios/193
/system/documents/257/original/NEW_HIRE_ORIENTATION_CHECKLIST_for_SUPVR_USE.pdf
/system/documents/341/original/WERT_Prog_Sum_9-30-10.pdf
/page/450-2001-lukas-prize-release/188
/dupont
/page/771-social-media-guidelines/941
/page/168-the-chancellor-award/169
/page/445-2004-lukas-prize-winners/188
/page/441-2006-lukas-prize-release/188
/news/1042
/news/1481
/page/69-board-of-visitors/69
/page/10-full-time-visiting-and-special-faculty/164
/robots.txt
/cs/ContentServer/jrn/1165270051346/page/1175295297393/JRNHomePage.htm
/profile/389-maria-sliwa/10
/images/theme_images/mike1/logo-horizontal-2.png
/profile/561-matt-kozar/10
/profile/384-b-j-schecter/10
/profile/570-suzanne-sataline/
/page/1097/4
/page/688-kelly-niknejad-of-tehran
/apply
/sites/search?query=PhD&go=Go
/page/10?tags=INVESTIGATIVE+REPORTING
/page/324-wert-federal-reserve/328
/profile/205-david-mccormick/10
/page/10?tags=SOCIAL+ISSUES
/page/73-m-s-required-application-materials/73
/images/theme_images/mike1/line4.png
/images/theme_images/mike1/logo-horizontal-2.png
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/apply-button-bg.png
/profile/125-ruth-padawer/10
/page/144-keeping-in-touch/145
/page/150-alumni-association-mission-and-organization/151
/system/documents/448/original/John_Krimmel.pdf
/system/documents/174/original/tobenkin_award_talk.pdf
/system/documents/137/original/knight_bagehot_speech_final.pdf
/system/documents/674/original/Gillian_Tett_Knight_Bagehot_speech.pdf
/page/53-past-events/751
/system/documents/866/original/pay_calendar_2014_15.pdf
/page/199-master-of-arts-in-journalism/200
/page/521-2008-j-anthony-lukas-work-in-progress-award-finalist/188
/system/documents/884/original/sept2014.pdf
/system/documents/892/original/2014_ochberg_fellows.pdf
/page/95-career-expo-2016-for-employers/434
/profile/576-jacob-templin/10
/profile/11-mark-maremont-83/3
/profile/569-whitney-richardson/
/page/516-2008-j-anthony-lukas-book-prize-finalist/188
/page/1147-equal-opportunity-and-affirmative-action-notice-of-non-discrimination/998
/feed/301.rss
/page/170-oakes-award/171
/page/475-past-alumni-awards-winners/152
/page/18-technology-guide/15
/system/documents/915/original/2015_dartawards.pdf
/profile/462-preston-merchant/
/page/17-technology/17
/profile/461-erica-mcdonald/
/profile/170-amy-singer/10
/page/454-1999-lukas-press-release/188
/profile/171-ava-seave/10
/system/photos/3747/default/CUJ.jpg?1407854543
/page/453-1999-lukas-prize-winners/188
/page/444-2005-lukas-prize-press-release/188
/profile/570-suzanne-sataline/10
/page/440-2006-lukas-prize-winners/188
/news/1007
/page/275-dual-degree-programs/278
/system/documents/966/original/bansept15.pdf
/page/7-our-programs/7
/page/4-prospective-students/4
/page/203-doctor-of-philosophy-in-communications/204
/news/1356
/profile/394-joe-richman/
/page/72-apply/72
/page/432-2005-chancellor-award-winner-jerry-mitchell/185
/profile/19-alisa-solomon/3
/page/431-chancellor-award-winner/185
/system/documents/970/original/Hybrid_Master_s_Guidelines.pdf
/page/1088/9
/profile/366-ed-schumacher-matos/10
/profile/56-sylvia-nasar/
/robots.txt
/page/636/12
/profile/202-peter-r-kann/10
/page/1171-privacy-policy/1021
/page/372-tv-video-lab-and-studio-facilities/17
/page/10?tags=IMMIGRATION
/profile/204-jacob-levenson/10
/page/10?tags=SCIENCE%2FENVIRONMENT
/page/155-new-students/488
/profile/315-alan-haburchak/
/profile/322-greg-gilderman/10
/page/705-social-media-tools/527
/page/1132-international-travel-policies/11
/page/319-arthur-sulzberger-jr-knight-bahehot-anniversary-dinner/321
/page/771-social-media-guidelines/941
/
/page/583-faqs/392
/page/1224-tuition/1086
/system/documents/342/original/mwknight-bagehotaddress.pdf
/page/1226-policies-on-student-suggestions-and-complaints/11
/page/301-news/2
/page/1247-2015-john-chancellor-award-winner/1108
/page/840-alfred-i-dupont-columbia-awards/632
/page/204-ph-d-requirements/205
/page/809-graduation/618
/system/documents/256/original/Wage_and_Hour.ppt
/system/documents/255/original/Performance_Appraisal_Presentation_042110_282_29.ppt
/page/554-canon-g11/25
/profile/211-jocelyn-craugh-zuckerman/10
/page/1258-about-the-tobenkin-award/1121
/profile/236-bruce-shapiro/
/profile/125-ruth-padawer/
/profile/133-neil-hickey/
/profile/14-patricia-nazario-02/3
/profile/140-nina-burleigh/10
/profile/146-simon-surowicz/
/profile/147-paula-span/10
/profile/311-anthony-depalma/
/profile/327-lloyd-siegel/10
/profile/311-anthony-depalma/10
/page/988-m-a-outside-courses/980
/profile/111-john-zucker/10
/profile/493-ed-robbins/
/profile/48-klatell-david/10
/page/18-technology-guide-2016-17/488
/page/463-2005-oakes-award-winners/193
/page/461-2007-oakes-award-winner/193
/profile/434-ahmed-shihab-eldin/10
/profile/18-rick-smith-70/3
/
/profile/181-randi-hutter-epstein/
/profile/181-randi-hutter-epstein/10
/profile/184-lennart-bourin/
/event/1518
/news/1002
/profile/4-samuel-freedman/3
/page/10
/system/photos/4579/default/berger_hp.jpg?1460236845
/
/
/cs/ContentServer/jrn/1212611106941/JRN_Image_C/1212611132398/RenderPhoto.htm
/page/990-satisfactory-academic-progress-federal-financial-aid/11
/profile/112-adam-klein/10
/images/theme_images/mike1/logo-horizontal-2.png
/profile/35-thomas-b-edsall/10
/profile/147-paula-span/
/profile/165-gwenda-blair/
/profile/168-jonathan-wald/10
/page/434-2009-lukas-prize-winners/
/page/1041-accommodations/1103
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/main.js
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/clndr.min.js
/system/photos/4550/default/hearstspring2016.jpg?1459796440
/system/photos/4557/default/panama_homepage.jpg?1459880343
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/page/1057-3-18-14-interview/634
/page/1081-the-poliak-center/938
/page/518-2008-mark-lynton-history-prize-finalist/188
/profile/389-maria-sliwa/
/profile/199-tali-woodward/10
/page/53/751
/profile/382-maria-newman/
/profile/380-samir-s-patel/10
/profile/170-amy-singer/
/page/372-tv-video-lab-and-studio-facilities/19
/page/372-tv-video-lab-and-studio-facilities/15
/page/10?tags=Data+Visualization+and+Statistics
/page/10?tags=ETHICS
/page/517-2008-mark-lynton-history-prize-winner/188
/
/stylesheets/theme_stylesheets/mike1/flexslider.css
/javascripts/theme_scripts/mike1/jquery.js
/robots.txt
/event/1523
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/moment.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/fonts/theme_fonts/mike1/newsgothicmtbold-webfont.woff
/images/theme_images/mike1/social_icons/soc_lt_fb.png
/images/theme_images/mike1/icon-tags-small.png
/system/photos/3200/default/TowCenter-Horizontal-v5.gif?1375202845
/images/theme_images/mike1/social_icons/soc_lt_insta.png
/images/theme_images/mike1/logo-footer.png
/images/theme_images/mike1/line1.png
/images/theme_images/mike1/banners/The_New_York_World.jpg
/images/theme_images/mike1/social_icons/soc_lt_tw.png
/profile/287-ernest-sotomayor/
/profile/113-lisa-r-cohen/10
/images/theme_images/mike1/line3.png
/profile/12-andrew-meldrum-77/3
/images/theme_images/mike1/icon-slider-nav1.png
/profile/357-richard-deitsch/
/profile/128-melvin-mccray/10
/profile/293-curtis-brainard/
/system/photos/4580/default/tobenkin_hp.jpg?1460236876
/profile/30-ann-cooper/
/profile/307-rob-bennett/
/profile/15-jasmina-nielsen-02/3
/profile/337-constance-mitchell-ford/10
/page/289-press-room/292
/system/photos/4558/default/careerexpo2016.jpg?1460148883
/images/theme_images/mike1//colorbox/border1.png
/page/4-prospective-students/4
/system/photos/3394/default/mobile-hp-image-1.jpg?1431445080
/images/theme_images/mike1/line4.png
/page/799-slavery-by-another-name/14
/images/theme_images/mike1/arrow1.png
/system/documents/529/original/AV_Event_Checklist.pdf
/feed/301.rss
/system/documents/138/original/WERT_Sept_21_2009_Notes.pdf
/system/documents/1004/original/lukasprizes2016.pdf
/profile/95-david-blum/10
/profile/90-kevin-coyne/10
/page/155-new-students/488
/page/520-2008-j-anthony-lukas-work-in-progress-award-winner/188
/profile/8-soterios-johnson-97/3
/system/documents/885/original/oct2014.pdf
/news/314?printing=true?printing=true
/profile/73-richard-wald/
/profile/71-duy-linh-tu/
/profile/6-kate-grossman-97/3
/system/documents/898/original/overview_2014.pdf
/profile/576-jacob-templin/
/
/page/678-the-george-t-delacorte-center/753
/stylesheets/theme_stylesheets/mike1/style.css
/javascripts/theme_scripts/mike1/jquery.flexslider.js
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.colorbox.js
/stylesheets/theme_stylesheets/mike1/colorbox.css
/javascripts/theme_scripts/mike1/jquery.js
/javascripts/theme_scripts/mike1/jquery.tablesorter.min.js
/javascripts/theme_scripts/mike1/clndr.min.js
/page/169-lukas-prize-project-awards/170
/javascripts/theme_scripts/mike1/underscore-min.js

The options for the fields to keep include lists separated by commas and ranges defined by a hyphen. The next two are fields 1 and 10 and then fields 1 through 3.

%%sh

cut -d" " -f1,10 columbia.txt
128.59.40.117 469
194.71.161.156 640
69.30.213.18 5173
- 377
69.30.213.18 5061
69.30.213.18 4210
69.30.213.18 4148
207.46.13.74 11495
100.1.205.12 6204
100.1.205.12 1754
100.1.205.12 44085
207.46.13.69 4156
69.30.213.18 17808
69.30.213.18 6680
128.59.40.117 4404
128.59.40.117 6095
69.30.213.18 5530
69.30.213.18 7413
194.71.161.156 4741
194.71.161.156 5923
69.30.213.18 4776
69.30.213.18 5119
69.30.213.18 5696
69.30.213.18 5060
69.30.213.18 5125
69.30.213.18 4449
116.235.146.3 4538
116.235.146.3 10239
116.235.146.3 1675
194.187.168.214 8408
116.235.146.3 11424
116.235.146.3 1986
116.235.146.3 4590
116.235.146.3 9509
116.235.146.3 3752
116.235.146.3 45180
116.235.146.3 454
69.30.213.18 482
180.76.15.157 657
116.235.146.3 23377
116.235.146.3 1313
116.235.146.3 424
188.40.112.210 16842
5.9.94.207 16842
5.9.94.207 23632
194.71.161.156 5526
77.245.58.28 21065
69.30.213.18 58848
194.71.161.156 4472
207.46.13.74 3799
128.59.40.117 469
207.46.13.74 546
207.46.13.74 5212
69.162.124.235 281
87.211.107.246 575
87.211.107.246 5673
87.211.107.246 10239
87.211.107.246 1754
87.211.107.246 11424
87.211.107.246 1986
87.211.107.246 1418
87.211.107.246 5285
87.211.107.246 45180
87.211.107.246 13361
87.211.107.246 10189
87.211.107.246 23377
87.211.107.246 8213
87.211.107.246 444
87.211.107.246 13780
87.211.107.246 17029
87.211.107.246 32112
87.211.107.246 8344
87.211.107.246 1311
87.211.107.246 424
157.55.39.192 5203
116.235.146.3 19260
133.130.54.151 4453
194.71.161.156 5498
207.46.13.69 4094
68.180.231.24 153
87.214.216.228 5999
87.214.216.228 451
87.214.216.228 264333
87.214.216.228 11218
87.214.216.228 337676
87.214.216.228 5670
87.214.216.228 11218
87.214.216.228 7950
87.214.216.228 3062
87.214.216.228 4822
100.1.205.12 13780
68.180.231.24 211
87.214.216.228 454
66.249.66.31 153
128.59.40.117 5261
100.1.205.12 6203
207.46.13.69 4114
128.59.40.117 4133
204.152.200.42 5999
194.71.161.156 61244
41.218.218.99 557
165.242.51.192 1754
165.242.51.192 4590
165.242.51.192 33752
165.242.51.192 5285
165.242.51.192 5162
165.242.51.192 9509
165.242.51.192 1622
165.242.51.192 454
165.242.51.192 128017
165.242.51.192 1311
165.242.51.192 44085
165.242.51.192 424
165.242.51.192 1435
54.177.28.124 62822
157.55.39.192 4067
165.242.51.192 5562
165.242.51.192 5113
165.242.51.192 4839
165.242.51.192 4918
91.200.12.97 609
128.199.53.63 5999
128.199.53.63 1675
128.199.53.63 1754
128.199.53.63 4590
128.199.53.63 1986
128.199.53.63 1418
128.199.53.63 5285
128.199.53.63 45180
128.199.53.63 264333
128.199.53.63 337676
128.199.53.63 44085
128.199.53.63 444
207.46.13.69 178629
128.199.53.63 4822
128.199.53.63 13780
128.199.53.63 11218
128.199.53.63 1622
128.199.53.63 3864
207.46.13.69 4092
128.199.53.63 3062
128.199.53.63 338432
128.199.53.63 212783
128.199.53.63 1313
194.71.161.156 641
128.59.40.117 469
128.59.40.117 153
180.76.15.146 5933
194.71.161.156 5137
66.249.64.158 5636
128.59.40.117 7905
194.71.161.156 4576
194.71.161.156 5751
207.46.13.69 4218
194.71.161.156 5050
128.59.40.117 4266
194.71.161.156 6684
74.71.177.140 1675
74.71.177.140 1754
74.71.177.140 4590
74.71.177.140 1986
74.71.177.140 9509
74.71.177.140 5162
74.71.177.140 7950
74.71.177.140 5670
74.71.177.140 163280
74.71.177.140 264333
74.71.177.140 337676
74.71.177.140 23377
74.71.177.140 1318426
101.58.21.11 12217
194.71.161.156 181940
101.58.21.11 11424
101.58.21.11 33752
74.71.177.140 2983
101.58.21.11 1986
101.58.21.11 24676
101.58.21.11 1418
101.58.21.11 5285
74.71.177.140 6641
74.71.177.140 60344
74.71.177.140 54092
199.104.126.60 618
101.58.21.11 7877
194.71.161.156 5621
101.58.21.11 23377
101.58.21.11 13880
101.58.21.11 33587
69.162.124.235 281
207.46.13.92 5103
101.58.21.11 11845
101.58.21.11 1622
74.71.177.140 14742
74.71.177.140 31547
74.71.177.140 26173
74.71.177.140 59423
101.58.21.11 444
101.58.21.11 7681
101.58.21.11 424
128.59.40.117 469
207.46.13.69 4981
101.58.21.11 1435
207.46.13.74 546
41.77.79.58 8614
41.77.79.58 1754
41.77.79.58 11424
41.77.79.58 33752
41.77.79.58 5162
41.77.79.58 9509
41.77.79.58 3752
41.77.79.58 58825
41.77.79.58 59384
41.77.79.58 72521
41.77.79.58 557
41.77.79.58 454
41.77.79.58 69083
41.77.79.58 62749
41.77.79.58 69208
66.249.66.31 4715
128.59.40.117 469
178.255.153.2 5999
194.71.161.156 10907
194.71.161.156 4116
207.46.13.92 4351
128.59.40.117 6095
5.143.231.13 469
5.143.231.13 211
5.143.231.13 211
194.71.161.156 4757
5.143.231.13 211
5.143.231.13 211
207.46.13.74 4154
5.143.231.13 5924
65.52.129.59 21065
54.210.147.136 4618
5.143.231.13 211
207.46.13.92 652
128.59.40.117 546
128.59.40.117 10602
194.71.161.156 4306
66.249.64.158 8397
128.59.40.117 4133
66.249.66.130 4135
207.46.13.92 4116
194.71.161.156 4118
77.75.79.32 8047
111.196.221.217 1244
100.11.29.146 10239
100.11.29.146 1754
100.11.29.146 11424
100.11.29.146 1986
100.11.29.146 5162
100.11.29.146 9509
100.11.29.146 45180
100.11.29.146 44085
100.11.29.146 23377
100.11.29.146 454
100.11.29.146 557
100.11.29.146 7681
100.11.29.146 1435
100.11.29.146 424
194.71.161.156 6470
194.71.161.156 6282
217.73.208.148 5974
69.162.124.235 281
65.17.253.220 21065
95.63.16.179 10239
95.63.16.179 1754
95.63.16.179 11424
95.63.16.179 5162
95.63.16.179 5285
95.63.16.179 1418
95.63.16.179 3752
95.63.16.179 13780
95.63.16.179 23377
95.63.16.179 1311
95.63.16.179 1622
66.249.66.31 211
46.183.222.93 613
128.59.40.117 5999
66.249.66.28 153
172.246.33.74 10239
172.246.33.74 1754
172.246.33.74 11424
172.246.33.74 1986
172.246.33.74 5162
172.246.33.74 9509
172.246.33.74 3752
172.246.33.74 23377
172.246.33.74 444
172.246.33.74 45180
172.246.33.74 7681
157.55.39.192 5212
172.246.33.74 13780
172.246.33.74 1311
172.246.33.74 424
207.46.13.92 62698
72.46.153.26 5999
70.214.96.88 33752
70.214.96.88 1675
70.214.96.88 10239
194.71.161.156 20039
207.46.13.74 4053
117.201.88.147 557
194.71.161.156 134542
117.201.88.147 271925
66.249.66.137 5599
24.63.241.42 1754
24.63.241.42 4590
24.63.241.42 7950
24.63.241.42 241411
24.63.241.42 38787
24.63.241.42 337676
24.63.241.42 444
24.63.241.42 605264
59.56.89.231 996224
117.201.88.147 7077
207.46.13.92 6389
119.57.158.139 5999
46.119.127.129 1244
46.119.127.129 1244
46.119.127.129 1244
207.46.13.74 4126
207.46.13.69 752
207.46.13.69 5212
141.0.15.248 643
141.0.15.248 644
194.71.161.156 26173
91.200.12.97 21065
151.80.31.160 4041
207.46.13.74 4208
77.245.58.28 21065
81.91.253.250 21065
212.95.226.66 21065
207.46.13.92 4091
66.249.64.146 648
209.235.213.246 21065
64.90.160.178 21065
194.71.161.156 4106
69.162.124.235 5999
128.59.99.2 5999
128.59.99.2 264333
128.59.99.2 337676
58.20.192.227 5999
58.20.192.227 33752
58.20.192.227 1675
58.20.192.227 11424
58.20.192.227 1986
128.59.40.117 469
128.59.40.117 5212
58.20.192.227 9509
58.20.192.227 5285
58.20.192.227 13780
58.20.192.227 5670
58.20.192.227 11218
58.20.192.227 45180
58.20.192.227 7950
58.20.192.227 4822
58.20.192.227 1622
58.20.192.227 11218
58.20.192.227 163280
58.20.192.227 212783
58.20.192.227 338432
58.20.192.227 23377
58.20.192.227 1311
58.20.192.227 1313
58.20.192.227 1318426
66.249.66.28 6021
194.71.161.156 59990
62.149.225.67 21065
194.71.161.156 252912
108.168.196.54 21065
194.71.161.156 34335
194.71.161.156 17016
46.20.45.18 5999
66.249.92.29 648
46.28.137.72, 200
46.28.137.72, 200
46.28.137.72, 200
46.28.137.72, 200
46.28.137.72, 304
46.28.137.72, 200
46.28.137.72, 200
46.28.137.72, 304
46.28.137.72, 200
46.28.137.72, 200
46.28.137.72, 304
46.28.137.72, 200
46.28.137.72, 200
144.76.14.43 6226
66.249.66.28 639
194.71.161.156 202946
194.71.161.156 4620
207.46.13.74 4144
83.161.202.171 6763
83.161.202.171 1754
83.161.202.171 4590
83.161.202.171 33752
83.161.202.171 1418
83.161.202.171 9509
83.161.202.171 1435
83.161.202.171 81741
83.161.202.171 116064
83.161.202.171 98390
83.161.202.171 44085
83.161.202.171 8213
83.161.202.171 1622
66.249.66.52 1754
83.161.202.171 1311
66.249.66.49 10239
198.74.60.112 62822
66.249.66.28 5736
83.161.202.171 8408
180.76.15.147 5378
194.71.161.156 3131
128.59.40.117 469
54.147.133.18 646
70.214.106.5 14816
210.82.53.196 1754
210.82.53.196 10239
210.82.53.196 11424
210.82.53.196 1418
210.82.53.196 1986
210.82.53.196 3752
210.82.53.196 1622
210.82.53.196 45180
210.82.53.196 7681
207.46.13.74 6739
210.82.53.196 424
210.82.53.196 44085
210.82.53.196 1435
154.118.109.126 5564
128.59.40.117 6095
154.118.109.126 10239
154.118.109.126 11424
154.118.109.126 33752
154.118.109.126 1986
154.118.109.126 5285
154.118.109.126 1418
154.118.109.126 45180
154.118.109.126 8213
154.118.109.126 152358
84.132.174.252 4102
84.132.174.252 1675
84.132.174.252 1754
84.132.174.252 4590
154.118.109.126 557
154.118.109.126 7681
84.132.174.252 1418
84.132.174.252 5162
154.118.109.126 454
84.132.174.252 3752
154.118.109.126 1313
84.132.174.252 8213
84.132.174.252 1622
84.132.174.252 13780
84.132.174.252 424
84.132.174.252 1313
154.118.109.126 1435
1.39.33.226 3285108
66.249.66.28 636
24.44.85.225 10239
24.44.85.225 1754
24.44.85.225 11424
24.44.85.225 1986
24.44.85.225 1418
24.44.85.225 5285
24.44.85.225 155312
24.44.85.225 45180
24.44.85.225 13780
24.44.85.225 444
24.44.85.225 424
24.44.85.225 1313
24.44.85.225 44085
217.73.208.148 4125
54.165.176.73 211
69.162.124.235 281
66.249.66.16 5026
157.55.39.192 898
128.59.40.117 469
128.59.40.117 5212
180.76.15.32 4051
217.73.208.148 3938
1.39.33.226 4713
95.211.217.68 5999
188.32.128.47 10239
188.32.128.47 1675
188.32.128.47 11424
188.32.128.47 1986
188.32.128.47 1418
84.134.240.142 5999
188.32.128.47 5285
188.32.128.47 57326
207.46.13.92 3811
180.76.15.17 4242
52.37.147.174 287364
66.249.66.28 4339
157.55.39.192 4120
106.120.173.151 5130
207.46.13.69 33752
122.169.204.216, 200
122.169.204.216, 200
122.169.204.216, 200
122.169.204.216, 200
122.169.204.216, 200
122.169.204.216, 200
122.169.204.216, 200
157.55.39.192 4733
122.169.204.216, 200
122.169.204.216, 200
122.169.204.216, 200
122.169.204.216, 200
122.169.204.216, 200
207.46.13.74 5631
128.59.40.117 4133
68.180.231.24 546
52.48.180.204 469
180.76.15.5 5088
217.73.208.148 5092
180.76.15.5 5188
207.46.13.74 5212
199.59.148.210 1135613
66.249.66.19 4802
74.87.163.147 4339
52.48.180.204 639
69.162.124.235 5999
103.255.5.40 205333
103.255.5.40 180454
46.32.15.4 1675
46.32.15.4 1754
46.32.15.4 11424
46.32.15.4 5162
81.153.203.83 3978
81.153.203.83 10239
81.153.203.83 4590
81.153.203.83 1675
81.153.203.83 1418
81.153.203.83 3752
81.153.203.83 5285
81.153.203.83 1622
81.153.203.83 454
81.153.203.83 16673
81.153.203.83 44085
81.153.203.83 1313
81.153.203.83 424
188.40.112.210 17388
217.73.208.148 5350
46.32.15.4 9509
46.32.15.4 3752
46.32.15.4 1986
46.32.15.4 44085
46.32.15.4 444
46.32.15.4 454
46.32.15.4 7681
46.32.15.4 13780
46.32.15.4 424
128.59.40.117 5999
207.46.13.74 211
80.187.101.176 10239
80.187.101.176 1986
80.187.101.176 1675
80.187.101.176 9509
80.187.101.176 3752
80.187.101.176 33752
80.187.101.176 11424
80.187.101.176 1622
80.187.101.176 1311
80.187.101.176 424
80.187.101.176 44085
81.153.203.83 10602
81.153.203.83 72777
177.55.96.221 614
46.32.15.4 5532
81.153.203.83 8616
128.59.40.117 4850
176.31.241.60 287364
54.219.35.123 211
66.249.66.130 4259
157.55.39.192 211
207.46.13.74 1121690
132.66.38.12 5009
132.66.38.12 10239
132.66.38.12 11424
132.66.38.12 1754
132.66.38.12 1986
132.66.38.12 1418
132.66.38.12 5285
132.66.38.12 45180
132.66.38.12 86189
132.66.38.12 454
132.66.38.12 13780
132.66.38.12 1622
132.66.38.12 1311
132.66.38.12 7681
132.66.38.12 424
207.46.13.69 9150
184.153.87.9 5870
184.153.87.9 1675
184.153.87.9 4590
184.153.87.9 33752
184.153.87.9 5162
184.153.87.9 9509
184.153.87.9 3752
81.153.203.83 5673
184.153.87.9 44085
184.153.87.9 13780
184.153.87.9 454
81.153.203.83 13361
81.153.203.83 13801
81.153.203.83 6831
81.153.203.83 8344
81.153.203.83 576031
46.32.15.4 547
184.153.87.9 7681
184.153.87.9 1313
184.153.87.9 1435
81.153.203.83 5130
81.153.203.83 60647
81.153.203.83 37635
81.153.203.83 117473
46.32.15.4 14757
46.32.15.4 208712
46.32.15.4 11267
46.32.15.4 14475
46.32.15.4 14496
46.32.15.4 13431
46.32.15.4 45668
46.32.15.4 13599
46.32.15.4 69312
122.57.127.66 17029
81.153.203.83 7892
46.32.15.4 10714
46.32.15.4 131853
46.32.15.4 23931
128.59.40.117 4219
46.32.15.4 18676
81.153.203.83 7554
46.32.15.4 129249
46.32.15.4 79181
100.1.205.12 8782
46.32.15.4 9878
207.46.13.74 3966
49.230.19.145 5999
49.230.19.145 175
49.230.19.145 175
49.230.19.145 1675
49.230.19.145 174
49.230.19.145 9509
49.230.19.145 174
49.230.19.145 163280
49.230.19.145 212783
49.230.19.145 152
49.230.19.145 44085
49.230.19.145 241411
49.230.19.145 152
132.66.38.12 377
49.230.19.145 1318426
49.230.19.145 1622
81.153.203.83 211
49.230.19.145 1246
132.66.38.12 211
49.230.19.145 5670
49.230.19.145 3062
49.230.19.145 11218
49.230.19.145 11218
49.230.19.145 151
208.109.21.238 21065
81.153.203.83 211
212.95.226.66 21065
128.59.40.117 469
70.16.220.141 6873
70.16.220.141 898
70.16.220.141 898
23.106.239.161 58848
81.153.203.83 53578
209.235.213.246 21065
184.153.87.9 7554
184.153.87.9 557
81.153.203.83 187845
100.1.205.12 3079300
125.209.235.171 542
69.162.124.235 281
75.101.131.28 33313
75.101.131.28 33313
81.153.203.83 66773
81.153.203.83 79095
68.180.231.24 211
184.153.87.9 321744
128.59.40.117 15694
62.149.225.67 21065
178.255.215.92 898
178.255.215.92 898
81.153.203.83 170068
8.37.70.105 7137
123.125.71.21 4618
41.46.67.160 136621
41.46.67.160 27431
151.80.31.176 7768
68.180.231.24 211
124.41.241.212 1675
124.41.241.212 1754
124.41.241.212 11424
124.41.241.212 1986
124.41.241.212 1418
124.41.241.212 5285
124.41.241.212 1435
124.41.241.212 23377
124.41.241.212 8213
124.41.241.212 1622
124.41.241.212 7681
41.218.218.99 14813
41.218.218.99 1675
31.220.243.66 7892
41.218.218.99 33752
31.220.243.66 10239
31.220.243.66 1754
31.220.243.66 11424
41.218.218.99 4590
31.220.243.66 1986
31.220.243.66 1418
41.218.218.99 5162
41.218.218.99 1418
31.220.243.66 45180
41.218.218.99 5285
31.220.243.66 13780
31.220.243.66 8213
41.218.218.99 3752
31.220.243.66 454
31.220.243.66 7681
31.220.243.66 424
41.218.218.99 44085
41.218.218.99 13780
41.218.218.99 444
41.218.218.99 1311
41.218.218.99 424
31.220.243.66 1435
208.115.113.84 627
208.115.113.84 655
31.220.243.66 7554
31.220.243.66 557
31.220.243.66 444
124.41.241.212 8373
182.48.49.155 616
68.180.231.24 211
207.46.13.74 57698
115.87.132.168 6716
124.41.241.212 4884
124.41.241.212 211
69.162.124.235 281
128.59.40.117 4133
52.7.249.161 62822
109.173.125.227 1244
124.41.241.212 150643
124.41.241.212 20039
69.127.186.52 8379
69.127.186.52 1675
69.127.186.52 11424
69.127.186.52 33752
69.127.186.52 5162
69.127.186.52 5285
69.127.186.52 3752
69.127.186.52 23377
69.127.186.52 13780
69.127.186.52 1622
69.127.186.52 557
69.127.186.52 7681
69.127.186.52 1313
54.165.176.73 211
157.55.39.192 1222789
52.0.19.0 320
180.76.15.9 145316
124.41.241.212 43523
66.249.66.99 5427
180.76.15.154 4988
164.132.161.49 3088
128.59.40.117 469
128.59.40.117 4926
124.41.241.212 60647
128.59.40.117 4174
87.214.216.228 14813
87.214.216.228 14813
87.214.216.228 14813
87.214.216.228 14813
87.214.216.228 14813
87.214.216.228 14813
199.16.156.124 469
87.214.216.228 14107
207.46.13.74 610
52.0.19.0 320
207.46.13.74 159831
207.46.13.74 631930
207.46.13.92 4739
66.249.66.34 6251
208.115.111.68 482
207.46.13.74 4312
207.46.13.74 4079
207.46.13.69 5683
66.249.66.31 4165
180.76.15.34 1187288
173.213.212.228 10239
173.213.212.228 11424
173.213.212.228 33752
173.213.212.228 1986
173.213.212.228 1418
173.213.212.228 5285
173.213.212.228 9509
173.213.212.228 45180
173.213.212.228 163280
173.213.212.228 264333
173.213.212.228 23377
173.213.212.228 42745
173.213.212.228 8213
173.213.212.228 444
173.213.212.228 1246
173.213.212.228 4822
173.213.212.228 7681
173.213.212.228 1622
173.213.212.228 11218
173.213.212.228 11218
173.213.212.228 11218
193.92.153.238 170408
43.224.24.22 898
240d:0:4b14:c000:e06c:e2ec:4cbe:22cb, 200
207.46.13.74 3797
69.162.124.235 5999
87.253.132.203 389
128.59.40.117 469
43.224.24.22 215752
207.46.13.69 4845
207.46.13.92 4086
68.180.231.24 211
184.75.214.66 5999
207.46.13.69 3824
141.8.143.188 1435
141.8.143.188 36832
208.115.113.84 22401
66.220.156.98 898
68.180.231.24 3131
66.249.66.30 6221
66.249.66.28 648
180.76.15.163 4000
180.76.15.147 21065
52.7.249.161 62822
104.43.198.26 1059486
45.33.70.235 554
66.249.66.5 549
208.109.21.238 21065
81.91.253.250 21065
180.76.15.144 21065
212.95.226.66 21065
104.162.240.3 10239
104.162.240.3 1754
104.162.240.3 241411
104.162.240.3 264333
104.162.240.3 44085
104.162.240.3 1622
104.162.240.3 7950
104.162.240.3 38787
104.162.240.3 42745
104.162.240.3 1246
104.162.240.3 1318426
104.162.240.3 1311
104.162.240.3 424
104.162.240.3 11218
104.162.240.3 11218
104.162.240.3 1435
164.132.161.89 4940
209.235.213.246 21065
173.213.212.228 538
87.214.216.228 14813
69.162.124.235 281
207.46.13.92 9922
128.59.40.117 469
128.59.40.117 5609
207.46.13.69 1375
199.16.156.125 469
136.243.9.138 28611
62.149.225.67 21065
180.76.15.25 211
86.44.27.25, 200
65.52.129.59 16799
128.59.40.117 6095
103.205.218.5 6680
103.205.218.5 1675
103.205.218.5 33752
103.205.218.5 4590
103.205.218.5 5162
103.205.218.5 9509
103.205.218.5 3752
103.205.218.5 44085
103.205.218.5 13780
103.205.218.5 454
103.205.218.5 1622
103.205.218.5 1313
103.205.218.5 3285108
103.205.218.5 1435
178.255.155.2 5999
207.46.13.74 5933
128.59.40.117 469
164.132.161.49 3670
103.205.218.5 6518
103.205.218.5 94836
103.205.218.5 73388
103.205.218.5 132460
37.187.162.183 62822
103.205.218.5 7554
128.59.40.117 469
109.148.174.77 10239
109.148.174.77 11424
109.148.174.77 1675
109.148.174.77 5162
109.148.174.77 1418
109.148.174.77 5285
186.7.132.218 1318426
109.148.174.77 1622
109.148.174.77 45180
109.148.174.77 44085
109.148.174.77 163280
109.148.174.77 264333
109.148.174.77 241411
109.148.174.77 1246
109.148.174.77 451
109.148.174.77 1318426
109.148.174.77 11218
109.148.174.77 11218
109.148.174.77 5670
109.148.174.77 4822
109.148.174.77 7681
109.148.174.77 1313
109.148.174.77 1435
109.148.174.77 6518
109.148.174.77 85516
109.148.174.77 454
109.148.174.77 73388
109.148.174.77 98568
50.62.176.17 608
109.148.174.77 24362
109.148.174.77 12202
109.148.174.77 7166
109.148.174.77 33892
180.76.15.150 318156
68.180.231.24 546
69.180.79.99 24746
69.180.79.99 1754
69.180.79.99 1675
69.180.79.99 4590
69.180.79.99 1986
69.180.79.99 9509
69.180.79.99 5162
69.180.79.99 557
69.180.79.99 8213
69.180.79.99 1622
69.180.79.99 1313
69.180.79.99 44085
69.180.79.99 424
69.180.79.99 1435
198.74.60.112 62822
180.76.15.137 4452
69.162.124.235 5999
125.209.235.184 5562
103.251.51.137 10239
103.251.51.137 1754
103.251.51.137 11424
103.251.51.137 1986
103.251.51.137 1418
103.251.51.137 5285
103.251.51.137 45180
103.251.51.137 163280
103.251.51.137 8213
103.251.51.137 264333
54.186.28.49 287364
103.251.51.137 7892
103.251.51.137 23377
103.251.51.137 1622
103.251.51.137 454
103.251.51.137 1313
103.251.51.137 424
128.59.40.117 469
128.59.40.117 6221
74.105.223.45 14054
74.105.223.45 4590
74.105.223.45 11424
74.105.223.45 10239
74.105.223.45 3752
74.105.223.45 1418
74.105.223.45 9509
74.105.223.45 38228
74.105.223.45 124860
74.105.223.45 66974
74.105.223.45 440789
74.105.223.45 98203
74.105.223.45 113108
74.105.223.45 11267
74.105.223.45 13182
74.105.223.45 28456
74.105.223.45 39180
74.105.223.45 35463
74.105.223.45 107558
74.105.223.45 164649
74.105.223.45 12924
74.105.223.45 69312
74.105.223.45 45180
74.105.223.45 25414
74.105.223.45 85923
74.105.223.45 122238
74.105.223.45 145194
74.105.223.45 73176
74.105.223.45 191533
74.105.223.45 77366
74.105.223.45 6133
74.105.223.45 6083
74.105.223.45 100684
74.105.223.45 16206
74.105.223.45 98244
74.105.223.45 10925
74.105.223.45 112585
74.105.223.45 12754
74.105.223.45 134218
74.105.223.45 13513
74.105.223.45 79181
74.105.223.45 31299
74.105.223.45 117068
74.105.223.45 15806
74.105.223.45 86903
74.105.223.45 55090
74.105.223.45 41626
74.105.223.45 98921
74.105.223.45 14923
74.105.223.45 1622
74.105.223.45 79281
74.105.223.45 15557
74.105.223.45 36468
74.105.223.45 1311
74.105.223.45 20543
74.105.223.45 43526
74.105.223.45 6737
74.105.223.45 63913
74.105.223.45 45362
74.105.223.45 13030
74.105.223.45 9127
74.105.223.45 84351
74.105.223.45 14496
74.105.223.45 92960
74.105.223.45 98159
74.105.223.45 5619
74.105.223.45 12413
74.105.223.45 48923
74.105.223.45 13868
74.105.223.45 9757
74.105.223.45 18676
74.105.223.45 103840
74.105.223.45 13431
74.105.223.45 444
74.105.223.45 6779
74.105.223.45 10641
74.105.223.45 12538
74.105.223.45 37786
74.105.223.45 106252
74.105.223.45 121265
74.105.223.45 10981
103.251.51.137 5537
128.59.40.117 9907
188.226.200.217 30518
103.251.51.137 8083
69.180.79.99 24746
128.59.40.117 469
46.20.45.18 5999
52.7.249.161 62822
66.249.64.146 152
68.180.231.24 152
66.249.66.49 5636
199.59.148.210 10812
199.16.156.125 10812
128.59.40.117 469
128.59.40.117 4763
109.148.174.77 112979
109.148.174.77 211
180.76.15.158 21065
94.228.34.206 62822
122.55.28.67 10239
122.55.28.66 33752
122.55.28.66 11424
122.55.28.66 1418
122.55.28.67 5285
122.55.28.67 3752
203.160.175.164 9509
203.160.175.162 4839
122.55.28.69 194359
203.160.175.164 238206
122.55.28.66 13780
122.55.28.66 1622
203.160.175.163 557
122.55.28.66 44085
122.55.28.69 7681
122.55.28.69 1311
203.160.175.164 3062
193.92.190.172 208712
128.59.40.117 469
103.205.218.5 211
122.55.28.66 231197
8.29.198.26 5003
69.162.124.235 5999
66.249.66.28 5537
100.36.177.195 5999
100.36.177.195 11424
100.36.177.195 33752
100.36.177.195 1986
100.36.177.195 5162
100.36.177.195 5285
100.36.177.195 9509
100.36.177.195 163280
100.36.177.195 45180
100.36.177.195 5670
100.36.177.195 4822
100.36.177.195 1246
100.36.177.195 7681
100.36.177.195 44085
100.36.177.195 338432
100.36.177.195 1313
100.36.177.195 241411
100.36.177.195 11218
100.36.177.195 11218
100.36.177.195 11218
100.36.177.195 85991
100.36.177.195 241411
100.36.177.195 288152
66.249.66.62 569
66.249.66.28 847
192.114.23.211 28247
192.114.23.211 10239
192.114.23.211 11424
192.114.23.211 33752
192.114.23.211 5162
192.114.23.211 1418
192.114.23.211 9509
192.114.23.211 13780
192.114.23.211 1622
192.114.23.211 444
192.114.23.211 23377
192.114.23.211 44085
192.114.23.211 7681
103.205.218.5 211
192.114.23.211 212783
192.114.23.211 163280
192.114.23.211 4822
192.114.23.211 42745
192.114.23.211 11218
192.114.23.211 264333
192.114.23.211 451
192.114.23.211 3864
192.114.23.211 3062
192.114.23.211 11218
192.114.23.211 7554
192.114.23.211 557
192.114.23.211 8616
173.252.112.115 42518
87.106.149.183 618
178.255.153.2 5999
101.191.64.199 6643
101.191.64.199 11424
101.191.64.199 1754
101.191.64.199 4590
101.191.64.199 5162
101.191.64.199 9509
101.191.64.199 3752
101.191.64.199 60647
101.191.64.199 44085
101.191.64.199 13780
101.191.64.199 454
101.191.64.199 7681
101.191.64.199 1313
101.191.64.199 1435
66.17.112.201 10239
66.17.112.201 1754
66.17.112.201 11424
66.17.112.201 1986
66.17.112.201 1418
66.17.112.201 5285
66.17.112.201 3752
66.17.112.201 112585
66.17.112.201 25906
66.17.112.201 44085
66.17.112.201 440789
66.17.112.201 13780
66.17.112.201 208712
66.17.112.201 7681
66.17.112.201 154914
66.17.112.201 123695
66.17.112.201 124860
66.17.112.201 66974
66.17.112.201 98203
66.17.112.201 13348
66.17.112.201 38532
66.17.112.201 76831
66.17.112.201 113108
66.17.112.201 11267
66.17.112.201 20927
66.17.112.201 112593
66.17.112.201 13182
66.17.112.201 28456
66.17.112.201 15825
66.17.112.201 85137
66.17.112.201 9618
66.17.112.201 12633
66.17.112.201 14496
66.17.112.201 35463
66.17.112.201 123246
66.17.112.201 45668
66.17.112.201 12924
66.17.112.201 164649
66.17.112.201 119754
66.17.112.201 12351
66.17.112.201 69312
66.17.112.201 5589
66.17.112.201 25414
66.17.112.201 126403
66.17.112.201 15557
66.17.112.201 5619
66.17.112.201 8296
66.17.112.201 125676
66.17.112.201 36468
66.17.112.201 153448
66.17.112.201 121265
66.17.112.201 192841
66.17.112.201 16897
66.17.112.201 6503
66.17.112.201 20543
66.17.112.201 9374
66.17.112.201 43526
66.17.112.201 48923
66.17.112.201 107114
66.17.112.201 10641
66.17.112.201 45362
66.17.112.201 81902
66.17.112.201 6737
66.17.112.201 15947
66.17.112.201 44195
66.17.112.201 18676
66.17.112.201 63913
66.17.112.201 6779
66.17.112.201 127990
66.17.112.201 103840
66.17.112.201 13030
66.17.112.201 129249
66.17.112.201 60513
66.17.112.201 5807
66.17.112.201 14357
66.17.112.201 10981
66.17.112.201 84351
66.17.112.201 9539
128.59.40.117 6095
66.17.112.201 9878
66.17.112.201 66257
66.17.112.201 54397
66.249.66.28 6835
184.97.52.11 35709
52.0.19.0 320
50.166.152.43 538
50.166.152.43 1318426
50.166.152.43 5999
50.166.152.43 1754
50.166.152.43 174
50.166.152.43 4590
50.166.152.43 5162
50.166.152.43 9509
50.166.152.43 3752
50.166.152.43 153
50.166.152.43 152
50.166.152.43 152
50.166.152.43 212783
50.166.152.43 152
50.166.152.43 152
50.166.152.43 13780
50.166.152.43 444
50.166.152.43 451
50.166.152.43 11218
50.166.152.43 11218
50.166.152.43 3864
50.166.152.43 152
50.166.152.43 1313
50.166.152.43 151
50.166.152.43 175
50.166.152.43 174
50.166.152.43 175
50.166.152.43 175
50.166.152.43 5285
50.166.152.43 174
50.166.152.43 174
50.166.152.43 23377
50.166.152.43 163280
50.166.152.43 152
50.166.152.43 152
50.166.152.43 264333
50.166.152.43 241411
50.166.152.43 150
50.166.152.43 7950
50.166.152.43 5670
50.166.152.43 3062
50.166.152.43 152
50.166.152.43 151
50.166.152.43 11218
50.166.152.43 152
50.166.152.43 151
50.166.152.43 10239
50.166.152.43 33752
50.166.152.43 175
50.166.152.43 1986
50.166.152.43 1418
50.166.152.43 5162
50.166.152.43 152
50.166.152.43 152
50.166.152.43 152
50.166.152.43 4822
50.166.152.43 152
50.166.152.43 152
50.166.152.43 13780
50.166.152.43 150
50.166.152.43 152
50.166.152.43 152
50.166.152.43 11218
50.166.152.43 7681
50.166.152.43 151
50.166.152.43 424
50.166.152.43 151
50.166.152.43 986088
50.166.152.43 1675
50.166.152.43 175
50.166.152.43 11424
50.166.152.43 175
50.166.152.43 174
50.166.152.43 5285
50.166.152.43 314
50.166.152.43 44085
50.166.152.43 45180
50.166.152.43 337676
50.166.152.43 152
50.166.152.43 212783
50.166.152.43 451
50.166.152.43 5999
50.166.152.43 1754
50.166.152.43 174
50.166.152.43 4590
50.166.152.43 5162
50.166.152.43 174
50.166.152.43 3752
50.166.152.43 23377
50.166.152.43 153
50.166.152.43 312
50.166.152.43 185952
50.166.152.43 444
50.166.152.43 264333
50.166.152.43 1246
50.166.152.43 7950
50.166.152.43 152
50.166.152.43 1622
50.166.152.43 11218
50.166.152.43 152
50.166.152.43 152
50.166.152.43 150
50.166.152.43 150
50.166.152.43 1313
180.76.15.154 5999
58.152.103.50 10239
58.152.103.50 1675
58.152.103.50 1754
58.152.103.50 5162
58.152.103.50 1418
66.249.92.29 636
58.152.103.50 3752
58.152.103.50 264333
58.152.103.50 57326
58.152.103.50 337676
58.152.103.50 8213
58.152.103.50 1318426
58.152.103.50 451
58.152.103.50 444
58.152.103.50 11218
58.152.103.50 11218
58.152.103.50 3864
58.152.103.50 7681
58.152.103.50 1313
58.152.103.50 5670
58.152.103.50 4822
58.152.103.50 241411
66.249.64.152 3845
66.249.66.28 152
27.125.146.65 385168
128.214.106.134 4538
128.214.106.134 10239
128.214.106.134 1754
128.214.106.134 33752
128.214.106.134 1418
128.214.106.134 1435
128.214.106.134 3752
128.214.106.134 45180
128.214.106.134 8213
128.214.106.134 1622
128.214.106.134 23377
128.214.106.134 44085
128.214.106.134 7681
140.115.111.116 14370
77.245.58.28 21065
212.95.226.66 21065
207.46.13.74 733
209.235.213.246 21065
112.133.246.131 5999
112.133.246.131 33752
112.133.246.131 1754
112.133.246.131 11424
112.133.246.131 1418
112.133.246.131 5285
112.133.246.131 9509
112.133.246.131 212783
112.133.246.131 7950
112.133.246.131 5670
112.133.246.131 23377
112.133.246.131 44085
112.133.246.131 45180
112.133.246.131 11218
112.133.246.131 3864
112.133.246.131 4822
112.133.246.131 3062
112.133.246.131 444
112.133.246.131 1311
112.133.246.131 11218
112.133.246.131 1313
112.133.246.131 451
69.162.124.235 5999
112.133.246.131 1318426
207.46.13.74 241411
66.249.66.28 643
46.119.112.23 21065
46.119.112.23 1244
46.119.112.23 1244
46.119.112.23 1244
100.43.90.9 66387
86.68.182.23 10239
86.68.182.23 1754
86.68.182.23 33752
86.68.182.23 1986
86.68.182.23 5285
86.68.182.23 3752
86.68.182.23 16673
86.68.182.23 13780
86.68.182.23 45180
86.68.182.23 444
86.68.182.23 424
86.68.182.23 1311
86.68.182.23 44085
62.149.225.67 21065
112.133.246.131 5042
112.133.246.131 8614
112.133.246.131 454
112.133.246.131 72521
112.133.246.131 71491
112.133.246.131 63466
112.133.246.131 69083
112.133.246.131 62749
51.255.65.51 4840
207.46.13.74 1455102
66.249.66.28 4979
68.173.183.137 1675
68.173.183.137 212783
68.173.183.137 38787
68.173.183.137 7950
68.173.183.137 241411
68.173.183.137 1246
68.173.183.137 705176
199.16.156.125 7033
112.133.246.131 13801
112.133.246.131 17029
112.133.246.131 6831
112.133.246.131 32112
112.133.246.131 576031
68.180.231.24 211
213.143.49.176 10239
213.143.49.176 1754
213.143.49.176 33752
213.143.49.176 5162
213.143.49.176 1418
207.46.13.74 546
213.143.49.176 3752
213.143.49.176 23377
128.59.40.117 469
213.143.49.176 42745
213.143.49.176 212783
207.46.13.69 783
213.143.49.176 337676
207.46.13.69 847
213.143.49.176 11218
207.46.13.69 879
213.143.49.176 451
213.143.49.176 1318426
213.143.49.176 444
213.143.49.176 4822
180.76.15.139 738506
213.143.49.176 1313
213.143.49.176 241411
213.143.49.176 424
213.143.49.176 1435
50.162.222.199 72528
85.7.62.78 10239
85.7.62.78 33752
85.7.62.78 11424
85.7.62.78 1986
85.7.62.78 1418
85.7.62.78 5285
85.7.62.78 23377
85.7.62.78 444
85.7.62.78 46186
85.7.62.78 13780
85.7.62.78 7681
85.7.62.78 1313
85.7.62.78 1435
144.76.14.47 5999
197.179.158.75 664663
197.179.158.75 65850
128.59.40.117 469
197.179.158.75 65856
66.17.112.201 4596
197.179.158.75 898
197.179.158.75 898
213.143.49.176 134770
213.143.49.176 454
151.80.31.104 650
123.125.71.40 6221
108.168.196.54 26888
54.183.147.184 284
108.168.196.54 5778
108.168.196.54 16813
108.168.196.54 3430
108.168.196.54 25793
108.168.196.54 14651
108.168.196.54 16204
108.168.196.54 4135
108.168.196.54 877
69.162.124.235 281
95.233.46.247 4339
95.233.46.247 1754
95.233.46.247 11424
95.233.46.247 33752
95.233.46.247 1418
95.233.46.247 5285
95.233.46.247 9509
95.233.46.247 12049
95.233.46.247 8213
95.233.46.247 13780
95.233.46.247 44085
95.233.46.247 1313
95.233.46.247 424
95.233.46.247 7681
129.34.20.23 1754
129.34.20.23 1675
129.34.20.23 33752
129.34.20.23 1418
129.34.20.23 5162
129.34.20.23 9509
129.34.20.23 12049
129.34.20.23 8213
129.34.20.23 454
129.34.20.23 7681
95.233.46.247 1435
129.34.20.23 424
129.34.20.23 23377
114.245.189.8 7413
114.245.189.8 7413
114.245.189.8 898
68.180.231.24 211
68.180.231.24 211
198.74.60.112 62822
46.20.45.18 5999
207.46.13.74 546
128.59.40.117 4133
207.46.13.74 5212
95.136.95.43 5999
95.136.95.43 1754
66.249.92.29 632
95.136.95.43 11424
95.136.95.43 4590
95.136.95.43 1418
95.136.95.43 3752
95.136.95.43 163280
95.136.95.43 5670
95.136.95.43 212783
95.136.95.43 23377
95.136.95.43 264333
95.136.95.43 42745
95.136.95.43 451
95.136.95.43 4822
95.136.95.43 13780
95.136.95.43 11218
95.136.95.43 1311
95.136.95.43 11218
95.136.95.43 11218
95.136.95.43 7681
95.136.95.43 1318426
66.249.66.28 3897
95.136.95.43 454
68.180.231.24 211
86.106.17.210 21033
95.136.95.43 4884
100.1.205.12 10239
100.1.205.12 1986
100.1.205.12 5162
100.1.205.12 11424
100.1.205.12 9509
100.1.205.12 45180
100.1.205.12 5285
52.37.147.174 287364
100.1.205.12 8213
100.1.205.12 13780
100.1.205.12 557
100.1.205.12 7681
100.1.205.12 424
100.1.205.12 44085
50.202.217.173 1754
50.202.217.173 10239
50.202.217.173 4590
50.202.217.173 1986
50.202.217.173 1418
50.202.217.173 5285
50.202.217.173 45180
50.202.217.173 132460
50.202.217.173 94836
50.202.217.173 98568
50.202.217.173 1622
50.202.217.173 23377
50.202.217.173 454
50.202.217.173 7681
50.202.217.173 1313
95.136.95.43 5980
67.87.36.10 5999
66.249.66.53 2983
54.183.147.184 285
128.59.40.117 5170
127.0.0.1, 200
71.244.157.123 1754
71.244.157.123 10239
71.244.157.123 4590
71.244.157.123 1986
71.244.157.123 5285
71.244.157.123 3752
71.244.157.123 16820
71.244.157.123 454
71.244.157.123 1311
71.244.157.123 7681
71.244.157.123 44085
71.244.157.123 424
128.59.40.117 6095
95.136.95.43 6462
66.249.66.28 7864
202.9.41.135 321744
79.178.151.171 98208
180.76.15.134 605
24.61.15.17 4665
24.61.15.17 11424
24.61.15.17 4590
24.61.15.17 5162
24.61.15.17 3752
24.61.15.17 13780
24.61.15.17 557
24.61.15.17 1622
24.61.15.17 23377
24.61.15.17 1311
207.46.13.74 546
180.76.15.161 5055
69.162.124.235 281
69.162.124.235 5999
184.38.213.170 72528
198.71.226.42 618
51.255.65.85 5872
24.61.15.17 271925
66.249.66.188 1675
66.249.66.185 1754
66.249.66.185 1754
107.77.70.54 4482
107.77.70.54 4590
107.77.70.54 10239
107.77.70.54 1754
107.77.70.54 5285
107.77.70.54 1418
107.77.70.54 3752
107.77.70.54 45180
107.77.70.54 454
107.77.70.54 1622
107.77.70.54 424
107.77.70.54 23377
66.249.66.78 469
66.249.66.78 1754
180.76.15.5 10801
75.106.17.188 6873
75.106.17.188 4839
75.106.17.188 9509
75.106.17.188 1418
75.106.17.188 3752
75.106.17.188 6988
75.106.17.188 238206
75.106.17.188 1754
75.106.17.188 5162
75.106.17.188 33752
75.106.17.188 194359
75.106.17.188 225757
75.106.17.188 44085
75.106.17.188 23377
75.106.17.188 454
75.106.17.188 1622
75.106.17.188 13780
75.106.17.188 3062
75.106.17.188 1313
207.138.211.44 211
66.249.66.28 44285
95.136.95.43 82608
68.180.231.24 211
198.50.159.225 58848
75.106.17.188 176
75.106.17.188 174
75.106.17.188 10239
75.106.17.188 1675
75.106.17.188 174
75.106.17.188 5285
75.106.17.188 11424
75.106.17.188 181000
75.106.17.188 152
75.106.17.188 152
95.136.95.43 4973
95.136.95.43 77775
75.106.17.188 457673
86.99.20.182 5999
86.99.20.182 4590
86.99.20.182 11424
86.99.20.182 5162
86.99.20.182 5285
86.99.20.182 3752
86.99.20.182 163280
86.99.20.182 45180
86.99.20.182 250504
86.99.20.182 85991
86.99.20.182 250504
95.136.95.43 8408
99.230.38.173 80932
66.249.66.1 597
74.117.181.205 5999
128.59.40.117 469
77.252.206.157 62822
149.202.82.236 62822
66.249.66.28 4165
52.7.249.161 62822
208.109.21.238 21065
207.46.13.74 5870
212.95.226.66 21065
128.59.40.117 6095
64.90.160.178 21065
140.115.111.128 14510
69.162.124.235 5999
140.115.111.128 14336
140.115.111.128 16227
140.115.111.128 15646
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
1.39.21.0, 200
208.115.111.68 16420
208.115.111.68 14871
62.149.225.67 21065
87.253.132.202 389
66.249.92.29 62822
54.183.147.184 284
136.243.145.41 6680
119.57.158.139 5999
90.64.78.87 604
41.82.101.54 21065
99.230.38.173 55553
66.249.66.28 641
99.230.38.173 612
99.230.38.173 22569
106.120.173.151 546
70.172.193.143 5673
70.172.193.143 13801
70.172.193.143 17029
70.172.193.143 10189
70.172.193.143 12058
70.172.193.143 32112
27.125.146.65 799891
180.76.15.153 3870
128.59.40.117 469
52.7.249.161 62822
98.14.104.71 5999
98.14.104.71 1675
98.14.104.71 1754
98.14.104.71 9509
98.14.104.71 5670
98.14.104.71 152
98.14.104.71 212783
98.14.104.71 451
98.14.104.71 444
98.14.104.71 11218
98.14.104.71 262088
98.14.104.71 351864
130.126.153.55 113106
128.59.40.117 7797
45.55.134.15 5999
45.55.134.15 11424
45.55.134.15 1418
45.55.134.15 1986
45.55.134.15 5285
66.249.66.28 152
95.136.95.43 211
180.76.15.142 211
128.59.40.117 6300
69.162.124.235 281
207.46.13.69 12171
128.59.40.117 469
128.59.40.117 5636
99.230.38.173 16179
88.3.211.207 5999
88.3.211.207 10239
88.3.211.207 1675
88.3.211.207 1754
88.3.211.207 1418
88.3.211.207 5162
88.3.211.207 9509
88.3.211.207 163280
88.3.211.207 212783
88.3.211.207 42745
88.3.211.207 8213
88.3.211.207 1246
88.3.211.207 11218
88.3.211.207 3864
88.3.211.207 337676
88.3.211.207 4822
88.3.211.207 1311
88.3.211.207 338432
88.3.211.207 13780
88.3.211.207 5670
88.3.211.207 451
88.3.211.207 241411
66.249.66.28 5134
99.224.60.79 5999
99.224.60.79 10239
99.224.60.79 11424
99.224.60.79 33752
99.224.60.79 5285
99.224.60.79 5162
99.224.60.79 3752
99.224.60.79 7950
99.224.60.79 212783
99.224.60.79 5670
99.224.60.79 338432
99.224.60.79 1622
99.224.60.79 241411
99.224.60.79 1311
99.224.60.79 451
99.224.60.79 424
99.224.60.79 23377
99.224.60.79 11218
99.224.60.79 11218
99.224.60.79 11218
88.3.211.207 5130
88.3.211.207 22715
88.3.211.207 117473
88.3.211.207 12395
88.3.211.207 454
185.20.4.220 688
70.32.40.2 5999
173.252.90.109 271925
99.224.60.79 8616
99.224.60.79 454
99.224.60.79 5301
99.224.60.79 109835
128.59.40.117 469
99.224.60.79 5748
52.7.249.161 62822
66.249.66.28 5999
65.96.12.53 1754
65.96.12.53 1675
65.96.12.53 11424
65.96.12.53 9509
65.96.12.53 1418
65.96.12.53 3752
65.96.12.53 212783
65.96.12.53 44085
65.96.12.53 38787
65.96.12.53 7950
65.96.12.53 11218
65.96.12.53 11218
65.96.12.53 337676
65.96.12.53 1313
65.96.12.53 3864
65.96.12.53 4822
65.96.12.53 11218
65.96.12.53 444
65.96.12.53 11218
65.96.12.53 3062
65.96.12.53 1318426
65.96.12.53 1435
99.230.38.173 18599
41.46.67.160 143681
41.46.67.160 58657
41.46.67.160 17362
41.46.67.160 13995
65.96.12.53 557
74.178.53.235 428184
151.48.128.79 98159
54.157.9.156 534
121.204.11.124 799891
66.249.66.31 5599
217.69.133.219 7429
213.251.182.111 616
69.162.124.235 5999
65.17.253.220 21065
99.224.60.79 4618
207.46.13.69 2565
117.99.163.211 5212
117.99.163.211 1435
117.99.163.211 11424
117.99.163.211 33752
117.99.163.211 4590
117.99.163.211 3752
117.99.163.211 5285
117.99.163.211 45180
117.99.163.211 1754
117.99.163.211 23377
117.99.163.211 44085
117.99.163.211 1622
117.99.163.211 8213
117.99.163.211 7681
66.220.156.112 65071
117.99.163.211 454
99.224.60.79 5803
5.9.112.6 165954
99.224.60.79 6127
194.177.236.117 10239
194.177.236.117 11424
194.177.236.117 33752
194.177.236.117 1986
194.177.236.117 5285
194.177.236.117 3752
194.177.236.117 45180
194.177.236.117 23377
194.177.236.117 44085
194.177.236.117 7950
194.177.236.117 1622
194.177.236.117 11218
194.177.236.117 3864
194.177.236.117 337676
194.177.236.117 1313
194.177.236.117 4822
194.177.236.117 11218
194.177.236.117 424
194.177.236.117 11218
194.177.236.117 3062
180.76.15.18 6665
204.152.200.42 5999
194.177.236.117 1081656
194.177.236.117 454
194.177.236.117 134770
194.177.236.117 1435
78.46.156.169 543000
194.177.236.117 6447
194.177.236.117 55064
78.46.156.169 5360145
128.59.40.117 4133
207.46.13.69 18543
65.96.12.53 117473
65.96.12.53 12395
65.96.12.53 22715
144.76.71.83 5360145
194.177.236.117 8127
194.177.236.117 50569
194.177.236.117 70571
194.177.236.117 66211
66.249.66.28 898
117.99.163.211 150643
52.7.249.161 62822
207.46.13.69 598
207.46.13.69 597
207.46.13.69 597
207.46.13.69 598
207.46.13.69 606
207.46.13.69 598
207.46.13.69 632
207.46.13.69 598
207.46.13.69 598
207.46.13.69 602
66.249.66.100 6221
207.46.13.69 647
207.46.13.69 607
207.46.13.69 734
207.46.13.69 587
207.46.13.69 600
178.255.215.84 211
207.46.13.69 575
207.46.13.69 599
207.46.13.69 605
207.46.13.69 575
207.46.13.69 631
207.46.13.69 561
207.46.13.69 598
207.46.13.69 632
207.46.13.69 602
207.46.13.69 612
207.46.13.69 598
207.46.13.69 596
207.46.13.69 597
207.46.13.69 598
207.46.13.69 597
128.59.40.117 469
73.134.142.66 5999
73.134.142.66 212783
73.134.142.66 7950
73.134.142.66 1246
73.134.142.66 11218
73.134.142.66 5670
73.134.142.66 11218
73.134.142.66 241411
73.134.142.66 3062
73.134.142.66 264333
207.46.13.92 598
207.46.13.92 599
207.46.13.92 597
207.46.13.92 656
207.46.13.92 608
207.46.13.92 598
207.46.13.92 598
207.46.13.92 597
207.46.13.92 598
207.46.13.92 605
207.46.13.92 609
207.46.13.92 626
207.46.13.92 599
207.46.13.92 633
207.46.13.92 587
74.117.179.19 5999
207.46.13.92 581
207.46.13.92 590
81.91.253.250 21065
207.46.13.92 603
207.46.13.92 562
207.46.13.92 584
207.46.13.92 623
68.180.231.24 211
207.46.13.92 598
207.46.13.92 598
207.46.13.92 587
207.46.13.92 624
207.46.13.92 596
207.46.13.92 598
207.46.13.92 596
207.46.13.92 605
212.95.226.66 21065
1.39.8.0, 200
209.235.213.246 21065
94.228.34.248 672
207.46.13.69 597
176.62.80.88 145642
207.46.13.69 598
207.46.13.69 597
207.46.13.69 598
207.46.13.69 598
69.162.124.235 281
207.46.13.92 597
207.46.13.92 597
207.46.13.92 598
207.46.13.92 597
207.46.13.92 598
207.46.13.92 597
207.46.13.92 598
37.187.162.183 62822
207.46.13.74 597
207.46.13.74 598
207.46.13.74 649
66.249.66.28 4605
207.46.13.74 604
207.46.13.74 597
207.46.13.74 642
207.46.13.74 596
207.46.13.74 598
207.46.13.74 598
207.46.13.74 597
207.46.13.74 598
207.46.13.74 614
207.46.13.74 605
207.46.13.74 582
141.8.143.213 4447
125.209.235.170 4839
207.46.13.74 653
207.46.13.74 660
207.46.13.74 622
207.46.13.74 618
207.46.13.74 641
207.46.13.74 583
62.149.225.67 21065
207.46.13.74 571
207.46.13.74 601
207.46.13.74 580
207.46.13.74 619
207.46.13.74 567
207.46.13.74 598
141.8.143.213 4876
207.46.13.74 608
207.46.13.74 580
94.228.34.206 482
184.75.214.66 5999
207.46.13.74 607
207.46.13.92 211
207.46.13.74 621
207.46.13.74 581
207.46.13.74 594
207.46.13.74 598
207.46.13.74 598
207.46.13.74 605
52.7.249.161 62822
207.46.13.74 646
207.46.13.74 597
207.46.13.74 598
207.46.13.74 598
207.46.13.74 600
62.210.215.100 639
157.55.39.192 598
157.55.39.192 598
157.55.39.192 597
157.55.39.192 597
157.55.39.192 596
157.55.39.192 596
157.55.39.192 599
157.55.39.192 645
157.55.39.192 598
157.55.39.192 597
157.55.39.192 598
157.55.39.192 597
157.55.39.192 648
128.59.40.117 4133
157.55.39.192 635
157.55.39.192 610
54.183.147.184 284
209.6.199.206 4497
209.6.199.206 1675
209.6.199.206 4590
209.6.199.206 33752
209.6.199.206 1418
209.6.199.206 3752
209.6.199.206 9509
209.6.199.206 45180
209.6.199.206 8213
209.6.199.206 1622
209.6.199.206 1313
209.6.199.206 444
209.6.199.206 44085
209.6.199.206 1435
66.249.66.128 1986
157.55.39.192 590
157.55.39.192 595
157.55.39.192 627
157.55.39.192 585
157.55.39.192 614
157.55.39.192 612
157.55.39.192 634
157.55.39.192 562
157.55.39.192 615
157.55.39.192 617
157.55.39.192 599
157.55.39.192 598
157.55.39.192 598
157.55.39.192 614
157.55.39.192 621
178.135.80.52 898
74.108.42.209 5999
74.108.42.209 1675
74.108.42.209 11424
74.108.42.209 4590
74.108.42.209 1986
74.108.42.209 1418
74.108.42.209 3752
74.108.42.209 45180
74.108.42.209 212783
74.108.42.209 337676
74.108.42.209 241411
74.108.42.209 451
74.108.42.209 444
74.108.42.209 5670
74.108.42.209 3062
74.108.42.209 3864
74.108.42.209 11218
74.108.42.209 11218
74.108.42.209 4822
74.108.42.209 1313
74.108.42.209 42745
128.59.40.117 469
128.59.40.117 153
74.108.42.209 338432
74.108.42.209 1435
74.108.42.209 8616
74.108.42.209 454
114.144.161.13 227336
157.55.39.192 598
157.55.39.192 628
157.55.39.192 1059
157.55.39.192 597
157.55.39.192 598
157.55.39.192 604
157.55.39.192 598
157.55.39.192 597
157.55.39.192 598
157.55.39.192 598
54.183.147.184 260
98.7.88.245 5999
98.7.88.245 1675
98.7.88.245 1418
98.7.88.245 5162
141.8.143.213 4221
74.108.42.209 898
74.108.42.209 109835
104.223.8.121 898
128.59.40.117 5637
74.108.42.209 6127
69.162.124.235 281
141.8.143.213 4812
207.46.13.69 3130
198.20.245.236 553
74.108.42.209 5748
91.200.12.97 21065
74.89.123.58 1675
74.89.123.58 4590
74.89.123.58 1986
74.89.123.58 5162
74.89.123.58 5285
74.89.123.58 149756
74.89.123.58 45180
74.89.123.58 444
74.89.123.58 7681
74.89.123.58 1313
74.89.123.58 44085
74.108.42.209 5803
117.99.163.211 5183
117.99.163.211 20039
52.7.249.161 62822
68.180.231.24 211
74.89.123.58 454
128.59.40.117 6095
74.108.42.209 3285108
117.99.163.211 6054
66.249.66.28 898
208.115.113.84 14492
208.115.113.84 14672
208.115.113.84 17128
211.204.51.92 5999
211.204.51.92 10239
211.204.51.92 1754
211.204.51.92 4590
211.204.51.92 5162
211.204.51.92 9509
211.204.51.92 3752
211.204.51.92 3864
211.204.51.92 44085
211.204.51.92 42745
211.204.51.92 1622
211.204.51.92 13780
211.204.51.92 11218
211.204.51.92 5670
211.204.51.92 11218
211.204.51.92 7681
211.204.51.92 4822
211.204.51.92 3062
211.204.51.92 45180
211.204.51.92 264333
211.204.51.92 337676
211.204.51.92 1313
211.204.51.92 1435
66.249.66.28 898
104.194.197.118 898
119.57.158.139 5999
68.180.231.24 211
198.74.60.112 62822
144.36.185.50 10239
144.36.185.50 1418
144.36.185.50 163280
144.36.185.50 183896
144.36.185.50 183896
66.249.66.28 5140
207.46.13.74 1835905
100.8.247.221 10239
100.8.247.221 1675
100.8.247.221 11424
100.8.247.221 1418
100.8.247.221 5162
100.8.247.221 5285
100.8.247.221 3752
100.8.247.221 72777
100.8.247.221 454
100.8.247.221 557
100.8.247.221 1313
100.8.247.221 44085
68.180.231.24 211
66.249.66.28 12131
90.199.109.208 898
90.199.109.208 211
90.199.109.208 898
144.36.185.50 211
73.198.204.152 6873
73.198.204.152 4590
73.198.204.152 11424
73.198.204.152 33752
73.198.204.152 5162
73.198.204.152 9509
73.198.204.152 3752
73.198.204.152 4839
73.198.204.152 238206
73.198.204.152 225757
73.198.204.152 44085
73.198.204.152 1622
73.198.204.152 5113
73.198.204.152 454
73.198.204.152 557
73.198.204.152 1311
73.198.204.152 1313
180.76.15.154 21065
73.198.204.152 1435
69.162.124.235 5999
208.115.111.68 1244
180.76.15.142 21065
73.198.204.152 7707
128.59.40.117 469
128.59.40.117 5824
59.56.89.231 1753528
52.7.249.161 62822
73.198.204.152 190320
180.76.15.146 802351
207.46.13.69 211
66.87.146.68 1467333
68.180.231.24 211
72.46.153.26 5999
128.59.40.117 6095
91.208.99.2 553
128.59.40.117 5198
112.134.64.8 11424
112.134.64.8 10239
112.134.64.8 33752
112.134.64.8 4590
112.134.64.8 5162
112.134.64.8 9509
112.134.64.8 5285
112.134.64.8 45180
112.134.64.8 23377
112.134.64.8 163280
112.134.64.8 42745
112.134.64.8 241411
8.37.71.9 5223
117.99.163.211 1435
117.99.163.211 5162
117.99.163.211 11424
117.99.163.211 4590
117.99.163.211 1675
117.99.163.211 1986
117.99.163.211 1754
117.99.163.211 10239
117.99.163.211 8213
117.99.163.211 444
117.99.163.211 1311
117.99.163.211 1622
112.134.64.8 5670
112.134.64.8 7950
112.134.64.8 8213
112.134.64.8 1622
112.134.64.8 1246
112.134.64.8 11218
208.115.111.68 9947
112.134.64.8 11218
112.134.64.8 1311
112.134.64.8 3062
112.134.64.8 424
70.90.11.125 10239
70.90.11.125 1754
70.90.11.125 11424
70.90.11.125 1986
70.90.11.125 5162
70.90.11.125 5285
70.90.11.125 23377
70.90.11.125 45180
70.90.11.125 8213
70.90.11.125 454
70.90.11.125 444
70.90.11.125 1311
70.90.11.125 1313
70.90.11.125 1435
128.59.40.117 7354
74.108.42.209 7892
157.55.39.192 546
128.59.40.117 6565
70.90.11.125 19035
128.59.40.117 6578
128.59.40.117 7217
128.59.40.117 7046
8.37.70.234 5346
77.245.58.28 21065
207.46.13.69 7335
204.79.180.38 16529
64.90.160.178 21065
69.162.124.235 281
74.108.42.209 5980
52.7.249.161 62822
141.8.143.213 5061
208.115.111.68 627
54.165.176.73 211
66.249.66.10 1754
141.8.143.213 3868753
66.249.66.13 1675
207.46.13.92 5212
99.230.38.173 28264
74.108.42.209 82608
141.8.143.213 641220
76.118.63.220 6680
76.118.63.220 4590
76.118.63.220 33752
76.118.63.220 10239
76.118.63.220 5285
76.118.63.220 5162
76.118.63.220 9509
76.118.63.220 45180
76.118.63.220 1622
76.118.63.220 23377
76.118.63.220 444
76.118.63.220 1313
141.8.143.213 4203
128.59.40.117 469
141.8.143.213 3900
199.30.24.159 898
66.249.66.27 1675
66.249.66.27 10239
66.249.66.24 1754
199.30.24.159 493
199.30.24.159 1127
141.8.143.188 4032
66.249.66.28 9856
141.8.143.188 1455102
128.59.40.117 5924
141.8.143.188 4776
141.8.143.188 4114
66.249.66.56 1675
141.8.143.188 3984
165.124.238.61 5999
165.124.238.61 163280
165.124.238.61 152
128.59.40.117 4803
165.124.238.61 338432
141.8.143.188 4245
165.124.238.61 4133
165.124.238.61 337676
207.46.13.92 13868
198.50.159.225 26282
165.124.238.61 10896
141.8.143.213 5457
141.8.143.213 4720
85.55.225.36 211
207.46.13.92 211
68.180.231.24 211
117.18.0.21 1244
141.8.143.213 7181
207.46.13.74 74537
141.8.143.213 7344
141.8.143.213 5076
207.46.13.92 5026
141.8.143.213 5601
211.66.119.239 211
211.66.119.239 898
180.76.15.19 7230
141.8.143.213 4078
173.252.88.185 275584
141.8.143.213 4625
88.208.244.37 553
141.8.143.213 109676
52.7.249.161 62822
141.8.143.213 5879
69.162.124.235 5999
207.46.13.69 6437
141.8.143.213 6518
66.249.66.138 469
141.8.143.213 4490
128.59.40.117 6095
141.8.143.213 200898
14.148.131.109 1244
14.148.131.109 1244
125.209.235.184 4918
141.8.143.213 8217
164.132.161.58 5598
208.115.113.84 482
208.115.113.84 482
141.8.143.213 773787
180.76.15.6 7851
71.41.154.19 64643
108.41.184.22 1675
108.41.184.22 10239
108.41.184.22 5285
108.41.184.22 1622
108.41.184.22 454
180.76.15.19 4596
207.46.13.69 371093
207.46.13.69 34626
128.59.40.117 8397
87.253.132.201 389
66.249.66.28 643
71.172.87.249 10239
71.172.87.249 11424
71.172.87.249 1675
71.172.87.249 5162
71.172.87.249 5285
71.172.87.249 9509
71.172.87.249 163280
71.172.87.249 212783
71.172.87.249 38787
71.172.87.249 42745
71.172.87.249 44085
71.172.87.249 7681
71.172.87.249 11218
71.172.87.249 11218
71.172.87.249 444
71.172.87.249 1311
71.172.87.249 241411
71.172.87.249 5670
71.172.87.249 11218
71.172.87.249 3062
71.172.87.249 541552
76.116.131.14 5999
76.116.131.14 152
76.116.131.14 264333
76.116.131.14 338432
202.180.34.186 482
98.5.95.46 4590
98.5.95.46 33752
98.5.95.46 10239
98.5.95.46 1418
98.5.95.46 1986
98.5.95.46 3752
98.5.95.46 45180
98.5.95.46 264333
98.5.95.46 42745
98.5.95.46 44085
98.5.95.46 8213
98.5.95.46 1246
70.214.66.153 6662
98.5.95.46 337676
98.5.95.46 11218
98.5.95.46 7681
70.214.66.153 33752
70.214.66.153 45180
70.214.66.153 1986
98.5.95.46 444
98.5.95.46 1311
98.5.95.46 241411
98.5.95.46 424
98.5.95.46 11218
98.5.95.46 7950
98.5.95.46 451
108.168.196.54 27070
52.37.147.174 287364
95.237.134.204 5999
101.226.169.214 527
95.237.134.204 9509
95.237.134.204 11424
95.237.134.204 5162
95.237.134.204 5285
95.237.134.204 212783
95.237.134.204 4822
95.237.134.204 42745
95.237.134.204 1311
95.237.134.204 3062
95.237.134.204 264333
95.237.134.204 444
95.237.134.204 424
95.237.134.204 1622
95.237.134.204 1313
95.237.134.204 338432
95.237.134.204 7681
95.237.134.204 1246
27.106.8.78 10239
27.106.8.78 1754
27.106.8.78 33752
95.237.134.204 1318426
95.237.134.204 241411
27.106.8.78 1986
27.106.8.78 1418
27.106.8.78 5285
95.237.134.204 1435
27.106.8.78 44085
27.106.8.78 444
27.106.8.78 45180
27.106.8.78 8213
27.106.8.78 1622
27.106.8.78 1313
27.106.8.78 1435
180.76.15.135 4890
128.59.40.117 6105
112.134.64.8 5999
198.74.60.112 62822
180.76.15.12 597
69.162.124.235 281
65.17.253.220 21065
128.59.40.117 469
164.132.161.55 656
80.188.83.152 260037
80.188.83.152 4657
80.188.83.152 1675
80.188.83.152 33752
80.188.83.152 11424
80.188.83.152 5162
80.188.83.152 9509
80.188.83.152 3752
80.188.83.152 23377
80.188.83.152 44085
80.188.83.152 8213
80.188.83.152 1622
80.188.83.152 1313
80.188.83.152 1435
70.214.66.153 27344
70.214.66.153 18866
70.214.66.153 29030
66.249.66.28 4707
66.249.66.28 3941
46.20.45.18 5999
24.167.160.90 5999
24.167.160.90 1675
24.167.160.90 1986
24.167.160.90 5162
24.167.160.90 11424
24.167.160.90 33752
52.0.19.0 320
124.170.11.248 5999
124.170.11.248 1675
124.170.11.248 33752
124.170.11.248 4590
124.170.11.248 5162
124.170.11.248 9509
124.170.11.248 3752
124.170.11.248 44085
124.170.11.248 45180
124.170.11.248 264333
124.170.11.248 241411
124.170.11.248 212783
124.170.11.248 451
124.170.11.248 444
124.170.11.248 5670
124.170.11.248 3062
124.170.11.248 11218
124.170.11.248 11218
124.170.11.248 11218
124.170.11.248 424
124.170.11.248 7950
124.170.11.248 338432
66.249.64.146 4232
127.0.0.1, 200
108.176.52.250 10239
108.176.52.250 1754
108.176.52.250 4590
108.176.52.250 1986
108.176.52.250 5285
108.176.52.250 3752
108.176.52.250 230974
108.176.52.250 1622
108.176.52.250 454
108.176.52.250 44085
108.176.52.250 1311
108.176.52.250 1313
124.170.11.248 8616
124.170.11.248 11424
124.170.11.248 1986
124.170.11.248 1418
124.170.11.248 5285
124.170.11.248 557
157.55.39.192 3397
157.55.39.192 31075
31.15.10.37 553
182.118.25.205 19035
66.249.66.28 6739
207.46.13.74 11267
68.9.129.236 1318426
96.27.72.74 1675
96.27.72.74 33752
96.27.72.74 4590
96.27.72.74 1986
96.27.72.74 5162
96.27.72.74 9509
96.27.72.74 72777
96.27.72.74 271925
96.27.72.74 557
96.27.72.74 1311
96.27.72.74 1313
96.27.72.74 44085
91.200.12.97 609
91.200.12.97 21065
91.228.167.130 30686
123.203.88.70 1435
123.203.88.70 898
123.203.88.70 7766
123.203.88.70 7766
123.203.88.70 898
208.109.21.238 21065
99.230.38.173 20783
128.59.40.117 469
212.95.226.66 21065
68.180.231.24 1452329
24.151.32.82 1675
24.151.32.82 1754
24.151.32.82 11424
24.151.32.82 1986
24.151.32.82 5162
24.151.32.82 3752
24.151.32.82 45180
24.151.32.82 5670
24.151.32.82 444
24.151.32.82 241411
24.151.32.82 3864
24.151.32.82 1311
24.151.32.82 38787
24.151.32.82 337676
24.151.32.82 23377
24.151.32.82 1313
24.151.32.82 7681
24.151.32.82 1622
24.151.32.82 7950
24.151.32.82 11218
24.151.32.82 1318426
209.235.213.246 21065
176.31.241.60 287364
69.162.124.235 281
157.55.39.192 211
207.46.13.69 30771
108.176.21.213 5870
124.170.11.248 6518
124.170.11.248 1675
124.170.11.248 33752
124.170.11.248 4590
124.170.11.248 5162
108.176.21.213 1675
173.252.90.111 3551598
124.170.11.248 5285
207.46.13.69 546
207.46.13.69 5212
77.75.78.167 62438
100.1.205.12 10239
100.1.205.12 1754
100.1.205.12 33752
66.249.66.28 7033
100.1.205.12 5162
100.1.205.12 5285
100.1.205.12 3752
100.1.205.12 45180
100.1.205.12 337676
100.1.205.12 264333
100.1.205.12 8213
100.1.205.12 23377
100.1.205.12 13780
100.1.205.12 1246
100.1.205.12 1622
100.1.205.12 11218
100.1.205.12 11218
100.1.205.12 7681
100.1.205.12 3062
100.1.205.12 7950
100.1.205.12 4822
100.1.205.12 241411
124.170.11.248 10239
124.170.11.248 1754
124.170.11.248 11424
124.170.11.248 1986
124.170.11.248 1418
124.170.11.248 5285
100.1.205.12 10602
100.1.205.12 271925
100.1.205.12 454
68.180.231.24 3131
127.0.0.1, 200
108.176.21.213 5162
108.176.21.213 1418
108.176.21.213 33752
108.176.21.213 5285
108.176.21.213 3752
108.176.21.213 1622
108.176.21.213 13780
108.176.21.213 444
37.187.162.183 211
95.211.217.68 5999
124.170.11.248 10239
124.170.11.248 1754
124.170.11.248 11424
124.170.11.248 4590
124.170.11.248 5162
124.170.11.248 9509
124.170.11.248 3752
124.170.11.248 23377
124.170.11.248 8213
124.170.11.248 1622
66.249.66.164 469
124.170.11.248 557
124.170.11.248 1311
66.249.66.170 1754
66.249.66.160 1675
66.249.66.111 469
66.249.66.107 1754
66.249.92.29 642
119.57.158.139 5999
97.33.1.169 241411
97.33.1.169 264333
54.177.225.249 62822
68.180.231.24 211
128.59.40.117 7905
108.176.21.213 1313
208.81.37.174, 200
24.90.155.217 10239
24.90.155.217 11424
24.90.155.217 1675
24.90.155.217 1986
24.90.155.217 5285
24.90.155.217 3752
24.90.155.217 45180
24.90.155.217 1311
24.90.155.217 1313
24.90.155.217 23377
24.90.155.217 424
97.33.1.169 877488
52.7.249.161 62822
66.249.84.208 365020
197.211.52.18 10239
197.211.52.18 1754
197.211.52.18 11424
197.211.52.18 1986
197.211.52.18 1418
197.211.52.18 5285
197.211.52.18 152
197.211.52.18 60586
197.211.52.18 152
197.211.52.18 7681
197.211.52.18 44085
197.211.52.18 1311
197.211.52.18 424
23.239.9.218 554
104.239.198.35 287364
45.121.225.249 8616
45.121.225.249 10239
45.121.225.249 33752
45.121.225.249 4590
45.121.225.249 1418
45.121.225.249 5162
45.121.225.249 9509
45.121.225.249 557
45.121.225.249 13780
45.121.225.249 8213
45.121.225.249 44085
45.121.225.249 424
45.121.225.249 1311
99.230.38.173 19429
140.115.111.130 24608
99.230.38.173 15455
128.59.40.117 469
128.59.40.117 5019
106.38.241.102 19035
69.162.124.235 5999
207.46.13.74 638
180.76.15.162 4242
199.16.156.125 4863
128.59.102.65 5999
128.59.102.65 1675
128.59.102.65 4590
128.59.102.65 33752
128.59.102.65 5162
128.59.102.65 9509
128.59.102.65 3752
128.59.102.65 212783
128.59.102.65 264333
128.59.102.65 338432
128.59.102.65 7950
100.1.205.12 6777
100.1.205.12 151354
100.1.205.12 166659
100.1.205.12 228115
207.46.13.69 6957
67.87.36.10 151
104.162.1.1 1675
104.162.1.1 4590
104.162.1.1 33752
104.162.1.1 1754
104.162.1.1 1418
104.162.1.1 9509
104.162.1.1 45180
104.162.1.1 1311
104.162.1.1 7681
104.162.1.1 1313
104.162.1.1 44085
207.46.13.92 546
76.72.167.90 5999
100.1.205.12 6204
207.46.13.74 7230
128.59.40.117 4133
182.118.22.142 526
182.118.25.207 19035
123.120.59.42 898
123.120.59.42 898
128.59.40.117 5170
180.76.15.134 2694728
8.29.198.25 1123
66.249.66.144 7065
141.8.143.209 32269
104.162.1.1 7355
66.249.66.28 8760
128.59.40.117 469
66.249.66.28 640
157.55.39.140 58848
145.132.169.223 898
112.134.64.8 5999
112.134.64.8 338432
99.230.38.173 15433
69.162.124.235 281
65.17.253.220 21065
66.249.66.28 5870
97.89.16.117, 200
54.165.176.73 211
207.46.13.74 4843
66.249.92.29 211
72.209.129.213 3623
72.209.129.213 10239
72.209.129.213 1754
72.209.129.213 11424
72.209.129.213 1986
72.209.129.213 1418
72.209.129.213 5285
72.209.129.213 45180
72.209.129.213 13780
72.209.129.213 23377
72.209.129.213 444
72.209.129.213 7681
72.209.129.213 424
207.46.13.74 546
172.56.18.185 1754
172.56.18.185 33752
172.56.18.185 1675
172.56.18.185 1418
172.56.18.185 3752
172.56.18.185 9509
172.56.18.185 45180
207.46.13.74 5212
172.56.18.185 557
172.56.18.185 454
172.56.18.185 424
172.56.18.185 1313
172.56.18.185 44085
68.180.231.24 898
77.252.206.157 211
188.58.60.47 10239
188.58.60.47 1986
188.58.60.47 1418
188.58.60.47 1754
188.58.60.47 5162
188.58.60.47 1675
188.58.60.47 4590
188.58.60.47 557
188.58.60.47 444
188.58.60.47 1313
188.58.60.47 424
188.58.60.47 23377
173.233.117.143 7892
173.233.117.143 1675
173.233.117.143 11424
173.233.117.143 1754
173.233.117.143 5285
173.233.117.143 3752
173.233.117.143 9509
173.233.117.143 1622
173.233.117.143 454
173.233.117.143 1313
173.233.117.143 44085
66.249.66.28 5700
188.58.60.47 70571
188.58.60.47 50569
188.58.60.47 75636
188.58.60.47 155148
173.252.112.104 45180
128.59.40.117 5999
128.59.40.117 4133
107.77.76.25 1541236
45.56.109.238 62822
73.132.71.194 5130
73.132.71.194 1675
73.132.71.194 11424
73.132.71.194 1754
73.132.71.194 1418
73.132.71.194 9509
73.132.71.194 3752
73.132.71.194 12395
73.132.71.194 22715
73.132.71.194 37635
73.132.71.194 1622
73.132.71.194 44085
73.132.71.194 1311
73.132.71.194 444
73.132.71.194 424
73.132.71.194 7681
198.50.159.225 40174
77.245.58.28 21065
81.91.253.250 21065
139.255.56.114 4654
107.77.76.25 1675
107.77.76.25 10239
107.77.76.25 11424
107.77.76.25 1986
107.77.76.25 4590
139.255.56.114 1675
139.255.56.114 33752
139.255.56.114 4590
139.255.56.114 5162
139.255.56.114 9509
107.77.76.25 9509
139.255.56.114 5285
107.77.76.25 45180
139.255.56.114 45180
107.77.76.25 23803
107.77.76.25 20877
107.77.76.25 454
107.77.76.25 557
139.255.56.114 444
107.77.76.25 1622
107.77.76.25 444
107.77.76.25 1311
66.249.66.28 5870
107.77.76.25 424
107.77.76.25 23377
139.255.56.114 8213
139.255.56.114 1622
139.255.56.114 1313
139.255.56.114 1435
182.118.41.186 5999
128.59.40.117 6127
69.162.124.235 281
10.192.53.40, 200
133.130.49.166 15191
133.130.49.166 19035
133.130.49.166 15694
68.180.231.24 211
180.76.15.26 3636
133.130.49.166 4616
207.46.13.92 556
68.180.231.24 6738
133.130.49.166 5212
66.163.125.144 1754
66.163.125.144 10239
66.163.125.144 11424
66.163.125.144 5162
66.163.125.144 1418
66.163.125.144 5285
66.163.125.144 45180
66.163.125.144 13780
66.163.125.144 23377
66.163.125.144 557
66.163.125.144 444
66.163.125.144 7681
133.130.49.166 6422
128.68.14.110 898
199.59.148.209 469
133.130.49.166 6641
54.236.1.73 16067
173.233.117.143 128017
133.130.49.166 4511
107.77.76.25 7239
133.130.49.166 6462
173.233.117.143 4575
173.233.117.143 164644
133.130.49.166 6508
128.59.40.117 6095
133.130.49.166 4574
173.233.117.143 53578
32.212.12.247 5999
32.212.12.247 1675
32.212.12.247 11424
32.212.12.247 4590
32.212.12.247 5162
32.212.12.247 9509
32.212.12.247 3752
32.212.12.247 44085
32.212.12.247 163280
32.212.12.247 212783
32.212.12.247 8213
32.212.12.247 13780
32.212.12.247 7950
32.212.12.247 1246
32.212.12.247 1318426
133.130.49.166 5562
32.212.12.247 7681
32.212.12.247 11218
32.212.12.247 3062
32.212.12.247 11218
32.212.12.247 11218
32.212.12.247 1313
32.212.12.247 338432
188.58.60.47 8614
188.58.60.47 71491
188.58.60.47 63466
188.58.60.47 69208
188.58.60.47 71196
188.58.60.47 69083
199.16.156.126 8616
133.130.49.166 8217
68.180.231.24 211
66.249.66.28 21961
133.130.49.166 4233
155.4.131.99 5999
155.4.131.99 1675
155.4.131.99 33752
155.4.131.99 4590
74.73.61.247 5212
155.4.131.99 1418
155.4.131.99 9509
155.4.131.99 3752
74.73.61.247 10239
74.73.61.247 1754
74.73.61.247 11424
155.4.131.99 1246
155.4.131.99 11218
74.73.61.247 1986
74.73.61.247 5162
74.73.61.247 9509
74.73.61.247 3752
74.73.61.247 45180
155.4.131.99 1622
155.4.131.99 5670
74.73.61.247 44085
74.73.61.247 444
155.4.131.99 1311
74.73.61.247 7681
74.73.61.247 1313
155.4.131.99 4822
155.4.131.99 451
155.4.131.99 7950
155.4.131.99 7681
155.4.131.99 8213
155.4.131.99 3062
155.4.131.99 45180
155.4.131.99 337676
155.4.131.99 1313
155.4.131.99 1318426
66.249.66.5 555
155.4.131.99 1435
133.130.49.166 4168
207.46.13.69 542
133.130.49.166 8616
62.210.215.100 646
133.130.49.166 6865
54.165.176.73 211
69.162.124.235 5999
133.130.49.166 9907
133.130.49.166 7215
173.233.117.143 150643
128.59.40.117 4102
52.7.249.161 62822
133.130.49.166 4757
195.154.233.224 189688
133.130.49.166 4997
8.37.70.135 5042
64.222.164.230 10239
64.222.164.230 1754
64.222.164.230 11424
64.222.164.230 1986
64.222.164.230 1418
64.222.164.230 5285
64.222.164.230 45180
64.222.164.230 8213
64.222.164.230 23377
64.222.164.230 13780
64.222.164.230 1313
64.222.164.230 424
133.130.49.166 4809
66.220.158.96 102570
66.249.66.28 10239
66.249.66.28 4590
66.249.66.28 33752
66.249.66.28 1986
133.130.49.166 5134
66.249.66.28 5285
66.249.66.28 5162
66.249.66.28 3752
184.75.214.66 5999
66.249.66.28 44085
54.186.28.49 287364
133.130.49.166 5359
62.210.248.185 163624
24.193.90.224 10239
24.193.90.224 14742
24.193.90.224 64643
24.193.90.224 67084
24.193.90.224 68136
24.193.90.224 112496
24.193.90.224 1311
133.130.49.166 9783
133.130.49.166 4147
188.58.60.47 17016
133.130.49.166 5207
128.59.40.117 4133
133.130.49.166 5183
5.9.94.207 17388
8.37.70.80 469
195.154.172.143 189688
216.196.231.99 10239
216.196.231.99 1754
216.196.231.99 11424
216.196.231.99 1986
216.196.231.99 1418
216.196.231.99 5285
216.196.231.99 45180
216.196.231.99 44085
216.196.231.99 163280
216.196.231.99 42745
133.130.49.166 7616
216.196.231.99 264333
216.196.231.99 13780
216.196.231.99 3864
216.196.231.99 11218
216.196.231.99 5670
220.72.7.131 1675
220.72.7.131 11424
220.72.7.131 10239
220.72.7.131 4590
216.196.231.99 451
216.196.231.99 7950
216.196.231.99 3062
216.196.231.99 1246
220.72.7.131 1986
220.72.7.131 5285
220.72.7.131 3752
220.72.7.131 5162
216.196.231.99 241411
220.72.7.131 134770
216.196.231.99 1435
220.72.7.131 8213
220.72.7.131 1622
220.72.7.131 44085
220.72.7.131 1313
220.72.7.131 454
66.249.66.28 636
73.212.220.113 1675
73.212.220.113 4590
73.212.220.113 33752
73.212.220.113 1986
73.212.220.113 5162
73.212.220.113 3752
73.212.220.113 7950
73.212.220.113 163280
73.212.220.113 337676
73.212.220.113 241411
73.212.220.113 1622
73.212.220.113 264333
73.212.220.113 7681
73.212.220.113 4822
73.212.220.113 23377
73.212.220.113 424
73.212.220.113 11218
73.212.220.113 42745
73.212.220.113 11218
73.212.220.113 1318426
133.130.49.166 4920
73.212.220.113 134770
73.212.220.113 557
86.136.231.7 1754
86.136.231.7 10239
86.136.231.7 4590
86.136.231.7 5162
86.136.231.7 1986
86.136.231.7 5285
86.136.231.7 1435
86.136.231.7 44085
86.136.231.7 8213
86.136.231.7 444
86.136.231.7 7681
133.130.49.166 24746
66.163.125.144 151
188.58.60.47 7299
133.130.49.166 5137
66.163.125.144 14813
128.59.40.117 469
133.130.49.166 6333
66.249.66.34 1763465
133.130.49.166 5091
107.77.76.117 5285
107.77.76.117 1418
107.77.76.117 4590
14.175.138.146 59373
133.130.49.166 6665
172.56.34.147 5999
172.56.34.147 1754
172.56.34.147 4590
172.56.34.147 10239
133.130.49.166 5870
66.249.92.29 643
73.212.220.113 98208
133.130.49.166 5879
69.162.124.235 281
133.130.49.166 7065
65.17.253.220 21065
52.7.249.161 62822
50.153.250.74 10239
50.153.250.74 33752
50.153.250.74 11424
50.153.250.74 1986
50.153.250.74 1418
50.153.250.74 3752
50.153.250.74 45180
50.153.250.74 163280
50.153.250.74 264333
50.153.250.74 8213
50.153.250.74 13780
50.153.250.74 7681
50.153.250.74 241411
50.153.250.74 3062
50.153.250.74 11218
50.153.250.74 3864
50.153.250.74 23377
50.153.250.74 42745
50.153.250.74 424
50.153.250.74 4822
50.153.250.74 7950
50.153.250.74 1435
133.130.49.166 6693
67.188.98.56 10239
67.188.98.56 1754
67.188.98.56 11424
67.188.98.56 1986
67.188.98.56 5162
67.188.98.56 5285
67.188.98.56 13801
67.188.98.56 44085
67.188.98.56 10578
67.188.98.56 8213
67.188.98.56 10189
67.188.98.56 444
67.188.98.56 7681
67.188.98.56 557
67.188.98.56 6831
67.188.98.56 12058
67.188.98.56 1313
50.153.250.74 6518
50.153.250.74 85516
50.153.250.74 73388
50.153.250.74 98568
50.153.250.74 454
67.188.98.56 1435
133.130.49.166 5031
66.249.69.76 1754
121.54.44.89 1675
121.54.44.89 11424
121.54.44.89 33752
121.54.44.89 5162
121.54.44.89 9509
121.54.44.89 5285
121.54.44.89 45180
121.54.44.89 47194
121.54.44.89 1622
121.54.44.89 444
121.54.44.89 7681
50.172.161.15 3842
50.172.161.15 4590
50.172.161.15 11424
50.172.161.15 1675
50.172.161.15 3752
50.172.161.15 1418
50.172.161.15 9509
50.172.161.15 45180
50.172.161.15 444
50.172.161.15 1311
50.172.161.15 1313
50.172.161.15 44085
50.172.161.15 23377
121.54.44.89 1435
133.130.49.166 5154
188.58.60.47 60647
133.130.49.166 7516
67.68.60.92 5999
67.68.60.92 1675
67.68.60.92 1754
67.68.60.92 33752
67.68.60.92 1986
67.68.60.92 1418
67.68.60.92 5162
67.68.60.92 212783
67.68.60.92 45180
67.68.60.92 451
67.68.60.92 241411
67.68.60.92 7681
67.68.60.92 44085
67.68.60.92 264333
74.71.124.56 1675
74.71.124.56 1754
74.71.124.56 4590
67.68.60.92 337676
67.68.60.92 23377
74.71.124.56 1986
144.76.14.47 5999
67.68.60.92 11218
67.68.60.92 11218
67.68.60.92 11218
74.71.124.56 9509
74.71.124.56 3752
67.68.60.92 42745
67.68.60.92 1318426
74.71.124.56 454
74.71.124.56 1311
74.71.124.56 1313
74.71.124.56 44085
199.30.24.21 898
199.30.24.21 898
199.30.24.21 4245
67.68.60.92 8616
67.68.60.92 454
199.30.24.21 493
133.130.49.166 7406
199.30.24.21 1127
144.36.185.50 310
144.36.185.50 212783
144.36.185.50 241411
144.36.185.50 189688
144.36.185.50 199824
144.36.185.50 451
144.36.185.50 11218
144.36.185.50 3864
50.153.250.74 9783
144.36.185.50 3062
144.36.185.50 38787
144.36.185.50 1246
144.76.93.46 482
133.130.49.166 6421
144.76.93.46 44051
144.76.93.46 19119
50.153.250.74 10896
50.153.250.74 112979
74.71.124.56 130066
144.76.93.46 23652
144.76.93.46 18044
144.76.93.46 16512
133.130.49.166 6204
54.151.34.231 211
144.76.93.46 25253
144.36.185.50 166659
144.36.185.50 166323
144.36.185.50 272314
50.153.250.74 5673
50.153.250.74 10578
50.153.250.74 10189
50.153.250.74 17029
50.153.250.74 32112
50.153.250.74 8344
128.59.40.117 4636
144.36.185.50 282831
133.130.49.166 7230
31.13.113.76 117361
133.130.49.166 6643
50.153.250.74 7321
5.80.46.180 584
5.80.46.180 898
5.80.46.180 898
5.80.46.180 898
133.130.49.166 7230
207.46.13.74 28230
133.130.49.166 6518
188.58.60.47 18615
50.153.250.74 8616
74.71.124.56 6536
133.130.49.166 4618
65.55.210.16 444
133.130.49.166 8047
74.65.194.193 7344
74.65.194.193 1675
74.65.194.193 33752
74.65.194.193 4590
74.65.194.193 5162
74.65.194.193 9509
74.65.194.193 3752
74.65.194.193 45180
74.65.194.193 82608
74.65.194.193 13780
74.65.194.193 1622
74.65.194.193 7681
74.65.194.193 424
74.65.194.193 1435
144.36.185.50 337676
144.36.185.50 501008
133.130.49.166 7778
68.180.231.24 211
180.76.15.11 4283
144.36.185.50 211
133.130.49.166 6799
77.245.58.28 21065
185.20.4.143 22406
27.33.24.166 4590
27.33.24.166 33752
27.33.24.166 5285
27.33.24.166 11629
27.33.24.166 64089
133.130.49.166 7371
43.225.249.113 10239
43.225.249.113 1754
43.225.249.113 11424
81.91.253.250 21065
43.225.249.113 5162
43.225.249.113 9509
27.33.24.166 424
27.33.24.166 3062
43.225.249.113 23377
43.225.249.113 45180
43.225.249.113 13780
43.225.249.113 7681
43.225.249.113 1313
212.95.226.66 21065
133.130.49.166 5575
128.59.40.117 469
117.216.211.133, 200
68.180.231.24 211
64.90.160.178 21065
133.130.49.166 6221
66.249.75.225 31923
69.162.124.235 281
223.223.151.253 6873
223.223.151.253 1675
223.223.151.253 33752
223.223.151.253 4590
223.223.151.253 5162
223.223.151.253 9509
223.223.151.253 5285
223.223.151.253 23377
223.223.151.253 6988
223.223.151.253 13780
223.223.151.253 8213
223.223.151.253 557
223.223.151.253 7681
223.223.151.253 45180
223.223.151.253 194359
223.223.151.253 1311
223.223.151.253 238206
223.223.151.253 1313
141.8.143.213 4902
133.130.49.166 5673
66.163.125.144 5502
188.58.60.47 5999
188.58.60.47 5670
188.58.60.47 4822
188.58.60.47 1246
188.58.60.47 338432
188.58.60.47 11218
188.58.60.47 3864
188.58.60.47 337676
188.58.60.47 1318426
117.216.211.133, 200
141.8.143.213 5923
133.130.49.166 5999
188.58.60.47 13801
188.58.60.47 10578
188.58.60.47 10189
188.58.60.47 6831
188.58.60.47 12058
141.8.143.213 14174
133.130.49.166 543
62.149.225.67 21065
133.130.49.166 7587
138.28.213.62 557
141.8.143.213 4913
223.223.151.253 457673
66.249.66.28 4227
141.8.143.213 7413
133.130.49.166 7554
180.76.15.160 58223
141.8.143.213 4060
68.98.4.127 898
68.98.4.127 6095
68.98.4.127 898
133.130.49.166 4309
68.180.231.24 7217
141.8.143.213 10897
133.130.49.166 7905
141.8.143.213 5091
133.130.49.166 7387
141.8.143.213 4397
42.60.123.172 1675
42.60.123.172 1754
42.60.123.172 11424
42.60.123.172 1986
42.60.123.172 1418
42.60.123.172 5285
42.60.123.172 45180
42.60.123.172 212783
24.91.19.135 6777
42.60.123.172 264333
24.91.19.135 166659
24.91.19.135 228115
24.91.19.135 272314
42.60.123.172 23377
42.60.123.172 42745
42.60.123.172 8213
42.60.123.172 13780
133.130.49.166 5066
42.60.123.172 11218
24.91.19.135 4168
42.60.123.172 11218
42.60.123.172 11218
42.60.123.172 1313
42.60.123.172 424
42.60.123.172 1246
42.60.123.172 3062
42.60.123.172 5670
141.8.143.213 5973
133.130.49.166 6073
141.8.143.213 5413
188.58.60.47 152
188.58.60.47 152
188.58.60.47 1318426
133.130.49.166 9856
208.115.113.84 695
188.58.60.47 3062
133.130.49.166 5331
141.8.143.213 4753
66.249.75.241 3977
91.200.12.97 609
119.57.158.139 5999
133.130.49.166 8760
8.29.198.25 636
133.130.49.166 5157
207.46.13.69 7291359
52.7.249.161 62822
50.153.250.74 6680
133.130.49.166 5736
87.253.132.201 389
133.130.49.166 5980
133.130.49.166 6795
73.167.107.49 610
73.167.107.49 898
73.167.107.49 898
73.167.107.49 898
73.167.107.49 898
202.125.77.178 1675
202.125.77.178 1754
202.125.77.178 11424
202.125.77.178 1986
133.130.49.166 4541
202.125.77.178 1418
202.125.77.178 5285
202.125.77.178 45180
202.125.77.178 8213
202.125.77.178 44085
202.125.77.178 454
202.125.77.178 7681
202.125.77.178 1313
202.125.77.178 424
207.46.13.92 4113
207.46.13.92 4118
128.59.40.117 469
207.46.13.92 15694
207.46.13.92 7768
220.72.7.131 5564
220.72.7.131 33752
220.72.7.131 11424
207.46.13.92 4906
220.72.7.131 557
220.72.7.131 23377
207.46.13.92 5601
207.46.13.92 11337
207.46.13.92 4181
207.46.13.92 6921
207.46.13.92 6232
207.46.13.92 5019
133.130.49.166 17280
207.46.13.92 7890
207.46.13.92 8465
207.46.13.92 3343
207.46.13.92 4924
92.111.38.118 251952
92.111.38.118 898
66.249.75.233 652
133.130.49.166 6873
92.111.38.118 759507
207.46.13.92 229644
207.46.13.92 51362
207.46.13.92 227336
207.46.13.92 227336
207.46.13.92 181000
106.219.62.235 15220
207.46.13.92 196725
207.46.13.92 3872
207.46.13.92 5065
106.219.62.235 10239
106.219.62.235 4590
106.219.62.235 1754
106.219.62.235 11424
207.46.13.92 4595
207.46.13.74 3088
207.46.13.92 3827
106.219.62.235 1418
207.46.13.92 4449
133.130.49.166 6777
207.46.13.92 4015
207.46.13.92 9598
106.219.62.235 5162
207.46.13.92 181000
66.249.75.233 4783
106.219.62.235 9509
122.206.190.100 1244
207.46.13.69 4615
207.46.13.69 4156
207.46.13.69 5145
207.46.13.69 6865
207.46.13.69 6643
207.46.13.69 17280
207.46.13.69 11902
207.46.13.69 5308
133.130.49.166 12650
207.46.13.69 4347
207.46.13.69 8217
207.46.13.69 5715
207.46.13.69 7661
207.46.13.69 10812
207.46.13.69 4125
207.46.13.69 3344
69.200.246.225 5999
69.200.246.225 10239
69.200.246.225 1754
69.200.246.225 4590
69.200.246.225 5162
69.200.246.225 9509
69.200.246.225 3752
69.200.246.225 44085
69.200.246.225 163280
69.200.246.225 8213
69.200.246.225 4822
69.200.246.225 5670
69.200.246.225 1246
69.200.246.225 11218
69.200.246.225 11218
69.200.246.225 13780
69.200.246.225 7681
69.200.246.225 1622
69.200.246.225 1313
69.200.246.225 241411
69.200.246.225 212783
106.51.19.21, 200
106.51.19.21, 304
106.51.19.21, 304
106.51.19.21, 200
106.51.19.21, 200
106.51.19.21, 200
106.51.19.21, 200
69.200.246.225 1318426
69.200.246.225 8616
69.200.246.225 454
178.255.153.2 5999
106.51.19.21, 200
106.51.19.21, 200
106.51.19.21, 200
68.180.231.24 211
106.51.19.21, 200
69.200.246.225 109835
69.200.246.225 75436
133.130.49.166 8127
106.219.62.235 1622
68.32.187.39 4616
106.219.62.235 8213
68.32.187.39 1675
68.32.187.39 4590
68.32.187.39 33752
68.32.187.39 1418
68.32.187.39 9509
68.32.187.39 1435
68.32.187.39 45180
68.32.187.39 8213
68.32.187.39 13780
68.32.187.39 1622
68.32.187.39 557
68.32.187.39 7681
106.219.62.235 444
163.172.7.229 19035
163.172.7.229 19035
207.46.13.74 5754
207.46.13.74 8760
106.219.62.235 557
207.46.13.74 4168
207.46.13.74 4635
108.168.196.54 21065
207.46.13.74 6363
108.168.196.54 287364
207.46.13.74 5464
133.130.49.166 10801
207.46.13.74 5449
207.46.13.74 4824
106.219.62.235 23377
207.46.13.74 90867
207.46.13.74 20942
207.46.13.74 181000
207.46.13.74 181000
207.46.13.74 3797
133.130.49.166 6194
207.46.13.74 4535
207.46.13.74 4021
207.46.13.74 3852
207.46.13.74 4190
207.46.13.74 3870
207.46.13.74 4144
207.46.13.74 5439
133.130.49.166 5134
207.46.13.74 3952
207.46.13.74 6454
207.46.13.74 5524
207.46.13.74 4954
207.46.13.74 181000
207.46.13.74 6698
207.46.13.74 6956
207.46.13.74 19135
207.46.13.74 181000
207.46.13.74 7445
163.172.7.229 19035
133.130.49.166 7578
66.249.69.101 7905
207.46.13.74 7841
207.46.13.74 7797
207.46.13.74 7210
207.46.13.74 7429
133.130.49.166 4936
207.46.13.74 14079
128.59.40.117 469
128.59.40.117 6095
207.46.13.74 4893
5.206.237.169 45180
207.46.13.74 4036
207.46.13.74 4248
207.46.13.74 4041
69.200.246.225 4884
66.249.75.225 7803
69.200.246.225 5134
103.205.218.5 5042
207.46.13.74 5022
207.46.13.74 20452
207.46.13.74 3778
207.46.13.74 5350
69.200.246.225 8083
106.51.19.21 454
106.51.19.21 45180
106.51.19.21 44085
106.51.19.21 7681
128.59.40.117 3978
207.46.13.69 5225
207.46.13.69 5261
207.46.13.69 181000
207.46.13.69 22634
207.46.13.69 94812
207.46.13.69 108214
207.46.13.69 4546
207.46.13.69 31027
133.130.49.166 7892
207.46.13.69 5911
207.46.13.69 181000
207.46.13.69 135665
207.46.13.69 8217
207.46.13.69 3609
207.46.13.69 4643
207.46.13.69 3781
207.46.13.69 6300
133.130.49.166 5003
52.7.249.161 62822
207.46.13.69 7778
207.46.13.69 6742
207.46.13.69 4210
207.46.13.69 132587
207.46.13.69 3698
133.130.49.166 4987
207.46.13.69 4254
207.46.13.69 4245
207.46.13.69 7354
207.46.13.69 4354
66.249.75.241 6410
207.46.13.69 5198
207.46.13.69 6648
207.46.13.69 4088
207.46.13.69 6578
207.46.13.69 6256
123.119.102.48 6462
207.46.13.69 181000
133.130.49.166 5130
223.223.151.253 8616
133.130.49.166 6680
207.46.13.69 7148
207.46.13.69 3775
69.200.246.225 5134
207.46.13.69 5712
207.46.13.69 4168
207.46.13.69 15678
207.46.13.69 231680
207.46.13.69 9342
207.46.13.69 4804
207.46.13.69 4765
94.228.34.248 482
99.230.38.173 25753
207.46.13.69 4066
133.130.49.166 5343
207.46.13.69 6338
207.46.13.69 4973
207.46.13.69 3754
207.46.13.69 5093
133.130.49.166 15220
157.55.39.192 3977
157.55.39.192 4371
157.55.39.192 4117
157.55.39.192 6077
157.55.39.192 10986
157.55.39.192 7578
69.162.124.235 5999
157.55.39.192 4602
157.55.39.192 4720
157.55.39.192 34196
157.55.39.192 4511
157.55.39.192 7661
157.55.39.192 7374
157.55.39.192 19035
157.55.39.192 10494
133.130.49.166 10896
157.55.39.192 1375600
157.55.39.192 306456
66.249.75.225 4915
207.46.13.69 3783
133.130.49.166 5582
207.46.13.69 3894
207.46.13.69 3927
207.46.13.69 4272
207.46.13.69 4567
207.46.13.69 4481
207.46.13.69 4014
207.46.13.69 4113
207.46.13.69 4862
207.46.13.69 4430
207.46.13.69 4907
103.205.218.5 5879
207.46.13.92 4238
207.46.13.92 4054
207.46.13.92 4426
207.46.13.92 4266
207.46.13.92 6087
207.46.13.92 5858
207.46.13.92 4425
207.46.13.92 4604
180.76.15.33 21065
207.46.13.92 3881
207.46.13.92 3929
207.46.13.92 3916
207.46.13.92 4170
207.46.13.92 7190
207.46.13.92 4360
207.46.13.92 14054
123.0.223.95 182448
72.46.153.26 5999
180.76.15.144 21065
157.55.39.192 546
207.46.13.74 9725
207.46.13.74 4242
70.209.102.158 45180
207.46.13.74 4384
207.46.13.74 4066
207.46.13.74 3739
207.46.13.74 4023
207.46.13.92 8547
207.46.13.92 3861
71.172.87.249 11424
71.172.87.249 1418
71.172.87.249 10239
71.172.87.249 3752
71.172.87.249 38787
71.172.87.249 217200
71.172.87.249 215752
207.46.13.92 6900
207.46.13.92 6422
207.46.13.92 5636
207.46.13.92 4845
207.46.13.92 3859
207.46.13.92 4546
207.46.13.92 4763
207.46.13.92 3930
207.46.13.92 4195
207.46.13.92 6473
207.46.13.92 6389
207.46.13.92 5123
207.46.13.92 5480
207.46.13.92 5924
182.48.105.142 5999
182.48.105.142 1675
182.48.105.142 33752
128.59.40.117 469
128.59.40.117 4133
182.48.105.142 5162
182.48.105.142 9509
182.48.105.142 3752
182.48.105.142 44085
182.48.105.142 11218
182.48.105.142 1246
182.48.105.142 5670
182.48.105.142 11218
182.48.105.142 1311
182.48.105.142 451
182.48.105.142 4822
182.48.105.142 11218
207.46.13.92 4758
207.46.13.92 4279
182.48.105.142 444
207.46.13.92 4684
182.48.105.142 3062
207.46.13.92 3900
207.46.13.92 3859
207.46.13.92 4661
182.48.105.142 264333
207.46.13.92 4473
207.46.13.92 3936
207.46.13.92 4446
207.46.13.92 4127
207.46.13.92 3088
182.48.105.142 212783
182.48.105.142 1313
182.48.105.142 8616
182.48.105.142 952784
182.48.105.142 454
66.249.75.233 5686
120.28.46.206 557
157.55.39.192 83681
52.7.249.161 62822
157.55.39.192 107029
157.55.39.192 181000
157.55.39.192 3974
157.55.39.192 3845
157.55.39.192 15220
157.55.39.192 5584
157.55.39.192 4310
157.55.39.192 181000
207.46.13.92 9540
157.55.39.192 3913
157.55.39.192 4193
157.55.39.192 4492
157.55.39.192 181000
157.55.39.192 3562
23.236.58.127 5999
64.236.208.25 7406
64.236.208.25 10239
64.236.208.25 11424
64.236.208.25 33752
59.149.195.151 4590
59.149.195.151 1754
59.149.195.151 33752
64.236.208.25 5162
64.236.208.25 3752
157.55.39.192 8047
64.236.208.25 5285
%%sh

cut -d" " -f1-3 columbia.txt
128.59.40.117 - -
194.71.161.156 - -
69.30.213.18 - -
- - -
69.30.213.18 - -
69.30.213.18 - -
69.30.213.18 - -
207.46.13.74 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
207.46.13.69 - -
69.30.213.18 - -
69.30.213.18 - -
128.59.40.117 - -
128.59.40.117 - -
69.30.213.18 - -
69.30.213.18 - -
194.71.161.156 - -
194.71.161.156 - -
69.30.213.18 - -
69.30.213.18 - -
69.30.213.18 - -
69.30.213.18 - -
69.30.213.18 - -
69.30.213.18 - -
116.235.146.3 - -
116.235.146.3 - -
116.235.146.3 - -
194.187.168.214 - -
116.235.146.3 - -
116.235.146.3 - -
116.235.146.3 - -
116.235.146.3 - -
116.235.146.3 - -
116.235.146.3 - -
116.235.146.3 - -
69.30.213.18 - -
180.76.15.157 - -
116.235.146.3 - -
116.235.146.3 - -
116.235.146.3 - -
188.40.112.210 - -
5.9.94.207 - -
5.9.94.207 - -
194.71.161.156 - -
77.245.58.28 - -
69.30.213.18 - -
194.71.161.156 - -
207.46.13.74 - -
128.59.40.117 - -
207.46.13.74 - -
207.46.13.74 - -
69.162.124.235 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
87.211.107.246 - -
157.55.39.192 - -
116.235.146.3 - -
133.130.54.151 - -
194.71.161.156 - -
207.46.13.69 - -
68.180.231.24 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
100.1.205.12 - -
68.180.231.24 - -
87.214.216.228 - -
66.249.66.31 - -
128.59.40.117 - -
100.1.205.12 - -
207.46.13.69 - -
128.59.40.117 - -
204.152.200.42 - -
194.71.161.156 - -
41.218.218.99 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
54.177.28.124 - -
157.55.39.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
165.242.51.192 - -
91.200.12.97 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
207.46.13.69 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
207.46.13.69 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
128.199.53.63 - -
194.71.161.156 - -
128.59.40.117 - -
128.59.40.117 - -
180.76.15.146 - -
194.71.161.156 - -
66.249.64.158 - -
128.59.40.117 - -
194.71.161.156 - -
194.71.161.156 - -
207.46.13.69 - -
194.71.161.156 - -
128.59.40.117 - -
194.71.161.156 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
101.58.21.11 - -
194.71.161.156 - -
101.58.21.11 - -
101.58.21.11 - -
74.71.177.140 - -
101.58.21.11 - -
101.58.21.11 - -
101.58.21.11 - -
101.58.21.11 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
199.104.126.60 - -
101.58.21.11 - -
194.71.161.156 - -
101.58.21.11 - -
101.58.21.11 - -
101.58.21.11 - -
69.162.124.235 - -
207.46.13.92 - -
101.58.21.11 - -
101.58.21.11 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
74.71.177.140 - -
101.58.21.11 - -
101.58.21.11 - -
101.58.21.11 - -
128.59.40.117 - -
207.46.13.69 - -
101.58.21.11 - -
207.46.13.74 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
41.77.79.58 - -
66.249.66.31 - -
128.59.40.117 - -
178.255.153.2 - -
194.71.161.156 - -
194.71.161.156 - -
207.46.13.92 - -
128.59.40.117 - -
5.143.231.13 - -
5.143.231.13 - -
5.143.231.13 - -
194.71.161.156 - -
5.143.231.13 - -
5.143.231.13 - -
207.46.13.74 - -
5.143.231.13 - -
65.52.129.59 - -
54.210.147.136 - -
5.143.231.13 - -
207.46.13.92 - -
128.59.40.117 - -
128.59.40.117 - -
194.71.161.156 - -
66.249.64.158 - -
128.59.40.117 - -
66.249.66.130 - -
207.46.13.92 - -
194.71.161.156 - -
77.75.79.32 - -
111.196.221.217 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
100.11.29.146 - -
194.71.161.156 - -
194.71.161.156 - -
217.73.208.148 - -
69.162.124.235 - -
65.17.253.220 - -
95.63.16.179 - -
95.63.16.179 - -
95.63.16.179 - -
95.63.16.179 - -
95.63.16.179 - -
95.63.16.179 - -
95.63.16.179 - -
95.63.16.179 - -
95.63.16.179 - -
95.63.16.179 - -
95.63.16.179 - -
66.249.66.31 - -
46.183.222.93 - -
128.59.40.117 - -
66.249.66.28 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
157.55.39.192 - -
172.246.33.74 - -
172.246.33.74 - -
172.246.33.74 - -
207.46.13.92 - -
72.46.153.26 - -
70.214.96.88 - -
70.214.96.88 - -
70.214.96.88 - -
194.71.161.156 - -
207.46.13.74 - -
117.201.88.147 - -
194.71.161.156 - -
117.201.88.147 - -
66.249.66.137 - -
24.63.241.42 - -
24.63.241.42 - -
24.63.241.42 - -
24.63.241.42 - -
24.63.241.42 - -
24.63.241.42 - -
24.63.241.42 - -
24.63.241.42 - -
59.56.89.231 - -
117.201.88.147 - -
207.46.13.92 - -
119.57.158.139 - -
46.119.127.129 - -
46.119.127.129 - -
46.119.127.129 - -
207.46.13.74 - -
207.46.13.69 - -
207.46.13.69 - -
141.0.15.248 - -
141.0.15.248 - -
194.71.161.156 - -
91.200.12.97 - -
151.80.31.160 - -
207.46.13.74 - -
77.245.58.28 - -
81.91.253.250 - -
212.95.226.66 - -
207.46.13.92 - -
66.249.64.146 - -
209.235.213.246 - -
64.90.160.178 - -
194.71.161.156 - -
69.162.124.235 - -
128.59.99.2 - -
128.59.99.2 - -
128.59.99.2 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
128.59.40.117 - -
128.59.40.117 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
58.20.192.227 - -
66.249.66.28 - -
194.71.161.156 - -
62.149.225.67 - -
194.71.161.156 - -
108.168.196.54 - -
194.71.161.156 - -
194.71.161.156 - -
46.20.45.18 - -
66.249.92.29 - -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
46.28.137.72, 46.28.137.72 -
144.76.14.43 - -
66.249.66.28 - -
194.71.161.156 - -
194.71.161.156 - -
207.46.13.74 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
83.161.202.171 - -
66.249.66.52 - -
83.161.202.171 - -
66.249.66.49 - -
198.74.60.112 - -
66.249.66.28 - -
83.161.202.171 - -
180.76.15.147 - -
194.71.161.156 - -
128.59.40.117 - -
54.147.133.18 - -
70.214.106.5 - -
210.82.53.196 - -
210.82.53.196 - -
210.82.53.196 - -
210.82.53.196 - -
210.82.53.196 - -
210.82.53.196 - -
210.82.53.196 - -
210.82.53.196 - -
210.82.53.196 - -
207.46.13.74 - -
210.82.53.196 - -
210.82.53.196 - -
210.82.53.196 - -
154.118.109.126 - -
128.59.40.117 - -
154.118.109.126 - -
154.118.109.126 - -
154.118.109.126 - -
154.118.109.126 - -
154.118.109.126 - -
154.118.109.126 - -
154.118.109.126 - -
154.118.109.126 - -
154.118.109.126 - -
84.132.174.252 - -
84.132.174.252 - -
84.132.174.252 - -
84.132.174.252 - -
154.118.109.126 - -
154.118.109.126 - -
84.132.174.252 - -
84.132.174.252 - -
154.118.109.126 - -
84.132.174.252 - -
154.118.109.126 - -
84.132.174.252 - -
84.132.174.252 - -
84.132.174.252 - -
84.132.174.252 - -
84.132.174.252 - -
154.118.109.126 - -
1.39.33.226 - -
66.249.66.28 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
24.44.85.225 - -
217.73.208.148 - -
54.165.176.73 - -
69.162.124.235 - -
66.249.66.16 - -
157.55.39.192 - -
128.59.40.117 - -
128.59.40.117 - -
180.76.15.32 - -
217.73.208.148 - -
1.39.33.226 - -
95.211.217.68 - -
188.32.128.47 - -
188.32.128.47 - -
188.32.128.47 - -
188.32.128.47 - -
188.32.128.47 - -
84.134.240.142 - -
188.32.128.47 - -
188.32.128.47 - -
207.46.13.92 - -
180.76.15.17 - -
52.37.147.174 - -
66.249.66.28 - -
157.55.39.192 - -
106.120.173.151 - -
207.46.13.69 - -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
157.55.39.192 - -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
122.169.204.216, 8.37.235.152 -
207.46.13.74 - -
128.59.40.117 - -
68.180.231.24 - -
52.48.180.204 - -
180.76.15.5 - -
217.73.208.148 - -
180.76.15.5 - -
207.46.13.74 - -
199.59.148.210 - -
66.249.66.19 - -
74.87.163.147 - -
52.48.180.204 - -
69.162.124.235 - -
103.255.5.40 - -
103.255.5.40 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
188.40.112.210 - -
217.73.208.148 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
128.59.40.117 - -
207.46.13.74 - -
80.187.101.176 - -
80.187.101.176 - -
80.187.101.176 - -
80.187.101.176 - -
80.187.101.176 - -
80.187.101.176 - -
80.187.101.176 - -
80.187.101.176 - -
80.187.101.176 - -
80.187.101.176 - -
80.187.101.176 - -
81.153.203.83 - -
81.153.203.83 - -
177.55.96.221 - -
46.32.15.4 - -
81.153.203.83 - -
128.59.40.117 - -
176.31.241.60 - -
54.219.35.123 - -
66.249.66.130 - -
157.55.39.192 - -
207.46.13.74 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
132.66.38.12 - -
207.46.13.69 - -
184.153.87.9 - -
184.153.87.9 - -
184.153.87.9 - -
184.153.87.9 - -
184.153.87.9 - -
184.153.87.9 - -
184.153.87.9 - -
81.153.203.83 - -
184.153.87.9 - -
184.153.87.9 - -
184.153.87.9 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
46.32.15.4 - -
184.153.87.9 - -
184.153.87.9 - -
184.153.87.9 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
81.153.203.83 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
122.57.127.66 - -
81.153.203.83 - -
46.32.15.4 - -
46.32.15.4 - -
46.32.15.4 - -
128.59.40.117 - -
46.32.15.4 - -
81.153.203.83 - -
46.32.15.4 - -
46.32.15.4 - -
100.1.205.12 - -
46.32.15.4 - -
207.46.13.74 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
132.66.38.12 - -
49.230.19.145 - -
49.230.19.145 - -
81.153.203.83 - -
49.230.19.145 - -
132.66.38.12 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
49.230.19.145 - -
208.109.21.238 - -
81.153.203.83 - -
212.95.226.66 - -
128.59.40.117 - -
70.16.220.141 - -
70.16.220.141 - -
70.16.220.141 - -
23.106.239.161 - -
81.153.203.83 - -
209.235.213.246 - -
184.153.87.9 - -
184.153.87.9 - -
81.153.203.83 - -
100.1.205.12 - -
125.209.235.171 - -
69.162.124.235 - -
75.101.131.28 - -
75.101.131.28 - -
81.153.203.83 - -
81.153.203.83 - -
68.180.231.24 - -
184.153.87.9 - -
128.59.40.117 - -
62.149.225.67 - -
178.255.215.92 - -
178.255.215.92 - -
81.153.203.83 - -
8.37.70.105 - -
123.125.71.21 - -
41.46.67.160 - -
41.46.67.160 - -
151.80.31.176 - -
68.180.231.24 - -
124.41.241.212 - -
124.41.241.212 - -
124.41.241.212 - -
124.41.241.212 - -
124.41.241.212 - -
124.41.241.212 - -
124.41.241.212 - -
124.41.241.212 - -
124.41.241.212 - -
124.41.241.212 - -
124.41.241.212 - -
41.218.218.99 - -
41.218.218.99 - -
31.220.243.66 - -
41.218.218.99 - -
31.220.243.66 - -
31.220.243.66 - -
31.220.243.66 - -
41.218.218.99 - -
31.220.243.66 - -
31.220.243.66 - -
41.218.218.99 - -
41.218.218.99 - -
31.220.243.66 - -
41.218.218.99 - -
31.220.243.66 - -
31.220.243.66 - -
41.218.218.99 - -
31.220.243.66 - -
31.220.243.66 - -
31.220.243.66 - -
41.218.218.99 - -
41.218.218.99 - -
41.218.218.99 - -
41.218.218.99 - -
41.218.218.99 - -
31.220.243.66 - -
208.115.113.84 - -
208.115.113.84 - -
31.220.243.66 - -
31.220.243.66 - -
31.220.243.66 - -
124.41.241.212 - -
182.48.49.155 - -
68.180.231.24 - -
207.46.13.74 - -
115.87.132.168 - -
124.41.241.212 - -
124.41.241.212 - -
69.162.124.235 - -
128.59.40.117 - -
52.7.249.161 - -
109.173.125.227 - -
124.41.241.212 - -
124.41.241.212 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
69.127.186.52 - -
54.165.176.73 - -
157.55.39.192 - -
52.0.19.0 - -
180.76.15.9 - -
124.41.241.212 - -
66.249.66.99 - -
180.76.15.154 - -
164.132.161.49 - -
128.59.40.117 - -
128.59.40.117 - -
124.41.241.212 - -
128.59.40.117 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
87.214.216.228 - -
199.16.156.124 - -
87.214.216.228 - -
207.46.13.74 - -
52.0.19.0 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.92 - -
66.249.66.34 - -
208.115.111.68 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.69 - -
66.249.66.31 - -
180.76.15.34 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
173.213.212.228 - -
193.92.153.238 - -
43.224.24.22 - -
240d:0:4b14:c000:e06c:e2ec:4cbe:22cb, 66.249.80.46 -
207.46.13.74 - -
69.162.124.235 - -
87.253.132.203 - -
128.59.40.117 - -
43.224.24.22 - -
207.46.13.69 - -
207.46.13.92 - -
68.180.231.24 - -
184.75.214.66 - -
207.46.13.69 - -
141.8.143.188 - -
141.8.143.188 - -
208.115.113.84 - -
66.220.156.98 - -
68.180.231.24 - -
66.249.66.30 - -
66.249.66.28 - -
180.76.15.163 - -
180.76.15.147 - -
52.7.249.161 - -
104.43.198.26 - -
45.33.70.235 - -
66.249.66.5 - -
208.109.21.238 - -
81.91.253.250 - -
180.76.15.144 - -
212.95.226.66 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
104.162.240.3 - -
164.132.161.89 - -
209.235.213.246 - -
173.213.212.228 - -
87.214.216.228 - -
69.162.124.235 - -
207.46.13.92 - -
128.59.40.117 - -
128.59.40.117 - -
207.46.13.69 - -
199.16.156.125 - -
136.243.9.138 - -
62.149.225.67 - -
180.76.15.25 - -
86.44.27.25, 66.249.93.239 -
65.52.129.59 - -
128.59.40.117 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
178.255.155.2 - -
207.46.13.74 - -
128.59.40.117 - -
164.132.161.49 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
103.205.218.5 - -
37.187.162.183 - -
103.205.218.5 - -
128.59.40.117 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
186.7.132.218 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
50.62.176.17 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
109.148.174.77 - -
180.76.15.150 - -
68.180.231.24 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
69.180.79.99 - -
198.74.60.112 - -
180.76.15.137 - -
69.162.124.235 - -
125.209.235.184 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
54.186.28.49 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
103.251.51.137 - -
128.59.40.117 - -
128.59.40.117 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
74.105.223.45 - -
103.251.51.137 - -
128.59.40.117 - -
188.226.200.217 - -
103.251.51.137 - -
69.180.79.99 - -
128.59.40.117 - -
46.20.45.18 - -
52.7.249.161 - -
66.249.64.146 - -
68.180.231.24 - -
66.249.66.49 - -
199.59.148.210 - -
199.16.156.125 - -
128.59.40.117 - -
128.59.40.117 - -
109.148.174.77 - -
109.148.174.77 - -
180.76.15.158 - -
94.228.34.206 - -
122.55.28.67 - -
122.55.28.66 - -
122.55.28.66 - -
122.55.28.66 - -
122.55.28.67 - -
122.55.28.67 - -
203.160.175.164 - -
203.160.175.162 - -
122.55.28.69 - -
203.160.175.164 - -
122.55.28.66 - -
122.55.28.66 - -
203.160.175.163 - -
122.55.28.66 - -
122.55.28.69 - -
122.55.28.69 - -
203.160.175.164 - -
193.92.190.172 - -
128.59.40.117 - -
103.205.218.5 - -
122.55.28.66 - -
8.29.198.26 - -
69.162.124.235 - -
66.249.66.28 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
100.36.177.195 - -
66.249.66.62 - -
66.249.66.28 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
103.205.218.5 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
192.114.23.211 - -
173.252.112.115 - -
87.106.149.183 - -
178.255.153.2 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
101.191.64.199 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
128.59.40.117 - -
66.17.112.201 - -
66.17.112.201 - -
66.17.112.201 - -
66.249.66.28 - -
184.97.52.11 - -
52.0.19.0 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
50.166.152.43 - -
180.76.15.154 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
66.249.92.29 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
58.152.103.50 - -
66.249.64.152 - -
66.249.66.28 - -
27.125.146.65 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
128.214.106.134 - -
140.115.111.116 - -
77.245.58.28 - -
212.95.226.66 - -
207.46.13.74 - -
209.235.213.246 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
69.162.124.235 - -
112.133.246.131 - -
207.46.13.74 - -
66.249.66.28 - -
46.119.112.23 - -
46.119.112.23 - -
46.119.112.23 - -
46.119.112.23 - -
100.43.90.9 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
86.68.182.23 - -
62.149.225.67 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
51.255.65.51 - -
207.46.13.74 - -
66.249.66.28 - -
68.173.183.137 - -
68.173.183.137 - -
68.173.183.137 - -
68.173.183.137 - -
68.173.183.137 - -
68.173.183.137 - -
68.173.183.137 - -
199.16.156.125 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
112.133.246.131 - -
68.180.231.24 - -
213.143.49.176 - -
213.143.49.176 - -
213.143.49.176 - -
213.143.49.176 - -
213.143.49.176 - -
207.46.13.74 - -
213.143.49.176 - -
213.143.49.176 - -
128.59.40.117 - -
213.143.49.176 - -
213.143.49.176 - -
207.46.13.69 - -
213.143.49.176 - -
207.46.13.69 - -
213.143.49.176 - -
207.46.13.69 - -
213.143.49.176 - -
213.143.49.176 - -
213.143.49.176 - -
213.143.49.176 - -
180.76.15.139 - -
213.143.49.176 - -
213.143.49.176 - -
213.143.49.176 - -
213.143.49.176 - -
50.162.222.199 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
85.7.62.78 - -
144.76.14.47 - -
197.179.158.75 - -
197.179.158.75 - -
128.59.40.117 - -
197.179.158.75 - -
66.17.112.201 - -
197.179.158.75 - -
197.179.158.75 - -
213.143.49.176 - -
213.143.49.176 - -
151.80.31.104 - -
123.125.71.40 - -
108.168.196.54 - -
54.183.147.184 - -
108.168.196.54 - -
108.168.196.54 - -
108.168.196.54 - -
108.168.196.54 - -
108.168.196.54 - -
108.168.196.54 - -
108.168.196.54 - -
108.168.196.54 - -
69.162.124.235 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
95.233.46.247 - -
129.34.20.23 - -
129.34.20.23 - -
129.34.20.23 - -
129.34.20.23 - -
129.34.20.23 - -
129.34.20.23 - -
129.34.20.23 - -
129.34.20.23 - -
129.34.20.23 - -
129.34.20.23 - -
95.233.46.247 - -
129.34.20.23 - -
129.34.20.23 - -
114.245.189.8 - -
114.245.189.8 - -
114.245.189.8 - -
68.180.231.24 - -
68.180.231.24 - -
198.74.60.112 - -
46.20.45.18 - -
207.46.13.74 - -
128.59.40.117 - -
207.46.13.74 - -
95.136.95.43 - -
95.136.95.43 - -
66.249.92.29 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
95.136.95.43 - -
66.249.66.28 - -
95.136.95.43 - -
68.180.231.24 - -
86.106.17.210 - -
95.136.95.43 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
52.37.147.174 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
50.202.217.173 - -
95.136.95.43 - -
67.87.36.10 - -
66.249.66.53 - -
54.183.147.184 - -
128.59.40.117 - -
127.0.0.1, 17.133.3.101 -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
71.244.157.123 - -
128.59.40.117 - -
95.136.95.43 - -
66.249.66.28 - -
202.9.41.135 - -
79.178.151.171 - -
180.76.15.134 - -
24.61.15.17 - -
24.61.15.17 - -
24.61.15.17 - -
24.61.15.17 - -
24.61.15.17 - -
24.61.15.17 - -
24.61.15.17 - -
24.61.15.17 - -
24.61.15.17 - -
24.61.15.17 - -
207.46.13.74 - -
180.76.15.161 - -
69.162.124.235 - -
69.162.124.235 - -
184.38.213.170 - -
198.71.226.42 - -
51.255.65.85 - -
24.61.15.17 - -
66.249.66.188 - -
66.249.66.185 - -
66.249.66.185 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
107.77.70.54 - -
66.249.66.78 - -
66.249.66.78 - -
180.76.15.5 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
207.138.211.44 - -
66.249.66.28 - -
95.136.95.43 - -
68.180.231.24 - -
198.50.159.225 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
75.106.17.188 - -
95.136.95.43 - -
95.136.95.43 - -
75.106.17.188 - -
86.99.20.182 - -
86.99.20.182 - -
86.99.20.182 - -
86.99.20.182 - -
86.99.20.182 - -
86.99.20.182 - -
86.99.20.182 - -
86.99.20.182 - -
86.99.20.182 - -
86.99.20.182 - -
86.99.20.182 - -
95.136.95.43 - -
99.230.38.173 - -
66.249.66.1 - -
74.117.181.205 - -
128.59.40.117 - -
77.252.206.157 - -
149.202.82.236 - -
66.249.66.28 - -
52.7.249.161 - -
208.109.21.238 - -
207.46.13.74 - -
212.95.226.66 - -
128.59.40.117 - -
64.90.160.178 - -
140.115.111.128 - -
69.162.124.235 - -
140.115.111.128 - -
140.115.111.128 - -
140.115.111.128 - -
1.39.21.0, 64.233.172.220 -
1.39.21.0, 66.102.6.244 -
1.39.21.0, 66.102.6.244 -
1.39.21.0, 64.233.172.228 -
1.39.21.0, 66.102.6.240 -
1.39.21.0, 66.102.6.244 -
1.39.21.0, 66.102.6.244 -
1.39.21.0, 66.102.6.244 -
1.39.21.0, 66.102.6.248 -
1.39.21.0, 66.102.6.240 -
1.39.21.0, 66.102.6.240 -
1.39.21.0, 66.102.6.248 -
208.115.111.68 - -
208.115.111.68 - -
62.149.225.67 - -
87.253.132.202 - -
66.249.92.29 - -
54.183.147.184 - -
136.243.145.41 - -
119.57.158.139 - -
90.64.78.87 - -
41.82.101.54 - -
99.230.38.173 - -
66.249.66.28 - -
99.230.38.173 - -
99.230.38.173 - -
106.120.173.151 - -
70.172.193.143 - -
70.172.193.143 - -
70.172.193.143 - -
70.172.193.143 - -
70.172.193.143 - -
70.172.193.143 - -
27.125.146.65 - -
180.76.15.153 - -
128.59.40.117 - -
52.7.249.161 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
98.14.104.71 - -
130.126.153.55 - -
128.59.40.117 - -
45.55.134.15 - -
45.55.134.15 - -
45.55.134.15 - -
45.55.134.15 - -
45.55.134.15 - -
66.249.66.28 - -
95.136.95.43 - -
180.76.15.142 - -
128.59.40.117 - -
69.162.124.235 - -
207.46.13.69 - -
128.59.40.117 - -
128.59.40.117 - -
99.230.38.173 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
66.249.66.28 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
88.3.211.207 - -
185.20.4.220 - -
70.32.40.2 - -
173.252.90.109 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
99.224.60.79 - -
128.59.40.117 - -
99.224.60.79 - -
52.7.249.161 - -
66.249.66.28 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
99.230.38.173 - -
41.46.67.160 - -
41.46.67.160 - -
41.46.67.160 - -
41.46.67.160 - -
65.96.12.53 - -
74.178.53.235 - -
151.48.128.79 - -
54.157.9.156 - -
121.204.11.124 - -
66.249.66.31 - -
217.69.133.219 - -
213.251.182.111 - -
69.162.124.235 - -
65.17.253.220 - -
99.224.60.79 - -
207.46.13.69 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
66.220.156.112 - -
117.99.163.211 - -
99.224.60.79 - -
5.9.112.6 - -
99.224.60.79 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
180.76.15.18 - -
204.152.200.42 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
78.46.156.169 - -
194.177.236.117 - -
194.177.236.117 - -
78.46.156.169 - -
128.59.40.117 - -
207.46.13.69 - -
65.96.12.53 - -
65.96.12.53 - -
65.96.12.53 - -
144.76.71.83 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
194.177.236.117 - -
66.249.66.28 - -
117.99.163.211 - -
52.7.249.161 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
66.249.66.100 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
178.255.215.84 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
128.59.40.117 - -
73.134.142.66 - -
73.134.142.66 - -
73.134.142.66 - -
73.134.142.66 - -
73.134.142.66 - -
73.134.142.66 - -
73.134.142.66 - -
73.134.142.66 - -
73.134.142.66 - -
73.134.142.66 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
74.117.179.19 - -
207.46.13.92 - -
207.46.13.92 - -
81.91.253.250 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
68.180.231.24 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
212.95.226.66 - -
1.39.8.0, 66.102.6.248 -
209.235.213.246 - -
94.228.34.248 - -
207.46.13.69 - -
176.62.80.88 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
69.162.124.235 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
37.187.162.183 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
66.249.66.28 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
141.8.143.213 - -
125.209.235.170 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
62.149.225.67 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
141.8.143.213 - -
207.46.13.74 - -
207.46.13.74 - -
94.228.34.206 - -
184.75.214.66 - -
207.46.13.74 - -
207.46.13.92 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
52.7.249.161 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
62.210.215.100 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
128.59.40.117 - -
157.55.39.192 - -
157.55.39.192 - -
54.183.147.184 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
209.6.199.206 - -
66.249.66.128 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
178.135.80.52 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
128.59.40.117 - -
128.59.40.117 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
74.108.42.209 - -
114.144.161.13 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
54.183.147.184 - -
98.7.88.245 - -
98.7.88.245 - -
98.7.88.245 - -
98.7.88.245 - -
141.8.143.213 - -
74.108.42.209 - -
74.108.42.209 - -
104.223.8.121 - -
128.59.40.117 - -
74.108.42.209 - -
69.162.124.235 - -
141.8.143.213 - -
207.46.13.69 - -
198.20.245.236 - -
74.108.42.209 - -
91.200.12.97 - -
74.89.123.58 - -
74.89.123.58 - -
74.89.123.58 - -
74.89.123.58 - -
74.89.123.58 - -
74.89.123.58 - -
74.89.123.58 - -
74.89.123.58 - -
74.89.123.58 - -
74.89.123.58 - -
74.89.123.58 - -
74.108.42.209 - -
117.99.163.211 - -
117.99.163.211 - -
52.7.249.161 - -
68.180.231.24 - -
74.89.123.58 - -
128.59.40.117 - -
74.108.42.209 - -
117.99.163.211 - -
66.249.66.28 - -
208.115.113.84 - -
208.115.113.84 - -
208.115.113.84 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
211.204.51.92 - -
66.249.66.28 - -
104.194.197.118 - -
119.57.158.139 - -
68.180.231.24 - -
198.74.60.112 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
66.249.66.28 - -
207.46.13.74 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
100.8.247.221 - -
68.180.231.24 - -
66.249.66.28 - -
90.199.109.208 - -
90.199.109.208 - -
90.199.109.208 - -
144.36.185.50 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
73.198.204.152 - -
180.76.15.154 - -
73.198.204.152 - -
69.162.124.235 - -
208.115.111.68 - -
180.76.15.142 - -
73.198.204.152 - -
128.59.40.117 - -
128.59.40.117 - -
59.56.89.231 - -
52.7.249.161 - -
73.198.204.152 - -
180.76.15.146 - -
207.46.13.69 - -
66.87.146.68 - -
68.180.231.24 - -
72.46.153.26 - -
128.59.40.117 - -
91.208.99.2 - -
128.59.40.117 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
8.37.71.9 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
117.99.163.211 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
208.115.111.68 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
112.134.64.8 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
70.90.11.125 - -
128.59.40.117 - -
74.108.42.209 - -
157.55.39.192 - -
128.59.40.117 - -
70.90.11.125 - -
128.59.40.117 - -
128.59.40.117 - -
128.59.40.117 - -
8.37.70.234 - -
77.245.58.28 - -
207.46.13.69 - -
204.79.180.38 - -
64.90.160.178 - -
69.162.124.235 - -
74.108.42.209 - -
52.7.249.161 - -
141.8.143.213 - -
208.115.111.68 - -
54.165.176.73 - -
66.249.66.10 - -
141.8.143.213 - -
66.249.66.13 - -
207.46.13.92 - -
99.230.38.173 - -
74.108.42.209 - -
141.8.143.213 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
76.118.63.220 - -
141.8.143.213 - -
128.59.40.117 - -
141.8.143.213 - -
199.30.24.159 - -
66.249.66.27 - -
66.249.66.27 - -
66.249.66.24 - -
199.30.24.159 - -
199.30.24.159 - -
141.8.143.188 - -
66.249.66.28 - -
141.8.143.188 - -
128.59.40.117 - -
141.8.143.188 - -
141.8.143.188 - -
66.249.66.56 - -
141.8.143.188 - -
165.124.238.61 - -
165.124.238.61 - -
165.124.238.61 - -
128.59.40.117 - -
165.124.238.61 - -
141.8.143.188 - -
165.124.238.61 - -
165.124.238.61 - -
207.46.13.92 - -
198.50.159.225 - -
165.124.238.61 - -
141.8.143.213 - -
141.8.143.213 - -
85.55.225.36 - -
207.46.13.92 - -
68.180.231.24 - -
117.18.0.21 - -
141.8.143.213 - -
207.46.13.74 - -
141.8.143.213 - -
141.8.143.213 - -
207.46.13.92 - -
141.8.143.213 - -
211.66.119.239 - -
211.66.119.239 - -
180.76.15.19 - -
141.8.143.213 - -
173.252.88.185 - -
141.8.143.213 - -
88.208.244.37 - -
141.8.143.213 - -
52.7.249.161 - -
141.8.143.213 - -
69.162.124.235 - -
207.46.13.69 - -
141.8.143.213 - -
66.249.66.138 - -
141.8.143.213 - -
128.59.40.117 - -
141.8.143.213 - -
14.148.131.109 - -
14.148.131.109 - -
125.209.235.184 - -
141.8.143.213 - -
164.132.161.58 - -
208.115.113.84 - -
208.115.113.84 - -
141.8.143.213 - -
180.76.15.6 - -
71.41.154.19 - -
108.41.184.22 - -
108.41.184.22 - -
108.41.184.22 - -
108.41.184.22 - -
108.41.184.22 - -
180.76.15.19 - -
207.46.13.69 - -
207.46.13.69 - -
128.59.40.117 - -
87.253.132.201 - -
66.249.66.28 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
76.116.131.14 - -
76.116.131.14 - -
76.116.131.14 - -
76.116.131.14 - -
202.180.34.186 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
70.214.66.153 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
70.214.66.153 - -
70.214.66.153 - -
70.214.66.153 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
98.5.95.46 - -
108.168.196.54 - -
52.37.147.174 - -
95.237.134.204 - -
101.226.169.214 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
95.237.134.204 - -
27.106.8.78 - -
27.106.8.78 - -
27.106.8.78 - -
95.237.134.204 - -
95.237.134.204 - -
27.106.8.78 - -
27.106.8.78 - -
27.106.8.78 - -
95.237.134.204 - -
27.106.8.78 - -
27.106.8.78 - -
27.106.8.78 - -
27.106.8.78 - -
27.106.8.78 - -
27.106.8.78 - -
27.106.8.78 - -
180.76.15.135 - -
128.59.40.117 - -
112.134.64.8 - -
198.74.60.112 - -
180.76.15.12 - -
69.162.124.235 - -
65.17.253.220 - -
128.59.40.117 - -
164.132.161.55 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
80.188.83.152 - -
70.214.66.153 - -
70.214.66.153 - -
70.214.66.153 - -
66.249.66.28 - -
66.249.66.28 - -
46.20.45.18 - -
24.167.160.90 - -
24.167.160.90 - -
24.167.160.90 - -
24.167.160.90 - -
24.167.160.90 - -
24.167.160.90 - -
52.0.19.0 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
66.249.64.146 - -
127.0.0.1, 17.133.3.101 -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
108.176.52.250 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
157.55.39.192 - -
157.55.39.192 - -
31.15.10.37 - -
182.118.25.205 - -
66.249.66.28 - -
207.46.13.74 - -
68.9.129.236 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
96.27.72.74 - -
91.200.12.97 - -
91.200.12.97 - -
91.228.167.130 - -
123.203.88.70 - -
123.203.88.70 - -
123.203.88.70 - -
123.203.88.70 - -
123.203.88.70 - -
208.109.21.238 - -
99.230.38.173 - -
128.59.40.117 - -
212.95.226.66 - -
68.180.231.24 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
24.151.32.82 - -
209.235.213.246 - -
176.31.241.60 - -
69.162.124.235 - -
157.55.39.192 - -
207.46.13.69 - -
108.176.21.213 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
108.176.21.213 - -
173.252.90.111 - -
124.170.11.248 - -
207.46.13.69 - -
207.46.13.69 - -
77.75.78.167 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
66.249.66.28 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
68.180.231.24 - -
127.0.0.1, 17.133.8.123 -
108.176.21.213 - -
108.176.21.213 - -
108.176.21.213 - -
108.176.21.213 - -
108.176.21.213 - -
108.176.21.213 - -
108.176.21.213 - -
108.176.21.213 - -
37.187.162.183 - -
95.211.217.68 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
124.170.11.248 - -
66.249.66.164 - -
124.170.11.248 - -
124.170.11.248 - -
66.249.66.170 - -
66.249.66.160 - -
66.249.66.111 - -
66.249.66.107 - -
66.249.92.29 - -
119.57.158.139 - -
97.33.1.169 - -
97.33.1.169 - -
54.177.225.249 - -
68.180.231.24 - -
128.59.40.117 - -
108.176.21.213 - -
208.81.37.174, 199.168.151.107 -
24.90.155.217 - -
24.90.155.217 - -
24.90.155.217 - -
24.90.155.217 - -
24.90.155.217 - -
24.90.155.217 - -
24.90.155.217 - -
24.90.155.217 - -
24.90.155.217 - -
24.90.155.217 - -
24.90.155.217 - -
97.33.1.169 - -
52.7.249.161 - -
66.249.84.208 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
197.211.52.18 - -
23.239.9.218 - -
104.239.198.35 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
45.121.225.249 - -
99.230.38.173 - -
140.115.111.130 - -
99.230.38.173 - -
128.59.40.117 - -
128.59.40.117 - -
106.38.241.102 - -
69.162.124.235 - -
207.46.13.74 - -
180.76.15.162 - -
199.16.156.125 - -
128.59.102.65 - -
128.59.102.65 - -
128.59.102.65 - -
128.59.102.65 - -
128.59.102.65 - -
128.59.102.65 - -
128.59.102.65 - -
128.59.102.65 - -
128.59.102.65 - -
128.59.102.65 - -
128.59.102.65 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
100.1.205.12 - -
207.46.13.69 - -
67.87.36.10 - -
104.162.1.1 - -
104.162.1.1 - -
104.162.1.1 - -
104.162.1.1 - -
104.162.1.1 - -
104.162.1.1 - -
104.162.1.1 - -
104.162.1.1 - -
104.162.1.1 - -
104.162.1.1 - -
104.162.1.1 - -
207.46.13.92 - -
76.72.167.90 - -
100.1.205.12 - -
207.46.13.74 - -
128.59.40.117 - -
182.118.22.142 - -
182.118.25.207 - -
123.120.59.42 - -
123.120.59.42 - -
128.59.40.117 - -
180.76.15.134 - -
8.29.198.25 - -
66.249.66.144 - -
141.8.143.209 - -
104.162.1.1 - -
66.249.66.28 - -
128.59.40.117 - -
66.249.66.28 - -
157.55.39.140 - -
145.132.169.223 - -
112.134.64.8 - -
112.134.64.8 - -
99.230.38.173 - -
69.162.124.235 - -
65.17.253.220 - -
66.249.66.28 - -
97.89.16.117, 66.102.6.248 -
54.165.176.73 - -
207.46.13.74 - -
66.249.92.29 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
72.209.129.213 - -
207.46.13.74 - -
172.56.18.185 - -
172.56.18.185 - -
172.56.18.185 - -
172.56.18.185 - -
172.56.18.185 - -
172.56.18.185 - -
172.56.18.185 - -
207.46.13.74 - -
172.56.18.185 - -
172.56.18.185 - -
172.56.18.185 - -
172.56.18.185 - -
172.56.18.185 - -
68.180.231.24 - -
77.252.206.157 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
173.233.117.143 - -
173.233.117.143 - -
173.233.117.143 - -
173.233.117.143 - -
173.233.117.143 - -
173.233.117.143 - -
173.233.117.143 - -
173.233.117.143 - -
173.233.117.143 - -
173.233.117.143 - -
173.233.117.143 - -
66.249.66.28 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
173.252.112.104 - -
128.59.40.117 - -
128.59.40.117 - -
107.77.76.25 - -
45.56.109.238 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
73.132.71.194 - -
198.50.159.225 - -
77.245.58.28 - -
81.91.253.250 - -
139.255.56.114 - -
107.77.76.25 - -
107.77.76.25 - -
107.77.76.25 - -
107.77.76.25 - -
107.77.76.25 - -
139.255.56.114 - -
139.255.56.114 - -
139.255.56.114 - -
139.255.56.114 - -
139.255.56.114 - -
107.77.76.25 - -
139.255.56.114 - -
107.77.76.25 - -
139.255.56.114 - -
107.77.76.25 - -
107.77.76.25 - -
107.77.76.25 - -
107.77.76.25 - -
139.255.56.114 - -
107.77.76.25 - -
107.77.76.25 - -
107.77.76.25 - -
66.249.66.28 - -
107.77.76.25 - -
107.77.76.25 - -
139.255.56.114 - -
139.255.56.114 - -
139.255.56.114 - -
139.255.56.114 - -
182.118.41.186 - -
128.59.40.117 - -
69.162.124.235 - -
10.192.53.40, 67.195.192.148 -
133.130.49.166 - -
133.130.49.166 - -
133.130.49.166 - -
68.180.231.24 - -
180.76.15.26 - -
133.130.49.166 - -
207.46.13.92 - -
68.180.231.24 - -
133.130.49.166 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
66.163.125.144 - -
133.130.49.166 - -
128.68.14.110 - -
199.59.148.209 - -
133.130.49.166 - -
54.236.1.73 - -
173.233.117.143 - -
133.130.49.166 - -
107.77.76.25 - -
133.130.49.166 - -
173.233.117.143 - -
173.233.117.143 - -
133.130.49.166 - -
128.59.40.117 - -
133.130.49.166 - -
173.233.117.143 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
133.130.49.166 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
32.212.12.247 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
199.16.156.126 - -
133.130.49.166 - -
68.180.231.24 - -
66.249.66.28 - -
133.130.49.166 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
74.73.61.247 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
74.73.61.247 - -
74.73.61.247 - -
74.73.61.247 - -
155.4.131.99 - -
155.4.131.99 - -
74.73.61.247 - -
74.73.61.247 - -
74.73.61.247 - -
74.73.61.247 - -
74.73.61.247 - -
155.4.131.99 - -
155.4.131.99 - -
74.73.61.247 - -
74.73.61.247 - -
155.4.131.99 - -
74.73.61.247 - -
74.73.61.247 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
155.4.131.99 - -
66.249.66.5 - -
155.4.131.99 - -
133.130.49.166 - -
207.46.13.69 - -
133.130.49.166 - -
62.210.215.100 - -
133.130.49.166 - -
54.165.176.73 - -
69.162.124.235 - -
133.130.49.166 - -
133.130.49.166 - -
173.233.117.143 - -
128.59.40.117 - -
52.7.249.161 - -
133.130.49.166 - -
195.154.233.224 - -
133.130.49.166 - -
8.37.70.135 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
64.222.164.230 - -
133.130.49.166 - -
66.220.158.96 - -
66.249.66.28 - -
66.249.66.28 - -
66.249.66.28 - -
66.249.66.28 - -
133.130.49.166 - -
66.249.66.28 - -
66.249.66.28 - -
66.249.66.28 - -
184.75.214.66 - -
66.249.66.28 - -
54.186.28.49 - -
133.130.49.166 - -
62.210.248.185 - -
24.193.90.224 - -
24.193.90.224 - -
24.193.90.224 - -
24.193.90.224 - -
24.193.90.224 - -
24.193.90.224 - -
24.193.90.224 - -
133.130.49.166 - -
133.130.49.166 - -
188.58.60.47 - -
133.130.49.166 - -
128.59.40.117 - -
133.130.49.166 - -
5.9.94.207 - -
8.37.70.80 - -
195.154.172.143 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
133.130.49.166 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
220.72.7.131 - -
220.72.7.131 - -
220.72.7.131 - -
220.72.7.131 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
216.196.231.99 - -
220.72.7.131 - -
220.72.7.131 - -
220.72.7.131 - -
220.72.7.131 - -
216.196.231.99 - -
220.72.7.131 - -
216.196.231.99 - -
220.72.7.131 - -
220.72.7.131 - -
220.72.7.131 - -
220.72.7.131 - -
220.72.7.131 - -
66.249.66.28 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
73.212.220.113 - -
133.130.49.166 - -
73.212.220.113 - -
73.212.220.113 - -
86.136.231.7 - -
86.136.231.7 - -
86.136.231.7 - -
86.136.231.7 - -
86.136.231.7 - -
86.136.231.7 - -
86.136.231.7 - -
86.136.231.7 - -
86.136.231.7 - -
86.136.231.7 - -
86.136.231.7 - -
133.130.49.166 - -
66.163.125.144 - -
188.58.60.47 - -
133.130.49.166 - -
66.163.125.144 - -
128.59.40.117 - -
133.130.49.166 - -
66.249.66.34 - -
133.130.49.166 - -
107.77.76.117 - -
107.77.76.117 - -
107.77.76.117 - -
14.175.138.146 - -
133.130.49.166 - -
172.56.34.147 - -
172.56.34.147 - -
172.56.34.147 - -
172.56.34.147 - -
133.130.49.166 - -
66.249.92.29 - -
73.212.220.113 - -
133.130.49.166 - -
69.162.124.235 - -
133.130.49.166 - -
65.17.253.220 - -
52.7.249.161 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
133.130.49.166 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
67.188.98.56 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
67.188.98.56 - -
133.130.49.166 - -
66.249.69.76 - -
121.54.44.89 - -
121.54.44.89 - -
121.54.44.89 - -
121.54.44.89 - -
121.54.44.89 - -
121.54.44.89 - -
121.54.44.89 - -
121.54.44.89 - -
121.54.44.89 - -
121.54.44.89 - -
121.54.44.89 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
50.172.161.15 - -
121.54.44.89 - -
133.130.49.166 - -
188.58.60.47 - -
133.130.49.166 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
74.71.124.56 - -
74.71.124.56 - -
74.71.124.56 - -
67.68.60.92 - -
67.68.60.92 - -
74.71.124.56 - -
144.76.14.47 - -
67.68.60.92 - -
67.68.60.92 - -
67.68.60.92 - -
74.71.124.56 - -
74.71.124.56 - -
67.68.60.92 - -
67.68.60.92 - -
74.71.124.56 - -
74.71.124.56 - -
74.71.124.56 - -
74.71.124.56 - -
199.30.24.21 - -
199.30.24.21 - -
199.30.24.21 - -
67.68.60.92 - -
67.68.60.92 - -
199.30.24.21 - -
133.130.49.166 - -
199.30.24.21 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
50.153.250.74 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
144.76.93.46 - -
133.130.49.166 - -
144.76.93.46 - -
144.76.93.46 - -
50.153.250.74 - -
50.153.250.74 - -
74.71.124.56 - -
144.76.93.46 - -
144.76.93.46 - -
144.76.93.46 - -
133.130.49.166 - -
54.151.34.231 - -
144.76.93.46 - -
144.36.185.50 - -
144.36.185.50 - -
144.36.185.50 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
50.153.250.74 - -
128.59.40.117 - -
144.36.185.50 - -
133.130.49.166 - -
31.13.113.76 - -
133.130.49.166 - -
50.153.250.74 - -
5.80.46.180 - -
5.80.46.180 - -
5.80.46.180 - -
5.80.46.180 - -
133.130.49.166 - -
207.46.13.74 - -
133.130.49.166 - -
188.58.60.47 - -
50.153.250.74 - -
74.71.124.56 - -
133.130.49.166 - -
65.55.210.16 - -
133.130.49.166 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
74.65.194.193 - -
144.36.185.50 - -
144.36.185.50 - -
133.130.49.166 - -
68.180.231.24 - -
180.76.15.11 - -
144.36.185.50 - -
133.130.49.166 - -
77.245.58.28 - -
185.20.4.143 - -
27.33.24.166 - -
27.33.24.166 - -
27.33.24.166 - -
27.33.24.166 - -
27.33.24.166 - -
133.130.49.166 - -
43.225.249.113 - -
43.225.249.113 - -
43.225.249.113 - -
81.91.253.250 - -
43.225.249.113 - -
43.225.249.113 - -
27.33.24.166 - -
27.33.24.166 - -
43.225.249.113 - -
43.225.249.113 - -
43.225.249.113 - -
43.225.249.113 - -
43.225.249.113 - -
212.95.226.66 - -
133.130.49.166 - -
128.59.40.117 - -
117.216.211.133, 107.167.116.55 -
68.180.231.24 - -
64.90.160.178 - -
133.130.49.166 - -
66.249.75.225 - -
69.162.124.235 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
223.223.151.253 - -
141.8.143.213 - -
133.130.49.166 - -
66.163.125.144 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
117.216.211.133, 107.167.116.55 -
141.8.143.213 - -
133.130.49.166 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
141.8.143.213 - -
133.130.49.166 - -
62.149.225.67 - -
133.130.49.166 - -
138.28.213.62 - -
141.8.143.213 - -
223.223.151.253 - -
66.249.66.28 - -
141.8.143.213 - -
133.130.49.166 - -
180.76.15.160 - -
141.8.143.213 - -
68.98.4.127 - -
68.98.4.127 - -
68.98.4.127 - -
133.130.49.166 - -
68.180.231.24 - -
141.8.143.213 - -
133.130.49.166 - -
141.8.143.213 - -
133.130.49.166 - -
141.8.143.213 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
24.91.19.135 - -
42.60.123.172 - -
24.91.19.135 - -
24.91.19.135 - -
24.91.19.135 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
133.130.49.166 - -
42.60.123.172 - -
24.91.19.135 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
42.60.123.172 - -
141.8.143.213 - -
133.130.49.166 - -
141.8.143.213 - -
188.58.60.47 - -
188.58.60.47 - -
188.58.60.47 - -
133.130.49.166 - -
208.115.113.84 - -
188.58.60.47 - -
133.130.49.166 - -
141.8.143.213 - -
66.249.75.241 - -
91.200.12.97 - -
119.57.158.139 - -
133.130.49.166 - -
8.29.198.25 - -
133.130.49.166 - -
207.46.13.69 - -
52.7.249.161 - -
50.153.250.74 - -
133.130.49.166 - -
87.253.132.201 - -
133.130.49.166 - -
133.130.49.166 - -
73.167.107.49 - -
73.167.107.49 - -
73.167.107.49 - -
73.167.107.49 - -
73.167.107.49 - -
202.125.77.178 - -
202.125.77.178 - -
202.125.77.178 - -
202.125.77.178 - -
133.130.49.166 - -
202.125.77.178 - -
202.125.77.178 - -
202.125.77.178 - -
202.125.77.178 - -
202.125.77.178 - -
202.125.77.178 - -
202.125.77.178 - -
202.125.77.178 - -
202.125.77.178 - -
207.46.13.92 - -
207.46.13.92 - -
128.59.40.117 - -
207.46.13.92 - -
207.46.13.92 - -
220.72.7.131 - -
220.72.7.131 - -
220.72.7.131 - -
207.46.13.92 - -
220.72.7.131 - -
220.72.7.131 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
133.130.49.166 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
92.111.38.118 - -
92.111.38.118 - -
66.249.75.233 - -
133.130.49.166 - -
92.111.38.118 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
106.219.62.235 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
106.219.62.235 - -
106.219.62.235 - -
106.219.62.235 - -
106.219.62.235 - -
207.46.13.92 - -
207.46.13.74 - -
207.46.13.92 - -
106.219.62.235 - -
207.46.13.92 - -
133.130.49.166 - -
207.46.13.92 - -
207.46.13.92 - -
106.219.62.235 - -
207.46.13.92 - -
66.249.75.233 - -
106.219.62.235 - -
122.206.190.100 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
133.130.49.166 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
106.51.19.21, 168.235.206.47 -
106.51.19.21, 168.235.206.47 -
106.51.19.21, 168.235.206.47 -
106.51.19.21, 168.235.206.47 -
106.51.19.21, 168.235.206.47 -
106.51.19.21, 168.235.206.47 -
106.51.19.21, 168.235.206.47 -
69.200.246.225 - -
69.200.246.225 - -
69.200.246.225 - -
178.255.153.2 - -
106.51.19.21, 168.235.206.47 -
106.51.19.21, 168.235.206.47 -
106.51.19.21, 168.235.206.47 -
68.180.231.24 - -
106.51.19.21, 168.235.206.47 -
69.200.246.225 - -
69.200.246.225 - -
133.130.49.166 - -
106.219.62.235 - -
68.32.187.39 - -
106.219.62.235 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
68.32.187.39 - -
106.219.62.235 - -
163.172.7.229 - -
163.172.7.229 - -
207.46.13.74 - -
207.46.13.74 - -
106.219.62.235 - -
207.46.13.74 - -
207.46.13.74 - -
108.168.196.54 - -
207.46.13.74 - -
108.168.196.54 - -
207.46.13.74 - -
133.130.49.166 - -
207.46.13.74 - -
207.46.13.74 - -
106.219.62.235 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
133.130.49.166 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
133.130.49.166 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
163.172.7.229 - -
133.130.49.166 - -
66.249.69.101 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
133.130.49.166 - -
207.46.13.74 - -
128.59.40.117 - -
128.59.40.117 - -
207.46.13.74 - -
5.206.237.169 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
69.200.246.225 - -
66.249.75.225 - -
69.200.246.225 - -
103.205.218.5 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
69.200.246.225 - -
106.51.19.21 - -
106.51.19.21 - -
106.51.19.21 - -
106.51.19.21 - -
128.59.40.117 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
133.130.49.166 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
133.130.49.166 - -
52.7.249.161 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
133.130.49.166 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
66.249.75.241 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
123.119.102.48 - -
207.46.13.69 - -
133.130.49.166 - -
223.223.151.253 - -
133.130.49.166 - -
207.46.13.69 - -
207.46.13.69 - -
69.200.246.225 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
94.228.34.248 - -
99.230.38.173 - -
207.46.13.69 - -
133.130.49.166 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
133.130.49.166 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
69.162.124.235 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
133.130.49.166 - -
157.55.39.192 - -
157.55.39.192 - -
66.249.75.225 - -
207.46.13.69 - -
133.130.49.166 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
207.46.13.69 - -
103.205.218.5 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
180.76.15.33 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
123.0.223.95 - -
72.46.153.26 - -
180.76.15.144 - -
157.55.39.192 - -
207.46.13.74 - -
207.46.13.74 - -
70.209.102.158 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.74 - -
207.46.13.92 - -
207.46.13.92 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
71.172.87.249 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
128.59.40.117 - -
128.59.40.117 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
207.46.13.92 - -
207.46.13.92 - -
182.48.105.142 - -
207.46.13.92 - -
182.48.105.142 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
182.48.105.142 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
207.46.13.92 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
182.48.105.142 - -
66.249.75.233 - -
120.28.46.206 - -
157.55.39.192 - -
52.7.249.161 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
207.46.13.92 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
157.55.39.192 - -
23.236.58.127 - -
64.236.208.25 - -
64.236.208.25 - -
64.236.208.25 - -
64.236.208.25 - -
59.149.195.151 - -
59.149.195.151 - -
59.149.195.151 - -
64.236.208.25 - -
64.236.208.25 - -
157.55.39.192 - -
64.236.208.25 - -
At this point, we’re getting tired of seeing 4000 lines of output scroll by. We can catch the output and “pipe” it into the command that restricts us to 10 lines, head. The vertical bar “ ” is known as a pipe and it takes the output of one command (cut, below) and pipes it as input to the next command (head, below).

The net result is printing just 10 lines of fields 1 and 10.

%%sh

cut -d" " -f1,10 columbia.txt | head
128.59.40.117 469
194.71.161.156 640
69.30.213.18 5173
- 377
69.30.213.18 5061
69.30.213.18 4210
69.30.213.18 4148
207.46.13.74 11495
100.1.205.12 6204
100.1.205.12 1754

As its name suggests, the command sort will order the rows in our file. By default it uses alphabetical order but the option “-n” lets you sort numerically instead. Below we cut out just the IP’s and then “redirect the output” to a file called “ips.txt”. We then sort the IP addresses and put the sorted result in a filed called “ips_sorted.txt”.

%%sh

cut -d" " -f1 columbia.txt > ips.txt
sort ips.txt > ips_sorted.txt
head -100 ips_sorted.txt
-
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.43.90.9
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
%%sh

ls
columbia.txt
ips_sorted.txt
ips.txt
sample_data

With UNIX pipes, we can avoid the extra files and just get the sorted data directly.

%%sh

cut -d" " -f1 columbia.txt | sort | head -100
-
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.11.29.146
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.1.205.12
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.36.177.195
100.43.90.9
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221
100.8.247.221

(You will end the display with a red box saying that the head command only allowed 100 lines to be printed and not all of the output from sort. It’s OK.)

Next, the command uniq will remove repeated adjacent lines in a file, so if your file is sorted, it will return just the unique rows.

%%sh

uniq ips_sorted.txt 
-
100.11.29.146
100.1.205.12
100.36.177.195
100.43.90.9
100.8.247.221
101.191.64.199
101.226.169.214
101.58.21.11
10.192.53.40,
103.205.218.5
103.251.51.137
103.255.5.40
104.162.1.1
104.162.240.3
104.194.197.118
104.223.8.121
104.239.198.35
104.43.198.26
106.120.173.151
106.219.62.235
106.38.241.102
106.51.19.21
106.51.19.21,
107.77.70.54
107.77.76.117
107.77.76.25
108.168.196.54
108.176.21.213
108.176.52.250
108.41.184.22
109.148.174.77
109.173.125.227
111.196.221.217
112.133.246.131
112.134.64.8
114.144.161.13
114.245.189.8
115.87.132.168
116.235.146.3
117.18.0.21
117.201.88.147
117.216.211.133,
117.99.163.211
119.57.158.139
120.28.46.206
121.204.11.124
121.54.44.89
122.169.204.216,
122.206.190.100
122.55.28.66
122.55.28.67
122.55.28.69
122.57.127.66
123.0.223.95
123.119.102.48
123.120.59.42
123.125.71.21
123.125.71.40
123.203.88.70
124.170.11.248
124.41.241.212
125.209.235.170
125.209.235.171
125.209.235.184
127.0.0.1,
128.199.53.63
128.214.106.134
128.59.102.65
128.59.40.117
128.59.99.2
128.68.14.110
129.34.20.23
130.126.153.55
132.66.38.12
133.130.49.166
133.130.54.151
136.243.145.41
136.243.9.138
138.28.213.62
1.39.21.0,
139.255.56.114
1.39.33.226
1.39.8.0,
140.115.111.116
140.115.111.128
140.115.111.130
141.0.15.248
14.148.131.109
14.175.138.146
141.8.143.188
141.8.143.209
141.8.143.213
144.36.185.50
144.76.14.43
144.76.14.47
144.76.71.83
144.76.93.46
145.132.169.223
149.202.82.236
151.48.128.79
151.80.31.104
151.80.31.160
151.80.31.176
154.118.109.126
155.4.131.99
157.55.39.140
157.55.39.192
163.172.7.229
164.132.161.49
164.132.161.55
164.132.161.58
164.132.161.89
165.124.238.61
165.242.51.192
172.246.33.74
172.56.18.185
172.56.34.147
173.213.212.228
173.233.117.143
173.252.112.104
173.252.112.115
173.252.88.185
173.252.90.109
173.252.90.111
176.31.241.60
176.62.80.88
177.55.96.221
178.135.80.52
178.255.153.2
178.255.155.2
178.255.215.84
178.255.215.92
180.76.15.11
180.76.15.12
180.76.15.134
180.76.15.135
180.76.15.137
180.76.15.139
180.76.15.142
180.76.15.144
180.76.15.146
180.76.15.147
180.76.15.150
180.76.15.153
180.76.15.154
180.76.15.157
180.76.15.158
180.76.15.160
180.76.15.161
180.76.15.162
180.76.15.163
180.76.15.17
180.76.15.18
180.76.15.19
180.76.15.25
180.76.15.26
180.76.15.32
180.76.15.33
180.76.15.34
180.76.15.5
180.76.15.6
180.76.15.9
182.118.22.142
182.118.25.205
182.118.25.207
182.118.41.186
182.48.105.142
182.48.49.155
184.153.87.9
184.38.213.170
184.75.214.66
184.97.52.11
185.20.4.143
185.20.4.220
186.7.132.218
188.226.200.217
188.32.128.47
188.40.112.210
188.58.60.47
192.114.23.211
193.92.153.238
193.92.190.172
194.177.236.117
194.187.168.214
194.71.161.156
195.154.172.143
195.154.233.224
197.179.158.75
197.211.52.18
198.20.245.236
198.50.159.225
198.71.226.42
198.74.60.112
199.104.126.60
199.16.156.124
199.16.156.125
199.16.156.126
199.30.24.159
199.30.24.21
199.59.148.209
199.59.148.210
202.125.77.178
202.180.34.186
202.9.41.135
203.160.175.162
203.160.175.163
203.160.175.164
204.152.200.42
204.79.180.38
207.138.211.44
207.46.13.69
207.46.13.74
207.46.13.92
208.109.21.238
208.115.111.68
208.115.113.84
208.81.37.174,
209.235.213.246
209.6.199.206
210.82.53.196
211.204.51.92
211.66.119.239
212.95.226.66
213.143.49.176
213.251.182.111
216.196.231.99
217.69.133.219
217.73.208.148
220.72.7.131
223.223.151.253
23.106.239.161
23.236.58.127
23.239.9.218
240d:0:4b14:c000:e06c:e2ec:4cbe:22cb,
24.151.32.82
24.167.160.90
24.193.90.224
24.44.85.225
24.61.15.17
24.63.241.42
24.90.155.217
24.91.19.135
27.106.8.78
27.125.146.65
27.33.24.166
31.13.113.76
31.15.10.37
31.220.243.66
32.212.12.247
37.187.162.183
41.218.218.99
41.46.67.160
41.77.79.58
41.82.101.54
42.60.123.172
43.224.24.22
43.225.249.113
45.121.225.249
45.33.70.235
45.55.134.15
45.56.109.238
46.119.112.23
46.119.127.129
46.183.222.93
46.20.45.18
46.28.137.72,
46.32.15.4
49.230.19.145
50.153.250.74
50.162.222.199
50.166.152.43
50.172.161.15
50.202.217.173
50.62.176.17
51.255.65.51
51.255.65.85
5.143.231.13
52.0.19.0
5.206.237.169
52.37.147.174
52.48.180.204
52.7.249.161
54.147.133.18
54.151.34.231
54.157.9.156
54.165.176.73
54.177.225.249
54.177.28.124
54.183.147.184
54.186.28.49
54.210.147.136
54.219.35.123
54.236.1.73
5.80.46.180
58.152.103.50
58.20.192.227
5.9.112.6
59.149.195.151
59.56.89.231
5.9.94.207
62.149.225.67
62.210.215.100
62.210.248.185
64.222.164.230
64.236.208.25
64.90.160.178
65.17.253.220
65.52.129.59
65.55.210.16
65.96.12.53
66.163.125.144
66.17.112.201
66.220.156.112
66.220.156.98
66.220.158.96
66.249.64.146
66.249.64.152
66.249.64.158
66.249.66.1
66.249.66.10
66.249.66.100
66.249.66.107
66.249.66.111
66.249.66.128
66.249.66.13
66.249.66.130
66.249.66.137
66.249.66.138
66.249.66.144
66.249.66.16
66.249.66.160
66.249.66.164
66.249.66.170
66.249.66.185
66.249.66.188
66.249.66.19
66.249.66.24
66.249.66.27
66.249.66.28
66.249.66.30
66.249.66.31
66.249.66.34
66.249.66.49
66.249.66.5
66.249.66.52
66.249.66.53
66.249.66.56
66.249.66.62
66.249.66.78
66.249.66.99
66.249.69.101
66.249.69.76
66.249.75.225
66.249.75.233
66.249.75.241
66.249.84.208
66.249.92.29
66.87.146.68
67.188.98.56
67.68.60.92
67.87.36.10
68.173.183.137
68.180.231.24
68.32.187.39
68.9.129.236
68.98.4.127
69.127.186.52
69.162.124.235
69.180.79.99
69.200.246.225
69.30.213.18
70.16.220.141
70.172.193.143
70.209.102.158
70.214.106.5
70.214.66.153
70.214.96.88
70.32.40.2
70.90.11.125
71.172.87.249
71.244.157.123
71.41.154.19
72.209.129.213
72.46.153.26
73.132.71.194
73.134.142.66
73.167.107.49
73.198.204.152
73.212.220.113
74.105.223.45
74.108.42.209
74.117.179.19
74.117.181.205
74.178.53.235
74.65.194.193
74.71.124.56
74.71.177.140
74.73.61.247
74.87.163.147
74.89.123.58
75.101.131.28
75.106.17.188
76.116.131.14
76.118.63.220
76.72.167.90
77.245.58.28
77.252.206.157
77.75.78.167
77.75.79.32
78.46.156.169
79.178.151.171
80.187.101.176
80.188.83.152
81.153.203.83
81.91.253.250
8.29.198.25
8.29.198.26
83.161.202.171
8.37.70.105
8.37.70.135
8.37.70.234
8.37.70.80
8.37.71.9
84.132.174.252
84.134.240.142
85.55.225.36
85.7.62.78
86.106.17.210
86.136.231.7
86.44.27.25,
86.68.182.23
86.99.20.182
87.106.149.183
87.211.107.246
87.214.216.228
87.253.132.201
87.253.132.202
87.253.132.203
88.208.244.37
88.3.211.207
90.199.109.208
90.64.78.87
91.200.12.97
91.208.99.2
91.228.167.130
92.111.38.118
94.228.34.206
94.228.34.248
95.136.95.43
95.211.217.68
95.233.46.247
95.237.134.204
95.63.16.179
96.27.72.74
97.33.1.169
97.89.16.117,
98.14.104.71
98.5.95.46
98.7.88.245
99.224.60.79
99.230.38.173

Or in one line…

%%sh

cut -d" " -f1 columbia.txt | sort | uniq | wc
    462     462    6445

The command uniq has an option “-c” that returns the counts of each row in the file. If we apply it to “ips_sorted.txt”, we’ll get two columns – one is how many requests were made in our 3 hour window by the IP address and the second is the IP address.

%%sh

uniq -c ips_sorted.txt
      1 -
     14 100.11.29.146
     49 100.1.205.12
     23 100.36.177.195
      1 100.43.90.9
     12 100.8.247.221
     14 101.191.64.199
      1 101.226.169.214
     17 101.58.21.11
      1 10.192.53.40,
     23 103.205.218.5
     18 103.251.51.137
      2 103.255.5.40
     12 104.162.1.1
     16 104.162.240.3
      1 104.194.197.118
      1 104.223.8.121
      1 104.239.198.35
      1 104.43.198.26
      2 106.120.173.151
     13 106.219.62.235
      1 106.38.241.102
      4 106.51.19.21
     11 106.51.19.21,
     12 107.77.70.54
      3 107.77.76.117
     18 107.77.76.25
     13 108.168.196.54
     11 108.176.21.213
     12 108.176.52.250
      5 108.41.184.22
     33 109.148.174.77
      1 109.173.125.227
      1 111.196.221.217
     36 112.133.246.131
     25 112.134.64.8
      1 114.144.161.13
      3 114.245.189.8
      1 115.87.132.168
     14 116.235.146.3
      1 117.18.0.21
      3 117.201.88.147
      2 117.216.211.133,
     31 117.99.163.211
      5 119.57.158.139
      1 120.28.46.206
      1 121.204.11.124
     12 121.54.44.89
     12 122.169.204.216,
      1 122.206.190.100
      7 122.55.28.66
      3 122.55.28.67
      3 122.55.28.69
      1 122.57.127.66
      1 123.0.223.95
      1 123.119.102.48
      2 123.120.59.42
      1 123.125.71.21
      1 123.125.71.40
      5 123.203.88.70
     52 124.170.11.248
     18 124.41.241.212
      1 125.209.235.170
      1 125.209.235.171
      2 125.209.235.184
      3 127.0.0.1,
     21 128.199.53.63
     13 128.214.106.134
     11 128.59.102.65
    105 128.59.40.117
      3 128.59.99.2
      1 128.68.14.110
     12 129.34.20.23
      1 130.126.153.55
     17 132.66.38.12
     93 133.130.49.166
      1 133.130.54.151
      1 136.243.145.41
      1 136.243.9.138
      1 138.28.213.62
     12 1.39.21.0,
     13 139.255.56.114
      2 1.39.33.226
      1 1.39.8.0,
      1 140.115.111.116
      4 140.115.111.128
      1 140.115.111.130
      2 141.0.15.248
      2 14.148.131.109
      1 14.175.138.146
      8 141.8.143.188
      1 141.8.143.209
     36 141.8.143.213
     24 144.36.185.50
      1 144.76.14.43
      2 144.76.14.47
      1 144.76.71.83
      7 144.76.93.46
      1 145.132.169.223
      1 149.202.82.236
      1 151.48.128.79
      1 151.80.31.104
      1 151.80.31.160
      1 151.80.31.176
     15 154.118.109.126
     23 155.4.131.99
      1 157.55.39.140
     84 157.55.39.192
      3 163.172.7.229
      2 164.132.161.49
      1 164.132.161.55
      1 164.132.161.58
      1 164.132.161.89
      7 165.124.238.61
     17 165.242.51.192
     14 172.246.33.74
     12 172.56.18.185
      4 172.56.34.147
     22 173.213.212.228
     16 173.233.117.143
      1 173.252.112.104
      1 173.252.112.115
      1 173.252.88.185
      1 173.252.90.109
      1 173.252.90.111
      2 176.31.241.60
      1 176.62.80.88
      1 177.55.96.221
      1 178.135.80.52
      3 178.255.153.2
      1 178.255.155.2
      1 178.255.215.84
      2 178.255.215.92
      1 180.76.15.11
      1 180.76.15.12
      2 180.76.15.134
      1 180.76.15.135
      1 180.76.15.137
      1 180.76.15.139
      2 180.76.15.142
      2 180.76.15.144
      2 180.76.15.146
      2 180.76.15.147
      1 180.76.15.150
      1 180.76.15.153
      3 180.76.15.154
      1 180.76.15.157
      1 180.76.15.158
      1 180.76.15.160
      1 180.76.15.161
      1 180.76.15.162
      1 180.76.15.163
      1 180.76.15.17
      1 180.76.15.18
      2 180.76.15.19
      1 180.76.15.25
      1 180.76.15.26
      1 180.76.15.32
      1 180.76.15.33
      1 180.76.15.34
      3 180.76.15.5
      1 180.76.15.6
      1 180.76.15.9
      1 182.118.22.142
      1 182.118.25.205
      1 182.118.25.207
      1 182.118.41.186
     23 182.48.105.142
      1 182.48.49.155
     16 184.153.87.9
      1 184.38.213.170
      3 184.75.214.66
      1 184.97.52.11
      1 185.20.4.143
      1 185.20.4.220
      1 186.7.132.218
      1 188.226.200.217
      7 188.32.128.47
      2 188.40.112.210
     44 188.58.60.47
     26 192.114.23.211
      1 193.92.153.238
      1 193.92.190.172
     30 194.177.236.117
      1 194.187.168.214
     33 194.71.161.156
      1 195.154.172.143
      1 195.154.233.224
      5 197.179.158.75
     13 197.211.52.18
      1 198.20.245.236
      3 198.50.159.225
      1 198.71.226.42
      5 198.74.60.112
      1 199.104.126.60
      1 199.16.156.124
      4 199.16.156.125
      1 199.16.156.126
      3 199.30.24.159
      5 199.30.24.21
      1 199.59.148.209
      2 199.59.148.210
     13 202.125.77.178
      1 202.180.34.186
      1 202.9.41.135
      1 203.160.175.162
      1 203.160.175.163
      3 203.160.175.164
      2 204.152.200.42
      1 204.79.180.38
      1 207.138.211.44
    139 207.46.13.69
    131 207.46.13.74
    126 207.46.13.92
      4 208.109.21.238
      6 208.115.111.68
      9 208.115.113.84
      1 208.81.37.174,
      6 209.235.213.246
     14 209.6.199.206
     12 210.82.53.196
     23 211.204.51.92
      2 211.66.119.239
      8 212.95.226.66
     21 213.143.49.176
      1 213.251.182.111
     21 216.196.231.99
      1 217.69.133.219
      5 217.73.208.148
     19 220.72.7.131
     20 223.223.151.253
      1 23.106.239.161
      1 23.236.58.127
      1 23.239.9.218
      1 240d:0:4b14:c000:e06c:e2ec:4cbe:22cb,
     21 24.151.32.82
      6 24.167.160.90
      7 24.193.90.224
     13 24.44.85.225
     11 24.61.15.17
      8 24.63.241.42
     11 24.90.155.217
      5 24.91.19.135
     13 27.106.8.78
      2 27.125.146.65
      7 27.33.24.166
      1 31.13.113.76
      1 31.15.10.37
     16 31.220.243.66
     22 32.212.12.247
      3 37.187.162.183
     14 41.218.218.99
      6 41.46.67.160
     15 41.77.79.58
      1 41.82.101.54
     21 42.60.123.172
      2 43.224.24.22
     10 43.225.249.113
     13 45.121.225.249
      1 45.33.70.235
      5 45.55.134.15
      1 45.56.109.238
      4 46.119.112.23
      3 46.119.127.129
      1 46.183.222.93
      4 46.20.45.18
     13 46.28.137.72,
     31 46.32.15.4
     21 49.230.19.145
     39 50.153.250.74
      1 50.162.222.199
    104 50.166.152.43
     13 50.172.161.15
     15 50.202.217.173
      1 50.62.176.17
      1 51.255.65.51
      1 51.255.65.85
      7 5.143.231.13
      4 52.0.19.0
      1 5.206.237.169
      3 52.37.147.174
      2 52.48.180.204
     18 52.7.249.161
      1 54.147.133.18
      1 54.151.34.231
      1 54.157.9.156
      5 54.165.176.73
      1 54.177.225.249
      1 54.177.28.124
      5 54.183.147.184
      2 54.186.28.49
      1 54.210.147.136
      1 54.219.35.123
      1 54.236.1.73
      4 5.80.46.180
     21 58.152.103.50
     22 58.20.192.227
      1 5.9.112.6
      3 59.149.195.151
      2 59.56.89.231
      3 5.9.94.207
      7 62.149.225.67
      2 62.210.215.100
      1 62.210.248.185
     12 64.222.164.230
      7 64.236.208.25
      4 64.90.160.178
      5 65.17.253.220
      2 65.52.129.59
      1 65.55.210.16
     26 65.96.12.53
     15 66.163.125.144
     82 66.17.112.201
      1 66.220.156.112
      1 66.220.156.98
      1 66.220.158.96
      3 66.249.64.146
      1 66.249.64.152
      2 66.249.64.158
      1 66.249.66.1
      1 66.249.66.10
      1 66.249.66.100
      1 66.249.66.107
      1 66.249.66.111
      1 66.249.66.128
      1 66.249.66.13
      2 66.249.66.130
      1 66.249.66.137
      1 66.249.66.138
      1 66.249.66.144
      1 66.249.66.16
      1 66.249.66.160
      1 66.249.66.164
      1 66.249.66.170
      2 66.249.66.185
      1 66.249.66.188
      1 66.249.66.19
      1 66.249.66.24
      2 66.249.66.27
     49 66.249.66.28
      1 66.249.66.30
      5 66.249.66.31
      2 66.249.66.34
      2 66.249.66.49
      2 66.249.66.5
      1 66.249.66.52
      1 66.249.66.53
      1 66.249.66.56
      1 66.249.66.62
      2 66.249.66.78
      1 66.249.66.99
      1 66.249.69.101
      1 66.249.69.76
      3 66.249.75.225
      3 66.249.75.233
      2 66.249.75.241
      1 66.249.84.208
      7 66.249.92.29
      1 66.87.146.68
     18 67.188.98.56
     23 67.68.60.92
      2 67.87.36.10
      7 68.173.183.137
     32 68.180.231.24
     13 68.32.187.39
      1 68.9.129.236
      3 68.98.4.127
     13 69.127.186.52
     33 69.162.124.235
     15 69.180.79.99
     30 69.200.246.225
     16 69.30.213.18
      3 70.16.220.141
      6 70.172.193.143
      1 70.209.102.158
      1 70.214.106.5
      7 70.214.66.153
      3 70.214.96.88
      1 70.32.40.2
     15 70.90.11.125
     28 71.172.87.249
     12 71.244.157.123
      1 71.41.154.19
     13 72.209.129.213
      3 72.46.153.26
     16 73.132.71.194
     10 73.134.142.66
      5 73.167.107.49
     20 73.198.204.152
     23 73.212.220.113
     81 74.105.223.45
     34 74.108.42.209
      1 74.117.179.19
      1 74.117.181.205
      1 74.178.53.235
     14 74.65.194.193
     12 74.71.124.56
     21 74.71.177.140
     13 74.73.61.247
      1 74.87.163.147
     12 74.89.123.58
      2 75.101.131.28
     30 75.106.17.188
      4 76.116.131.14
     12 76.118.63.220
      1 76.72.167.90
      6 77.245.58.28
      2 77.252.206.157
      1 77.75.78.167
      1 77.75.79.32
      2 78.46.156.169
      1 79.178.151.171
     11 80.187.101.176
     14 80.188.83.152
     35 81.153.203.83
      5 81.91.253.250
      2 8.29.198.25
      1 8.29.198.26
     15 83.161.202.171
      1 8.37.70.105
      1 8.37.70.135
      1 8.37.70.234
      1 8.37.70.80
      1 8.37.71.9
     12 84.132.174.252
      1 84.134.240.142
      1 85.55.225.36
     13 85.7.62.78
      1 86.106.17.210
     11 86.136.231.7
      1 86.44.27.25,
     13 86.68.182.23
     11 86.99.20.182
      1 87.106.149.183
     20 87.211.107.246
     19 87.214.216.228
      2 87.253.132.201
      1 87.253.132.202
      1 87.253.132.203
      1 88.208.244.37
     27 88.3.211.207
      3 90.199.109.208
      1 90.64.78.87
      6 91.200.12.97
      1 91.208.99.2
      1 91.228.167.130
      3 92.111.38.118
      2 94.228.34.206
      2 94.228.34.248
     30 95.136.95.43
      2 95.211.217.68
     15 95.233.46.247
     21 95.237.134.204
     11 95.63.16.179
     12 96.27.72.74
      3 97.33.1.169
      1 97.89.16.117,
     12 98.14.104.71
     22 98.5.95.46
      4 98.7.88.245
     28 99.224.60.79
     12 99.230.38.173

Or, preferably, in one line…

%%sh 

cut -d" " -f1 columbia.txt | sort | uniq -c | head -100
      1 -
     14 100.11.29.146
     49 100.1.205.12
     23 100.36.177.195
      1 100.43.90.9
     12 100.8.247.221
     14 101.191.64.199
      1 101.226.169.214
     17 101.58.21.11
      1 10.192.53.40,
     23 103.205.218.5
     18 103.251.51.137
      2 103.255.5.40
     12 104.162.1.1
     16 104.162.240.3
      1 104.194.197.118
      1 104.223.8.121
      1 104.239.198.35
      1 104.43.198.26
      2 106.120.173.151
     13 106.219.62.235
      1 106.38.241.102
      4 106.51.19.21
     11 106.51.19.21,
     12 107.77.70.54
      3 107.77.76.117
     18 107.77.76.25
     13 108.168.196.54
     11 108.176.21.213
     12 108.176.52.250
      5 108.41.184.22
     33 109.148.174.77
      1 109.173.125.227
      1 111.196.221.217
     36 112.133.246.131
     25 112.134.64.8
      1 114.144.161.13
      3 114.245.189.8
      1 115.87.132.168
     14 116.235.146.3
      1 117.18.0.21
      3 117.201.88.147
      2 117.216.211.133,
     31 117.99.163.211
      5 119.57.158.139
      1 120.28.46.206
      1 121.204.11.124
     12 121.54.44.89
     12 122.169.204.216,
      1 122.206.190.100
      7 122.55.28.66
      3 122.55.28.67
      3 122.55.28.69
      1 122.57.127.66
      1 123.0.223.95
      1 123.119.102.48
      2 123.120.59.42
      1 123.125.71.21
      1 123.125.71.40
      5 123.203.88.70
     52 124.170.11.248
     18 124.41.241.212
      1 125.209.235.170
      1 125.209.235.171
      2 125.209.235.184
      3 127.0.0.1,
     21 128.199.53.63
     13 128.214.106.134
     11 128.59.102.65
    105 128.59.40.117
      3 128.59.99.2
      1 128.68.14.110
     12 129.34.20.23
      1 130.126.153.55
     17 132.66.38.12
     93 133.130.49.166
      1 133.130.54.151
      1 136.243.145.41
      1 136.243.9.138
      1 138.28.213.62
     12 1.39.21.0,
     13 139.255.56.114
      2 1.39.33.226
      1 1.39.8.0,
      1 140.115.111.116
      4 140.115.111.128
      1 140.115.111.130
      2 141.0.15.248
      2 14.148.131.109
      1 14.175.138.146
      8 141.8.143.188
      1 141.8.143.209
     36 141.8.143.213
     24 144.36.185.50
      1 144.76.14.43
      2 144.76.14.47
      1 144.76.71.83
      7 144.76.93.46
      1 145.132.169.223
      1 149.202.82.236

Finally, we can add a second sort to this pipeline to sort in reverse numerical order (using options -r and -n) the uniq‘d file, giving us the most frequently seen IPs first.

%%sh 

cut -d" " -f1 columbia.txt | sort | uniq -c | sort -rn | head -25
    139 207.46.13.69
    131 207.46.13.74
    126 207.46.13.92
    105 128.59.40.117
    104 50.166.152.43
     93 133.130.49.166
     84 157.55.39.192
     82 66.17.112.201
     81 74.105.223.45
     52 124.170.11.248
     49 66.249.66.28
     49 100.1.205.12
     44 188.58.60.47
     39 50.153.250.74
     36 141.8.143.213
     36 112.133.246.131
     35 81.153.203.83
     34 74.108.42.209
     33 69.162.124.235
     33 194.71.161.156
     33 109.148.174.77
     32 68.180.231.24
     31 46.32.15.4
     31 117.99.163.211
     30 95.136.95.43

So 207.46.13.69 was seen 139 times. What is this address?

%%sh

whois 207.46.13.69

It’s owned by Microsoft. We can use a filtering command known as egrep to pull just the lines that match a regular expression pattern (in quotes). So we might do the following.

%%sh

egrep "207.46.13.69" columbia.txt
207.46.13.69 - - [17/Apr/2016:06:27:47 -0400] "GET /photo/2296/11 HTTP/1.1" 200 4156 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:30:08 -0400] "GET /photo/2172/610 HTTP/1.1" 200 4094 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:31:03 -0400] "GET /page/486-careers-in-television/399 HTTP/1.1" 200 4114 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:32:31 -0400] "GET /system/photos/3013/original/Fishman.gif?1365724719 HTTP/1.1" 200 178629 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:32:33 -0400] "GET /photo/2432/123 HTTP/1.1" 200 4092 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:33:33 -0400] "GET /photo/2388/211 HTTP/1.1" 200 4218 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:34:50 -0400] "GET /event/1169/14 HTTP/1.1" 200 4981 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:42:25 -0400] "GET /cs/ContentServer?pagename=JRN/Render/PrintThisPage&childpagename=Journalism/JRN_Profile_C/JRNFacultyDetail&cid=1165270108880&c=JRN_Profile_C HTTP/1.1" 303 752 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:42:27 -0400] "GET /site_map?pagename=JRN/Render/PrintThisPage&childpagename=Journalism/JRN_Profile_C/JRNFacultyDetail&cid=1165270108880&c=JRN_Profile_C HTTP/1.1" 200 5212 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:52:29 -0400] "GET /javascripts/theme_scripts/mike1/jquery.js HTTP/1.1" 200 33752 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:06:56:45 -0400] "GET /page/4-admissions/4?printing=true HTTP/1.1" 200 9150 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:08:30 -0400] "GET /page/430-press-room/114?printing=true HTTP/1.1" 200 5683 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:09:55 -0400] "GET /event/1230/14 HTTP/1.1" 200 4845 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:10:55 -0400] "GET /event/1023 HTTP/1.1" 200 3824 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:14:46 -0400] "GET /javascripts/theme_scripts/jquery.idTabs.pack.js?1444072995 HTTP/1.1" 200 1375 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:32:21 -0400] "GET /events/dupont/index.asp HTTP/1.1" 302 783 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:32:22 -0400] "GET /pools HTTP/1.1" 302 847 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:32:24 -0400] "GET /404.html HTTP/1.1" 200 879 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:49:25 -0400] "GET /page/962/9 HTTP/1.1" 200 12171 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:54:42 -0400] "GET /javascripts/theme_scripts/swfobject.js?1366664152 HTTP/1.1" 200 2565 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:56:05 -0400] "GET /page/840-alfred-i-dupont-columbia-awards/9 HTTP/1.1" 200 18543 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:10 -0400] "GET /studentwork/cns/2002-05-08/631.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:10 -0400] "GET /studentwork/cns/2002-07-07/276.asp HTTP/1.1" 301 597 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:11 -0400] "GET /studentwork/cns/2002-07-07/671.asp HTTP/1.1" 301 597 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:11 -0400] "GET /studentwork/cns/2003-04-27/182.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:11 -0400] "GET /studentwork/cns/2003-04-27/syndication/ HTTP/1.1" 301 606 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:12 -0400] "GET /studentwork/cns/2003-05-23/269.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:12 -0400] "GET /studentwork/cns/2003-05-23/syndication/Burke-Pagan.txt HTTP/1.1" 301 632 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:12 -0400] "GET /studentwork/cns/2003-06-22/243.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:13 -0400] "GET /studentwork/cns/2003-06-22/340.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:13 -0400] "GET /studentwork/reutersjournal/ag/pg127.html HTTP/1.1" 301 602 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:14 -0400] "GET /studentwork/nightlynews/2005/index.asp?course=nightlynews&issue=0 HTTP/1.1" 301 647 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:14 -0400] "GET /studentwork/investigative/2001/intro.shtml HTTP/1.1" 301 607 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:15 -0400] "GET /studentwork/election/2004/minority_ali01.asp]http:0//www.americansagainsthate.org/Kerry_Drew_Disenchanted_Arabs.htm HTTP/1.1" 301 734 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:15 -0400] "GET /academics/faculty/wilentz.asp HTTP/1.1" 301 587 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:15 -0400] "GET /admissions/programs/courses/fall2005/ HTTP/1.1" 301 600 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:39 -0400] "GET /cns/2002-02-22/224.asp HTTP/1.1" 301 575 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:39 -0400] "GET /events/dupont/press/winners_2007.asp HTTP/1.1" 301 599 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:39 -0400] "GET /events/schork/2003/ceremony.asp?image=8 HTTP/1.1" 301 605 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:40 -0400] "GET /events/schork/winners/ HTTP/1.1" 301 575 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:40 -0400] "GET /newmedia/masters/internet/Faces%20Behind%20WWW%20Art.html HTTP/1.1" 301 631 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:41 -0400] "GET /news/2002-07/ HTTP/1.1" 301 561 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:41 -0400] "GET /studentwork/cns/2004-05-03/758.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:41 -0400] "GET /studentwork/bronxbeat/2001/051401/hernandez0514_01.shtml HTTP/1.1" 301 632 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:42 -0400] "GET /studentwork/children/2001/oped/hunt.asp HTTP/1.1" 301 602 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:42 -0400] "GET /studentwork/cityscape/2002/senior-murphy.asp HTTP/1.1" 301 612 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:42 -0400] "GET /studentwork/cns/2002-03-04/187.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:43 -0400] "GET /studentwork/cns/2002-03-04/93.asp HTTP/1.1" 301 596 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:43 -0400] "GET /studentwork/cns/2002-03-13/237.asp HTTP/1.1" 301 597 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:44 -0400] "GET /studentwork/cns/2002-04-03/358.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:57:44 -0400] "GET /studentwork/cns/2002-04-30/121.asp HTTP/1.1" 301 597 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:59:09 -0400] "GET /studentwork/cns/2004-04-05/689.asp HTTP/1.1" 301 597 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:59:10 -0400] "GET /studentwork/cns/2002-04-30/455.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:59:10 -0400] "GET /studentwork/cns/2004-04-05/683.asp HTTP/1.1" 301 597 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:59:11 -0400] "GET /studentwork/cns/2002-04-30/537.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:07:59:11 -0400] "GET /studentwork/cns/2002-05-08/292.asp HTTP/1.1" 301 598 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:04:33 -0400] "GET /page/61-career-services-events/61 HTTP/1.1" 404 3130 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:10:41 -0400] "GET /photo/1974/14 HTTP/1.1" 304 211 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:13:42 -0400] "GET /page/627-photographers-credits/58?printing=true HTTP/1.1" 200 7335 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:19:25 -0400] "GET /page/932-cu-exclusive-internships/778?ticketid=VspV7fP5xWWxLxWF3ZZCvVlnZvJMHCfgzz9wYmh HTTP/1.1" 200 6437 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:21:07 -0400] "GET /system/photos/2540/original/columbiatv2.jpg HTTP/1.1" 200 371093 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:21:12 -0400] "GET /system/photos/147/original/AnnCooper2.jpg?1276009818 HTTP/1.1" 200 34626 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:29:29 -0400] "GET /system/photos/126/original/Richard_Wald2.jpg?1275665983 HTTP/1.1" 200 30771 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:29:49 -0400] "GET /cs/ContentServer/jrn/1165270052298/JRN_News_C/1212612468059/JRNNewsDetail.htm HTTP/1.1" 303 546 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:29:50 -0400] "GET /site_map HTTP/1.1" 200 5212 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:35:14 -0400] "GET /page/162-student-work-online/163 HTTP/1.1" 404 6957 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:08:48:42 -0400] "GET /pools HTTP/1.1" 301 542 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:03:03 -0400] "GET /system/photos/2457/original/_MG_6306.jpg HTTP/1.1" 200 7291359 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:19 -0400] "GET /profile/32-june-cross/10 HTTP/1.1" 200 4615 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:20 -0400] "GET /page/562-find-a-procedure/397 HTTP/1.1" 200 4156 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:21 -0400] "GET /page/663-terri-thompson/467 HTTP/1.1" 200 5145 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:22 -0400] "GET /page/693-hearst-digital-media-lecture/712 HTTP/1.1" 200 6865 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:23 -0400] "GET /page/247-knight-bagehot-fellowship/248 HTTP/1.1" 200 6643 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:24 -0400] "GET /page/1178-punch-sulzberger-program/1115 HTTP/1.1" 200 17280 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:26 -0400] "GET /page/733/9-program-descriptions-of-2010-dupont-columbia-award-winners/165 HTTP/1.1" 200 11902 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:27 -0400] "GET /page/1217-book-workshop/1077 HTTP/1.1" 200 5308 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:28 -0400] "GET /page/775-about-john-w-kluge-37cc/466 HTTP/1.1" 200 4347 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:29 -0400] "GET /page/790-dupont-columbia-awards-about/633 HTTP/1.1" 200 8217 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:30 -0400] "GET /page/1225-grade-policy/11 HTTP/1.1" 200 5715 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:31 -0400] "GET /page/301/2 HTTP/1.1" 200 7661 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:33 -0400] "GET /page/810/633 HTTP/1.1" 200 10812 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:34 -0400] "GET /page/842-pitching-long-form-digital/637 HTTP/1.1" 200 4125 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:05:35 -0400] "GET /page/136-networking-links/137 HTTP/1.1" 404 3344 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:38 -0400] "GET /page/144-keeping-in-touch/145 HTTP/1.1" 200 5225 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:38 -0400] "GET /page/150-alumni-association-mission-and-organization/151 HTTP/1.1" 200 5261 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:39 -0400] "GET /system/documents/448/original/John_Krimmel.pdf HTTP/1.1" 200 181000 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:39 -0400] "GET /system/documents/174/original/tobenkin_award_talk.pdf HTTP/1.1" 200 22634 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:40 -0400] "GET /system/documents/137/original/knight_bagehot_speech_final.pdf HTTP/1.1" 200 94812 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:41 -0400] "GET /system/documents/674/original/Gillian_Tett_Knight_Bagehot_speech.pdf HTTP/1.1" 200 108214 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:41 -0400] "GET /page/53-past-events/751 HTTP/1.1" 404 4546 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:43 -0400] "GET /system/documents/866/original/pay_calendar_2014_15.pdf HTTP/1.1" 200 31027 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:44 -0400] "GET /page/521-2008-j-anthony-lukas-work-in-progress-award-finalist/188 HTTP/1.1" 200 5911 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:45 -0400] "GET /system/documents/884/original/sept2014.pdf HTTP/1.1" 200 181000 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:45 -0400] "GET /system/documents/892/original/2014_ochberg_fellows.pdf HTTP/1.1" 200 135665 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:46 -0400] "GET /page/95-career-expo-2016-for-employers/434 HTTP/1.1" 200 8217 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:47 -0400] "GET /profile/576-jacob-templin/10 HTTP/1.1" 200 3609 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:48 -0400] "GET /profile/11-mark-maremont-83/3 HTTP/1.1" 200 4643 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:49 -0400] "GET /profile/569-whitney-richardson/ HTTP/1.1" 200 3781 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:07:50 -0400] "GET /page/516-2008-j-anthony-lukas-book-prize-finalist/188 HTTP/1.1" 200 6300 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:08 -0400] "GET /page/170-oakes-award/171 HTTP/1.1" 200 7778 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:10 -0400] "GET /page/475-past-alumni-awards-winners/152 HTTP/1.1" 200 6742 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:11 -0400] "GET /page/18-technology-guide/15 HTTP/1.1" 200 4210 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:12 -0400] "GET /system/documents/915/original/2015_dartawards.pdf HTTP/1.1" 200 132587 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:13 -0400] "GET /profile/462-preston-merchant/ HTTP/1.1" 200 3698 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:14 -0400] "GET /profile/461-erica-mcdonald/ HTTP/1.1" 200 4254 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:15 -0400] "GET /profile/170-amy-singer/10 HTTP/1.1" 200 4245 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:15 -0400] "GET /page/454-1999-lukas-press-release/188 HTTP/1.1" 200 7354 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:16 -0400] "GET /profile/171-ava-seave/10 HTTP/1.1" 200 4354 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:17 -0400] "GET /page/453-1999-lukas-prize-winners/188 HTTP/1.1" 200 5198 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:18 -0400] "GET /page/444-2005-lukas-prize-press-release/188 HTTP/1.1" 200 6648 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:19 -0400] "GET /profile/570-suzanne-sataline/10 HTTP/1.1" 200 4088 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:20 -0400] "GET /page/440-2006-lukas-prize-winners/188 HTTP/1.1" 200 6578 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:21 -0400] "GET /news/1007 HTTP/1.1" 200 6256 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:22 -0400] "GET /system/documents/966/original/bansept15.pdf HTTP/1.1" 200 181000 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:44 -0400] "GET /news/1356 HTTP/1.1" 200 7148 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:45 -0400] "GET /profile/394-joe-richman/ HTTP/1.1" 200 3775 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:48 -0400] "GET /page/432-2005-chancellor-award-winner-jerry-mitchell/185 HTTP/1.1" 200 5712 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:49 -0400] "GET /profile/19-alisa-solomon/3 HTTP/1.1" 200 4168 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:50 -0400] "GET /page/431-chancellor-award-winner/185 HTTP/1.1" 200 15678 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:51 -0400] "GET /system/documents/970/original/Hybrid_Master_s_Guidelines.pdf HTTP/1.1" 200 231680 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:52 -0400] "GET /page/1088/9 HTTP/1.1" 200 9342 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:53 -0400] "GET /profile/366-ed-schumacher-matos/10 HTTP/1.1" 200 4804 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:55 -0400] "GET /profile/56-sylvia-nasar/ HTTP/1.1" 200 4765 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:58 -0400] "GET /profile/202-peter-r-kann/10 HTTP/1.1" 200 4066 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:08:58 -0400] "GET /page/372-tv-video-lab-and-studio-facilities/17 HTTP/1.1" 200 6338 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:01 -0400] "GET /page/10?tags=IMMIGRATION HTTP/1.1" 200 4973 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:03 -0400] "GET /profile/204-jacob-levenson/10 HTTP/1.1" 200 3754 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:04 -0400] "GET /page/10?tags=SCIENCE%2FENVIRONMENT HTTP/1.1" 200 5093 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:43 -0400] "GET /profile/211-jocelyn-craugh-zuckerman/10 HTTP/1.1" 200 3783 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:43 -0400] "GET /profile/236-bruce-shapiro/ HTTP/1.1" 200 3894 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:44 -0400] "GET /profile/125-ruth-padawer/ HTTP/1.1" 200 3927 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:45 -0400] "GET /profile/133-neil-hickey/ HTTP/1.1" 200 4272 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:46 -0400] "GET /profile/14-patricia-nazario-02/3 HTTP/1.1" 200 4567 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:47 -0400] "GET /profile/140-nina-burleigh/10 HTTP/1.1" 200 4481 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:48 -0400] "GET /profile/146-simon-surowicz/ HTTP/1.1" 200 4014 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:49 -0400] "GET /profile/147-paula-span/10 HTTP/1.1" 200 4113 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:49 -0400] "GET /profile/311-anthony-depalma/ HTTP/1.1" 200 4862 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:50 -0400] "GET /profile/327-lloyd-siegel/10 HTTP/1.1" 200 4430 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"
207.46.13.69 - - [17/Apr/2016:09:09:51 -0400] "GET /profile/311-anthony-depalma/10 HTTP/1.1" 200 4907 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)"

And we could see what the pattern is using regexper.com.

We could save these lines in a new file if we wanted to do more work. But for now, we see that they are all running “bingbot” which is the spider (scraper) for the Bing search engine. Let’s see how many times “bingbot” is used.

%%sh

egrep "bingbot" columbia.txt | wc
    481    7375   91058

So 481 out of our 4000 or so requests were from Bing.

The referrer field is number 11. It records the link someone clicked on to get to the page they’re requesting.

%%sh

cut -d" " -f11 columbia.txt | head -100
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"https://www.google.com/"
"http://www.journalism.columbia.edu/page/967-for-alumni/773"
"http://www.journalism.columbia.edu/page/967-for-alumni/773"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"-"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"-"
"-"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"http://www.journalism.columbia.edu/profile/66-james-stewart/10?from=singlemessage&isappinstalled=0"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"-"
"http://www.vvoj.nl/kenniscentrum/prijzen/"
"http://www.vvoj.nl/kenniscentrum/prijzen/"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/style.css"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/style.css"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/style.css"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/style.css"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/page/9-journalism-awards/9"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/style.css"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/colorbox.css"
"-"
"http://www.journalism.columbia.edu/profile/56-sylvia-nasar/10?from=singlemessage&isappinstalled=0"
"-"
"-"
"-"
"-"
"https://www.google.nl/"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/style.css"
"http://www.journalism.columbia.edu/"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/style.css"
"http://www.journalism.columbia.edu/"
"http://www.journalism.columbia.edu/"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/style.css"
"http://www.journalism.columbia.edu/"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/flexslider.css"
"http://www.journalism.columbia.edu/"
"http://www.journalism.columbia.edu/page/967-for-alumni/773"
"-"
"http://www.journalism.columbia.edu/stylesheets/theme_stylesheets/mike1/style.css"
"-"
"-"
"http://www.journalism.columbia.edu/page/967-for-alumni/773"
"-"
"-"
"-"
"-"

And here we look at just referrers that are Google.

%%sh

cut -d" " -f11 columbia.txt | egrep "google" 
"https://www.google.com/"
"https://www.google.nl/"
"https://www.google.co.in/"
"https://www.google.com"
"https://www.google.co.jp/"
"https://www.google.nl"
"https://www.google.de/"
"https://www.google.com.pk/"
"https://www.google.co.uk/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.co.th/"
"https://www.google.com/"
"https://www.google.com.eg/"
"https://www.google.com.eg/"
"https://www.google.nl/"
"https://www.google.com/"
"https://www.google.gr/"
"https://www.google.co.in/"
"https://www.google.com.do/"
"https://www.google.com/"
"https://www.google.co.in/"
"https://www.google.com/"
"https://www.google.nl/"
"https://www.google.gr"
"https://www.google.co.il/"
"https://www.google.com.au/"
"https://www.google.com/"
"https://www.google.com.sg/"
"https://www.google.com"
"https://www.google.co.in/"
"https://www.google.com/"
"https://www.google.com"
"https://www.google.com"
"https://www.google.com"
"https://www.google.com/"
"https://www.google.pt/"
"https://www.google.mn/"
"https://www.google.co.il/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.es/"
"https://www.google.com.eg/"
"https://www.google.com.eg/"
"https://www.google.com.eg/"
"https://www.google.com.eg/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.co.jp/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.cz/"
"https://www.google.cz/"
"https://www.google.com.au/"
"https://www.google.com/"
"https://www.google.com"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.co.id/"
"https://www.google.com/"
"https://www.google.com/"
"https://www.google.se/"
"https://www.google.com.ph/"
"https://www.google.com.ph/"
"https://www.google.com.ph/"
"https://www.google.com.ph/"
"https://www.google.com.ph/"
"https://www.google.com/"
"https://www.google.com.tr/"
"https://www.google.com/"
"https://www.google.co.in/"
"https://www.google.com.tr/"
"https://www.google.com/"
"https://www.google.co.in/"
"https://www.google.com/"
"https://www.google.com"
"https://www.google.com/"
"https://www.google.com"

Finally, we can clean up a little. Let’s remove our two files of IP addresses. First, find them…

%%sh

ls -l
total 1140
-rw-r--r-- 1 root root 1048576 Jun  9 16:29 columbia.txt
-rw-r--r-- 1 root root   56326 Jun  9 17:08 ips_sorted.txt
-rw-r--r-- 1 root root   56326 Jun  9 17:08 ips.txt
drwxr-xr-x 1 root root    4096 May 29 18:19 sample_data

And then use rm to remove them, with a follow up ls to make sure they’re gone.

%%sh

rm ips.txt
rm ips_sorted.txt
ls -l
total 1028
-rw-r--r-- 1 root root 1048576 Jun  9 16:29 columbia.txt
drwxr-xr-x 1 root root    4096 May 29 18:19 sample_data

Your turn

Come up with three questions about the visitors to the site and answer them using simple UNIX commands. Recall we’ve seen

pwd, ls, rm, mv, cp

head, tail, wc,

cut, sort, uniq,

grep

This is a pretty powerful pipeline!

_     /)---(\          /~~~\
\\   (/ . . \)        /  .. \
 \\__)-\(*)/         (_,\  |_)
  \_       (_         /   \@/    /^^^\
  (___/-(____) _     /      \   / . . \
               \\   /  `    |   V\ Y /V
                \\/  \   | _\    / - \
                 \   /__'|| \\_  |    \
                  \_____)|_).\_).||(__V
%%sh

# your code here



Regular Expressions

In this portion of webinar, we are going to work with a “language” for expressing patterns in text. By “pattern” I mean specifying repetitions of symbols – words or punctuation or sequences of numbers or any combination of these. Given a collection of text, for example, regular expressions might help you find dates or telephone numbers or URLs or email addresses – all of these obey certain formatting rules.

Regular expressions, then, are a way to describe these formatting rules so that we can search a body of text for them. Sometimes we are doing this because we want to find lists of facts about people (email addresses and their telephone numbers, say), creating structured data out of unstructured data. And sometimes we appeal to regular expressions because they help us in the act of “cleaning” data – we might be given a date column in a data set that contains dates in two different formats (y-m-d and m/d/y, say) and we need to transform them into just one consistent format throughout.

The patterns we express might also be about content. Can we detect the gender of sources? Can we find new memes in a stack of text? Unlike the proto-natural language processing we saw with TextBlob, regular expressions deal with words as patterns of characters. There is no understanding here about parts of speech or grammar. Just patterns of symbols – characters, numbers, and emoji, even.

A few transcripts and an introduction to Regular Expressions

Earlier this year, we pulled [all the sentences from Trumps State of the Union address]((https://raw.githubusercontent.com/computationaljournalism/columbia2020/master/data/2020_sotu_sentences.txt). We also collected the sentences spoken by Joe Biden and Bernie Sanders in the South Carolina debate. Each file has one sentence per line.

%%sh

wget https://raw.githubusercontent.com/computationaljournalism/columbia2020/master/data/2020_sotu_sentences.txt
wget https://raw.githubusercontent.com/computationaljournalism/columbia2020/master/data/biden_debate.txt
wget https://raw.githubusercontent.com/computationaljournalism/columbia2020/master/data/sanders_debate.txt
%%sh

head 2020_sotu_sentences.txt

Let’s have a look using the UNIX command head.

%%sh 
head biden_debate.txt
%%sh

head sanders_debate.txt

Literals

As a way of specifying patterns, let’s start with so-called “literals” – these characters just match themselves. For example, the literal "wall" matches the following sentences from Trump’s transcript.

%%sh

egrep 'wall' 2020_sotu_sentences.txt 

Or here we search for “billionaires” in Sanders’ sentences.

%%sh 

egrep 'billionaires' sanders_debate.txt

Often we don’t care about the case of the text we are matching. We can add a flag to the regular expression to explicitly ignore the case of the literals we are searching for. Tweeting is not a particularly grammatical exercise, so this option might be good to add. It’s a flag we can import from re.

%%sh 

egrep 'look' -i biden_debate.txt

Replace the literal "wall" with a search for "immigration" in the SOTU sentences. Do you find any sentences matching this pattern? What other searches like this might you do to highlight sentences about immigration? Or other topics that this search suggests.


Now, if we were interested in “media” we might look for the literal string consisting of the letters m-e-d-i-a.

See what we get…

%%sh

egrep 'media' 2020_sotu_sentences.txt 

Hmm, well, that’s not what we wanted at all. So, how do we get just the word “media”? Let’s take a moment and write down the kinds of patterns in text we might be interested in finding, either from this speech or the debate texts or from your reporting or other work. What sorts of things do you have to specify? I mean word boundaries seem like a good idea so we can differentiate “media” from “immediate”. What else do you need?

.

.

.

To get us to more complex searches, we need some way to express these ideas. And that’s where metacharacters come to the rescue!

In Walks Metacharacters

Any character except for [ ]\^$. ?*+( ){ and } can be used to specify a literal – they match a single instance of themselves. The string “wall” represented a series of literals and to have a match we need to find a “w” followed by an “a” followed by an “l” and so on. The non-literals, on the other hand, are known as metacharacters and are used to specify much more complicated text patterns.

They help us specify “whitespace,” word boundaries, sets or classes of literals, the beginning and end of a line, and various alternatives (“war” or “peace”). For example ^ represents the start of a line. Let’s look at what we get by searching the SOTU for a pattern than includes this character.

%%sh

egrep '^I think' sanders_debate.txt

Try a new sentence starter and see what you find…

%%sh
#your code here

Some Help

To interpret what a regular expression is doing, we can use a special tool from regexper.com. It takes regular expressions and renders them graphically so you can get a better sense of how the machinery is functioning. For example, here is the display for our “^I have” example.

Graphical view of the pattern “^I think”

You see a window where you can change the regular expression and then a graphical interpretation of what you’ve asked for. This is an extremely handy tool. (Notice that you don’t have to include the quotes or the r in the regexper.com interface.)

Now, if specifying the start of a line is important, having a special character for the end of a line is likely to be handy also. The $ represents the end of a line. Consider the pattern “it.$“. Here are the lines it matches the SOTU. Do you notice anything odd here?

%%sh

egrep 'it.$' biden_debate.txt
%%sh 

egrep 'it.$' 2020_sotu_sentences.txt

In the next expression, we look for lines that end "turn.$" but find only one sentence and it ends with a question mark.

%%sh

egrep 'turn.$' sanders_debate.txt

What’s going on here? Well, the dot, “.”, is a metacharacter and represents a wildcard. It is used to refer to any character. So, turn.$ will match lines that end in “turn.” or “turn?” or even “turn9” (should the transcriber be typing sloppily one day). Have a look at this at regexper.com.

Graphical view of the pattern “turn.$”

Putting a backslash \ before one of the special metacharacters [ ] \^$/?*+(){ and } lets us include these in a pattern as literals – in technical terms, we have “escaped” the special meaning of these characters and they return to their literal meanings.

Consider the pattern “\\$2”. With the backslash, $ no longer means the end of a line. We have returned the dollar sign to its literal meaning and the following lines match from the Trump transcript.

Therefore, we recently imposed tariffs on $250 billion of Chinese goods — and now our Treasury is receiving billions of dollars a month from a country that never gave us a dime

And to bring the point home, look at the following.

Graphical view of the pattern “\\$2”

So, given this, what do we need to do to match sentences ending with the word “country” followed by a period?

# your code here


A character class matches a single character out of all the possibilities contained in brackets, [ ] — There are certain rules that apply when specifying these classes that we’ll get to in a second. Let’s look at the pattern “[Tt]onight” and see what lines it matches in the transcript.

%%sh 
egrep "[Tt]onight" 2020_sotu_sentences.txt

Graphical view of the pattern “[Tt]onight”

Keep in mind that while there might be lots of options in the square brackets, we are only trying to match one character out of this group. The graphical display makes this clear. We’ll talk about specifying more than one match in a few minutes.

In terms of the rules that work within character classes, you can specify a range of letters [a-z] or [A-Z] or numbers [0-9] — Keep in mind that the order within the character class doesn’t matter, it specifies a bag of characters from which we select one item. Let’s look at the pattern “[0-9] years” and see which sentences it will match.

%%sh
egrep "[0-9] years" 

Graphical view of the pattern “[0-9] years”

It’s important to keep in mind what’s being matched here. The expression “[0-9] years” will match “5 years” in the sentence that started “CJ served 15 years in the Air Force”. The expression wants a number then a space then the word “years”. Get it?

When used at the beginning of a character class ^ is also a metacharacter and it indicates matching characters NOT in the indicated class. So the pattern ”[^?.]$” will match sentences that don’t end in a period or a question mark (you don’t have to “escape” characters in a character class – or between [ and ]).

%%sh

egrep "[^?.]$" 2020_sotu_sentences.txt

We see a large number of “side comments” in this list. Maybe we should look for them next? Anyway, here is the graphical representation of the expression.

Graphical view of the pattern “[^?.]$”

Continuing on our survey of metacharacters, the **vertical bar “ ” translates to “or”** — We can use it to combine expressions, the subexpressions being called alternatives. The expression *“good bad”* will match these lines from transcript file.
%%sh

egrep "good|bad" 2020_sotu_sentences.txt

We’ll jump ahead just briefly and say that we can solve the problem of matching “goodness” and “badly” when all we want are the words “good” or bad”. Some collections of characters, some “character classes” are used so often that they are given special notation. For example \w is a word character and \b represents a character class of “word boundaries”. Here’s a (not elegant but works) way to say you want “good” or “bad” alone.

%%sh

egrep "\b(good|bad)\b" 2020_sotu_sentences.txt

We will give a complete set of character classes at the end of this section.

Returning to choices, of course we can join several alternatives together. Consider *“year month day”*.
%%sh

egrep "day|month|year" sanders_debate.txt

Again, here we see a lot of matches to patterns like “birthday” or “someday”. Both contain the literal “day” but they might not be what we had in mind.

[Graphical view of the pattern “year month day”](http://regexper.com/#year%7Cmonth%7Cday)
Oh and the alternatives separated by “ ” can be any real expressions and not just literals. Here we ask for time or money
%%sh

egrep "[0-9] year|\$[0-9]" 2020_sotu_sentences.txt

And again, regexper.com to help us out.

[Graphical view of the pattern “[0-9] year $[0-9]”](https://regexper.com/#%5B0-9%5D%20year%7C%5C%24%5B0-9%5D)

Subexpressions are often contained in parentheses (more metacharacters) to constrain the alternatives in some way. For example ”^(I will|I am)” matches either expression, but at the start of a sentence.

Later we will see that we can identify each subexpression separately,allowing us to extract (or capture) the content they match.

%%sh

egrep "^(I am|I have)" 2020_sotu_sentences.txt

And the graphical representation – notice the new reference to groups that are formed by the parentheses.

<a href=https://regexper.com/#%5E%28I%20have%7CI%20am%29>Graphical view of the pattern “^(I have I am)”</a>

We’re building up quite a vocabulary. Try a more complex expression on your own.

# Your code here
[s for s in sotu_sentences if search("African|Latino",s,IGNORECASE)]
Before we leave this, let’s use the shorthand \b for word boundaries and our parentheses construction to match what we really wanted with our original search a few cells back, *“\b(day month year)\b”*. Let’s have a look.
%%sh

egrep "\b(day|month|year)\b" 2020_sotu_sentences.txt

The question mark indicates that the indicated expression is optional. The expression “George( W\.)? Bush” will match references to “George W. Bush” or just “George Bush”.

<a href=http://regexper.com/#George(%20W%5C.)%3F%20Bush>Graphical view of the pattern “George( W\.)? Bush”</a>

The * and + signs are metacharacters used to indicate repetition — the * means “any number, including zero, of the item” and + means “at least one of the item”. So we can specify clauses after a colon with the following regular expression.

%%sh

egrep ":.+$" 2020_sotu_sentences.txt

Now, to make this seem a bit more practical, we are going to consider another data source. You can download some of it, but it’s big. It’s essentially all of Jeb Bush’s emails while he was in office in Florida. I mean literally in mbox format. The site is show here via the Internet Archive…



… because this was such a bad idea, they took the site down quickly.



Why a bad idea? Well, no one masked any possibly sensitive data from the emails. So it’s easy to find phone numbers or social security numbers or military ID’s in these text files.

For example, to grab phone numbers, what regular expression might we use?

Write your expression here

For social security numbers or phone numbers we could use this expression “[0-9]+-[0-9]+-[0-9]+”. Why? Here’s a series of lines that match this pattern from Jeb’s emails.

Phone: 407-240-1891

In reference to your letter dated october 29, 1998 in which you offer to help me with my inmigration question, i am a us citizen who is petition for my husband (a mexican citizen) petition #SRC-98-204-50114 his name is FRANCISCO JAVIER CORTEZ HERNANDEZ.

Fax: 407-888-2445

Pager: 850-301-8072

Cell: 407-484-8167

The Reverned uses his pager# 813-303-4726 to get in contact with, or you may email and I will get in touch with him.

And from regexper.com…

<a href=http://regexper.com/#%5B0-9%5D%2B-%5B0-9%5D%2B-%5B0-9%5D%2B>Graphical view of the pattern “[0-9]+-[0-9]+-[0-9]+”</a>

In words, we are looking for one or more numbers followed by a hyphen, followed by one or more numbers, and then another hyphen, and finally one or more numbers.

The curly braces { and } are referred to as interval quantifiers — they let us specify the exact number of occurences of a pattern, its minimum, maximum or an acceptable range. For a Social Security Number we might want “[0-9]{3}-[0-9]{2}-[0-9]{4}”, for example - three numbers, a hyphen, two numbers, a hyphen then four numbers.

<a href=https://regexper.com/#%5B0-9%5D%7B3%7D-%5B0-9%5D%7B2%7D-%5B0-9%5D%7B4%7D>View of the pattern “[0-9]{3}-[0-9]{2}-[0-9]{4}”</a>

Here’s the full list of what you can do with the curly braces as metacharacters.

Expression What does it mean?
{3} Looks for 3 occurences of a pattern
{,3} Matches at most 3 occurrences
{3,} Matches at least 3 occurrences
{3,5} Matches between 3 and 5 occurrences

With this information, how would we skim these emails for specific kinds of numbers? Credit card numbers? Phone numbers? VIN numbers?

Groupings. In most implementations of regular expressions, the parentheses not only limit the scope of alternatives divided by a “|”, but also can be used to “remember” text matched by the subexpression enclosed. We refer to the matched text with \1, \2, etc., depending on how many parenthese we have.

As an example, the expression ” ([a-zA-Z]+) \1 “ will match these lines in Jeb Bush’s inbox from January of 2000.

I feel this is a win win situation for the Governor, the Reverend and the people that need help.

I insisted that that be the outcome in that court and that we did not recede from that position.

I guess you’re embarrassed that that line got out.

The pattern is asking for repeated words. We highlighted them in the text above. Also have a look at the graphical representation of this regular expression.

<a href=http://regexper.com/#%20(%5Ba-zA-Z%5D%2B)%20%5C1%20>Graphical view of the pattern “ ([a-zA-Z]+) \1 “</a>.

To Sum

The presentation here is meant to give you a flavor of how regular expressions are structured; you have seen the major metacharacters and to use them to create patterns. Below I provide a useful cheat sheet to remember what the different metacharacters mean and what some of the useful shorthand character classes are. In addition, I can recommend an interactive cheat sheet, and the site http://www.regular-expressions.info/ is also an excellent resource.

Metacharacters

Metacharacter What does it do? Examples Matches
^ Matches beginning of line ^abc abc, abcdef.., abc123
\$ Matches end of line abc\$ my:abc, 123abc, theabc
. Match any character a.c abc, asg, a123c
[...] Matches one character contained in brackets [abc] a,b, or c
[^...] Matches one character not contained in brackets [^abc] xyz, 123, 1de
[a-z] Matches one character between 'a' and 'z' [b-z] bc, mind, xyz
\* Matches character before \* 0 or more times ab\*c abc, abbc, ac
+ Matches character before + one or more times a+c ac, aac, aaac,
? Matches the character before the ? zero or one times. Also, used as a non-greedy match ab?c ac, abc
{x} Match exactly 'x' number of times (abc){2} abcabc
{x,} Match 'x' number of times or more (abc){2,} abcabc, abcabcabc
{,x} Match up to 'x' number of times (abc){2,} abcabc, abcabcabc
{x,y} Match between 'x' and 'y' times. (a){2,4} aa, aaa, aaaaa
| OR operator abc|xyz abc or xyz
(...) Capture anything matched (a)b(c) Captures 'a' and 'c'
(?:...) Non-capturing group (a)b(?:c) Captures 'a' but only groups 'c'
\ Escape the character after the backslash; or create a special sequence (like word boundaries, \b, or a character representing a space, \s. a\sc a c
The special “metacharacters” () [] {} ^ $ . * + ? and \ become “literals” again if you put a \ in front of them – That is, \. matches a period and is no longer the wild card. We say we have “escaped” the metacharacter.

Shorthand character classes

\d Match any digit (0-9)
\D Match any non digit
\t Match a tab
\n Match a new line
\r Match a carriage return
\s Matches a space character (space, \t, \r, \n)
\S Matches any non-space character
\b Word boundary
\B Non word boundary
\w Matches any one word character [a-zA-Z_0-9]
\W Matches any one non word character