prelude-correlator-1.0.0/0000775000076400007640000000000011347714243014374 5ustar yoannyoannprelude-correlator-1.0.0/ez_setup.py0000664000076400007640000002411211327325741016603 0ustar yoannyoann#!python """Bootstrap setuptools installation If you want to use setuptools in your package's setup.py, just include this file in the same directory with it, and add this to the top of your setup.py:: from ez_setup import use_setuptools use_setuptools() If you want to require a specific version of setuptools, set a download mirror, or use an alternate download directory, you can do so by supplying the appropriate options to ``use_setuptools()``. This file can also be run as a script to install or upgrade setuptools. """ import sys DOWNLOAD_VERSION = "0.6c11" DEFAULT_VERSION = "0.6c1" DEFAULT_URL = "http://pypi.python.org/packages/%s/s/setuptools/" % sys.version[:3] md5_data = { 'setuptools-0.6b1-py2.3.egg': '8822caf901250d848b996b7f25c6e6ca', 'setuptools-0.6b1-py2.4.egg': 'b79a8a403e4502fbb85ee3f1941735cb', 'setuptools-0.6b2-py2.3.egg': '5657759d8a6d8fc44070a9d07272d99b', 'setuptools-0.6b2-py2.4.egg': '4996a8d169d2be661fa32a6e52e4f82a', 'setuptools-0.6b3-py2.3.egg': 'bb31c0fc7399a63579975cad9f5a0618', 'setuptools-0.6b3-py2.4.egg': '38a8c6b3d6ecd22247f179f7da669fac', 'setuptools-0.6b4-py2.3.egg': '62045a24ed4e1ebc77fe039aa4e6f7e5', 'setuptools-0.6b4-py2.4.egg': '4cb2a185d228dacffb2d17f103b3b1c4', 'setuptools-0.6c1-py2.3.egg': 'b3f2b5539d65cb7f74ad79127f1a908c', 'setuptools-0.6c1-py2.4.egg': 'b45adeda0667d2d2ffe14009364f2a4b', 'setuptools-0.6c10-py2.3.egg': 'ce1e2ab5d3a0256456d9fc13800a7090', 'setuptools-0.6c10-py2.4.egg': '57d6d9d6e9b80772c59a53a8433a5dd4', 'setuptools-0.6c10-py2.5.egg': 'de46ac8b1c97c895572e5e8596aeb8c7', 'setuptools-0.6c10-py2.6.egg': '58ea40aef06da02ce641495523a0b7f5', 'setuptools-0.6c11-py2.3.egg': '2baeac6e13d414a9d28e7ba5b5a596de', 'setuptools-0.6c11-py2.4.egg': 'bd639f9b0eac4c42497034dec2ec0c2b', 'setuptools-0.6c11-py2.5.egg': '64c94f3bf7a72a13ec83e0b24f2749b2', 'setuptools-0.6c11-py2.6.egg': 'bfa92100bd772d5a213eedd356d64086', 'setuptools-0.6c2-py2.3.egg': 'f0064bf6aa2b7d0f3ba0b43f20817c27', 'setuptools-0.6c2-py2.4.egg': '616192eec35f47e8ea16cd6a122b7277', 'setuptools-0.6c3-py2.3.egg': 'f181fa125dfe85a259c9cd6f1d7b78fa', 'setuptools-0.6c3-py2.4.egg': 'e0ed74682c998bfb73bf803a50e7b71e', 'setuptools-0.6c3-py2.5.egg': 'abef16fdd61955514841c7c6bd98965e', 'setuptools-0.6c4-py2.3.egg': 'b0b9131acab32022bfac7f44c5d7971f', 'setuptools-0.6c4-py2.4.egg': '2a1f9656d4fbf3c97bf946c0a124e6e2', 'setuptools-0.6c4-py2.5.egg': '8f5a052e32cdb9c72bcf4b5526f28afc', 'setuptools-0.6c5-py2.3.egg': 'ee9fd80965da04f2f3e6b3576e9d8167', 'setuptools-0.6c5-py2.4.egg': 'afe2adf1c01701ee841761f5bcd8aa64', 'setuptools-0.6c5-py2.5.egg': 'a8d3f61494ccaa8714dfed37bccd3d5d', 'setuptools-0.6c6-py2.3.egg': '35686b78116a668847237b69d549ec20', 'setuptools-0.6c6-py2.4.egg': '3c56af57be3225019260a644430065ab', 'setuptools-0.6c6-py2.5.egg': 'b2f8a7520709a5b34f80946de5f02f53', 'setuptools-0.6c7-py2.3.egg': '209fdf9adc3a615e5115b725658e13e2', 'setuptools-0.6c7-py2.4.egg': '5a8f954807d46a0fb67cf1f26c55a82e', 'setuptools-0.6c7-py2.5.egg': '45d2ad28f9750e7434111fde831e8372', 'setuptools-0.6c8-py2.3.egg': '50759d29b349db8cfd807ba8303f1902', 'setuptools-0.6c8-py2.4.egg': 'cba38d74f7d483c06e9daa6070cce6de', 'setuptools-0.6c8-py2.5.egg': '1721747ee329dc150590a58b3e1ac95b', 'setuptools-0.6c9-py2.3.egg': 'a83c4020414807b496e4cfbe08507c03', 'setuptools-0.6c9-py2.4.egg': '260a2be2e5388d66bdaee06abec6342a', 'setuptools-0.6c9-py2.5.egg': 'fe67c3e5a17b12c0e7c541b7ea43a8e6', 'setuptools-0.6c9-py2.6.egg': 'ca37b1ff16fa2ede6e19383e7b59245a', } import sys, os try: from hashlib import md5 except ImportError: from md5 import md5 def _validate_md5(egg_name, data): if egg_name in md5_data: digest = md5(data).hexdigest() if digest != md5_data[egg_name]: print >>sys.stderr, ( "md5 validation of %s failed! (Possible download problem?)" % egg_name ) sys.exit(2) return data def use_setuptools( version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir, download_delay=15 ): """Automatically find/download setuptools and make it available on sys.path `version` should be a valid setuptools version number that is available as an egg for download under the `download_base` URL (which should end with a '/'). `to_dir` is the directory where setuptools will be downloaded, if it is not already available. If `download_delay` is specified, it should be the number of seconds that will be paused before initiating a download, should one be required. If an older version of setuptools is installed, this routine will print a message to ``sys.stderr`` and raise SystemExit in an attempt to abort the calling script. """ was_imported = 'pkg_resources' in sys.modules or 'setuptools' in sys.modules def do_download(): egg = download_setuptools(DOWNLOAD_VERSION, download_base, to_dir, download_delay) sys.path.insert(0, egg) import setuptools; setuptools.bootstrap_install_from = egg try: import pkg_resources except ImportError: return do_download() try: pkg_resources.require("setuptools>="+version); return except pkg_resources.VersionConflict, e: if was_imported: print >>sys.stderr, ( "The required version of setuptools (>=%s) is not available, and\n" "can't be installed while this script is running. Please install\n" " a more recent version first, using 'easy_install -U setuptools'." "\n\n(Currently using %r)" ) % (version, e.args[0]) sys.exit(2) else: del pkg_resources, sys.modules['pkg_resources'] # reload ok return do_download() except pkg_resources.DistributionNotFound: return do_download() def download_setuptools( version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir, delay = 15 ): """Download setuptools from a specified location and return its filename `version` should be a valid setuptools version number that is available as an egg for download under the `download_base` URL (which should end with a '/'). `to_dir` is the directory where the egg will be downloaded. `delay` is the number of seconds to pause before an actual download attempt. """ import urllib2, shutil egg_name = "setuptools-%s-py%s.egg" % (version,sys.version[:3]) url = download_base + egg_name saveto = os.path.join(to_dir, egg_name) src = dst = None if not os.path.exists(saveto): # Avoid repeated downloads try: from distutils import log if delay: log.warn(""" --------------------------------------------------------------------------- This script requires setuptools version %s to run (even to display help). I will attempt to download it for you (from %s), but you may need to enable firewall access for this script first. I will start the download in %d seconds. (Note: if this machine does not have network access, please obtain the file %s and place it in this directory before rerunning this script.) ---------------------------------------------------------------------------""", version, download_base, delay, url ); from time import sleep; sleep(delay) log.warn("Downloading %s", url) src = urllib2.urlopen(url) # Read/write all in one block, so we don't create a corrupt file # if the download is interrupted. data = _validate_md5(egg_name, src.read()) dst = open(saveto,"wb"); dst.write(data) finally: if src: src.close() if dst: dst.close() return os.path.realpath(saveto) def main(argv, version=DEFAULT_VERSION): """Install or upgrade setuptools and EasyInstall""" try: import setuptools except ImportError: egg = None try: egg = download_setuptools(version, delay=0) sys.path.insert(0,egg) from setuptools.command.easy_install import main return main(list(argv)+[egg]) # we're done here finally: if egg and os.path.exists(egg): os.unlink(egg) else: if setuptools.__version__ == '0.0.1': print >>sys.stderr, ( "You have an obsolete version of setuptools installed. Please\n" "remove it from your system entirely before rerunning this script." ) sys.exit(2) req = "setuptools>="+version import pkg_resources try: pkg_resources.require(req) except pkg_resources.VersionConflict: try: from setuptools.command.easy_install import main except ImportError: from easy_install import main main(list(argv)+[download_setuptools(delay=0)]) sys.exit(0) # try to force an exit else: if argv: from setuptools.command.easy_install import main main(argv) else: print "Setuptools version",version,"or greater has been installed." print '(Run "ez_setup.py -U setuptools" to reinstall or upgrade.)' def update_md5(filenames): """Update our built-in md5 registry""" import re for name in filenames: base = os.path.basename(name) f = open(name,'rb') md5_data[base] = md5(f.read()).hexdigest() f.close() data = [" %r: %r,\n" % it for it in md5_data.items()] data.sort() repl = "".join(data) import inspect srcfile = inspect.getsourcefile(sys.modules[__name__]) f = open(srcfile, 'rb'); src = f.read(); f.close() match = re.search("\nmd5_data = {\n([^}]+)}", src) if not match: print >>sys.stderr, "Internal error!" sys.exit(2) src = src[:match.start(1)] + repl + src[match.end(1):] f = open(srcfile,'w') f.write(src) f.close() if __name__=='__main__': if len(sys.argv)>2 and sys.argv[1]=='--md5update': update_md5(sys.argv[2:]) else: main(sys.argv[1:]) prelude-correlator-1.0.0/setup.cfg0000664000076400007640000000007311347714243016215 0ustar yoannyoann[egg_info] tag_build = tag_date = 0 tag_svn_revision = 0 prelude-correlator-1.0.0/docs/0000775000076400007640000000000011347714243015324 5ustar yoannyoannprelude-correlator-1.0.0/docs/sample-plugin/0000775000076400007640000000000011347714243020101 5ustar yoannyoannprelude-correlator-1.0.0/docs/sample-plugin/setup.py0000664000076400007640000000043011344213155021601 0ustar yoannyoannfrom setuptools import setup, find_packages setup( name='MyPlugin', version='1.0', description="Plugin description", author="Foo Bar", packages=find_packages(), entry_points=''' [PreludeCorrelator.plugins] MyPlugin = myplugin:MyPlugin ''' ) prelude-correlator-1.0.0/docs/sample-plugin/myplugin/0000775000076400007640000000000011347714243021745 5ustar yoannyoannprelude-correlator-1.0.0/docs/sample-plugin/myplugin/main.py0000664000076400007640000000026411341754355023247 0ustar yoannyoannfrom PreludeCorrelator.pluginmanager import Plugin class MyPlugin(Plugin): def run(self, idmef): print("Hello from %s" % self.__class__.__name__) print(idmef) prelude-correlator-1.0.0/docs/sample-plugin/myplugin/__init__.py0000664000076400007640000000003211344213200024031 0ustar yoannyoannfrom main import MyPlugin prelude-correlator-1.0.0/AUTHORS0000664000076400007640000000023011216223653015432 0ustar yoannyoannPrelude-Correlator is brought to you by PreludeIDS Technologies (http://www.prelude-ids.com), Written by Yoann Vandoorselaere prelude-correlator-1.0.0/PKG-INFO0000664000076400007640000000277311347714243015502 0ustar yoannyoannMetadata-Version: 1.0 Name: prelude-correlator Version: 1.0.0 Summary: Prelude-Correlator perform real time correlation of events received by Prelude Home-page: http://www.prelude-ids.com Author: Yoann Vandoorselaere Author-email: yoann.v@prelude-ids.com License: UNKNOWN Download-URL: http://www.prelude-ids.com/development/download/ Description: Prelude-Correlator perform real time correlation of events received by Prelude. Several isolated alerts, generated from different sensors, can thus trigger a single CorrelationAlert should the events be related. This CorrelationAlert then appears within the Prewikka interface and indicates the potential target information via the set of correlation rules. Signature creation with Prelude-Correlator is based on the Python programming language. Prelude's integrated correlation engine is distributed with a default set of correlation rules, yet you still have the opportunity to modify and create any correlation rule that suits your needs. Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Environment :: Console Classifier: Intended Audience :: System Administrators Classifier: License :: OSI Approved :: GNU General Public License (GPL) Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Topic :: Security Classifier: Topic :: System :: Monitoring prelude-correlator-1.0.0/setup.py0000664000076400007640000001477211347546770016131 0ustar yoannyoann#!/usr/bin/env python from ez_setup import use_setuptools use_setuptools() import os, sys, shutil from setuptools import setup, find_packages from setuptools.command.install import install from setuptools.command.sdist import sdist PRELUDE_CORRELATOR_VERSION = "1.0.0" class my_sdist(sdist): def _downloadDatabase(self, dname, server, url, filename): import httplib print "Downloading %s database, this might take a while..." % (dname) con = httplib.HTTPConnection(server) con.request("GET", url) r = con.getresponse() if r.status != 200: raise Exception, "Could not download %s host list, error %d" % (dname, r.status) fd = open(filename, "w") fd.write(r.read()) fd.close() def __init__(self, *args, **kwargs): fin = os.popen('git log --summary --stat --no-merges --date=short', 'r') fout = open('ChangeLog', 'w') fout.write(fin.read()) fout.close() self._downloadDatabase("DShield", "www.dshield.org", "/ipsascii.html?limit=10000", "PreludeCorrelator/plugins/dshield.dat") self._downloadDatabase("Spamhaus", "www.spamhaus.org", "/drop/drop.lasso", "PreludeCorrelator/plugins/spamhaus_drop.dat") sdist.__init__(self, *args) class my_install(install): def __install_data(self): data_files = self.distribution.data_files self.distribution.data_files = [] if self.prefix == "/usr": prefix = "/" else: prefix = self.prefix or "" root = self.root or "" for dir, files in data_files: dir = os.path.abspath(root + os.sep + os.path.join(prefix, dir)) self.mkpath(dir) for f in files: dest = os.path.join(dir, os.path.basename(f)) if dest[-4:] == "conf" and os.path.exists(dest): dest += "-dist" self.copy_file(f, dest) def run(self): prefix = self.prefix if prefix == "/usr": prefix = "" self.init_siteconfig(prefix) self.__install_data() install.run(self) os.remove("PreludeCorrelator/siteconfig.py") def init_siteconfig(self, prefix): config = open("PreludeCorrelator/siteconfig.py", "w") print >> config, "conf_dir = '%s'" % os.path.abspath(prefix + "/etc/prelude-correlator") print >> config, "lib_dir = '%s'" % os.path.abspath(prefix + "/var/lib/prelude-correlator") config.close() is_egg = "bdist_egg" in sys.argv if is_egg: # Make sure we remove any trace of siteconfig.py try: shutil.rmtree("build") except: pass package_data = { '': [ "*.dat"], 'docs/sample-plugin': ["docs/sample-plugin/setup.py"] } data_files = [ ("", ["prelude-correlator.conf"]) ] else: package_data = {} data_files = [ ("etc/prelude-correlator", ["prelude-correlator.conf"]), ("var/lib/prelude-correlator", ["PreludeCorrelator/plugins/dshield.dat", "PreludeCorrelator/plugins/spamhaus_drop.dat"]) ] setup( name="prelude-correlator", version=PRELUDE_CORRELATOR_VERSION, maintainer = "Yoann Vandoorselaere", maintainer_email = "yoann.v@prelude-ids.com", author = "Yoann Vandoorselaere", author_email = "yoann.v@prelude-ids.com", url = "http://www.prelude-ids.com", download_url = "http://www.prelude-ids.com/development/download/", description = "Prelude-Correlator perform real time correlation of events received by Prelude", long_description = """ Prelude-Correlator perform real time correlation of events received by Prelude. Several isolated alerts, generated from different sensors, can thus trigger a single CorrelationAlert should the events be related. This CorrelationAlert then appears within the Prewikka interface and indicates the potential target information via the set of correlation rules. Signature creation with Prelude-Correlator is based on the Python programming language. Prelude's integrated correlation engine is distributed with a default set of correlation rules, yet you still have the opportunity to modify and create any correlation rule that suits your needs. """, classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: System Administrators", "License :: OSI Approved :: GNU General Public License (GPL)", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Security", "Topic :: System :: Monitoring" ], packages = find_packages(), entry_points = { 'console_scripts': [ 'prelude-correlator = PreludeCorrelator.main:main', ], 'PreludeCorrelator.plugins': [ 'BruteForcePlugin = PreludeCorrelator.plugins.bruteforce:BruteForcePlugin', 'BusinessHourPlugin = PreludeCorrelator.plugins.businesshour:BusinessHourPlugin', 'DshieldPlugin = PreludeCorrelator.plugins.dshield:DshieldPlugin', 'FirewallPlugin = PreludeCorrelator.plugins.firewall:FirewallPlugin', 'OpenSSHAuthPlugin = PreludeCorrelator.plugins.opensshauth:OpenSSHAuthPlugin', 'EventScanPlugin = PreludeCorrelator.plugins.scan:EventScanPlugin', 'EventStormPlugin = PreludeCorrelator.plugins.scan:EventStormPlugin', 'EventSweepPlugin = PreludeCorrelator.plugins.scan:EventSweepPlugin', 'WormPlugin = PreludeCorrelator.plugins.worm:WormPlugin', 'SpamhausDropPlugin = PreludeCorrelator.plugins.spamhausdrop:SpamhausDropPlugin' ] }, zip_safe = False, data_files = data_files, package_data = package_data, cmdclass = { 'sdist': my_sdist, 'install': my_install } ) prelude-correlator-1.0.0/README0000664000076400007640000000337611215407410015252 0ustar yoannyoannPrelude-Correlator: The Prelude-Correlator. Prelude-Correlator is brought to you by PreludeIDS Technologies (http://www.prelude-ids.com). Prelude-Correlator Overview =========================== Prelude-Correlator allows conducting multistream correlations thanks to a powerful programming language for writing correlation rules. With any type of alert able to be correlated, event analysis becomes simpler, quicker and more incisive. Functionality Enhencement ========================= Prelude-Correlator functionality enhencement are available from the PreludeIDS Technologies company: http://www.prelude-ids.com, info@prelude-ids.com IRC === If there's something you just can't find out elsewhere, you want to give feedback directly to the authors or you're just bored, visit #prelude on irc.freenode.net Get Support =========== Prelude-user mailing list archives can be accessed at: http://www.prelude-ids.org/mailman/listinfo Commercial Support is available through the PreludeIDS Technologies company: http://www.prelude-ids.com, info@prelude-ids.com Help development ================ 1. SUBMITTING PATCHES The Prelude source is constantly changing. If you want to submit a patch, please do so from the most recent CVS source tree, subscribe to the prelude-devel mailing list by sending a mail to: prelude-devel-subscribe@prelude-ids.org and post your patch with a description of functionality. You can also attach patches to bugs on http://trac.prelude-ids.org 2. BUGS If you find any bugs, please report them to: http://trac.prelude-ids.org Please make sure that what you're reporting is actually a BUG and not a problem on your side. 3. SUGGESTIONS Subscribe to prelude-devel and give us your suggestions. prelude-correlator-1.0.0/PreludeCorrelator/0000775000076400007640000000000011347714243020031 5ustar yoannyoannprelude-correlator-1.0.0/PreludeCorrelator/pluginmanager.py0000664000076400007640000000623611303200621023221 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import pkg_resources, sys, os, traceback, ConfigParser class PluginLog: def __init__(self, env): self.__logger = env.logger self.__prefix = "[" + self.__class__.__name__ + "]: " def debug(self, log): self.__logger.debug(self.__prefix + log) def info(self, log): self.__logger.info(self.__prefix + log) def warning(self, log): self.__logger.warning(self.__prefix + log) def error(self, log): self.__logger.error(self.__prefix + log) def critical(self, log): self.__logger.critical(self.__prefix + log) class Plugin(object, PluginLog): enable = True def getConfigValue(self, option, default=None, type=str): return self.env.config.get(self.__class__.__name__, option, default=default, type=type) def __init__(self, env): self.env = env PluginLog.__init__(self, env) def signal(self, signo, frame): pass def run(self, idmef): pass class PluginManager: __ENTRYPOINT = 'PreludeCorrelator.plugins' def __init__(self, env): self._count = 0 self.__instances = [] for entrypoint in pkg_resources.iter_entry_points(self.__ENTRYPOINT): try: plugin_class = entrypoint.load() except Exception, e: env.logger.warning("%s: %s" % (entrypoint, e)) continue pname = plugin_class.__name__ if env.config.getAsBool(pname, "disable", default=False) is True: env.logger.info("[%s]: disabled on user request" % (pname)) continue try: pi = plugin_class(env) except Exception, e: env.logger.warning("[%s]: exception occurred while loading: %s" % (pname, e)) continue self.__instances.append(pi) self._count += 1 def getPluginCount(self): return self._count def signal(self, signo, frame): for plugin in self.__instances: try: plugin.signal(signo, frame) except Exception, e: traceback.print_exc() def run(self, idmef): for plugin in self.__instances: try: plugin.run(idmef) except Exception, e: traceback.print_exc() prelude-correlator-1.0.0/PreludeCorrelator/main.py0000664000076400007640000001566511345433613021341 0ustar yoannyoann#!/usr/bin/env python # # Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import require import sys, os, time, signal from optparse import OptionParser from PreludeEasy import ClientEasy, CheckVersion from PreludeCorrelator import __version__ as VERSION from PreludeCorrelator import idmef, pluginmanager, context, log, config LIBPRELUDE_REQUIRED_VERSION = "0.9.25" class Env: def __init__(self, options): self.logger = log.Log(options) self.config = config.Config(options.config) self.pluginmanager = pluginmanager.PluginManager(self) self.logger.info("%d plugin have been loaded." % (self.pluginmanager.getPluginCount())) class SignalHandler: def __init__(self, env): self._env = env signal.signal(signal.SIGTERM, self._handle_signal) signal.signal(signal.SIGINT, self._handle_signal) signal.signal(signal.SIGQUIT, self._handle_signal) def _handle_signal(self, signum, frame): self._env.logger.info("caught signal %d" % signum) self._env.pluginmanager.signal(signum, frame) if signum == signal.SIGQUIT: self._env.prelude_client.stats() context.stats(self._env.logger) else: self._env.prelude_client.stop() class PreludeClient: def __init__(self, env, print_input=None, print_output=None, dry_run=False): self._env = env self._events_processed = 0 self._alert_generated = 0 self._print_input = print_input self._print_output = print_output self._continue = True self._dry_run = dry_run self._client = ClientEasy("prelude-correlator", ClientEasy.PERMISSION_IDMEF_READ|ClientEasy.PERMISSION_IDMEF_WRITE, "Prelude-Correlator", "Correlator", "PreludeIDS Technologies", VERSION) self._client.Start() def _handle_event(self, idmef): if self._print_input: self._print_input.write(str(idmef)) self._env.pluginmanager.run(idmef) self._events_processed += 1 def stats(self): self._env.logger.info("%d events received, %d correlationAlert generated." % (self._events_processed, self._alert_generated)) def correlationAlert(self, idmef): self._alert_generated = self._alert_generated + 1 if not self._dry_run: self._client.SendIDMEF(idmef) if self._print_output: self._print_output.write(str(idmef)) def recvEvent(self): last = time.time() while self._continue: try: msg = idmef.IDMEF() r = self._client.RecvIDMEF(msg, 1000) except: r = 0 if r: if msg.Get("alert.create_time"): self._handle_event(msg) now = time.time() if now - last >= 1: context.wakeup(now) last = now def stop(self): self._continue = False def main(): if not CheckVersion(LIBPRELUDE_REQUIRED_VERSION): raise Exception, ("Libprelude version '%s' is required" % LIBPRELUDE_REQUIRED_VERSION) config_filename = require.get_config_filename(None, "prelude-correlator.conf") parser = OptionParser(usage="%prog", version="%prog " + VERSION) parser.add_option("-c", "--config", action="store", dest="config", type="string", help="Configuration file to use", metavar="FILE", default=config_filename) parser.add_option("", "--dry-run", action="store_true", dest="dry_run", help="No report to the specified Manager will occur", default=False) parser.add_option("-d", "--daemon", action="store_true", dest="daemon", help="Run in daemon mode") parser.add_option("-P", "--pidfile", action="store", dest="pidfile", type="string", help="Write Prelude Correlator PID to specified file", metavar="FILE") parser.add_option("", "--print-input", action="store", dest="print_input", type="string", help="Dump alert input from manager to the specified file", metavar="FILE") parser.add_option("", "--print-output", action="store", dest="print_output", type="string", help="Dump alert output to the specified file", metavar="FILE") parser.add_option("--debug", action="store", dest="debug", type="int", help="Enable debug ouptut (optional debug level argument)", metavar="LEVEL") (options, args) = parser.parse_args() env = Env(options) ifd = None if options.print_input: if options.print_input == "-": ifd = sys.stdout else: ifd = open(options.print_input, "w") ofd = None if options.print_output: if options.print_output == "-": ofd = sys.stdout else: ofd = open(options.print_output, "w") if options.daemon: if os.fork(): os._exit(0) os.setsid() if os.fork(): os._exit(0) os.umask(077) fd = os.open('/dev/null', os.O_RDWR) for i in xrange(3): os.dup2(fd, i) os.close(fd) if options.pidfile: open(options.pidfile, "w").write(str(os.getpid())) env.prelude_client = PreludeClient(env, print_input=ifd, print_output=ofd, dry_run=options.dry_run) idmef.set_prelude_client(env.prelude_client) SignalHandler(env) # restore previous context. context.load() env.prelude_client.recvEvent() # save existing context context.save() prelude-correlator-1.0.0/PreludeCorrelator/utils.py0000664000076400007640000000274111216224233021535 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. def flatten(x): """flatten(sequence) -> list Returns a single, flat list which contains all elements retrieved from the sequence and all recursively contained sub-sequences (iterables). Examples: >>> [1, 2, [3,4], (5,6)] [1, 2, [3, 4], (5, 6)] >>> flatten([[[1,2,3], (42,None)], [4,5], [6], 7, MyVector(8,9,10)]) [1, 2, 3, 42, None, 4, 5, 6, 7, 8, 9, 10]""" if not x: return [] result = [] for el in x: if hasattr(el, "__iter__") and not isinstance(el, basestring): result.extend(flatten(el)) else: result.append(el) return result prelude-correlator-1.0.0/PreludeCorrelator/log.py0000664000076400007640000000640111345441104021154 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import PreludeEasy import logging, logging.config, logging.handlers, sys, os class Log(logging.Logger): def __log_callback(self, level, log): log = log.rstrip('\n') if level == PreludeEasy.PreludeLog.DEBUG: self.debug(log) elif level == PreludeEasy.PreludeLog.INFO: self.info(log) elif level == PreludeEasy.PreludeLog.WARNING: self.warning(log) elif level == PreludeEasy.PreludeLog.ERROR: self.error(log) elif level == PreludeEasy.PreludeLog.CRITICAL: self.critical(log) else: self.warnings(("[unknown:%d] " % level) + log) def __init__(self, options): try: PreludeEasy.PreludeLog.SetCallback(self.__log_callback) except: # PreludeLog is available in recent libprelude version, we do not want to fail if it's not. pass self._have_extra = sys.version_info > (2, 4) try: logging.config.fileConfig(options.config) except Exception, e: DATEFMT = "%d %b %H:%M:%S" if not self._have_extra: FORMAT="%(asctime)s %(name)s %(levelname)s: %(message)s" else: FORMAT="%(asctime)s %(name)s (process:%(pid)d) %(levelname)s: %(message)s" logging.basicConfig(level=logging.DEBUG, format=FORMAT, datefmt=DATEFMT, stream=sys.stderr) self._logger = logging.getLogger("prelude-correlator") if options.daemon is True: hdlr = logging.handlers.SysLogHandler('/dev/log') hdlr.setFormatter(logging.Formatter('%(name)s: %(levelname)s: %(message)s')) self._logger.addHandler(hdlr) def _log(self, log_func, log, extra): if self._have_extra: log_func(log, extra=extra) else: log_func(log) def debug(self, log): self._log(self._logger.debug, log, extra = { "pid": os.getpid() }) def info(self, log): self._log(self._logger.info, log, extra = { "pid": os.getpid() }) def warning(self, log): self._log(self._logger.warning, log, extra = { "pid": os.getpid() }) def error(self, log): self._log(self._logger.error, log, extra = { "pid": os.getpid() }) def critical(self, log): self._log(self._logger.critical, log, extra = { "pid": os.getpid() }) prelude-correlator-1.0.0/PreludeCorrelator/__init__.py0000664000076400007640000000167711216416251022146 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. __version__ = __import__('pkg_resources').get_distribution('prelude-correlator').version prelude-correlator-1.0.0/PreludeCorrelator/require.py0000664000076400007640000000322611225410744022054 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. try: import os from PreludeCorrelator import siteconfig def get_config_filename(module, fname): return os.path.join(siteconfig.conf_dir, fname) def get_data_filename(module, fname): return os.path.join(siteconfig.lib_dir, fname) except: import pkg_resources def get_config_filename(module, fname): if module is None: module = pkg_resources.Requirement.parse("prelude-correlator") return pkg_resources.resource_filename(module, fname) def get_data_filename(module, fname): if module is None: module = pkg_resources.Requirement.parse("prelude-correlator") return pkg_resources.resource_filename(module, fname) prelude-correlator-1.0.0/PreludeCorrelator/idmef.py0000664000076400007640000001075111347546734021503 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import tempfile, re import PreludeEasy from PreludeCorrelator import utils _RegexType = type(re.compile("")) class IDMEF(PreludeEasy.IDMEF): def __setstate__(self, dict): fd = tempfile.TemporaryFile("r+") fd.write(dict["idmef_encoded"]) fd.seek(0) PreludeEasy.IDMEF.__init__(self) self.Read(fd) del(dict["idmef_encoded"]) self.__dict__.update(dict) def __getstate__(self): fd = tempfile.TemporaryFile("r+") self.Write(fd) fd.seek(0) odict = self.__dict__.copy() odict["idmef_encoded"] = fd.read() del(odict["this"]) return odict def getTime(self): itime = self.Get("alert.detect_time") if not itime: itime = self.Get("alert.create_time") return itime def Get(self, path, flatten=True, replacement=None): path = PreludeEasy.IDMEFPath(path) value = path.Get(self) if not value: if path.IsAmbiguous() and flatten: return replacement or () return replacement if flatten and type(value) is tuple: value = utils.flatten(value) return value def Set(self, path, value): if type(value) == PreludeEasy.IDMEFValue: cur = self.Get(path) if cur and value.Match(cur, PreludeEasy.IDMEFCriterion.OPERATOR_EQUAL) > 0: return PreludeEasy.IDMEF.Set(self, path, value) def _match(self, path, needle): value = self.Get(path) if not isinstance(needle, _RegexType): ret = value == needle else: m = needle.search(value or "") if not m: return False ret = m.groups() return ret def match(self, *args): if (len(args) % 2) != 0: raise("Invalid number of arguments.") ret = [] i = 0 while i < len(args): r = self._match(args[i], args[i + 1]) if r is False: return None elif isinstance(r, tuple): ret.extend(r) i += 2 if ret: return ret return True def alert(self): global prelude_client prelude_client.correlationAlert(self) def addAlertReference(self, idmef, auto_set_detect_time=True): if auto_set_detect_time is True: intime = idmef.getTime() curtime = self.getTime() if (not curtime) or intime < curtime: self.Set("alert.detect_time", intime) self.Set("alert.source(>>)", idmef.Get("alert.source")) self.Set("alert.target(>>)", idmef.Get("alert.target")) self.Set("alert.correlation_alert.alertident(>>).alertident", idmef.Get("alert.messageid")) self.Set("alert.correlation_alert.alertident(-1).analyzerid", idmef.Get("alert.analyzer(*).analyzerid")[-1]) def set_prelude_client(client): global prelude_client prelude_client = client prelude-correlator-1.0.0/PreludeCorrelator/plugins/0000775000076400007640000000000011347714243021512 5ustar yoannyoannprelude-correlator-1.0.0/PreludeCorrelator/plugins/bruteforce.py0000664000076400007640000000606211347664476024244 0ustar yoannyoann# Copyright (C) 2006 G Ramon Gomez # Copyright (C) 2009 PreludeIDS Technologies # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import re from PreludeCorrelator.pluginmanager import Plugin from PreludeCorrelator.context import Context class BruteForcePlugin(Plugin): def _BruteForce(self, idmef): sadd = idmef.Get("alert.source(*).node.address(*).address") tadd = idmef.Get("alert.target(*).node.address(*).address") if not sadd or not tadd: return for source in sadd: for target in tadd: ctx = Context(("BRUTE ST", source, target), { "expire": 120, "threshold": 5, "alert_on_expire": True }, update=True, idmef = idmef) if ctx.getUpdateCount() == 0: ctx.Set("alert.classification.text", "Brute Force attack") ctx.Set("alert.correlation_alert.name", "Multiple failed login") ctx.Set("alert.assessment.impact.severity", "high") ctx.Set("alert.assessment.impact.description", "Multiple failed attempts have been made to login using different account") def _BruteUserForce(self, idmef): userid = idmef.Get("alert.target(*).user.user_id(*).name"); if not userid: return for user in userid: ctx = Context(("BRUTE USER", user), { "expire": 120, "threshold": 5, "alert_on_expire": True }, update=True, idmef=idmef) if ctx.getUpdateCount() == 0: ctx.Set("alert.classification.text", "Brute Force attack") ctx.Set("alert.correlation_alert.name", "Multiple failed login against a single account") ctx.Set("alert.assessment.impact.severity", "high") ctx.Set("alert.assessment.impact.description", "Multiple failed attempts have been made to login to a user account") def run(self, idmef): if not idmef.match("alert.classification.text", re.compile("[Ll]ogin|[Aa]uthentication")): return # FIXME: In the future, we might want to include successfull authentication # following a number of failed events, so that generated CorrelationAlert # includes full details. if idmef.Get("alert.assessment.impact.completion") == "succeeded": return self._BruteForce(idmef) self._BruteUserForce(idmef) prelude-correlator-1.0.0/PreludeCorrelator/plugins/opensshauth.py0000664000076400007640000000500611334273113024416 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Sebastien Tricaud # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. from PreludeCorrelator.pluginmanager import Plugin from PreludeCorrelator.context import Context def alert(ctx): if len(ctx.authtype) > 1: ctx.Set("alert.classification.text", "Multiple authentication methods") ctx.Set("alert.correlation_alert.name", "Multiple authentication methods") ctx.Set("alert.assessment.impact.severity", "medium") ctx.Set("alert.assessment.impact.description", "Multiple ways of authenticating a single user have been found over SSH. If passphrase is the only allowed method, make sure you disable passwords.") ctx.alert() ctx.destroy() class OpenSSHAuthPlugin(Plugin): def run(self, idmef): if idmef.Get("alert.analyzer(-1).manufacturer") != "OpenSSH": return if idmef.Get("alert.assessment.impact.completion") != "succeeded": return try: idx = idmef.Get("alert.additional_data(*).meaning").index("Authentication method") except: return data = idmef.Get("alert.additional_data(%d).data" % idx) for username in idmef.Get("alert.target(*).user.user_id(*).name"): for target in idmef.Get("alert.target(*).node.address(*).address"): ctx = Context(("SSHAUTH", target, username), { "expire": 30, "alert_on_expire": alert }, update=True) if ctx.getUpdateCount() == 0: ctx.authtype = { data: True } ctx.addAlertReference(idmef) elif not ctx.authtype.has_key(data): ctx.authtype[data] = True ctx.addAlertReference(idmef) prelude-correlator-1.0.0/PreludeCorrelator/plugins/dshield.py0000664000076400007640000001023211327325741023475 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # Author: Sebastien Tricaud # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import os, httplib, time from PreludeCorrelator import context from PreludeCorrelator import require from PreludeCorrelator.idmef import IDMEF from PreludeCorrelator.pluginmanager import Plugin class DshieldPlugin(Plugin): DSHIELD_RELOAD = 7 * 24 * 60 * 60 DSHIELD_SERVER = "www.dshield.org" DSHIELD_URI = "/ipsascii.html?limit=10000" DSHIELD_TIMEOUT = 10 DSHIELD_FILENAME = require.get_data_filename(__name__, "dshield.dat") def __ipNormalize(self, ip): return ".".join([ i.lstrip("0") for i in ip.split(".") ]) def __loadData(self, age=0): self.__iphash.clear() for line in open(self.__filename, "r"): if line[0] == '#': continue ip, reports, attacks, first_seen, last_seen = line.split('\t') self.__iphash[self.__ipNormalize(ip)] = (int(reports), int(attacks), first_seen, last_seen) if self.__reload > 0: context.Timer(self.__reload - age, self.__retrieveData).start() def __downloadData(self): self.info("Downloading host list, this might take some time...") try: con = httplib.HTTPConnection(self.__server, timeout=self.__timeout) except TypeError: con = httplib.HTTPConnection(self.__server) con.request("GET", self.__uri) r = con.getresponse() if r.status != 200: raise Exception, "Could not download DShield host list, error %d" % r.status fd = open(self.__filename, "w") fd.write(r.read()) fd.close() self.info("Downloading done, processing data.") def __retrieveData(self, timer=None): try: st = os.stat(self.__filename) if self.__reload <= 0 or time.time() - st.st_mtime < self.__reload: return self.__loadData(time.time() - st.st_mtime) except OSError: pass self.__downloadData() self.__loadData() def __init__(self, env): Plugin.__init__(self, env) self.__iphash = { } self.__reload = self.getConfigValue("reload", self.DSHIELD_RELOAD, type=int) self.__filename = self.getConfigValue("filename", self.DSHIELD_FILENAME) self.__server = self.getConfigValue("server", self.DSHIELD_SERVER) self.__uri = self.getConfigValue("uri", self.DSHIELD_URI) self.__timeout = self.getConfigValue("timeout", self.DSHIELD_TIMEOUT, type=float) self.__retrieveData() def run(self, idmef): for source in idmef.Get("alert.source(*).node.address(*).address"): entry = self.__iphash.get(source, None) if entry: ca = context.Context(("DSHIELD", source), { "expire": 300, "alert_on_expire": True }, update = True, idmef = idmef) if ca.getUpdateCount() == 0: ca.Set("alert.classification.text", "IP source matching Dshield database") ca.Set("alert.correlation_alert.name", "IP source matching Dshield database") ca.Set("alert.assessment.impact.description", "Dshield gathered this IP address from firewall drops logs (%s - reports: %d, attacks: %d, first/last seen: %s - %s)" % (source, entry[0], entry[1], entry[2], entry[3])) ca.Set("alert.assessment.impact.severity", "high") prelude-correlator-1.0.0/PreludeCorrelator/plugins/spamhausdrop.py0000664000076400007640000001051511327325741024573 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # Author: Wes Young # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import os, httplib, time from PreludeCorrelator import require from PreludeCorrelator.idmef import IDMEF from PreludeCorrelator.pluginmanager import Plugin from PreludeCorrelator.context import Context, Timer import netaddr if tuple(int(x) for x in netaddr.__version__.split(".")) >= (0, 7): from netaddr import IPAddress, IPNetwork, IPSet else: from netaddr import IP as IPAddress from netaddr import CIDR as IPNetwork class IPSet(list): def __contains__(self, y): for i in iter(self): if y in i: return True return False def add(self, obj): self.append(obj) class SpamhausDropPlugin(Plugin): RELOAD = 7 * 24 * 60 * 60 SERVER = "www.spamhaus.org" URI = "/drop/drop.lasso" TIMEOUT = 10 FILENAME = require.get_data_filename(__name__, "spamhaus_drop.dat") def __loadData(self, age=0): for line in open(self.__filename, "r"): if line[0] == ';': continue ip, sbl = line.split(';') ip = IPNetwork(ip.strip()) self.__mynets.add(ip) if self.__reload > 0: Timer(self.__reload - age, self.__retrieveData).start() def __downloadData(self): self.info("Downloading host list, this might take some time...") try: con = httplib.HTTPConnection(self.__server, timeout=self.__timeout) except TypeError: con = httplib.HTTPConnection(self.__server) con.request("GET", self.__uri) r = con.getresponse() if r.status != 200: raise Exception, "Could not download spamhaus DROP list, error %d" % r.status fd = open(self.__filename, "w") fd.write(r.read()) fd.close() self.info("Downloading done, processing data.") def __retrieveData(self, timer=None): try: st = os.stat(self.__filename) if self.__reload <= 0 or time.time() - st.st_mtime < self.__reload: return self.__loadData(time.time() - st.st_mtime) except OSError: pass self.__downloadData() self.__loadData() def __init__(self, env): Plugin.__init__(self, env) self.__mynets = IPSet() self.__reload = self.getConfigValue("reload", self.RELOAD, type=int) self.__filename = self.getConfigValue("filename", self.FILENAME) self.__server = self.getConfigValue("server", self.SERVER) self.__uri = self.getConfigValue("uri", self.URI) self.__timeout = self.getConfigValue("timeout", self.TIMEOUT, type=float) self.__retrieveData() def run(self, idmef): for source in idmef.Get("alert.source(*).node.address(*).address"): try: addr = IPAddress(source) except: continue if addr in self.__mynets: ca = Context(("SPAMHAUS", source), { "expire": 300, "alert_on_expire": True }, update = True, idmef = idmef) if ca.getUpdateCount() == 0: ca.Set("alert.classification.text", "IP source matching Spamhaus DROP dataset") ca.Set("alert.correlation_alert.name", "IP source matching Spamhaus DROP dataset") ca.Set("alert.assessment.impact.description", "Spamhaus gathered this IP address in their DROP list - %s" % (source)) ca.Set("alert.assessment.impact.severity", "medium") prelude-correlator-1.0.0/PreludeCorrelator/plugins/businesshour.py0000664000076400007640000000312511216457336024620 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import time from PreludeCorrelator.idmef import IDMEF from PreludeCorrelator.pluginmanager import Plugin # Alert only on saturday and sunday, and everyday from 6:00pm to 9:00am. class BusinessHourPlugin(Plugin): def run(self, idmef): t = time.localtime(int(idmef.Get("alert.create_time"))) if not (t.tm_wday == 5 or t.tm_wday == 6 or t.tm_hour < 9 or t.tm_hour > 17): return if idmef.Get("alert.assessment.impact.completion") != "succeeded": return ca = IDMEF() ca.addAlertReference(idmef) ca.Set("alert.classification", idmef.Get("alert.classification")) ca.Set("alert.correlation_alert.name", "Critical system activity on day off") ca.alert() prelude-correlator-1.0.0/PreludeCorrelator/plugins/__init__.py0000664000076400007640000000000011215412036023576 0ustar yoannyoannprelude-correlator-1.0.0/PreludeCorrelator/plugins/firewall.py0000664000076400007640000001043111327325741023667 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import re, time from PreludeCorrelator import context from PreludeCorrelator.pluginmanager import Plugin def _evict(ctx): now = time.time() for target, values in ctx._protected_hosts.items(): if now - values[0] > ctx._flush_protected_hosts: ctx._protected_hosts.pop(target) ctx.reset() def _alert(ctx): cnt = 0 fw = context.search("FIREWALL INFOS") for idmef in ctx.candidates: source = idmef.Get("alert.source(0).node.address(0).address") target = idmef.Get("alert.target(0).node.address(0).address") dport = str(idmef.Get("alert.target(0).service.port", 0)) if not fw._protected_hosts.has_key(target): continue if fw._protected_hosts[target][1].has_key(source + dport): continue cnt += 1 ctx.addAlertReference(idmef) if cnt > 0: ctx.Set("alert.classification.text", "Events hit target") ctx.Set("alert.assessment.impact.severity", "medium") ctx.Set("alert.assessment.impact.description", "The target are known to be protected by a Firewall device, but a set of event have not been dropped") ctx.Set("alert.correlation_alert.name", "No firewall block observed") ctx.alert() ctx.destroy() class FirewallPlugin(Plugin): def __init__(self, env): Plugin.__init__(self, env) self._flush_protected_hosts = self.getConfigValue("flush-protected-hosts", 3600, type=int) def run(self, idmef): source = idmef.Get("alert.source(0).node.address(0).address") scat = idmef.Get("alert.source(0).node.address(0).category") target = idmef.Get("alert.target(0).node.address(0).address") tcat = idmef.Get("alert.target(0).node.address(0).category") dport = idmef.Get("alert.target(0).service.port") if not source or not target or not dport: return if scat not in ("ipv4-addr", "ipv6-addr") or tcat not in ("ipv4-addr", "ipv6-addr"): return ctx = context.Context("FIREWALL INFOS", { "expire": self._flush_protected_hosts, "alert_on_expire": _evict }, update=True) if ctx.getUpdateCount() == 0: ctx._protected_hosts = {} ctx._flush_protected_hosts = self._flush_protected_hosts if idmef.match("alert.classification.text", re.compile("[Pp]acket [Dd]ropped|[Dd]enied")): if not ctx._protected_hosts.has_key(target): ctx._protected_hosts[target] = [0, {}] ctx._protected_hosts[target][0] = float(idmef.getTime()) ctx._protected_hosts[target][1][source + str(dport)] = True else: if not ctx._protected_hosts.has_key(target): return if time.time() - ctx._protected_hosts[target][0] > self._flush_protected_hosts: ctx._protected_hosts.pop(target) return; if ctx._protected_hosts[target][1].has_key(source + str(dport)): return ctx = context.Context(("FIREWALL", source), { "expire": 120, "alert_on_expire": _alert }, update=True) if ctx.getUpdateCount() == 0: ctx.candidates = [] ctx.candidates.append(idmef) prelude-correlator-1.0.0/PreludeCorrelator/plugins/worm.py0000664000076400007640000000575511327325741023063 0ustar yoannyoann# Copyright (C) 2006 G Ramon Gomez # Copyright (C) 2009 PreludeIDS Technologies # All Rights Reserved. # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. # This rule looks for events against a host, records the messageid, then sets # a timer of 600 seconds. If the host then replays the event against # other hosts multiple times, an event is generated. from PreludeCorrelator import context from PreludeCorrelator.pluginmanager import Plugin class WormPlugin(Plugin): REPEAT = 5 def __init__(self, env): Plugin.__init__(self, env) self.__repeat_target = self.getConfigValue("repeat-target", self.REPEAT, type=int) def run(self, idmef): ctxt = idmef.Get("alert.classification.text") if not ctxt: return # Create context for classification combined with all the target. tlist = {} for target in idmef.Get("alert.target(*).node.address(*).address"): ctx = context.Context(("WORM HOST", ctxt, target), { "expire": 300 }, overwrite=False, idmef=idmef) if ctx.getUpdateCount() == 0: ctx._target_list = {} tlist[target] = True for source in idmef.Get("alert.source(*).node.address(*).address"): # We are trying to see whether a previous target is now attacking other hosts # thus, we check whether a context exist with this classification combined to # this source. ctx = context.search(("WORM HOST", ctxt, source)) if not ctx: continue plen = len(ctx._target_list) ctx._target_list.update(tlist) nlen = len(ctx._target_list) if nlen > plen: ctx.update(idmef=idmef) if nlen >= self.__repeat_target: ctx.Set("alert.classification.text", "Possible Worm Activity") ctx.Set("alert.correlation_alert.name", "Source host is repeating actions taken against it recently") ctx.Set("alert.assessment.impact.severity", "high") ctx.Set("alert.assessment.impact.description", source + " has repeated actions taken against it recently at least 5 times. It may have been infected with a worm.") ctx.alert() ctx.destroy() prelude-correlator-1.0.0/PreludeCorrelator/plugins/dshield.dat0000664000076400007640000163027711347714243023640 0ustar yoannyoann# ipsascii.html # DO NOT USE AS BLOCKLIST # you may obtain longer/shorter lists by adding '?limit=1234' to the URL # "1234" is the number of IPs returned. You can specify a number between 10 # and 10,000. # created: Tue, 16 Mar 2010 14:40:32 +0000 # Date in GMT. YYYY-MM-DD format. 218.244.231.132 156499 92897 2009-09-28 2010-03-16 060.173.011.114 1134493 90051 2010-02-03 2010-03-04 218.008.251.187 112283 88955 2009-10-02 2010-03-12 117.020.016.092 90520 87907 2009-11-12 2010-02-26 072.055.133.091 89762 86945 2010-02-17 2010-03-05 116.228.179.019 191113 86864 2009-10-25 2010-03-15 072.055.133.247 88412 86652 2009-12-12 2010-02-19 202.117.054.134 172329 86183 2010-02-09 2010-03-14 069.176.047.029 86063 84535 2010-02-04 2010-02-17 218.056.061.114 94911 83864 2010-01-18 2010-03-15 193.203.216.026 85005 83594 2010-02-19 2010-02-22 159.226.113.146 83354 82873 2010-02-21 2010-02-24 094.102.211.087 130383 81596 2010-01-30 2010-03-13 077.245.144.088 82691 81581 2010-03-12 2010-03-13 122.228.198.073 151431 81571 2010-02-02 2010-02-28 082.149.246.008 97554 81548 2010-02-08 2010-03-03 211.239.155.120 146717 80494 2010-01-19 2010-03-12 219.235.084.176 144532 80211 2010-02-11 2010-03-15 081.088.222.085 159792 80121 2009-12-16 2010-03-12 060.190.049.243 339607 79465 2009-10-13 2010-03-14 079.120.192.190 80392 79371 2010-03-06 2010-03-13 213.131.227.032 79036 79032 2010-02-09 2010-02-15 081.223.126.240 79221 78823 2009-12-31 2010-03-11 218.200.142.144 78982 78707 2010-03-01 2010-03-03 219.149.053.239 604592 78439 2009-10-28 2010-03-12 061.139.175.030 200957 78100 2010-01-21 2010-02-14 061.175.243.101 243812 77090 2010-03-04 2010-03-16 125.216.008.233 81550 77026 2010-03-09 2010-03-15 060.164.231.180 171551 76636 2010-03-06 2010-03-16 222.086.062.237 412574 76596 2010-02-24 2010-03-16 192.150.075.086 78733 76069 2010-02-13 2010-03-01 060.173.011.020 1545590 75717 2009-11-14 2010-03-16 222.035.136.097 129187 75474 2010-02-08 2010-03-14 222.234.002.031 115724 75299 2010-02-04 2010-02-26 222.045.112.221 260892 75204 2009-11-05 2010-03-16 122.225.100.154 844715 75184 2009-09-07 2010-03-16 058.213.123.141 140404 75048 2010-01-20 2010-03-12 082.220.002.025 74596 74572 2010-02-20 2010-02-20 060.190.049.245 143431 73069 2009-12-01 2010-02-20 218.030.022.082 507039 72820 2009-08-14 2010-03-16 218.061.126.021 218806 72442 2010-01-21 2010-02-25 058.221.042.182 150784 72087 2010-02-04 2010-03-16 061.164.150.159 150778 71728 2010-01-08 2010-03-16 121.010.118.020 163452 71522 2010-02-01 2010-03-11 061.146.138.026 113817 71230 2010-02-10 2010-03-03 131.193.092.220 113884 71154 2010-02-22 2010-02-22 061.160.234.005 250000 70984 2010-02-02 2010-02-22 084.001.042.029 70703 70411 2010-02-02 2010-03-01 094.136.053.222 133113 70231 2010-03-02 2010-03-04 222.073.029.223 79636 70208 2010-01-20 2010-03-04 118.123.007.135 287619 69979 2010-02-28 2010-03-15 066.232.120.014 73994 69922 2010-03-09 2010-03-15 125.065.112.162 1097455 69681 2010-02-03 2010-02-24 222.149.120.095 110511 69652 2010-03-08 2010-03-15 058.221.172.085 140818 69594 2010-02-18 2010-03-01 202.101.208.074 69722 69472 2010-02-01 2010-03-02 123.030.110.121 72328 69389 2010-03-02 2010-03-15 060.173.011.012 72964 69085 2009-11-07 2010-03-15 060.214.209.131 120544 68923 2010-03-03 2010-03-05 218.204.126.210 175737 68457 2010-03-16 2010-03-16 218.061.013.091 169519 68239 2010-02-18 2010-03-13 084.051.023.146 73367 68110 2010-02-04 2010-03-16 124.237.121.075 68662 68019 2010-01-30 2010-02-14 094.031.241.184 103207 68006 2010-01-28 2010-02-24 211.157.108.232 168309 67989 2010-01-16 2010-03-07 218.061.022.021 69380 67977 2010-02-21 2010-03-11 222.037.037.033 325166 67837 2009-10-11 2010-03-16 061.235.046.146 151890 67681 2010-01-18 2010-03-16 061.155.170.015 167348 67616 2010-01-25 2010-02-24 202.202.043.018 132919 67462 2010-01-22 2010-02-17 118.097.070.196 118142 67261 2010-02-17 2010-03-05 061.133.063.222 130411 66881 2010-02-03 2010-02-15 066.017.143.002 397887 66739 2010-01-30 2010-02-25 202.106.015.210 132897 66569 2009-12-21 2010-03-10 218.075.008.122 131297 66526 2010-02-28 2010-03-03 222.035.137.182 162473 66415 2010-02-16 2010-02-26 125.244.054.187 130298 66270 2010-02-12 2010-03-08 216.236.176.007 157463 66220 2010-02-02 2010-03-13 208.112.113.212 131967 66184 2010-02-06 2010-03-01 155.212.090.091 131435 66096 2010-02-13 2010-03-04 080.246.050.062 66228 66086 2010-02-07 2010-03-08 146.145.203.069 131798 66010 2010-02-23 2010-03-11 217.020.171.132 131486 65978 2009-08-09 2010-02-19 058.177.209.216 69301 65874 2010-01-02 2010-02-22 067.228.093.187 65922 65837 2010-02-22 2010-03-02 216.117.136.094 131077 65657 2010-02-08 2010-03-10 093.116.098.007 128785 65555 2010-03-03 2010-03-14 092.048.067.019 119542 65405 2010-02-23 2010-03-13 202.103.220.101 710431 65373 2009-10-10 2010-03-12 083.167.113.147 447564 64653 2010-02-21 2010-03-07 078.187.158.139 433946 64591 2009-10-06 2010-03-10 069.162.089.084 129084 64544 2010-02-16 2010-02-17 078.186.014.063 1114768 64528 2010-02-15 2010-03-02 218.006.013.039 110222 64355 2010-01-30 2010-02-21 070.061.234.123 237328 63942 2010-01-27 2010-02-15 085.185.148.034 485556 63925 2009-12-05 2010-03-08 098.126.183.034 63988 63795 2010-02-24 2010-02-24 089.248.160.060 64039 63562 2010-02-09 2010-03-16 118.047.050.088 63609 63454 2010-03-01 2010-03-07 119.145.149.038 67718 62789 2010-03-07 2010-03-16 061.132.132.162 87994 62618 2009-09-03 2010-03-16 204.014.241.217 99241 62385 2010-02-25 2010-03-01 210.118.080.041 120232 62303 2010-02-18 2010-03-09 202.155.212.227 65893 61495 2010-03-08 2010-03-15 222.045.112.219 161751 61000 2009-11-07 2010-02-26 061.174.021.202 61686 60606 2010-02-26 2010-03-13 210.197.155.089 60193 60149 2010-03-08 2010-03-12 061.191.188.156 93932 60080 2010-03-09 2010-03-16 222.255.029.017 81685 59850 2010-02-22 2010-03-01 060.029.105.133 66982 59716 2010-02-07 2010-02-14 061.019.255.052 60972 59463 2010-03-01 2010-03-05 221.000.095.141 59100 58909 2010-02-28 2010-03-02 085.017.162.037 139975 58855 2009-08-06 2010-03-13 222.179.005.106 83601 58837 2010-01-05 2010-03-16 058.216.216.002 59237 58647 2010-02-13 2010-02-19 210.051.020.035 58701 58472 2010-02-02 2010-03-01 121.145.120.165 88716 58411 2009-12-24 2010-03-16 095.173.180.212 143261 58233 2010-03-07 2010-03-15 125.211.217.135 58263 58076 2009-12-02 2010-03-14 121.014.145.168 135109 58051 2010-01-24 2010-02-23 124.192.056.201 64538 57758 2010-02-20 2010-02-25 210.048.155.013 57553 57530 2010-03-02 2010-03-04 220.180.181.002 265989 57175 2010-03-04 2010-03-16 222.173.147.028 85563 56938 2009-09-25 2010-03-15 222.186.024.037 428342 56693 2010-02-22 2010-03-16 119.036.158.241 57808 56371 2010-02-11 2010-03-03 058.057.017.194 76680 55823 2009-02-04 2010-03-16 192.239.086.210 55781 55532 2010-02-17 2010-02-23 122.224.018.115 56071 55454 2010-03-14 2010-03-16 124.173.184.018 76961 55132 2009-04-08 2010-03-16 216.075.017.231 180365 54996 2010-01-22 2010-02-15 061.129.251.007 80612 54993 2009-12-18 2010-03-16 095.130.172.190 120875 54687 2010-03-08 2010-03-08 219.153.008.089 54939 54592 2010-02-22 2010-02-28 218.075.061.030 67573 53872 2007-10-08 2010-03-16 092.240.068.152 129025 53524 2010-01-06 2010-03-16 092.240.068.153 128348 53279 2010-01-05 2010-03-16 218.200.239.249 93161 53094 2009-12-24 2010-02-20 060.191.131.138 74153 53033 2010-01-26 2010-03-16 211.095.072.114 53244 52653 2010-03-08 2010-03-15 202.136.214.004 107249 51933 2010-02-23 2010-03-09 118.123.242.008 57567 51750 2010-01-05 2010-02-24 066.213.226.092 176929 51734 2010-02-19 2010-03-16 113.140.011.082 51344 51096 2010-03-05 2010-03-07 058.251.138.038 87961 50837 2010-03-04 2010-03-14 123.232.043.068 71681 50746 2010-02-04 2010-03-15 082.205.120.105 106858 50330 2010-03-14 2010-03-16 123.196.117.099 59962 49365 2009-12-21 2010-03-02 058.218.199.226 61487 49287 2010-02-16 2010-02-24 159.226.113.017 49221 49069 2010-02-22 2010-02-24 121.010.117.130 49228 48911 2010-02-01 2010-02-20 121.009.209.118 57825 48584 2010-03-05 2010-03-10 218.095.207.018 48466 48274 2010-02-20 2010-02-25 203.082.039.006 152079 47894 2010-02-17 2010-03-10 222.215.230.167 48018 47589 2010-02-28 2010-02-28 121.011.080.206 57271 47475 2009-10-08 2010-02-24 121.028.090.036 50661 47452 2010-01-19 2010-03-05 121.034.248.001 64620 47084 2010-01-13 2010-02-25 137.164.231.197 46301 46084 2010-01-18 2010-03-13 113.106.108.038 68345 45815 2010-01-18 2010-02-21 089.211.049.005 47315 45786 2010-02-17 2010-02-25 091.214.045.066 65404 45720 2010-03-11 2010-03-16 119.145.069.011 46015 45688 2010-03-12 2010-03-16 121.011.086.058 61383 45536 2010-01-14 2010-03-15 218.244.254.161 47825 45393 2010-02-14 2010-02-21 218.240.045.217 60450 45035 2010-02-13 2010-02-22 059.051.024.244 69022 43936 2009-12-01 2010-03-14 125.046.083.012 44029 43355 2010-01-29 2010-03-07 220.225.086.118 54493 43250 2010-02-17 2010-03-06 211.147.247.077 55319 42095 2010-01-30 2010-03-15 122.227.043.229 58607 42032 2010-03-07 2010-03-14 218.061.013.137 58385 41093 2010-01-31 2010-02-25 060.173.026.149 40633 40083 2010-03-11 2010-03-12 061.237.159.025 78475 40068 2009-12-29 2010-03-16 221.165.162.004 41270 39832 2010-02-15 2010-03-07 180.064.237.118 60913 39635 2010-01-25 2010-02-18 061.158.162.067 44949 39173 2010-02-08 2010-02-23 058.240.227.019 45805 38878 2010-03-02 2010-03-14 072.232.232.130 38891 38819 2010-02-20 2010-02-23 221.130.140.018 51105 38154 2009-12-06 2010-03-15 222.186.025.143 42052 37605 2010-02-26 2010-03-16 085.017.159.022 38463 37229 2010-02-21 2010-03-01 114.080.094.175 37356 37083 2010-01-29 2010-02-22 059.034.197.131 36630 36470 2010-02-23 2010-02-23 218.022.226.134 36976 36332 2010-01-31 2010-03-01 202.165.177.135 36758 35724 2010-03-05 2010-03-12 012.077.134.069 51995 35075 2010-02-24 2010-03-04 220.133.136.182 45727 34815 2010-02-10 2010-03-11 120.199.121.003 78799 34172 2010-03-10 2010-03-12 202.108.254.228 86958 33806 2010-02-24 2010-03-16 084.234.224.188 98465 32800 2010-02-21 2010-03-16 222.090.232.118 39543 32697 2010-02-19 2010-03-16 202.165.177.203 36012 31862 2010-02-13 2010-03-03 221.192.199.035 462045 31668 2010-01-05 2010-03-16 217.156.110.034 32953 31318 2010-02-21 2010-02-22 218.078.217.088 51509 31248 2009-11-09 2010-03-14 221.007.040.047 34184 31098 2010-01-20 2010-03-08 203.086.063.209 30765 30765 2010-03-10 2010-03-12 041.203.014.012 53417 30510 2009-12-04 2010-03-01 074.208.047.057 39532 30433 2010-03-02 2010-03-15 114.112.189.238 36768 30362 2010-02-24 2010-03-01 122.049.118.156 67611 29826 2010-01-29 2010-03-03 122.224.190.198 29997 29764 2010-02-25 2010-02-25 091.215.069.029 35930 29721 2010-01-05 2010-02-23 114.251.148.164 29733 29644 2010-02-12 2010-02-24 116.242.177.007 40510 29639 2010-02-25 2010-03-02 063.221.138.066 29481 29281 2010-02-11 2010-02-16 218.022.067.123 33950 29003 2010-01-04 2010-03-11 121.058.248.014 29597 28901 2010-03-03 2010-03-03 095.224.036.145 36592 28874 2010-01-22 2010-02-16 062.218.124.001 38095 28773 2010-03-03 2010-03-10 061.176.216.041 28805 28686 2010-02-20 2010-02-24 219.154.094.040 28801 28639 2010-03-11 2010-03-12 221.181.239.176 30012 28193 2010-02-25 2010-03-16 061.191.056.031 28376 28077 2010-03-04 2010-03-10 202.098.255.012 37576 28035 2010-02-10 2010-02-23 222.209.200.053 28029 27717 2010-02-14 2010-02-19 222.087.129.075 28234 27685 2010-01-09 2010-02-27 208.101.013.212 27328 27184 2010-02-27 2010-03-11 218.004.058.082 71294 26892 2010-01-22 2010-03-16 217.133.061.012 34425 26731 2010-01-26 2010-03-13 077.245.144.228 74666 26433 2009-05-28 2010-03-10 074.009.000.229 37296 26400 2010-02-24 2010-03-16 193.009.030.006 28105 26166 2010-01-25 2010-02-17 131.162.169.007 28511 26092 2010-01-28 2010-03-11 121.010.107.022 26149 25791 2010-02-11 2010-02-24 119.062.128.113 31006 25728 2009-11-26 2010-03-16 190.145.006.010 30222 25728 2010-02-11 2010-03-11 072.232.167.118 28570 25263 2010-03-02 2010-03-15 119.062.128.115 29985 24979 2009-11-26 2010-03-16 061.139.033.207 25387 24932 2010-02-02 2010-02-19 012.068.136.233 91555 24301 2009-11-26 2010-02-20 219.148.111.226 24425 24268 2010-02-22 2010-02-26 219.153.062.089 26472 24196 2010-02-26 2010-03-02 217.199.183.139 85913 24134 2010-01-17 2010-03-04 061.007.241.045 24992 23955 2010-02-12 2010-02-20 213.088.203.077 49460 23847 2010-03-10 2010-03-11 062.193.237.033 24259 23623 2010-01-30 2010-02-28 060.191.012.124 27695 23329 2009-12-19 2010-03-16 116.212.112.056 25249 23206 2010-02-21 2010-03-05 061.143.134.048 276668 23162 2010-02-04 2010-03-13 147.102.191.131 23685 23148 2010-01-31 2010-02-20 088.247.059.188 55103 22868 2009-11-24 2010-03-06 213.175.202.010 29056 22822 2010-02-21 2010-03-03 059.144.092.109 27937 22726 2009-07-19 2010-03-14 202.106.212.231 26718 22631 2009-11-04 2010-02-28 061.178.141.202 22630 22535 2010-03-08 2010-03-13 069.011.102.210 74715 22048 2008-12-17 2010-03-15 213.027.229.085 35461 21853 2010-01-27 2010-03-15 070.033.208.009 36523 21756 2010-02-16 2010-03-08 219.148.111.245 22407 21749 2010-02-19 2010-02-26 060.191.098.005 25469 21666 2009-11-25 2010-03-12 059.051.114.039 129417 21485 2009-11-01 2010-03-12 061.138.102.130 21291 21043 2010-03-12 2010-03-16 061.129.014.020 58480 20971 2010-02-10 2010-03-15 060.173.026.206 21533 20937 2010-03-04 2010-03-08 094.076.227.195 20646 20623 2010-03-05 2010-03-10 078.138.151.126 21650 20516 2010-03-08 2010-03-13 083.233.118.024 60761 20459 2010-02-14 2010-03-05 218.058.228.076 24020 20273 2010-02-18 2010-03-09 085.119.217.098 26147 20188 2010-01-27 2010-02-27 061.172.200.198 23658 20136 2009-10-31 2010-02-22 024.047.125.095 20496 20041 2010-01-28 2010-03-11 038.229.000.072 23514 19987 2009-10-15 2010-03-16 202.043.183.056 19713 19646 2010-03-02 2010-03-05 125.089.067.134 20625 19537 2010-02-12 2010-03-02 121.014.213.197 19555 19518 2010-03-16 2010-03-16 212.175.005.164 19070 19006 2010-02-13 2010-03-09 202.108.077.139 20553 18959 2010-01-23 2010-03-10 195.064.178.023 47957 18805 2008-07-18 2010-03-10 218.239.228.007 22931 18781 2010-03-03 2010-03-14 074.208.078.158 20762 18742 2010-03-01 2010-03-02 092.045.045.006 21720 18727 2010-01-04 2010-03-09 134.099.012.102 21207 18625 2010-02-02 2010-03-09 222.133.182.194 117887 18611 2009-05-17 2010-03-15 087.106.250.206 18370 18354 2010-03-04 2010-03-04 085.233.172.001 20622 18232 2010-03-02 2010-03-08 060.010.186.014 18083 17590 2010-01-31 2010-02-17 190.072.042.229 46401 17528 2010-02-05 2010-03-16 125.077.116.153 17842 17442 2010-02-16 2010-03-07 061.240.240.050 17530 17341 2009-06-23 2010-03-16 202.112.035.219 18456 17202 2010-02-28 2010-03-02 095.173.168.010 18593 16670 2010-01-31 2010-03-07 140.120.090.131 16744 16589 2010-02-12 2010-02-18 219.146.155.091 16569 16546 2010-02-26 2010-03-01 128.196.124.010 17084 16492 2010-03-02 2010-03-02 117.114.000.061 16293 16245 2010-02-18 2010-02-26 174.129.122.100 16643 16215 2010-02-20 2010-02-22 125.230.070.174 80902 16107 2010-03-03 2010-03-06 210.001.061.040 15940 15931 2010-03-09 2010-03-09 218.057.137.135 15872 15830 2010-02-24 2010-03-01 209.220.109.085 17798 15705 2010-01-12 2010-03-04 212.063.130.218 18370 15693 2010-02-25 2010-02-28 085.185.157.031 19399 15663 2009-07-26 2010-03-14 201.147.189.115 15994 15646 2010-02-11 2010-03-07 221.007.160.230 16636 15636 2010-03-15 2010-03-15 085.072.047.050 15832 15609 2010-02-09 2010-03-04 210.075.208.247 17674 15237 2010-02-17 2010-03-06 061.191.188.169 24516 15069 2009-09-09 2010-03-15 217.195.204.234 51060 15043 2010-03-10 2010-03-15 202.106.063.120 16927 14961 2010-03-02 2010-03-15 109.122.192.021 30725 14902 2009-12-02 2010-03-16 091.191.029.230 16619 14612 2010-02-05 2010-03-01 125.230.070.032 69957 14296 2010-02-18 2010-03-02 125.230.074.053 68982 14199 2010-02-15 2010-02-18 125.230.073.230 69076 14071 2010-03-06 2010-03-09 125.230.068.197 68190 14043 2010-02-12 2010-02-15 125.230.084.126 68620 14002 2010-02-24 2010-02-27 159.226.170.061 14155 13999 2010-03-05 2010-03-08 066.079.180.084 24709 13892 2010-01-24 2010-03-02 061.156.031.020 38337 13851 2009-08-03 2010-03-16 221.233.134.042 14783 13731 2010-03-03 2010-03-11 091.203.141.193 15974 13684 2010-03-04 2010-03-07 114.032.154.113 32110 13584 2009-11-20 2010-03-14 116.055.227.213 15422 13364 2010-03-04 2010-03-05 122.169.251.066 15308 13273 2009-11-26 2010-03-16 202.053.012.228 323896 13178 2010-01-29 2010-03-01 218.019.218.094 18657 13152 2010-02-23 2010-02-26 208.116.061.018 14507 13125 2010-02-18 2010-03-01 188.092.077.116 13867 13114 2010-02-12 2010-03-16 094.142.130.061 13813 13096 2010-02-12 2010-03-16 109.104.067.114 25800 13075 2010-01-18 2010-03-16 211.154.135.052 13639 13072 2010-02-17 2010-03-07 219.149.053.238 13751 13071 2010-03-03 2010-03-13 203.110.240.114 13391 13017 2010-02-19 2010-02-22 118.129.166.012 13992 12939 2010-02-14 2010-02-27 202.044.102.008 13155 12880 2010-02-24 2010-02-26 091.209.198.129 14320 12870 2010-02-16 2010-02-27 098.223.147.115 14054 12857 2010-02-23 2010-03-11 151.100.054.056 14035 12703 2010-02-20 2010-03-14 094.075.240.130 62589 12651 2010-02-02 2010-03-14 094.102.008.112 16623 12635 2010-02-07 2010-03-11 211.154.128.028 13420 12616 2010-03-04 2010-03-14 157.158.077.120 17288 12596 2010-02-20 2010-02-26 125.230.064.072 59408 12550 2010-03-09 2010-03-12 062.129.185.041 13849 12486 2010-02-18 2010-02-28 089.108.089.054 13683 12484 2010-01-02 2010-02-26 218.234.023.147 12682 12455 2010-03-11 2010-03-13 095.088.204.058 13796 12383 2009-12-30 2010-02-28 115.186.066.061 13698 12366 2010-02-25 2010-02-26 209.160.040.006 18743 12169 2010-03-01 2010-03-12 076.014.060.199 13608 12165 2010-02-25 2010-02-26 061.166.144.209 12701 12035 2010-02-22 2010-03-01 085.068.199.166 13574 11962 2010-02-17 2010-02-28 058.215.075.062 69406 11917 2010-01-09 2010-03-16 125.230.075.166 57022 11866 2010-02-21 2010-02-24 116.009.095.001 144903 11865 2009-11-18 2010-03-15 080.083.042.076 11989 11828 2010-02-20 2010-03-11 061.236.138.020 28005 11821 2010-02-26 2010-03-16 091.093.122.083 12396 11711 2010-01-07 2010-03-11 091.121.029.079 32095 11703 2010-02-13 2010-03-15 058.017.030.048 12352 11647 2010-02-03 2010-02-25 125.230.065.053 55304 11617 2010-03-12 2010-03-15 122.155.005.192 14713 11549 2010-03-03 2010-03-11 218.061.000.039 17362 11542 2010-01-07 2010-03-08 116.055.226.131 12410 11474 2009-11-05 2010-02-21 112.216.083.178 28880 11465 2009-11-05 2010-02-17 095.173.180.095 11577 11384 2010-02-20 2010-02-21 078.108.248.084 26274 11375 2010-02-17 2010-02-27 210.017.183.083 11419 11368 2010-03-05 2010-03-09 067.019.250.146 38732 11332 2010-03-07 2010-03-16 212.102.013.042 12894 11230 2010-01-30 2010-02-27 125.210.253.164 12927 11226 2010-02-03 2010-03-15 124.012.010.135 11260 11224 2010-03-13 2010-03-15 088.191.082.182 33563 11207 2010-01-30 2010-03-02 062.039.109.024 33327 11118 2010-01-23 2010-03-08 211.157.101.053 11243 11109 2010-02-26 2010-03-06 193.239.017.071 12907 11051 2010-02-19 2010-02-22 150.145.087.135 11516 11022 2010-03-14 2010-03-14 180.068.206.031 17061 10952 2010-02-04 2010-03-14 201.226.251.134 19161 10923 2010-01-18 2010-02-19 112.216.057.254 13548 10898 2010-03-03 2010-03-14 118.167.005.040 10953 10847 2010-02-18 2010-02-21 059.108.230.130 15176 10787 2009-12-23 2010-03-16 193.034.148.147 10813 10769 2010-03-11 2010-03-12 220.162.207.062 42651 10691 2009-04-24 2010-03-16 118.167.032.161 10675 10671 2010-02-18 2010-02-18 058.216.152.134 11480 10671 2010-01-25 2010-03-02 222.124.130.164 13136 10618 2010-03-04 2010-03-09 124.237.121.052 80294 10601 2009-09-04 2010-03-16 064.086.059.001 14667 10587 2010-02-12 2010-03-09 195.189.218.121 18975 10481 2010-02-04 2010-03-04 218.201.144.133 11240 10470 2010-02-24 2010-03-03 220.162.241.011 11905 10356 2009-10-30 2010-02-28 116.236.180.002 10968 10331 2010-02-05 2010-03-14 221.122.076.173 10935 10228 2010-01-19 2010-03-12 219.147.252.036 26449 9986 2009-11-21 2010-03-15 081.230.171.241 11593 9918 2010-02-15 2010-02-17 218.106.096.230 20102 9824 2010-01-15 2010-02-21 041.221.028.175 10679 9781 2010-02-05 2010-03-11 122.224.095.229 11390 9775 2010-01-14 2010-02-26 058.054.253.242 19141 9728 2009-12-21 2010-03-16 222.189.215.218 13453 9726 2010-02-13 2010-02-21 150.145.087.211 11377 9598 2010-03-14 2010-03-15 188.072.225.219 9881 9587 2010-03-06 2010-03-07 211.206.122.138 18087 9587 2010-03-09 2010-03-16 218.003.088.114 14634 9568 2010-01-27 2010-02-21 118.129.153.043 17519 9510 2010-01-20 2010-02-18 090.177.074.244 10277 9499 2010-02-21 2010-03-06 060.191.254.026 61273 9495 2010-02-08 2010-03-15 058.211.078.008 52070 9461 2010-02-23 2010-03-07 079.143.176.060 9883 9440 2010-02-15 2010-02-18 060.173.011.008 118314 9437 2009-12-31 2010-02-24 099.224.029.071 9431 9431 2010-02-26 2010-02-27 112.078.013.133 13117 9416 2010-03-01 2010-03-08 173.028.089.183 9898 9262 2010-01-03 2010-03-03 213.023.171.037 10348 9259 2007-01-26 2010-03-16 111.068.002.186 9305 9256 2010-03-04 2010-03-04 218.073.094.050 41376 9239 2010-01-28 2010-03-16 211.234.119.131 18628 9232 2009-10-21 2010-03-13 210.075.199.131 14398 9211 2010-02-19 2010-03-01 190.055.018.138 19973 9203 2010-02-16 2010-02-25 222.035.094.154 9402 9172 2010-01-25 2010-02-24 078.153.241.116 35208 9137 2010-01-15 2010-03-08 088.250.060.204 16156 9133 2010-01-26 2010-02-22 072.067.012.182 17921 9131 2010-02-04 2010-03-13 061.164.151.131 62988 9117 2010-01-28 2010-03-16 121.028.095.161 8982 8982 2010-03-02 2010-03-12 201.040.133.103 9981 8869 2010-02-25 2010-03-09 061.134.126.154 29016 8788 2010-03-08 2010-03-16 063.028.086.254 9456 8788 2010-02-25 2010-02-26 061.164.078.222 9540 8701 2010-01-19 2010-02-19 060.217.065.115 105000 8682 2010-02-16 2010-03-16 062.204.132.194 13615 8571 2010-02-26 2010-03-15 189.011.062.116 14812 8377 2009-12-09 2010-03-16 093.186.118.142 56649 8366 2009-11-15 2010-03-16 210.051.052.151 36304 8320 2010-01-22 2010-02-25 211.241.226.052 8306 8279 2010-03-13 2010-03-15 080.082.220.193 10049 8273 2010-01-26 2010-03-06 060.173.010.154 64573 8267 2009-06-04 2010-02-26 211.171.255.125 13558 8226 2010-02-09 2010-02-23 061.047.061.117 8430 8145 2009-10-27 2010-03-11 116.242.152.004 8768 8144 2010-02-14 2010-02-26 121.246.086.018 23599 8118 2010-01-19 2010-03-02 061.163.075.059 48440 8107 2010-02-09 2010-03-16 218.003.204.139 13854 8069 2008-12-02 2010-03-14 024.098.109.144 8440 8055 2009-05-02 2010-03-16 085.157.128.119 19301 8042 2009-11-18 2010-02-19 064.202.098.103 10958 7962 2010-02-02 2010-02-27 058.221.211.219 8191 7917 2009-11-09 2010-02-28 125.141.237.100 16084 7915 2009-11-21 2010-02-14 124.011.145.195 7949 7904 2010-03-01 2010-03-03 218.028.238.245 19611 7879 2009-12-23 2010-02-23 189.030.150.065 10237 7809 2009-05-14 2010-03-08 205.209.161.210 14393 7775 2010-02-08 2010-03-16 115.089.024.180 381123 7653 2010-02-11 2010-03-16 211.157.105.114 9808 7637 2010-02-03 2010-02-27 218.095.039.094 81190 7602 2010-02-01 2010-02-24 061.187.170.192 20079 7552 2010-03-02 2010-03-16 067.205.102.239 12085 7551 2010-01-02 2010-03-08 075.125.184.114 13813 7542 2010-03-11 2010-03-16 204.011.025.080 8713 7465 2009-12-16 2010-03-13 220.130.149.016 8369 7342 2010-01-28 2010-02-15 119.147.095.003 7714 7235 2010-02-20 2010-02-23 116.114.018.131 29076 7206 2010-02-17 2010-03-13 066.212.028.029 9329 7199 2010-03-02 2010-03-06 122.169.247.246 7710 7184 2010-02-05 2010-03-14 218.024.093.094 11329 7175 2010-01-22 2010-03-01 150.161.067.217 7550 7158 2010-02-07 2010-03-01 217.195.026.014 26006 7153 2010-02-26 2010-03-09 217.024.240.068 12123 7070 2009-11-26 2010-03-15 200.044.191.030 7702 6995 2010-01-16 2010-03-15 121.254.170.101 9138 6981 2009-11-11 2010-03-15 160.075.015.002 7269 6970 2010-02-06 2010-02-14 115.126.002.117 7323 6946 2010-02-25 2010-02-26 082.199.071.006 7246 6938 2010-03-09 2010-03-12 092.253.032.037 7259 6902 2010-02-25 2010-02-26 064.073.076.059 13108 6887 2010-02-12 2010-02-22 089.107.224.082 8247 6821 2010-03-01 2010-03-01 087.224.201.150 8135 6755 2010-02-09 2010-02-26 174.036.196.222 9264 6752 2010-02-03 2010-02-19 110.188.000.120 20348 6715 2010-01-26 2010-02-26 088.191.052.131 24988 6704 2010-01-19 2010-02-15 211.143.077.133 6994 6692 2010-02-13 2010-03-05 213.143.229.025 7268 6627 2009-10-17 2010-03-16 218.200.212.057 6729 6623 2010-02-23 2010-02-25 059.051.009.079 14048 6618 2010-02-25 2010-03-10 211.092.149.147 16886 6607 2009-11-26 2010-03-05 074.208.112.203 21999 6593 2010-01-27 2010-02-22 219.238.046.170 10217 6555 2010-02-03 2010-03-15 202.159.220.214 9909 6525 2010-02-13 2010-03-06 213.080.073.045 8915 6505 2010-03-07 2010-03-09 218.066.104.146 13241 6459 2010-02-18 2010-03-16 081.120.254.154 10570 6458 2010-02-04 2010-03-10 202.038.126.022 9012 6415 2010-02-10 2010-02-27 217.028.150.238 11432 6397 2010-02-22 2010-03-04 193.226.006.007 13378 6379 2010-02-26 2010-03-14 058.221.252.230 13532 6328 2007-11-08 2010-03-14 061.155.154.237 6862 6318 2010-01-24 2010-02-17 061.176.216.044 46814 6317 2010-02-25 2010-03-16 209.160.040.061 11840 6278 2010-02-25 2010-03-06 221.195.073.086 486416 6263 2010-01-19 2010-03-16 122.011.054.207 6835 6263 2010-03-01 2010-03-03 122.051.128.025 11561 6209 2009-11-22 2010-03-11 071.224.179.056 6507 6189 2010-02-05 2010-03-09 059.120.008.093 6518 6170 2010-02-08 2010-03-16 110.045.147.189 9764 6165 2010-01-04 2010-02-19 221.194.044.041 21223 6153 2009-12-23 2010-02-16 121.131.028.009 12996 6145 2010-01-31 2010-02-19 123.138.018.078 6393 6135 2010-03-15 2010-03-15 082.160.049.056 6464 6131 2010-03-08 2010-03-08 060.249.094.030 19379 6125 2010-02-20 2010-03-16 218.061.010.171 6645 6114 2010-02-12 2010-03-02 066.240.231.154 9826 6099 2010-02-06 2010-02-22 211.103.139.197 8561 6091 2010-02-20 2010-03-09 061.008.068.109 7187 6087 2010-02-13 2010-02-15 061.142.248.019 10137 6006 2010-02-01 2010-02-24 221.130.140.116 6291 5993 2009-12-31 2010-03-15 089.238.137.227 12239 5981 2010-01-26 2010-02-14 211.142.185.206 7379 5966 2010-02-24 2010-03-09 122.004.066.093 6549 5962 2010-02-12 2010-03-01 058.215.065.118 14949 5957 2010-01-24 2010-02-18 210.017.020.102 6222 5947 2010-02-25 2010-03-02 222.124.195.002 13093 5938 2009-12-28 2010-03-13 094.101.082.022 20378 5930 2010-02-26 2010-02-27 213.190.050.150 10485 5925 2009-12-20 2010-03-15 061.183.015.009 111196 5881 2010-01-04 2010-03-16 174.139.080.186 9465 5877 2010-02-08 2010-03-04 222.068.194.069 22296 5813 2010-01-23 2010-03-15 200.105.228.211 6120 5784 2010-02-17 2010-02-17 217.097.185.035 9945 5768 2010-02-06 2010-02-22 222.211.078.020 11315 5752 2010-02-05 2010-02-14 174.129.086.210 11150 5729 2010-02-26 2010-03-03 109.123.080.198 6031 5726 2010-02-16 2010-02-25 078.159.107.139 7423 5712 2010-02-25 2010-03-02 080.154.037.196 21004 5702 2010-01-06 2010-03-11 118.123.213.165 10543 5699 2010-02-03 2010-02-24 163.027.247.068 14945 5683 2010-02-17 2010-02-28 193.077.211.050 6706 5679 2010-01-23 2010-03-11 220.175.137.247 12297 5669 2010-02-06 2010-02-16 116.113.120.087 6148 5665 2010-02-27 2010-03-01 222.173.235.135 5857 5649 2010-02-09 2010-03-09 088.191.042.102 7576 5623 2010-01-31 2010-03-07 200.050.248.199 6245 5604 2009-11-19 2010-02-23 128.059.014.108 13088 5603 2010-02-22 2010-03-11 222.215.230.049 308048 5603 2008-05-28 2010-03-16 188.073.249.030 5835 5592 2010-02-25 2010-02-26 061.191.191.064 14185 5581 2010-01-25 2010-02-24 222.073.205.009 14302 5572 2010-01-20 2010-03-14 066.090.131.197 6096 5550 2010-02-06 2010-03-07 128.210.135.176 5719 5549 2010-03-06 2010-03-07 205.209.161.228 12019 5541 2010-03-04 2010-03-09 109.123.078.052 6501 5517 2010-02-15 2010-03-10 058.221.034.018 10276 5513 2010-02-10 2010-03-12 218.240.054.020 5791 5500 2010-03-11 2010-03-14 116.038.079.194 8308 5490 2010-02-11 2010-03-05 212.152.074.220 5706 5466 2010-02-25 2010-02-26 174.129.218.252 8282 5456 2010-02-07 2010-02-24 163.005.255.241 8933 5454 2009-12-29 2010-03-11 221.195.082.100 86802 5428 2010-02-04 2010-03-15 188.073.233.227 5664 5420 2010-02-25 2010-02-26 059.172.214.020 8156 5400 2010-02-10 2010-03-12 201.134.046.068 14980 5394 2010-01-25 2010-03-06 068.081.112.154 5549 5346 2010-01-29 2010-02-16 074.086.023.051 9761 5333 2010-01-22 2010-02-28 221.209.235.138 5777 5331 2010-02-25 2010-03-02 124.011.185.006 5343 5325 2010-02-13 2010-03-11 219.132.073.131 12632 5318 2010-03-04 2010-03-10 061.155.154.082 5774 5281 2010-01-19 2010-02-17 193.203.244.117 8900 5279 2009-09-07 2010-03-16 202.109.012.124 6916 5274 2010-01-29 2010-03-03 219.234.093.136 13093 5262 2010-02-19 2010-03-16 122.225.037.147 6012 5255 2010-03-10 2010-03-12 122.227.164.071 190203 5254 2010-01-28 2010-03-16 211.138.135.250 5266 5226 2010-01-27 2010-03-08 075.125.001.114 5475 5196 2010-02-20 2010-03-01 221.213.042.006 6606 5190 2010-03-08 2010-03-15 089.106.008.022 11084 5175 2009-12-21 2010-02-23 163.013.202.188 6985 5172 2010-02-11 2010-02-16 222.124.023.164 5360 5156 2010-01-31 2010-03-15 087.241.235.214 7118 5153 2010-02-21 2010-03-03 212.235.071.212 7946 5128 2009-12-28 2010-02-24 121.096.095.066 5137 5120 2010-02-25 2010-03-16 220.181.039.192 11126 5103 2009-12-03 2010-02-19 121.037.059.154 9070 5090 2010-02-10 2010-03-08 075.146.017.217 5103 5090 2010-01-09 2010-02-19 061.233.103.034 5085 5084 2010-03-13 2010-03-16 210.017.020.117 5312 5055 2010-01-25 2010-03-02 125.039.114.158 13683 5033 2009-12-29 2010-03-10 066.147.242.164 8685 5024 2010-02-05 2010-03-10 067.015.161.211 9969 5022 2010-02-17 2010-03-11 077.104.217.233 29584 5014 2010-01-28 2010-03-15 222.208.183.218 280451 5014 2008-08-04 2010-03-16 071.099.124.114 6832 5003 2010-02-10 2010-02-22 119.018.200.018 12630 4971 2010-02-28 2010-03-06 124.012.088.204 15322 4952 2010-02-13 2010-02-26 071.171.003.191 4948 4948 2010-01-20 2010-02-18 121.009.233.077 8644 4942 2010-02-02 2010-02-19 119.167.216.060 9970 4936 2010-02-09 2010-02-19 086.063.070.028 8281 4921 2010-02-12 2010-03-09 024.014.066.184 5136 4911 2010-02-08 2010-03-15 221.195.073.068 182648 4909 2008-10-24 2010-03-02 204.236.148.090 6024 4901 2010-02-25 2010-02-26 085.157.143.098 10992 4890 2010-02-25 2010-03-13 061.019.244.122 5999 4888 2010-03-13 2010-03-16 061.147.107.056 150874 4885 2009-02-04 2010-03-16 094.102.063.241 10241 4882 2010-01-26 2010-03-14 088.191.048.057 5472 4877 2010-02-07 2010-03-09 222.186.031.085 43442 4865 2010-02-05 2010-03-02 220.165.004.030 17207 4856 2010-01-15 2010-02-17 085.114.135.027 5408 4852 2010-01-26 2010-03-04 080.154.041.113 7570 4837 2009-04-12 2010-03-15 123.050.061.244 31006 4796 2009-11-29 2010-02-22 200.107.033.186 6767 4790 2009-11-06 2010-03-15 064.120.154.019 70000 4778 2010-03-10 2010-03-12 118.129.166.120 5304 4767 2009-09-03 2010-03-10 173.008.040.060 10885 4744 2010-01-10 2010-03-09 061.151.239.128 5838 4732 2010-02-13 2010-02-18 211.093.137.163 4742 4717 2010-01-21 2010-02-20 188.073.244.072 4906 4711 2010-02-25 2010-02-26 069.036.007.253 9243 4697 2010-01-30 2010-03-14 125.039.147.010 4736 4661 2010-01-17 2010-03-13 190.142.238.126 14245 4653 2010-02-24 2010-02-24 173.192.215.020 43015 4620 2010-02-16 2010-03-15 202.100.108.025 5765 4609 2010-01-23 2010-03-09 218.038.016.068 7050 4609 2010-02-25 2010-03-15 200.171.162.131 7670 4594 2009-10-08 2010-03-15 201.239.035.253 9583 4593 2010-02-04 2010-02-27 190.007.199.058 5589 4589 2010-01-31 2010-03-01 112.140.025.195 4637 4580 2010-01-29 2010-03-11 205.209.136.182 5910 4573 2010-03-01 2010-03-03 221.143.046.098 74548 4568 2009-12-19 2010-03-16 060.217.234.134 10658 4556 2010-02-07 2010-03-05 211.186.175.014 8053 4553 2010-02-09 2010-03-01 200.027.140.211 6743 4549 2010-01-16 2010-02-16 205.209.136.198 6282 4524 2010-02-27 2010-02-28 202.199.158.006 7899 4523 2010-02-17 2010-03-16 128.059.014.109 11397 4516 2010-02-22 2010-03-03 202.117.056.026 6506 4510 2010-01-12 2010-02-21 221.148.081.047 76456 4509 2010-01-17 2010-03-03 119.167.218.123 7570 4508 2010-03-02 2010-03-14 121.011.080.042 182091 4487 2010-01-14 2010-03-15 082.077.021.038 6717 4456 2010-01-25 2010-02-17 208.122.229.194 5221 4451 2010-02-23 2010-02-25 059.162.166.243 18809 4436 2010-02-11 2010-03-06 109.123.078.014 8212 4436 2010-02-10 2010-02-23 063.149.189.238 4749 4421 2010-02-09 2010-03-13 091.204.128.042 14861 4420 2009-10-23 2010-03-10 174.129.180.140 4763 4418 2010-03-03 2010-03-03 082.098.144.140 7262 4413 2010-03-13 2010-03-15 187.045.219.202 5577 4406 2010-02-27 2010-03-10 222.214.218.188 4807 4404 2010-03-10 2010-03-16 218.025.025.206 5981 4383 2009-08-14 2010-03-10 125.211.217.133 8238 4352 2009-12-01 2010-03-10 201.100.015.130 4348 4347 2009-12-22 2010-03-07 174.142.045.222 85966 4342 2010-03-03 2010-03-14 216.245.198.194 24764 4341 2009-10-08 2010-03-15 218.108.248.123 5470 4336 2009-12-02 2010-03-14 196.034.179.202 7919 4336 2010-02-25 2010-03-02 209.051.198.146 5539 4336 2010-02-28 2010-03-07 218.242.182.042 6729 4330 2010-02-04 2010-02-24 143.090.173.186 5504 4321 2010-02-27 2010-03-03 218.234.033.031 4332 4314 2010-03-14 2010-03-14 188.073.248.253 4484 4314 2010-02-25 2010-02-25 095.130.170.025 21984 4298 2010-03-11 2010-03-15 217.076.032.053 6495 4290 2009-12-28 2010-03-11 091.214.044.165 4449 4271 2010-02-28 2010-03-06 202.158.053.249 4412 4270 2010-02-26 2010-02-27 195.034.107.023 6929 4254 2010-03-03 2010-03-04 189.174.089.058 4459 4253 2010-02-26 2010-03-01 061.153.068.018 124762 4239 2010-02-10 2010-02-21 113.010.037.181 4814 4237 2009-09-11 2010-03-05 211.141.237.036 6141 4235 2009-11-05 2010-03-07 070.184.068.233 22276 4228 2010-02-15 2010-03-16 202.089.058.019 4220 4220 2010-02-28 2010-02-28 059.032.238.042 4433 4201 2009-04-13 2010-03-01 200.168.001.188 11207 4195 2010-01-21 2010-03-13 063.245.019.070 8621 4189 2010-02-20 2010-02-28 203.117.220.222 4344 4188 2010-01-02 2010-03-14 122.116.113.064 5776 4186 2010-01-27 2010-03-15 095.130.170.026 20185 4186 2010-03-12 2010-03-14 217.219.061.054 5476 4177 2009-11-23 2010-03-08 211.100.059.075 4481 4176 2010-02-12 2010-03-07 217.035.079.009 7401 4172 2008-07-11 2010-02-19 221.236.020.044 6261 4169 2010-02-15 2010-03-10 061.178.065.077 7403 4158 2010-02-26 2010-03-02 093.157.085.003 10335 4154 2010-01-19 2010-02-20 067.228.115.104 201744 4145 2010-02-27 2010-03-07 062.141.052.029 31981 4143 2010-01-01 2010-03-08 093.087.008.086 12220 4110 2010-02-09 2010-03-01 084.244.167.226 61004 4109 2010-01-23 2010-02-24 200.046.196.130 6248 4105 2009-11-11 2010-02-17 072.044.171.203 7416 4103 2009-05-31 2010-03-07 087.118.082.126 4390 4101 2010-03-14 2010-03-16 210.092.133.243 4328 4097 2010-01-30 2010-03-16 074.208.197.227 4558 4096 2010-01-06 2010-02-17 188.073.241.188 4416 4082 2010-01-30 2010-02-25 012.167.099.012 5557 4075 2010-02-27 2010-02-28 218.078.213.219 9077 4074 2010-03-06 2010-03-06 072.044.048.185 12166 4071 2010-02-22 2010-02-26 012.167.099.013 5609 4070 2010-02-27 2010-02-28 083.228.050.224 21589 4069 2010-02-10 2010-03-15 210.051.160.061 6220 4060 2010-02-28 2010-03-13 109.235.249.146 15505 4028 2010-02-20 2010-03-13 066.165.169.250 23137 4017 2010-03-11 2010-03-15 067.212.081.054 8292 4012 2010-01-17 2010-02-17 067.212.081.186 4279 4008 2010-02-16 2010-02-19 201.062.101.143 4201 4007 2010-01-22 2010-03-12 119.110.096.044 4156 4007 2010-03-06 2010-03-07 202.147.028.042 4096 4000 2010-03-02 2010-03-14 210.051.056.232 5602 3993 2010-02-07 2010-02-28 150.217.140.165 4009 3992 2010-03-12 2010-03-12 219.233.229.077 7698 3982 2009-12-31 2010-02-28 128.210.135.173 8926 3979 2010-03-06 2010-03-08 211.086.224.012 4518 3976 2010-03-11 2010-03-15 079.175.175.096 11189 3975 2009-11-30 2010-03-12 146.145.203.170 7185 3974 2010-02-25 2010-03-14 098.209.236.046 4116 3969 2009-10-11 2010-03-06 061.152.217.077 4696 3960 2010-01-30 2010-03-01 208.083.020.102 53782 3958 2010-02-07 2010-03-16 200.067.138.050 3958 3957 2008-07-15 2010-03-14 124.011.141.178 4202 3952 2010-03-09 2010-03-11 094.136.038.116 5982 3948 2010-03-05 2010-03-11 194.073.044.217 7067 3932 2010-01-28 2010-03-04 210.245.087.155 38421 3918 2010-03-02 2010-03-13 085.017.201.199 4750 3914 2010-02-23 2010-03-16 202.096.057.226 24979 3910 2010-01-03 2010-02-20 124.205.074.242 3934 3903 2010-02-26 2010-02-27 199.043.150.060 26723 3903 2010-01-11 2010-03-03 174.037.159.222 516103 3895 2010-01-14 2010-03-16 200.148.213.188 7063 3884 2010-02-15 2010-02-17 094.076.208.205 4721 3876 2010-02-11 2010-02-26 200.155.003.066 6548 3865 2009-12-16 2010-03-07 173.045.100.114 5272 3854 2010-02-24 2010-02-27 094.102.000.014 26647 3853 2010-02-05 2010-02-27 064.015.159.169 37952 3849 2009-09-05 2010-03-15 190.157.221.185 11689 3839 2010-02-20 2010-02-28 124.011.140.136 3844 3829 2010-02-23 2010-02-23 202.253.012.231 4073 3826 2010-02-26 2010-03-02 221.214.140.228 4107 3822 2010-01-27 2010-03-03 084.244.181.086 11496 3810 2010-01-03 2010-02-17 070.085.028.098 4075 3789 2010-02-22 2010-02-23 074.222.132.082 11937 3787 2010-02-28 2010-03-04 074.174.054.229 8970 3778 2010-02-06 2010-02-20 060.172.229.053 5229 3776 2010-02-28 2010-03-07 202.101.229.141 4510 3771 2010-02-22 2010-03-03 080.245.118.249 7437 3771 2010-01-15 2010-03-07 210.051.060.074 9255 3769 2010-02-18 2010-02-27 217.037.145.112 3960 3763 2008-04-29 2010-03-05 087.106.009.145 4329 3754 2010-02-27 2010-03-16 203.099.163.156 7697 3754 2009-12-24 2010-02-16 081.107.048.182 3859 3739 2010-02-26 2010-03-16 217.160.178.020 4338 3733 2010-02-27 2010-03-04 212.203.033.050 4738 3726 2010-02-21 2010-02-25 012.008.194.055 8180 3725 2010-02-16 2010-02-27 128.059.014.102 8602 3723 2010-02-20 2010-03-12 222.185.247.085 3925 3708 2010-02-27 2010-03-06 061.164.126.108 3784 3707 2010-03-13 2010-03-15 200.014.234.036 3861 3707 2009-07-18 2010-03-16 222.232.118.110 7039 3701 2009-12-09 2010-02-27 085.114.137.034 70282 3697 2010-01-07 2010-02-19 112.004.093.008 4954 3688 2010-03-09 2010-03-15 061.147.110.162 3940 3677 2010-02-28 2010-03-04 069.004.234.224 47982 3677 2010-02-09 2010-02-27 203.250.131.181 38463 3677 2010-01-09 2010-02-20 070.151.107.190 31386 3677 2009-03-23 2010-02-16 195.050.069.084 5742 3668 2010-02-09 2010-02-22 184.073.000.008 7455 3666 2010-02-19 2010-02-26 218.018.009.219 4305 3658 2010-02-03 2010-03-15 122.224.006.089 6349 3650 2010-01-25 2010-02-18 174.121.037.086 85041 3646 2010-02-28 2010-03-16 067.205.074.137 4577 3644 2010-02-23 2010-03-11 078.235.204.089 11396 3644 2010-01-31 2010-03-08 218.240.040.250 33216 3639 2009-12-17 2010-02-14 062.001.017.170 3706 3636 2009-10-19 2010-03-12 201.116.227.194 9857 3634 2010-01-20 2010-03-12 202.005.095.205 3677 3628 2010-02-17 2010-02-18 111.092.238.015 3658 3626 2010-02-03 2010-03-01 116.255.150.112 7484 3619 2010-02-11 2010-03-12 062.038.188.138 31142 3619 2009-08-13 2010-03-12 061.233.103.025 3631 3617 2010-03-05 2010-03-06 221.207.007.030 4494 3614 2010-03-04 2010-03-16 088.161.018.171 3672 3604 2009-11-28 2010-02-22 078.157.052.243 9292 3599 2010-02-15 2010-03-15 094.102.211.174 3882 3597 2010-01-28 2010-02-23 068.167.129.251 9941 3596 2010-02-21 2010-03-07 208.088.072.044 3824 3584 2010-02-24 2010-02-24 124.232.135.015 6845 3583 2009-12-03 2010-02-25 163.013.196.104 4879 3578 2010-02-16 2010-02-17 079.121.248.090 3935 3578 2010-01-11 2010-02-24 141.149.190.226 9175 3574 2009-04-23 2010-03-16 112.065.216.015 4510 3557 2010-02-24 2010-03-08 069.162.076.179 4672 3551 2010-02-15 2010-02-15 212.101.096.044 14037 3550 2010-02-25 2010-02-26 074.255.041.039 6114 3544 2009-11-28 2010-02-20 078.008.177.034 3757 3541 2009-12-29 2010-03-16 163.019.167.162 5504 3539 2010-02-25 2010-03-01 076.095.082.238 3642 3535 2010-02-06 2010-02-20 074.138.052.204 12440 3533 2010-02-20 2010-03-12 087.118.126.032 5280 3533 2010-02-05 2010-02-16 218.240.038.214 13769 3530 2010-02-16 2010-02-26 174.120.202.124 40365 3518 2010-03-03 2010-03-15 067.228.097.043 7894 3512 2010-03-04 2010-03-16 058.251.136.027 3523 3510 2010-02-28 2010-02-28 123.135.104.012 3837 3505 2010-03-03 2010-03-05 188.073.235.124 3593 3505 2010-02-25 2010-02-25 220.179.074.050 4888 3494 2009-09-03 2010-03-09 210.211.185.037 3497 3490 2010-02-21 2010-02-22 117.135.143.061 3494 3481 2010-03-13 2010-03-13 072.052.242.065 15004 3478 2009-12-31 2010-03-14 119.145.138.053 4666 3477 2010-02-09 2010-03-08 190.152.088.114 10796 3476 2010-02-02 2010-02-16 058.216.246.122 9086 3475 2010-02-05 2010-03-14 085.114.141.241 4500 3474 2009-11-05 2010-03-13 114.051.179.089 6730 3472 2010-02-22 2010-02-22 221.203.168.098 62470 3470 2010-02-06 2010-03-11 173.192.198.112 45775 3468 2010-02-27 2010-03-01 061.233.108.005 5152 3468 2010-02-03 2010-03-14 218.075.094.227 3551 3460 2010-01-18 2010-02-19 119.145.148.053 4413 3455 2010-02-09 2010-02-27 074.052.006.250 14269 3452 2010-03-10 2010-03-12 083.089.210.185 3779 3445 2009-11-05 2010-03-08 121.101.213.224 5707 3445 2010-03-14 2010-03-15 058.019.117.118 5783 3437 2010-02-27 2010-03-15 220.227.098.083 6883 3429 2009-07-12 2010-02-26 174.120.150.250 28491 3427 2010-02-25 2010-03-06 174.120.208.050 13447 3426 2010-01-22 2010-02-15 123.135.121.082 12519 3425 2010-01-23 2010-03-11 058.018.172.206 4572 3423 2010-03-07 2010-03-15 094.023.000.029 11798 3414 2010-03-01 2010-03-04 094.074.230.051 4742 3412 2010-02-11 2010-02-22 190.014.161.060 3840 3409 2010-01-16 2010-02-24 218.008.245.123 7925 3395 2010-03-02 2010-03-09 077.223.143.012 11153 3387 2009-12-23 2010-03-04 124.011.145.156 3391 3386 2010-03-03 2010-03-09 219.154.210.050 41844 3385 2010-02-20 2010-02-27 078.041.204.127 3432 3376 2010-02-09 2010-02-16 184.073.052.217 6313 3375 2010-03-08 2010-03-09 174.037.246.212 16692 3370 2010-03-09 2010-03-10 112.122.009.105 5487 3369 2010-02-17 2010-03-14 203.045.184.065 7095 3368 2010-02-19 2010-03-10 174.120.088.239 14189 3363 2010-03-09 2010-03-10 075.126.128.202 6727 3362 2010-03-03 2010-03-08 209.197.232.011 5962 3351 2010-03-09 2010-03-16 186.014.119.200 6815 3347 2010-02-20 2010-03-05 070.062.061.034 17572 3346 2009-09-01 2010-03-15 064.069.035.127 4639 3346 2010-01-21 2010-02-18 222.168.010.036 30636 3340 2010-01-22 2010-02-18 061.054.100.102 7398 3334 2010-01-12 2010-02-22 210.051.048.071 7763 3331 2010-01-18 2010-03-12 211.225.007.002 8540 3330 2010-01-22 2010-03-15 204.008.053.045 5526 3312 2010-02-19 2010-03-15 174.036.100.204 13646 3312 2010-03-05 2010-03-15 067.018.126.198 15056 3306 2010-03-09 2010-03-14 124.011.191.122 3300 3298 2010-02-14 2010-03-13 091.212.127.100 3331 3295 2010-02-09 2010-03-16 188.132.196.173 10462 3295 2010-02-22 2010-02-25 174.123.190.066 10446 3295 2010-03-11 2010-03-16 085.062.095.198 3714 3293 2009-09-20 2010-03-13 118.110.193.214 9881 3292 2010-01-28 2010-02-17 075.126.076.223 12861 3285 2010-03-10 2010-03-12 064.120.226.234 12233 3285 2010-02-08 2010-03-08 012.152.073.126 13349 3279 2010-02-16 2010-03-11 069.147.241.196 3335 3275 2010-02-13 2010-02-18 038.229.001.013 4553 3271 2009-12-07 2010-03-16 109.123.080.038 3344 3268 2010-02-15 2010-02-28 095.130.170.251 8268 3268 2010-03-07 2010-03-09 024.079.247.064 3543 3266 2010-01-22 2010-02-25 119.082.127.066 3716 3257 2010-02-11 2010-02-20 222.073.205.023 3949 3255 2010-02-23 2010-03-09 200.074.149.107 7354 3254 2010-01-30 2010-03-01 208.096.006.080 22285 3253 2010-02-20 2010-03-15 078.231.109.030 10126 3252 2010-02-06 2010-03-09 203.162.203.179 4604 3252 2010-02-07 2010-03-14 222.240.200.072 3901 3249 2010-01-02 2010-02-21 122.224.059.206 6270 3247 2010-02-17 2010-03-13 128.059.014.101 7939 3230 2010-02-21 2010-03-14 200.115.248.213 6597 3230 2010-02-20 2010-03-13 151.012.060.130 6637 3224 2010-02-15 2010-03-08 216.245.213.078 3370 3221 2010-03-11 2010-03-11 201.116.024.194 15028 3213 2010-01-19 2010-02-24 064.187.120.001 17392 3210 2010-01-07 2010-03-15 206.169.171.058 3837 3200 2010-03-08 2010-03-14 208.089.208.233 3328 3185 2010-01-17 2010-03-11 188.124.015.176 7194 3184 2010-02-08 2010-03-06 212.154.032.006 3482 3182 2009-11-28 2010-03-14 059.165.091.107 3182 3182 2010-02-16 2010-02-16 124.237.078.005 3312 3180 2010-03-12 2010-03-16 190.004.019.179 3203 3178 2010-03-11 2010-03-11 061.136.188.083 6325 3175 2009-06-20 2010-03-11 131.162.130.193 6203 3172 2010-02-02 2010-03-01 190.077.151.128 7521 3171 2010-01-28 2010-03-05 213.186.058.150 6651 3170 2010-01-27 2010-03-12 061.184.202.199 3938 3162 2010-03-05 2010-03-05 222.175.213.213 8966 3153 2010-01-29 2010-03-13 095.227.242.051 23845 3153 2010-02-15 2010-03-12 124.074.243.079 4575 3145 2010-02-04 2010-02-19 058.229.117.013 3414 3144 2010-03-04 2010-03-16 072.249.009.172 6330 3136 2010-02-18 2010-02-18 087.117.242.016 8361 3134 2010-03-02 2010-03-03 218.106.116.220 3476 3134 2010-02-26 2010-03-09 070.085.033.082 32355 3134 2010-02-07 2010-03-10 216.199.175.205 20928 3128 2009-11-24 2010-03-12 095.130.172.083 7827 3127 2010-02-11 2010-02-27 091.120.021.093 11853 3127 2009-10-29 2010-03-10 064.162.190.182 24420 3125 2009-12-19 2010-03-14 222.186.026.163 4139 3121 2010-01-23 2010-02-17 066.209.053.082 18634 3118 2009-11-25 2010-03-16 207.112.013.252 21107 3102 2010-01-30 2010-03-10 162.105.156.243 3272 3102 2010-02-07 2010-02-21 061.129.060.023 5606 3102 2009-05-15 2010-03-01 062.141.046.179 8568 3099 2010-03-03 2010-03-15 220.248.205.008 8742 3091 2010-01-11 2010-02-27 216.191.217.034 14671 3089 2009-06-07 2010-03-16 128.059.014.105 6114 3087 2010-02-24 2010-03-04 212.100.102.127 28020 3086 2009-12-11 2010-02-19 061.155.177.002 12563 3076 2010-01-17 2010-03-04 190.247.011.112 33058 3076 2010-02-27 2010-03-12 082.235.046.073 28388 3076 2009-12-16 2010-03-13 112.078.004.002 3706 3076 2010-03-07 2010-03-13 220.181.039.242 6730 3076 2010-02-15 2010-02-23 061.030.088.002 3673 3074 2010-02-27 2010-02-27 174.037.201.140 10044 3074 2010-03-09 2010-03-10 094.019.008.080 14096 3067 2010-01-21 2010-03-01 078.238.120.198 24806 3065 2009-12-22 2010-02-21 202.091.243.158 3256 3065 2010-02-26 2010-03-01 088.196.097.089 21672 3065 2009-12-19 2010-02-23 190.203.025.098 7158 3060 2010-02-12 2010-02-22 195.207.033.043 3601 3058 2010-02-28 2010-03-03 121.076.161.057 3090 3058 2010-03-12 2010-03-13 202.103.069.099 3496 3058 2010-03-01 2010-03-03 203.251.122.118 7518 3055 2010-01-31 2010-02-16 089.107.224.146 7050 3055 2010-01-28 2010-02-27 125.210.034.228 5708 3054 2009-11-25 2010-03-05 078.237.073.032 12860 3042 2010-01-12 2010-02-21 082.066.147.001 3484 3040 2010-03-04 2010-03-04 216.034.131.135 9439 3038 2009-08-27 2010-02-26 222.233.149.135 3557 3037 2010-02-17 2010-02-18 061.014.072.182 6289 3034 2010-02-10 2010-03-07 203.151.217.213 10887 3033 2009-04-20 2010-03-12 066.109.027.101 40702 3031 2009-07-23 2010-03-15 061.019.073.045 7717 3030 2010-01-23 2010-02-25 190.164.225.026 5097 3026 2010-02-24 2010-02-24 061.019.252.132 3365 3025 2010-03-13 2010-03-16 089.029.133.243 9232 3020 2010-02-21 2010-02-23 174.036.217.039 9464 3019 2010-03-09 2010-03-15 081.083.002.083 6096 3015 2010-01-23 2010-02-19 058.117.147.002 167950 3014 2010-01-24 2010-03-02 190.189.045.064 12241 3008 2010-02-08 2010-02-19 208.111.183.202 4159 3008 2010-02-13 2010-02-15 082.239.179.048 18027 3006 2009-12-23 2010-02-24 085.094.178.250 41678 3003 2010-01-05 2010-02-26 190.245.210.209 12346 3002 2010-02-05 2010-02-26 200.207.166.036 12978 3001 2010-01-05 2010-03-15 190.208.124.077 15591 2997 2010-02-20 2010-02-21 190.198.196.226 7025 2992 2010-02-11 2010-03-06 190.202.163.081 19350 2991 2010-02-09 2010-02-14 213.239.209.069 4321 2989 2010-02-23 2010-02-26 211.100.034.081 3142 2988 2010-01-11 2010-03-01 216.223.074.098 6622 2988 2010-03-03 2010-03-16 096.233.035.072 15917 2985 2010-01-07 2010-03-13 097.074.183.128 8103 2985 2010-03-09 2010-03-09 190.039.052.175 12095 2984 2010-02-12 2010-03-14 218.145.108.229 3082 2982 2010-02-28 2010-03-01 205.243.126.250 16335 2979 2010-01-23 2010-03-10 202.043.155.068 3118 2977 2010-03-02 2010-03-08 123.030.098.050 9234 2974 2009-11-24 2010-03-11 096.248.239.044 6801 2973 2010-03-04 2010-03-16 117.103.192.168 3581 2972 2010-02-17 2010-02-26 212.117.183.164 3068 2969 2010-03-03 2010-03-05 061.156.020.003 8839 2968 2010-02-23 2010-03-13 200.083.233.124 6080 2967 2010-02-20 2010-02-28 216.131.094.032 10648 2962 2010-02-27 2010-03-02 209.011.247.138 10030 2957 2010-02-16 2010-03-05 222.073.068.164 3975 2955 2009-12-26 2010-03-15 081.021.003.218 6563 2954 2010-03-04 2010-03-16 088.191.064.165 3449 2952 2010-02-22 2010-03-03 161.053.050.220 4520 2951 2010-03-01 2010-03-15 221.008.064.202 7350 2949 2010-03-04 2010-03-14 193.253.054.029 6522 2947 2010-03-03 2010-03-16 089.148.110.009 6680 2945 2010-03-03 2010-03-16 060.031.213.006 3749 2944 2010-02-09 2010-03-02 089.149.204.249 6678 2942 2010-01-26 2010-02-26 218.075.079.019 4443 2941 2010-02-12 2010-03-10 078.226.140.057 6604 2938 2010-03-04 2010-03-16 195.234.114.054 6597 2937 2010-03-04 2010-03-16 203.200.019.093 6658 2936 2010-03-03 2010-03-16 195.184.215.220 8608 2936 2009-12-23 2010-02-21 112.078.005.146 69156 2932 2010-03-07 2010-03-16 091.093.122.037 6652 2929 2010-03-03 2010-03-16 062.193.248.045 5710 2929 2010-02-15 2010-02-22 088.191.040.201 9960 2928 2010-02-18 2010-02-18 201.218.100.215 5565 2926 2010-02-26 2010-03-04 211.147.222.106 3126 2923 2010-02-11 2010-02-21 078.151.114.079 2992 2922 2010-01-20 2010-02-14 064.085.242.235 16730 2922 2009-06-13 2010-02-16 210.021.036.106 3031 2909 2010-02-12 2010-02-14 064.222.094.106 10018 2905 2009-10-15 2010-03-04 219.142.062.182 4052 2904 2010-03-04 2010-03-11 064.251.028.214 3685 2897 2010-01-23 2010-02-26 220.090.134.002 9195 2896 2010-01-13 2010-02-18 074.050.085.021 3947 2895 2010-02-28 2010-03-16 190.105.056.232 7251 2891 2010-02-20 2010-02-27 174.120.175.068 7839 2886 2010-02-25 2010-03-12 212.095.038.059 9994 2884 2010-01-22 2010-03-05 080.014.176.241 6212 2880 2010-03-03 2010-03-15 212.152.097.220 2959 2879 2010-02-25 2010-02-25 222.219.220.011 3085 2874 2010-02-26 2010-03-01 190.144.163.176 11610 2868 2009-11-15 2010-03-16 188.124.007.132 8617 2868 2010-02-20 2010-03-09 088.044.165.179 17521 2867 2009-12-24 2010-03-12 116.028.064.181 11761 2867 2009-12-16 2010-03-12 222.122.156.055 3122 2864 2009-09-21 2010-02-16 184.073.020.216 2876 2857 2010-02-25 2010-02-26 121.012.107.194 16597 2857 2010-03-11 2010-03-12 082.127.122.193 6167 2851 2010-03-04 2010-03-16 190.208.068.129 5846 2850 2010-01-17 2010-02-27 114.032.154.114 9159 2847 2010-03-12 2010-03-14 069.016.172.040 5163 2845 2007-02-04 2010-03-16 060.191.016.167 3015 2845 2009-12-19 2010-03-14 090.002.076.232 6184 2843 2010-03-06 2010-03-14 068.080.214.241 2878 2841 2010-02-26 2010-03-14 092.051.143.066 5952 2833 2010-01-22 2010-03-06 218.098.194.025 2906 2831 2009-11-18 2010-02-23 024.181.043.190 2881 2831 2009-12-16 2010-02-15 082.234.054.115 7472 2826 2010-01-08 2010-02-22 085.185.128.196 8433 2819 2010-02-26 2010-03-13 081.030.195.156 3623 2818 2010-02-22 2010-02-26 174.138.160.013 4571 2814 2009-12-22 2010-03-12 189.019.011.106 9990 2812 2010-03-15 2010-03-15 074.220.215.088 6814 2807 2010-02-16 2010-02-21 178.124.129.020 5392 2806 2010-03-13 2010-03-14 061.143.134.085 2827 2804 2010-02-23 2010-02-24 074.086.084.217 7920 2803 2010-03-15 2010-03-15 094.076.216.210 10136 2801 2010-02-16 2010-02-24 068.147.013.105 15664 2800 2010-02-05 2010-03-11 188.073.226.027 2871 2799 2010-02-25 2010-02-25 174.121.031.122 6631 2798 2010-02-01 2010-03-10 121.010.107.023 7878 2792 2010-02-07 2010-03-01 193.204.016.216 4188 2788 2010-02-25 2010-03-01 210.092.133.245 2889 2785 2009-12-18 2010-03-13 075.126.164.131 14232 2785 2010-02-12 2010-02-15 089.038.128.236 2895 2773 2010-02-24 2010-02-24 128.059.014.104 6213 2773 2010-02-22 2010-03-13 086.108.015.149 5651 2771 2010-03-04 2010-03-15 058.222.253.237 8163 2769 2010-01-30 2010-03-02 060.022.064.104 2957 2767 2010-01-11 2010-03-04 200.219.163.116 7395 2766 2010-02-12 2010-02-20 174.143.175.159 25632 2766 2010-03-07 2010-03-10 199.044.129.193 12089 2765 2010-01-25 2010-03-14 064.062.148.198 4360 2757 2009-11-07 2010-02-25 069.028.174.152 13204 2757 2009-12-02 2010-03-11 211.139.127.242 5153 2756 2010-01-25 2010-03-09 207.088.180.173 7981 2755 2010-02-10 2010-03-14 190.068.225.132 9127 2753 2010-02-16 2010-03-13 116.122.036.019 15366 2751 2010-01-07 2010-02-27 220.162.244.092 8191 2751 2009-04-02 2010-03-15 210.092.133.244 2851 2749 2010-01-30 2010-03-16 122.225.029.042 3291 2746 2010-03-04 2010-03-08 082.243.166.014 5605 2738 2010-03-04 2010-03-14 095.191.045.098 5562 2737 2010-02-24 2010-02-24 128.059.014.106 5910 2734 2010-02-22 2010-03-12 218.094.114.146 4802 2733 2010-03-08 2010-03-15 064.120.147.197 5785 2731 2010-03-01 2010-03-14 125.065.112.161 15452 2730 2009-07-19 2010-02-20 088.191.040.057 2931 2728 2010-02-24 2010-02-28 085.114.140.139 20519 2722 2010-01-20 2010-02-19 220.241.126.179 6654 2722 2009-02-19 2010-03-11 163.028.130.003 3768 2717 2010-03-07 2010-03-09 075.101.218.013 3875 2715 2010-02-20 2010-02-20 200.115.171.147 8204 2713 2009-09-03 2010-03-04 209.062.078.226 6573 2713 2010-02-19 2010-02-21 061.190.033.236 7107 2713 2009-11-24 2010-03-13 075.156.138.251 5767 2712 2010-02-08 2010-03-15 081.012.048.020 12815 2709 2010-02-03 2010-03-15 138.247.198.020 18198 2709 2009-11-11 2010-03-12 148.235.164.067 3653 2708 2010-02-25 2010-03-14 087.106.090.044 8763 2703 2010-02-26 2010-02-27 096.000.242.115 2726 2703 2010-02-13 2010-02-15 095.154.242.126 4167 2702 2010-02-12 2010-02-17 173.203.213.040 8302 2701 2010-02-28 2010-03-07 190.108.014.134 6644 2701 2010-02-27 2010-02-28 094.102.000.048 5329 2696 2010-02-26 2010-03-10 089.248.104.015 7895 2692 2009-09-09 2010-03-12 074.084.136.068 4125 2687 2009-12-16 2010-03-12 216.018.219.135 3959 2685 2010-02-12 2010-03-15 207.182.098.003 2901 2685 2010-03-04 2010-03-10 076.012.116.068 4537 2685 2010-02-19 2010-02-21 137.158.094.135 4974 2684 2010-02-27 2010-03-03 012.187.020.037 4374 2684 2010-03-03 2010-03-12 069.074.217.133 2739 2683 2010-02-19 2010-02-19 134.186.050.044 18033 2681 2010-01-27 2010-02-18 121.134.060.074 12641 2676 2010-02-02 2010-03-15 200.171.183.102 5778 2675 2010-01-06 2010-02-18 064.223.189.099 8631 2671 2010-02-14 2010-03-07 089.145.103.044 3264 2671 2010-03-07 2010-03-08 074.002.094.154 2671 2671 2009-11-25 2010-03-07 064.191.099.044 6296 2664 2010-02-05 2010-02-27 060.217.229.222 4568 2659 2009-07-20 2010-03-04 077.037.200.200 6603 2658 2009-09-27 2010-03-14 115.238.054.252 3805 2655 2010-03-10 2010-03-14 118.102.130.090 2717 2654 2010-03-04 2010-03-09 072.084.190.071 12367 2650 2009-11-07 2010-03-16 064.150.137.049 133855 2649 2010-02-14 2010-03-11 060.217.234.151 3210 2645 2010-01-09 2010-03-06 202.120.076.233 3845 2645 2010-02-13 2010-03-14 198.146.033.151 31113 2644 2009-12-29 2010-03-03 071.245.184.010 12175 2643 2010-02-03 2010-03-16 190.209.158.035 5314 2642 2010-02-05 2010-02-23 186.024.000.124 14669 2639 2010-02-08 2010-03-14 070.064.150.251 13509 2638 2009-10-07 2010-03-12 200.062.228.029 8018 2635 2010-02-18 2010-03-15 150.140.142.140 4286 2635 2010-02-18 2010-02-28 004.238.255.248 2679 2634 2010-02-28 2010-02-28 174.036.235.217 6776 2633 2010-02-21 2010-02-22 061.185.007.068 3427 2629 2010-03-04 2010-03-10 200.208.204.118 3272 2625 2009-11-12 2010-03-07 220.246.064.125 8147 2624 2010-01-30 2010-03-14 211.232.066.125 7387 2621 2009-12-03 2010-03-16 128.205.002.240 4567 2619 2010-02-24 2010-03-08 222.240.128.034 5278 2619 2010-02-26 2010-03-13 085.092.141.221 7861 2617 2010-01-14 2010-03-02 222.222.049.076 2680 2615 2010-02-15 2010-03-08 188.040.070.145 31708 2612 2010-02-11 2010-03-08 220.123.031.012 2987 2608 2010-02-06 2010-03-03 218.018.009.073 2903 2606 2010-03-11 2010-03-11 082.099.161.034 6428 2603 2010-01-28 2010-03-08 117.041.228.209 15618 2600 2010-01-24 2010-03-15 078.236.192.128 3749 2597 2010-02-20 2010-02-23 087.118.098.162 19187 2597 2009-12-15 2010-03-01 210.203.249.155 2609 2597 2010-03-02 2010-03-02 209.224.198.156 16889 2596 2010-02-10 2010-03-10 059.055.139.165 5285 2592 2010-02-23 2010-02-26 208.043.046.186 2911 2584 2010-02-26 2010-02-26 110.188.000.123 3664 2582 2010-02-14 2010-02-25 064.120.229.173 4434 2582 2010-02-28 2010-03-01 074.050.118.020 7561 2578 2009-12-02 2010-03-16 116.006.044.229 13564 2577 2009-12-30 2010-03-15 207.138.178.148 17227 2576 2009-12-16 2010-03-13 124.205.148.021 23584 2576 2009-12-20 2010-03-15 212.095.040.199 8666 2575 2010-02-04 2010-03-05 062.026.219.177 3768 2573 2010-02-25 2010-02-25 109.185.105.242 3575 2569 2010-02-19 2010-03-16 059.124.212.148 14106 2564 2010-02-04 2010-02-25 066.011.122.194 23417 2564 2009-12-27 2010-02-24 212.012.121.082 3327 2563 2010-03-11 2010-03-12 221.204.232.077 3398 2561 2010-02-09 2010-02-22 116.094.133.250 2586 2561 2010-03-08 2010-03-09 119.225.078.027 3861 2560 2010-02-15 2010-02-25 189.007.079.171 4569 2557 2010-02-04 2010-02-19 219.133.059.177 2568 2555 2010-02-01 2010-03-13 089.248.105.198 7514 2555 2010-01-21 2010-02-26 058.215.079.211 13403 2554 2010-01-17 2010-02-19 217.199.181.135 4862 2551 2010-01-19 2010-02-19 062.149.174.246 162251 2551 2009-09-28 2010-03-14 082.200.130.235 6717 2550 2009-11-14 2010-02-15 066.121.018.092 5128 2547 2009-11-12 2010-03-04 024.242.176.230 10052 2546 2010-01-26 2010-02-16 211.115.206.121 4882 2545 2010-02-11 2010-02-21 066.104.064.014 3944 2545 2010-02-24 2010-03-11 064.022.236.139 2745 2542 2010-02-16 2010-02-16 216.008.178.053 14959 2540 2009-12-21 2010-03-11 061.164.159.040 3606 2539 2010-02-26 2010-03-01 202.113.013.071 5594 2537 2010-03-06 2010-03-12 125.211.196.214 42981 2537 2010-02-28 2010-03-07 204.045.042.187 2585 2536 2010-03-13 2010-03-15 061.191.188.185 2723 2535 2010-02-11 2010-02-15 062.149.160.245 7377 2533 2009-10-11 2010-03-15 218.083.161.018 2592 2532 2010-02-04 2010-03-14 060.190.125.202 3177 2531 2010-01-29 2010-03-03 118.123.007.214 5125 2531 2010-02-27 2010-03-05 122.169.196.084 2576 2529 2010-02-25 2010-02-25 058.217.255.103 4068 2529 2010-02-25 2010-03-07 122.117.212.064 2745 2528 2010-03-07 2010-03-12 210.003.038.140 3534 2520 2010-02-15 2010-02-22 081.094.195.162 2549 2520 2010-03-07 2010-03-07 213.096.044.029 6820 2518 2009-09-23 2010-03-15 222.122.045.249 7160 2517 2009-12-04 2010-03-15 217.197.152.228 2826 2514 2010-03-06 2010-03-11 212.102.024.017 88362 2513 2009-11-14 2010-03-13 190.043.152.005 2536 2513 2010-02-12 2010-03-01 201.194.042.070 6612 2512 2009-10-11 2010-03-15 218.061.126.202 16285 2512 2010-02-11 2010-03-16 190.159.182.221 7625 2511 2010-02-21 2010-02-21 192.168.000.101 120260 2509 2009-11-10 2010-03-16 065.254.165.252 11256 2509 2009-11-03 2010-03-12 211.154.136.234 13448 2505 2010-03-08 2010-03-11 066.196.027.056 11834 2503 2009-12-13 2010-02-16 061.163.060.080 3655 2502 2010-02-10 2010-02-19 065.118.153.195 5593 2501 2010-02-23 2010-03-10 221.161.197.211 10392 2495 2009-11-28 2010-03-15 202.088.238.139 294640 2489 2009-11-06 2010-03-05 062.220.128.243 2602 2486 2010-01-28 2010-02-26 074.050.118.191 7464 2486 2009-04-11 2010-03-11 201.120.129.195 2511 2484 2009-10-16 2010-03-11 095.110.128.237 7263 2483 2009-09-28 2010-03-16 078.100.051.040 119539 2483 2009-12-24 2010-03-13 189.073.090.160 2581 2475 2010-03-06 2010-03-15 212.247.170.018 101204 2475 2010-01-30 2010-03-14 093.097.193.159 51519 2474 2009-09-20 2010-03-16 097.066.214.214 3912 2474 2010-02-27 2010-03-06 174.132.130.189 4315 2472 2010-03-07 2010-03-07 208.073.210.027 4678 2471 2009-07-31 2010-03-11 066.208.208.162 2594 2470 2010-02-22 2010-03-15 075.144.227.021 6183 2468 2009-04-21 2010-03-13 210.112.255.006 7018 2461 2009-12-07 2010-03-15 217.016.004.033 5007 2460 2010-02-26 2010-03-03 218.104.206.020 5239 2458 2008-05-15 2010-03-13 219.232.047.167 5112 2454 2010-02-23 2010-03-13 211.100.059.102 2714 2452 2010-02-11 2010-02-14 203.113.015.087 6756 2449 2009-12-11 2010-03-11 066.186.059.050 60530 2448 2009-12-15 2010-03-07 063.255.111.217 2616 2446 2010-01-31 2010-03-08 122.155.008.102 7389 2443 2009-10-15 2010-03-04 069.090.065.075 10359 2443 2009-11-04 2010-03-04 201.015.105.226 8940 2442 2010-02-11 2010-03-12 067.019.003.186 3635 2442 2010-02-20 2010-03-02 066.197.195.229 5106 2442 2010-02-19 2010-03-04 122.183.233.081 4987 2441 2010-02-16 2010-03-10 123.108.208.067 3146 2440 2010-02-10 2010-03-13 062.149.160.175 7182 2439 2009-09-11 2010-03-15 190.200.153.221 2603 2437 2010-02-21 2010-03-14 061.147.110.144 4461 2436 2010-01-30 2010-02-21 212.225.255.244 2650 2434 2010-03-15 2010-03-16 190.105.075.240 4904 2431 2010-02-28 2010-03-12 201.221.113.010 4668 2431 2010-02-13 2010-03-13 219.065.189.054 2442 2431 2009-11-12 2010-03-11 218.061.013.085 4381 2430 2010-02-19 2010-02-19 190.026.212.004 3625 2430 2009-11-23 2010-03-04 074.092.051.196 4890 2429 2010-02-26 2010-02-27 195.252.062.252 6602 2429 2009-09-29 2010-03-08 061.160.213.242 2586 2427 2010-03-01 2010-03-12 218.038.018.027 3329 2427 2010-03-03 2010-03-11 059.040.182.186 6205 2426 2010-01-26 2010-03-12 200.111.040.115 2424 2422 2010-02-27 2010-03-01 190.109.192.131 8588 2422 2010-03-04 2010-03-10 086.101.176.121 7288 2422 2010-01-20 2010-02-22 061.136.060.033 2553 2421 2010-01-15 2010-02-16 206.223.159.100 3265 2418 2010-02-11 2010-02-26 078.231.225.113 5787 2417 2009-12-21 2010-02-15 213.186.167.092 5677 2411 2010-03-06 2010-03-06 118.069.193.009 88190 2411 2009-10-09 2010-03-16 222.188.010.220 3912 2409 2010-03-12 2010-03-13 130.034.129.003 2916 2409 2010-02-16 2010-02-16 116.050.171.099 2529 2409 2010-02-23 2010-02-26 059.041.039.101 2461 2409 2010-02-27 2010-02-28 062.149.170.253 7061 2407 2009-10-06 2010-03-15 113.010.039.034 2408 2406 2010-03-06 2010-03-06 088.255.056.044 4851 2405 2010-02-22 2010-02-23 059.046.172.133 13348 2402 2010-02-23 2010-03-02 041.196.182.019 6716 2402 2009-12-19 2010-03-15 085.214.079.081 3300 2400 2010-01-30 2010-02-17 069.164.214.036 2455 2395 2010-03-02 2010-03-08 190.188.244.030 3057 2395 2010-03-07 2010-03-15 068.167.041.234 2566 2395 2010-02-26 2010-03-03 087.022.150.175 2418 2389 2009-10-29 2010-02-14 174.037.201.136 4957 2385 2010-02-12 2010-02-14 209.018.159.151 4385 2385 2010-02-24 2010-03-07 095.105.229.017 2581 2385 2010-02-21 2010-03-01 213.151.203.018 47512 2384 2009-09-23 2010-03-14 148.244.187.036 25980 2383 2009-11-07 2010-03-15 095.169.018.196 2390 2381 2010-02-18 2010-03-03 190.203.069.160 16508 2381 2010-01-25 2010-03-13 213.123.130.184 4153 2378 2009-11-17 2010-03-12 061.142.066.026 2493 2378 2010-01-24 2010-02-19 024.226.158.219 4818 2375 2010-02-03 2010-03-15 218.029.255.244 3776 2375 2009-12-23 2010-03-11 222.190.117.166 3992 2372 2010-02-19 2010-03-10 062.149.162.206 57112 2372 2009-10-03 2010-02-26 064.191.074.005 2428 2371 2010-02-26 2010-02-26 208.083.020.130 6773 2367 2008-02-04 2010-03-14 062.089.112.170 4603 2367 2009-12-30 2010-02-18 201.252.238.043 12093 2366 2009-11-15 2010-03-15 080.013.053.047 4238 2365 2010-03-04 2010-03-16 216.108.231.048 9407 2364 2009-12-14 2010-02-23 210.092.133.246 2459 2361 2009-12-12 2010-03-15 074.082.057.112 2555 2357 2010-02-14 2010-03-16 068.022.000.163 4939 2357 2010-01-17 2010-03-11 121.078.112.109 8355 2354 2009-07-22 2010-02-28 140.119.164.082 2498 2352 2010-02-28 2010-03-01 217.160.241.235 6937 2349 2010-02-24 2010-02-27 203.128.089.055 10522 2348 2010-02-09 2010-03-11 187.004.071.138 5443 2347 2010-01-20 2010-03-08 211.075.110.054 2429 2347 2009-11-19 2010-02-26 218.159.093.213 2412 2346 2010-01-13 2010-02-23 213.091.230.046 2400 2346 2009-07-19 2010-03-10 064.161.095.202 5435 2345 2010-02-02 2010-03-12 213.213.086.234 9117 2343 2009-12-14 2010-02-18 124.082.065.103 6069 2341 2010-01-23 2010-02-16 212.115.043.161 5059 2341 2010-01-31 2010-02-17 088.149.182.202 10404 2337 2010-02-10 2010-03-09 091.121.024.158 5416 2336 2010-02-21 2010-03-13 087.062.219.078 4057 2336 2010-03-04 2010-03-15 060.213.133.133 2354 2331 2010-01-02 2010-03-14 218.240.036.007 2396 2330 2010-02-18 2010-02-22 077.245.144.089 3478 2326 2010-03-10 2010-03-12 212.068.036.146 2427 2325 2010-03-12 2010-03-12 193.145.216.240 3014 2322 2010-02-16 2010-02-18 125.211.210.003 3041 2322 2010-02-24 2010-02-25 095.168.175.155 4412 2320 2010-02-27 2010-02-27 113.028.031.082 20071 2320 2009-12-29 2010-03-11 134.007.175.011 2633 2320 2010-03-13 2010-03-15 086.178.205.220 2463 2319 2010-01-18 2010-02-23 208.043.075.218 4543 2317 2010-03-08 2010-03-08 125.230.071.055 10153 2313 2010-03-16 2010-03-16 202.173.252.178 41771 2313 2010-01-15 2010-03-16 085.105.171.034 38677 2312 2010-01-21 2010-03-16 081.016.240.006 2563 2310 2010-03-06 2010-03-10 221.130.130.178 2325 2308 2010-02-23 2010-02-27 113.105.128.253 49258 2306 2009-12-02 2010-03-15 087.106.098.120 6426 2304 2010-02-05 2010-03-15 076.079.179.122 8969 2304 2010-02-08 2010-02-24 074.221.177.248 4648 2303 2010-03-04 2010-03-11 062.149.174.179 84016 2299 2009-11-12 2010-03-13 222.255.226.129 4605 2299 2010-02-13 2010-03-09 168.176.193.046 10101 2297 2010-02-20 2010-03-11 190.220.109.011 4672 2296 2010-02-28 2010-03-12 200.155.016.250 2311 2294 2009-10-02 2010-02-25 069.197.142.141 4376 2294 2010-02-08 2010-02-22 124.247.195.066 8244 2294 2010-02-03 2010-03-11 174.129.160.167 2319 2290 2010-02-19 2010-02-22 062.173.038.134 8318 2289 2010-01-26 2010-03-16 070.089.039.010 8919 2288 2010-01-29 2010-03-04 219.119.139.180 4587 2287 2010-02-16 2010-02-24 066.134.014.218 30875 2285 2010-01-16 2010-03-07 024.103.059.029 40856 2282 2009-12-17 2010-03-16 207.115.065.076 19698 2280 2010-02-15 2010-03-01 081.023.101.178 5150 2280 2010-02-25 2010-03-11 194.185.200.156 4079 2280 2010-02-25 2010-03-06 121.011.066.070 3534 2279 2010-02-28 2010-03-15 122.170.127.066 37799 2279 2010-01-25 2010-03-08 065.040.169.135 13665 2278 2009-12-16 2010-03-11 072.002.010.004 4528 2276 2010-02-18 2010-02-18 222.134.071.090 2858 2276 2009-12-26 2010-03-08 082.154.248.137 17432 2273 2010-02-16 2010-03-11 070.071.015.111 3623 2272 2009-12-23 2010-03-14 217.156.034.014 2382 2272 2010-03-07 2010-03-07 195.248.180.022 4473 2270 2010-02-11 2010-02-17 222.073.173.122 2968 2267 2010-02-25 2010-03-04 213.232.110.198 2874 2266 2010-02-12 2010-02-16 125.230.158.056 8402 2264 2010-03-07 2010-03-10 205.209.142.242 22004 2264 2010-01-17 2010-03-14 125.230.156.158 4342 2263 2010-02-07 2010-03-05 211.141.077.188 4081 2262 2010-02-20 2010-02-21 190.157.161.064 4570 2262 2010-02-21 2010-02-21 210.203.250.066 2261 2261 2010-03-11 2010-03-11 125.230.146.051 4656 2261 2010-03-03 2010-03-03 093.062.230.005 4555 2261 2010-02-28 2010-03-03 074.169.051.195 6869 2261 2010-02-26 2010-02-26 069.070.026.051 2302 2259 2009-03-27 2010-03-16 063.226.098.076 2284 2257 2010-02-01 2010-02-22 125.230.150.057 6722 2255 2010-02-27 2010-03-13 098.191.201.252 16186 2253 2009-11-12 2010-03-14 202.107.209.033 29702 2251 2009-11-29 2010-03-05 081.007.171.041 3569 2250 2010-02-18 2010-02-27 200.081.196.217 5399 2247 2010-02-04 2010-03-13 212.103.189.006 7429 2247 2009-12-01 2010-03-16 189.021.083.202 2257 2247 2010-02-18 2010-02-27 088.255.086.001 120271 2246 2009-11-25 2010-03-16 190.152.012.218 4539 2245 2010-02-21 2010-03-08 080.038.015.042 4497 2245 2010-02-23 2010-02-27 222.219.094.005 4176 2243 2010-02-16 2010-03-04 074.081.185.075 4743 2243 2010-01-23 2010-02-27 125.230.166.048 2269 2242 2010-03-05 2010-03-06 066.252.062.244 2243 2241 2010-02-13 2010-02-26 012.160.180.130 4174 2238 2010-02-26 2010-02-27 072.029.072.197 4510 2237 2010-02-11 2010-02-22 060.208.113.003 3593 2231 2010-03-05 2010-03-15 187.050.215.236 2291 2231 2010-03-08 2010-03-15 193.029.255.226 67836 2231 2009-12-17 2010-03-09 211.157.108.192 2368 2230 2010-03-09 2010-03-14 146.145.203.094 4431 2229 2010-01-27 2010-03-10 060.191.234.226 2562 2227 2009-12-25 2010-02-23 069.056.080.049 9019 2225 2010-01-14 2010-03-11 079.029.080.124 4092 2223 2010-02-09 2010-03-13 201.159.128.049 9881 2222 2010-01-19 2010-03-10 125.230.148.149 2230 2219 2010-03-01 2010-03-04 061.218.145.174 4435 2218 2010-03-06 2010-03-06 190.068.111.058 4458 2216 2010-03-04 2010-03-05 188.124.007.133 3512 2216 2010-02-20 2010-02-25 201.221.114.189 4207 2215 2010-02-04 2010-03-12 061.164.110.164 14259 2215 2010-02-21 2010-02-23 072.020.102.100 2331 2213 2010-03-05 2010-03-14 121.032.089.227 3211 2213 2010-03-14 2010-03-16 059.162.002.240 3201 2211 2010-01-14 2010-02-18 211.100.049.067 3843 2211 2010-01-17 2010-03-07 060.168.235.134 4351 2210 2010-02-14 2010-02-15 061.163.006.124 4962 2208 2010-01-09 2010-03-03 087.237.186.131 10491 2208 2010-02-20 2010-02-20 211.147.218.163 2228 2207 2010-02-19 2010-02-20 201.006.104.127 217860 2206 2009-11-06 2010-03-12 200.170.102.036 95856 2206 2009-12-15 2010-03-13 218.234.033.027 6435 2206 2010-02-14 2010-03-02 217.155.050.214 115669 2206 2009-12-01 2010-03-14 094.236.134.206 2217 2203 2010-02-26 2010-02-27 061.150.091.053 3095 2202 2010-03-09 2010-03-11 081.248.008.242 3637 2202 2010-03-04 2010-03-15 196.212.063.138 21959 2202 2009-12-13 2010-03-10 069.046.205.160 2262 2201 2009-01-15 2010-03-13 202.106.062.033 4349 2198 2010-01-22 2010-03-16 113.122.232.055 2220 2197 2010-02-25 2010-02-25 189.045.037.187 2365 2197 2010-01-11 2010-03-14 112.078.003.226 6392 2195 2009-11-29 2010-03-16 210.028.095.230 4359 2193 2010-02-07 2010-02-26 069.163.044.143 6969 2191 2009-11-06 2010-03-16 188.072.225.095 3052 2191 2010-02-10 2010-02-28 078.230.236.002 6766 2191 2009-10-21 2010-02-19 062.149.164.118 36918 2190 2009-09-10 2010-03-16 190.208.099.220 4463 2190 2010-02-21 2010-02-21 059.051.114.074 4565 2187 2010-02-27 2010-02-27 062.068.064.026 11165 2185 2009-10-04 2010-03-12 061.191.188.018 6571 2183 2010-01-18 2010-02-23 058.119.235.002 2740 2183 2010-03-12 2010-03-12 063.147.233.011 13564 2179 2010-01-12 2010-03-04 088.191.047.092 3027 2178 2010-02-27 2010-03-03 094.032.079.081 3871 2176 2010-02-20 2010-03-15 189.002.137.210 2313 2174 2010-03-10 2010-03-10 201.238.173.098 52688 2172 2009-12-10 2010-03-16 086.035.054.224 4036 2170 2010-02-12 2010-02-26 080.036.237.112 3979 2169 2010-03-15 2010-03-15 059.093.105.080 2169 2169 2010-01-09 2010-02-27 077.223.143.083 3939 2169 2010-02-28 2010-03-05 079.170.195.139 2741 2168 2010-02-13 2010-03-15 162.039.214.081 8626 2166 2010-02-13 2010-03-08 196.213.088.116 6527 2166 2010-02-26 2010-02-27 218.060.132.104 7846 2164 2010-02-16 2010-02-17 064.130.179.110 15804 2161 2010-02-22 2010-03-07 208.065.219.140 5068 2156 2010-02-18 2010-03-11 212.104.165.019 3078 2155 2010-02-17 2010-02-21 212.049.206.142 4577 2154 2010-02-13 2010-02-27 211.207.205.205 6304 2152 2009-12-08 2010-03-14 195.239.226.076 5583 2150 2010-02-03 2010-03-03 085.207.057.116 6598 2149 2010-02-17 2010-03-05 123.204.043.184 3639 2146 2010-02-21 2010-03-09 066.214.067.099 4639 2146 2010-01-29 2010-02-23 097.077.062.140 3645 2145 2010-03-03 2010-03-12 061.158.162.009 1965077 2144 2009-09-10 2010-03-16 122.252.223.106 3027 2143 2010-01-25 2010-02-20 089.107.228.038 3608 2143 2010-03-01 2010-03-07 128.059.014.103 4898 2140 2010-02-20 2010-03-04 068.161.239.136 13035 2139 2010-03-02 2010-03-13 064.185.052.032 8393 2134 2009-12-10 2010-03-12 066.242.244.099 4584 2132 2009-12-31 2010-03-15 124.207.133.050 3302 2131 2010-03-12 2010-03-13 122.252.223.100 4679 2131 2010-02-07 2010-02-26 116.228.110.050 2172 2130 2009-08-14 2010-03-14 173.212.240.178 3391 2128 2010-02-24 2010-03-15 200.169.015.130 11767 2127 2009-11-15 2010-03-15 200.104.063.106 130732 2124 2010-02-01 2010-03-04 089.179.056.088 3123 2124 2010-03-01 2010-03-15 207.234.185.110 6848 2122 2010-01-08 2010-03-15 204.236.249.103 2177 2121 2010-02-27 2010-02-27 190.003.123.175 4276 2121 2010-02-13 2010-02-25 092.243.021.128 2239 2119 2010-03-09 2010-03-09 125.211.210.009 2745 2119 2010-02-17 2010-02-18 095.087.248.061 5106 2119 2010-01-22 2010-03-05 187.058.017.226 14932 2118 2009-11-09 2010-03-12 077.223.143.092 3916 2118 2010-02-27 2010-02-27 088.030.015.146 4160 2118 2010-02-21 2010-02-21 115.113.087.002 10451 2117 2009-09-27 2010-03-13 062.221.052.157 10888 2115 2010-01-20 2010-03-16 118.069.192.058 74096 2114 2009-10-04 2010-03-01 088.151.069.090 11983 2114 2009-05-29 2010-02-24 061.234.097.115 7241 2111 2010-01-21 2010-03-11 058.167.202.226 2110 2110 2010-03-11 2010-03-11 082.243.000.248 2165 2110 2010-01-10 2010-02-25 211.141.253.241 2109 2109 2010-03-11 2010-03-11 190.008.143.174 6852 2109 2009-10-19 2010-03-15 173.201.176.005 3346 2109 2010-03-12 2010-03-13 089.121.193.114 3733 2108 2010-02-22 2010-02-26 203.130.251.167 2387 2106 2010-02-08 2010-02-15 074.117.063.111 2261 2106 2010-02-27 2010-03-04 060.172.017.034 8945 2102 2010-02-02 2010-02-26 085.185.229.122 8988 2102 2010-03-01 2010-03-09 094.075.216.128 3204 2101 2010-03-01 2010-03-03 094.244.139.180 4226 2099 2010-02-13 2010-03-13 114.141.253.043 6439 2096 2009-03-09 2010-03-15 212.049.095.138 72570 2094 2009-10-30 2010-03-15 116.214.025.066 2887 2089 2010-03-09 2010-03-14 151.100.152.012 2102 2088 2010-03-04 2010-03-07 128.241.093.035 7747 2087 2010-02-26 2010-03-04 187.016.019.004 2702 2087 2010-01-26 2010-02-20 205.209.136.202 8728 2085 2010-02-26 2010-02-27 122.225.057.222 5362 2084 2010-02-11 2010-03-04 064.120.141.202 3195 2084 2010-02-22 2010-03-13 092.099.210.160 80692 2083 2010-01-30 2010-02-28 067.204.197.173 2104 2082 2010-02-12 2010-02-15 216.236.180.181 7328 2082 2010-02-03 2010-03-12 089.221.022.155 8645 2081 2010-02-27 2010-03-12 118.168.142.031 5817 2077 2010-03-12 2010-03-13 208.096.029.242 2074 2074 2010-02-24 2010-02-24 060.190.139.085 2443 2074 2010-03-03 2010-03-06 218.010.211.210 2149 2074 2010-01-30 2010-03-03 209.011.242.122 3413 2072 2010-02-16 2010-03-14 068.150.210.224 6813 2072 2010-02-03 2010-02-16 058.006.149.155 3459 2070 2010-01-28 2010-02-15 074.246.172.187 32614 2069 2009-12-08 2010-03-16 221.209.235.144 2104 2067 2010-02-28 2010-03-12 118.175.028.012 7759 2067 2009-12-22 2010-03-15 193.231.068.237 4126 2066 2010-02-20 2010-02-22 220.231.155.168 29316 2064 2009-10-14 2010-02-22 218.030.019.048 2541 2063 2009-12-13 2010-03-15 061.176.218.017 2166 2060 2010-02-17 2010-02-18 174.139.096.082 5637 2058 2010-03-14 2010-03-15 201.240.139.188 2057 2057 2010-03-05 2010-03-05 204.236.206.235 2374 2057 2010-03-03 2010-03-03 064.025.064.017 2214 2056 2010-03-11 2010-03-13 202.029.076.066 16319 2056 2010-02-03 2010-03-08 213.169.172.205 6281 2056 2010-01-29 2010-02-16 218.094.074.200 13974 2056 2010-01-21 2010-03-13 201.020.186.222 3466 2055 2010-02-21 2010-03-03 061.067.112.031 7905 2052 2009-10-16 2010-03-11 218.030.056.045 2464 2052 2009-12-02 2010-02-25 075.101.228.177 2676 2052 2010-03-11 2010-03-12 085.097.129.209 4033 2051 2010-02-27 2010-03-01 089.106.008.046 6404 2049 2009-12-21 2010-03-15 095.130.173.066 3531 2048 2010-02-20 2010-02-22 186.121.042.064 4064 2047 2010-02-15 2010-02-24 201.122.078.249 97264 2047 2009-10-21 2010-03-12 080.245.118.242 2440 2047 2010-01-14 2010-03-14 202.183.165.090 2234 2046 2010-02-21 2010-02-23 024.023.081.215 2088 2046 2010-02-02 2010-03-07 077.233.224.041 2046 2045 2010-02-19 2010-03-08 202.108.034.231 41039 2044 2009-03-23 2010-03-16 080.191.222.188 2108 2043 2010-03-03 2010-03-03 187.067.020.134 87435 2043 2009-11-13 2010-03-15 095.110.131.104 141569 2042 2010-01-31 2010-03-06 088.249.004.065 26761 2042 2009-08-11 2010-03-15 078.189.170.101 102650 2041 2009-11-27 2010-03-03 070.071.136.217 2078 2038 2009-11-15 2010-02-22 206.135.214.071 7046 2038 2009-12-06 2010-03-12 093.067.001.165 2082 2037 2009-06-05 2010-03-14 091.208.242.004 59516 2037 2010-01-26 2010-03-05 202.029.076.069 6167 2032 2010-02-02 2010-03-08 173.163.209.025 183833 2028 2010-01-20 2010-03-16 201.059.145.194 73789 2027 2010-02-10 2010-03-15 085.037.038.220 3595 2026 2009-12-24 2010-03-12 195.074.091.114 28898 2025 2009-11-28 2010-03-16 059.124.068.145 2257 2025 2009-02-03 2010-03-11 116.048.147.075 4180 2025 2009-05-01 2010-03-11 208.095.095.189 7899 2024 2009-09-10 2010-03-12 173.192.215.021 3141 2022 2010-02-22 2010-03-16 121.011.086.073 16670 2022 2010-03-03 2010-03-08 222.087.129.124 2406 2020 2010-02-08 2010-03-07 059.120.179.107 3863 2020 2009-12-23 2010-03-11 122.224.143.181 2119 2017 2010-03-06 2010-03-06 078.026.128.146 10762 2017 2009-10-23 2010-03-15 184.073.055.119 3017 2015 2010-03-02 2010-03-09 071.183.086.041 2516 2015 2010-02-21 2010-03-05 094.102.000.049 3355 2014 2010-02-26 2010-02-26 188.034.254.134 11855 2012 2010-01-09 2010-03-11 190.068.225.130 6214 2012 2010-01-29 2010-02-18 200.168.125.031 7032 2011 2010-02-13 2010-03-12 211.147.222.079 2899 2010 2010-01-30 2010-03-02 096.027.000.139 2056 2010 2010-02-07 2010-03-15 041.207.105.166 9523 2010 2010-01-20 2010-03-11 216.245.204.117 3844 2009 2010-02-17 2010-02-23 202.105.113.114 4595 2009 2009-12-21 2010-03-02 066.197.195.230 3492 2008 2010-02-09 2010-02-25 190.202.118.082 5178 2007 2009-12-14 2010-03-16 067.055.242.050 3609 2006 2009-12-26 2010-03-06 088.255.239.062 3936 2005 2010-02-02 2010-03-03 087.247.122.011 6905 2003 2010-02-10 2010-03-10 084.023.037.045 2008 2001 2010-02-23 2010-02-23 190.011.157.181 3258 1995 2010-02-12 2010-02-19 066.170.215.111 4443 1994 2010-02-05 2010-03-14 079.133.193.170 3930 1991 2010-03-03 2010-03-03 089.042.143.249 5276 1990 2009-11-09 2010-03-05 124.225.122.168 3764 1990 2010-03-04 2010-03-12 190.144.099.011 2016 1988 2010-02-23 2010-03-06 220.165.251.248 6501 1986 2010-03-03 2010-03-15 089.107.228.085 2510 1985 2010-02-07 2010-03-10 151.100.004.054 3960 1982 2010-03-12 2010-03-12 202.119.081.124 2193 1979 2010-02-24 2010-02-25 219.148.108.169 312270 1978 2010-01-26 2010-03-04 061.019.249.207 42785 1978 2010-02-12 2010-02-26 217.218.246.002 3485 1977 2010-02-22 2010-03-10 088.189.063.057 3025 1976 2010-02-08 2010-02-21 121.101.209.103 2278 1976 2010-03-04 2010-03-11 202.067.159.088 1991 1976 2010-03-08 2010-03-08 222.186.025.029 9090 1975 2010-03-15 2010-03-16 186.082.180.217 5881 1974 2010-02-21 2010-02-22 124.042.081.041 2547 1974 2010-02-13 2010-02-19 164.077.232.083 4639 1974 2009-11-08 2010-03-16 093.184.233.059 1975 1973 2010-03-01 2010-03-11 189.019.047.156 9162 1972 2010-02-11 2010-03-16 111.067.200.121 2659 1971 2010-02-16 2010-03-09 066.241.066.199 2888 1970 2010-03-05 2010-03-12 061.178.014.125 2977 1969 2009-12-19 2010-03-01 190.159.094.180 3836 1969 2010-02-21 2010-02-22 061.158.163.242 2285 1968 2010-03-03 2010-03-07 062.087.220.035 2149 1966 2010-02-02 2010-02-22 190.208.076.050 3976 1963 2010-02-21 2010-02-26 202.113.016.118 3712 1962 2010-02-18 2010-03-15 063.252.242.209 10053 1961 2009-11-15 2010-02-23 121.014.153.168 466134 1960 2010-02-15 2010-03-16 200.123.124.172 3331 1955 2010-02-26 2010-02-26 204.213.057.040 3704 1953 2010-02-16 2010-03-15 059.023.233.063 7442 1952 2009-12-08 2010-03-15 201.160.015.076 5310 1952 2010-02-17 2010-03-13 211.154.136.163 10850 1951 2010-03-07 2010-03-14 211.215.022.222 6183 1951 2010-01-24 2010-02-26 211.144.086.221 2063 1951 2010-03-10 2010-03-14 148.223.175.005 9404 1951 2009-12-21 2010-03-08 074.207.249.224 6209 1950 2009-10-18 2010-03-15 203.197.117.249 10027 1950 2009-12-12 2010-03-11 115.238.042.060 5520 1950 2009-09-13 2010-03-04 111.221.044.040 2595 1946 2010-02-27 2010-03-15 123.055.201.099 3360 1946 2009-11-27 2010-02-26 060.206.016.157 2060 1945 2010-02-18 2010-02-18 012.069.254.009 2100 1943 2010-01-10 2010-03-10 116.236.136.006 3229 1943 2010-02-14 2010-02-24 098.247.128.135 1981 1941 2010-03-05 2010-03-16 222.035.039.238 7049 1941 2010-02-09 2010-03-12 122.160.112.237 2003 1940 2010-03-12 2010-03-12 115.113.061.013 9995 1939 2009-11-22 2010-03-10 200.085.092.182 2112 1938 2010-03-08 2010-03-08 115.238.073.075 12408 1937 2010-01-18 2010-02-17 059.053.091.103 4556 1937 2010-02-22 2010-02-22 186.009.085.009 2284 1937 2010-02-16 2010-02-16 085.122.132.050 2221 1933 2010-03-10 2010-03-14 065.090.114.067 3802 1932 2010-02-22 2010-03-04 089.019.007.114 1932 1932 2010-03-10 2010-03-11 094.244.169.142 3925 1930 2009-12-22 2010-02-28 211.095.072.088 7949 1929 2010-02-24 2010-02-24 071.039.233.230 9156 1926 2010-03-07 2010-03-12 221.192.131.055 1991 1924 2010-03-12 2010-03-13 221.176.184.228 1930 1922 2010-03-15 2010-03-15 072.027.157.049 6760 1921 2010-01-04 2010-03-11 093.179.140.026 4282 1919 2010-02-27 2010-03-04 062.219.227.088 4491 1919 2010-01-27 2010-03-09 120.195.117.105 90266 1918 2009-12-22 2010-03-12 087.117.198.151 16294 1917 2010-02-24 2010-03-09 125.046.062.188 1945 1917 2010-03-06 2010-03-07 200.066.106.164 3944 1916 2010-01-11 2010-03-04 209.005.118.234 3689 1915 2010-02-23 2010-02-24 203.045.088.186 6197 1913 2010-01-28 2010-03-09 058.062.113.234 2080 1910 2010-02-01 2010-02-28 060.055.214.010 2021 1909 2010-02-03 2010-02-19 066.149.177.028 154136 1909 2009-10-31 2010-03-04 206.251.036.253 1909 1909 2010-03-04 2010-03-04 083.137.058.126 6264 1909 2010-01-12 2010-03-14 069.012.218.145 2456 1908 2010-02-27 2010-03-07 219.152.149.196 1948 1906 2010-03-05 2010-03-05 064.158.146.003 22076 1905 2010-01-13 2010-03-11 081.200.168.058 2011 1904 2010-01-30 2010-03-02 121.153.150.181 11059 1903 2009-12-30 2010-03-07 119.073.249.177 1937 1902 2010-03-09 2010-03-09 096.009.170.012 3910 1902 2010-03-03 2010-03-12 207.150.242.106 7178 1901 2010-02-03 2010-03-14 190.209.151.254 3867 1899 2010-02-21 2010-02-26 190.209.172.043 3924 1897 2010-02-09 2010-02-21 082.230.138.236 8744 1897 2010-02-08 2010-03-10 202.102.203.149 5322 1896 2009-12-12 2010-03-16 094.229.035.232 1978 1896 2010-03-03 2010-03-05 083.167.106.162 4521 1896 2010-01-03 2010-03-05 207.036.209.221 2112 1895 2010-03-01 2010-03-02 075.101.235.038 4720 1895 2010-03-05 2010-03-07 193.194.082.045 63109 1892 2010-01-19 2010-03-01 061.176.216.084 16261 1892 2010-01-24 2010-03-07 195.101.203.162 8571 1891 2010-02-14 2010-03-11 190.208.125.010 5717 1889 2010-02-21 2010-02-21 220.202.030.074 3742 1886 2010-01-30 2010-03-08 070.083.109.122 1952 1885 2010-02-07 2010-03-04 174.037.095.194 5362 1885 2010-03-10 2010-03-10 218.104.071.166 21507 1881 2008-02-20 2010-03-10 089.242.000.239 19288 1881 2010-02-01 2010-03-14 060.019.028.088 3771 1879 2010-02-24 2010-03-09 068.178.097.188 8874 1879 2010-02-21 2010-03-11 200.091.200.115 3369 1878 2009-12-08 2010-03-10 069.015.091.210 2027 1878 2010-02-14 2010-02-15 061.155.170.140 2940 1878 2010-03-10 2010-03-15 121.010.002.050 8118 1877 2010-02-01 2010-03-11 217.146.209.211 57841 1874 2010-02-01 2010-03-13 186.018.254.230 2060 1872 2010-02-24 2010-02-24 062.149.201.229 3136 1872 2010-03-04 2010-03-08 196.202.232.249 3604 1871 2008-07-09 2010-03-15 109.068.232.042 2904 1871 2009-11-23 2010-03-16 124.011.187.012 1888 1871 2010-03-09 2010-03-09 158.130.063.084 8228 1870 2010-02-18 2010-03-12 219.223.242.245 5843 1869 2010-02-18 2010-02-21 078.008.208.006 4048 1868 2010-01-21 2010-02-14 110.045.150.006 3207 1868 2010-01-05 2010-03-10 218.249.196.005 3832 1867 2009-11-23 2010-02-21 221.218.248.246 3818 1867 2009-12-14 2010-02-21 076.191.100.011 3409 1864 2010-03-08 2010-03-12 118.123.015.125 2618 1862 2010-02-20 2010-02-22 220.096.248.049 1893 1862 2010-02-25 2010-02-25 062.149.160.163 5457 1861 2010-02-22 2010-03-15 190.247.038.083 1921 1859 2010-03-04 2010-03-06 066.104.254.094 9284 1859 2010-01-25 2010-03-11 187.050.182.066 65109 1859 2009-11-10 2010-03-16 062.215.224.003 2542 1858 2010-01-09 2010-03-16 058.133.211.252 3774 1857 2010-01-08 2010-02-18 091.098.134.049 2619 1853 2010-03-03 2010-03-07 072.045.228.094 12658 1852 2010-02-10 2010-03-11 208.131.175.024 7990 1848 2009-12-12 2010-03-10 141.152.244.035 1883 1846 2009-10-22 2010-02-26 122.170.122.171 2839 1845 2010-02-02 2010-02-26 190.002.046.242 6203 1844 2009-07-21 2010-03-14 174.123.102.026 3761 1842 2010-01-20 2010-03-04 124.061.199.041 1930 1841 2010-03-11 2010-03-11 075.148.095.140 4106 1838 2009-12-20 2010-03-13 204.045.036.075 14980 1838 2010-02-19 2010-03-14 187.028.196.066 9980 1837 2009-10-23 2010-03-14 091.210.104.114 13178 1836 2010-02-14 2010-03-14 070.046.075.226 13767 1835 2009-05-25 2010-03-15 059.124.207.133 5226 1835 2009-12-01 2010-02-19 064.188.187.198 6958 1835 2010-02-03 2010-02-20 082.232.015.250 2768 1834 2010-03-05 2010-03-09 115.238.054.247 2344 1833 2010-03-10 2010-03-14 222.184.008.070 1851 1832 2010-03-04 2010-03-04 088.080.216.124 3909 1831 2010-02-20 2010-02-22 067.019.051.242 7921 1830 2010-01-04 2010-02-15 210.001.012.216 3046 1829 2010-02-09 2010-03-13 211.239.014.041 3089 1828 2010-02-16 2010-02-27 062.117.117.068 3490 1827 2010-02-08 2010-02-14 082.227.174.075 8531 1826 2009-11-12 2010-03-08 072.244.093.050 7395 1826 2009-11-23 2010-03-12 069.174.245.179 2357 1823 2010-03-07 2010-03-11 060.028.178.010 3012 1821 2010-02-27 2010-03-09 211.143.037.040 1980 1821 2010-02-27 2010-03-11 212.183.220.210 3679 1820 2010-02-21 2010-02-21 099.035.080.098 1851 1820 2009-06-18 2010-03-13 218.056.061.122 3560 1820 2009-12-13 2010-02-24 062.149.160.225 5482 1820 2010-02-22 2010-03-16 041.223.030.022 32370 1818 2010-01-23 2010-03-12 212.118.005.146 3520 1817 2010-01-02 2010-03-10 148.243.241.248 6929 1816 2010-01-10 2010-02-15 077.095.162.070 4526 1815 2010-02-01 2010-03-14 212.142.046.242 5324 1815 2010-02-21 2010-03-12 083.170.102.100 2359 1815 2010-02-15 2010-03-08 222.178.087.241 5083 1815 2010-02-23 2010-03-16 117.034.070.062 2203 1814 2010-03-08 2010-03-14 079.187.091.166 3544 1814 2010-03-03 2010-03-09 192.168.000.121 89315 1813 2009-11-10 2010-03-15 088.103.076.019 6151 1813 2010-01-07 2010-02-27 078.187.207.161 20293 1812 2010-01-19 2010-02-17 060.251.083.106 2487 1809 2010-02-15 2010-02-20 123.027.252.002 1830 1808 2010-03-04 2010-03-04 221.013.128.175 11994 1808 2009-11-04 2010-03-11 201.073.210.162 15552 1807 2009-12-28 2010-03-15 201.086.238.083 9642 1806 2009-11-16 2010-03-14 202.118.212.120 1837 1804 2010-03-11 2010-03-15 118.045.019.148 2061 1800 2010-02-23 2010-02-23 174.129.059.137 1835 1800 2010-03-10 2010-03-12 200.201.180.130 3066 1800 2009-11-29 2010-03-11 202.173.213.009 2016 1799 2010-02-14 2010-03-15 216.246.031.103 2034 1798 2010-03-10 2010-03-15 112.140.185.159 2017 1798 2010-03-15 2010-03-15 075.141.184.003 2577 1798 2009-02-11 2010-03-16 064.181.121.186 5496 1798 2009-11-16 2010-03-01 012.177.192.241 6890 1797 2010-02-09 2010-03-13 119.167.225.133 2320 1797 2010-02-13 2010-02-18 122.227.030.035 1892 1797 2009-10-03 2010-02-23 070.076.003.018 5178 1797 2010-02-06 2010-03-15 064.238.253.098 17114 1795 2010-02-26 2010-03-15 201.162.007.007 3607 1795 2010-02-17 2010-02-26 065.183.247.205 1796 1794 2010-01-31 2010-02-24 212.034.135.031 6590 1794 2010-02-19 2010-02-20 196.202.144.015 5084 1791 2009-08-31 2010-03-13 069.164.208.051 5708 1789 2009-10-29 2010-03-16 064.022.103.062 1788 1788 2010-03-13 2010-03-13 064.085.156.044 14905 1788 2010-03-05 2010-03-16 208.101.225.012 2595 1786 2009-11-17 2010-03-16 081.218.238.021 3590 1786 2010-02-14 2010-03-04 059.120.233.062 3855 1786 2010-02-18 2010-02-18 221.208.172.054 12580 1785 2010-01-13 2010-03-10 115.182.034.034 4465 1784 2010-03-01 2010-03-02 222.236.044.099 3375 1784 2010-01-24 2010-03-01 184.073.004.207 2409 1784 2010-02-23 2010-02-23 064.109.183.150 3495 1783 2010-02-13 2010-03-12 060.242.163.017 6344 1783 2010-01-10 2010-03-03 074.052.023.098 4529 1781 2010-01-03 2010-03-07 125.211.221.144 10061 1780 2010-03-03 2010-03-06 208.064.226.073 3054 1780 2010-02-23 2010-03-09 113.031.027.142 2017 1778 2010-02-18 2010-02-18 085.066.110.019 1944 1778 2010-02-11 2010-02-16 082.227.028.026 7409 1777 2010-01-27 2010-03-09 067.204.240.080 2182 1777 2009-11-26 2010-02-17 200.251.144.147 5575 1777 2009-06-13 2010-02-18 076.073.049.066 15788 1776 2010-02-21 2010-03-09 202.082.228.094 30129 1774 2010-02-01 2010-03-16 093.191.041.174 3321 1774 2010-02-26 2010-03-01 082.201.183.246 5038 1772 2009-12-16 2010-02-18 061.146.115.071 2454 1770 2010-03-10 2010-03-11 124.148.086.098 1770 1769 2010-02-21 2010-03-10 203.129.217.005 95153 1769 2010-01-21 2010-03-12 209.160.024.108 3395 1769 2010-03-11 2010-03-14 116.048.156.211 4410 1768 2010-03-04 2010-03-14 066.099.250.008 1936 1767 2010-03-10 2010-03-16 071.111.116.090 3382 1766 2010-03-05 2010-03-08 201.076.044.009 14457 1766 2010-02-16 2010-02-17 200.067.173.105 61495 1765 2009-09-07 2010-03-12 096.009.154.125 3406 1765 2010-03-06 2010-03-06 081.168.131.010 6838 1764 2009-10-09 2010-03-04 058.252.060.232 2173 1764 2010-02-16 2010-03-07 210.050.090.102 3765 1764 2009-09-07 2010-03-16 174.132.030.162 5132 1763 2010-02-11 2010-02-27 204.111.078.207 4489 1763 2010-02-16 2010-03-13 200.161.016.060 5998 1761 2010-02-04 2010-03-08 151.069.158.115 1787 1759 2009-05-15 2010-03-16 124.007.152.012 1856 1759 2010-02-11 2010-03-15 060.018.168.108 2315 1754 2008-05-14 2010-03-11 060.170.082.061 1774 1754 2009-10-14 2010-03-13 211.099.250.200 1789 1754 2010-03-07 2010-03-07 201.073.141.117 4239 1752 2009-07-22 2010-03-15 218.006.169.045 1888 1750 2010-03-07 2010-03-08 062.215.220.092 3435 1750 2010-03-05 2010-03-16 078.176.125.177 1795 1749 2010-02-14 2010-02-14 200.233.168.151 1800 1748 2010-02-14 2010-02-15 067.066.115.141 3464 1748 2010-01-07 2010-02-14 097.097.205.190 5376 1747 2009-11-12 2010-03-01 122.154.018.068 1814 1747 2010-02-14 2010-02-15 222.175.171.050 1982 1744 2010-02-19 2010-02-26 072.055.164.024 10702 1744 2009-12-29 2010-02-15 122.169.241.194 1852 1743 2009-12-12 2010-03-06 122.117.056.175 4521 1741 2009-10-09 2010-03-04 211.151.032.204 1929 1740 2010-02-07 2010-02-21 211.021.086.162 2126 1738 2010-03-10 2010-03-10 064.216.139.081 17071 1738 2009-10-18 2010-03-11 064.245.145.040 3571 1737 2009-12-25 2010-02-20 219.085.135.203 18158 1737 2010-02-21 2010-03-13 091.135.164.206 3372 1736 2010-03-07 2010-03-09 151.011.056.170 3237 1736 2010-03-04 2010-03-04 203.200.081.104 3153 1735 2010-02-24 2010-02-24 061.177.042.228 3318 1733 2009-12-07 2010-02-15 210.051.184.056 1854 1733 2010-02-05 2010-03-16 200.008.172.013 3369 1732 2010-02-24 2010-02-28 187.045.218.189 4038 1730 2010-02-05 2010-03-02 200.142.097.182 4125 1728 2010-01-29 2010-03-16 213.161.144.097 2877 1728 2010-02-02 2010-02-17 190.142.160.029 3187 1728 2010-02-26 2010-03-05 068.080.155.184 1759 1725 2010-02-22 2010-02-22 124.207.200.102 1754 1725 2010-01-20 2010-03-11 059.063.025.160 1724 1723 2010-03-09 2010-03-10 083.242.228.018 3367 1722 2010-01-15 2010-03-11 129.049.007.012 1722 1722 2010-03-09 2010-03-11 064.033.252.196 23505 1719 2009-09-13 2010-03-06 203.101.108.073 3216 1719 2010-01-09 2010-03-13 209.062.115.038 1809 1718 2010-03-10 2010-03-10 069.247.018.130 1732 1718 2010-01-26 2010-03-13 217.195.203.101 1775 1716 2010-03-03 2010-03-09 195.060.226.130 2484 1715 2010-03-05 2010-03-09 147.027.016.072 6897 1715 2009-12-09 2010-03-11 024.021.080.214 3461 1715 2010-03-12 2010-03-13 173.045.067.074 2037 1714 2010-03-03 2010-03-08 064.244.009.040 3389 1714 2010-01-23 2010-03-06 109.123.078.187 1981 1714 2010-02-15 2010-03-09 118.168.118.047 1858 1711 2010-02-19 2010-02-19 064.179.185.147 13902 1710 2010-02-12 2010-03-11 091.210.104.148 3773 1709 2010-02-19 2010-03-06 209.003.241.251 3552 1709 2010-02-12 2010-02-17 078.063.116.111 7327 1709 2009-12-19 2010-03-13 222.124.197.186 16713 1708 2010-02-18 2010-03-10 202.143.148.012 2440 1708 2010-02-26 2010-03-07 064.038.082.009 26707 1707 2010-02-05 2010-03-16 064.188.211.069 19640 1704 2010-02-17 2010-03-11 124.207.243.017 5961 1704 2010-02-16 2010-02-27 024.106.224.195 5678 1702 2010-02-18 2010-03-14 064.061.068.067 21461 1702 2009-11-16 2010-03-15 064.183.024.113 15648 1701 2009-12-12 2010-03-15 201.162.003.092 3375 1701 2010-02-18 2010-02-28 219.137.026.210 3382 1699 2010-02-14 2010-02-24 064.218.048.244 11443 1698 2010-02-07 2010-02-14 141.085.252.210 4645 1697 2010-01-14 2010-03-09 061.164.117.081 2052 1697 2010-02-25 2010-02-26 064.038.086.220 15726 1697 2010-02-20 2010-03-16 065.111.164.040 2898 1697 2010-02-11 2010-02-16 112.149.017.110 2850 1696 2010-01-08 2010-02-18 131.178.006.007 2980 1696 2009-11-25 2010-03-06 152.092.197.119 2533 1696 2010-03-08 2010-03-11 094.023.045.220 17483 1696 2010-02-19 2010-02-22 219.148.108.142 1721 1695 2010-01-27 2010-03-07 062.176.008.076 3390 1695 2010-02-28 2010-03-01 062.002.114.214 15913 1694 2010-01-25 2010-03-04 066.232.103.198 2124 1694 2010-02-15 2010-02-16 061.222.104.222 6128 1693 2010-02-04 2010-02-26 075.134.086.234 2024 1693 2010-03-03 2010-03-10 070.016.199.243 5350 1693 2010-02-12 2010-02-23 203.206.233.214 2249 1692 2010-01-18 2010-03-03 218.240.040.108 3743 1692 2010-01-25 2010-03-06 202.100.093.103 2330 1691 2010-01-27 2010-02-27 024.244.142.209 1756 1691 2010-02-11 2010-02-21 077.093.192.158 1691 1691 2010-03-03 2010-03-03 072.054.139.102 1732 1691 2010-01-20 2010-02-16 071.251.102.037 5709 1689 2010-02-09 2010-03-03 206.161.096.189 4844 1688 2010-01-24 2010-03-15 210.017.183.099 2048 1688 2010-03-05 2010-03-09 121.009.241.091 3348 1688 2010-02-28 2010-03-11 114.207.113.139 2421 1687 2010-02-20 2010-03-12 125.088.123.220 3371 1686 2009-11-01 2010-03-15 190.003.079.039 4193 1685 2009-11-12 2010-03-15 076.191.102.152 2373 1684 2010-01-11 2010-02-21 064.004.097.003 14502 1684 2010-02-28 2010-03-16 069.074.205.020 3359 1681 2010-02-23 2010-03-11 064.111.040.212 14387 1681 2010-02-23 2010-03-16 064.183.252.151 3362 1681 2010-03-02 2010-03-12 063.246.136.026 1702 1681 2010-02-16 2010-02-17 064.038.087.178 16954 1681 2010-02-22 2010-03-16 064.138.254.245 13892 1680 2010-01-30 2010-02-28 064.221.059.233 13170 1680 2010-02-07 2010-02-14 064.004.099.153 12866 1679 2010-02-22 2010-02-26 071.118.010.105 18888 1677 2009-06-29 2010-03-15 190.209.168.153 3407 1675 2010-02-21 2010-02-21 067.202.094.093 2727 1675 2010-01-05 2010-03-04 071.106.002.232 17826 1674 2009-10-28 2010-03-14 201.116.041.002 3330 1674 2010-03-07 2010-03-09 202.131.146.229 1699 1674 2010-02-28 2010-03-01 204.008.034.090 4013 1674 2010-02-21 2010-03-03 064.209.129.016 6280 1673 2010-02-09 2010-02-17 064.202.055.117 11335 1671 2010-02-06 2010-03-13 124.207.215.189 2133 1670 2010-03-08 2010-03-09 196.202.031.178 25159 1669 2009-08-04 2010-03-15 209.133.084.174 1779 1669 2010-02-13 2010-02-15 222.239.076.105 3209 1669 2010-01-23 2010-03-13 065.114.211.170 33122 1669 2009-12-23 2010-03-11 208.069.231.030 6620 1667 2010-02-28 2010-03-02 097.077.062.143 1732 1667 2010-03-09 2010-03-13 213.175.200.134 2065 1667 2010-03-01 2010-03-03 193.219.160.125 1982 1667 2010-02-18 2010-02-23 064.053.013.038 10097 1666 2010-02-19 2010-03-03 219.235.226.185 1729 1665 2010-02-10 2010-02-26 064.205.235.124 3235 1664 2010-03-08 2010-03-08 082.173.185.158 6164 1664 2010-02-20 2010-03-02 201.216.023.114 3356 1664 2010-02-21 2010-02-21 088.146.189.172 3914 1664 2010-02-19 2010-02-19 211.154.132.172 44651 1664 2010-01-23 2010-03-16 081.093.250.126 4610 1663 2010-01-26 2010-03-07 064.211.063.163 6056 1663 2010-02-24 2010-03-02 012.135.045.131 1745 1661 2009-09-17 2010-03-12 086.155.206.037 1662 1661 2010-02-14 2010-02-26 186.080.032.132 1806 1661 2010-03-12 2010-03-15 067.019.103.250 1961 1660 2010-03-11 2010-03-11 064.234.020.234 6732 1659 2010-02-11 2010-02-17 064.244.005.254 4954 1658 2010-03-03 2010-03-05 149.075.200.005 10683 1657 2009-09-26 2010-03-12 064.085.155.042 11864 1657 2009-08-19 2010-03-15 072.055.148.004 2773 1655 2010-02-17 2010-03-04 168.126.028.024 2566 1655 2010-02-06 2010-02-18 064.183.178.239 1665 1655 2010-02-28 2010-03-01 133.091.104.011 2549 1655 2010-02-17 2010-02-17 063.138.247.050 3281 1654 2010-03-11 2010-03-12 064.158.162.214 25187 1653 2010-02-03 2010-03-11 064.128.225.149 12334 1653 2010-01-28 2010-03-09 064.244.255.114 2331 1653 2010-03-02 2010-03-03 061.191.061.222 2544 1652 2010-03-02 2010-03-02 064.191.003.216 2908 1652 2010-02-15 2010-03-15 201.197.106.161 1655 1652 2010-02-04 2010-02-18 190.012.155.147 3335 1652 2009-07-20 2010-03-08 063.110.085.066 5252 1650 2010-02-11 2010-03-11 066.056.177.102 1649 1649 2010-02-27 2010-03-15 063.251.148.020 7657 1648 2010-02-25 2010-03-09 064.188.255.148 12116 1647 2010-02-18 2010-03-16 064.169.030.004 2296 1647 2010-02-26 2010-03-02 064.204.018.202 1646 1646 2010-03-08 2010-03-08 206.162.143.060 3330 1645 2010-01-09 2010-03-08 217.195.056.102 3159 1644 2010-01-15 2010-02-21 200.029.182.217 54666 1644 2010-01-08 2010-02-27 060.029.156.078 6197 1643 2010-01-21 2010-03-09 064.222.075.141 9493 1643 2010-02-04 2010-03-12 221.199.184.026 2320 1642 2010-02-18 2010-02-24 207.034.153.054 2707 1642 2010-02-09 2010-02-19 199.019.031.099 1641 1641 2010-02-03 2010-02-18 064.210.112.002 5952 1641 2010-02-14 2010-03-04 074.063.102.024 1654 1641 2010-02-18 2010-02-18 201.120.003.180 1664 1641 2010-02-26 2010-03-09 064.138.239.122 11709 1641 2010-02-23 2010-03-15 080.191.015.048 3158 1641 2010-03-03 2010-03-09 218.104.050.092 1653 1641 2010-03-09 2010-03-11 209.191.139.240 5082 1640 2010-03-05 2010-03-05 157.252.100.166 1698 1639 2010-01-10 2010-03-15 099.144.227.121 3280 1639 2010-02-22 2010-02-22 222.179.188.178 44450 1638 2010-02-25 2010-03-16 064.213.217.059 3987 1637 2010-03-10 2010-03-12 213.073.112.065 3373 1637 2010-02-14 2010-02-14 204.111.067.162 2766 1637 2010-01-15 2010-03-10 064.122.040.107 7930 1636 2010-02-26 2010-03-16 064.234.057.246 1751 1634 2010-03-15 2010-03-15 064.130.102.060 7275 1634 2010-01-14 2010-03-15 163.121.024.122 7057 1633 2009-05-07 2010-03-10 077.061.243.147 6253 1633 2010-01-18 2010-03-02 203.171.230.141 1799 1633 2009-12-27 2010-02-18 189.058.238.105 3313 1633 2010-03-10 2010-03-10 064.132.070.062 4297 1632 2010-02-15 2010-02-17 087.210.041.171 3122 1631 2010-02-09 2010-02-19 064.130.097.137 2213 1631 2010-02-16 2010-02-21 088.185.244.109 4757 1630 2009-12-02 2010-03-06 063.028.122.116 1642 1630 2010-02-28 2010-02-28 218.234.244.230 4321 1630 2010-02-22 2010-02-22 059.052.028.151 1857 1630 2010-03-14 2010-03-15 186.136.209.163 3291 1629 2010-02-06 2010-03-04 041.222.000.194 2835 1629 2010-01-24 2010-03-10 063.245.114.014 1767 1629 2010-02-12 2010-02-18 064.244.157.139 1701 1627 2010-03-03 2010-03-03 064.120.165.201 1668 1627 2010-02-09 2010-02-17 060.054.235.066 5698 1627 2010-02-14 2010-02-25 077.222.006.076 3897 1627 2010-02-26 2010-02-26 061.147.110.045 1677 1627 2010-02-28 2010-03-01 218.098.000.253 3199 1626 2010-02-08 2010-03-10 208.070.160.043 1922 1625 2010-02-28 2010-03-04 112.090.176.002 1650 1625 2010-02-19 2010-02-19 060.190.203.107 14229 1624 2010-03-11 2010-03-16 083.016.081.250 3214 1622 2010-02-28 2010-03-01 201.158.076.150 3290 1622 2010-02-21 2010-02-24 064.138.224.188 1698 1622 2010-03-09 2010-03-11 024.076.094.032 7141 1621 2010-02-27 2010-03-12 216.137.096.009 2124 1620 2010-03-10 2010-03-11 125.161.244.086 1622 1620 2010-03-04 2010-03-07 080.033.014.097 1628 1619 2010-03-02 2010-03-03 149.169.013.242 3227 1619 2010-02-24 2010-03-07 204.111.065.067 5922 1619 2010-02-14 2010-02-24 089.248.104.021 4672 1618 2009-09-02 2010-03-13 088.208.228.029 6342 1618 2010-03-03 2010-03-06 200.184.042.201 3292 1618 2007-12-12 2010-03-16 189.010.082.102 5518 1617 2010-02-18 2010-03-10 063.197.197.162 3233 1617 2010-03-10 2010-03-11 060.190.020.038 11315 1615 2010-01-16 2010-03-09 218.060.128.144 1724 1614 2010-02-22 2010-02-22 058.023.127.024 33661 1613 2010-02-24 2010-03-14 212.119.224.138 6254 1613 2009-07-06 2010-02-17 081.022.099.085 3079 1612 2010-03-16 2010-03-16 200.161.013.104 4564 1612 2010-02-11 2010-02-28 058.068.119.187 3873 1612 2009-12-18 2010-02-19 041.178.231.206 4568 1611 2009-12-28 2010-03-13 068.064.050.005 1618 1611 2010-02-28 2010-03-10 204.116.006.136 1622 1610 2010-02-10 2010-02-17 094.073.052.232 1837 1609 2009-12-09 2010-03-08 062.140.022.111 2120 1608 2010-02-08 2010-02-27 064.186.065.111 2845 1607 2010-03-10 2010-03-10 190.144.087.146 5110 1607 2009-06-10 2010-03-11 196.025.029.206 3118 1607 2010-01-06 2010-03-08 065.208.122.048 2537 1606 2010-01-02 2010-03-15 200.061.165.065 3201 1606 2010-02-23 2010-03-07 092.104.070.147 4280 1605 2010-01-12 2010-03-12 067.063.032.249 4354 1605 2010-02-20 2010-02-23 210.116.109.010 1853 1605 2010-02-06 2010-02-18 200.106.075.213 1604 1604 2010-02-16 2010-02-22 210.245.002.232 2205 1602 2010-03-05 2010-03-10 172.016.001.066 1786 1601 2009-11-04 2010-03-15 189.033.002.022 52430 1601 2010-02-19 2010-03-15 123.215.184.251 7732 1600 2009-08-20 2010-02-24 209.170.076.129 10591 1599 2010-03-10 2010-03-11 122.155.016.053 1923 1599 2010-03-01 2010-03-02 064.003.140.087 4231 1599 2010-03-06 2010-03-07 212.181.010.230 20505 1598 2010-02-24 2010-03-07 066.172.250.185 9362 1597 2010-03-04 2010-03-13 193.233.069.054 68315 1597 2010-01-21 2010-03-08 064.139.236.062 1632 1597 2010-03-02 2010-03-02 190.040.109.071 1597 1597 2010-02-26 2010-03-06 071.008.053.218 3180 1597 2010-03-02 2010-03-04 063.223.079.119 1644 1596 2010-02-08 2010-02-16 064.182.160.172 3643 1595 2010-03-03 2010-03-04 064.005.190.154 28559 1595 2009-10-03 2010-03-16 190.253.099.066 1713 1594 2010-02-26 2010-02-26 190.075.103.253 3230 1594 2010-01-26 2010-03-13 063.230.052.032 2118 1594 2010-03-06 2010-03-07 064.221.173.012 1932 1594 2010-03-08 2010-03-08 080.025.094.055 1598 1594 2010-03-09 2010-03-09 125.133.050.159 2098 1593 2010-03-15 2010-03-15 094.246.115.170 9714 1592 2009-12-17 2010-03-12 080.025.014.022 3192 1592 2010-02-08 2010-02-17 194.108.045.195 2126 1591 2010-02-07 2010-02-17 219.153.043.163 3092 1591 2010-02-15 2010-02-22 219.134.131.161 16301 1591 2009-08-28 2010-03-15 080.013.145.204 1638 1590 2010-03-03 2010-03-10 061.147.126.092 1695 1590 2010-02-27 2010-02-28 210.051.052.132 2398 1589 2010-01-23 2010-03-09 087.103.014.058 22427 1588 2010-03-06 2010-03-07 063.135.007.223 3062 1588 2010-03-02 2010-03-02 080.126.013.237 2622 1587 2010-03-03 2010-03-07 069.042.219.194 1609 1587 2010-02-14 2010-03-14 129.044.059.083 3261 1587 2010-02-27 2010-03-03 079.155.119.133 1586 1586 2010-02-04 2010-02-28 210.051.037.110 11058 1586 2010-01-27 2010-03-16 123.049.032.076 2229 1586 2010-03-11 2010-03-14 174.143.130.194 5503 1585 2010-02-26 2010-03-12 065.123.200.004 3126 1585 2010-03-08 2010-03-08 190.153.002.207 3175 1585 2010-02-21 2010-03-13 064.093.029.079 10637 1585 2009-12-02 2010-02-23 190.210.060.076 16556 1583 2009-12-20 2010-03-02 064.009.094.147 15452 1583 2010-02-17 2010-02-17 082.066.187.046 3228 1582 2009-12-22 2010-02-28 070.084.218.154 1581 1581 2010-02-14 2010-02-14 124.206.088.007 3828 1581 2009-12-26 2010-03-11 075.148.253.093 2484 1580 2010-02-25 2010-02-27 060.168.251.046 3045 1579 2010-02-18 2010-02-18 082.085.064.186 2973 1578 2010-01-06 2010-03-14 066.018.045.244 3139 1578 2010-02-11 2010-02-14 064.188.198.150 1658 1578 2010-03-08 2010-03-08 024.056.151.089 1577 1577 2010-03-08 2010-03-08 095.142.046.079 3148 1576 2010-02-28 2010-03-01 064.183.015.137 9799 1576 2010-02-15 2010-02-19 064.000.128.243 12909 1574 2010-01-26 2010-02-25 094.024.132.117 1579 1574 2010-03-06 2010-03-06 213.189.013.039 6517 1574 2010-01-22 2010-02-24 203.088.196.010 3138 1572 2010-02-28 2010-03-01 024.076.089.108 6816 1571 2009-12-30 2010-03-10 085.097.036.128 1571 1571 2010-02-22 2010-02-26 078.029.019.121 1583 1570 2010-02-23 2010-02-23 095.088.052.093 6746 1569 2010-01-29 2010-03-12 212.079.145.143 3135 1568 2010-03-10 2010-03-10 122.194.005.054 1665 1566 2010-02-19 2010-02-20 059.120.210.082 2874 1566 2010-03-11 2010-03-11 072.020.006.198 1576 1566 2010-03-02 2010-03-12 218.075.013.210 1586 1566 2010-02-26 2010-02-27 075.130.057.030 6303 1566 2010-02-25 2010-03-09 085.072.061.170 2718 1565 2010-02-16 2010-02-17 061.147.112.197 2515 1565 2010-02-27 2010-02-28 041.215.250.117 1601 1565 2010-03-02 2010-03-15 091.140.230.203 56207 1565 2010-02-22 2010-03-15 061.184.104.106 2933 1565 2010-03-07 2010-03-07 203.135.034.098 10265 1564 2010-02-20 2010-03-13 200.159.154.083 16342 1564 2009-09-27 2010-03-09 074.202.145.178 1828 1563 2010-03-11 2010-03-11 201.047.058.060 1563 1563 2010-02-26 2010-02-26 088.175.153.208 2127 1562 2010-03-05 2010-03-08 190.204.236.004 2718 1562 2010-02-24 2010-02-24 061.160.250.164 1584 1562 2010-02-18 2010-02-21 115.021.109.087 4570 1561 2009-10-04 2010-03-13 087.102.068.100 2552 1560 2010-03-03 2010-03-15 124.137.004.142 4858 1559 2010-02-01 2010-03-05 218.097.241.067 2478 1558 2010-02-17 2010-03-14 092.045.030.142 37040 1558 2010-01-20 2010-03-08 059.011.251.221 1911 1558 2010-03-11 2010-03-11 063.237.228.211 1579 1558 2010-02-18 2010-02-18 201.231.060.199 3711 1556 2010-02-22 2010-02-25 085.093.219.154 4980 1556 2010-01-27 2010-02-24 088.174.133.204 2949 1555 2009-10-09 2010-02-24 087.103.210.231 61905 1555 2009-09-19 2010-03-15 093.091.201.036 3084 1554 2010-01-22 2010-02-28 089.149.254.179 1568 1553 2010-03-03 2010-03-04 059.127.142.218 3892 1553 2010-01-18 2010-02-14 061.160.221.052 1588 1552 2010-02-24 2010-03-03 082.066.005.211 3289 1551 2009-12-29 2010-03-11 064.244.138.044 1683 1551 2010-02-15 2010-03-15 062.149.093.240 16725 1551 2009-12-17 2010-03-14 098.126.044.038 1551 1551 2010-03-09 2010-03-09 201.041.070.222 150948 1550 2010-02-03 2010-03-15 173.163.193.213 1754 1550 2010-02-21 2010-02-25 220.180.018.100 4627 1549 2010-02-11 2010-03-03 134.242.021.025 1917 1549 2010-02-23 2010-02-23 091.197.023.206 1574 1549 2010-03-10 2010-03-11 091.205.074.041 3070 1548 2010-02-14 2010-02-14 194.044.005.217 1940 1548 2009-08-16 2010-03-08 087.118.104.143 1545 1545 2010-02-20 2010-02-20 089.248.106.243 3017 1545 2010-03-14 2010-03-15 061.163.006.227 115931 1544 2010-02-22 2010-03-03 074.007.142.052 5015 1542 2009-06-15 2010-03-16 074.007.142.035 5032 1542 2009-10-05 2010-03-16 222.066.006.102 1573 1542 2010-02-21 2010-02-21 173.211.165.219 3072 1542 2010-02-22 2010-02-22 222.092.129.124 1908 1540 2010-03-06 2010-03-10 221.234.008.244 1539 1539 2010-03-03 2010-03-03 212.179.084.002 5147 1539 2009-01-05 2010-02-22 163.022.132.001 2363 1539 2010-02-27 2010-03-11 077.046.131.113 3062 1539 2010-03-14 2010-03-15 200.041.237.253 11191 1539 2010-03-11 2010-03-11 210.017.240.159 1538 1538 2010-03-07 2010-03-07 064.188.187.231 3083 1538 2010-03-07 2010-03-15 212.102.008.149 5453 1537 2009-06-24 2010-03-15 064.253.020.091 4314 1536 2010-02-18 2010-02-18 088.160.025.238 12252 1536 2010-02-02 2010-03-06 221.006.038.203 2588 1536 2010-02-20 2010-02-21 202.134.096.068 3459 1535 2010-02-23 2010-03-15 065.040.027.020 362985 1535 2009-07-14 2010-03-03 210.197.214.199 2375 1535 2010-03-06 2010-03-06 118.123.015.065 5584 1534 2010-03-03 2010-03-12 190.196.069.230 2986 1534 2010-03-12 2010-03-12 061.134.036.042 12526 1534 2009-12-07 2010-03-14 196.015.217.219 2950 1533 2010-03-03 2010-03-03 195.211.237.188 3070 1530 2010-03-01 2010-03-01 064.188.192.231 3075 1530 2010-02-15 2010-02-20 200.241.184.130 3508 1530 2009-11-20 2010-03-16 060.206.086.004 1972 1530 2010-02-22 2010-03-10 193.095.243.043 3048 1530 2010-03-05 2010-03-05 074.009.000.226 2121 1529 2010-03-05 2010-03-12 064.005.077.200 72857 1529 2009-11-10 2010-02-24 202.171.129.058 2756 1529 2010-03-10 2010-03-11 064.005.075.225 74506 1529 2009-11-06 2010-03-16 218.024.196.030 9991 1529 2010-02-17 2010-02-22 064.138.229.016 7518 1528 2010-02-11 2010-03-06 122.224.050.025 9341 1528 2010-03-13 2010-03-15 212.070.213.108 2957 1527 2010-02-20 2010-02-23 200.093.179.014 1537 1527 2010-02-28 2010-02-28 088.018.014.205 5995 1527 2010-02-16 2010-03-05 098.126.011.134 2716 1526 2010-03-03 2010-03-03 059.062.108.099 4950 1525 2010-01-21 2010-02-22 216.139.232.216 4898 1524 2009-11-24 2010-02-16 097.078.141.070 34398 1524 2010-01-26 2010-03-08 202.201.014.252 3033 1523 2010-02-19 2010-03-11 148.244.197.061 3483 1523 2010-02-22 2010-03-12 059.039.176.141 3500 1522 2010-01-23 2010-03-16 065.169.039.027 1557 1522 2010-02-09 2010-02-14 202.129.035.098 5459 1522 2010-03-08 2010-03-08 121.014.154.151 8009 1522 2010-03-08 2010-03-09 062.148.157.247 1534 1521 2010-02-05 2010-03-03 188.187.066.104 1521 1521 2010-03-06 2010-03-06 207.157.023.080 2486 1520 2010-02-07 2010-02-15 090.150.128.007 1520 1520 2010-03-07 2010-03-07 078.029.052.078 1520 1520 2010-03-14 2010-03-14 062.216.115.017 9696 1520 2010-02-20 2010-02-26 173.192.040.012 1818 1520 2010-03-02 2010-03-03 078.239.240.204 1685 1519 2010-02-08 2010-02-28 087.025.213.075 42351 1519 2010-01-30 2010-03-16 074.169.106.069 8094 1519 2009-12-17 2010-03-16 222.066.054.206 3839 1515 2010-02-20 2010-03-10 061.153.251.190 1746 1513 2010-02-21 2010-02-21 125.230.065.061 6705 1512 2010-02-27 2010-02-28 070.085.085.210 1638 1512 2010-03-12 2010-03-13 190.040.167.078 1512 1512 2010-02-18 2010-02-18 121.228.039.024 1543 1511 2010-02-26 2010-02-26 070.079.178.222 5750 1510 2010-02-12 2010-03-09 194.078.170.030 4844 1510 2009-12-29 2010-03-13 111.068.102.022 3649 1510 2009-11-05 2010-03-11 061.178.065.076 1658 1509 2010-02-27 2010-03-01 212.174.243.250 1760 1509 2010-02-12 2010-03-02 089.035.181.028 3084 1508 2010-03-01 2010-03-15 218.022.069.098 2204 1508 2009-12-02 2010-03-14 208.109.255.005 1940 1507 2010-03-02 2010-03-10 210.080.095.080 3473 1507 2010-02-23 2010-03-09 087.253.147.139 1506 1506 2010-02-07 2010-02-20 111.178.022.146 1505 1505 2010-03-12 2010-03-12 089.160.063.232 2702 1505 2010-02-26 2010-03-06 094.244.141.222 2409 1505 2010-02-05 2010-03-14 220.130.198.150 1679 1504 2010-02-01 2010-03-11 094.019.171.074 1582 1504 2010-02-19 2010-02-22 077.094.179.250 1505 1503 2010-02-16 2010-02-16 217.015.121.142 2560 1503 2010-02-13 2010-03-11 170.215.070.163 5310 1502 2010-03-03 2010-03-14 061.014.165.002 3554 1502 2010-02-23 2010-03-09 116.213.116.056 1501 1501 2010-03-15 2010-03-15 173.054.006.088 5279 1501 2010-02-10 2010-02-19 200.146.119.007 4209 1501 2010-02-19 2010-03-02 060.008.011.054 3001 1501 2009-11-11 2010-02-26 059.090.097.020 1523 1500 2009-11-23 2010-03-13 125.072.042.050 2998 1499 2010-02-16 2010-02-24 082.064.026.022 1844 1499 2010-02-19 2010-02-20 190.233.121.036 1522 1499 2010-02-19 2010-02-27 200.072.034.114 5312 1499 2010-03-09 2010-03-11 210.118.036.153 1602 1498 2010-02-05 2010-03-04 064.027.004.221 2953 1497 2010-03-02 2010-03-07 091.099.233.096 1507 1497 2010-03-01 2010-03-01 222.223.142.148 21424 1497 2009-12-14 2010-03-16 081.030.202.203 1694 1496 2010-03-13 2010-03-13 190.209.104.136 2191 1496 2010-02-17 2010-02-20 004.239.177.032 1515 1496 2010-02-26 2010-02-26 125.237.058.254 1494 1494 2010-03-02 2010-03-02 083.055.140.083 1871 1494 2010-02-17 2010-02-17 095.168.168.137 9852 1494 2010-02-23 2010-03-09 205.178.145.065 2489 1493 2009-07-13 2010-03-15 213.180.099.200 2212 1493 2010-03-01 2010-03-01 186.009.151.076 3464 1492 2010-02-19 2010-02-19 193.213.033.145 1937 1492 2010-02-08 2010-02-22 174.037.208.188 2155 1492 2010-02-28 2010-03-15 190.017.048.225 1842 1492 2010-03-06 2010-03-06 190.128.032.093 2119 1491 2010-02-25 2010-02-25 078.155.162.138 1706 1491 2010-02-24 2010-02-24 081.219.085.134 2081 1491 2010-03-04 2010-03-04 094.024.156.084 1807 1491 2010-02-25 2010-02-25 190.220.084.118 1730 1491 2010-02-28 2010-02-28 095.069.252.098 1527 1490 2010-03-02 2010-03-03 078.058.024.103 3793 1489 2010-02-20 2010-03-03 082.077.210.012 2356 1489 2010-03-12 2010-03-15 196.011.146.067 3163 1489 2010-01-21 2010-02-18 085.017.154.118 3733 1489 2010-03-01 2010-03-01 086.121.208.028 1488 1488 2010-01-17 2010-03-11 070.104.026.004 22326 1486 2010-01-12 2010-03-04 123.233.113.118 2644 1484 2010-02-25 2010-02-26 084.060.028.205 1540 1483 2010-01-23 2010-02-15 094.102.211.093 33662 1483 2010-02-11 2010-03-12 211.195.009.203 16221 1481 2010-01-20 2010-02-21 142.166.146.202 1481 1481 2010-03-02 2010-03-02 201.162.007.221 2625 1481 2010-01-24 2010-03-02 121.241.128.248 5337 1481 2010-02-11 2010-03-05 211.138.141.035 1481 1480 2010-02-13 2010-03-03 119.205.195.205 2503 1480 2010-01-22 2010-02-26 188.072.197.251 1993 1479 2010-03-13 2010-03-13 059.046.039.204 8713 1479 2009-11-07 2010-03-12 211.013.209.068 1520 1478 2010-02-27 2010-03-13 064.107.043.209 1549 1474 2010-02-15 2010-02-15 222.189.238.209 1478 1474 2010-03-15 2010-03-16 066.118.164.220 5411 1474 2010-03-09 2010-03-15 072.051.215.115 5756 1473 2010-02-13 2010-03-11 213.023.242.086 2946 1473 2010-03-07 2010-03-07 061.178.024.086 3865 1473 2010-02-28 2010-03-03 096.000.242.224 2555 1473 2010-02-05 2010-03-01 058.196.029.033 2703 1472 2010-03-06 2010-03-06 064.116.228.242 1557 1472 2010-02-28 2010-03-01 218.077.008.218 2840 1470 2010-03-08 2010-03-13 081.007.171.015 2925 1469 2010-01-30 2010-02-21 085.235.195.197 1505 1469 2010-02-17 2010-02-18 216.196.177.144 13003 1468 2009-08-17 2010-03-11 200.088.048.140 1846 1468 2010-02-09 2010-02-23 203.186.109.156 1500 1467 2010-02-09 2010-03-06 061.028.018.131 4110 1466 2009-10-10 2010-03-16 222.177.009.026 1830 1466 2010-03-04 2010-03-07 121.128.205.253 1926 1466 2010-02-14 2010-02-17 095.168.175.099 7526 1465 2009-10-15 2010-03-09 080.025.161.063 7508 1465 2010-01-17 2010-03-15 118.175.028.017 2642 1464 2010-01-05 2010-02-22 084.253.017.182 43239 1464 2010-02-13 2010-03-03 085.060.018.005 1721 1464 2010-03-06 2010-03-06 218.075.172.152 1771 1464 2010-01-21 2010-02-25 094.075.071.098 5324 1462 2009-11-06 2010-03-14 218.075.011.003 3058 1461 2010-03-16 2010-03-16 078.131.038.245 92079 1460 2010-01-10 2010-03-08 072.011.144.089 1888 1457 2010-01-03 2010-02-23 122.183.219.006 3125 1456 2010-02-13 2010-02-22 059.042.107.152 1841 1456 2010-02-09 2010-02-18 060.028.183.155 2537 1455 2010-01-24 2010-02-17 112.114.079.224 1463 1455 2010-03-02 2010-03-03 218.024.196.153 8189 1453 2010-02-19 2010-02-20 067.202.067.138 1743 1453 2010-03-07 2010-03-11 109.123.080.027 1514 1450 2010-02-15 2010-02-26 077.229.134.182 1910 1450 2010-02-12 2010-03-08 221.233.244.064 2301 1450 2010-03-04 2010-03-13 125.093.056.250 7724 1449 2010-01-18 2010-03-05 188.128.001.022 5320 1449 2009-04-15 2010-03-14 174.079.161.119 8247 1448 2010-01-30 2010-03-01 067.021.064.212 5339 1447 2010-03-01 2010-03-03 210.051.171.074 4208 1447 2010-01-28 2010-03-11 210.051.052.197 1446 1446 2010-02-14 2010-02-24 196.034.243.013 15888 1445 2009-12-12 2010-03-03 074.207.248.134 1579 1445 2010-03-05 2010-03-11 216.239.090.194 1649 1445 2010-02-22 2010-02-23 076.106.159.173 2712 1444 2009-12-17 2010-03-14 200.111.039.034 2649 1444 2010-02-10 2010-02-26 211.217.091.199 2423 1442 2010-03-10 2010-03-10 190.209.193.094 2910 1442 2010-02-24 2010-02-26 200.021.245.059 2383 1438 2010-02-12 2010-03-13 087.029.117.211 1510 1437 2010-02-11 2010-03-13 072.076.031.161 28052 1437 2009-11-30 2010-03-10 121.012.172.172 2470 1437 2010-02-25 2010-02-25 066.098.252.003 2384 1437 2010-02-23 2010-03-07 060.173.010.247 1623 1436 2010-03-04 2010-03-05 222.217.019.016 2713 1436 2010-02-05 2010-03-06 097.074.144.073 8529 1435 2010-03-14 2010-03-16 064.150.150.047 5327 1434 2010-03-08 2010-03-14 200.153.247.048 1828 1434 2010-02-07 2010-03-05 123.243.195.199 1436 1434 2010-02-04 2010-02-25 064.004.120.135 5984 1434 2010-02-27 2010-03-03 094.102.002.078 1837 1432 2010-03-03 2010-03-03 221.178.141.019 2009 1432 2010-02-02 2010-02-25 190.158.070.226 2429 1431 2010-02-20 2010-03-15 195.191.102.040 1633 1431 2010-03-15 2010-03-16 059.034.197.209 1580 1431 2010-03-02 2010-03-03 151.196.056.215 4029 1429 2009-11-18 2010-03-16 200.076.102.209 1559 1429 2010-02-26 2010-02-27 064.188.187.176 2819 1425 2010-02-18 2010-03-09 082.141.180.043 1701 1424 2010-02-22 2010-02-22 074.198.012.004 1847 1423 2009-02-07 2010-03-13 128.114.130.196 6221 1423 2010-02-07 2010-02-18 208.043.138.018 22298 1423 2010-03-12 2010-03-13 061.163.231.097 1468 1423 2010-03-10 2010-03-10 074.063.243.008 1583 1421 2010-02-17 2010-02-17 121.009.240.100 1539 1420 2009-10-26 2010-03-13 217.108.238.089 3648 1419 2010-03-05 2010-03-12 149.075.208.035 19858 1418 2009-09-21 2010-03-14 202.162.219.219 4233 1418 2010-01-26 2010-02-21 095.211.130.021 4540 1418 2010-02-22 2010-03-11 061.019.255.019 2032 1418 2010-02-14 2010-02-17 118.166.230.232 2671 1417 2010-02-25 2010-02-25 096.005.152.008 18824 1416 2009-10-19 2010-02-22 085.186.208.054 1835 1416 2010-03-05 2010-03-09 061.135.227.001 1417 1415 2010-02-20 2010-02-20 211.153.017.012 3505 1415 2010-02-11 2010-02-20 072.055.140.205 1706 1414 2010-03-04 2010-03-15 118.168.129.181 7942 1413 2010-02-22 2010-02-23 190.220.051.194 2343 1413 2010-02-24 2010-02-24 064.138.219.247 1758 1413 2010-02-21 2010-02-27 074.082.232.072 1900 1412 2010-02-26 2010-03-01 201.243.169.207 2847 1411 2010-02-21 2010-02-28 211.020.204.137 2577 1411 2010-02-10 2010-02-20 193.017.253.005 2220 1411 2010-02-05 2010-03-13 208.043.230.047 2371 1410 2010-03-07 2010-03-07 058.018.031.134 1415 1409 2010-03-15 2010-03-16 090.002.076.023 1840 1408 2010-03-04 2010-03-07 210.094.044.001 2433 1408 2009-02-08 2010-03-14 173.203.208.135 1415 1407 2010-02-23 2010-02-25 201.230.172.246 1407 1407 2010-03-06 2010-03-06 066.036.212.078 4981 1407 2010-03-02 2010-03-02 218.061.196.040 1866 1406 2010-02-27 2010-02-28 061.219.026.066 3040 1406 2010-01-26 2010-03-11 137.208.085.085 1983 1405 2010-01-23 2010-02-26 079.116.063.180 2810 1405 2010-03-03 2010-03-03 089.149.226.220 1425 1404 2010-02-25 2010-02-26 067.205.103.140 2384 1403 2010-03-09 2010-03-15 064.179.140.083 5517 1403 2010-01-20 2010-03-04 211.219.001.088 1468 1403 2010-02-21 2010-02-22 080.235.078.186 1422 1402 2010-02-12 2010-03-03 085.105.245.192 4013 1402 2010-01-02 2010-03-02 208.053.168.177 2685 1401 2010-01-16 2010-03-15 076.095.088.209 1437 1398 2010-02-28 2010-03-05 125.208.008.241 1875 1398 2010-03-01 2010-03-09 147.236.238.033 1487 1398 2009-11-20 2010-03-04 058.019.117.119 1520 1398 2010-02-20 2010-02-25 080.039.101.237 1397 1397 2010-02-05 2010-03-13 118.168.132.242 1810 1395 2010-02-21 2010-02-23 082.065.141.016 1627 1394 2010-03-07 2010-03-07 206.169.227.114 2673 1393 2010-01-28 2010-02-17 004.238.253.085 1404 1393 2010-02-27 2010-02-27 061.143.178.194 2544 1392 2009-11-27 2010-03-12 064.042.065.134 3740 1391 2010-02-19 2010-03-16 117.040.231.096 1472 1391 2010-02-05 2010-02-21 123.009.181.242 2175 1389 2010-03-02 2010-03-03 200.090.152.011 12746 1388 2009-11-23 2010-03-01 066.253.230.205 1387 1387 2010-02-26 2010-02-26 187.052.158.107 46875 1385 2010-02-22 2010-03-13 024.039.001.103 13671 1384 2006-11-05 2010-03-16 094.088.099.211 5977 1384 2010-02-22 2010-03-11 085.066.004.059 2521 1384 2010-02-23 2010-02-24 151.084.245.116 1393 1384 2010-02-10 2010-02-16 124.082.147.180 1517 1384 2010-01-03 2010-03-11 061.191.160.034 6021 1382 2010-02-01 2010-03-13 061.153.070.226 2946 1382 2009-11-12 2010-03-16 202.107.226.176 2203 1381 2009-12-18 2010-02-19 211.041.128.119 2506 1381 2010-02-26 2010-03-08 211.157.109.077 1673 1379 2010-02-24 2010-03-16 203.117.187.187 1799 1379 2010-02-10 2010-02-19 203.088.149.114 2531 1378 2009-12-04 2010-02-18 189.074.152.210 3031 1377 2009-04-03 2010-02-23 059.173.018.247 90377 1377 2010-03-08 2010-03-11 064.093.029.045 8533 1376 2009-12-20 2010-02-23 216.093.181.228 4579 1376 2010-02-20 2010-03-15 190.084.203.235 3959 1375 2010-02-21 2010-02-21 058.211.166.166 2169 1374 2010-01-26 2010-02-18 222.085.064.179 3317 1374 2010-01-27 2010-02-26 116.214.104.129 2181 1374 2010-03-12 2010-03-12 070.182.176.058 2798 1373 2010-01-29 2010-02-17 116.226.072.021 1398 1372 2010-02-27 2010-02-27 058.003.031.100 1393 1372 2010-03-04 2010-03-05 216.215.229.061 4594 1372 2010-03-06 2010-03-09 078.069.087.243 2191 1371 2010-02-28 2010-03-12 081.137.006.081 11711 1371 2009-09-12 2010-03-12 202.004.111.163 4558 1370 2010-02-16 2010-03-09 202.029.064.079 2311 1368 2010-02-22 2010-02-22 024.172.213.054 2484 1367 2010-02-10 2010-03-10 204.236.173.026 1387 1366 2010-03-08 2010-03-08 060.212.042.011 2269 1365 2009-12-11 2010-02-23 093.182.173.053 1551 1365 2010-02-15 2010-03-14 061.152.076.227 1434 1364 2010-01-30 2010-02-22 195.229.186.214 12813 1363 2010-01-22 2010-03-10 218.006.053.238 2327 1363 2010-02-20 2010-02-25 061.147.099.245 1363 1363 2010-03-01 2010-03-02 064.120.141.028 1899 1362 2010-02-27 2010-02-28 077.232.219.068 1880 1362 2010-02-09 2010-02-20 061.164.117.233 2222 1362 2010-02-17 2010-02-26 074.222.006.162 1828 1361 2010-02-18 2010-02-19 193.251.190.092 1761 1361 2010-03-04 2010-03-08 078.110.007.019 1516 1361 2010-01-21 2010-03-15 061.163.231.084 1378 1360 2010-03-03 2010-03-03 204.116.006.009 1361 1360 2010-02-28 2010-02-28 211.023.128.134 7102 1360 2010-01-20 2010-02-22 148.071.255.095 3743 1359 2008-08-20 2010-03-14 064.179.154.037 5307 1358 2010-01-24 2010-02-15 058.061.160.240 3137 1357 2009-11-17 2010-03-12 083.141.145.254 1383 1357 2010-02-22 2010-02-25 125.211.200.032 2925 1357 2010-02-18 2010-03-11 198.060.169.251 2735 1357 2010-02-21 2010-03-02 082.151.115.158 1523 1356 2010-02-01 2010-03-04 186.081.029.179 2683 1356 2010-02-21 2010-02-21 080.024.176.134 2655 1355 2010-01-30 2010-02-19 190.059.011.188 1354 1354 2010-02-08 2010-02-21 173.013.206.053 2905 1354 2010-03-10 2010-03-10 083.013.079.050 1400 1353 2010-01-07 2010-02-28 061.176.216.092 2647 1352 2010-02-18 2010-02-18 058.062.172.114 10630 1348 2009-08-13 2010-03-02 190.209.133.209 2720 1346 2010-02-21 2010-02-24 024.172.213.022 4461 1345 2009-12-02 2010-03-15 041.220.225.132 7734 1345 2010-02-17 2010-02-18 081.027.045.183 1762 1343 2010-03-07 2010-03-09 216.067.050.056 1350 1343 2010-03-06 2010-03-09 157.181.001.129 2165 1342 2010-01-25 2010-03-08 060.033.230.083 2659 1340 2009-09-28 2010-03-02 076.073.121.006 1813 1339 2010-03-14 2010-03-14 113.035.034.133 8318 1339 2009-12-24 2010-03-12 194.221.215.196 3771 1339 2010-02-18 2010-02-26 077.236.015.252 5602 1337 2009-08-02 2010-02-14 010.000.000.253 1480 1337 2009-12-02 2010-02-17 201.251.061.033 2552 1336 2010-01-29 2010-03-02 114.200.199.106 1468 1336 2010-02-19 2010-02-22 125.141.199.213 2374 1336 2010-03-03 2010-03-08 201.007.175.045 2743 1336 2010-02-26 2010-02-26 211.255.023.047 1414 1335 2010-02-19 2010-02-20 062.141.054.227 1367 1334 2010-03-08 2010-03-14 070.183.002.024 5483 1333 2010-02-06 2010-03-16 098.087.054.116 13408 1332 2010-01-29 2010-03-10 190.136.097.088 1913 1330 2010-03-03 2010-03-04 069.199.184.050 4417 1330 2010-02-11 2010-03-11 018.007.037.157 2285 1328 2010-02-26 2010-02-27 186.083.187.202 1454 1328 2010-03-12 2010-03-14 078.243.136.120 8250 1328 2010-01-18 2010-03-14 113.105.157.202 4382 1326 2010-02-03 2010-03-10 121.052.154.117 1888 1326 2010-02-02 2010-02-23 218.025.063.203 2507 1325 2010-02-19 2010-02-20 190.105.117.142 2677 1325 2010-02-21 2010-02-21 220.178.071.053 1323 1323 2010-03-08 2010-03-08 097.078.137.003 3312 1323 2009-12-03 2010-03-09 213.189.224.016 2411 1322 2010-01-26 2010-02-20 211.140.151.149 1322 1321 2010-03-08 2010-03-08 061.155.142.182 12771 1320 2010-02-24 2010-03-06 122.116.017.119 2201 1320 2007-06-24 2010-03-10 219.147.173.117 1333 1320 2010-03-12 2010-03-14 204.225.063.012 4719 1320 2010-02-18 2010-02-18 062.197.078.013 1372 1320 2010-03-03 2010-03-14 061.153.045.026 2074 1319 2010-01-25 2010-03-14 206.125.174.114 3489 1318 2010-02-13 2010-02-26 174.036.193.236 1323 1318 2010-03-05 2010-03-05 088.043.095.018 2210 1317 2009-11-20 2010-02-20 124.232.136.035 1339 1317 2010-03-11 2010-03-11 213.229.162.107 2503 1316 2010-01-25 2010-02-20 218.061.022.216 2153 1316 2010-01-10 2010-02-18 063.162.205.041 2718 1315 2010-03-08 2010-03-15 080.024.168.216 2452 1315 2009-07-10 2010-03-09 203.200.049.012 3214 1313 2010-01-29 2010-02-28 082.224.085.086 2489 1313 2010-02-06 2010-02-23 066.207.197.012 3786 1313 2010-02-17 2010-03-11 218.207.172.190 1343 1313 2010-02-12 2010-02-23 098.126.027.074 2872 1313 2010-03-01 2010-03-02 121.008.154.220 3054 1312 2010-02-16 2010-02-24 110.074.129.096 135225 1312 2009-11-11 2010-03-10 118.032.193.250 2396 1312 2010-02-23 2010-02-23 087.204.218.212 5202 1311 2010-01-30 2010-03-03 204.212.008.084 5984 1311 2009-12-12 2010-03-14 091.194.084.160 1423 1311 2010-02-23 2010-02-25 174.006.214.036 15056 1311 2009-07-18 2010-03-14 059.044.125.208 1805 1310 2010-03-12 2010-03-13 067.202.094.094 2037 1309 2010-01-16 2010-03-16 200.210.214.135 2617 1305 2008-11-19 2010-03-16 060.207.217.061 1340 1305 2010-03-10 2010-03-11 201.230.093.031 1305 1305 2010-02-26 2010-02-28 121.002.064.001 2345 1304 2010-03-09 2010-03-09 200.093.128.179 11184 1303 2009-11-24 2010-03-09 071.007.007.132 1534 1303 2010-01-07 2010-02-28 201.021.129.040 75676 1303 2010-01-22 2010-02-16 174.036.192.196 5694 1302 2010-02-25 2010-03-03 063.246.136.027 1299 1299 2010-02-17 2010-02-17 187.040.085.207 1322 1298 2010-02-24 2010-02-25 089.186.237.075 2195 1298 2010-03-05 2010-03-05 211.025.044.034 1785 1297 2010-03-03 2010-03-11 112.216.077.078 3141 1297 2010-02-24 2010-03-14 187.091.165.072 5127 1297 2010-02-26 2010-02-26 060.190.125.075 1318 1296 2010-03-11 2010-03-15 219.146.090.147 50754 1295 2009-12-07 2010-03-02 220.090.239.204 2491 1295 2010-02-06 2010-03-09 124.195.015.254 2767 1294 2010-02-19 2010-03-08 065.005.144.006 2183 1294 2010-02-15 2010-03-03 202.053.011.138 23151 1294 2010-02-05 2010-02-24 067.219.051.151 2099 1294 2010-02-26 2010-03-04 113.130.070.020 2737 1294 2010-02-13 2010-02-17 204.111.024.088 3193 1294 2010-03-14 2010-03-16 212.183.140.034 1412 1293 2009-11-30 2010-03-13 124.128.200.041 5495 1293 2010-01-04 2010-03-06 012.097.249.037 11831 1292 2010-01-28 2010-03-12 201.221.008.067 2101 1291 2010-02-21 2010-02-21 060.168.240.199 2607 1291 2010-03-01 2010-03-01 203.128.089.050 16179 1290 2010-01-14 2010-03-10 168.167.253.010 5143 1289 2010-01-11 2010-02-26 074.113.101.075 5505 1289 2010-02-18 2010-02-18 186.018.241.039 2589 1288 2010-02-21 2010-02-21 078.243.048.021 5082 1288 2010-02-02 2010-03-12 190.232.132.100 1290 1287 2010-03-03 2010-03-13 118.168.116.059 3501 1287 2010-03-03 2010-03-03 083.111.108.041 9743 1287 2009-12-28 2010-02-28 067.055.168.055 3610 1287 2010-01-17 2010-03-15 085.105.219.041 1287 1286 2010-02-08 2010-02-21 195.229.084.097 10814 1285 2010-01-22 2010-03-01 079.142.054.240 7927 1285 2010-01-13 2010-02-24 190.254.090.012 4283 1285 2010-02-24 2010-03-14 078.184.062.097 1541 1284 2010-02-22 2010-03-03 219.153.046.006 2744 1284 2009-12-17 2010-03-11 061.219.026.068 1485 1284 2010-01-25 2010-03-11 115.239.224.208 1370 1283 2010-02-26 2010-02-26 124.114.156.098 1928 1283 2010-03-06 2010-03-08 190.159.182.065 2561 1283 2010-02-26 2010-02-26 195.013.190.007 9714 1282 2009-09-22 2010-03-12 190.017.051.105 1441 1282 2010-02-19 2010-02-20 083.167.156.003 2702 1281 2009-12-17 2010-03-15 060.190.203.158 577905 1280 2010-02-17 2010-02-18 074.103.208.006 16351 1279 2009-12-19 2010-03-16 211.151.068.156 2680 1278 2010-02-17 2010-03-11 210.003.236.230 2239 1277 2010-03-09 2010-03-10 218.060.132.112 3313 1277 2010-03-03 2010-03-06 200.063.097.092 37350 1277 2010-01-17 2010-03-15 058.136.040.099 1300 1277 2010-02-27 2010-02-27 201.240.132.228 1277 1277 2010-02-25 2010-02-23 195.229.098.017 13346 1277 2010-02-14 2010-03-10 173.012.103.221 1471 1277 2010-03-06 2010-03-09 190.208.108.247 2236 1277 2010-03-01 2010-03-14 086.061.068.079 2453 1276 2010-02-09 2010-02-27 195.008.188.146 26991 1275 2010-01-08 2010-03-10 095.143.243.066 13449 1275 2010-03-07 2010-03-07 069.198.197.106 2455 1275 2010-03-02 2010-03-02 211.225.028.254 3500 1275 2009-11-29 2010-03-16 190.043.041.217 1275 1275 2010-02-14 2010-02-14 089.202.249.154 7873 1275 2010-03-07 2010-03-08 195.046.044.028 13387 1275 2009-08-20 2010-03-16 203.201.063.004 2382 1274 2010-03-14 2010-03-14 205.209.161.162 1339 1274 2010-03-03 2010-03-04 071.032.217.014 1329 1274 2010-02-09 2010-03-04 190.144.093.210 4665 1274 2010-02-14 2010-02-19 060.168.225.108 2446 1274 2010-02-25 2010-02-25 220.181.107.031 2077 1273 2010-03-10 2010-03-10 203.162.168.122 1781 1273 2010-02-25 2010-03-10 216.055.159.203 1273 1273 2010-02-27 2010-02-27 189.031.224.132 1272 1272 2010-02-25 2010-03-02 088.006.012.047 26957 1272 2010-01-12 2010-02-18 064.120.225.002 6155 1272 2010-02-12 2010-03-12 213.207.145.134 2539 1271 2010-02-18 2010-02-18 222.111.082.236 3662 1271 2009-12-08 2010-02-18 078.175.078.193 1271 1271 2010-02-24 2010-02-24 195.017.247.139 4726 1270 2010-03-10 2010-03-10 066.101.049.075 2624 1270 2010-03-12 2010-03-13 188.095.146.131 1576 1269 2010-02-17 2010-03-15 195.128.165.034 9827 1268 2010-02-11 2010-03-15 114.080.096.096 1606 1268 2010-02-19 2010-02-21 089.248.105.200 3687 1267 2010-02-09 2010-03-15 204.210.165.034 5483 1266 2010-02-20 2010-03-12 115.133.102.006 1323 1266 2010-01-27 2010-02-22 121.242.015.135 2454 1264 2010-01-26 2010-03-04 112.104.158.189 25606 1263 2010-02-17 2010-03-15 024.066.054.094 2883 1262 2010-03-06 2010-03-16 200.208.204.117 1695 1259 2010-03-06 2010-03-09 060.048.124.170 1259 1259 2010-02-07 2010-02-23 200.106.075.128 1258 1258 2010-02-21 2010-02-27 058.064.144.152 2439 1258 2010-01-16 2010-02-14 213.172.036.130 2234 1258 2009-12-14 2010-03-02 074.198.012.003 1960 1257 2009-01-23 2010-03-16 122.182.014.218 11610 1256 2010-02-15 2010-02-27 092.243.017.192 2161 1254 2010-03-05 2010-03-12 122.252.251.150 2119 1253 2009-11-13 2010-03-16 173.015.228.002 1971 1252 2010-02-11 2010-02-24 063.133.158.250 3100 1252 2010-01-08 2010-03-11 079.048.121.099 26274 1252 2010-02-10 2010-03-12 089.232.126.147 3700 1251 2010-03-01 2010-03-12 096.005.152.011 6424 1251 2010-03-01 2010-03-08 122.184.058.114 18958 1250 2010-01-05 2010-02-24 088.002.245.204 8763 1249 2009-10-21 2010-03-13 200.129.241.234 3559 1249 2010-03-06 2010-03-08 210.014.023.074 2014 1248 2010-02-16 2010-02-17 089.033.197.029 3369 1248 2010-02-18 2010-02-18 118.097.168.013 1518 1248 2010-02-23 2010-02-23 200.127.073.161 2297 1247 2010-02-28 2010-03-13 222.098.054.157 2136 1247 2010-02-27 2010-03-15 203.199.169.082 2864 1245 2010-02-03 2010-03-03 082.128.252.129 4089 1245 2010-02-22 2010-02-23 212.030.201.025 1398 1245 2010-03-01 2010-03-05 211.072.135.218 1244 1244 2010-01-27 2010-02-18 178.032.001.169 1584 1244 2010-03-04 2010-03-07 212.174.232.022 2084 1243 2010-03-09 2010-03-09 061.235.024.071 1240 1240 2010-02-08 2010-03-05 213.228.093.041 1240 1240 2010-02-07 2010-02-15 063.224.027.094 1240 1240 2010-02-27 2010-03-04 202.140.041.206 2346 1240 2010-02-19 2010-02-19 200.082.184.163 2487 1238 2010-02-23 2010-02-24 188.040.077.148 33028 1238 2010-03-05 2010-03-07 190.232.031.090 1237 1237 2010-02-15 2010-02-16 173.030.176.084 181256 1237 2010-02-18 2010-03-02 124.065.143.242 1259 1236 2010-03-08 2010-03-09 189.109.121.059 1832 1233 2010-03-11 2010-03-12 212.107.158.252 1621 1232 2010-02-12 2010-02-16 218.076.168.002 1319 1232 2010-02-18 2010-02-20 130.237.113.131 2138 1232 2010-02-16 2010-02-17 219.137.192.231 1318 1231 2010-01-18 2010-02-28 218.108.235.086 2360 1231 2010-03-08 2010-03-08 061.191.188.069 24041 1230 2010-02-02 2010-03-09 069.207.147.082 3811 1230 2010-01-23 2010-02-15 085.105.144.039 1231 1230 2010-03-07 2010-03-07 061.147.110.010 1440 1229 2010-02-18 2010-02-18 064.127.001.109 4076 1229 2010-01-30 2010-03-03 081.007.171.007 11471 1228 2010-02-18 2010-03-06 081.208.028.129 1353 1227 2010-03-02 2010-03-02 211.226.013.102 2308 1224 2010-02-07 2010-02-27 117.041.167.192 9286 1222 2010-03-03 2010-03-15 186.082.112.187 1374 1222 2010-03-09 2010-03-14 098.126.126.178 1293 1222 2010-03-06 2010-03-07 218.024.197.100 2627 1221 2010-03-05 2010-03-11 212.087.004.132 3341 1221 2009-11-17 2010-03-11 092.241.190.247 3780 1220 2010-02-24 2010-03-13 174.120.060.007 1732 1220 2010-02-12 2010-02-14 120.120.120.002 4016 1220 2010-02-10 2010-03-08 186.083.202.027 2313 1220 2010-03-04 2010-03-05 174.033.077.123 70092 1220 2010-02-28 2010-02-28 060.220.224.103 1239 1220 2010-01-23 2010-03-13 204.188.229.066 1745 1220 2010-02-10 2010-03-16 083.013.059.074 1794 1218 2010-03-14 2010-03-14 221.224.081.194 2262 1218 2009-12-30 2010-02-14 200.045.020.005 1899 1218 2010-02-21 2010-02-22 212.101.097.035 1690 1217 2010-01-12 2010-02-25 195.140.152.066 18536 1217 2009-11-08 2010-03-11 202.181.080.008 1240 1216 2010-03-12 2010-03-12 190.159.142.213 3627 1215 2010-02-21 2010-02-21 062.149.174.014 99219 1214 2010-03-01 2010-03-15 211.138.102.139 1601 1214 2010-03-09 2010-03-10 124.254.058.066 2329 1214 2010-03-04 2010-03-04 190.179.077.141 2299 1213 2010-03-04 2010-03-08 221.001.205.198 1246 1213 2010-02-22 2010-02-22 064.027.006.176 2037 1213 2009-12-12 2010-03-14 204.045.007.178 1597 1212 2010-02-16 2010-02-16 085.021.139.069 1881 1212 2010-01-02 2010-03-04 190.141.007.074 2780 1211 2010-03-07 2010-03-07 203.169.195.101 1242 1210 2010-03-07 2010-03-08 194.044.033.214 1874 1210 2010-03-15 2010-03-15 059.125.054.043 12939 1209 2009-12-25 2010-03-12 203.083.250.203 1473 1209 2010-01-08 2010-03-05 061.132.118.036 1214 1209 2010-02-22 2010-02-22 164.125.051.179 1265 1209 2010-02-16 2010-02-27 201.230.086.199 1210 1208 2010-02-23 2010-03-10 154.006.147.007 4349 1207 2009-10-22 2010-03-11 173.212.209.213 1627 1207 2010-02-03 2010-02-25 059.036.099.115 2408 1206 2010-03-08 2010-03-12 186.080.222.137 2394 1206 2010-02-23 2010-02-23 065.015.060.006 1270 1205 2009-09-17 2010-02-28 060.191.196.094 4674 1205 2010-02-07 2010-02-14 218.248.033.063 2402 1204 2008-09-15 2010-03-13 192.009.200.001 2405 1204 2009-12-24 2010-03-10 200.249.187.110 2757 1203 2009-09-14 2010-03-15 200.109.251.194 81642 1203 2009-11-29 2010-03-13 218.029.054.194 1286 1203 2010-03-07 2010-03-08 211.154.254.248 1764 1203 2010-03-06 2010-03-13 200.121.211.010 1202 1202 2010-02-26 2010-02-26 078.188.080.137 22448 1201 2010-01-12 2010-02-24 186.083.187.078 1384 1201 2010-03-13 2010-03-15 078.239.155.176 15049 1201 2010-02-09 2010-03-11 080.025.034.069 13910 1201 2009-11-08 2010-03-13 212.156.065.078 3390 1200 2009-12-24 2010-02-21 116.242.154.253 1317 1200 2010-03-07 2010-03-12 189.058.212.176 1391 1200 2010-02-24 2010-02-24 085.092.141.220 1199 1199 2010-02-24 2010-02-24 065.197.180.140 3478 1198 2010-02-17 2010-02-26 092.243.021.127 2406 1197 2010-03-08 2010-03-12 091.207.205.251 2404 1197 2010-01-30 2010-02-22 123.125.176.147 1199 1196 2010-02-22 2010-02-25 078.083.018.191 25559 1195 2010-02-14 2010-03-13 218.019.175.252 2216 1195 2009-09-05 2010-03-12 061.191.191.039 1210 1195 2010-03-13 2010-03-15 212.170.106.048 31881 1194 2010-02-23 2010-03-16 094.024.188.232 1927 1194 2010-03-14 2010-03-14 060.208.081.114 2533 1194 2009-10-01 2010-03-16 116.010.195.213 63352 1194 2009-11-05 2010-03-08 024.076.049.030 3354 1193 2010-02-08 2010-03-11 071.050.195.236 482285 1193 2010-01-21 2010-02-23 061.164.150.047 2171 1193 2010-03-12 2010-03-15 194.126.184.254 6882 1193 2010-02-21 2010-02-28 077.242.020.166 1341 1192 2010-01-03 2010-03-16 211.100.041.168 1218 1192 2010-02-17 2010-02-17 113.105.175.163 7270 1190 2010-03-01 2010-03-02 173.212.245.131 1937 1190 2010-02-16 2010-02-16 210.051.057.109 4231 1189 2009-09-29 2010-03-16 218.058.059.072 1196 1189 2010-02-06 2010-03-02 195.082.173.021 15917 1189 2009-12-14 2010-03-14 072.020.006.082 2261 1188 2010-02-13 2010-02-15 092.048.119.206 12218 1188 2009-11-23 2010-02-20 117.058.250.058 1252 1187 2010-02-10 2010-02-15 125.046.040.113 2443 1187 2010-02-08 2010-03-11 093.149.114.046 1187 1187 2010-02-14 2010-02-27 210.051.174.240 1814 1186 2010-02-28 2010-03-13 069.003.248.071 1198 1186 2010-02-07 2010-03-08 078.009.082.204 11376 1185 2010-01-21 2010-03-04 089.106.025.098 1812 1185 2010-02-25 2010-03-07 209.094.218.131 3550 1185 2010-02-26 2010-02-26 087.052.156.226 1507 1184 2010-03-04 2010-03-08 184.073.004.211 1324 1184 2010-02-14 2010-02-15 218.201.039.128 1292 1183 2010-02-06 2010-03-07 204.232.203.022 1920 1183 2010-03-08 2010-03-10 208.094.172.073 2760 1183 2010-02-07 2010-03-10 200.067.158.203 1192 1183 2010-03-14 2010-03-14 064.022.119.224 1349 1181 2010-02-15 2010-02-24 078.088.137.060 11455 1181 2009-12-05 2010-02-25 190.040.081.139 1181 1181 2010-02-24 2010-02-24 210.064.051.244 2203 1180 2010-02-16 2010-03-08 125.018.019.178 12080 1180 2009-02-27 2010-02-15 077.111.095.185 1241 1180 2010-03-08 2010-03-09 189.091.022.083 1194 1180 2009-08-11 2010-03-14 113.105.186.085 1247 1180 2010-02-27 2010-03-03 125.046.073.230 1291 1179 2010-02-17 2010-02-18 218.024.197.048 3514 1178 2010-02-24 2010-03-13 190.208.068.117 2380 1176 2010-02-21 2010-02-21 201.238.201.243 1695 1175 2010-02-21 2010-02-22 211.099.208.179 1590 1175 2010-02-27 2010-02-28 064.038.084.054 3933 1175 2010-03-03 2010-03-12 088.134.254.037 1711 1174 2010-02-14 2010-02-15 098.126.028.075 3007 1174 2010-02-19 2010-03-13 213.171.204.113 1586 1173 2010-02-28 2010-02-28 124.082.066.159 1962 1173 2010-03-02 2010-03-13 078.060.128.057 14736 1173 2010-01-20 2010-03-14 202.096.199.150 4379 1171 2008-12-29 2010-03-13 062.149.016.104 1172 1170 2010-03-02 2010-03-02 078.088.232.157 29899 1170 2009-11-05 2010-02-25 217.020.183.073 1899 1170 2010-01-25 2010-03-03 065.162.098.026 166409 1169 2009-12-05 2010-03-16 195.062.170.199 3104 1169 2010-01-27 2010-02-16 124.247.221.234 27831 1167 2010-02-03 2010-03-13 212.061.226.231 2079 1167 2010-03-13 2010-03-13 062.202.019.148 1836 1167 2010-02-15 2010-02-15 094.076.084.032 1292 1167 2010-01-06 2010-02-16 064.150.147.019 3908 1167 2010-03-12 2010-03-16 130.111.016.117 1988 1167 2010-02-25 2010-02-26 118.123.086.096 1167 1167 2010-02-24 2010-02-24 190.069.001.014 1925 1166 2010-02-25 2010-02-25 078.086.186.064 4913 1165 2010-03-06 2010-03-13 202.106.121.066 6340 1165 2010-03-10 2010-03-11 060.051.112.119 1165 1165 2010-02-28 2010-02-28 078.088.062.097 9416 1165 2009-10-05 2010-03-08 078.158.004.165 10825 1165 2010-02-17 2010-03-10 070.028.009.080 4209 1164 2009-12-30 2010-03-16 124.166.250.006 1874 1164 2010-02-10 2010-03-13 074.063.066.242 4650 1164 2010-03-09 2010-03-12 201.144.129.211 23592 1163 2010-01-15 2010-03-11 038.126.200.210 1186 1162 2010-02-20 2010-02-20 174.133.190.007 1545 1162 2010-03-08 2010-03-08 118.168.129.049 1412 1162 2010-03-05 2010-03-06 201.162.005.164 2095 1162 2010-02-12 2010-02-28 064.188.188.097 2694 1161 2010-03-11 2010-03-12 213.042.135.138 1171 1161 2010-02-21 2010-03-01 130.191.164.205 1262 1161 2010-02-22 2010-02-23 195.140.155.058 9631 1161 2010-01-05 2010-02-14 218.060.128.245 1218 1160 2010-02-27 2010-03-01 203.156.190.034 1162 1160 2010-02-10 2010-02-17 075.051.131.122 2549 1159 2010-02-26 2010-03-13 195.028.003.045 6379 1159 2010-01-06 2010-03-11 085.017.213.095 1847 1159 2010-02-03 2010-02-15 068.168.112.251 1251 1158 2010-03-02 2010-03-02 122.170.015.242 1215 1158 2010-03-03 2010-03-09 085.048.171.096 2117 1158 2010-03-15 2010-03-15 060.247.103.002 23473 1157 2010-03-08 2010-03-08 220.179.013.237 1302 1157 2010-02-15 2010-03-14 218.015.027.198 1159 1157 2010-01-22 2010-02-23 122.194.193.238 4035 1157 2010-03-04 2010-03-05 211.237.079.141 3378 1156 2010-01-23 2010-03-16 212.036.248.124 4174 1156 2009-10-27 2010-03-07 085.198.172.072 1656 1155 2010-03-04 2010-03-04 081.196.170.220 1569 1155 2010-01-14 2010-02-26 196.031.246.100 4281 1154 2009-12-02 2010-03-09 075.007.222.170 1401 1154 2010-02-04 2010-03-03 190.233.117.247 1177 1153 2010-02-27 2010-03-12 168.187.085.003 5044 1153 2009-06-30 2010-02-22 195.228.209.085 34679 1151 2010-01-20 2010-03-08 077.092.157.235 1323 1151 2010-03-12 2010-03-12 132.248.237.138 2024 1151 2010-03-12 2010-03-16 078.224.036.204 6424 1151 2009-10-29 2010-03-10 204.102.211.220 2071 1150 2010-01-31 2010-02-22 072.011.128.153 2114 1150 2010-02-16 2010-02-17 202.054.245.018 2205 1150 2009-06-29 2010-03-15 219.093.245.085 1151 1150 2010-01-28 2010-03-01 203.191.150.188 1149 1149 2010-02-25 2010-02-26 195.034.119.212 7351 1149 2010-02-08 2010-03-15 112.104.013.055 1250 1148 2010-03-12 2010-03-15 058.056.128.002 2172 1148 2010-01-24 2010-02-22 110.172.156.002 2684 1147 2010-01-18 2010-03-15 094.102.008.158 1372 1147 2010-01-24 2010-02-17 112.168.072.168 2943 1147 2010-02-08 2010-02-15 064.251.004.076 1147 1147 2010-03-13 2010-03-14 212.117.179.206 1845 1146 2010-02-17 2010-03-10 204.181.141.124 3576 1145 2010-03-12 2010-03-12 061.011.091.043 1144 1144 2010-03-03 2010-03-09 060.247.103.041 13438 1144 2009-12-04 2010-03-13 112.078.013.130 1391 1144 2010-03-13 2010-03-14 062.080.185.075 4712 1144 2010-01-23 2010-03-02 190.140.124.010 1212 1143 2010-02-08 2010-02-24 195.074.067.113 94323 1143 2010-01-05 2010-03-14 109.196.073.235 1153 1143 2010-03-10 2010-03-10 201.162.007.129 1719 1141 2010-02-11 2010-03-15 190.043.010.072 1141 1141 2010-03-02 2010-03-02 174.036.100.209 1481 1141 2010-03-07 2010-03-08 174.037.142.240 2017 1140 2010-02-20 2010-02-21 221.204.246.030 2823 1140 2010-03-02 2010-03-02 089.208.136.120 1218 1140 2010-03-12 2010-03-13 071.042.052.254 3426 1139 2010-02-25 2010-02-25 069.174.057.105 1513 1139 2010-03-12 2010-03-12 195.228.130.016 1410 1138 2010-03-04 2010-03-11 121.010.107.185 1158 1138 2010-03-14 2010-03-15 174.129.034.045 6390 1137 2010-02-15 2010-02-16 078.038.247.248 7084 1136 2010-02-08 2010-03-02 195.218.255.030 10791 1136 2009-11-12 2010-03-12 061.007.159.014 2243 1136 2010-02-11 2010-03-07 209.088.088.251 2092 1135 2010-01-18 2010-02-18 069.064.073.064 2974 1134 2010-03-01 2010-03-01 062.044.073.005 2391 1134 2009-09-09 2010-03-14 195.076.078.130 2376 1134 2010-03-04 2010-03-16 211.122.062.141 1142 1134 2010-02-26 2010-02-26 078.186.150.182 4095 1133 2010-02-20 2010-02-25 112.216.036.141 1136 1133 2010-02-25 2010-03-07 190.065.061.046 2146 1132 2010-01-10 2010-02-24 088.000.178.157 15903 1132 2010-02-18 2010-03-14 218.010.017.061 1245 1131 2010-03-05 2010-03-07 080.013.009.109 1513 1131 2010-02-13 2010-02-15 221.204.249.092 1722 1131 2010-02-16 2010-03-03 124.238.250.165 1476 1131 2010-01-31 2010-02-19 078.243.109.085 5807 1130 2010-02-13 2010-03-14 222.155.180.193 1131 1130 2010-02-26 2010-03-02 221.179.220.183 1243 1130 2010-03-08 2010-03-12 062.221.200.016 2285 1130 2010-02-05 2010-03-02 200.090.040.028 5029 1129 2009-12-19 2010-03-04 203.125.103.037 2248 1129 2010-02-19 2010-02-22 211.151.238.039 1179 1129 2010-03-02 2010-03-04 084.022.187.052 1836 1128 2010-02-19 2010-03-04 208.091.131.181 1569 1127 2010-02-21 2010-02-22 064.015.065.090 1128 1127 2010-03-04 2010-03-05 066.143.156.005 2332 1127 2009-10-26 2010-03-16 078.083.242.082 1188 1127 2010-01-31 2010-02-22 082.249.155.123 1355 1127 2010-03-10 2010-03-10 064.188.230.004 2497 1127 2010-01-31 2010-02-25 075.055.130.174 1192 1127 2009-12-23 2010-02-23 195.140.152.042 9832 1126 2009-12-21 2010-02-21 083.064.251.099 2410 1126 2010-02-08 2010-03-07 059.160.134.126 1581 1126 2010-03-03 2010-03-05 064.218.053.112 3593 1124 2010-03-09 2010-03-16 082.105.137.057 7324 1123 2010-02-05 2010-03-08 203.068.060.234 1703 1122 2010-03-05 2010-03-13 082.091.199.105 1297 1122 2010-02-25 2010-03-13 087.117.242.025 1425 1122 2010-03-04 2010-03-05 122.003.135.209 1176 1122 2009-11-12 2010-02-26 089.019.023.170 1150 1121 2010-01-25 2010-03-14 076.070.008.249 1213 1121 2010-02-04 2010-03-01 122.147.154.244 4745 1121 2010-02-21 2010-03-12 218.244.176.028 1138 1120 2010-02-20 2010-02-20 061.153.150.170 30486 1120 2009-12-28 2010-03-04 212.118.050.205 102027 1120 2010-02-26 2010-03-15 094.076.208.196 2233 1119 2010-02-13 2010-02-14 069.163.041.198 2135 1119 2010-02-22 2010-03-05 115.133.098.110 1125 1118 2010-03-02 2010-03-06 193.239.121.013 1164 1118 2010-03-11 2010-03-12 210.251.247.155 1374 1118 2010-02-21 2010-02-22 209.044.102.073 1559 1118 2010-02-08 2010-03-13 174.142.039.106 4442 1118 2009-04-11 2010-03-12 071.255.154.030 4317 1118 2010-03-06 2010-03-11 082.098.128.212 1117 1117 2010-02-19 2010-02-19 188.134.001.141 1259 1116 2010-02-19 2010-03-10 078.058.077.190 3714 1116 2010-01-07 2010-03-08 063.226.143.063 1115 1115 2010-02-16 2010-02-16 189.164.076.192 32792 1114 2010-02-14 2010-03-04 211.155.017.132 1278 1114 2010-02-14 2010-02-21 123.181.065.133 1139 1114 2010-03-07 2010-03-08 212.102.024.034 5494 1113 2010-02-22 2010-03-12 079.117.002.230 1928 1113 2010-02-25 2010-02-26 118.160.236.247 1254 1113 2010-02-23 2010-02-25 113.057.252.034 1146 1113 2010-02-25 2010-02-26 216.245.222.170 3300 1113 2010-02-22 2010-02-22 059.036.098.195 1390 1112 2009-07-03 2010-03-14 114.045.141.139 2495 1112 2010-02-17 2010-02-19 078.058.070.034 5722 1111 2010-02-25 2010-03-06 069.046.023.047 9468 1111 2010-02-13 2010-03-15 068.183.057.185 2550 1111 2010-01-28 2010-03-01 203.198.125.143 1847 1111 2010-03-04 2010-03-15 063.224.027.181 1146 1111 2010-02-28 2010-03-14 118.166.210.156 1253 1110 2010-02-21 2010-02-22 087.106.132.112 1132 1110 2010-02-23 2010-02-27 202.090.100.011 1151 1109 2010-02-08 2010-02-18 064.004.115.058 3397 1109 2010-02-01 2010-02-15 193.058.235.013 4539 1109 2010-01-08 2010-03-15 096.054.001.189 2727 1108 2010-03-10 2010-03-12 058.226.100.207 2189 1108 2010-01-28 2010-02-28 118.160.237.125 1266 1108 2010-02-21 2010-02-22 095.110.192.205 47138 1107 2010-02-25 2010-03-02 078.088.137.253 7840 1107 2010-03-04 2010-03-14 081.232.143.126 1154 1107 2010-01-12 2010-03-05 081.030.195.157 1485 1106 2010-02-25 2010-02-26 210.214.136.103 17963 1106 2010-03-06 2010-03-08 115.095.040.131 2151 1106 2010-02-15 2010-02-15 064.178.145.124 3447 1105 2010-02-08 2010-02-21 200.067.002.036 15155 1105 2009-08-26 2010-03-11 200.031.074.034 5185 1104 2010-02-27 2010-03-03 195.002.219.173 5462 1104 2010-01-05 2010-03-10 118.160.232.049 1279 1103 2010-03-10 2010-03-10 079.101.160.209 3344 1102 2010-01-14 2010-02-24 074.052.116.130 13677 1102 2010-01-12 2010-03-01 218.025.246.242 3813 1102 2010-01-19 2010-02-22 085.017.233.162 4051 1102 2010-03-08 2010-03-12 222.243.014.144 1117 1101 2010-02-13 2010-02-14 219.153.028.011 1149 1101 2010-03-10 2010-03-11 219.148.108.156 1104 1100 2010-02-25 2010-02-26 067.023.224.137 1134 1100 2010-02-28 2010-02-28 187.007.035.116 1233 1100 2010-01-16 2010-03-10 200.174.235.130 2158 1099 2009-02-13 2010-03-15 060.216.047.206 3021 1099 2010-03-10 2010-03-10 195.028.003.144 7194 1099 2009-11-26 2010-03-11 211.161.251.065 2239 1098 2010-02-16 2010-02-16 195.070.204.168 1181 1098 2010-01-22 2010-02-18 147.008.104.130 2134 1097 2010-02-21 2010-02-21 220.170.090.231 1655 1097 2010-02-23 2010-02-26 088.218.097.052 2681 1096 2009-12-22 2010-03-03 117.120.026.050 2169 1096 2009-08-26 2010-03-16 024.241.057.023 2689 1095 2010-02-08 2010-03-04 190.043.119.005 1095 1095 2010-02-15 2010-02-19 218.016.224.072 1099 1095 2010-02-20 2010-03-08 113.105.169.158 1592 1094 2010-02-28 2010-03-12 079.129.029.063 1152 1093 2010-01-05 2010-03-05 082.238.198.055 3580 1092 2010-02-09 2010-03-09 078.060.171.098 17922 1091 2010-02-05 2010-03-08 064.118.199.253 3218 1091 2010-03-03 2010-03-10 218.091.210.106 1134 1091 2010-02-22 2010-03-12 202.100.243.220 2182 1090 2010-03-10 2010-03-10 188.230.028.066 1126 1090 2010-03-01 2010-03-01 058.062.207.121 1140 1089 2010-02-26 2010-02-26 124.011.144.151 3240 1089 2010-03-11 2010-03-13 118.160.235.063 1207 1088 2010-03-11 2010-03-11 125.230.146.151 16526 1087 2010-02-17 2010-02-17 110.139.069.243 1108 1087 2010-02-08 2010-03-05 122.194.005.060 1984 1087 2010-02-03 2010-02-14 125.230.150.083 10203 1087 2010-02-28 2010-03-02 125.230.145.161 5097 1086 2010-03-04 2010-03-06 125.230.152.100 21349 1086 2010-02-26 2010-02-27 174.138.160.011 38567 1086 2010-02-20 2010-03-15 125.230.148.242 16331 1085 2010-02-13 2010-02-14 201.240.030.146 1086 1085 2010-02-26 2010-02-26 088.249.060.249 17051 1085 2010-01-27 2010-02-18 220.194.053.009 2224 1085 2010-03-10 2010-03-10 092.050.043.128 2094 1085 2010-02-18 2010-02-18 080.036.039.029 1238 1084 2009-10-07 2010-03-11 088.249.004.060 1182 1083 2010-02-15 2010-02-26 190.084.188.201 2181 1083 2010-02-21 2010-02-21 058.240.017.102 1223 1082 2010-03-07 2010-03-08 218.108.052.011 1103 1082 2010-03-02 2010-03-02 069.015.200.043 2800 1081 2009-11-11 2010-03-14 210.083.161.213 1675 1081 2010-02-27 2010-03-11 202.143.160.103 3373 1081 2010-02-27 2010-02-27 061.218.138.213 1773 1080 2009-09-09 2010-02-26 074.207.234.091 1096 1079 2010-02-17 2010-02-17 217.219.173.010 673806 1078 2009-09-14 2010-03-02 164.077.238.117 2221 1078 2010-02-14 2010-02-19 218.107.139.002 4066 1077 2009-12-05 2010-03-01 078.092.170.194 2764 1077 2010-02-13 2010-02-18 078.056.191.100 16492 1077 2010-01-22 2010-03-06 124.089.001.043 4459 1076 2010-02-09 2010-02-20 071.183.086.035 1470 1076 2010-02-19 2010-03-06 064.149.113.181 1121 1075 2010-03-15 2010-03-15 094.024.181.236 1451 1075 2010-03-13 2010-03-13 078.038.247.197 1344 1075 2010-03-03 2010-03-13 216.059.003.107 2253 1075 2010-03-04 2010-03-04 206.246.140.025 2182 1075 2009-02-11 2010-03-16 091.112.244.034 6447 1074 2010-02-27 2010-02-27 061.231.084.053 368665 1074 2010-03-13 2010-03-15 220.194.056.121 1077 1073 2010-02-26 2010-03-01 219.103.175.203 2991 1072 2010-02-18 2010-02-18 077.068.063.110 1140 1071 2010-03-12 2010-03-15 082.067.047.213 4239 1071 2010-03-07 2010-03-09 085.152.126.025 1160 1071 2010-03-15 2010-03-15 078.097.144.223 3896 1070 2010-02-26 2010-03-13 094.101.083.248 1213 1070 2010-01-25 2010-02-28 219.153.029.114 1105 1070 2010-02-14 2010-02-22 060.211.179.020 1093 1070 2010-03-12 2010-03-12 078.061.134.121 1104 1070 2010-02-02 2010-02-15 109.123.078.106 1103 1069 2010-02-15 2010-02-25 190.232.077.112 1069 1069 2010-02-24 2010-02-24 061.118.242.222 1093 1069 2009-11-12 2010-02-23 082.098.145.135 2475 1069 2010-01-21 2010-03-16 213.171.195.048 1295 1069 2010-03-04 2010-03-15 078.039.015.187 3523 1068 2010-02-23 2010-03-01 195.097.103.131 2141 1068 2010-02-22 2010-02-22 092.067.070.019 6275 1067 2010-02-03 2010-03-04 212.123.021.178 2041 1067 2010-01-21 2010-02-18 190.128.122.007 2076 1067 2010-02-21 2010-02-21 195.240.081.106 21539 1067 2010-01-26 2010-02-19 201.230.241.184 1068 1067 2010-02-26 2010-03-02 124.012.009.045 3221 1066 2010-02-09 2010-02-16 062.193.240.099 1093 1065 2010-03-09 2010-03-09 041.186.000.212 6349 1065 2009-10-13 2010-03-13 064.022.116.130 2127 1065 2010-02-05 2010-02-15 195.132.167.152 8019 1064 2010-01-19 2010-03-11 075.169.170.128 1064 1064 2010-03-11 2010-03-11 201.228.003.010 2499 1063 2010-01-19 2010-02-23 062.141.042.082 1896 1063 2010-03-13 2010-03-13 064.201.086.149 1806 1062 2010-03-10 2010-03-10 208.043.041.232 4703 1062 2010-02-15 2010-02-17 091.150.137.234 2198 1062 2010-01-07 2010-02-21 069.169.141.113 181055 1061 2010-01-19 2010-02-19 200.035.151.039 37201 1061 2010-02-02 2010-03-01 203.098.075.163 270387 1060 2010-02-13 2010-02-26 058.147.170.175 2208 1060 2009-12-27 2010-02-17 078.031.067.250 1087 1060 2010-03-05 2010-03-06 212.095.032.067 2332 1060 2010-02-17 2010-03-13 024.178.114.074 340067 1059 2010-02-12 2010-03-04 124.012.010.037 3170 1059 2010-02-27 2010-02-28 069.162.127.162 10121 1059 2010-02-18 2010-02-18 060.048.229.033 1058 1058 2010-03-02 2010-03-07 078.097.149.029 1078 1057 2010-03-01 2010-03-12 087.106.243.147 1177 1057 2010-03-13 2010-03-15 131.162.130.192 1209 1057 2010-02-02 2010-02-28 072.026.226.218 1058 1057 2010-02-21 2010-02-21 082.201.035.213 1271 1057 2010-02-14 2010-02-14 213.226.001.178 4228 1056 2009-11-30 2010-03-14 218.234.021.153 1878 1056 2009-12-02 2010-03-14 076.114.078.196 2136 1056 2010-02-11 2010-03-13 088.172.131.095 2059 1055 2010-02-14 2010-02-27 080.232.136.026 4576 1055 2010-01-23 2010-02-20 190.152.060.246 1874 1054 2010-01-06 2010-03-03 186.081.196.138 1219 1054 2010-02-27 2010-02-27 078.233.018.058 7985 1054 2010-02-28 2010-03-15 067.019.016.138 5720 1054 2009-09-16 2010-03-13 082.146.009.058 1687 1054 2010-02-22 2010-02-28 200.174.131.210 49266 1054 2009-11-13 2010-03-15 075.126.240.176 1359 1054 2010-02-26 2010-03-10 070.065.076.201 4307 1054 2010-02-21 2010-03-06 058.211.248.139 1053 1053 2010-03-09 2010-03-09 078.083.109.211 261751 1053 2010-01-03 2010-02-22 190.026.247.216 2164 1052 2009-11-25 2010-03-10 078.110.008.010 1067 1052 2010-02-20 2010-02-22 200.018.010.007 1674 1052 2010-01-27 2010-02-17 210.051.215.018 1954 1052 2009-11-11 2010-02-28 067.135.181.114 6407 1052 2010-03-11 2010-03-11 078.058.205.125 19306 1051 2010-01-05 2010-03-10 078.062.070.018 1077 1051 2010-03-12 2010-03-13 201.030.052.162 2702 1050 2010-01-29 2010-03-12 092.042.037.110 1765 1050 2010-02-19 2010-03-14 081.172.029.139 2063 1050 2010-02-24 2010-02-24 125.224.192.253 40955 1050 2010-02-07 2010-02-17 078.025.185.142 1054 1050 2010-02-08 2010-02-21 064.179.132.011 1622 1049 2010-02-07 2010-02-23 125.224.204.079 57411 1049 2010-03-09 2010-03-12 064.174.215.106 1730 1049 2010-02-27 2010-02-27 200.029.161.089 2076 1049 2010-02-18 2010-03-01 077.236.177.177 1112 1049 2010-02-05 2010-03-04 125.224.195.179 40893 1048 2010-02-22 2010-02-23 078.004.139.210 9129 1048 2009-12-10 2010-03-01 125.224.194.105 55833 1048 2010-02-20 2010-02-21 094.023.026.011 1896 1048 2010-03-09 2010-03-12 125.224.197.175 57371 1048 2010-02-27 2010-03-02 111.223.226.234 1063 1048 2010-03-13 2010-03-13 125.224.203.131 24549 1047 2010-02-25 2010-02-26 125.224.193.078 24543 1047 2010-03-08 2010-03-08 078.244.096.001 5616 1047 2010-01-26 2010-03-02 078.059.044.082 7741 1047 2010-02-28 2010-03-12 078.046.042.167 1047 1047 2010-03-13 2010-03-13 218.065.227.203 1059 1047 2008-11-11 2010-03-13 195.088.073.252 20842 1046 2010-02-17 2010-02-20 195.096.187.086 6248 1046 2010-02-08 2010-02-16 078.062.171.064 6693 1046 2010-01-08 2010-03-09 070.082.028.032 1073 1046 2010-02-12 2010-02-14 078.092.137.206 15705 1045 2010-02-17 2010-03-10 222.124.019.004 2102 1045 2010-03-14 2010-03-14 078.159.065.251 16115 1045 2010-02-09 2010-03-10 078.128.022.155 703442 1045 2009-11-16 2010-03-08 078.233.105.072 22026 1045 2010-02-06 2010-03-12 116.015.175.238 1045 1045 2010-02-18 2010-02-26 078.062.035.191 2790 1045 2010-02-01 2010-02-20 078.243.066.016 12719 1045 2010-02-20 2010-03-10 080.013.124.036 2689 1045 2010-03-07 2010-03-15 078.128.090.040 838161 1044 2010-02-14 2010-03-08 189.114.040.204 3574 1044 2010-01-15 2010-02-18 078.225.013.023 15110 1044 2010-02-02 2010-03-10 123.232.127.002 2328 1044 2010-02-12 2010-03-15 078.084.235.007 19839 1044 2010-02-01 2010-03-08 078.128.122.059 1265188 1044 2009-10-10 2010-03-04 222.222.061.004 7728 1044 2010-02-10 2010-02-22 119.164.055.153 1338 1044 2010-02-25 2010-03-15 112.072.212.005 2194 1043 2010-01-19 2010-03-15 078.128.023.154 849568 1043 2009-11-18 2010-03-08 078.057.086.083 14005 1043 2009-12-15 2010-03-10 099.198.100.231 1431 1043 2010-02-16 2010-03-04 087.118.082.111 5118 1043 2010-03-06 2010-03-06 213.016.179.123 11949 1043 2009-09-15 2010-03-09 085.105.136.064 1082 1043 2009-12-10 2010-02-15 212.088.137.217 1095 1043 2010-03-10 2010-03-11 079.014.144.171 2196 1043 2010-02-14 2010-02-21 089.251.184.035 1624 1043 2010-03-15 2010-03-15 071.176.144.195 1124 1043 2010-02-21 2010-02-26 125.224.193.087 23792 1042 2010-03-03 2010-03-03 091.205.172.186 1881 1042 2010-01-26 2010-03-13 078.225.084.009 17293 1042 2009-09-13 2010-03-08 196.210.046.071 1043 1042 2010-02-27 2010-02-27 078.239.132.181 12043 1042 2009-10-23 2010-03-13 118.021.250.252 3344 1042 2009-04-07 2010-03-15 061.055.146.028 1532 1042 2010-01-10 2010-03-16 078.225.012.091 11373 1041 2009-11-02 2010-03-08 060.023.030.082 5292 1041 2010-03-11 2010-03-11 078.186.136.006 1087 1041 2010-02-14 2010-02-14 190.024.218.180 2654 1041 2009-06-03 2010-03-12 070.099.101.090 3067 1040 2009-06-25 2010-03-03 078.029.052.174 1237 1040 2010-03-01 2010-03-01 077.120.053.134 1176 1040 2010-02-16 2010-03-02 218.248.009.160 1323 1040 2010-03-11 2010-03-13 078.049.082.150 1752 1040 2010-03-05 2010-03-05 024.039.001.099 11329 1039 2010-01-22 2010-03-13 078.240.176.066 10291 1039 2010-02-18 2010-03-12 090.029.221.168 1431 1039 2010-02-26 2010-02-27 078.108.249.107 2040 1039 2010-01-22 2010-03-03 113.004.131.194 2097 1039 2010-01-15 2010-02-21 078.231.139.081 11102 1039 2009-08-28 2010-03-10 078.084.036.254 1364 1039 2010-02-28 2010-03-02 078.054.227.068 1074 1039 2010-03-10 2010-03-10 078.092.180.046 4530 1038 2010-02-20 2010-02-26 078.057.130.214 12245 1038 2010-02-14 2010-03-06 095.158.003.222 1043 1038 2010-03-09 2010-03-09 078.062.175.077 12476 1038 2009-11-14 2010-03-08 221.208.196.244 1253 1037 2010-02-19 2010-02-19 109.074.200.234 1194 1037 2010-03-01 2010-03-01 078.128.039.016 339992 1037 2010-02-04 2010-02-17 079.005.024.041 1156 1037 2010-02-24 2010-03-03 078.229.176.071 10562 1037 2010-01-26 2010-03-12 119.149.189.199 2338 1036 2009-12-02 2010-02-14 079.143.176.061 1778 1036 2010-02-27 2010-03-08 070.038.037.120 10162 1036 2010-03-13 2010-03-13 078.086.186.067 1937 1035 2010-03-03 2010-03-07 110.045.138.150 2535 1035 2010-03-10 2010-03-10 078.050.244.093 1620 1035 2010-03-10 2010-03-10 209.161.255.216 368616 1034 2010-03-03 2010-03-03 082.106.236.145 2024 1034 2009-12-25 2010-03-14 062.149.160.189 3003 1034 2010-03-01 2010-03-13 078.097.148.167 1041 1034 2010-03-14 2010-03-14 085.071.174.222 1034 1034 2010-03-12 2010-03-12 220.181.068.151 1205 1034 2010-01-15 2010-02-24 078.084.078.203 11111 1033 2010-02-05 2010-03-01 078.128.090.213 367712 1033 2010-02-07 2010-02-14 091.213.175.072 3034 1033 2010-02-26 2010-02-26 018.007.037.246 1468 1033 2010-02-26 2010-02-27 064.130.182.082 3159 1033 2010-02-26 2010-03-16 216.106.188.122 1141 1033 2010-02-07 2010-02-28 087.248.163.214 1098 1033 2010-02-20 2010-02-21 078.159.089.164 5332 1033 2010-01-08 2010-03-02 058.179.001.154 381151 1032 2010-02-02 2010-03-04 076.011.216.155 3120 1032 2010-02-26 2010-02-28 200.184.118.130 1792 1032 2010-03-12 2010-03-12 058.122.246.222 2152 1032 2010-02-11 2010-02-27 213.097.048.043 1031 1031 2010-02-07 2010-02-18 078.083.219.028 9446 1031 2010-02-09 2010-03-08 078.159.133.021 9024 1031 2010-01-03 2010-02-16 078.227.126.191 3973 1031 2010-02-21 2010-03-10 202.216.227.136 2658 1031 2010-02-23 2010-02-23 078.242.113.149 8676 1031 2010-01-27 2010-03-08 078.136.121.002 29678 1030 2010-02-13 2010-03-08 091.202.086.003 4065 1030 2010-03-08 2010-03-08 077.241.064.030 4435 1030 2010-02-21 2010-03-05 078.129.122.236 26928 1030 2010-02-09 2010-03-01 196.212.252.253 2087 1030 2010-03-08 2010-03-08 091.121.157.177 2209 1029 2010-03-09 2010-03-16 211.208.156.042 2058 1029 2010-03-08 2010-03-13 001.001.001.001 2931 1029 2010-03-02 2010-03-10 190.069.081.116 1775 1029 2010-02-05 2010-02-19 078.108.049.111 15703 1029 2009-12-09 2010-02-28 219.232.235.095 1038 1028 2010-02-21 2010-02-21 219.237.253.245 2601 1028 2010-02-22 2010-03-02 121.015.245.186 2196 1028 2010-01-01 2010-02-20 114.255.048.022 2083 1028 2010-01-31 2010-02-21 174.143.152.032 1848 1028 2010-03-13 2010-03-13 082.246.025.082 1084 1027 2010-02-14 2010-02-14 074.085.009.244 1776 1027 2010-01-26 2010-02-17 217.128.142.004 2096 1027 2010-02-11 2010-02-15 119.082.232.110 1033 1027 2010-02-14 2010-03-01 081.030.164.106 1888 1027 2010-02-26 2010-02-26 062.002.182.105 1030 1027 2010-02-21 2010-02-21 072.055.158.010 1029 1027 2010-03-06 2010-03-06 189.043.163.132 2879 1027 2010-01-30 2010-03-03 078.097.141.093 2602 1027 2010-03-04 2010-03-10 078.060.236.188 9800 1027 2010-02-08 2010-03-06 078.088.058.225 8761 1026 2010-01-18 2010-03-01 195.110.046.034 9772 1026 2009-10-30 2010-03-15 217.023.003.183 1313 1026 2010-03-13 2010-03-14 139.055.103.033 9738 1026 2010-02-21 2010-02-26 078.233.152.057 8170 1026 2010-02-17 2010-03-12 076.079.133.206 1031 1026 2010-03-10 2010-03-10 118.168.134.023 1111 1026 2010-03-14 2010-03-15 078.234.089.077 7730 1025 2009-12-17 2010-03-08 088.250.201.225 1025 1025 2010-03-05 2010-03-05 077.254.078.133 2158 1025 2010-02-11 2010-02-14 219.146.006.234 1032 1025 2010-03-01 2010-03-01 121.010.249.014 2103 1025 2009-07-26 2010-03-13 092.048.094.084 1148 1025 2010-02-27 2010-02-27 201.073.187.100 2216 1025 2010-03-09 2010-03-09 218.242.136.114 2046 1025 2010-03-08 2010-03-08 195.095.170.138 15216 1025 2010-01-20 2010-03-11 211.023.224.171 1911 1025 2010-03-11 2010-03-11 190.055.024.137 2051 1024 2010-02-21 2010-02-24 088.247.062.085 1024 1024 2010-02-11 2010-02-15 078.060.233.247 2762 1024 2010-03-08 2010-03-11 093.123.104.054 127698 1024 2009-12-09 2010-03-08 041.216.217.126 1777 1024 2010-02-17 2010-02-17 058.045.083.136 1032 1024 2010-02-26 2010-02-26 085.157.201.178 1024 1024 2010-02-21 2010-02-21 219.143.069.017 1329 1024 2010-03-13 2010-03-14 078.097.134.216 1025 1024 2010-03-05 2010-03-05 222.195.137.249 1435 1023 2010-01-16 2010-02-21 068.178.254.001 1379 1023 2010-02-25 2010-02-25 190.233.084.254 1038 1023 2010-03-02 2010-03-06 061.128.222.098 1097 1023 2010-03-02 2010-03-05 218.025.089.076 1224 1023 2010-03-08 2010-03-09 195.026.072.113 10633 1023 2009-10-22 2010-03-06 201.003.036.123 1095 1023 2010-03-04 2010-03-05 195.219.121.019 1229 1023 2010-02-27 2010-03-10 078.009.083.216 39477 1022 2010-01-22 2010-03-08 218.028.014.071 2085 1022 2010-03-03 2010-03-03 200.106.015.173 1022 1022 2010-02-22 2010-03-08 094.024.218.233 1026 1022 2010-03-14 2010-03-14 061.129.115.020 1026 1022 2010-02-21 2010-02-21 078.128.095.097 576558 1022 2010-02-09 2010-02-14 078.236.061.007 7850 1022 2010-01-31 2010-03-08 122.160.169.162 5285 1022 2010-01-20 2010-02-15 078.128.025.148 402087 1021 2010-02-13 2010-03-12 085.071.197.149 1035 1021 2010-03-07 2010-03-09 078.128.048.207 227031 1021 2010-02-28 2010-03-08 078.128.018.053 2045 1021 2010-02-14 2010-02-14 218.025.067.006 2818 1021 2010-02-27 2010-02-28 190.232.215.152 1042 1021 2010-01-27 2010-02-28 078.097.150.172 2107 1021 2010-02-28 2010-03-06 078.154.007.197 8568 1021 2010-02-06 2010-03-05 195.246.008.242 1021 1021 2010-03-01 2010-03-01 213.174.191.133 1134 1021 2010-02-17 2010-02-22 078.085.161.157 1021 1021 2010-02-28 2010-02-28 078.061.025.217 1021 1021 2010-03-01 2010-03-01 078.128.122.080 11305 1021 2010-03-09 2010-03-12 190.153.001.089 1832 1020 2010-02-28 2010-03-05 080.095.208.080 294478 1020 2010-01-21 2010-03-14 190.248.129.070 3355 1020 2010-02-14 2010-02-14 122.070.147.103 2398 1020 2010-02-07 2010-02-25 087.205.237.012 1042 1020 2010-02-09 2010-03-11 070.062.128.085 6951 1020 2010-01-28 2010-03-01 121.223.223.225 3006 1019 2009-04-07 2010-03-13 195.088.127.066 4076 1019 2010-03-07 2010-03-07 089.174.058.019 2038 1019 2010-02-15 2010-02-15 085.100.115.136 1018 1018 2010-02-01 2010-02-14 078.233.085.076 22253 1018 2010-01-27 2010-03-10 121.242.023.212 1221 1018 2010-03-05 2010-03-05 114.026.232.173 8144 1018 2010-03-06 2010-03-06 189.145.114.053 40904 1018 2010-02-04 2010-02-25 078.159.080.082 7039 1018 2009-10-13 2010-03-08 216.075.120.200 1018 1018 2010-03-06 2010-03-06 201.015.130.021 1306 1018 2010-01-29 2010-02-23 195.095.253.171 1019 1018 2010-03-15 2010-03-15 190.164.226.109 1112 1018 2010-02-14 2010-02-15 120.072.043.043 1018 1018 2010-02-17 2010-02-17 083.169.011.127 4066 1018 2010-02-19 2010-02-19 086.124.160.020 1018 1018 2010-03-04 2010-03-04 058.016.210.030 1339 1017 2010-02-06 2010-02-15 078.088.047.218 7799 1017 2010-02-08 2010-03-08 121.012.107.108 4816 1017 2010-02-18 2010-02-20 078.143.138.048 7812 1017 2010-02-23 2010-03-12 074.207.229.202 1088 1017 2010-03-05 2010-03-06 182.018.031.034 9980 1017 2010-03-07 2010-03-16 190.233.019.060 1040 1017 2010-02-14 2010-02-15 080.255.086.148 1016 1016 2010-02-21 2010-02-21 080.081.127.142 3770 1016 2010-02-20 2010-02-20 094.249.035.085 1016 1016 2010-03-08 2010-03-08 084.073.030.175 2618 1016 2010-01-16 2010-02-26 083.035.023.077 1017 1016 2010-02-14 2010-02-22 088.168.065.056 1015 1015 2010-03-01 2010-03-01 094.024.129.022 1015 1015 2010-02-14 2010-02-14 078.097.147.133 3138 1015 2010-02-28 2010-03-05 078.241.185.175 9246 1015 2010-01-16 2010-03-10 200.035.082.076 1981 1015 2009-02-19 2010-03-01 082.065.174.133 1022 1014 2010-02-21 2010-02-22 078.234.249.096 15729 1014 2010-02-04 2010-03-08 094.024.186.183 1015 1014 2010-03-15 2010-03-15 187.160.026.135 1887 1014 2010-01-30 2010-03-16 186.009.077.073 2016 1013 2010-03-08 2010-03-08 118.114.052.020 1900 1013 2010-03-07 2010-03-08 210.073.152.195 3829 1012 2010-01-14 2010-02-21 069.155.134.042 2993 1012 2010-02-22 2010-02-22 078.230.232.043 148706 1011 2009-11-05 2010-03-10 125.206.221.250 1704 1011 2010-03-07 2010-03-07 151.009.065.163 4341 1010 2010-02-14 2010-03-15 078.225.107.047 21395 1010 2010-01-19 2010-03-07 221.215.134.249 8721 1009 2010-02-11 2010-02-26 059.120.036.079 5384 1009 2009-10-28 2010-02-26 212.080.011.186 12336 1008 2010-02-22 2010-03-12 195.074.091.130 1750 1008 2010-03-07 2010-03-12 078.240.080.021 7285 1008 2009-11-23 2010-02-23 190.220.240.244 1008 1008 2010-02-25 2010-02-25 078.060.180.076 5887 1008 2010-02-04 2010-03-08 218.237.181.033 2891 1007 2010-02-14 2010-03-11 078.233.108.091 35079 1007 2009-10-23 2010-03-08 078.234.164.158 6863 1007 2010-02-17 2010-03-08 078.242.236.140 6764 1006 2010-01-06 2010-03-05 119.109.146.222 2800 1006 2010-03-06 2010-03-06 149.156.166.111 3195 1006 2009-11-25 2010-03-11 078.108.253.247 1528 1006 2010-02-14 2010-03-15 139.055.103.141 4888 1006 2010-03-12 2010-03-13 201.094.225.154 1007 1005 2010-03-08 2010-03-08 211.206.120.173 1005 1005 2010-03-12 2010-03-12 078.058.036.133 6151 1005 2010-01-16 2010-02-23 064.199.250.060 1613 1005 2010-02-16 2010-02-28 190.003.101.061 1997 1005 2010-02-17 2010-02-21 219.084.252.071 1033 1004 2010-03-02 2010-03-03 201.160.061.060 4387 1004 2010-02-21 2010-02-27 095.224.051.107 1009 1003 2009-12-07 2010-03-13 067.032.159.219 2135 1003 2010-01-21 2010-03-12 078.234.052.126 6877 1003 2010-01-19 2010-03-08 085.186.070.041 5590 1002 2009-11-02 2010-03-16 085.222.060.125 4603 1002 2010-01-13 2010-03-11 078.228.032.051 6045 1001 2010-02-25 2010-03-08 139.055.103.031 4011 1001 2010-02-27 2010-02-27 067.158.042.077 2437 1001 2010-01-28 2010-03-11 078.228.086.085 7548 1001 2010-02-19 2010-03-15 078.059.037.196 12350 1000 2009-11-11 2010-02-17 091.205.241.077 1220 1000 2010-03-03 2010-03-07 190.208.099.054 2045 999 2010-03-04 2010-03-13 067.213.000.192 998 998 2010-03-06 2010-03-07 207.182.158.194 1058 998 2010-02-14 2010-02-14 202.054.041.194 1956 998 2009-04-27 2010-03-14 206.067.060.250 2036 997 2009-11-13 2010-02-17 203.115.174.226 84013 997 2010-02-06 2010-02-15 058.059.000.114 2169 997 2010-02-26 2010-03-15 221.236.020.042 2056 997 2009-12-13 2010-03-11 082.133.000.139 1147 997 2010-02-28 2010-02-28 190.043.002.116 1012 997 2010-03-02 2010-03-06 202.053.171.136 2236 996 2010-02-09 2010-03-05 078.062.049.130 1776 995 2010-01-31 2010-02-21 061.180.241.041 14789 995 2010-02-26 2010-03-13 218.002.112.082 1045 995 2010-03-10 2010-03-10 063.147.225.200 996 995 2010-03-10 2010-03-11 134.242.067.156 1093 995 2010-02-21 2010-02-21 061.158.167.092 995 995 2010-02-19 2010-02-19 078.240.243.197 6461 995 2010-02-09 2010-02-23 202.142.163.150 1988 993 2010-02-08 2010-02-17 211.003.149.147 1025 993 2010-03-04 2010-03-04 062.193.246.082 1059 993 2010-03-10 2010-03-11 187.092.082.130 37116 993 2010-02-24 2010-03-14 086.051.005.102 5001 993 2009-12-20 2010-02-19 204.152.218.232 1094 993 2010-02-26 2010-02-27 201.206.179.250 992 992 2010-02-20 2010-02-20 219.138.044.013 153636 992 2009-11-13 2010-03-13 064.034.137.066 1683 992 2009-09-05 2010-03-15 078.092.146.012 5382 991 2010-03-10 2010-03-14 221.195.040.078 991 991 2010-03-07 2010-03-07 095.027.131.205 992 991 2010-03-08 2010-03-08 200.106.103.039 1002 991 2010-02-24 2010-02-25 081.012.212.164 15943 990 2010-02-28 2010-03-11 078.138.169.161 1880 990 2009-11-17 2010-03-05 078.058.008.008 4900 990 2010-01-05 2010-03-14 078.238.144.196 6002 990 2010-02-21 2010-03-08 203.008.189.184 1243 989 2010-02-25 2010-03-02 200.062.019.178 296896 989 2010-01-30 2010-02-20 061.175.217.004 1045 989 2010-03-14 2010-03-15 078.244.200.014 6220 988 2010-02-19 2010-03-05 086.127.194.122 1851 988 2010-01-11 2010-02-28 201.148.135.053 1126 988 2010-02-14 2010-02-15 064.138.238.083 2123 988 2010-02-28 2010-03-04 078.159.057.237 6372 988 2009-12-24 2010-03-08 201.206.100.228 1326 987 2010-02-24 2010-03-12 201.162.003.145 1990 987 2010-02-26 2010-03-02 078.129.195.080 3766 986 2009-12-23 2010-02-23 064.128.080.102 1880 986 2010-03-02 2010-03-02 189.072.253.194 6490 985 2009-12-15 2010-03-09 067.228.072.214 2153 985 2010-02-27 2010-03-15 059.090.202.242 1913 985 2009-10-21 2010-03-09 112.204.051.053 1186 984 2010-01-07 2010-03-15 078.084.018.053 2114 984 2010-03-11 2010-03-15 195.082.173.032 4471 984 2010-02-13 2010-03-01 190.036.200.095 986 983 2010-03-08 2010-03-08 202.199.064.017 4322 983 2010-01-24 2010-03-11 059.125.052.061 1078 983 2009-09-14 2010-03-12 190.026.117.012 2587 982 2010-01-21 2010-03-04 200.158.082.134 16579 981 2010-01-02 2010-02-22 066.100.227.097 9978 981 2010-01-24 2010-02-22 200.107.211.130 3189 981 2010-02-10 2010-02-22 077.245.148.101 1092 981 2009-07-19 2010-02-21 078.009.083.167 5486 981 2010-02-04 2010-03-05 078.159.046.086 6189 981 2010-01-22 2010-02-21 064.238.249.123 2023 981 2010-02-28 2010-03-13 119.118.163.092 996 980 2010-02-20 2010-02-21 134.098.135.004 3105 980 2008-11-27 2010-03-15 078.241.184.090 5617 979 2010-01-16 2010-03-08 082.228.176.061 985 979 2009-12-27 2010-03-13 078.231.139.019 5972 979 2010-01-14 2010-03-06 207.183.180.208 1071 979 2010-02-20 2010-03-04 078.082.247.111 2767 979 2010-02-12 2010-02-14 078.233.144.208 5933 979 2009-12-12 2010-03-10 110.014.243.127 2779 979 2009-12-13 2010-03-13 218.002.203.092 1250 979 2010-03-10 2010-03-12 203.076.137.082 2217 978 2010-03-03 2010-03-04 186.014.085.039 2028 978 2010-02-24 2010-02-26 193.170.096.092 1191 978 2010-01-26 2010-03-12 195.222.170.015 1979 977 2010-02-21 2010-02-21 078.232.236.150 5467 977 2010-02-17 2010-03-08 211.234.117.241 1661 977 2010-03-15 2010-03-15 212.056.206.205 5729 977 2010-01-26 2010-02-25 123.007.030.199 1176 976 2010-03-11 2010-03-12 078.241.060.108 5700 976 2010-02-04 2010-03-06 212.174.009.186 2063 976 2009-05-16 2010-03-16 078.231.197.250 6094 976 2010-02-23 2010-03-08 213.042.202.158 2001 975 2009-06-21 2010-03-16 201.144.203.078 1950 975 2010-03-15 2010-03-15 125.225.088.232 224266 975 2010-02-20 2010-02-21 078.232.052.163 5745 975 2010-01-13 2010-02-14 118.233.163.156 5535 974 2010-02-09 2010-02-27 200.093.128.177 9088 974 2010-01-18 2010-03-16 074.222.003.018 1495 974 2010-03-14 2010-03-15 217.042.254.147 987 974 2010-02-25 2010-02-25 195.008.036.144 6029 973 2010-02-12 2010-03-04 173.212.245.202 1303 972 2010-02-22 2010-02-23 077.253.161.166 1089 972 2010-02-20 2010-02-20 072.022.025.005 1284 971 2009-11-17 2010-03-16 222.106.183.115 2861 971 2009-12-08 2010-03-14 079.098.031.054 3130 970 2010-02-16 2010-03-02 194.054.188.127 3691 970 2010-01-03 2010-02-28 094.244.005.075 985 969 2010-03-14 2010-03-15 078.231.246.175 22169 968 2010-02-08 2010-02-28 060.240.177.097 1038 968 2010-03-14 2010-03-14 189.002.193.142 1937 968 2010-03-08 2010-03-08 072.022.025.004 1287 968 2009-11-17 2010-03-13 200.099.140.066 1178 968 2010-02-25 2010-02-27 061.134.050.143 1434 967 2010-02-23 2010-03-07 198.051.017.009 1966 967 2010-02-25 2010-03-03 222.247.081.202 3040 965 2010-03-06 2010-03-11 078.128.007.056 1962 965 2010-03-08 2010-03-10 089.165.159.030 965 965 2010-02-26 2010-02-26 218.064.170.029 1212 965 2010-02-15 2010-02-20 078.233.028.050 1563 964 2010-03-15 2010-03-15 123.065.217.127 3816 963 2010-02-05 2010-02-22 078.228.028.085 10629 963 2010-02-09 2010-03-10 060.053.054.106 2792 963 2010-01-29 2010-02-24 222.252.152.134 978 963 2010-03-02 2010-03-02 065.183.247.020 1008 962 2010-02-02 2010-02-24 153.091.042.149 1805 962 2009-12-16 2010-03-14 210.064.051.246 1017 962 2010-02-16 2010-02-24 078.239.201.076 2879 961 2009-11-23 2010-03-14 200.214.250.150 3087 961 2010-02-12 2010-02-14 218.030.113.034 7763 960 2010-02-26 2010-03-04 072.022.025.006 1259 960 2009-11-22 2010-03-16 012.096.030.242 960 960 2010-02-19 2010-02-28 072.022.025.014 1251 959 2009-11-17 2010-03-13 078.057.114.058 1331 959 2010-03-05 2010-03-15 061.230.013.224 969 959 2010-02-18 2010-02-18 041.210.126.175 966 959 2010-02-16 2010-02-20 082.098.141.048 1242 959 2010-02-06 2010-02-17 190.208.131.171 2180 958 2010-02-09 2010-02-21 060.211.194.204 972 958 2010-03-02 2010-03-02 070.052.179.017 2827 958 2010-03-02 2010-03-11 218.060.133.141 6246 956 2010-01-29 2010-02-15 200.250.226.179 43975 956 2009-12-02 2010-03-10 078.061.100.177 5057 955 2009-11-17 2010-03-08 078.232.117.116 5456 955 2010-02-04 2010-02-26 110.139.050.195 977 954 2010-02-22 2010-03-09 200.106.102.234 954 954 2010-02-27 2010-02-27 219.065.191.067 1024 953 2010-02-16 2010-03-13 217.128.107.055 1000 953 2010-03-14 2010-03-14 112.179.062.017 1148 953 2010-02-03 2010-03-08 112.216.240.077 963 953 2010-02-22 2010-02-24 067.040.090.129 197536 953 2009-11-13 2010-02-16 184.000.009.242 104694 953 2010-02-12 2010-03-04 012.048.053.034 1713 953 2010-02-28 2010-02-28 066.063.021.005 6590 952 2010-01-11 2010-03-11 095.110.130.037 70173 952 2009-12-22 2010-02-14 072.022.025.003 1265 952 2009-11-17 2010-03-13 203.117.016.165 1321 951 2010-02-10 2010-02-23 078.056.099.139 23327 951 2010-01-26 2010-02-28 066.197.134.098 1996 951 2010-01-19 2010-02-15 221.238.196.187 1909 950 2010-02-23 2010-03-05 072.022.025.012 1222 950 2009-11-17 2010-03-16 078.083.221.082 15168 950 2010-02-19 2010-03-06 203.123.190.058 21339 950 2009-12-27 2010-02-27 092.243.019.233 949 949 2010-02-23 2010-02-23 072.022.025.008 1251 949 2009-11-17 2010-03-16 201.221.119.170 1710 947 2010-02-11 2010-02-21 186.014.005.115 1866 947 2010-02-26 2010-02-26 075.126.006.082 7809 947 2010-01-18 2010-03-10 202.142.020.016 974 946 2010-02-10 2010-03-03 109.123.074.160 983 946 2010-02-25 2010-02-25 078.234.188.109 4766 946 2010-02-19 2010-03-08 219.094.193.106 3526 946 2010-03-03 2010-03-11 069.033.093.038 286437 945 2009-12-11 2010-02-25 201.030.013.002 1623 945 2009-07-23 2010-03-15 081.022.097.008 1694 945 2010-02-24 2010-02-26 078.039.218.200 8202 944 2010-01-19 2010-03-06 095.224.124.164 971 944 2010-02-09 2010-03-12 078.240.221.083 4258 943 2010-01-08 2010-03-01 072.022.025.007 1225 943 2009-11-17 2010-03-16 081.028.196.123 1033 943 2009-11-29 2010-02-27 094.240.128.034 1044 942 2010-02-15 2010-02-16 088.228.220.076 988 942 2010-02-14 2010-02-15 072.076.157.221 317580 942 2010-02-14 2010-02-16 078.235.216.213 8779 941 2009-11-24 2010-03-10 211.233.062.147 2570 941 2010-02-19 2010-02-26 196.202.080.005 944 941 2010-02-16 2010-03-02 213.115.092.093 2789 941 2010-02-13 2010-03-14 078.226.168.234 4844 940 2010-01-12 2010-02-28 190.003.080.109 1874 940 2010-02-18 2010-02-23 074.053.053.201 1984 940 2010-03-07 2010-03-07 088.244.141.048 939 939 2010-02-19 2010-02-19 218.051.177.186 944 939 2010-03-12 2010-03-13 202.108.028.070 1658 939 2010-02-25 2010-03-13 195.117.074.062 5104 939 2010-03-01 2010-03-12 201.210.082.245 1868 938 2010-02-17 2010-03-05 174.120.190.059 1105 938 2010-03-15 2010-03-15 187.160.096.206 1876 938 2010-02-27 2010-02-27 082.177.100.177 1530 938 2010-02-26 2010-03-01 121.052.148.066 970 938 2010-03-08 2010-03-08 078.088.072.091 9995 938 2010-01-22 2010-02-15 041.228.010.017 1887 937 2010-03-03 2010-03-16 070.090.164.093 3669 937 2010-03-14 2010-03-15 089.029.100.234 2273 937 2010-03-14 2010-03-15 116.048.154.036 2490 936 2010-03-08 2010-03-11 064.184.098.226 2530 935 2010-03-09 2010-03-12 072.022.025.017 1134 935 2009-11-17 2010-03-14 078.129.026.141 4937 934 2010-02-11 2010-02-24 078.061.069.050 4542 934 2010-01-12 2010-02-21 078.024.242.100 10530 934 2009-12-13 2010-02-16 219.146.090.146 35944 934 2009-12-07 2010-03-04 078.059.118.141 103282 934 2010-02-07 2010-02-23 204.116.169.002 1968 933 2010-03-12 2010-03-15 192.068.001.094 1452 933 2010-03-08 2010-03-08 174.141.078.213 1927 932 2010-02-19 2010-03-04 038.100.155.005 1226 932 2010-03-01 2010-03-01 078.234.044.227 7681 930 2010-01-10 2010-03-01 117.041.228.236 932 929 2010-02-28 2010-02-28 095.225.071.141 2272 929 2009-06-09 2010-03-11 078.236.215.068 4789 928 2010-01-19 2010-03-08 112.203.059.208 1112 928 2009-12-25 2010-03-16 012.049.202.131 1761 927 2008-10-17 2010-03-16 195.006.172.170 946 927 2010-03-10 2010-03-10 078.232.100.040 4123 927 2009-10-28 2010-02-23 078.225.024.103 9714 926 2010-01-10 2010-02-24 112.065.249.143 999 926 2010-02-27 2010-03-12 085.176.252.184 931 926 2010-02-28 2010-03-01 162.039.084.205 1137 926 2010-03-02 2010-03-02 088.160.018.211 1083 925 2010-03-04 2010-03-06 078.139.025.196 4516 925 2009-11-20 2010-03-06 201.156.045.224 3356 925 2010-02-07 2010-02-20 078.062.047.153 4756 925 2010-02-04 2010-03-10 077.109.241.006 937 925 2010-02-17 2010-02-17 186.081.016.205 1672 925 2010-02-24 2010-02-24 203.134.177.105 926 925 2010-02-28 2010-03-15 088.247.168.228 967 924 2010-02-06 2010-02-27 078.088.061.155 4415 924 2010-02-14 2010-03-08 194.045.186.252 2923 924 2010-02-17 2010-02-18 085.114.137.164 940 924 2010-02-19 2010-02-19 173.161.040.010 1778 924 2010-03-05 2010-03-11 218.077.056.199 2871 922 2010-03-11 2010-03-16 078.143.211.057 4154 922 2009-11-06 2010-03-13 080.253.139.158 3346 922 2010-03-06 2010-03-10 072.022.025.016 1128 921 2009-11-17 2010-03-16 078.231.020.011 3939 920 2009-11-20 2010-03-09 189.153.236.062 952 920 2010-02-21 2010-02-21 061.147.123.048 918 918 2010-03-08 2010-03-08 190.000.081.023 1798 918 2010-02-05 2010-02-23 218.209.079.235 40160 917 2010-02-12 2010-02-25 058.042.247.172 1958 917 2010-01-17 2010-02-27 078.227.063.219 4380 917 2009-10-29 2010-03-06 078.236.114.062 1247 916 2010-01-23 2010-03-07 088.026.209.143 3301 915 2010-01-31 2010-03-01 060.048.010.154 2258 915 2010-02-25 2010-02-26 211.130.251.018 1385 914 2010-03-12 2010-03-12 123.051.104.053 914 914 2010-02-14 2010-02-27 219.141.127.222 1528 913 2010-03-12 2010-03-13 064.178.128.142 1449 913 2010-02-12 2010-02-20 089.165.131.103 1031 912 2010-01-21 2010-03-12 123.172.006.210 2407 912 2010-02-13 2010-02-17 071.182.185.215 1710 912 2010-01-20 2010-02-23 220.128.144.051 1435 911 2010-03-07 2010-03-12 061.172.141.107 2225 911 2009-11-20 2010-03-12 203.116.232.104 910 910 2010-03-13 2010-03-13 078.239.090.193 4591 910 2010-02-25 2010-03-06 186.018.017.123 1079 909 2010-02-15 2010-03-15 078.233.180.171 15250 909 2010-02-09 2010-03-08 078.236.064.187 6318 908 2009-11-08 2010-03-02 195.225.069.222 3980 908 2010-02-14 2010-03-11 085.094.179.222 4919 907 2010-02-26 2010-03-11 062.005.168.085 2310 907 2010-02-27 2010-03-11 095.124.007.107 1055 907 2010-03-05 2010-03-06 078.058.169.208 11613 907 2010-03-04 2010-03-12 078.055.002.189 2093 907 2010-03-08 2010-03-08 083.143.165.130 1199 907 2010-02-15 2010-03-11 201.003.093.053 918 907 2010-02-25 2010-02-25 083.143.128.001 1995 906 2008-12-25 2010-03-16 202.053.069.130 2892 906 2010-02-13 2010-02-18 173.203.209.085 934 905 2010-02-13 2010-02-14 222.219.183.016 936 905 2010-03-04 2010-03-04 200.051.081.128 932 904 2010-01-21 2010-03-07 123.030.050.123 2889 904 2010-01-26 2010-02-18 091.191.164.133 1144 904 2010-02-26 2010-02-26 204.124.183.216 1953 904 2010-03-07 2010-03-07 085.193.202.146 1792 903 2009-12-20 2010-03-04 199.181.134.212 1737 903 2009-10-02 2010-03-15 078.084.151.062 4193 902 2010-02-14 2010-02-20 212.096.167.197 5537 901 2010-02-20 2010-03-11 190.075.227.005 1481 901 2010-01-25 2010-02-18 062.202.036.009 2163 901 2010-03-03 2010-03-11 078.084.011.176 4530 900 2010-02-26 2010-03-01 072.022.025.010 1163 900 2009-09-05 2010-03-13 201.230.219.093 900 900 2010-02-27 2010-02-27 072.022.025.019 1183 900 2009-11-17 2010-03-10 078.231.157.065 11003 899 2010-02-19 2010-03-08 202.097.185.170 2910 898 2010-03-01 2010-03-07 218.154.010.028 978 898 2010-03-06 2010-03-14 218.092.039.066 1061 898 2010-01-29 2010-03-08 216.224.114.138 1350 898 2010-01-20 2010-02-27 190.040.253.012 897 897 2010-02-23 2010-03-04 140.124.072.087 935 897 2010-02-09 2010-03-01 064.077.217.083 2227 896 2010-03-05 2010-03-10 078.056.107.150 4023 896 2009-06-18 2010-03-05 024.021.193.093 1258 896 2010-02-28 2010-03-06 098.126.064.076 1093 896 2010-03-04 2010-03-07 078.039.207.007 4696 895 2009-10-07 2010-03-02 124.217.219.186 2047 894 2010-01-18 2010-02-17 072.022.025.011 1173 894 2009-11-17 2010-03-16 210.051.191.165 1771 893 2010-02-13 2010-03-14 078.235.216.218 4111 893 2010-02-23 2010-03-04 190.043.178.236 904 893 2010-03-03 2010-03-05 095.154.248.064 1166 893 2010-02-05 2010-02-22 200.121.144.011 893 893 2010-03-02 2010-03-04 190.208.077.135 1719 892 2010-01-31 2010-02-21 078.084.152.181 1388 892 2010-02-28 2010-02-28 139.055.097.173 8666 892 2010-02-17 2010-02-20 012.096.142.078 907 892 2010-02-22 2010-03-10 109.070.067.044 1651 891 2010-02-13 2010-03-15 202.138.250.188 914 891 2010-02-15 2010-02-18 118.169.215.173 896 891 2010-02-24 2010-02-24 078.096.047.043 4851 891 2009-11-09 2010-03-09 078.225.085.138 3983 891 2009-10-29 2010-03-10 078.083.105.182 4093 891 2010-02-09 2010-03-08 195.034.119.142 1088 890 2010-02-17 2010-02-17 202.169.054.157 1146 890 2010-03-02 2010-03-05 074.138.051.233 1654 890 2010-02-15 2010-02-18 072.022.025.015 1155 890 2009-11-17 2010-03-16 070.061.248.087 4055 889 2009-11-25 2010-03-10 077.093.197.086 889 889 2010-03-10 2010-03-10 072.012.038.117 2150 889 2010-02-12 2010-02-18 118.096.054.091 888 888 2010-02-24 2010-02-25 063.241.117.102 8798 888 2010-03-13 2010-03-13 078.239.101.057 3752 888 2010-03-05 2010-03-10 075.126.240.177 1080 887 2010-03-09 2010-03-10 095.026.062.151 898 887 2010-03-07 2010-03-07 072.022.025.013 1160 887 2009-11-17 2010-03-15 190.081.104.028 912 887 2010-03-05 2010-03-11 190.163.169.038 2265 887 2010-02-05 2010-02-21 069.193.095.041 886 886 2010-02-16 2010-02-16 139.055.097.089 4341 885 2010-03-13 2010-03-13 190.209.152.137 1700 885 2010-02-26 2010-02-26 222.168.013.122 943 885 2010-03-13 2010-03-13 078.084.098.083 4839 885 2010-02-08 2010-03-10 125.062.213.101 2326 885 2010-02-20 2010-03-13 200.163.249.100 933 885 2010-01-27 2010-02-21 084.235.054.114 1180 884 2010-02-16 2010-02-17 139.055.087.177 2243 884 2010-01-26 2010-02-18 174.036.194.097 1239 884 2009-12-07 2010-02-27 024.207.123.084 5097 884 2010-03-04 2010-03-15 093.067.203.010 890 884 2009-07-03 2010-03-09 064.004.099.208 1078 884 2010-03-14 2010-03-14 094.094.162.042 937 883 2010-01-11 2010-03-11 060.170.082.059 1142 883 2010-01-25 2010-02-27 084.055.088.088 4615 882 2010-02-23 2010-02-23 204.111.079.147 2475 882 2010-03-14 2010-03-16 121.078.098.098 1302 882 2010-02-26 2010-03-14 074.207.250.082 900 882 2010-03-04 2010-03-05 063.223.079.117 4758 881 2010-02-16 2010-02-18 195.112.232.117 1149 881 2010-02-15 2010-02-15 186.018.095.085 1768 880 2010-02-21 2010-02-21 118.036.237.080 906 880 2010-02-15 2010-02-15 190.026.081.028 2794 880 2009-07-15 2010-03-08 078.228.170.009 4732 879 2010-02-21 2010-03-08 187.160.037.093 1711 879 2010-02-24 2010-02-24 208.065.219.134 887 878 2010-02-11 2010-02-18 195.160.222.101 6796 878 2009-11-18 2010-02-28 078.058.062.164 4712 878 2010-02-08 2010-03-14 222.155.005.096 876 876 2010-02-28 2010-03-02 113.028.019.114 5248 876 2009-10-28 2010-02-24 060.190.216.085 991 876 2010-02-16 2010-02-16 201.240.099.047 875 875 2010-02-26 2010-03-08 216.129.098.170 1422 874 2010-02-17 2010-02-17 217.165.244.180 919 873 2010-02-03 2010-03-08 078.108.249.122 891 873 2010-02-18 2010-03-10 201.026.132.183 2491 873 2010-01-12 2010-02-18 210.181.222.088 874 873 2010-02-21 2010-02-21 078.157.082.074 3748 872 2010-02-13 2010-02-17 078.242.164.078 3740 872 2010-01-02 2010-03-08 061.176.216.091 3650 870 2010-02-16 2010-03-02 078.088.127.083 3448 869 2010-02-28 2010-03-08 186.081.105.108 1747 869 2010-02-21 2010-02-21 069.175.104.026 1021 869 2010-03-10 2010-03-13 059.125.249.238 1049 869 2009-12-01 2010-02-28 083.235.186.006 1793 868 2010-03-06 2010-03-15 203.162.168.110 868 868 2010-03-07 2010-03-07 200.082.225.228 1736 868 2010-02-21 2010-02-21 118.168.140.154 2059 868 2010-03-09 2010-03-09 174.129.169.125 1087 868 2010-03-04 2010-03-04 058.221.203.158 1619 867 2009-12-21 2010-03-01 121.011.069.249 4736 867 2010-02-12 2010-03-14 082.117.202.178 1251 867 2009-10-27 2010-03-16 066.182.205.174 194795 866 2009-11-24 2010-03-12 064.231.255.039 2373 865 2010-03-06 2010-03-09 201.092.095.088 865 865 2010-02-27 2010-02-27 190.209.123.142 1740 865 2010-02-26 2010-03-13 222.091.160.107 152864 865 2010-03-11 2010-03-11 200.027.116.228 3640 864 2010-01-15 2010-02-24 125.187.159.066 3115 864 2010-02-26 2010-03-06 174.123.100.066 1087 863 2010-03-06 2010-03-07 218.070.003.226 999 862 2010-02-09 2010-02-15 079.189.237.162 862 862 2010-01-07 2010-03-06 077.232.001.125 3306 862 2007-11-16 2010-03-12 064.150.136.116 2402 862 2010-02-10 2010-02-14 211.100.059.074 887 861 2010-02-26 2010-03-01 074.053.162.114 1101 861 2010-03-06 2010-03-12 067.019.072.202 1059 861 2010-02-24 2010-02-26 200.042.174.109 4254 860 2009-02-12 2010-02-24 222.108.131.030 1831 859 2010-01-25 2010-03-09 078.241.029.074 3644 859 2010-02-19 2010-03-01 125.230.086.155 2837 858 2010-02-11 2010-02-15 174.037.045.152 1025 858 2010-02-18 2010-03-16 122.116.058.241 3459 858 2009-11-23 2010-03-14 061.172.240.011 929 858 2010-03-10 2010-03-10 090.179.104.002 859 857 2010-02-26 2010-03-02 123.150.191.169 1381 856 2010-03-03 2010-03-13 063.253.112.042 1000 855 2010-02-12 2010-02-15 078.062.019.025 3525 855 2010-02-08 2010-03-08 189.125.228.016 2919 854 2009-12-15 2010-03-08 168.243.157.185 966 854 2010-01-28 2010-02-26 194.181.095.075 4422 853 2009-12-22 2010-03-11 079.120.203.152 1192 853 2010-01-21 2010-02-27 174.037.195.082 1125 852 2010-03-03 2010-03-15 148.204.139.008 18416 851 2010-02-13 2010-02-28 060.028.233.139 1340 851 2010-03-12 2010-03-15 067.019.038.042 947 851 2010-03-08 2010-03-08 078.092.132.040 3529 851 2010-02-09 2010-03-10 206.227.160.010 1837 850 2010-01-17 2010-02-27 109.235.249.147 1116 850 2010-02-21 2010-02-21 078.250.123.089 3740 850 2010-02-14 2010-02-18 070.107.250.005 1761 849 2010-02-11 2010-02-19 069.041.180.105 1705 849 2010-02-18 2010-02-18 200.050.020.104 1520 848 2009-03-06 2010-03-15 124.082.068.006 2499 848 2010-02-18 2010-02-26 082.237.159.157 1010 848 2010-03-04 2010-03-06 190.209.022.022 1701 848 2010-02-24 2010-02-24 078.242.136.116 3589 847 2010-02-09 2010-03-08 075.150.013.173 1405 846 2009-09-14 2010-03-14 061.159.132.045 2651 845 2009-11-25 2010-02-18 190.209.060.211 1467 845 2010-02-21 2010-02-21 200.106.109.153 845 845 2010-02-13 2010-02-20 210.002.141.026 2798 844 2009-12-07 2010-03-16 222.016.081.109 1096 844 2010-02-28 2010-02-28 190.028.083.096 844 844 2010-02-08 2010-02-14 190.105.066.178 1551 844 2010-02-24 2010-02-25 148.228.110.123 845 844 2008-10-18 2010-03-01 085.070.020.219 844 843 2010-02-27 2010-02-27 087.057.048.024 2500 843 2010-02-28 2010-02-28 115.134.219.038 850 843 2010-03-01 2010-03-04 203.155.198.001 1379 843 2010-02-25 2010-02-25 190.159.230.062 1578 842 2010-02-21 2010-02-21 211.148.131.003 874 842 2010-03-06 2010-03-10 205.209.118.060 2826 842 2010-02-18 2010-02-19 078.240.144.186 3570 842 2009-11-11 2010-03-06 220.188.187.142 929 841 2010-02-26 2010-02-26 088.209.084.147 2127 841 2010-02-19 2010-02-27 209.044.099.018 841 841 2010-02-22 2010-02-24 204.111.064.030 1312 841 2010-01-30 2010-02-23 218.075.079.018 2384 840 2010-01-12 2010-03-11 201.144.247.051 902 840 2010-02-14 2010-02-24 195.200.082.170 1046 840 2010-01-29 2010-02-16 213.042.246.083 1522 840 2009-05-13 2010-03-15 078.031.180.228 3437 840 2010-02-23 2010-03-01 201.006.123.099 3494 839 2010-01-28 2010-02-17 173.186.248.049 2343 839 2010-02-26 2010-03-01 200.059.016.185 50799 839 2010-01-11 2010-02-17 061.074.060.231 842 838 2010-03-11 2010-03-11 062.141.037.241 2156 838 2010-01-31 2010-02-17 200.174.214.151 28837 837 2010-02-15 2010-03-04 139.055.103.044 1663 837 2010-03-05 2010-03-05 200.115.226.090 1622 837 2010-02-21 2010-02-21 078.061.097.083 3261 836 2010-02-17 2010-02-20 078.232.215.118 6046 836 2010-01-26 2010-02-28 072.022.025.018 1024 836 2009-11-17 2010-03-10 078.239.018.218 4916 836 2010-02-13 2010-03-01 065.041.144.104 878 835 2010-02-22 2010-02-27 068.162.090.148 293090 835 2010-02-22 2010-03-11 082.113.171.140 2020 835 2010-02-28 2010-03-14 078.097.148.153 2792 835 2010-02-23 2010-03-11 078.084.136.162 2469 835 2010-02-22 2010-02-23 117.041.229.061 8860 833 2010-02-26 2010-03-13 218.207.071.223 6523 833 2010-03-09 2010-03-10 186.109.008.136 1806 833 2010-02-24 2010-03-04 124.011.145.090 3747 833 2010-03-13 2010-03-15 058.210.180.099 2164 832 2010-03-12 2010-03-13 218.204.049.005 1485 832 2010-02-24 2010-03-07 078.060.233.112 3407 832 2010-03-08 2010-03-12 066.147.244.168 2589 831 2010-02-21 2010-02-22 121.101.209.069 1524 830 2010-02-28 2010-03-01 089.097.198.003 832 830 2010-02-28 2010-02-28 078.231.139.237 2577 830 2010-02-09 2010-03-13 088.245.061.228 829 829 2010-02-26 2010-02-26 119.147.025.043 833 829 2010-02-21 2010-02-22 125.230.157.034 14922 829 2010-03-13 2010-03-13 193.185.175.058 1332 828 2010-02-08 2010-02-26 078.097.148.139 2002 828 2010-02-23 2010-03-14 078.240.028.233 3573 828 2010-02-14 2010-03-02 078.233.090.007 3353 828 2009-11-24 2010-02-17 089.149.194.024 1927 827 2010-03-07 2010-03-13 125.236.231.047 3194 827 2010-03-07 2010-03-13 083.016.059.066 826 826 2010-03-02 2010-03-11 085.103.038.148 829 826 2010-03-01 2010-03-01 078.189.240.194 2777 825 2010-02-18 2010-03-10 083.018.086.179 2496 825 2010-02-14 2010-03-01 070.038.078.213 918 825 2010-03-09 2010-03-09 122.225.107.074 2507 824 2010-02-21 2010-02-22 064.184.098.141 1656 823 2010-03-14 2010-03-14 078.084.099.220 840 823 2010-03-10 2010-03-15 075.126.034.040 1269 822 2010-03-12 2010-03-13 125.230.070.147 3190 822 2010-03-03 2010-03-05 218.060.130.185 1068 821 2010-03-04 2010-03-09 069.198.067.004 12159 821 2010-01-21 2010-03-08 058.059.101.030 1438 820 2010-03-03 2010-03-06 078.233.235.041 5146 820 2010-02-28 2010-03-08 190.209.028.127 1644 820 2010-02-21 2010-02-21 062.225.141.186 1648 820 2010-01-27 2010-03-14 148.208.234.006 1411 820 2010-01-31 2010-03-05 067.228.177.218 2392 818 2010-02-21 2010-03-11 122.129.250.001 819 818 2010-03-08 2010-03-08 078.237.017.142 3107 818 2009-11-24 2010-03-12 078.155.127.017 2445 818 2010-03-01 2010-03-12 217.114.115.113 898 818 2010-01-02 2010-03-09 190.179.082.061 2158 818 2010-02-19 2010-02-22 189.073.195.018 1591 818 2009-01-22 2010-03-06 201.162.007.173 1635 817 2010-02-26 2010-02-26 078.229.204.192 3300 817 2010-02-14 2010-03-14 222.240.120.223 2775 817 2010-02-07 2010-02-22 081.150.214.033 1436 816 2010-02-10 2010-03-13 125.230.076.150 2966 816 2010-02-24 2010-02-27 190.159.197.135 1644 816 2010-02-21 2010-02-21 067.110.187.039 1238 816 2010-01-08 2010-02-16 195.112.152.223 2519 815 2009-10-17 2010-03-15 078.235.174.186 3291 815 2010-02-25 2010-03-08 078.165.167.231 814 814 2010-02-14 2010-02-14 078.138.144.196 2829 814 2010-01-12 2010-03-10 078.174.137.245 814 814 2010-02-24 2010-02-24 190.159.228.107 1629 814 2010-02-24 2010-02-24 219.165.116.030 1437 813 2010-02-09 2010-03-14 080.218.033.237 10438 813 2010-01-26 2010-02-24 058.213.148.133 1074 813 2010-03-12 2010-03-13 117.103.192.029 853 813 2010-02-09 2010-03-01 187.116.182.087 2917 813 2010-03-04 2010-03-04 058.167.253.100 814 812 2010-02-10 2010-02-14 173.001.052.034 1552 812 2010-01-30 2010-03-04 083.067.055.158 811 811 2010-02-18 2010-02-18 078.226.206.022 3141 810 2010-01-11 2010-03-08 200.075.109.195 994 810 2010-03-15 2010-03-15 204.028.121.020 2149 810 2010-02-24 2010-02-28 115.093.252.035 2351 809 2010-02-22 2010-03-15 095.168.167.071 941 809 2010-03-06 2010-03-06 078.088.199.033 1448 809 2010-02-04 2010-02-18 077.079.254.191 1033 808 2010-03-10 2010-03-12 195.160.223.129 3422 808 2010-02-13 2010-02-23 118.154.254.219 3479 808 2010-01-19 2010-02-24 119.159.255.025 808 808 2010-03-07 2010-03-07 157.100.129.203 2282 807 2010-02-25 2010-02-25 078.063.093.102 3189 807 2010-03-03 2010-03-08 078.084.087.135 3789 807 2010-03-05 2010-03-10 208.043.100.016 964 806 2010-02-28 2010-03-15 078.227.181.251 2978 806 2010-01-28 2010-03-05 128.046.115.059 840 805 2010-02-27 2010-02-28 074.219.160.059 4149 805 2010-01-12 2010-02-24 069.029.044.123 1032 805 2010-02-22 2010-02-22 188.107.253.084 2543 805 2010-02-25 2010-02-25 190.043.112.200 805 804 2010-02-16 2010-02-17 061.095.144.117 867 804 2010-02-06 2010-02-24 202.142.172.076 1941 804 2009-11-26 2010-03-07 089.169.017.063 3087 804 2010-02-11 2010-03-06 062.149.175.150 90337 803 2010-03-05 2010-03-14 070.091.238.061 1479 803 2010-03-14 2010-03-15 058.216.214.226 1080 803 2010-03-09 2010-03-10 190.159.082.030 960 803 2010-03-15 2010-03-15 209.188.071.004 175927 803 2010-03-07 2010-03-10 203.123.036.103 915 802 2010-03-03 2010-03-07 218.017.147.050 1545 802 2010-03-14 2010-03-14 208.051.040.012 1005 802 2010-01-28 2010-03-09 200.006.059.036 1541 801 2010-02-13 2010-02-17 113.225.191.230 801 801 2010-03-09 2010-03-11 208.096.182.126 2469 800 2009-05-26 2010-03-16 062.225.185.170 1497 800 2009-02-26 2010-03-15 078.128.068.126 2335 800 2010-03-12 2010-03-12 121.177.184.065 1151 800 2010-02-21 2010-03-05 168.215.079.212 3395 800 2010-02-05 2010-02-15 067.199.112.214 7273 799 2010-02-02 2010-02-24 201.255.035.003 2320 799 2010-01-28 2010-02-17 188.004.007.093 1166 799 2010-03-01 2010-03-03 122.128.105.230 1162 798 2010-02-08 2010-02-16 189.157.101.113 23527 798 2010-03-02 2010-03-13 202.147.191.210 108633 798 2009-11-11 2010-02-23 061.147.109.206 1470 798 2010-01-20 2010-03-03 080.191.166.023 1672 798 2010-02-02 2010-02-27 190.224.103.138 1082 798 2010-03-10 2010-03-12 212.199.153.147 1554 797 2010-02-01 2010-03-15 114.200.199.107 919 797 2010-02-17 2010-02-18 066.046.052.250 1344 797 2009-12-17 2010-03-16 113.254.083.084 1193 797 2010-02-10 2010-02-19 064.119.137.082 2134 797 2010-03-07 2010-03-15 195.210.149.199 2806 797 2009-12-24 2010-02-26 024.152.245.122 61243 796 2010-02-12 2010-02-20 201.031.055.011 3473 796 2009-08-07 2010-03-13 090.176.200.018 803 796 2010-03-03 2010-03-03 211.020.227.140 1024 796 2010-01-23 2010-02-22 060.021.206.010 2605 796 2009-11-05 2010-03-12 193.074.064.040 8450 796 2010-01-17 2010-02-24 064.188.198.239 1804 796 2010-02-09 2010-02-15 066.090.097.026 1004 795 2010-02-22 2010-02-22 120.072.032.047 845 795 2010-02-21 2010-03-11 121.134.235.152 5668 795 2010-03-05 2010-03-06 024.172.028.250 2389 795 2010-02-25 2010-02-26 139.055.073.051 1996 795 2010-03-13 2010-03-13 078.057.118.227 1677 794 2010-02-07 2010-03-15 064.000.233.060 2360 794 2010-02-27 2010-02-27 121.187.102.191 2292 794 2010-02-12 2010-03-16 125.046.058.103 1567 794 2010-03-11 2010-03-11 121.131.171.121 2320 793 2010-02-10 2010-03-13 074.107.101.152 3279 793 2009-12-18 2010-03-13 196.210.035.226 1357 793 2010-02-17 2010-03-14 078.186.255.027 3009 793 2010-02-14 2010-03-06 078.084.046.110 958 793 2010-03-05 2010-03-06 078.232.053.036 2927 792 2010-02-01 2010-02-17 217.027.117.046 799 792 2010-02-28 2010-03-02 211.040.110.006 1315 792 2010-03-03 2010-03-15 093.091.049.012 1286 792 2009-12-23 2010-03-01 125.230.068.154 2913 791 2010-02-28 2010-03-02 189.026.081.167 3063 791 2010-03-02 2010-03-04 078.242.072.051 1228 791 2010-03-01 2010-03-07 072.043.007.015 1580 790 2010-02-04 2010-03-15 190.055.244.126 1512 789 2010-03-04 2010-03-05 078.060.214.215 3005 789 2010-02-09 2010-03-14 208.080.193.029 4532 789 2009-09-19 2010-03-13 202.105.200.233 1824 789 2010-02-18 2010-02-27 060.031.211.005 1734 789 2010-03-04 2010-03-04 090.044.217.226 788 788 2010-02-14 2010-02-14 190.043.008.172 788 788 2010-02-22 2010-02-22 078.142.009.205 2827 788 2010-02-12 2010-03-10 061.095.026.101 10825 788 2010-01-20 2010-03-15 189.045.242.098 1417 787 2009-06-18 2010-03-15 059.127.131.250 21388 787 2009-10-12 2010-03-14 089.149.209.068 3039 787 2009-12-17 2010-03-05 148.235.224.039 3905 786 2010-02-11 2010-02-23 070.090.139.133 2903 786 2010-03-14 2010-03-14 213.008.053.086 1491 786 2009-11-25 2010-03-16 061.120.175.157 787 786 2010-03-03 2010-03-03 202.129.000.043 4497 784 2009-11-19 2010-03-11 079.127.028.010 4611 784 2009-12-22 2010-02-23 190.140.249.135 1580 784 2010-03-04 2010-03-13 072.009.108.242 1315 784 2010-02-17 2010-02-17 118.208.128.110 784 783 2010-03-06 2010-03-06 077.228.177.002 898 783 2010-03-04 2010-03-06 065.183.247.225 794 783 2010-02-18 2010-02-18 082.090.090.147 783 783 2010-03-11 2010-03-11 067.079.190.078 1303 782 2010-02-26 2010-03-13 118.167.036.063 1053 782 2010-03-13 2010-03-14 189.058.052.080 2246 782 2010-03-10 2010-03-12 124.107.022.211 789 781 2010-02-18 2010-02-20 078.129.059.188 7043 781 2010-02-12 2010-02-17 058.216.172.082 1524 781 2010-03-07 2010-03-07 190.066.232.093 781 781 2010-02-24 2010-03-01 024.066.052.012 2267 781 2010-02-24 2010-03-06 201.206.166.118 781 781 2010-02-17 2010-02-18 097.077.090.213 37697 779 2010-02-23 2010-02-26 078.251.077.094 2822 779 2010-03-03 2010-03-06 078.131.083.172 3163 779 2010-02-04 2010-03-08 203.099.163.240 3382 779 2009-11-16 2010-03-12 089.132.104.230 3708 779 2010-02-08 2010-03-04 125.128.026.220 937 779 2010-02-17 2010-02-21 062.049.111.130 805 778 2010-02-17 2010-02-19 078.082.247.025 1969 778 2010-02-17 2010-03-08 077.220.015.146 4272308 778 2009-08-26 2010-03-15 121.012.109.179 1397 778 2010-03-14 2010-03-14 213.164.204.099 1557 777 2010-03-08 2010-03-08 115.069.001.210 1343 777 2010-03-05 2010-03-13 208.080.193.034 4608 776 2009-09-23 2010-03-15 190.208.123.241 1558 776 2010-03-04 2010-03-05 125.121.021.101 1021 776 2010-02-24 2010-02-27 064.206.157.002 1685 775 2010-02-22 2010-02-27 064.130.175.039 2054 775 2010-03-10 2010-03-16 188.040.045.077 782 774 2010-03-16 2010-03-16 082.250.185.204 774 774 2010-03-11 2010-03-11 076.079.130.025 801 774 2010-02-03 2010-02-17 190.012.048.142 18706 774 2010-02-12 2010-03-05 112.201.145.136 4583 773 2010-02-18 2010-02-18 209.144.129.014 2121 773 2010-02-22 2010-03-02 078.230.120.020 1654 773 2010-01-11 2010-03-08 078.165.141.213 1026 772 2010-02-22 2010-02-22 115.099.069.097 2758 772 2010-03-11 2010-03-11 070.088.156.033 2467 772 2010-02-05 2010-03-12 089.122.158.040 2276 772 2010-01-14 2010-02-26 186.084.118.187 1214 772 2010-02-21 2010-02-21 078.111.036.199 935 771 2010-02-17 2010-02-17 200.008.069.210 1532 771 2010-02-25 2010-02-25 125.230.073.109 2524 771 2010-02-09 2010-02-21 078.136.088.095 793 770 2010-02-14 2010-03-09 124.198.167.029 771 770 2010-02-26 2010-02-26 117.041.228.195 1047 770 2010-02-17 2010-02-21 165.228.235.024 10501 770 2010-02-28 2010-03-05 189.013.157.048 773 770 2010-03-01 2010-03-02 219.159.079.011 776 770 2010-03-05 2010-03-15 141.085.255.152 780 770 2010-02-23 2010-02-23 075.077.099.162 5978 769 2010-02-02 2010-03-12 083.111.103.194 2094 769 2010-03-06 2010-03-07 195.093.134.181 1400 769 2010-02-23 2010-02-28 201.216.030.244 1554 769 2010-03-04 2010-03-05 094.075.069.231 1687 768 2010-02-19 2010-02-19 208.094.174.069 6189 768 2010-01-28 2010-03-01 078.179.116.199 773 768 2010-03-01 2010-03-03 070.082.003.152 768 768 2010-02-22 2010-03-12 190.233.047.227 768 768 2010-02-21 2010-02-21 210.212.246.133 4592 767 2010-03-12 2010-03-12 221.012.040.138 1247 767 2010-02-27 2010-03-13 218.058.211.194 8204 767 2010-03-07 2010-03-07 166.082.170.051 27911 767 2009-12-17 2010-03-06 222.066.163.082 1393 767 2009-09-04 2010-03-13 113.105.157.248 1508 766 2010-02-16 2010-02-20 072.043.231.188 3253 766 2010-02-24 2010-02-24 078.097.151.210 1196 766 2010-02-28 2010-03-06 085.093.042.064 766 766 2010-02-17 2010-02-22 085.016.078.007 1458 765 2010-01-14 2010-03-15 060.178.078.068 8712 765 2010-02-17 2010-02-22 222.166.048.079 1674 765 2009-12-18 2010-03-15 094.071.083.122 778 765 2010-02-26 2010-02-26 164.077.035.070 1432 765 2009-11-11 2010-03-15 125.115.010.144 7854 764 2010-02-14 2010-02-17 190.043.166.116 775 764 2010-02-24 2010-02-24 085.100.184.144 766 764 2010-03-10 2010-03-11 078.251.081.023 2939 764 2010-02-13 2010-02-15 213.098.098.071 772 764 2010-02-11 2010-02-15 078.225.196.097 2659 764 2010-02-11 2010-03-01 196.219.221.008 14750 764 2010-02-18 2010-02-24 121.034.248.002 1008 763 2010-01-13 2010-03-05 125.239.220.172 763 763 2010-02-26 2010-02-26 121.044.072.027 763 763 2010-03-01 2010-03-01 221.012.088.041 987 763 2010-03-04 2010-03-04 081.214.024.131 4414 763 2010-01-29 2010-02-15 222.178.216.047 3935 763 2010-02-08 2010-03-05 201.161.042.082 1610 763 2010-01-29 2010-02-17 210.208.058.036 14524 763 2010-02-12 2010-02-21 078.242.018.154 2435 763 2010-02-19 2010-02-26 078.142.057.156 2684 763 2010-03-01 2010-03-08 124.121.148.097 766 763 2010-03-05 2010-03-05 172.023.066.131 4563 762 2010-03-09 2010-03-09 220.077.227.071 1255 762 2008-04-27 2010-03-14 125.237.242.104 762 762 2010-03-16 2010-03-16 123.052.136.042 13526 762 2010-02-28 2010-03-04 059.125.030.121 1899 762 2010-02-22 2010-02-28 071.099.009.120 762 762 2010-02-16 2010-02-16 124.121.153.066 766 762 2010-03-01 2010-03-01 124.087.239.064 785 762 2010-01-25 2010-02-17 190.126.097.078 1990 761 2010-03-08 2010-03-08 168.187.127.126 1275 761 2010-02-26 2010-02-26 124.121.157.121 765 761 2010-03-03 2010-03-03 208.053.209.013 2938 761 2009-10-12 2010-02-18 085.122.121.049 3239 761 2010-01-29 2010-02-23 189.109.035.246 1489 761 2009-12-15 2010-03-13 221.001.222.162 859 760 2010-02-02 2010-03-08 125.219.147.253 4407 760 2010-03-03 2010-03-08 124.121.150.064 766 760 2010-03-01 2010-03-01 091.213.214.227 1095 760 2010-03-01 2010-03-11 076.189.150.123 2196 760 2010-02-20 2010-02-20 087.203.235.125 1333 760 2010-02-27 2010-02-27 086.140.085.101 768 760 2010-03-02 2010-03-02 186.080.107.242 1538 760 2010-03-04 2010-03-05 078.084.181.048 3095 760 2010-02-12 2010-02-17 203.121.087.075 2006 760 2010-01-15 2010-03-13 195.054.209.182 1498 759 2009-12-27 2010-03-03 069.061.250.162 1381 759 2009-02-16 2010-03-15 078.236.109.085 4853 759 2010-02-17 2010-02-20 195.150.166.030 2540 758 2010-02-17 2010-03-10 124.121.151.179 760 758 2010-03-05 2010-03-05 087.234.053.132 3416 758 2010-02-05 2010-02-22 186.014.003.236 1523 758 2010-02-21 2010-02-21 078.227.074.067 2779 758 2010-02-20 2010-02-26 077.054.253.009 1197 758 2010-03-06 2010-03-06 121.052.152.050 1352 757 2009-06-13 2010-02-23 062.193.226.043 975 757 2010-02-15 2010-02-28 070.022.126.132 1590 757 2010-01-21 2010-02-21 190.232.004.222 780 757 2010-02-28 2010-03-05 078.083.222.143 2682 757 2010-02-23 2010-02-26 091.191.163.133 887 757 2010-02-26 2010-02-26 202.106.062.037 896 756 2010-01-19 2010-03-11 078.139.173.080 2627 756 2010-02-17 2010-03-08 190.235.048.174 756 756 2010-02-27 2010-02-27 220.191.255.066 778 755 2007-06-29 2010-03-03 088.254.203.246 755 755 2010-02-22 2010-02-22 069.199.013.050 777 755 2010-02-22 2010-03-02 121.011.086.068 757 755 2010-03-16 2010-03-16 124.122.045.062 761 755 2010-03-03 2010-03-03 190.159.178.071 1516 755 2010-03-04 2010-03-05 200.121.046.205 755 755 2010-02-22 2010-02-22 213.172.087.005 755 755 2010-02-25 2010-02-25 173.013.086.003 32017 755 2010-03-02 2010-03-13 115.113.079.098 3399 753 2010-02-18 2010-03-08 222.077.182.234 838 753 2010-03-05 2010-03-06 217.058.175.051 3383 753 2009-07-24 2010-03-13 188.165.197.178 959 753 2010-03-13 2010-03-13 024.076.061.237 973 753 2010-02-14 2010-02-28 061.075.175.138 753 753 2010-03-02 2010-03-02 220.130.187.103 2648 753 2010-02-21 2010-02-27 012.222.235.132 33304 753 2010-02-25 2010-02-25 188.050.050.040 3202 753 2010-02-28 2010-03-01 064.178.145.001 1910 753 2010-02-23 2010-03-03 078.225.045.187 2680 752 2009-11-18 2010-03-08 095.211.027.144 896 752 2010-02-07 2010-03-01 209.044.124.002 8045 752 2010-02-17 2010-02-18 078.228.236.238 3282 752 2010-02-20 2010-03-01 078.235.191.033 2568 752 2010-02-13 2010-03-08 189.030.019.195 2986 752 2009-11-11 2010-03-15 077.068.060.049 975 752 2010-01-23 2010-03-15 078.028.208.247 2733 751 2010-02-21 2010-03-08 064.038.084.045 1906 751 2010-02-02 2010-02-27 078.014.050.055 753 750 2010-03-02 2010-03-02 067.212.057.019 1577 750 2010-02-23 2010-02-27 081.180.121.197 773 750 2010-03-03 2010-03-05 113.017.220.188 750 750 2010-02-20 2010-03-13 061.001.001.180 1680 750 2010-03-01 2010-03-12 078.061.116.159 2758 750 2010-02-21 2010-03-03 112.155.185.058 2324 750 2009-12-13 2010-02-16 218.240.042.093 767 750 2010-02-26 2010-02-28 187.131.220.099 1275 749 2010-03-02 2010-03-08 218.029.054.056 1111 749 2010-02-27 2010-02-27 064.198.066.065 1896 748 2010-02-18 2010-02-20 083.061.160.050 748 748 2010-02-26 2010-03-06 078.061.017.152 3459 748 2010-02-21 2010-02-22 124.254.044.147 757 748 2010-03-05 2010-03-05 082.063.210.079 6077 747 2009-08-07 2010-03-06 078.225.006.058 2808 747 2010-03-01 2010-03-06 125.072.125.231 847 747 2010-03-10 2010-03-10 078.088.062.212 299930 747 2009-09-30 2010-03-09 078.110.208.012 747 747 2010-02-15 2010-02-15 078.244.060.124 2794 746 2010-01-28 2010-02-26 125.230.071.049 2370 746 2010-03-10 2010-03-13 078.088.061.111 1239 746 2010-02-09 2010-02-14 201.031.030.226 2591 746 2010-01-25 2010-02-26 076.226.068.079 11499 746 2010-02-18 2010-02-26 070.046.101.237 3392 745 2010-02-16 2010-03-06 184.073.023.037 2264 745 2010-02-26 2010-03-07 068.160.202.139 1553 744 2010-03-04 2010-03-06 078.153.022.248 2602 744 2010-02-25 2010-02-28 188.004.142.240 744 744 2010-03-01 2010-03-04 187.018.068.206 744 744 2010-02-22 2010-02-22 074.213.206.213 2014 744 2010-02-17 2010-03-15 078.227.245.076 2746 744 2010-02-20 2010-03-10 213.004.021.079 745 744 2010-02-23 2010-02-23 151.076.055.130 743 743 2010-02-27 2010-02-27 117.033.102.190 2964 743 2010-02-22 2010-02-22 078.062.208.053 24998 743 2010-01-30 2010-03-03 186.087.178.089 1500 742 2010-02-21 2010-02-21 190.128.059.132 1492 742 2010-03-12 2010-03-12 076.073.075.058 1661 742 2010-02-04 2010-02-15 208.080.193.030 4158 742 2009-09-19 2010-03-15 190.233.235.201 762 741 2010-02-26 2010-02-26 196.207.237.238 1480 741 2010-02-26 2010-02-26 201.234.204.140 792 740 2010-03-11 2010-03-11 059.056.177.012 1449 740 2010-03-10 2010-03-10 190.232.110.254 740 740 2010-03-02 2010-03-02 087.096.227.070 762 739 2010-02-24 2010-02-24 078.242.220.080 971 739 2010-03-04 2010-03-11 206.023.108.034 2673 739 2009-11-30 2010-03-02 194.123.039.250 2022 739 2010-02-19 2010-03-15 086.098.022.091 739 739 2010-02-26 2010-03-01 123.222.105.146 762 739 2009-12-09 2010-03-08 078.188.065.006 1716 739 2010-02-08 2010-02-22 078.233.153.196 2559 739 2010-02-23 2010-03-04 078.225.110.036 2589 739 2010-03-04 2010-03-10 190.097.140.182 1526 738 2010-02-05 2010-03-04 114.203.035.002 842 738 2010-02-19 2010-02-23 069.090.200.090 64043 738 2010-03-10 2010-03-13 121.014.155.073 1460 737 2010-03-11 2010-03-11 128.134.043.021 864 737 2010-01-18 2010-03-02 211.072.171.076 1366 737 2010-02-14 2010-03-14 186.082.060.117 2209 737 2010-02-25 2010-02-25 058.218.210.069 1198 737 2010-01-30 2010-02-26 196.213.192.026 1317 737 2010-02-21 2010-02-22 095.173.176.150 941 736 2010-03-08 2010-03-08 098.109.003.002 881 736 2010-02-25 2010-02-25 069.051.005.002 977 736 2010-02-17 2010-02-26 195.245.070.006 736 736 2010-02-15 2010-02-15 186.083.178.249 1052 736 2010-02-21 2010-02-21 139.055.073.050 1601 736 2010-03-01 2010-03-01 085.014.218.043 795 735 2010-02-21 2010-02-22 213.207.208.217 735 735 2010-02-26 2010-02-26 188.138.016.218 962 734 2010-02-19 2010-02-21 200.121.234.154 734 734 2010-02-22 2010-02-22 082.247.153.156 1432 734 2009-10-06 2010-03-15 200.121.013.045 734 734 2010-03-04 2010-03-04 078.159.057.221 9966 734 2010-02-19 2010-03-08 124.226.003.215 2551 734 2010-02-20 2010-03-16 201.158.085.085 862 733 2010-01-22 2010-03-16 078.231.109.023 1337 733 2010-02-14 2010-03-06 201.000.145.106 1036 733 2010-02-17 2010-03-12 088.250.068.003 41153 733 2009-10-04 2010-03-13 212.175.249.179 2991 732 2010-01-29 2010-02-17 078.062.198.244 1817 732 2010-02-21 2010-03-12 083.015.211.138 1211 731 2010-03-15 2010-03-15 078.107.060.075 732 731 2010-03-05 2010-03-09 114.173.203.228 731 731 2010-03-13 2010-03-13 195.024.195.106 1838 731 2010-03-04 2010-03-15 098.126.005.190 1203 731 2010-02-18 2010-02-21 173.212.235.143 933 730 2010-02-05 2010-02-14 186.081.205.001 1457 730 2010-02-24 2010-02-24 190.159.178.036 1440 730 2010-02-21 2010-02-21 203.045.138.152 753 730 2010-02-23 2010-03-03 089.145.219.117 812 730 2010-03-10 2010-03-10 122.246.079.046 1992 729 2010-02-23 2010-02-23 190.097.152.180 879 729 2010-03-12 2010-03-15 216.250.192.034 1300 728 2009-10-05 2010-02-22 067.151.190.146 728 728 2010-03-09 2010-03-09 061.145.114.021 730 728 2010-02-16 2010-02-16 078.243.036.168 2631 728 2010-03-06 2010-03-12 186.084.099.076 1449 727 2010-03-04 2010-03-05 078.105.233.107 1015 727 2010-02-13 2010-02-17 088.253.009.163 727 727 2010-02-26 2010-02-26 062.152.075.078 1273 727 2009-10-23 2010-03-02 119.082.117.227 7504 727 2010-01-24 2010-02-22 078.160.250.002 770 726 2010-02-14 2010-02-15 190.232.111.178 726 726 2010-03-03 2010-03-03 128.114.150.166 2379 725 2010-02-12 2010-03-02 173.071.114.115 3299 725 2010-02-17 2010-02-19 220.180.086.004 2689 725 2010-02-11 2010-03-09 078.240.188.164 2492 724 2010-02-09 2010-02-14 221.192.232.038 896 724 2010-01-31 2010-02-24 125.089.062.155 724 724 2010-03-14 2010-03-14 078.227.132.056 2517 724 2010-02-19 2010-03-01 061.157.097.085 1443 724 2010-01-08 2010-02-17 078.062.036.045 2953 723 2010-01-11 2010-02-23 196.015.202.195 1355 723 2009-07-15 2010-03-16 114.040.155.147 1741 723 2010-03-06 2010-03-08 209.128.105.077 964 722 2010-03-03 2010-03-03 076.073.121.005 845 722 2010-03-14 2010-03-14 190.145.050.002 816 722 2010-03-10 2010-03-12 059.044.043.204 849 722 2010-03-13 2010-03-13 094.076.229.002 1154 722 2009-09-16 2010-03-16 091.191.039.114 2380 721 2010-02-01 2010-03-14 098.126.064.075 909 721 2010-03-04 2010-03-13 065.019.178.080 721 721 2010-03-12 2010-03-13 095.169.158.196 1439 719 2009-07-29 2010-03-11 075.075.105.039 1191 719 2010-03-14 2010-03-15 208.067.036.002 718 718 2010-02-18 2010-02-23 089.107.227.134 969 718 2010-02-02 2010-02-16 078.062.224.089 2188 718 2010-03-01 2010-03-08 082.197.131.095 718 718 2010-03-06 2010-03-06 081.007.171.019 1406 717 2010-03-13 2010-03-13 078.110.009.154 1903 717 2010-02-11 2010-02-27 208.080.193.037 3157 717 2009-09-20 2010-03-08 190.208.121.178 951 717 2010-02-12 2010-02-19 079.015.181.083 741 717 2010-01-04 2010-02-18 190.233.220.181 717 717 2010-02-09 2010-02-17 063.196.038.226 746 716 2010-01-18 2010-03-07 067.158.046.251 1301 716 2010-02-12 2010-02-21 222.088.236.222 1941 716 2010-03-07 2010-03-07 112.140.185.182 922 715 2010-02-12 2010-02-24 190.105.023.166 761 715 2010-02-28 2010-03-07 204.013.004.114 2526 715 2010-03-02 2010-03-05 124.115.026.159 714 714 2010-03-13 2010-03-13 093.067.163.226 748 714 2009-06-11 2010-03-14 074.100.004.014 937 714 2010-03-15 2010-03-16 041.223.208.034 1317 714 2010-02-21 2010-03-10 069.153.005.134 713 713 2010-02-17 2010-02-27 092.127.194.244 2481 713 2010-02-22 2010-03-13 218.246.035.102 929 713 2010-02-25 2010-03-01 186.081.226.218 1424 713 2010-02-21 2010-02-21 078.225.081.181 3641 713 2010-02-14 2010-03-08 066.218.148.099 22140 713 2009-11-01 2010-03-12 082.127.057.001 713 713 2010-03-15 2010-03-15 058.068.182.175 758 713 2010-02-20 2010-02-21 190.208.093.027 1699 712 2010-03-01 2010-03-03 201.220.232.059 757 712 2010-01-05 2010-03-12 092.032.230.215 823 712 2010-02-28 2010-03-01 195.167.008.033 1821 711 2009-12-19 2010-03-12 213.185.179.196 1699 711 2010-01-20 2010-02-16 213.067.193.069 2442 710 2010-02-01 2010-03-15 078.234.240.107 2336 709 2010-02-04 2010-03-06 112.094.255.061 709 709 2010-02-27 2010-02-27 080.036.143.110 178970 709 2010-01-26 2010-02-22 088.240.161.005 709 709 2010-02-23 2010-02-24 078.230.180.002 2176 708 2009-12-31 2010-02-20 123.164.097.218 994 708 2010-02-18 2010-02-18 156.017.238.186 731 708 2010-02-20 2010-02-20 190.233.216.017 1180 708 2010-02-24 2010-02-24 061.112.161.104 1313 708 2009-02-19 2010-03-16 202.165.177.130 1252 707 2010-01-26 2010-03-12 077.236.188.244 1299 707 2010-03-01 2010-03-05 067.210.033.144 1383 707 2009-12-07 2010-02-16 201.206.100.226 906 707 2010-03-01 2010-03-12 087.241.235.246 31228 706 2010-03-05 2010-03-16 095.130.173.078 829 706 2010-02-22 2010-02-22 078.232.227.004 2326 706 2010-02-26 2010-03-06 078.128.069.036 2044 706 2010-03-03 2010-03-12 114.036.160.058 729 706 2010-03-08 2010-03-09 078.092.188.233 1821 705 2010-02-09 2010-03-01 195.003.136.153 1277 704 2010-02-06 2010-03-11 222.096.156.123 793 704 2010-03-04 2010-03-04 081.214.092.050 705 704 2010-02-22 2010-02-22 193.218.015.023 717 704 2010-03-13 2010-03-13 078.237.192.145 2383 704 2009-12-01 2010-02-23 064.135.235.062 1774 704 2010-03-05 2010-03-06 190.105.068.198 2052 704 2010-03-07 2010-03-07 123.124.120.066 1269 703 2010-02-17 2010-03-13 200.199.064.170 1260 703 2009-01-30 2010-03-16 058.215.065.094 712 702 2010-03-04 2010-03-05 078.058.095.191 2236 702 2010-02-14 2010-03-06 078.242.139.226 2326 701 2010-03-01 2010-03-08 080.059.041.012 1201 701 2009-09-30 2010-02-17 024.207.123.221 3261 700 2010-03-05 2010-03-16 112.098.199.097 700 700 2010-02-28 2010-02-28 121.009.210.251 1405 700 2010-02-17 2010-02-23 213.171.246.196 42192 700 2010-02-01 2010-03-04 190.159.186.037 711 700 2010-03-15 2010-03-15 089.097.157.015 1476 700 2010-01-08 2010-03-11 190.158.150.213 730 700 2010-03-14 2010-03-14 041.223.250.129 34124 699 2009-09-22 2010-03-11 078.233.201.075 2467 699 2010-02-23 2010-03-08 092.099.036.215 699 699 2010-02-26 2010-02-26 083.169.061.039 880 699 2010-02-21 2010-03-13 113.232.106.063 751 699 2010-02-20 2010-02-20 218.094.087.061 698 698 2010-03-04 2010-03-04 221.146.172.018 2031 698 2009-12-19 2010-02-16 078.097.128.235 2126 698 2010-02-25 2010-03-11 125.230.149.149 2841 698 2010-03-15 2010-03-15 067.219.051.245 1959 698 2010-03-09 2010-03-14 125.230.161.245 2689 698 2010-02-18 2010-02-18 080.233.182.045 713 697 2010-01-14 2010-03-07 188.138.048.050 703 697 2010-03-06 2010-03-11 041.145.202.189 697 697 2010-02-18 2010-02-18 219.094.048.182 8662 697 2010-01-02 2010-02-19 078.084.084.227 2579 696 2010-02-25 2010-02-28 118.168.133.051 1401 696 2010-03-10 2010-03-12 139.055.115.172 1195 696 2010-03-14 2010-03-14 078.133.133.030 2079 695 2010-01-18 2010-03-10 058.071.061.110 823 695 2009-10-07 2010-03-12 211.174.182.205 916 695 2010-03-07 2010-03-16 066.220.045.061 712 695 2010-02-21 2010-02-22 098.174.187.077 1482831 695 2010-02-14 2010-02-21 200.106.071.202 701 694 2010-02-22 2010-03-05 150.164.003.036 3378 694 2010-03-16 2010-03-16 091.202.171.078 1350 694 2010-02-14 2010-03-07 094.076.213.091 1310 693 2010-01-14 2010-03-14 088.240.213.195 693 693 2010-02-19 2010-02-20 070.077.053.079 1228 692 2009-11-22 2010-02-15 072.055.156.023 1058 692 2010-03-12 2010-03-13 202.137.007.136 1225 692 2009-04-27 2010-03-15 195.064.076.078 3028 692 2010-02-04 2010-03-01 109.087.052.231 917 692 2010-02-16 2010-03-03 060.195.250.056 1690 692 2010-02-13 2010-03-12 192.168.000.123 12573 691 2009-11-14 2010-03-16 078.058.188.179 2746 691 2010-02-09 2010-03-08 082.228.249.076 1779 691 2010-01-29 2010-03-11 072.071.053.076 1193 691 2009-11-14 2010-02-15 094.209.106.201 691 691 2009-10-17 2010-03-08 078.062.010.249 2338 690 2010-02-20 2010-03-08 212.035.104.249 1404 690 2010-01-20 2010-02-15 203.143.228.014 2007 690 2010-03-07 2010-03-15 208.043.068.047 1104 690 2010-03-10 2010-03-15 125.230.086.154 3206 690 2010-02-24 2010-02-27 064.114.049.086 1444 689 2010-01-05 2010-03-13 190.220.152.083 1204 689 2009-11-24 2010-03-16 162.039.248.033 942 689 2009-10-10 2010-03-10 125.126.195.123 1264 689 2010-02-22 2010-02-24 038.126.200.117 1357 688 2010-03-09 2010-03-14 072.011.090.067 769 688 2009-08-05 2010-03-12 186.081.014.038 1381 688 2010-02-21 2010-02-21 085.014.084.202 955 688 2009-11-11 2010-03-15 200.008.032.054 698 688 2010-03-15 2010-03-15 125.230.073.147 2622 687 2010-02-10 2010-02-14 207.067.035.142 2681 687 2010-02-03 2010-03-04 202.058.098.098 714 687 2010-02-21 2010-02-21 091.187.011.165 2663 686 2010-03-07 2010-03-07 128.101.098.043 1312 685 2010-03-07 2010-03-07 078.049.118.192 685 685 2010-02-26 2010-02-26 173.074.102.052 1278 685 2009-10-26 2010-03-11 186.080.089.162 1381 685 2010-03-04 2010-03-05 058.020.234.060 720 685 2010-03-07 2010-03-11 173.196.012.158 732 685 2010-01-08 2010-03-13 195.022.107.001 2156 684 2009-12-02 2010-03-12 190.097.141.196 1334 684 2010-02-21 2010-03-13 064.038.072.225 1653 684 2010-02-26 2010-03-07 121.082.209.164 1196 684 2010-01-19 2010-03-02 209.060.206.142 1929 684 2010-01-21 2010-02-27 203.077.047.101 1241 683 2009-10-23 2010-03-16 123.204.231.018 3397 683 2010-03-04 2010-03-07 118.212.129.165 21361 683 2010-03-04 2010-03-05 222.143.124.038 997 683 2010-01-23 2010-02-22 074.082.234.035 1516 682 2010-03-02 2010-03-03 078.239.241.018 1500 681 2010-02-14 2010-02-28 066.198.080.067 810 681 2009-06-06 2010-03-13 080.036.018.109 1238 681 2009-11-12 2010-03-16 117.044.250.217 856 681 2010-03-02 2010-03-02 202.110.222.195 1640 680 2010-01-29 2010-02-25 201.245.114.118 10223 680 2009-08-12 2010-03-16 186.081.142.105 859 680 2010-03-15 2010-03-15 220.130.053.241 1089 680 2010-02-26 2010-03-01 061.160.212.073 769 680 2010-02-26 2010-03-08 212.175.085.102 1034 680 2010-02-02 2010-03-12 208.080.193.042 3107 679 2009-09-19 2010-03-15 190.159.027.161 1359 679 2010-02-26 2010-02-28 206.126.017.078 1223 678 2010-01-13 2010-02-21 071.248.152.031 1256 678 2010-02-10 2010-03-11 064.120.190.160 776 678 2010-03-08 2010-03-08 190.008.041.052 1320 678 2010-02-23 2010-03-15 084.103.209.226 1206 678 2010-03-11 2010-03-12 186.080.089.127 2046 678 2010-03-04 2010-03-05 190.229.070.039 1751 677 2010-02-19 2010-02-23 195.100.019.035 2046 677 2009-11-23 2010-03-12 122.227.147.082 783 677 2010-02-26 2010-03-15 024.029.109.138 1180 677 2010-02-14 2010-02-14 193.095.221.076 1283 677 2010-02-17 2010-02-27 070.043.073.146 863 677 2010-03-03 2010-03-04 114.200.197.216 887 676 2010-03-01 2010-03-02 219.139.240.176 833 676 2010-02-17 2010-03-10 208.080.193.038 3803 676 2009-09-21 2010-03-15 092.070.162.002 1009 676 2010-01-30 2010-03-13 089.107.227.250 764 675 2010-02-23 2010-02-23 119.145.148.123 1055 675 2010-02-05 2010-02-23 078.040.142.177 2186 675 2010-02-26 2010-03-01 060.191.187.146 3977 675 2010-02-03 2010-02-16 163.005.069.177 674 674 2010-02-26 2010-02-26 190.120.097.067 2009 674 2010-03-06 2010-03-08 204.188.246.196 678 674 2010-02-14 2010-02-14 078.038.023.244 2509 674 2010-02-20 2010-03-10 064.053.104.184 2251 674 2010-03-10 2010-03-14 123.176.041.150 1378 673 2010-02-15 2010-02-15 217.037.190.202 1247 673 2009-09-07 2010-02-23 078.251.223.039 1853 673 2010-03-01 2010-03-06 078.240.232.116 2183 673 2010-02-17 2010-03-08 199.071.215.243 1170 673 2009-12-27 2010-03-03 202.188.092.198 6495 673 2009-08-14 2010-03-14 124.013.143.166 683 673 2010-03-02 2010-03-09 072.022.025.009 824 672 2008-03-05 2010-03-14 201.158.077.097 1309 672 2010-02-26 2010-03-15 189.183.014.190 890 672 2010-03-13 2010-03-13 203.150.104.182 1350 672 2010-02-14 2010-02-14 204.111.087.164 11206 671 2010-03-14 2010-03-14 080.255.087.016 832 671 2010-02-25 2010-02-25 118.161.248.029 1491 670 2010-02-26 2010-02-28 216.240.247.081 2760 669 2010-02-06 2010-03-14 038.105.096.074 1201 669 2009-08-03 2010-03-16 072.252.002.213 1266 669 2009-10-02 2010-03-11 190.208.069.118 1355 669 2010-02-21 2010-02-21 114.040.159.054 2388 669 2010-02-21 2010-02-24 090.062.027.193 752 669 2010-03-15 2010-03-15 210.181.203.050 674 668 2010-02-13 2010-02-14 119.145.148.122 1848 668 2010-02-19 2010-02-22 075.033.055.035 668 668 2010-03-04 2010-03-04 085.105.170.074 679 668 2010-02-23 2010-02-23 186.019.027.138 1999 668 2010-03-04 2010-03-05 200.118.182.018 688 668 2010-03-15 2010-03-15 070.237.036.130 1249 667 2009-12-28 2010-03-16 201.100.034.252 19568 667 2010-03-02 2010-03-04 094.075.216.012 1165 667 2010-01-20 2010-02-18 218.006.012.079 916 667 2010-02-24 2010-02-27 074.117.060.085 747 667 2010-03-02 2010-03-10 075.099.240.043 718 667 2010-02-15 2010-03-02 203.117.225.102 1162 667 2010-02-17 2010-02-17 222.219.086.035 668 666 2010-02-23 2010-02-23 212.199.110.099 666 666 2010-02-22 2010-03-10 204.028.121.012 1679 666 2010-03-12 2010-03-15 120.136.017.005 1171 666 2009-12-11 2010-03-13 121.012.108.068 3223 666 2010-03-02 2010-03-02 024.172.213.018 2210 666 2009-12-04 2010-03-14 024.207.063.233 1248 665 2010-02-01 2010-03-15 088.238.179.130 667 665 2010-02-21 2010-02-21 196.211.050.194 713 665 2010-02-17 2010-03-09 060.052.208.222 1338 665 2010-03-02 2010-03-02 078.097.141.158 1344 665 2010-03-06 2010-03-06 070.070.233.001 669 664 2010-02-24 2010-02-27 119.118.195.177 664 664 2010-03-07 2010-03-07 192.168.002.003 15723 664 2010-02-18 2010-02-18 064.186.133.096 1522 664 2010-02-18 2010-03-16 079.005.105.078 1391 663 2010-02-09 2010-03-07 088.032.045.194 1787 663 2010-01-08 2010-02-22 203.238.068.182 744 663 2010-02-27 2010-03-14 085.135.099.094 1208 663 2010-02-25 2010-02-25 084.226.047.222 663 663 2010-02-18 2010-02-18 064.188.198.091 1452 663 2010-02-01 2010-02-26 064.059.016.194 1225 662 2010-02-18 2010-03-11 061.123.195.117 662 662 2010-02-25 2010-02-25 078.107.023.005 1168 662 2010-01-31 2010-03-07 087.237.213.059 6659 662 2010-01-10 2010-02-24 190.142.142.105 668 662 2010-03-15 2010-03-15 078.226.207.160 2045 661 2010-02-11 2010-02-20 203.089.243.205 1431 661 2009-08-03 2010-02-24 064.130.128.151 1620 661 2010-01-11 2010-03-12 186.081.240.208 1325 660 2010-02-21 2010-02-21 120.141.219.069 1972 660 2010-02-26 2010-02-26 124.011.190.108 712 660 2010-02-27 2010-03-06 024.100.077.111 1096 660 2010-01-12 2010-03-14 092.061.182.146 1946 659 2010-03-02 2010-03-12 200.006.152.250 1203 659 2010-02-04 2010-03-11 063.199.072.246 209247 659 2010-03-03 2010-03-03 216.199.039.139 1148 659 2009-08-03 2010-03-15 078.153.014.172 2125 659 2010-02-08 2010-03-06 189.058.140.130 1147 659 2009-11-12 2010-03-16 078.128.005.011 1344 658 2010-02-04 2010-02-18 072.090.204.027 1248 658 2009-11-06 2010-02-22 064.183.012.070 1502 658 2010-01-26 2010-03-06 122.224.006.009 3575 658 2010-02-16 2010-02-20 216.018.022.076 1143 657 2010-02-09 2010-03-15 078.129.113.031 2156 657 2010-02-11 2010-03-01 194.019.092.202 19879 657 2009-10-10 2010-02-16 058.142.226.217 1839 657 2010-02-26 2010-02-26 202.108.083.065 1165 656 2010-03-10 2010-03-10 208.080.193.035 3549 656 2009-09-19 2010-03-15 078.133.132.168 1761 656 2010-02-13 2010-03-15 088.160.071.072 1708 655 2009-10-23 2010-03-13 078.225.046.028 2618 655 2010-02-01 2010-02-17 208.070.160.013 1200 655 2009-07-02 2010-03-14 194.250.120.080 1138 655 2009-09-21 2010-03-13 222.253.095.234 655 655 2010-02-26 2010-02-26 200.175.061.127 1213 655 2009-09-06 2010-03-16 078.241.008.040 2015 655 2009-11-20 2010-03-03 082.155.224.046 2730 655 2010-02-17 2010-02-17 091.156.184.131 654 654 2010-02-28 2010-02-28 200.115.213.161 664 654 2010-03-15 2010-03-15 186.087.179.195 674 654 2010-03-13 2010-03-14 083.060.064.109 654 654 2010-03-02 2010-03-02 218.004.203.098 657 654 2010-02-23 2010-02-27 074.218.125.011 1783 654 2010-02-19 2010-02-25 092.048.118.029 1218 653 2009-09-22 2010-02-27 082.135.006.071 680 653 2010-03-13 2010-03-13 216.045.059.213 1260 653 2010-02-27 2010-02-27 078.157.032.005 2303 652 2010-01-17 2010-03-09 058.240.010.028 2970 652 2010-02-09 2010-03-09 062.150.085.230 1179 652 2010-03-07 2010-03-08 089.185.232.152 696 652 2010-02-14 2010-02-17 058.061.155.143 728 652 2010-03-06 2010-03-14 195.085.146.066 1873 652 2009-11-23 2010-03-03 201.134.042.059 746 652 2010-02-26 2010-02-26 067.021.087.002 1176 652 2009-07-21 2010-03-10 083.036.061.187 230245 652 2010-02-28 2010-03-01 174.143.181.082 674 652 2010-03-10 2010-03-11 064.188.192.078 694 651 2010-03-10 2010-03-10 208.040.208.051 1238 651 2009-11-06 2010-03-16 078.234.116.088 2069 651 2010-02-23 2010-03-01 061.187.136.192 1889 651 2010-02-23 2010-02-24 118.069.202.245 16100 651 2010-01-31 2010-03-13 078.133.132.135 1985 650 2010-01-26 2010-02-28 078.128.104.093 981 650 2010-03-10 2010-03-10 200.106.093.237 653 650 2010-02-28 2010-03-05 217.127.202.113 695 650 2010-01-19 2010-02-26 190.043.119.002 650 650 2010-02-22 2010-02-22 195.234.056.067 3301 650 2010-03-01 2010-03-01 216.240.243.253 1143 650 2009-10-05 2010-03-02 067.129.234.142 1154 650 2010-01-23 2010-02-22 220.227.249.004 687 649 2010-02-25 2010-03-05 118.168.138.109 724 649 2010-02-27 2010-02-27 173.051.170.093 1222 649 2009-12-11 2010-03-08 212.150.209.042 1665 649 2010-02-26 2010-03-11 222.154.000.233 649 649 2010-02-26 2010-03-04 072.046.253.055 1135 648 2009-12-01 2010-03-14 038.099.169.096 1167 648 2009-10-27 2010-03-14 190.157.213.254 1256 648 2010-02-09 2010-02-20 190.069.081.114 798 648 2010-03-01 2010-03-09 078.240.052.123 3049 648 2009-11-17 2010-02-21 173.016.122.204 1063 648 2009-10-02 2010-03-05 071.098.245.149 1233 647 2009-03-22 2010-02-17 206.018.003.098 2963 647 2009-09-07 2010-03-15 078.242.139.023 1899 647 2010-02-04 2010-03-04 024.103.057.084 1161 647 2009-11-30 2010-03-01 074.117.059.006 1539 647 2009-12-16 2010-02-23 188.182.251.070 2955 647 2010-03-01 2010-03-11 066.183.013.142 1289 647 2010-02-23 2010-02-23 061.139.126.011 1348 647 2010-03-14 2010-03-16 024.108.033.105 2000 647 2010-01-24 2010-02-23 078.234.201.040 1962 647 2010-02-23 2010-02-23 192.165.210.161 1175 646 2010-01-07 2010-02-25 114.161.144.227 646 646 2010-03-12 2010-03-12 096.009.145.066 1146 646 2009-12-11 2010-02-16 081.137.215.070 1046 646 2010-01-25 2010-03-10 078.232.215.078 1984 646 2010-03-01 2010-03-05 064.188.251.175 1100 646 2010-02-28 2010-03-01 058.061.156.195 2505 646 2010-01-12 2010-02-26 222.177.233.033 1164 646 2010-02-25 2010-03-10 063.200.135.042 1123 646 2010-02-05 2010-03-07 038.107.190.015 1174 645 2010-01-11 2010-02-24 092.255.080.166 1929 645 2010-02-26 2010-02-27 174.037.010.042 1160 645 2009-04-02 2010-03-14 190.042.128.156 645 645 2010-02-15 2010-02-15 123.195.033.032 1461 645 2010-01-29 2010-02-26 092.115.221.138 1320 645 2010-01-23 2010-02-21 024.080.112.095 1181 644 2010-01-25 2010-03-11 119.181.158.141 756 644 2010-03-10 2010-03-10 069.059.169.036 1464 644 2010-02-15 2010-03-02 074.211.000.239 1167 644 2010-01-22 2010-03-13 058.188.063.201 1207 644 2010-01-11 2010-03-02 202.061.042.038 3453 644 2009-12-18 2010-03-01 041.196.090.206 643 643 2010-03-08 2010-03-08 078.231.022.213 2050 643 2009-11-11 2010-03-06 190.232.103.225 643 643 2010-02-17 2010-02-27 078.154.134.049 2125 643 2010-02-28 2010-03-04 087.229.026.168 1294 643 2010-02-21 2010-02-21 172.020.001.001 1876 643 2008-07-22 2010-03-13 190.232.207.124 643 643 2010-03-02 2010-03-02 074.246.170.107 643 643 2010-03-14 2010-03-14 221.215.152.002 861 643 2010-02-23 2010-02-25 199.071.213.214 1081 643 2010-01-07 2010-03-16 200.074.149.106 725 642 2009-12-26 2010-02-28 216.236.169.063 1173 642 2010-02-03 2010-03-11 058.064.132.182 1936 642 2010-02-04 2010-03-12 078.239.128.242 2058 642 2009-12-08 2010-03-10 070.184.123.007 645 642 2010-02-12 2010-02-24 109.178.222.214 651 642 2010-03-13 2010-03-13 074.111.035.069 659 642 2010-03-10 2010-03-10 124.124.009.044 1487 641 2010-02-24 2010-02-24 064.188.190.096 1251 641 2010-02-17 2010-03-16 024.086.122.121 1076 641 2010-01-20 2010-02-19 067.158.020.179 1069 641 2010-02-17 2010-03-06 078.159.083.173 1960 641 2010-02-12 2010-02-19 203.146.015.126 1000 641 2010-03-13 2010-03-13 204.079.084.008 1229 641 2010-02-04 2010-03-13 064.038.087.047 888 641 2010-02-14 2010-03-02 124.102.056.077 1224 641 2010-01-09 2010-02-15 183.087.092.001 61825 641 2009-12-07 2010-03-16 173.028.215.018 1141 640 2009-11-05 2010-03-15 066.206.099.036 1153 640 2010-01-15 2010-02-23 190.080.029.246 1236 640 2010-02-21 2010-02-21 174.001.141.133 1137 639 2009-12-26 2010-03-16 188.073.155.002 643 639 2010-01-10 2010-03-13 205.234.150.226 2414 639 2010-02-14 2010-03-11 095.225.104.113 1041 639 2009-10-23 2010-03-15 098.124.084.010 1085 639 2010-01-28 2010-03-05 193.047.083.168 998 639 2009-10-05 2010-03-13 070.064.140.177 1144 639 2009-12-19 2010-02-16 083.239.214.118 639 639 2010-02-22 2010-02-23 208.043.198.155 1173 638 2010-01-20 2010-03-08 063.151.109.189 2003 638 2010-02-07 2010-03-07 078.236.208.051 2058 638 2010-03-13 2010-03-13 078.232.213.058 1957 638 2010-02-05 2010-03-05 202.174.207.027 761 638 2010-02-16 2010-02-18 190.052.142.020 641 637 2010-02-11 2010-02-17 061.090.198.171 2072 637 2009-12-04 2010-03-16 186.081.237.206 1469 637 2010-02-21 2010-02-21 064.056.064.099 1297 637 2009-09-20 2010-03-16 193.144.060.092 27495 637 2010-03-10 2010-03-10 092.114.159.253 1318 637 2010-01-15 2010-02-18 222.152.095.060 638 637 2010-03-02 2010-03-02 096.052.059.192 1121 637 2009-01-16 2010-02-15 062.006.181.021 1208 636 2009-09-04 2010-03-11 091.102.162.090 1127 636 2010-01-24 2010-02-23 074.087.011.042 1098 636 2010-01-24 2010-03-15 024.143.235.173 1077 636 2009-08-24 2010-03-15 195.005.054.234 1831 636 2009-11-17 2010-03-01 173.019.142.184 1136 636 2010-01-12 2010-02-26 078.161.003.205 682 636 2010-02-14 2010-02-16 078.129.050.100 2091 635 2010-02-19 2010-02-28 078.061.113.158 1612 635 2010-02-23 2010-03-15 012.036.017.018 1120 635 2009-10-31 2010-03-01 117.102.215.146 2539 635 2010-02-10 2010-03-08 114.198.188.155 1114 635 2009-10-05 2010-02-23 195.090.189.114 1558 634 2010-02-18 2010-03-16 203.213.094.135 2614 634 2010-03-02 2010-03-02 203.195.110.249 1891 634 2010-01-31 2010-03-02 078.062.243.093 2270 634 2010-03-01 2010-03-13 067.100.066.092 1087 634 2010-02-02 2010-03-16 201.230.078.041 635 634 2010-02-27 2010-02-28 078.061.015.250 1922 633 2010-03-01 2010-03-05 078.243.056.005 1651 633 2010-03-01 2010-03-06 081.018.245.155 997 633 2010-03-15 2010-03-15 070.075.222.025 1116 633 2010-01-18 2010-02-18 190.157.133.010 649 633 2010-03-15 2010-03-15 148.229.003.254 1172 633 2009-12-17 2010-02-25 140.209.189.166 1081 633 2009-08-05 2010-03-12 079.002.172.088 641 633 2010-03-13 2010-03-13 217.132.236.120 1860 633 2010-02-25 2010-02-25 064.031.255.135 1585 633 2010-02-19 2010-02-21 190.254.084.250 1183 633 2010-02-01 2010-03-14 024.207.063.026 1176 633 2010-01-29 2010-03-16 068.147.059.047 1130 633 2009-09-27 2010-02-18 218.023.255.080 635 632 2009-10-16 2010-03-13 078.088.207.223 1989 632 2010-02-28 2010-03-06 074.231.220.202 943 632 2010-01-24 2010-02-27 203.085.107.004 1253 632 2010-03-01 2010-03-01 078.251.226.186 5605 632 2010-02-21 2010-02-23 074.117.058.061 1211 632 2009-12-17 2010-03-13 067.058.096.018 1111 632 2010-01-08 2010-02-14 216.018.020.164 1257 632 2009-09-30 2010-03-13 212.175.009.019 749 632 2009-12-08 2010-02-23 198.082.164.119 1249 631 2009-05-14 2010-03-16 078.243.158.017 1969 631 2010-02-28 2010-03-12 078.009.024.100 2450 631 2010-01-22 2010-03-06 066.090.097.030 802 631 2010-02-28 2010-03-07 060.242.025.008 3055 631 2009-04-27 2010-03-16 190.036.207.167 637 631 2010-01-12 2010-02-26 123.092.195.149 934 631 2010-03-13 2010-03-13 071.094.034.083 1104 631 2010-01-20 2010-03-16 173.066.231.030 1191 631 2009-07-19 2010-03-16 169.204.163.004 2461 631 2010-03-05 2010-03-12 218.028.002.026 1520 631 2010-02-23 2010-02-23 096.048.233.047 1154 630 2009-08-03 2010-03-13 070.018.154.204 1119 630 2009-12-11 2010-03-02 094.244.158.233 1437 630 2010-03-01 2010-03-02 200.102.161.029 3668 630 2009-10-18 2010-03-16 124.125.130.154 1174 630 2010-02-17 2010-02-17 124.195.015.162 3583 630 2010-01-28 2010-02-18 208.070.160.017 1116 630 2009-06-28 2010-03-13 067.103.009.034 1078 630 2009-10-19 2010-03-13 221.236.009.007 1155 630 2009-12-21 2010-03-06 091.200.141.240 1645 630 2010-02-03 2010-03-07 208.104.004.221 1209 630 2009-09-10 2010-03-16 173.060.055.178 1168 630 2010-02-10 2010-03-16 080.152.166.217 16932 630 2010-02-04 2010-03-01 077.226.185.146 1116 630 2009-11-05 2010-03-13 196.040.044.126 29640 630 2010-02-08 2010-02-22 086.065.151.023 1129 629 2009-10-20 2010-02-19 115.135.249.149 1882 629 2010-02-03 2010-02-26 222.247.053.136 6178 629 2010-03-04 2010-03-06 076.074.249.087 1151 629 2009-06-04 2010-03-15 067.220.196.147 1695 629 2010-03-14 2010-03-15 210.051.037.112 946 629 2010-01-04 2010-03-16 066.059.248.025 1084 629 2009-06-24 2010-03-14 078.154.134.151 1936 629 2010-02-23 2010-02-26 078.241.078.049 4334 629 2010-02-22 2010-03-16 201.155.202.048 1138 629 2010-02-07 2010-03-16 173.083.026.034 1093 628 2010-02-11 2010-03-16 196.209.027.027 628 628 2010-02-16 2010-02-16 078.227.073.027 2083 628 2010-02-04 2010-03-05 122.227.056.006 702 628 2010-02-07 2010-02-25 119.128.243.186 1658 628 2010-02-26 2010-02-26 174.046.193.244 1135 628 2010-01-14 2010-03-15 098.117.232.124 1198 628 2009-09-22 2010-03-04 150.174.045.027 1112 628 2010-01-21 2010-03-10 074.007.018.053 1158 627 2009-12-02 2010-02-19 072.086.170.061 1157 627 2009-10-05 2010-03-16 070.106.031.044 1198 627 2009-11-11 2010-03-11 199.071.212.036 1172 627 2009-11-29 2010-03-16 174.037.093.099 1066 627 2009-07-22 2010-03-16 190.108.023.222 1838 627 2010-03-14 2010-03-14 218.234.017.237 740 627 2010-03-09 2010-03-14 196.022.164.025 1327 627 2009-12-21 2010-03-04 203.122.019.101 1175 626 2009-06-17 2010-03-16 076.095.083.107 630 626 2010-02-22 2010-02-26 208.053.170.093 1144 626 2010-02-09 2010-03-15 174.044.035.006 1072 626 2009-09-26 2010-02-22 124.011.190.223 668 626 2010-02-28 2010-03-01 222.247.053.054 6274 626 2010-03-04 2010-03-06 213.115.183.024 1742 626 2010-02-07 2010-02-17 125.230.072.074 2703 626 2010-02-27 2010-03-02 200.075.099.060 762 625 2010-03-15 2010-03-15 066.090.104.110 1142 625 2009-11-08 2010-03-10 125.230.066.215 2747 625 2010-03-03 2010-03-05 209.009.188.126 1098 625 2009-08-15 2010-03-14 222.247.048.187 1143 625 2010-01-25 2010-03-10 124.018.108.187 1177 625 2009-12-29 2010-03-02 115.135.142.208 633 625 2010-03-01 2010-03-08 190.042.117.016 625 625 2010-02-22 2010-02-22 078.084.248.045 1902 625 2010-02-14 2010-03-06 208.105.086.082 1117 625 2010-01-26 2010-02-26 096.000.203.090 1141 625 2009-12-14 2010-03-13 066.235.194.119 1145 625 2009-09-14 2010-03-14 061.147.110.013 1112 625 2010-02-25 2010-02-28 074.001.068.010 1245 624 2009-12-29 2010-03-14 123.243.243.221 633 624 2010-03-01 2010-03-05 071.105.172.253 1065 624 2009-12-24 2010-03-13 203.174.086.099 708 623 2010-03-04 2010-03-08 203.171.030.041 801 623 2010-03-12 2010-03-15 065.089.242.245 1093 623 2009-08-05 2010-03-14 068.071.045.119 1163 623 2010-01-19 2010-02-24 068.121.094.099 1139 623 2009-03-15 2010-03-16 189.036.172.004 1103 623 2009-06-04 2010-03-16 216.055.137.022 1157 623 2009-12-16 2010-03-15 083.229.065.071 1418 623 2010-02-11 2010-02-20 078.088.062.099 1734 623 2009-12-24 2010-03-01 202.071.063.186 1083 623 2009-11-28 2010-03-16 077.092.068.023 1069 622 2009-07-31 2010-03-14 064.191.115.234 626 622 2010-03-01 2010-03-01 140.209.133.243 1156 622 2009-08-07 2010-03-12 200.106.090.247 622 622 2010-02-22 2010-02-22 078.088.141.172 2037 622 2010-03-03 2010-03-08 195.013.198.203 1266 622 2009-08-19 2010-03-14 024.165.170.124 1181 622 2010-01-31 2010-03-11 085.239.123.015 2259 622 2009-11-09 2010-03-04 088.023.008.019 621 621 2010-02-09 2010-02-19 212.115.041.231 1108 621 2010-02-27 2010-03-06 212.079.139.013 621 621 2010-03-11 2010-03-11 067.053.099.058 1104 621 2009-04-24 2010-02-14 140.209.135.232 1093 621 2009-09-16 2010-03-12 208.153.098.002 1116 621 2009-09-20 2010-03-15 173.065.045.020 4149 621 2010-03-01 2010-03-14 082.201.241.239 620 620 2010-02-26 2010-02-26 114.032.206.194 1089 620 2010-01-26 2010-03-16 210.017.182.035 1096 620 2010-01-25 2010-03-15 140.209.133.235 1060 620 2009-11-11 2010-03-12 038.097.122.072 1074 620 2009-07-08 2010-03-16 082.234.253.071 1801 620 2010-03-09 2010-03-09 024.207.015.106 1060 620 2010-02-03 2010-03-14 078.129.010.014 1843 619 2010-02-23 2010-03-03 122.124.157.033 1221 619 2010-02-16 2010-02-16 078.138.159.171 764 619 2010-02-15 2010-02-26 076.000.154.125 889 619 2010-02-26 2010-02-26 082.188.193.194 1087 619 2009-03-11 2010-03-16 067.129.232.124 1317 619 2010-02-11 2010-03-16 188.136.133.170 1846 619 2010-02-25 2010-02-25 140.209.134.236 1178 619 2010-01-27 2010-03-12 195.174.059.235 3455 619 2010-03-05 2010-03-10 064.034.199.042 1105 619 2009-08-28 2010-02-20 024.043.068.002 1128 618 2009-10-21 2010-03-13 074.117.058.100 1107 618 2009-11-23 2010-03-15 024.086.135.141 1154 618 2009-12-16 2010-03-02 219.117.043.050 1113 618 2010-02-05 2010-03-08 217.070.144.040 1103 618 2010-01-28 2010-03-16 208.069.084.010 1197 618 2010-01-08 2010-03-14 174.005.116.072 1064 618 2009-12-02 2010-02-14 077.031.138.143 1854 618 2010-02-26 2010-02-27 208.088.053.035 1088 617 2010-01-20 2010-03-14 074.222.001.186 1170 617 2009-11-29 2010-03-14 222.211.069.013 643 617 2010-03-09 2010-03-10 038.099.170.228 1089 617 2010-01-14 2010-02-26 024.233.229.151 110025 617 2010-02-12 2010-02-18 198.199.186.242 1039 617 2010-01-15 2010-03-07 065.089.243.094 1089 617 2009-06-25 2010-03-15 207.061.067.057 1124 617 2009-10-19 2010-03-15 067.212.080.007 638 617 2010-03-11 2010-03-11 206.045.138.100 1150 617 2009-03-09 2010-03-16 174.046.073.041 1022 617 2009-03-23 2010-02-16 209.017.190.151 1041 616 2010-02-06 2010-03-15 085.014.218.137 1162 616 2009-11-06 2010-03-16 024.172.038.182 1108 616 2010-02-12 2010-03-14 096.051.023.070 1060 616 2009-11-11 2010-03-13 120.042.036.237 1003 616 2010-01-28 2010-02-15 216.059.007.030 660 616 2010-03-14 2010-03-14 062.026.161.113 1116 616 2009-11-10 2010-02-25 208.115.119.042 1053 615 2010-01-28 2010-03-15 204.237.013.093 1339 615 2010-02-28 2010-02-28 078.159.112.127 3319 615 2010-02-11 2010-03-12 193.001.120.007 1070 615 2010-01-08 2010-03-04 204.074.212.243 3250 615 2010-01-26 2010-02-18 064.034.193.104 1049 615 2009-06-12 2010-03-16 071.106.104.147 1096 615 2009-10-31 2010-03-09 074.117.060.154 1171 615 2009-12-31 2010-03-13 201.230.246.203 618 615 2010-02-25 2010-02-25 081.068.239.032 639 615 2009-12-21 2010-02-21 076.008.225.008 1111 614 2010-01-30 2010-03-15 062.149.172.141 57186 614 2010-02-18 2010-02-25 024.043.013.124 1186 614 2010-01-16 2010-03-14 218.240.031.143 860 614 2010-02-25 2010-03-02 070.077.115.215 1064 614 2009-12-10 2010-03-16 208.080.193.027 3927 614 2009-09-19 2010-03-15 088.183.233.079 1072 614 2010-02-02 2010-03-16 066.195.216.154 1158 614 2010-02-02 2010-03-15 024.069.173.244 1101 614 2010-01-23 2010-03-13 174.037.093.102 1062 614 2009-08-12 2010-03-16 070.065.100.241 1114 614 2010-02-02 2010-03-14 162.040.223.050 784 614 2010-01-08 2010-03-11 070.072.207.171 1106 614 2009-12-28 2010-03-16 174.142.122.206 696 613 2010-02-11 2010-03-12 064.234.075.229 1082 613 2010-01-11 2010-03-16 077.068.041.220 1116 613 2010-01-26 2010-03-15 071.119.020.116 1191 613 2009-11-05 2010-03-13 121.012.109.177 943 613 2010-02-25 2010-02-26 140.209.188.165 1044 613 2009-12-11 2010-03-09 174.003.054.105 1131 613 2010-01-29 2010-03-02 078.084.190.177 1979 613 2010-02-17 2010-02-28 206.126.020.066 1058 613 2009-09-20 2010-03-14 094.125.244.233 2329 613 2010-02-13 2010-03-10 201.091.021.174 1222 613 2010-01-20 2010-03-14 125.230.065.026 2034 613 2010-02-21 2010-02-24 222.247.053.030 6268 613 2010-03-04 2010-03-06 068.168.018.002 1138 612 2009-10-26 2010-03-16 060.248.152.055 616 612 2010-02-24 2010-02-24 216.115.061.232 1075 612 2009-12-03 2010-03-16 066.195.216.170 1143 612 2010-02-02 2010-03-16 065.112.245.106 1326 612 2008-12-30 2010-03-16 208.080.193.040 2976 612 2009-09-19 2010-03-16 078.086.119.105 1023 612 2010-03-12 2010-03-12 174.037.093.100 1076 612 2009-07-22 2010-03-16 196.038.083.130 1021 612 2009-07-04 2010-03-16 071.040.076.110 1487 612 2010-02-26 2010-03-12 012.239.000.015 2242 611 2009-12-11 2010-02-23 068.071.045.115 1065 611 2010-01-18 2010-03-12 208.094.174.067 1088 611 2009-11-13 2010-03-14 078.250.023.147 674 611 2010-02-25 2010-02-27 069.055.241.127 1078 611 2010-01-06 2010-03-01 024.085.138.063 1124 611 2010-02-05 2010-03-14 207.182.159.005 1097 611 2010-02-03 2010-03-14 074.117.056.013 1038 611 2010-01-01 2010-03-01 208.127.216.235 1080 611 2010-02-07 2010-03-14 174.046.240.044 1110 611 2010-01-10 2010-03-16 074.117.058.031 1141 611 2009-12-24 2010-03-16 200.006.155.008 1076 611 2010-01-06 2010-03-14 200.111.149.196 1083 611 2010-01-05 2010-03-15 075.127.095.040 622 610 2010-02-19 2010-02-19 071.103.243.045 660 610 2010-02-22 2010-03-10 195.034.080.090 2941 610 2010-01-15 2010-03-01 096.048.247.248 1094 610 2010-01-16 2010-03-14 072.015.101.233 1126 610 2010-02-14 2010-03-16 085.236.160.080 2676 610 2009-12-04 2010-03-10 209.172.055.074 1057 610 2009-09-08 2010-03-16 085.189.246.037 1717 610 2010-02-16 2010-02-18 074.117.058.058 1087 610 2009-11-06 2010-03-15 211.121.221.169 1066 610 2010-02-03 2010-03-16 074.117.060.147 1257 610 2009-12-22 2010-03-15 077.226.187.123 1131 610 2009-11-19 2010-03-08 218.094.136.178 1509 610 2010-03-06 2010-03-06 195.007.096.148 1492 609 2010-02-13 2010-02-14 173.028.204.104 1200 609 2010-01-23 2010-03-16 174.001.170.123 1286 609 2010-01-08 2010-03-14 096.055.016.243 1085 609 2010-01-23 2010-03-11 078.057.083.123 1815 609 2010-02-14 2010-02-23 081.244.245.167 1368 609 2009-12-21 2010-02-24 203.223.173.211 1429 609 2010-02-02 2010-02-23 094.075.216.052 1045 609 2010-01-08 2010-03-13 078.231.137.079 1873 609 2009-11-12 2010-02-19 208.094.245.010 1067 609 2010-01-08 2010-03-14 091.093.100.009 721 609 2010-02-28 2010-03-01 070.028.078.111 1084 609 2009-09-04 2010-03-14 174.000.146.084 1213 609 2010-01-06 2010-03-03 088.112.220.128 777 608 2010-03-09 2010-03-15 064.005.038.066 1047 608 2010-01-14 2010-03-15 024.172.038.180 1042 608 2010-02-13 2010-03-15 121.246.082.137 1004 608 2009-12-12 2010-03-13 190.159.118.084 880 608 2010-02-26 2010-02-26 094.082.152.081 1377 608 2010-03-06 2010-03-06 173.022.147.051 1568 608 2010-03-03 2010-03-08 095.170.208.114 2424 608 2010-01-31 2010-03-16 078.236.049.217 1833 608 2010-01-23 2010-02-20 113.057.129.130 1072 607 2010-03-01 2010-03-14 189.164.073.186 11891 607 2010-03-07 2010-03-16 077.068.043.012 1193 607 2010-01-26 2010-03-15 079.143.176.076 689 607 2010-02-27 2010-03-08 208.070.160.011 1181 607 2009-06-29 2010-03-16 140.209.188.055 1029 607 2010-01-29 2010-03-07 065.040.213.114 1103 607 2009-11-21 2010-03-13 208.043.040.098 1192 606 2009-12-24 2010-03-16 024.123.132.226 1155 606 2009-12-30 2010-02-17 024.021.035.154 629 606 2010-02-18 2010-02-19 012.052.152.015 1117 606 2009-05-29 2010-03-16 216.115.147.002 2043 606 2010-02-12 2010-03-16 064.128.205.007 1052 606 2009-05-23 2010-03-16 060.191.222.031 673 606 2010-03-10 2010-03-10 208.098.033.002 1099 606 2009-12-25 2010-03-14 206.209.004.135 1083 606 2009-11-26 2010-03-14 078.243.153.006 1911 606 2010-02-09 2010-03-08 174.036.118.038 1070 606 2009-06-30 2010-03-16 093.123.109.138 609 606 2009-04-22 2010-03-09 078.251.216.178 1809 606 2010-02-28 2010-03-01 186.015.030.049 1186 606 2010-02-22 2010-02-22 076.004.252.089 1098 606 2009-11-13 2010-03-16 078.092.129.122 1331 605 2010-03-10 2010-03-11 070.072.052.172 1090 605 2009-11-12 2010-03-13 076.076.101.066 1073 605 2010-01-08 2010-03-01 222.189.153.251 744 605 2010-03-04 2010-03-05 069.092.087.068 1086 605 2009-09-01 2010-03-15 143.090.168.174 1160 605 2010-02-01 2010-03-07 078.226.104.050 1902 605 2010-02-09 2010-03-01 112.113.003.040 605 605 2010-02-28 2010-02-28 125.214.221.178 605 605 2009-09-23 2010-03-12 076.014.223.095 1133 604 2010-01-26 2010-03-01 173.022.170.157 1133 604 2009-06-26 2010-02-15 125.230.070.145 2690 604 2010-02-12 2010-02-15 099.157.124.130 1198 604 2009-12-02 2010-03-16 195.034.078.100 1179 604 2009-12-31 2010-02-22 070.064.161.012 1037 604 2010-01-31 2010-03-04 173.031.101.052 1146 604 2010-02-07 2010-03-08 070.102.138.079 1120 604 2009-05-06 2010-02-22 080.071.244.100 1051 604 2010-01-19 2010-03-03 069.065.010.078 1121 604 2009-06-18 2010-03-13 118.161.249.037 675 604 2010-02-21 2010-02-22 080.037.215.083 2211 604 2010-02-26 2010-02-26 024.077.023.024 1019 604 2009-11-25 2010-02-20 140.209.135.236 1092 604 2009-06-25 2010-03-12 061.041.082.015 1199 604 2010-02-02 2010-03-13 098.118.110.042 626 603 2010-02-17 2010-02-24 190.232.237.050 603 603 2010-03-07 2010-03-07 075.179.161.107 1149 603 2010-01-15 2010-03-14 218.166.123.113 622 603 2010-02-22 2010-02-23 038.106.188.152 1072 603 2009-12-30 2010-03-05 076.189.083.249 1050 603 2009-11-19 2010-03-16 125.215.044.019 603 603 2010-03-11 2010-03-12 173.018.231.089 1104 603 2010-01-21 2010-03-16 190.004.057.075 1009 603 2009-07-09 2010-03-12 024.076.197.035 1091 602 2010-02-04 2010-03-08 078.088.139.104 2010 602 2010-02-20 2010-02-23 208.105.217.001 1167 602 2009-12-08 2010-03-10 063.065.143.015 985 602 2010-01-01 2010-03-08 140.209.189.163 1100 602 2009-10-08 2010-03-12 071.098.242.034 1079 601 2009-05-06 2010-03-12 222.037.037.020 642 601 2010-02-10 2010-02-23 067.053.019.126 1103 601 2010-02-12 2010-03-16 085.217.153.074 1054 601 2009-08-11 2010-03-15 024.106.235.018 1048 601 2010-01-30 2010-03-16 122.166.106.135 901 601 2010-02-21 2010-03-02 064.212.073.165 7067 601 2010-01-13 2010-03-16 063.200.135.022 1079 601 2009-11-19 2010-03-15 220.072.007.004 27044 601 2010-02-03 2010-03-10 195.070.199.038 1009 601 2009-11-16 2010-03-11 088.247.160.151 8351 601 2009-09-14 2010-03-12 078.251.125.014 1905 601 2010-03-10 2010-03-12 201.028.197.009 1118 600 2009-03-26 2010-03-14 173.018.228.005 1060 600 2009-12-06 2010-03-14 125.046.097.186 600 600 2010-02-17 2010-02-17 078.051.009.095 609 600 2010-03-08 2010-03-08 066.195.216.034 1153 600 2010-02-03 2010-03-16 194.023.100.035 1006 600 2009-09-26 2010-03-16 200.139.106.140 1580 600 2010-03-13 2010-03-13 024.207.102.158 1055 600 2009-12-31 2010-02-14 212.095.040.121 1099 599 2010-01-18 2010-03-05 222.240.167.088 6063 599 2010-03-04 2010-03-06 119.147.042.058 642 599 2010-02-14 2010-02-28 094.076.241.027 1019 599 2010-01-18 2010-03-16 200.006.158.186 1164 599 2010-01-28 2010-03-16 070.109.220.075 1102 599 2009-10-26 2010-03-16 024.087.069.089 1061 599 2010-01-31 2010-03-08 024.064.121.094 1026 599 2010-01-11 2010-02-15 078.084.088.018 1876 599 2010-02-28 2010-03-01 121.084.025.019 1051 599 2010-02-08 2010-03-13 058.072.159.100 1069 599 2009-02-12 2010-02-15 096.051.140.046 1088 599 2009-12-10 2010-03-14 074.014.237.206 1065 599 2009-11-26 2010-03-14 071.041.231.121 978 599 2009-06-13 2010-02-15 206.074.078.064 1006 599 2009-12-01 2010-03-16 218.059.144.230 694 599 2010-03-11 2010-03-14 061.017.068.186 197255 599 2010-02-27 2010-03-12 140.209.189.175 1019 599 2009-11-02 2010-03-12 190.105.097.164 605 599 2010-03-15 2010-03-15 060.028.205.036 1436 598 2010-01-17 2010-03-03 078.243.209.050 1811 598 2010-03-06 2010-03-10 125.230.065.043 2339 598 2010-02-19 2010-02-21 078.062.051.135 2267 598 2010-02-26 2010-03-01 094.076.246.077 1130 598 2009-06-08 2010-03-16 089.147.077.070 1035 598 2009-11-06 2010-03-13 203.172.243.103 818 598 2010-03-06 2010-03-06 174.037.194.070 1007 597 2009-07-20 2010-03-15 064.016.187.059 1100 597 2010-01-05 2010-03-16 217.118.136.140 1669 597 2010-02-15 2010-02-25 208.053.131.226 1174 597 2010-01-14 2010-03-16 174.037.093.103 1079 597 2009-08-18 2010-03-16 064.188.188.145 1036 597 2010-01-12 2010-02-23 078.244.144.131 1693 597 2010-02-26 2010-03-05 190.234.081.199 603 597 2010-02-25 2010-02-26 222.211.079.135 1096 597 2009-11-23 2010-03-15 174.103.153.184 1038 597 2010-01-26 2010-03-16 069.015.091.035 1143 597 2009-05-14 2010-03-12 065.040.112.105 1035 597 2010-02-01 2010-03-03 122.146.228.210 1553 596 2010-02-24 2010-02-26 219.147.200.186 1268 596 2010-02-26 2010-03-07 121.014.213.081 1122 596 2009-11-12 2010-02-17 067.124.034.018 1154 596 2009-11-18 2010-03-14 066.064.070.072 1095 596 2010-02-01 2010-03-16 094.079.054.115 1052 596 2009-07-25 2010-03-14 012.237.219.025 1084 596 2009-11-24 2010-03-16 096.037.128.109 1067 596 2009-10-10 2010-03-15 078.083.093.213 1098 596 2009-11-12 2010-03-16 186.018.082.057 746 596 2010-03-15 2010-03-15 122.117.072.020 1162 596 2009-12-30 2010-02-25 096.018.081.012 597 596 2010-02-12 2010-02-18 075.109.087.106 600 596 2010-02-28 2010-03-01 096.239.162.002 1437 596 2010-02-23 2010-02-23 070.043.199.051 619 596 2010-02-11 2010-02-15 196.218.184.084 4568 596 2010-02-12 2010-03-15 140.209.133.240 1027 596 2009-06-28 2010-03-12 070.068.122.048 997 595 2010-01-21 2010-03-15 076.189.080.001 1017 595 2010-01-18 2010-03-11 078.159.044.083 1785 595 2010-02-23 2010-03-08 066.038.120.175 1034 595 2009-11-11 2010-03-16 066.018.013.035 1132 595 2010-02-09 2010-03-14 208.094.095.199 1013 595 2010-01-11 2010-03-15 174.097.247.235 1025 595 2009-11-26 2010-03-13 210.051.184.211 598 595 2010-02-24 2010-02-24 071.104.200.103 1008 595 2009-10-24 2010-03-16 085.254.247.001 1068 595 2009-11-17 2010-03-16 065.089.242.244 1075 594 2009-08-04 2010-03-16 190.209.190.219 756 594 2010-03-15 2010-03-15 024.081.015.116 1142 594 2010-01-29 2010-03-14 121.247.160.034 962 594 2010-02-18 2010-03-08 024.097.013.016 1040 594 2009-09-30 2010-03-16 068.168.130.098 1061 594 2009-11-12 2010-03-15 061.196.047.077 1075 594 2010-02-04 2010-03-02 058.135.192.009 640 594 2010-03-13 2010-03-14 096.048.146.095 1070 594 2009-11-20 2010-03-16 097.067.118.026 1102 594 2009-11-13 2010-03-16 098.141.084.115 1007 594 2009-12-18 2010-03-13 200.035.191.205 1059 594 2010-02-20 2010-03-14 071.253.127.090 1148 594 2009-10-03 2010-03-13 196.203.053.012 594 594 2010-02-22 2010-03-02 074.115.195.024 1004 594 2009-11-06 2010-02-18 208.065.060.099 1029 594 2010-01-15 2010-03-16 069.060.222.119 1141 594 2010-01-05 2010-03-15 212.122.059.228 1108 594 2009-11-11 2010-03-15 140.209.134.247 1058 594 2010-01-29 2010-03-12 038.126.129.104 1038 594 2009-12-22 2010-03-14 201.174.032.066 1128 594 2009-07-14 2010-03-16 189.187.130.221 31678 594 2010-02-15 2010-02-27 098.112.049.028 1015 593 2009-10-20 2010-03-15 067.078.191.038 1124 593 2009-11-22 2010-02-15 160.036.016.037 1093 593 2009-11-19 2010-02-22 174.037.011.211 2344 593 2010-02-27 2010-02-27 096.246.183.085 1006 593 2009-12-31 2010-03-03 200.006.158.090 1033 593 2009-08-21 2010-03-09 099.030.115.029 1022 593 2009-02-27 2010-03-16 024.074.124.028 902 592 2010-01-16 2010-03-16 208.115.119.050 1132 592 2010-01-28 2010-03-16 125.230.071.212 2403 592 2010-02-16 2010-02-23 074.117.057.021 1032 592 2009-11-30 2010-03-13 190.152.146.194 1059 592 2009-10-15 2010-02-19 065.184.211.096 1031 592 2009-12-21 2010-02-19 186.019.019.122 1785 592 2010-02-23 2010-02-23 140.209.188.157 1005 592 2009-12-11 2010-03-12 195.138.149.028 1035 592 2010-02-06 2010-03-14 066.014.187.158 1197 592 2009-11-07 2010-02-24 074.063.192.066 1046 592 2009-09-30 2010-03-16 078.084.179.203 1707 592 2010-02-08 2010-03-01 074.087.123.003 1042 592 2009-11-19 2010-03-04 173.173.038.027 1075 591 2010-01-04 2010-03-16 071.016.195.010 1054 591 2009-07-15 2010-03-15 074.117.056.088 1031 591 2010-01-05 2010-03-15 157.089.082.014 1014 591 2009-07-02 2010-03-15 208.080.193.028 3636 591 2010-01-09 2010-03-16 208.087.241.175 1090 591 2009-12-06 2010-03-15 208.082.046.025 1030 591 2009-11-28 2010-03-16 204.183.116.086 1424 591 2010-03-12 2010-03-15 071.075.142.079 1063 591 2010-01-07 2010-02-22 200.113.159.082 9014 591 2009-10-21 2010-02-22 096.051.013.044 986 590 2010-01-10 2010-02-22 078.061.047.212 2116 590 2010-02-19 2010-02-19 190.144.100.171 1038 590 2009-12-03 2010-03-15 207.030.027.021 636 590 2010-03-05 2010-03-05 058.248.027.108 1605 590 2010-03-03 2010-03-03 072.054.162.066 1605 590 2010-03-10 2010-03-11 222.073.015.013 1242 590 2010-03-01 2010-03-02 216.210.071.020 1029 590 2010-01-30 2010-03-02 070.065.148.095 1036 590 2010-02-01 2010-03-04 065.070.191.027 1027 590 2009-06-11 2010-03-15 072.045.185.004 976 590 2009-12-08 2010-03-16 208.115.119.034 1056 590 2010-01-30 2010-03-16 024.105.182.076 1028 589 2009-05-24 2010-02-22 195.229.050.015 1044 589 2010-02-18 2010-02-18 070.072.028.194 1155 589 2009-08-26 2010-03-16 209.017.171.239 1227 589 2010-02-06 2010-03-12 140.209.188.168 1034 589 2009-11-22 2010-03-12 117.041.228.232 593 589 2010-02-26 2010-02-27 088.249.060.052 623 589 2010-02-17 2010-03-03 086.043.115.159 1978 589 2010-02-24 2010-02-27 201.073.061.125 1689 589 2010-03-03 2010-03-03 200.123.110.114 1070 589 2009-01-14 2010-03-15 024.248.227.021 1446 589 2010-02-15 2010-02-16 190.141.002.109 1155 589 2010-02-21 2010-02-24 208.093.233.013 1062 589 2009-08-25 2010-03-14 074.117.060.132 1005 588 2010-01-03 2010-03-01 139.055.087.041 911 588 2010-02-14 2010-02-14 066.098.164.036 1013 588 2009-12-03 2010-03-06 064.120.228.190 810 588 2010-02-13 2010-02-14 195.235.089.003 1006 588 2009-05-29 2010-03-15 065.087.132.202 1083 588 2009-12-03 2010-03-14 076.079.152.002 998 588 2010-01-13 2010-03-15 088.025.023.182 1104 588 2010-01-23 2010-02-22 074.055.006.018 1112 588 2010-02-10 2010-03-13 222.128.019.006 1660 588 2009-12-07 2010-03-11 061.186.253.162 1350 588 2010-02-27 2010-03-15 211.054.253.095 1715 588 2009-12-30 2010-03-11 207.097.178.025 1051 588 2009-08-26 2010-02-22 078.239.196.063 1778 588 2009-11-28 2010-03-08 209.010.022.039 1301 588 2009-12-17 2010-03-15 208.013.130.125 1059 587 2009-07-29 2010-03-16 099.062.071.243 1012 587 2010-01-19 2010-03-14 066.011.146.083 1211 587 2010-01-23 2010-02-20 140.209.133.230 1095 587 2010-01-29 2010-03-12 024.172.038.179 1058 587 2010-02-13 2010-03-15 200.000.202.045 1070 587 2009-09-02 2010-03-15 065.191.145.025 1013 587 2009-12-21 2010-03-11 202.133.061.133 2926 587 2010-03-13 2010-03-15 078.084.047.039 1295 587 2010-02-14 2010-02-17 217.117.218.010 957 587 2009-11-12 2010-02-14 140.209.135.239 1086 587 2010-02-01 2010-03-12 116.193.091.052 714 587 2010-02-15 2010-02-15 173.053.202.023 1123 587 2010-02-12 2010-03-16 140.209.189.164 1308 587 2009-03-19 2010-03-12 208.043.040.099 1065 587 2010-01-20 2010-03-16 008.010.120.015 1034 587 2009-09-29 2010-03-16 208.008.061.018 1055 586 2010-01-27 2010-03-15 024.043.016.061 988 586 2009-12-23 2010-03-16 218.008.130.141 1138 586 2010-03-05 2010-03-07 069.060.222.084 1092 586 2010-01-15 2010-03-15 198.108.080.008 1122 586 2009-08-02 2010-03-15 118.161.247.135 1728 586 2010-02-24 2010-02-25 202.155.204.080 2564 586 2010-03-12 2010-03-14 201.140.046.013 2285 586 2010-01-30 2010-02-28 071.077.026.066 1067 586 2009-11-20 2010-03-16 200.067.147.046 1103 586 2010-01-17 2010-03-15 096.049.179.251 1015 586 2010-02-12 2010-03-15 076.011.234.248 1071 586 2010-01-31 2010-03-16 089.142.197.212 1140 586 2010-02-26 2010-02-27 063.200.135.199 1022 585 2010-01-12 2010-03-16 071.052.049.195 1106 585 2009-12-28 2010-03-16 190.209.109.060 738 585 2010-03-15 2010-03-15 121.246.064.192 963 585 2009-02-26 2010-03-16 201.116.058.099 1008 585 2009-03-25 2010-03-14 078.224.041.024 3501 585 2010-02-09 2010-03-06 024.043.122.122 1024 585 2010-01-05 2010-02-18 068.121.094.101 1098 585 2009-03-15 2010-03-15 118.160.215.093 1629 585 2010-02-09 2010-02-26 024.082.160.253 1009 585 2009-10-16 2010-03-15 024.067.059.097 1061 585 2009-12-03 2010-03-15 200.159.031.006 1004 585 2009-11-13 2010-03-16 067.198.080.031 997 585 2010-02-08 2010-03-15 071.116.012.027 1070 585 2009-06-11 2010-03-12 068.122.248.027 1089 585 2010-01-15 2010-03-05 059.051.025.030 1120 584 2009-11-22 2010-03-16 173.031.208.099 1046 584 2009-12-10 2010-03-15 131.162.130.191 749 584 2010-01-28 2010-02-28 074.050.001.239 1104 584 2010-02-04 2010-03-16 186.082.012.025 1177 584 2010-02-23 2010-02-23 211.043.149.017 1063 584 2009-12-24 2010-03-10 070.065.020.030 1011 584 2009-08-10 2010-03-16 174.036.199.053 1047 584 2010-02-10 2010-03-15 173.018.032.112 1045 584 2010-02-14 2010-03-16 208.070.160.039 1104 584 2009-06-29 2010-03-05 058.211.158.139 818 584 2010-02-21 2010-02-26 209.098.056.101 1006 583 2009-08-21 2010-03-15 093.067.071.112 585 583 2009-06-04 2010-03-09 217.092.131.246 902 583 2010-02-28 2010-03-03 140.209.189.183 1017 583 2009-10-10 2010-03-12 076.079.202.123 1074 583 2009-04-24 2010-03-14 066.232.252.049 1113 583 2010-02-03 2010-03-14 024.069.103.181 1026 583 2009-11-20 2010-02-28 078.093.227.177 583 583 2010-03-08 2010-03-10 072.051.177.172 1015 583 2010-01-09 2010-03-14 072.174.107.050 1167 583 2009-12-16 2010-03-13 216.081.057.107 1187 583 2010-02-14 2010-03-16 200.000.202.054 1031 583 2010-02-03 2010-03-16 174.000.196.041 1011 583 2010-01-28 2010-02-27 200.000.202.028 1022 582 2009-07-17 2010-03-12 060.160.047.248 631 582 2009-02-26 2010-03-12 041.223.158.040 1672 582 2009-11-22 2010-03-12 071.014.035.074 1062 582 2010-01-28 2010-03-16 067.053.131.078 1100 582 2010-01-07 2010-03-13 198.112.234.168 1016 582 2010-02-02 2010-03-02 068.205.070.158 1022 582 2010-01-23 2010-03-03 078.088.075.172 893 582 2010-02-07 2010-03-05 208.017.079.130 1034 582 2009-08-19 2010-03-16 122.224.051.021 846 582 2010-03-14 2010-03-14 060.012.014.250 1143 582 2009-04-13 2010-02-26 190.209.208.125 1168 581 2010-02-24 2010-02-24 098.026.074.089 1013 581 2010-01-29 2010-03-14 190.159.181.063 681 581 2010-03-15 2010-03-15 070.078.012.250 1097 581 2010-01-09 2010-02-28 024.069.163.013 1033 581 2009-08-14 2010-02-22 140.209.135.229 1117 581 2010-01-28 2010-03-12 077.068.056.181 946 581 2010-02-11 2010-02-14 208.087.240.169 2585 581 2009-12-01 2010-03-15 119.201.033.034 908 581 2010-02-25 2010-02-25 187.058.058.057 1060 581 2009-11-06 2010-03-15 202.169.240.079 763 581 2010-03-13 2010-03-15 082.079.084.024 875 581 2009-10-20 2010-03-16 189.126.027.002 585 581 2010-03-13 2010-03-13 069.050.064.149 962 581 2009-11-08 2010-03-16 041.191.226.179 1046 580 2009-12-02 2010-03-12 074.043.146.090 1051 580 2010-01-07 2010-02-18 204.154.177.102 1044 580 2010-01-13 2010-02-23 173.020.088.208 999 580 2010-01-30 2010-02-26 071.118.127.168 1077 580 2010-01-14 2010-03-15 201.079.210.178 1149 580 2010-02-05 2010-02-21 209.062.111.178 3298 580 2009-10-02 2010-03-09 218.045.161.051 1179 580 2009-10-18 2010-03-14 069.106.209.105 989 580 2009-12-18 2010-03-16 216.093.139.100 989 580 2009-10-02 2010-02-24 024.070.004.035 1046 580 2009-07-09 2010-03-16 140.209.133.237 1034 580 2009-11-05 2010-03-12 140.209.134.238 992 580 2010-01-28 2010-03-12 012.048.046.014 1028 580 2009-12-10 2010-03-15 212.175.005.103 1317 580 2010-02-28 2010-03-10 188.193.094.002 1058 579 2010-02-21 2010-03-02 070.069.059.019 1003 579 2010-01-30 2010-03-16 202.182.124.031 4019 579 2010-03-01 2010-03-03 174.141.065.195 1065 579 2010-01-07 2010-03-14 217.127.207.070 1687 579 2010-03-13 2010-03-13 066.011.149.066 1044 579 2010-01-23 2010-02-18 198.108.084.237 1081 579 2010-02-15 2010-03-16 216.027.068.039 1125 579 2009-07-22 2010-03-15 117.240.090.147 583 579 2010-02-21 2010-02-22 076.248.173.070 1089 579 2009-07-17 2010-03-16 075.102.038.014 996 579 2009-11-23 2010-03-09 118.161.242.011 1218 579 2010-02-13 2010-02-15 198.082.164.120 1189 579 2009-05-14 2010-03-13 174.096.095.090 1088 579 2009-11-05 2010-03-15 140.209.135.231 1068 579 2010-01-28 2010-03-12 072.027.048.006 977 579 2009-05-22 2010-03-14 066.011.146.068 1071 579 2010-01-22 2010-02-18 140.209.189.110 986 579 2009-11-05 2010-03-12 064.038.064.167 1877 579 2010-03-08 2010-03-16 024.043.240.026 1058 578 2009-11-20 2010-03-12 076.011.141.227 1062 578 2010-02-08 2010-03-03 174.046.235.054 982 578 2009-11-16 2010-03-14 123.244.027.231 1006 578 2010-02-27 2010-03-03 038.107.190.011 1056 578 2010-01-11 2010-03-03 125.230.074.127 1799 578 2010-03-14 2010-03-16 024.100.005.081 1087 578 2010-01-23 2010-03-13 125.230.073.130 2283 578 2010-02-16 2010-02-18 081.170.163.190 1040 578 2010-01-06 2010-03-16 190.223.042.101 8579 578 2010-01-26 2010-03-12 065.089.242.247 1066 578 2009-08-13 2010-03-16 074.081.071.029 1237 578 2010-01-17 2010-03-13 074.222.001.190 980 578 2009-09-29 2010-03-14 078.230.068.062 1673 578 2010-03-10 2010-03-12 217.023.014.112 1078 578 2010-03-10 2010-03-12 076.078.038.027 1012 578 2010-01-21 2010-03-13 125.089.199.002 1070 578 2010-02-07 2010-03-16 038.097.204.069 1081 578 2009-11-06 2010-03-16 198.070.219.180 1026 578 2010-02-12 2010-03-10 024.172.251.181 1100 578 2009-10-03 2010-03-06 125.027.039.175 581 578 2010-02-26 2010-02-26 024.172.038.176 1026 578 2010-02-13 2010-03-16 174.037.200.030 969 577 2009-09-01 2010-03-14 140.209.133.232 1074 577 2010-01-28 2010-03-11 139.055.087.154 931 577 2010-03-06 2010-03-06 174.036.209.242 1048 577 2009-05-19 2010-03-15 110.036.251.070 582 577 2010-02-22 2010-03-15 078.131.116.072 23422 577 2010-02-17 2010-02-28 024.054.106.104 1066 577 2010-02-03 2010-03-04 201.022.056.178 577 577 2010-03-13 2010-03-13 208.043.196.090 1181 577 2009-11-11 2010-03-13 190.232.059.107 577 577 2010-02-26 2010-02-26 059.022.127.218 1693 576 2009-12-10 2010-03-12 078.050.140.031 1052 576 2010-03-14 2010-03-14 093.104.211.190 1058 576 2010-02-03 2010-02-27 140.209.134.245 1004 576 2009-10-06 2010-03-12 024.056.166.011 1064 576 2009-01-17 2010-03-13 200.082.184.187 588 576 2010-03-13 2010-03-13 173.028.197.159 1008 576 2009-12-16 2010-03-15 206.123.216.012 987 576 2009-08-20 2010-03-14 072.034.226.002 1005 576 2009-11-11 2010-02-20 187.160.134.047 1138 576 2010-02-26 2010-02-26 094.123.180.140 576 576 2010-02-24 2010-02-24 070.066.024.049 1001 576 2010-02-04 2010-03-15 070.069.163.003 1017 576 2009-09-04 2010-03-15 067.122.159.010 1040 576 2009-12-18 2010-03-15 114.032.052.149 1114 575 2009-10-22 2010-03-15 200.026.171.037 1068 575 2009-06-22 2010-02-22 200.078.225.165 1005 575 2010-01-14 2010-03-02 174.037.027.050 1026 575 2009-10-15 2010-03-15 098.126.013.106 1070 575 2009-10-20 2010-02-25 080.027.007.203 663 575 2009-08-11 2010-03-01 038.105.137.055 1112 575 2010-01-06 2010-03-07 098.119.044.074 1044 575 2010-01-19 2010-03-16 070.054.204.079 996 575 2010-01-08 2010-03-15 064.120.177.030 666 575 2010-03-01 2010-03-02 174.007.086.022 1002 575 2009-12-21 2010-03-14 098.154.088.062 998 575 2010-01-23 2010-03-15 208.094.174.080 1043 575 2010-01-18 2010-03-13 216.104.099.118 1000 575 2010-02-06 2010-03-16 208.117.116.156 1075 575 2009-12-25 2010-02-23 060.190.059.240 2779 574 2009-01-28 2010-03-15 061.221.228.211 1753 574 2010-02-10 2010-03-09 024.106.124.089 969 574 2009-12-20 2010-03-15 173.018.096.224 1072 574 2009-12-21 2010-02-26 066.206.097.105 1265 574 2010-01-17 2010-02-22 217.118.027.114 1564 574 2010-02-26 2010-02-26 194.121.230.066 1047 574 2009-10-21 2010-03-13 059.190.067.234 987 574 2010-01-19 2010-03-02 173.017.008.100 984 573 2009-12-15 2010-03-14 024.069.137.058 1039 573 2010-01-08 2010-02-28 076.074.249.119 1018 573 2009-09-02 2010-03-16 024.064.107.211 996 573 2010-02-16 2010-03-15 061.156.031.052 1319 573 2009-10-31 2010-03-10 174.127.050.004 1110 573 2009-06-09 2010-03-16 203.214.067.014 577 573 2010-02-10 2010-02-16 140.209.022.047 1042 573 2009-09-21 2010-03-15 222.158.190.243 1050 573 2009-11-24 2010-03-15 060.046.133.046 1058 573 2010-01-26 2010-02-27 067.032.013.153 1451 573 2010-02-17 2010-03-11 134.048.094.076 1033 573 2009-12-20 2010-03-09 063.201.164.122 774 573 2009-10-19 2010-03-09 209.139.208.108 1022 572 2009-11-21 2010-03-16 065.089.242.242 1059 572 2009-08-08 2010-03-16 074.118.193.147 986 572 2010-02-02 2010-03-11 174.007.024.007 1032 572 2010-01-26 2010-03-16 208.071.150.052 1571 572 2010-01-01 2010-03-07 173.051.170.074 1026 572 2009-12-20 2010-02-15 066.120.183.106 897 572 2009-05-12 2010-03-14 114.040.150.240 1697 572 2010-02-26 2010-02-27 200.059.002.175 2135 572 2010-03-05 2010-03-14 173.022.160.111 953 572 2010-01-23 2010-02-18 202.070.232.173 1511 572 2010-01-01 2010-03-15 074.063.197.010 1191 572 2009-10-27 2010-03-14 212.060.076.051 1083 572 2009-10-20 2010-03-02 070.025.060.099 953 572 2010-02-11 2010-03-13 125.211.221.145 571 571 2010-03-06 2010-03-06 209.125.026.014 1024 571 2010-01-30 2010-03-15 086.061.243.004 1840 571 2009-11-05 2010-03-08 072.167.042.139 1565 571 2010-02-04 2010-02-23 200.121.146.038 571 571 2010-02-22 2010-02-22 206.107.221.040 1086 571 2009-05-25 2010-03-16 088.250.045.129 574 571 2010-03-01 2010-03-03 067.079.020.114 1035 571 2010-01-04 2010-02-16 072.187.001.169 974 571 2010-01-25 2010-03-02 070.077.079.003 990 571 2010-01-28 2010-03-16 204.111.065.192 897 571 2010-03-14 2010-03-14 190.159.182.084 1716 571 2010-02-22 2010-02-26 095.000.128.090 649 571 2010-02-21 2010-02-22 065.040.145.111 1027 571 2009-11-27 2010-03-16 078.129.161.004 638 571 2010-03-01 2010-03-01 188.117.114.058 1356 570 2010-02-28 2010-03-11 070.094.085.199 1086 570 2010-02-04 2010-03-02 098.108.072.015 987 570 2010-02-05 2010-03-16 024.084.197.075 1101 570 2009-12-09 2010-03-16 071.097.158.051 1152 570 2009-12-07 2010-03-15 012.070.232.203 986 570 2009-07-19 2010-03-16 076.079.237.134 976 570 2010-01-23 2010-03-15 188.125.161.042 617 570 2010-03-03 2010-03-03 071.042.012.099 974 570 2010-01-28 2010-03-01 140.209.134.250 1094 570 2009-11-20 2010-03-12 064.144.035.072 1017 570 2010-01-12 2010-03-16 219.076.176.226 1168 570 2010-03-15 2010-03-15 140.209.191.022 967 570 2009-03-19 2010-03-12 140.209.191.204 1011 570 2009-07-09 2010-03-11 173.093.228.090 1015 570 2009-11-24 2010-03-15 076.079.166.030 1004 570 2009-12-21 2010-03-16 063.200.135.036 1015 569 2010-01-19 2010-02-15 074.084.138.090 581 569 2010-02-17 2010-02-19 074.117.058.054 976 569 2010-01-12 2010-02-16 074.118.192.192 966 569 2009-12-26 2010-03-15 066.006.052.013 962 569 2009-10-27 2010-03-13 024.067.049.116 969 569 2009-12-01 2010-03-16 098.124.094.216 1064 569 2010-01-23 2010-03-14 096.052.006.154 948 569 2009-12-03 2010-03-16 074.080.203.070 990 568 2009-11-22 2010-03-16 071.134.035.131 1202 568 2010-01-29 2010-03-16 194.074.179.062 1012 568 2009-11-08 2010-03-12 069.015.196.003 1036 568 2009-09-19 2010-03-15 071.096.236.203 1061 568 2009-12-27 2010-02-26 125.230.064.030 2199 568 2010-02-22 2010-02-24 069.085.124.110 1028 568 2010-01-28 2010-03-13 174.046.240.057 946 568 2010-01-24 2010-03-16 087.062.236.237 1180 568 2010-01-20 2010-03-04 216.085.233.086 1024 568 2009-11-11 2010-03-15 189.104.229.020 568 568 2010-02-15 2010-02-19 092.244.021.080 994 568 2010-02-03 2010-03-15 078.084.151.244 757 568 2010-02-13 2010-02-14 208.070.160.044 1041 567 2009-06-28 2010-03-15 201.251.011.005 631 567 2010-01-19 2010-02-24 212.095.041.107 1134 567 2010-02-02 2010-03-16 098.150.113.123 1028 567 2009-12-31 2010-02-19 195.035.222.082 994 567 2009-08-13 2010-03-15 190.067.214.217 567 567 2010-02-26 2010-02-26 072.043.100.023 970 567 2009-07-03 2010-03-15 208.094.215.068 980 567 2009-11-05 2010-03-07 220.098.164.022 1104 567 2010-01-17 2010-03-14 083.110.076.117 567 567 2010-02-26 2010-02-26 098.102.129.123 971 567 2010-02-15 2010-03-14 070.069.032.126 1018 567 2009-07-25 2010-03-16 074.117.060.054 1088 567 2009-12-30 2010-03-16 063.099.010.146 5773 567 2010-02-07 2010-03-14 082.175.199.226 987 567 2009-12-08 2010-03-16 074.117.058.005 981 567 2009-09-30 2010-03-15 068.190.017.100 985 566 2010-01-14 2010-03-11 089.018.023.054 2458 566 2009-11-20 2010-02-18 075.075.254.070 1001 566 2009-12-05 2010-03-13 173.028.214.124 1088 566 2009-10-28 2010-03-15 069.123.032.056 22532 566 2010-02-13 2010-03-10 096.249.206.176 1045 566 2010-01-25 2010-03-15 195.064.078.238 1052 566 2009-12-18 2010-03-15 085.178.137.021 10877 566 2010-03-15 2010-03-14 208.084.106.017 984 566 2010-01-08 2010-03-14 207.127.128.022 160976 565 2010-02-09 2010-03-12 085.065.191.137 631 565 2010-03-05 2010-03-07 024.076.056.213 971 565 2009-10-10 2010-03-16 217.023.013.243 1392 565 2010-02-16 2010-03-04 208.070.160.045 1021 565 2009-06-29 2010-03-16 207.255.196.119 1079 565 2009-11-05 2010-03-16 024.064.082.098 1065 565 2010-02-15 2010-03-14 077.068.044.053 986 565 2010-01-28 2010-03-16 098.140.230.095 1181 565 2009-10-31 2010-03-14 210.076.201.240 584 565 2010-02-13 2010-02-14 206.209.005.035 963 565 2010-02-08 2010-03-12 096.011.188.215 1048 564 2009-11-24 2010-03-07 222.124.191.218 1868 564 2010-01-20 2010-03-13 070.078.035.224 1058 564 2010-01-08 2010-02-19 072.051.186.073 985 564 2009-03-18 2010-03-14 202.103.233.149 988 564 2009-02-02 2010-03-15 188.051.026.081 1638 563 2010-02-21 2010-02-22 212.065.146.019 3899 563 2010-02-02 2010-02-18 083.232.225.018 1166 563 2009-12-11 2010-03-15 216.240.247.140 1063 563 2009-11-30 2010-03-15 190.190.175.024 1085 563 2010-02-08 2010-02-21 149.156.063.079 753 563 2010-02-18 2010-03-03 174.001.105.219 1019 563 2009-12-21 2010-03-15 062.107.052.075 673 563 2010-03-05 2010-03-07 066.207.089.103 957 563 2009-07-09 2010-03-15 082.102.067.074 1044 563 2010-02-26 2010-03-16 070.129.025.166 982 563 2009-08-22 2010-03-16 066.056.244.072 1060 562 2010-02-07 2010-03-14 094.075.215.019 769 562 2010-01-08 2010-02-17 083.016.197.010 587 562 2010-01-22 2010-02-16 216.066.029.145 1059 562 2009-12-31 2010-03-12 067.132.242.038 1443 562 2010-01-21 2010-02-14 200.115.239.027 1131 562 2010-02-21 2010-02-21 074.174.128.048 987 562 2009-12-17 2010-03-16 072.048.226.152 966 562 2010-02-12 2010-03-16 082.076.217.038 1002 562 2009-11-14 2010-03-13 140.209.190.162 1065 562 2009-12-10 2010-03-12 190.145.008.250 1018 562 2009-10-23 2010-03-15 096.011.092.200 1045 562 2010-01-05 2010-03-14 216.030.087.002 1102 562 2010-02-03 2010-03-15 064.034.168.116 1020 562 2009-06-06 2010-02-15 065.038.021.067 983 562 2009-12-24 2010-03-15 200.195.127.215 2491 562 2009-11-02 2010-02-26 066.190.160.140 1165 562 2010-01-05 2010-02-19 109.121.133.096 790 562 2010-02-13 2010-03-11 064.128.205.002 1029 562 2010-02-17 2010-03-16 095.069.213.179 2131 562 2010-02-16 2010-03-06 024.083.047.036 1025 561 2009-12-16 2010-03-09 200.194.102.178 15336 561 2009-09-23 2010-03-11 080.239.144.105 1112 561 2010-01-08 2010-03-09 067.008.219.082 1034 561 2010-02-11 2010-03-16 078.061.008.132 226372 561 2009-11-05 2010-02-16 173.024.242.023 1024 561 2010-01-05 2010-03-16 070.184.006.183 964 561 2010-01-31 2010-03-01 208.043.198.158 985 561 2009-11-24 2010-03-16 062.095.051.003 976 561 2010-01-20 2010-03-14 098.108.242.095 1008 561 2010-01-31 2010-02-27 064.034.203.218 1040 561 2009-06-05 2010-03-14 066.007.222.005 976 561 2010-02-05 2010-03-16 063.246.121.036 2677 561 2009-12-05 2010-03-13 078.063.116.217 565 561 2010-02-17 2010-02-17 078.139.173.240 1606 561 2010-02-07 2010-03-14 024.193.062.111 931 561 2010-01-06 2010-03-15 190.182.050.170 954 560 2010-02-24 2010-02-24 085.018.244.245 1021 560 2009-12-18 2010-03-16 059.034.001.002 564 560 2010-02-25 2010-02-26 202.182.051.194 2073 560 2010-03-02 2010-03-11 140.209.191.160 1110 560 2009-11-22 2010-03-09 024.087.037.208 1025 560 2009-12-05 2010-03-16 096.011.188.214 1057 560 2009-11-28 2010-03-09 190.128.066.253 1121 560 2010-03-04 2010-03-12 080.255.090.247 828 560 2010-03-03 2010-03-03 024.105.133.102 975 559 2009-10-06 2010-03-15 064.191.116.086 643 559 2010-03-08 2010-03-08 024.080.192.164 983 559 2010-02-01 2010-03-14 024.082.131.013 1043 559 2009-11-16 2010-02-16 024.069.139.015 1030 559 2009-12-23 2010-03-16 038.099.182.123 1045 559 2009-11-20 2010-03-15 216.228.173.198 958 559 2010-01-30 2010-03-14 061.129.163.173 1102 559 2010-02-12 2010-02-26 066.026.118.177 1107 559 2010-01-08 2010-03-16 065.089.242.248 952 559 2009-08-06 2010-03-16 064.030.193.008 1004 559 2010-01-04 2010-03-14 173.028.221.057 1021 559 2009-10-25 2010-03-16 125.230.067.162 1973 559 2010-02-13 2010-02-15 066.146.194.074 1074 559 2009-11-25 2010-03-15 070.070.169.011 1679 559 2010-02-27 2010-02-27 082.085.101.013 817 559 2010-02-01 2010-02-26 069.015.110.254 979 559 2009-04-09 2010-03-06 066.011.146.074 1092 558 2010-01-23 2010-02-18 069.085.116.207 956 558 2010-01-15 2010-03-16 212.034.128.012 1031 558 2009-10-18 2010-03-03 118.169.194.015 1375 558 2010-02-16 2010-02-16 082.079.025.015 1044 558 2010-01-08 2010-03-16 061.142.213.090 722 558 2010-03-07 2010-03-10 078.039.193.194 2713 558 2010-02-07 2010-03-01 071.043.002.139 960 558 2009-12-09 2010-03-14 210.019.202.202 649 558 2010-03-03 2010-03-10 219.146.074.132 569 558 2010-01-29 2010-03-14 204.124.182.162 928 558 2010-02-03 2010-03-14 208.069.192.018 951 558 2010-02-06 2010-03-04 173.031.092.111 963 558 2009-12-16 2010-03-15 024.085.049.134 1027 557 2009-12-12 2010-03-15 115.039.187.250 977 557 2010-01-23 2010-03-14 213.033.180.118 1037 557 2009-11-27 2010-03-14 173.060.017.053 1044 557 2009-07-08 2010-03-16 190.055.210.145 702 557 2010-03-15 2010-03-15 024.080.109.196 987 557 2009-11-30 2010-03-16 081.091.219.107 3231 557 2010-03-02 2010-03-10 206.209.004.184 908 557 2009-11-17 2010-03-08 096.054.147.173 958 557 2009-11-24 2010-02-27 024.086.070.011 1016 557 2010-01-28 2010-03-03 096.048.106.031 955 557 2009-09-15 2010-03-16 071.066.098.121 935 557 2010-02-11 2010-03-12 208.094.247.066 1069 557 2010-01-29 2010-03-15 070.077.066.058 966 557 2010-01-28 2010-03-14 190.043.028.241 564 557 2010-03-01 2010-03-03 072.087.158.032 989 557 2009-04-10 2010-03-15 062.093.116.012 1115 557 2010-02-26 2010-02-26 190.159.032.177 1116 557 2010-03-04 2010-03-05 024.097.148.077 944 557 2009-09-18 2010-03-15 173.030.028.214 1002 556 2009-11-13 2010-03-16 201.168.056.011 996 556 2010-03-03 2010-03-05 060.190.077.162 1032 556 2009-07-29 2010-03-15 222.152.171.166 556 556 2010-03-03 2010-03-03 080.039.010.195 556 556 2010-02-20 2010-02-26 150.174.044.246 924 556 2010-02-18 2010-03-16 216.120.161.114 1087 556 2009-10-26 2010-03-16 078.251.068.124 1667 556 2010-02-23 2010-02-26 071.042.063.059 1015 556 2009-11-29 2010-03-01 068.064.123.170 1006 556 2010-01-22 2010-03-14 200.207.155.151 625 556 2010-01-07 2010-02-19 082.078.003.253 955 556 2009-04-22 2010-03-16 078.243.057.147 2939 556 2010-02-18 2010-03-06 078.192.014.100 1502 556 2009-11-11 2010-03-08 062.021.133.018 939 556 2010-01-28 2010-03-16 078.230.216.079 1401 556 2010-02-23 2010-03-15 070.104.024.154 943 556 2009-10-04 2010-03-16 071.006.200.098 961 556 2010-02-02 2010-03-16 066.090.083.138 604 556 2010-03-15 2010-03-15 222.171.021.091 711 556 2010-03-07 2010-03-07 203.121.160.067 982 555 2009-06-25 2010-03-13 190.055.233.139 1119 555 2010-02-28 2010-02-28 066.056.182.051 949 555 2010-01-20 2010-02-27 195.003.137.100 987 555 2010-02-03 2010-03-15 078.084.086.070 974 555 2010-02-13 2010-03-11 201.238.080.042 992 555 2009-09-20 2010-03-12 092.048.098.022 1007 555 2009-11-05 2010-03-08 099.016.120.045 1074 555 2010-02-05 2010-03-15 209.205.132.129 952 555 2009-07-08 2010-03-14 208.053.172.099 957 555 2009-12-17 2010-03-11 024.084.164.136 1079 555 2010-01-10 2010-03-15 094.075.216.010 990 555 2009-07-29 2010-03-15 124.030.116.190 1112 555 2009-05-04 2010-03-10 066.035.107.029 1252 555 2010-03-08 2010-03-09 125.230.090.167 2469 555 2010-03-13 2010-03-16 069.028.052.226 980 555 2010-01-29 2010-03-16 078.084.083.020 1130 555 2010-03-03 2010-03-10 085.197.171.031 2578 555 2010-02-06 2010-03-10 173.028.205.093 1059 555 2010-01-18 2010-02-17 096.048.157.119 1008 555 2009-12-31 2010-02-25 081.211.107.200 1035 555 2009-04-24 2010-03-16 198.108.081.152 983 554 2009-08-07 2010-03-15 216.018.021.120 956 554 2009-11-11 2010-03-16 079.028.211.069 1033 554 2009-12-06 2010-02-26 061.219.153.243 955 554 2010-02-22 2010-02-22 140.247.058.026 946 554 2009-12-08 2010-03-15 065.188.172.011 935 554 2010-02-11 2010-03-16 092.043.032.077 1013 554 2010-01-17 2010-03-12 068.121.094.102 927 554 2009-10-27 2010-03-16 078.128.067.204 1854 554 2010-03-04 2010-03-13 085.103.097.011 554 554 2010-02-15 2010-02-15 024.076.181.017 1033 554 2010-02-10 2010-03-16 190.233.104.004 562 554 2010-02-11 2010-02-16 218.166.120.077 575 553 2010-02-25 2010-02-26 024.066.059.074 1008 553 2010-02-20 2010-02-22 078.236.253.140 1797 553 2009-12-26 2010-02-23 074.062.164.028 1049 553 2010-01-21 2010-03-15 089.028.089.247 1098 553 2009-06-21 2010-02-15 216.008.192.071 1047 553 2009-12-07 2010-03-16 068.122.248.028 982 553 2009-12-02 2010-03-16 024.068.068.178 1059 553 2010-01-08 2010-03-14 069.193.091.054 938 553 2009-09-25 2010-03-16 064.105.230.026 947 553 2009-09-04 2010-03-04 218.219.154.153 13127 553 2010-02-27 2010-03-15 203.131.126.114 887 553 2008-11-25 2010-03-15 188.026.094.008 1103 553 2009-11-25 2010-03-16 118.168.136.017 1621 553 2010-02-15 2010-02-18 076.160.242.238 996 552 2010-01-30 2010-03-16 090.188.052.102 3239 552 2010-02-03 2010-03-12 024.080.122.079 987 552 2009-08-21 2010-03-16 186.080.184.180 1106 552 2010-03-04 2010-03-05 150.188.003.046 1027 552 2009-12-12 2010-03-13 140.209.134.235 983 552 2010-01-28 2010-03-12 069.011.225.122 623 552 2010-02-18 2010-03-05 070.074.182.079 939 552 2010-01-12 2010-03-16 066.178.147.150 552 552 2010-02-22 2010-02-23 222.035.142.041 953 552 2010-03-01 2010-03-07 208.127.015.109 1015 551 2009-12-10 2010-03-14 201.245.132.018 935 551 2009-10-27 2010-03-14 095.211.129.201 814 551 2010-03-13 2010-03-13 189.145.113.228 12508 551 2010-02-27 2010-03-10 173.024.243.083 1002 551 2010-01-31 2010-03-16 024.078.246.074 1009 551 2010-01-30 2010-03-13 118.129.103.157 784 551 2010-01-09 2010-03-12 079.145.108.123 758 551 2010-02-10 2010-02-19 024.103.024.248 955 551 2009-12-17 2010-03-16 075.186.112.215 955 551 2010-01-02 2010-03-15 085.029.004.110 989 551 2009-10-20 2010-03-13 149.099.044.022 646 551 2010-01-12 2010-03-06 187.001.246.210 2099 551 2010-03-03 2010-03-06 061.185.042.006 1335 551 2010-02-10 2010-02-15 195.013.136.086 1182 551 2010-02-25 2010-02-25 012.232.190.022 967 551 2010-01-06 2010-03-08 066.011.146.077 958 551 2010-01-23 2010-02-18 204.101.025.090 951 551 2009-09-11 2010-03-16 078.084.057.147 90500 550 2010-02-02 2010-03-10 069.199.055.242 973 550 2009-09-25 2010-02-17 206.248.125.020 966 550 2010-02-03 2010-02-18 071.054.208.074 914 550 2009-10-23 2010-03-16 078.226.044.096 6838 550 2010-01-30 2010-02-23 112.150.046.180 1783 550 2010-02-28 2010-03-05 070.121.129.199 986 550 2009-12-09 2010-02-26 071.043.180.021 963 550 2010-01-25 2010-03-14 174.001.036.252 1001 550 2010-01-24 2010-03-14 174.101.240.153 932 550 2009-10-12 2010-03-15 069.238.011.194 992 550 2010-01-05 2010-03-16 074.117.059.114 948 550 2009-12-13 2010-03-14 088.079.235.041 1022 550 2010-02-02 2010-03-15 207.069.170.036 1041 550 2010-02-15 2010-03-15 067.049.138.151 972 550 2009-12-03 2010-02-15 098.100.024.158 944 549 2009-09-12 2010-03-11 173.023.172.135 930 549 2010-02-08 2010-03-15 024.136.217.029 958 549 2009-04-23 2010-03-10 095.062.006.058 1093 549 2010-03-04 2010-03-05 024.121.061.012 1116 549 2010-02-07 2010-03-15 209.019.051.091 1028 549 2009-09-27 2010-03-15 130.000.004.236 625 549 2009-09-23 2010-03-11 119.042.148.074 1030 549 2010-01-30 2010-03-15 070.061.227.076 2007 549 2009-11-09 2010-03-15 066.011.149.069 1060 549 2010-01-24 2010-02-18 024.076.042.077 986 549 2010-02-07 2010-03-16 200.088.112.147 1003 549 2010-01-08 2010-03-14 202.155.217.070 1823 549 2010-03-02 2010-03-02 208.053.168.069 1056 548 2010-01-30 2010-03-14 078.039.193.084 1487 548 2009-12-24 2010-03-15 195.225.053.057 936 548 2009-08-05 2010-03-13 078.235.166.014 1581 548 2010-02-09 2010-03-06 190.209.032.066 727 548 2010-03-15 2010-03-15 184.073.010.162 641 548 2010-02-22 2010-02-22 203.242.210.196 894 548 2010-02-27 2010-03-13 208.080.193.036 1966 548 2009-09-19 2010-03-13 070.073.140.171 988 548 2009-12-15 2010-03-13 070.062.148.004 1105 548 2009-09-25 2010-03-11 068.205.042.227 1070 548 2010-01-26 2010-03-14 064.093.029.058 989 548 2010-01-20 2010-02-22 082.227.136.155 1023 548 2009-12-28 2010-02-28 024.065.231.001 1073 548 2010-01-15 2010-02-24 082.102.017.049 1034 548 2010-02-12 2010-03-13 064.119.158.071 997 547 2010-01-20 2010-03-16 173.212.255.004 605 547 2010-03-10 2010-03-10 143.132.207.064 965 547 2009-09-18 2010-03-11 190.060.242.010 957 547 2009-11-29 2010-03-16 065.041.147.073 961 547 2009-12-03 2010-03-12 096.051.016.251 946 547 2009-12-25 2010-03-16 186.012.112.188 547 547 2010-02-19 2010-02-19 071.119.019.004 650 547 2010-03-13 2010-03-14 024.043.111.146 960 547 2010-02-07 2010-03-12 174.044.034.087 1031 547 2009-11-06 2010-03-14 024.082.186.127 1026 546 2009-09-14 2010-03-15 081.172.018.086 1100 546 2010-02-21 2010-02-21 078.237.068.062 5016 546 2009-12-12 2010-03-05 095.110.130.146 8712 546 2009-08-22 2010-03-15 064.062.191.150 1000 546 2009-10-05 2010-03-16 088.019.030.216 593 546 2010-02-20 2010-02-20 064.088.224.132 964 546 2010-01-21 2010-03-16 150.174.044.053 973 546 2010-02-09 2010-03-16 200.070.022.170 942 546 2009-05-12 2010-03-16 113.028.039.167 561 546 2010-03-05 2010-03-09 089.203.064.217 548 545 2010-03-03 2010-03-04 095.110.193.251 855 545 2010-02-22 2010-03-14 064.188.188.105 953 545 2010-01-30 2010-03-14 209.097.078.145 904 545 2010-02-07 2010-03-16 066.235.194.018 929 545 2009-09-19 2010-03-14 093.156.027.183 983 545 2010-01-21 2010-03-16 065.061.200.023 956 545 2010-01-05 2010-02-17 070.079.134.041 1028 545 2009-10-03 2010-03-15 201.238.218.061 32910 545 2009-11-18 2010-03-13 190.015.176.116 988 545 2009-12-09 2010-03-16 149.075.075.027 1034 545 2009-12-27 2010-03-16 118.008.011.130 1074 545 2010-01-26 2010-02-25 012.234.198.139 908 545 2009-12-25 2010-03-14 200.088.112.148 965 545 2010-01-08 2010-02-19 065.118.186.136 845 545 2010-01-22 2010-02-14 195.042.076.164 627 544 2010-03-04 2010-03-16 173.028.208.055 989 544 2009-12-27 2010-03-15 099.062.071.244 1016 544 2010-01-18 2010-03-16 074.063.218.018 972 544 2010-02-02 2010-03-16 125.237.147.008 544 544 2010-02-26 2010-02-26 074.211.003.026 928 544 2010-02-14 2010-03-15 069.110.117.036 969 544 2009-07-06 2010-03-14 190.121.133.238 987 544 2010-01-30 2010-03-16 024.073.153.009 969 544 2010-01-26 2010-03-16 081.010.018.242 938 544 2009-10-14 2010-03-13 150.101.217.029 2544 544 2010-02-16 2010-03-10 070.039.068.002 937 544 2010-02-03 2010-03-10 173.028.205.135 944 543 2010-02-01 2010-03-14 190.042.117.208 543 543 2010-02-23 2010-02-23 208.043.230.214 1152 543 2010-02-23 2010-02-23 076.079.231.053 984 543 2009-11-24 2010-03-16 070.078.202.077 931 543 2009-12-11 2010-03-16 213.160.144.098 902 543 2009-10-03 2010-03-16 068.183.013.140 916 543 2010-01-13 2010-03-16 089.179.147.252 944 543 2009-12-30 2010-03-13 085.120.009.044 962 543 2009-10-21 2010-03-04 113.023.144.039 971 543 2009-10-21 2010-03-15 078.224.042.146 1553 542 2010-02-14 2010-03-08 222.141.220.198 827 542 2010-02-15 2010-03-01 083.213.130.107 831 542 2009-07-06 2010-03-15 095.168.169.071 632 542 2010-02-15 2010-02-15 122.016.139.141 972 542 2010-02-08 2010-03-08 082.148.190.038 891 542 2010-03-07 2010-03-13 070.044.123.145 1084 542 2010-01-18 2010-03-08 082.107.043.063 2623 542 2010-02-27 2010-03-04 070.015.089.211 969 542 2010-01-22 2010-02-24 067.079.180.011 1001 541 2010-01-20 2010-02-26 190.232.162.112 541 541 2010-02-17 2010-02-19 084.204.037.243 973 541 2009-07-22 2010-03-05 222.154.005.138 541 541 2010-02-25 2010-02-26 140.209.134.242 962 541 2009-06-25 2010-03-12 070.074.092.075 948 541 2010-01-18 2010-03-13 196.043.084.253 26222 541 2010-03-03 2010-03-13 069.207.049.058 907 541 2010-01-20 2010-02-18 201.040.117.044 663 541 2010-02-22 2010-03-16 096.011.188.212 1005 541 2010-01-29 2010-03-15 203.111.223.091 2601 541 2010-02-16 2010-02-22 213.134.185.185 2106 541 2009-10-22 2010-02-26 070.018.000.250 978 541 2010-01-08 2010-03-15 082.231.188.093 1044 541 2010-01-25 2010-03-14 066.011.146.082 921 541 2010-01-25 2010-02-20 173.029.254.099 963 541 2009-10-27 2010-03-14 173.055.006.005 988 540 2009-04-05 2010-02-20 024.105.192.048 969 540 2010-02-02 2010-03-16 217.133.038.146 552 540 2010-03-03 2010-03-03 093.086.061.234 612 540 2010-02-10 2010-03-14 091.139.161.002 590 540 2010-03-12 2010-03-12 122.052.105.098 764 540 2010-02-16 2010-03-13 078.178.135.071 540 540 2010-02-24 2010-02-24 066.011.146.088 968 540 2010-01-24 2010-02-18 064.138.248.189 635 540 2010-02-20 2010-02-27 080.093.221.005 1016 540 2009-12-26 2010-02-25 069.015.007.066 995 540 2009-09-13 2010-03-15 190.232.248.086 540 540 2010-02-14 2010-02-18 096.051.094.129 1119 540 2010-01-12 2010-03-13 098.103.129.166 963 540 2010-02-02 2010-03-14 024.067.200.132 1023 540 2009-12-12 2010-03-15 174.123.139.091 768 539 2010-02-27 2010-03-04 208.094.244.074 936 539 2010-01-27 2010-03-15 085.017.073.035 978 539 2009-11-08 2010-03-15 173.028.214.239 939 539 2010-01-15 2010-03-15 173.080.036.090 979 539 2010-01-21 2010-03-15 186.081.193.165 1082 539 2010-03-04 2010-03-05 072.215.049.160 942 539 2009-12-11 2010-03-13 209.017.170.088 921 539 2009-09-11 2010-03-14 221.195.000.011 814 539 2010-02-23 2010-02-25 074.118.193.143 1001 539 2010-02-08 2010-03-15 066.045.241.250 1056 539 2009-10-09 2010-03-14 024.120.034.037 1000 539 2010-02-10 2010-03-15 078.096.065.076 891 538 2009-11-11 2010-03-13 067.105.059.083 977 538 2010-02-06 2010-03-04 072.086.158.111 918 538 2010-01-10 2010-03-13 074.042.063.123 996 538 2010-01-29 2010-03-16 190.208.095.026 1018 538 2010-02-21 2010-02-21 066.011.146.066 1015 538 2010-01-24 2010-02-18 173.057.028.013 1013 538 2009-11-05 2010-03-15 174.006.185.030 937 538 2010-01-31 2010-03-14 091.204.161.005 559 538 2010-03-11 2010-03-11 190.232.055.020 552 538 2010-02-26 2010-03-04 208.105.150.193 649 538 2010-02-24 2010-03-13 221.213.069.002 538 538 2010-01-27 2010-03-02 085.025.073.151 872 538 2010-02-17 2010-02-21 200.204.150.216 1065 538 2010-01-02 2010-03-11 078.008.080.061 813 538 2010-03-13 2010-03-13 096.050.192.126 879 538 2010-01-23 2010-03-13 200.024.221.083 698 538 2010-01-17 2010-02-22 024.189.199.247 546 537 2010-02-26 2010-03-07 099.039.011.105 1026 537 2010-02-14 2010-03-16 070.109.220.076 947 537 2009-11-12 2010-03-16 078.084.033.186 705 537 2010-03-10 2010-03-12 070.077.164.051 866 537 2009-08-02 2010-03-16 074.220.009.111 629 537 2010-02-09 2010-02-27 174.036.185.180 904 537 2009-07-24 2010-03-14 087.082.204.012 920 537 2009-12-05 2010-03-16 195.088.006.216 898 537 2009-10-10 2010-03-15 074.228.207.151 1539 537 2010-02-26 2010-02-26 061.041.082.019 930 537 2010-02-04 2010-03-15 024.085.053.057 620 537 2010-02-09 2010-03-02 208.105.202.081 932 536 2009-10-05 2010-03-14 180.218.062.018 708 536 2010-02-19 2010-02-21 193.200.241.078 913 536 2010-01-19 2010-02-15 088.181.100.040 955 536 2010-01-19 2010-02-14 174.137.010.247 958 536 2010-02-05 2010-03-12 201.161.017.237 35065 536 2010-03-04 2010-03-12 220.180.015.005 1204 536 2010-03-07 2010-03-14 098.027.084.054 960 536 2009-12-06 2010-03-13 070.071.226.187 913 536 2009-10-20 2010-03-16 076.011.142.177 3851 535 2010-01-10 2010-03-02 216.228.178.008 902 535 2010-02-15 2010-03-15 088.085.125.036 1663 535 2010-02-17 2010-03-15 121.213.244.099 797 535 2010-03-07 2010-03-07 061.233.116.010 537 535 2010-02-20 2010-03-13 199.111.158.057 928 535 2010-01-10 2010-03-04 078.233.244.121 1490 535 2010-02-12 2010-02-15 216.240.243.095 933 535 2010-01-18 2010-02-15 174.046.240.055 1015 535 2010-01-11 2010-03-16 074.101.051.245 879 535 2010-03-01 2010-03-01 209.062.054.050 965 535 2009-09-16 2010-03-15 078.250.099.230 1535 535 2010-02-13 2010-02-14 080.240.199.055 538 535 2010-02-24 2010-02-24 024.172.038.186 980 535 2010-02-13 2010-03-14 066.038.003.088 995 534 2010-01-19 2010-03-15 096.048.034.188 895 534 2010-02-11 2010-03-13 069.085.123.235 923 534 2010-02-08 2010-03-15 064.085.160.032 919 534 2010-02-17 2010-03-15 219.148.038.069 972 534 2009-11-22 2010-03-14 070.107.219.125 1008 534 2009-11-30 2010-03-08 077.061.029.027 944 534 2010-01-09 2010-02-15 038.100.019.098 894 534 2009-12-19 2010-03-15 080.065.233.200 951 534 2010-02-19 2010-03-15 076.169.249.127 1058 534 2009-12-26 2010-03-15 090.190.126.154 953 534 2009-09-21 2010-03-16 218.155.251.107 790 534 2010-02-23 2010-02-23 024.066.229.211 897 534 2010-02-06 2010-03-12 216.240.245.207 959 534 2009-11-29 2010-02-25 085.068.119.163 539 534 2010-02-26 2010-02-26 066.011.146.086 1038 533 2010-01-23 2010-02-18 118.007.109.078 924 533 2010-02-03 2010-03-14 194.079.157.066 919 533 2010-01-06 2010-03-16 076.188.218.105 952 533 2009-11-11 2010-02-16 075.119.042.122 1022 533 2009-11-15 2010-03-16 085.091.102.025 893 533 2010-01-26 2010-03-02 072.083.229.120 890 533 2009-11-09 2010-03-15 078.228.222.250 1525 533 2010-03-01 2010-03-05 084.108.016.157 2902 533 2010-02-25 2010-03-05 222.221.007.084 5969 533 2010-02-17 2010-02-23 070.071.167.000 1015 533 2009-09-21 2010-02-19 216.210.064.188 2146 533 2010-02-09 2010-03-15 070.064.070.082 979 533 2010-02-12 2010-03-16 190.159.104.131 547 533 2010-03-15 2010-03-15 216.018.021.164 987 533 2010-01-18 2010-03-05 200.058.165.021 1471 533 2010-02-01 2010-03-15 071.000.227.016 947 533 2009-11-19 2010-03-15 066.038.019.119 950 533 2009-11-17 2010-03-16 198.108.081.227 933 532 2009-10-20 2010-03-15 082.077.191.002 920 532 2010-01-18 2010-03-02 213.141.038.236 961 532 2009-12-30 2010-03-14 060.048.241.169 532 532 2010-02-26 2010-02-26 065.189.236.199 890 532 2010-01-05 2010-02-24 200.078.188.118 898 532 2009-12-10 2010-03-16 076.189.095.019 917 532 2009-08-16 2010-03-15 194.069.195.155 921 532 2010-02-16 2010-03-15 095.090.023.180 997 532 2010-01-17 2010-03-14 190.233.251.144 532 532 2010-02-15 2010-02-15 201.230.114.228 532 532 2010-02-26 2010-02-26 066.090.104.044 996 532 2010-02-09 2010-03-16 189.102.196.118 897 532 2010-01-08 2010-02-19 070.061.227.080 1060 532 2009-12-07 2010-03-03 071.161.100.068 1350 532 2010-02-26 2010-03-02 076.015.136.100 882 531 2010-01-03 2010-02-25 058.137.115.222 858 531 2010-03-06 2010-03-06 064.120.224.122 4492 531 2010-03-06 2010-03-07 202.107.226.250 688 531 2010-02-23 2010-03-16 122.183.088.178 688 531 2010-02-07 2010-03-13 069.108.210.018 917 531 2009-09-30 2010-03-12 124.178.152.218 538 531 2010-02-22 2010-03-01 194.069.194.015 933 531 2010-02-15 2010-03-16 070.060.054.082 936 531 2010-01-07 2010-03-15 083.016.212.154 565 531 2010-01-27 2010-03-05 077.093.075.151 920 531 2010-01-13 2010-03-15 180.094.092.122 536 531 2010-03-14 2010-03-14 024.043.078.198 946 531 2009-03-05 2010-03-16 206.135.149.083 942 531 2010-01-05 2010-03-12 066.011.146.076 929 531 2010-01-23 2010-02-18 097.104.032.203 974 531 2010-01-15 2010-03-15 174.000.216.074 957 531 2010-01-31 2010-03-14 078.226.148.180 1732 531 2010-02-23 2010-03-08 201.218.249.158 946 531 2009-10-06 2010-03-15 070.067.169.248 719 531 2010-01-28 2010-02-21 085.017.068.032 992 531 2010-01-29 2010-03-15 212.058.013.050 881 530 2009-12-15 2010-03-13 072.065.149.009 961 530 2010-02-04 2010-03-14 190.183.220.236 794 530 2010-02-20 2010-02-23 087.029.154.099 961 530 2009-09-18 2010-03-14 125.239.087.076 530 530 2010-02-28 2010-02-28 208.070.160.012 978 530 2009-06-29 2010-03-16 070.071.018.031 942 530 2010-01-15 2010-03-11 067.212.098.156 909 530 2009-07-15 2010-03-14 072.043.055.064 3226 530 2010-02-24 2010-03-11 203.252.182.079 654 530 2010-03-11 2010-03-11 078.084.045.149 1425 530 2010-03-10 2010-03-12 078.088.063.242 1117 530 2010-03-01 2010-03-01 173.018.227.052 890 530 2010-02-10 2010-03-13 095.017.207.022 1624 530 2010-02-16 2010-02-22 070.071.165.062 951 530 2010-01-21 2010-03-12 068.016.100.062 829 530 2010-01-22 2010-02-22 207.255.203.103 1047 530 2010-02-26 2010-02-26 071.121.225.017 948 530 2010-01-03 2010-03-16 065.041.016.007 894 530 2009-05-23 2010-03-15 070.079.134.001 860 530 2010-01-24 2010-02-18 201.245.055.122 908 530 2009-02-07 2010-02-23 074.222.004.018 670 530 2010-02-22 2010-02-24 150.174.036.161 929 529 2009-08-27 2010-03-12 212.051.178.066 891 529 2010-02-06 2010-03-16 068.144.044.175 936 529 2009-11-26 2010-03-16 078.131.068.135 1475 529 2010-01-17 2010-03-01 089.040.250.105 875 529 2009-11-12 2010-03-16 125.230.075.117 2496 529 2010-02-18 2010-03-01 080.219.254.227 1960 529 2010-02-23 2010-02-23 189.008.080.037 892 529 2009-12-23 2010-03-16 070.105.223.052 975 529 2010-01-15 2010-03-16 203.093.123.001 1569 529 2010-03-07 2010-03-12 078.063.182.042 1433 529 2010-02-09 2010-03-08 222.188.093.237 710 529 2010-02-21 2010-02-21 074.117.056.051 937 529 2009-10-20 2010-02-14 204.045.058.082 921 529 2010-01-15 2010-03-14 096.052.161.181 899 528 2010-02-17 2010-03-16 078.072.236.044 531 528 2010-02-18 2010-02-18 024.109.065.174 1047 528 2010-02-12 2010-03-16 059.127.219.102 925 528 2009-11-20 2010-03-16 078.084.232.116 1499 528 2010-03-08 2010-03-10 125.238.022.196 529 528 2010-03-02 2010-03-02 116.228.108.026 966 528 2009-07-22 2010-03-15 096.048.070.092 824 528 2010-01-03 2010-03-05 199.071.212.142 897 528 2009-12-27 2010-03-16 190.254.080.171 742 528 2010-02-10 2010-03-03 217.023.014.140 981 528 2010-02-07 2010-03-02 195.235.089.002 897 528 2009-06-03 2010-03-16 024.100.085.230 939 528 2010-01-12 2010-03-14 024.123.154.034 909 527 2009-12-10 2010-03-15 067.244.093.079 943 527 2010-02-16 2010-03-15 095.169.155.007 2063 527 2010-02-18 2010-02-18 095.087.205.197 603 527 2010-02-16 2010-02-16 070.071.247.073 956 527 2009-11-09 2010-02-15 078.061.150.174 185158 527 2010-02-17 2010-03-13 078.143.077.137 1503 527 2010-02-20 2010-02-20 078.238.224.018 1698 527 2010-01-30 2010-03-11 078.188.028.209 527 527 2010-02-22 2010-02-22 173.016.123.198 896 527 2010-02-10 2010-03-14 173.028.130.031 927 527 2010-01-24 2010-03-15 098.141.017.198 907 527 2009-06-13 2010-03-05 068.170.066.133 875 527 2010-02-09 2010-03-15 118.160.215.010 1647 527 2010-02-16 2010-02-17 112.201.147.209 1536 527 2010-03-09 2010-03-09 064.040.151.128 527 527 2010-03-11 2010-03-11 174.098.169.201 971 527 2010-01-19 2010-03-05 062.177.124.097 528 526 2010-02-22 2010-03-05 082.066.173.029 1535 526 2010-02-05 2010-03-15 216.055.181.010 938 526 2009-10-20 2010-03-16 085.064.166.234 607 526 2010-02-21 2010-02-27 174.047.000.032 971 526 2010-02-09 2010-03-12 070.078.054.186 945 526 2010-01-06 2010-03-16 078.129.227.068 639 526 2010-02-06 2010-03-12 148.244.143.002 1038 526 2010-01-09 2010-03-14 072.027.213.085 968 526 2010-01-23 2010-03-16 076.172.184.091 943 526 2010-01-13 2010-02-20 024.078.235.230 949 526 2010-02-09 2010-03-14 064.034.180.071 950 526 2010-01-20 2010-03-16 190.043.033.155 526 526 2010-03-04 2010-03-04 201.240.040.105 559 526 2010-02-25 2010-03-04 202.100.085.076 549 526 2010-03-09 2010-03-09 096.243.057.141 1393 525 2010-02-23 2010-02-23 067.242.156.233 913 525 2010-01-08 2010-03-15 059.095.040.029 603 525 2010-02-09 2010-03-02 067.151.051.076 832 525 2010-02-16 2010-02-17 089.178.179.119 542 525 2010-03-13 2010-03-15 174.090.000.036 1004 525 2009-12-02 2010-02-20 058.218.210.048 652 525 2010-02-22 2010-02-25 078.062.078.199 948 525 2009-09-05 2010-03-14 174.000.136.003 2502 525 2009-12-01 2010-02-16 078.008.220.033 679 525 2010-02-23 2010-02-23 066.000.094.206 1106 525 2010-02-07 2010-03-02 212.077.189.038 879 525 2009-12-07 2010-03-16 078.251.044.032 1745 525 2010-03-04 2010-03-06 116.014.160.025 524 524 2010-02-08 2010-02-16 066.080.057.020 1140 524 2010-01-17 2010-02-22 201.006.101.015 1589 524 2010-03-01 2010-03-01 194.000.252.205 917 524 2009-08-02 2010-03-09 074.081.071.028 948 524 2010-01-17 2010-03-15 212.097.034.206 967 524 2009-11-12 2010-03-15 203.121.018.007 4688 524 2010-01-25 2010-03-11 080.229.215.162 893 524 2009-02-26 2010-03-14 012.048.046.028 975 524 2009-08-14 2010-03-14 066.011.146.067 913 524 2010-01-22 2010-02-18 098.126.020.194 1854 524 2010-03-07 2010-03-07 200.106.127.192 524 524 2010-02-26 2010-02-26 069.015.034.023 915 524 2010-02-11 2010-03-14 202.162.217.202 1694 524 2010-02-26 2010-02-26 092.070.123.035 918 524 2009-08-27 2010-03-16 064.231.254.135 1229 524 2010-02-21 2010-02-22 118.169.195.103 1291 524 2010-02-22 2010-03-09 189.104.251.142 1053 524 2010-02-25 2010-02-26 064.139.224.071 892 524 2010-02-17 2010-02-24 213.000.002.040 551 524 2010-02-21 2010-03-02 074.073.158.093 940 524 2010-02-14 2010-03-14 066.011.146.071 1065 524 2010-01-23 2010-02-18 098.126.064.074 606 524 2010-03-04 2010-03-07 216.100.176.045 958 524 2009-11-27 2010-03-12 110.045.147.053 689 524 2010-02-16 2010-03-05 190.096.165.250 524 524 2010-02-23 2010-03-03 208.082.046.027 998 524 2009-11-23 2010-03-13 208.094.174.074 885 523 2009-08-09 2010-03-15 084.125.007.239 919 523 2010-02-08 2010-03-15 078.059.117.039 1650 523 2010-02-14 2010-02-21 072.095.131.014 917 523 2009-12-11 2010-03-11 070.070.230.121 888 523 2009-09-19 2010-03-16 093.104.208.027 940 523 2009-12-21 2010-02-15 188.049.043.009 1270 523 2010-03-03 2010-03-05 064.034.193.095 884 523 2009-06-05 2010-03-14 066.091.034.109 979 523 2009-12-16 2010-03-15 113.053.231.114 2808 523 2010-03-03 2010-03-15 075.126.034.216 1019 523 2010-02-21 2010-02-27 083.043.188.140 525 523 2010-02-27 2010-02-27 216.019.216.135 523 523 2009-10-20 2010-02-25 059.015.037.157 548 523 2010-02-20 2010-03-09 024.108.081.113 959 523 2010-01-20 2010-03-16 076.179.198.058 935 523 2009-08-29 2010-03-10 066.239.056.126 840 523 2009-10-27 2010-02-18 060.191.059.013 933 523 2009-08-21 2010-03-16 217.128.099.203 563 523 2010-03-04 2010-03-09 174.001.203.073 986 523 2009-11-05 2010-03-02 190.040.200.100 545 522 2010-02-23 2010-03-01 074.222.001.197 925 522 2009-11-23 2010-03-16 190.043.049.204 522 522 2010-02-25 2010-02-25 080.054.235.122 886 522 2009-06-21 2010-03-15 190.202.100.202 1522 522 2010-03-01 2010-03-01 213.137.071.100 896 522 2010-02-18 2010-03-15 078.162.183.222 522 522 2010-02-22 2010-02-22 219.066.134.176 894 522 2010-02-12 2010-03-15 202.067.153.010 596 522 2010-03-13 2010-03-13 074.222.001.025 877 522 2010-02-08 2010-03-05 174.037.200.024 899 522 2010-02-04 2010-03-16 082.225.035.022 939 522 2009-08-17 2010-03-16 125.131.116.024 1041 522 2010-01-18 2010-02-15 078.097.150.161 1370 522 2010-03-08 2010-03-16 206.123.216.009 885 522 2009-08-24 2010-03-16 200.020.113.014 940 522 2009-11-12 2010-03-15 200.076.192.002 879 522 2009-11-26 2010-03-15 078.188.014.044 523 522 2010-02-22 2010-02-22 066.060.127.058 530 521 2010-02-22 2010-02-22 219.085.186.103 950 521 2010-02-05 2010-03-15 174.037.238.118 855 521 2010-01-16 2010-03-06 067.023.040.199 530 521 2010-03-04 2010-03-05 076.076.099.002 760 521 2010-02-09 2010-03-13 174.036.253.105 899 521 2009-10-17 2010-03-15 061.160.215.035 22820 521 2010-01-13 2010-03-10 222.154.037.072 521 521 2010-02-27 2010-02-27 070.071.022.041 960 521 2009-12-11 2010-03-06 074.222.132.083 633 521 2010-01-14 2010-03-04 024.076.200.116 900 521 2010-02-04 2010-03-15 208.068.089.107 1020 521 2010-01-03 2010-02-25 078.192.000.133 1497 521 2010-02-23 2010-03-01 024.100.002.052 924 521 2010-02-06 2010-03-15 074.063.192.018 901 521 2009-11-22 2010-03-16 122.160.087.122 522 521 2010-02-18 2010-02-18 038.107.190.023 849 520 2010-01-11 2010-03-03 212.034.128.006 892 520 2009-10-16 2010-03-01 098.025.006.054 974 520 2010-01-26 2010-03-01 211.157.224.038 776 520 2010-02-19 2010-02-19 067.100.251.126 967 520 2009-12-11 2010-03-15 204.110.060.056 1925 520 2010-02-14 2010-02-19 211.241.226.079 2317 520 2010-02-09 2010-02-18 076.005.160.145 523 520 2010-02-19 2010-02-26 072.027.202.195 944 520 2010-01-20 2010-03-11 216.067.047.192 520 520 2010-02-27 2010-02-27 082.066.196.065 520 520 2010-01-28 2010-02-18 200.026.151.012 886 520 2009-09-06 2010-03-16 092.127.232.208 2077 520 2010-03-08 2010-03-09 041.196.176.035 520 520 2010-02-17 2010-02-17 201.234.226.226 869 519 2010-01-12 2010-03-13 078.057.146.017 1524 519 2009-11-26 2010-02-22 091.188.001.190 903 519 2009-12-07 2010-03-04 080.073.001.153 615 519 2009-12-23 2010-03-15 190.145.013.139 975 519 2009-10-17 2010-03-15 074.222.001.179 1009 519 2009-12-29 2010-03-15 174.037.010.038 923 519 2009-06-12 2010-03-15 200.121.140.072 542 519 2010-02-26 2010-02-26 089.222.174.008 2351 519 2009-11-25 2010-02-16 125.230.073.003 1654 519 2010-03-06 2010-03-07 070.060.120.049 911 519 2009-08-13 2010-03-09 065.025.199.067 952 519 2010-01-15 2010-03-05 124.082.110.224 519 519 2010-03-08 2010-03-08 071.099.076.066 889 518 2009-06-13 2010-03-16 201.240.245.131 518 518 2010-02-27 2010-03-01 213.008.173.119 540 518 2010-01-07 2010-02-16 202.129.029.213 1359 518 2010-03-12 2010-03-12 024.233.193.079 965 518 2009-11-26 2010-03-14 072.046.253.056 905 518 2010-02-03 2010-03-13 041.235.164.143 518 518 2010-02-27 2010-02-27 012.157.084.205 1116 518 2010-01-25 2010-02-19 070.182.010.017 894 518 2010-01-09 2010-03-15 217.010.127.105 742 518 2010-02-20 2010-02-24 065.079.254.042 1758 518 2010-02-17 2010-03-11 173.074.089.078 915 518 2009-11-17 2010-03-14 173.028.211.174 983 518 2009-12-23 2010-03-14 190.232.253.059 518 518 2010-02-27 2010-02-27 024.067.060.076 924 518 2010-01-30 2010-03-06 078.083.222.147 1436 517 2010-02-23 2010-02-28 024.064.177.009 1561 517 2010-02-19 2010-03-07 070.065.009.163 950 517 2009-12-02 2010-03-14 187.088.173.170 2046 517 2010-02-25 2010-02-25 066.011.149.070 871 517 2010-01-24 2010-02-17 216.240.250.157 942 517 2009-12-11 2010-03-16 078.088.058.230 1431 517 2010-03-04 2010-03-08 112.070.036.202 1514 517 2010-02-04 2010-02-23 208.115.108.012 939 517 2009-10-08 2010-03-15 208.071.011.078 930 517 2009-12-26 2010-02-22 072.051.224.118 909 517 2010-02-22 2010-03-16 063.148.018.211 2171 517 2010-02-24 2010-03-13 082.188.175.115 624 517 2010-02-25 2010-02-26 081.214.207.136 517 517 2010-02-22 2010-02-22 222.152.076.094 517 517 2010-02-28 2010-02-28 174.006.237.210 890 517 2009-10-23 2010-03-13 083.013.075.194 936 517 2009-12-13 2010-03-06 061.130.008.003 874 517 2008-07-16 2010-03-15 070.072.130.172 875 516 2010-02-16 2010-03-12 088.233.045.067 516 516 2010-02-22 2010-02-22 038.097.204.068 897 516 2009-07-10 2010-03-16 064.130.102.107 902 516 2010-02-11 2010-03-14 150.185.086.210 844 516 2010-03-01 2010-03-01 089.122.225.138 983 516 2010-02-02 2010-03-16 083.042.157.192 516 516 2010-03-03 2010-03-03 071.111.186.245 922 516 2010-01-20 2010-03-05 064.188.192.153 919 516 2010-01-18 2010-02-14 190.042.067.064 516 516 2010-02-25 2010-02-26 096.048.041.215 923 516 2009-10-11 2010-03-15 024.192.113.091 749 516 2010-01-22 2010-03-01 080.090.160.138 929 516 2010-01-31 2010-03-16 072.015.069.081 855 516 2010-01-03 2010-03-02 082.244.150.167 897 515 2009-06-14 2010-03-15 186.084.222.153 1032 515 2010-02-21 2010-02-21 074.081.090.164 907 515 2010-01-21 2010-03-15 078.063.102.166 1516 515 2010-02-04 2010-03-10 190.232.186.222 515 515 2010-02-25 2010-02-25 071.102.092.227 1016 515 2009-10-03 2010-03-16 093.186.127.033 639 515 2010-02-27 2010-03-06 078.107.023.201 996 515 2009-11-12 2010-03-02 072.025.083.050 957 515 2010-02-03 2010-03-03 062.143.106.177 539 515 2010-01-06 2010-03-06 189.026.113.034 37250 515 2010-02-10 2010-02-18 095.168.171.074 1024 515 2010-03-09 2010-03-09 208.080.193.043 2869 515 2009-10-03 2010-03-15 071.013.073.062 899 515 2009-12-17 2010-03-16 024.064.121.212 1491 515 2010-03-08 2010-03-08 200.205.095.010 1210 515 2010-01-20 2010-03-08 119.073.047.080 514 514 2010-02-21 2010-02-21 085.017.213.078 891 514 2009-07-02 2010-03-09 061.186.095.172 1028 514 2010-02-15 2010-02-15 041.234.137.007 514 514 2010-03-01 2010-03-04 075.077.178.195 872 514 2009-09-07 2010-03-15 190.042.197.042 537 514 2010-03-01 2010-03-01 219.161.002.117 514 514 2010-02-26 2010-02-27 118.236.065.188 930 514 2010-02-10 2010-03-13 070.064.148.221 863 514 2010-01-14 2010-02-22 173.022.170.125 4745 514 2010-02-26 2010-03-09 067.228.041.053 943 514 2010-01-18 2010-03-15 067.100.251.124 898 514 2009-12-02 2010-03-16 222.155.103.124 525 514 2010-02-28 2010-02-28 201.024.073.074 2553 514 2010-02-23 2010-02-23 187.012.219.243 1803 513 2010-03-10 2010-03-10 085.099.126.127 513 513 2010-02-22 2010-02-22 213.160.130.010 899 513 2009-12-03 2010-02-17 219.089.032.170 513 513 2010-03-11 2010-03-11 078.233.094.058 908 513 2009-10-15 2010-03-16 202.043.190.073 979 513 2009-11-13 2010-03-14 067.165.160.048 1027 513 2010-03-11 2010-03-11 078.233.019.219 1387 513 2010-02-14 2010-03-06 087.240.067.059 1017 513 2009-08-28 2010-03-10 067.101.216.026 840 513 2010-01-13 2010-03-15 186.081.154.106 1023 513 2010-03-04 2010-03-05 080.094.084.108 863 513 2009-04-24 2010-03-14 202.152.197.098 2884 513 2010-01-23 2010-02-24 092.096.236.097 513 513 2010-02-27 2010-02-27 190.232.246.230 513 513 2010-02-19 2010-02-19 140.113.073.061 907 513 2010-01-10 2010-02-23 211.232.193.018 767 512 2010-03-09 2010-03-09 173.021.094.162 917 512 2010-01-27 2010-03-16 210.103.215.014 922 512 2010-01-06 2010-03-15 078.082.194.241 1442 512 2010-03-04 2010-03-06 200.075.036.234 959 512 2010-02-18 2010-03-16 200.121.185.069 631 512 2010-02-22 2010-02-22 200.062.141.058 704 512 2010-02-26 2010-02-26 064.077.237.051 874 512 2009-07-03 2010-02-26 200.088.114.142 924 512 2009-08-13 2010-02-18 201.197.111.041 512 512 2010-02-17 2010-02-17 190.232.066.195 515 512 2010-03-01 2010-03-01 186.081.100.022 1001 512 2010-03-12 2010-03-13 068.064.120.223 888 512 2010-01-26 2010-02-23 098.150.108.247 886 512 2010-02-14 2010-03-16 086.124.018.030 905 512 2009-08-16 2010-03-14 114.080.077.128 917 512 2010-01-24 2010-03-15 118.169.193.042 1278 512 2010-02-23 2010-02-25 024.108.079.148 866 512 2010-01-09 2010-03-08 195.074.067.140 1307 512 2010-02-24 2010-03-14 151.100.044.079 887 512 2010-02-11 2010-03-15 219.142.119.001 1013 512 2010-03-15 2010-03-15 082.099.220.176 511 511 2010-02-25 2010-02-26 070.078.026.002 893 511 2010-02-15 2010-03-13 099.041.139.026 889 511 2009-12-22 2010-03-15 093.104.208.035 1037 511 2010-01-18 2010-03-14 116.071.078.195 511 511 2010-02-28 2010-02-28 201.240.248.204 511 511 2010-02-21 2010-02-21 064.056.064.003 870 511 2010-02-08 2010-03-03 093.163.239.137 1491 511 2010-02-19 2010-02-19 093.084.024.160 756 511 2010-02-22 2010-02-22 208.072.041.153 3573 511 2009-11-18 2010-03-15 201.230.173.001 511 511 2010-02-26 2010-02-26 098.101.089.001 839 511 2010-02-03 2010-02-26 173.024.240.027 28649 511 2010-01-12 2010-03-16 024.100.093.150 876 511 2009-07-15 2010-03-15 195.022.104.002 1279 511 2009-01-20 2010-03-01 066.090.101.165 930 511 2009-12-07 2010-03-11 085.022.065.018 1109 511 2010-02-17 2010-03-04 083.039.112.205 511 511 2010-02-27 2010-02-27 078.174.162.070 514 510 2010-02-22 2010-02-22 208.072.123.059 6107 510 2010-03-13 2010-03-16 118.092.138.056 512 510 2010-02-26 2010-02-26 084.232.143.075 940 510 2010-01-14 2010-03-16 088.175.216.030 763 510 2009-07-29 2010-03-15 078.226.245.218 1402 510 2010-03-08 2010-03-10 078.191.097.068 510 510 2010-02-22 2010-02-22 088.177.133.204 961 510 2009-07-25 2010-03-16 084.075.158.155 1055 510 2010-02-27 2010-03-11 078.061.124.174 761 510 2010-02-23 2010-02-23 078.224.048.015 1411 510 2010-03-07 2010-03-08 024.089.090.019 974 510 2010-02-18 2010-03-13 078.062.032.033 1213 510 2010-03-01 2010-03-10 069.003.046.087 851 510 2010-01-19 2010-03-16 087.218.193.138 510 510 2010-02-22 2010-02-22 091.205.172.217 970 510 2010-01-21 2010-02-25 208.100.150.123 921 510 2010-02-10 2010-03-07 218.248.065.246 3122 510 2010-01-03 2010-03-16 212.095.040.118 882 510 2010-01-08 2010-03-08 082.067.114.175 903 510 2009-12-06 2010-03-16 116.071.190.151 510 510 2010-02-21 2010-02-21 117.053.069.127 520 510 2010-02-27 2010-02-27 190.120.238.007 1506 510 2010-01-27 2010-03-11 116.082.138.196 923 510 2010-02-12 2010-03-11 190.220.227.197 697 510 2010-03-15 2010-03-15 186.009.035.232 510 510 2010-02-14 2010-02-14 190.204.105.227 1229 510 2010-03-07 2010-03-07 174.044.229.001 844 510 2010-02-08 2010-03-11 069.193.138.186 857 510 2010-02-07 2010-03-16 200.121.017.093 510 510 2010-02-16 2010-02-16 078.092.132.156 1347 509 2010-02-23 2010-02-28 201.230.201.030 532 509 2010-02-18 2010-02-18 125.237.094.064 509 509 2010-03-03 2010-03-03 087.010.108.042 509 509 2010-02-26 2010-02-26 194.126.175.002 940 509 2010-01-05 2010-03-16 072.010.029.085 911 509 2010-01-26 2010-03-03 125.239.071.018 524 509 2010-02-26 2010-02-26 140.209.133.162 896 509 2009-11-19 2010-03-12 190.233.210.109 509 509 2010-02-20 2010-02-20 125.237.101.167 509 509 2010-02-27 2010-02-27 203.053.197.066 944 509 2010-01-14 2010-02-24 088.238.150.097 509 509 2010-02-23 2010-02-23 066.011.146.094 1003 509 2010-01-24 2010-02-18 088.235.195.081 509 509 2010-02-26 2010-02-26 212.163.215.201 885 509 2010-02-19 2010-03-16 116.071.182.029 509 509 2010-02-25 2010-02-25 078.029.045.176 969 509 2010-02-16 2010-03-10 095.093.177.142 917 509 2010-02-13 2010-03-13 217.165.130.078 509 509 2010-02-26 2010-02-26 095.143.004.018 1054 509 2009-12-02 2010-02-14 174.000.069.183 922 509 2009-09-01 2010-03-15 201.252.246.023 800 509 2010-02-10 2010-03-08 078.237.216.162 1433 509 2010-02-20 2010-03-01 216.249.084.088 903 509 2009-11-22 2010-03-14 190.235.083.230 509 509 2010-02-25 2010-02-25 220.130.037.075 511 509 2010-02-11 2010-02-16 079.186.208.169 509 509 2010-02-18 2010-02-18 209.052.060.042 858 508 2009-11-05 2010-03-15 085.009.074.108 620 508 2010-02-05 2010-03-01 190.040.114.232 508 508 2010-02-18 2010-02-18 222.153.005.211 508 508 2010-02-26 2010-02-26 201.240.214.011 508 508 2010-02-16 2010-02-16 095.225.175.054 829 508 2009-09-30 2010-03-02 190.006.136.086 508 508 2010-02-22 2010-02-22 084.036.142.238 508 508 2010-02-22 2010-02-22 041.225.189.078 508 508 2010-02-16 2010-02-16 058.007.174.008 508 508 2010-02-26 2010-02-27 190.040.140.052 508 508 2010-02-18 2010-02-18 190.042.174.180 508 508 2010-02-22 2010-02-22 190.157.205.027 517 508 2010-03-15 2010-03-15 190.233.033.010 508 508 2010-02-18 2010-02-18 218.187.253.091 885 508 2010-02-06 2010-03-09 222.155.043.170 508 508 2010-02-26 2010-02-26 060.170.062.008 904 508 2010-03-13 2010-03-13 070.095.067.111 1086 508 2009-12-21 2010-03-16 190.067.012.158 1071 508 2010-02-03 2010-03-13 208.072.043.238 2560 508 2009-11-27 2010-03-16 196.211.022.244 644 508 2010-02-25 2010-02-25 074.080.041.239 917 508 2009-12-24 2010-03-02 201.230.059.026 508 508 2010-02-22 2010-02-22 078.191.121.098 508 508 2010-02-22 2010-02-22 173.045.091.078 893 508 2010-02-17 2010-03-16 087.009.062.078 520 508 2010-02-27 2010-03-06 078.161.219.075 508 508 2010-02-22 2010-02-22 189.075.026.171 508 508 2010-02-24 2010-02-24 092.099.146.039 508 508 2010-02-26 2010-02-26 190.232.145.132 508 508 2010-02-22 2010-02-22 190.043.188.203 508 508 2010-02-18 2010-02-18 200.121.230.144 508 508 2010-02-16 2010-02-16 190.233.119.084 508 508 2010-02-18 2010-02-18 078.183.042.253 508 508 2010-02-23 2010-02-23 190.043.168.161 508 508 2010-02-22 2010-02-22 088.226.108.094 508 508 2010-02-22 2010-02-22 065.087.042.172 899 508 2010-02-02 2010-03-02 113.254.027.014 2264 508 2009-12-23 2010-03-10 078.025.020.030 908 508 2008-12-14 2010-03-01 078.237.149.145 1402 507 2010-03-15 2010-03-15 062.048.181.099 863 507 2010-01-08 2010-03-15 124.044.092.220 914 507 2009-12-01 2010-02-17 076.171.146.204 902 507 2009-12-08 2010-03-15 200.075.036.126 912 507 2010-02-09 2010-03-10 203.088.117.153 980 507 2009-12-01 2010-03-02 070.107.250.089 877 507 2010-01-08 2010-03-15 216.097.229.035 996 507 2009-10-21 2010-03-14 091.065.199.019 911 507 2010-01-08 2010-03-13 208.070.160.014 1033 507 2009-11-06 2010-03-15 119.014.160.059 1843 507 2010-03-08 2010-03-08 190.209.014.197 1010 507 2010-02-21 2010-02-21 024.038.167.074 842 506 2010-02-12 2010-03-14 208.072.222.227 2372 506 2009-10-13 2010-03-08 095.031.012.004 893 506 2009-09-21 2010-03-03 082.077.220.172 868 506 2009-09-26 2010-03-06 190.232.057.159 508 506 2010-02-27 2010-02-27 024.123.058.098 905 506 2009-04-30 2010-03-12 078.231.101.081 1433 506 2010-02-05 2010-02-21 087.204.005.026 509 506 2010-02-14 2010-02-14 098.101.225.038 914 506 2010-02-18 2010-03-16 066.011.146.075 1004 506 2010-01-23 2010-02-17 093.188.112.051 956 506 2009-12-21 2010-03-06 070.046.050.122 855 506 2009-07-19 2010-03-15 095.084.174.128 896 506 2010-01-15 2010-03-05 211.072.229.156 969 506 2010-01-28 2010-03-04 065.082.213.003 800 506 2009-11-20 2010-03-16 099.051.022.082 841 506 2009-11-09 2010-02-18 078.097.148.010 1362 506 2010-02-25 2010-03-08 078.230.241.037 1379 505 2010-02-28 2010-03-05 095.090.105.001 1106 505 2010-01-08 2010-03-14 064.144.035.070 878 505 2008-11-18 2010-03-16 071.216.205.181 980 505 2009-12-08 2010-03-15 201.230.173.109 505 505 2010-03-09 2010-03-09 186.083.017.091 1081 505 2010-02-02 2010-02-21 077.068.040.023 989 505 2010-02-19 2010-03-14 078.083.121.065 842 505 2009-12-23 2010-02-24 078.108.197.058 854 505 2010-01-11 2010-03-11 190.232.189.074 505 505 2010-02-26 2010-02-26 188.085.216.224 897 505 2010-03-02 2010-03-03 081.033.126.023 917 505 2010-02-28 2010-03-05 201.230.202.116 505 505 2010-02-21 2010-02-21 116.236.237.039 883 505 2009-12-24 2010-03-05 074.118.192.251 893 505 2010-02-18 2010-03-16 200.108.246.122 505 505 2010-02-25 2010-02-25 218.228.190.120 909 505 2010-01-23 2010-02-22 078.063.095.110 1450 505 2010-02-28 2010-03-06 216.131.096.062 854 504 2010-02-26 2010-03-13 222.155.099.124 504 504 2010-02-26 2010-02-26 024.077.162.195 806 504 2010-02-08 2010-03-03 213.159.117.254 857 504 2009-09-15 2010-03-16 075.101.232.075 1529 504 2010-02-15 2010-02-18 201.218.233.002 863 504 2009-12-03 2010-03-01 088.255.162.162 504 504 2010-03-15 2010-03-15 121.254.224.053 867 504 2010-02-08 2010-03-03 110.044.031.020 869 504 2009-11-26 2010-02-28 064.181.032.082 759 504 2009-11-16 2010-03-10 091.102.166.110 2004 504 2010-02-21 2010-02-21 195.235.213.054 1015 504 2009-12-14 2010-03-14 221.193.242.222 849 504 2010-02-26 2010-02-26 174.098.219.042 1027 503 2009-12-11 2010-02-15 209.059.179.117 517 503 2010-03-06 2010-03-06 064.250.228.164 857 503 2010-02-11 2010-03-16 060.038.234.254 869 503 2010-01-22 2010-02-16 188.027.071.208 503 503 2010-03-02 2010-03-02 203.076.092.155 883 503 2009-04-21 2010-03-15 213.178.237.225 949 503 2010-02-24 2010-02-24 078.031.058.070 5216 503 2010-03-08 2010-03-14 066.091.009.112 844 503 2010-01-15 2010-03-09 076.168.042.190 871 503 2010-01-13 2010-02-24 098.140.204.122 834 503 2010-02-15 2010-03-16 174.004.004.090 971 503 2010-02-19 2010-03-14 064.188.029.072 606 503 2010-03-09 2010-03-15 222.087.138.112 1421 503 2010-02-25 2010-03-13 139.055.073.024 732 503 2010-02-24 2010-02-24 118.098.163.213 908 503 2010-02-08 2010-03-11 173.209.161.137 2004 503 2010-03-02 2010-03-02 024.161.129.071 909 503 2010-01-22 2010-03-16 078.251.212.214 1359 503 2010-03-04 2010-03-06 067.212.069.227 527 503 2010-02-23 2010-02-23 094.100.213.122 889 503 2009-11-11 2010-03-14 121.002.033.254 923 503 2010-01-23 2010-02-17 200.117.150.171 506 502 2010-02-27 2010-03-02 064.069.251.021 980 502 2010-02-08 2010-03-03 064.030.048.154 1099 502 2010-02-14 2010-02-16 098.141.033.230 928 502 2009-12-29 2010-02-22 190.144.114.163 949 502 2009-08-29 2010-02-24 115.064.083.123 875 502 2009-10-02 2010-02-22 069.039.235.013 561 502 2010-02-28 2010-03-01 076.002.179.209 502 502 2010-03-04 2010-03-04 074.118.193.137 871 502 2010-01-31 2010-03-16 067.124.034.019 935 502 2009-11-19 2010-03-13 098.126.028.076 652 502 2010-03-11 2010-03-13 072.035.183.053 871 502 2009-10-14 2010-03-13 209.252.227.168 971 502 2009-10-14 2010-03-15 071.054.066.218 529 502 2010-03-01 2010-03-12 189.026.086.127 502 502 2010-02-28 2010-02-28 080.244.142.196 941 502 2009-11-26 2010-03-14 099.054.071.085 502 502 2010-02-28 2010-02-28 140.209.133.239 905 502 2009-10-17 2010-03-12 024.105.211.037 96164 502 2010-02-20 2010-03-15 078.162.042.209 502 502 2010-02-23 2010-02-23 082.117.136.227 1075 502 2010-02-09 2010-02-17 024.064.177.045 1431 501 2010-02-15 2010-02-15 192.228.189.194 508 501 2010-02-22 2010-02-22 125.077.254.051 907 501 2010-03-09 2010-03-09 200.181.095.138 503 501 2010-02-16 2010-02-19 204.124.182.086 1041 501 2009-12-19 2010-03-15 208.087.198.122 936 501 2010-01-13 2010-03-14 096.051.017.037 910 501 2010-02-14 2010-03-15 201.086.232.100 906 501 2010-02-10 2010-03-06 118.169.193.105 1327 501 2010-03-15 2010-03-15 024.105.218.194 922 501 2009-07-05 2010-03-01 096.011.188.211 836 501 2009-11-11 2010-03-16 218.028.020.134 801 501 2010-02-28 2010-03-01 218.226.199.157 864 501 2010-01-30 2010-03-03 071.000.227.017 859 501 2009-11-17 2010-03-16 213.134.164.238 2611 501 2009-10-29 2010-03-10 121.218.129.210 741 501 2010-02-22 2010-02-22 069.169.172.174 2094 501 2010-02-17 2010-02-24 012.187.247.123 913 500 2010-01-23 2010-03-15 012.048.046.070 866 500 2009-08-17 2010-03-16 118.096.052.023 524 500 2010-03-09 2010-03-09 190.159.221.129 1000 500 2010-02-21 2010-02-21 193.040.241.065 931 500 2009-12-18 2010-03-16 190.067.219.013 500 500 2010-02-26 2010-02-26 174.005.016.029 1000 500 2009-12-29 2010-03-01 187.037.201.081 7774 500 2010-02-12 2010-02-18 199.071.213.237 884 500 2009-12-10 2010-02-21 117.006.072.010 843 500 2009-12-07 2010-03-15 201.230.244.055 500 500 2010-02-19 2010-02-19 062.201.080.148 828 500 2009-12-11 2010-03-15 078.238.158.148 1435 500 2010-03-04 2010-03-12 093.017.033.023 851 500 2010-01-25 2010-03-16 076.179.149.228 938 500 2010-01-14 2010-02-15 220.225.247.166 859 500 2009-12-22 2010-03-12 058.147.175.005 557 500 2010-02-12 2010-02-28 095.141.152.066 1476 500 2010-02-01 2010-03-04 173.087.083.227 837 500 2010-02-07 2010-03-16 208.072.231.225 2608 500 2010-01-21 2010-02-26 190.253.147.010 500 500 2010-02-27 2010-02-27 210.236.178.204 1355 500 2010-01-02 2010-03-15 066.096.021.011 863 500 2010-01-06 2010-03-15 218.083.175.155 575 500 2010-03-16 2010-03-16 111.235.157.154 688 500 2010-01-08 2010-03-03 216.249.071.024 856 500 2010-02-01 2010-03-16 114.080.174.240 11453 499 2010-03-09 2010-03-10 112.078.119.092 731 499 2010-02-17 2010-02-17 208.087.241.139 999 499 2009-07-13 2010-03-16 190.232.234.092 499 499 2010-02-27 2010-02-27 059.125.142.223 1345 499 2010-02-25 2010-03-05 200.075.043.218 835 499 2009-10-27 2010-03-16 118.068.002.167 499 499 2010-02-21 2010-02-21 173.060.020.123 829 499 2009-12-12 2010-02-21 151.060.130.165 499 499 2010-02-28 2010-02-28 218.029.054.198 508 499 2010-02-21 2010-02-21 068.148.068.176 869 499 2010-01-28 2010-03-16 070.021.112.251 967 499 2010-01-13 2010-03-15 170.091.253.017 876 499 2010-01-04 2010-03-15 200.088.113.230 848 499 2010-02-06 2010-03-16 190.232.126.050 499 499 2010-02-26 2010-02-26 078.129.250.005 534 499 2010-01-03 2010-03-04 094.083.248.115 927 499 2009-12-16 2010-03-16 200.121.254.238 499 499 2010-02-24 2010-03-08 084.000.036.093 845 498 2009-10-19 2010-03-02 071.000.227.019 848 498 2009-11-20 2010-03-13 072.051.179.196 907 498 2010-02-08 2010-03-12 093.152.125.093 1244 498 2010-02-13 2010-03-16 190.232.154.173 498 498 2010-02-24 2010-02-24 096.054.129.089 842 498 2010-01-28 2010-02-23 216.240.250.247 716 498 2010-02-22 2010-03-02 082.066.249.252 868 498 2010-02-04 2010-03-11 041.196.180.078 498 498 2010-02-26 2010-02-28 203.210.208.164 1656 498 2010-02-24 2010-03-13 068.195.202.149 772 498 2010-03-07 2010-03-11 218.029.004.243 1090 498 2010-02-24 2010-02-24 088.058.176.239 500 498 2010-02-24 2010-03-03 077.239.228.190 913 498 2009-11-29 2010-03-16 062.006.181.022 891 498 2009-12-26 2010-03-14 085.233.032.018 874 498 2009-09-15 2010-03-07 070.066.076.037 832 498 2010-01-16 2010-03-14 080.024.147.082 779 498 2010-02-28 2010-03-15 088.086.180.137 953 498 2009-11-11 2010-03-11 093.149.230.178 498 498 2010-02-26 2010-02-26 065.087.172.095 912 498 2010-01-10 2010-03-16 189.002.203.018 1348 497 2009-11-18 2010-03-16 121.178.207.124 1424 497 2009-10-04 2010-03-15 174.000.011.169 888 497 2009-09-07 2010-02-18 173.172.040.094 881 497 2009-12-07 2010-03-15 038.099.171.055 849 497 2010-02-18 2010-03-15 198.108.082.099 860 497 2010-02-16 2010-03-16 076.077.225.072 866 497 2010-02-09 2010-03-15 081.193.123.079 14921 497 2010-03-07 2010-03-16 118.169.195.163 1196 497 2010-02-25 2010-02-28 208.069.192.070 881 497 2009-08-06 2010-03-07 088.162.214.030 857 497 2010-01-31 2010-03-15 074.117.060.021 952 497 2010-01-29 2010-02-22 201.230.090.090 497 497 2010-02-26 2010-02-26 204.210.232.049 857 497 2010-02-17 2010-03-16 190.208.094.152 576 497 2010-02-28 2010-02-28 024.035.000.069 894 497 2010-01-29 2010-02-21 201.230.040.154 497 497 2010-02-19 2010-02-19 069.054.104.088 851 497 2009-04-26 2010-03-14 211.144.110.138 577 497 2010-02-27 2010-02-27 078.092.188.038 992 497 2010-02-23 2010-02-23 195.110.135.226 888 497 2009-12-08 2010-03-16 078.092.129.220 1334 497 2010-02-28 2010-03-08 112.121.167.066 855 496 2010-02-11 2010-03-12 012.150.224.086 829 496 2010-02-01 2010-03-05 024.084.161.247 927 496 2009-09-12 2010-03-13 078.131.094.250 1384 496 2010-02-21 2010-03-14 038.100.019.106 819 496 2009-11-06 2010-03-14 222.186.025.125 86739 496 2010-02-07 2010-03-14 173.027.199.004 824 496 2010-01-23 2010-03-16 189.046.168.220 496 496 2010-02-27 2010-02-28 076.075.036.127 873 496 2009-10-29 2010-02-16 081.136.132.207 982 496 2010-01-13 2010-03-16 121.246.067.024 916 496 2009-06-23 2010-03-16 201.230.183.026 496 496 2010-02-22 2010-02-22 085.222.053.046 950 496 2009-06-26 2010-02-27 024.103.191.019 962 495 2010-02-03 2010-03-15 221.001.209.070 3308 495 2009-11-13 2010-02-26 209.017.190.134 879 495 2009-11-17 2010-03-14 194.090.225.117 882 495 2009-10-19 2010-03-16 125.230.073.074 2228 495 2010-02-18 2010-02-18 201.217.004.150 845 495 2008-10-28 2010-03-16 110.164.197.190 855 495 2010-01-27 2010-03-14 124.207.107.192 666 495 2010-03-06 2010-03-13 115.135.245.086 502 495 2010-03-01 2010-03-08 080.073.004.105 835 495 2009-12-20 2010-02-15 096.051.014.120 823 495 2010-02-05 2010-03-13 129.133.088.050 869 495 2009-09-02 2010-03-16 069.077.140.202 823 495 2009-08-26 2010-03-15 200.072.015.174 974 495 2009-05-31 2010-03-11 123.185.009.204 863 495 2009-11-13 2010-03-16 190.016.014.156 629 495 2010-02-19 2010-02-19 095.000.010.218 877 495 2009-12-31 2010-03-10 074.062.247.046 891 495 2010-01-15 2010-02-17 059.125.178.118 955 495 2009-11-25 2010-03-16 201.162.000.066 998 495 2010-02-24 2010-02-24 190.004.019.115 876 495 2009-12-26 2010-02-17 096.235.112.081 822 495 2010-01-19 2010-02-14 204.111.025.208 847 495 2010-01-30 2010-03-06 220.253.082.129 495 495 2010-02-21 2010-02-22 218.093.193.108 647 495 2010-02-11 2010-02-16 210.236.167.252 836 494 2010-03-10 2010-03-10 078.032.023.018 494 494 2010-03-06 2010-03-06 060.049.048.111 500 494 2010-03-13 2010-03-13 118.160.240.154 551 494 2010-02-23 2010-02-24 066.103.177.077 823 494 2009-01-17 2010-03-16 059.120.071.146 6452 494 2009-12-28 2010-03-11 173.031.111.005 826 494 2010-02-21 2010-03-16 089.165.195.097 790 494 2009-08-25 2010-03-13 118.101.135.068 494 494 2010-02-18 2010-02-18 063.246.183.034 850 494 2010-01-20 2010-03-14 071.119.015.176 830 494 2009-10-27 2010-03-15 123.225.015.012 1007 494 2010-02-08 2010-03-05 071.042.171.022 865 494 2010-01-19 2010-03-02 200.020.113.013 842 494 2009-07-15 2010-03-13 058.147.170.169 835 494 2010-02-21 2010-03-15 218.206.243.243 998 494 2010-02-21 2010-03-09 078.227.057.192 1324 494 2010-02-20 2010-02-23 076.101.204.109 816 494 2010-02-15 2010-03-16 212.175.239.138 599 494 2010-02-24 2010-02-24 212.248.015.196 1408 494 2009-12-10 2010-03-16 095.191.052.190 970 493 2010-02-24 2010-02-24 077.020.091.222 875 493 2009-12-08 2010-03-14 207.091.195.107 893 493 2009-12-05 2010-03-11 190.179.065.098 611 493 2010-03-08 2010-03-11 078.061.054.130 1386 493 2010-02-08 2010-03-08 077.238.208.008 896 493 2009-07-22 2010-03-02 024.207.126.246 842 493 2010-02-08 2010-03-11 091.154.054.186 1341 493 2010-03-05 2010-03-05 038.098.130.067 862 493 2009-09-17 2010-03-16 208.043.040.102 871 493 2009-12-04 2010-03-13 188.192.100.155 895 493 2010-01-29 2010-02-25 081.149.041.220 494 493 2010-02-27 2010-03-02 088.115.066.009 678 493 2009-11-05 2010-03-07 012.239.147.123 950 493 2010-01-23 2010-02-28 080.014.186.105 813 493 2010-03-10 2010-03-11 205.179.212.061 893 493 2009-11-12 2010-02-27 190.043.245.234 493 493 2010-02-22 2010-02-22 070.063.142.058 833 493 2009-09-05 2010-02-18 190.233.122.247 492 492 2010-02-16 2010-02-16 078.097.146.081 1342 492 2010-02-23 2010-03-08 062.112.195.251 818 492 2010-02-17 2010-03-16 216.051.146.040 879 492 2010-01-08 2010-03-16 078.107.186.040 870 492 2009-06-24 2010-02-21 072.054.174.074 614 492 2009-12-21 2010-03-16 208.017.078.021 816 492 2008-12-24 2010-03-13 195.243.100.146 763 492 2010-01-09 2010-03-12 085.091.132.053 1141 492 2009-12-24 2010-03-07 173.025.028.048 833 492 2010-02-17 2010-03-15 077.068.040.111 867 492 2010-02-19 2010-03-13 201.240.234.007 492 492 2010-02-19 2010-02-19 200.093.156.027 853 492 2010-01-18 2010-02-25 209.017.191.046 929 492 2009-11-25 2010-03-16 216.018.021.185 808 492 2009-12-21 2010-02-21 074.195.156.040 988 492 2010-02-27 2010-03-12 206.209.004.098 857 491 2009-10-10 2010-03-01 024.097.130.029 891 491 2010-02-03 2010-03-16 190.043.179.138 491 491 2010-02-22 2010-02-22 190.234.081.124 491 491 2010-02-22 2010-02-22 069.057.204.190 858 491 2009-09-08 2010-03-16 099.035.116.017 825 491 2009-08-13 2010-03-16 216.018.222.210 560 491 2010-02-14 2010-02-15 066.090.087.082 595 491 2010-03-08 2010-03-10 088.173.218.108 870 491 2009-12-02 2010-03-16 190.232.228.134 492 491 2010-02-22 2010-02-22 038.096.200.045 828 491 2009-05-06 2010-03-16 201.230.035.004 491 491 2010-02-22 2010-02-24 189.026.045.039 491 491 2010-02-16 2010-02-17 194.120.139.114 884 491 2010-02-05 2010-03-14 207.210.002.161 1011 491 2009-12-15 2010-03-14 211.198.167.225 1408 491 2010-02-18 2010-03-16 041.130.042.171 491 491 2010-02-22 2010-02-22 173.017.040.226 889 490 2009-12-22 2010-03-14 115.089.247.100 15608 490 2010-01-04 2010-02-25 189.025.024.137 490 490 2010-02-24 2010-02-25 192.192.011.075 842 490 2009-09-26 2010-02-16 200.106.092.234 490 490 2010-02-18 2010-02-18 041.235.138.084 490 490 2010-02-26 2010-02-26 012.232.065.243 858 490 2010-02-18 2010-03-14 085.138.105.244 862 490 2009-11-30 2010-02-25 078.063.182.017 1284 490 2010-02-03 2010-03-01 093.097.065.155 983 490 2010-02-10 2010-03-15 077.047.102.252 833 490 2009-12-18 2010-02-22 190.040.113.052 490 490 2010-02-22 2010-02-22 208.072.123.063 2051 490 2010-03-10 2010-03-10 218.209.080.003 15358 490 2010-03-06 2010-03-11 071.002.115.040 881 490 2010-01-15 2010-03-14 096.011.188.208 891 490 2009-11-09 2010-02-17 190.232.007.057 490 490 2010-02-21 2010-02-21 082.138.061.091 948 490 2009-10-23 2010-02-15 087.028.121.030 560 490 2010-01-21 2010-03-11 076.093.202.245 919 490 2010-01-22 2010-02-20 096.011.188.210 916 490 2009-11-08 2010-03-06 071.079.189.079 1100 490 2010-01-23 2010-02-24 196.040.010.246 1622 490 2009-11-18 2010-03-16 096.227.188.155 986 489 2010-02-17 2010-03-13 024.085.053.082 865 489 2009-08-28 2010-03-14 075.097.000.232 894 489 2010-02-02 2010-03-14 024.076.089.072 899 489 2009-11-25 2010-02-22 190.040.211.005 489 489 2010-02-27 2010-02-27 174.032.139.006 2921 489 2010-02-26 2010-02-26 195.110.124.133 565 489 2010-02-28 2010-03-01 070.094.210.208 906 489 2010-01-27 2010-02-26 190.068.232.114 823 489 2009-09-08 2010-03-12 012.044.156.068 889 489 2010-01-31 2010-03-15 082.229.214.028 829 489 2009-11-16 2010-03-14 078.028.119.208 1403 489 2010-03-05 2010-03-05 201.155.194.251 1297 489 2009-09-16 2010-03-10 062.122.214.055 539 488 2010-03-09 2010-03-09 092.048.107.104 906 488 2009-09-19 2010-03-16 189.058.015.219 507 488 2010-02-19 2010-02-19 071.117.126.089 906 488 2009-12-13 2010-03-14 216.012.076.100 804 488 2010-02-14 2010-03-14 124.158.002.006 895 488 2010-02-01 2010-03-15 200.026.162.066 823 488 2009-11-13 2010-03-11 085.101.134.052 488 488 2010-03-07 2010-03-07 082.235.199.049 704 488 2009-10-23 2010-03-15 091.153.246.172 1358 488 2010-02-16 2010-02-16 068.190.017.108 837 488 2009-09-06 2010-03-14 190.233.085.130 488 488 2010-02-17 2010-02-18 114.033.187.214 2132 488 2009-11-23 2010-02-25 098.122.048.093 847 488 2010-02-03 2010-03-16 213.197.169.210 36817 488 2010-02-11 2010-02-18 041.235.035.195 488 488 2010-02-26 2010-02-26 060.190.190.006 827 488 2009-12-14 2010-03-15 085.024.188.100 1933 488 2009-09-01 2010-03-09 041.234.095.068 487 487 2010-02-26 2010-02-26 070.183.217.047 844 487 2010-01-08 2010-03-05 066.097.109.070 1778 487 2009-12-19 2010-03-15 209.017.170.011 844 487 2010-02-21 2010-03-16 114.031.003.052 645 487 2010-03-13 2010-03-13 190.040.060.100 487 487 2010-02-22 2010-02-22 216.083.136.041 821 487 2010-01-19 2010-02-21 094.177.037.187 927 487 2010-02-04 2010-03-15 076.011.138.227 854 487 2009-10-03 2010-03-12 078.233.129.134 1300 487 2010-01-25 2010-02-19 202.144.125.086 24244 487 2010-03-01 2010-03-08 219.103.158.195 829 487 2009-12-15 2010-03-16 212.089.013.054 853 487 2010-01-07 2010-03-15 024.103.051.018 818 487 2010-02-05 2010-03-15 072.051.229.093 809 487 2010-01-12 2010-03-05 207.061.067.060 868 487 2009-07-11 2010-03-13 060.248.078.242 841 486 2010-02-09 2010-03-15 075.119.024.216 900 486 2010-01-26 2010-03-15 097.078.016.083 888 486 2010-01-26 2010-03-02 095.168.176.177 574 486 2010-02-03 2010-02-14 083.110.192.057 1021 486 2010-01-04 2010-02-15 097.077.043.050 883 486 2010-02-03 2010-03-15 174.001.111.229 915 486 2010-01-21 2010-02-16 077.068.104.062 847 486 2010-02-27 2010-03-09 038.117.093.001 878 486 2009-12-03 2010-03-16 068.002.079.051 856 486 2010-01-25 2010-02-15 097.097.095.009 992 486 2010-01-30 2010-03-14 082.201.226.140 486 486 2010-02-22 2010-02-22 066.045.246.006 888 486 2009-07-29 2010-03-15 195.068.140.030 895 486 2009-05-21 2010-03-14 076.095.084.224 486 486 2010-03-09 2010-03-10 078.233.094.084 819 486 2009-10-06 2010-03-16 172.027.001.250 4838 485 2008-05-20 2010-03-13 173.028.112.047 1118 485 2009-11-25 2010-03-15 096.011.188.217 954 485 2010-01-20 2010-02-22 195.131.122.097 508 485 2008-09-17 2010-03-11 070.074.068.231 769 485 2009-12-09 2010-02-17 114.032.118.241 834 485 2009-03-27 2010-03-15 068.071.045.118 905 485 2010-02-03 2010-02-25 078.236.144.104 1301 485 2010-02-09 2010-03-05 038.096.240.030 914 485 2010-01-18 2010-02-21 097.089.002.207 832 485 2010-02-04 2010-03-06 064.001.076.213 814 485 2010-02-07 2010-03-16 207.248.048.078 818 485 2010-02-20 2010-03-15 189.112.196.009 529 485 2010-03-03 2010-03-04 088.085.098.173 780 485 2009-06-29 2010-03-15 041.136.117.140 485 485 2010-02-22 2010-02-22 109.086.229.176 1008 485 2010-02-05 2010-03-13 194.008.060.120 843 484 2009-06-24 2010-03-14 065.219.188.025 1328 484 2010-01-07 2010-03-11 074.124.228.081 847 484 2010-01-23 2010-03-16 069.193.190.254 855 484 2010-02-19 2010-03-14 059.178.047.018 484 484 2010-02-18 2010-02-18 218.019.175.101 934 484 2009-08-22 2010-02-20 190.043.181.115 494 484 2010-02-26 2010-03-02 065.067.138.050 851 484 2009-09-18 2010-03-11 194.069.194.191 864 484 2010-02-16 2010-03-16 070.121.212.190 815 484 2010-01-28 2010-03-16 204.015.207.066 864 484 2009-06-05 2010-03-13 173.063.019.068 845 484 2010-01-01 2010-03-16 220.105.196.057 745 484 2009-06-30 2010-03-12 092.048.082.024 836 484 2009-11-17 2010-03-16 196.205.164.142 484 484 2010-02-26 2010-02-26 069.094.193.010 879 484 2009-05-12 2010-03-13 174.004.046.142 852 484 2010-01-08 2010-03-02 121.087.005.029 1228 484 2010-02-17 2010-02-20 068.145.184.202 795 484 2010-01-23 2010-03-15 173.201.148.128 524 484 2010-03-09 2010-03-09 190.232.109.019 483 483 2010-02-25 2010-02-25 024.079.233.165 860 483 2009-12-23 2010-02-19 024.065.230.215 888 483 2010-02-01 2010-03-10 070.018.000.082 838 483 2009-05-19 2010-03-16 188.158.083.118 483 483 2010-02-22 2010-02-22 077.020.237.057 638 483 2010-02-21 2010-02-21 200.093.174.012 829 483 2010-02-12 2010-03-11 098.141.148.025 854 483 2010-02-16 2010-03-16 085.249.020.134 874 483 2009-08-11 2010-03-10 084.022.053.014 1892 483 2009-11-29 2010-03-13 069.049.215.055 893 483 2009-12-21 2010-03-06 065.097.150.117 826 483 2009-06-28 2010-03-16 077.089.145.047 887 483 2010-02-16 2010-03-16 123.176.041.242 564 483 2010-03-11 2010-03-11 085.138.048.012 814 483 2009-12-27 2010-02-22 066.011.146.072 875 483 2010-01-24 2010-02-15 088.169.148.144 821 483 2009-09-30 2010-03-14 064.055.162.062 805 483 2009-09-18 2010-03-16 166.082.094.185 860 483 2009-04-28 2010-03-16 084.103.084.240 882 483 2010-01-19 2010-02-25 069.169.146.090 847 482 2010-01-24 2010-03-15 091.211.248.004 963 482 2010-03-07 2010-03-07 038.098.000.075 806 482 2010-02-06 2010-03-01 024.043.122.123 896 482 2009-11-02 2010-02-18 208.087.126.112 843 482 2010-01-27 2010-03-11 024.233.060.083 796 482 2010-02-16 2010-03-16 067.032.013.083 974 482 2010-01-12 2010-03-14 208.094.173.157 821 482 2009-06-25 2010-03-16 189.018.247.057 482 482 2010-02-26 2010-02-26 088.248.049.139 486 482 2010-03-01 2010-03-01 024.211.017.173 2744 482 2010-01-29 2010-02-27 068.144.004.092 940 482 2010-02-17 2010-03-16 096.048.214.045 827 482 2010-02-11 2010-03-15 186.081.043.061 965 482 2010-02-28 2010-02-28 208.127.061.123 846 482 2009-12-23 2010-03-02 089.218.163.079 487 482 2010-02-28 2010-02-28 060.048.065.243 482 482 2010-02-18 2010-02-18 120.035.011.187 962 482 2010-02-15 2010-02-15 062.150.018.034 925 482 2009-05-29 2010-03-15 092.241.168.123 3704 481 2010-02-04 2010-02-15 081.195.156.034 844 481 2009-06-12 2010-03-14 094.023.205.015 567 481 2010-01-23 2010-03-08 069.057.027.063 823 481 2010-02-08 2010-03-15 089.028.086.171 808 481 2009-12-23 2010-03-14 208.084.220.006 836 481 2010-01-04 2010-03-14 059.120.032.136 1387 481 2009-05-29 2010-03-14 083.111.038.021 813 481 2009-11-12 2010-03-16 072.066.008.036 842 481 2009-11-24 2010-03-15 060.250.243.163 794 481 2010-01-30 2010-03-15 140.209.190.173 867 481 2009-12-11 2010-03-12 083.066.057.029 827 481 2009-11-10 2010-03-16 078.227.117.052 827 481 2009-12-03 2010-03-16 081.028.080.226 828 481 2009-03-22 2010-03-16 216.119.174.081 911 481 2010-01-29 2010-03-03 062.048.035.083 814 480 2009-11-18 2010-03-13 062.021.191.122 862 480 2009-04-20 2010-03-16 221.240.089.251 1319 480 2010-01-06 2010-03-16 078.251.059.219 1349 480 2010-02-23 2010-02-23 083.181.022.203 891 480 2010-02-15 2010-03-16 124.066.233.235 789 480 2010-01-10 2010-03-06 068.144.042.216 886 480 2009-12-07 2010-02-22 024.173.114.210 850 480 2010-02-12 2010-02-28 082.188.201.130 813 480 2008-12-25 2010-03-11 217.111.141.157 59067 480 2010-03-09 2010-03-15 174.003.166.219 851 480 2010-01-29 2010-02-25 190.024.211.238 842 479 2010-01-09 2010-03-10 041.234.058.181 479 479 2010-02-23 2010-02-23 078.231.160.077 1392 479 2010-02-25 2010-02-26 121.137.076.094 573 479 2010-02-17 2010-02-17 087.072.113.027 821 479 2010-02-06 2010-03-15 092.048.118.009 785 479 2009-12-09 2010-03-15 124.043.110.126 479 479 2010-02-22 2010-02-22 190.043.245.130 479 479 2010-02-21 2010-02-24 194.121.230.067 810 479 2009-11-08 2010-03-16 097.089.010.111 845 479 2010-01-04 2010-02-16 084.253.081.194 930 479 2009-11-06 2010-03-15 186.000.012.152 1441 479 2010-02-26 2010-02-28 077.254.008.153 682 479 2010-02-21 2010-02-21 077.068.041.010 824 479 2010-02-20 2010-03-14 059.125.009.085 808 479 2009-12-30 2010-03-13 096.011.188.204 850 479 2009-11-08 2010-03-15 066.018.015.009 711 479 2010-02-12 2010-03-01 212.170.052.083 806 479 2010-02-09 2010-03-03 070.046.120.172 900 479 2009-10-17 2010-03-14 071.029.137.022 841 479 2009-10-13 2010-03-15 041.199.182.064 479 479 2010-02-28 2010-02-28 074.039.233.145 875 479 2009-04-07 2010-03-13 193.075.051.247 813 479 2010-02-04 2010-03-14 201.230.164.111 478 478 2010-02-28 2010-02-28 067.016.223.205 939 478 2009-12-05 2010-03-16 078.233.078.175 1304 478 2010-01-16 2010-03-04 206.248.250.085 815 478 2010-01-22 2010-02-21 093.087.008.025 764 478 2010-01-16 2010-02-28 089.137.007.021 480 478 2010-02-08 2010-02-18 190.040.166.181 478 478 2010-02-23 2010-02-23 066.064.107.054 833 478 2010-01-17 2010-03-16 201.251.061.136 971 478 2009-07-08 2010-03-13 070.032.046.179 9084 478 2010-03-02 2010-03-03 012.129.139.191 854 478 2010-01-21 2010-02-16 067.089.021.013 880 478 2009-11-11 2010-03-11 065.041.071.100 820 478 2009-06-18 2010-03-13 118.232.254.166 904 478 2009-12-12 2010-03-14 187.141.015.195 2091 478 2009-04-26 2010-03-13 093.113.183.078 862 478 2010-02-19 2010-03-16 211.233.062.117 565 478 2010-01-09 2010-03-10 085.059.111.244 583 478 2010-03-07 2010-03-07 209.105.146.007 788 478 2009-12-09 2010-03-02 072.045.186.185 842 477 2010-02-02 2010-02-22 124.018.057.089 795 477 2010-01-22 2010-02-18 195.093.173.039 1220 477 2010-02-21 2010-02-23 211.020.150.217 819 477 2009-07-27 2010-03-16 200.000.202.043 807 477 2009-07-18 2010-03-14 012.053.074.070 846 477 2010-02-14 2010-02-28 079.187.170.090 802 477 2010-01-22 2010-03-15 088.176.022.070 800 477 2009-11-26 2010-03-12 113.033.247.169 882 477 2009-12-16 2010-03-15 188.163.144.061 1370 477 2010-02-28 2010-02-28 066.098.062.115 1162 477 2009-08-28 2010-03-14 070.021.116.163 866 477 2009-11-11 2010-03-14 024.077.018.202 877 477 2009-11-05 2010-03-15 089.137.011.201 807 477 2009-07-14 2010-03-14 078.088.201.229 754 477 2010-02-09 2010-02-14 082.138.002.194 882 477 2009-10-20 2010-03-16 061.164.151.151 483 477 2010-03-15 2010-03-15 210.181.236.010 1782 477 2010-02-11 2010-03-08 086.058.194.082 811 477 2009-11-26 2010-03-14 071.041.215.188 1000 477 2009-11-22 2010-03-16 207.047.101.028 949 476 2009-12-24 2010-02-28 038.109.077.061 771 476 2009-08-10 2010-02-28 074.222.001.106 858 476 2009-11-11 2010-03-14 078.062.016.175 503 476 2010-02-28 2010-02-28 112.227.124.192 476 476 2010-03-16 2010-03-16 069.094.195.195 1590 476 2010-02-04 2010-03-12 064.021.240.205 998 476 2009-12-17 2010-03-13 038.099.168.087 784 476 2010-01-15 2010-03-02 208.094.174.073 863 476 2009-11-30 2010-03-15 189.033.037.010 14185 476 2010-02-11 2010-02-18 093.152.172.102 775 476 2009-12-03 2010-03-15 141.156.111.249 813 476 2009-12-23 2010-03-16 075.119.098.062 891 475 2009-12-19 2010-02-27 200.107.122.046 843 475 2009-11-02 2010-03-06 082.065.117.115 679 475 2010-02-14 2010-02-14 066.076.164.020 822 475 2010-02-20 2010-03-15 114.041.000.034 1473 475 2010-03-10 2010-03-12 024.136.202.179 809 475 2009-12-30 2010-03-15 096.048.043.031 808 475 2010-01-08 2010-02-23 070.025.101.028 783 475 2009-08-19 2010-03-06 024.162.214.025 835 475 2010-02-11 2010-03-16 096.054.153.178 765 475 2010-01-01 2010-02-18 190.245.210.158 543 475 2010-02-26 2010-02-26 070.015.084.075 851 475 2010-01-29 2010-02-22 173.023.172.075 896 475 2010-01-12 2010-02-16 204.029.096.237 800 475 2009-10-15 2010-03-14 188.093.120.003 866 475 2009-07-16 2010-03-14 091.205.172.181 752 475 2010-01-19 2010-03-14 063.138.060.198 1176 475 2010-02-05 2010-02-22 079.127.024.141 476 475 2010-02-17 2010-02-18 151.100.042.047 793 475 2009-07-22 2010-03-16 195.070.221.003 886 475 2009-12-04 2010-02-25 213.175.201.052 809 474 2010-03-15 2010-03-16 173.027.192.252 800 474 2010-02-20 2010-03-14 174.037.201.142 521 474 2010-03-09 2010-03-09 094.176.149.095 843 474 2009-11-14 2010-03-16 174.006.002.028 674 474 2009-12-10 2010-03-16 094.024.158.014 590 474 2010-02-18 2010-02-18 071.146.200.037 904 474 2010-02-25 2010-03-08 088.171.153.193 812 474 2009-06-18 2010-03-12 210.177.240.063 794 474 2009-04-16 2010-03-16 186.009.096.250 574 474 2010-02-26 2010-02-26 173.069.069.236 852 474 2010-01-31 2010-03-14 216.030.236.027 867 474 2009-12-23 2010-03-15 072.191.220.206 474 474 2010-02-14 2010-02-16 098.148.169.239 782 474 2010-01-11 2010-03-16 068.200.166.120 829 474 2010-02-03 2010-02-26 068.236.186.204 917 474 2010-01-30 2010-03-14 082.135.207.020 497 474 2010-01-11 2010-02-18 202.199.100.005 520 474 2010-02-23 2010-02-23 099.178.220.091 783 474 2009-12-23 2010-03-16 141.085.123.011 840 474 2010-02-03 2010-03-16 059.090.191.098 908 473 2009-02-02 2010-03-13 066.114.066.020 800 473 2009-12-06 2010-03-14 123.147.203.135 3564 473 2010-02-22 2010-03-15 201.149.028.122 773 473 2009-12-16 2010-02-27 094.053.027.079 854 473 2010-01-15 2010-03-15 083.036.060.146 859 473 2009-11-18 2010-02-15 072.073.126.145 813 473 2010-02-01 2010-02-25 067.032.013.097 1027 473 2010-01-15 2010-02-17 217.165.023.150 799 473 2010-01-12 2010-02-23 071.136.202.082 793 473 2010-02-20 2010-03-15 173.016.009.035 886 473 2009-11-29 2010-03-14 085.108.246.244 473 473 2010-02-26 2010-02-26 068.180.126.254 832 473 2010-02-18 2010-03-15 066.018.119.217 946 473 2010-02-21 2010-02-21 212.039.118.102 909 472 2009-10-20 2010-03-11 070.109.254.064 836 472 2010-01-03 2010-03-15 216.021.184.030 827 472 2010-01-15 2010-03-14 212.170.135.108 876 472 2009-10-25 2010-03-16 074.007.222.203 854 472 2010-02-04 2010-02-25 078.251.010.096 1221 472 2010-02-25 2010-02-26 074.118.193.006 827 472 2009-12-25 2010-03-15 066.153.132.050 7874 472 2010-02-11 2010-02-20 109.160.051.036 904 472 2009-10-06 2010-03-15 210.051.225.124 699 472 2010-03-10 2010-03-11 206.252.196.244 787 472 2010-02-07 2010-03-07 216.055.154.040 811 472 2010-01-25 2010-03-16 062.118.096.007 791 472 2010-01-27 2010-03-12 062.118.020.166 802 472 2009-10-20 2010-03-13 024.199.045.195 809 472 2009-11-05 2010-03-13 075.014.252.009 735 471 2009-11-20 2010-03-09 190.204.065.112 939 471 2010-02-21 2010-02-21 098.140.015.007 797 471 2009-09-27 2010-02-14 216.073.214.251 778 471 2010-02-17 2010-03-16 085.125.059.077 846 471 2009-09-18 2010-03-11 218.240.024.236 515 471 2010-03-06 2010-03-06 024.103.038.104 842 471 2010-02-18 2010-03-15 024.152.243.181 792 471 2010-02-09 2010-03-09 173.204.053.132 531 471 2010-02-26 2010-02-28 096.053.210.006 851 471 2010-01-06 2010-03-04 083.097.149.201 101278 471 2010-02-15 2010-03-09 199.120.107.026 822 471 2010-02-09 2010-03-15 118.169.197.071 957 471 2010-02-16 2010-02-19 202.100.210.114 1337 471 2010-02-20 2010-03-16 061.160.250.119 785 471 2009-12-03 2010-02-18 091.102.162.082 817 471 2010-01-25 2010-03-14 203.030.254.178 5282 471 2010-03-13 2010-03-13 205.161.019.008 792 471 2010-01-23 2010-03-08 208.078.011.030 815 471 2010-01-30 2010-02-24 077.085.237.244 800 471 2009-07-09 2010-03-14 012.052.074.021 815 471 2010-02-06 2010-03-02 190.213.174.067 903 470 2010-01-31 2010-03-11 076.079.220.124 849 470 2010-02-19 2010-03-13 064.122.072.052 850 470 2009-12-03 2010-03-15 070.021.248.119 787 470 2009-08-07 2010-03-15 092.087.064.180 932 470 2009-11-07 2010-03-14 190.157.154.095 940 470 2010-03-04 2010-03-05 058.147.008.171 775 470 2010-02-16 2010-03-14 180.069.044.221 8844 470 2010-02-22 2010-03-13 088.171.093.086 872 470 2009-08-28 2010-03-11 096.052.137.071 806 470 2009-09-26 2010-03-16 216.250.192.063 830 470 2010-03-02 2010-03-12 190.014.249.012 800 470 2009-09-24 2010-03-16 093.104.211.044 815 470 2010-01-04 2010-02-18 196.202.052.219 19988 469 2010-01-10 2010-02-19 174.120.153.226 548 469 2010-02-23 2010-02-24 074.081.071.030 793 469 2010-01-18 2010-03-16 211.204.053.247 9155 469 2010-02-26 2010-03-15 078.226.165.208 1288 469 2010-03-08 2010-03-10 210.017.153.070 469 469 2010-03-15 2010-03-15 064.038.083.126 957 469 2010-03-04 2010-03-05 109.123.080.155 963 469 2010-02-15 2010-02-25 217.036.231.030 491 469 2009-12-02 2010-03-07 216.218.109.063 474 469 2010-02-27 2010-02-27 078.032.112.230 911 469 2010-02-03 2010-03-16 064.092.152.032 799 469 2009-11-14 2010-02-24 173.019.223.000 793 469 2010-02-10 2010-03-16 074.063.077.171 792 469 2010-01-24 2010-03-14 069.251.025.152 869 469 2010-01-03 2010-02-22 195.239.140.046 826 469 2009-06-18 2010-03-15 082.239.171.166 824 469 2009-10-08 2010-03-14 064.004.115.090 812 468 2009-10-21 2010-02-17 098.140.015.033 769 468 2009-08-14 2010-03-06 078.154.018.140 1534 468 2010-01-08 2010-03-08 012.105.251.160 829 468 2009-11-17 2010-02-26 221.233.134.110 2867 468 2010-02-17 2010-02-19 078.008.163.122 688 468 2010-03-05 2010-03-06 024.109.075.050 820 468 2010-01-04 2010-03-14 064.188.025.014 1291 468 2010-02-11 2010-03-03 098.126.003.202 649 468 2010-03-05 2010-03-05 080.069.089.051 775 468 2009-12-05 2010-03-16 124.013.080.065 468 468 2010-03-02 2010-03-02 060.040.073.059 468 468 2010-02-18 2010-02-18 064.183.106.186 825 468 2009-12-25 2010-03-16 186.081.176.102 940 468 2010-03-04 2010-03-04 041.178.224.011 468 468 2010-03-04 2010-03-04 173.068.038.160 902 468 2010-01-31 2010-02-22 174.078.240.002 870 468 2009-11-19 2010-02-17 131.093.009.009 917 468 2010-02-18 2010-03-14 077.068.046.094 846 468 2010-02-19 2010-03-15 077.020.178.018 1014 467 2010-02-10 2010-03-16 091.205.172.218 789 467 2010-01-21 2010-03-10 200.159.050.202 812 467 2009-07-01 2010-03-15 024.209.135.101 922 467 2010-01-14 2010-03-01 072.034.226.082 776 467 2009-07-31 2010-03-09 174.078.240.010 932 467 2009-10-31 2010-02-17 204.045.036.035 21799 467 2010-02-05 2010-03-01 064.034.193.048 807 467 2009-06-05 2010-03-13 202.060.167.155 780 467 2009-12-30 2010-02-15 202.119.104.144 640 466 2010-02-25 2010-02-25 180.092.199.126 800 466 2010-01-19 2010-03-16 074.087.183.060 801 466 2010-01-20 2010-02-19 082.142.129.178 753 466 2009-07-22 2010-02-28 199.001.018.106 810 466 2009-11-26 2010-03-14 160.036.030.047 964 466 2009-11-19 2010-03-15 079.120.127.209 818 466 2010-02-18 2010-03-14 080.069.089.053 811 466 2010-01-03 2010-03-15 068.165.220.110 800 466 2010-01-19 2010-03-12 195.003.136.134 832 466 2010-01-31 2010-03-02 211.102.090.131 1570 466 2010-03-08 2010-03-15 038.100.011.111 887 466 2010-02-15 2010-03-16 069.046.205.086 829 466 2009-12-26 2010-03-02 083.170.112.213 585 466 2010-02-23 2010-02-26 206.123.216.011 921 466 2009-08-20 2010-03-13 071.115.093.004 867 466 2009-12-18 2010-02-15 078.060.150.072 1338 465 2010-02-25 2010-03-05 201.122.085.083 1637 465 2010-02-11 2010-02-18 220.189.251.106 813 465 2009-05-01 2010-03-13 059.090.001.030 807 465 2010-01-24 2010-03-15 174.001.007.210 842 465 2009-11-30 2010-03-05 208.125.236.011 813 465 2009-10-19 2010-03-11 098.141.169.104 848 465 2009-09-29 2010-03-13 141.085.037.058 799 465 2009-12-17 2010-03-14 086.106.079.153 821 465 2009-11-26 2010-03-01 064.144.035.073 897 465 2010-01-14 2010-03-15 174.101.068.120 827 465 2010-01-21 2010-03-16 089.037.083.140 808 465 2009-12-07 2010-03-14 087.030.089.197 854 465 2010-01-20 2010-03-14 201.155.087.234 767 465 2009-12-23 2010-03-10 095.081.210.239 465 465 2010-03-14 2010-03-14 074.007.018.058 810 465 2009-10-28 2010-03-13 200.085.020.052 1265 465 2010-03-07 2010-03-09 074.014.225.004 863 465 2010-01-23 2010-02-18 086.121.249.005 814 465 2009-09-16 2010-02-16 190.144.047.229 682 465 2010-02-17 2010-02-25 190.159.131.029 931 465 2010-02-21 2010-02-21 059.160.110.046 489 465 2010-02-15 2010-02-26 190.144.087.222 900 465 2009-11-13 2010-03-14 085.254.247.238 748 465 2010-02-21 2010-03-16 062.101.249.108 839 465 2009-09-13 2010-02-26 114.143.191.242 1381 464 2010-03-07 2010-03-15 190.226.038.007 466 464 2010-03-03 2010-03-12 098.025.122.252 841 464 2009-11-12 2010-03-16 208.080.193.032 1607 464 2009-09-19 2010-03-15 080.059.054.090 466 464 2010-03-13 2010-03-13 069.011.157.094 790 464 2009-11-26 2010-03-16 074.117.059.053 879 464 2010-01-25 2010-02-22 190.025.141.250 800 464 2010-02-02 2010-03-15 078.227.135.166 2663 464 2009-11-19 2010-02-23 069.003.138.022 804 464 2009-10-28 2010-03-11 113.105.131.130 591 463 2010-03-05 2010-03-13 094.021.192.218 827 463 2009-11-25 2010-03-14 190.246.044.045 914 463 2010-02-21 2010-02-21 190.055.115.185 463 463 2010-03-07 2010-03-07 066.011.146.069 786 463 2010-01-23 2010-02-15 085.134.025.101 813 463 2009-11-24 2010-03-06 208.080.193.041 2120 463 2009-09-27 2010-03-09 078.229.172.084 1110 463 2010-01-08 2010-03-01 088.049.235.107 806 463 2009-07-14 2010-03-16 085.014.200.082 790 463 2010-02-17 2010-03-16 089.120.125.106 816 463 2009-11-07 2010-03-16 094.173.033.098 1276 463 2009-12-19 2010-03-07 059.124.105.110 772 463 2010-01-09 2010-03-03 161.210.214.194 772 463 2010-02-14 2010-03-16 083.097.204.180 786 463 2010-02-09 2010-03-13 078.234.169.139 178164 463 2009-11-12 2010-03-09 173.020.123.036 800 463 2009-11-24 2010-03-16 062.201.067.047 779 463 2010-02-02 2010-03-10 201.240.130.191 463 463 2010-02-19 2010-02-19 180.131.017.022 837 463 2010-02-15 2010-02-15 208.072.123.095 3324 462 2010-01-31 2010-03-04 064.077.215.100 958 462 2010-01-21 2010-03-16 190.145.030.131 831 462 2009-11-11 2010-03-16 077.021.120.223 927 462 2010-01-18 2010-02-28 088.247.173.108 462 462 2010-02-23 2010-02-23 174.003.133.167 834 462 2010-02-17 2010-03-14 077.111.160.048 789 462 2009-12-02 2010-02-23 092.101.075.117 616 462 2010-03-02 2010-03-06 084.002.236.195 773 462 2009-10-28 2010-03-03 065.120.150.025 2617 462 2010-02-18 2010-03-11 069.132.193.176 783 462 2010-01-29 2010-03-16 071.041.244.117 811 462 2010-01-20 2010-02-15 208.081.238.074 836 462 2010-02-15 2010-03-08 078.092.130.086 1183 462 2010-02-13 2010-02-14 211.003.115.079 778 462 2010-02-09 2010-03-11 072.027.202.230 917 462 2009-08-10 2010-03-14 078.250.143.208 1194 461 2010-02-26 2010-02-26 174.004.052.039 783 461 2010-02-03 2010-03-15 077.068.045.099 786 461 2010-02-19 2010-03-14 094.220.117.154 721 461 2010-02-03 2010-02-26 190.043.152.050 461 461 2010-02-18 2010-02-18 061.163.079.052 461 461 2010-03-04 2010-03-04 066.124.247.069 781 461 2010-01-18 2010-03-13 038.107.190.014 768 461 2010-01-12 2010-03-03 065.110.120.119 806 461 2009-10-19 2010-03-15 070.064.032.107 790 461 2009-12-08 2010-03-14 186.082.084.037 930 461 2010-02-21 2010-02-21 192.100.165.074 816 461 2009-11-17 2010-03-05 089.175.183.217 1023 461 2009-06-09 2010-03-16 216.018.020.181 827 461 2009-05-16 2010-03-16 094.247.016.003 753 461 2010-02-09 2010-03-16 078.084.104.172 1272 461 2010-02-23 2010-02-23 070.076.134.058 822 461 2009-11-19 2010-03-15 092.048.127.090 831 460 2009-11-17 2010-03-16 067.208.227.086 653 460 2010-02-09 2010-02-16 096.011.188.209 772 460 2009-12-02 2010-03-15 081.057.188.181 807 460 2009-02-20 2010-03-12 212.156.217.252 6952 460 2009-11-25 2010-03-14 078.059.046.069 1330 460 2010-02-28 2010-03-08 174.121.013.051 734 460 2010-02-07 2010-03-05 067.221.218.077 749 460 2010-03-07 2010-03-15 087.097.239.124 834 460 2009-04-10 2010-02-16 089.253.137.025 825 460 2010-01-24 2010-03-15 210.083.233.106 892 460 2010-01-30 2010-03-08 209.124.200.085 765 460 2010-02-13 2010-03-06 083.012.025.198 877 460 2009-11-12 2010-03-13 221.120.237.146 71296 460 2009-12-24 2010-02-18 071.068.042.049 885 460 2010-02-03 2010-02-25 078.228.068.020 2189 460 2010-02-14 2010-02-23 190.179.067.186 1331 460 2010-03-01 2010-03-02 174.037.194.111 797 460 2009-04-10 2010-03-16 024.086.010.199 856 460 2010-01-15 2010-03-14 118.160.240.003 504 459 2010-02-24 2010-02-26 071.114.124.087 802 459 2009-10-28 2010-03-15 173.016.117.106 845 459 2010-01-08 2010-03-16 221.121.020.112 460 459 2010-02-13 2010-02-16 078.237.009.182 1168 459 2010-03-08 2010-03-10 190.017.036.168 474 459 2010-03-15 2010-03-15 210.163.017.054 777 459 2010-01-23 2010-02-22 058.120.227.189 776 459 2010-01-21 2010-03-05 096.052.130.126 1076 459 2010-02-11 2010-03-11 086.121.029.187 791 459 2010-01-28 2010-03-14 060.250.135.076 835 459 2009-07-28 2010-03-15 078.129.085.080 1408 459 2010-03-02 2010-03-06 109.070.067.058 725 459 2010-02-13 2010-03-14 189.074.140.169 830 459 2010-03-08 2010-03-08 069.094.199.099 804 459 2010-01-04 2010-03-16 221.122.032.190 702 458 2010-02-25 2010-02-28 061.175.255.047 899 458 2010-02-28 2010-02-28 059.120.000.207 802 458 2009-11-26 2010-03-16 074.126.146.173 561 458 2010-02-19 2010-02-19 070.077.081.141 762 458 2010-02-12 2010-03-13 190.146.058.203 859 458 2009-05-13 2010-03-14 063.131.012.217 460 458 2010-03-11 2010-03-11 190.068.236.114 828 458 2009-10-28 2010-03-09 201.033.192.158 459 458 2010-02-12 2010-02-17 212.023.158.009 4231 458 2010-02-20 2010-02-20 024.067.106.118 769 458 2010-02-26 2010-03-15 070.072.086.061 823 458 2010-02-11 2010-03-13 074.222.001.077 816 458 2010-01-18 2010-03-14 066.014.100.003 762 458 2009-11-11 2010-03-13 074.117.059.210 816 457 2009-11-13 2010-02-20 201.230.202.175 457 457 2010-03-02 2010-03-02 173.093.217.136 815 457 2010-01-21 2010-03-14 098.141.032.052 762 457 2009-08-23 2010-03-11 077.238.208.208 773 457 2009-07-19 2010-03-14 081.129.062.096 623 457 2010-02-20 2010-02-20 201.166.063.025 808 457 2010-01-26 2010-03-13 212.074.041.101 2186 457 2009-05-21 2010-03-09 094.220.116.000 674 457 2010-03-04 2010-03-15 076.168.214.105 840 457 2010-02-05 2010-03-10 076.182.146.024 760 457 2010-02-12 2010-03-10 190.254.017.030 563 457 2010-02-19 2010-03-12 109.173.008.039 904 457 2010-01-08 2010-02-18 195.066.084.052 786 457 2010-02-09 2010-03-15 095.155.003.194 1370 457 2010-02-26 2010-02-26 161.210.214.197 749 457 2010-02-13 2010-03-13 060.215.216.017 580 457 2010-02-17 2010-02-17 212.174.054.162 928 457 2010-03-04 2010-03-04 188.027.007.078 786 457 2009-11-23 2010-03-16 078.084.020.009 467 457 2010-03-09 2010-03-09 067.063.097.191 938 456 2010-01-23 2010-02-20 061.168.227.012 2187 456 2009-09-15 2010-03-08 092.099.199.170 20549 456 2010-03-07 2010-03-12 083.111.107.102 462 456 2010-03-13 2010-03-13 129.044.058.031 776 456 2009-08-26 2010-03-14 218.201.170.254 753 456 2010-02-21 2010-02-24 075.187.193.183 824 456 2010-01-22 2010-02-27 086.107.006.139 766 456 2009-12-10 2010-02-28 096.050.119.183 791 456 2009-12-12 2010-03-15 195.013.139.193 1158 456 2010-02-18 2010-03-08 080.073.001.189 776 456 2009-12-24 2010-02-25 095.211.001.133 506 456 2010-02-18 2010-02-20 078.235.028.169 5202 456 2010-02-19 2010-03-01 173.064.000.044 784 456 2010-02-18 2010-03-16 168.103.046.126 456 456 2010-02-21 2010-02-21 082.066.173.173 803 456 2009-11-13 2010-03-16 087.016.048.018 747 456 2010-02-07 2010-03-04 174.037.231.105 792 456 2009-12-14 2010-03-15 099.040.220.186 792 456 2010-01-31 2010-03-15 217.219.176.006 910 455 2010-01-24 2010-02-24 083.016.214.227 751 455 2009-12-11 2010-03-11 195.251.006.100 817 455 2009-09-02 2010-03-14 174.046.192.043 781 455 2009-12-30 2010-03-12 173.019.217.103 818 455 2010-02-19 2010-03-16 160.007.253.227 760 455 2010-01-16 2010-02-23 173.010.018.115 1337 455 2009-12-13 2010-03-07 098.025.080.114 764 455 2010-01-19 2010-02-19 088.244.211.248 455 455 2010-02-23 2010-02-23 078.232.101.195 1189 455 2009-11-28 2010-03-10 098.101.193.080 819 455 2010-02-17 2010-03-14 074.082.236.086 768 455 2010-02-10 2010-03-15 065.060.095.090 543 455 2010-02-08 2010-02-14 012.071.198.083 760 455 2009-08-14 2010-03-13 068.168.018.042 900 455 2009-10-19 2010-03-15 091.197.005.001 4002 455 2008-11-21 2010-03-15 078.129.227.035 578 455 2010-02-23 2010-02-26 221.006.200.021 499 455 2010-02-15 2010-03-13 062.028.082.137 754 455 2009-04-07 2010-03-15 121.125.026.152 826 455 2010-01-25 2010-03-16 222.223.036.068 667 455 2009-07-08 2010-02-26 212.099.021.010 755 455 2010-02-01 2010-03-16 203.162.130.213 711 455 2010-03-02 2010-03-02 211.214.219.123 771 454 2010-01-25 2010-03-16 078.250.017.002 1249 454 2010-02-26 2010-02-26 066.080.232.058 745 454 2009-11-11 2010-03-15 114.033.248.232 1171 454 2009-10-01 2010-03-14 219.107.014.163 769 454 2010-02-09 2010-03-05 186.081.081.013 907 454 2010-03-04 2010-03-05 208.072.122.190 2341 454 2010-02-18 2010-02-18 220.088.181.077 1238 454 2009-12-16 2010-02-27 069.198.222.250 767 454 2009-11-08 2010-03-11 085.047.240.076 1087 454 2010-02-22 2010-03-15 085.217.156.167 740 454 2010-02-06 2010-03-13 096.045.237.007 851 454 2009-12-30 2010-03-05 195.023.036.100 778 454 2010-03-01 2010-03-01 208.043.040.100 774 454 2010-02-23 2010-03-16 190.233.045.086 476 454 2010-02-28 2010-03-02 089.019.013.171 752 454 2010-02-22 2010-02-23 096.050.010.146 816 454 2010-01-19 2010-02-19 200.006.055.081 763 454 2009-09-30 2010-02-18 212.095.041.113 932 454 2010-02-20 2010-02-23 173.016.124.023 868 453 2010-01-15 2010-03-15 098.141.022.242 767 453 2009-11-19 2010-03-14 066.045.072.090 761 453 2009-07-24 2010-03-16 173.045.091.072 807 453 2010-02-18 2010-03-15 213.184.183.082 468 453 2010-03-02 2010-03-02 082.247.157.118 833 453 2010-01-23 2010-03-16 098.110.188.080 1593 453 2010-02-15 2010-03-11 078.082.206.072 1418 453 2010-02-13 2010-02-23 218.242.226.037 1680 453 2009-10-19 2010-03-14 200.096.177.017 653 453 2010-02-24 2010-03-15 091.211.248.221 891 453 2010-02-24 2010-03-13 200.088.112.012 767 453 2010-02-12 2010-03-15 082.240.184.136 798 453 2009-12-27 2010-03-14 085.217.155.241 745 453 2010-02-07 2010-03-05 074.086.155.044 811 453 2010-02-22 2010-03-15 078.083.249.173 748 453 2009-09-27 2010-03-16 201.026.002.104 16381 453 2010-02-15 2010-02-22 216.008.167.212 758 452 2009-10-14 2010-02-24 203.121.018.005 3426 452 2009-10-06 2010-03-16 148.215.001.089 818 452 2010-02-20 2010-03-16 081.057.071.001 757 452 2010-02-11 2010-03-16 208.072.123.048 1322 452 2010-02-15 2010-03-16 114.043.236.099 2197 452 2010-03-05 2010-03-05 087.106.016.167 514 452 2010-03-08 2010-03-13 075.109.056.021 759 452 2009-12-12 2010-03-13 065.041.045.019 796 452 2009-09-26 2010-03-15 092.066.167.074 743 452 2010-01-14 2010-02-27 202.101.042.070 1472 452 2010-01-28 2010-03-14 070.019.114.207 811 452 2009-05-19 2010-03-14 089.113.160.086 799 451 2009-11-14 2010-03-14 098.118.210.011 837 451 2009-12-22 2010-03-16 091.205.172.177 754 451 2010-01-20 2010-03-14 067.055.128.161 787 451 2010-01-26 2010-02-22 085.065.092.055 782 451 2010-01-04 2010-02-14 118.123.213.005 615 451 2010-02-14 2010-02-15 064.093.029.053 796 451 2010-01-31 2010-02-22 122.124.100.058 1659 451 2010-03-03 2010-03-03 195.120.145.005 754 451 2009-04-09 2010-03-16 212.092.008.005 827 451 2009-11-28 2010-03-16 219.084.103.076 736 451 2009-10-02 2010-03-15 094.073.012.008 797 451 2009-12-26 2010-03-15 079.129.035.058 16331 451 2010-03-09 2010-03-16 193.086.005.103 552 451 2010-02-26 2010-02-27 208.072.122.128 3581 450 2010-02-01 2010-03-16 200.069.112.043 750 450 2010-02-03 2010-03-12 210.193.021.098 579 450 2010-02-28 2010-03-09 208.090.012.001 1058 450 2010-03-04 2010-03-16 188.053.073.188 1114 450 2010-02-17 2010-02-17 082.206.152.168 771 450 2009-03-11 2010-03-16 078.063.158.225 1297 450 2010-02-08 2010-03-15 187.037.125.079 835 450 2010-02-01 2010-03-04 071.041.125.098 776 450 2009-02-05 2010-03-15 212.001.229.043 891 450 2010-01-25 2010-02-25 140.209.134.231 921 450 2009-09-11 2010-03-09 172.024.001.001 1383 450 2008-03-24 2010-03-07 208.016.145.143 888 450 2009-06-01 2010-03-16 070.046.092.042 778 450 2010-01-12 2010-03-08 222.066.099.250 866 450 2010-01-12 2010-03-12 220.165.028.066 912 450 2010-02-17 2010-03-10 068.148.140.096 759 450 2010-01-21 2010-03-14 207.216.243.242 473 450 2010-02-23 2010-03-10 174.001.112.214 883 450 2010-01-12 2010-03-13 208.072.123.101 2094 450 2010-01-26 2010-02-19 208.072.125.155 3598 450 2010-02-03 2010-02-17 083.012.110.069 796 450 2009-12-17 2010-03-16 173.088.197.061 758 450 2010-01-13 2010-03-16 078.092.144.109 1105 450 2010-03-03 2010-03-06 208.072.125.140 3112 450 2010-01-28 2010-02-15 097.077.079.106 739 450 2010-02-04 2010-03-16 114.032.212.124 895 450 2009-11-05 2010-02-23 093.123.049.131 805 450 2010-02-12 2010-03-15 208.072.122.027 3304 450 2010-02-17 2010-02-17 208.072.125.160 3958 450 2010-02-26 2010-02-27 075.077.178.222 768 450 2009-10-21 2010-03-15 189.209.186.059 901 450 2010-03-04 2010-03-05 066.011.146.078 761 450 2010-01-23 2010-02-16 118.020.010.125 817 450 2009-12-17 2010-03-06 076.177.250.170 880 450 2010-01-22 2010-03-14 220.135.104.043 1306 449 2008-11-20 2010-03-11 078.243.197.009 1173 449 2010-02-25 2010-02-26 190.145.037.075 757 449 2010-01-08 2010-03-15 076.079.184.118 751 449 2010-02-17 2010-03-15 077.068.038.022 773 449 2010-02-19 2010-03-14 208.072.122.006 2247 449 2010-02-27 2010-02-27 083.014.144.011 800 449 2010-01-13 2010-03-16 078.155.009.104 1407 449 2010-02-09 2010-02-20 074.222.002.023 827 449 2010-02-12 2010-03-09 190.246.011.015 781 449 2009-08-23 2010-02-24 216.240.243.032 659 449 2010-02-22 2010-03-05 085.014.102.083 759 449 2010-02-09 2010-03-16 082.067.096.049 836 449 2010-01-27 2010-03-11 200.251.060.111 776 449 2010-02-05 2010-03-03 075.126.180.157 1031 449 2010-03-15 2010-03-15 123.177.016.058 783 449 2009-07-15 2010-03-16 024.109.248.150 732 449 2009-08-11 2010-02-24 189.126.196.111 724 449 2010-02-22 2010-03-06 077.068.042.086 793 449 2010-02-19 2010-03-15 194.069.194.183 788 449 2010-02-17 2010-03-13 071.136.202.083 806 449 2010-02-20 2010-03-16 213.000.085.034 1028 449 2010-01-04 2010-03-11 208.072.125.238 3377 449 2010-02-23 2010-02-23 114.176.164.126 449 449 2010-03-11 2010-03-11 096.048.247.252 758 449 2010-01-21 2010-03-16 208.072.123.076 5878 449 2010-02-26 2010-02-26 078.084.057.111 156087 449 2010-02-23 2010-03-08 084.003.212.026 786 449 2010-01-16 2010-03-16 086.064.172.006 759 449 2010-02-01 2010-03-15 097.077.082.202 782 449 2010-01-09 2010-03-05 186.080.220.020 902 449 2010-03-04 2010-03-05 210.197.223.100 798 449 2010-02-18 2010-03-16 200.077.249.038 780 449 2009-08-03 2010-03-14 077.068.039.008 764 449 2010-02-19 2010-03-13 088.172.150.155 783 448 2009-10-23 2010-03-12 075.102.038.037 936 448 2010-01-15 2010-02-20 098.140.252.163 844 448 2009-10-09 2010-03-14 187.004.201.138 448 448 2009-12-29 2010-02-23 190.159.228.061 836 448 2010-03-07 2010-03-07 069.036.216.145 781 448 2009-11-16 2010-03-14 203.125.247.088 812 448 2010-01-08 2010-03-13 118.109.072.121 759 448 2010-02-22 2010-03-16 081.056.113.027 721 448 2009-12-20 2010-02-15 064.188.189.150 751 448 2010-02-12 2010-03-15 208.072.125.205 3295 448 2010-02-15 2010-02-16 212.044.144.146 448 448 2010-02-17 2010-02-17 038.097.239.011 763 448 2010-01-21 2010-03-14 210.169.079.062 810 448 2009-11-05 2010-03-14 041.234.165.085 448 448 2010-03-06 2010-03-06 082.244.160.002 808 448 2009-11-18 2010-03-16 098.148.033.226 810 448 2010-01-22 2010-03-03 070.071.168.130 803 448 2009-12-17 2010-03-14 087.234.032.178 795 448 2009-09-06 2010-02-20 075.181.137.065 754 447 2010-01-12 2010-03-11 076.078.048.251 882 447 2010-01-06 2010-03-13 200.087.104.005 819 447 2009-09-25 2010-03-13 076.115.248.197 451 447 2010-01-26 2010-02-16 208.072.122.142 2963 447 2010-02-09 2010-02-23 089.096.197.098 738 447 2009-04-23 2010-03-16 203.166.220.002 799 447 2010-01-23 2010-03-03 194.000.252.210 810 447 2009-04-13 2010-03-13 059.162.209.054 486 447 2010-02-22 2010-03-02 074.013.217.114 747 447 2009-02-28 2010-03-16 208.072.125.106 3671 447 2010-01-20 2010-03-02 208.072.122.083 12878 447 2010-03-02 2010-03-02 059.125.040.101 485 447 2010-02-22 2010-03-11 121.033.204.126 792 447 2010-01-12 2010-03-11 139.055.103.067 607 447 2010-03-13 2010-03-13 115.043.208.242 864 447 2009-06-19 2010-03-14 219.131.195.002 746 447 2009-11-12 2010-03-16 098.140.231.217 724 447 2010-02-06 2010-03-07 024.065.088.149 739 447 2009-10-19 2010-03-15 208.072.122.187 10364 447 2010-03-03 2010-03-04 092.064.214.125 867 447 2010-01-17 2010-03-15 065.051.073.030 793 447 2010-01-07 2010-02-21 200.199.251.195 748 447 2009-10-23 2010-03-12 070.033.187.120 893 447 2009-11-05 2010-03-16 201.162.000.101 477 447 2010-03-13 2010-03-15 071.216.205.184 848 446 2009-12-02 2010-03-14 085.049.064.087 446 446 2010-02-21 2010-02-22 156.034.129.115 714 446 2009-12-21 2010-03-12 173.212.214.082 523 446 2010-03-04 2010-03-06 115.186.067.237 449 446 2010-02-25 2010-02-25 190.144.043.194 843 446 2009-07-26 2010-03-13 139.055.103.130 598 446 2010-03-04 2010-03-04 208.072.122.189 2305 446 2010-02-16 2010-02-16 083.177.084.035 752 446 2010-01-18 2010-03-04 071.051.053.049 748 446 2010-02-01 2010-03-06 206.051.154.047 1092 446 2010-01-01 2010-03-13 208.072.125.064 2093 446 2010-02-24 2010-02-24 062.121.073.032 784 446 2009-12-26 2010-03-04 024.068.249.136 741 446 2010-02-17 2010-03-12 088.028.044.076 880 446 2010-02-17 2010-03-04 212.175.206.241 793 446 2009-08-21 2010-03-15 059.125.006.241 446 446 2010-02-16 2010-02-16 174.037.067.130 865 446 2010-03-10 2010-03-10 078.129.110.069 1200 446 2010-02-21 2010-02-25 093.113.030.039 830 446 2009-10-18 2010-02-24 077.068.045.082 753 446 2010-02-20 2010-03-14 173.046.004.094 752 445 2010-02-21 2010-03-16 208.072.125.067 1164 445 2010-02-11 2010-03-12 202.068.193.005 741 445 2010-02-09 2010-03-16 208.072.122.019 1949 445 2010-02-24 2010-02-24 065.060.062.066 840 445 2010-01-23 2010-02-15 082.238.208.003 728 445 2009-12-08 2010-02-17 078.160.046.172 446 445 2010-02-23 2010-02-24 064.127.016.042 747 445 2009-09-20 2010-02-16 091.187.087.015 817 445 2010-01-21 2010-03-12 200.119.014.116 749 445 2009-04-27 2010-03-14 062.193.127.021 822 445 2010-02-22 2010-02-23 221.009.045.217 445 445 2010-03-01 2010-02-28 125.239.034.123 445 445 2010-02-25 2010-03-03 193.194.091.132 1015 445 2010-02-09 2010-02-18 189.121.168.079 859 444 2010-01-03 2010-03-03 209.021.123.163 766 444 2010-02-10 2010-03-16 081.252.152.013 1230 444 2010-01-10 2010-03-13 099.050.064.242 800 444 2009-12-21 2010-03-16 082.226.063.114 816 444 2009-12-10 2010-03-16 088.243.067.094 444 444 2010-02-19 2010-02-19 078.131.045.220 1336 444 2010-03-04 2010-03-06 069.059.185.197 1608 444 2010-02-23 2010-02-23 064.000.099.130 1082 444 2009-10-04 2010-02-25 120.075.034.210 748 444 2010-02-02 2010-02-20 209.125.033.098 791 444 2009-03-11 2010-03-15 066.011.119.118 832 444 2009-11-07 2010-03-16 213.092.011.165 1039 444 2010-01-10 2010-03-03 024.078.001.156 744 444 2010-01-30 2010-03-06 213.079.100.027 800 444 2009-06-30 2010-03-14 089.096.148.036 756 443 2010-02-14 2010-03-15 038.100.011.107 784 443 2010-02-15 2010-03-13 211.111.136.057 740 443 2010-01-05 2010-03-11 202.107.198.250 1608 443 2008-12-15 2010-02-22 078.154.112.123 738 443 2009-10-25 2010-03-15 206.074.032.124 729 443 2009-12-23 2010-03-15 060.217.229.228 599 443 2009-10-03 2010-03-14 194.069.194.088 748 443 2010-02-16 2010-03-14 084.050.250.042 777 443 2009-06-17 2010-03-16 096.051.014.224 773 443 2010-01-08 2010-02-14 124.012.014.043 1249 443 2010-02-22 2010-02-22 109.087.182.175 445 443 2010-02-16 2010-03-13 198.110.104.026 738 443 2010-02-18 2010-03-16 074.063.217.074 808 443 2010-02-21 2010-03-16 121.072.233.011 1719 443 2009-11-28 2010-03-11 201.144.056.018 722 443 2009-09-30 2010-03-16 083.017.200.123 772 443 2009-07-17 2010-03-11 125.099.158.198 664 443 2010-02-03 2010-03-08 091.065.244.013 444 443 2010-02-25 2010-02-25 077.079.107.154 747 443 2009-11-06 2010-03-14 173.019.209.058 746 442 2009-12-29 2010-03-13 069.003.138.014 841 442 2009-11-24 2010-03-05 071.049.088.008 812 442 2010-01-15 2010-02-14 195.005.006.031 762 442 2010-02-02 2010-03-16 070.062.091.087 791 442 2010-02-04 2010-03-14 067.076.143.013 753 442 2009-01-16 2010-03-16 174.037.192.220 792 442 2010-02-27 2010-03-16 220.157.188.253 740 442 2010-01-27 2010-02-18 212.045.018.139 937 442 2010-02-17 2010-03-15 218.085.139.025 729 442 2010-01-23 2010-03-12 208.072.122.064 1860 442 2010-02-24 2010-02-24 218.075.172.063 930 442 2009-12-16 2010-03-13 173.028.213.219 782 442 2010-02-17 2010-03-14 064.056.064.107 766 442 2010-02-19 2010-03-16 058.056.083.238 987 442 2010-01-29 2010-03-14 071.108.072.132 720 441 2010-02-20 2010-03-13 173.029.142.154 764 441 2010-01-15 2010-03-16 125.230.073.246 1841 441 2010-02-21 2010-03-08 064.203.185.137 779 441 2010-01-08 2010-03-14 124.034.230.143 713 441 2010-02-07 2010-03-04 186.080.032.127 454 441 2010-03-15 2010-03-15 070.015.085.219 799 441 2010-02-15 2010-03-14 078.062.247.156 1260 441 2010-03-01 2010-03-06 208.090.172.230 892 441 2010-02-23 2010-03-06 070.076.072.231 804 441 2009-11-18 2010-03-14 075.183.168.066 755 441 2010-01-21 2010-03-13 119.167.225.157 672 441 2010-02-28 2010-02-28 084.235.049.189 718 441 2009-11-24 2010-03-06 038.109.061.195 743 441 2010-02-12 2010-03-16 190.069.088.003 728 441 2010-02-07 2010-03-15 078.159.115.026 513 441 2010-01-28 2010-02-16 208.019.104.037 800 441 2010-02-06 2010-03-16 195.039.100.234 818 441 2009-11-05 2010-03-16 139.055.073.127 616 441 2010-03-10 2010-03-10 072.027.203.187 872 440 2009-08-05 2010-03-16 200.075.250.167 889 440 2010-03-04 2010-03-04 186.081.093.131 879 440 2010-03-04 2010-03-04 074.118.192.239 820 440 2009-12-19 2010-03-14 138.088.163.087 744 440 2010-01-16 2010-03-16 091.211.190.084 719 440 2009-09-20 2010-03-15 190.233.215.212 441 440 2010-02-23 2010-02-24 093.155.235.037 464 440 2010-02-10 2010-02-16 072.034.226.083 769 440 2009-04-10 2010-03-12 190.068.086.126 775 440 2009-12-21 2010-02-25 190.157.180.166 881 440 2010-03-04 2010-03-05 078.242.204.172 1177 440 2010-03-08 2010-03-10 208.072.125.088 1880 440 2010-01-29 2010-02-26 067.129.232.094 739 440 2009-10-17 2010-03-15 202.069.187.026 2036 440 2009-07-14 2010-03-09 124.013.106.234 452 440 2010-03-02 2010-03-02 068.123.083.085 780 440 2010-01-21 2010-03-15 097.079.011.232 442 440 2010-03-01 2010-03-01 213.133.026.101 3274 440 2010-03-11 2010-03-13 140.113.173.157 729 440 2009-09-27 2010-03-15 088.164.108.078 731 440 2010-02-05 2010-03-16 071.196.042.144 787 440 2010-02-27 2010-03-16 150.254.205.227 779 439 2010-02-07 2010-03-16 190.034.159.074 725 439 2009-08-24 2010-03-11 202.062.111.170 902 439 2009-10-14 2010-03-16 093.104.211.048 782 439 2010-01-04 2010-02-22 024.069.074.072 766 439 2009-12-01 2010-03-01 066.006.057.042 726 439 2009-10-18 2010-03-13 222.073.231.203 589 439 2010-03-14 2010-03-14 070.101.251.085 778 439 2009-07-10 2010-03-11 088.160.049.090 778 439 2009-11-17 2010-03-14 208.072.125.234 1334 439 2010-02-01 2010-03-07 121.100.048.130 757 439 2010-02-14 2010-02-14 078.251.225.073 1138 439 2010-03-12 2010-03-12 124.192.199.126 515 439 2010-03-11 2010-03-16 186.081.228.017 838 439 2010-02-21 2010-02-21 201.116.211.083 749 439 2009-10-20 2010-03-14 216.012.097.064 798 439 2009-11-09 2010-03-14 096.051.010.050 754 438 2009-12-25 2010-03-15 220.170.135.178 773 438 2009-09-01 2010-03-14 067.059.025.085 661 438 2010-02-23 2010-02-27 118.169.192.179 863 438 2010-02-28 2010-03-03 119.077.198.058 749 438 2009-12-02 2010-02-14 081.009.228.246 795 438 2010-02-08 2010-03-15 186.081.087.035 718 438 2010-03-07 2010-03-07 212.118.142.076 2800 438 2009-05-11 2010-03-16 070.069.135.051 760 438 2009-12-13 2010-02-26 096.049.073.145 839 438 2009-10-31 2010-03-14 186.081.227.245 834 438 2010-03-04 2010-03-04 174.003.193.018 721 438 2010-02-01 2010-03-16 203.118.236.142 763 438 2010-01-20 2010-02-21 190.004.051.202 740 438 2009-11-08 2010-03-11 081.067.135.189 803 438 2009-09-04 2010-03-14 124.096.172.059 779 438 2010-02-17 2010-03-11 091.100.104.057 852 438 2009-12-17 2010-03-14 093.083.073.060 785 438 2010-02-08 2010-03-06 190.068.184.034 816 438 2009-08-24 2010-03-16 064.115.011.012 769 438 2010-02-11 2010-03-02 190.208.124.088 453 438 2010-03-14 2010-03-15 209.017.170.012 712 437 2010-02-20 2010-03-16 087.097.061.224 869 437 2010-02-21 2010-02-21 089.119.147.171 829 437 2010-01-15 2010-03-16 220.133.004.104 757 437 2009-12-24 2010-02-21 219.110.225.101 732 437 2009-12-16 2010-03-06 216.255.163.016 754 437 2009-10-12 2010-03-13 059.152.249.251 752 437 2009-06-28 2010-03-02 010.200.008.108 437 437 2010-02-16 2010-02-16 173.021.086.124 767 437 2010-02-07 2010-03-08 195.019.148.130 438 437 2010-03-05 2010-03-11 077.094.094.002 468 437 2010-02-07 2010-03-06 195.013.032.223 1079 437 2010-01-21 2010-03-12 060.191.038.050 1136 437 2009-06-25 2010-03-14 064.062.191.017 815 437 2010-02-16 2010-03-16 064.077.214.121 772 437 2010-02-12 2010-03-11 218.249.172.001 848 437 2009-12-15 2010-03-11 069.057.130.022 860 437 2010-02-09 2010-03-05 067.052.036.059 770 437 2010-02-19 2010-03-14 065.005.135.182 782 437 2010-01-29 2010-02-19 091.065.136.225 805 437 2010-01-10 2010-03-07 067.244.132.033 748 437 2010-02-05 2010-03-15 222.035.138.115 3021 437 2010-03-11 2010-03-14 211.020.147.102 810 437 2009-10-04 2010-03-16 194.087.001.038 650 437 2009-12-18 2010-03-02 202.075.037.125 889 436 2009-04-27 2010-03-14 060.191.089.140 1591 436 2010-01-30 2010-02-22 089.028.105.112 782 436 2009-09-30 2010-03-03 088.014.243.066 934 436 2010-02-16 2010-02-18 076.078.063.021 838 436 2010-01-20 2010-03-08 072.000.186.117 752 436 2010-02-21 2010-03-16 085.239.134.190 775 436 2009-09-25 2010-03-16 203.038.197.022 744 436 2010-02-06 2010-03-14 190.233.198.148 436 436 2010-02-23 2010-02-23 082.141.156.178 730 436 2010-01-15 2010-03-16 024.172.038.189 739 436 2010-02-12 2010-03-16 064.203.141.110 766 436 2010-01-21 2010-03-14 084.051.032.029 731 436 2009-10-28 2010-03-16 109.070.067.051 735 436 2010-02-14 2010-03-16 060.173.161.019 816 436 2009-12-20 2010-03-01 094.102.013.206 495 436 2010-02-25 2010-02-26 186.122.020.032 872 436 2010-03-07 2010-03-07 094.102.014.040 849 435 2010-02-04 2010-03-06 190.000.195.099 785 435 2009-11-13 2010-03-14 024.207.012.214 883 435 2010-02-27 2010-03-16 064.053.047.102 860 435 2009-12-13 2010-03-09 208.072.123.060 1401 435 2010-03-10 2010-03-10 070.072.151.006 736 435 2010-02-16 2010-03-16 196.206.253.085 5973 435 2010-03-02 2010-03-12 070.064.144.137 763 435 2010-02-11 2010-03-12 195.130.118.007 1083 435 2010-02-23 2010-03-08 082.234.118.152 804 435 2009-11-12 2010-03-13 201.158.089.250 449 435 2010-03-15 2010-03-15 203.109.038.017 3455 435 2010-02-18 2010-03-11 089.124.124.141 715 435 2009-08-21 2010-03-02 070.054.216.044 735 435 2009-10-05 2010-03-15 069.144.162.064 778 435 2010-02-11 2010-03-16 114.080.067.106 461 435 2010-02-17 2010-02-18 198.041.009.032 434 434 2010-03-14 2010-03-14 110.045.143.228 1075 434 2009-11-19 2010-03-08 222.045.251.117 786 434 2009-11-30 2010-03-05 193.009.031.251 1234 434 2010-01-18 2010-03-05 024.076.187.252 726 434 2010-02-14 2010-03-16 024.083.075.214 772 434 2009-12-17 2010-03-02 220.130.015.026 731 434 2010-01-08 2010-02-15 208.043.224.060 474 434 2010-03-15 2010-03-15 077.232.005.048 721 434 2009-11-25 2010-03-11 078.250.150.077 751 434 2010-02-20 2010-02-20 077.079.078.070 810 434 2009-09-06 2010-03-16 216.045.060.082 798 434 2010-02-20 2010-03-13 186.014.204.081 18742 434 2010-02-11 2010-03-15 024.087.039.149 761 434 2010-02-06 2010-02-27 220.215.223.086 749 434 2010-02-05 2010-02-27 174.054.234.121 786 434 2010-02-27 2010-03-15 195.070.221.002 775 434 2009-09-24 2010-02-16 114.141.229.147 724 434 2009-11-05 2010-02-18 077.068.046.065 736 433 2010-02-19 2010-03-11 071.040.076.082 716 433 2010-02-23 2010-03-16 212.163.215.206 761 433 2010-02-19 2010-03-13 195.093.173.139 1046 433 2010-01-08 2010-03-13 077.068.044.012 754 433 2010-01-28 2010-03-16 094.022.018.157 1859 433 2010-02-22 2010-02-24 078.129.083.209 1114 433 2010-02-25 2010-02-28 095.026.237.080 450 433 2010-02-24 2010-03-12 096.051.072.185 697 433 2009-10-20 2010-03-16 212.097.200.068 876 433 2009-11-26 2010-02-22 080.073.003.004 771 433 2009-12-25 2010-02-27 070.028.063.115 433 433 2010-02-27 2010-02-27 070.062.192.059 777 433 2009-07-18 2010-03-16 082.200.095.034 747 433 2009-12-01 2010-03-16 173.089.216.160 758 433 2010-02-05 2010-03-06 212.117.037.234 719 433 2009-04-13 2010-03-13 174.143.242.209 470 433 2010-02-14 2010-02-17 024.181.013.160 746 432 2009-11-12 2010-03-14 082.190.245.203 738 432 2009-11-27 2010-03-16 070.074.070.143 795 432 2010-02-22 2010-03-16 208.072.122.013 1593 432 2010-02-16 2010-03-06 094.076.230.108 718 432 2010-02-02 2010-03-14 190.128.110.229 865 432 2010-02-21 2010-02-21 087.204.010.010 1003 432 2009-08-26 2010-03-12 213.161.134.050 740 432 2008-12-01 2010-03-15 216.064.094.085 991 432 2010-02-23 2010-03-14 095.090.078.235 788 432 2010-02-06 2010-03-02 121.022.006.132 619 432 2010-02-28 2010-03-02 060.054.105.134 1012 432 2010-02-27 2010-02-28 076.104.110.161 810 432 2010-01-13 2010-03-16 174.046.240.054 867 432 2010-01-09 2010-03-13 070.079.015.089 791 432 2010-02-01 2010-03-16 173.024.240.038 868 432 2010-02-09 2010-03-15 077.068.039.120 709 432 2010-02-19 2010-03-15 174.000.026.076 1120 432 2009-08-23 2010-02-14 085.222.048.060 760 432 2009-09-22 2010-03-16 195.012.229.002 867 432 2009-12-01 2010-03-15 069.071.178.058 758 432 2009-12-07 2010-02-21 220.132.173.014 439 432 2010-02-20 2010-02-24 190.232.025.228 432 432 2010-03-06 2010-03-06 198.110.217.201 968 432 2010-01-21 2010-03-16 081.024.121.226 512 432 2010-03-02 2010-03-10 077.074.195.110 732 431 2009-09-12 2010-03-15 131.114.131.146 764 431 2010-01-07 2010-03-16 186.082.114.068 861 431 2010-02-21 2010-02-21 218.056.064.002 2100 431 2010-03-09 2010-03-09 116.068.202.182 865 431 2009-05-25 2010-02-16 187.132.117.063 861 431 2010-02-11 2010-03-03 066.167.000.180 482 431 2010-02-26 2010-03-12 068.201.005.094 759 431 2010-01-22 2010-03-02 069.089.123.080 1664 431 2009-11-20 2010-03-16 085.025.120.141 511 431 2010-02-17 2010-02-17 098.141.032.099 749 431 2009-04-08 2010-03-16 082.227.086.003 734 431 2009-11-27 2010-03-10 218.241.236.046 837 431 2009-09-26 2010-03-14 213.140.016.250 759 431 2010-02-27 2010-03-16 207.096.137.004 713 431 2009-05-04 2010-03-16 079.122.173.034 795 431 2009-12-17 2010-03-13 060.190.252.198 586 431 2010-02-16 2010-02-26 067.230.163.034 468 431 2010-02-17 2010-03-02 210.109.189.241 700 431 2009-12-24 2010-03-07 200.075.215.134 815 431 2009-06-25 2010-03-12 024.079.009.120 859 430 2010-01-18 2010-03-13 174.106.106.043 707 430 2010-02-20 2010-03-14 075.119.073.002 707 430 2009-12-06 2010-03-16 077.228.087.032 1552 430 2010-01-08 2010-03-14 084.040.080.152 907 430 2010-02-07 2010-03-13 116.048.152.156 604 430 2009-12-20 2010-03-14 077.221.079.008 856 430 2010-02-18 2010-03-16 189.062.136.071 705 430 2010-02-05 2010-02-25 209.125.167.106 809 430 2009-11-11 2010-03-08 077.081.112.098 716 430 2009-05-30 2010-03-16 062.201.064.024 730 430 2010-02-08 2010-03-16 083.216.165.058 688 430 2009-11-12 2010-03-15 070.098.130.116 755 430 2010-02-22 2010-03-13 088.056.071.116 729 430 2009-08-07 2010-03-13 086.121.050.056 728 430 2010-02-03 2010-03-16 209.208.013.194 5758 430 2010-02-09 2010-03-14 068.053.003.204 624 430 2010-03-01 2010-03-01 200.082.249.128 846 430 2010-03-04 2010-03-04 078.232.068.216 2184 430 2010-02-23 2010-03-08 069.068.203.011 660 430 2009-11-09 2010-03-15 200.199.123.073 453 430 2010-02-09 2010-03-02 038.100.034.110 764 430 2009-05-19 2010-03-14 164.042.103.247 783 429 2010-02-23 2010-03-16 078.235.116.190 1082 429 2010-03-15 2010-03-15 067.093.021.113 752 429 2010-01-15 2010-02-16 208.080.193.033 1661 429 2010-01-08 2010-03-15 206.209.005.085 720 429 2010-02-12 2010-03-03 070.076.041.167 714 429 2009-12-10 2010-02-26 070.078.199.062 703 429 2010-01-15 2010-03-16 087.121.004.182 685 429 2010-01-20 2010-02-25 061.188.209.242 455 429 2010-03-10 2010-03-10 096.048.148.198 724 429 2010-01-26 2010-02-22 174.121.063.002 728 429 2010-02-14 2010-03-05 064.188.199.132 749 429 2009-12-26 2010-02-21 114.040.155.202 1711 429 2010-03-09 2010-03-12 095.095.176.171 762 429 2010-01-23 2010-03-01 213.100.117.221 841 429 2010-02-18 2010-03-12 082.079.072.109 752 429 2009-08-07 2010-03-11 088.039.178.234 716 429 2009-09-17 2010-03-15 069.193.075.177 774 429 2009-12-17 2010-03-14 093.081.252.156 737 429 2010-02-18 2010-03-16 173.029.138.156 757 429 2010-02-03 2010-03-13 072.184.189.128 682 429 2009-12-19 2010-02-18 190.145.005.083 826 429 2009-09-16 2010-02-27 077.241.037.142 744 429 2009-11-09 2010-02-18 188.093.120.002 717 429 2009-07-15 2010-03-14 111.233.089.095 567 429 2010-02-07 2010-03-09 111.068.097.017 1030 429 2010-03-08 2010-03-08 189.017.179.130 849 429 2010-01-18 2010-02-20 078.009.082.201 1133 429 2010-02-28 2010-02-28 217.217.143.141 740 428 2009-08-29 2010-03-13 115.133.237.175 428 428 2010-02-22 2010-02-22 218.166.103.017 727 428 2010-03-13 2010-03-15 139.055.073.068 585 428 2010-02-26 2010-02-26 208.080.193.039 1745 428 2009-09-24 2010-03-15 085.152.184.243 690 428 2010-02-09 2010-03-14 203.082.100.098 741 428 2009-11-06 2010-03-16 024.109.090.001 734 428 2010-02-19 2010-03-16 066.232.242.072 755 428 2009-12-08 2010-03-09 088.255.185.104 456 428 2010-03-03 2010-03-04 092.066.247.036 699 428 2009-11-11 2010-03-15 186.080.035.174 814 428 2010-03-04 2010-03-05 088.171.077.174 693 428 2009-06-14 2010-03-16 200.171.061.024 430 428 2010-03-10 2010-03-10 078.251.007.004 1200 428 2010-02-17 2010-02-17 125.066.029.003 739 428 2010-01-31 2010-03-16 080.076.063.072 721 428 2009-12-24 2010-03-14 078.241.033.015 1089 428 2010-03-01 2010-03-10 186.081.228.096 853 428 2010-03-04 2010-03-04 071.198.043.241 460 428 2010-03-02 2010-03-09 077.068.044.014 692 428 2010-02-18 2010-03-15 074.198.012.005 597 428 2010-01-05 2010-03-13 077.105.197.242 774 428 2010-01-18 2010-02-18 069.003.176.212 780 427 2010-02-14 2010-03-05 024.078.247.118 775 427 2010-02-16 2010-03-14 078.251.219.225 1119 427 2010-02-17 2010-02-17 211.144.100.065 522 427 2010-02-15 2010-02-15 024.078.207.204 744 427 2010-02-14 2010-03-15 070.065.087.062 716 427 2010-01-26 2010-02-27 024.079.089.124 699 427 2009-11-05 2010-03-14 208.044.100.007 752 427 2009-12-25 2010-03-13 074.113.071.025 708 427 2009-12-19 2010-02-22 114.034.124.042 739 427 2010-01-22 2010-03-13 095.130.173.104 533 427 2010-02-19 2010-02-24 070.060.186.002 748 427 2009-08-24 2010-03-15 198.108.082.191 758 427 2010-01-18 2010-03-16 084.043.144.082 754 427 2010-01-29 2010-02-26 078.228.190.005 1076 427 2010-01-26 2010-02-25 122.132.226.066 703 427 2009-10-02 2010-02-19 087.116.078.097 656 427 2010-01-23 2010-03-15 078.226.148.025 1088 427 2010-01-05 2010-02-25 221.115.095.078 760 427 2010-01-11 2010-02-18 194.100.041.234 834 427 2010-03-01 2010-03-09 087.245.151.074 738 427 2009-07-05 2010-03-13 193.106.124.213 3447 427 2010-01-05 2010-03-06 078.230.137.214 1056 427 2010-02-09 2010-03-01 066.015.231.121 721 427 2009-04-20 2010-03-14 201.251.006.226 451 427 2010-01-19 2010-02-23 194.046.007.002 426 426 2010-02-12 2010-02-24 077.232.000.039 758 426 2009-11-25 2010-03-13 088.161.048.204 715 426 2010-02-09 2010-03-12 115.030.171.081 740 426 2010-02-21 2010-03-13 066.190.188.028 736 426 2009-08-21 2010-03-13 074.003.052.030 757 426 2010-02-01 2010-03-12 173.027.240.192 752 426 2010-02-02 2010-02-21 076.008.212.013 809 426 2009-10-02 2010-03-13 188.129.204.043 563 426 2010-02-06 2010-03-11 209.213.232.157 836 426 2010-03-03 2010-03-06 065.005.135.192 726 426 2010-02-23 2010-03-15 218.210.094.011 426 426 2010-02-25 2010-02-26 085.171.038.119 743 426 2010-01-17 2010-02-17 207.012.168.050 717 426 2010-01-25 2010-03-15 143.132.204.084 721 426 2009-11-09 2010-03-05 080.068.244.039 865 426 2009-03-22 2010-02-15 078.184.036.231 430 426 2010-03-03 2010-03-10 200.249.150.011 710 426 2010-02-12 2010-03-16 092.070.057.084 704 426 2010-02-09 2010-03-02 064.062.191.200 710 426 2010-02-23 2010-03-15 212.199.249.206 755 425 2009-08-27 2010-03-12 220.168.081.004 425 425 2009-05-18 2010-03-13 060.028.062.228 432 425 2010-03-03 2010-03-13 078.133.205.158 506 425 2010-02-12 2010-03-07 068.066.163.089 1088 425 2009-11-23 2010-03-05 190.225.165.254 708 425 2009-04-08 2010-03-14 093.063.255.134 752 425 2009-12-20 2010-02-26 078.084.206.100 1316 425 2010-02-13 2010-02-14 064.210.045.122 1281 425 2010-03-11 2010-03-11 200.030.078.233 539 425 2010-01-30 2010-02-14 084.237.163.197 760 425 2009-08-14 2010-02-27 064.138.255.222 904 425 2010-03-03 2010-03-12 074.212.177.116 448 425 2010-03-08 2010-03-10 074.220.001.018 771 425 2010-01-26 2010-03-12 024.085.246.044 716 425 2009-12-15 2010-03-13 118.169.194.228 987 425 2010-03-04 2010-03-06 012.044.156.072 669 425 2009-04-17 2010-03-11 096.048.044.078 693 425 2009-10-19 2010-03-03 201.244.062.074 738 424 2010-02-13 2010-03-15 174.000.073.099 748 424 2010-01-02 2010-02-15 174.046.240.053 725 424 2010-01-09 2010-03-15 081.029.040.149 798 424 2009-08-15 2010-03-14 068.117.108.022 740 424 2010-01-18 2010-03-15 212.175.131.050 713 424 2009-10-27 2010-03-14 059.127.008.039 424 424 2009-11-22 2010-03-11 012.157.084.235 717 424 2010-02-23 2010-03-15 077.068.043.062 793 424 2010-02-23 2010-03-15 087.110.182.030 710 424 2010-01-03 2010-03-14 076.074.249.200 714 424 2009-06-05 2010-03-14 122.132.012.206 721 424 2010-02-05 2010-03-05 216.114.066.068 793 424 2010-02-20 2010-03-14 118.175.028.054 1315 424 2010-01-28 2010-02-19 078.058.029.218 524 424 2010-02-14 2010-02-14 186.081.225.102 1278 424 2010-02-21 2010-02-21 078.227.085.244 729 424 2009-07-03 2010-03-14 122.166.017.015 539 424 2010-03-11 2010-03-14 123.100.007.105 713 424 2009-11-08 2010-03-13 078.083.094.094 738 424 2010-02-07 2010-03-14 206.227.136.100 788 424 2010-02-09 2010-02-27 096.051.159.233 776 424 2010-02-18 2010-03-15 131.162.130.189 669 423 2010-02-02 2010-02-28 098.119.130.035 758 423 2009-12-10 2010-03-16 122.227.092.242 737 423 2010-01-11 2010-03-16 078.084.082.016 822 423 2010-02-24 2010-03-01 190.096.167.052 423 423 2010-02-22 2010-02-22 077.236.188.069 751 423 2010-02-04 2010-03-15 190.036.244.243 691 423 2010-03-06 2010-03-06 208.069.194.044 690 423 2010-02-11 2010-03-14 058.053.128.219 1487 423 2010-02-16 2010-02-22 089.028.077.119 700 423 2009-12-08 2010-03-16 095.173.163.088 693 423 2010-01-29 2010-03-16 093.156.035.216 1200 423 2010-02-14 2010-02-28 084.229.249.209 427 423 2010-02-26 2010-02-26 174.129.120.240 535 423 2010-02-24 2010-02-25 200.008.137.248 848 423 2010-02-23 2010-02-23 083.219.006.034 446 423 2009-12-19 2010-03-11 195.190.111.206 722 423 2010-01-13 2010-02-22 066.025.110.159 821 423 2010-01-04 2010-03-09 079.149.139.010 446 423 2010-03-06 2010-03-06 174.097.016.177 712 423 2010-02-25 2010-03-16 078.234.216.030 824 423 2009-05-22 2010-03-16 208.065.092.236 1672 423 2010-02-07 2010-03-14 089.165.005.027 428 423 2010-02-28 2010-03-02 201.173.041.054 570 423 2010-03-15 2010-03-15 060.054.115.130 1137 423 2010-02-24 2010-03-10 078.060.140.134 2961 423 2010-02-20 2010-02-20 096.052.053.156 729 423 2010-02-19 2010-03-12 200.046.247.078 842 423 2010-02-25 2010-02-25 086.104.131.225 467 423 2009-12-19 2010-03-06 008.012.097.173 1082 423 2010-03-06 2010-03-12 186.082.156.075 852 422 2010-03-04 2010-03-05 078.225.065.108 1055 422 2010-03-01 2010-03-01 077.075.098.070 720 422 2009-11-06 2010-03-13 200.030.190.010 851 422 2010-01-23 2010-03-14 202.070.227.099 14208 422 2009-12-01 2010-03-15 078.036.032.128 422 422 2010-03-12 2010-03-12 092.070.137.066 757 422 2009-11-14 2010-02-16 066.076.146.039 712 422 2009-11-23 2010-03-14 097.077.051.031 718 422 2009-12-24 2010-03-12 200.111.102.250 713 422 2009-08-26 2010-02-27 012.182.093.148 839 422 2009-12-24 2010-03-16 078.128.016.131 703 422 2010-03-15 2010-03-15 098.119.044.186 767 422 2010-01-22 2010-03-16 211.074.169.130 777 422 2010-02-26 2010-03-04 173.045.091.076 705 422 2010-02-21 2010-03-13 196.041.005.010 829 422 2010-02-27 2010-02-27 208.072.122.092 1371 422 2010-02-15 2010-02-15 200.050.025.049 745 422 2010-01-18 2010-03-14 074.218.198.094 1063 422 2010-01-06 2010-03-16 067.252.129.251 752 422 2010-02-09 2010-02-28 220.213.093.098 723 422 2010-02-24 2010-03-14 038.113.229.077 774 422 2009-07-22 2010-03-14 190.026.093.074 742 422 2009-10-04 2010-03-13 189.109.052.067 671 421 2009-10-19 2010-03-13 173.018.097.140 752 421 2010-02-05 2010-03-02 078.227.084.071 2590 421 2010-03-01 2010-03-08 080.084.053.034 802 421 2009-10-15 2010-02-15 116.199.160.149 740 421 2009-12-05 2010-03-08 124.038.113.119 723 421 2009-08-30 2010-03-06 212.041.046.003 687 421 2010-01-07 2010-03-15 058.220.232.003 691 421 2010-01-25 2010-02-17 200.029.097.070 739 421 2009-10-21 2010-03-15 060.251.200.067 720 421 2009-05-30 2010-03-11 219.147.252.037 568 421 2010-03-14 2010-03-14 208.104.189.155 844 421 2010-02-16 2010-02-23 088.180.172.062 716 421 2009-12-09 2010-03-10 041.196.149.055 422 421 2010-02-25 2010-02-26 222.085.089.242 696 421 2009-04-12 2010-02-24 064.188.192.019 741 421 2009-08-08 2010-03-16 208.127.144.040 729 421 2009-12-11 2010-03-04 064.188.187.213 29140 421 2010-02-26 2010-03-16 219.110.046.018 732 421 2009-11-19 2010-03-14 082.224.131.020 708 421 2009-10-31 2010-03-13 200.008.172.075 834 420 2010-03-04 2010-03-05 024.086.122.069 715 420 2009-12-21 2010-03-13 216.018.020.209 768 420 2009-10-05 2010-03-14 203.078.194.157 420 420 2010-02-28 2010-02-28 080.099.034.233 805 420 2010-02-03 2010-03-14 061.237.236.166 721 420 2009-09-04 2010-02-17 216.113.254.038 701 420 2009-12-22 2010-03-13 208.096.189.060 866 420 2010-02-27 2010-03-16 070.036.104.194 5016 420 2010-02-05 2010-02-15 061.251.161.232 715 420 2010-01-27 2010-03-16 201.127.032.232 423 420 2010-02-18 2010-03-05 095.087.230.254 718 420 2010-01-21 2010-03-12 174.000.022.203 793 420 2010-01-26 2010-02-16 077.068.043.008 796 420 2010-01-26 2010-03-12 087.097.194.013 746 420 2009-11-17 2010-03-14 186.097.086.233 435 420 2010-03-13 2010-03-13 079.002.212.103 420 420 2010-02-25 2010-02-26 093.156.004.181 720 420 2010-02-12 2010-03-15 200.163.003.249 421 420 2010-02-14 2010-02-14 070.125.084.169 713 420 2010-02-10 2010-03-16 118.010.182.244 695 420 2010-02-11 2010-03-05 096.010.095.094 693 420 2010-02-10 2010-03-16 078.062.012.252 1208 420 2010-03-08 2010-03-08 082.090.159.177 420 420 2010-03-11 2010-03-11 070.069.179.230 692 420 2010-02-03 2010-03-16 096.048.204.140 684 420 2009-11-24 2010-03-16 070.067.040.022 760 420 2010-01-26 2010-03-16 085.064.037.023 898 420 2010-02-01 2010-02-27 077.226.187.051 786 419 2009-11-16 2010-03-10 066.060.022.021 755 419 2009-09-18 2010-03-16 024.043.187.026 711 419 2010-02-25 2010-03-16 080.093.213.045 700 419 2009-09-04 2010-02-28 077.047.054.230 792 419 2010-02-18 2010-03-15 098.025.095.010 725 419 2010-02-22 2010-03-16 089.037.014.059 871 419 2009-08-27 2010-03-15 067.011.012.215 730 419 2010-01-31 2010-03-01 089.096.158.058 710 419 2009-10-29 2010-02-23 024.032.237.089 725 419 2010-01-23 2010-03-13 024.078.161.006 746 419 2010-01-30 2010-03-03 087.202.222.070 746 419 2009-09-30 2010-03-16 186.081.231.070 841 419 2010-02-26 2010-02-26 194.158.042.130 807 419 2010-02-18 2010-03-14 070.062.224.132 516 419 2010-03-09 2010-03-11 064.144.035.074 729 419 2010-01-18 2010-03-15 024.044.238.057 421 419 2010-03-02 2010-03-02 159.075.112.028 697 419 2010-02-19 2010-03-15 095.087.247.110 811 419 2010-02-06 2010-03-11 096.054.106.198 688 419 2010-02-13 2010-03-08 173.019.136.112 708 418 2010-02-17 2010-03-14 208.043.066.172 480 418 2010-02-15 2010-02-16 203.248.031.118 731 418 2010-01-23 2010-03-15 096.048.154.206 675 418 2010-01-24 2010-02-18 202.046.142.216 716 418 2010-01-04 2010-03-12 206.248.213.094 777 418 2010-02-20 2010-03-14 212.097.034.229 786 418 2009-10-03 2010-03-14 064.183.178.224 418 418 2010-03-05 2010-03-05 087.082.252.043 740 418 2009-11-25 2010-03-16 217.114.098.003 676 418 2009-10-04 2010-03-15 196.205.143.047 418 418 2010-02-26 2010-02-26 075.101.170.156 467 418 2010-02-27 2010-02-28 067.132.242.117 724 418 2010-02-12 2010-02-15 077.049.235.018 418 418 2010-02-26 2010-02-26 077.226.186.106 696 418 2010-02-25 2010-03-16 062.105.078.060 690 418 2009-08-17 2010-03-15 174.005.185.171 759 418 2009-12-03 2010-03-14 212.245.252.190 765 418 2009-11-13 2010-02-22 069.038.004.040 705 418 2009-12-13 2010-03-12 024.076.057.015 715 418 2010-01-07 2010-03-13 116.228.224.050 661 418 2010-01-24 2010-03-12 209.055.118.059 716 418 2010-01-07 2010-03-16 064.234.005.106 737 417 2010-02-19 2010-03-15 088.171.093.078 696 417 2009-09-30 2010-03-16 201.093.227.053 422 417 2010-02-12 2010-02-18 121.014.240.066 631 417 2010-02-24 2010-02-25 159.075.112.040 714 417 2009-12-04 2010-03-10 069.038.004.041 694 417 2009-12-20 2010-03-11 070.076.087.231 745 417 2010-02-22 2010-03-16 213.213.234.189 879 417 2010-02-21 2010-02-28 129.093.134.168 682 417 2010-01-14 2010-03-01 069.069.130.027 837 417 2010-01-24 2010-03-15 213.064.141.019 670 417 2009-11-17 2010-02-17 012.048.046.076 708 417 2009-08-19 2010-03-12 077.242.154.179 679 417 2010-01-21 2010-02-23 083.103.018.109 723 417 2009-11-11 2010-03-14 024.067.019.096 658 417 2009-07-05 2010-02-25 088.079.235.049 782 417 2009-12-31 2010-03-15 092.125.213.202 1948 417 2010-02-19 2010-02-19 081.075.137.083 440 417 2010-02-26 2010-02-26 190.159.175.088 837 417 2010-02-21 2010-02-21 061.177.042.232 477 417 2009-12-24 2010-02-22 074.118.193.040 843 417 2010-02-20 2010-03-16 089.046.181.079 689 417 2010-02-04 2010-03-12 114.036.170.135 1249 416 2010-02-28 2010-02-28 221.011.138.066 1125 416 2010-03-04 2010-03-16 095.060.102.081 731 416 2010-02-04 2010-03-13 209.097.215.169 1740 416 2010-01-16 2010-03-02 190.055.108.104 833 416 2010-03-04 2010-03-05 086.058.165.091 778 416 2009-03-15 2010-03-14 203.248.250.043 448 416 2010-02-27 2010-02-27 200.049.007.244 698 416 2010-01-10 2010-02-16 091.188.105.012 690 416 2009-10-17 2010-03-05 077.068.042.080 685 416 2010-02-19 2010-03-15 190.209.171.019 830 416 2010-03-04 2010-03-13 070.065.139.132 688 416 2010-01-04 2010-03-05 174.003.014.096 844 416 2010-02-10 2010-02-28 207.115.090.004 706 416 2010-02-24 2010-03-16 192.168.001.030 1643 416 2010-02-26 2010-02-26 084.253.184.054 705 416 2010-02-08 2010-03-16 091.146.164.031 680 416 2009-09-26 2010-03-12 119.082.146.010 690 416 2010-01-12 2010-03-16 024.071.017.097 700 416 2010-01-03 2010-03-15 211.100.042.083 833 416 2010-02-07 2010-02-21 122.117.068.206 718 416 2009-11-13 2010-03-11 078.248.148.037 1014 416 2010-03-02 2010-03-05 078.131.047.210 1189 416 2009-12-22 2010-03-09 078.084.190.220 578 416 2010-02-08 2010-02-14 200.179.033.122 558 416 2010-02-19 2010-03-02 190.069.013.115 751 415 2010-02-03 2010-03-12 072.051.185.154 671 415 2009-12-26 2010-03-12 024.105.235.054 660 415 2009-11-23 2010-02-15 072.072.078.159 749 415 2009-11-11 2010-03-14 118.108.229.101 667 415 2010-02-10 2010-03-04 078.236.092.124 1072 415 2010-01-26 2010-03-06 203.153.039.018 1751 415 2009-05-12 2010-03-13 095.025.108.041 825 415 2010-03-04 2010-03-04 189.062.136.083 812 415 2009-12-24 2010-03-01 190.159.056.106 831 415 2010-03-04 2010-03-04 217.023.015.046 730 415 2010-02-21 2010-03-15 081.181.064.006 726 415 2009-08-29 2010-03-03 151.100.007.138 739 415 2010-02-04 2010-03-12 218.208.252.074 4943 415 2010-02-12 2010-03-01 217.076.200.109 717 415 2009-07-23 2010-03-10 208.072.123.125 1118 415 2010-02-27 2010-02-27 094.075.209.041 755 415 2010-02-02 2010-03-02 070.021.248.040 698 415 2009-12-06 2010-03-15 038.100.019.104 715 415 2010-01-06 2010-03-16 208.077.059.117 696 415 2010-01-26 2010-03-15 086.109.112.017 761 415 2010-01-30 2010-02-19 078.061.161.018 1212 415 2010-02-17 2010-02-21 041.196.218.087 415 415 2010-02-25 2010-02-26 190.068.066.060 755 414 2009-11-16 2010-02-27 208.068.089.104 680 414 2010-02-12 2010-03-01 124.011.140.197 15537 414 2010-02-17 2010-02-17 085.228.141.129 415 414 2009-12-11 2010-03-15 078.107.238.147 730 414 2010-01-07 2010-02-19 140.113.080.044 727 414 2009-09-27 2010-02-28 083.167.104.189 694 414 2010-01-23 2010-02-21 151.001.152.096 699 414 2009-11-14 2010-03-14 213.079.120.086 692 414 2009-12-19 2010-03-16 208.072.123.069 906 414 2010-02-24 2010-02-24 065.175.192.182 437 414 2010-02-24 2010-02-24 219.133.105.157 743 414 2009-12-07 2010-03-05 080.084.049.164 827 414 2010-01-26 2010-02-14 077.245.075.114 586 414 2010-02-19 2010-02-24 180.218.029.025 691 414 2010-01-28 2010-03-13 084.237.215.018 413 413 2010-01-27 2010-02-16 118.160.243.248 452 413 2010-02-22 2010-02-22 211.075.245.076 729 413 2009-09-20 2010-03-13 098.242.210.249 732 413 2010-01-01 2010-02-15 078.226.246.130 843 413 2010-03-01 2010-03-10 041.245.058.091 6929 413 2010-02-10 2010-02-25 092.065.100.053 749 413 2009-12-22 2010-02-18 217.145.247.107 1164 413 2010-02-17 2010-02-17 024.082.176.199 687 413 2010-01-20 2010-03-14 088.002.123.190 722 413 2009-12-18 2010-03-14 202.129.005.082 2504 413 2009-11-16 2010-03-16 193.034.068.233 665 413 2009-12-02 2010-03-15 094.242.036.196 768 413 2010-02-15 2010-03-15 072.090.192.042 720 413 2010-02-18 2010-03-13 070.084.080.090 765 413 2009-09-12 2010-03-10 095.211.032.021 689 413 2009-12-04 2010-03-15 072.068.067.023 642 413 2010-01-26 2010-03-13 109.070.067.053 765 413 2010-02-14 2010-03-13 092.045.006.058 706 413 2010-01-22 2010-03-13 195.191.102.056 429 413 2010-03-16 2010-03-16 024.087.035.174 718 412 2010-02-21 2010-03-13 041.196.210.077 412 412 2010-02-25 2010-02-26 069.057.239.201 679 412 2009-07-06 2010-03-16 209.019.051.093 740 412 2009-09-30 2010-03-12 012.153.032.076 654 412 2010-02-25 2010-02-27 124.042.102.010 412 412 2010-03-04 2010-03-04 089.122.197.184 722 412 2010-02-14 2010-03-15 208.077.171.242 737 412 2009-06-11 2010-03-13 139.055.073.047 544 412 2010-02-16 2010-02-16 187.141.068.069 681 412 2009-07-03 2010-03-16 122.135.112.038 718 412 2010-02-04 2010-02-23 070.046.190.251 710 412 2010-01-22 2010-03-06 190.008.045.254 732 412 2009-07-29 2010-03-16 201.196.254.014 696 412 2009-12-08 2010-03-12 195.056.096.127 826 412 2009-11-25 2010-02-15 118.100.100.026 707 412 2010-02-18 2010-03-11 077.079.065.085 732 412 2009-12-09 2010-03-13 070.075.195.149 777 412 2010-01-25 2010-03-02 187.009.058.026 686 412 2009-07-01 2010-03-13 024.179.004.222 699 412 2010-01-18 2010-02-23 074.004.206.017 768 411 2010-01-26 2010-02-20 085.121.254.044 695 411 2009-12-25 2010-03-05 082.243.192.168 1520 411 2009-03-09 2010-03-15 124.038.085.016 667 411 2010-01-23 2010-02-27 071.077.065.069 788 411 2010-01-23 2010-02-25 188.064.049.125 676 411 2010-01-28 2010-02-23 086.063.090.184 693 411 2009-11-06 2010-03-13 094.053.192.021 674 411 2009-08-09 2010-03-04 122.100.032.157 694 411 2010-02-17 2010-03-16 078.226.206.215 2331 411 2010-01-02 2010-02-14 190.209.072.010 433 411 2010-03-15 2010-03-15 218.006.162.007 483 411 2010-02-10 2010-02-24 086.034.198.074 675 411 2009-10-16 2010-03-11 024.079.231.096 733 411 2010-02-01 2010-03-13 038.097.239.022 734 411 2010-02-03 2010-03-16 077.104.217.242 561 411 2010-03-05 2010-03-08 200.113.109.155 4160 411 2009-08-19 2010-03-15 114.032.134.043 743 411 2009-10-21 2010-03-11 024.043.233.069 755 411 2010-01-27 2010-03-15 212.095.046.062 495 411 2010-02-22 2010-02-22 112.140.186.009 675 411 2009-12-29 2010-02-21 196.012.157.045 503 411 2010-02-16 2010-02-20 089.253.137.075 687 411 2010-02-05 2010-03-13 123.103.064.051 965 411 2010-02-25 2010-03-02 061.019.244.124 524 411 2010-03-09 2010-03-09 078.107.252.119 751 410 2010-01-29 2010-03-14 190.024.001.006 662 410 2009-12-10 2010-03-15 095.211.101.138 501 410 2010-02-27 2010-02-27 194.070.053.036 671 410 2010-02-26 2010-03-14 124.032.058.056 667 410 2009-11-11 2010-03-15 212.093.141.162 675 410 2009-12-23 2010-03-12 200.032.233.133 723 410 2010-02-03 2010-03-12 125.197.198.221 706 410 2010-02-01 2010-02-22 093.104.211.045 686 410 2010-02-24 2010-03-16 083.018.023.253 675 410 2010-01-21 2010-03-16 201.083.124.019 736 410 2010-02-03 2010-02-23 150.164.090.213 945 410 2010-03-10 2010-03-12 085.068.251.186 729 410 2010-02-03 2010-02-27 071.042.083.170 707 410 2010-02-22 2010-03-16 219.146.211.122 436 410 2010-03-13 2010-03-13 089.046.117.061 655 410 2009-11-17 2010-03-09 208.005.151.111 695 410 2009-10-28 2010-03-06 118.160.209.184 1177 410 2010-02-17 2010-02-18 072.025.082.007 731 410 2010-01-29 2010-03-14 130.034.129.004 444 410 2010-02-16 2010-02-16 086.060.215.127 725 410 2009-04-08 2010-03-02 094.155.115.218 595 410 2010-01-30 2010-03-01 070.079.155.235 765 410 2010-02-20 2010-03-15 075.010.208.204 718 410 2010-02-12 2010-03-16 202.166.193.048 1497 410 2010-03-06 2010-03-07 059.148.233.166 409 409 2010-02-21 2010-02-21 089.036.085.017 726 409 2009-07-13 2010-03-15 083.019.108.213 678 409 2009-06-17 2010-03-11 092.255.109.046 669 409 2010-02-16 2010-03-12 061.176.216.036 659 409 2009-12-27 2010-02-24 122.147.127.185 666 409 2010-01-23 2010-03-10 220.105.253.078 783 409 2010-02-06 2010-02-23 078.130.205.004 893 409 2010-01-28 2010-02-18 202.071.103.102 683 409 2009-05-06 2010-03-14 084.108.209.252 791 409 2010-02-01 2010-03-14 089.016.088.200 687 409 2010-01-23 2010-02-15 114.111.053.055 663 409 2010-01-11 2010-03-15 124.029.207.019 704 409 2009-02-13 2010-03-04 065.041.157.101 3690 409 2009-08-10 2010-03-14 059.120.235.183 845 409 2009-07-15 2010-03-10 211.180.248.010 807 409 2009-12-24 2010-03-12 092.068.191.011 701 409 2010-01-28 2010-03-02 066.065.189.223 737 409 2010-01-04 2010-02-15 093.156.040.246 584 409 2010-02-25 2010-03-15 173.045.087.055 668 409 2010-01-23 2010-03-08 189.108.200.090 670 409 2009-11-25 2010-03-15 096.049.147.052 690 409 2010-02-23 2010-03-14 078.251.245.015 991 409 2010-02-22 2010-02-22 084.124.087.254 752 408 2009-12-03 2010-03-10 202.046.193.014 553 408 2010-03-12 2010-03-12 096.043.128.034 669 408 2010-01-05 2010-02-15 200.043.013.002 436 408 2010-02-15 2010-02-15 216.106.041.089 731 408 2010-01-23 2010-02-15 089.036.083.033 724 408 2010-01-31 2010-03-13 089.132.181.082 691 408 2009-09-19 2010-02-18 174.044.039.084 693 408 2009-12-27 2010-03-15 208.072.125.181 1045 408 2010-02-05 2010-02-15 069.016.161.050 715 408 2010-02-25 2010-03-15 091.209.196.076 588 408 2009-11-06 2010-03-05 061.166.005.235 537 408 2010-01-25 2010-03-15 128.180.223.085 698 408 2010-01-20 2010-03-16 082.243.121.137 723 408 2009-10-03 2010-03-09 115.238.088.226 688 408 2010-01-10 2010-03-15 069.034.037.068 718 408 2010-02-04 2010-03-13 122.117.106.010 684 408 2010-01-13 2010-03-13 208.072.123.065 834 408 2010-03-09 2010-03-09 089.175.178.123 658 408 2010-01-13 2010-03-16 210.183.165.024 474 408 2010-02-17 2010-03-01 173.027.243.223 733 408 2009-12-09 2010-03-12 086.124.026.192 684 408 2010-01-27 2010-03-10 124.011.066.204 803 407 2009-12-26 2010-03-13 070.021.253.046 685 407 2010-02-17 2010-03-08 207.182.159.008 673 407 2010-01-03 2010-03-02 200.006.215.114 749 407 2009-09-04 2010-03-11 124.160.114.242 1514 407 2010-03-05 2010-03-05 196.002.194.081 666 407 2009-10-14 2010-03-16 024.076.061.134 666 407 2009-12-09 2010-03-16 071.103.095.124 661 407 2010-02-16 2010-03-07 085.186.138.062 677 407 2009-11-08 2010-03-01 124.032.253.222 760 407 2010-02-10 2010-03-08 078.061.045.048 980 407 2010-02-09 2010-03-15 186.084.246.080 792 407 2010-03-04 2010-03-05 139.055.103.036 557 407 2010-03-08 2010-03-08 097.077.082.178 688 407 2009-12-08 2010-02-27 067.055.179.136 788 407 2010-02-14 2010-03-10 064.056.064.132 732 407 2010-02-27 2010-03-16 110.174.228.242 407 407 2010-02-16 2010-02-16 071.000.081.093 727 406 2010-02-11 2010-03-02 194.069.195.197 699 406 2010-02-17 2010-03-14 190.209.108.004 1214 406 2010-02-26 2010-02-26 059.124.022.042 657 406 2009-11-06 2010-03-14 094.082.083.003 717 406 2010-02-09 2010-03-16 190.157.089.115 807 406 2010-02-24 2010-02-24 075.126.233.018 798 406 2010-02-22 2010-03-15 173.045.080.136 689 406 2009-12-06 2010-02-23 150.146.142.033 659 406 2009-12-17 2010-03-15 118.097.061.002 1219 406 2009-12-14 2010-03-12 208.127.229.102 749 406 2009-10-20 2010-03-14 095.158.138.136 674 406 2009-06-30 2010-03-13 131.162.129.076 632 406 2010-02-02 2010-03-02 188.128.096.106 409 406 2010-02-26 2010-02-26 089.155.003.234 660 406 2010-02-01 2010-02-27 190.068.077.146 683 406 2009-06-14 2010-03-16 085.187.193.200 671 406 2010-01-20 2010-03-13 086.126.131.181 706 406 2009-09-06 2010-03-14 080.066.125.011 674 406 2010-02-27 2010-03-16 091.201.240.081 791 406 2010-02-09 2010-03-11 125.234.238.134 1402 406 2010-02-19 2010-02-22 190.040.228.219 406 406 2010-02-23 2010-02-27 094.085.016.114 719 406 2010-01-21 2010-03-12 220.134.062.095 737 406 2009-11-29 2010-03-14 115.095.220.235 2529 406 2009-11-20 2010-02-24 190.233.028.254 406 406 2010-02-19 2010-02-19 078.235.024.082 979 405 2010-02-05 2010-02-14 201.245.038.018 685 405 2009-11-25 2010-03-15 208.072.231.221 1630 405 2010-03-03 2010-03-04 087.121.049.134 538 405 2010-03-04 2010-03-10 082.078.146.034 712 405 2010-02-11 2010-03-15 070.060.120.069 664 405 2010-02-19 2010-03-10 193.218.015.024 416 405 2010-02-16 2010-03-10 088.170.063.066 679 405 2010-01-06 2010-03-14 061.147.117.048 852 405 2010-03-14 2010-03-15 069.057.200.246 706 405 2009-07-13 2010-03-16 065.164.057.181 7023 405 2009-12-19 2010-02-15 077.061.029.028 698 405 2010-02-23 2010-03-16 089.028.116.062 688 405 2009-12-31 2010-03-14 217.164.115.225 561 405 2010-02-23 2010-02-23 078.038.132.101 1021 405 2009-12-14 2010-03-10 066.109.182.069 686 405 2009-12-20 2010-03-16 066.006.052.012 655 405 2009-10-31 2010-03-14 208.126.064.024 672 405 2009-05-26 2010-03-05 098.116.033.118 688 405 2010-02-19 2010-03-16 059.105.157.103 711 405 2010-02-05 2010-03-14 066.060.198.214 6559 405 2010-02-11 2010-03-15 119.073.219.242 12121 405 2010-02-24 2010-03-02 078.008.217.070 656 404 2010-02-13 2010-02-14 024.035.053.041 780 404 2010-02-05 2010-03-10 078.232.089.216 1400 404 2010-03-05 2010-03-08 096.052.168.247 652 404 2010-01-27 2010-02-16 124.217.219.142 770 404 2010-02-02 2010-03-13 078.229.225.064 1061 404 2010-03-01 2010-03-08 194.085.147.042 688 404 2009-11-30 2010-03-12 070.067.025.001 660 404 2010-02-06 2010-03-15 113.036.055.027 40816 404 2009-09-20 2010-03-06 202.158.046.233 693 404 2010-02-08 2010-03-16 083.097.186.219 751 404 2010-02-10 2010-03-08 089.118.177.083 663 404 2009-03-07 2010-03-14 082.059.156.064 404 404 2010-02-16 2010-02-16 062.118.128.004 764 404 2010-01-11 2010-02-26 200.119.004.098 741 404 2009-04-18 2010-03-08 200.119.010.074 815 404 2009-11-12 2010-03-15 064.004.099.032 729 404 2010-03-14 2010-03-15 087.121.228.186 662 404 2010-01-11 2010-03-16 082.147.211.078 935 404 2010-01-03 2010-03-02 174.007.005.194 708 404 2010-02-26 2010-03-16 085.186.217.230 481 404 2010-01-28 2010-02-19 038.100.011.109 658 404 2010-02-17 2010-03-15 208.122.052.034 419 404 2010-02-08 2010-03-10 058.068.224.067 636 404 2010-02-25 2010-03-04 095.154.249.066 706 404 2010-01-27 2010-02-14 088.163.091.024 666 403 2009-10-13 2010-03-15 064.074.018.012 776 403 2009-12-19 2010-03-16 085.217.146.183 647 403 2009-09-08 2010-03-14 088.057.243.178 711 403 2009-11-11 2010-03-13 174.001.141.076 664 403 2010-02-22 2010-03-15 212.245.252.104 769 403 2010-02-07 2010-03-13 201.134.072.241 871 403 2010-02-17 2010-03-01 093.156.160.250 675 403 2010-02-12 2010-03-13 081.025.050.026 403 403 2010-02-26 2010-02-26 076.189.144.085 676 403 2010-01-30 2010-03-14 070.044.193.155 738 403 2010-01-26 2010-03-08 060.019.018.134 1284 403 2009-11-11 2010-03-11 218.252.178.159 521 403 2009-12-26 2010-03-14 077.037.207.024 795 403 2009-11-27 2010-02-21 186.122.017.004 810 403 2010-03-04 2010-03-04 173.019.155.166 675 403 2010-02-15 2010-03-11 024.103.118.072 668 403 2010-01-11 2010-02-27 062.117.123.103 796 403 2009-09-09 2010-03-11 074.118.193.024 723 403 2010-02-04 2010-03-15 064.060.192.002 518 403 2010-03-07 2010-03-07 096.054.232.054 1144 403 2010-03-08 2010-03-08 186.080.107.109 801 403 2010-02-21 2010-02-21 195.200.082.161 477 403 2010-03-10 2010-03-13 216.086.037.117 663 403 2009-12-11 2010-03-13 204.029.096.231 673 403 2009-10-11 2010-03-14 186.080.058.177 812 403 2010-03-04 2010-03-04 077.236.164.102 669 403 2009-12-12 2010-03-16 094.075.064.068 716 403 2010-01-26 2010-03-15 083.235.148.132 652 402 2009-07-09 2010-03-16 207.157.055.066 939 402 2009-11-04 2010-03-11 074.065.210.148 682 402 2009-11-11 2010-02-18 082.229.057.060 684 402 2009-06-15 2010-03-14 082.234.185.219 666 402 2009-11-25 2010-03-16 064.095.047.051 402 402 2010-03-04 2010-03-04 203.123.179.054 716 402 2009-12-29 2010-03-15 098.101.225.037 705 402 2010-02-18 2010-03-15 098.126.073.002 408 402 2010-03-03 2010-03-03 218.240.032.102 438 402 2010-02-09 2010-02-20 122.147.109.099 684 402 2009-12-21 2010-03-10 122.132.047.078 757 402 2010-02-05 2010-02-23 082.076.056.143 652 402 2010-01-13 2010-03-14 087.097.203.226 760 402 2009-05-23 2010-03-14 173.020.013.110 700 402 2010-01-13 2010-02-23 186.018.159.200 565 402 2010-03-15 2010-03-15 222.013.176.033 660 401 2010-01-30 2010-02-15 084.012.011.063 687 401 2009-11-14 2010-03-13 064.034.173.160 663 401 2009-06-05 2010-03-16 121.011.083.002 427 401 2010-02-21 2010-02-21 208.053.168.028 762 401 2010-01-13 2010-03-15 091.102.114.103 688 401 2009-07-03 2010-03-15 080.073.001.147 709 401 2009-12-12 2010-03-13 074.078.150.177 707 401 2010-02-07 2010-03-16 072.055.140.068 680 401 2009-10-27 2010-03-16 064.076.064.042 733 401 2010-01-24 2010-03-14 064.173.244.082 914 401 2010-02-03 2010-02-24 216.240.248.218 733 401 2009-12-31 2010-02-15 174.000.249.183 682 401 2009-11-05 2010-03-13 024.076.052.222 793 401 2010-02-19 2010-03-16 092.247.246.053 571 401 2010-01-17 2010-03-15 201.155.078.160 401 401 2010-02-03 2010-02-26 082.079.051.140 490 401 2010-03-14 2010-03-15 083.097.175.001 750 401 2010-02-03 2010-03-01 087.121.030.086 684 401 2009-11-23 2010-03-16 125.046.036.120 605 401 2010-02-16 2010-02-16 038.107.190.013 682 401 2009-09-23 2010-03-02 115.124.103.020 662 401 2010-02-19 2010-03-14 211.072.230.036 715 401 2010-01-23 2010-03-12 091.092.169.222 648 401 2010-01-20 2010-03-12 085.024.179.032 659 401 2010-02-02 2010-03-10 190.233.212.080 400 400 2010-02-23 2010-02-25 066.231.163.134 905 400 2009-06-21 2010-03-12 207.182.159.013 1121 400 2010-02-16 2010-03-03 213.139.178.012 2235 400 2009-11-16 2010-03-10 194.141.086.132 765 400 2009-11-05 2010-03-15 066.153.175.151 716 400 2010-01-18 2010-03-12 203.194.118.125 1085 400 2009-12-26 2010-02-23 024.186.038.075 665 400 2010-02-19 2010-03-14 095.082.033.252 864 400 2010-02-03 2010-02-24 078.237.069.123 795 400 2009-12-19 2010-02-24 085.234.173.023 720 400 2010-01-23 2010-03-02 209.115.155.215 716 400 2009-10-27 2010-03-06 125.174.011.068 704 400 2010-01-30 2010-02-15 074.080.043.013 681 400 2010-02-09 2010-03-14 067.076.167.086 620 400 2009-08-18 2010-02-23 211.115.127.100 724 400 2009-11-25 2010-02-21 193.040.240.076 676 400 2009-11-19 2010-03-14 064.038.066.220 726 400 2010-01-06 2010-03-15 078.251.037.043 1042 400 2010-02-25 2010-02-26 078.185.016.173 400 400 2010-02-17 2010-02-26 012.048.046.089 692 400 2010-02-17 2010-03-16 218.075.120.155 400 400 2010-03-15 2010-03-15 096.011.221.182 739 400 2010-02-10 2010-02-27 070.065.020.070 675 400 2009-11-22 2010-02-16 208.072.122.110 949 400 2010-02-15 2010-02-15 068.168.018.158 675 400 2010-01-09 2010-03-15 211.021.228.109 729 399 2010-02-02 2010-03-14 068.168.018.026 664 399 2009-10-20 2010-03-14 083.243.067.176 689 399 2010-01-31 2010-03-11 200.155.027.054 673 399 2009-10-05 2010-03-14 084.090.226.209 721 399 2009-12-07 2010-02-23 189.082.209.134 675 399 2010-01-25 2010-02-18 071.116.105.183 623 399 2010-01-31 2010-02-17 203.186.109.104 2502 399 2010-02-10 2010-03-14 208.043.196.093 662 399 2010-02-21 2010-03-12 094.021.169.008 647 399 2010-01-29 2010-03-09 078.250.191.117 763 399 2010-03-04 2010-03-05 094.125.008.014 654 399 2009-12-23 2010-03-14 122.117.233.229 662 399 2010-01-25 2010-03-14 211.075.067.009 748 399 2009-12-03 2010-03-14 208.072.125.163 837 399 2010-02-26 2010-03-15 077.081.112.099 727 399 2009-08-31 2010-03-03 173.020.077.076 668 399 2010-02-23 2010-03-16 024.123.251.228 662 399 2010-02-19 2010-03-14 081.093.155.023 672 399 2010-02-17 2010-03-09 069.246.001.154 730 399 2010-02-18 2010-03-15 186.082.220.030 794 399 2010-03-04 2010-03-04 078.036.061.218 756 399 2009-06-06 2010-03-13 089.042.201.183 681 399 2010-01-31 2010-03-16 190.254.159.050 719 399 2009-09-23 2010-03-16 084.036.028.184 399 399 2010-02-25 2010-02-26 088.179.120.036 673 399 2010-02-01 2010-03-15 070.076.114.044 646 399 2010-01-21 2010-02-15 088.164.108.194 709 399 2010-01-28 2010-03-16 076.011.251.054 668 398 2010-02-21 2010-03-16 070.064.219.109 545 398 2010-02-05 2010-03-01 078.061.055.141 1242 398 2010-03-06 2010-03-08 208.167.249.172 542 398 2010-03-04 2010-03-05 078.251.054.069 1145 398 2010-02-28 2010-03-01 068.196.121.194 398 398 2010-02-25 2010-03-16 095.088.138.224 691 398 2010-02-05 2010-03-16 180.218.027.083 665 398 2010-01-26 2010-02-26 210.056.025.006 1544 398 2010-03-01 2010-03-11 190.218.063.035 864 398 2010-02-11 2010-02-18 173.169.073.004 663 398 2010-01-20 2010-03-15 065.049.028.137 1275 398 2010-02-28 2010-03-01 124.115.017.035 7489 398 2010-02-24 2010-03-11 173.028.173.151 791 398 2009-12-30 2010-02-23 085.122.081.116 632 398 2009-11-14 2010-03-10 064.164.126.074 453 398 2009-12-12 2010-02-14 212.220.177.050 699 398 2009-05-12 2010-03-16 087.097.199.189 725 398 2009-09-22 2010-03-12 081.004.182.090 688 398 2009-10-09 2010-03-16 212.107.140.002 767 398 2009-10-20 2010-03-15 062.100.154.188 577 398 2010-02-16 2010-02-24 195.250.188.012 957 398 2009-11-11 2010-02-23 122.117.091.155 740 398 2009-11-11 2010-03-14 087.121.156.204 644 398 2009-12-17 2010-03-13 078.097.059.127 186358 398 2009-11-05 2010-02-28 148.233.150.147 735 398 2010-01-15 2010-03-14 096.024.139.079 734 398 2010-02-04 2010-03-14 098.154.018.085 671 397 2010-01-19 2010-02-22 203.248.145.099 916 397 2010-02-27 2010-03-02 121.052.212.065 440 397 2010-02-15 2010-02-16 114.149.213.166 683 397 2010-02-18 2010-03-08 098.203.063.102 669 397 2010-02-18 2010-03-14 208.102.209.193 779 397 2010-01-06 2010-03-07 082.104.128.009 612 397 2010-02-07 2010-03-10 212.163.073.007 670 397 2009-07-13 2010-03-16 120.074.231.032 658 397 2010-02-17 2010-03-14 024.025.063.030 734 397 2010-02-25 2010-03-14 071.071.237.211 736 397 2010-02-03 2010-02-24 194.087.013.179 1138 397 2009-09-30 2010-03-15 203.109.048.113 1632 397 2009-12-17 2010-02-27 074.073.041.073 752 397 2009-11-24 2010-02-14 059.108.085.026 616 397 2010-03-10 2010-03-10 076.076.104.018 660 397 2010-02-24 2010-03-15 222.092.043.020 718 397 2009-10-07 2010-02-28 062.004.043.020 663 397 2009-07-19 2010-03-05 192.115.018.052 663 397 2009-10-27 2010-03-14 089.128.028.098 398 397 2010-02-14 2010-02-14 071.102.011.199 677 397 2010-02-26 2010-03-16 096.048.014.022 439 397 2010-02-17 2010-03-15 194.181.095.071 2610 397 2010-03-06 2010-03-09 213.002.020.042 850 397 2010-01-20 2010-03-05 118.169.198.218 1015 397 2010-03-08 2010-03-09 208.084.170.186 655 397 2009-10-28 2010-03-15 094.101.045.083 740 397 2010-01-12 2010-03-15 174.036.001.062 677 397 2010-02-22 2010-02-22 086.107.076.131 715 397 2009-03-22 2010-03-13 089.036.185.007 678 397 2010-02-11 2010-03-16 190.210.002.148 650 396 2009-07-04 2010-03-15 072.070.218.020 396 396 2010-02-24 2010-02-24 078.224.252.071 965 396 2010-03-03 2010-03-04 024.172.038.167 680 396 2010-02-14 2010-03-10 092.063.130.090 706 396 2009-09-16 2010-03-15 212.048.045.018 795 396 2009-04-12 2010-03-15 068.161.154.170 749 396 2010-03-03 2010-03-04 089.046.013.212 663 396 2009-06-24 2010-03-13 024.086.113.138 684 396 2009-09-07 2010-03-14 024.067.080.218 701 396 2010-02-01 2010-02-20 195.034.098.223 745 396 2010-01-21 2010-02-23 068.203.087.218 726 396 2010-01-26 2010-02-28 078.236.173.017 660 396 2009-11-16 2010-03-10 173.021.064.089 650 396 2009-03-10 2010-03-15 087.120.222.165 741 396 2009-06-01 2010-02-22 086.121.092.082 668 396 2009-08-22 2010-03-15 077.241.065.025 654 396 2009-12-10 2010-03-12 096.048.158.071 697 396 2009-10-31 2010-03-16 095.089.136.241 704 396 2010-01-11 2010-03-03 095.084.134.013 728 396 2010-01-24 2010-03-05 219.087.131.030 675 396 2009-06-18 2010-03-15 208.072.125.175 990 396 2010-03-03 2010-03-14 088.020.016.206 863 395 2010-01-23 2010-02-27 024.199.205.252 675 395 2009-09-24 2010-03-12 212.058.141.055 791 395 2009-01-22 2010-02-23 078.083.051.105 644 395 2009-09-19 2010-03-13 072.035.182.027 647 395 2010-01-17 2010-03-16 208.083.056.073 665 395 2010-02-21 2010-03-16 089.106.105.105 668 395 2009-12-07 2010-03-13 118.169.198.226 426 395 2010-02-18 2010-02-19 061.191.062.199 595 395 2009-11-30 2010-02-19 012.049.202.053 683 395 2009-11-11 2010-03-01 082.079.025.027 752 395 2010-01-08 2010-03-15 061.049.008.132 561 395 2010-02-08 2010-02-17 200.014.234.066 665 395 2009-07-09 2010-03-09 081.137.023.019 639 395 2009-10-23 2010-03-14 207.182.238.198 563 395 2010-02-28 2010-03-09 070.127.049.110 673 395 2009-08-01 2010-03-11 208.072.123.097 914 395 2010-03-14 2010-03-14 202.093.062.067 900 395 2009-11-22 2010-03-01 088.255.105.062 650 395 2009-06-15 2010-03-11 081.019.045.036 430 395 2010-02-24 2010-03-12 210.038.137.082 469 395 2009-06-28 2010-03-06 061.152.107.150 404 395 2010-03-08 2010-03-15 093.155.172.173 634 395 2010-01-28 2010-03-06 174.005.184.152 661 395 2009-12-02 2010-02-23 173.045.080.138 701 395 2010-01-24 2010-02-23 122.224.004.226 422 395 2010-02-23 2010-02-24 186.081.253.161 787 395 2010-03-04 2010-03-05 219.071.034.013 667 395 2009-12-28 2010-03-16 200.069.104.090 653 395 2010-02-10 2010-03-14 064.034.116.182 856 394 2010-01-03 2010-03-16 202.162.048.202 587 394 2010-02-23 2010-02-25 094.082.157.034 649 394 2010-01-18 2010-03-16 074.063.195.036 696 394 2010-02-19 2010-03-15 088.178.019.132 657 394 2010-01-28 2010-03-12 088.068.127.241 717 394 2010-02-21 2010-03-16 076.172.248.190 810 394 2010-02-09 2010-03-16 089.209.012.006 702 394 2009-12-07 2010-03-11 088.244.221.229 440 394 2010-02-14 2010-02-15 208.069.194.079 672 394 2009-12-18 2010-03-16 089.140.020.230 686 394 2009-10-13 2010-03-15 089.115.152.035 715 394 2009-12-10 2010-03-13 119.073.130.036 670 394 2010-01-29 2010-03-15 085.021.079.050 678 394 2009-10-03 2010-03-13 068.196.013.029 736 394 2010-02-25 2010-02-25 060.250.070.057 394 394 2010-02-22 2010-03-11 077.081.204.133 747 394 2010-01-28 2010-02-15 207.210.050.226 688 394 2010-01-19 2010-02-28 064.047.147.020 741 394 2009-05-01 2010-03-01 096.054.041.033 749 394 2010-01-21 2010-03-15 213.079.094.194 687 394 2009-08-09 2010-03-15 194.123.033.205 413 393 2010-02-27 2010-02-28 190.157.238.146 427 393 2010-03-15 2010-03-15 095.084.195.066 641 393 2010-01-26 2010-02-24 081.196.167.162 654 393 2010-02-05 2010-03-15 190.067.025.205 702 393 2010-01-13 2010-03-12 095.170.199.098 632 393 2010-02-13 2010-03-04 206.126.089.014 654 393 2010-02-05 2010-03-13 074.063.195.037 625 393 2010-02-19 2010-03-16 095.068.119.017 648 393 2010-02-02 2010-03-14 123.098.172.076 802 393 2009-09-02 2010-03-06 195.138.087.207 12709 393 2010-02-08 2010-03-02 078.029.128.111 972 393 2010-03-02 2010-03-02 092.036.224.005 638 393 2009-10-03 2010-03-12 088.079.235.060 702 393 2009-12-30 2010-03-16 079.028.216.054 439 393 2010-01-19 2010-02-15 074.053.236.202 1077 393 2010-03-10 2010-03-11 095.087.247.181 652 393 2010-01-20 2010-03-12 094.091.192.018 1735 393 2010-02-04 2010-03-14 190.068.229.114 649 392 2009-11-13 2010-03-15 211.160.076.145 705 392 2009-05-06 2010-03-07 095.228.158.066 726 392 2009-07-29 2010-03-06 068.168.018.150 652 392 2010-01-10 2010-03-16 024.172.229.140 542 392 2009-02-24 2010-03-16 096.052.247.155 739 392 2010-01-30 2010-03-12 196.205.138.084 698 392 2009-06-04 2010-03-14 068.213.063.149 621 392 2010-01-30 2010-03-14 099.002.013.089 648 392 2009-03-27 2010-03-13 217.165.232.239 394 392 2010-02-27 2010-02-27 024.067.023.158 722 392 2010-02-20 2010-03-11 088.087.218.205 478 392 2010-03-05 2010-03-10 190.142.143.144 772 392 2010-02-28 2010-02-28 070.021.248.020 699 392 2009-09-24 2010-03-04 190.253.051.114 651 392 2010-02-05 2010-03-10 094.073.044.185 723 392 2009-12-27 2010-03-15 114.039.000.139 1006 392 2010-03-04 2010-03-09 093.156.164.082 648 392 2010-01-29 2010-03-15 211.003.127.166 664 392 2010-02-13 2010-03-07 080.245.180.182 805 392 2010-02-12 2010-03-15 071.115.010.139 661 392 2010-02-09 2010-03-14 118.169.197.056 784 392 2010-03-08 2010-03-09 186.081.244.026 794 392 2010-02-21 2010-02-21 201.172.082.179 658 392 2010-02-12 2010-03-15 075.119.097.241 822 392 2010-02-14 2010-03-04 082.234.146.079 647 392 2009-11-11 2010-02-20 219.071.034.001 746 392 2009-12-26 2010-03-01 064.144.035.071 729 392 2010-01-13 2010-03-16 085.014.216.122 716 392 2009-11-17 2010-03-16 201.244.184.002 701 392 2010-02-10 2010-03-09 109.068.086.017 704 392 2009-12-13 2010-03-02 068.161.032.101 645 392 2010-02-18 2010-03-10 122.117.029.155 681 391 2009-12-02 2010-03-06 203.140.247.067 1255 391 2010-02-10 2010-03-13 083.111.184.226 763 391 2009-11-27 2010-03-13 084.090.143.251 685 391 2010-01-17 2010-02-25 115.093.118.034 677 391 2010-01-21 2010-03-15 213.199.192.090 652 391 2010-02-03 2010-03-13 174.004.058.242 646 391 2010-01-08 2010-03-15 194.116.029.068 831 391 2009-09-01 2010-03-13 066.018.154.143 464 391 2010-01-13 2010-02-26 201.240.210.149 391 391 2010-02-19 2010-02-19 069.114.019.230 568 391 2010-02-27 2010-02-27 082.107.094.220 391 391 2010-03-09 2010-03-09 212.117.037.200 673 391 2009-10-07 2010-03-14 190.067.014.218 641 391 2009-06-24 2010-03-14 122.199.191.049 637 391 2009-04-30 2010-03-16 084.003.080.109 705 391 2010-01-15 2010-03-14 159.148.243.106 636 391 2010-01-31 2010-03-08 065.086.245.059 2515 391 2010-01-02 2010-02-21 084.240.063.142 642 391 2009-11-29 2010-03-15 216.114.147.214 647 391 2010-01-14 2010-03-15 212.174.243.166 653 391 2009-07-27 2010-02-27 078.237.081.154 890 391 2010-02-23 2010-03-01 222.011.252.044 646 391 2010-02-18 2010-03-16 024.100.111.045 636 391 2010-02-01 2010-03-16 087.202.222.074 688 391 2010-02-01 2010-03-01 190.209.125.224 781 391 2010-02-24 2010-02-24 202.164.211.106 990 391 2010-03-13 2010-03-13 116.253.252.239 391 391 2010-02-13 2010-02-15 124.011.022.040 715 391 2009-03-04 2010-03-16 082.067.214.090 660 390 2009-12-17 2010-03-12 078.107.252.207 665 390 2009-07-09 2010-03-15 093.156.076.188 694 390 2010-01-15 2010-03-12 060.172.190.208 421 390 2010-02-15 2010-03-15 082.076.060.076 692 390 2009-06-08 2010-03-14 085.187.041.136 652 390 2010-01-21 2010-03-15 188.096.254.046 707 390 2010-01-28 2010-02-16 065.242.033.043 654 390 2010-02-09 2010-02-26 069.085.125.129 648 390 2009-11-27 2010-03-11 058.003.030.254 390 390 2010-03-08 2010-03-08 078.149.029.226 390 390 2010-03-04 2010-03-04 217.037.191.053 633 390 2009-08-07 2010-03-13 115.146.135.039 550 390 2010-02-03 2010-02-17 085.110.010.097 390 390 2010-02-23 2010-02-26 089.133.010.001 700 390 2010-01-01 2010-02-17 085.138.219.127 708 390 2010-02-12 2010-03-08 173.028.219.079 650 390 2010-02-09 2010-03-12 198.108.082.124 717 390 2009-12-15 2010-03-15 059.125.243.231 659 390 2009-05-15 2010-03-12 077.079.093.004 638 390 2010-01-28 2010-03-15 077.075.098.102 768 390 2010-02-05 2010-02-20 082.137.199.187 666 390 2009-08-03 2010-03-03 088.149.202.162 1534 390 2010-02-11 2010-03-15 189.039.115.163 1007 390 2010-02-06 2010-03-15 200.121.140.191 390 390 2010-02-21 2010-02-21 095.088.025.101 683 390 2010-02-07 2010-03-11 200.050.025.048 657 390 2010-01-17 2010-03-13 208.012.178.051 687 390 2010-02-24 2010-03-16 072.002.240.233 704 390 2010-02-01 2010-03-11 206.209.004.108 665 389 2010-02-17 2010-03-15 078.131.092.015 951 389 2010-02-15 2010-02-17 186.122.184.196 773 389 2010-02-21 2010-02-21 195.038.121.117 620 389 2010-01-04 2010-03-16 078.243.215.119 983 389 2010-02-25 2010-03-10 070.079.218.218 1027 389 2010-02-27 2010-03-10 211.032.036.029 660 389 2009-12-30 2010-03-16 083.111.237.121 879 389 2010-03-01 2010-03-11 195.013.243.117 670 389 2010-01-25 2010-03-15 209.152.071.025 638 389 2010-02-15 2010-03-05 066.249.153.059 669 389 2010-02-09 2010-03-14 194.250.254.196 5274 389 2010-02-08 2010-03-09 024.078.246.088 666 389 2010-02-05 2010-03-14 112.121.161.018 626 389 2010-02-08 2010-03-15 174.139.131.163 566 389 2010-02-26 2010-02-28 203.223.188.055 553 389 2010-02-21 2010-02-21 024.082.187.073 752 389 2010-02-18 2010-03-16 077.068.037.036 661 389 2010-02-21 2010-03-15 067.113.194.089 643 389 2010-02-25 2010-03-16 012.100.204.055 665 389 2009-07-12 2010-03-15 041.141.073.066 780 389 2010-03-04 2010-03-04 091.200.098.041 658 389 2009-11-12 2010-02-22 075.079.185.056 642 389 2010-02-18 2010-03-15 070.077.234.216 659 389 2010-01-01 2010-03-15 093.062.207.169 662 388 2010-02-10 2010-03-16 121.114.110.001 634 388 2010-02-17 2010-03-08 196.219.191.229 1432 388 2009-12-18 2010-03-13 024.080.161.031 641 388 2010-01-15 2010-03-12 110.074.254.166 638 388 2010-01-31 2010-02-28 200.168.208.130 673 388 2009-11-26 2010-03-12 212.174.028.031 625 388 2010-01-08 2010-03-13 195.072.204.006 661 388 2009-12-06 2010-03-14 060.050.244.246 654 388 2010-02-18 2010-03-14 066.037.077.027 861 388 2010-01-08 2010-03-15 216.240.245.093 703 388 2010-02-14 2010-02-28 092.055.135.012 719 388 2010-02-18 2010-03-14 093.149.209.157 388 388 2010-02-14 2010-02-15 093.104.208.031 649 388 2010-01-14 2010-02-17 208.103.047.022 508 388 2009-11-14 2010-02-27 088.174.189.034 668 388 2010-01-05 2010-02-17 012.032.103.017 738 388 2009-10-31 2010-03-15 088.008.178.159 898 388 2010-03-07 2010-03-11 188.138.032.211 903 388 2010-01-20 2010-02-21 064.105.025.084 663 388 2009-09-26 2010-03-15 216.069.185.005 401 388 2010-03-02 2010-03-02 066.083.127.066 714 388 2009-03-27 2010-03-15 207.012.170.017 628 388 2010-01-28 2010-03-16 087.250.057.236 804 388 2010-03-09 2010-03-09 084.036.239.109 454 388 2010-02-10 2010-03-15 209.192.078.194 767 388 2010-01-26 2010-02-23 078.084.172.212 687 388 2010-02-28 2010-03-14 211.189.070.066 657 388 2010-02-20 2010-03-13 203.215.180.037 6957 388 2010-02-15 2010-03-12 082.174.224.077 1292 388 2010-01-27 2010-03-15 058.147.079.189 507 388 2010-03-06 2010-03-10 190.043.190.204 388 388 2010-02-26 2010-02-26 200.025.148.162 10887 388 2010-03-09 2010-03-14 084.054.141.116 636 387 2009-05-19 2010-03-15 088.255.173.100 660 387 2010-01-06 2010-03-12 210.068.038.109 676 387 2009-12-25 2010-03-16 024.109.066.018 692 387 2010-01-13 2010-03-15 110.174.071.017 607 387 2010-03-08 2010-03-08 078.139.138.247 1058 387 2010-02-21 2010-02-21 084.109.157.025 653 387 2010-01-23 2010-02-22 203.082.035.100 881 387 2010-01-25 2010-02-16 216.106.051.119 593 387 2010-02-24 2010-03-16 088.245.200.138 388 387 2010-02-23 2010-02-23 066.025.098.015 681 387 2010-01-15 2010-02-22 217.041.053.222 652 387 2009-07-25 2010-03-16 099.131.048.216 4643 387 2010-03-09 2010-03-13 038.108.120.004 748 387 2009-12-24 2010-03-16 085.033.176.042 676 387 2009-07-06 2010-03-16 208.072.122.111 939 387 2010-03-06 2010-03-06 218.094.176.166 635 387 2009-10-20 2010-02-28 119.098.066.171 407 387 2010-03-16 2010-03-16 208.127.227.222 680 387 2009-12-01 2010-02-20 070.025.101.020 760 387 2009-12-18 2010-03-16 088.046.093.106 665 387 2009-10-11 2010-03-15 062.121.121.241 697 387 2009-09-18 2010-03-14 124.247.193.172 881 387 2010-02-02 2010-02-19 118.169.196.234 1538 387 2010-02-18 2010-02-19 066.056.204.124 726 387 2010-02-03 2010-02-26 124.127.125.002 727 387 2010-03-13 2010-03-13 222.127.196.157 387 387 2010-02-22 2010-02-28 080.233.184.107 1687 387 2010-02-19 2010-03-08 066.194.010.200 416 387 2009-08-04 2010-03-11 071.091.140.075 645 387 2009-06-04 2010-02-22 174.000.059.110 655 387 2009-10-04 2010-03-15 066.011.146.093 632 387 2010-01-25 2010-02-18 190.056.156.046 731 387 2009-10-18 2010-03-14 078.227.155.243 948 387 2010-02-25 2010-02-28 150.174.045.019 678 387 2010-01-28 2010-03-11 222.100.132.122 1090 387 2010-02-26 2010-03-16 012.187.241.125 716 386 2010-01-23 2010-03-15 059.013.202.027 643 386 2010-03-06 2010-03-06 080.073.006.070 617 386 2010-01-15 2010-03-15 088.040.194.243 646 386 2010-01-03 2010-03-15 081.089.014.002 644 386 2009-08-14 2010-03-16 065.037.148.253 628 386 2009-11-06 2010-03-15 116.225.074.090 387 386 2010-03-12 2010-03-15 151.021.027.025 683 386 2010-02-09 2010-03-14 012.166.154.210 387 386 2010-02-08 2010-03-12 066.241.082.078 618 386 2010-03-07 2010-03-11 086.105.170.074 742 386 2010-02-06 2010-03-05 061.199.124.151 698 386 2010-02-11 2010-03-11 211.171.188.176 767 386 2009-12-30 2010-03-07 074.222.132.084 402 386 2010-02-28 2010-03-04 091.187.201.246 743 386 2009-12-23 2010-03-14 113.253.201.209 643 386 2009-09-04 2010-03-12 066.057.207.067 643 386 2009-12-30 2010-03-11 061.177.042.233 572 386 2010-03-13 2010-03-13 124.018.071.150 646 386 2010-02-26 2010-03-15 203.196.142.024 392 386 2010-02-16 2010-02-17 203.199.146.113 3556 386 2010-03-02 2010-03-03 201.249.122.184 396 386 2010-02-28 2010-02-28 074.096.084.150 2113 386 2010-02-28 2010-02-28 080.149.018.141 601 386 2010-02-15 2010-03-14 118.169.193.226 1442 386 2010-02-15 2010-02-16 080.064.102.170 689 386 2009-11-05 2010-03-01 080.026.012.020 497 386 2010-02-17 2010-03-11 190.232.110.227 386 386 2010-02-26 2010-02-27 012.237.207.091 643 386 2010-01-30 2010-03-16 070.061.251.039 697 385 2010-02-11 2010-03-01 211.191.168.179 808 385 2009-10-19 2010-02-27 210.081.011.226 624 385 2009-11-02 2010-03-16 190.220.224.247 768 385 2010-03-04 2010-03-05 088.182.225.048 674 385 2010-01-23 2010-03-14 079.038.252.162 696 385 2009-12-30 2010-03-13 208.048.200.240 642 385 2010-03-01 2010-03-15 174.037.194.138 437 385 2010-03-13 2010-03-13 200.030.111.147 646 385 2010-03-02 2010-03-02 173.012.051.141 385 385 2010-03-10 2010-03-10 195.130.124.105 680 385 2010-01-23 2010-03-11 217.112.084.027 681 385 2010-01-26 2010-03-16 076.160.242.092 659 385 2009-11-20 2010-03-14 096.038.235.094 656 385 2009-05-04 2010-03-14 190.159.082.153 771 385 2010-03-04 2010-03-05 190.233.036.064 386 385 2010-02-27 2010-02-27 194.116.009.167 822 385 2009-07-11 2010-03-16 122.146.066.019 796 385 2010-02-05 2010-03-12 139.055.087.121 477 385 2010-03-07 2010-03-07 080.093.214.066 697 385 2010-02-05 2010-03-09 203.140.250.185 2876 385 2010-03-12 2010-03-12 076.073.086.114 633 385 2010-02-22 2010-03-10 078.107.075.098 646 385 2009-12-17 2010-03-16 075.119.020.018 621 385 2009-11-08 2010-03-11 195.120.187.099 641 385 2009-03-10 2010-03-13 078.084.069.214 509 385 2010-03-08 2010-03-10 195.016.067.069 645 385 2010-01-09 2010-03-16 077.068.041.075 685 385 2010-02-19 2010-03-14 082.077.191.190 679 385 2010-01-20 2010-03-15 066.108.151.023 663 385 2010-02-09 2010-03-11 061.246.139.125 794 385 2010-02-23 2010-02-25 203.199.181.229 3173 385 2010-03-02 2010-03-12 089.045.126.015 643 385 2009-09-26 2010-03-16 203.222.208.236 5814 385 2010-02-25 2010-03-13 062.183.105.165 692 384 2010-01-05 2010-03-16 219.114.145.048 645 384 2009-11-13 2010-03-11 096.247.049.191 626 384 2010-02-04 2010-03-14 125.036.142.215 1722 384 2010-03-13 2010-03-13 089.041.201.080 797 384 2010-02-09 2010-02-16 012.048.046.050 699 384 2009-08-19 2010-03-02 212.244.101.056 674 384 2009-08-25 2010-03-13 151.066.246.246 384 384 2010-03-02 2010-03-02 203.235.052.143 14384 384 2010-01-20 2010-03-03 203.223.163.242 3255 384 2010-02-02 2010-02-22 085.217.162.022 660 384 2010-01-02 2010-03-16 078.224.181.041 719 384 2009-12-19 2010-03-11 203.197.230.044 4581 384 2010-01-21 2010-03-10 203.193.139.042 432 384 2010-03-13 2010-03-13 067.032.013.086 572 384 2010-02-17 2010-02-22 203.127.128.228 3830 384 2009-12-17 2010-03-11 208.047.006.082 617 384 2009-12-11 2010-03-16 093.181.001.211 668 384 2009-09-28 2010-03-02 093.181.037.200 615 384 2010-01-28 2010-03-16 084.109.037.180 770 384 2010-01-05 2010-02-26 078.250.185.125 1020 384 2010-03-08 2010-03-08 086.063.104.250 627 384 2009-11-26 2010-03-10 078.083.221.053 912 384 2010-02-21 2010-02-21 070.060.053.133 554 384 2010-02-27 2010-03-15 076.168.073.198 643 384 2010-02-22 2010-03-16 208.072.123.020 912 384 2010-02-17 2010-02-17 190.209.085.125 396 384 2010-03-15 2010-03-15 190.159.182.016 755 384 2010-02-28 2010-02-28 076.189.158.165 851 384 2010-03-03 2010-03-12 207.096.186.118 590 384 2010-02-11 2010-03-05 119.036.139.068 7179 384 2010-03-04 2010-03-08 058.086.239.071 663 384 2010-02-02 2010-02-24 212.058.004.019 683 384 2009-08-19 2010-02-20 062.221.131.026 647 383 2009-10-05 2010-02-23 200.228.181.130 594 383 2010-03-02 2010-03-12 184.072.003.089 520 383 2010-02-21 2010-02-23 201.230.122.236 383 383 2010-02-28 2010-02-28 121.011.065.028 660 383 2010-03-14 2010-03-14 212.034.140.148 615 383 2009-10-20 2010-03-13 094.102.001.200 706 383 2010-02-10 2010-03-09 195.198.010.163 57481 383 2009-11-11 2010-03-15 207.182.159.211 694 383 2010-02-24 2010-03-11 069.193.099.197 585 383 2010-01-29 2010-02-27 203.217.029.044 3616 383 2010-02-10 2010-03-02 203.219.188.214 2029 383 2010-03-12 2010-03-13 208.072.123.014 904 383 2010-02-24 2010-02-24 119.039.165.045 403 383 2010-03-04 2010-03-04 208.072.125.248 880 383 2010-03-08 2010-03-08 201.173.119.018 669 383 2010-01-02 2010-02-24 210.048.146.010 661 383 2009-09-20 2010-03-15 012.182.142.181 697 383 2010-02-17 2010-03-14 062.112.195.075 652 383 2010-02-12 2010-03-15 066.232.250.154 649 383 2010-01-07 2010-02-18 200.188.208.170 2308 383 2010-01-14 2010-03-07 077.020.091.004 659 383 2009-11-19 2010-03-13 068.202.199.248 642 383 2009-11-18 2010-02-16 190.065.167.106 628 383 2009-11-12 2010-03-15 203.223.169.163 2715 383 2010-01-05 2010-03-02 093.178.098.126 423 383 2010-03-10 2010-03-11 122.160.186.104 3604 383 2010-02-16 2010-03-09 072.092.078.032 1053 383 2009-12-01 2010-03-04 203.209.189.005 1645 383 2010-03-02 2010-03-02 059.181.138.045 382 382 2010-03-03 2010-03-03 074.063.199.206 3576 382 2010-02-01 2010-02-23 024.049.038.110 687 382 2009-11-26 2010-03-15 078.097.143.024 965 382 2010-03-05 2010-03-10 090.150.221.087 383 382 2010-02-26 2010-02-26 038.097.204.067 646 382 2009-10-16 2010-03-14 082.232.111.004 654 382 2010-01-05 2010-03-16 184.048.035.253 484 382 2010-02-15 2010-03-14 125.230.089.005 1090 382 2010-03-13 2010-03-16 125.077.254.130 762 382 2010-03-10 2010-03-10 077.020.024.171 647 382 2010-02-09 2010-03-09 095.154.248.113 416 382 2010-03-14 2010-03-14 115.113.111.113 634 382 2010-01-14 2010-03-15 078.164.190.196 383 382 2010-02-23 2010-02-23 088.039.205.082 647 382 2010-02-17 2010-03-14 123.178.105.006 504 382 2010-02-07 2010-02-17 094.229.060.243 680 382 2010-02-22 2010-03-12 203.197.238.071 382 382 2010-03-02 2010-03-02 202.169.061.005 1018 382 2010-03-01 2010-03-01 203.197.147.003 431 382 2010-03-02 2010-03-02 118.169.197.182 1135 382 2010-02-22 2010-02-24 098.141.022.096 605 382 2010-02-04 2010-02-20 188.162.109.061 534 382 2010-02-15 2010-02-15 112.070.066.250 554 382 2010-02-25 2010-03-11 203.129.114.147 3050 382 2010-03-02 2010-03-13 076.079.152.006 701 382 2010-02-12 2010-03-03 078.057.076.041 652 382 2010-02-11 2010-03-05 190.026.216.002 622 382 2009-11-23 2010-03-09 201.198.110.222 382 382 2010-02-22 2010-02-28 188.165.200.217 847 382 2010-02-28 2010-02-28 024.069.150.092 642 382 2010-02-19 2010-03-16 095.154.240.252 434 382 2010-02-05 2010-02-27 124.106.223.002 382 382 2010-02-16 2010-02-16 059.124.167.108 649 381 2009-08-27 2010-03-12 077.068.041.014 801 381 2010-01-30 2010-03-05 071.099.100.097 612 381 2010-02-09 2010-03-15 122.199.191.177 615 381 2009-05-07 2010-03-16 077.226.187.099 636 381 2009-11-27 2010-03-11 218.057.146.200 383 381 2010-03-10 2010-03-12 089.107.227.012 427 381 2010-02-14 2010-02-15 082.099.136.030 695 381 2009-09-21 2010-03-13 078.234.171.022 923 381 2010-02-21 2010-03-01 088.234.061.030 381 381 2010-02-23 2010-02-23 190.232.149.142 381 381 2010-02-26 2010-02-26 098.101.192.147 509 381 2009-11-06 2010-03-16 160.080.017.028 652 381 2010-02-14 2010-03-14 089.025.071.234 628 381 2008-12-11 2010-03-13 174.003.217.214 615 381 2010-01-30 2010-03-09 198.108.081.025 640 381 2010-01-20 2010-02-22 089.018.023.073 673 381 2009-10-16 2010-03-07 213.203.142.250 681 381 2009-10-16 2010-03-13 080.068.245.068 619 381 2009-10-06 2010-03-06 199.126.200.033 639 381 2010-02-03 2010-03-01 217.016.048.002 673 381 2009-08-17 2010-03-16 189.042.233.194 795 381 2010-02-05 2010-03-15 202.059.152.194 628 381 2010-03-09 2010-03-10 066.096.240.197 413 381 2010-03-16 2010-03-16 195.013.187.004 625 381 2009-05-21 2010-03-14 066.076.151.245 2568 381 2010-02-01 2010-03-15 068.169.155.204 721 381 2010-01-06 2010-03-08 060.041.009.245 697 381 2010-01-31 2010-03-16 062.140.064.054 685 381 2009-11-25 2010-03-14 208.072.122.014 862 381 2010-03-03 2010-03-03 078.139.252.041 382 380 2010-02-21 2010-03-10 074.112.034.022 699 380 2010-02-26 2010-03-16 089.035.034.006 699 380 2009-12-17 2010-03-15 066.247.216.234 1046 380 2010-02-15 2010-03-05 188.026.114.154 697 380 2009-12-07 2010-03-15 116.199.207.102 384 380 2010-02-19 2010-02-19 212.154.211.044 1129 380 2010-03-09 2010-03-16 069.077.138.026 649 380 2009-10-19 2010-03-03 203.041.077.174 2179 380 2010-02-15 2010-03-13 114.037.155.139 390 380 2010-03-11 2010-03-12 193.238.029.222 638 380 2009-11-13 2010-03-12 091.065.177.010 705 380 2010-01-17 2010-03-08 190.043.165.252 380 380 2010-02-21 2010-02-21 094.156.019.086 683 380 2009-12-30 2010-03-16 208.093.238.034 661 380 2010-02-03 2010-02-18 092.073.197.177 719 380 2010-01-27 2010-02-18 118.169.194.045 838 380 2010-03-11 2010-03-12 212.039.064.068 654 380 2009-11-17 2010-03-14 200.161.147.058 709 380 2010-01-29 2010-03-14 083.222.181.109 619 380 2010-01-08 2010-03-04 078.008.111.154 700 380 2010-02-07 2010-03-05 059.120.249.127 658 379 2009-11-02 2010-03-15 208.126.186.017 635 379 2010-01-26 2010-03-11 206.248.252.068 741 379 2010-02-19 2010-02-19 058.056.083.243 380 379 2010-03-10 2010-03-12 222.088.063.086 459 379 2010-03-06 2010-03-07 201.245.026.149 441 379 2010-02-14 2010-02-14 173.020.076.040 635 379 2010-02-06 2010-03-13 204.110.011.011 603 379 2009-12-18 2010-03-14 082.067.022.107 813 379 2010-01-28 2010-03-12 193.047.083.173 625 379 2010-02-17 2010-03-13 112.104.047.200 1217 379 2010-02-20 2010-02-27 201.040.126.020 636 379 2009-08-12 2010-03-15 218.016.143.093 543 379 2010-02-22 2010-03-03 080.082.115.092 625 379 2009-07-22 2010-03-15 112.121.169.118 449 379 2010-03-15 2010-03-16 064.077.208.105 631 379 2009-04-07 2010-03-13 109.173.007.146 624 379 2010-02-11 2010-03-16 081.198.034.016 641 379 2009-10-04 2010-03-11 125.230.074.088 1134 379 2010-02-15 2010-02-17 084.217.243.018 454 379 2010-02-20 2010-02-26 222.042.062.119 660 379 2010-01-11 2010-03-16 118.169.196.016 826 379 2010-03-02 2010-03-03 173.029.206.019 838 379 2010-01-20 2010-03-16 024.079.145.235 615 379 2009-11-24 2010-03-14 070.061.191.034 666 379 2010-01-30 2010-03-13 117.055.241.059 708 379 2010-01-25 2010-02-22 066.017.024.114 625 379 2009-08-19 2010-03-13 088.134.064.106 737 379 2010-02-10 2010-03-03 203.126.115.093 3426 379 2010-03-15 2010-03-16 220.231.153.122 613 379 2010-01-29 2010-03-08 076.070.024.101 619 378 2009-06-24 2010-03-14 078.083.242.014 616 378 2010-02-10 2010-03-09 078.237.033.076 658 378 2009-11-10 2010-03-15 121.014.153.009 479 378 2010-03-11 2010-03-11 092.068.244.171 638 378 2010-02-03 2010-03-15 078.097.158.077 951 378 2010-02-23 2010-03-02 219.129.176.194 752 378 2010-02-26 2010-02-26 200.115.206.152 393 378 2010-03-15 2010-03-15 024.076.054.241 652 378 2009-07-21 2010-02-20 024.076.160.099 618 378 2009-11-11 2010-03-16 115.084.178.249 819 378 2010-02-10 2010-02-24 121.037.059.060 655 378 2010-02-01 2010-03-16 202.103.223.053 647 378 2009-11-08 2010-03-11 203.193.135.011 1997 378 2010-03-07 2010-03-11 118.169.192.211 1240 378 2010-02-23 2010-02-25 213.128.085.136 627 378 2010-01-03 2010-03-15 186.081.081.231 758 378 2010-02-21 2010-02-21 122.116.182.037 701 378 2010-01-25 2010-02-19 222.092.017.226 379 378 2010-03-12 2010-03-12 084.055.084.075 683 378 2010-02-09 2010-03-16 076.094.253.004 607 377 2010-02-02 2010-03-07 132.248.180.096 632 377 2010-02-07 2010-03-16 059.125.180.116 639 377 2010-02-03 2010-03-13 095.087.199.062 626 377 2010-02-11 2010-03-12 201.219.198.098 765 377 2010-02-01 2010-02-28 187.160.018.136 678 377 2010-01-27 2010-02-22 189.148.032.115 622 377 2010-01-21 2010-03-15 092.102.193.143 1066 377 2010-02-04 2010-03-15 173.045.087.052 699 377 2010-01-17 2010-03-13 212.182.047.253 619 377 2009-10-06 2010-03-15 204.111.066.102 760 377 2009-12-23 2010-02-17 072.132.147.037 635 377 2010-03-02 2010-03-16 195.029.146.228 634 377 2010-02-04 2010-03-15 070.077.160.075 683 377 2010-02-17 2010-03-13 078.009.026.041 1110 377 2010-02-14 2010-03-10 118.232.156.102 769 377 2010-01-21 2010-03-16 173.088.138.148 614 377 2010-02-07 2010-02-27 086.055.084.250 721 377 2010-01-08 2010-02-17 203.114.106.149 2046 377 2009-11-28 2010-03-13 174.096.204.210 704 377 2009-12-08 2010-03-05 186.081.177.194 754 377 2010-03-04 2010-03-05 201.249.009.041 404 377 2010-03-13 2010-03-13 174.048.003.144 633 376 2010-01-28 2010-02-17 134.173.092.066 1121 376 2010-02-12 2010-02-16 086.049.127.181 633 376 2009-11-20 2010-03-14 078.061.111.080 539 376 2010-03-10 2010-03-12 085.064.078.231 651 376 2010-01-31 2010-03-07 212.092.194.110 629 376 2009-11-11 2010-02-21 208.014.252.026 664 376 2009-09-19 2010-03-09 210.081.011.230 606 376 2009-11-17 2010-03-16 069.002.254.068 731 376 2010-02-16 2010-03-10 012.032.252.018 630 376 2009-12-10 2010-03-16 208.115.209.010 680 376 2010-02-02 2010-03-14 125.093.069.018 644 376 2010-01-06 2010-03-16 212.117.045.063 668 376 2009-12-28 2010-02-19 119.075.213.061 2102 376 2010-02-28 2010-03-12 173.016.119.221 652 376 2010-01-18 2010-03-12 059.120.121.205 650 376 2009-01-27 2010-03-14 096.054.246.122 658 376 2010-01-31 2010-03-05 084.003.198.239 678 376 2010-01-17 2010-03-13 210.094.177.054 672 376 2009-04-14 2010-03-12 024.238.220.245 615 376 2010-01-09 2010-03-08 208.072.123.086 872 376 2010-02-22 2010-02-22 222.126.156.219 693 376 2009-09-04 2010-03-14 201.173.047.043 681 376 2010-01-09 2010-03-16 058.061.144.250 376 376 2010-03-12 2010-03-12 067.213.015.096 699 376 2010-01-06 2010-03-11 079.069.061.224 376 376 2010-02-22 2010-02-22 078.243.214.203 962 376 2010-02-12 2010-02-25 150.101.219.098 383 376 2009-11-11 2010-03-12 060.056.095.192 668 376 2010-02-01 2010-02-22 093.062.228.220 621 376 2009-12-11 2010-03-11 189.100.230.195 720 376 2010-01-23 2010-03-03 200.068.030.252 626 376 2009-11-30 2010-03-08 195.140.152.046 2325 376 2010-02-21 2010-02-23 074.201.026.228 17399 376 2010-03-09 2010-03-11 190.067.072.192 399 376 2010-03-11 2010-03-11 078.238.075.080 930 376 2010-03-01 2010-03-05 203.115.080.106 653 375 2009-12-17 2010-03-12 186.082.123.136 749 375 2010-02-26 2010-02-26 174.004.011.081 680 375 2009-12-01 2010-03-13 195.249.088.180 872 375 2010-02-15 2010-02-17 078.092.170.131 626 375 2009-11-13 2010-02-16 070.071.179.078 606 375 2010-01-31 2010-03-15 066.090.104.127 677 375 2010-02-05 2010-02-27 082.241.012.079 698 375 2010-02-01 2010-02-27 082.227.099.006 626 375 2009-12-17 2010-03-16 089.097.157.080 1022 375 2009-12-21 2010-03-15 071.037.089.059 672 375 2009-06-14 2010-02-18 125.138.209.216 749 375 2010-02-17 2010-03-01 067.101.092.090 651 375 2009-04-02 2010-03-15 061.114.198.165 659 375 2010-02-18 2010-03-13 093.155.197.157 615 375 2009-10-23 2010-03-12 096.053.128.152 671 375 2009-10-29 2010-03-11 204.110.058.216 602 375 2010-02-12 2010-03-04 069.003.039.059 765 375 2009-09-30 2010-03-12 122.036.254.244 950 375 2010-01-20 2010-03-06 024.076.037.022 590 375 2010-02-23 2010-03-14 194.146.135.190 607 375 2009-05-21 2010-03-11 074.201.026.229 17449 375 2010-03-09 2010-03-11 078.083.083.202 732 375 2010-01-17 2010-03-12 189.019.007.210 6198 375 2009-12-04 2010-03-11 087.121.232.088 706 375 2010-02-09 2010-03-11 195.202.249.041 952 375 2010-03-10 2010-03-11 208.071.160.098 605 375 2010-02-05 2010-02-24 082.247.120.051 702 375 2009-11-17 2010-03-15 076.073.012.198 429 375 2010-03-01 2010-03-01 210.253.235.241 582 375 2010-02-04 2010-03-12 118.232.017.108 612 375 2009-12-30 2010-03-09 077.078.171.171 797 375 2010-02-02 2010-03-13 078.057.172.057 382 375 2010-02-17 2010-02-20 203.123.218.004 613 374 2009-11-23 2010-03-13 203.114.106.147 2656 374 2010-03-13 2010-03-13 089.042.201.211 648 374 2009-12-19 2010-03-02 201.216.005.234 749 374 2010-03-04 2010-03-05 212.233.219.081 623 374 2009-12-21 2010-03-16 095.000.010.095 625 374 2010-01-05 2010-03-08 069.085.117.232 665 374 2009-09-06 2010-03-15 189.026.242.083 589 374 2009-09-26 2010-03-15 066.060.022.026 661 374 2009-09-20 2010-03-16 118.169.196.253 1037 374 2010-03-05 2010-03-06 078.083.040.081 604 374 2010-02-08 2010-03-13 151.013.007.113 626 374 2010-01-06 2010-03-14 043.234.048.156 1538 374 2009-11-18 2010-03-14 058.151.063.201 615 374 2010-01-03 2010-03-14 109.206.096.011 606 374 2010-02-19 2010-03-13 090.002.077.232 402 374 2010-03-07 2010-03-07 189.121.181.109 635 374 2009-12-25 2010-02-14 078.130.226.168 615 374 2009-10-05 2010-03-13 084.108.005.094 625 374 2009-11-17 2010-03-13 098.112.022.016 618 374 2009-11-20 2010-03-15 078.062.029.005 946 374 2010-03-12 2010-03-12 012.179.065.224 640 374 2010-02-19 2010-03-16 078.092.146.163 598 374 2009-12-26 2010-03-16 222.186.191.190 4985 374 2010-02-25 2010-03-02 201.240.208.128 374 374 2010-02-17 2010-02-17 093.063.172.084 623 374 2010-01-31 2010-03-14 086.107.009.200 616 374 2009-12-22 2010-02-27 085.122.021.219 601 374 2009-11-23 2010-03-14 080.255.225.207 1093 374 2010-01-17 2010-03-16 200.052.015.108 610 374 2010-02-06 2010-03-13 130.104.072.213 374 374 2009-11-08 2010-03-02 024.211.121.094 693 374 2010-01-31 2010-02-18 075.056.143.170 2064 374 2010-01-28 2010-02-21 095.130.172.217 1118 373 2010-02-26 2010-02-26 076.073.058.233 1468 373 2010-01-17 2010-02-18 087.255.051.137 619 373 2009-12-27 2010-03-13 203.230.140.218 663 373 2010-01-29 2010-02-21 067.055.130.226 600 373 2010-02-25 2010-03-16 081.217.141.104 703 373 2009-06-11 2010-03-16 082.090.166.153 682 373 2009-07-05 2010-02-22 093.114.185.227 536 373 2010-01-22 2010-03-13 087.204.168.106 603 373 2009-10-19 2010-03-14 140.113.071.108 635 373 2009-09-27 2010-03-11 078.083.242.004 623 373 2009-12-06 2010-03-10 128.059.014.100 906 373 2010-02-21 2010-03-09 203.115.159.183 1613 373 2010-01-21 2010-02-22 078.225.045.166 940 373 2010-02-28 2010-03-01 195.210.041.089 907 373 2010-02-14 2010-02-21 174.096.199.017 644 373 2009-12-10 2010-03-16 066.060.214.091 1740 373 2010-01-25 2010-03-15 091.192.062.061 1143 373 2010-02-27 2010-03-09 077.079.123.242 604 373 2010-01-23 2010-03-14 194.069.194.192 602 373 2010-02-18 2010-03-16 213.171.246.201 2832 373 2010-03-04 2010-03-15 193.136.205.032 615 373 2010-01-31 2010-03-16 138.088.163.092 615 373 2009-06-21 2010-03-13 119.077.209.134 658 373 2009-08-15 2010-03-10 083.183.170.152 1327 373 2010-01-05 2010-03-15 203.114.106.150 1754 373 2009-12-13 2010-03-13 084.108.201.008 689 373 2009-12-10 2010-02-27 118.208.015.006 379 373 2010-03-01 2010-03-01 122.117.188.148 621 373 2009-11-06 2010-03-16 072.024.142.109 624 373 2010-02-25 2010-03-16 122.100.089.036 618 373 2010-01-31 2010-03-14 190.254.136.157 665 373 2010-01-15 2010-03-15 084.237.144.168 699 373 2010-01-05 2010-03-13 189.121.219.252 634 373 2010-01-18 2010-02-26 062.110.116.069 698 373 2009-12-24 2010-03-15 208.072.122.178 767 373 2010-02-25 2010-02-25 096.024.149.079 641 373 2010-01-15 2010-03-11 078.239.064.081 679 373 2010-01-19 2010-03-13 208.072.125.070 669 373 2010-03-15 2010-03-15 216.051.196.166 637 373 2010-01-15 2010-03-13 189.003.160.139 682 373 2009-12-20 2010-03-12 066.206.053.021 655 372 2009-12-23 2010-03-12 077.037.179.194 596 372 2010-01-08 2010-03-13 061.172.001.140 667 372 2009-12-25 2010-03-14 069.039.235.015 415 372 2010-03-06 2010-03-08 078.251.008.224 941 372 2010-02-19 2010-02-19 083.201.007.065 372 372 2010-03-06 2010-03-06 064.061.184.210 9590 372 2008-09-15 2010-03-13 202.180.175.052 451 372 2010-03-14 2010-03-14 190.220.108.112 575 372 2010-02-18 2010-03-13 212.071.018.004 574 372 2010-02-08 2010-03-09 119.077.243.062 669 372 2010-01-10 2010-02-23 217.127.011.084 385 372 2010-02-12 2010-03-02 120.107.169.122 391 372 2010-03-05 2010-03-05 113.061.000.084 628 372 2009-11-20 2010-03-11 067.076.175.009 614 372 2010-01-23 2010-03-14 094.023.237.186 455 372 2010-02-25 2010-02-26 086.121.250.115 603 372 2009-05-09 2010-02-24 088.255.173.120 733 372 2010-01-23 2010-03-05 061.160.212.242 98533 372 2009-08-01 2010-03-15 085.071.027.099 658 372 2009-03-16 2010-03-11 117.203.145.135 1049 372 2010-02-26 2010-02-27 070.062.218.114 657 372 2009-11-20 2010-03-15 091.211.190.085 613 372 2009-09-03 2010-03-11 121.002.009.159 666 372 2010-02-23 2010-03-11 066.006.052.011 601 372 2009-10-27 2010-03-16 208.072.125.145 803 372 2010-03-06 2010-03-06 060.052.231.181 811 372 2010-03-06 2010-03-15 174.136.192.133 615 372 2010-02-19 2010-03-09 061.041.082.018 727 372 2010-02-02 2010-02-24 118.169.197.089 1065 372 2010-02-26 2010-02-28 066.122.090.046 702 372 2009-12-30 2010-02-23 114.130.030.008 395 372 2010-02-17 2010-02-19 058.072.200.166 648 371 2010-01-06 2010-02-15 079.135.230.153 612 371 2009-06-03 2010-03-16 219.086.134.074 658 371 2009-11-11 2010-03-14 093.123.045.048 611 371 2009-10-19 2010-03-16 080.122.106.054 630 371 2010-01-15 2010-03-16 098.157.144.208 646 371 2010-02-21 2010-03-14 067.211.157.168 653 371 2010-01-08 2010-03-14 078.061.022.222 689 371 2010-02-02 2010-02-19 024.080.055.238 682 371 2009-11-11 2010-02-26 093.155.234.224 372 371 2010-03-15 2010-03-15 190.218.106.184 618 371 2010-02-11 2010-03-16 201.172.146.124 677 371 2010-01-06 2010-03-16 071.108.151.089 609 371 2010-02-17 2010-03-14 024.049.035.197 622 371 2010-02-22 2010-03-15 202.105.193.218 635 371 2009-08-13 2010-03-12 069.108.032.027 605 371 2009-12-18 2010-03-14 077.236.166.014 616 371 2009-10-19 2010-03-14 186.084.221.148 390 371 2010-03-14 2010-03-15 203.208.199.002 968 371 2010-03-02 2010-03-03 151.013.023.171 605 371 2009-09-13 2010-03-13 095.068.113.088 686 371 2009-12-11 2010-02-15 212.098.241.026 622 371 2009-09-08 2010-02-15 085.014.102.082 626 371 2009-12-26 2010-03-04 065.028.236.122 653 371 2010-02-06 2010-03-02 078.084.150.041 654 371 2010-01-21 2010-03-15 080.025.109.066 623 371 2009-04-10 2010-03-12 082.146.027.138 597 371 2009-12-18 2010-03-15 094.019.094.191 620 371 2009-09-12 2010-03-16 122.117.131.238 660 371 2010-01-01 2010-03-15 012.166.188.101 696 371 2009-11-23 2010-03-10 096.054.100.033 607 371 2010-01-09 2010-03-06 202.161.045.162 374 370 2010-02-14 2010-02-15 093.116.132.189 689 370 2010-01-23 2010-03-14 196.205.123.061 370 370 2010-02-26 2010-02-26 088.183.150.183 667 370 2009-08-09 2010-03-14 216.240.245.216 652 370 2010-01-29 2010-03-11 078.062.106.179 1161 370 2010-02-09 2010-02-21 201.065.099.204 653 370 2009-11-16 2010-03-15 212.056.197.066 591 370 2009-12-22 2010-03-12 070.072.129.002 713 370 2010-01-07 2010-03-13 118.100.110.116 641 370 2010-02-03 2010-02-16 210.092.133.236 575 370 2009-12-09 2010-03-15 186.082.076.214 741 370 2010-02-24 2010-02-24 088.210.251.097 370 370 2010-02-16 2010-02-16 194.187.108.059 663 370 2010-01-01 2010-03-06 066.035.183.251 2047 370 2010-02-07 2010-03-03 078.051.083.023 434 370 2010-02-14 2010-02-14 088.177.104.098 665 370 2009-06-09 2010-03-16 113.052.152.019 664 370 2009-11-02 2010-03-14 201.244.070.182 598 370 2009-09-06 2010-03-15 096.048.015.146 614 370 2010-02-05 2010-03-15 216.054.134.037 534 370 2010-03-04 2010-03-04 071.071.044.194 704 370 2010-01-29 2010-02-19 096.008.010.166 630 370 2010-02-19 2010-03-15 024.035.063.063 628 370 2010-02-27 2010-03-16 089.096.232.010 639 370 2009-07-17 2010-03-15 088.160.165.102 610 370 2010-01-02 2010-03-14 058.034.164.032 371 370 2010-03-04 2010-03-04 081.223.016.109 673 370 2010-02-20 2010-03-16 024.172.213.009 673 370 2009-12-03 2010-03-14 087.110.165.118 606 370 2009-09-25 2010-03-15 120.137.144.122 625 370 2010-02-08 2010-02-27 059.126.196.066 639 370 2010-01-13 2010-03-14 082.077.000.117 624 370 2009-12-01 2010-03-16 195.098.063.154 703 370 2010-01-07 2010-03-01 070.073.141.122 651 370 2009-11-30 2010-03-14 078.088.192.094 786 370 2010-01-25 2010-03-08 173.025.157.131 674 370 2010-02-17 2010-03-14 038.100.019.123 606 370 2009-05-25 2010-03-14 124.247.224.122 670 369 2009-12-22 2010-03-16 190.030.253.054 688 369 2009-11-11 2010-03-10 209.191.139.153 1500 369 2010-02-28 2010-03-11 087.097.197.111 686 369 2009-01-28 2010-03-13 077.068.043.028 616 369 2010-01-28 2010-02-15 218.075.091.250 472 369 2010-02-28 2010-03-06 093.063.253.006 661 369 2010-01-20 2010-03-15 071.105.087.124 604 369 2010-02-21 2010-03-15 094.101.045.141 625 369 2009-12-21 2010-03-14 085.196.188.111 633 369 2010-02-12 2010-03-11 208.072.123.058 853 369 2010-02-27 2010-03-13 078.128.089.170 1846 369 2010-01-26 2010-02-26 078.237.225.227 642 369 2010-02-02 2010-02-26 218.166.096.176 577 369 2010-03-05 2010-03-08 125.230.072.141 1014 369 2010-03-05 2010-03-08 087.106.009.040 609 369 2009-08-30 2010-02-28 129.027.142.199 405 369 2010-01-10 2010-03-11 189.036.172.002 621 369 2010-01-31 2010-03-14 083.003.096.138 595 369 2010-01-28 2010-03-05 217.092.148.027 666 369 2010-02-12 2010-03-12 208.072.122.071 798 369 2010-03-06 2010-03-06 210.002.148.100 435 369 2010-03-10 2010-03-10 190.025.216.201 369 369 2010-02-23 2010-02-23 061.144.192.044 552 369 2010-02-26 2010-02-26 099.155.215.011 702 369 2010-02-18 2010-03-14 067.040.066.038 372 369 2010-02-16 2010-03-13 077.226.187.111 597 369 2009-10-16 2010-03-15 190.094.034.082 625 369 2009-10-19 2010-03-15 068.168.018.034 599 369 2009-12-06 2010-03-15 173.019.142.027 668 368 2010-01-21 2010-03-16 218.061.018.070 642 368 2010-03-10 2010-03-11 088.203.169.016 703 368 2009-11-23 2010-02-24 173.083.026.026 628 368 2010-02-11 2010-02-27 094.075.216.018 515 368 2010-03-03 2010-03-15 076.168.083.088 623 368 2010-01-13 2010-03-13 123.195.002.043 782 368 2010-02-09 2010-02-15 096.049.039.198 606 368 2009-06-21 2010-03-15 081.038.069.007 368 368 2010-02-23 2010-02-23 085.021.034.035 616 368 2009-06-04 2010-03-13 059.125.186.089 621 368 2009-06-19 2010-03-16 060.012.073.036 420 368 2010-03-04 2010-03-05 078.096.055.094 650 368 2009-09-04 2010-03-09 217.023.007.093 707 368 2010-01-26 2010-03-13 186.081.029.099 396 368 2010-03-13 2010-03-13 059.108.106.210 520 368 2010-02-26 2010-03-03 186.122.119.001 727 368 2010-03-04 2010-03-04 189.026.082.036 368 368 2010-02-26 2010-02-26 062.118.013.002 646 368 2010-01-15 2010-03-13 063.245.208.011 24229 368 2009-03-27 2010-03-16 094.156.023.152 604 368 2010-01-15 2010-03-14 059.036.099.112 637 368 2009-12-25 2010-03-10 066.184.078.176 614 368 2010-02-21 2010-03-16 024.100.090.113 662 368 2010-02-21 2010-03-16 190.159.101.120 742 368 2010-02-26 2010-02-28 213.167.018.048 962 368 2010-03-12 2010-03-14 078.233.056.040 707 368 2009-12-10 2010-02-17 122.177.118.052 368 368 2010-03-06 2010-03-06 087.121.234.006 665 368 2010-02-06 2010-03-16 085.113.130.134 589 368 2009-04-30 2010-03-15 078.236.220.164 1052 368 2010-02-14 2010-03-05 070.067.218.154 640 368 2009-12-01 2010-02-18 203.217.147.040 2334 368 2010-02-09 2010-02-15 077.223.130.110 681 368 2010-01-03 2010-02-19 212.074.079.071 680 368 2010-02-23 2010-03-14 208.072.123.015 832 368 2010-03-07 2010-03-07 213.178.032.070 1391 368 2010-03-12 2010-03-13 190.040.066.169 367 367 2010-02-27 2010-02-27 190.080.240.066 627 367 2009-09-12 2010-03-14 091.205.172.223 628 367 2010-01-23 2010-02-19 041.233.129.207 367 367 2010-02-26 2010-02-26 074.083.165.189 608 367 2010-02-26 2010-03-14 206.108.171.021 778 367 2010-03-12 2010-03-16 091.188.105.112 610 367 2009-08-10 2010-03-13 084.050.172.094 1305 367 2010-03-05 2010-03-05 187.004.022.128 637 367 2010-03-03 2010-03-11 066.059.249.057 633 367 2009-06-04 2010-03-14 208.127.080.220 578 367 2009-12-24 2010-03-12 085.120.009.043 617 367 2009-08-16 2010-03-08 092.075.009.253 760 367 2010-02-17 2010-03-11 076.245.210.222 612 367 2010-02-08 2010-03-13 088.185.173.201 615 367 2010-01-18 2010-03-12 066.205.125.115 747 367 2010-03-06 2010-03-11 094.081.087.219 868 367 2010-02-18 2010-03-02 078.235.136.024 956 367 2010-02-08 2010-02-14 087.097.250.104 594 367 2010-01-21 2010-03-10 024.083.043.050 642 367 2010-02-26 2010-03-15 200.103.097.244 647 367 2009-10-14 2010-03-14 088.160.121.216 628 367 2009-12-23 2010-03-14 206.169.140.059 577 367 2009-12-27 2010-03-14 208.072.122.003 821 367 2010-02-16 2010-02-16 188.208.046.230 703 367 2009-11-23 2010-03-15 067.101.065.053 660 367 2009-10-07 2010-03-05 080.065.072.102 623 367 2009-08-04 2010-03-16 119.235.054.069 649 367 2010-01-22 2010-03-01 074.064.114.129 701 367 2010-02-12 2010-03-02 095.087.240.248 761 367 2010-01-24 2010-03-12 066.090.073.101 4098 367 2009-08-31 2010-03-15 148.215.001.065 630 367 2010-01-02 2010-03-15 080.013.041.064 392 367 2010-03-04 2010-03-05 194.078.034.050 627 367 2010-01-23 2010-03-15 085.098.043.207 367 367 2010-02-15 2010-02-15 024.086.029.181 610 367 2009-11-11 2010-03-14 217.162.149.226 676 367 2010-02-10 2010-03-13 208.125.077.236 628 367 2009-10-22 2010-02-27 077.081.112.100 644 366 2009-12-05 2010-02-15 081.109.138.253 532 366 2010-02-07 2010-03-14 012.048.046.065 639 366 2009-08-13 2010-03-12 193.028.085.254 626 366 2009-10-17 2010-03-14 081.171.113.110 367 366 2010-02-24 2010-02-26 089.169.145.095 612 366 2010-02-12 2010-03-13 186.081.217.090 383 366 2010-03-13 2010-03-13 220.067.115.105 1045 366 2010-01-07 2010-02-19 089.037.222.122 779 366 2010-02-07 2010-03-15 187.037.026.203 592 366 2010-01-04 2010-03-04 086.120.073.176 1450 366 2009-10-09 2010-03-15 088.185.184.156 1012 366 2009-12-26 2010-02-14 072.015.105.206 572 366 2010-02-03 2010-03-16 195.008.195.071 4109 366 2010-02-28 2010-03-01 195.078.074.005 1620 366 2010-02-12 2010-02-27 089.040.250.019 608 366 2009-11-12 2010-03-16 085.217.145.121 707 366 2009-08-29 2010-03-16 071.041.115.102 572 366 2009-12-21 2010-02-26 209.002.171.060 635 366 2010-02-04 2010-03-11 208.072.125.122 758 366 2010-02-16 2010-02-16 082.240.230.076 1346 366 2008-11-08 2010-02-18 062.117.120.010 644 366 2009-06-25 2010-03-16 124.124.251.083 870 366 2010-01-10 2010-03-03 068.168.018.066 598 366 2009-12-10 2010-03-16 208.101.177.050 612 366 2010-02-02 2010-03-15 062.117.093.043 656 366 2010-01-29 2010-03-09 212.073.146.109 619 366 2009-11-05 2010-03-13 058.061.149.213 974 366 2009-06-09 2010-03-11 219.233.228.226 834 366 2009-12-08 2010-03-13 065.188.190.237 696 366 2010-01-24 2010-02-19 186.081.128.115 731 366 2010-03-04 2010-03-04 200.090.025.157 647 366 2010-01-24 2010-03-04 190.060.229.091 641 366 2009-10-11 2010-03-16 201.148.195.037 595 366 2010-01-23 2010-03-15 094.023.045.186 445 366 2010-03-03 2010-03-11 071.041.228.210 699 366 2010-02-18 2010-03-14 086.121.154.243 635 365 2009-08-15 2010-03-14 087.121.219.011 595 365 2009-08-25 2010-03-12 091.205.172.180 602 365 2010-01-20 2010-03-12 074.100.204.147 386 365 2010-02-18 2010-02-18 092.060.066.016 591 365 2009-06-24 2010-02-28 074.201.026.227 13691 365 2010-03-06 2010-03-09 092.053.002.003 609 365 2009-11-13 2010-03-06 078.115.005.191 830 365 2010-01-17 2010-03-04 074.201.026.226 13512 365 2010-03-06 2010-03-09 189.039.120.094 680 365 2009-09-11 2010-02-18 089.036.086.071 647 365 2009-10-07 2010-03-04 092.247.210.240 597 365 2010-01-24 2010-03-06 125.239.081.170 365 365 2010-03-07 2010-03-07 087.091.048.179 1655 365 2010-03-11 2010-03-11 072.025.007.042 1644 365 2010-02-21 2010-03-15 194.123.098.084 593 365 2009-11-30 2010-02-14 069.036.213.114 654 365 2009-12-30 2010-03-06 201.091.001.131 647 365 2010-02-28 2010-03-14 189.014.134.115 679 365 2009-11-30 2010-03-11 186.081.015.242 731 365 2010-02-27 2010-02-28 058.151.128.076 614 365 2009-12-31 2010-03-13 222.247.051.150 807 365 2010-01-30 2010-03-02 024.039.029.090 583 365 2010-02-03 2010-02-18 078.139.051.132 621 365 2009-11-30 2010-03-13 083.019.234.075 618 365 2009-09-17 2010-03-16 010.014.121.210 3175 365 2010-03-12 2010-03-12 072.167.049.070 708 365 2010-03-04 2010-03-13 067.194.193.143 671 365 2009-09-21 2010-03-15 189.047.134.232 2446 365 2010-02-15 2010-02-23 088.084.008.085 619 365 2009-02-13 2010-03-13 151.100.108.056 663 365 2009-11-11 2010-02-25 041.235.119.036 365 365 2010-02-26 2010-02-26 112.216.003.021 762 365 2009-10-13 2010-02-18 200.068.106.119 602 365 2009-01-05 2010-03-15 143.132.201.024 600 365 2010-02-10 2010-03-12 216.249.085.106 634 365 2009-10-21 2010-03-16 208.072.122.129 668 365 2010-03-14 2010-03-14 082.241.069.164 387 365 2010-03-05 2010-03-05 207.182.159.014 614 364 2010-02-26 2010-03-16 200.150.187.053 640 364 2010-02-05 2010-03-04 207.179.026.198 411 364 2010-02-25 2010-03-09 077.076.180.119 588 364 2010-01-15 2010-03-10 060.190.216.010 646 364 2010-01-18 2010-03-16 077.061.073.044 611 364 2009-08-04 2010-03-14 074.126.041.077 600 364 2010-01-30 2010-03-11 074.113.070.106 619 364 2010-01-26 2010-03-12 080.062.055.118 680 364 2010-02-01 2010-03-13 085.194.112.198 696 364 2010-02-07 2010-03-16 123.048.113.143 602 364 2010-02-22 2010-03-15 065.040.028.076 1044 364 2009-10-08 2010-03-05 060.250.215.024 658 364 2010-02-02 2010-03-14 211.170.182.105 662 364 2009-12-17 2010-03-11 219.080.162.104 660 364 2010-02-20 2010-03-14 208.122.052.036 383 364 2010-01-25 2010-03-10 114.112.189.177 1459 364 2010-02-19 2010-02-21 084.108.172.055 659 364 2009-12-09 2010-02-27 115.085.147.042 593 364 2009-05-01 2010-03-14 116.068.239.006 591 364 2010-01-01 2010-02-19 124.237.121.101 1176 363 2010-02-28 2010-03-01 078.231.092.150 650 363 2009-12-17 2010-03-13 207.255.198.004 624 363 2010-02-17 2010-03-14 118.233.228.086 611 363 2010-01-23 2010-03-12 190.140.060.177 663 363 2010-02-14 2010-03-14 194.069.194.084 611 363 2010-02-18 2010-03-13 125.230.071.208 1059 363 2010-03-03 2010-03-05 082.230.143.179 603 363 2010-02-16 2010-03-16 079.190.227.194 638 363 2009-09-24 2010-03-14 041.223.065.101 580 363 2010-02-12 2010-03-16 202.164.211.114 997 363 2010-03-13 2010-03-13 078.061.024.004 558 363 2009-11-13 2010-02-17 061.047.047.201 599 363 2010-01-23 2010-02-25 190.043.151.081 363 363 2010-02-22 2010-02-22 070.095.141.223 609 363 2010-02-18 2010-03-15 189.115.029.165 605 363 2009-12-14 2010-03-13 124.207.249.226 647 363 2010-03-08 2010-03-08 082.228.048.186 641 363 2009-11-25 2010-03-11 067.058.079.244 662 363 2009-12-03 2010-03-15 201.057.207.055 606 363 2009-02-19 2010-03-14 112.104.056.144 620 363 2009-10-19 2010-03-16 093.064.173.197 363 363 2010-02-25 2010-02-26 024.229.179.046 591 363 2010-02-14 2010-03-11 012.048.046.092 620 363 2009-12-10 2010-03-16 087.121.155.180 639 363 2010-01-30 2010-03-15 094.073.052.069 614 363 2009-12-09 2010-03-12 208.075.118.252 597 363 2009-08-28 2010-03-13 078.083.106.060 677 362 2009-12-13 2010-03-11 082.228.142.041 614 362 2010-02-04 2010-03-16 064.062.191.021 584 362 2010-02-23 2010-03-16 066.067.157.056 643 362 2010-02-27 2010-03-16 190.218.221.047 597 362 2010-02-05 2010-03-13 082.239.022.216 408 362 2010-02-02 2010-03-04 024.105.193.075 624 362 2010-02-17 2010-02-24 089.097.217.055 661 362 2009-07-07 2010-03-16 136.166.001.003 790 362 2009-10-17 2010-03-15 058.147.170.173 794 362 2010-01-25 2010-03-09 203.189.008.250 364 362 2010-03-13 2010-03-13 068.123.083.084 669 362 2010-01-13 2010-03-15 024.056.186.002 611 362 2010-01-31 2010-03-16 156.017.235.172 648 362 2009-12-07 2010-03-14 186.081.086.142 726 362 2010-02-23 2010-02-24 078.230.073.068 645 362 2009-12-02 2010-02-14 075.056.143.092 1717 362 2010-02-22 2010-03-16 203.240.227.003 514 362 2009-12-27 2010-03-11 194.042.010.116 661 362 2009-12-23 2010-03-07 087.121.232.166 595 362 2010-01-23 2010-03-15 091.121.156.186 470 362 2010-02-24 2010-02-25 078.060.240.081 1371 361 2010-02-20 2010-03-01 091.067.060.176 670 361 2010-01-14 2010-03-11 079.135.218.221 647 361 2010-01-19 2010-03-13 087.229.111.202 702 361 2009-07-18 2010-03-15 221.254.065.076 586 361 2010-02-09 2010-03-06 078.243.000.210 910 361 2010-02-25 2010-02-28 204.101.159.003 629 361 2009-03-08 2010-03-16 211.075.227.037 612 361 2010-02-19 2010-03-14 066.104.163.148 607 361 2010-02-28 2010-03-15 068.168.114.178 2688 361 2010-02-21 2010-03-09 080.014.180.228 393 361 2010-03-05 2010-03-10 087.121.241.021 658 361 2009-07-04 2010-03-13 110.138.075.219 362 361 2010-01-29 2010-03-02 190.209.012.037 723 361 2010-02-26 2010-02-26 089.238.230.218 582 361 2009-12-21 2010-03-11 080.099.021.138 648 361 2010-01-08 2010-03-13 190.233.102.208 361 361 2010-02-23 2010-02-23 122.003.075.203 667 361 2010-01-08 2010-03-12 024.109.079.206 658 361 2009-12-24 2010-02-17 189.051.210.150 592 361 2010-02-11 2010-03-16 078.226.084.020 598 361 2010-01-15 2010-03-15 082.077.127.189 626 361 2009-11-11 2010-03-14 173.024.189.229 600 361 2010-02-12 2010-03-04 140.113.169.188 621 361 2009-10-03 2010-03-16 078.084.175.082 575 361 2010-01-25 2010-03-14 188.231.166.059 588 361 2010-02-02 2010-03-15 207.183.236.036 601 361 2010-01-16 2010-02-20 173.019.142.106 831 361 2010-02-07 2010-03-11 112.235.048.039 577 361 2010-03-02 2010-03-02 012.071.227.066 628 361 2010-01-22 2010-03-16 068.080.249.196 361 361 2010-03-06 2010-03-07 218.024.169.076 960 360 2010-03-15 2010-03-15 086.107.188.016 635 360 2010-01-02 2010-03-16 066.153.180.137 1764 360 2010-02-13 2010-03-15 194.160.028.041 652 360 2009-10-19 2010-03-16 190.183.214.166 383 360 2010-02-18 2010-03-13 074.116.027.004 601 360 2010-02-26 2010-03-13 211.171.188.156 593 360 2009-12-29 2010-02-23 079.120.242.139 708 360 2009-12-08 2010-03-16 024.078.006.035 658 360 2010-02-21 2010-03-16 125.242.194.131 680 360 2009-10-23 2010-03-14 216.018.022.034 581 360 2010-02-11 2010-02-27 062.255.248.156 594 360 2009-01-14 2010-03-12 081.007.095.093 636 360 2010-02-09 2010-03-12 210.051.044.126 1208 360 2010-02-14 2010-02-14 098.141.084.253 592 360 2010-01-09 2010-03-16 081.144.171.090 575 360 2010-02-20 2010-03-09 024.109.070.092 628 360 2010-01-05 2010-02-24 194.121.075.106 601 360 2009-09-04 2010-03-12 088.080.117.116 647 360 2009-06-17 2010-03-13 218.004.137.110 599 360 2009-11-26 2010-03-01 024.076.183.086 626 360 2010-01-13 2010-03-11 088.041.037.006 649 360 2010-01-21 2010-03-15 201.158.068.118 575 360 2010-01-14 2010-03-16 084.109.094.218 592 360 2010-01-23 2010-02-20 208.013.130.122 606 360 2010-02-27 2010-03-16 115.043.176.051 579 360 2010-01-26 2010-02-22 222.124.178.156 555 360 2009-11-20 2010-03-15 089.106.103.011 591 359 2010-02-10 2010-03-13 203.070.214.244 567 359 2009-11-09 2010-03-14 082.100.079.125 664 359 2010-01-11 2010-03-13 079.152.159.142 1561 359 2010-02-27 2010-02-27 078.251.025.000 1025 359 2010-03-05 2010-03-06 060.190.238.009 589 359 2009-11-13 2010-03-14 061.221.043.028 638 359 2010-01-24 2010-02-20 118.001.081.220 637 359 2010-02-03 2010-02-22 085.217.154.216 581 359 2009-09-07 2010-03-14 202.188.092.200 600 359 2009-10-28 2010-03-13 084.108.112.063 612 359 2010-01-21 2010-03-14 217.218.083.020 470 359 2010-02-13 2010-03-02 220.181.006.175 774 359 2010-03-09 2010-03-16 213.168.034.034 599 359 2010-01-28 2010-02-22 077.081.115.133 604 359 2009-11-17 2010-03-13 201.018.021.114 480 359 2010-03-06 2010-03-11 120.029.223.017 617 359 2010-01-07 2010-03-09 219.066.134.133 605 359 2010-02-19 2010-03-13 064.079.084.181 603 359 2010-02-27 2010-03-15 077.060.036.105 375 359 2010-03-01 2010-03-02 173.023.248.059 618 359 2010-02-18 2010-03-16 157.089.082.126 587 359 2010-02-11 2010-03-13 072.234.183.022 619 359 2009-11-14 2010-03-13 084.108.062.199 645 359 2010-01-30 2010-02-26 064.188.198.229 754 359 2010-02-20 2010-02-25 068.150.194.031 585 359 2009-11-24 2010-02-17 082.139.177.188 604 359 2009-10-02 2010-03-15 122.124.156.210 1035 359 2010-03-09 2010-03-11 091.211.190.063 645 359 2009-09-27 2010-03-16 220.099.155.127 615 359 2010-02-03 2010-02-23 074.063.195.035 587 359 2010-02-19 2010-03-14 098.242.065.185 648 358 2010-03-09 2010-03-10 091.200.157.187 628 358 2009-12-10 2010-03-16 098.101.229.198 643 358 2010-02-18 2010-03-15 192.009.200.042 645 358 2010-02-28 2010-02-28 210.068.016.033 695 358 2009-08-27 2010-03-12 200.170.222.074 640 358 2009-11-27 2010-03-09 067.040.158.077 613 358 2009-11-26 2010-03-16 075.079.004.116 617 358 2009-12-17 2010-03-14 024.077.022.109 636 358 2010-02-24 2010-03-15 038.098.130.068 592 358 2009-11-05 2010-03-16 200.075.148.075 619 358 2009-07-08 2010-03-13 084.127.039.089 502 358 2010-02-14 2010-02-14 078.084.001.095 605 358 2010-01-06 2010-03-12 217.113.020.042 627 358 2010-03-12 2010-03-12 220.212.107.082 569 358 2010-02-03 2010-02-21 202.082.082.035 544 358 2010-02-25 2010-03-10 082.076.164.199 588 358 2009-10-03 2010-02-23 211.171.188.157 590 358 2010-01-06 2010-03-14 208.072.125.167 737 358 2010-03-07 2010-03-07 091.211.248.123 720 358 2010-03-04 2010-03-04 088.041.179.109 572 358 2009-07-12 2010-03-14 024.078.174.038 554 358 2009-09-12 2010-02-27 061.143.237.238 601 358 2009-12-31 2010-03-15 205.168.086.146 496 358 2009-09-17 2010-02-25 070.062.192.039 632 358 2009-10-21 2010-03-16 152.099.088.174 577 358 2009-12-08 2010-03-16 200.219.150.009 608 358 2009-08-28 2010-02-22 123.049.033.083 1737 358 2010-02-26 2010-02-26 213.199.192.085 606 358 2009-08-12 2010-03-08 113.105.153.044 358 357 2010-02-26 2010-03-10 190.120.011.051 586 357 2010-02-23 2010-03-14 219.148.119.038 403 357 2010-03-04 2010-03-04 219.084.006.209 598 357 2009-07-23 2010-03-16 194.069.194.085 650 357 2010-02-17 2010-03-14 078.027.222.075 538 357 2010-03-06 2010-03-14 121.127.006.198 561 357 2010-01-29 2010-02-24 071.004.187.214 627 357 2010-01-20 2010-03-06 094.087.081.170 675 357 2009-01-28 2010-02-27 064.082.202.087 589 357 2010-01-18 2010-03-16 066.011.146.070 663 357 2010-01-24 2010-02-18 091.211.108.137 622 357 2009-12-31 2010-02-25 061.160.250.152 32356 357 2010-01-18 2010-02-15 092.070.007.042 634 357 2010-01-09 2010-03-15 068.169.136.058 448 357 2009-11-07 2010-02-27 125.230.073.221 995 357 2010-02-28 2010-03-02 109.087.138.247 583 357 2009-12-10 2010-03-02 091.102.162.205 594 357 2010-01-25 2010-03-14 089.179.247.015 612 357 2009-12-31 2010-03-12 089.040.250.056 570 357 2009-12-19 2010-03-15 213.166.196.186 634 357 2010-02-14 2010-03-11 159.016.009.243 629 357 2010-02-19 2010-03-13 065.182.062.133 1110 357 2010-02-17 2010-03-11 069.132.216.027 626 357 2010-01-15 2010-03-16 092.240.176.036 563 357 2009-10-06 2010-02-17 072.227.151.029 650 357 2010-02-01 2010-03-16 210.068.217.053 614 356 2009-09-29 2010-03-14 204.027.061.042 608 356 2009-12-07 2010-03-16 012.186.224.171 1061 356 2010-02-21 2010-03-13 078.227.167.195 710 356 2010-02-05 2010-03-13 078.230.053.220 356 356 2010-03-15 2010-03-15 089.134.039.163 624 356 2009-11-09 2010-03-11 194.000.129.105 643 356 2010-01-29 2010-03-11 216.249.078.101 600 356 2009-12-26 2010-02-22 216.008.195.075 1134 356 2010-01-13 2010-03-11 190.006.137.150 609 356 2009-12-26 2010-02-24 201.065.099.199 639 356 2009-11-13 2010-03-13 024.233.195.239 604 356 2010-01-28 2010-02-16 062.213.116.002 658 356 2009-11-11 2010-03-16 087.121.229.137 597 356 2010-01-15 2010-03-15 081.017.087.002 592 356 2010-01-09 2010-03-15 201.025.106.074 602 356 2009-08-13 2010-03-16 072.051.177.228 576 356 2010-02-17 2010-03-06 186.082.152.194 710 356 2010-03-14 2010-03-14 064.188.199.179 698 356 2010-03-15 2010-03-15 221.224.005.097 1658 356 2010-02-19 2010-03-13 078.083.242.191 654 356 2010-01-23 2010-02-20 087.008.046.218 647 356 2010-01-13 2010-02-14 061.107.020.013 594 356 2009-12-07 2010-03-16 222.073.026.064 472 356 2010-02-21 2010-03-03 062.005.201.035 651 356 2009-01-04 2010-03-12 173.016.102.149 578 356 2010-02-04 2010-02-23 024.083.041.028 618 356 2009-12-14 2010-02-18 087.097.198.221 585 356 2010-02-18 2010-03-16 212.143.136.080 387 356 2010-01-20 2010-03-05 038.099.168.051 733 356 2010-02-19 2010-03-12 217.219.219.070 608 356 2010-01-14 2010-03-15 083.012.011.070 706 356 2009-06-28 2010-03-16 077.068.036.091 593 356 2010-02-19 2010-03-16 088.030.024.252 708 356 2010-02-21 2010-02-21 012.071.096.056 604 356 2010-02-25 2010-03-16 059.124.026.100 704 356 2009-12-28 2010-02-20 071.102.093.088 592 356 2009-05-29 2010-03-16 078.251.089.004 921 356 2010-02-17 2010-02-17 085.187.042.077 575 356 2010-02-14 2010-03-13 125.230.064.070 1328 356 2010-03-09 2010-03-11 058.251.136.018 429 356 2009-03-07 2010-03-16 088.160.185.021 781 356 2009-11-04 2010-03-14 089.047.053.045 583 356 2009-05-13 2010-03-11 064.237.173.022 618 356 2010-02-12 2010-03-03 084.003.131.078 603 356 2009-11-05 2010-03-13 098.141.092.244 581 356 2010-02-12 2010-03-14 064.009.107.058 758 356 2009-12-03 2010-02-28 069.224.094.038 698 355 2010-02-12 2010-03-15 084.003.032.225 634 355 2010-01-11 2010-02-14 085.239.157.176 627 355 2009-11-13 2010-02-25 220.230.102.027 603 355 2010-02-14 2010-03-15 087.247.252.181 566 355 2009-11-17 2010-03-06 067.053.166.039 613 355 2010-02-14 2010-03-01 067.055.200.212 592 355 2009-09-18 2010-03-16 200.071.041.143 608 355 2010-01-05 2010-03-15 217.072.092.028 695 355 2009-06-29 2010-02-19 174.036.118.037 675 355 2009-06-28 2010-03-11 217.023.014.113 917 355 2010-03-12 2010-03-16 085.124.202.102 718 355 2010-01-21 2010-03-15 133.086.088.112 361 355 2010-03-07 2010-03-07 115.092.178.008 632 355 2009-08-16 2010-03-15 206.174.230.069 901 355 2010-03-04 2010-03-08 064.079.084.184 566 355 2010-02-25 2010-03-16 216.040.111.124 601 355 2009-11-29 2010-03-15 213.240.220.039 635 355 2009-12-07 2010-03-10 083.003.013.034 904 355 2010-03-07 2010-03-07 079.123.177.039 616 355 2009-12-28 2010-02-15 086.126.002.073 662 355 2009-11-11 2010-02-22 095.048.090.074 589 355 2009-10-13 2010-03-16 124.227.195.071 557 355 2010-02-23 2010-02-24 203.128.000.236 709 355 2009-12-21 2010-02-24 190.060.093.166 647 355 2010-01-05 2010-02-27 061.067.155.067 684 355 2009-12-18 2010-03-15 093.123.027.097 711 355 2010-01-08 2010-03-06 118.232.220.063 634 355 2010-02-15 2010-03-13 093.062.186.102 614 355 2009-10-15 2010-03-09 041.191.120.221 574 355 2010-03-02 2010-03-16 118.232.230.104 635 355 2009-10-03 2010-03-16 219.093.062.074 496 355 2010-02-21 2010-02-22 095.087.244.179 593 355 2010-01-22 2010-03-12 060.250.218.205 615 355 2010-01-21 2010-03-16 088.172.189.026 602 355 2010-01-12 2010-03-14 059.126.062.024 576 355 2009-12-24 2010-03-14 062.148.147.005 705 354 2009-05-18 2010-02-27 092.068.133.010 633 354 2010-02-17 2010-03-16 060.248.221.125 578 354 2010-02-07 2010-03-15 072.011.050.207 584 354 2010-01-19 2010-03-15 219.159.184.173 651 354 2010-01-23 2010-03-06 024.079.005.079 591 354 2010-02-21 2010-03-12 216.099.206.042 585 354 2009-08-26 2010-03-12 208.072.125.213 644 354 2010-02-13 2010-02-26 117.058.250.090 583 354 2009-12-24 2010-02-22 088.177.138.217 568 354 2009-06-24 2010-03-14 094.251.142.118 621 354 2010-01-19 2010-03-01 212.022.182.194 638 354 2009-05-22 2010-03-13 113.023.144.040 591 354 2009-12-17 2010-03-15 059.120.225.056 639 354 2009-11-23 2010-03-15 038.127.137.070 593 354 2009-11-09 2010-03-15 187.053.017.080 355 354 2010-03-07 2010-03-13 173.045.080.135 570 354 2010-01-17 2010-02-21 081.198.016.037 778 354 2010-01-22 2010-03-14 084.095.241.039 676 354 2010-02-09 2010-03-07 077.099.019.211 625 354 2009-06-08 2010-02-14 079.134.051.148 669 354 2010-02-12 2010-03-12 079.129.002.254 612 354 2009-12-27 2010-03-06 008.012.097.197 562 354 2010-03-08 2010-03-08 064.004.097.076 684 354 2010-03-12 2010-03-12 208.072.123.127 817 354 2010-03-08 2010-03-08 084.246.130.045 1631 354 2010-02-14 2010-03-11 173.018.229.117 604 354 2010-02-21 2010-03-13 112.144.107.227 1212 354 2010-02-03 2010-02-19 123.204.030.233 621 354 2010-01-29 2010-03-15 190.232.254.205 353 353 2010-02-25 2010-02-26 125.206.207.040 624 353 2010-01-12 2010-03-02 222.247.110.241 1867 353 2010-02-27 2010-02-27 024.087.080.061 653 353 2010-02-17 2010-03-16 061.160.234.073 33525 353 2010-02-19 2010-02-23 193.200.241.076 638 353 2010-01-26 2010-02-15 074.002.094.043 593 353 2009-12-14 2010-03-13 070.060.120.231 593 353 2010-02-08 2010-02-27 195.140.152.008 859 353 2010-03-11 2010-03-11 193.033.224.009 633 353 2009-12-09 2010-02-14 091.187.090.240 665 353 2010-02-02 2010-02-22 081.009.244.222 566 353 2010-02-09 2010-03-08 091.204.097.195 595 353 2009-10-21 2010-03-13 190.068.232.162 626 353 2009-10-17 2010-02-15 097.065.187.116 643 353 2010-02-26 2010-03-16 071.023.177.121 579 353 2009-12-22 2010-03-09 201.065.099.197 635 353 2009-11-18 2010-03-14 060.249.218.080 656 353 2010-02-11 2010-03-12 082.245.096.234 587 353 2009-12-05 2010-03-15 095.048.125.010 576 353 2009-10-20 2010-03-13 070.062.128.231 638 353 2010-02-22 2010-03-16 213.174.183.142 596 353 2009-08-06 2010-03-15 188.173.152.100 703 353 2010-02-10 2010-03-08 078.008.031.085 672 353 2010-01-06 2010-02-28 088.169.180.034 613 353 2010-02-07 2010-03-16 082.247.030.159 643 353 2010-01-10 2010-03-15 084.109.148.053 581 353 2010-02-11 2010-03-13 193.200.068.094 695 353 2009-10-04 2010-02-19 190.253.098.194 4270 353 2010-02-15 2010-03-02 190.143.041.077 711 353 2010-02-28 2010-02-28 067.077.185.100 591 353 2010-01-02 2010-03-16 095.087.248.112 568 353 2010-01-22 2010-03-05 189.059.016.130 599 353 2010-01-22 2010-03-13 082.139.172.064 626 353 2010-01-11 2010-02-22 089.046.162.006 583 352 2009-05-30 2010-03-15 201.039.233.010 1189 352 2010-02-15 2010-02-18 058.064.144.074 547 352 2009-08-02 2010-03-13 123.220.167.027 583 352 2010-01-22 2010-03-14 113.224.175.005 352 352 2010-02-18 2010-02-18 069.036.217.074 694 352 2009-11-23 2010-02-18 079.017.234.017 731 352 2010-01-24 2010-02-20 163.247.046.150 784 352 2009-12-13 2010-03-13 088.203.168.091 505 352 2009-06-05 2010-03-14 187.058.165.099 21339 352 2010-03-05 2010-03-04 074.034.183.149 490 352 2010-02-22 2010-03-14 094.076.229.031 591 352 2010-02-24 2010-03-16 190.055.199.137 673 352 2010-01-23 2010-02-20 086.105.170.112 638 352 2009-11-11 2010-03-15 216.129.230.146 2078 352 2010-02-22 2010-03-16 201.130.167.229 646 352 2010-02-25 2010-03-16 077.226.187.057 569 352 2009-12-22 2010-03-15 190.082.070.037 578 352 2010-01-23 2010-03-15 200.225.223.033 618 352 2010-02-18 2010-03-15 086.120.118.099 650 352 2009-12-18 2010-03-16 087.235.237.174 608 352 2009-11-24 2010-03-15 190.159.119.082 685 352 2010-03-04 2010-03-04 096.235.147.176 570 352 2010-02-19 2010-03-14 077.021.003.121 663 352 2010-02-13 2010-03-10 077.068.043.060 627 352 2010-02-19 2010-03-14 # (c) SANS Inst. / DShield. some rights reserved. # Creative Commons ShareAlike License 2.5 # http://creativecommons.org/licenses/by-nc-sa/2.5/ prelude-correlator-1.0.0/PreludeCorrelator/plugins/spamhaus_drop.dat0000664000076400007640000001415711347714243025061 0ustar yoannyoann; Spamhaus DROP List 3/16/10 - (c) 2010 The Spamhaus Project 109.94.212.0/22 ; SBL84898 109.95.112.0/22 ; SBL86732 110.44.0.0/20 ; SBL74731 116.199.128.0/19 ; SBL56563 119.42.144.0/21 ; SBL70035 121.46.64.0/18 ; SBL72673 128.168.0.0/16 ; SBL51908 128.199.0.0/16 ; SBL62478 132.232.0.0/16 ; SBL9176 132.240.0.0/16 ; SBL68517 134.33.0.0/16 ; SBL7097 138.252.0.0/16 ; SBL9702 138.43.0.0/16 ; SBL69354 139.167.0.0/16 ; SBL64740 140.170.0.0/16 ; SBL79701 143.135.0.0/16 ; SBL84946 143.49.0.0/16 ; SBL7182 148.178.0.0/16 ; SBL79700 148.248.0.0/16 ; SBL84763 150.141.0.0/16 ; SBL79702 150.230.0.0/16 ; SBL78129 152.147.0.0/16 ; SBL8847 167.28.0.0/16 ; SBL75680 167.97.0.0/16 ; SBL12947 168.151.0.0/16 ; SBL73292 170.67.0.0/16 ; SBL8148 187.16.192.0/19 ; SBL76362 188.130.250.0/23 ; SBL83604 188.170.192.0/21 ; SBL86928 188.170.216.0/21 ; SBL86922 188.170.243.0/24 ; SBL86856 188.210.240.0/20 ; SBL87098 188.211.28.0/23 ; SBL87042 188.240.0.0/20 ; SBL87089 188.241.192.0/20 ; SBL87181 188.241.194.0/23 ; SBL86844 188.241.200.0/23 ; SBL86783 188.241.202.0/23 ; SBL86843 188.241.204.0/23 ; SBL86929 190.112.0.0/19 ; SBL76260 192.160.44.0/24 ; SBL9493 192.223.64.0/18 ; SBL85852 192.26.25.0/24 ; SBL84941 192.31.212.0/23 ; SBL84945 192.43.153.0/24 ; SBL69615 192.43.154.0/23 ; SBL69616 192.43.156.0/22 ; SBL69617 192.43.160.0/24 ; SBL69618 192.43.175.0/24 ; SBL84942 192.43.176.0/21 ; SBL84943 192.43.184.0/24 ; SBL84944 192.67.16.0/24 ; SBL6648 192.86.85.0/24 ; SBL69619 193.104.106.0/24 ; SBL83510 193.104.110.0/24 ; SBL82582 193.104.12.0/24 ; SBL83599 193.104.153.0/24 ; SBL84254 193.104.176.0/24 ; SBL86727 193.104.22.0/24 ; SBL83509 193.104.27.0/24 ; SBL81900 193.104.41.0/24 ; SBL82374 193.104.94.0/24 ; SBL85667 193.105.0.0/24 ; SBL86733 193.105.141.0/24 ; SBL87368 193.110.136.0/24 ; SBL3399 193.138.172.0/22 ; SBL72612 193.142.244.0/24 ; SBL57948 193.16.100.0/24 ; SBL61945 193.169.250.0/23 ; SBL82277 193.238.36.0/22 ; SBL40543 193.27.246.0/23 ; SBL70826 194.110.160.0/22 ; SBL60306 194.116.146.0/23 ; SBL50590 194.126.193.0/24 ; SBL58152 194.143.130.0/23 ; SBL78840 194.146.204.0/22 ; SBL51152 194.165.4.0/23 ; SBL74236 194.8.74.0/23 ; SBL76200 195.114.8.0/23 ; SBL48773 195.225.176.0/22 ; SBL47622 195.234.159.0/24 ; SBL57950 195.238.242.0/24 ; SBL57947 195.5.168.0/24 ; SBL81786 195.74.88.0/23 ; SBL53174 195.78.122.0/23 ; SBL82373 195.88.190.0/23 ; SBL79119 195.88.226.0/23 ; SBL77731 195.88.32.0/23 ; SBL75285 195.93.184.0/23 ; SBL83327 195.93.208.0/23 ; SBL80356 195.95.151.0/24 ; SBL80032 195.95.155.0/24 ; SBL84230 195.95.161.0/24 ; SBL42935 196.1.176.0/20 ; SBL73088 196.32.216.0/21 ; SBL66614 198.151.152.0/22 ; SBL23969 198.186.16.0/20 ; SBL75933 198.186.25.0/24 ; SBL23976 198.204.0.0/21 ; SBL8179 199.120.163.0/24 ; SBL6658 199.166.200.0/22 ; SBL6026 199.245.138.0/24 ; SBL9923 199.60.102.0/24 ; SBL9159 200.106.128.0/20 ; SBL85870 200.115.112.0/21 ; SBL86809 200.115.96.0/20 ; SBL85853 200.123.224.0/20 ; SBL85855 200.124.160.0/21 ; SBL85854 200.22.0.0/16 ; SBL84896 200.50.192.0/19 ; SBL77554 201.158.96.0/21 ; SBL76952 201.71.0.0/20 ; SBL38197 203.19.101.0/24 ; SBL6619 203.31.88.0/23 ; SBL8083 203.34.205.0/24 ; SBL7330 203.34.70.0/23 ; SBL9682 203.34.71.0/24 ; SBL7244 204.13.32.0/21 ; SBL37362 204.236.0.0/19 ; SBL46767 204.52.255.0/24 ; SBL13483 204.89.224.0/24 ; SBL11667 205.210.137.0/24 ; SBL25844 205.235.64.0/20 ; SBL8558 205.236.189.0/24 ; SBL9442 206.197.175.0/24 ; SBL14246 206.197.176.0/24 ; SBL14250 206.197.177.0/24 ; SBL14248 206.197.28.0/24 ; SBL14253 206.197.29.0/24 ; SBL14251 208.77.224.0/21 ; SBL62629 208.81.136.0/21 ; SBL61909 208.82.136.0/21 ; SBL59310 208.84.96.0/21 ; SBL72825 208.87.152.0/21 ; SBL64180 208.90.0.0/21 ; SBL83016 209.165.224.0/20 ; SBL163 209.213.48.0/20 ; SBL57862 213.109.176.0/20 ; SBL86781 213.109.208.0/20 ; SBL81091 213.109.96.0/22 ; SBL80829 216.243.240.0/20 ; SBL55229 41.221.112.0/20 ; SBL73618 58.83.12.0/22 ; SBL53280 58.83.8.0/22 ; SBL67465 62.122.32.0/21 ; SBL73243 62.182.152.0/21 ; SBL83337 64.15.0.0/20 ; SBL84899 64.28.176.0/20 ; SBL36453 66.206.32.0/22 ; SBL67916 67.210.0.0/20 ; SBL58520 67.211.208.0/20 ; SBL74177 67.213.128.0/20 ; SBL72074 67.218.208.0/20 ; SBL79149 69.8.176.0/20 ; SBL15315 72.13.16.0/20 ; SBL83151 72.2.176.0/20 ; SBL65287 72.50.192.0/19 ; SBL69515 78.155.220.0/23 ; SBL71758 78.157.128.0/19 ; SBL68777 78.31.184.0/21 ; SBL83336 79.110.16.0/20 ; SBL83334 79.110.160.0/20 ; SBL67820 79.110.176.0/20 ; SBL79067 79.110.48.0/20 ; SBL81903 85.202.192.0/20 ; SBL83332 85.255.112.0/20 ; SBL36702 86.105.230.0/24 ; SBL50622 88.135.64.0/21 ; SBL84897 88.135.64.0/20 ; SBL86516 88.214.211.0/24 ; SBL67516 89.35.0.0/23 ; SBL47082 91.196.232.0/22 ; SBL60122 91.199.112.0/24 ; SBL64756 91.200.164.0/22 ; SBL83164 91.200.248.0/22 ; SBL83326 91.201.124.0/22 ; SBL82375 91.201.196.0/22 ; SBL86729 91.203.92.0/22 ; SBL65512 91.205.40.0/22 ; SBL80808 91.207.116.0/23 ; SBL72150 91.208.0.0/24 ; SBL66769 91.208.162.0/24 ; SBL68740 91.208.228.0/24 ; SBL85021 91.209.14.0/24 ; SBL69636 91.209.183.0/24 ; SBL80244 91.209.184.0/24 ; SBL71669 91.209.186.0/24 ; SBL73228 91.209.48.0/24 ; SBL74708 91.209.58.0/24 ; SBL73115 91.210.172.0/22 ; SBL71956 91.211.224.0/22 ; SBL81784 91.211.64.0/22 ; SBL70438 91.211.88.0/22 ; SBL71163 91.212.107.0/24 ; SBL82098 91.212.123.0/24 ; SBL78564 91.212.132.0/24 ; SBL84886 91.212.163.0/24 ; SBL76770 91.212.201.0/24 ; SBL76662 91.212.220.0/24 ; SBL87278 91.212.45.0/24 ; SBL73397 91.212.65.0/24 ; SBL73329 91.213.121.0/24 ; SBL80042 91.213.126.0/24 ; SBL77763 91.213.174.0/24 ; SBL83028 91.213.29.0/24 ; SBL80031 91.213.33.0/24 ; SBL77856 91.213.72.0/24 ; SBL78805 91.213.75.0/24 ; SBL84610 91.213.93.0/24 ; SBL78807 91.213.94.0/24 ; SBL78806 93.118.0.0/20 ; SBL86348 93.118.128.0/18 ; SBL77516 93.118.96.0/20 ; SBL86482 93.120.32.0/19 ; SBL86549 93.168.18.0/23 ; SBL86334 93.168.20.0/23 ; SBL86333 93.168.22.0/23 ; SBL86332 93.168.24.0/23 ; SBL86331 93.175.240.0/20 ; SBL83333 93.188.160.0/21 ; SBL66854 94.130.0.0/15 ; SBL83315 94.154.0.0/18 ; SBL83335 94.154.128.0/18 ; SBL67819 94.154.64.0/18 ; SBL86734 94.158.240.0/20 ; SBL81904 94.176.176.0/20 ; SBL86511 94.232.248.0/21 ; SBL73242 94.48.0.0/18 ; SBL86184 95.129.144.0/23 ; SBL75264 95.129.146.0/24 ; SBL75437 95.177.128.0/18 ; SBL86766 95.215.192.0/22 ; SBL79623 95.216.0.0/15 ; SBL83308 prelude-correlator-1.0.0/PreludeCorrelator/plugins/scan.py0000664000076400007640000000737411327325741023022 0ustar yoannyoann# Copyright (C) 2006 G Ramon Gomez # Copyright (C) 2009 PreludeIDS Technologies # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. # Detect Eventscan: # Playing multiple events from a single host against another single host from PreludeCorrelator.context import Context from PreludeCorrelator.pluginmanager import Plugin class EventScanPlugin(Plugin): def run(self, idmef): source = idmef.Get("alert.source(*).node.address(*).address") target = idmef.Get("alert.target(*).node.address(*).address") if not source or not target: return for saddr in source: for daddr in target: ctx = Context(("SCAN EVENTSCAN", saddr, daddr), { "expire": 60, "threshold": 30, "alert_on_expire": True }, update = True, idmef=idmef) if ctx.getUpdateCount() == 0: ctx.Set("alert.correlation_alert.name", "A single host has played many events against a single target. This may be a vulnerability scan") ctx.Set("alert.classification.text", "Eventscan") ctx.Set("alert.assessment.impact.severity", "high") # Detect Eventsweep: # Playing the same event from a single host against multiple hosts class EventSweepPlugin(Plugin): def run(self, idmef): classification = idmef.Get("alert.classification.text") source = idmef.Get("alert.source(*).node.address(*).address") target = idmef.Get("alert.target(*).node.address(*).address") if not source or not target or not classification: return for saddr in source: ctx = Context(("SCAN EVENTSWEEP", classification, saddr), { "expire": 60, "threshold": 30, "alert_on_expire": True }, overwrite = False) if ctx.getUpdateCount() == 0: ctx.Set("alert.correlation_alert.name", "A single host has played the same event against multiple targets. This may be a network scan for a specific vulnerability") ctx.Set("alert.classification.text", "Eventsweep") ctx.Set("alert.assessment.impact.severity", "high") cur = ctx.Get("alert.target(*).node.address(*).address") if cur: for address in target: if address in cur: insert = False return ctx.update(idmef=idmef) # Detect Eventstorm: # Playing excessive events by a single host class EventStormPlugin(Plugin): def run(self, idmef): source = idmef.Get("alert.source(*).node.address(*).address") if not source: return for saddr in source: ctx = Context(("SCAN EVENTSTORM", saddr), { "expire": 120, "threshold": 150, "alert_on_expire": True }, update = True, idmef = idmef) if ctx.getUpdateCount() == 0: ctx.Set("alert.correlation_alert.name", "A single host is producing an unusual amount of events") ctx.Set("alert.classification.text", "Eventstorm") ctx.Set("alert.assessment.impact.severity", "high") prelude-correlator-1.0.0/PreludeCorrelator/config.py0000664000076400007640000000343611225410745021651 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import ConfigParser class Config(ConfigParser.ConfigParser): def __init__(self, filename): ConfigParser.ConfigParser.__init__(self) self.read(filename) def get(self, section, option, raw=None, vars=None, default=None, type=str): try: return type(ConfigParser.ConfigParser.get(self, section, option, raw, vars)) except ConfigParser.NoSectionError: return default except ConfigParser.NoOptionError: return default def getAsBool(self, section, option, raw=None, vars=None, default=None): b = self.get(section, option, raw, vars, default) if type(b) is bool: return b b = b.strip().lower() if b == "true" or b == "yes": return True return False prelude-correlator-1.0.0/PreludeCorrelator/context.py0000664000076400007640000001724011344213110022053 0ustar yoannyoann# Copyright (C) 2009 PreludeIDS Technologies. All Rights Reserved. # Author: Yoann Vandoorselaere # # This file is part of the Prelude-Correlator program. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. import os, time, StringIO, pickle from PreludeCorrelator.idmef import IDMEF from PreludeCorrelator import require _TIMER_LIST = [ ] _CONTEXT_TABLE = { } class Timer: def __setstate__(self, dict): self.__dict__.update(dict) if self._timer_start: _TIMER_LIST.append(self) def __init__(self, expire, cb_func=None): self._timer_start = None self._timer_expire = expire self._timer_cb = cb_func def _timerExpireCallback(self): self.stop() try: self._timer_cb(self) except: pass def hasExpired(self, now=time.time()): return self.elapsed(now) >= self._timer_expire def check(self, now=time.time()): if self.hasExpired(now): self._timerExpireCallback() def elapsed(self, now=time.time()): return now - self._timer_start def running(self): return self._timer_start != None def setExpire(self, expire): self._timer_expire = expire def start(self): if not self._timer_start and self._timer_expire > 0: self._timer_start = time.time() _TIMER_LIST.append(self) def stop(self): if self._timer_start: _TIMER_LIST.remove(self) self._timer_start = None def reset(self): self.stop() self.start() class Context(IDMEF, Timer): FORMAT_VERSION = 0.1 def __setstate__(self, dict): Timer.__setstate__(self, dict) IDMEF.__setstate__(self, dict) def __init__(self, name, options={}, overwrite=True, update=False, idmef=None): already_initialized = (update or (overwrite is False)) and hasattr(self, "_name") if already_initialized is True: return self._version = self.FORMAT_VERSION self._options = { "threshold": -1, "expire": 0, "alert_on_expire": False } IDMEF.__init__(self) Timer.__init__(self, 0) name = getName(name) self._name = name self._update_count = 0 if _CONTEXT_TABLE.has_key(name): # Make sure any timer is deleted on overwrite _CONTEXT_TABLE[name].destroy() _CONTEXT_TABLE[name] = self self._options.update(options) self.setOptions(self._options) if idmef: self.addAlertReference(idmef) def __new__(cls, name, options={}, overwrite=True, update=False, idmef=None): if update or (overwrite is False): ctx = search(name) if ctx: if update: ctx.update(options, idmef) return ctx if overwrite is False: return ctx return super(Context, cls).__new__(cls) def _timerExpireCallback(self): threshold = self._options["threshold"] alert_on_expire = self._options["alert_on_expire"] if alert_on_expire: if threshold == -1 or (self._update_count + 1) >= threshold: if callable(alert_on_expire): alert_on_expire(self) return else: self.alert() self.destroy() def isVersionCompatible(self): version = self.__dict__.get("_version", None) return self.FORMAT_VERSION == version def update(self, options={}, idmef=None): self._update_count += 1 if idmef: self.addAlertReference(idmef) if self.running(): self.reset() self._options.update(options) self.setOptions(self._options) def stats(self, log_func, now=time.time()): str = "" if self._options["threshold"] != -1: str += " threshold=%d/%d" % (self._update_count + 1, self._options["threshold"]) if self._timer_start: str += " expire=%d/%d" % (self.elapsed(now), self._options["expire"]) log_func("[%s]: update=%d%s" % (self._name, self._update_count, str)) def getOptions(self): return self._options def setOptions(self, options={}): self._options = options Timer.setExpire(self, self._options.get("expire", 0)) Timer.start(self) # will only start the timer if not already running def getUpdateCount(self): return self._update_count def destroy(self): if isinstance(self, Timer): self.stop() del(_CONTEXT_TABLE[self._name]) def getName(arg): def escape(s): return s.replace("_", "\\_") if type(arg) is str: return escape(arg) cnt = 0 name = "" for i in arg: if cnt > 0: name += "_" name += escape(str(i)) cnt += 1 return name def search(name): name = getName(name) if _CONTEXT_TABLE.has_key(name): return _CONTEXT_TABLE[name] return None _ctxt_filename = require.get_data_filename(None, "context.dat") def save(): fd = open(_ctxt_filename, "w") pickle.dump(_CONTEXT_TABLE, fd) fd.close() def load(): if os.path.exists(_ctxt_filename): fd = open(_ctxt_filename, "r") try: _CONTEXT_TABLE.update(pickle.load(fd)) except EOFError: return for ctx in _CONTEXT_TABLE.values(): if not ctx.isVersionCompatible(): ctx.destroy() def wakeup(now): for timer in _TIMER_LIST: timer.check(now) def stats(logger): now = time.time() with_threshold = [] for ctx in _CONTEXT_TABLE.values(): if ctx._options["threshold"] == -1: ctx.stats(logger.info, now) else: with_threshold.append(ctx) with_threshold.sort(lambda x, y: x.getUpdateCount() - y.getUpdateCount()) for ctx in with_threshold: ctx.stats(logger.info, now) prelude-correlator-1.0.0/COPYING0000664000076400007640000004311011216223666015425 0ustar yoannyoann GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. prelude-correlator-1.0.0/prelude_correlator.egg-info/0000775000076400007640000000000011347714243021762 5ustar yoannyoannprelude-correlator-1.0.0/prelude_correlator.egg-info/top_level.txt0000664000076400007640000000002211347714243024506 0ustar yoannyoannPreludeCorrelator prelude-correlator-1.0.0/prelude_correlator.egg-info/SOURCES.txt0000664000076400007640000000216311347714243023650 0ustar yoannyoannAUTHORS COPYING ChangeLog HACKING.README NEWS README ez_setup.py prelude-correlator.conf setup.py PreludeCorrelator/__init__.py PreludeCorrelator/config.py PreludeCorrelator/context.py PreludeCorrelator/idmef.py PreludeCorrelator/log.py PreludeCorrelator/main.py PreludeCorrelator/pluginmanager.py PreludeCorrelator/require.py PreludeCorrelator/utils.py PreludeCorrelator/plugins/__init__.py PreludeCorrelator/plugins/bruteforce.py PreludeCorrelator/plugins/businesshour.py PreludeCorrelator/plugins/dshield.dat PreludeCorrelator/plugins/dshield.py PreludeCorrelator/plugins/firewall.py PreludeCorrelator/plugins/opensshauth.py PreludeCorrelator/plugins/scan.py PreludeCorrelator/plugins/spamhaus_drop.dat PreludeCorrelator/plugins/spamhausdrop.py PreludeCorrelator/plugins/worm.py docs/sample-plugin/setup.py docs/sample-plugin/myplugin/__init__.py docs/sample-plugin/myplugin/main.py prelude_correlator.egg-info/PKG-INFO prelude_correlator.egg-info/SOURCES.txt prelude_correlator.egg-info/dependency_links.txt prelude_correlator.egg-info/entry_points.txt prelude_correlator.egg-info/not-zip-safe prelude_correlator.egg-info/top_level.txtprelude-correlator-1.0.0/prelude_correlator.egg-info/PKG-INFO0000664000076400007640000000277311347714243023070 0ustar yoannyoannMetadata-Version: 1.0 Name: prelude-correlator Version: 1.0.0 Summary: Prelude-Correlator perform real time correlation of events received by Prelude Home-page: http://www.prelude-ids.com Author: Yoann Vandoorselaere Author-email: yoann.v@prelude-ids.com License: UNKNOWN Download-URL: http://www.prelude-ids.com/development/download/ Description: Prelude-Correlator perform real time correlation of events received by Prelude. Several isolated alerts, generated from different sensors, can thus trigger a single CorrelationAlert should the events be related. This CorrelationAlert then appears within the Prewikka interface and indicates the potential target information via the set of correlation rules. Signature creation with Prelude-Correlator is based on the Python programming language. Prelude's integrated correlation engine is distributed with a default set of correlation rules, yet you still have the opportunity to modify and create any correlation rule that suits your needs. Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Environment :: Console Classifier: Intended Audience :: System Administrators Classifier: License :: OSI Approved :: GNU General Public License (GPL) Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Topic :: Security Classifier: Topic :: System :: Monitoring prelude-correlator-1.0.0/prelude_correlator.egg-info/entry_points.txt0000664000076400007640000000142511347714243025262 0ustar yoannyoann[PreludeCorrelator.plugins] OpenSSHAuthPlugin = PreludeCorrelator.plugins.opensshauth:OpenSSHAuthPlugin EventSweepPlugin = PreludeCorrelator.plugins.scan:EventSweepPlugin BusinessHourPlugin = PreludeCorrelator.plugins.businesshour:BusinessHourPlugin WormPlugin = PreludeCorrelator.plugins.worm:WormPlugin FirewallPlugin = PreludeCorrelator.plugins.firewall:FirewallPlugin BruteForcePlugin = PreludeCorrelator.plugins.bruteforce:BruteForcePlugin EventStormPlugin = PreludeCorrelator.plugins.scan:EventStormPlugin SpamhausDropPlugin = PreludeCorrelator.plugins.spamhausdrop:SpamhausDropPlugin DshieldPlugin = PreludeCorrelator.plugins.dshield:DshieldPlugin EventScanPlugin = PreludeCorrelator.plugins.scan:EventScanPlugin [console_scripts] prelude-correlator = PreludeCorrelator.main:main prelude-correlator-1.0.0/prelude_correlator.egg-info/dependency_links.txt0000664000076400007640000000000111347714243026030 0ustar yoannyoann prelude-correlator-1.0.0/prelude_correlator.egg-info/not-zip-safe0000664000076400007640000000000111225410744024202 0ustar yoannyoann prelude-correlator-1.0.0/HACKING.README0000664000076400007640000000146111216224115016306 0ustar yoannyoannThis directory and its children contain the Prelude-Correlator software. Changes: if you wish to contribute a change which is a significant one in terms of the amount of code changes (rulesets excluded), please be aware that PreludeIDS Technologies SARL wishes to retain copyright of the Prelude-Correlator software. Therefore you will have to sign over copyright ownership of your code to PreludeIDS Technologies SARL before we can include your changes in the main source tree. Before you start modifying anything for real, you should probably join the prelude-devel mailing list and send a mail describing what you want to do and how you want to do it so you don't waste time working on something we can't integrate. This also allows us to keep track of what's being worked on so efforts aren't duplicated. prelude-correlator-1.0.0/prelude-correlator.conf0000664000076400007640000000321511327325741021055 0ustar yoannyoann# This is a template configuration file for prelude-correlator # # [BruteForcePlugin] # disable = false # # Disable BusinessHour correlation by default since it is very verbose [BusinessHourPlugin] disable = true # # [OpenSSHAuthPlugin] # disable = false # # [EventScanPlugin] # disable = false # # [EventStormPlugin] # disable = false # # [EventSweepPlugin] # disable = false # # [WormPlugin] # disable = false # repeat-target = 5 # # [DshieldPlugin] # disable = false # # How often the Dshield database should be reloaded (download + reload) # (default: once a week). 0 to disable reloading. # reload = 604800 # # The server address where the Dshield database is loaded from: # server = www.dshield.org # # URI used to retrive the dshield database: # uri = /ipsascii.html?limit=10000 # # Define the maximum allowed time for downloading the database # (only work with Python >= 2.6, default is 10 seconds) # timeout = 10 # This plugin will report CorrelationAlert for events / sets of events # that appear to have passed through a firewall known to protect the # target machine. # # If no firewall ever emit block concerning a given host, then this host # is considered un-protected, and there is no point in reporting # CorrelationAlert. # # The 'flush-protected-hosts' variable allow you to define how much # time a given target hosts should be considered as protected when a # firewall drop is noticed for this machine. # # The plugin is disabled by default since it tend to be very verbose [FirewallPlugin] disable = True flush-protected-hosts = 3600 ## # Logging configuration might also be defined in this file: # http://docs.python.org/library/logging.html prelude-correlator-1.0.0/ChangeLog0000664000076400007640000044764611347714236016175 0ustar yoannyoanncommit 48b57a5158cf6a14e5e86c021534f336ffc2969f Author: Yoann Vandoorselaere Date: 2010-03-16 Update NEWS, bump version number NEWS | 17 ++++++++++++++++- prelude_correlator.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) commit 3472e42c3fc5ba30d3cc32cf985a4250f9b731f1 Author: Yoann Vandoorselaere Date: 2010-03-16 Do not generate CorrelationAlert for multiples successful authentication The current BruteForce plugin implementation was generating Correlation Event for multiples, successfull login events. In the future, we might want to include successfull authentication following a number of failed events, so that generated CorrelationAlert includes full details. PreludeCorrelator/plugins/bruteforce.py | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) commit 82465fd06f62b12274cfd92ae23ddf1bd8e61417 Author: F. Yhuel Date: 2010-03-16 Fix correlator exception with empty list With recent versions of libprelude, the IDMEF class Set() method properly handle empty lists, but raises an exception on None input value. Therefore, the three lines removed in this patch, which were casting empty list into None, used to trigger a prelude-correlator exception, when prelude-correlator was receiving IDMEF alerts without sources or targets. Signed-off-by: Yoann Vandoorselaere PreludeCorrelator/idmef.py | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) commit 5a358aa37acd702f8e6e5185df9f2743d2284818 Author: Yoann Vandoorselaere Date: 2010-03-10 Log to syslog when daemon mode is used When Prelude-Correlator is started as a daemon, make sure we use syslog for logging. PreludeCorrelator/log.py | 14 ++++++++++---- PreludeCorrelator/main.py | 8 ++++---- 2 files changed, 14 insertions(+), 8 deletions(-) commit 7cd300069d788c4366846e2ca600aa46c8e45cf6 Author: Yoann Vandoorselaere Date: 2010-03-10 Temporarily disable documentation code installation This install in the wrong prefix, and we have no concrete solution for this without breaking other part of the system. setup.py | 8 +------- 1 files changed, 1 insertions(+), 7 deletions(-) commit 8a1e4979e472b4041ddcbec2584bdb9c5e6afdbc Author: Yoann Vandoorselaere Date: 2010-03-08 Update NEWS, bump version NEWS | 5 +++++ prelude_correlator.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) commit c82ad3f2f36440d7799dfd662134d453239fabb9 Author: Yoann Vandoorselaere Date: 2010-03-08 Include docs/sample-plugin to SOURCES Closes #372. prelude_correlator.egg-info/SOURCES.txt | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) commit 287448ad663f8fc0911636c04f6fd7145711676f Author: Yoann Vandoorselaere Date: 2010-03-05 Update NEWS, bump version number. NEWS | 13 +++++++++++++ prelude_correlator.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) commit 59ef7693efb2125bab0ed4eeb08d7f703a504839 Author: Yoann Vandoorselaere Date: 2010-03-05 Remove SpamHausDrop database from GIT repository The file is updated/included upon each releases. There is no need to track it within the GIT repository. PreludeCorrelator/plugins/spamhaus_drop.dat | 198 --------------------------- 1 files changed, 0 insertions(+), 198 deletions(-) delete mode 100644 PreludeCorrelator/plugins/spamhaus_drop.dat commit 2390952d41db673386c620d0fd8ce4720f0b89f6 Author: Yoann Vandoorselaere Date: 2010-03-05 Prevent double escape of context identifiers Prelude-Correlator wasn't properly updating context (and thus, didn't generate correlation events) since context identifiers were escaped twice. PreludeCorrelator/context.py | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) commit e0d28d24a950fe912818c3059145b3cb970df790 Author: Yoann Vandoorselaere Date: 2010-02-26 Add a sample-plugin example docs/sample-plugin/myplugin/__init__.py | 1 + docs/sample-plugin/myplugin/main.py | 6 ++++++ docs/sample-plugin/setup.py | 13 +++++++++++++ setup.py | 9 +++++++-- 4 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 docs/sample-plugin/myplugin/__init__.py create mode 100644 docs/sample-plugin/myplugin/main.py create mode 100644 docs/sample-plugin/setup.py commit bba0e398a994fc3a59674dadc192f3423ff86475 Author: Yoann Vandoorselaere Date: 2010-02-09 Introduce version checking for Unpickled elements This introduce version compatibility check when unpickling a context, if the Context implementation version has changed, then the old Context won't be restaured. This avoid runtime exception if/when Context attributes changes. PreludeCorrelator/context.py | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) commit a1331040dde79f1975b09596ad6ea1518d88d307 Author: Yoann Vandoorselaere Date: 2010-02-01 Fix generated tarball name, release rc2 NEWS | 6 ++++++ prelude_correlator.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) commit 5eb328b52d97abcccf4e69349099bd98d03d3173 Author: Yoann Vandoorselaere Date: 2010-02-01 Update Spamhaus Drop database PreludeCorrelator/plugins/spamhaus_drop.dat | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) commit d55227226321824d406c28704bb4bcffbc68d5d8 Author: Yoann Vandoorselaere Date: 2010-01-29 Update NEWS, bump version number NEWS | 49 ++++++++++++++++++++++++++++++++++ prelude_correlator.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 3 files changed, 51 insertions(+), 2 deletions(-) commit ea4f2c2cc0c1101029bc151a6889c0dedd49aeaa Author: Yoann Vandoorselaere Date: 2010-01-20 Update Spamhaus Drop database PreludeCorrelator/plugins/spamhaus_drop.dat | 21 ++++++++++++++++----- 1 files changed, 16 insertions(+), 5 deletions(-) commit 3c35a8870f623504d0976f3487bcb59b1bcb3c18 Author: Yoann Vandoorselaere Date: 2010-01-20 Firewall plugin improvement The plugin will now report CorrelationAlert for events / sets of events that appear to have passed through a firewall known to protect the target machine. If no firewall ever emit block concerning a given host, then this host is considered un-protected, and there is no point in reporting CorrelationAlert. The 'flush-protected-hosts' variable allow you to define how much time a given target hosts should be considered as protected when a firewall drop is noticed for this machine. PreludeCorrelator/plugins/firewall.py | 89 ++++++++++++++++++++++++++------ prelude-correlator.conf | 21 +++++++- 2 files changed, 90 insertions(+), 20 deletions(-) commit 847312c095e14782b10613d2448080916b120ef1 Author: Yoann Vandoorselaere Date: 2010-01-20 Fix for recent libprelude version Recent libprelude version are able to correctly return list of IDMEFValue, don't raise an exception about it. PreludeCorrelator/idmef.py | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) commit 69ab7f2a89ad1ee5c8730c8624c787fda7c2e33f Author: Yoann Vandoorselaere Date: 2010-01-20 Provide a specialized function for escaping context name PreludeCorrelator/context.py | 21 +++++++++++++++++++++ PreludeCorrelator/plugins/bruteforce.py | 4 ++-- PreludeCorrelator/plugins/dshield.py | 2 +- PreludeCorrelator/plugins/firewall.py | 2 +- PreludeCorrelator/plugins/opensshauth.py | 2 +- PreludeCorrelator/plugins/scan.py | 6 +++--- PreludeCorrelator/plugins/spamhausdrop.py | 2 +- PreludeCorrelator/plugins/worm.py | 4 ++-- 8 files changed, 32 insertions(+), 11 deletions(-) commit f9fc0099aa838b491ce872ea70384bd9df24b711 Author: Yoann Vandoorselaere Date: 2010-01-16 ez_setup.py attempted to download inexistant setuptools version This is a regression of commit 6f9328ecd837da5cfbe9b6bd6614020e95d3e8e2, where we lowered setuptools requirement so that prelude-correlator would work out of the box with most distribution setuptools package. However, in case where setuptools isn't available on the system, and ez_setup.py attempt to download it, old setuptools version packages are not available for newer Python version. Fix this problem by forcing a recent version specifically when downloading setuptools. ez_setup.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) commit e7242744d539aa6c3e4baa421403a2bcea43836f Author: Yoann Vandoorselaere Date: 2010-01-16 [Worm]: only add related events to the CorrelationAlert PreludeCorrelator/plugins/worm.py | 14 +++++++++----- 1 files changed, 9 insertions(+), 5 deletions(-) commit 09ba679044b70608144e24b01dae982011469682 Author: Yoann Vandoorselaere Date: 2010-01-16 Context class improvement: overwrite, and new update method Context initialization now take an optional 'overwrite' argument. This argument, if set to False, mean that the Context() will be returned un-modified if it already exist. If it doesn't, it will be created. There is now a new update() method, which provide exactly the same functionality as calling Context() with the 'update=True' argument. This is useful since some plugin might want to defer an update to another place in the code. Remove CheckAndDecThreshold() method. This function can be replaced by using Context.update() along with the Context.getUpdateCount() method. [Scan]: Update to the new Context API (removal of CheckAndDecThreshold). Improve the plugin so that it report CorrelationAlert after the timer expire, not after the threshold is reached. PreludeCorrelator/context.py | 79 +++++++++++++++++++++--------------- PreludeCorrelator/plugins/scan.py | 33 +++++---------- 2 files changed, 57 insertions(+), 55 deletions(-) commit 88cee2590c571092aef170c3cd6edeee77fe85a7 Author: Yoann Vandoorselaere Date: 2010-01-16 Do not start Timer if they have no expiration time PreludeCorrelator/context.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 8df4661a39fc563a53bf32452a569d796550b6bc Author: Yoann Vandoorselaere Date: 2010-01-15 Sort dump of context statistics When dumping context statistics, sort the context by threshold. This can make debugging easier. PreludeCorrelator/context.py | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) commit c7e9a2c7aa7daa1943b62e0224640d6f2370ab3c Author: Yoann Vandoorselaere Date: 2010-01-15 Fix timer issue on reset() Since the introduction of IDMEF.reset(), timer reset was not working due to a conflict in the method being called. Remove the IDMEF.reset() method since it is a NOP anyway, and store each received events in a newly allocated IDMEF instance. PreludeCorrelator/idmef.py | 3 --- PreludeCorrelator/main.py | 4 +--- 2 files changed, 1 insertions(+), 6 deletions(-) commit 1f4c6bb0cac0876cc9b19dc12d703fc8e53e7151 Author: Yoann Vandoorselaere Date: 2010-01-15 [OpenSSHAuth]: fix potential issue on exit Move the alert() function out of the OpenSSHAuth class, making it a constant, so that it can be successfuly pickled by Python when saving related context. Avoid possible exception on exit. PreludeCorrelator/plugins/opensshauth.py | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) commit 39afc4f0c32251b3a2d44b8635d65de0f41d5080 Author: Yoann Vandoorselaere Date: 2010-01-15 [FirewallPlugin]: ability to queue multiples events The plugin can now report 'non firewall block' for multiples events at a time. PreludeCorrelator/plugins/firewall.py | 17 +++++++++-------- 1 files changed, 9 insertions(+), 8 deletions(-) commit 88d7d04acb73c7d4f4de9fc20f41c0126fa2396e Author: Yoann Vandoorselaere Date: 2010-01-15 [OpenSSHAuth]: Fix reference to Correlated Alert Each reference was set twice, and we were creating new reference even for already known authentication type. PreludeCorrelator/plugins/opensshauth.py | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) commit ff30acda325998e93034bfa806305df906e5da7e Author: Yoann Vandoorselaere Date: 2010-01-15 BruteForce plugin improvement Do not stop reporting a bruteForce when the threshold is reached, rather wait until the Context expire. Improve alert description, and do not filter out success login. Use alert_on_expire in order to queue as much login attempt as possible PreludeCorrelator/plugins/bruteforce.py | 25 +++++++++---------------- 1 files changed, 9 insertions(+), 16 deletions(-) commit 9ff291c40bbb45d9c63f2c7fa1c556b9a3d50a43 Author: Yoann Vandoorselaere Date: 2010-01-14 Update SpamHaus database PreludeCorrelator/plugins/spamhaus_drop.dat | 63 ++++++++++++++++++++------ 1 files changed, 48 insertions(+), 15 deletions(-) commit 784ec4a8c0b011281257b72a4464481998567a84 Author: Yoann Vandoorselaere Date: 2010-01-10 DetectTime correction for Dshield generated CorrelationAlert PreludeCorrelator/plugins/dshield.py | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) commit f5405a473624c96c61666774fae0e459b9c42c89 Author: Yoann Vandoorselaere Date: 2010-01-10 Disable BusinessHour correlation by default since it is very verbose prelude-correlator.conf | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) commit 0f1b91eb9904512d49b368c2b757ec45491584c2 Author: Yoann Vandoorselaere Date: 2010-01-10 Correctly set CorrelationAlert DetectTime Modify addAlertReference() so that the reported CorrelationAlert DetectTime match the time of the first event that was detected. From IDMEF RFC 4765, section 4.2.2: DetectTime The time the event(s) leading up to the alert was detected. In the case of more than one event, the time the first event was detected. In some circumstances, this may not be the same value as CreateTime. PreludeCorrelator/idmef.py | 15 ++++++++++++++- PreludeCorrelator/main.py | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) commit de58c2c83efb4c5339e172ec6f928004770bbcad Author: Yoann Vandoorselaere Date: 2009-12-23 Fix exception in case of unsupported address format PreludeCorrelator/plugins/spamhausdrop.py | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) commit 6f9328ecd837da5cfbe9b6bd6614020e95d3e8e2 Author: Yoann Vandoorselaere Date: 2009-12-18 Update ez_setup.py, lower setuptools requirement ez_setup.py | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) commit 4ec941a82ad936a1085ab28225cdde41de2f857f Author: Yoann Vandoorselaere Date: 2009-12-18 Implement the Context.stats() method Dump useful statistics concerning the context. PreludeCorrelator/context.py | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) commit eec8622dab5eff5ff2865e555ff57b0054b05291 Author: Yoann Vandoorselaere Date: 2009-12-17 Make it possible to change context option on update This introduce the setOptions() and getOptions() method, and allow to update Context options on class initialization. PreludeCorrelator/context.py | 48 ++++++++++++++++++++++++----------------- 1 files changed, 28 insertions(+), 20 deletions(-) commit cdea049014e69f6398d75b932361667348f3c451 Author: Yoann Vandoorselaere Date: 2009-12-17 OpenSSHAuth CorrelationAlert now handle multiples events Previously, we would generate a single CorrelationAlert each time a different authentication method was used. The OpenSSHAuth plugin has been modified so that it can now generate a single CorrelationAlert for multiples authentication method used in a given time slice. PreludeCorrelator/plugins/opensshauth.py | 21 ++++++++++++--------- 1 files changed, 12 insertions(+), 9 deletions(-) commit 547a9b9cda2cb7d82436b280a2da4ff32d482d55 Author: Yoann Vandoorselaere Date: 2009-12-17 Fix SpamhausDrop context creation PreludeCorrelator/plugins/spamhausdrop.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit a55f1b4f2c7d89cebca62c34e02ad48d4dbab24d Author: Yoann Vandoorselaere Date: 2009-12-17 Update context directly from the __new__() method PreludeCorrelator/context.py | 29 ++++++++++++++++------------- 1 files changed, 16 insertions(+), 13 deletions(-) commit 9d9d1e85bc07468cd0128a3c77a2bd08931e292b Author: Yoann Vandoorselaere Date: 2009-12-16 Prefix Timer variable, to prevent potential conflict with Context class variable PreludeCorrelator/context.py | 30 +++++++++++++++--------------- 1 files changed, 15 insertions(+), 15 deletions(-) commit 28681237e015ab42475072c015c03d82725980cf Author: Yoann Vandoorselaere Date: 2009-11-24 Make informational plugin output more consistant PreludeCorrelator/pluginmanager.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit bd2ca57c54a193977ee7ecb59afed40e87c4599b Author: Yoann Vandoorselaere Date: 2009-11-05 Spamhaus CorrelationAlert now handle multiples events Previously, we would generate a single Spamhaus CorrelationAlert for each events where the source address would match the Spamhaus database. The Spamhaus plugin has been modified so that it now generate CorrelationAlert for multiples event received from the same source. PreludeCorrelator/plugins/spamhausdrop.py | 13 ++++++------- 1 files changed, 6 insertions(+), 7 deletions(-) commit fa87b9fb76c1bada36c07312c9e96b8ab6efbed6 Author: Yoann Vandoorselaere Date: 2009-11-04 Context initialization now handle an IDMEF parameters If the context creation/update function is called with an IDMEF message parameter, then we automatically call addAlertReference on the context CorrelationAlert using the provided message as the parameter. PreludeCorrelator/context.py | 24 ++++++++++++++++-------- PreludeCorrelator/plugins/bruteforce.py | 6 ++---- PreludeCorrelator/plugins/dshield.py | 7 ++----- PreludeCorrelator/plugins/firewall.py | 3 +-- PreludeCorrelator/plugins/scan.py | 9 ++------- PreludeCorrelator/plugins/worm.py | 3 +-- 6 files changed, 24 insertions(+), 28 deletions(-) commit a3ef40e92baa240b1d11b2d54aa8588d321cd356 Author: Yoann Vandoorselaere Date: 2009-11-04 Implement context getUpdateCount() method This allow for a plugin to know how much time a context has been updated. PreludeCorrelator/context.py | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) commit a85cd9d1a64fdb70caee79c784d0aeef80078d71 Author: Yoann Vandoorselaere Date: 2009-11-04 Use the easy addAlertReference() method PreludeCorrelator/plugins/firewall.py | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) commit d0cf6f5de42fae009c78bf6d56483676d08af6a7 Author: Yoann Vandoorselaere Date: 2009-11-04 Make it possible for plugin to specify a function to be called on expire. PreludeCorrelator/context.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) commit dfb338b8f0e4e3b2a8c0ea7f0f3c64f60f0c4fc1 Author: Yoann Vandoorselaere Date: 2009-11-03 Update NEWS, bump version. NEWS | 6 ++++++ prelude_correlator.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) commit 6db3c3ec0abf676c6d0df9f8385cb384127b94cf Author: Yoann Vandoorselaere Date: 2009-11-03 Include spamhaus_drop.dat in the source distribution (closes #364). PreludeCorrelator/plugins/spamhaus_drop.dat | 2 +- prelude_correlator.egg-info/SOURCES.txt | 1 + 2 files changed, 2 insertions(+), 1 deletions(-) commit 9531ba192bd2a97ff0012dddf39d527313fd2527 Author: Yoann Vandoorselaere Date: 2009-11-02 Forgot version bump, and dshield database update. This is included in beta7. PreludeCorrelator/plugins/spamhaus_drop.dat | 27 +++++++++++++++------------ prelude_correlator.egg-info/PKG-INFO | 2 +- prelude_correlator.egg-info/SOURCES.txt | 2 +- setup.py | 2 +- 4 files changed, 18 insertions(+), 15 deletions(-) commit d3c6c5aae5ddd818789afeab57610b581ca75907 Author: Yoann Vandoorselaere Date: 2009-11-02 Update NEWS, bump version. NEWS | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) commit 4c25c0c989901d4e93a107fbb94c9f71b3fe94f5 Author: Yoann Vandoorselaere Date: 2009-10-29 Update configuration template. prelude-correlator.conf | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit 89d5e77f6ce7e9e81469d530018fc215d4bcfe55 Author: Yoann Vandoorselaere Date: 2009-10-29 Improve WormPlugin accuracy The plugin used to alert when seeing an alert to a given target, and this same alert going back to the source. This can happen in a number of case (example: Netbios alert triggered by Snort). As of now, the plugin will wait for the events to be repeated against at least 5 differents hosts. PreludeCorrelator/plugins/worm.py | 19 +++++++++++++++---- 1 files changed, 15 insertions(+), 4 deletions(-) commit 347fafde9eee6fc2a1d222ec12b1b59c86219573 Author: Yoann Vandoorselaere Date: 2009-10-29 Dshield CorrelationAlert now handle multiples events Previously, we would generate a single Dshield CorrelationAlert for each events where the source address would match the Dshield database. The Dshield plugin has been modified so that it now generate CorrelationAlert for multiples event received from the same source. PreludeCorrelator/plugins/dshield.py | 21 ++++++++++++--------- 1 files changed, 12 insertions(+), 9 deletions(-) commit a6733c6dec30acc9001766d7ce2455d154eafb7c Author: Yoann Vandoorselaere Date: 2009-10-29 Clarify statistical reports PreludeCorrelator/main.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit eff07e086cf3bbbd16763f45a7d87c8ccbe08119 Author: Yoann Vandoorselaere Date: 2009-10-29 Worm plugin CorrelationAlert was missing a reference to the initial event PreludeCorrelator/plugins/worm.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit 1b69bef64601b8fdb2b8714afc674dd505fa30a0 Author: Yoann Vandoorselaere Date: 2009-09-15 Handle plugin loading error gracefully Emit a warning if plugin loading trigger an exception, but continue loading the system. PreludeCorrelator/pluginmanager.py | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) commit 6ee57df63e37d926055658c142dcff892e6fdcac Author: Wes Young Date: 2009-09-13 Initial SpamhausDrop plugin implementation (closes #363) PreludeCorrelator/plugins/spamhaus_drop.dat | 149 ++++++++++++++++++++++++++ PreludeCorrelator/plugins/spamhausdrop.py | 117 ++++++++++++++++++++ prelude_correlator.egg-info/SOURCES.txt | 3 +- prelude_correlator.egg-info/entry_points.txt | 1 + setup.py | 31 +++--- 5 files changed, 287 insertions(+), 14 deletions(-) create mode 100644 PreludeCorrelator/plugins/spamhaus_drop.dat create mode 100644 PreludeCorrelator/plugins/spamhausdrop.py commit f6e8e61145ce659ef6c97b15225918bf2a48f824 Author: Yoann Vandoorselaere Date: 2009-09-11 Python 2.4 backward compatibility The logging 'extra' keyword is only available in Python 2.5 and higher, do not use it when running an older Python version. PreludeCorrelator/log.py | 23 +++++++++++++++++------ 1 files changed, 17 insertions(+), 6 deletions(-) commit 1856adb6dd15982fe2c79be1d8d6d11166828270 Author: Yoann Vandoorselaere Date: 2009-07-10 Do not discard --root parameters if prefix is absolute os.path.join() will discard previous path if it meet a member which is absolute, thus we now handle the root separatly. setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 7348a4a38c5aa4f34aac1808744dbbf446421836 Author: Yoann Vandoorselaere Date: 2009-07-09 Update NEWS, bump version NEWS | 37 +++++++++++++++++++++++++++++++++- prelude_correlator.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 3 files changed, 38 insertions(+), 3 deletions(-) commit a04256bf251cc054aff0c56e06c1f5ef56a47e27 Author: Yoann Vandoorselaere Date: 2009-07-09 Method for configuration option value retrieval no take an optional type argument This argument might be used to indicate the type of the value returned (the default is str). Update the dshield plugin so that it specify an int and float return type for the reload and timeout options. PreludeCorrelator/config.py | 4 ++-- PreludeCorrelator/pluginmanager.py | 4 ++-- PreludeCorrelator/plugins/dshield.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) commit 45fc6e84cf78c98ba3a84f7d1b3e27c087618855 Author: Yoann Vandoorselaere Date: 2009-07-09 Do not distribute siteconfig.py prelude_correlator.egg-info/SOURCES.txt | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) commit 68a5806ff499eec4e4a6816135b75f7ffbc66d0f Author: Yoann Vandoorselaere Date: 2009-07-09 Make use of the command line specified configuration file, if any PreludeCorrelator/log.py | 5 ++--- PreludeCorrelator/main.py | 12 +++++++----- 2 files changed, 9 insertions(+), 8 deletions(-) commit f53d00d53ed2c121e9e5e28176fcb363d548f21c Author: Yoann Vandoorselaere Date: 2009-07-09 Whitespace police NEWS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit ff0620bac4d12033e1a13cf8469d200dce2424dc Author: Yoann Vandoorselaere Date: 2009-07-09 Abstracting access to data/configuration files This provide an abstraction layer over the way PreludeCorrelator access data and configuration files, depending on its installation method. When PreludeCorrelator is installed as an EGG, data/configuration files should be self contained within the package. We set the zip_false flags to False so that PreludeCorrelator can expect data written to the data files to be persistant accross run. However, for standard prelude-correlator installation, we keep using /etc/prelude-correlator as the configuration directory, and /var/lib/prelude-correlator as the data directory. This additionally introduce a default configuration file, which installation location depend on the type of installation. PreludeCorrelator/context.py | 11 ++++-- PreludeCorrelator/log.py | 5 ++- PreludeCorrelator/main.py | 14 ++++++--- PreludeCorrelator/pluginmanager.py | 1 - PreludeCorrelator/plugins/dshield.py | 4 +- PreludeCorrelator/require.py | 44 ++++++++++++++++++++++++++++ prelude-correlator.conf | 47 ++++++++++++++++++++++++++++++ prelude_correlator.egg-info/SOURCES.txt | 4 ++ prelude_correlator.egg-info/not-zip-safe | 1 + setup.py | 38 ++++++++++++++++++++++-- 10 files changed, 152 insertions(+), 17 deletions(-) create mode 100644 PreludeCorrelator/require.py create mode 100644 prelude-correlator.conf create mode 100644 prelude_correlator.egg-info/not-zip-safe commit aca0ffd929fedec7f0d37bb6f29d270877e6b108 Author: Yoann Vandoorselaere Date: 2009-07-08 HTTPConnection does not support timeout keyword with Python < 2.6 PreludeCorrelator/plugins/dshield.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) commit 8efd56a7635f69b2a40fb52961d1a519fda3026f Author: Yoann Vandoorselaere Date: 2009-07-09 Fix configuration and /var/lib directory in case installation prefix is "/usr" setup.py | 38 ++++++++++++++++++++++++++++---------- 1 files changed, 28 insertions(+), 10 deletions(-) commit b283c52df126a98893458655bc493609c2692628 Author: Yoann Vandoorselaere Date: 2009-07-06 Explicitly close the context file descriptor on save. PreludeCorrelator/context.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit a08f613cf167d71692e9ff61582618d901a90e84 Author: Yoann Vandoorselaere Date: 2009-07-06 Make it possible to specify your own DShield database file This is useful on system with no direct internet access, so that a static DShield database can be used by using the 'filename' option in combination with a 'reload' option set to 0. PreludeCorrelator/plugins/dshield.py | 38 +++++++++++++++++---------------- 1 files changed, 20 insertions(+), 18 deletions(-) commit 026a18e4b194c15fb7096f11c2252658e022c984 Author: Yoann Vandoorselaere Date: 2009-07-06 Introduce a new plugin logging mechanism PreludeCorrelator/pluginmanager.py | 24 +++++++++++++++++++++++- PreludeCorrelator/plugins/dshield.py | 4 ++-- 2 files changed, 25 insertions(+), 3 deletions(-) commit 44b54ff1ad6ce7a2f5b78e32dc7ee6c1587e3d37 Author: Yoann Vandoorselaere Date: 2009-07-06 Dshield plugin fixes The dshield plugin didn't report any events since address loaded from the DSHIELD database weren't correctly normalized. This also fixes reloading of the DShield database, which was not working in previous version due to the timer not being started. Additionally, generated alerts now include additional details. PreludeCorrelator/plugins/dshield.py | 21 +++++++++++++++------ 1 files changed, 15 insertions(+), 6 deletions(-) commit dff006a3873a116de2ce242048af373328fd0152 Author: Yoann Vandoorselaere Date: 2009-07-06 Specify our own Prelude callback so that log entry are normalized PreludeCorrelator/log.py | 32 +++++++++++++++++++++++++++++++- 1 files changed, 31 insertions(+), 1 deletions(-) commit 73a0f921c59db07a1edc2a7bc596e2635ba3be41 Author: Yoann Vandoorselaere Date: 2009-06-24 Fix rare IDMEF:Set() exception A rare exception would occur when IDMEF:Set() was called with an empty list/tuple as the value argument. This case is now handled specificaly for consistancy with IDMEF:Get() (which can return an empty tuple in case the retrieved path is empty and ambiguous). PreludeCorrelator/idmef.py | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) commit a238a64eca0150a9e26f1516f40c2a49882c6a37 Author: Yoann Vandoorselaere Date: 2009-06-24 Return empty tuple rather than an empty list. PreludeCorrelator/idmef.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit ddf3a07d34ebcb73d560c09af914faa9c343b9bd Author: Yoann Vandoorselaere Date: 2009-06-24 Implement a plugin signaling method. Make it possible for plugin to define a 'signal' method that will get called when prelude-correlator handle a signal (can be used to perform special handling before exit, statistics or debugging purposes). PreludeCorrelator/main.py | 10 ++++++---- PreludeCorrelator/pluginmanager.py | 10 ++++++++++ 2 files changed, 16 insertions(+), 4 deletions(-) commit a61959b597a3bc942fc912ac28040b8e3cb57dcd Author: Yoann Vandoorselaere Date: 2009-06-24 Implement new Timer utility methods This implement some Timer utility methods: elapsed() return the number of second elapsed since the timer started, hasExpired() return True or False depending on whether the timer already expired or not, and check() will call the timer callback if the timer has expired. PreludeCorrelator/context.py | 14 +++++++++++--- 1 files changed, 11 insertions(+), 3 deletions(-) commit f3da833d9fe0b6c2d12806ba7ea5a27616f78f94 Author: Yoann Vandoorselaere Date: 2009-06-18 Update NEWS, bump version. NEWS | 28 ++++++++++++++++++++++++++++ prelude_correlator.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) commit 2f1c606dc8ffeffa74422c6cbbe0b8bdaac1ad92 Author: Yoann Vandoorselaere Date: 2009-06-18 Cast timeout to float, fixes exception. PreludeCorrelator/plugins/dshield.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 37945571d4674342ef2b5f2d9583654c6c79d2a2 Author: Yoann Vandoorselaere Date: 2009-06-18 Implement our own Config class Simplify the code as much as possible, implement our own Configuration class, including some helpers. Remove globals. PreludeCorrelator/config.py | 46 +++++++++++++++++++++++++++++++ PreludeCorrelator/main.py | 4 ++- PreludeCorrelator/pluginmanager.py | 43 ++++++++--------------------- prelude_correlator.egg-info/SOURCES.txt | 1 + 4 files changed, 62 insertions(+), 32 deletions(-) create mode 100644 PreludeCorrelator/config.py commit abb33fa2dcbbd4163dccd1f7bf74d34a9db0c387 Author: Yoann Vandoorselaere Date: 2009-06-18 Make it possible to disable plugin It is now possible to add the following setting in prelude-correlator.conf: [PluginClassName] disable = true This fixes #354. PreludeCorrelator/pluginmanager.py | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) commit 5491e0920a4fc71263a7a9c9dd2bf38dd2baceb5 Author: Yoann Vandoorselaere Date: 2009-06-18 Correct invalid variable name. This prevented prelude-correlator from starting in daemon mode when using the '--pidfile' option. Fixes #355. PreludeCorrelator/main.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 3af1674916e3850ae4af9dce2341113180edf484 Author: Yoann Vandoorselaere Date: 2009-06-18 Dshield connection timeout Implement a timeout for Dshield.org server connection. The default is 10 seconds, and might be modified from the prelude-correlator.conf configuration file. This prevent Dshield host list loading from blocking forever, and fixes #353. PreludeCorrelator/plugins/dshield.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) commit 1cc0b307bce48106744c93caae41311dcb126be9 Author: Yoann Vandoorselaere Date: 2009-06-18 Catch exception on plugin loading Prevent prelude-correlator from abording if a plugin fail. Emit a warning explaining why a given plugin couldn't load, and continue processing. PreludeCorrelator/pluginmanager.py | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) commit 0ebfb4976ae927cfc1766fd28c3e0e0f023d7be2 Author: Yoann Vandoorselaere Date: 2009-06-18 Use module __version__ for version Bookkeeping PreludeCorrelator/__init__.py | 20 ++++++++++++++++++++ PreludeCorrelator/main.py | 5 +---- 2 files changed, 21 insertions(+), 4 deletions(-) commit 0cc9a6c8ccbd4891454e84d1240fe6773528c88b Author: Yoann Vandoorselaere Date: 2009-06-18 Read plugin configuration from prelude-correlator.conf PreludeCorrelator/pluginmanager.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 48169894c0ced9744f3e52ee399944750764ef7f Author: Yoann Vandoorselaere Date: 2009-06-18 Implement logging subsystem. Implement PreludeCorrelator.log, providing basic logging functionality, and spread its use accross correlator sources. Avoid using global as much as possible. PreludeCorrelator/context.py | 6 ++-- PreludeCorrelator/log.py | 44 ++++++++++++++++++++++ PreludeCorrelator/main.py | 61 ++++++++++++++++++------------- PreludeCorrelator/pluginmanager.py | 7 +++- PreludeCorrelator/plugins/dshield.py | 9 +++-- prelude_correlator.egg-info/SOURCES.txt | 1 + 6 files changed, 95 insertions(+), 33 deletions(-) create mode 100644 PreludeCorrelator/log.py commit 259f3dfabaeb9db19f2182d7174f4a10c77f3fa3 Author: Yoann Vandoorselaere Date: 2009-06-17 Correct copyright notice, add missing AUTHORS, COPYING, HACKING.README files. AUTHORS | 2 + COPYING | 340 +++++++++++++++++++++++++++++++ HACKING.README | 14 ++ PreludeCorrelator/context.py | 2 +- PreludeCorrelator/idmef.py | 2 +- PreludeCorrelator/main.py | 2 +- PreludeCorrelator/pluginmanager.py | 2 +- PreludeCorrelator/plugins/firewall.py | 2 +- PreludeCorrelator/utils.py | 2 +- prelude_correlator.egg-info/SOURCES.txt | 4 + 10 files changed, 366 insertions(+), 6 deletions(-) create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 HACKING.README commit 968b9397ff195c20089e04445f8e2b05941cfe1b Author: Yoann Vandoorselaere Date: 2009-06-17 Update NEWS, bump version number. NEWS | 50 ++++++++++++++++++++++++++++++++++ prelude_correlator.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 3 files changed, 52 insertions(+), 2 deletions(-) create mode 100644 NEWS commit e7ddc929be7501509f1f4cd9d1d041d62d677a9c Author: Yoann Vandoorselaere Date: 2009-06-17 Include GIT generated Changelog when making source distribution prelude_correlator.egg-info/SOURCES.txt | 1 + setup.py | 12 +++++++++++- 2 files changed, 12 insertions(+), 1 deletions(-) commit e7ad5d78f602b4e3e9dde163e04b07fe52201541 Author: Yoann Vandoorselaere Date: 2009-06-17 Increase default threshold for bruteUser to 5 PreludeCorrelator/plugins/bruteforce.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit c7abd9f715c598a9c808e7ea26ded51d0913465b Author: Yoann Vandoorselaere Date: 2009-06-17 Catch exception to secure Timer callback. PreludeCorrelator/context.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) commit 0aee836d8beb0a61964308ccdbf7f58a924508b9 Author: Yoann Vandoorselaere Date: 2009-06-17 Do not reset threshold and alert_on_expire on update. PreludeCorrelator/context.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit eaab47a015e97d7641230541b1c90f443cc9b021 Author: Yoann Vandoorselaere Date: 2009-06-17 Fix DShield host list download address, raise exception if download fail PreludeCorrelator/plugins/dshield.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 8b9f933853ca325e98430f8789cfe78cff46d7fe Author: Yoann Vandoorselaere Date: 2009-06-17 Fix missing argument to BruteForce plugins function. Thanks Pierre Chifflier for pointing this out. PreludeCorrelator/plugins/bruteforce.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit c8c59ce8f3d3d459b8472233a489be4bff4ffa79 Author: Yoann Vandoorselaere Date: 2009-06-17 Fix multiple IDMEF.match() issues Locate a regex match anywhere in the input string. Handle case where we match the input string but there is no captured substring by returning True in place of an empty tuple. Thanks to Pierre Chifflier for pointing this out. PreludeCorrelator/idmef.py | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) commit 9e679501c0367a8682308fef3078c5431ba2a90d Author: Yoann Vandoorselaere Date: 2009-06-17 Automate reference of IDMEF Alert within CorrelationAlert. Automate as much as possible reference making to IDMEF Alert into CorrelationAlert by adding a specialized 'addAlertReference()' method to the IDMEF class. Make ruleset smaller, less error prone. PreludeCorrelator/context.py | 1 - PreludeCorrelator/idmef.py | 7 +++++++ PreludeCorrelator/plugins/bruteforce.py | 10 ++-------- PreludeCorrelator/plugins/businesshour.py | 5 +---- PreludeCorrelator/plugins/dshield.py | 5 +---- PreludeCorrelator/plugins/opensshauth.py | 5 +---- PreludeCorrelator/plugins/scan.py | 15 +++------------ PreludeCorrelator/plugins/worm.py | 5 +---- 8 files changed, 16 insertions(+), 37 deletions(-) commit 0a15cb85700b10c8fb1249dd252d5b8a292af23e Author: Yoann Vandoorselaere Date: 2009-06-17 More typo fixes. PreludeCorrelator/pluginmanager.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 47855e88f2bf2988b540839c1ae3ede736849ffc Author: Yoann Vandoorselaere Date: 2009-06-17 Fix typo. PreludeCorrelator/pluginmanager.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 04df89e00cf7ab7d30ab76e32b0017b8839b3205 Author: Yoann Vandoorselaere Date: 2009-06-15 Use setuptools for distribution and plugins. PreludeCorrelator/main.py | 163 +++++++++++++ PreludeCorrelator/pluginmanager.py | 66 +++++ PreludeCorrelator/plugins.py | 74 ------ PreludeCorrelator/plugins/bruteforce.py | 74 ++++++ PreludeCorrelator/plugins/businesshour.py | 44 ++++ PreludeCorrelator/plugins/dshield.py | 89 +++++++ PreludeCorrelator/plugins/firewall.py | 52 ++++ PreludeCorrelator/plugins/opensshauth.py | 56 +++++ PreludeCorrelator/plugins/scan.py | 110 +++++++++ PreludeCorrelator/plugins/worm.py | 58 +++++ ez_setup.py | 276 ++++++++++++++++++++++ prelude_correlator.egg-info/PKG-INFO | 34 +++ prelude_correlator.egg-info/SOURCES.txt | 23 ++ prelude_correlator.egg-info/dependency_links.txt | 1 + prelude_correlator.egg-info/entry_points.txt | 14 + prelude_correlator.egg-info/top_level.txt | 1 + ruleset/brute-force.py | 74 ------ ruleset/business-hour.py | 44 ---- ruleset/dshield.py | 89 ------- ruleset/firewall.py | 52 ---- ruleset/openssh-multiple-authtypes.py | 56 ----- ruleset/scan.py | 110 --------- ruleset/worm.py | 58 ----- scripts/prelude-correlator | 153 ------------ setup.py | 77 +++++- 25 files changed, 1124 insertions(+), 724 deletions(-) create mode 100644 PreludeCorrelator/main.py create mode 100644 PreludeCorrelator/pluginmanager.py delete mode 100644 PreludeCorrelator/plugins.py create mode 100644 PreludeCorrelator/plugins/__init__.py create mode 100644 PreludeCorrelator/plugins/bruteforce.py create mode 100644 PreludeCorrelator/plugins/businesshour.py create mode 100644 PreludeCorrelator/plugins/dshield.py create mode 100644 PreludeCorrelator/plugins/firewall.py create mode 100644 PreludeCorrelator/plugins/opensshauth.py create mode 100644 PreludeCorrelator/plugins/scan.py create mode 100644 PreludeCorrelator/plugins/worm.py create mode 100644 ez_setup.py create mode 100644 prelude_correlator.egg-info/PKG-INFO create mode 100644 prelude_correlator.egg-info/SOURCES.txt create mode 100644 prelude_correlator.egg-info/dependency_links.txt create mode 100644 prelude_correlator.egg-info/entry_points.txt create mode 100644 prelude_correlator.egg-info/top_level.txt delete mode 100644 ruleset/brute-force.py delete mode 100644 ruleset/business-hour.py delete mode 100644 ruleset/dshield.py delete mode 100644 ruleset/firewall.py delete mode 100644 ruleset/openssh-multiple-authtypes.py delete mode 100644 ruleset/scan.py delete mode 100644 ruleset/worm.py delete mode 100755 scripts/prelude-correlator commit ff64f43360f3f080dbed4bed2e20390dd818309e Author: Yoann Vandoorselaere Date: 2009-06-12 Initial README file. README | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 72 insertions(+), 0 deletions(-) create mode 100644 README commit ac3ff498168d8448242a195ca4d673e834e1f6ff Author: Yoann Vandoorselaere Date: 2009-06-12 Fix for Python 2.6 deprecation warning, no need to provide arguments to the parent method. PreludeCorrelator/context.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 8d799dc07d4d36104c816758ea0747d88138ed04 Author: Yoann Vandoorselaere Date: 2009-06-12 Rename from pycor to prelude-correlator. setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 2a3f31197137ffac4c2c504e411330c75a987b14 Author: Yoann Vandoorselaere Date: 2009-06-12 Libprelude version check, require 0.9.23. scripts/prelude-correlator | 5 ++++- setup.py | 2 ++ 2 files changed, 6 insertions(+), 1 deletions(-) commit 0f88217ca0704f5861eca87ad8d7a8e67a0c1165 Author: Yoann Vandoorselaere Date: 2009-06-12 Whitespace police. setup.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit f6a8a98b20e73651819096fbda3a93b88f20b69d Author: Yoann Vandoorselaere Date: 2009-06-11 Correct business hour detection, thanks J. Ignacio Ormeño for pointing this out. ruleset/business-hour.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) commit 1fe4240a65c58749e840b1f706ba08a3d07978b6 Author: Yoann Vandoorselaere Date: 2009-05-04 Rename from pycor to prelude-correlator PreludeCorrelator/context.py | 144 +++++++++++++++++++++++++++++++ PreludeCorrelator/idmef.py | 115 +++++++++++++++++++++++++ PreludeCorrelator/plugins.py | 74 ++++++++++++++++ PreludeCorrelator/utils.py | 42 +++++++++ pycor/context.py | 144 ------------------------------- pycor/idmef.py | 115 ------------------------- pycor/plugins.py | 74 ---------------- pycor/utils.py | 42 --------- ruleset/brute-force.py | 4 +- ruleset/business-hour.py | 4 +- ruleset/dshield.py | 8 +- ruleset/firewall.py | 4 +- ruleset/openssh-multiple-authtypes.py | 4 +- ruleset/scan.py | 4 +- ruleset/worm.py | 4 +- scripts/prelude-correlator | 150 +++++++++++++++++++++++++++++++++ scripts/pycor | 150 --------------------------------- setup.py | 24 +++--- 18 files changed, 553 insertions(+), 553 deletions(-) create mode 100644 PreludeCorrelator/__init__.py create mode 100644 PreludeCorrelator/context.py create mode 100644 PreludeCorrelator/idmef.py create mode 100644 PreludeCorrelator/plugins.py create mode 100644 PreludeCorrelator/utils.py delete mode 100644 pycor/__init__.py delete mode 100644 pycor/context.py delete mode 100644 pycor/idmef.py delete mode 100644 pycor/plugins.py delete mode 100644 pycor/utils.py create mode 100755 scripts/prelude-correlator delete mode 100755 scripts/pycor commit 999ae1f75807a788d3edef182a58608fe569226b Author: Yoann Vandoorselaere Date: 2009-05-04 Remove everything in preparation for the import of the Python Correlator version. AUTHORS | 2 - COPYING | 340 ---- HACKING.README | 14 - INSTALL | 236 --- Makefile.am | 21 - NEWS | 42 - autogen.sh | 9 - configure.in | 191 -- libmissing/Makefile.am | 184 -- libmissing/dummy.c | 42 - libmissing/gettimeofday.c | 142 -- libmissing/m4/extensions.m4 | 82 - libmissing/m4/gettimeofday.m4 | 101 - libmissing/m4/gnulib-cache.m4 | 37 - libmissing/m4/gnulib-common.m4 | 91 - libmissing/m4/gnulib-comp.m4 | 196 -- libmissing/m4/gnulib-tool.m4 | 57 - libmissing/m4/include_next.m4 | 110 - libmissing/m4/onceonly.m4 | 90 - libmissing/m4/string_h.m4 | 89 - libmissing/m4/strpbrk.m4 | 18 - libmissing/m4/strsep.m4 | 24 - libmissing/m4/sys_time_h.m4 | 57 - libmissing/string.in.h | 585 ------ libmissing/strpbrk.c | 42 - libmissing/strsep.c | 58 - libmissing/sys_time.in.h | 52 - m4/as-ac-expand.m4 | 43 - m4/ax_c_check_flag.m4 | 90 - m4/ax_ld_check_flag.m4 | 98 - m4/libprelude.m4 | 176 -- plugins/Makefile.am | 1 - plugins/lua/Makefile.am | 15 - plugins/lua/lib.lua | 159 -- plugins/lua/lua-idmef-value.c | 154 -- plugins/lua/lua-idmef-value.h | 26 - plugins/lua/lua-idmef.c | 511 ----- plugins/lua/lua-idmef.h | 26 - plugins/lua/lua-timer.c | 296 --- plugins/lua/lua-timer.h | 28 - plugins/lua/lua.c | 337 ---- plugins/lua/regex.c | 524 ----- plugins/lua/regex.h | 31 - plugins/lua/ruleset/Makefile.am | 3 - plugins/lua/ruleset/brute-force.lua | 79 - plugins/lua/ruleset/business-hour.lua | 40 - plugins/lua/ruleset/dshield.lua | 98 - plugins/lua/ruleset/firewall.lua | 64 - plugins/lua/ruleset/openssh-multiple-authtypes.lua | 69 - plugins/lua/ruleset/scan.lua | 116 -- plugins/lua/ruleset/worm.lua | 65 - plugins/pcre/Makefile.am | 18 - plugins/pcre/capture-string.c | 155 -- plugins/pcre/capture-string.h | 43 - plugins/pcre/pcre-context.c | 1052 ---------- plugins/pcre/pcre-context.h | 116 -- plugins/pcre/pcre-mod.c | 2108 -------------------- plugins/pcre/pcre-mod.h | 97 - plugins/pcre/pcre-parser.c | 173 -- plugins/pcre/pcre-parser.h | 25 - plugins/pcre/rule-object.c | 393 ---- plugins/pcre/rule-object.h | 40 - plugins/pcre/rule-regex.c | 347 ---- plugins/pcre/rule-regex.h | 30 - plugins/pcre/ruleset/Makefile.am | 8 - plugins/pcre/ruleset/brute-force.rules | 95 - plugins/pcre/ruleset/business-hour.rules | 53 - plugins/pcre/ruleset/example.rules | 37 - plugins/pcre/ruleset/firewall.rules | 66 - plugins/pcre/ruleset/pcre.rules | 11 - plugins/pcre/ruleset/scan.rules | 120 -- plugins/pcre/ruleset/worm.rules | 72 - plugins/pcre/value-container.c | 728 ------- plugins/pcre/value-container.h | 47 - prelude-correlator.conf.in | 26 - src/Makefile.am | 12 - src/correlation-plugins.c | 117 -- src/include/Makefile.am | 4 - src/include/correlation-plugins.h | 31 - src/include/prelude-correlator.h | 41 - src/prelude-correlator.c | 515 ----- 81 files changed, 0 insertions(+), 12541 deletions(-) delete mode 100644 AUTHORS delete mode 100644 COPYING delete mode 100644 ChangeLog delete mode 100644 HACKING.README delete mode 100644 INSTALL delete mode 100644 Makefile.am delete mode 100644 NEWS delete mode 100644 README delete mode 100755 autogen.sh delete mode 100644 configure.in delete mode 100644 libmissing/Makefile.am delete mode 100644 libmissing/dummy.c delete mode 100644 libmissing/gettimeofday.c delete mode 100644 libmissing/m4/extensions.m4 delete mode 100644 libmissing/m4/gettimeofday.m4 delete mode 100644 libmissing/m4/gnulib-cache.m4 delete mode 100644 libmissing/m4/gnulib-common.m4 delete mode 100644 libmissing/m4/gnulib-comp.m4 delete mode 100644 libmissing/m4/gnulib-tool.m4 delete mode 100644 libmissing/m4/include_next.m4 delete mode 100644 libmissing/m4/onceonly.m4 delete mode 100644 libmissing/m4/string_h.m4 delete mode 100644 libmissing/m4/strpbrk.m4 delete mode 100644 libmissing/m4/strsep.m4 delete mode 100644 libmissing/m4/sys_time_h.m4 delete mode 100644 libmissing/string.in.h delete mode 100644 libmissing/strpbrk.c delete mode 100644 libmissing/strsep.c delete mode 100644 libmissing/sys_time.in.h delete mode 100644 m4/as-ac-expand.m4 delete mode 100644 m4/ax_c_check_flag.m4 delete mode 100644 m4/ax_ld_check_flag.m4 delete mode 100644 m4/libprelude.m4 delete mode 100644 plugins/Makefile.am delete mode 100644 plugins/lua/Makefile.am delete mode 100644 plugins/lua/lib.lua delete mode 100644 plugins/lua/lua-idmef-value.c delete mode 100644 plugins/lua/lua-idmef-value.h delete mode 100644 plugins/lua/lua-idmef.c delete mode 100644 plugins/lua/lua-idmef.h delete mode 100644 plugins/lua/lua-timer.c delete mode 100644 plugins/lua/lua-timer.h delete mode 100644 plugins/lua/lua.c delete mode 100644 plugins/lua/regex.c delete mode 100644 plugins/lua/regex.h delete mode 100644 plugins/lua/ruleset/Makefile.am delete mode 100644 plugins/lua/ruleset/brute-force.lua delete mode 100644 plugins/lua/ruleset/business-hour.lua delete mode 100644 plugins/lua/ruleset/dshield.lua delete mode 100644 plugins/lua/ruleset/firewall.lua delete mode 100644 plugins/lua/ruleset/openssh-multiple-authtypes.lua delete mode 100644 plugins/lua/ruleset/scan.lua delete mode 100644 plugins/lua/ruleset/worm.lua delete mode 100644 plugins/pcre/Makefile.am delete mode 100644 plugins/pcre/capture-string.c delete mode 100644 plugins/pcre/capture-string.h delete mode 100644 plugins/pcre/pcre-context.c delete mode 100644 plugins/pcre/pcre-context.h delete mode 100644 plugins/pcre/pcre-mod.c delete mode 100644 plugins/pcre/pcre-mod.h delete mode 100644 plugins/pcre/pcre-parser.c delete mode 100644 plugins/pcre/pcre-parser.h delete mode 100644 plugins/pcre/rule-object.c delete mode 100644 plugins/pcre/rule-object.h delete mode 100644 plugins/pcre/rule-regex.c delete mode 100644 plugins/pcre/rule-regex.h delete mode 100644 plugins/pcre/ruleset/Makefile.am delete mode 100644 plugins/pcre/ruleset/brute-force.rules delete mode 100644 plugins/pcre/ruleset/business-hour.rules delete mode 100644 plugins/pcre/ruleset/example.rules delete mode 100644 plugins/pcre/ruleset/firewall.rules delete mode 100644 plugins/pcre/ruleset/pcre.rules delete mode 100644 plugins/pcre/ruleset/scan.rules delete mode 100644 plugins/pcre/ruleset/worm.rules delete mode 100644 plugins/pcre/value-container.c delete mode 100644 plugins/pcre/value-container.h delete mode 100644 prelude-correlator.conf.in delete mode 100644 src/Makefile.am delete mode 100644 src/correlation-plugins.c delete mode 100644 src/include/Makefile.am delete mode 100644 src/include/correlation-plugins.h delete mode 100644 src/include/prelude-correlator.h delete mode 100644 src/prelude-correlator.c commit 8f4e3dd9051dd2127f11240f4936a23128905a6a Author: Yoann Vandoorselaere Date: 2009-04-28 Fix exception. ruleset/dshield.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 6d03bbedffbbef787bb86975b2ed166153657762 Author: Yoann Vandoorselaere Date: 2009-04-28 Remove debug spew. ruleset/dshield.py | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) commit 8d6b27e90fa43a115fc6e3cf71f4edc729f0ded5 Author: Yoann Vandoorselaere Date: 2009-04-28 Make it possible to modify default server, uri, and reload time from the configuration. ruleset/dshield.py | 75 +++++++++++++++++++++++++++------------------------ 1 files changed, 40 insertions(+), 35 deletions(-) commit dbf5b7a90a727335cc77635c46a45bf5d847a073 Author: Yoann Vandoorselaere Date: 2009-04-28 Basic configuration handling. Ability for a plugin to be disabled by default. pycor/plugins.py | 32 +++++++++++++++++++++++++++----- 1 files changed, 27 insertions(+), 5 deletions(-) commit e6f21e5f2fdc109c9e8b4ff55ebb96254e0eab68 Author: Yoann Vandoorselaere Date: 2009-04-28 Correctly set IDMEFAnalyzer class, model, manufacturer and version. scripts/pycor | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) commit 514b54775e2eb8ec32bf86f1941cc571f18c1a40 Author: Yoann Vandoorselaere Date: 2009-04-24 Make dry-run actually work. scripts/pycor | 15 +++++++-------- 1 files changed, 7 insertions(+), 8 deletions(-) commit 23320cbeed85d0fd35ebd60be84fe7c53807eeb1 Author: Yoann Vandoorselaere Date: 2009-04-23 Handle Pickle EOFError, and fixes possible exception when pickling the Timer class. pycor/context.py | 32 ++++++++++++++++++++------------ 1 files changed, 20 insertions(+), 12 deletions(-) commit dca3ec050b8eacc92072b050476c45de28afb0e5 Author: Yoann Vandoorselaere Date: 2009-04-23 If IDMEF.Get() return None, and flatten is set, only return an empty tuple if the path is ambiguous (would return a list). pycor/idmef.py | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) commit 239beabd00892142849e7cff5f70d8e1d17a5e82 Author: Yoann Vandoorselaere Date: 2009-04-23 Fix exception, use Python hasattr(). ruleset/openssh-multiple-authtypes.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 6c63d701b086dfcbed1c49d7e589eacffd95303d Author: Yoann Vandoorselaere Date: 2009-04-23 Add option usage, and version option. scripts/pycor | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit ca510f44a0ab388ace611e164b87994312fa08ff Author: Yoann Vandoorselaere Date: 2009-04-22 Update permission prefix. scripts/pycor | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit c0352463fca2497b4e4889b8c0e1f3c24865b02c Author: Yoann Vandoorselaere Date: 2009-04-22 Prefix with OPERATOR_, as done in libprelude 0.9.22. pycor/idmef.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 82a1a8d91eb62a7a5386b1f6164c435749c616c4 Author: Yoann Vandoorselaere Date: 2009-04-17 Avoid duplicate check, and compile the regex ourselve. ruleset/brute-force.py | 28 ++++++++++++---------------- 1 files changed, 12 insertions(+), 16 deletions(-) commit a2f10d0284d81e36bad1ff9bb2b27db789740cd5 Author: Yoann Vandoorselaere Date: 2009-04-17 Compile the regexp. ruleset/firewall.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit d5e36c5baa89a2d0537a612ff75113d1123cea62 Author: Yoann Vandoorselaere Date: 2009-04-17 Make Get() return an empty list if flatten is specified and there is no value. Remove regex cache since recent Python version already does that. Force the caller to compile the regex by himself. pycor/idmef.py | 38 ++++++++++++++++++++++++++------------ 1 files changed, 26 insertions(+), 12 deletions(-) commit 43260497d1781ac804f3882978703b35ab3e9a80 Author: Yoann Vandoorselaere Date: 2009-04-17 Add template method. pycor/plugins.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) commit f4058a19b5b812d1630e39ac595b4b419e6c8de4 Author: Yoann Vandoorselaere Date: 2009-04-17 Code cleanup. ruleset/openssh-multiple-authtypes.py | 17 ++++------------- 1 files changed, 4 insertions(+), 13 deletions(-) commit 9e00917193146c98c071d1680442a2dd13904f75 Author: Yoann Vandoorselaere Date: 2009-04-17 Remove explicit flatten() usage, the Get() method now automatically perform it as the default. ruleset/brute-force.py | 9 ++++----- ruleset/dshield.py | 3 +-- ruleset/openssh-multiple-authtypes.py | 7 +++---- ruleset/scan.py | 9 ++++----- ruleset/worm.py | 8 +++----- 5 files changed, 15 insertions(+), 21 deletions(-) commit f0b020b1ea8242d8d25a7a7dfdb83b7796d14bbf Author: Yoann Vandoorselaere Date: 2009-04-17 Add flatten argument to the Get() method, which default value is True. When retrieving a listed path, the default is to flatten it. pycor/idmef.py | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) commit 14343076a4dc317bbdd8b69331413f8c84d7f36b Author: Yoann Vandoorselaere Date: 2009-04-16 Port firewall ruleset from Lua. ruleset/firewall.py | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 52 insertions(+), 0 deletions(-) create mode 100644 ruleset/firewall.py commit ef1190f65735d4d0d4942ef3cfd54f47fa6b14c7 Author: Yoann Vandoorselaere Date: 2009-04-16 Reset attribute on expire. pycor/context.py | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) commit 18daeac9678a901573a9287e3af661fa196c0564 Author: Yoann Vandoorselaere Date: 2009-04-16 Ability to provide a replacement value with the Get() method. pycor/idmef.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) commit 6c117cd6edfdd650a90f937ae39ef70997efbcac Author: Yoann Vandoorselaere Date: 2009-04-16 Use idmef.match(). ruleset/brute-force.py | 6 +++--- ruleset/worm.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) commit 6d61bde131d0cfb9a4088430eaa4ecb509501a16 Author: Yoann Vandoorselaere Date: 2009-04-16 Remove debug spew. pycor/context.py | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) commit 42c1b79ceff692bc8a2387ed6c221a10cdd49920 Author: Yoann Vandoorselaere Date: 2009-04-16 Fix reset(). pycor/idmef.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit aef261f60cf0d53ae2b55686157170407b8b728f Author: Yoann Vandoorselaere Date: 2009-04-16 Implement match() as an IDMEF method. Cache compiled regex. Remove IDMEF.Get() cache, since the implementation is not correct. pycor/idmef.py | 36 ++++++++++++++++++++++++++++-------- pycor/utils.py | 20 -------------------- ruleset/brute-force.py | 4 ++-- 3 files changed, 30 insertions(+), 30 deletions(-) commit 3aea295e229203ad9e727422b9bbb68bfca9e61c Author: Yoann Vandoorselaere Date: 2009-04-16 Automatic reloading of DShield data. ruleset/dshield.py | 20 +++++++++++--------- 1 files changed, 11 insertions(+), 9 deletions(-) commit 8c531f43800736a228c7e51235c30902cfa4ff56 Author: Yoann Vandoorselaere Date: 2009-04-16 Rewrite Timer() implementation. Implement the stats() function. pycor/context.py | 83 +++++++++++++++++++++++++++++++---------------------- 1 files changed, 48 insertions(+), 35 deletions(-) commit a28b0c0cad14b28691a6da9b06c097bf2df43a53 Author: Yoann Vandoorselaere Date: 2009-04-16 Improved dry-run mode. Print statistics on SIGQUIT. scripts/pycor | 30 ++++++++++++++++++++---------- 1 files changed, 20 insertions(+), 10 deletions(-) commit 6ef8076667b0ec142470eec5b5f270330696a547 Author: Yoann Vandoorselaere Date: 2009-04-16 Fix typo. ruleset/worm.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit fc11b5760f8bfb9e6e1cb107997aeb1b11015501 Author: Yoann Vandoorselaere Date: 2009-04-15 Port scan ruleset from Lua. ruleset/scan.py | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 111 insertions(+), 0 deletions(-) create mode 100644 ruleset/scan.py commit 2506a61307f32f991e32f7b72c6bd96a00f78da9 Author: Yoann Vandoorselaere Date: 2009-04-15 Only alert on expire if destroy() is called from a timer. Always stop context timer on destroy() pycor/context.py | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) commit e777603e26c6023067b4ac39d82ef8f1b0010a2d Author: Yoann Vandoorselaere Date: 2009-04-15 Wake up timer every second, implement signal handling and context loading/saving. scripts/pycor | 51 +++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 41 insertions(+), 10 deletions(-) commit 275d6c41aa0e45f74de037d87e6fb6bf5e62f755 Author: Yoann Vandoorselaere Date: 2009-04-15 Implement simple context timer. Context() will now return the currently existing context (if any) when updated=True is passed as argument. Implement load() and save() function to unpickle() and pickle() context and timer. pycor/context.py | 102 +++++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 86 insertions(+), 16 deletions(-) commit 15eccc8415434b8a9e7f50b1c94399dd8a91bb2d Author: Yoann Vandoorselaere Date: 2009-04-15 Update all ruleset to use the context.search, and context.destroy method. ruleset/brute-force.py | 4 ++-- ruleset/dshield.py | 2 +- ruleset/openssh-multiple-authtypes.py | 2 +- ruleset/worm.py | 7 ++++--- 4 files changed, 8 insertions(+), 7 deletions(-) commit c26e3a0868ab25154e8aac1d63497b60c2ba7e4e Author: Yoann Vandoorselaere Date: 2009-04-15 Implement __getstate__ and __setstate__ method, so that an IDMEF instance can be pickled() and unpickled(). pycor/idmef.py | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) commit 69552104c32221def0acc681c4296ffd1c41b605 Author: Yoann Vandoorselaere Date: 2009-04-15 Improved exception printing. Implement getPluginCount(). pycor/plugins.py | 16 ++++++++++------ 1 files changed, 10 insertions(+), 6 deletions(-) commit ebd9b33531ea8f034811342d1e5daf0ad7b48553 Author: Yoann Vandoorselaere Date: 2009-04-15 flatten the list before looping through it. ruleset/brute-force.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 6c4d0d1c997d6e6a67b4a3d914aa3799bca4870c Author: Yoann Vandoorselaere Date: 2009-04-15 Fixup indentation. pycor/plugins.py | 28 ++++++++++++++-------------- 1 files changed, 14 insertions(+), 14 deletions(-) commit 8b94cb1a0ff8b46c414ed65ec2c3c4bcd1e8b607 Author: Yoann Vandoorselaere Date: 2009-04-15 Launch the plugin by ourself. Additionally, handle plugin exception. pycor/plugins.py | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) commit 0e15af1b3364415c8e1ec11134f6889bd467f848 Author: Yoann Vandoorselaere Date: 2009-04-15 Fix typo. ruleset/dshield.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 1eac1bff75bef38cd106fcfc819bf92591afd9ec Author: Yoann Vandoorselaere Date: 2009-04-15 Fix exception on NULL value. pycor/utils.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) commit a68086c1078f73c7f7256c2db6b4a97fc78e9c29 Author: Yoann Vandoorselaere Date: 2009-04-14 Avoid exception if path already exist. setup.py | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) commit 37c8f69b2cb0335bb82fd3e21a5abc9c0e0e45d8 Author: Yoann Vandoorselaere Date: 2009-04-14 Use path provided by siteconfig as base plugins path. pycor/plugins.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit 2b1fdd134e8ea87085b4ea903ebb0933707e8193 Author: Yoann Vandoorselaere Date: 2009-04-14 Use siteconfig.lib_dir to store internal data. ruleset/dshield.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit 8efbba657a5f31c7170179e503c6fd22a347c048 Author: Yoann Vandoorselaere Date: 2009-04-14 Install rulesets, create siteconfig. setup.py | 30 +++++++++++++++++++++++++++--- 1 files changed, 27 insertions(+), 3 deletions(-) commit 6e0169ae478671ee81794ff007a1bda2fc7a2085 Author: Yoann Vandoorselaere Date: 2009-04-14 Add missing IDMEF import. ruleset/dshield.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit 898a34c64006a9b0b34c018383f8fe20021f5a20 Author: Yoann Vandoorselaere Date: 2009-04-14 Rename to pycor ruleset/brute-force.py | 6 +++--- ruleset/business-hour.py | 4 ++-- ruleset/dshield.py | 6 +++--- ruleset/openssh-multiple-authtypes.py | 6 +++--- ruleset/worm.py | 6 +++--- scripts/pycor | 4 ++-- setup.py | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) commit 448f449326b7bcd7f7f1f80f77d0c94e8caa3fa2 Author: Yoann Vandoorselaere Date: 2009-04-14 Initial Correlation rule port from Lua. ruleset/brute-force.py | 79 ++++++++++++++++++++++++++++++ ruleset/business-hour.py | 43 +++++++++++++++++ ruleset/dshield.py | 85 +++++++++++++++++++++++++++++++++ ruleset/openssh-multiple-authtypes.py | 66 +++++++++++++++++++++++++ ruleset/worm.py | 59 +++++++++++++++++++++++ 5 files changed, 332 insertions(+), 0 deletions(-) create mode 100644 ruleset/brute-force.py create mode 100644 ruleset/business-hour.py create mode 100644 ruleset/dshield.py create mode 100644 ruleset/openssh-multiple-authtypes.py create mode 100644 ruleset/worm.py commit 64f7907d158aabf900a58edcde86f267c52bfd3b Author: Yoann Vandoorselaere Date: 2009-04-14 Initial infrastructure. pycor/context.py | 52 +++++++++++++++++++++++++ pycor/idmef.py | 43 +++++++++++++++++++++ pycor/plugins.py | 40 +++++++++++++++++++ pycor/utils.py | 61 +++++++++++++++++++++++++++++ scripts/pycor | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++ setup.py | 12 ++++++ 6 files changed, 317 insertions(+), 0 deletions(-) create mode 100644 pycor/__init__.py create mode 100644 pycor/context.py create mode 100644 pycor/idmef.py create mode 100644 pycor/plugins.py create mode 100644 pycor/utils.py create mode 100755 scripts/pycor create mode 100644 setup.py commit 1b332d1f0d065f96b8495a8a37c4759cf38ca599 Author: Yoann Vandoorselaere Date: 2009-04-06 Use local. plugins/lua/ruleset/dshield.lua | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) commit 50b81355e20c434a4b29bc052bf598cd4d1686fa Author: Yoann Vandoorselaere Date: 2009-04-06 Add logging from Lua ruleset. Define info(), warn(), and error() logging function, available from Lua, using prelude_log(). plugins/lua/lua.c | 34 ++++++++++++++++++++++++++++++++++ plugins/lua/ruleset/dshield.lua | 5 ++--- 2 files changed, 36 insertions(+), 3 deletions(-) commit 60da7db7d6d0d39fc2c857d45d7d83da556bdd2d Author: Yoann Vandoorselaere Date: 2009-04-06 Rewrite of the DShield ruleset featuring: - Improved performance: the dshield database is loaded once upon start, and a hash table is created to store the database value. This avoid loading and iterating a 10000 line file each time an alert is passed to the ruleset. - Automatic Dshield database download: this is done using the external socket and lfs module. The ruleset will refuse to load if you do not have these module installed. - Automatic Dshield database update: using a timer, once a week. plugins/lua/ruleset/dshield.lua | 99 +++++++++++++++++++++++++-------------- 1 files changed, 63 insertions(+), 36 deletions(-) commit 590f7a066264433896580fbb02b400dea2edb9f8 Author: Yoann Vandoorselaere Date: 2009-04-06 Now default to install dshield.lua plugins/lua/ruleset/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 60c3c7ee97cefd7ce2fa139c6066f121680c6fb4 Author: Yoann Vandoorselaere Date: 2009-04-06 Use PRELUDE_CORRELATOR_LIB_DIR Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 524e1fd851a274a690591beff5672129af082f4a Author: Yoann Vandoorselaere Date: 2009-04-06 Define PRELUDE_CORRELATOR_LIB_DIR, and make it available from Lua ruleset. configure.in | 8 ++++---- plugins/lua/lua.c | 5 +++-- 2 files changed, 7 insertions(+), 6 deletions(-) commit 1d8bc688930fc9f6fd57b06d02eb8e82d749efc5 Author: Yoann Vandoorselaere Date: 2009-04-06 Do not stop loading if a given Lua ruleset fail. plugins/lua/lua.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit c67c449046fd304ebb8310e7967afd0e5176f1ce Author: Yoann Vandoorselaere Date: 2009-04-06 Complete Lua Timer() implementation. An Lua callback function can now be associated with the Lua Timer. Additionally, the start() and reset() method has been simplified. plugins/lua/lib.lua | 19 ++++----- plugins/lua/lua-timer.c | 98 ++++++++++++++++++++++++++++------------------- plugins/lua/lua-timer.h | 2 +- 3 files changed, 68 insertions(+), 51 deletions(-) commit b2445d678233016ee6c5affae231853e772048ed Author: Yoann Vandoorselaere Date: 2009-04-06 Fix Lua compilation problem. plugins/lua/lib.lua | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit 313494db244f441e886ffc6b74230f669dde2aed Author: Yoann Vandoorselaere Date: 2009-04-03 Re-implement normalize_ip() using string.format(). This speedup and simplify the function greatly. plugins/lua/ruleset/dshield.lua | 21 +++------------------ 1 files changed, 3 insertions(+), 18 deletions(-) commit 0014175d8a4f331a7e6360a255fb2fa33bd5d391 Author: Yoann Vandoorselaere Date: 2009-04-03 Rename table_lookup to table.find Rename table_dump to table.dump plugins/lua/lib.lua | 8 ++++---- plugins/lua/ruleset/scan.lua | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) commit 22d954217e9183e053805a16110adcb384092cbe Author: Yoann Vandoorselaere Date: 2009-04-03 Replace dshield split() function implementation with a generic string.split() implementation defined in lib.lua. Additionally, this version will provide much better performance. plugins/lua/lib.lua | 21 +++++++++++++++++++++ plugins/lua/ruleset/dshield.lua | 28 ++-------------------------- 2 files changed, 23 insertions(+), 26 deletions(-) commit 962194945eba0d109c814c6996e1eb9e8ebabd62 Author: Yoann Vandoorselaere Date: 2009-04-03 Whitespace police. plugins/lua/ruleset/dshield.lua | 112 +++++++++++++++++++------------------- 1 files changed, 56 insertions(+), 56 deletions(-) commit b711f0b8b82f6aaf7b1deab8b0fe519e88b0e15b Author: Yoann Vandoorselaere Date: 2009-04-03 Implement patch by Jeffrey C. Ollie , which make IDMEF:getraw() return a nil value (in place of nothing) if the retrieved element is empty. This fixes an Lua error that occur when calling IDMEF:set() using the result of IDMEF:getraw() on an empty element. plugins/lua/lua-idmef.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) commit 9fef7ba11eb184b2959f9962bd7cef1792521c1c Author: Sebastien Tricaud Date: 2009-01-19 Add correlation rule to match IP addresses against the dshield database. Do not add this rule in Makefile.am since the dshield mirror installation is required before using this rule (it can't be used as is). plugins/lua/ruleset/dshield.lua | 112 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 112 insertions(+), 0 deletions(-) create mode 100644 plugins/lua/ruleset/dshield.lua commit 9b254915391697660c31938bc615dba52d791b4f Author: Yoann Vandoorselaere Date: 2008-11-06 Implement multiple OpenSSH authentication type correlation, courtesy of Sebastien Tricaud plugins/lua/ruleset/Makefile.am | 2 +- plugins/lua/ruleset/openssh-multiple-authtypes.lua | 69 ++++++++++++++++++++ 2 files changed, 70 insertions(+), 1 deletions(-) create mode 100644 plugins/lua/ruleset/openssh-multiple-authtypes.lua commit ddc32c038b765791d76373254fb9af65bd607197 Author: Yoann Vandoorselaere Date: 2008-10-27 Handle idmef-data type. plugins/lua/regex.c | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) commit a97661985ed175c0a4347d754713707e3996a815 Author: Yoann Vandoorselaere Date: 2008-09-24 Include signal.h, should fix #318. src/prelude-correlator.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit 3ea15328290ea14cb3b16a29868e0d82da63b835 Author: Yoann Vandoorselaere Date: 2008-09-24 s/Prelude-LML/Prelude-Correlator/ configure.in | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit afc1345b9c66c71613a6611ceae1f41eca13e4a4 Author: Yoann Vandoorselaere Date: 2008-08-01 Fix impact severity / description path, thanks Scott Olihovik for pointing it out! plugins/lua/ruleset/brute-force.lua | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 48fd46a6f54cf6d942b595d1df5b64bb1994114b Author: Yoann Vandoorselaere Date: 2008-07-11 Update NEWS, bump version number. NEWS | 9 +++++++++ configure.in | 2 +- 2 files changed, 10 insertions(+), 1 deletions(-) commit b7da90b80d37aa3bb5f81a99066ecaf6a3c78a09 Author: Yoann Vandoorselaere Date: 2008-07-11 Update GnuLib code. libmissing/m4/gnulib-comp.m4 | 12 ++++++------ libmissing/m4/onceonly.m4 | 15 +++++++++------ 2 files changed, 15 insertions(+), 12 deletions(-) commit b36343eec281c201ea63144f89b11e68aaf55766 Author: Yoann Vandoorselaere Date: 2008-07-11 Add AUTHORS file. AUTHORS | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) commit 37dacec517e98dfae1f65db074809ac109207f49 Author: Yoann Vandoorselaere Date: 2008-07-11 Allow to set 'nil' IDMEF value. This fixes the second issue referenced by #297. (fix #297). plugins/lua/lua-idmef.c | 31 +++++++++++++++++++++---------- 1 files changed, 21 insertions(+), 10 deletions(-) commit 079b4d9c2bdd83b85215c82c5eb474009c76fd4b Author: Yoann Vandoorselaere Date: 2008-07-11 Fix ctx:set() typo, this fixes one of the problem referenced by ticket #297. refs #297. plugins/lua/ruleset/brute-force.lua | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) commit a06a868bd8262a3a649f24f62306b38fd65439cb Author: Yoann Vandoorselaere Date: 2008-07-03 Update NEWS, bump version number. NEWS | 16 ++++++++++++++++ configure.in | 2 +- 2 files changed, 17 insertions(+), 1 deletions(-) commit ee0187fb7b4037ef859063108d51f34e3eb5e9e5 Author: Yoann Vandoorselaere Date: 2008-07-03 Update GnuLib code. libmissing/m4/gnulib-tool.m4 | 28 ++++++++++++++++++++++++++-- 1 files changed, 26 insertions(+), 2 deletions(-) commit 6b796622854479e73a8d7f723df0de5b3ad9b3c8 Author: Yoann Vandoorselaere Date: 2008-07-03 Fix problem with business-hour ruleset, of updating a non existing context. This rule does not need a context at all, rather a simple IDMEF object is sufficiant. plugins/lua/ruleset/business-hour.lua | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) commit f391f90a8929290f4d3c10fe8678f4352e5a6b2a Author: Yoann Vandoorselaere Date: 2008-07-03 Always return a table when retrieving multiple path (even with empty path). Fix #295. plugins/lua/lua-idmef.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) commit 86fc1fc9719552b2771963e0820fe07fbf034b01 Author: Yoann Vandoorselaere Date: 2008-06-30 Correct multi-path detection (was not working with exactly two IDMEF path). Should fix #295. plugins/lua/lua-idmef.c | 12 +++++------- 1 files changed, 5 insertions(+), 7 deletions(-) commit 50d9546385af8a84c9650c24308a35ba0311dee6 Author: Yoann Vandoorselaere Date: 2008-06-27 Fix invalid installation path under certain conditions, thanks to Steve Grubb for pointing that out. Makefile.am | 8 ++++---- NEWS | 5 +++++ configure.in | 30 ++++++++++++++++-------------- plugins/lua/ruleset/Makefile.am | 2 +- prelude-correlator.conf.in | 2 +- 5 files changed, 27 insertions(+), 20 deletions(-) commit 53713b75d327c96b200c1a85bd669ad298530878 Author: Yoann Vandoorselaere Date: 2008-06-27 Update NEWS, bump version number. NEWS | 8 ++++++++ configure.in | 2 +- 2 files changed, 9 insertions(+), 1 deletions(-) commit 41ae2f7d5c3f0ccb7ba64134ba04b19d0b5e681d Author: Yoann Vandoorselaere Date: 2008-06-27 Check for both lua5.1.pc and lua.pc: differents distributions seems to use different default. Thanks to Steve Grubb for pointing that out. configure.in | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit 1a787a54040be71f8a29eeea874e38f5281b328e Author: Yoann Vandoorselaere Date: 2008-06-27 Always use $(DESTDIR), thanks to Steve Grubb for pointing that out. Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 68b7c5f96d1a25b7d6239e43542fd41aeac7ba0b Author: Yoann Vandoorselaere Date: 2008-06-27 Initial Prelude-Correlator beta release. NEWS | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) commit 68906da88e781846f918fe46572e38567db452e6 Author: Yoann Vandoorselaere Date: 2008-06-27 Update GnuLib code. libmissing/Makefile.am | 40 ++- libmissing/dummy.c | 10 +- libmissing/gettimeofday.c | 8 +- libmissing/m4/absolute-header.m4 | 44 --- libmissing/m4/extensions.m4 | 56 +++- libmissing/m4/gnulib-cache.m4 | 9 +- libmissing/m4/gnulib-common.m4 | 73 +++++- libmissing/m4/gnulib-comp.m4 | 125 +++++++- libmissing/m4/include_next.m4 | 110 +++++++ libmissing/m4/onceonly.m4 | 87 ++++++ libmissing/m4/onceonly_2_57.m4 | 86 ------ libmissing/m4/string_h.m4 | 23 ++- libmissing/m4/strsep.m4 | 7 +- libmissing/m4/sys_time_h.m4 | 6 +- libmissing/string.in.h | 585 ++++++++++++++++++++++++++++++++++++++ libmissing/string_.h | 550 ----------------------------------- libmissing/strpbrk.c | 2 +- libmissing/strsep.c | 2 +- libmissing/sys_time.in.h | 52 ++++ libmissing/sys_time_.h | 44 --- 20 files changed, 1122 insertions(+), 797 deletions(-) delete mode 100644 libmissing/m4/absolute-header.m4 create mode 100644 libmissing/m4/include_next.m4 create mode 100644 libmissing/m4/onceonly.m4 delete mode 100644 libmissing/m4/onceonly_2_57.m4 create mode 100644 libmissing/string.in.h delete mode 100644 libmissing/string_.h create mode 100644 libmissing/sys_time.in.h delete mode 100644 libmissing/sys_time_.h commit b4ebc8d681fd5899fcf528b700ed6b248dd1204e Author: Yoann Vandoorselaere Date: 2008-06-27 Build system update. configure.in | 132 +++++++++++++++++++------------- m4/as-ac-expand.m4 | 43 ++++++++++ m4/ax_c_check_flag.m4 | 90 ++++++++++++++++++++++ m4/ax_cflags_gcc_option.m4 | 183 -------------------------------------------- m4/ax_ld_check_flag.m4 | 98 +++++++++++++++++++++++ plugins/lua/Makefile.am | 4 +- src/Makefile.am | 3 +- 7 files changed, 316 insertions(+), 237 deletions(-) create mode 100644 m4/as-ac-expand.m4 create mode 100644 m4/ax_c_check_flag.m4 delete mode 100644 m4/ax_cflags_gcc_option.m4 create mode 100644 m4/ax_ld_check_flag.m4 commit 1d7765d94acc18670bc17976912ba92f0fa9bb28 Author: Yoann Vandoorselaere Date: 2008-06-25 Remove debug output, coding style fixes. plugins/lua/lua.c | 54 ++++++++++++++++++++++++++++------------------------ 1 files changed, 29 insertions(+), 25 deletions(-) commit d21d6eb4157fdafe4dad3d93c57eab6edd90700d Author: Yoann Vandoorselaere Date: 2008-06-25 Deprecate PCRE plugin: remove from the build. configure.in | 2 -- plugins/Makefile.am | 2 +- 2 files changed, 1 insertions(+), 3 deletions(-) commit ae065f04e9507eaff577ec0939ae2269d5ef30ca Author: Yoann Vandoorselaere Date: 2008-06-25 Port old PCRE business-hour ruleset to LUA. plugins/lua/ruleset/Makefile.am | 2 +- plugins/lua/ruleset/business-hour.lua | 40 +++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletions(-) create mode 100644 plugins/lua/ruleset/business-hour.lua commit b11161d3ffb30fab1980f15fb9fc88943d4a1349 Author: Yoann Vandoorselaere Date: 2008-06-25 Implement IDMEFTime retrieval. Kill warning. plugins/lua/regex.c | 61 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 59 insertions(+), 2 deletions(-) commit dd3a0b7f11b3014785a16789519506c1f825a42f Author: Yoann Vandoorselaere Date: 2008-06-25 Allow the user to run LUA code out of the LUA rule running function, useful to setup global variable. Kill warning. plugins/lua/lua.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) commit 9b3d5ed92287d7615d04cd469dbdc9e7e397c3db Author: Yoann Vandoorselaere Date: 2008-06-25 Fix warnings. plugins/lua/regex.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) commit f1341641ccaf26af509cb569c16e464789212127 Author: Yoann Vandoorselaere Date: 2008-06-24 Correct polling timeout. src/prelude-correlator.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 47fabb3a9360aeb9869f913b5d86d6a076c40135 Author: Yoann Vandoorselaere Date: 2008-06-24 Print out the number of rulesets loaded. plugins/lua/lua.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) commit 9ce2087f60eba89b77f6468a285641aaa6525a41 Author: Yoann Vandoorselaere Date: 2008-06-24 Setup a default instance of the LUA plugin. prelude-correlator.conf.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 0076e214ab5595e5a0b23480511da164336287d8 Author: Yoann Vandoorselaere Date: 2008-06-24 Rename option to something more obvious. plugins/lua/lua.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 7910923ed3eaf691108231e7f4a9b07249243b71 Author: Yoann Vandoorselaere Date: 2008-06-24 distcheck fixes. plugins/lua/Makefile.am | 2 ++ plugins/lua/ruleset/Makefile.am | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-) commit b378694cb6452a12b3710dbae646669f5491cd86 Author: Yoann Vandoorselaere Date: 2008-03-03 Error handling improvements, bug fixes. plugins/lua/lua-idmef.c | 51 ++++++++++++----------- plugins/lua/regex.c | 102 +++++++++++++++++++++++++++++----------------- 2 files changed, 91 insertions(+), 62 deletions(-) commit bf409267b7cac469e48ff98b86ccf4695ca50366 Author: Yoann Vandoorselaere Date: 2008-03-03 Run each ruleset independantly, this require that all ruleset export a single function to be ran. Bug fixes / enhancements to all rulesets. plugins/lua/lua.c | 128 ++++++++++++++++++++++------------- plugins/lua/ruleset/brute-force.lua | 20 +++-- plugins/lua/ruleset/firewall.lua | 35 ++++++---- plugins/lua/ruleset/scan.lua | 19 +++--- plugins/lua/ruleset/worm.lua | 19 +++-- 5 files changed, 136 insertions(+), 85 deletions(-) commit d8e3ad974aa28fe966cb239fc03350abe457524b Author: Yoann Vandoorselaere Date: 2008-03-03 Add some utility function, make the code compatible with LUA < 5.1 plugins/lua/lib.lua | 136 ++++++++++++++++++++------------------------------- 1 files changed, 53 insertions(+), 83 deletions(-) commit d87926607f169103e1036b8c834040986fc5f3eb Author: Yoann Vandoorselaere Date: 2008-03-01 We now have two specialized method, IDMEF:get(), which return result converted to LUA datatype, and IDMEF:getraw(), returning raw IDMEFValue user data. plugins/lua/lib.lua | 4 +- plugins/lua/lua-idmef.c | 146 ++++++++++------------------------- plugins/lua/ruleset/brute-force.lua | 14 ++-- plugins/lua/ruleset/firewall.lua | 10 +- plugins/lua/ruleset/scan.lua | 18 ++-- plugins/lua/ruleset/worm.lua | 6 +- 6 files changed, 68 insertions(+), 130 deletions(-) commit 5ddb9d462ce79e1c77bef55ae5a8155e3c4239b1 Author: Yoann Vandoorselaere Date: 2008-03-01 Fix broken string initialization. plugins/lua/regex.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) commit d69fa4f33a1e0f1f6fa7f9bd1aa41ff6323b2fe6 Author: Yoann Vandoorselaere Date: 2008-03-01 Implement IDMEF:getAnalyzerID(), allowing to retrieve the last analyzerID in an analyzerID list. Make use of it in LUA rulesets. Implement correct EventSweep unique target detection, fix #253. plugins/lua/lib.lua | 20 +++++++++++++++ plugins/lua/ruleset/brute-force.lua | 4 +- plugins/lua/ruleset/firewall.lua | 2 +- plugins/lua/ruleset/scan.lua | 47 +++++++++++++++++++++------------- plugins/lua/ruleset/worm.lua | 2 +- 5 files changed, 53 insertions(+), 22 deletions(-) commit d319f32337ba3ae3d9f489a2bfe82e122c7aa15d Author: Yoann Vandoorselaere Date: 2008-03-01 Implement IDMEF:get2(), allowing to retrieve an IDMEF value converted to LUA, rather than a plain IDMEFValue. We will need to merge both get() and get2() method somehow. plugins/lua/lua-idmef.c | 50 +++++++++++++++- plugins/lua/regex.c | 152 ++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 198 insertions(+), 4 deletions(-) commit 545c33becd552019a6457ff291f988856c8a42d4 Author: Yoann Vandoorselaere Date: 2008-02-29 Fix memory leak. plugins/lua/lua-idmef.c | 1 + plugins/lua/lua.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) commit 594f20a5be35791822e4e17087f5590051f4d9ab Author: Yoann Vandoorselaere Date: 2008-02-29 Implement IDMEF:match() method, replacing global match function. This new function is also capable of handling mure more type of situation: single / multiple path, whether the result should be flatened out or not, etc. Set the default output to flatened, and port the rulesets accordingly. Rulesets bug fixes.. plugins/lua/lua-idmef.c | 77 ++++++++++++++++++++++++++++-- plugins/lua/lua.c | 47 ------------------ plugins/lua/regex.c | 88 ++++++++++++++++++++++++++++------- plugins/lua/regex.h | 4 +- plugins/lua/ruleset/brute-force.lua | 31 ++++++------ plugins/lua/ruleset/firewall.lua | 14 +++--- plugins/lua/ruleset/scan.lua | 21 ++++---- plugins/lua/ruleset/worm.lua | 55 +++++++++++----------- 8 files changed, 206 insertions(+), 131 deletions(-) commit 9f70ee146b07a284398a504d3fc4d046ace224d2 Author: Yoann Vandoorselaere Date: 2008-02-29 Cleanup table dump function, rename to tabledump() plugins/lua/lib.lua | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) commit 5a46314729cd5b73f81951fbb4defbed143fd748 Author: Yoann Vandoorselaere Date: 2008-02-29 Port scan.rules and worm.rules to the LUA plugin. plugins/lua/ruleset/scan.lua | 103 ++++++++++++++++++++++++++++++++++++++++++ plugins/lua/ruleset/worm.lua | 63 +++++++++++++++++++++++++ 2 files changed, 166 insertions(+), 0 deletions(-) create mode 100644 plugins/lua/ruleset/scan.lua create mode 100644 plugins/lua/ruleset/worm.lua commit 4d48d9b1843417e30a0024d621291ab6220d17b4 Author: Yoann Vandoorselaere Date: 2008-02-29 Ruleset fixes and optimisation: take advantage of provided LUA features. plugins/lua/ruleset/brute-force.lua | 112 +++++++++++++++++++--------------- plugins/lua/ruleset/firewall.lua | 40 ++++++------- 2 files changed, 81 insertions(+), 71 deletions(-) commit 1d7363915262b1f817544a2e354f9882007f6283 Author: Yoann Vandoorselaere Date: 2008-02-29 Proper LUA indentation for LUA class support code. plugins/lua/lib.lua | 94 +++++++++++++++++++++++++++----------------------- 1 files changed, 51 insertions(+), 43 deletions(-) commit 64ff5bd1343671b5ac33852711d1667ba5ccf53d Author: Yoann Vandoorselaere Date: 2008-02-28 Remove explicit call to lua_gc(). plugins/lua/lua-timer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 6f813fb4bba9b065b3755a5a6f8d9c7b8d7d8885 Author: Yoann Vandoorselaere Date: 2008-02-28 Port PCRE firewall.rules to LUA plugin. plugins/lua/ruleset/firewall.lua | 59 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 59 insertions(+), 0 deletions(-) create mode 100644 plugins/lua/ruleset/firewall.lua commit 8475cef365e99d9d5b2add70cd9d10f6972d1d42 Author: Yoann Vandoorselaere Date: 2008-02-28 Moved dump() debugging function to lib.lua, handle new match return value. plugins/lua/ruleset/brute-force.lua | 21 +++++---------------- 1 files changed, 5 insertions(+), 16 deletions(-) commit df3bf003b3ab210b2082de519995f6bbec2c499a Author: Yoann Vandoorselaere Date: 2008-02-28 Return nil if match can not find match. plugins/lua/lua.c | 43 ++++--------------------------------------- 1 files changed, 4 insertions(+), 39 deletions(-) commit 73e675d31e9400e6d4f64bcf2b9a6de849473a1f Author: Yoann Vandoorselaere Date: 2008-02-28 Implement alert_on_expire keyword, add a debug function. plugins/lua/lib.lua | 28 +++++++++++++++++++++++++++- 1 files changed, 27 insertions(+), 1 deletions(-) commit 1a0c8f79fa309674f8544ca4cdfc9da1ff9da40e Author: Yoann Vandoorselaere Date: 2008-02-28 Initial LUA support for prelude-correlator. The only ruleset ported is brute-force.rules. configure.in | 23 ++- plugins/Makefile.am | 2 +- plugins/lua/Makefile.am | 11 + plugins/lua/lib.lua | 107 +++++++++ plugins/lua/lua-idmef-value.c | 154 ++++++++++++ plugins/lua/lua-idmef-value.h | 26 ++ plugins/lua/lua-idmef.c | 443 +++++++++++++++++++++++++++++++++++ plugins/lua/lua-idmef.h | 26 ++ plugins/lua/lua-timer.c | 276 ++++++++++++++++++++++ plugins/lua/lua-timer.h | 28 +++ plugins/lua/lua.c | 337 ++++++++++++++++++++++++++ plugins/lua/regex.c | 200 ++++++++++++++++ plugins/lua/regex.h | 25 ++ plugins/lua/ruleset/Makefile.am | 3 + plugins/lua/ruleset/brute-force.lua | 71 ++++++ 15 files changed, 1729 insertions(+), 3 deletions(-) create mode 100644 plugins/lua/Makefile.am create mode 100644 plugins/lua/lib.lua create mode 100644 plugins/lua/lua-idmef-value.c create mode 100644 plugins/lua/lua-idmef-value.h create mode 100644 plugins/lua/lua-idmef.c create mode 100644 plugins/lua/lua-idmef.h create mode 100644 plugins/lua/lua-timer.c create mode 100644 plugins/lua/lua-timer.h create mode 100644 plugins/lua/lua.c create mode 100644 plugins/lua/regex.c create mode 100644 plugins/lua/regex.h create mode 100644 plugins/lua/ruleset/Makefile.am create mode 100644 plugins/lua/ruleset/brute-force.lua commit 4e8ce825c79376ccb483c98c2887a04ea9de8292 Author: Yoann Vandoorselaere Date: 2008-02-28 Whitespace police. plugins/pcre/pcre-parser.c | 38 +++++++++++++++++++------------------- 1 files changed, 19 insertions(+), 19 deletions(-) commit cc7a0927bb9bff5b7417b2a3ee82e5eba406ad49 Author: Sebastien Tricaud Date: 2007-11-28 (feature): Add the possibility to daemonize the correlator src/prelude-correlator.c | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) commit 6cdeec3d4221b500d4282c133132efc27f95c1db Author: Sebastien Tricaud Date: 2007-11-28 (typo): Not LML but Correlator configure.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 72adb9cb8205d0d5033be6d32955c027c9f33f24 Author: Yoann Vandoorselaere Date: 2007-09-26 The user can now provide infinite number of "elseif" command. "elif" is now accepted as a shortcut for "elseif". Both left and right if operand can now be context. plugins/pcre/pcre-mod.c | 207 ++++++++++++++++++++++++++++------------------- 1 files changed, 123 insertions(+), 84 deletions(-) commit d4675d031efbef6e2ccb0db315535cd4481b1621 Author: Yoann Vandoorselaere Date: 2007-09-26 Whitespace police. plugins/pcre/value-container.c | 166 ++++++++++++++++++++-------------------- 1 files changed, 83 insertions(+), 83 deletions(-) commit bed47370fcbd90dc05c0675a15a2dbfb050b29d0 Author: Yoann Vandoorselaere Date: 2007-09-26 Whitespace police. plugins/pcre/pcre-context.c | 260 +++++++++++++++++++++--------------------- 1 files changed, 130 insertions(+), 130 deletions(-) commit f53e0c99b78e45f215564aabf4a4efb2b2ad3590 Author: Yoann Vandoorselaere Date: 2007-09-17 Fix regression with if comparison returning always true. plugins/pcre/pcre-mod.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 9712f1e078a5b76cdd1fb39a643940d07bfc46e8 Author: Yoann Vandoorselaere Date: 2007-09-05 Rework logging priority, use prelude_plugin_instance_unsubscribe(). configure.in | 2 +- src/correlation-plugins.c | 17 +++++++---------- 2 files changed, 8 insertions(+), 11 deletions(-) commit 9c64cf646ab55df6a29b11311becdea524825560 Author: Yoann Vandoorselaere Date: 2007-09-05 Whitespace police. src/correlation-plugins.c | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) commit f7f825b91caa6f8310b94b7648b4b061f1f6df91 Author: Yoann Vandoorselaere Date: 2007-07-19 Add not equal (!=) if operator. plugins/pcre/pcre-mod.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) commit 59697e8651fa9717c7911f243db508113b8e441a Author: Yoann Vandoorselaere Date: 2007-07-19 Add missing prototype. plugins/pcre/pcre-context.h | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) commit 22dc9563e9162e62dcb120a79d5ad236ef42da42 Author: Yoann Vandoorselaere Date: 2007-07-19 Whitespace police. plugins/pcre/pcre-mod.c | 510 +++++++++++++++++++++++----------------------- 1 files changed, 255 insertions(+), 255 deletions(-) commit bff57476bffd6cf806be45ef9ec276d10237fea2 Author: Yoann Vandoorselaere Date: 2007-06-11 Whitespace police. src/prelude-correlator.c | 96 +++++++++++++++++++++++----------------------- 1 files changed, 48 insertions(+), 48 deletions(-) commit c47259c0892ed5e3ed2d8e7f510fb9d6c58ed2b1 Author: Yoann Vandoorselaere Date: 2007-06-11 Call prelude_deinit() on exit(). src/prelude-correlator.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) commit 010fafd665fce56d82751ae3884eeabdd84dd536 Author: Yoann Vandoorselaere Date: 2007-06-04 Hook business-hour.rules. plugins/pcre/ruleset/Makefile.am | 1 + plugins/pcre/ruleset/pcre.rules | 3 ++- 2 files changed, 3 insertions(+), 1 deletions(-) commit fb31d7cd982ae3e2a2d1c058a9e1c3ba707aea8b Author: Yoann Vandoorselaere Date: 2007-06-04 New ruleset: business-hour.rules Use "schedule" rule to determine when we are on business hour. Raise CorrelationAlert for Alert with suceeded completion when we are not on business hour. plugins/pcre/ruleset/business-hour.rules | 53 ++++++++++++++++++++++++++++++ 1 files changed, 53 insertions(+), 0 deletions(-) create mode 100644 plugins/pcre/ruleset/business-hour.rules commit a8a713375cee72a1251a7a645c8abc2d793e4ef5 Author: Yoann Vandoorselaere Date: 2007-04-20 Remove debug spew. plugins/pcre/pcre-context.c | 4 +--- plugins/pcre/pcre-mod.c | 2 -- 2 files changed, 1 insertions(+), 5 deletions(-) commit 6bf2b0efe3ef349b752d832a39bf0f1bd4a0722f Author: Yoann Vandoorselaere Date: 2007-04-20 Add a new "unique" keyword that might now be used when creating a context. Upon each insertion of an incoming IDMEF alert in a context, we check that the context doesn't already carry the value pointed to by the unique path. When using this setting, the threshold check is issued against the number of different unique path known in the context. This fix eventsweep detection. plugins/pcre/pcre-context.c | 107 +++++++++++++++++++++++++++++++++------ plugins/pcre/pcre-context.h | 3 + plugins/pcre/pcre-mod.c | 30 ++++++++--- plugins/pcre/ruleset/scan.rules | 2 +- 4 files changed, 116 insertions(+), 26 deletions(-) commit fd80932c24a2ecc7640e67ba54be5c48e1bcfdce Author: Yoann Vandoorselaere Date: 2007-04-20 Remove debug spew. plugins/pcre/value-container.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) commit 6f3629bcca6edebc00fef1b5177b7dada1746324 Author: Yoann Vandoorselaere Date: 2007-04-14 Module path migration: move /trunk/prelude-correlator /prelude-correlator/trunk commit 3b02f49319b6a885a2b2da7e72b5198b2da25a3c Author: Yoann Vandoorselaere Date: 2007-04-12 Correctly set Analyzer->model, Analyzer->class and Analyzer->Version. src/prelude-correlator.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 2fe5cf180e54fdb783d8e1cb00a2488e8c91ca17 Author: Yoann Vandoorselaere Date: 2007-04-10 Update. libmissing/string_.h | 12 +++++++++--- libmissing/sys_time_.h | 6 +++--- 2 files changed, 12 insertions(+), 6 deletions(-) commit bc5bd50fb593d154e52c78899f188d5c2f423ea4 Author: Yoann Vandoorselaere Date: 2007-03-30 Improve merging. Require libprelude-0.9.13.2. plugins/pcre/rule-object.c | 140 +++++++++++++++----------------------------- 1 files changed, 48 insertions(+), 92 deletions(-) commit c5a15de94ad56d415f76085ef89b6e82987302f1 Author: Yoann Vandoorselaere Date: 2007-03-30 Improve merging. Require libprelude-0.9.13.2. configure.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 9a276c783a4f387b188f262d7e4b3975c3587e4c Author: Yoann Vandoorselaere Date: 2007-03-24 When merging message, compare field by field, and explicitly skip port and portlist comparison. This is done to avoid merge failure since source->service tend to be different for each correlated message. In the future, it might be a good idea to generate a portlist. plugins/pcre/rule-object.c | 129 +++++++++++++++++++++++++++++++++++++------- 1 files changed, 110 insertions(+), 19 deletions(-) commit 979ccb2cd7869ae85f9cb3590ba41dbf9a671a3e Author: Yoann Vandoorselaere Date: 2007-03-24 Fix leak due to missing prelude_io_close(). plugins/pcre/pcre-context.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit 6586fbace443ec45b8bfe68af51d3c29e42abd1a Author: Yoann Vandoorselaere Date: 2007-03-24 Fix problem with if/for parsing. plugins/pcre/pcre-mod.c | 25 +++++++++++++++---------- 1 files changed, 15 insertions(+), 10 deletions(-) commit f61f3413690723aec0c451b0572eb9731037a62a Author: Yoann Vandoorselaere Date: 2007-03-23 Fix EVENTSCAN detection. Correct correlation_alert.name. plugins/pcre/ruleset/scan.rules | 17 +++++++---------- 1 files changed, 7 insertions(+), 10 deletions(-) commit ff16564697a221c8bd65c8f412ced40f48e861b8 Author: Yoann Vandoorselaere Date: 2007-03-22 Register SIGQUIT signal. This signal can now be used to get a dump of all available contexts, and their value. plugins/pcre/pcre-mod.c | 14 +++++++++++--- 1 files changed, 11 insertions(+), 3 deletions(-) commit 01b8fb7bdf222bb35d1d4a24a1db24940c15a2c7 Author: Yoann Vandoorselaere Date: 2007-03-22 Fix print-input / print-output option, so that they use their optional arguments. Additionally, add a small API for plugin to register signal. src/correlation-plugins.c | 14 +++++++++- src/include/correlation-plugins.h | 2 + src/include/prelude-correlator.h | 4 +++ src/prelude-correlator.c | 51 ++++++++++++++++++++++++++++++------ 4 files changed, 61 insertions(+), 10 deletions(-) commit d297f973bdb8c3921c299256876baaeea8dd4763 Author: Yoann Vandoorselaere Date: 2007-03-22 Implement pcre_context_print() and pcre_context_print_all(). Restore timer for any type of context. plugins/pcre/pcre-context.c | 65 +++++++++++++++++++++++++++++++++++++++++-- plugins/pcre/pcre-context.h | 4 ++ 2 files changed, 66 insertions(+), 3 deletions(-) commit 408813a8f9db1096a8a4d890a9bf6d18b033403a Author: Yoann Vandoorselaere Date: 2007-03-22 Remove netdb.h inclusion. plugins/pcre/rule-regex.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) commit c4b3e6ad79f25df4389948878d4ccdb08550fa80 Author: Yoann Vandoorselaere Date: 2007-03-20 Add plugin subdir. Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 600b5c5f73b3fa850a7eaa3c24461c56776ddde8 Author: Yoann Vandoorselaere Date: 2007-03-20 GnuLib + distcheck work. configure.in | 22 +++++++++++++++++++++- src/Makefile.am | 7 ++++--- 2 files changed, 25 insertions(+), 4 deletions(-) commit 65d2488d61195696478b4f75bbe054c9b3520103 Author: Yoann Vandoorselaere Date: 2007-03-20 GnuLib + distcheck work. plugins/pcre/Makefile.am | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit aee2ea4f3f75fb131effbce310a8bb2de6a1ed9e Author: Yoann Vandoorselaere Date: 2007-03-20 Format string fixes. src/prelude-correlator.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 285dd30069dfe0a5f328e123aff907b35d663bcb Author: Yoann Vandoorselaere Date: 2007-03-20 Add support for GnuLib. Makefile.am | 4 +- libmissing/Makefile.am | 168 ++++++++++++ libmissing/dummy.c | 44 +++ libmissing/gettimeofday.c | 142 ++++++++++ libmissing/m4/absolute-header.m4 | 44 +++ libmissing/m4/extensions.m4 | 58 ++++ libmissing/m4/gettimeofday.m4 | 101 +++++++ libmissing/m4/gnulib-cache.m4 | 32 +++ libmissing/m4/gnulib-common.m4 | 22 ++ libmissing/m4/gnulib-comp.m4 | 103 +++++++ libmissing/m4/gnulib-tool.m4 | 33 +++ libmissing/m4/onceonly_2_57.m4 | 86 ++++++ libmissing/m4/string_h.m4 | 78 ++++++ libmissing/m4/strpbrk.m4 | 18 ++ libmissing/m4/strsep.m4 | 21 ++ libmissing/m4/sys_time_h.m4 | 61 +++++ libmissing/string_.h | 544 ++++++++++++++++++++++++++++++++++++++ libmissing/strpbrk.c | 42 +++ libmissing/strsep.c | 58 ++++ libmissing/sys_time_.h | 44 +++ 20 files changed, 1701 insertions(+), 2 deletions(-) create mode 100644 libmissing/Makefile.am create mode 100644 libmissing/dummy.c create mode 100644 libmissing/gettimeofday.c create mode 100644 libmissing/m4/absolute-header.m4 create mode 100644 libmissing/m4/extensions.m4 create mode 100644 libmissing/m4/gettimeofday.m4 create mode 100644 libmissing/m4/gnulib-cache.m4 create mode 100644 libmissing/m4/gnulib-common.m4 create mode 100644 libmissing/m4/gnulib-comp.m4 create mode 100644 libmissing/m4/gnulib-tool.m4 create mode 100644 libmissing/m4/onceonly_2_57.m4 create mode 100644 libmissing/m4/string_h.m4 create mode 100644 libmissing/m4/strpbrk.m4 create mode 100644 libmissing/m4/strsep.m4 create mode 100644 libmissing/m4/sys_time_h.m4 create mode 100644 libmissing/string_.h create mode 100644 libmissing/strpbrk.c create mode 100644 libmissing/strsep.c create mode 100644 libmissing/sys_time_.h commit 70284ed2446d686d4775c8eb80305b5cc76260b9 Author: Yoann Vandoorselaere Date: 2006-12-23 More error checking when loading context from disk. Use prelude_extract_int32_safe() to read context timeout. Fix an useless warning. plugins/pcre/pcre-context.c | 16 ++++++++++------ 1 files changed, 10 insertions(+), 6 deletions(-) commit 3d7fd93de62ef049b798e4f9385e9e194529e23c Author: Yoann Vandoorselaere Date: 2006-12-23 Use RETSIGTYPE src/prelude-correlator.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 97a9edea72a014c79fe6dd1aed4a93ccfdf780a4 Author: Yoann Vandoorselaere Date: 2006-12-23 Make timeout explicit int32_t: we need to know it's size for portable context saving. plugins/pcre/pcre-context.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 6b7f2826a3bc6fac93f70ff9a14231ab4a71eb3a Author: Yoann Vandoorselaere Date: 2006-12-23 Fixes time.h inclusion. plugins/pcre/pcre-mod.c | 2 +- plugins/pcre/rule-object.c | 1 - plugins/pcre/rule-regex.c | 1 - 3 files changed, 1 insertions(+), 3 deletions(-) commit 519010d628a4d91d7beb7fc8a21b9bb4958c1f5b Author: Yoann Vandoorselaere Date: 2006-12-23 Remove un-needed check. s/prelude-lml/prelude-correlator/ configure.in | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) commit 7371f4ce83014c1c01d6a07f12ad0c71b5622fb0 Author: Yoann Vandoorselaere Date: 2006-11-14 Slight ruleset fix plugins/pcre/ruleset/brute-force.rules | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 4273c58b00694ce9da8cdfbf83e964c5fa16bbaa Author: Yoann Vandoorselaere Date: 2006-11-14 Correct context pattern matching. plugins/pcre/pcre-context.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) commit 4e9893c6eed76608dbb82ae39a5660fe51569a26 Author: Yoann Vandoorselaere Date: 2006-11-13 Try to avoid code duplication. All context operation now have regexp searching capability. Allow separate code block in the form 'if 1 { }'. Remove debug spew. plugins/pcre/pcre-context.c | 40 +++++++++-- plugins/pcre/pcre-context.h | 2 +- plugins/pcre/pcre-mod.c | 141 ++++++++++++++++++---------------------- plugins/pcre/value-container.c | 28 +------- 4 files changed, 101 insertions(+), 110 deletions(-) commit b4cb9acf7b075796c9cb85b84910de466bc2ec07 Author: Yoann Vandoorselaere Date: 2006-11-13 - Handle addition on IDMEF context assignement. - Handle checking multiple "not" context. - Handle reset of multiple timer context. - Update rulesets accordingly. plugins/pcre/pcre-mod.c | 355 +++++++++++++++++--------------- plugins/pcre/ruleset/brute-force.rules | 57 +++--- plugins/pcre/ruleset/pcre.rules | 5 +- plugins/pcre/ruleset/scan.rules | 122 +++++------ plugins/pcre/ruleset/worm.rules | 43 ++-- 5 files changed, 294 insertions(+), 288 deletions(-) commit d57f5aee7f90878e4a53573d50efe99a6ff3f146 Author: Yoann Vandoorselaere Date: 2006-11-10 Keep the '$' variable prefix, so that we can do more checking at higher level plugins/pcre/pcre-parser.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 6e9cc33f9c0b7af67c82320e81e73d74ea1ad426 Author: Yoann Vandoorselaere Date: 2006-11-09 Implement "else if" and "else" command. Various bug fix in "if" command handling. Implement assignement of multiple values. plugins/pcre/pcre-mod.c | 254 +++++++++++++++++++++++++++++++++-------------- 1 files changed, 179 insertions(+), 75 deletions(-) commit 753cbebe46b3b05f497bc45d94481382a11090b2 Author: Yoann Vandoorselaere Date: 2006-11-09 List initialization. plugins/pcre/value-container.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) commit aca3060a4782c9841cd50e7b44cc3646c639dfcb Author: Yoann Vandoorselaere Date: 2006-11-09 Cleanup. Make it possible to have a variable list index. plugins/pcre/value-container.c | 172 +++++++++++++++++++++++++--------------- 1 files changed, 108 insertions(+), 64 deletions(-) commit 4171b7d9441b77dcf1bf87648800a2969e431def Author: Yoann Vandoorselaere Date: 2006-11-09 Round float values before converting them to string. plugins/pcre/pcre-context.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 2df2310304bc6cf9c6238b287d12f85214ab4be1 Author: Yoann Vandoorselaere Date: 2006-11-09 Fix raw IDMEF list copy (example: target = target). plugins/pcre/rule-object.c | 28 ++++++++++++++++++++++++---- 1 files changed, 24 insertions(+), 4 deletions(-) commit 9c46d91fa0437aa232ad5114bcc91974b57c3a99 Author: Yoann Vandoorselaere Date: 2006-11-07 Remove debugging spew. plugins/pcre/pcre-context.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) commit c203f26415f56e1ad6a4d41de6c87569f804959e Author: Yoann Vandoorselaere Date: 2006-11-07 Datatype fix. Fix a possible memory leak on context destruction. plugins/pcre/pcre-mod.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) commit 4afecad331368702a46f825d8e819b800d44baf1 Author: Yoann Vandoorselaere Date: 2006-11-07 Error handling cleanup plugins/pcre/pcre-context.c | 14 +++++++------- plugins/pcre/pcre-context.h | 2 +- plugins/pcre/pcre-mod.c | 7 ++++--- 3 files changed, 12 insertions(+), 11 deletions(-) commit 7c06af2224d424ca07c5bf4e7c95febf05d22bdf Author: Yoann Vandoorselaere Date: 2006-11-07 Remove old unused code. plugins/pcre/pcre-mod.c | 167 +-------------------------------------------- plugins/pcre/pcre-mod.h | 5 +- plugins/pcre/rule-regex.c | 5 -- 3 files changed, 4 insertions(+), 173 deletions(-) commit 06dbe37970f1f4a698f698817413285642a73540 Author: Yoann Vandoorselaere Date: 2006-11-07 Remove unused global plugins/pcre/ruleset/worm.rules | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) commit 9bae44a50e16747ef129200b10b362d2f9a6c3af Author: Yoann Vandoorselaere Date: 2006-11-06 Let pcre-context resolve the IDMEF message. plugins/pcre/value-container.c | 16 ++++++++++------ 1 files changed, 10 insertions(+), 6 deletions(-) commit c2b54aec6f2b8eb383ed00cd45f981fd1d5549fa Author: Yoann Vandoorselaere Date: 2006-11-06 As of now, context require the '$' prefix. plugins/pcre/ruleset/brute-force.rules | 12 ++++++------ plugins/pcre/ruleset/scan.rules | 18 +++++++++--------- plugins/pcre/ruleset/worm.rules | 11 +++++------ 3 files changed, 20 insertions(+), 21 deletions(-) commit e93d0f0989b7b714ce66778a0e5775401de2f842 Author: Yoann Vandoorselaere Date: 2006-11-06 removed. plugins/pcre/context-save-restore.c | 453 ----------------------------------- plugins/pcre/context-save-restore.h | 26 -- 2 files changed, 0 insertions(+), 479 deletions(-) delete mode 100644 plugins/pcre/context-save-restore.c delete mode 100644 plugins/pcre/context-save-restore.h commit f3376ab494c620e01388dd48a1897b3200c2ce0f Author: Yoann Vandoorselaere Date: 2006-11-06 Move context save/restore to pcre-context.c. pcre_context_set_value_from_string() can now resolve IDMEF context. Various bugfix. plugins/pcre/Makefile.am | 1 - plugins/pcre/pcre-context.c | 474 +++++++++++++++++++++++++++++++++++++++++-- plugins/pcre/pcre-context.h | 7 +- plugins/pcre/pcre-mod.c | 21 +- 4 files changed, 472 insertions(+), 31 deletions(-) commit f3ec88793424cb55daef617b132196e63922d6e8 Author: Yoann Vandoorselaere Date: 2006-11-06 Allow 'if' command without comparison value. Useful to check whether a context exist. Ability to check several context at once. plugins/pcre/pcre-mod.c | 82 ++++++++++++++++++++++++++++++++-------------- 1 files changed, 57 insertions(+), 25 deletions(-) commit bfbddea4c3b277c84265e17d44df28953834768d Author: Yoann Vandoorselaere Date: 2006-11-06 Check that context name is always prefixed with '$', error out if it is not. Fix a bug with 'alert' operation not being added to the good path (out of if/for branch). plugins/pcre/pcre-mod.c | 29 ++++++++++++++++++++++------- 1 files changed, 22 insertions(+), 7 deletions(-) commit 22f06ebebf63f48f8c132ae94b5fd49f582fa32b Author: Yoann Vandoorselaere Date: 2006-11-04 Slight reordering plugins/pcre/pcre-mod.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 75cdb40c276171e596c41248dded0a5f1ba04fa2 Author: Yoann Vandoorselaere Date: 2006-11-04 Fix double free plugins/pcre/pcre-context.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) commit da25297bbde1005c975aca273cc0173b7595f982 Author: Yoann Vandoorselaere Date: 2006-11-03 Demonstration of newer feature plugins/pcre/ruleset/example.rules | 37 ++++++++++++++++++++++++++++++++++++ 1 files changed, 37 insertions(+), 0 deletions(-) create mode 100644 plugins/pcre/ruleset/example.rules commit 13b6c0b7326c9f85f7c8ff45c824a8238e8201d9 Author: Yoann Vandoorselaere Date: 2006-11-03 Complete rework of the pcre plugin. Support for dynamic rule scripting: - Context might now embed IDMEF, string, or float value. - Support for if/for. - Rule might be triggered through a crontab like schedule rather than an alert pattern. - Context might reference other context. plugins/pcre/Makefile.am | 11 +- plugins/pcre/context-save-restore.c | 94 ++- plugins/pcre/pcre-context.c | 449 ++++++++++ plugins/pcre/pcre-context.h | 104 +++ plugins/pcre/pcre-mod.c | 1485 ++++++++++++++++++++++--------- plugins/pcre/pcre-mod.h | 65 +-- plugins/pcre/pcre-parser.c | 173 ++++ plugins/pcre/pcre-parser.h | 25 + plugins/pcre/rule-object.c | 19 +- plugins/pcre/rule-object.h | 3 +- plugins/pcre/rule-regex.c | 89 +-- plugins/pcre/rule-regex.h | 2 +- plugins/pcre/ruleset/brute-force.rules | 15 +- plugins/pcre/ruleset/firewall.rules | 25 +- plugins/pcre/ruleset/scan.rules | 21 +- plugins/pcre/ruleset/worm.rules | 30 +- plugins/pcre/value-container.c | 268 +++++- plugins/pcre/value-container.h | 6 +- 18 files changed, 2205 insertions(+), 679 deletions(-) create mode 100644 plugins/pcre/pcre-context.c create mode 100644 plugins/pcre/pcre-context.h create mode 100644 plugins/pcre/pcre-parser.c create mode 100644 plugins/pcre/pcre-parser.h commit 0659aece52cdaa747dea290183f788c667d2d8c0 Author: Yoann Vandoorselaere Date: 2006-11-03 The alert might remain cached after it is sent, only add the analyzer object once, remove it afterwise. src/prelude-correlator.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) commit 56c785a08f976ec42940529ff05a60d8cf80a0bf Author: Yoann Vandoorselaere Date: 2006-10-19 Revert un-necessary code modification plugins/pcre/value-container.c | 11 ----------- plugins/pcre/value-container.h | 2 -- 2 files changed, 0 insertions(+), 13 deletions(-) commit 6d240d3932f0f061f17dfe1d61bcd3c9b4821a07 Author: Yoann Vandoorselaere Date: 2006-10-19 Cache the prelude_msg_t object since it's used by the IDMEF message. plugins/pcre/context-save-restore.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) commit 4dd46ec5ee3fcbf115df0dad2239d8796353176d Author: Yoann Vandoorselaere Date: 2006-10-19 - Require libprelude 0.9.11. Define a runtime savedir. - Ability to save & restore context accross prelude-correlator run. Makefile.am | 1 + configure.in | 5 +- plugins/pcre/Makefile.am | 2 +- plugins/pcre/context-save-restore.c | 401 +++++++++++++++++++++++++++++++++++ plugins/pcre/context-save-restore.h | 26 +++ plugins/pcre/pcre-mod.c | 111 ++++++++-- plugins/pcre/pcre-mod.h | 16 ++- plugins/pcre/value-container.c | 11 + plugins/pcre/value-container.h | 2 + 9 files changed, 553 insertions(+), 22 deletions(-) create mode 100644 plugins/pcre/context-save-restore.c create mode 100644 plugins/pcre/context-save-restore.h commit f19b6a8c4420aa8ca89c43d90712c9979db77e2a Author: Yoann Vandoorselaere Date: 2006-10-17 Make sure the destroy() function is called once for each plugin instance on exit. src/correlation-plugins.c | 17 +++++++++++++++++ src/include/correlation-plugins.h | 3 +++ src/prelude-correlator.c | 2 ++ 3 files changed, 22 insertions(+), 0 deletions(-) commit 770a0daa0f600d3fdf31d8e95ba2bba1932a953f Author: Gene Ramon Gomez Date: 2006-08-25 Implement floating threshold windows plugins/pcre/ruleset/brute-force.rules | 12 ++++- plugins/pcre/ruleset/firewall.rules | 23 +++++---- plugins/pcre/ruleset/scan.rules | 94 ++++++++++++++++++-------------- plugins/pcre/ruleset/worm.rules | 7 ++- 4 files changed, 81 insertions(+), 55 deletions(-) commit 41b5ef67d1078a7396fb26cea538c35d78c9fcf4 Author: Gene Ramon Gomez Date: 2006-08-25 Fix required field regex plugins/pcre/ruleset/brute-force.rules | 8 ++++---- plugins/pcre/ruleset/scan.rules | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) commit 0d10b4b97c039b0a1603fd4fe3cfdeeda3d9a02a Author: Yoann Vandoorselaere Date: 2006-08-23 New rules format. The new format take into account the order in which the operation are specified rather than applying our own order. New ruleset keyword: "reset_timer" and "check_correlation". plugins/pcre/pcre-mod.c | 432 ++++++++++++++++++++++++------- plugins/pcre/pcre-mod.h | 40 ++-- plugins/pcre/rule-regex.c | 249 ++----------------- plugins/pcre/ruleset/brute-force.rules | 66 +++--- plugins/pcre/ruleset/firewall.rules | 35 ++-- plugins/pcre/ruleset/scan.rules | 102 ++++---- plugins/pcre/ruleset/worm.rules | 45 +++- plugins/pcre/value-container.c | 2 +- 8 files changed, 521 insertions(+), 450 deletions(-) commit b694b32f14e123657f37890ca96ebf2f7d34b538 Author: Gene Ramon Gomez Date: 2006-08-21 Implement Eventscan/Eventsweep/Eventstorm rules plugins/pcre/ruleset/Makefile.am | 6 ++- plugins/pcre/ruleset/pcre.rules | 7 ++- plugins/pcre/ruleset/scan.rules | 102 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 112 insertions(+), 3 deletions(-) create mode 100644 plugins/pcre/ruleset/scan.rules commit e699c22930d012ba837047a7ef31a6a05ce11806 Author: Gene Ramon Gomez Date: 2006-08-21 Fix documentation plugins/pcre/ruleset/brute-force.rules | 22 +++++----------------- plugins/pcre/ruleset/firewall.rules | 4 ++-- plugins/pcre/ruleset/worm.rules | 7 ++++--- 3 files changed, 11 insertions(+), 22 deletions(-) commit 0f5c18fe6212e69ecbdec45abec849a4cee3412f Author: Yoann Vandoorselaere Date: 2006-08-17 Fix linked list corruption on prelude_string_destroy(). plugins/pcre/value-container.c | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) commit 4cd0360630d69bf53751f4489141cc2d25865e9f Author: Yoann Vandoorselaere Date: 2006-08-16 Use the left operand as the path, since it's where append/prepend attribute might be used. plugins/pcre/rule-object.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 865eaed59251a6ff80abd990aea9aa43b5fb767e Author: Yoann Vandoorselaere Date: 2006-08-15 Fix parsing of value with escaped character. plugins/pcre/value-container.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) commit 3bdf02d56da4c3d43417770efd92d44e76126939 Author: Yoann Vandoorselaere Date: 2006-08-15 Modify value-container so that we can now handle listed value. That is, when a pattern match several element and store them in a single value, the value can be addressed using an index (positive, or negative for backward indexing). Updated the rules to match the new variable format. plugins/pcre/ruleset/brute-force.rules | 20 ++-- plugins/pcre/ruleset/firewall.rules | 8 +- plugins/pcre/ruleset/worm.rules | 10 +- plugins/pcre/value-container.c | 158 +++++++++++++++++++++----------- 4 files changed, 124 insertions(+), 72 deletions(-) commit 75c738043b07395f9851fad3e6a1ce30ad9620fd Author: Yoann Vandoorselaere Date: 2006-08-14 Make capture-string handle negative index, so that listed value can be handled backward. plugins/pcre/capture-string.c | 18 +++++++++++++----- plugins/pcre/capture-string.h | 4 ++-- 2 files changed, 15 insertions(+), 7 deletions(-) commit e0aaf79168a38a0ac67e0220aa9ac52442ef3ae1 Author: Yoann Vandoorselaere Date: 2006-08-14 Handle context destruction of listed value. plugins/pcre/rule-regex.c | 24 ++++++++++++++++-------- 1 files changed, 16 insertions(+), 8 deletions(-) commit 162f710330740d7af18a3aad0c5785ebb473d1e5 Author: Yoann Vandoorselaere Date: 2006-08-14 Alway copy source/target object to the created CorrelationAlert. plugins/pcre/ruleset/brute-force.rules | 17 +++++++++-------- 1 files changed, 9 insertions(+), 8 deletions(-) commit 4f1041a973473193af80665860a0fc49e2b6cc34 Author: Yoann Vandoorselaere Date: 2006-08-14 Using the pre_action keyword, this detection can be performed in 1 rules instead of 2. plugins/pcre/ruleset/worm.rules | 34 +++++++++------------------------- 1 files changed, 9 insertions(+), 25 deletions(-) commit 8f8c7ea66ad186252c52742940c34e477fd7fddb Author: Yoann Vandoorselaere Date: 2006-08-14 Fix a bug with context that both require and create context. plugins/pcre/rule-regex.c | 36 ++++++++++++++++++++++++++++++++---- 1 files changed, 32 insertions(+), 4 deletions(-) commit 6e374b18620d67a5e0d1d67e8ebdd9ea5e090d2c Author: Yoann Vandoorselaere Date: 2006-08-14 Handle NULL value. plugins/pcre/rule-object.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) commit b99d7dbb3a3875a7b67b3b15d1c7341acd0cf623 Author: Yoann Vandoorselaere Date: 2006-08-13 Add missing copyright notice. plugins/pcre/capture-string.c | 23 +++++++++++++++++++++++ src/correlation-plugins.c | 23 +++++++++++++++++++++++ src/include/correlation-plugins.h | 23 +++++++++++++++++++++++ src/include/prelude-correlator.h | 23 +++++++++++++++++++++++ src/prelude-correlator.c | 23 +++++++++++++++++++++++ 5 files changed, 115 insertions(+), 0 deletions(-) commit e5fff4d75bc6c118d8522bfeec8b881e5a99293f Author: Yoann Vandoorselaere Date: 2006-08-13 Fix a warning. plugins/pcre/value-container.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit b0f1fd9f1db981a591eed4be448cbf9c4657c551 Author: Gene Ramon Gomez Date: 2006-08-07 Default disables added plugins/pcre/ruleset/pcre.rules | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) commit 7dce477167ff6fa61b70571462714f7749a86830 Author: Yoann Vandoorselaere Date: 2006-08-07 Implement automatic object comparison, when copying IDMEFAlert data to the generated CorrelationAlert. That way, we never end up with duplicated object within the generated CorrelationAlert. Require latest libprelude work. plugins/pcre/rule-object.c | 75 +++++++++++++++++++++++++++++++++++++++----- 1 files changed, 67 insertions(+), 8 deletions(-) commit 0069d9025c5c5c167619b1b9287f58e2bf3cdbfd Author: Yoann Vandoorselaere Date: 2006-07-31 Fix brute-force ruleset plugins/pcre/ruleset/brute-force.rules | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) commit feefb8170f59c99c4240157f821a004442f18bb1 Author: Yoann Vandoorselaere Date: 2006-07-31 Declare pcre_context_set_idmef() function plugins/pcre/pcre-mod.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) commit 47ffa04aaeb8020fb2660fa05ff637424dd6f45d Author: Yoann Vandoorselaere Date: 2006-07-31 Do not install correlation-plugins.h private header src/include/Makefile.am | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) commit 8edc64efd768f74295434d4a7bad2a67f14ef03a Author: Yoann Vandoorselaere Date: 2006-07-31 Introduce pcre_context_set_idmef() to set the IDMEF object after context creation. Since the IDMEF object might be set after context creation, we have to iterate through newly created context in order to set the object. plugins/pcre/pcre-mod.c | 22 +++++++++++++++------- plugins/pcre/rule-regex.c | 43 ++++++++++++++++++++++++++----------------- 2 files changed, 41 insertions(+), 24 deletions(-) commit 5aff39f0bfab045dad297e1c0337800af0f1f5b8 Author: Yoann Vandoorselaere Date: 2006-07-30 Fix dist. HACKING.README | 14 ++++++++++++++ src/include/Makefile.am | 2 +- 2 files changed, 15 insertions(+), 1 deletions(-) create mode 100644 HACKING.README commit 3425099580bc2bba680c5db6ba2fe308bde81499 Author: Yoann Vandoorselaere Date: 2006-07-13 Require libprelude >= 0.9.10 configure.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit eb1cc0f1bd236e13f60da57bd72d9e4d10edf5a6 Author: Yoann Vandoorselaere Date: 2006-07-05 Fix IDMEF path leak on error. plugins/pcre/rule-object.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit 2d9f70dca69cefca2716bdec30c9373f8d7fcde1 Author: Yoann Vandoorselaere Date: 2006-06-29 Use multiple context + IDMEF object copy feature. plugins/pcre/ruleset/brute-force.rules | 23 ++++++++++++++--------- plugins/pcre/ruleset/worm.rules | 19 ++++++++++++------- 2 files changed, 26 insertions(+), 16 deletions(-) commit d4f1375916e8974711e6406fe1cf09565780d9d9 Author: Yoann Vandoorselaere Date: 2006-06-29 Remove last keyword, which prevented processing of further rules. Use add_context rather than new_context, in order to not miss packet drop. Make use of object copy in the generated alerts. plugins/pcre/ruleset/firewall.rules | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) commit 06d356a6aec12ba5098b1ba4c4f886812c1df0cd Author: Yoann Vandoorselaere Date: 2006-06-29 All list are now flat. Make handling multiple value much simpler. plugins/pcre/value-container.c | 46 ++++++++++++++++++--------------------- 1 files changed, 21 insertions(+), 25 deletions(-) commit fc6b270efaf2ad0b5f407acbd3654083eff222ff Author: Yoann Vandoorselaere Date: 2006-06-29 Fix typo. plugins/pcre/rule-regex.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 28be4eab32ca40a7836a28a59bc528ef96705b41 Author: Yoann Vandoorselaere Date: 2006-06-29 Avoid un-necessary copy, by using capture_string_get_parent() plugins/pcre/rule-regex.c | 19 +++++++++++++------ 1 files changed, 13 insertions(+), 6 deletions(-) commit 470075ef640ec25bfcb1ab4835fefe1f694ba7b4 Author: Yoann Vandoorselaere Date: 2006-06-29 Ooops. plugins/pcre/capture-string.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) commit 65e3fe0634e995233118e917168f823467a90d19 Author: Yoann Vandoorselaere Date: 2006-06-29 Implement capture_string_get_parent(). plugins/pcre/capture-string.c | 17 ++++++++++++++--- 1 files changed, 14 insertions(+), 3 deletions(-) commit 6363d20f146f60246139096cbe129b8968b76ad6 Author: Yoann Vandoorselaere Date: 2006-06-27 Add missing prelude-correlator.conf.in | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) create mode 100644 prelude-correlator.conf.in commit 68bb2ba05de12d6349ff78ab6682e969678853ad Author: Yoann Vandoorselaere Date: 2006-06-23 Don't check for ambiguous IDMEF path. Now allowed for copy. Miscelaneous bug fixes plugins/pcre/rule-object.c | 14 +++++--------- 1 files changed, 5 insertions(+), 9 deletions(-) commit 71bcb86253d016bd76a5da63cc58ccbfd1ee244c Author: Yoann Vandoorselaere Date: 2006-06-16 Install worm.rules plugins/pcre/ruleset/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 73d33ac417861f2e7e9051195d87ab305f30afb4 Author: Yoann Vandoorselaere Date: 2006-06-16 Configuration file handling. Install default file. Makefile.am | 19 ++++++++++++++++++- configure.in | 7 +++++++ src/prelude-correlator.c | 21 +++++++++++++++++++-- 3 files changed, 44 insertions(+), 3 deletions(-) commit ae98abc0c878a1eb6bc191090d725bd50c2d2be9 Author: Yoann Vandoorselaere Date: 2006-06-16 Fix potential double free. plugins/pcre/value-container.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) commit 1a0da29fbff3a500ea1b4b2452883d89ffdd0ede Author: Yoann Vandoorselaere Date: 2006-06-09 Preliminary support for object to object copy. Won't work until recent object copy work is checked in libprelude repository. plugins/pcre/rule-object.c | 28 ++++++++++++++++++++++++---- 1 files changed, 24 insertions(+), 4 deletions(-) commit 86d806db40a691ee694401a5a673bed0edf873c6 Author: Yoann Vandoorselaere Date: 2006-06-09 In the near future, correlation rule are going to be able to use IDMEF object copy. This mean that a correlation alert might be raised from a received alert, using the received message as the "base" message. In this case, we want to reset the alert messageID so that libprelude automatically allocate a new one. We also manually set the correlator analyzer object, since libprelude will assume we already did it if the analyzer list is not empty. src/prelude-correlator.c | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) commit a17965a527d99caab5510502529965fc4c635380 Author: Yoann Vandoorselaere Date: 2006-06-07 Port worm.rules from old SEC format. plugins/pcre/ruleset/pcre.rules | 3 +- plugins/pcre/ruleset/worm.rules | 56 ++++++++++++-------------------------- 2 files changed, 20 insertions(+), 39 deletions(-) commit 05eb1017f8806a71d3169a32d7b53b676378dd1f Author: Yoann Vandoorselaere Date: 2006-06-07 Print context name plugins/pcre/pcre-mod.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 0e9b9546c60c9a336c249379065e89b5c6753139 Author: Yoann Vandoorselaere Date: 2006-05-31 Implement support for creating multiple context from retrieved value that are listed. Open a new room of possibility. plugins/pcre/rule-regex.c | 57 ++++++---- plugins/pcre/value-container.c | 230 +++++++++++++++++++++++++++++++++++----- plugins/pcre/value-container.h | 3 + 3 files changed, 239 insertions(+), 51 deletions(-) commit fe4e58c4b0d5fc8fd9db7b7c8ebf411bd641e792 Author: Yoann Vandoorselaere Date: 2006-05-31 Fix some parser problem. plugins/pcre/pcre-mod.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) commit 88f68c81a40569b935a53dbf18d2efc589e11c46 Author: Yoann Vandoorselaere Date: 2006-05-30 Prevent last keyword from affecting other rules plugins/pcre/ruleset/firewall.rules | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit d46fa75a380115e12d55789e68ff5d314d59ad62 Author: Yoann Vandoorselaere Date: 2006-05-30 Cosmetic changes plugins/pcre/ruleset/brute-force.rules | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit c2a45680460d80e903920de61c820d896d424ad8 Author: Yoann Vandoorselaere Date: 2006-05-26 Correctly set dry-run option callback. src/prelude-correlator.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit aa2241efb103b8534d9e82d04ccc188359c080c4 Author: Gene Ramon Gomez Date: 2006-05-14 Add credit header to brute-force.rules, start worm.rules plugins/pcre/ruleset/brute-force.rules | 23 +++++++++ plugins/pcre/ruleset/worm.rules | 78 ++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+), 0 deletions(-) create mode 100644 plugins/pcre/ruleset/worm.rules commit 8b32563209e881cc46417499d23e80d9cc9119fa Author: Yoann Vandoorselaere Date: 2006-05-04 Detailed error message plugins/pcre/pcre-mod.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 447f7eb2835cc8c28a8f00eb20805ae4d5d4fdb1 Author: Yoann Vandoorselaere Date: 2006-04-28 Implement --dry-run mode. src/prelude-correlator.c | 24 ++++++++++++++++++------ 1 files changed, 18 insertions(+), 6 deletions(-) commit 779128368af57b5c2832083af9858962f42ce003 Author: Yoann Vandoorselaere Date: 2006-04-28 Correct the way correlation check are done. plugins/pcre/pcre-mod.c | 23 ++++++----- plugins/pcre/pcre-mod.h | 2 +- plugins/pcre/rule-regex.c | 94 +++++++++++++++++++++++++++------------------ 3 files changed, 69 insertions(+), 50 deletions(-) commit 4833fd413e371d4d4303cd6f350ff3d335a52418 Author: Yoann Vandoorselaere Date: 2006-04-28 Correct last/silent usage. plugins/pcre/ruleset/brute-force.rules | 2 +- plugins/pcre/ruleset/firewall.rules | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) commit df294bfa320c9711f5c8d92a54243d07ddc57655 Author: Yoann Vandoorselaere Date: 2006-04-27 r8189@arwen: yoann | 2006-04-27 18:12:09 +0200 New string capture interface. Needed for future listed value handling. plugins/pcre/Makefile.am | 4 +- plugins/pcre/capture-string.c | 113 +++++++++++++++++++++++ plugins/pcre/capture-string.h | 41 +++++++++ plugins/pcre/rule-object.c | 4 +- plugins/pcre/rule-object.h | 4 +- plugins/pcre/rule-regex.c | 196 +++++++++++++++++++++++----------------- plugins/pcre/value-container.c | 23 +++-- plugins/pcre/value-container.h | 4 +- 8 files changed, 290 insertions(+), 99 deletions(-) create mode 100644 plugins/pcre/capture-string.c create mode 100644 plugins/pcre/capture-string.h commit 61bc98e595fb9226fd7293135245f64803e270ef Author: Yoann Vandoorselaere Date: 2006-04-27 r8188@arwen: yoann | 2006-04-27 16:12:55 +0200 Import prelude-correlator. COPYING | 340 ++++++++++ INSTALL | 236 +++++++ Makefile.am | 3 + autogen.sh | 9 + configure.in | 115 ++++ m4/ax_cflags_gcc_option.m4 | 183 ++++++ m4/libprelude.m4 | 176 +++++ plugins/Makefile.am | 1 + plugins/pcre/Makefile.am | 10 + plugins/pcre/pcre-mod.c | 1113 ++++++++++++++++++++++++++++++++ plugins/pcre/pcre-mod.h | 123 ++++ plugins/pcre/rule-object.c | 252 +++++++ plugins/pcre/rule-object.h | 39 ++ plugins/pcre/rule-regex.c | 515 +++++++++++++++ plugins/pcre/rule-regex.h | 30 + plugins/pcre/ruleset/Makefile.am | 3 + plugins/pcre/ruleset/brute-force.rules | 56 ++ plugins/pcre/ruleset/firewall.rules | 59 ++ plugins/pcre/ruleset/pcre.rules | 3 + plugins/pcre/value-container.c | 283 ++++++++ plugins/pcre/value-container.h | 42 ++ src/Makefile.am | 10 + src/correlation-plugins.c | 68 ++ src/include/Makefile.am | 3 + src/include/correlation-plugins.h | 3 + src/include/prelude-correlator.h | 14 + src/prelude-correlator.c | 378 +++++++++++ 27 files changed, 4067 insertions(+), 0 deletions(-) create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 ChangeLog create mode 100644 INSTALL create mode 100644 Makefile.am create mode 100644 NEWS create mode 100644 README create mode 100755 autogen.sh create mode 100644 configure.in create mode 100644 m4/ax_cflags_gcc_option.m4 create mode 100644 m4/libprelude.m4 create mode 100644 plugins/Makefile.am create mode 100644 plugins/pcre/Makefile.am create mode 100644 plugins/pcre/pcre-mod.c create mode 100644 plugins/pcre/pcre-mod.h create mode 100644 plugins/pcre/rule-object.c create mode 100644 plugins/pcre/rule-object.h create mode 100644 plugins/pcre/rule-regex.c create mode 100644 plugins/pcre/rule-regex.h create mode 100644 plugins/pcre/ruleset/Makefile.am create mode 100644 plugins/pcre/ruleset/brute-force.rules create mode 100644 plugins/pcre/ruleset/firewall.rules create mode 100644 plugins/pcre/ruleset/pcre.rules create mode 100644 plugins/pcre/value-container.c create mode 100644 plugins/pcre/value-container.h create mode 100644 src/Makefile.am create mode 100644 src/correlation-plugins.c create mode 100644 src/include/Makefile.am create mode 100644 src/include/correlation-plugins.h create mode 100644 src/include/prelude-correlator.h create mode 100644 src/prelude-correlator.c commit e97bb55961f2450538f36c46011b8046b1ceb72b Author: Yoann Vandoorselaere Date: 2006-04-27 prelude-correlator module. prelude-correlator-1.0.0/NEWS0000664000076400007640000001702411347714007015075 0ustar yoannyoann* 2010-03-16, prelude-correlator-1.0.0: - When Prelude-Correlator is started as a daemon, make sure we use syslog for logging. - Fix an exception when adding an alert with no source or target to the generated Correlation alert, by Frédéric Yhuel - Do not generate Brute Force CorrelationAlert for multiples successful authentication. - Workaround documentation installation problem. * 2010-03-08, prelude-correlator-1.0.0rc4: - Fix installation problem (#372). * 2010-03-05, prelude-correlator-1.0.0rc3: - Prelude-Correlator wasn't properly updating context (and thus, didn't generate correlation events) since context identifiers were escaped twice. - Prevent exception when Prelude-Correlator attempt to restore contexts from an earlier Prelude-Correlator version, and that the context internal attributes have changed. - A sample-plugin example has been included in the distribution. * 2010-02-01, prelude-correlator-1.0.0rc2: - Fix generated tarball name, so that the package might easily be included in various distribution for testing. * 2010-01-29, prelude-correlator-1.0.0rc1: - [Firewall]: The plugin will now report CorrelationAlert for events / sets of events that appear to have passed through a firewall known to protect the target machine. If no firewall ever emit block concerning a given host, then this host is considered un-protected, and there is no point in reporting CorrelationAlert. - [OpenSSHAuth]: The plugin has been modified so that it can now generate a single CorrelationAlert for multiples authentication method used in a given time slice. - [Spamhaus]: The plugin has been modified so that it can now generate a single CorrelationAlert for multiples events received from the same source. - [BruteForce]: Various improvement, do not limit the number of events the plugin is able to report in a single CorrelationAlert. - [Scan]: do not limit the number of events the plugin is able to report in a single CorrelationAlert. - Context initialization now take an optional 'overwrite' argument. This argument, if set to False, mean that the Context() will be returned un-modified if it already exist. If it doesn't, it will be created. - New Context.update() method, which provide exactly the same functionality as calling Context() with the 'update=True' argument. This is useful since some plugin need to defer an update to another place in the code. - If the context creation/update function is called with an IDMEF message parameter, then we automatically call addAlertReference on the context CorrelationAlert using the provided message as the parameter. - Make it possible to change context option on update - Automatically set CorrelationAlert DetectTime : reported CorrelationAlert DetectTime now match the time of the first event that was detected. - Make it possible for plugin to specify a function to be called on Timer expiration. - Disable BusinessHour correlation by default since it is very verbose - Various bug fixes. * 2009-11-03, prelude-correlator-0.9.0-beta8: - Include spamhaus_drop.dat in the source distribution. Fix installation issue (closes #364). * 2009-11-02, prelude-correlator-0.9.0-beta7: - Initial SpamhausDrop plugin implementation, by Wes Young (closes #363) - Do not discard --root parameters if prefix is absolute. - Python 2.4 backward compatibility fixes. - Handle plugin loading error gracefully. - Improve WormPlugin accuracy, and make it carry a reference to the initial event. The plugin used to alert when seeing an alert to a given target, and this same alert going back to the source. This can happen in a number of case (example: Netbios alert triggered by Snort) As of now, the plugin will wait for the events to be repeated against at least 5 differents hosts. - Dshield CorrelationAlert now handle multiples events. Previously, we used to generate a single Dshield CorrelationAlert for each events where the source address would match the Dshield database. The plugin now generate CorrelationAlert for multiples events received from the same source. * 2009-07-09, prelude-correlator-0.9.0-beta6: - Provide a default configuration file, and fixes the prelude-correlator --config option. - A rare exception could occur when IDMEF:Set() was called with an empty list/tuple as the value argument. - Normalize libprelude logging through our own log callback (only enabled if libprelude >= 0.9.24 is installed). - The DShield plugin didn't report any events since address loaded from the DShield database weren't correctly normalized. - Automatic download + reloading of the DShield database was fixed. - DShield generated alerts now include additional details. - Make it possible to specify your own DShield database file, and to prevent automatic download. This is useful on system with no direct internet access. - Handle both standard installation, and EGG installation method (in EGG mode, configuration and data files are self contained). - Introduce a new plugin logging mechanism. - Add some utility method to the Timer class. - Make it possible for plugin to define a 'signal' method that will get called when prelude-correlator handle a signal (can be used to perform special handling before exit, statistics or debugging purposes). * 2009-06-18, prelude-correlator-0.9.0-beta5: - A bug prevented prelude-correlator from starting in daemon mode when using the '--pidfile' option. Fixes #355. - Prevent prelude-correlator from abording if a plugin fail. Emit a warning explaining why a given plugin couldn't load, and continue processing. - Implement a timeout for Dshield.org server connection. The default is 10 seconds, and might be modified from the prelude-correlator.conf configuration file. This prevent Dshield host list loading from blocking forever, and fixes #353. - Make it possible to disable plugin (fixes #354), by adding the following setting in prelude-correlator.conf: [PluginClassName] disable = true - Read plugin configuration from prelude-correlator.conf - Use the Python logging facility. - Correct copyright notice, add missing AUTHORS, COPYING, HACKING.README files. * 2009-06-17, prelude-correlator-0.9.0-beta4: - Initial Python Correlator version. Rationale for the switch available here: http://lists.prelude-ids.org/pipermail/prelude-user/2009-April/005163.html - Support DShield correlation! * 2008-07-11, prelude-correlator-0.9.0-beta3: - Add missing AUTHORS file. - Allow setting 'nil' IDMEF value using IDMEF:set() (#297). - Fix ctx:set() typo in the business-hour.lua rulese (#297). * 2008-07-03, prelude-correlator-0.9.0-beta2: - Fix issues with the business-hour ruleset, that tried updating a non existing context. This rule does not need a context at all, rather a simple IDMEF object is sufficiant. - Always return a table when retrieving multiple path (even with empty path). Fix #295. - Correct multi-path detection (was not working with exactly two IDMEF path). - Fix invalid installation path under certain conditions, thanks to Steve Grubb for pointing that out. * 2008-06-27, prelude-correlator-0.9.0-beta1b: - Fix invalid installation path under certain conditions. * 2008-06-27, prelude-correlator-0.9.0-beta1a: - Always use $(DESTDIR) when installing files. - Check for lua.pc as well as lua5.1.pc, since different distribution seems to be using different default. * 2008-06-27, prelude-correlator-0.9.0-beta1: - First Prelude-Correlator release.