├── PcapInputFiles.txt ├── TsharkOptions.txt ├── trial.py ├── .gitattributes ├── Packet.py ├── P2P_CONSTANTS.py ├── findRecurrence.py ├── createTrainingData.py ├── LICENSE ├── FilterPackets.py ├── generateSuperFlows.py ├── plotGraphs.py ├── SuperFlow.py ├── training └── trainingdata1.csv ├── README.md ├── GenerateFlows.py ├── FilterPacketsHelper.py ├── .gitignore ├── superflowdata └── one │ └── 3600.csv ├── Flow.py ├── flowdata └── samplepcap.pcap.csv └── pcapdata └── samplepcap.pcap.csv /PcapInputFiles.txt: -------------------------------------------------------------------------------- 1 | /home/pratik/test 2 | -------------------------------------------------------------------------------- /TsharkOptions.txt: -------------------------------------------------------------------------------- 1 | -t e 2 | -T fields 3 | -E separator=, 4 | -e ip.src -e ip.dst -e ip.proto -e frame.time_epoch -e tcp.len -e udp.length 5 | -R "(ip.proto==6)||(ip.proto==17)" 6 | -------------------------------------------------------------------------------- /trial.py: -------------------------------------------------------------------------------- 1 | from P2P_CONSTANTS import * 2 | 3 | filenamelist = getCSVFiles(PCAPDATADIR) 4 | outfile = open('back' , 'w') 5 | for filename in filenamelist: 6 | inputfile = open(filename) 7 | starttime = float(inputfile.readline().split(',')[3]) 8 | endtime = starttime 9 | for line in inputfile: 10 | endtime = float(line.split(',')[3]) 11 | inputfile.close() 12 | outfile.write( 13 | filename + ',' + 14 | str(starttime) + ',' + 15 | str(endtime) + ',' + 16 | str((endtime-starttime)/(60*60)) + '\n') 17 | outfile.close() -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /Packet.py: -------------------------------------------------------------------------------- 1 | import socket 2 | #defines properties of a packet 3 | class Packet: 4 | def __init__(self,fields): 5 | if fields == None: 6 | self.source = None 7 | self.dest = None 8 | self.timestamp = None 9 | self.size = 0 10 | self.key = None 11 | else: 12 | self.source = socket.inet_aton(fields[0]) 13 | self.dest = socket.inet_aton(fields[1]) 14 | self.timestamp = float(fields[2]) 15 | self.size = int(fields[3]) 16 | if self.source < self.dest: 17 | self.key = self.source + self.dest 18 | else: 19 | self.key = self.dest + self.source 20 | 21 | -------------------------------------------------------------------------------- /P2P_CONSTANTS.py: -------------------------------------------------------------------------------- 1 | PCAPDATADIR = './pcapdata/' 2 | FLOWDATADIR = './flowdata/' 3 | SUPERFLOWDATADIR = './superflowdata/' 4 | TRAININGDIR = './training/' 5 | PCAPFILES = 'PcapInputFiles.txt' 6 | TSHARKOPTIONSFILE = 'TsharkOptions.txt' 7 | FLOWOPTIONS = 'FlowOptions.txt' 8 | FLOWOUTFILE = PCAPDATADIR + 'FLOWDATA' 9 | C_FLOWOUTFILE = PCAPDATADIR + 'COMPLETEFLOWDATA' 10 | FLOWGAP = 1 * 60 * 60 11 | THREADLIMIT = 10 12 | TCP_PROTO = '6' 13 | UDP_PROTO = '17' 14 | UDP_HEADERLENGTH = 8 15 | 16 | #utility functions 17 | import os 18 | def getCSVFiles(dirname): 19 | csvfiles = [] 20 | for eachfile in os.listdir(dirname): 21 | if eachfile.endswith('.csv'): 22 | csvfiles.append(dirname + eachfile) 23 | return csvfiles -------------------------------------------------------------------------------- /findRecurrence.py: -------------------------------------------------------------------------------- 1 | from P2P_CONSTANTS import * 2 | from Packet import * 3 | from Flow import * 4 | import threading 5 | import socket 6 | import os 7 | 8 | #CAN SAFELY IGNORE THIS FILE 9 | 10 | csvfiles = [] 11 | for eachfile in os.listdir(DATADIR): 12 | if eachfile.endswith('.csv'): 13 | csvfiles.append(DATADIR + eachfile) 14 | 15 | packetdict = dict() 16 | 17 | for inputfilename in csvfiles: 18 | inputfile = open(inputfilename) 19 | data = [line.strip() for line in inputfile] 20 | inputfile.close() 21 | 22 | packetlist = [] 23 | for eachline in data: 24 | fields = eachline.split(',') 25 | fields.pop(2) 26 | packetlist.append(Packet(fields)) 27 | 28 | for each in packetlist: 29 | if packetdict.has_key(each.key): 30 | packetdict[each.key][2].add(inputfilename) 31 | else: 32 | packetdict[each.key]=(socket.inet_ntoa(each.source),socket.inet_ntoa(each.dest),{inputfilename}) 33 | 34 | for each in packetdict: 35 | print packetdict[each] 36 | -------------------------------------------------------------------------------- /createTrainingData.py: -------------------------------------------------------------------------------- 1 | from P2P_CONSTANTS import * 2 | DATALIMIT = 50000 3 | 4 | #takes takes 50,000 examples and puts it in necessary format for training 5 | folders = os.listdir(SUPERFLOWDATADIR) 6 | csvfiles = [] 7 | for eachname in folders: 8 | name = SUPERFLOWDATADIR + eachname +'/' 9 | if os.path.isdir(name): 10 | csvfiles += getCSVFiles(name) 11 | 12 | outfile = open(TRAININGDIR + 'trainingdata1.csv','w') 13 | for filename in csvfiles: 14 | label = filename.split('/')[-2] 15 | inputfile = open(filename) 16 | count = DATALIMIT - 1 17 | line = inputfile.readline().strip() 18 | while count > 0 and line!='': 19 | fields = line.split(',') 20 | if float(fields[4])!=0 and float(fields[3])!=0 and float(fields[7])!=0: 21 | outfile.write( 22 | fields[2] + ',' + 23 | fields[3] + ',' + 24 | fields[4] + ',' + 25 | fields[7] + ',' + 26 | label + '\n') 27 | count -= 1 28 | line = inputfile.readline().strip() 29 | inputfile.close() 30 | print DATALIMIT - count 31 | outfile.close() 32 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Pratik Narang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /FilterPackets.py: -------------------------------------------------------------------------------- 1 | ## Module to obtain packet data from a pcap/dump file 2 | ## and save it in csv format using tshark. 3 | ## Filenames of input pcap files are taken from InputFiles.txt 4 | ## Tshark options are present in TsharkOptions.txt 5 | ## TsharkOptions.txt should not contain the -r option. 6 | 7 | ## usage: python FilterPackets.py 8 | 9 | #import global constants 10 | from P2P_CONSTANTS import * 11 | from FilterPacketsHelper import * 12 | import multiprocessing as MP 13 | import subprocess 14 | 15 | #execute a shell command as a child process 16 | def executeCommand(command,outfilename): 17 | sem.acquire() 18 | 19 | subprocess.call(command, shell = True) 20 | 21 | infile = open(outfilename, 'r') 22 | data = [eachline.strip() for eachline in infile] 23 | infile.close() 24 | 25 | data = preprocess(data) 26 | 27 | outfile = open(outfilename,'w') 28 | for eachcomponent in data: 29 | outfile.write(eachcomponent) 30 | outfile.close() 31 | 32 | print 'done processing : ' + outfilename 33 | sem.release() 34 | 35 | #obtain input parameters and pcapfilenames 36 | inputfiles = getPCapFileNames() 37 | tsharkOptions = getTsharkOptions() 38 | 39 | #create a semaphore so as not to exceed threadlimit 40 | sem = MP.Semaphore(THREADLIMIT) 41 | 42 | #get tshark commands to be executed 43 | for filename in inputfiles: 44 | print filename 45 | (command,outfilename) = contructTsharkCommand(filename,tsharkOptions) 46 | task = MP.Process(target = executeCommand, args = (command, outfilename,)) 47 | task.start() -------------------------------------------------------------------------------- /generateSuperFlows.py: -------------------------------------------------------------------------------- 1 | from P2P_CONSTANTS import * 2 | import socket 3 | import Flow 4 | import SuperFlow 5 | import sys 6 | 7 | try: 8 | starttime = int(sys.argv[1]) * 60 * 60 9 | increment = int(sys.argv[2]) * 60 * 60 10 | endtime = int(sys.argv[3]) * 60 * 60 11 | except: 12 | print 'Incorrect Arguments to Module' 13 | print 'Correct Format:' 14 | print 'python generateSuperFlows.py start(hrs) increment(hrs) end(hrs)' 15 | exit() 16 | 17 | if starttime > endtime: 18 | print 'Start should be less than end' 19 | exit() 20 | 21 | csvfiles = getCSVFiles(FLOWDATADIR) 22 | print csvfiles 23 | 24 | flowdata = [] 25 | for filename in csvfiles: 26 | inputfile = open(filename) 27 | data = [line.strip() for line in inputfile] 28 | inputfile.close() 29 | 30 | for eachline in data: 31 | fields = eachline.split(',') 32 | flowdata.append(SuperFlow.SuperFlow(fields)) 33 | print 'No. of flows to be processed: ' + str(len(flowdata)) 34 | 35 | while starttime <= endtime: 36 | flowdata = Flow.combineFlows(flowdata, starttime) 37 | print 'No. of flows with timegap = ' + str(starttime) + 'sec : ' + str(len(flowdata)) 38 | 39 | outfile = open(SUPERFLOWDATADIR + str(starttime) + '.csv', 'w') 40 | for flow in flowdata: 41 | outfile.write( 42 | socket.inet_ntoa(flow.ip1) + ',' + 43 | socket.inet_ntoa(flow.ip2) + ',' + 44 | str(flow.getNoOfPackets()) + ',' + 45 | str(flow.getNoOfBytes()) + ',' + 46 | '%.6f'%flow.getInterArrivaltime() + ',' + 47 | '%.6f'%flow.getStart() + ',' + 48 | '%.6f'%flow.getEnd() + ',' + 49 | '%.6f'%flow.getDurationInSeconds() + '\n') 50 | outfile.close() 51 | 52 | starttime += increment -------------------------------------------------------------------------------- /plotGraphs.py: -------------------------------------------------------------------------------- 1 | import numpy 2 | import matplotlib 3 | matplotlib.use('Agg') 4 | import matplotlib.pyplot as plt 5 | import pylab 6 | import os 7 | import multiprocessing as MP 8 | from P2P_CONSTANTS import * 9 | 10 | def plotGraph(x, y, z, filename): 11 | v = [0,5000,0,200] 12 | plt.axis(v) 13 | plt.scatter(x, y, alpha = 0.10, cmap=plt.cm.cool, edgecolors='None') 14 | # plt.colorbar() 15 | pylab.savefig(filename, bbox_inches = 0) 16 | plt.clf() 17 | 18 | #scale input data and plot graphs 19 | def processFile(filename): 20 | sem.acquire() 21 | 22 | x1 = [] 23 | # x2 = [] 24 | y = [] 25 | z = [] 26 | 27 | inputfile = open(filename) 28 | for line in inputfile: 29 | fields = line.strip().split(',') 30 | x1.append(float(fields[3]) / 1000) 31 | # x2.append(float(fields[3]) / (1000 * int(fields[2]))) 32 | y.append(float(fields[-1]) / 1000) 33 | z.append(float(fields[4]) / 1000) 34 | inputfile.close() 35 | 36 | filename = filename.split('/') 37 | outputdir = NEWDIR + filename[-2] + '/' 38 | if not os.path.exists(outputdir): 39 | os.makedirs(outputdir) 40 | 41 | plotGraph(x1, y, z, outputdir + filename[-1] + '.png') 42 | # plotGraph(x2, y, z, filename + 'modified.png') 43 | print 'Completed plotting ' + '/'.join(filename) 44 | 45 | sem.release() 46 | 47 | NEWDIR = SUPERFLOWDATADIR + 'alphachanged/' 48 | if not os.path.exists(NEWDIR): 49 | os.makedirs(NEWDIR) 50 | folders = os.listdir(SUPERFLOWDATADIR) 51 | csvfiles = [] 52 | for eachname in folders: 53 | name = SUPERFLOWDATADIR + eachname +'/' 54 | if os.path.isdir(name): 55 | csvfiles += getCSVFiles(name) 56 | 57 | print csvfiles 58 | 59 | sem = MP.Semaphore(THREADLIMIT) 60 | for eachfile in csvfiles: 61 | task = MP.Process(target = processFile, args = (eachfile,)) 62 | task.start() 63 | -------------------------------------------------------------------------------- /SuperFlow.py: -------------------------------------------------------------------------------- 1 | from Packet import * 2 | import socket 3 | import Flow 4 | 5 | #get median of interarrival time 6 | def getMedian(vallist): 7 | vallist.sort(key = lambda val:val[0]) 8 | tot = 0 9 | cfreq = [] 10 | for val in vallist: 11 | tot += val[1] 12 | cfreq.append(tot) 13 | medianindex = tot / 2 14 | i = 0 15 | while medianindex > cfreq[i]: 16 | i += 1 17 | return vallist[i][0] 18 | 19 | #defines a superflow 20 | class SuperFlow(Flow.Flow): 21 | 22 | def __init__(self, fields): 23 | if fields == None: 24 | self.ip1 = None 25 | self.ip2 = None 26 | self.key = None 27 | self.n_packet1 = 0 28 | self.n_byte1 = 0 29 | self.t_start1 = 0 30 | self.t_end1 = 0 31 | self.t_interarrival1 = [] 32 | self.n_packet2 = 0 33 | self.n_byte2 = 0 34 | self.t_start2 = 0 35 | self.t_end2 = 0 36 | self.t_interarrival2 = [] 37 | else: 38 | self.ip1 = socket.inet_aton(fields[0]) 39 | self.ip2 = socket.inet_aton(fields[1]) 40 | self.key = self.ip1 + self.ip2 41 | self.n_packet1 = int(fields[2]) 42 | self.n_byte1 = int(fields[3]) 43 | self.t_start1 = float(fields[4]) 44 | self.t_end1 = float(fields[5]) 45 | self.t_interarrival1 = [(float(fields[6]),self.n_packet1)] 46 | self.n_packet2 = int(fields[7]) 47 | self.n_byte2 = int(fields[8]) 48 | self.t_start2 = float(fields[9]) 49 | self.t_end2 = float(fields[10]) 50 | self.t_interarrival2 = [(float(fields[11]),self.n_packet2)] 51 | 52 | #get median of interarrival time irrespective of direction 53 | def getInterArrivaltime(self): 54 | combined = self.t_interarrival1 + self.t_interarrival2 55 | if len(combined) > 0: 56 | return getMedian(combined) 57 | return 0 58 | 59 | #interarrival time for direction1(arbitrary) 60 | def getInterArrivaltime1(self): 61 | if len(self.t_interarrival1) > 0: 62 | return getMedian(self.t_interarrival1) 63 | return 0 64 | 65 | #interarrival time for direction2(arbitrary) 66 | def getInterArrivaltime2(self): 67 | if len(self.t_interarrival2) > 0: 68 | return getMedian(self.t_interarrival2) 69 | return 0 70 | -------------------------------------------------------------------------------- /training/trainingdata1.csv: -------------------------------------------------------------------------------- 1 | 5,148,1.414117,4.940287,one 2 | 23,9068,0.001636,1.017204,one 3 | 4,26,10.125824,10.268472,one 4 | 57,20931,0.000697,15.198770,one 5 | 73,19577,0.001184,10.563225,one 6 | 39,11465,0.000810,7.799633,one 7 | 41,10457,0.000377,6.454967,one 8 | 50,3261,0.000294,16.011632,one 9 | 2,600,5.833418,5.833418,one 10 | 2,600,5.835894,5.835894,one 11 | 2,600,5.833962,5.833962,one 12 | 2,600,5.840385,5.840385,one 13 | 2,600,5.833887,5.833887,one 14 | 2,600,5.837172,5.837172,one 15 | 2,600,5.830388,5.830388,one 16 | 2,600,5.832887,5.832887,one 17 | 6,395,0.754085,8.233724,one 18 | 3,66,1.850282,2.261118,one 19 | 3,435,0.013187,0.013513,one 20 | 148,7400,0.001065,18.229617,one 21 | 102,2448,0.000243,18.537917,one 22 | 3,336,0.006607,0.006644,one 23 | 6,300,0.116260,1.615845,one 24 | 4,88,0.099492,0.215518,one 25 | 3,336,0.003088,0.003361,one 26 | 6,300,0.018690,0.770336,one 27 | 8,176,0.018931,1.756931,one 28 | 24,1200,0.053104,2.065002,one 29 | 16,352,0.035047,0.665174,one 30 | 16,800,0.671654,13.609642,one 31 | 10,220,0.410407,8.966695,one 32 | 2,154,9.766676,9.766676,one 33 | 2,228,0.003958,0.003958,one 34 | 3,150,0.750124,1.500117,one 35 | 2,180,0.099931,0.099931,one 36 | 2,224,0.004505,0.004505,one 37 | 3,150,0.750892,1.500901,one 38 | 2,44,0.409743,0.409743,one 39 | 6,300,0.749955,11.085781,one 40 | 4,88,0.409230,9.995811,one 41 | 3,150,0.759163,1.508320,one 42 | 2,44,0.100598,0.100598,one 43 | 12,600,0.001017,1.533458,one 44 | 8,176,0.001166,0.133678,one 45 | 11,550,0.752920,18.499978,one 46 | 7,147,4.580173,15.004620,one 47 | 14,923,0.764506,14.991629,one 48 | 6,144,0.108670,13.564829,one 49 | 3,336,0.017523,0.017553,one 50 | 12,600,0.750003,15.093365,one 51 | 8,176,0.099957,13.693275,one 52 | 4,200,0.799997,10.500422,one 53 | 2,48,0.410773,0.410773,one 54 | 6,300,0.027124,1.526284,one 55 | 4,88,0.027471,0.126762,one 56 | 3,150,0.751212,1.502145,one 57 | 2,44,0.410104,0.410104,one 58 | 9,450,0.622539,16.184692,one 59 | 56,2800,0.014802,16.813910,one 60 | 40,886,0.004888,16.159317,one 61 | 3,150,0.754478,1.504531,one 62 | 2,44,0.410335,0.410335,one 63 | 65,10271,0.001078,10.561092,one 64 | 18,4621,0.001509,10.561163,one 65 | 49,14128,0.006204,10.561070,one 66 | 265,182833,0.000670,10.642992,one 67 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | PeerShark 2 | ============================ 3 | Peer-to-Peer botnet detection by tracking conversations 4 | 5 | ### Contributors 6 | * Pratik Narang 7 | * Subhajit Ray 8 | * Chittaranjan Hota 9 | 10 | ###Research papers: 11 | * Narang, P., Ray, S., Hota, C., & Venkatakrishnan, V. (2014, May). Peershark: detecting peer-to-peer botnets by tracking conversations. In Security and Privacy Workshops (SPW), 2014 IEEE (pp. 108-115). IEEE. 12 | * Narang, P., Hota, C., & Venkatakrishnan, V. N. (2014). PeerShark: flow-clustering and conversation-generation for malicious peer-to-peer traffic identification. EURASIP Journal on Information Security, 2014(1), 1-12. 13 | 14 | PeerShark requires Python v2.7.* and Tshark installed, and has been tested only for Linux environment. 15 | 16 | Modules to be used in the following order: 17 | 18 | 1. FilterPackets.py : Take inputdir or input files from PCAPFILES. 19 | The module runs tshark on each file in inputdir and extracts the 20 | fields mention in TsharkOptions.txt such as src-ip,dst-ip, 21 | protocol, payload length. One new file is created per pcap file 22 | which contains only the fields we want for future analysis. The 23 | new files are stored in PCAPDATADIR. 24 | 25 | usage : python FilterPackets.py 26 | 27 | 2. GenerateFlows.py : Take each file from PCAPDATADIR -> generate 28 | flow information -> store processed data for each file in 29 | FLOWDATADIR. 30 | 31 | usage : python GenerateFlows.py 32 | 33 | 3. generateSuperFlows.py : Take each file from FLOWDATADIR -> merge 34 | flows into superflows based on input parameters -> store in 35 | SUPERFLOWDATADIR. 36 | 37 | usage: python generateSuperFlows.py start(in hrs) increment(in hrs) end(in hrs) 38 | 39 | Number of files generated = (end - start)/increment 40 | 41 | One file is generated for each value of timegap ranging from start to end. 42 | 43 | ####OPTIONAL: 44 | 45 | 4. plotGraphs.py: for generating graphs 46 | 47 | 5. createTrainingData.py: use this file to create labelled training data set. 48 | It reads *folders* (not files) residing in SUPERFLOWDATADIR, and creates *one* 49 | labelled file (weka style minus the header) per folder (with required attributes only- 50 | no. of pkts, no. of bytes, iat, duration, label) with the folder name appended as last column. 51 | 52 | After generating a labelled 'training dataset', supervised machine learning algorithms 53 | can be used to generate models for P2P botnet detection. 54 | -------------------------------------------------------------------------------- /GenerateFlows.py: -------------------------------------------------------------------------------- 1 | from P2P_CONSTANTS import * 2 | from Packet import * 3 | from Flow import * 4 | import multiprocessing as MP 5 | import socket 6 | 7 | ## module to read all the files in the data folder of the 8 | ## project, build flow data and store it in a file 9 | 10 | def generateFlow(filename): 11 | sem.acquire() 12 | 13 | inputfile = open(filename) 14 | data = [line.strip() for line in inputfile] 15 | inputfile.close() 16 | 17 | packetlist = [] 18 | for eachline in data: 19 | fields = eachline.split(',') 20 | fields.pop(2) 21 | packetlist.append(Packet(fields)) 22 | 23 | outflowlist = packetsToFlows(packetlist, FLOWGAP) 24 | print 'flows in ' + filename + ' : ' + str(len(outflowlist)) 25 | 26 | outfilename = FLOWDATADIR + (filename.split('/')[-1]) 27 | writeFlowsToFile(outflowlist, outfilename) 28 | 29 | print 'done writing to : ' + outfilename 30 | sem.release() 31 | 32 | csvfiles = getCSVFiles(PCAPDATADIR) 33 | print csvfiles 34 | 35 | #create a semaphore so as not to exceed threadlimit 36 | sem = MP.Semaphore(THREADLIMIT) 37 | 38 | #generate flowdata from each input packet file(not pcap) in parallel and store it in a file 39 | #so we get as many output files as number of input files 40 | for filename in csvfiles: 41 | task = MP.Process(target = generateFlow, args = (filename,)) 42 | task.start() 43 | 44 | # #execute commands in parallel 45 | # for task in tasklist: 46 | # sem.acquire() 47 | # task.start() 48 | 49 | # #wait for tasks to finish 50 | # for task in tasklist: 51 | # task.join() 52 | 53 | # allflows = [flow for flowlist in alloutflowlists for flow in flowlist] 54 | # finalflows = [] 55 | # combineFlows(allflows, FLOWGAP, finalflows) 56 | 57 | # outfile = open(C_FLOWOUTFILE, 'w') 58 | # for flow in finalflows: 59 | # outfile.write(socket.inet_ntoa(flow.ip1) + ',' + 60 | # socket.inet_ntoa(flow.ip2) + ',' + 61 | # str(flow.getNoOfPackets()) + ',' + 62 | # str(flow.getNoOfBytes()) + ',' + 63 | # '%.6f'%flow.getInterArrivaltime() + ',' + 64 | # '%.6f'%flow.getStart() + ',' + 65 | # '%.6f'%flow.getEnd() + ',' + 66 | # '%.6f'%flow.getDurationInSeconds() + ',' + 67 | # str(flow.n_packet1) + ',' + 68 | # str(flow.n_byte1) + ',' + 69 | # '%.6f'%flow.t_start1 + ',' + 70 | # '%.6f'%flow.t_end1 + ',' + 71 | # '%.6f'%flow.getInterArrivaltime1() + ',' + 72 | # str(flow.n_packet2) + ',' + 73 | # str(flow.n_byte2) + ',' + 74 | # '%.6f'%flow.t_start2 + ',' + 75 | # '%.6f'%flow.t_end2 + ',' + 76 | # '%.6f'%flow.getInterArrivaltime2() + '\n') 77 | # outfile.close() 78 | -------------------------------------------------------------------------------- /FilterPacketsHelper.py: -------------------------------------------------------------------------------- 1 | from P2P_CONSTANTS import * 2 | import os 3 | #return a list of filenames of pcapfiles taken from InputFiles.txt 4 | #if a directory is found then all *.pcap files in the directory are 5 | #included(non-recursive) 6 | 7 | def getPCapFileNames(): 8 | pcapInputFile = open(PCAPFILES) 9 | lines = [eachline.strip() for eachline in pcapInputFile] 10 | pcapInputFile.close() 11 | 12 | pcapfilenames = [] 13 | for eachline in lines: 14 | if eachline.endswith('.pcap'): 15 | if os.path.exists(eachline): 16 | pcapfilenames.append(eachline) 17 | else: 18 | print eachline + ' does not exist' 19 | exit() 20 | else: 21 | if os.path.isdir(eachline): 22 | for eachfile in os.listdir(eachline): 23 | if eachfile.endswith('.pcap'): 24 | pcapfilenames.append(eachline.rstrip('/') + '/' + eachfile) 25 | else: 26 | print eachline + ' is not a directory' 27 | exit() 28 | return pcapfilenames 29 | 30 | #return a list of options to be used with tshark 31 | def getTsharkOptions(): 32 | optionsFile = open(TSHARKOPTIONSFILE) 33 | options = [line.strip() for line in optionsFile] 34 | optionsFile.close() 35 | return options 36 | 37 | #return a tuple (x,y) where 38 | #x = complete tshark command 39 | #y = output csv filename 40 | def contructTsharkCommand(filename,tsharkOptions): 41 | command = 'tshark -r ' + filename + ' ' 42 | for eachstring in tsharkOptions: 43 | command = command + eachstring + ' ' 44 | 45 | #construct output filename 46 | outfilename = filename.split('/') 47 | outfilename = PCAPDATADIR + outfilename[len(outfilename)-1] + '.csv' 48 | 49 | command += '>'+outfilename 50 | return (command,outfilename) 51 | 52 | #remove missing tcp and udp payload lengths and subtract 53 | #8 bytes from udp payload to account for udp header 54 | #returns a list of strings to be printed 55 | def preprocess(data): 56 | outputdata = [] 57 | for eachline in data: 58 | fields = eachline.split(',') 59 | 60 | #sanity check for 6 fields. Has to be changed if tshark options are changed 61 | if len(fields) != 6: 62 | continue 63 | 64 | tcppayload = fields[4].strip() 65 | udppayload = fields[5].strip() 66 | 67 | #subtract udp header length 68 | if udppayload != '': 69 | fields[5] = str(int(udppayload) - UDP_HEADERLENGTH) 70 | if fields[5] == '0': 71 | continue 72 | #ignore packet if both tcp and udp payload lengths are null 73 | elif tcppayload == '' or tcppayload == '0': 74 | continue 75 | 76 | #add all valid fields to output list 77 | for eachfield in fields: 78 | if eachfield.strip() != '': 79 | outputdata.append(eachfield) 80 | outputdata.append(',') 81 | outputdata.pop() 82 | outputdata.append('\n') 83 | return outputdata -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .project 7 | .metadata 8 | bin/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .classpath 16 | .settings/ 17 | .loadpath 18 | 19 | # External tool builders 20 | .externalToolBuilders/ 21 | 22 | # Locally stored "Eclipse launch configurations" 23 | *.launch 24 | 25 | # CDT-specific 26 | .cproject 27 | 28 | # PDT-specific 29 | .buildpath 30 | 31 | 32 | ################# 33 | ## Visual Studio 34 | ################# 35 | 36 | ## Ignore Visual Studio temporary files, build results, and 37 | ## files generated by popular Visual Studio add-ons. 38 | 39 | # User-specific files 40 | *.suo 41 | *.user 42 | *.sln.docstates 43 | 44 | # Build results 45 | 46 | [Dd]ebug/ 47 | [Rr]elease/ 48 | x64/ 49 | build/ 50 | [Bb]in/ 51 | [Oo]bj/ 52 | 53 | # MSTest test Results 54 | [Tt]est[Rr]esult*/ 55 | [Bb]uild[Ll]og.* 56 | 57 | *_i.c 58 | *_p.c 59 | *.ilk 60 | *.meta 61 | *.obj 62 | *.pch 63 | *.pdb 64 | *.pgc 65 | *.pgd 66 | *.rsp 67 | *.sbr 68 | *.tlb 69 | *.tli 70 | *.tlh 71 | *.tmp 72 | *.tmp_proj 73 | *.log 74 | *.vspscc 75 | *.vssscc 76 | .builds 77 | *.pidb 78 | *.log 79 | *.scc 80 | 81 | # Visual C++ cache files 82 | ipch/ 83 | *.aps 84 | *.ncb 85 | *.opensdf 86 | *.sdf 87 | *.cachefile 88 | 89 | # Visual Studio profiler 90 | *.psess 91 | *.vsp 92 | *.vspx 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | 101 | # TeamCity is a build add-in 102 | _TeamCity* 103 | 104 | # DotCover is a Code Coverage Tool 105 | *.dotCover 106 | 107 | # NCrunch 108 | *.ncrunch* 109 | .*crunch*.local.xml 110 | 111 | # Installshield output folder 112 | [Ee]xpress/ 113 | 114 | # DocProject is a documentation generator add-in 115 | DocProject/buildhelp/ 116 | DocProject/Help/*.HxT 117 | DocProject/Help/*.HxC 118 | DocProject/Help/*.hhc 119 | DocProject/Help/*.hhk 120 | DocProject/Help/*.hhp 121 | DocProject/Help/Html2 122 | DocProject/Help/html 123 | 124 | # Click-Once directory 125 | publish/ 126 | 127 | # Publish Web Output 128 | *.Publish.xml 129 | *.pubxml 130 | 131 | # NuGet Packages Directory 132 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line 133 | #packages/ 134 | 135 | # Windows Azure Build Output 136 | csx 137 | *.build.csdef 138 | 139 | # Windows Store app package directory 140 | AppPackages/ 141 | 142 | # Others 143 | sql/ 144 | *.Cache 145 | ClientBin/ 146 | [Ss]tyle[Cc]op.* 147 | ~$* 148 | *~ 149 | *.dbmdl 150 | *.[Pp]ublish.xml 151 | *.pfx 152 | *.publishsettings 153 | 154 | # RIA/Silverlight projects 155 | Generated_Code/ 156 | 157 | # Backup & report files from converting an old project file to a newer 158 | # Visual Studio version. Backup files are not needed, because we have git ;-) 159 | _UpgradeReport_Files/ 160 | Backup*/ 161 | UpgradeLog*.XML 162 | UpgradeLog*.htm 163 | 164 | # SQL Server files 165 | App_Data/*.mdf 166 | App_Data/*.ldf 167 | 168 | ############# 169 | ## Windows detritus 170 | ############# 171 | 172 | # Windows image file caches 173 | Thumbs.db 174 | ehthumbs.db 175 | 176 | # Folder config file 177 | Desktop.ini 178 | 179 | # Recycle Bin used on file shares 180 | $RECYCLE.BIN/ 181 | 182 | # Mac crap 183 | .DS_Store 184 | 185 | 186 | ############# 187 | ## Python 188 | ############# 189 | 190 | *.py[co] 191 | 192 | # Packages 193 | *.egg 194 | *.egg-info 195 | dist/ 196 | build/ 197 | eggs/ 198 | parts/ 199 | var/ 200 | sdist/ 201 | develop-eggs/ 202 | .installed.cfg 203 | 204 | # Installer logs 205 | pip-log.txt 206 | 207 | # Unit test / coverage reports 208 | .coverage 209 | .tox 210 | 211 | #Translations 212 | *.mo 213 | 214 | #Mr Developer 215 | .mr.developer.cfg 216 | -------------------------------------------------------------------------------- /superflowdata/one/3600.csv: -------------------------------------------------------------------------------- 1 | 17.172.232.209,172.16.46.234,5,148,1.414117,1381241521.387585,1381241526.327872,4.940287 2 | 74.125.135.84,172.16.47.254,23,9068,0.001636,1381241515.158302,1381241516.175506,1.017204 3 | 74.125.135.125,172.16.47.254,4,26,10.125824,1381241516.777075,1381241527.045547,10.268472 4 | 74.125.236.99,172.16.47.254,57,20931,0.000697,1381241516.182884,1381241531.381654,15.198770 5 | 74.125.236.111,172.16.47.254,73,19577,0.001184,1381241516.181904,1381241526.745129,10.563225 6 | 74.125.236.125,172.16.47.254,39,11465,0.000810,1381241516.269489,1381241524.069122,7.799633 7 | 74.125.236.180,172.16.47.254,41,10457,0.000377,1381241516.183536,1381241522.638503,6.454967 8 | 172.16.0.30,172.16.47.254,50,3261,0.000294,1381241515.066307,1381241531.077939,16.011632 9 | 172.16.35.35,172.16.47.90,1,79,0.000000,1381241517.343985,1381241517.343985,0.000000 10 | 172.16.46.2,255.255.255.255,2,600,5.833418,1381241515.617013,1381241521.450431,5.833418 11 | 172.16.46.3,255.255.255.255,2,600,5.835894,1381241515.615970,1381241521.451864,5.835894 12 | 172.16.46.4,255.255.255.255,2,600,5.833962,1381241515.615972,1381241521.449934,5.833962 13 | 172.16.46.5,255.255.255.255,2,600,5.840385,1381241515.615498,1381241521.455883,5.840385 14 | 172.16.46.6,255.255.255.255,2,600,5.833887,1381241515.616298,1381241521.450185,5.833887 15 | 172.16.46.7,255.255.255.255,2,600,5.837172,1381241515.615960,1381241521.453132,5.837172 16 | 172.16.46.8,255.255.255.255,2,600,5.830388,1381241515.620932,1381241521.451320,5.830388 17 | 172.16.46.9,255.255.255.255,2,600,5.832887,1381241515.617022,1381241521.449909,5.832887 18 | 172.16.46.19,172.16.47.255,1,40,0.000000,1381241528.380552,1381241528.380552,0.000000 19 | 172.16.46.19,255.255.255.255,1,40,0.000000,1381241524.363068,1381241524.363068,0.000000 20 | 172.16.46.43,172.16.47.255,6,395,0.754085,1381241513.205332,1381241521.439056,8.233724 21 | 172.16.46.43,224.0.0.252,3,66,1.850282,1381241512.866902,1381241515.128020,2.261118 22 | 172.16.46.43,255.255.255.255,3,435,0.013187,1381241521.425850,1381241521.439363,0.013513 23 | 172.16.46.112,172.16.47.255,148,7400,0.001065,1381241513.087010,1381241531.316627,18.229617 24 | 172.16.46.112,224.0.0.252,102,2448,0.000243,1381241512.975391,1381241531.513308,18.537917 25 | 172.16.46.114,172.16.47.255,1,112,0.000000,1381241518.440596,1381241518.440596,0.000000 26 | 172.16.46.114,255.255.255.255,3,336,0.006607,1381241518.433948,1381241518.440592,0.006644 27 | 172.16.46.123,172.16.47.255,6,300,0.116260,1381241522.864439,1381241524.480284,1.615845 28 | 172.16.46.123,224.0.0.252,4,88,0.099492,1381241522.565091,1381241522.780609,0.215518 29 | 172.16.46.139,172.16.47.255,1,112,0.000000,1381241528.998949,1381241528.998949,0.000000 30 | 172.16.46.174,172.16.47.255,1,114,0.000000,1381241515.875770,1381241515.875770,0.000000 31 | 172.16.46.174,255.255.255.255,1,114,0.000000,1381241515.875753,1381241515.875753,0.000000 32 | 172.16.46.176,172.16.255.255,1,112,0.000000,1381241528.593017,1381241528.593017,0.000000 33 | 172.16.46.176,255.255.255.255,3,336,0.003088,1381241528.589635,1381241528.592996,0.003361 34 | 172.16.46.189,172.16.47.255,6,300,0.018690,1381241530.094065,1381241530.864401,0.770336 35 | 172.16.46.189,224.0.0.252,8,176,0.018931,1381241529.793346,1381241531.550277,1.756931 36 | 172.16.46.189,255.255.255.255,1,300,0.000000,1381241529.798365,1381241529.798365,0.000000 37 | 172.16.46.201,172.16.47.255,24,1200,0.053104,1381241513.959020,1381241516.024022,2.065002 38 | 172.16.46.201,224.0.0.252,16,352,0.035047,1381241513.657882,1381241514.323056,0.665174 39 | 172.16.46.201,255.255.255.255,1,300,0.000000,1381241513.708828,1381241513.708828,0.000000 40 | 172.16.46.205,172.16.47.255,16,800,0.671654,1381241512.815529,1381241526.425171,13.609642 41 | 172.16.46.205,224.0.0.252,10,220,0.410407,1381241516.369164,1381241525.335859,8.966695 42 | 172.16.46.208,172.16.47.255,2,154,9.766676,1381241516.181709,1381241525.948385,9.766676 43 | 172.16.46.208,255.255.255.255,2,228,0.003958,1381241525.944403,1381241525.948361,0.003958 44 | 172.16.46.232,172.16.46.255,1,103,0.000000,1381241530.166795,1381241530.166795,0.000000 45 | 172.16.46.232,255.255.255.255,1,103,0.000000,1381241530.166764,1381241530.166764,0.000000 46 | 172.16.46.239,172.16.47.255,3,150,0.750124,1381241528.982531,1381241530.482648,1.500117 47 | 172.16.46.239,224.0.0.252,2,180,0.099931,1381241522.466757,1381241522.566688,0.099931 48 | 172.16.46.245,255.255.255.255,1,178,0.000000,1381241516.351089,1381241516.351089,0.000000 49 | 172.16.47.20,172.16.47.255,1,112,0.000000,1381241515.344717,1381241515.344717,0.000000 50 | 172.16.47.20,255.255.255.255,2,224,0.004505,1381241515.340203,1381241515.344708,0.004505 51 | 172.16.47.50,172.16.47.255,3,150,0.750892,1381241515.676068,1381241517.176969,1.500901 52 | 172.16.47.50,224.0.0.252,2,44,0.409743,1381241515.677544,1381241516.087287,0.409743 53 | 172.16.47.66,172.16.47.255,6,300,0.749955,1381241518.879501,1381241529.965282,11.085781 54 | 172.16.47.66,224.0.0.252,4,88,0.409230,1381241518.879954,1381241528.875765,9.995811 55 | 172.16.47.72,172.16.47.255,3,150,0.759163,1381241521.742563,1381241523.250883,1.508320 56 | 172.16.47.72,224.0.0.252,2,44,0.100598,1381241521.441692,1381241521.542290,0.100598 57 | 172.16.47.72,255.255.255.255,1,300,0.000000,1381241521.446563,1381241521.446563,0.000000 58 | 172.16.47.84,172.16.47.255,12,600,0.001017,1381241515.906637,1381241517.440095,1.533458 59 | 172.16.47.84,224.0.0.252,8,176,0.001166,1381241515.606543,1381241515.740221,0.133678 60 | 172.16.47.84,255.255.255.255,1,300,0.000000,1381241515.612304,1381241515.612304,0.000000 61 | 172.16.47.108,172.16.47.255,11,550,0.752920,1381241512.960836,1381241531.460814,18.499978 62 | 172.16.47.108,224.0.0.252,7,147,4.580173,1381241516.457376,1381241531.461996,15.004620 63 | 172.16.47.114,172.16.47.255,14,923,0.764506,1381241516.031501,1381241531.023130,14.991629 64 | 172.16.47.114,224.0.0.252,6,144,0.108670,1381241515.726945,1381241529.291774,13.564829 65 | 172.16.47.118,172.16.47.255,1,112,0.000000,1381241517.523483,1381241517.523483,0.000000 66 | 172.16.47.118,255.255.255.255,3,336,0.017523,1381241517.505758,1381241517.523311,0.017553 67 | 172.16.47.147,172.16.47.255,12,600,0.750003,1381241514.079161,1381241529.172526,15.093365 68 | 172.16.47.147,224.0.0.252,8,176,0.099957,1381241513.779431,1381241527.472706,13.693275 69 | 172.16.47.155,172.16.47.255,4,200,0.799997,1381241513.206267,1381241523.706689,10.500422 70 | 172.16.47.155,224.0.0.252,2,48,0.410773,1381241522.156045,1381241522.566818,0.410773 71 | 172.16.47.160,172.16.47.254,6,0,0.499860,1381241529.360577,1381241530.357450,0.996873 72 | 172.16.47.169,172.16.47.255,6,300,0.027124,1381241527.416415,1381241528.942699,1.526284 73 | 172.16.47.169,224.0.0.252,4,88,0.027471,1381241527.116422,1381241527.243184,0.126762 74 | 172.16.47.193,172.16.47.255,3,150,0.751212,1381241520.371775,1381241521.873920,1.502145 75 | 172.16.47.193,224.0.0.252,2,44,0.410104,1381241520.372633,1381241520.782737,0.410104 76 | 172.16.47.213,172.16.47.255,9,450,0.622539,1381241514.001279,1381241530.185971,16.184692 77 | 172.16.47.225,172.16.47.254,6,0,0.506206,1381241530.324124,1381241531.331043,1.006919 78 | 172.16.47.226,172.16.47.255,56,2800,0.014802,1381241514.449177,1381241531.263087,16.813910 79 | 172.16.47.226,224.0.0.252,40,886,0.004888,1381241514.137014,1381241530.296331,16.159317 80 | 172.16.47.226,255.255.255.255,1,300,0.000000,1381241514.127659,1381241514.127659,0.000000 81 | 172.16.47.247,172.16.47.255,3,150,0.754478,1381241519.783635,1381241521.288166,1.504531 82 | 172.16.47.247,224.0.0.252,2,44,0.410335,1381241519.784529,1381241520.194864,0.410335 83 | 172.16.47.254,173.194.36.33,65,10271,0.001078,1381241516.183299,1381241526.744391,10.561092 84 | 172.16.47.254,173.194.36.36,18,4621,0.001509,1381241516.182654,1381241526.743817,10.561163 85 | 172.16.47.254,173.194.36.42,49,14128,0.006204,1381241516.183082,1381241526.744152,10.561070 86 | 172.16.47.254,173.194.36.53,265,182833,0.000670,1381241516.273246,1381241526.916238,10.642992 87 | -------------------------------------------------------------------------------- /Flow.py: -------------------------------------------------------------------------------- 1 | from Packet import * 2 | 3 | #input: list of packets, timegap - real number 4 | #return val: list of flows 5 | # 6 | #merges collection of packets(objects) into collection of flows(many-to-one) 7 | #Working: group packets with same ip-pair(direction irrelevant) and merge all packets for 8 | #which |packet1.time - packet2.time| < threshold(timegap) 9 | def packetsToFlows(packets,timegap): 10 | #sanity check for 0 packets 11 | if len(packets) == 0: 12 | return None 13 | 14 | outputflows = [] 15 | 16 | #perform a radix-sort to group together packets 17 | #with same ip-pairs(packet.key represents an ip-pair) 18 | #and sort these packets according to timestamp 19 | packets.sort(key = lambda packet:packet.timestamp) 20 | packets.sort(key = lambda packet:packet.key) 21 | 22 | nextflow = Flow(None) 23 | for nextpacket in packets: 24 | #if ip-pairs dont match or time-difference of prev and current packet greater 25 | #than timegap, create a new flow 26 | if (nextflow.key != nextpacket.key) or ((nextpacket.timestamp - nextflow.getEnd()) > timegap): 27 | nextflow = Flow(nextpacket) 28 | outputflows.append(nextflow) 29 | #if not then add packet to previous flow 30 | else: 31 | nextflow.addPacket(nextpacket) 32 | 33 | return outputflows 34 | 35 | #same as function packetsToFlow but merges flows instead of packets 36 | def combineFlows(flows, timegap): 37 | if len(flows) == 0: 38 | return None 39 | 40 | outputflows = [] 41 | 42 | flows.sort(key = lambda flow:flow.getStart()) 43 | flows.sort(key = lambda flow:flow.key) 44 | 45 | nextoutflow = Flow(None) 46 | for nextflow in flows: 47 | if (nextoutflow.key != nextflow.key) or ((nextflow.getStart() - nextoutflow.getEnd()) > timegap): 48 | nextoutflow = nextflow 49 | outputflows.append(nextoutflow) 50 | else: 51 | nextoutflow.addFlow(nextflow) 52 | 53 | return outputflows 54 | 55 | def getCustomWeightedAvg(n1, w1, n2, w2): 56 | num = 0 57 | den = 0 58 | if w1 > 0: 59 | num += w1 * n1 60 | den += w1 61 | if w2 > 0: 62 | num += w2 * n2 63 | den += w2 64 | if den <= 0: 65 | den = 1 66 | return num / den 67 | 68 | 69 | #write list of flows into file in desired format 70 | def writeFlowsToFile(flowlist, filename): 71 | outfile = open(filename, 'w') 72 | for flow in flowlist: 73 | outfile.write( 74 | socket.inet_ntoa(flow.ip1) + ',' + 75 | socket.inet_ntoa(flow.ip2) + ',' + 76 | str(flow.n_packet1) + ',' + 77 | str(flow.n_byte1) + ',' + 78 | '%.6f'%flow.t_start1 + ',' + 79 | '%.6f'%flow.t_end1 + ',' + 80 | '%.6f'%flow.getInterArrivaltime1() + ',' + 81 | str(flow.n_packet2) + ',' + 82 | str(flow.n_byte2) + ',' + 83 | '%.6f'%flow.t_start2 + ',' + 84 | '%.6f'%flow.t_end2 + ',' + 85 | '%.6f'%flow.getInterArrivaltime2() + '\n') 86 | outfile.close() 87 | 88 | #class which defines the structure of flows 89 | class Flow: 90 | #constructor of default flow 91 | def __init__(self,firstpacket): 92 | if firstpacket == None: 93 | self.ip1 = None 94 | self.ip2 = None 95 | self.key = None 96 | self.n_packet1 = 0 97 | self.n_byte1 = 0 98 | self.t_start1 = 0 99 | self.t_end1 = 0 100 | self.t_interarrival1 = [] 101 | self.n_packet2 = 0 102 | self.n_byte2 = 0 103 | self.t_start2 = 0 104 | self.t_end2 = 0 105 | self.t_interarrival2 = [] 106 | else: 107 | if firstpacket.source < firstpacket.dest: 108 | self.ip1 = firstpacket.source 109 | self.ip2 = firstpacket.dest 110 | self.n_packet1 = 1 111 | self.n_byte1 = firstpacket.size 112 | self.t_start1 = firstpacket.timestamp 113 | self.t_end1 = firstpacket.timestamp 114 | self.t_interarrival1 = [] 115 | self.n_packet2 = 0 116 | self.n_byte2 = 0 117 | self.t_start2 = 0 118 | self.t_end2 = 0 119 | self.t_interarrival2 = [] 120 | else: 121 | self.ip1 = firstpacket.dest 122 | self.ip2 = firstpacket.source 123 | self.n_packet1 = 0 124 | self.n_byte1 = 0 125 | self.t_start1 = 0 126 | self.t_end1 = 0 127 | self.t_interarrival1 = [] 128 | self.n_packet2 = 1 129 | self.n_byte2 = firstpacket.size 130 | self.t_start2 = firstpacket.timestamp 131 | self.t_end2 = firstpacket.timestamp 132 | self.t_interarrival2 = [] 133 | self.key = firstpacket.key 134 | 135 | #add a flow to the current flow (by changing volume and duration) 136 | def addFlow(self,flow): 137 | self.t_interarrival1 += flow.t_interarrival1 138 | self.t_interarrival2 += flow.t_interarrival2 139 | self.n_packet1 += flow.n_packet1 140 | self.n_packet2 += flow.n_packet2 141 | self.n_byte1 += flow.n_byte1 142 | self.n_byte2 += flow.n_byte2 143 | 144 | temp = min(self.t_start1,flow.t_start1) 145 | if temp == 0: 146 | self.t_start1 = self.t_start1 + flow.t_start1 147 | else: 148 | self.t_start1 = temp 149 | 150 | temp = min(self.t_start2,flow.t_start2) 151 | if temp == 0: 152 | self.t_start2 = self.t_start2 + flow.t_start2 153 | else: 154 | self.t_start2 = temp 155 | 156 | if(self.t_end1 < flow.t_end1): 157 | self.t_end1 = flow.t_end1 158 | if(self.t_end2 < flow.t_end2): 159 | self.t_end2 = flow.t_end2 160 | 161 | #add a packet to the current flow (by changing volume and duration) 162 | def addPacket(self,packet): 163 | if packet.source == self.ip1 and packet.dest == self.ip2: 164 | 165 | #initialize flow if not initialized 166 | if self.n_packet1 == 0: 167 | self.t_start1 = packet.timestamp 168 | self.t_end1 = packet.timestamp 169 | self.n_packet1 += 1 170 | self.n_byte1 += packet.size 171 | return 172 | 173 | if self.t_end1 < packet.timestamp: 174 | self.t_interarrival1.append(packet.timestamp-self.t_end1) 175 | self.t_end1 = packet.timestamp 176 | elif self.t_start1 > packet.timestamp: 177 | self.t_interarrival1.append(self.t_start1-packet.timestamp) 178 | self.t_start1 = packet.timestamp 179 | self.n_packet1 += 1 180 | self.n_byte1 += packet.size 181 | 182 | elif packet.source == self.ip2 and packet.dest == self.ip1: 183 | 184 | #initialize flow if not initialized 185 | if self.n_packet2 == 0: 186 | self.t_start2 = packet.timestamp 187 | self.t_end2 = packet.timestamp 188 | self.n_packet2 += 1 189 | self.n_byte2 += packet.size 190 | return 191 | 192 | if self.t_end2 < packet.timestamp: 193 | self.t_interarrival2.append(packet.timestamp-self.t_end2) 194 | self.t_end2 = packet.timestamp 195 | elif self.t_start2 > packet.timestamp: 196 | self.t_interarrival2.append(self.t_start2-packet.timestamp) 197 | self.t_start2 = packet.timestamp 198 | self.n_packet2 += 1 199 | self.n_byte2 += packet.size 200 | 201 | else: 202 | raise Exception('packet does not belong to flow') 203 | 204 | def getDurationInSeconds(self): 205 | return self.getEnd() - self.getStart() 206 | 207 | def getInterArrivaltime(self): 208 | combined = (self.t_interarrival1+self.t_interarrival2).sort() 209 | if len(combined) > 0: 210 | return combined[len(combined)/2] 211 | return 0 212 | 213 | def getInterArrivaltime1(self): 214 | self.t_interarrival1.sort() 215 | if len(self.t_interarrival1) > 0: 216 | return self.t_interarrival1[len(self.t_interarrival1)/2] 217 | return 0 218 | 219 | def getInterArrivaltime2(self): 220 | self.t_interarrival2.sort() 221 | if len(self.t_interarrival2) > 0: 222 | return self.t_interarrival2[len(self.t_interarrival2)/2] 223 | return 0 224 | 225 | def getNoOfBytes(self): 226 | return self.n_byte1 + self.n_byte2 227 | 228 | def getNoOfPackets(self): 229 | return self.n_packet1 + self.n_packet2 230 | 231 | def getStart(self): 232 | temp = min(self.t_start1, self.t_start2) 233 | if temp == 0: 234 | return self.t_start1 + self.t_start2 235 | else: 236 | return temp 237 | 238 | def getEnd(self): 239 | return max(self.t_end1, self.t_end2) 240 | -------------------------------------------------------------------------------- /flowdata/samplepcap.pcap.csv: -------------------------------------------------------------------------------- 1 | 17.172.232.209,172.16.46.234,5,148,1381241521.387585,1381241526.327872,1.414117,0,0,0.000000,0.000000,0.000000 2 | 74.125.135.84,172.16.47.254,11,6205,1381241515.158688,1381241516.175452,0.009166,12,2863,1381241515.158302,1381241516.175506,0.001636 3 | 74.125.135.125,172.16.47.254,2,26,1381241516.919667,1381241527.045491,10.125824,2,0,1381241516.777075,1381241527.045547,10.268472 4 | 74.125.236.99,172.16.47.254,27,12023,1381241516.183117,1381241531.381654,0.002099,30,8908,1381241516.182884,1381241531.381377,0.000697 5 | 74.125.236.111,172.16.47.254,33,16868,1381241516.182140,1381241523.101729,0.010431,40,2709,1381241516.181904,1381241526.745129,0.001184 6 | 74.125.236.125,172.16.47.254,18,8316,1381241516.269762,1381241524.069102,0.016158,21,3149,1381241516.269489,1381241524.069122,0.000810 7 | 74.125.236.180,172.16.47.254,19,7889,1381241516.183697,1381241522.638451,0.000976,22,2568,1381241516.183536,1381241522.638503,0.000377 8 | 172.16.0.30,172.16.47.254,25,2357,1381241515.066695,1381241531.077939,0.001436,25,904,1381241515.066307,1381241530.983530,0.000294 9 | 172.16.35.35,172.16.47.90,1,79,1381241517.343985,1381241517.343985,0.000000,0,0,0.000000,0.000000,0.000000 10 | 172.16.46.2,255.255.255.255,2,600,1381241515.617013,1381241521.450431,5.833418,0,0,0.000000,0.000000,0.000000 11 | 172.16.46.3,255.255.255.255,2,600,1381241515.615970,1381241521.451864,5.835894,0,0,0.000000,0.000000,0.000000 12 | 172.16.46.4,255.255.255.255,2,600,1381241515.615972,1381241521.449934,5.833962,0,0,0.000000,0.000000,0.000000 13 | 172.16.46.5,255.255.255.255,2,600,1381241515.615498,1381241521.455883,5.840385,0,0,0.000000,0.000000,0.000000 14 | 172.16.46.6,255.255.255.255,2,600,1381241515.616298,1381241521.450185,5.833887,0,0,0.000000,0.000000,0.000000 15 | 172.16.46.7,255.255.255.255,2,600,1381241515.615960,1381241521.453132,5.837172,0,0,0.000000,0.000000,0.000000 16 | 172.16.46.8,255.255.255.255,2,600,1381241515.620932,1381241521.451320,5.830388,0,0,0.000000,0.000000,0.000000 17 | 172.16.46.9,255.255.255.255,2,600,1381241515.617022,1381241521.449909,5.832887,0,0,0.000000,0.000000,0.000000 18 | 172.16.46.19,172.16.47.255,1,40,1381241528.380552,1381241528.380552,0.000000,0,0,0.000000,0.000000,0.000000 19 | 172.16.46.19,255.255.255.255,1,40,1381241524.363068,1381241524.363068,0.000000,0,0,0.000000,0.000000,0.000000 20 | 172.16.46.43,172.16.47.255,6,395,1381241513.205332,1381241521.439056,0.754085,0,0,0.000000,0.000000,0.000000 21 | 172.16.46.43,224.0.0.252,3,66,1381241512.866902,1381241515.128020,1.850282,0,0,0.000000,0.000000,0.000000 22 | 172.16.46.43,255.255.255.255,3,435,1381241521.425850,1381241521.439363,0.013187,0,0,0.000000,0.000000,0.000000 23 | 172.16.46.112,172.16.47.255,148,7400,1381241513.087010,1381241531.316627,0.001065,0,0,0.000000,0.000000,0.000000 24 | 172.16.46.112,224.0.0.252,102,2448,1381241512.975391,1381241531.513308,0.000243,0,0,0.000000,0.000000,0.000000 25 | 172.16.46.114,172.16.47.255,1,112,1381241518.440596,1381241518.440596,0.000000,0,0,0.000000,0.000000,0.000000 26 | 172.16.46.114,255.255.255.255,3,336,1381241518.433948,1381241518.440592,0.006607,0,0,0.000000,0.000000,0.000000 27 | 172.16.46.123,172.16.47.255,6,300,1381241522.864439,1381241524.480284,0.116260,0,0,0.000000,0.000000,0.000000 28 | 172.16.46.123,224.0.0.252,4,88,1381241522.565091,1381241522.780609,0.099492,0,0,0.000000,0.000000,0.000000 29 | 172.16.46.139,172.16.47.255,1,112,1381241528.998949,1381241528.998949,0.000000,0,0,0.000000,0.000000,0.000000 30 | 172.16.46.174,172.16.47.255,1,114,1381241515.875770,1381241515.875770,0.000000,0,0,0.000000,0.000000,0.000000 31 | 172.16.46.174,255.255.255.255,1,114,1381241515.875753,1381241515.875753,0.000000,0,0,0.000000,0.000000,0.000000 32 | 172.16.46.176,172.16.255.255,1,112,1381241528.593017,1381241528.593017,0.000000,0,0,0.000000,0.000000,0.000000 33 | 172.16.46.176,255.255.255.255,3,336,1381241528.589635,1381241528.592996,0.003088,0,0,0.000000,0.000000,0.000000 34 | 172.16.46.189,172.16.47.255,6,300,1381241530.094065,1381241530.864401,0.018690,0,0,0.000000,0.000000,0.000000 35 | 172.16.46.189,224.0.0.252,8,176,1381241529.793346,1381241531.550277,0.018931,0,0,0.000000,0.000000,0.000000 36 | 172.16.46.189,255.255.255.255,1,300,1381241529.798365,1381241529.798365,0.000000,0,0,0.000000,0.000000,0.000000 37 | 172.16.46.201,172.16.47.255,24,1200,1381241513.959020,1381241516.024022,0.053104,0,0,0.000000,0.000000,0.000000 38 | 172.16.46.201,224.0.0.252,16,352,1381241513.657882,1381241514.323056,0.035047,0,0,0.000000,0.000000,0.000000 39 | 172.16.46.201,255.255.255.255,1,300,1381241513.708828,1381241513.708828,0.000000,0,0,0.000000,0.000000,0.000000 40 | 172.16.46.205,172.16.47.255,16,800,1381241512.815529,1381241526.425171,0.671654,0,0,0.000000,0.000000,0.000000 41 | 172.16.46.205,224.0.0.252,10,220,1381241516.369164,1381241525.335859,0.410407,0,0,0.000000,0.000000,0.000000 42 | 172.16.46.208,172.16.47.255,2,154,1381241516.181709,1381241525.948385,9.766676,0,0,0.000000,0.000000,0.000000 43 | 172.16.46.208,255.255.255.255,2,228,1381241525.944403,1381241525.948361,0.003958,0,0,0.000000,0.000000,0.000000 44 | 172.16.46.232,172.16.46.255,1,103,1381241530.166795,1381241530.166795,0.000000,0,0,0.000000,0.000000,0.000000 45 | 172.16.46.232,255.255.255.255,1,103,1381241530.166764,1381241530.166764,0.000000,0,0,0.000000,0.000000,0.000000 46 | 172.16.46.239,172.16.47.255,3,150,1381241528.982531,1381241530.482648,0.750124,0,0,0.000000,0.000000,0.000000 47 | 172.16.46.239,224.0.0.252,2,180,1381241522.466757,1381241522.566688,0.099931,0,0,0.000000,0.000000,0.000000 48 | 172.16.46.245,255.255.255.255,1,178,1381241516.351089,1381241516.351089,0.000000,0,0,0.000000,0.000000,0.000000 49 | 172.16.47.20,172.16.47.255,1,112,1381241515.344717,1381241515.344717,0.000000,0,0,0.000000,0.000000,0.000000 50 | 172.16.47.20,255.255.255.255,2,224,1381241515.340203,1381241515.344708,0.004505,0,0,0.000000,0.000000,0.000000 51 | 172.16.47.50,172.16.47.255,3,150,1381241515.676068,1381241517.176969,0.750892,0,0,0.000000,0.000000,0.000000 52 | 172.16.47.50,224.0.0.252,2,44,1381241515.677544,1381241516.087287,0.409743,0,0,0.000000,0.000000,0.000000 53 | 172.16.47.66,172.16.47.255,6,300,1381241518.879501,1381241529.965282,0.749955,0,0,0.000000,0.000000,0.000000 54 | 172.16.47.66,224.0.0.252,4,88,1381241518.879954,1381241528.875765,0.409230,0,0,0.000000,0.000000,0.000000 55 | 172.16.47.72,172.16.47.255,3,150,1381241521.742563,1381241523.250883,0.759163,0,0,0.000000,0.000000,0.000000 56 | 172.16.47.72,224.0.0.252,2,44,1381241521.441692,1381241521.542290,0.100598,0,0,0.000000,0.000000,0.000000 57 | 172.16.47.72,255.255.255.255,1,300,1381241521.446563,1381241521.446563,0.000000,0,0,0.000000,0.000000,0.000000 58 | 172.16.47.84,172.16.47.255,12,600,1381241515.906637,1381241517.440095,0.001017,0,0,0.000000,0.000000,0.000000 59 | 172.16.47.84,224.0.0.252,8,176,1381241515.606543,1381241515.740221,0.001166,0,0,0.000000,0.000000,0.000000 60 | 172.16.47.84,255.255.255.255,1,300,1381241515.612304,1381241515.612304,0.000000,0,0,0.000000,0.000000,0.000000 61 | 172.16.47.108,172.16.47.255,11,550,1381241512.960836,1381241531.460814,0.752920,0,0,0.000000,0.000000,0.000000 62 | 172.16.47.108,224.0.0.252,7,147,1381241516.457376,1381241531.461996,4.580173,0,0,0.000000,0.000000,0.000000 63 | 172.16.47.114,172.16.47.255,14,923,1381241516.031501,1381241531.023130,0.764506,0,0,0.000000,0.000000,0.000000 64 | 172.16.47.114,224.0.0.252,6,144,1381241515.726945,1381241529.291774,0.108670,0,0,0.000000,0.000000,0.000000 65 | 172.16.47.118,172.16.47.255,1,112,1381241517.523483,1381241517.523483,0.000000,0,0,0.000000,0.000000,0.000000 66 | 172.16.47.118,255.255.255.255,3,336,1381241517.505758,1381241517.523311,0.017523,0,0,0.000000,0.000000,0.000000 67 | 172.16.47.147,172.16.47.255,12,600,1381241514.079161,1381241529.172526,0.750003,0,0,0.000000,0.000000,0.000000 68 | 172.16.47.147,224.0.0.252,8,176,1381241513.779431,1381241527.472706,0.099957,0,0,0.000000,0.000000,0.000000 69 | 172.16.47.155,172.16.47.255,4,200,1381241513.206267,1381241523.706689,0.799997,0,0,0.000000,0.000000,0.000000 70 | 172.16.47.155,224.0.0.252,2,48,1381241522.156045,1381241522.566818,0.410773,0,0,0.000000,0.000000,0.000000 71 | 172.16.47.160,172.16.47.254,3,0,1381241529.360577,1381241530.357401,0.499872,3,0,1381241529.360625,1381241530.357450,0.499860 72 | 172.16.47.169,172.16.47.255,6,300,1381241527.416415,1381241528.942699,0.027124,0,0,0.000000,0.000000,0.000000 73 | 172.16.47.169,224.0.0.252,4,88,1381241527.116422,1381241527.243184,0.027471,0,0,0.000000,0.000000,0.000000 74 | 172.16.47.193,172.16.47.255,3,150,1381241520.371775,1381241521.873920,0.751212,0,0,0.000000,0.000000,0.000000 75 | 172.16.47.193,224.0.0.252,2,44,1381241520.372633,1381241520.782737,0.410104,0,0,0.000000,0.000000,0.000000 76 | 172.16.47.213,172.16.47.255,9,450,1381241514.001279,1381241530.185971,0.622539,0,0,0.000000,0.000000,0.000000 77 | 172.16.47.225,172.16.47.254,3,0,1381241530.324124,1381241531.330982,0.506206,3,0,1381241530.324169,1381241531.331043,0.506219 78 | 172.16.47.226,172.16.47.255,56,2800,1381241514.449177,1381241531.263087,0.014802,0,0,0.000000,0.000000,0.000000 79 | 172.16.47.226,224.0.0.252,40,886,1381241514.137014,1381241530.296331,0.004888,0,0,0.000000,0.000000,0.000000 80 | 172.16.47.226,255.255.255.255,1,300,1381241514.127659,1381241514.127659,0.000000,0,0,0.000000,0.000000,0.000000 81 | 172.16.47.247,172.16.47.255,3,150,1381241519.783635,1381241521.288166,0.754478,0,0,0.000000,0.000000,0.000000 82 | 172.16.47.247,224.0.0.252,2,44,1381241519.784529,1381241520.194864,0.410335,0,0,0.000000,0.000000,0.000000 83 | 172.16.47.254,173.194.36.33,35,4469,1381241516.183299,1381241526.744391,0.001078,30,5802,1381241516.183608,1381241523.022849,0.003125 84 | 172.16.47.254,173.194.36.36,10,484,1381241516.182654,1381241526.743817,0.001509,8,4137,1381241516.182908,1381241517.773387,0.012693 85 | 172.16.47.254,173.194.36.42,27,2115,1381241516.183082,1381241526.744152,0.006204,22,12013,1381241516.183386,1381241521.682193,0.014527 86 | 172.16.47.254,173.194.36.53,135,52338,1381241516.273246,1381241526.916238,0.000670,130,130495,1381241516.273521,1381241526.916151,0.002589 87 | -------------------------------------------------------------------------------- /pcapdata/samplepcap.pcap.csv: -------------------------------------------------------------------------------- 1 | 172.16.46.205,172.16.47.255,17,1381241512.815529000,50 2 | 172.16.46.43,224.0.0.252,17,1381241512.866902000,22 3 | 172.16.47.108,172.16.47.255,17,1381241512.960836000,50 4 | 172.16.46.112,224.0.0.252,17,1381241512.975391000,24 5 | 172.16.46.112,224.0.0.252,17,1381241512.975626000,24 6 | 172.16.46.112,172.16.47.255,17,1381241513.087010000,50 7 | 172.16.46.112,172.16.47.255,17,1381241513.087042000,50 8 | 172.16.46.112,224.0.0.252,17,1381241513.087607000,24 9 | 172.16.46.112,224.0.0.252,17,1381241513.087801000,24 10 | 172.16.46.43,172.16.47.255,17,1381241513.205332000,50 11 | 172.16.47.155,172.16.47.255,17,1381241513.206267000,50 12 | 172.16.46.112,172.16.47.255,17,1381241513.315410000,50 13 | 172.16.46.112,172.16.47.255,17,1381241513.315419000,50 14 | 172.16.46.112,224.0.0.252,17,1381241513.498114000,24 15 | 172.16.46.112,224.0.0.252,17,1381241513.498305000,24 16 | 172.16.46.201,224.0.0.252,17,1381241513.657882000,22 17 | 172.16.46.201,255.255.255.255,17,1381241513.708828000,300 18 | 172.16.46.201,224.0.0.252,17,1381241513.758170000,22 19 | 172.16.47.147,224.0.0.252,17,1381241513.779431000,22 20 | 172.16.46.201,224.0.0.252,17,1381241513.820939000,22 21 | 172.16.46.112,172.16.47.255,17,1381241513.837014000,50 22 | 172.16.46.112,172.16.47.255,17,1381241513.837045000,50 23 | 172.16.47.147,224.0.0.252,17,1381241513.879146000,22 24 | 172.16.46.201,224.0.0.252,17,1381241513.921227000,22 25 | 172.16.46.201,172.16.47.255,17,1381241513.959020000,50 26 | 172.16.46.43,172.16.47.255,17,1381241513.959417000,50 27 | 172.16.46.201,224.0.0.252,17,1381241513.983719000,22 28 | 172.16.47.213,172.16.47.255,17,1381241514.001279000,50 29 | 172.16.46.201,224.0.0.252,17,1381241514.057926000,22 30 | 172.16.46.112,172.16.47.255,17,1381241514.065055000,50 31 | 172.16.46.112,224.0.0.252,17,1381241514.065716000,24 32 | 172.16.46.112,172.16.47.255,17,1381241514.065750000,50 33 | 172.16.46.112,172.16.47.255,17,1381241514.065959000,50 34 | 172.16.46.112,172.16.47.255,17,1381241514.065977000,50 35 | 172.16.46.112,224.0.0.252,17,1381241514.066452000,24 36 | 172.16.47.147,172.16.47.255,17,1381241514.079161000,50 37 | 172.16.46.201,224.0.0.252,17,1381241514.084973000,22 38 | 172.16.46.112,172.16.47.255,17,1381241514.086839000,50 39 | 172.16.46.112,172.16.47.255,17,1381241514.086961000,50 40 | 172.16.46.112,224.0.0.252,17,1381241514.087530000,24 41 | 172.16.46.112,224.0.0.252,17,1381241514.087718000,24 42 | 172.16.46.201,224.0.0.252,17,1381241514.109868000,22 43 | 172.16.46.201,172.16.47.255,17,1381241514.122264000,50 44 | 172.16.47.226,255.255.255.255,17,1381241514.127659000,300 45 | 172.16.47.226,224.0.0.252,17,1381241514.137014000,22 46 | 172.16.46.201,224.0.0.252,17,1381241514.144915000,22 47 | 172.16.46.201,224.0.0.252,17,1381241514.158393000,22 48 | 172.16.46.201,224.0.0.252,17,1381241514.169316000,22 49 | 172.16.46.201,224.0.0.252,17,1381241514.210220000,22 50 | 172.16.46.201,224.0.0.252,17,1381241514.216328000,22 51 | 172.16.46.201,224.0.0.252,17,1381241514.245105000,22 52 | 172.16.47.226,224.0.0.252,17,1381241514.245290000,22 53 | 172.16.46.201,224.0.0.252,17,1381241514.270699000,22 54 | 172.16.46.201,172.16.47.255,17,1381241514.285813000,50 55 | 172.16.46.201,224.0.0.252,17,1381241514.323056000,22 56 | 172.16.46.201,172.16.47.255,17,1381241514.358418000,50 57 | 172.16.46.201,172.16.47.255,17,1381241514.411101000,50 58 | 172.16.46.201,172.16.47.255,17,1381241514.445446000,50 59 | 172.16.47.226,172.16.47.255,17,1381241514.449177000,50 60 | 172.16.46.201,172.16.47.255,17,1381241514.471601000,50 61 | 172.16.46.112,224.0.0.252,17,1381241514.497967000,24 62 | 172.16.46.112,224.0.0.252,17,1381241514.498146000,24 63 | 172.16.46.112,224.0.0.252,17,1381241514.498269000,24 64 | 172.16.46.112,224.0.0.252,17,1381241514.498432000,24 65 | 172.16.46.201,172.16.47.255,17,1381241514.523845000,50 66 | 172.16.46.112,172.16.47.255,17,1381241514.587548000,50 67 | 172.16.46.112,172.16.47.255,17,1381241514.587571000,50 68 | 172.16.46.201,172.16.47.255,17,1381241514.707746000,50 69 | 172.16.46.43,172.16.47.255,17,1381241514.716148000,50 70 | 172.16.46.43,224.0.0.252,17,1381241514.717184000,22 71 | 172.16.46.112,172.16.47.255,17,1381241514.815964000,50 72 | 172.16.46.112,172.16.47.255,17,1381241514.815995000,50 73 | 172.16.47.147,172.16.47.255,17,1381241514.828869000,50 74 | 172.16.46.112,172.16.47.255,17,1381241514.836655000,50 75 | 172.16.46.112,172.16.47.255,17,1381241514.837720000,50 76 | 172.16.46.201,172.16.47.255,17,1381241514.871938000,50 77 | 172.16.46.201,172.16.47.255,17,1381241515.034994000,50 78 | 172.16.47.254,172.16.0.30,17,1381241515.066307000,37 79 | 172.16.47.254,172.16.0.30,17,1381241515.066427000,45 80 | 172.16.47.254,172.16.0.30,17,1381241515.066465000,33 81 | 172.16.0.30,172.16.47.254,17,1381241515.066695000,122 82 | 172.16.0.30,172.16.47.254,17,1381241515.066727000,49 83 | 172.16.47.254,172.16.0.30,17,1381241515.066862000,34 84 | 172.16.47.254,172.16.0.30,17,1381241515.066884000,34 85 | 172.16.0.30,172.16.47.254,17,1381241515.067109000,66 86 | 172.16.0.30,172.16.47.254,17,1381241515.067129000,34 87 | 172.16.46.201,172.16.47.255,17,1381241515.107947000,50 88 | 172.16.46.43,224.0.0.252,17,1381241515.128020000,22 89 | 172.16.0.30,172.16.47.254,17,1381241515.157816000,78 90 | 172.16.47.254,74.125.135.84,6,1381241515.158302000,0 91 | 74.125.135.84,172.16.47.254,6,1381241515.158688000,0 92 | 172.16.47.254,74.125.135.84,6,1381241515.158752000,0 93 | 172.16.47.254,74.125.135.84,6,1381241515.159401000,194 94 | 74.125.135.84,172.16.47.254,6,1381241515.159653000,0 95 | 172.16.46.201,172.16.47.255,17,1381241515.160910000,50 96 | 172.16.46.201,172.16.47.255,17,1381241515.195030000,50 97 | 172.16.47.226,172.16.47.255,17,1381241515.213142000,50 98 | 172.16.46.201,172.16.47.255,17,1381241515.220794000,50 99 | 172.16.47.213,172.16.47.255,17,1381241515.229178000,50 100 | 172.16.46.201,172.16.47.255,17,1381241515.273844000,50 101 | 172.16.47.20,255.255.255.255,17,1381241515.340203000,112 102 | 172.16.47.20,255.255.255.255,17,1381241515.344708000,112 103 | 172.16.47.20,172.16.47.255,17,1381241515.344717000,112 104 | 172.16.47.213,172.16.47.255,17,1381241515.435683000,50 105 | 172.16.46.201,172.16.47.255,17,1381241515.457789000,50 106 | 172.16.46.43,172.16.47.255,17,1381241515.465648000,50 107 | 172.16.46.112,172.16.47.255,17,1381241515.563990000,50 108 | 172.16.46.112,172.16.47.255,17,1381241515.563998000,50 109 | 172.16.46.112,224.0.0.252,17,1381241515.564691000,24 110 | 172.16.46.112,224.0.0.252,17,1381241515.564876000,24 111 | 172.16.46.112,172.16.47.255,17,1381241515.567392000,50 112 | 172.16.46.112,172.16.47.255,17,1381241515.567455000,50 113 | 172.16.47.147,172.16.47.255,17,1381241515.578872000,50 114 | 172.16.46.112,172.16.47.255,17,1381241515.589558000,50 115 | 172.16.46.112,172.16.47.255,17,1381241515.589568000,50 116 | 172.16.47.84,224.0.0.252,17,1381241515.606543000,22 117 | 172.16.47.84,255.255.255.255,17,1381241515.612304000,300 118 | 172.16.46.5,255.255.255.255,17,1381241515.615498000,300 119 | 172.16.46.7,255.255.255.255,17,1381241515.615960000,300 120 | 172.16.46.3,255.255.255.255,17,1381241515.615970000,300 121 | 172.16.46.4,255.255.255.255,17,1381241515.615972000,300 122 | 172.16.46.6,255.255.255.255,17,1381241515.616298000,300 123 | 172.16.46.2,255.255.255.255,17,1381241515.617013000,300 124 | 172.16.46.9,255.255.255.255,17,1381241515.617022000,300 125 | 172.16.46.8,255.255.255.255,17,1381241515.620932000,300 126 | 172.16.46.201,172.16.47.255,17,1381241515.621801000,50 127 | 172.16.47.84,224.0.0.252,17,1381241515.638287000,22 128 | 172.16.47.84,224.0.0.252,17,1381241515.638972000,22 129 | 172.16.47.84,224.0.0.252,17,1381241515.640138000,22 130 | 172.16.47.50,172.16.47.255,17,1381241515.676068000,50 131 | 172.16.47.50,224.0.0.252,17,1381241515.677544000,22 132 | 172.16.47.84,224.0.0.252,17,1381241515.706300000,22 133 | 172.16.47.114,224.0.0.252,17,1381241515.726945000,24 134 | 172.16.47.84,224.0.0.252,17,1381241515.738363000,22 135 | 172.16.47.84,224.0.0.252,17,1381241515.739196000,22 136 | 172.16.47.84,224.0.0.252,17,1381241515.740221000,22 137 | 172.16.46.201,172.16.47.255,17,1381241515.784986000,50 138 | 74.125.135.84,172.16.47.254,6,1381241515.827897000,3554 139 | 172.16.47.254,74.125.135.84,6,1381241515.827960000,0 140 | 172.16.47.114,224.0.0.252,17,1381241515.828694000,24 141 | 172.16.47.254,74.125.135.84,6,1381241515.836829000,294 142 | 74.125.135.84,172.16.47.254,6,1381241515.837063000,0 143 | 172.16.47.226,224.0.0.252,17,1381241515.841842000,25 144 | 172.16.47.254,74.125.135.84,6,1381241515.844348000,53 145 | 74.125.135.84,172.16.47.254,6,1381241515.844659000,0 146 | 172.16.47.254,74.125.135.84,6,1381241515.844701000,61 147 | 74.125.135.84,172.16.47.254,6,1381241515.844872000,0 148 | 172.16.47.254,74.125.135.84,6,1381241515.846337000,1460 149 | 172.16.47.254,74.125.135.84,6,1381241515.846346000,801 150 | 74.125.135.84,172.16.47.254,6,1381241515.846600000,0 151 | 74.125.135.84,172.16.47.254,6,1381241515.846610000,0 152 | 172.16.46.201,172.16.47.255,17,1381241515.857784000,50 153 | 172.16.46.174,255.255.255.255,17,1381241515.875753000,114 154 | 172.16.46.174,172.16.47.255,17,1381241515.875770000,114 155 | 172.16.47.84,172.16.47.255,17,1381241515.906637000,50 156 | 172.16.46.201,172.16.47.255,17,1381241515.910806000,50 157 | 172.16.47.84,172.16.47.255,17,1381241515.938656000,50 158 | 172.16.47.84,172.16.47.255,17,1381241515.939592000,50 159 | 172.16.47.84,172.16.47.255,17,1381241515.940583000,50 160 | 172.16.46.201,172.16.47.255,17,1381241515.944746000,50 161 | 172.16.47.226,224.0.0.252,17,1381241515.946668000,25 162 | 172.16.46.201,172.16.47.255,17,1381241515.970918000,50 163 | 74.125.135.84,172.16.47.254,6,1381241515.973029000,242 164 | 172.16.46.112,224.0.0.252,17,1381241515.975150000,24 165 | 172.16.46.112,224.0.0.252,17,1381241515.975388000,24 166 | 172.16.47.226,172.16.47.255,17,1381241515.977426000,50 167 | 172.16.47.254,74.125.135.84,6,1381241516.009135000,0 168 | 74.125.135.84,172.16.47.254,6,1381241516.010005000,53 169 | 172.16.47.254,74.125.135.84,6,1381241516.010172000,0 170 | 172.16.46.201,172.16.47.255,17,1381241516.024022000,50 171 | 172.16.47.114,172.16.47.255,17,1381241516.031501000,50 172 | 172.16.47.50,224.0.0.252,17,1381241516.087287000,22 173 | 172.16.46.112,172.16.47.255,17,1381241516.088415000,50 174 | 172.16.46.112,172.16.47.255,17,1381241516.088495000,50 175 | 172.16.46.112,224.0.0.252,17,1381241516.089157000,24 176 | 172.16.46.112,224.0.0.252,17,1381241516.089381000,24 177 | 74.125.135.84,172.16.47.254,6,1381241516.175452000,2356 178 | 172.16.47.254,74.125.135.84,6,1381241516.175506000,0 179 | 172.16.47.254,172.16.0.30,17,1381241516.180192000,33 180 | 172.16.47.254,172.16.0.30,17,1381241516.180455000,45 181 | 172.16.0.30,172.16.47.254,17,1381241516.180704000,230 182 | 172.16.47.254,172.16.0.30,17,1381241516.180749000,37 183 | 172.16.47.254,172.16.0.30,17,1381241516.181084000,43 184 | 172.16.0.30,172.16.47.254,17,1381241516.181117000,237 185 | 172.16.47.254,172.16.0.30,17,1381241516.181348000,55 186 | 172.16.0.30,172.16.47.254,17,1381241516.181456000,120 187 | 172.16.47.254,172.16.0.30,17,1381241516.181568000,33 188 | 172.16.46.208,172.16.47.255,17,1381241516.181709000,40 189 | 172.16.47.254,74.125.236.111,6,1381241516.181904000,0 190 | 74.125.236.111,172.16.47.254,6,1381241516.182140000,0 191 | 172.16.47.254,74.125.236.111,6,1381241516.182176000,0 192 | 172.16.47.254,172.16.0.30,17,1381241516.182615000,33 193 | 172.16.47.254,173.194.36.36,6,1381241516.182654000,0 194 | 172.16.47.254,74.125.236.99,6,1381241516.182884000,0 195 | 172.16.0.30,172.16.47.254,17,1381241516.182892000,209 196 | 173.194.36.36,172.16.47.254,6,1381241516.182908000,0 197 | 172.16.47.254,172.16.0.30,17,1381241516.182914000,32 198 | 172.16.47.254,173.194.36.36,6,1381241516.182939000,0 199 | 172.16.47.254,172.16.0.30,17,1381241516.183069000,33 200 | 172.16.47.254,173.194.36.42,6,1381241516.183082000,0 201 | 74.125.236.99,172.16.47.254,6,1381241516.183117000,0 202 | 172.16.47.254,74.125.236.99,6,1381241516.183146000,0 203 | 172.16.47.254,173.194.36.33,6,1381241516.183299000,0 204 | 172.16.0.30,172.16.47.254,17,1381241516.183355000,112 205 | 173.194.36.42,172.16.47.254,6,1381241516.183386000,0 206 | 172.16.47.254,173.194.36.42,6,1381241516.183417000,0 207 | 172.16.0.30,172.16.47.254,17,1381241516.183426000,49 208 | 172.16.47.254,74.125.236.180,6,1381241516.183536000,0 209 | 173.194.36.33,172.16.47.254,6,1381241516.183608000,0 210 | 172.16.47.254,74.125.236.111,6,1381241516.183629000,0 211 | 172.16.47.254,173.194.36.33,6,1381241516.183657000,0 212 | 74.125.236.180,172.16.47.254,6,1381241516.183697000,0 213 | 172.16.47.254,74.125.236.180,6,1381241516.183724000,0 214 | 74.125.236.111,172.16.47.254,6,1381241516.183819000,0 215 | 172.16.47.254,74.125.236.111,6,1381241516.183832000,0 216 | 172.16.47.254,74.125.236.111,6,1381241516.184417000,190 217 | 172.16.47.254,173.194.36.36,6,1381241516.184448000,190 218 | 172.16.47.254,74.125.236.99,6,1381241516.184462000,194 219 | 172.16.47.254,173.194.36.42,6,1381241516.184499000,200 220 | 172.16.47.254,173.194.36.33,6,1381241516.184516000,386 221 | 172.16.47.254,74.125.236.180,6,1381241516.184528000,189 222 | 74.125.236.111,172.16.47.254,6,1381241516.184586000,0 223 | 173.194.36.36,172.16.47.254,6,1381241516.184649000,0 224 | 74.125.236.99,172.16.47.254,6,1381241516.184658000,0 225 | 173.194.36.42,172.16.47.254,6,1381241516.184663000,0 226 | 173.194.36.33,172.16.47.254,6,1381241516.184668000,0 227 | 74.125.236.180,172.16.47.254,6,1381241516.184673000,0 228 | 172.16.47.254,74.125.236.111,6,1381241516.184837000,190 229 | 74.125.236.111,172.16.47.254,6,1381241516.185035000,0 230 | 172.16.46.43,172.16.47.255,17,1381241516.218771000,50 231 | 172.16.0.30,172.16.47.254,17,1381241516.268994000,90 232 | 172.16.47.254,74.125.236.125,6,1381241516.269489000,0 233 | 74.125.236.125,172.16.47.254,6,1381241516.269762000,0 234 | 172.16.47.254,74.125.236.125,6,1381241516.269817000,0 235 | 172.16.47.254,74.125.236.125,6,1381241516.270470000,202 236 | 74.125.236.125,172.16.47.254,6,1381241516.270619000,0 237 | 172.16.0.30,172.16.47.254,17,1381241516.271089000,132 238 | 172.16.47.254,173.194.36.42,6,1381241516.271417000,0 239 | 173.194.36.42,172.16.47.254,6,1381241516.271615000,0 240 | 172.16.47.254,173.194.36.42,6,1381241516.271651000,0 241 | 172.16.47.254,173.194.36.42,6,1381241516.272253000,212 242 | 173.194.36.42,172.16.47.254,6,1381241516.272448000,0 243 | 172.16.0.30,172.16.47.254,17,1381241516.272939000,92 244 | 172.16.47.254,173.194.36.53,6,1381241516.273246000,0 245 | 173.194.36.53,172.16.47.254,6,1381241516.273521000,0 246 | 172.16.47.254,173.194.36.53,6,1381241516.273554000,0 247 | 172.16.47.254,173.194.36.53,6,1381241516.274070000,190 248 | 173.194.36.53,172.16.47.254,6,1381241516.274290000,0 249 | 172.16.46.112,172.16.47.255,17,1381241516.315224000,50 250 | 172.16.46.112,172.16.47.255,17,1381241516.315256000,50 251 | 172.16.47.147,224.0.0.252,17,1381241516.329944000,22 252 | 172.16.46.245,255.255.255.255,17,1381241516.351089000,178 253 | 172.16.46.205,172.16.47.255,17,1381241516.368009000,50 254 | 172.16.46.205,224.0.0.252,17,1381241516.369164000,22 255 | 172.16.47.50,172.16.47.255,17,1381241516.426077000,50 256 | 172.16.47.147,224.0.0.252,17,1381241516.429219000,22 257 | 172.16.47.108,172.16.47.255,17,1381241516.456023000,50 258 | 172.16.47.108,224.0.0.252,17,1381241516.457376000,21 259 | 172.16.46.112,224.0.0.252,17,1381241516.499755000,24 260 | 172.16.46.112,224.0.0.252,17,1381241516.499954000,24 261 | 172.16.47.147,172.16.47.255,17,1381241516.629405000,50 262 | 172.16.47.84,172.16.47.255,17,1381241516.656155000,50 263 | 172.16.47.84,172.16.47.255,17,1381241516.688053000,50 264 | 172.16.47.84,172.16.47.255,17,1381241516.689070000,50 265 | 74.125.236.111,172.16.47.254,6,1381241516.689366000,1430 266 | 172.16.47.254,74.125.236.111,6,1381241516.689422000,0 267 | 172.16.47.84,172.16.47.255,17,1381241516.690070000,50 268 | 173.194.36.42,172.16.47.254,6,1381241516.721976000,1430 269 | 172.16.47.254,173.194.36.42,6,1381241516.722031000,0 270 | 173.194.36.42,172.16.47.254,6,1381241516.722307000,2166 271 | 172.16.47.254,173.194.36.42,6,1381241516.722336000,0 272 | 172.16.47.254,173.194.36.42,6,1381241516.736597000,294 273 | 173.194.36.42,172.16.47.254,6,1381241516.736834000,0 274 | 172.16.47.254,74.125.135.125,6,1381241516.777075000,0 275 | 172.16.46.205,224.0.0.252,17,1381241516.778852000,22 276 | 173.194.36.53,172.16.47.254,6,1381241516.783425000,1430 277 | 172.16.47.254,173.194.36.53,6,1381241516.783460000,0 278 | 173.194.36.53,172.16.47.254,6,1381241516.783848000,1749 279 | 172.16.47.254,173.194.36.53,6,1381241516.783862000,0 280 | 172.16.47.114,172.16.47.255,17,1381241516.795375000,50 281 | 172.16.47.254,173.194.36.53,6,1381241516.797704000,294 282 | 173.194.36.53,172.16.47.254,6,1381241516.797932000,0 283 | 172.16.47.254,173.194.36.53,6,1381241516.803667000,53 284 | 173.194.36.42,172.16.47.254,6,1381241516.803866000,1430 285 | 172.16.47.254,173.194.36.42,6,1381241516.803907000,0 286 | 173.194.36.53,172.16.47.254,6,1381241516.803916000,0 287 | 172.16.47.254,173.194.36.53,6,1381241516.804063000,61 288 | 173.194.36.42,172.16.47.254,6,1381241516.804232000,2167 289 | 172.16.47.254,173.194.36.42,6,1381241516.804241000,0 290 | 173.194.36.53,172.16.47.254,6,1381241516.804245000,0 291 | 172.16.47.254,173.194.36.53,6,1381241516.804733000,1460 292 | 172.16.47.254,173.194.36.53,6,1381241516.804759000,592 293 | 173.194.36.53,172.16.47.254,6,1381241516.805000000,0 294 | 173.194.36.53,172.16.47.254,6,1381241516.805019000,0 295 | 172.16.47.254,173.194.36.42,6,1381241516.818915000,294 296 | 173.194.36.42,172.16.47.254,6,1381241516.819110000,0 297 | 172.16.47.254,172.16.0.30,17,1381241516.835702000,34 298 | 172.16.47.254,172.16.0.30,17,1381241516.835749000,34 299 | 172.16.0.30,172.16.47.254,17,1381241516.835946000,66 300 | 172.16.0.30,172.16.47.254,17,1381241516.835969000,34 301 | 172.16.46.112,172.16.47.255,17,1381241516.839628000,50 302 | 172.16.46.112,172.16.47.255,17,1381241516.839646000,50 303 | 173.194.36.42,172.16.47.254,6,1381241516.842747000,295 304 | 172.16.47.226,224.0.0.252,17,1381241516.853946000,22 305 | 172.16.47.226,224.0.0.252,17,1381241516.854639000,22 306 | 172.16.47.226,224.0.0.252,17,1381241516.855499000,22 307 | 172.16.47.226,224.0.0.252,17,1381241516.856321000,22 308 | 172.16.47.226,224.0.0.252,17,1381241516.858679000,22 309 | 172.16.47.226,224.0.0.252,17,1381241516.858859000,22 310 | 172.16.47.108,224.0.0.252,17,1381241516.867444000,21 311 | 172.16.47.254,173.194.36.42,6,1381241516.881084000,0 312 | 173.194.36.53,172.16.47.254,6,1381241516.902167000,226 313 | 74.125.135.125,172.16.47.254,6,1381241516.919667000,0 314 | 173.194.36.42,172.16.47.254,6,1381241516.922508000,311 315 | 172.16.47.254,173.194.36.53,6,1381241516.941086000,0 316 | 173.194.36.53,172.16.47.254,6,1381241516.941317000,53 317 | 172.16.47.254,173.194.36.53,6,1381241516.941459000,0 318 | 172.16.47.226,224.0.0.252,17,1381241516.960841000,22 319 | 172.16.47.226,224.0.0.252,17,1381241516.961025000,22 320 | 172.16.47.254,173.194.36.42,6,1381241516.961093000,0 321 | 172.16.47.226,224.0.0.252,17,1381241516.961194000,22 322 | 172.16.47.226,224.0.0.252,17,1381241516.961385000,22 323 | 172.16.47.226,224.0.0.252,17,1381241516.961566000,22 324 | 172.16.47.226,224.0.0.252,17,1381241516.961694000,22 325 | 172.16.46.205,172.16.47.255,17,1381241517.024651000,50 326 | 172.16.46.205,224.0.0.252,17,1381241517.025820000,22 327 | 172.16.46.112,172.16.47.255,17,1381241517.064442000,50 328 | 172.16.46.112,172.16.47.255,17,1381241517.064465000,50 329 | 172.16.46.112,224.0.0.252,17,1381241517.065051000,24 330 | 172.16.46.112,224.0.0.252,17,1381241517.065245000,24 331 | 172.16.46.112,172.16.47.255,17,1381241517.065691000,50 332 | 172.16.46.112,172.16.47.255,17,1381241517.065709000,50 333 | 172.16.46.112,172.16.47.255,17,1381241517.089432000,50 334 | 172.16.46.112,172.16.47.255,17,1381241517.089455000,50 335 | 172.16.46.112,224.0.0.252,17,1381241517.090107000,24 336 | 172.16.46.112,224.0.0.252,17,1381241517.090290000,24 337 | 172.16.46.205,172.16.47.255,17,1381241517.118381000,50 338 | 74.125.236.111,172.16.47.254,6,1381241517.157720000,2422 339 | 172.16.47.254,74.125.236.111,6,1381241517.157764000,0 340 | 172.16.47.226,172.16.47.255,17,1381241517.163841000,50 341 | 172.16.47.226,172.16.47.255,17,1381241517.164666000,50 342 | 172.16.47.226,172.16.47.255,17,1381241517.164800000,50 343 | 172.16.47.226,172.16.47.255,17,1381241517.164997000,50 344 | 172.16.47.226,172.16.47.255,17,1381241517.165114000,50 345 | 172.16.47.226,172.16.47.255,17,1381241517.165518000,50 346 | 172.16.47.254,74.125.236.111,6,1381241517.167974000,294 347 | 74.125.236.111,172.16.47.254,6,1381241517.168151000,0 348 | 172.16.47.50,172.16.47.255,17,1381241517.176969000,50 349 | 172.16.47.108,172.16.47.255,17,1381241517.207270000,50 350 | 74.125.236.180,172.16.47.254,6,1381241517.223746000,1430 351 | 172.16.47.254,74.125.236.180,6,1381241517.223802000,0 352 | 74.125.236.180,172.16.47.254,6,1381241517.223817000,1460 353 | 172.16.47.254,74.125.236.180,6,1381241517.223829000,0 354 | 74.125.236.180,172.16.47.254,6,1381241517.224190000,661 355 | 172.16.47.254,74.125.236.180,6,1381241517.224206000,0 356 | 172.16.47.254,74.125.236.180,6,1381241517.237894000,294 357 | 74.125.236.180,172.16.47.254,6,1381241517.239323000,0 358 | 74.125.236.99,172.16.47.254,6,1381241517.247248000,2860 359 | 172.16.47.254,74.125.236.99,6,1381241517.247293000,0 360 | 74.125.236.99,172.16.47.254,6,1381241517.247754000,991 361 | 172.16.47.254,74.125.236.99,6,1381241517.247781000,0 362 | 173.194.36.33,172.16.47.254,6,1381241517.256300000,173 363 | 172.16.47.254,173.194.36.33,6,1381241517.256339000,0 364 | 172.16.47.254,74.125.236.99,6,1381241517.262951000,294 365 | 74.125.236.99,172.16.47.254,6,1381241517.263184000,0 366 | 172.16.47.254,173.194.36.33,6,1381241517.265094000,219 367 | 173.194.36.33,172.16.47.254,6,1381241517.265290000,0 368 | 74.125.236.111,172.16.47.254,6,1381241517.268439000,279 369 | 172.16.47.254,74.125.236.111,6,1381241517.305132000,0 370 | 74.125.236.180,172.16.47.254,6,1381241517.334265000,279 371 | 172.16.35.35,172.16.47.90,6,1381241517.343985000,79 372 | 74.125.236.99,172.16.47.254,6,1381241517.368803000,295 373 | 172.16.47.254,74.125.236.180,6,1381241517.373086000,0 374 | 173.194.36.33,172.16.47.254,6,1381241517.375653000,53 375 | 172.16.47.147,172.16.47.255,17,1381241517.378953000,50 376 | 172.16.47.254,74.125.236.99,6,1381241517.405098000,0 377 | 172.16.47.84,172.16.47.255,17,1381241517.406143000,50 378 | 172.16.47.254,173.194.36.33,6,1381241517.413099000,0 379 | 172.16.46.205,224.0.0.252,17,1381241517.435150000,22 380 | 172.16.47.84,172.16.47.255,17,1381241517.438130000,50 381 | 172.16.47.84,172.16.47.255,17,1381241517.439113000,50 382 | 172.16.47.84,172.16.47.255,17,1381241517.440095000,50 383 | 74.125.236.125,172.16.47.254,6,1381241517.472101000,1430 384 | 172.16.47.254,74.125.236.125,6,1381241517.472162000,0 385 | 172.16.46.112,224.0.0.252,17,1381241517.500989000,24 386 | 172.16.46.112,224.0.0.252,17,1381241517.501137000,24 387 | 172.16.46.112,224.0.0.252,17,1381241517.501345000,24 388 | 172.16.46.112,224.0.0.252,17,1381241517.501475000,24 389 | 172.16.47.118,255.255.255.255,17,1381241517.505758000,112 390 | 172.16.47.118,255.255.255.255,17,1381241517.523281000,112 391 | 172.16.47.118,255.255.255.255,17,1381241517.523311000,112 392 | 172.16.47.118,172.16.47.255,17,1381241517.523483000,112 393 | 172.16.47.114,172.16.47.255,17,1381241517.559950000,50 394 | 172.16.46.112,172.16.47.255,17,1381241517.590461000,50 395 | 172.16.46.112,172.16.47.255,17,1381241517.590490000,50 396 | 173.194.36.36,172.16.47.254,6,1381241517.622161000,1430 397 | 172.16.47.254,173.194.36.36,6,1381241517.622215000,0 398 | 173.194.36.36,172.16.47.254,6,1381241517.622229000,1460 399 | 172.16.47.254,173.194.36.36,6,1381241517.622240000,0 400 | 173.194.36.36,172.16.47.254,6,1381241517.622603000,968 401 | 172.16.47.254,173.194.36.36,6,1381241517.622608000,0 402 | 74.125.236.111,172.16.47.254,6,1381241517.630410000,1430 403 | 172.16.47.254,74.125.236.111,6,1381241517.630453000,0 404 | 74.125.236.111,172.16.47.254,6,1381241517.630471000,1460 405 | 172.16.47.254,74.125.236.111,6,1381241517.630479000,0 406 | 74.125.236.111,172.16.47.254,6,1381241517.630955000,961 407 | 172.16.47.254,74.125.236.111,6,1381241517.630985000,0 408 | 172.16.47.254,173.194.36.36,6,1381241517.635131000,294 409 | 173.194.36.36,172.16.47.254,6,1381241517.635296000,0 410 | 172.16.47.254,74.125.236.111,6,1381241517.641130000,294 411 | 74.125.236.111,172.16.47.254,6,1381241517.641365000,0 412 | 173.194.36.53,172.16.47.254,6,1381241517.643641000,1789 413 | 172.16.47.254,173.194.36.53,6,1381241517.643683000,0 414 | 172.16.47.254,173.194.36.53,6,1381241517.650156000,1460 415 | 172.16.47.254,173.194.36.53,6,1381241517.650181000,863 416 | 173.194.36.53,172.16.47.254,6,1381241517.650399000,0 417 | 173.194.36.53,172.16.47.254,6,1381241517.650431000,0 418 | 173.194.36.36,172.16.47.254,6,1381241517.735056000,226 419 | 74.125.236.111,172.16.47.254,6,1381241517.738314000,226 420 | 172.16.47.254,173.194.36.36,6,1381241517.773114000,0 421 | 173.194.36.36,172.16.47.254,6,1381241517.773387000,53 422 | 172.16.47.254,173.194.36.36,6,1381241517.773423000,0 423 | 172.16.46.205,172.16.47.255,17,1381241517.775978000,50 424 | 172.16.47.254,74.125.236.111,6,1381241517.777111000,0 425 | 74.125.236.111,172.16.47.254,6,1381241517.777372000,53 426 | 172.16.47.254,74.125.236.111,6,1381241517.777408000,0 427 | 172.16.46.112,172.16.47.255,17,1381241517.815560000,50 428 | 172.16.46.112,172.16.47.255,17,1381241517.815568000,50 429 | 172.16.46.112,172.16.47.255,17,1381241517.839636000,50 430 | 172.16.46.112,172.16.47.255,17,1381241517.839667000,50 431 | 172.16.46.205,172.16.47.255,17,1381241517.869016000,50 432 | 172.16.47.226,224.0.0.252,17,1381241517.874961000,22 433 | 172.16.47.226,172.16.47.255,17,1381241517.927561000,50 434 | 172.16.47.226,172.16.47.255,17,1381241517.927592000,50 435 | 172.16.47.226,172.16.47.255,17,1381241517.927596000,50 436 | 172.16.47.226,172.16.47.255,17,1381241517.927598000,50 437 | 172.16.47.226,172.16.47.255,17,1381241517.927601000,50 438 | 172.16.47.226,172.16.47.255,17,1381241517.927604000,50 439 | 172.16.47.108,172.16.47.255,17,1381241517.958463000,50 440 | 172.16.47.226,224.0.0.252,17,1381241517.959352000,22 441 | 172.16.47.213,172.16.47.255,17,1381241518.102697000,50 442 | 172.16.47.147,172.16.47.255,17,1381241518.129105000,50 443 | 172.16.47.226,172.16.47.255,17,1381241518.163122000,50 444 | 74.125.236.125,172.16.47.254,6,1381241518.275677000,2255 445 | 172.16.47.254,74.125.236.125,6,1381241518.275731000,0 446 | 172.16.47.254,74.125.236.125,6,1381241518.284797000,294 447 | 74.125.236.125,172.16.47.254,6,1381241518.284957000,0 448 | 74.125.236.125,172.16.47.254,6,1381241518.396312000,295 449 | 172.16.47.254,74.125.236.125,6,1381241518.433136000,0 450 | 172.16.46.114,255.255.255.255,17,1381241518.433948000,112 451 | 172.16.46.114,255.255.255.255,17,1381241518.440555000,112 452 | 172.16.46.114,255.255.255.255,17,1381241518.440592000,112 453 | 172.16.46.114,172.16.47.255,17,1381241518.440596000,112 454 | 172.16.46.205,172.16.47.255,17,1381241518.526412000,50 455 | 172.16.46.112,172.16.47.255,17,1381241518.562659000,50 456 | 172.16.46.112,172.16.47.255,17,1381241518.562684000,50 457 | 172.16.46.112,224.0.0.252,17,1381241518.563378000,24 458 | 172.16.46.112,224.0.0.252,17,1381241518.563614000,24 459 | 172.16.46.112,172.16.47.255,17,1381241518.568235000,50 460 | 172.16.46.112,172.16.47.255,17,1381241518.568252000,50 461 | 172.16.46.112,172.16.47.255,17,1381241518.590152000,50 462 | 172.16.46.112,172.16.47.255,17,1381241518.590170000,50 463 | 172.16.47.226,172.16.47.255,17,1381241518.691972000,50 464 | 172.16.47.226,172.16.47.255,17,1381241518.692000000,50 465 | 172.16.47.226,172.16.47.255,17,1381241518.692003000,50 466 | 172.16.47.226,172.16.47.255,17,1381241518.692052000,50 467 | 172.16.47.226,172.16.47.255,17,1381241518.692055000,50 468 | 172.16.47.226,172.16.47.255,17,1381241518.692154000,50 469 | 172.16.47.213,172.16.47.255,17,1381241518.711257000,50 470 | 172.16.47.226,224.0.0.252,17,1381241518.856765000,22 471 | 172.16.47.226,224.0.0.252,17,1381241518.858125000,22 472 | 172.16.47.226,224.0.0.252,17,1381241518.859444000,22 473 | 172.16.47.226,224.0.0.252,17,1381241518.861410000,22 474 | 172.16.47.226,224.0.0.252,17,1381241518.865108000,22 475 | 172.16.47.226,224.0.0.252,17,1381241518.865410000,22 476 | 172.16.47.66,172.16.47.255,17,1381241518.879501000,50 477 | 172.16.47.66,224.0.0.252,17,1381241518.879954000,22 478 | 172.16.47.226,172.16.47.255,17,1381241518.925942000,50 479 | 172.16.47.226,224.0.0.252,17,1381241518.957544000,22 480 | 172.16.47.226,224.0.0.252,17,1381241518.957735000,22 481 | 172.16.47.226,224.0.0.252,17,1381241518.957847000,22 482 | 172.16.47.226,224.0.0.252,17,1381241518.958059000,22 483 | 172.16.47.226,224.0.0.252,17,1381241518.973086000,22 484 | 172.16.47.226,224.0.0.252,17,1381241518.973173000,22 485 | 172.16.46.112,224.0.0.252,17,1381241518.973959000,24 486 | 172.16.46.112,224.0.0.252,17,1381241518.974045000,24 487 | 173.194.36.53,172.16.47.254,6,1381241519.030341000,128 488 | 172.16.47.254,173.194.36.53,6,1381241519.034332000,41 489 | 173.194.36.53,172.16.47.254,6,1381241519.034480000,33 490 | 172.16.47.254,173.194.36.53,6,1381241519.036243000,1460 491 | 172.16.47.254,173.194.36.53,6,1381241519.036269000,624 492 | 173.194.36.53,172.16.47.254,6,1381241519.036535000,0 493 | 172.16.46.112,172.16.47.255,17,1381241519.091470000,50 494 | 172.16.46.112,172.16.47.255,17,1381241519.091503000,50 495 | 172.16.46.112,224.0.0.252,17,1381241519.092165000,24 496 | 172.16.46.112,224.0.0.252,17,1381241519.092358000,24 497 | 172.16.47.226,172.16.47.255,17,1381241519.160566000,50 498 | 172.16.47.226,172.16.47.255,17,1381241519.160921000,50 499 | 172.16.47.226,172.16.47.255,17,1381241519.160947000,50 500 | 172.16.47.226,172.16.47.255,17,1381241519.161280000,50 501 | 172.16.47.226,172.16.47.255,17,1381241519.176082000,50 502 | 172.16.47.226,172.16.47.255,17,1381241519.176105000,50 503 | 172.16.47.66,224.0.0.252,17,1381241519.289156000,22 504 | 172.16.46.112,172.16.47.255,17,1381241519.313702000,50 505 | 172.16.46.112,172.16.47.255,17,1381241519.313751000,50 506 | 172.16.47.213,172.16.47.255,17,1381241519.333796000,50 507 | 172.16.47.226,224.0.0.252,17,1381241519.475313000,22 508 | 172.16.46.112,224.0.0.252,17,1381241519.502499000,24 509 | 172.16.46.112,224.0.0.252,17,1381241519.502688000,24 510 | 172.16.47.226,224.0.0.252,17,1381241519.582492000,22 511 | 172.16.47.66,172.16.47.255,17,1381241519.628840000,50 512 | 172.16.47.226,172.16.47.255,17,1381241519.691377000,50 513 | 172.16.47.247,172.16.47.255,17,1381241519.783635000,50 514 | 172.16.47.247,224.0.0.252,17,1381241519.784529000,22 515 | 172.16.47.226,172.16.47.255,17,1381241519.786986000,50 516 | 172.16.46.112,172.16.47.255,17,1381241519.841222000,50 517 | 172.16.46.112,172.16.47.255,17,1381241519.842189000,50 518 | 173.194.36.53,172.16.47.254,6,1381241519.860959000,111 519 | 172.16.47.254,173.194.36.53,6,1381241519.897090000,0 520 | 172.16.47.226,172.16.47.255,17,1381241519.910756000,50 521 | 172.16.47.226,172.16.47.255,17,1381241519.910776000,50 522 | 172.16.47.226,172.16.47.255,17,1381241519.910779000,50 523 | 172.16.47.226,172.16.47.255,17,1381241519.910894000,50 524 | 172.16.47.226,172.16.47.255,17,1381241519.926309000,50 525 | 172.16.47.226,172.16.47.255,17,1381241519.926426000,50 526 | 173.194.36.53,172.16.47.254,6,1381241519.960532000,4096 527 | 172.16.47.254,173.194.36.53,6,1381241519.960581000,0 528 | 173.194.36.53,172.16.47.254,6,1381241519.961480000,118 529 | 172.16.47.254,173.194.36.53,6,1381241519.961509000,0 530 | 173.194.36.53,172.16.47.254,6,1381241520.051880000,1430 531 | 172.16.47.254,173.194.36.53,6,1381241520.051923000,0 532 | 173.194.36.53,172.16.47.254,6,1381241520.058789000,2860 533 | 172.16.47.254,173.194.36.53,6,1381241520.058829000,0 534 | 173.194.36.53,172.16.47.254,6,1381241520.058851000,2920 535 | 172.16.47.254,173.194.36.53,6,1381241520.058860000,0 536 | 173.194.36.53,172.16.47.254,6,1381241520.059274000,1183 537 | 172.16.47.254,173.194.36.53,6,1381241520.059294000,0 538 | 173.194.36.53,172.16.47.254,6,1381241520.059302000,1460 539 | 172.16.47.254,173.194.36.53,6,1381241520.059309000,0 540 | 173.194.36.53,172.16.47.254,6,1381241520.059491000,2920 541 | 172.16.47.254,173.194.36.53,6,1381241520.059507000,0 542 | 173.194.36.53,172.16.47.254,6,1381241520.059696000,1340 543 | 172.16.47.254,173.194.36.53,6,1381241520.059709000,0 544 | 173.194.36.53,172.16.47.254,6,1381241520.059716000,1460 545 | 172.16.47.254,173.194.36.53,6,1381241520.059722000,0 546 | 172.16.47.254,172.16.0.30,17,1381241520.059880000,34 547 | 172.16.47.254,172.16.0.30,17,1381241520.059967000,34 548 | 173.194.36.53,172.16.47.254,6,1381241520.060115000,1170 549 | 172.16.0.30,172.16.47.254,17,1381241520.060125000,66 550 | 172.16.0.30,172.16.47.254,17,1381241520.060156000,34 551 | 172.16.47.254,173.194.36.53,6,1381241520.060194000,0 552 | 172.16.46.112,172.16.47.255,17,1381241520.065438000,50 553 | 172.16.46.112,172.16.47.255,17,1381241520.065457000,50 554 | 172.16.46.112,172.16.47.255,17,1381241520.065784000,50 555 | 172.16.46.112,224.0.0.252,17,1381241520.066560000,24 556 | 172.16.46.112,172.16.47.255,17,1381241520.066960000,50 557 | 172.16.46.112,224.0.0.252,17,1381241520.067599000,24 558 | 172.16.46.112,172.16.47.255,17,1381241520.092051000,50 559 | 172.16.46.112,224.0.0.252,17,1381241520.092707000,24 560 | 172.16.46.112,172.16.47.255,17,1381241520.095741000,50 561 | 172.16.46.112,224.0.0.252,17,1381241520.096514000,24 562 | 173.194.36.53,172.16.47.254,6,1381241520.157366000,1430 563 | 172.16.47.254,173.194.36.53,6,1381241520.157530000,0 564 | 173.194.36.53,172.16.47.254,6,1381241520.158214000,2860 565 | 173.194.36.53,172.16.47.254,6,1381241520.158250000,2920 566 | 172.16.47.254,173.194.36.53,6,1381241520.158303000,0 567 | 173.194.36.53,172.16.47.254,6,1381241520.158798000,1370 568 | 172.16.47.254,173.194.36.53,6,1381241520.158967000,0 569 | 172.16.46.205,172.16.47.255,17,1381241520.189813000,50 570 | 172.16.46.205,224.0.0.252,17,1381241520.190652000,22 571 | 172.16.47.247,224.0.0.252,17,1381241520.194864000,22 572 | 173.194.36.53,172.16.47.254,6,1381241520.258746000,4096 573 | 173.194.36.53,172.16.47.254,6,1381241520.258804000,7300 574 | 172.16.47.254,173.194.36.53,6,1381241520.258861000,0 575 | 173.194.36.53,172.16.47.254,6,1381241520.259316000,792 576 | 172.16.47.254,173.194.36.53,6,1381241520.259548000,0 577 | 172.16.47.254,173.194.36.53,6,1381241520.289565000,1460 578 | 172.16.47.254,173.194.36.53,6,1381241520.289577000,831 579 | 173.194.36.53,172.16.47.254,6,1381241520.289846000,0 580 | 172.16.47.193,172.16.47.255,17,1381241520.371775000,50 581 | 172.16.47.193,224.0.0.252,17,1381241520.372633000,22 582 | 172.16.47.66,172.16.47.255,17,1381241520.378839000,50 583 | 173.194.36.53,172.16.47.254,6,1381241520.485363000,184 584 | 172.16.47.114,172.16.47.255,17,1381241520.495711000,68 585 | 172.16.46.112,224.0.0.252,17,1381241520.506329000,24 586 | 172.16.46.112,224.0.0.252,17,1381241520.506505000,24 587 | 172.16.46.112,224.0.0.252,17,1381241520.506670000,24 588 | 172.16.46.112,224.0.0.252,17,1381241520.506831000,24 589 | 172.16.47.226,224.0.0.252,17,1381241520.518872000,22 590 | 172.16.47.254,173.194.36.53,6,1381241520.525058000,0 591 | 172.16.47.247,172.16.47.255,17,1381241520.538113000,50 592 | 172.16.47.226,172.16.47.255,17,1381241520.550259000,50 593 | 172.16.47.254,173.194.36.42,6,1381241520.576968000,0 594 | 172.16.47.254,173.194.36.42,6,1381241520.577208000,0 595 | 173.194.36.42,172.16.47.254,6,1381241520.577456000,0 596 | 172.16.47.254,173.194.36.42,6,1381241520.577477000,0 597 | 172.16.47.254,173.194.36.42,6,1381241520.577714000,212 598 | 173.194.36.42,172.16.47.254,6,1381241520.577871000,0 599 | 172.16.46.112,172.16.47.255,17,1381241520.591972000,50 600 | 172.16.46.112,172.16.47.255,17,1381241520.592807000,50 601 | 172.16.46.205,224.0.0.252,17,1381241520.601059000,22 602 | 172.16.47.226,224.0.0.252,17,1381241520.613163000,22 603 | 172.16.47.226,224.0.0.252,17,1381241520.618051000,22 604 | 172.16.47.226,172.16.47.255,17,1381241520.675074000,50 605 | 172.16.47.226,172.16.47.255,17,1381241520.675093000,50 606 | 172.16.47.226,172.16.47.255,17,1381241520.675096000,50 607 | 172.16.47.226,172.16.47.255,17,1381241520.675121000,50 608 | 172.16.47.226,172.16.47.255,17,1381241520.690616000,50 609 | 172.16.47.226,172.16.47.255,17,1381241520.690646000,50 610 | 172.16.47.226,224.0.0.252,17,1381241520.722393000,22 611 | 172.16.47.193,224.0.0.252,17,1381241520.782737000,22 612 | 172.16.47.226,172.16.47.255,17,1381241520.816054000,50 613 | 172.16.46.112,172.16.47.255,17,1381241520.816148000,50 614 | 172.16.46.112,172.16.47.255,17,1381241520.817094000,50 615 | 172.16.46.112,172.16.47.255,17,1381241520.842053000,50 616 | 172.16.46.112,172.16.47.255,17,1381241520.846152000,50 617 | 172.16.47.226,172.16.47.255,17,1381241520.925300000,50 618 | 172.16.46.205,172.16.47.255,17,1381241520.940205000,50 619 | 173.194.36.42,172.16.47.254,6,1381241521.096670000,1430 620 | 172.16.47.254,173.194.36.42,6,1381241521.096692000,0 621 | 173.194.36.42,172.16.47.254,6,1381241521.097124000,2168 622 | 172.16.47.254,173.194.36.42,6,1381241521.097131000,0 623 | 172.16.47.254,173.194.36.42,6,1381241521.103335000,294 624 | 173.194.36.42,172.16.47.254,6,1381241521.103471000,0 625 | 172.16.47.254,173.194.36.42,6,1381241521.103625000,53 626 | 172.16.47.254,173.194.36.42,6,1381241521.103687000,61 627 | 173.194.36.42,172.16.47.254,6,1381241521.103775000,0 628 | 173.194.36.42,172.16.47.254,6,1381241521.103859000,0 629 | 172.16.47.254,173.194.36.42,6,1381241521.103935000,495 630 | 173.194.36.42,172.16.47.254,6,1381241521.104105000,0 631 | 172.16.47.193,172.16.47.255,17,1381241521.122708000,50 632 | 173.194.36.42,172.16.47.254,6,1381241521.200066000,311 633 | 172.16.47.254,173.194.36.42,6,1381241521.237093000,0 634 | 172.16.47.114,172.16.47.255,17,1381241521.257155000,68 635 | 172.16.47.247,172.16.47.255,17,1381241521.288166000,50 636 | 172.16.47.226,172.16.47.255,17,1381241521.314678000,50 637 | 17.172.232.209,172.16.46.234,6,1381241521.387585000,37 638 | 17.172.232.209,172.16.46.234,6,1381241521.387600000,0 639 | 172.16.46.43,255.255.255.255,17,1381241521.425850000,145 640 | 172.16.46.43,255.255.255.255,17,1381241521.439037000,145 641 | 172.16.46.43,172.16.47.255,17,1381241521.439056000,145 642 | 172.16.46.43,255.255.255.255,17,1381241521.439363000,145 643 | 172.16.47.72,224.0.0.252,17,1381241521.441692000,22 644 | 172.16.47.72,255.255.255.255,17,1381241521.446563000,300 645 | 172.16.46.9,255.255.255.255,17,1381241521.449909000,300 646 | 172.16.46.4,255.255.255.255,17,1381241521.449934000,300 647 | 172.16.46.6,255.255.255.255,17,1381241521.450185000,300 648 | 172.16.46.2,255.255.255.255,17,1381241521.450431000,300 649 | 172.16.46.8,255.255.255.255,17,1381241521.451320000,300 650 | 172.16.46.3,255.255.255.255,17,1381241521.451864000,300 651 | 172.16.46.7,255.255.255.255,17,1381241521.453132000,300 652 | 172.16.46.5,255.255.255.255,17,1381241521.455883000,300 653 | 172.16.47.108,172.16.47.255,17,1381241521.455939000,50 654 | 172.16.47.108,224.0.0.252,17,1381241521.457326000,21 655 | 172.16.47.72,224.0.0.252,17,1381241521.542290000,22 656 | 172.16.46.112,172.16.47.255,17,1381241521.565107000,50 657 | 172.16.46.112,172.16.47.255,17,1381241521.565114000,50 658 | 172.16.46.112,224.0.0.252,17,1381241521.565747000,24 659 | 172.16.46.112,224.0.0.252,17,1381241521.565930000,24 660 | 172.16.46.112,172.16.47.255,17,1381241521.566757000,50 661 | 172.16.46.112,172.16.47.255,17,1381241521.567715000,50 662 | 172.16.47.226,172.16.47.255,17,1381241521.579848000,50 663 | 172.16.46.112,172.16.47.255,17,1381241521.592726000,50 664 | 172.16.46.112,172.16.47.255,17,1381241521.597883000,50 665 | 173.194.36.42,172.16.47.254,6,1381241521.682193000,305 666 | 172.16.47.254,173.194.36.42,6,1381241521.682214000,0 667 | 172.16.47.226,172.16.47.255,17,1381241521.689143000,50 668 | 172.16.46.205,172.16.47.255,17,1381241521.690765000,50 669 | 172.16.47.72,172.16.47.255,17,1381241521.742563000,50 670 | 172.16.47.254,74.125.236.180,6,1381241521.773242000,0 671 | 172.16.47.254,74.125.236.180,6,1381241521.773439000,0 672 | 74.125.236.180,172.16.47.254,6,1381241521.773639000,0 673 | 172.16.47.254,74.125.236.180,6,1381241521.773658000,0 674 | 172.16.47.254,74.125.236.180,6,1381241521.773878000,189 675 | 74.125.236.180,172.16.47.254,6,1381241521.774061000,0 676 | 172.16.47.254,74.125.236.99,6,1381241521.789167000,0 677 | 172.16.47.254,74.125.236.99,6,1381241521.789389000,0 678 | 172.16.47.254,173.194.36.33,6,1381241521.789516000,0 679 | 74.125.236.99,172.16.47.254,6,1381241521.789583000,0 680 | 172.16.47.254,74.125.236.99,6,1381241521.789602000,0 681 | 172.16.47.254,173.194.36.33,6,1381241521.789683000,0 682 | 172.16.47.254,74.125.236.99,6,1381241521.789910000,194 683 | 173.194.36.33,172.16.47.254,6,1381241521.789926000,0 684 | 172.16.47.254,173.194.36.33,6,1381241521.789939000,0 685 | 172.16.47.254,173.194.36.33,6,1381241521.790090000,386 686 | 74.125.236.99,172.16.47.254,6,1381241521.790164000,0 687 | 173.194.36.33,172.16.47.254,6,1381241521.790258000,0 688 | 172.16.47.108,224.0.0.252,17,1381241521.867533000,21 689 | 172.16.47.254,173.194.36.53,6,1381241521.871512000,1460 690 | 172.16.47.254,173.194.36.53,6,1381241521.871537000,901 691 | 173.194.36.53,172.16.47.254,6,1381241521.871753000,0 692 | 172.16.47.193,172.16.47.255,17,1381241521.873920000,50 693 | 172.16.47.254,173.194.36.53,6,1381241521.876671000,1460 694 | 172.16.47.254,173.194.36.53,6,1381241521.876683000,1175 695 | 173.194.36.53,172.16.47.254,6,1381241521.876895000,0 696 | 172.16.47.254,173.194.36.53,6,1381241521.901116000,1460 697 | 172.16.47.254,173.194.36.53,6,1381241521.901128000,1175 698 | 173.194.36.53,172.16.47.254,6,1381241521.901358000,0 699 | 172.16.47.254,173.194.36.33,6,1381241521.954385000,0 700 | 173.194.36.33,172.16.47.254,6,1381241521.954634000,0 701 | 172.16.47.254,173.194.36.33,6,1381241521.954676000,0 702 | 172.16.47.254,173.194.36.33,6,1381241521.954934000,386 703 | 173.194.36.33,172.16.47.254,6,1381241521.955121000,0 704 | 172.16.47.254,74.125.236.111,6,1381241521.975489000,0 705 | 172.16.47.254,74.125.236.111,6,1381241521.975684000,0 706 | 172.16.46.112,224.0.0.252,17,1381241521.975703000,24 707 | 74.125.236.111,172.16.47.254,6,1381241521.975856000,0 708 | 172.16.47.254,74.125.236.111,6,1381241521.975879000,0 709 | 172.16.46.112,224.0.0.252,17,1381241521.975891000,24 710 | 172.16.47.254,74.125.236.111,6,1381241521.976174000,190 711 | 74.125.236.111,172.16.47.254,6,1381241521.976309000,0 712 | 172.16.47.114,172.16.47.255,17,1381241522.021563000,68 713 | 172.16.47.254,173.194.36.53,6,1381241522.037379000,1460 714 | 172.16.47.254,173.194.36.53,6,1381241522.037389000,633 715 | 173.194.36.53,172.16.47.254,6,1381241522.037685000,0 716 | 172.16.47.254,173.194.36.53,6,1381241522.045248000,1460 717 | 172.16.47.254,173.194.36.53,6,1381241522.045257000,791 718 | 173.194.36.53,172.16.47.254,6,1381241522.045490000,0 719 | 172.16.46.112,172.16.47.255,17,1381241522.093024000,50 720 | 172.16.46.112,224.0.0.252,17,1381241522.093882000,24 721 | 172.16.46.112,172.16.47.255,17,1381241522.094420000,50 722 | 17.172.232.209,172.16.46.234,6,1381241522.094760000,37 723 | 172.16.46.112,224.0.0.252,17,1381241522.095162000,24 724 | 172.16.47.155,172.16.47.255,17,1381241522.154436000,50 725 | 172.16.47.155,224.0.0.252,17,1381241522.156045000,24 726 | 172.16.47.254,172.16.0.30,17,1381241522.165346000,34 727 | 172.16.47.254,172.16.0.30,17,1381241522.165371000,34 728 | 172.16.0.30,172.16.47.254,17,1381241522.165567000,66 729 | 172.16.0.30,172.16.47.254,17,1381241522.165634000,34 730 | 172.16.47.108,172.16.47.255,17,1381241522.206889000,50 731 | 172.16.46.112,172.16.47.255,17,1381241522.315426000,50 732 | 172.16.46.112,172.16.47.255,17,1381241522.315452000,50 733 | 172.16.47.226,172.16.47.255,17,1381241522.344268000,50 734 | 173.194.36.53,172.16.47.254,6,1381241522.369426000,230 735 | 172.16.47.254,173.194.36.53,6,1381241522.369451000,0 736 | 173.194.36.53,172.16.47.254,6,1381241522.386132000,71 737 | 172.16.47.254,173.194.36.53,6,1381241522.386167000,0 738 | 173.194.36.53,172.16.47.254,6,1381241522.386543000,392 739 | 172.16.47.254,173.194.36.53,6,1381241522.386559000,0 740 | 74.125.236.180,172.16.47.254,6,1381241522.409982000,1430 741 | 172.16.47.254,74.125.236.180,6,1381241522.410025000,0 742 | 74.125.236.180,172.16.47.254,6,1381241522.410031000,1460 743 | 172.16.47.254,74.125.236.180,6,1381241522.410035000,0 744 | 74.125.236.180,172.16.47.254,6,1381241522.410184000,661 745 | 172.16.47.254,74.125.236.180,6,1381241522.410207000,0 746 | 172.16.47.254,74.125.236.180,6,1381241522.422063000,294 747 | 74.125.236.180,172.16.47.254,6,1381241522.422218000,0 748 | 172.16.47.254,74.125.236.180,6,1381241522.422453000,53 749 | 172.16.47.254,74.125.236.180,6,1381241522.422495000,61 750 | 74.125.236.180,172.16.47.254,6,1381241522.422616000,0 751 | 74.125.236.180,172.16.47.254,6,1381241522.422667000,0 752 | 172.16.47.254,74.125.236.180,6,1381241522.422843000,1460 753 | 172.16.47.254,74.125.236.180,6,1381241522.422848000,28 754 | 74.125.236.180,172.16.47.254,6,1381241522.423050000,0 755 | 74.125.236.180,172.16.47.254,6,1381241522.423054000,0 756 | 74.125.236.111,172.16.47.254,6,1381241522.440345000,1430 757 | 172.16.47.254,74.125.236.111,6,1381241522.440367000,0 758 | 74.125.236.111,172.16.47.254,6,1381241522.440767000,2420 759 | 172.16.47.254,74.125.236.111,6,1381241522.440785000,0 760 | 172.16.47.254,74.125.236.111,6,1381241522.446021000,0 761 | 172.16.47.254,74.125.236.111,6,1381241522.446189000,0 762 | 74.125.236.111,172.16.47.254,6,1381241522.446401000,0 763 | 172.16.47.254,74.125.236.111,6,1381241522.446419000,0 764 | 172.16.47.254,74.125.236.111,6,1381241522.448206000,294 765 | 172.16.47.254,173.194.36.53,6,1381241522.448353000,1460 766 | 172.16.47.254,173.194.36.53,6,1381241522.448359000,1060 767 | 74.125.236.111,172.16.47.254,6,1381241522.448372000,0 768 | 172.16.47.254,74.125.236.111,6,1381241522.448383000,190 769 | 172.16.47.254,74.125.236.111,6,1381241522.448466000,53 770 | 173.194.36.53,172.16.47.254,6,1381241522.448540000,0 771 | 74.125.236.111,172.16.47.254,6,1381241522.448546000,0 772 | 172.16.47.254,74.125.236.111,6,1381241522.448550000,61 773 | 74.125.236.111,172.16.47.254,6,1381241522.448609000,0 774 | 74.125.236.111,172.16.47.254,6,1381241522.448688000,0 775 | 172.16.47.254,74.125.236.111,6,1381241522.448760000,406 776 | 74.125.236.111,172.16.47.254,6,1381241522.448945000,0 777 | 172.16.47.226,172.16.47.255,17,1381241522.453504000,50 778 | 172.16.46.239,224.0.0.252,17,1381241522.466757000,90 779 | 173.194.36.53,172.16.47.254,6,1381241522.480092000,115 780 | 172.16.47.254,173.194.36.53,6,1381241522.480128000,0 781 | 173.194.36.53,172.16.47.254,6,1381241522.480348000,43 782 | 172.16.47.254,173.194.36.53,6,1381241522.480357000,0 783 | 173.194.36.53,172.16.47.254,6,1381241522.480883000,450 784 | 172.16.47.254,173.194.36.53,6,1381241522.480915000,0 785 | 172.16.47.72,172.16.47.255,17,1381241522.491720000,50 786 | 172.16.46.112,224.0.0.252,17,1381241522.505020000,24 787 | 172.16.46.112,224.0.0.252,17,1381241522.505239000,24 788 | 74.125.236.180,172.16.47.254,6,1381241522.505980000,279 789 | 74.125.236.99,172.16.47.254,6,1381241522.525555000,1430 790 | 172.16.47.254,74.125.236.99,6,1381241522.525623000,0 791 | 74.125.236.99,172.16.47.254,6,1381241522.525638000,1460 792 | 172.16.47.254,74.125.236.99,6,1381241522.525646000,0 793 | 74.125.236.99,172.16.47.254,6,1381241522.526120000,962 794 | 172.16.47.254,74.125.236.99,6,1381241522.526138000,0 795 | 173.194.36.33,172.16.47.254,6,1381241522.527390000,173 796 | 172.16.47.254,173.194.36.33,6,1381241522.527432000,0 797 | 172.16.47.254,74.125.236.99,6,1381241522.542998000,294 798 | 74.125.236.99,172.16.47.254,6,1381241522.543199000,0 799 | 172.16.47.254,74.125.236.180,6,1381241522.545048000,0 800 | 172.16.47.254,173.194.36.33,6,1381241522.545219000,219 801 | 172.16.47.254,74.125.236.99,6,1381241522.545296000,53 802 | 173.194.36.33,172.16.47.254,6,1381241522.545549000,0 803 | 74.125.236.99,172.16.47.254,6,1381241522.545581000,0 804 | 172.16.47.254,74.125.236.99,6,1381241522.545993000,61 805 | 172.16.47.254,173.194.36.33,6,1381241522.546070000,53 806 | 74.125.236.99,172.16.47.254,6,1381241522.546202000,0 807 | 173.194.36.33,172.16.47.254,6,1381241522.546222000,0 808 | 74.125.236.111,172.16.47.254,6,1381241522.546768000,226 809 | 172.16.47.254,173.194.36.33,6,1381241522.547148000,61 810 | 173.194.36.33,172.16.47.254,6,1381241522.547354000,0 811 | 172.16.47.254,74.125.236.99,6,1381241522.548051000,1416 812 | 172.16.47.254,173.194.36.33,6,1381241522.548184000,1460 813 | 172.16.47.254,173.194.36.33,6,1381241522.548189000,120 814 | 74.125.236.99,172.16.47.254,6,1381241522.548301000,0 815 | 173.194.36.33,172.16.47.254,6,1381241522.548467000,0 816 | 173.194.36.33,172.16.47.254,6,1381241522.548495000,0 817 | 172.16.47.254,173.194.36.33,6,1381241522.548872000,818 818 | 172.16.47.254,173.194.36.33,6,1381241522.549129000,142 819 | 173.194.36.33,172.16.47.254,6,1381241522.549176000,0 820 | 173.194.36.33,172.16.47.254,6,1381241522.549302000,0 821 | 173.194.36.53,172.16.47.254,6,1381241522.561990000,59 822 | 172.16.47.254,173.194.36.53,6,1381241522.562026000,0 823 | 173.194.36.53,172.16.47.254,6,1381241522.562445000,1430 824 | 172.16.47.254,173.194.36.53,6,1381241522.562475000,0 825 | 173.194.36.53,172.16.47.254,6,1381241522.562494000,2920 826 | 172.16.47.254,173.194.36.53,6,1381241522.562504000,0 827 | 173.194.36.53,172.16.47.254,6,1381241522.562735000,4010 828 | 172.16.47.254,173.194.36.53,6,1381241522.562754000,0 829 | 172.16.46.123,224.0.0.252,17,1381241522.565091000,22 830 | 172.16.46.239,224.0.0.252,17,1381241522.566688000,90 831 | 172.16.47.155,224.0.0.252,17,1381241522.566818000,24 832 | 173.194.36.53,172.16.47.254,6,1381241522.574029000,1430 833 | 172.16.47.254,173.194.36.53,6,1381241522.574081000,0 834 | 173.194.36.53,172.16.47.254,6,1381241522.574619000,1430 835 | 172.16.47.254,173.194.36.53,6,1381241522.574652000,0 836 | 172.16.47.254,74.125.236.111,6,1381241522.585077000,0 837 | 74.125.236.111,172.16.47.254,6,1381241522.585759000,53 838 | 172.16.47.254,74.125.236.111,6,1381241522.585895000,0 839 | 74.125.236.180,172.16.47.254,6,1381241522.638451000,229 840 | 172.16.47.254,74.125.236.180,6,1381241522.638503000,0 841 | 74.125.236.99,172.16.47.254,6,1381241522.640806000,295 842 | 173.194.36.33,172.16.47.254,6,1381241522.643301000,53 843 | 74.125.236.111,172.16.47.254,6,1381241522.643333000,148 844 | 172.16.47.254,74.125.236.111,6,1381241522.643349000,0 845 | 74.125.236.111,172.16.47.254,6,1381241522.643522000,33 846 | 172.16.47.254,74.125.236.111,6,1381241522.643674000,0 847 | 172.16.46.123,224.0.0.252,17,1381241522.664583000,22 848 | 172.16.47.254,74.125.236.99,6,1381241522.677101000,0 849 | 172.16.46.123,224.0.0.252,17,1381241522.680242000,22 850 | 172.16.47.254,173.194.36.33,6,1381241522.681053000,0 851 | 173.194.36.53,172.16.47.254,6,1381241522.695919000,2849 852 | 172.16.47.254,173.194.36.53,6,1381241522.695974000,0 853 | 172.16.47.254,173.194.36.53,6,1381241522.725557000,1460 854 | 172.16.47.254,173.194.36.53,6,1381241522.725569000,1460 855 | 172.16.47.254,173.194.36.53,6,1381241522.725572000,149 856 | 173.194.36.53,172.16.47.254,6,1381241522.725825000,0 857 | 172.16.46.123,224.0.0.252,17,1381241522.780609000,22 858 | 172.16.47.114,172.16.47.255,17,1381241522.785976000,68 859 | 172.16.46.112,172.16.47.255,17,1381241522.844157000,50 860 | 172.16.46.112,172.16.47.255,17,1381241522.844990000,50 861 | 74.125.236.99,172.16.47.254,6,1381241522.847475000,267 862 | 172.16.47.254,74.125.236.99,6,1381241522.847533000,0 863 | 172.16.46.123,172.16.47.255,17,1381241522.864439000,50 864 | 173.194.36.33,172.16.47.254,6,1381241522.892736000,173 865 | 172.16.47.254,173.194.36.33,6,1381241522.892786000,0 866 | 172.16.47.254,173.194.36.33,6,1381241522.899290000,219 867 | 173.194.36.33,172.16.47.254,6,1381241522.899500000,0 868 | 172.16.47.155,172.16.47.255,17,1381241522.906692000,50 869 | 74.125.236.111,172.16.47.254,6,1381241522.932661000,3852 870 | 172.16.47.254,74.125.236.111,6,1381241522.932714000,0 871 | 172.16.47.254,74.125.236.111,6,1381241522.950479000,294 872 | 74.125.236.111,172.16.47.254,6,1381241522.950673000,0 873 | 172.16.47.254,74.125.236.111,6,1381241522.951663000,253 874 | 74.125.236.111,172.16.47.254,6,1381241522.951894000,0 875 | 172.16.47.108,172.16.47.255,17,1381241522.957407000,50 876 | 172.16.46.123,172.16.47.255,17,1381241522.980699000,50 877 | 173.194.36.33,172.16.47.254,6,1381241522.983239000,926 878 | 172.16.47.254,173.194.36.33,6,1381241522.983294000,0 879 | 173.194.36.33,172.16.47.254,6,1381241522.983741000,1174 880 | 172.16.47.254,173.194.36.33,6,1381241522.983767000,0 881 | 173.194.36.33,172.16.47.254,6,1381241522.983780000,1460 882 | 172.16.47.254,173.194.36.33,6,1381241522.983792000,0 883 | 173.194.36.33,172.16.47.254,6,1381241522.984203000,1070 884 | 172.16.47.254,173.194.36.33,6,1381241522.984220000,0 885 | 173.194.36.33,172.16.47.254,6,1381241522.987328000,76 886 | 172.16.47.254,173.194.36.33,6,1381241522.987357000,0 887 | 173.194.36.33,172.16.47.254,6,1381241522.995469000,53 888 | 173.194.36.33,172.16.47.254,6,1381241523.019119000,271 889 | 172.16.47.254,173.194.36.33,6,1381241523.019134000,0 890 | 173.194.36.33,172.16.47.254,6,1381241523.019324000,43 891 | 172.16.47.254,173.194.36.33,6,1381241523.019331000,0 892 | 173.194.36.33,172.16.47.254,6,1381241523.022657000,71 893 | 172.16.47.254,173.194.36.33,6,1381241523.022665000,0 894 | 173.194.36.33,172.16.47.254,6,1381241523.022849000,33 895 | 172.16.47.254,173.194.36.33,6,1381241523.022854000,0 896 | 172.16.47.254,173.194.36.33,6,1381241523.033051000,0 897 | 173.194.36.53,172.16.47.254,6,1381241523.043873000,74 898 | 74.125.236.111,172.16.47.254,6,1381241523.045496000,279 899 | 172.16.46.112,172.16.47.255,17,1381241523.065620000,50 900 | 172.16.46.112,172.16.47.255,17,1381241523.065641000,50 901 | 172.16.46.112,172.16.47.255,17,1381241523.066036000,50 902 | 172.16.46.112,172.16.47.255,17,1381241523.066049000,50 903 | 172.16.46.112,224.0.0.252,17,1381241523.066439000,24 904 | 172.16.46.112,224.0.0.252,17,1381241523.066622000,24 905 | 172.16.47.254,173.194.36.53,6,1381241523.081093000,0 906 | 173.194.36.53,172.16.47.254,6,1381241523.081332000,53 907 | 172.16.47.254,173.194.36.53,6,1381241523.081365000,0 908 | 172.16.47.254,74.125.236.111,6,1381241523.085074000,0 909 | 172.16.46.112,172.16.47.255,17,1381241523.096590000,50 910 | 172.16.46.112,172.16.47.255,17,1381241523.096601000,50 911 | 172.16.46.112,224.0.0.252,17,1381241523.097300000,24 912 | 172.16.46.112,224.0.0.252,17,1381241523.097482000,24 913 | 74.125.236.111,172.16.47.254,6,1381241523.101729000,166 914 | 172.16.47.254,74.125.236.111,6,1381241523.101796000,0 915 | 172.16.47.254,74.125.236.125,6,1381241523.141973000,0 916 | 172.16.47.254,74.125.236.125,6,1381241523.142149000,0 917 | 74.125.236.125,172.16.47.254,6,1381241523.142377000,0 918 | 172.16.47.254,74.125.236.125,6,1381241523.142399000,0 919 | 172.16.47.254,74.125.236.125,6,1381241523.142628000,202 920 | 74.125.236.125,172.16.47.254,6,1381241523.142848000,0 921 | 172.16.47.72,172.16.47.255,17,1381241523.250883000,50 922 | 173.194.36.53,172.16.47.254,6,1381241523.329997000,69 923 | 172.16.47.254,173.194.36.53,6,1381241523.330038000,0 924 | 173.194.36.53,172.16.47.254,6,1381241523.330444000,1225 925 | 172.16.47.254,173.194.36.53,6,1381241523.330465000,0 926 | 172.16.47.254,173.194.36.53,6,1381241523.354391000,1460 927 | 172.16.47.254,173.194.36.53,6,1381241523.354422000,1391 928 | 173.194.36.53,172.16.47.254,6,1381241523.354670000,0 929 | 172.16.46.112,224.0.0.252,17,1381241523.508084000,24 930 | 172.16.46.112,224.0.0.252,17,1381241523.508275000,24 931 | 172.16.46.112,224.0.0.252,17,1381241523.508405000,24 932 | 172.16.46.112,224.0.0.252,17,1381241523.508604000,24 933 | 17.172.232.209,172.16.46.234,6,1381241523.508877000,37 934 | 172.16.46.112,172.16.47.255,17,1381241523.594812000,50 935 | 172.16.46.112,172.16.47.255,17,1381241523.595550000,50 936 | 172.16.46.123,172.16.47.255,17,1381241523.614219000,50 937 | 74.125.236.125,172.16.47.254,6,1381241523.641265000,1430 938 | 172.16.47.254,74.125.236.125,6,1381241523.641326000,0 939 | 74.125.236.125,172.16.47.254,6,1381241523.641674000,2255 940 | 172.16.47.254,74.125.236.125,6,1381241523.641693000,0 941 | 172.16.47.254,74.125.236.125,6,1381241523.657611000,294 942 | 74.125.236.125,172.16.47.254,6,1381241523.657832000,0 943 | 172.16.47.254,74.125.236.125,6,1381241523.658421000,53 944 | 172.16.47.254,74.125.236.125,6,1381241523.658522000,61 945 | 74.125.236.125,172.16.47.254,6,1381241523.658584000,0 946 | 74.125.236.125,172.16.47.254,6,1381241523.658639000,0 947 | 172.16.47.254,74.125.236.125,6,1381241523.659216000,1460 948 | 172.16.47.254,74.125.236.125,6,1381241523.659235000,583 949 | 74.125.236.125,172.16.47.254,6,1381241523.659430000,0 950 | 74.125.236.125,172.16.47.254,6,1381241523.659445000,0 951 | 172.16.47.155,172.16.47.255,17,1381241523.706689000,50 952 | 172.16.47.114,172.16.47.255,17,1381241523.717935000,201 953 | 172.16.46.123,172.16.47.255,17,1381241523.730271000,50 954 | 74.125.236.125,172.16.47.254,6,1381241523.756659000,242 955 | 172.16.47.254,74.125.236.125,6,1381241523.793078000,0 956 | 74.125.236.125,172.16.47.254,6,1381241523.793242000,53 957 | 172.16.47.254,74.125.236.125,6,1381241523.793349000,0 958 | 172.16.46.112,172.16.47.255,17,1381241523.815792000,50 959 | 172.16.46.112,172.16.47.255,17,1381241523.815803000,50 960 | 172.16.46.112,172.16.47.255,17,1381241523.847778000,50 961 | 172.16.46.112,172.16.47.255,17,1381241523.847788000,50 962 | 74.125.236.125,172.16.47.254,6,1381241524.069102000,356 963 | 172.16.47.254,74.125.236.125,6,1381241524.069122000,0 964 | 172.16.46.205,172.16.47.255,17,1381241524.095425000,50 965 | 172.16.46.205,224.0.0.252,17,1381241524.096438000,22 966 | 172.16.47.254,173.194.36.53,6,1381241524.108725000,1460 967 | 172.16.47.254,173.194.36.53,6,1381241524.108749000,1266 968 | 173.194.36.53,172.16.47.254,6,1381241524.108985000,0 969 | 173.194.36.53,172.16.47.254,6,1381241524.256604000,1433 970 | 172.16.47.254,173.194.36.53,6,1381241524.267050000,1460 971 | 172.16.47.254,173.194.36.53,6,1381241524.267069000,1062 972 | 173.194.36.53,172.16.47.254,6,1381241524.267309000,0 973 | 172.16.46.19,255.255.255.255,17,1381241524.363068000,40 974 | 172.16.46.123,172.16.47.255,17,1381241524.364283000,50 975 | 172.16.46.123,172.16.47.255,17,1381241524.480284000,50 976 | 172.16.46.205,224.0.0.252,17,1381241524.509352000,22 977 | 172.16.46.112,172.16.47.255,17,1381241524.565341000,50 978 | 172.16.46.112,172.16.47.255,17,1381241524.565352000,50 979 | 172.16.46.112,224.0.0.252,17,1381241524.566078000,24 980 | 172.16.46.112,224.0.0.252,17,1381241524.566264000,24 981 | 172.16.46.112,172.16.47.255,17,1381241524.566399000,50 982 | 172.16.46.112,172.16.47.255,17,1381241524.566406000,50 983 | 172.16.46.112,172.16.47.255,17,1381241524.598546000,50 984 | 172.16.46.112,172.16.47.255,17,1381241524.598555000,50 985 | 172.16.47.254,173.194.36.53,6,1381241524.641033000,1460 986 | 172.16.47.254,173.194.36.53,6,1381241524.641069000,975 987 | 172.16.47.254,173.194.36.53,6,1381241524.641217000,162 988 | 173.194.36.53,172.16.47.254,6,1381241524.641323000,0 989 | 173.194.36.53,172.16.47.254,6,1381241524.679567000,0 990 | 173.194.36.53,172.16.47.254,6,1381241524.720026000,95 991 | 172.16.47.254,173.194.36.53,6,1381241524.723027000,41 992 | 173.194.36.53,172.16.47.254,6,1381241524.723225000,0 993 | 172.16.47.254,173.194.36.53,6,1381241524.729616000,1460 994 | 172.16.47.254,173.194.36.53,6,1381241524.729627000,927 995 | 172.16.47.254,173.194.36.53,6,1381241524.729723000,40 996 | 173.194.36.53,172.16.47.254,6,1381241524.729896000,0 997 | 173.194.36.53,172.16.47.254,6,1381241524.729911000,0 998 | 173.194.36.53,172.16.47.254,6,1381241524.729922000,0 999 | 172.16.47.147,224.0.0.252,17,1381241524.822725000,22 1000 | 172.16.46.205,172.16.47.255,17,1381241524.845925000,50 1001 | 172.16.47.147,224.0.0.252,17,1381241524.922682000,22 1002 | 172.16.46.205,172.16.47.255,17,1381241524.924937000,50 1003 | 172.16.46.205,224.0.0.252,17,1381241524.925933000,22 1004 | 172.16.46.112,224.0.0.252,17,1381241524.987329000,24 1005 | 172.16.46.112,224.0.0.252,17,1381241524.987512000,24 1006 | 172.16.47.254,172.16.0.30,17,1381241525.051796000,34 1007 | 172.16.47.254,172.16.0.30,17,1381241525.051862000,34 1008 | 172.16.0.30,172.16.47.254,17,1381241525.052069000,66 1009 | 172.16.0.30,172.16.47.254,17,1381241525.052100000,34 1010 | 173.194.36.53,172.16.47.254,6,1381241525.073429000,64 1011 | 173.194.36.53,172.16.47.254,6,1381241525.074079000,1460 1012 | 172.16.47.254,173.194.36.53,6,1381241525.074108000,0 1013 | 173.194.36.53,172.16.47.254,6,1381241525.074538000,1400 1014 | 172.16.46.112,172.16.47.255,17,1381241525.098690000,50 1015 | 172.16.46.112,172.16.47.255,17,1381241525.098714000,50 1016 | 172.16.46.112,224.0.0.252,17,1381241525.099421000,24 1017 | 172.16.46.112,224.0.0.252,17,1381241525.099608000,24 1018 | 172.16.47.254,173.194.36.53,6,1381241525.113083000,0 1019 | 173.194.36.53,172.16.47.254,6,1381241525.113474000,1321 1020 | 172.16.47.254,173.194.36.53,6,1381241525.113514000,0 1021 | 172.16.47.147,172.16.47.255,17,1381241525.122780000,50 1022 | 173.194.36.53,172.16.47.254,6,1381241525.271152000,4096 1023 | 172.16.47.254,173.194.36.53,6,1381241525.271206000,0 1024 | 173.194.36.53,172.16.47.254,6,1381241525.271222000,2920 1025 | 172.16.47.254,173.194.36.53,6,1381241525.271231000,0 1026 | 173.194.36.53,172.16.47.254,6,1381241525.271771000,442 1027 | 172.16.47.254,173.194.36.53,6,1381241525.271800000,0 1028 | 172.16.47.254,173.194.36.53,6,1381241525.300207000,1460 1029 | 172.16.47.254,173.194.36.53,6,1381241525.300238000,1070 1030 | 173.194.36.53,172.16.47.254,6,1381241525.300456000,0 1031 | 173.194.36.53,172.16.47.254,6,1381241525.300484000,0 1032 | 172.16.46.112,172.16.47.255,17,1381241525.315277000,50 1033 | 172.16.46.112,172.16.47.255,17,1381241525.315301000,50 1034 | 172.16.46.205,224.0.0.252,17,1381241525.335859000,22 1035 | 173.194.36.53,172.16.47.254,6,1381241525.354114000,71 1036 | 172.16.47.254,173.194.36.53,6,1381241525.393093000,0 1037 | 173.194.36.53,172.16.47.254,6,1381241525.393539000,778 1038 | 172.16.47.254,173.194.36.53,6,1381241525.393583000,0 1039 | 172.16.47.254,173.194.36.53,6,1381241525.429499000,1460 1040 | 172.16.47.254,173.194.36.53,6,1381241525.429512000,807 1041 | 173.194.36.53,172.16.47.254,6,1381241525.430739000,0 1042 | 173.194.36.53,172.16.47.254,6,1381241525.430754000,0 1043 | 172.16.47.254,173.194.36.53,6,1381241525.436519000,1460 1044 | 172.16.47.254,173.194.36.53,6,1381241525.436548000,908 1045 | 173.194.36.53,172.16.47.254,6,1381241525.436752000,0 1046 | 173.194.36.53,172.16.47.254,6,1381241525.436774000,0 1047 | 172.16.47.254,173.194.36.53,6,1381241525.436813000,484 1048 | 173.194.36.53,172.16.47.254,6,1381241525.437040000,0 1049 | 172.16.46.112,224.0.0.252,17,1381241525.510035000,24 1050 | 172.16.46.112,224.0.0.252,17,1381241525.510225000,24 1051 | 172.16.47.254,173.194.36.53,6,1381241525.593446000,1460 1052 | 172.16.47.254,173.194.36.53,6,1381241525.593476000,717 1053 | 173.194.36.53,172.16.47.254,6,1381241525.593674000,0 1054 | 173.194.36.53,172.16.47.254,6,1381241525.593706000,0 1055 | 172.16.46.205,172.16.47.255,17,1381241525.596591000,50 1056 | 172.16.46.205,172.16.47.255,17,1381241525.674638000,50 1057 | 172.16.46.112,172.16.47.255,17,1381241525.848706000,50 1058 | 172.16.46.112,172.16.47.255,17,1381241525.848730000,50 1059 | 172.16.47.147,172.16.47.255,17,1381241525.872383000,50 1060 | 173.194.36.53,172.16.47.254,6,1381241525.938081000,56 1061 | 173.194.36.53,172.16.47.254,6,1381241525.938633000,2920 1062 | 172.16.47.254,173.194.36.53,6,1381241525.938668000,0 1063 | 173.194.36.53,172.16.47.254,6,1381241525.939087000,1035 1064 | 172.16.46.208,255.255.255.255,17,1381241525.944403000,114 1065 | 172.16.46.208,255.255.255.255,17,1381241525.948361000,114 1066 | 172.16.46.208,172.16.47.255,17,1381241525.948385000,114 1067 | 172.16.47.254,173.194.36.53,6,1381241525.977084000,0 1068 | 173.194.36.53,172.16.47.254,6,1381241526.039589000,52 1069 | 172.16.47.254,173.194.36.53,6,1381241526.039647000,0 1070 | 173.194.36.53,172.16.47.254,6,1381241526.039887000,1473 1071 | 172.16.47.254,173.194.36.53,6,1381241526.039916000,0 1072 | 173.194.36.53,172.16.47.254,6,1381241526.039932000,1460 1073 | 172.16.47.254,173.194.36.53,6,1381241526.039944000,0 1074 | 173.194.36.53,172.16.47.254,6,1381241526.040154000,1291 1075 | 172.16.47.254,173.194.36.53,6,1381241526.040171000,0 1076 | 173.194.36.53,172.16.47.254,6,1381241526.040652000,1430 1077 | 172.16.47.254,173.194.36.53,6,1381241526.040682000,0 1078 | 172.16.46.112,172.16.47.255,17,1381241526.065537000,50 1079 | 172.16.46.112,172.16.47.255,17,1381241526.065563000,50 1080 | 172.16.46.112,172.16.47.255,17,1381241526.065828000,50 1081 | 172.16.46.112,172.16.47.255,17,1381241526.065846000,50 1082 | 172.16.46.112,224.0.0.252,17,1381241526.066337000,24 1083 | 172.16.46.112,224.0.0.252,17,1381241526.066429000,24 1084 | 172.16.46.112,172.16.47.255,17,1381241526.096470000,50 1085 | 172.16.46.112,172.16.47.255,17,1381241526.096494000,50 1086 | 172.16.46.112,224.0.0.252,17,1381241526.097069000,24 1087 | 172.16.46.112,224.0.0.252,17,1381241526.097276000,24 1088 | 173.194.36.53,172.16.47.254,6,1381241526.136171000,1430 1089 | 172.16.47.254,173.194.36.53,6,1381241526.136215000,0 1090 | 173.194.36.53,172.16.47.254,6,1381241526.136668000,1430 1091 | 172.16.47.254,173.194.36.53,6,1381241526.136697000,0 1092 | 173.194.36.53,172.16.47.254,6,1381241526.138055000,1430 1093 | 172.16.47.254,173.194.36.53,6,1381241526.138083000,0 1094 | 173.194.36.53,172.16.47.254,6,1381241526.138509000,1430 1095 | 172.16.47.254,173.194.36.53,6,1381241526.138518000,0 1096 | 173.194.36.53,172.16.47.254,6,1381241526.139129000,1430 1097 | 172.16.47.254,173.194.36.53,6,1381241526.139141000,0 1098 | 173.194.36.53,172.16.47.254,6,1381241526.139613000,1430 1099 | 172.16.47.254,173.194.36.53,6,1381241526.139640000,0 1100 | 173.194.36.53,172.16.47.254,6,1381241526.233941000,1430 1101 | 172.16.47.254,173.194.36.53,6,1381241526.233983000,0 1102 | 173.194.36.53,172.16.47.254,6,1381241526.234461000,1430 1103 | 172.16.47.254,173.194.36.53,6,1381241526.234498000,0 1104 | 173.194.36.53,172.16.47.254,6,1381241526.235927000,460 1105 | 172.16.47.254,173.194.36.53,6,1381241526.235957000,0 1106 | 173.194.36.53,172.16.47.254,6,1381241526.273335000,963 1107 | 172.16.47.254,173.194.36.53,6,1381241526.273352000,0 1108 | 173.194.36.53,172.16.47.254,6,1381241526.273755000,133 1109 | 172.16.47.254,173.194.36.53,6,1381241526.273791000,0 1110 | 17.172.232.209,172.16.46.234,6,1381241526.327872000,37 1111 | 173.194.36.53,172.16.47.254,6,1381241526.387841000,82 1112 | 172.16.47.254,173.194.36.53,6,1381241526.387903000,0 1113 | 173.194.36.53,172.16.47.254,6,1381241526.388084000,2920 1114 | 172.16.47.254,173.194.36.53,6,1381241526.388101000,0 1115 | 173.194.36.53,172.16.47.254,6,1381241526.388352000,1261 1116 | 172.16.47.254,173.194.36.53,6,1381241526.388581000,0 1117 | 173.194.36.53,172.16.47.254,6,1381241526.389014000,1430 1118 | 172.16.47.254,173.194.36.53,6,1381241526.389029000,0 1119 | 172.16.46.205,172.16.47.255,17,1381241526.425171000,50 1120 | 172.16.47.254,173.194.36.53,6,1381241526.427479000,41 1121 | 173.194.36.53,172.16.47.254,6,1381241526.427662000,0 1122 | 172.16.47.254,173.194.36.53,6,1381241526.428792000,41 1123 | 173.194.36.53,172.16.47.254,6,1381241526.429017000,0 1124 | 172.16.47.254,173.194.36.53,6,1381241526.431374000,1460 1125 | 172.16.47.254,173.194.36.53,6,1381241526.431384000,812 1126 | 173.194.36.53,172.16.47.254,6,1381241526.431606000,0 1127 | 173.194.36.53,172.16.47.254,6,1381241526.431616000,0 1128 | 172.16.47.108,172.16.47.255,17,1381241526.446304000,50 1129 | 172.16.47.254,173.194.36.53,6,1381241526.446759000,41 1130 | 172.16.47.108,224.0.0.252,17,1381241526.447706000,21 1131 | 173.194.36.53,172.16.47.254,6,1381241526.447920000,0 1132 | 173.194.36.53,172.16.47.254,6,1381241526.486500000,1430 1133 | 172.16.46.112,224.0.0.252,17,1381241526.507906000,24 1134 | 172.16.46.112,224.0.0.252,17,1381241526.508149000,24 1135 | 172.16.46.112,224.0.0.252,17,1381241526.508286000,24 1136 | 172.16.46.112,224.0.0.252,17,1381241526.508496000,24 1137 | 172.16.47.254,173.194.36.53,6,1381241526.525088000,0 1138 | 173.194.36.53,172.16.47.254,6,1381241526.525511000,1430 1139 | 172.16.47.254,173.194.36.53,6,1381241526.565132000,0 1140 | 172.16.47.114,224.0.0.252,17,1381241526.577940000,24 1141 | 172.16.46.112,172.16.47.255,17,1381241526.599262000,50 1142 | 172.16.46.112,172.16.47.255,17,1381241526.599288000,50 1143 | 172.16.47.147,172.16.47.255,17,1381241526.622357000,50 1144 | 172.16.47.114,224.0.0.252,17,1381241526.686588000,24 1145 | 173.194.36.53,172.16.47.254,6,1381241526.718776000,1430 1146 | 173.194.36.53,172.16.47.254,6,1381241526.718846000,7300 1147 | 172.16.47.254,173.194.36.53,6,1381241526.718913000,0 1148 | 173.194.36.53,172.16.47.254,6,1381241526.719310000,1280 1149 | 172.16.47.254,173.194.36.53,6,1381241526.719354000,0 1150 | 172.16.47.254,173.194.36.36,6,1381241526.743817000,0 1151 | 172.16.47.254,173.194.36.42,6,1381241526.744152000,0 1152 | 172.16.47.254,173.194.36.33,6,1381241526.744391000,0 1153 | 172.16.47.254,74.125.236.111,6,1381241526.745129000,0 1154 | 172.16.46.112,172.16.47.255,17,1381241526.815497000,50 1155 | 172.16.46.112,172.16.47.255,17,1381241526.815529000,50 1156 | 173.194.36.53,172.16.47.254,6,1381241526.817928000,1430 1157 | 172.16.47.254,173.194.36.53,6,1381241526.818062000,0 1158 | 173.194.36.53,172.16.47.254,6,1381241526.818278000,1460 1159 | 173.194.36.53,172.16.47.254,6,1381241526.818568000,1400 1160 | 172.16.47.254,173.194.36.53,6,1381241526.818675000,0 1161 | 172.16.46.112,172.16.47.255,17,1381241526.846672000,50 1162 | 172.16.46.112,172.16.47.255,17,1381241526.846690000,50 1163 | 172.16.47.108,224.0.0.252,17,1381241526.858202000,21 1164 | 172.16.47.114,172.16.47.255,17,1381241526.889567000,50 1165 | 173.194.36.53,172.16.47.254,6,1381241526.915519000,1430 1166 | 173.194.36.53,172.16.47.254,6,1381241526.915575000,4380 1167 | 172.16.47.254,173.194.36.53,6,1381241526.915694000,0 1168 | 173.194.36.53,172.16.47.254,6,1381241526.916151000,761 1169 | 172.16.47.254,173.194.36.53,6,1381241526.916238000,0 1170 | 74.125.135.125,172.16.47.254,6,1381241527.045491000,26 1171 | 172.16.47.254,74.125.135.125,6,1381241527.045547000,0 1172 | 172.16.47.169,224.0.0.252,17,1381241527.116422000,22 1173 | 172.16.47.169,224.0.0.252,17,1381241527.142961000,22 1174 | 172.16.47.108,172.16.47.255,17,1381241527.196908000,50 1175 | 172.16.47.169,224.0.0.252,17,1381241527.215713000,22 1176 | 172.16.47.169,224.0.0.252,17,1381241527.243184000,22 1177 | 172.16.47.226,224.0.0.252,17,1381241527.351923000,22 1178 | 172.16.47.147,224.0.0.252,17,1381241527.373592000,22 1179 | 172.16.47.169,172.16.47.255,17,1381241527.416415000,50 1180 | 172.16.47.169,172.16.47.255,17,1381241527.443207000,50 1181 | 172.16.47.226,224.0.0.252,17,1381241527.450981000,22 1182 | 172.16.47.147,224.0.0.252,17,1381241527.472706000,22 1183 | 172.16.46.112,172.16.47.255,17,1381241527.567281000,50 1184 | 172.16.46.112,172.16.47.255,17,1381241527.567294000,50 1185 | 172.16.46.112,172.16.47.255,17,1381241527.567998000,50 1186 | 172.16.46.112,172.16.47.255,17,1381241527.568007000,50 1187 | 172.16.46.112,224.0.0.252,17,1381241527.568699000,24 1188 | 172.16.46.112,224.0.0.252,17,1381241527.568826000,24 1189 | 172.16.46.112,172.16.47.255,17,1381241527.597367000,50 1190 | 172.16.46.112,172.16.47.255,17,1381241527.597398000,50 1191 | 172.16.47.114,172.16.47.255,17,1381241527.653338000,50 1192 | 172.16.47.226,172.16.47.255,17,1381241527.654089000,50 1193 | 172.16.47.147,172.16.47.255,17,1381241527.672903000,50 1194 | 172.16.47.108,172.16.47.255,17,1381241527.949828000,50 1195 | 172.16.46.112,224.0.0.252,17,1381241527.979214000,24 1196 | 172.16.46.112,224.0.0.252,17,1381241527.979408000,24 1197 | 172.16.46.112,172.16.47.255,17,1381241528.100194000,50 1198 | 172.16.46.112,172.16.47.255,17,1381241528.100218000,50 1199 | 172.16.46.112,224.0.0.252,17,1381241528.101588000,24 1200 | 172.16.46.112,224.0.0.252,17,1381241528.101737000,24 1201 | 172.16.47.169,172.16.47.255,17,1381241528.165688000,50 1202 | 172.16.47.169,172.16.47.255,17,1381241528.192812000,50 1203 | 172.16.46.112,172.16.47.255,17,1381241528.318895000,50 1204 | 172.16.46.112,172.16.47.255,17,1381241528.318923000,50 1205 | 172.16.46.19,172.16.47.255,17,1381241528.380552000,40 1206 | 172.16.47.114,172.16.47.255,17,1381241528.417867000,50 1207 | 172.16.47.226,172.16.47.255,17,1381241528.417898000,50 1208 | 172.16.47.147,172.16.47.255,17,1381241528.422473000,50 1209 | 172.16.47.66,172.16.47.255,17,1381241528.466120000,50 1210 | 172.16.47.66,224.0.0.252,17,1381241528.466535000,22 1211 | 172.16.46.112,224.0.0.252,17,1381241528.511447000,24 1212 | 172.16.46.112,224.0.0.252,17,1381241528.511637000,24 1213 | 172.16.46.176,255.255.255.255,17,1381241528.589635000,112 1214 | 172.16.46.176,255.255.255.255,17,1381241528.592723000,112 1215 | 172.16.46.176,255.255.255.255,17,1381241528.592996000,112 1216 | 172.16.46.176,172.16.255.255,17,1381241528.593017000,112 1217 | 172.16.46.112,172.16.47.255,17,1381241528.850371000,50 1218 | 172.16.46.112,172.16.47.255,17,1381241528.850393000,50 1219 | 172.16.47.66,224.0.0.252,17,1381241528.875765000,22 1220 | 172.16.47.169,172.16.47.255,17,1381241528.915761000,50 1221 | 172.16.47.169,172.16.47.255,17,1381241528.942699000,50 1222 | 172.16.46.239,172.16.47.255,17,1381241528.982531000,50 1223 | 172.16.46.139,172.16.47.255,17,1381241528.998949000,112 1224 | 172.16.46.112,172.16.47.255,17,1381241529.066018000,50 1225 | 172.16.46.112,172.16.47.255,17,1381241529.066042000,50 1226 | 172.16.46.112,224.0.0.252,17,1381241529.066690000,24 1227 | 172.16.46.112,224.0.0.252,17,1381241529.066872000,24 1228 | 172.16.46.112,172.16.47.255,17,1381241529.070664000,50 1229 | 172.16.46.112,172.16.47.255,17,1381241529.070684000,50 1230 | 172.16.46.112,172.16.47.255,17,1381241529.100230000,50 1231 | 172.16.46.112,172.16.47.255,17,1381241529.100246000,50 1232 | 172.16.46.112,224.0.0.252,17,1381241529.101514000,24 1233 | 172.16.46.112,224.0.0.252,17,1381241529.101696000,24 1234 | 172.16.47.147,172.16.47.255,17,1381241529.172526000,50 1235 | 172.16.47.226,172.16.47.255,17,1381241529.182118000,50 1236 | 172.16.47.114,224.0.0.252,17,1381241529.183104000,24 1237 | 172.16.47.66,172.16.47.255,17,1381241529.215327000,50 1238 | 172.16.47.114,224.0.0.252,17,1381241529.291774000,24 1239 | 172.16.47.160,172.16.47.254,6,1381241529.360577000,0 1240 | 172.16.47.254,172.16.47.160,6,1381241529.360625000,0 1241 | 172.16.47.213,172.16.47.255,17,1381241529.369898000,50 1242 | 172.16.47.114,172.16.47.255,17,1381241529.494577000,50 1243 | 172.16.46.112,224.0.0.252,17,1381241529.511289000,24 1244 | 172.16.46.112,224.0.0.252,17,1381241529.511486000,24 1245 | 172.16.46.112,224.0.0.252,17,1381241529.511654000,24 1246 | 172.16.46.112,224.0.0.252,17,1381241529.511812000,24 1247 | 172.16.47.213,172.16.47.255,17,1381241529.576766000,50 1248 | 172.16.46.112,172.16.47.255,17,1381241529.601120000,50 1249 | 172.16.46.112,172.16.47.255,17,1381241529.601134000,50 1250 | 172.16.46.239,172.16.47.255,17,1381241529.732655000,50 1251 | 172.16.46.189,224.0.0.252,17,1381241529.793346000,22 1252 | 172.16.46.189,255.255.255.255,17,1381241529.798365000,300 1253 | 172.16.46.189,224.0.0.252,17,1381241529.812330000,22 1254 | 172.16.46.189,224.0.0.252,17,1381241529.814893000,22 1255 | 172.16.46.112,172.16.47.255,17,1381241529.816122000,50 1256 | 172.16.46.112,172.16.47.255,17,1381241529.816142000,50 1257 | 172.16.46.112,172.16.47.255,17,1381241529.851247000,50 1258 | 172.16.46.112,172.16.47.255,17,1381241529.851271000,50 1259 | 172.16.47.160,172.16.47.254,6,1381241529.857529000,0 1260 | 172.16.47.254,172.16.47.160,6,1381241529.857590000,0 1261 | 172.16.46.189,224.0.0.252,17,1381241529.893478000,22 1262 | 172.16.46.189,224.0.0.252,17,1381241529.912409000,22 1263 | 172.16.46.189,224.0.0.252,17,1381241529.914390000,22 1264 | 172.16.47.66,172.16.47.255,17,1381241529.965282000,50 1265 | 172.16.46.189,172.16.47.255,17,1381241530.094065000,50 1266 | 172.16.46.189,172.16.47.255,17,1381241530.112755000,50 1267 | 172.16.46.189,172.16.47.255,17,1381241530.114651000,50 1268 | 172.16.46.232,255.255.255.255,17,1381241530.166764000,103 1269 | 172.16.46.232,172.16.46.255,17,1381241530.166795000,103 1270 | 172.16.47.213,172.16.47.255,17,1381241530.185971000,50 1271 | 172.16.47.226,224.0.0.252,17,1381241530.191395000,22 1272 | 172.16.47.114,172.16.47.255,17,1381241530.258624000,50 1273 | 172.16.47.226,224.0.0.252,17,1381241530.296331000,22 1274 | 172.16.47.225,172.16.47.254,6,1381241530.324124000,0 1275 | 172.16.47.254,172.16.47.225,6,1381241530.324169000,0 1276 | 172.16.47.160,172.16.47.254,6,1381241530.357401000,0 1277 | 172.16.47.254,172.16.47.160,6,1381241530.357450000,0 1278 | 172.16.46.239,172.16.47.255,17,1381241530.482648000,50 1279 | 172.16.47.226,172.16.47.255,17,1381241530.503088000,50 1280 | 172.16.46.112,172.16.47.255,17,1381241530.565151000,50 1281 | 172.16.46.112,224.0.0.252,17,1381241530.565860000,24 1282 | 172.16.46.112,172.16.47.255,17,1381241530.566236000,50 1283 | 172.16.46.112,172.16.47.255,17,1381241530.566844000,50 1284 | 172.16.46.112,224.0.0.252,17,1381241530.566861000,24 1285 | 172.16.46.112,172.16.47.255,17,1381241530.566865000,50 1286 | 172.16.47.254,172.16.0.30,17,1381241530.595970000,34 1287 | 172.16.47.254,172.16.0.30,17,1381241530.596038000,34 1288 | 172.16.0.30,172.16.47.254,17,1381241530.596263000,66 1289 | 172.16.0.30,172.16.47.254,17,1381241530.596290000,34 1290 | 172.16.46.112,172.16.47.255,17,1381241530.602894000,50 1291 | 172.16.46.112,172.16.47.255,17,1381241530.602925000,50 1292 | 172.16.47.225,172.16.47.254,6,1381241530.824776000,0 1293 | 172.16.47.254,172.16.47.225,6,1381241530.824824000,0 1294 | 172.16.46.189,172.16.47.255,17,1381241530.843525000,50 1295 | 172.16.46.189,172.16.47.255,17,1381241530.862536000,50 1296 | 172.16.46.189,172.16.47.255,17,1381241530.864401000,50 1297 | 172.16.46.112,224.0.0.252,17,1381241530.976645000,24 1298 | 172.16.46.112,224.0.0.252,17,1381241530.976828000,24 1299 | 172.16.47.254,172.16.0.30,17,1381241530.983530000,37 1300 | 172.16.47.114,172.16.47.255,17,1381241531.023130000,50 1301 | 172.16.0.30,172.16.47.254,17,1381241531.077939000,237 1302 | 172.16.47.254,74.125.236.99,6,1381241531.079517000,582 1303 | 74.125.236.99,172.16.47.254,6,1381241531.079740000,0 1304 | 172.16.47.254,74.125.236.99,6,1381241531.079872000,1460 1305 | 172.16.47.254,74.125.236.99,6,1381241531.079896000,1425 1306 | 74.125.236.99,172.16.47.254,6,1381241531.080105000,0 1307 | 172.16.47.254,74.125.236.99,6,1381241531.080112000,565 1308 | 74.125.236.99,172.16.47.254,6,1381241531.080115000,0 1309 | 74.125.236.99,172.16.47.254,6,1381241531.080300000,0 1310 | 172.16.46.112,172.16.47.255,17,1381241531.101752000,50 1311 | 172.16.46.112,172.16.47.255,17,1381241531.101776000,50 1312 | 172.16.46.112,224.0.0.252,17,1381241531.102463000,24 1313 | 172.16.46.112,224.0.0.252,17,1381241531.102740000,24 1314 | 172.16.47.226,172.16.47.255,17,1381241531.263087000,50 1315 | 172.16.46.112,172.16.47.255,17,1381241531.315511000,50 1316 | 172.16.46.112,172.16.47.255,17,1381241531.316627000,50 1317 | 172.16.47.225,172.16.47.254,6,1381241531.330982000,0 1318 | 172.16.47.254,172.16.47.225,6,1381241531.331043000,0 1319 | 74.125.236.99,172.16.47.254,6,1381241531.377295000,145 1320 | 172.16.47.254,74.125.236.99,6,1381241531.377361000,0 1321 | 74.125.236.99,172.16.47.254,6,1381241531.377381000,2920 1322 | 172.16.47.254,74.125.236.99,6,1381241531.377391000,0 1323 | 74.125.236.99,172.16.47.254,6,1381241531.377803000,398 1324 | 172.16.47.254,74.125.236.99,6,1381241531.377834000,0 1325 | 172.16.47.254,74.125.236.99,6,1381241531.380987000,494 1326 | 74.125.236.99,172.16.47.254,6,1381241531.381188000,0 1327 | 172.16.47.254,74.125.236.99,6,1381241531.381351000,1460 1328 | 172.16.47.254,74.125.236.99,6,1381241531.381377000,416 1329 | 74.125.236.99,172.16.47.254,6,1381241531.381627000,0 1330 | 74.125.236.99,172.16.47.254,6,1381241531.381654000,0 1331 | 172.16.47.108,172.16.47.255,17,1381241531.460814000,50 1332 | 172.16.47.108,224.0.0.252,17,1381241531.461996000,21 1333 | 172.16.46.112,224.0.0.252,17,1381241531.513154000,24 1334 | 172.16.46.112,224.0.0.252,17,1381241531.513308000,24 1335 | 172.16.46.189,224.0.0.252,17,1381241531.531971000,22 1336 | 172.16.46.189,224.0.0.252,17,1381241531.550277000,22 1337 | --------------------------------------------------------------------------------